ETH Price: $2,525.62 (+0.02%)
Gas: 0.81 Gwei

Contract

0x1C2349ACBb7f83d07577692c75B6D7654899BF10
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Enter195230072024-03-27 3:24:47157 days ago1711509887IN
0x1C2349AC...54899BF10
0 ETH0.0026848725.000001
Enter167329902023-03-01 9:49:59549 days ago1677664199IN
0x1C2349AC...54899BF10
0 ETH0.002454925.000001
Enter166556442023-02-18 12:54:11560 days ago1676724851IN
0x1C2349AC...54899BF10
0 ETH0.0046606147.000001
Enter166556382023-02-18 12:52:59560 days ago1676724779IN
0x1C2349AC...54899BF10
0 ETH0.0041111347.000001
Enter166556212023-02-18 12:49:35560 days ago1676724575IN
0x1C2349AC...54899BF10
0 ETH0.0048798851.000001
Enter165283022023-01-31 17:28:35577 days ago1675186115IN
0x1C2349AC...54899BF10
0 ETH0.0029776525.000001
Enter163823612023-01-11 8:25:23598 days ago1673425523IN
0x1C2349AC...54899BF10
0 ETH0.00125616.000001
Enter163821402023-01-11 7:41:11598 days ago1673422871IN
0x1C2349AC...54899BF10
0 ETH0.001360216.000001
Enter163820762023-01-11 7:28:23598 days ago1673422103IN
0x1C2349AC...54899BF10
0 ETH0.0017095816.000001
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.000204472
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.000255053
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.000268143
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.000261023
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.00060344
Enter155814872022-09-21 11:34:59710 days ago1663760099IN
0x1C2349AC...54899BF10
0 ETH0.000332992
Enter155794852022-09-21 4:34:11710 days ago1663734851IN
0x1C2349AC...54899BF10
0 ETH0.00063656
Enter155778012022-09-20 22:55:59710 days ago1663714559IN
0x1C2349AC...54899BF10
0 ETH0.000920919
Enter155777882022-09-20 22:53:23710 days ago1663714403IN
0x1C2349AC...54899BF10
0 ETH0.000790999
Enter155777702022-09-20 22:49:47710 days ago1663714187IN
0x1C2349AC...54899BF10
0 ETH0.000512835
Enter155659652022-09-19 7:05:35712 days ago1663571135IN
0x1C2349AC...54899BF10
0 ETH0.000543075
Enter155659242022-09-19 6:57:23712 days ago1663570643IN
0x1C2349AC...54899BF10
0 ETH0.000522955
Enter155654812022-09-19 5:28:11712 days ago1663565291IN
0x1C2349AC...54899BF10
0 ETH0.000947788
Enter155651402022-09-19 4:18:59712 days ago1663561139IN
0x1C2349AC...54899BF10
0 ETH0.000438714
Enter155651182022-09-19 4:14:35712 days ago1663560875IN
0x1C2349AC...54899BF10
0 ETH0.000341013
Enter155651182022-09-19 4:14:35712 days ago1663560875IN
0x1C2349AC...54899BF10
0 ETH0.000307343
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TransferLogic

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-01-14
*/

pragma solidity ^0.5.4;

contract Account {

    // The implementation of the proxy
    address public implementation;

    // Logic manager
    address public manager;
    
    // The enabled static calls
    mapping (bytes4 => address) public enabled;

    event EnabledStaticCall(address indexed module, bytes4 indexed method);
    event Invoked(address indexed module, address indexed target, uint indexed value, bytes data);
    event Received(uint indexed value, address indexed sender, bytes data);

    event AccountInit(address indexed account);
    event ManagerChanged(address indexed mgr);

    modifier allowAuthorizedLogicContractsCallsOnly {
        require(LogicManager(manager).isAuthorized(msg.sender), "not an authorized logic");
        _;
    }

    function init(address _manager, address _accountStorage, address[] calldata _logics, address[] calldata _keys, address[] calldata _backups)
        external
    {
        require(manager == address(0), "Account: account already initialized");
        require(_manager != address(0) && _accountStorage != address(0), "Account: address is null");
        manager = _manager;

        for (uint i = 0; i < _logics.length; i++) {
            address logic = _logics[i];
            require(LogicManager(manager).isAuthorized(logic), "must be authorized logic");

            BaseLogic(logic).initAccount(this);
        }

        AccountStorage(_accountStorage).initAccount(this, _keys, _backups);

        emit AccountInit(address(this));
    }

    function invoke(address _target, uint _value, bytes calldata _data)
        external
        allowAuthorizedLogicContractsCallsOnly
        returns (bytes memory _res)
    {
        bool success;
        // solium-disable-next-line security/no-call-value
        (success, _res) = _target.call.value(_value)(_data);
        require(success, "call to target failed");
        emit Invoked(msg.sender, _target, _value, _data);
    }

    /**
    * @dev Enables a static method by specifying the target module to which the call must be delegated.
    * @param _module The target module.
    * @param _method The static method signature.
    */
    function enableStaticCall(address _module, bytes4 _method) external allowAuthorizedLogicContractsCallsOnly {
        enabled[_method] = _module;
        emit EnabledStaticCall(_module, _method);
    }

    function changeManager(address _newMgr) external allowAuthorizedLogicContractsCallsOnly {
        require(_newMgr != address(0), "address cannot be null");
        require(_newMgr != manager, "already changed");
        manager = _newMgr;
        emit ManagerChanged(_newMgr);
    }

     /**
     * @dev This method makes it possible for the wallet to comply to interfaces expecting the wallet to
     * implement specific static methods. It delegates the static call to a target contract if the data corresponds
     * to an enabled method, or logs the call otherwise.
     */
    function() external payable {
        if(msg.data.length > 0) {
            address logic = enabled[msg.sig];
            if(logic == address(0)) {
                emit Received(msg.value, msg.sender, msg.data);
            }
            else {
                require(LogicManager(manager).isAuthorized(logic), "must be an authorized logic for static call");
                // solium-disable-next-line security/no-inline-assembly
                assembly {
                    calldatacopy(0, 0, calldatasize())
                    let result := staticcall(gas, logic, 0, calldatasize(), 0, 0)
                    returndatacopy(0, 0, returndatasize())
                    switch result
                    case 0 {revert(0, returndatasize())}
                    default {return (0, returndatasize())}
                }
            }
        }
    }
}

contract Owned {

    // The owner
    address public owner;

    event OwnerChanged(address indexed _newOwner);

    /**
     * @dev Throws if the sender is not the owner.
     */
    modifier onlyOwner {
        require(msg.sender == owner, "Must be owner");
        _;
    }

    constructor() public {
        owner = msg.sender;
    }

    /**
     * @dev Lets the owner transfer ownership of the contract to a new owner.
     * @param _newOwner The new owner.
     */
    function changeOwner(address _newOwner) external onlyOwner {
        require(_newOwner != address(0), "Address must not be null");
        owner = _newOwner;
        emit OwnerChanged(_newOwner);
    }
}

contract LogicManager is Owned {

    event UpdateLogicSubmitted(address indexed logic, bool value);
    event UpdateLogicCancelled(address indexed logic);
    event UpdateLogicDone(address indexed logic, bool value);

    struct pending {
        bool value;
        uint dueTime;
    }

    // The authorized logic modules
    mapping (address => bool) public authorized;

    /*
    array
    index 0: AccountLogic address
          1: TransferLogic address
          2: DualsigsLogic address
          3: DappLogic address
          4: ...
     */
    address[] public authorizedLogics;

    // updated logics and their due time of becoming effective
    mapping (address => pending) public pendingLogics;

    // pending time before updated logics take effect
    struct pendingTime {
        uint curPendingTime;
        uint nextPendingTime;
        uint dueTime;
    }

    pendingTime public pt;

    // how many authorized logics
    uint public logicCount;

    constructor(address[] memory _initialLogics, uint256 _pendingTime) public
    {
        for (uint i = 0; i < _initialLogics.length; i++) {
            address logic = _initialLogics[i];
            authorized[logic] = true;
            logicCount += 1;
        }
        authorizedLogics = _initialLogics;

        pt.curPendingTime = _pendingTime;
        pt.nextPendingTime = _pendingTime;
        pt.dueTime = now;
    }

    function submitUpdatePendingTime(uint _pendingTime) external onlyOwner {
        pt.nextPendingTime = _pendingTime;
        pt.dueTime = pt.curPendingTime + now;
    }

    function triggerUpdatePendingTime() external {
        require(pt.dueTime <= now, "too early to trigger updatePendingTime");
        pt.curPendingTime = pt.nextPendingTime;
    }

    function isAuthorized(address _logic) external view returns (bool) {
        return authorized[_logic];
    }

    function getAuthorizedLogics() external view returns (address[] memory) {
        return authorizedLogics;
    }

    function submitUpdate(address _logic, bool _value) external onlyOwner {
        pending storage p = pendingLogics[_logic];
        p.value = _value;
        p.dueTime = now + pt.curPendingTime;
        emit UpdateLogicSubmitted(_logic, _value);
    }

    function cancelUpdate(address _logic) external onlyOwner {
        delete pendingLogics[_logic];
        emit UpdateLogicCancelled(_logic);
    }

    function triggerUpdateLogic(address _logic) external {
        pending memory p = pendingLogics[_logic];
        require(p.dueTime > 0, "pending logic not found");
        require(p.dueTime <= now, "too early to trigger updateLogic");
        updateLogic(_logic, p.value);
        delete pendingLogics[_logic];
    }

    function updateLogic(address _logic, bool _value) internal {
        if (authorized[_logic] != _value) {
            if(_value) {
                logicCount += 1;
                authorized[_logic] = true;
                authorizedLogics.push(_logic);
            }
            else {
                logicCount -= 1;
                require(logicCount > 0, "must have at least one logic module");
                delete authorized[_logic];
                removeLogic(_logic);
            }
            emit UpdateLogicDone(_logic, _value);
        }
    }

    function removeLogic(address _logic) internal {
        uint len = authorizedLogics.length;
        address lastLogic = authorizedLogics[len - 1];
        if (_logic != lastLogic) {
            for (uint i = 0; i < len; i++) {
                 if (_logic == authorizedLogics[i]) {
                     authorizedLogics[i] = lastLogic;
                     break;
                 }
            }
        }
        authorizedLogics.length--;
    }
}

contract AccountStorage {

    modifier allowAccountCallsOnly(Account _account) {
        require(msg.sender == address(_account), "caller must be account");
        _;
    }

    modifier allowAuthorizedLogicContractsCallsOnly(address payable _account) {
        require(LogicManager(Account(_account).manager()).isAuthorized(msg.sender), "not an authorized logic");
        _;
    }

    struct KeyItem {
        address pubKey;
        uint256 status;
    }

    struct BackupAccount {
        address backup;
        uint256 effectiveDate;//means not effective until this timestamp
        uint256 expiryDate;//means effective until this timestamp
    }

    struct DelayItem {
        bytes32 hash;
        uint256 dueTime;
    }

    struct Proposal {
        bytes32 hash;
        address[] approval;
    }

    // account => quantity of operation keys (index >= 1)
    mapping (address => uint256) operationKeyCount;

    // account => index => KeyItem
    mapping (address => mapping(uint256 => KeyItem)) keyData;

    // account => index => backup account
    mapping (address => mapping(uint256 => BackupAccount)) backupData;

    /* account => actionId => DelayItem

       delayData applies to these 4 actions:
       changeAdminKey, changeAllOperationKeys, unfreeze, changeAdminKeyByBackup
    */
    mapping (address => mapping(bytes4 => DelayItem)) delayData;

    // client account => proposer account => proposed actionId => Proposal
    mapping (address => mapping(address => mapping(bytes4 => Proposal))) proposalData;

    // *************** keyCount ********************** //

    function getOperationKeyCount(address _account) external view returns(uint256) {
        return operationKeyCount[_account];
    }

    function increaseKeyCount(address payable _account) external allowAuthorizedLogicContractsCallsOnly(_account) {
        operationKeyCount[_account] = operationKeyCount[_account] + 1;
    }

    // *************** keyData ********************** //

    function getKeyData(address _account, uint256 _index) public view returns(address) {
        KeyItem memory item = keyData[_account][_index];
        return item.pubKey;
    }

    function setKeyData(address payable _account, uint256 _index, address _key) external allowAuthorizedLogicContractsCallsOnly(_account) {
        require(_key != address(0), "invalid _key value");
        KeyItem storage item = keyData[_account][_index];
        item.pubKey = _key;
    }

    // *************** keyStatus ********************** //

    function getKeyStatus(address _account, uint256 _index) external view returns(uint256) {
        KeyItem memory item = keyData[_account][_index];
        return item.status;
    }

    function setKeyStatus(address payable _account, uint256 _index, uint256 _status) external allowAuthorizedLogicContractsCallsOnly(_account) {
        KeyItem storage item = keyData[_account][_index];
        item.status = _status;
    }

    // *************** backupData ********************** //

    function getBackupAddress(address _account, uint256 _index) external view returns(address) {
        BackupAccount memory b = backupData[_account][_index];
        return b.backup;
    }

    function getBackupEffectiveDate(address _account, uint256 _index) external view returns(uint256) {
        BackupAccount memory b = backupData[_account][_index];
        return b.effectiveDate;
    }

    function getBackupExpiryDate(address _account, uint256 _index) external view returns(uint256) {
        BackupAccount memory b = backupData[_account][_index];
        return b.expiryDate;
    }

    function setBackup(address payable _account, uint256 _index, address _backup, uint256 _effective, uint256 _expiry)
        external
        allowAuthorizedLogicContractsCallsOnly(_account)
    {
        BackupAccount storage b = backupData[_account][_index];
        b.backup = _backup;
        b.effectiveDate = _effective;
        b.expiryDate = _expiry;
    }

    function setBackupExpiryDate(address payable _account, uint256 _index, uint256 _expiry)
        external
        allowAuthorizedLogicContractsCallsOnly(_account)
    {
        BackupAccount storage b = backupData[_account][_index];
        b.expiryDate = _expiry;
    }

    function clearBackupData(address payable _account, uint256 _index) external allowAuthorizedLogicContractsCallsOnly(_account) {
        delete backupData[_account][_index];
    }

    // *************** delayData ********************** //

    function getDelayDataHash(address payable _account, bytes4 _actionId) external view returns(bytes32) {
        DelayItem memory item = delayData[_account][_actionId];
        return item.hash;
    }

    function getDelayDataDueTime(address payable _account, bytes4 _actionId) external view returns(uint256) {
        DelayItem memory item = delayData[_account][_actionId];
        return item.dueTime;
    }

    function setDelayData(address payable _account, bytes4 _actionId, bytes32 _hash, uint256 _dueTime) external allowAuthorizedLogicContractsCallsOnly(_account) {
        DelayItem storage item = delayData[_account][_actionId];
        item.hash = _hash;
        item.dueTime = _dueTime;
    }

    function clearDelayData(address payable _account, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_account) {
        delete delayData[_account][_actionId];
    }

    // *************** proposalData ********************** //

    function getProposalDataHash(address _client, address _proposer, bytes4 _actionId) external view returns(bytes32) {
        Proposal memory p = proposalData[_client][_proposer][_actionId];
        return p.hash;
    }

    function getProposalDataApproval(address _client, address _proposer, bytes4 _actionId) external view returns(address[] memory) {
        Proposal memory p = proposalData[_client][_proposer][_actionId];
        return p.approval;
    }

    function setProposalData(address payable _client, address _proposer, bytes4 _actionId, bytes32 _hash, address _approvedBackup)
        external
        allowAuthorizedLogicContractsCallsOnly(_client)
    {
        Proposal storage p = proposalData[_client][_proposer][_actionId];
        if (p.hash > 0) {
            if (p.hash == _hash) {
                for (uint256 i = 0; i < p.approval.length; i++) {
                    require(p.approval[i] != _approvedBackup, "backup already exists");
                }
                p.approval.push(_approvedBackup);
            } else {
                p.hash = _hash;
                p.approval.length = 0;
            }
        } else {
            p.hash = _hash;
            p.approval.push(_approvedBackup);
        }
    }

    function clearProposalData(address payable _client, address _proposer, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_client) {
        delete proposalData[_client][_proposer][_actionId];
    }


    // *************** init ********************** //
    function initAccount(Account _account, address[] calldata _keys, address[] calldata _backups)
        external
        allowAccountCallsOnly(_account)
    {
        require(getKeyData(address(_account), 0) == address(0), "AccountStorage: account already initialized!");
        require(_keys.length > 0, "empty keys array");

        operationKeyCount[address(_account)] = _keys.length - 1;

        for (uint256 index = 0; index < _keys.length; index++) {
            address _key = _keys[index];
            require(_key != address(0), "_key cannot be 0x0");
            KeyItem storage item = keyData[address(_account)][index];
            item.pubKey = _key;
            item.status = 0;
        }

        // avoid backup duplication if _backups.length > 1
        // normally won't check duplication, in most cases only one initial backup when initialization
        if (_backups.length > 1) {
            address[] memory bkps = _backups;
            for (uint256 i = 0; i < _backups.length; i++) {
                for (uint256 j = 0; j < i; j++) {
                    require(bkps[j] != _backups[i], "duplicate backup");
                }
            }
        }

        for (uint256 index = 0; index < _backups.length; index++) {
            address _backup = _backups[index];
            require(_backup != address(0), "backup cannot be 0x0");
            require(_backup != address(_account), "cannot be backup of oneself");

            backupData[address(_account)][index] = BackupAccount(_backup, now, uint256(-1));
        }
    }
}

/* The MIT License (MIT)

Copyright (c) 2016 Smart Contract Solutions, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0); // Solidity only automatically asserts when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Adds two numbers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }

    /**
    * @dev Returns ceil(a / b).
    */
    function ceil(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a / b;
        if(a % b == 0) {
            return c;
        }
        else {
            return c + 1;
        }
    }
}

contract BaseLogic {

    bytes constant internal SIGN_HASH_PREFIX = "\x19Ethereum Signed Message:\n32";

    mapping (address => uint256) keyNonce;
    AccountStorage public accountStorage;

    modifier allowSelfCallsOnly() {
        require (msg.sender == address(this), "only internal call is allowed");
        _;
    }

    modifier allowAccountCallsOnly(Account _account) {
        require(msg.sender == address(_account), "caller must be account");
        _;
    }

    event LogicInitialised(address wallet);

    // *************** Constructor ********************** //

    constructor(AccountStorage _accountStorage) public {
        accountStorage = _accountStorage;
    }

    // *************** Initialization ********************* //

    function initAccount(Account _account) external allowAccountCallsOnly(_account){
        emit LogicInitialised(address(_account));
    }

    // *************** Getter ********************** //

    function getKeyNonce(address _key) external view returns(uint256) {
        return keyNonce[_key];
    }

    // *************** Signature ********************** //

    function getSignHash(bytes memory _data, uint256 _nonce) internal view returns(bytes32) {
        // use EIP 191
        // 0x1900 + this logic address + data + nonce of signing key
        bytes32 msgHash = keccak256(abi.encodePacked(byte(0x19), byte(0), address(this), _data, _nonce));
        bytes32 prefixedHash = keccak256(abi.encodePacked(SIGN_HASH_PREFIX, msgHash));
        return prefixedHash;
    }

    function verifySig(address _signingKey, bytes memory _signature, bytes32 _signHash) internal pure {
        require(_signingKey != address(0), "invalid signing key");
        address recoveredAddr = recover(_signHash, _signature);
        require(recoveredAddr == _signingKey, "signature verification failed");
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * NOTE: This call _does not revert_ if the signature is invalid, or
     * if the signer is otherwise unable to be retrieved. In those scenarios,
     * the zero address is returned.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise)
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        if (signature.length != 65) {
            return (address(0));
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return address(0);
        }

        if (v != 27 && v != 28) {
            return address(0);
        }

        // If the signature is valid (and not malleable), return the signer address
        return ecrecover(hash, v, r, s);
    }

    /* get signer address from data
    * @dev Gets an address encoded as the first argument in transaction data
    * @param b The byte array that should have an address as first argument
    * @returns a The address retrieved from the array
    */
    function getSignerAddress(bytes memory _b) internal pure returns (address _a) {
        require(_b.length >= 36, "invalid bytes");
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let mask := 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
            _a := and(mask, mload(add(_b, 36)))
            // b = {length:32}{method sig:4}{address:32}{...}
            // 36 is the offset of the first parameter of the data, if encoded properly.
            // 32 bytes for the length of the bytes array, and the first 4 bytes for the function signature.
            // 32 bytes is the length of the bytes array!!!!
        }
    }

    // get method id, first 4 bytes of data
    function getMethodId(bytes memory _b) internal pure returns (bytes4 _a) {
        require(_b.length >= 4, "invalid data");
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            // 32 bytes is the length of the bytes array
            _a := mload(add(_b, 32))
        }
    }

    function checkKeyStatus(address _account, uint256 _index) internal {
        // check operation key status
        if (_index > 0) {
            require(accountStorage.getKeyStatus(_account, _index) != 1, "frozen key");
        }
    }

    // _nonce is timestamp in microsecond(1/1000000 second)
    function checkAndUpdateNonce(address _key, uint256 _nonce) internal {
        require(_nonce > keyNonce[_key], "nonce too small");
        require(SafeMath.div(_nonce, 1000000) <= now + 86400, "nonce too big"); // 86400=24*3600 seconds

        keyNonce[_key] = _nonce;
    }
}

contract TransferLogic is BaseLogic {

    /*
    index 0: admin key
          1: asset(transfer)
          2: adding
          3: reserved(dapp)
          4: assist
     */
    uint constant internal TRANSFER_KEY_INDEX = 1;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    bytes4 private constant ERC721_RECEIVED = 0x150b7a02;

    // *************** Events *************************** //

    event TransferLogicInitialised(address indexed account);
    event TransferLogicEntered(bytes data, uint256 indexed nonce);

    // *************** Constructor ********************** //

    constructor(AccountStorage _accountStorage)
		BaseLogic(_accountStorage)
		public
	{
	}

    // *************** Initialization ********************* //

    // enable staic call 'onERC721Received' from base account
    function initAccount(Account _account) external allowAccountCallsOnly(_account){
        _account.enableStaticCall(address(this), ERC721_RECEIVED);
        emit TransferLogicInitialised(address(_account));
    }

    // *************** action entry ********************* //

    function enter(bytes calldata _data, bytes calldata _signature, uint256 _nonce) external {
        address account = getSignerAddress(_data);
        checkKeyStatus(account, TRANSFER_KEY_INDEX);

        address assetKey = accountStorage.getKeyData(account, TRANSFER_KEY_INDEX);
        checkAndUpdateNonce(assetKey, _nonce);
        bytes32 signHash = getSignHash(_data, _nonce);
        verifySig(assetKey, _signature, signHash);

        // solium-disable-next-line security/no-low-level-calls
        (bool success,) = address(this).call(_data);
        require(success, "calling self failed");
        emit TransferLogicEntered(_data, _nonce);
    }

    // *************** transfer assets ********************* //

    // called from 'enter'
    // signer is '_from'
    function transferEth(address payable _from, address _to, uint256 _amount) external allowSelfCallsOnly {
        // Account(_from).invoke(_to, _amount, "");
        // solium-disable-next-line security/no-low-level-calls
        (bool success,) = _from.call(abi.encodeWithSignature("invoke(address,uint256,bytes)", _to, _amount, ""));
        require(success, "calling invoke failed");
    }

    // called from 'enter'
    // signer is '_from'
    function transferErc20(address payable _from, address _to, address _token, uint256 _amount) external allowSelfCallsOnly {
        bytes memory methodData = abi.encodeWithSignature("transfer(address,uint256)", _to, _amount);
        // bytes memory res = Account(_from).invoke(_token, 0, methodData);
        bool success;
        bytes memory res;
        // solium-disable-next-line security/no-low-level-calls
        (success, res) = _from.call(abi.encodeWithSignature("invoke(address,uint256,bytes)", _token, 0, methodData));
        require(success, "calling invoke failed");
        if (res.length > 0) {
            bool r;
            r = abi.decode(res, (bool));
            require(r, "transferErc20 return false");
        }
    }

    // called from 'enter'
    // signer is '_approvedSpender'
    // make sure '_from' has approved allowance to '_approvedSpender'
    function transferApprovedErc20(address payable _approvedSpender, address _from, address _to, address _token, uint256 _amount) external allowSelfCallsOnly {
        bytes memory methodData = abi.encodeWithSignature("transferFrom(address,address,uint256)", _from, _to, _amount);
        // bytes memory res = Account(_approvedSpender).invoke(_token, 0, methodData);
        bool success;
        bytes memory res;
        // solium-disable-next-line security/no-low-level-calls
        (success, res) = _approvedSpender.call(abi.encodeWithSignature("invoke(address,uint256,bytes)", _token, 0, methodData));
        require(success, "calling invoke failed");
        if (res.length > 0) {
            bool r;
            r = abi.decode(res, (bool));
            require(r, "transferFrom return false");
        }
    }

    // called from 'enter'
    // signer is '_from'
    function transferNft(
        address payable _from, address _to, address _nftContract, uint256 _tokenId, bytes calldata _data, bool _safe)
        external
        allowSelfCallsOnly
    {
        bytes memory methodData;
        if(_safe) {
            methodData = abi.encodeWithSignature("safeTransferFrom(address,address,uint256,bytes)", _from, _to, _tokenId, _data);
        } else {
            methodData = abi.encodeWithSignature("transferFrom(address,address,uint256)", _from, _to, _tokenId);
        }
        // Account(_from).invoke(_nftContract, 0, methodData);
        bool success;
        // solium-disable-next-line security/no-low-level-calls
        (success,) = _from.call(abi.encodeWithSignature("invoke(address,uint256,bytes)", _nftContract, 0, methodData));
        require(success, "calling invoke failed");
    }

    // called from 'enter'
    // signer is '_approvedSpender'
    // make sure '_from' has approved nftToken to '_approvedSpender'
    function transferApprovedNft(
        address payable _approvedSpender, address _from, address _to, address _nftContract, uint256 _tokenId, bytes calldata _data, bool _safe)
        external
        allowSelfCallsOnly
    {
        bytes memory methodData;
        if(_safe) {
            methodData = abi.encodeWithSignature("safeTransferFrom(address,address,uint256,bytes)", _from, _to, _tokenId, _data);
        } else {
            methodData = abi.encodeWithSignature("transferFrom(address,address,uint256)", _from, _to, _tokenId);
        }
        // Account(_approvedSpender).invoke(_nftContract, 0, methodData);
        bool success;
        // solium-disable-next-line security/no-low-level-calls
        (success,) = _approvedSpender.call(abi.encodeWithSignature("invoke(address,uint256,bytes)", _nftContract, 0, methodData));
        require(success, "calling invoke failed");
    }

    // *************** callback of safeTransferFrom ********************* //

    function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external pure returns (bytes4) {
        return ERC721_RECEIVED;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_key","type":"address"}],"name":"getKeyNonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_from","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"onERC721Received","outputs":[{"name":"","type":"bytes4"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_token","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferErc20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_nftContract","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_safe","type":"bool"}],"name":"transferNft","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"initAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_approvedSpender","type":"address"},{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_token","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferApprovedErc20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_approvedSpender","type":"address"},{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_nftContract","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_safe","type":"bool"}],"name":"transferApprovedNft","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accountStorage","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_data","type":"bytes"},{"name":"_signature","type":"bytes"},{"name":"_nonce","type":"uint256"}],"name":"enter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_accountStorage","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"TransferLogicInitialised","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"data","type":"bytes"},{"indexed":true,"name":"nonce","type":"uint256"}],"name":"TransferLogicEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"wallet","type":"address"}],"name":"LogicInitialised","type":"event"}]

608060405234801561001057600080fd5b50604051602080611cef8339810180604052602081101561003057600080fd5b505160018054600160a060020a031916600160a060020a03909216919091179055611c8f806100606000396000f3fe608060405234801561001057600080fd5b50600436106100bb576000357c010000000000000000000000000000000000000000000000000000000090048063994e334911610083578063994e3349146102bb578063b0ffff2314610301578063c281fb72146103a0578063d765925d146103c4578063ee682473146103fa576100bb565b80630978ec67146100c0578063150b7a02146100f85780631934741b146101bd57806321ffb81e146101fb5780635a6c415814610295575b600080fd5b6100e6600480360360208110156100d657600080fd5b5035600160a060020a03166104bc565b60408051918252519081900360200190f35b6101886004803603608081101561010e57600080fd5b600160a060020a0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561014957600080fd5b82018360208201111561015b57600080fd5b8035906020019184600183028401116401000000008311171561017d57600080fd5b5090925090506104d7565b604080517fffffffff000000000000000000000000000000000000000000000000000000009092168252519081900360200190f35b6101f9600480360360808110156101d357600080fd5b50600160a060020a03813581169160208101358216916040820135169060600135610501565b005b6101f9600480360360c081101561021157600080fd5b600160a060020a03823581169260208101358216926040820135909216916060820135919081019060a08101608082013564010000000081111561025457600080fd5b82018360208201111561026657600080fd5b8035906020019184600183028401116401000000008311171561028857600080fd5b91935091503515156107c7565b6101f9600480360360208110156102ab57600080fd5b5035600160a060020a0316610af8565b6101f9600480360360a08110156102d157600080fd5b50600160a060020a0381358116916020810135821691604082013581169160608101359091169060800135610c2f565b6101f9600480360360e081101561031757600080fd5b600160a060020a038235811692602081013582169260408201358316926060830135169160808101359181019060c0810160a082013564010000000081111561035f57600080fd5b82018360208201111561037157600080fd5b8035906020019184600183028401116401000000008311171561039357600080fd5b9193509150351515610efc565b6103a861122e565b60408051600160a060020a039092168252519081900360200190f35b6101f9600480360360608110156103da57600080fd5b50600160a060020a0381358116916020810135909116906040013561123d565b6101f96004803603606081101561041057600080fd5b81019060208101813564010000000081111561042b57600080fd5b82018360208201111561043d57600080fd5b8035906020019184600183028401116401000000008311171561045f57600080fd5b91939092909160208101903564010000000081111561047d57600080fd5b82018360208201111561048f57600080fd5b803590602001918460018302840111640100000000831117156104b157600080fd5b9193509150356113c4565b600160a060020a031660009081526020819052604090205490565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b333014610546576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a03808616602480840191909152604480840186905284518085038201815260649485018652602081018051600160e060020a03167fa9059cbb0000000000000000000000000000000000000000000000000000000017815295518885169381019384526000928101839052606095810186815282516084830152825192979396958c16948a9488948a9492939260a4019190808383895b838110156106005781810151838201526020016105e8565b50505050905090810190601f16801561062d5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b6020831061068e5780518252601f19909201916020918201910161066f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146106f0576040519150601f19603f3d011682016040523d82523d6000602084013e6106f5565b606091505b509092509050811515610740576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b6000815111156107be57600081806020019051602081101561076157600080fd5b505190508015156107bc576040805160e560020a62461bcd02815260206004820152601a60248201527f7472616e7366657245726332302072657475726e2066616c7365000000000000604482015290519081900360640190fd5b505b50505050505050565b33301461080c576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b606081156108d35787878686866040516024018086600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a0316815260200184815260200180602001828103825284848281815260200192508082843760008184015260408051601f19601f9093018316909401848103909201845252506020810180517fb88d4fde00000000000000000000000000000000000000000000000000000000600160e060020a03909116179052975061093d9650505050505050565b5060408051600160a060020a03808a166024830152881660448201526064808201879052825180830390910181526084909101909152602081018051600160e060020a03167f23b872dd000000000000000000000000000000000000000000000000000000001790525b600088600160a060020a0316876000846040516024018084600160a060020a0316600160a060020a031681526020018360ff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156109ae578181015183820152602001610996565b50505050905090810190601f1680156109db5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b60208310610a3c5780518252601f199092019160209182019101610a1d565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a9e576040519150601f19603f3d011682016040523d82523d6000602084013e610aa3565b606091505b5090915050801515610aed576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b505050505050505050565b8033600160a060020a03821614610b59576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b604080517f13da30b20000000000000000000000000000000000000000000000000000000081523060048201527f150b7a020000000000000000000000000000000000000000000000000000000060248201529051600160a060020a038416916313da30b291604480830192600092919082900301818387803b158015610bdf57600080fd5b505af1158015610bf3573d6000803e3d6000fd5b5050604051600160a060020a03851692507f9c6f7e53e99532c18dece9a7b1142e14c332b8a51796bd49c6dd52b031f48bc89150600090a25050565b333014610c74576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a03808716602480840191909152818716604480850191909152606480850187905285518086038201815260849586018752602081018051600160e060020a03167f23b872dd0000000000000000000000000000000000000000000000000000000017815296518986169481019485526000938101849052606092810183815282519782019790975281519197939692958d16948a9488948a949293909260a49091019190808383895b83811015610d40578181015183820152602001610d28565b50505050905090810190601f168015610d6d5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b60208310610dce5780518252601f199092019160209182019101610daf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b509092509050811515610e80576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b6000815111156107bc576000818060200190516020811015610ea157600080fd5b50519050801515610aed576040805160e560020a62461bcd02815260206004820152601960248201527f7472616e7366657246726f6d2072657475726e2066616c736500000000000000604482015290519081900360640190fd5b333014610f41576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b606081156110085787878686866040516024018086600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a0316815260200184815260200180602001828103825284848281815260200192508082843760008184015260408051601f19601f9093018316909401848103909201845252506020810180517fb88d4fde00000000000000000000000000000000000000000000000000000000600160e060020a0390911617905297506110729650505050505050565b5060408051600160a060020a03808a166024830152881660448201526064808201879052825180830390910181526084909101909152602081018051600160e060020a03167f23b872dd000000000000000000000000000000000000000000000000000000001790525b600089600160a060020a0316876000846040516024018084600160a060020a0316600160a060020a031681526020018360ff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110e35781810151838201526020016110cb565b50505050905090810190601f1680156111105780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b602083106111715780518252601f199092019160209182019101611152565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146111d3576040519150601f19603f3d011682016040523d82523d6000602084013e6111d8565b606091505b5090915050801515611222576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b50505050505050505050565b600154600160a060020a031681565b333014611282576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a0384811660248301526044820184905260606064830152600060848301819052835180840360a401815260c49093018452602083018051600160e060020a031660e160020a6347b7819902178152935183519194928816939290918291908083835b6020831061130e5780518252601f1990920191602091820191016112ef565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611370576040519150601f19603f3d011682016040523d82523d6000602084013e611375565b606091505b505090508015156113be576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b50505050565b600061140586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061166d92505050565b90506114128160016116dc565b60018054604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820194909452905160009390921691638d43119891604480820192602092909190829003018186803b15801561148457600080fd5b505afa158015611498573d6000803e3d6000fd5b505050506040513d60208110156114ae57600080fd5b505190506114bc81846117da565b60006114ff88888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892506118ce915050565b90506115438287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250611a3f915050565b600030600160a060020a03168989604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146115a1576040519150601f19603f3d011682016040523d82523d6000602084013e6115a6565b606091505b50509050801515611601576040805160e560020a62461bcd02815260206004820152601360248201527f63616c6c696e672073656c66206661696c656400000000000000000000000000604482015290519081900360640190fd5b847f3efc190d59645f005a5974aa84aa94401ad997938870e7b2aa74a45138ad679b8a8a60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050505050565b600060248251101515156116cb576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b60008111156117d657600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561175257600080fd5b505afa158015611766573d6000803e3d6000fd5b505050506040513d602081101561177c57600080fd5b5051600114156117d6576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050565b600160a060020a0382166000908152602081905260409020548111611849576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b42620151800161185c82620f4240611b10565b11156118b2576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b602083106119575780518252601f199092019160209182019101611938565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b602083106119fc5780518252601f1990920191602091820191016119dd565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152938201905282519201919091209450505050505b92915050565b600160a060020a0383161515611a9f576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b6000611aab8284611b34565b9050600160a060020a03808216908516146113be576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b6000808211611b1e57600080fd5b60008284811515611b2b57fe5b04949350505050565b8051600090604114611b4857506000611a39565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611b8e5760009350505050611a39565b8060ff16601b14158015611ba657508060ff16601c14155b15611bb75760009350505050611a39565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa158015611c0e573d6000803e3d6000fd5b5050604051601f19015197965050505050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f77656400000063616c6c696e6720696e766f6b65206661696c65640000000000000000000000a165627a7a72305820ad7e24d9f2033a4d586d07dc7fc7d071142bb59cec24e27c3d21dcc6e56cb00b0029000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100bb576000357c010000000000000000000000000000000000000000000000000000000090048063994e334911610083578063994e3349146102bb578063b0ffff2314610301578063c281fb72146103a0578063d765925d146103c4578063ee682473146103fa576100bb565b80630978ec67146100c0578063150b7a02146100f85780631934741b146101bd57806321ffb81e146101fb5780635a6c415814610295575b600080fd5b6100e6600480360360208110156100d657600080fd5b5035600160a060020a03166104bc565b60408051918252519081900360200190f35b6101886004803603608081101561010e57600080fd5b600160a060020a0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561014957600080fd5b82018360208201111561015b57600080fd5b8035906020019184600183028401116401000000008311171561017d57600080fd5b5090925090506104d7565b604080517fffffffff000000000000000000000000000000000000000000000000000000009092168252519081900360200190f35b6101f9600480360360808110156101d357600080fd5b50600160a060020a03813581169160208101358216916040820135169060600135610501565b005b6101f9600480360360c081101561021157600080fd5b600160a060020a03823581169260208101358216926040820135909216916060820135919081019060a08101608082013564010000000081111561025457600080fd5b82018360208201111561026657600080fd5b8035906020019184600183028401116401000000008311171561028857600080fd5b91935091503515156107c7565b6101f9600480360360208110156102ab57600080fd5b5035600160a060020a0316610af8565b6101f9600480360360a08110156102d157600080fd5b50600160a060020a0381358116916020810135821691604082013581169160608101359091169060800135610c2f565b6101f9600480360360e081101561031757600080fd5b600160a060020a038235811692602081013582169260408201358316926060830135169160808101359181019060c0810160a082013564010000000081111561035f57600080fd5b82018360208201111561037157600080fd5b8035906020019184600183028401116401000000008311171561039357600080fd5b9193509150351515610efc565b6103a861122e565b60408051600160a060020a039092168252519081900360200190f35b6101f9600480360360608110156103da57600080fd5b50600160a060020a0381358116916020810135909116906040013561123d565b6101f96004803603606081101561041057600080fd5b81019060208101813564010000000081111561042b57600080fd5b82018360208201111561043d57600080fd5b8035906020019184600183028401116401000000008311171561045f57600080fd5b91939092909160208101903564010000000081111561047d57600080fd5b82018360208201111561048f57600080fd5b803590602001918460018302840111640100000000831117156104b157600080fd5b9193509150356113c4565b600160a060020a031660009081526020819052604090205490565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b333014610546576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a03808616602480840191909152604480840186905284518085038201815260649485018652602081018051600160e060020a03167fa9059cbb0000000000000000000000000000000000000000000000000000000017815295518885169381019384526000928101839052606095810186815282516084830152825192979396958c16948a9488948a9492939260a4019190808383895b838110156106005781810151838201526020016105e8565b50505050905090810190601f16801561062d5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b6020831061068e5780518252601f19909201916020918201910161066f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146106f0576040519150601f19603f3d011682016040523d82523d6000602084013e6106f5565b606091505b509092509050811515610740576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b6000815111156107be57600081806020019051602081101561076157600080fd5b505190508015156107bc576040805160e560020a62461bcd02815260206004820152601a60248201527f7472616e7366657245726332302072657475726e2066616c7365000000000000604482015290519081900360640190fd5b505b50505050505050565b33301461080c576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b606081156108d35787878686866040516024018086600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a0316815260200184815260200180602001828103825284848281815260200192508082843760008184015260408051601f19601f9093018316909401848103909201845252506020810180517fb88d4fde00000000000000000000000000000000000000000000000000000000600160e060020a03909116179052975061093d9650505050505050565b5060408051600160a060020a03808a166024830152881660448201526064808201879052825180830390910181526084909101909152602081018051600160e060020a03167f23b872dd000000000000000000000000000000000000000000000000000000001790525b600088600160a060020a0316876000846040516024018084600160a060020a0316600160a060020a031681526020018360ff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156109ae578181015183820152602001610996565b50505050905090810190601f1680156109db5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b60208310610a3c5780518252601f199092019160209182019101610a1d565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a9e576040519150601f19603f3d011682016040523d82523d6000602084013e610aa3565b606091505b5090915050801515610aed576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b505050505050505050565b8033600160a060020a03821614610b59576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b604080517f13da30b20000000000000000000000000000000000000000000000000000000081523060048201527f150b7a020000000000000000000000000000000000000000000000000000000060248201529051600160a060020a038416916313da30b291604480830192600092919082900301818387803b158015610bdf57600080fd5b505af1158015610bf3573d6000803e3d6000fd5b5050604051600160a060020a03851692507f9c6f7e53e99532c18dece9a7b1142e14c332b8a51796bd49c6dd52b031f48bc89150600090a25050565b333014610c74576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a03808716602480840191909152818716604480850191909152606480850187905285518086038201815260849586018752602081018051600160e060020a03167f23b872dd0000000000000000000000000000000000000000000000000000000017815296518986169481019485526000938101849052606092810183815282519782019790975281519197939692958d16948a9488948a949293909260a49091019190808383895b83811015610d40578181015183820152602001610d28565b50505050905090810190601f168015610d6d5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b60208310610dce5780518252601f199092019160209182019101610daf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b509092509050811515610e80576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b6000815111156107bc576000818060200190516020811015610ea157600080fd5b50519050801515610aed576040805160e560020a62461bcd02815260206004820152601960248201527f7472616e7366657246726f6d2072657475726e2066616c736500000000000000604482015290519081900360640190fd5b333014610f41576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b606081156110085787878686866040516024018086600160a060020a0316600160a060020a0316815260200185600160a060020a0316600160a060020a0316815260200184815260200180602001828103825284848281815260200192508082843760008184015260408051601f19601f9093018316909401848103909201845252506020810180517fb88d4fde00000000000000000000000000000000000000000000000000000000600160e060020a0390911617905297506110729650505050505050565b5060408051600160a060020a03808a166024830152881660448201526064808201879052825180830390910181526084909101909152602081018051600160e060020a03167f23b872dd000000000000000000000000000000000000000000000000000000001790525b600089600160a060020a0316876000846040516024018084600160a060020a0316600160a060020a031681526020018360ff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110e35781810151838201526020016110cb565b50505050905090810190601f1680156111105780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a031660e160020a6347b7819902178152905182519297509550859450925090508083835b602083106111715780518252601f199092019160209182019101611152565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146111d3576040519150601f19603f3d011682016040523d82523d6000602084013e6111d8565b606091505b5090915050801515611222576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b50505050505050505050565b600154600160a060020a031681565b333014611282576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020611c24833981519152604482015290519081900360640190fd5b60408051600160a060020a0384811660248301526044820184905260606064830152600060848301819052835180840360a401815260c49093018452602083018051600160e060020a031660e160020a6347b7819902178152935183519194928816939290918291908083835b6020831061130e5780518252601f1990920191602091820191016112ef565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611370576040519150601f19603f3d011682016040523d82523d6000602084013e611375565b606091505b505090508015156113be576040805160e560020a62461bcd0281526020600482015260156024820152600080516020611c44833981519152604482015290519081900360640190fd5b50505050565b600061140586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061166d92505050565b90506114128160016116dc565b60018054604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820194909452905160009390921691638d43119891604480820192602092909190829003018186803b15801561148457600080fd5b505afa158015611498573d6000803e3d6000fd5b505050506040513d60208110156114ae57600080fd5b505190506114bc81846117da565b60006114ff88888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892506118ce915050565b90506115438287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250611a3f915050565b600030600160a060020a03168989604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146115a1576040519150601f19603f3d011682016040523d82523d6000602084013e6115a6565b606091505b50509050801515611601576040805160e560020a62461bcd02815260206004820152601360248201527f63616c6c696e672073656c66206661696c656400000000000000000000000000604482015290519081900360640190fd5b847f3efc190d59645f005a5974aa84aa94401ad997938870e7b2aa74a45138ad679b8a8a60405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2505050505050505050565b600060248251101515156116cb576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b60008111156117d657600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561175257600080fd5b505afa158015611766573d6000803e3d6000fd5b505050506040513d602081101561177c57600080fd5b5051600114156117d6576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b5050565b600160a060020a0382166000908152602081905260409020548111611849576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b42620151800161185c82620f4240611b10565b11156118b2576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b602083106119575780518252601f199092019160209182019101611938565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b602083106119fc5780518252601f1990920191602091820191016119dd565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152938201905282519201919091209450505050505b92915050565b600160a060020a0383161515611a9f576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b6000611aab8284611b34565b9050600160a060020a03808216908516146113be576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b6000808211611b1e57600080fd5b60008284811515611b2b57fe5b04949350505050565b8051600090604114611b4857506000611a39565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611b8e5760009350505050611a39565b8060ff16601b14158015611ba657508060ff16601c14155b15611bb75760009350505050611a39565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa158015611c0e573d6000803e3d6000fd5b5050604051601f19015197965050505050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f77656400000063616c6c696e6720696e766f6b65206661696c65640000000000000000000000a165627a7a72305820ad7e24d9f2033a4d586d07dc7fc7d071142bb59cec24e27c3d21dcc6e56cb00b0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7

-----Decoded View---------------
Arg [0] : _accountStorage (address): 0xADc92d1fD878580579716d944eF3460E241604b7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7


Deployed Bytecode Sourcemap

27208:6376:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27208:6376:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21439:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21439:106:0;-1:-1:-1;;;;;21439:106:0;;:::i;:::-;;;;;;;;;;;;;;;;33409:172;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;33409:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33409:172:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33409:172:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;33409:172:0;;-1:-1:-1;33409:172:0;-1:-1:-1;33409:172:0;:::i;:::-;;;;;;;;;;;;;;;;;;;29626:754;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;29626:754:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31414:854;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;31414:854:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;31414:854:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31414:854:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;31414:854:0;;-1:-1:-1;31414:854:0;-1:-1:-1;31414:854:0;;;;:::i;28087:214::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28087:214:0;-1:-1:-1;;;;;28087:214:0;;:::i;30524:828::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;30524:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;32411:910::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;32411:910:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;32411:910:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32411:910:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;32411:910:0;;-1:-1:-1;32411:910:0;-1:-1:-1;32411:910:0;;;;:::i;20609:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20609:36:0;;;;;;;;;;;;;;29169:395;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29169:395:0;;;;;;;;;;;;;;;;;:::i;28373:667::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28373:667:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28373:667:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28373:667:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28373:667:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28373:667:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28373:667:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28373:667:0;;-1:-1:-1;28373:667:0;-1:-1:-1;28373:667:0;;:::i;21439:106::-;-1:-1:-1;;;;;21523:14:0;21496:7;21523:14;;;;;;;;;;;;21439:106::o;33409:172::-;33558:15;33409:172;;;;;;;:::o;29626:754::-;20704:10;20726:4;20704:27;20695:70;;;;;-1:-1:-1;;;;;20695:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20695:70:0;;;;;;;;;;;;;;;29783:66;;;-1:-1:-1;;;;;29783:66:0;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;29783:66:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;29783:66:0;179:29:-1;160:49;;30080:79:0;;;;;;;;;;;-1:-1:-1;30080:79:0;;;;;;29757:23;30080:79;;;;;;;;;;;;;;29783:66;;-1:-1:-1;;29757:23:0;30069:10;;;30137:6;;-1:-1:-1;;29783:66:0;;30080:79;;;;;;25:18:-1;30080:79:0;;25:18:-1;-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;30080:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30080:79:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;30080:79:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;30069:91:0;;;;30080:79;;-1:-1:-1;30069:91:0;-1:-1:-1;30069:91:0;;-1:-1:-1;25:18;-1:-1;30069:91:0;-1:-1:-1;30069:91:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;30069:91:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;30052:108:0;;-1:-1:-1;30052:108:0;-1:-1:-1;30171:41:0;;;;;;;;-1:-1:-1;;;;;30171:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30171:41:0;;;;;;;;;;;;;;;30240:1;30227:3;:10;:14;30223:150;;;30258:6;30294:3;30283:23;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30283:23:0;;-1:-1:-1;30321:40:0;;;;;;;;-1:-1:-1;;;;;30321:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30223:150;;20776:1;;;29626:754;;;;:::o;31414:854::-;20704:10;20726:4;20704:27;20695:70;;;;;-1:-1:-1;;;;;20695:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20695:70:0;;;;;;;;;;;;;;;31617:23;31654:5;31651:285;;;31764:5;31771:3;31776:8;31786:5;;31689:103;;;;;;-1:-1:-1;;;;;31689:103:0;-1:-1:-1;;;;;31689:103:0;;;;;;-1:-1:-1;;;;;31689:103:0;-1:-1:-1;;;;;31689:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;31689:103:0;;;-1:-1:-1;;137:4;117:14;;;113:30;;157:16;;;26:21;;;22:32;;;6:49;;31689:103:0;-1:-1:-1;49:4;25:18;;61:17;;31689:103:0;-1:-1:-1;;;;;182:15;;;179:29;160:49;;31689:103:0;-1:-1:-1;31651:285:0;;-1:-1:-1;;;;;;;31651:285:0;;-1:-1:-1;31838:86:0;;;-1:-1:-1;;;;;31838:86:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;31838:86:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;31838:86:0;179:29:-1;160:49;;31651:285:0;32010:12;32111:5;-1:-1:-1;;;;;32111:10:0;32179:12;32193:1;32196:10;32122:85;;;;;;-1:-1:-1;;;;;32122:85:0;-1:-1:-1;;;;;32122:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32122:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32122:85:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32122:85:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;32111:97:0;;;;32122:85;;-1:-1:-1;32111:97:0;-1:-1:-1;32111:97:0;;-1:-1:-1;25:18;-1:-1;32111:97:0;-1:-1:-1;32111:97:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32111:97:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;32098:110:0;;-1:-1:-1;;32219:41:0;;;;;;;;-1:-1:-1;;;;;32219:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32219:41:0;;;;;;;;;;;;;;;20776:1;;31414:854;;;;;;;:::o;28087:214::-;28157:8;20861:10;-1:-1:-1;;;;;20861:31:0;;;20853:66;;;;;-1:-1:-1;;;;;20853:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28177:57;;;;;;28211:4;28177:57;;;;28218:15;28177:57;;;;;;-1:-1:-1;;;;;28177:25:0;;;;;:57;;;;;-1:-1:-1;;28177:57:0;;;;;;;-1:-1:-1;28177:25:0;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;28177:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;28250:43:0;;-1:-1:-1;;;;;28250:43:0;;;-1:-1:-1;28250:43:0;;-1:-1:-1;28250:43:0;;;28087:214;;:::o;30524:828::-;20704:10;20726:4;20704:27;20695:70;;;;;-1:-1:-1;;;;;20695:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20695:70:0;;;;;;;;;;;;;;;30715:85;;;-1:-1:-1;;;;;30715:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;30715:85:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;30715:85:0;179:29:-1;160:49;;31053:79:0;;;;;;;;;;;-1:-1:-1;31053:79:0;;;;;;30689:23;31053:79;;;;;;;;;;;;;;;;;30715:85;;-1:-1:-1;;30689:23:0;;31031:21;;;31110:6;;-1:-1:-1;;30715:85:0;;31053:79;;;;;;;;;25:18:-1;31053:79:0;;25:18:-1;-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31053:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31053:79:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;31053:79:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;31031:102:0;;;;31053:79;;-1:-1:-1;31031:102:0;-1:-1:-1;31031:102:0;;-1:-1:-1;25:18;-1:-1;31031:102:0;-1:-1:-1;31031:102:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;31031:102:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;31014:119:0;;-1:-1:-1;31014:119:0;-1:-1:-1;31144:41:0;;;;;;;;-1:-1:-1;;;;;31144:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31144:41:0;;;;;;;;;;;;;;;31213:1;31200:3;:10;:14;31196:149;;;31231:6;31267:3;31256:23;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31256:23:0;;-1:-1:-1;31294:39:0;;;;;;;;-1:-1:-1;;;;;31294:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;32411:910;20704:10;20726:4;20704:27;20695:70;;;;;-1:-1:-1;;;;;20695:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20695:70:0;;;;;;;;;;;;;;;32648:23;32685:5;32682:285;;;32795:5;32802:3;32807:8;32817:5;;32720:103;;;;;;-1:-1:-1;;;;;32720:103:0;-1:-1:-1;;;;;32720:103:0;;;;;;-1:-1:-1;;;;;32720:103:0;-1:-1:-1;;;;;32720:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;32720:103:0;;;-1:-1:-1;;137:4;117:14;;;113:30;;157:16;;;26:21;;;22:32;;;6:49;;32720:103:0;-1:-1:-1;49:4;25:18;;61:17;;32720:103:0;-1:-1:-1;;;;;182:15;;;179:29;160:49;;32720:103:0;-1:-1:-1;32682:285:0;;-1:-1:-1;;;;;;;32682:285:0;;-1:-1:-1;32869:86:0;;;-1:-1:-1;;;;;32869:86:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32869:86:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;32869:86:0;179:29:-1;160:49;;32682:285:0;33052:12;33153:16;-1:-1:-1;;;;;33153:21:0;33232:12;33246:1;33249:10;33175:85;;;;;;-1:-1:-1;;;;;33175:85:0;-1:-1:-1;;;;;33175:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33175:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33175:85:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;33175:85:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;33153:108:0;;;;33175:85;;-1:-1:-1;33153:108:0;-1:-1:-1;33153:108:0;;-1:-1:-1;25:18;-1:-1;33153:108:0;-1:-1:-1;33153:108:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33153:108:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;33140:121:0;;-1:-1:-1;;33272:41:0;;;;;;;;-1:-1:-1;;;;;33272:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;33272:41:0;;;;;;;;;;;;;;;20776:1;;32411:910;;;;;;;;:::o;20609:36::-;;;-1:-1:-1;;;;;20609:36:0;;:::o;29169:395::-;20704:10;20726:4;20704:27;20695:70;;;;;-1:-1:-1;;;;;20695:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20695:70:0;;;;;;;;;;;;;;;29429:74;;;-1:-1:-1;;;;;29429:74:0;;;;;;;;;;;;;;;;;;29401:12;29429:74;;;;;;;;26:21:-1;;;29429:74:0;22:32:-1;6:49;;29429:74:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;29418:86:0;;;;29401:12;;29418:10;;;;29429:74;29418:86;;;;25:18:-1;29418:86:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;29418:86:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;29400:104:0;;;29523:7;29515:41;;;;;;;-1:-1:-1;;;;;29515:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29515:41:0;;;;;;;;;;;;;;;20776:1;29169:395;;;:::o;28373:667::-;28473:15;28491:23;28508:5;;28491:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28491:16:0;;-1:-1:-1;;;28491:23:0:i;:::-;28473:41;;28525:43;28540:7;27439:1;28525:14;:43::i;:::-;28600:14;;;:54;;;;;;-1:-1:-1;;;;;28600:54:0;;;;;;;;;;;;;;;;28581:16;;28600:14;;;;:25;;:54;;;;;;;;;;;;;;;:14;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;28600:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28600:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28600:54:0;;-1:-1:-1;28665:37:0;28600:54;28695:6;28665:19;:37::i;:::-;28713:16;28732:26;28744:5;;28732:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28751:6:0;;-1:-1:-1;28732:11:0;;-1:-1:-1;;28732:26:0:i;:::-;28713:45;;28769:41;28779:8;28789:10;;28769:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28801:8:0;;-1:-1:-1;28769:9:0;;-1:-1:-1;;28769:41:0:i;:::-;28889:12;28914:4;-1:-1:-1;;;;;28906:18:0;28925:5;;28906:25;;;;;30:3:-1;22:6;14;1:33;28906:25:0;;45:16:-1;;;-1:-1;28906:25:0;;-1:-1:-1;28906:25:0;;-1:-1:-1;;28906:25:0;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;28888:43:0;;;28950:7;28942:39;;;;;;;-1:-1:-1;;;;;28942:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29025:6;28997:35;29018:5;;28997:35;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;28997:35:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;28997:35:0;;;;-1:-1:-1;28997:35:0;;-1:-1:-1;;;;28997:35:0;28373:667;;;;;;;;;:::o;25553:676::-;25619:10;25663:2;25650;:9;:15;;25642:41;;;;;;;-1:-1:-1;;;;;25642:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25881:2:0;25873:11;25867:18;-1:-1:-1;;;;;25857:29:0;;25768:454::o;26612:240::-;26742:1;26733:6;:10;26729:116;;;26768:14;;:45;;;;;;-1:-1:-1;;;;;26768:45:0;;;;;;;;;;;;;;;:14;;;;;:27;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;26768:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26768:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26768:45:0;26817:1;26768:50;;26760:73;;;;;-1:-1:-1;;;;;26760:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:240;;:::o;26921:280::-;-1:-1:-1;;;;;27017:14:0;;:8;:14;;;;;;;;;;;27008:23;;27000:51;;;;;-1:-1:-1;;;;;27000:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27103:3;27109:5;27103:11;27070:29;27083:6;27091:7;27070:12;:29::i;:::-;:44;;27062:70;;;;;-1:-1:-1;;;;;27062:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27170:14:0;;;:8;:14;;;;;;;;;;:23;26921:280::o;21615:415::-;21836:67;;21853:10;21836:67;;;;;;;21694:7;21836:67;;;;;;21882:4;21836:67;;;;;;;;;21694:7;;;;21853:10;21694:7;;21882:4;;21836:67;;21896:6;;21836:67;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21836:67:0;;;;;-1:-1:-1;21836:67:0;;;26:21:-1;;;6:49;;21836:67:0;;;;;;21826:78;;;;;;;;;21965:16;;;;;;;;;;;;;;;;21948:43;;21826:78;;-1:-1:-1;;;;21836:67:0;;-1:-1:-1;21826:78:0;;-1:-1:-1;21948:43:0;;;;-1:-1:-1;21948:43:0;;21965:16;-1:-1:-1;21965:16:0;21948:43;21965:16;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21948:43:0;;;;;-1:-1:-1;21948:43:0;;;26:21:-1;;;6:49;;21948:43:0;;;;;21938:54;;;;;;;;;-1:-1:-1;;;;;21615:415:0;;;;;:::o;22038:320::-;-1:-1:-1;;;;;22155:25:0;;;;22147:57;;;;;-1:-1:-1;;;;;22147:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22215:21;22239:30;22247:9;22258:10;22239:7;:30::i;:::-;22215:54;-1:-1:-1;;;;;;22288:28:0;;;;;;;22280:70;;;;;-1:-1:-1;;;;;22280:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19100:294;19158:7;19186:5;;;19178:14;;;;;;19261:9;19277:1;19273;:5;;;;;;;;;19100:294;-1:-1:-1;;;;19100:294:0:o;23360:1930::-;23501:16;;23438:7;;23521:2;23501:22;23497:74;;-1:-1:-1;23556:1:0;23540:19;;23497:74;23932:4;23917:20;;23911:27;23978:4;23963:20;;23957:27;24032:4;24017:20;;24011:27;23640:9;24003:36;24962:66;24949:79;;24945:129;;;25060:1;25045:17;;;;;;;24945:129;25090:1;:7;;25095:2;25090:7;;:18;;;;;25101:1;:7;;25106:2;25101:7;;25090:18;25086:68;;;25140:1;25125:17;;;;;;;25086:68;25258:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25258:24:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;25258:24:0;;-1:-1:-1;;25258:24:0;;;23360:1930;-1:-1:-1;;;;;;;23360:1930:0:o

Swarm Source

bzzr://ad7e24d9f2033a4d586d07dc7fc7d071142bb59cec24e27c3d21dcc6e56cb00b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.