ETH Price: $1,927.09 (-4.69%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Weeks237080972025-11-02 0:35:47118 days ago1762043747IN
0xFEB7e2D8...Bf1388031
0 ETH0.000017810.17314422
Claim Weeks237023942025-11-01 5:26:59118 days ago1761974819IN
0xFEB7e2D8...Bf1388031
0 ETH0.000024370.16732608
Claim Weeks236329172025-10-22 11:57:59128 days ago1761134279IN
0xFEB7e2D8...Bf1388031
0 ETH0.000011260.10667989
Claim Weeks235725912025-10-14 1:13:35137 days ago1760404415IN
0xFEB7e2D8...Bf1388031
0 ETH0.000039640.21496635
Claim Weeks235320532025-10-08 9:10:11142 days ago1759914611IN
0xFEB7e2D8...Bf1388031
0 ETH0.000016960.15659721
Claim Weeks235236262025-10-07 4:55:11143 days ago1759812911IN
0xFEB7e2D8...Bf1388031
0 ETH0.000018790.10113013
Claim Weeks235142772025-10-05 21:32:23145 days ago1759699943IN
0xFEB7e2D8...Bf1388031
0 ETH0.00003010.251118
Claim Weeks235088082025-10-05 3:13:11145 days ago1759633991IN
0xFEB7e2D8...Bf1388031
0 ETH0.000015170.14
Claim Weeks235047582025-10-04 13:37:35146 days ago1759585055IN
0xFEB7e2D8...Bf1388031
0 ETH0.000014510.13399108
Claim Weeks235007022025-10-04 0:01:23147 days ago1759536083IN
0xFEB7e2D8...Bf1388031
0 ETH0.000338691.11169122
Claim Weeks234453942025-09-26 6:25:59154 days ago1758867959IN
0xFEB7e2D8...Bf1388031
0 ETH0.000058450.31467504
Claim Weeks233758762025-09-16 13:18:23164 days ago1758028703IN
0xFEB7e2D8...Bf1388031
0 ETH0.000140231.29398797
Claim Weeks233718812025-09-15 23:53:11165 days ago1757980391IN
0xFEB7e2D8...Bf1388031
0 ETH0.000052660.19905905
Claim Weeks233353712025-09-10 21:32:59170 days ago1757539979IN
0xFEB7e2D8...Bf1388031
0 ETH0.000029430.32244702
Claim Weeks233181422025-09-08 11:41:47172 days ago1757331707IN
0xFEB7e2D8...Bf1388031
0 ETH0.000022760.24939957
Claim Weeks232988722025-09-05 19:03:35175 days ago1757099015IN
0xFEB7e2D8...Bf1388031
0 ETH0.000054510.503024
Claim Weeks232849512025-09-03 20:23:59177 days ago1756931039IN
0xFEB7e2D8...Bf1388031
0 ETH0.0000820.77637683
Claim Weeks232821912025-09-03 11:08:59177 days ago1756897739IN
0xFEB7e2D8...Bf1388031
0 ETH0.000031090.28686567
Claim Weeks232622962025-08-31 16:22:47180 days ago1756657367IN
0xFEB7e2D8...Bf1388031
0 ETH0.000029140.31801644
Claim Weeks232622922025-08-31 16:21:59180 days ago1756657319IN
0xFEB7e2D8...Bf1388031
0 ETH0.00008120.32445448
Claim Weeks232478582025-08-29 16:04:35182 days ago1756483475IN
0xFEB7e2D8...Bf1388031
0 ETH0.000206282.33078054
Claim Weeks232409282025-08-28 16:52:23183 days ago1756399943IN
0xFEB7e2D8...Bf1388031
0 ETH0.000076980.71057922
Claim Weeks232035352025-08-23 11:37:35188 days ago1755949055IN
0xFEB7e2D8...Bf1388031
0 ETH0.000054270.37263339
Claim Weeks231630652025-08-17 20:08:11194 days ago1755461291IN
0xFEB7e2D8...Bf1388031
0 ETH0.000018260.2
Claim Weeks231454592025-08-15 9:12:23196 days ago1755249143IN
0xFEB7e2D8...Bf1388031
0 ETH0.000129450.58383542
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MerkleRedeem

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2022-03-31
*/

// Sources flattened with hardhat v2.9.2 https://hardhat.org

// File @openzeppelin/contracts/cryptography/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File @openzeppelin/contracts/GSN/[email protected]

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File contracts/MerkleRedeem.sol

pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;



contract MerkleRedeem is Ownable {

    IERC20 public token;

    event Claimed(address _claimant, uint256 _balance);

    // Recorded weeks
    mapping(uint => bytes32) public weekMerkleRoots;
    mapping(uint => mapping(address => bool)) public claimed;

    constructor(
        address _token
    ) public {
        token = IERC20(_token);
    }

    function disburse(
        address _liquidityProvider,
        uint _balance
    )
        private
    {
        if (_balance > 0) {
            emit Claimed(_liquidityProvider, _balance);
            require(token.transfer(_liquidityProvider, _balance), "ERR_TRANSFER_FAILED");
        }
    }

    function claimWeek(
        address _liquidityProvider,
        uint _week,
        uint _claimedBalance,
        bytes32[] memory _merkleProof
    )
        public
    {
        require(!claimed[_week][_liquidityProvider]);
        require(verifyClaim(_liquidityProvider, _week, _claimedBalance, _merkleProof), 'Incorrect merkle proof');

        claimed[_week][_liquidityProvider] = true;
        disburse(_liquidityProvider, _claimedBalance);
    }

    struct Claim {
        uint week;
        uint balance;
        bytes32[] merkleProof;
    }

    function claimWeeks(
        address _liquidityProvider,
        Claim[] memory claims
    )
        public
    {
        uint totalBalance = 0;
        Claim memory claim ;
        for(uint i = 0; i < claims.length; i++) {
            claim = claims[i];

            require(!claimed[claim.week][_liquidityProvider]);
            require(verifyClaim(_liquidityProvider, claim.week, claim.balance, claim.merkleProof), 'Incorrect merkle proof');

            totalBalance += claim.balance;
            claimed[claim.week][_liquidityProvider] = true;
        }
        disburse(_liquidityProvider, totalBalance);
    }

    function claimStatus(
        address _liquidityProvider,
        uint _begin,
        uint _end
    )
        external
        view
        returns (bool[] memory)
    {
        uint size = 1 + _end - _begin;
        bool[] memory arr = new bool[](size);
        for(uint i = 0; i < size; i++) {
            arr[i] = claimed[_begin + i][_liquidityProvider];
        }
        return arr;
    }

    function merkleRoots(
        uint _begin,
        uint _end
    ) 
        external
        view 
        returns (bytes32[] memory)
    {
        uint size = 1 + _end - _begin;
        bytes32[] memory arr = new bytes32[](size);
        for(uint i = 0; i < size; i++) {
            arr[i] = weekMerkleRoots[_begin + i];
        }
        return arr;
    }

    function verifyClaim(
        address _liquidityProvider,
        uint _week,
        uint _claimedBalance,
        bytes32[] memory _merkleProof
    )
        public
        view
        returns (bool valid)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_liquidityProvider, _claimedBalance));
        return MerkleProof.verify(_merkleProof, weekMerkleRoots[_week], leaf);
    }

    function seedAllocations(
        uint _week,
        bytes32 _merkleRoot,
        uint _totalAllocation
    )
        external
        onlyOwner
    {
        require(weekMerkleRoots[_week] == bytes32(0), "cannot rewrite merkle root");
        weekMerkleRoots[_week] = _merkleRoot;

        require(token.transferFrom(msg.sender, address(this), _totalAllocation), "ERR_TRANSFER_FAILED");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint256","name":"_begin","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"claimStatus","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint256","name":"_week","type":"uint256"},{"internalType":"uint256","name":"_claimedBalance","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claimWeek","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityProvider","type":"address"},{"components":[{"internalType":"uint256","name":"week","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"internalType":"struct MerkleRedeem.Claim[]","name":"claims","type":"tuple[]"}],"name":"claimWeeks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_begin","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_week","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalAllocation","type":"uint256"}],"name":"seedAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityProvider","type":"address"},{"internalType":"uint256","name":"_week","type":"uint256"},{"internalType":"uint256","name":"_claimedBalance","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"valid","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"weekMerkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001c5d38038062001c5d83398181016040528101906200003791906200014e565b6000620000496200012f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001c8565b600033905090565b6000815190506200014881620001ae565b92915050565b6000602082840312156200016157600080fd5b6000620001718482850162000137565b91505092915050565b600062000187826200018e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620001b9816200017a565b8114620001c557600080fd5b50565b611a8580620001d86000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461018b578063c804c39a146101a9578063dd8c9c9d146101c5578063eb0d07f5146101f5578063f2fde38b14610225578063fc0c546a14610241576100b4565b8063120aa877146100b957806339436b00146100e957806347fb23c1146101195780634cd488ab1461014957806358b4e4b414610165578063715018a614610181575b600080fd5b6100d360048036038101906100ce9190611224565b61025f565b6040516100e09190611711565b60405180910390f35b61010360048036038101906100fe91906112af565b61028e565b60405161011091906116ef565b60405180910390f35b610133600480360381019061012e9190611108565b61033a565b60405161014091906116cd565b60405180910390f35b610163600480360381019061015e9190611260565b610437565b005b61017f600480360381019061017a9190611157565b610632565b005b61018961075e565b005b6101936108b3565b6040516101a09190611652565b60405180910390f35b6101c360048036038101906101be91906110b4565b6108dc565b005b6101df60048036038101906101da91906111fb565b610a65565b6040516101ec919061172c565b60405180910390f35b61020f600480360381019061020a9190611157565b610a7d565b60405161021c9190611711565b60405180910390f35b61023f600480360381019061023a919061108b565b610ad4565b005b610249610c98565b6040516102569190611747565b60405180910390f35b60036020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60606000838360010103905060608167ffffffffffffffff811180156102b357600080fd5b506040519080825280602002602001820160405280156102e25781602001602082028036833780820191505090505b50905060008090505b8281101561032e576002600082880181526020019081526020016000205482828151811061031557fe5b60200260200101818152505080806001019150506102eb565b50809250505092915050565b60606000838360010103905060608167ffffffffffffffff8111801561035f57600080fd5b5060405190808252806020026020018201604052801561038e5781602001602082028036833780820191505090505b50905060008090505b8281101561042a5760036000828801815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682828151811061040b57fe5b6020026020010190151590811515815250508080600101915050610397565b5080925050509392505050565b61043f610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c4906117a2565b60405180910390fd5b6000801b600260008581526020019081526020016000205414610525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051c906117e2565b60405180910390fd5b816002600085815260200190815260200160002081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161059c9392919061166d565b602060405180830381600087803b1580156105b657600080fd5b505af11580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906111d2565b61062d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610624906117c2565b60405180910390fd5b505050565b6003600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561069a57600080fd5b6106a684848484610a7d565b6106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611782565b60405180910390fd5b60016003600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506107588483610cc6565b50505050565b610766610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008090506108e9610ea7565b60008090505b8351811015610a545783818151811061090457fe5b60200260200101519150600360008360000151815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561097a57600080fd5b61099285836000015184602001518560400151610a7d565b6109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611782565b60405180910390fd5b8160200151830192506001600360008460000151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506108ef565b50610a5f8483610cc6565b50505050565b60026020528060005260406000206000915090505481565b6000808584604051602001610a939291906115fa565b604051602081830303815290604052805190602001209050610ac983600260008881526020019081526020016000205483610dfb565b915050949350505050565b610adc610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190611762565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b6000811115610df7577fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8282604051610d009291906116a4565b60405180910390a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d659291906116a4565b602060405180830381600087803b158015610d7f57600080fd5b505af1158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db791906111d2565b610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906117c2565b60405180910390fd5b5b5050565b60008082905060008090505b8551811015610e99576000868281518110610e1e57fe5b60200260200101519050808311610e5f578281604051602001610e42929190611626565b604051602081830303815290604052805190602001209250610e8b565b8083604051602001610e72929190611626565b6040516020818303038152906040528051906020012092505b508080600101915050610e07565b508381149150509392505050565b60405180606001604052806000815260200160008152602001606081525090565b600081359050610ed7816119f3565b92915050565b600082601f830112610eee57600080fd5b8135610f01610efc8261182f565b611802565b91508181835260208401935060208101905083856020840282011115610f2657600080fd5b60005b83811015610f565781610f3c8882610fe9565b845260208401935060208301925050600181019050610f29565b5050505092915050565b600082601f830112610f7157600080fd5b8135610f84610f7f82611857565b611802565b9150818183526020840193506020810190508360005b83811015610fca5781358601610fb08882610ffe565b845260208401935060208301925050600181019050610f9a565b5050505092915050565b600081519050610fe381611a0a565b92915050565b600081359050610ff881611a21565b92915050565b60006060828403121561101057600080fd5b61101a6060611802565b9050600061102a84828501611076565b600083015250602061103e84828501611076565b602083015250604082013567ffffffffffffffff81111561105e57600080fd5b61106a84828501610edd565b60408301525092915050565b60008135905061108581611a38565b92915050565b60006020828403121561109d57600080fd5b60006110ab84828501610ec8565b91505092915050565b600080604083850312156110c757600080fd5b60006110d585828601610ec8565b925050602083013567ffffffffffffffff8111156110f257600080fd5b6110fe85828601610f60565b9150509250929050565b60008060006060848603121561111d57600080fd5b600061112b86828701610ec8565b935050602061113c86828701611076565b925050604061114d86828701611076565b9150509250925092565b6000806000806080858703121561116d57600080fd5b600061117b87828801610ec8565b945050602061118c87828801611076565b935050604061119d87828801611076565b925050606085013567ffffffffffffffff8111156111ba57600080fd5b6111c687828801610edd565b91505092959194509250565b6000602082840312156111e457600080fd5b60006111f284828501610fd4565b91505092915050565b60006020828403121561120d57600080fd5b600061121b84828501611076565b91505092915050565b6000806040838503121561123757600080fd5b600061124585828601611076565b925050602061125685828601610ec8565b9150509250929050565b60008060006060848603121561127557600080fd5b600061128386828701611076565b935050602061129486828701610fe9565b92505060406112a586828701611076565b9150509250925092565b600080604083850312156112c257600080fd5b60006112d085828601611076565b92505060206112e185828601611076565b9150509250929050565b60006112f7838361140c565b60208301905092915050565b600061130f838361142a565b60208301905092915050565b61132481611954565b82525050565b61133381611902565b82525050565b61134a61134582611902565b6119ae565b82525050565b600061135b8261189f565b61136581856118cf565b93506113708361187f565b8060005b838110156113a157815161138888826112eb565b9750611393836118b5565b925050600181019050611374565b5085935050505092915050565b60006113b9826118aa565b6113c381856118e0565b93506113ce8361188f565b8060005b838110156113ff5781516113e68882611303565b97506113f1836118c2565b9250506001810190506113d2565b5085935050505092915050565b61141581611914565b82525050565b61142481611914565b82525050565b61143381611920565b82525050565b61144281611920565b82525050565b61145961145482611920565b6119c0565b82525050565b61146881611966565b82525050565b600061147b6026836118f1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114e16016836118f1565b91507f496e636f7272656374206d65726b6c652070726f6f66000000000000000000006000830152602082019050919050565b60006115216020836118f1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115616013836118f1565b91507f4552525f5452414e534645525f4641494c4544000000000000000000000000006000830152602082019050919050565b60006115a1601a836118f1565b91507f63616e6e6f742072657772697465206d65726b6c6520726f6f740000000000006000830152602082019050919050565b6115dd8161194a565b82525050565b6115f46115ef8261194a565b6119dc565b82525050565b60006116068285611339565b60148201915061161682846115e3565b6020820191508190509392505050565b60006116328285611448565b6020820191506116428284611448565b6020820191508190509392505050565b6000602082019050611667600083018461132a565b92915050565b6000606082019050611682600083018661131b565b61168f602083018561132a565b61169c60408301846115d4565b949350505050565b60006040820190506116b9600083018561132a565b6116c660208301846115d4565b9392505050565b600060208201905081810360008301526116e78184611350565b905092915050565b6000602082019050818103600083015261170981846113ae565b905092915050565b6000602082019050611726600083018461141b565b92915050565b60006020820190506117416000830184611439565b92915050565b600060208201905061175c600083018461145f565b92915050565b6000602082019050818103600083015261177b8161146e565b9050919050565b6000602082019050818103600083015261179b816114d4565b9050919050565b600060208201905081810360008301526117bb81611514565b9050919050565b600060208201905081810360008301526117db81611554565b9050919050565b600060208201905081810360008301526117fb81611594565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171561182557600080fd5b8060405250919050565b600067ffffffffffffffff82111561184657600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561186e57600080fd5b602082029050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061190d8261192a565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061195f8261198a565b9050919050565b600061197182611978565b9050919050565b60006119838261192a565b9050919050565b60006119958261199c565b9050919050565b60006119a78261192a565b9050919050565b60006119b9826119ca565b9050919050565b6000819050919050565b60006119d5826119e6565b9050919050565b6000819050919050565b60008160601b9050919050565b6119fc81611902565b8114611a0757600080fd5b50565b611a1381611914565b8114611a1e57600080fd5b50565b611a2a81611920565b8114611a3557600080fd5b50565b611a418161194a565b8114611a4c57600080fd5b5056fea2646970667358221220c4dd6aac39c7d7051ea69486582883102a8b14955883c7bcc71329a3786a73b764736f6c63430006080033000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461018b578063c804c39a146101a9578063dd8c9c9d146101c5578063eb0d07f5146101f5578063f2fde38b14610225578063fc0c546a14610241576100b4565b8063120aa877146100b957806339436b00146100e957806347fb23c1146101195780634cd488ab1461014957806358b4e4b414610165578063715018a614610181575b600080fd5b6100d360048036038101906100ce9190611224565b61025f565b6040516100e09190611711565b60405180910390f35b61010360048036038101906100fe91906112af565b61028e565b60405161011091906116ef565b60405180910390f35b610133600480360381019061012e9190611108565b61033a565b60405161014091906116cd565b60405180910390f35b610163600480360381019061015e9190611260565b610437565b005b61017f600480360381019061017a9190611157565b610632565b005b61018961075e565b005b6101936108b3565b6040516101a09190611652565b60405180910390f35b6101c360048036038101906101be91906110b4565b6108dc565b005b6101df60048036038101906101da91906111fb565b610a65565b6040516101ec919061172c565b60405180910390f35b61020f600480360381019061020a9190611157565b610a7d565b60405161021c9190611711565b60405180910390f35b61023f600480360381019061023a919061108b565b610ad4565b005b610249610c98565b6040516102569190611747565b60405180910390f35b60036020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60606000838360010103905060608167ffffffffffffffff811180156102b357600080fd5b506040519080825280602002602001820160405280156102e25781602001602082028036833780820191505090505b50905060008090505b8281101561032e576002600082880181526020019081526020016000205482828151811061031557fe5b60200260200101818152505080806001019150506102eb565b50809250505092915050565b60606000838360010103905060608167ffffffffffffffff8111801561035f57600080fd5b5060405190808252806020026020018201604052801561038e5781602001602082028036833780820191505090505b50905060008090505b8281101561042a5760036000828801815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682828151811061040b57fe5b6020026020010190151590811515815250508080600101915050610397565b5080925050509392505050565b61043f610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c4906117a2565b60405180910390fd5b6000801b600260008581526020019081526020016000205414610525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051c906117e2565b60405180910390fd5b816002600085815260200190815260200160002081905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161059c9392919061166d565b602060405180830381600087803b1580156105b657600080fd5b505af11580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906111d2565b61062d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610624906117c2565b60405180910390fd5b505050565b6003600084815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561069a57600080fd5b6106a684848484610a7d565b6106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611782565b60405180910390fd5b60016003600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506107588483610cc6565b50505050565b610766610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008090506108e9610ea7565b60008090505b8351811015610a545783818151811061090457fe5b60200260200101519150600360008360000151815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561097a57600080fd5b61099285836000015184602001518560400151610a7d565b6109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611782565b60405180910390fd5b8160200151830192506001600360008460000151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506108ef565b50610a5f8483610cc6565b50505050565b60026020528060005260406000206000915090505481565b6000808584604051602001610a939291906115fa565b604051602081830303815290604052805190602001209050610ac983600260008881526020019081526020016000205483610dfb565b915050949350505050565b610adc610cbe565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190611762565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b6000811115610df7577fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8282604051610d009291906116a4565b60405180910390a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d659291906116a4565b602060405180830381600087803b158015610d7f57600080fd5b505af1158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db791906111d2565b610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906117c2565b60405180910390fd5b5b5050565b60008082905060008090505b8551811015610e99576000868281518110610e1e57fe5b60200260200101519050808311610e5f578281604051602001610e42929190611626565b604051602081830303815290604052805190602001209250610e8b565b8083604051602001610e72929190611626565b6040516020818303038152906040528051906020012092505b508080600101915050610e07565b508381149150509392505050565b60405180606001604052806000815260200160008152602001606081525090565b600081359050610ed7816119f3565b92915050565b600082601f830112610eee57600080fd5b8135610f01610efc8261182f565b611802565b91508181835260208401935060208101905083856020840282011115610f2657600080fd5b60005b83811015610f565781610f3c8882610fe9565b845260208401935060208301925050600181019050610f29565b5050505092915050565b600082601f830112610f7157600080fd5b8135610f84610f7f82611857565b611802565b9150818183526020840193506020810190508360005b83811015610fca5781358601610fb08882610ffe565b845260208401935060208301925050600181019050610f9a565b5050505092915050565b600081519050610fe381611a0a565b92915050565b600081359050610ff881611a21565b92915050565b60006060828403121561101057600080fd5b61101a6060611802565b9050600061102a84828501611076565b600083015250602061103e84828501611076565b602083015250604082013567ffffffffffffffff81111561105e57600080fd5b61106a84828501610edd565b60408301525092915050565b60008135905061108581611a38565b92915050565b60006020828403121561109d57600080fd5b60006110ab84828501610ec8565b91505092915050565b600080604083850312156110c757600080fd5b60006110d585828601610ec8565b925050602083013567ffffffffffffffff8111156110f257600080fd5b6110fe85828601610f60565b9150509250929050565b60008060006060848603121561111d57600080fd5b600061112b86828701610ec8565b935050602061113c86828701611076565b925050604061114d86828701611076565b9150509250925092565b6000806000806080858703121561116d57600080fd5b600061117b87828801610ec8565b945050602061118c87828801611076565b935050604061119d87828801611076565b925050606085013567ffffffffffffffff8111156111ba57600080fd5b6111c687828801610edd565b91505092959194509250565b6000602082840312156111e457600080fd5b60006111f284828501610fd4565b91505092915050565b60006020828403121561120d57600080fd5b600061121b84828501611076565b91505092915050565b6000806040838503121561123757600080fd5b600061124585828601611076565b925050602061125685828601610ec8565b9150509250929050565b60008060006060848603121561127557600080fd5b600061128386828701611076565b935050602061129486828701610fe9565b92505060406112a586828701611076565b9150509250925092565b600080604083850312156112c257600080fd5b60006112d085828601611076565b92505060206112e185828601611076565b9150509250929050565b60006112f7838361140c565b60208301905092915050565b600061130f838361142a565b60208301905092915050565b61132481611954565b82525050565b61133381611902565b82525050565b61134a61134582611902565b6119ae565b82525050565b600061135b8261189f565b61136581856118cf565b93506113708361187f565b8060005b838110156113a157815161138888826112eb565b9750611393836118b5565b925050600181019050611374565b5085935050505092915050565b60006113b9826118aa565b6113c381856118e0565b93506113ce8361188f565b8060005b838110156113ff5781516113e68882611303565b97506113f1836118c2565b9250506001810190506113d2565b5085935050505092915050565b61141581611914565b82525050565b61142481611914565b82525050565b61143381611920565b82525050565b61144281611920565b82525050565b61145961145482611920565b6119c0565b82525050565b61146881611966565b82525050565b600061147b6026836118f1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114e16016836118f1565b91507f496e636f7272656374206d65726b6c652070726f6f66000000000000000000006000830152602082019050919050565b60006115216020836118f1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115616013836118f1565b91507f4552525f5452414e534645525f4641494c4544000000000000000000000000006000830152602082019050919050565b60006115a1601a836118f1565b91507f63616e6e6f742072657772697465206d65726b6c6520726f6f740000000000006000830152602082019050919050565b6115dd8161194a565b82525050565b6115f46115ef8261194a565b6119dc565b82525050565b60006116068285611339565b60148201915061161682846115e3565b6020820191508190509392505050565b60006116328285611448565b6020820191506116428284611448565b6020820191508190509392505050565b6000602082019050611667600083018461132a565b92915050565b6000606082019050611682600083018661131b565b61168f602083018561132a565b61169c60408301846115d4565b949350505050565b60006040820190506116b9600083018561132a565b6116c660208301846115d4565b9392505050565b600060208201905081810360008301526116e78184611350565b905092915050565b6000602082019050818103600083015261170981846113ae565b905092915050565b6000602082019050611726600083018461141b565b92915050565b60006020820190506117416000830184611439565b92915050565b600060208201905061175c600083018461145f565b92915050565b6000602082019050818103600083015261177b8161146e565b9050919050565b6000602082019050818103600083015261179b816114d4565b9050919050565b600060208201905081810360008301526117bb81611514565b9050919050565b600060208201905081810360008301526117db81611554565b9050919050565b600060208201905081810360008301526117fb81611594565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171561182557600080fd5b8060405250919050565b600067ffffffffffffffff82111561184657600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561186e57600080fd5b602082029050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061190d8261192a565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061195f8261198a565b9050919050565b600061197182611978565b9050919050565b60006119838261192a565b9050919050565b60006119958261199c565b9050919050565b60006119a78261192a565b9050919050565b60006119b9826119ca565b9050919050565b6000819050919050565b60006119d5826119e6565b9050919050565b6000819050919050565b60008160601b9050919050565b6119fc81611902565b8114611a0757600080fd5b50565b611a1381611914565b8114611a1e57600080fd5b50565b611a2a81611920565b8114611a3557600080fd5b50565b611a418161194a565b8114611a4c57600080fd5b5056fea2646970667358221220c4dd6aac39c7d7051ea69486582883102a8b14955883c7bcc71329a3786a73b764736f6c63430006080033

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

000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5

-----Decoded View---------------
Arg [0] : _token (address): 0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5

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


Deployed Bytecode Sourcemap

7639:3514:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7639:3514:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;7845:56:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9957:371;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9540:409;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10744:406;;;;;;;;;;;;;;;;:::i;:::-;;8322:464;;;;;;;;;;;;;;;;:::i;:::-;;4173:148;;;:::i;:::-;;3531:79;;;:::i;:::-;;;;;;;;;;;;;;;;8898:634;;;;;;;;;;;;;;;;:::i;:::-;;7791:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10336:400;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4476:244;;;;;;;;;;;;;;;;:::i;:::-;;7681:19;;;:::i;:::-;;;;;;;;;;;;;;;;7845:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9957:371::-;10079:16;10113:9;10136:6;10129:4;10125:1;:8;:17;10113:29;;10153:20;10190:4;10176:19;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10176:19:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;10176:19:0;;;;10153:42;;10210:6;10219:1;10210:10;;10206:94;10226:4;10222:1;:8;10206:94;;;10261:15;:27;10286:1;10277:6;:10;10261:27;;;;;;;;;;;;10252:3;10256:1;10252:6;;;;;;;;;;;;;:36;;;;;10232:3;;;;;;;10206:94;;;;10317:3;10310:10;;;;9957:371;;;;:::o;9540:409::-;9697:13;9728:9;9751:6;9744:4;9740:1;:8;:17;9728:29;;9768:17;9799:4;9788:16;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9788:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;9788:16:0;;;;9768:36;;9819:6;9828:1;9819:10;;9815:106;9835:4;9831:1;:8;9815:106;;;9870:7;:19;9887:1;9878:6;:10;9870:19;;;;;;;;;;;:39;9890:18;9870:39;;;;;;;;;;;;;;;;;;;;;;;;;9861:3;9865:1;9861:6;;;;;;;;;;;;;:48;;;;;;;;;;;9841:3;;;;;;;9815:106;;;;9938:3;9931:10;;;;9540:409;;;;;:::o;10744:406::-;3753:12;:10;:12::i;:::-;3743:22;;:6;;;;;;;;;;;:22;;;3735:67;;;;;;;;;;;;;;;;;;;;;;10954:1:::1;10946:10:::0;::::1;10920:15;:22;10936:5;10920:22;;;;;;;;;;;;:36;10912:75;;;;;;;;;;;;;;;;;;;;;;11023:11;10998:15;:22;11014:5;10998:22;;;;;;;;;;;:36;;;;11055:5;;;;;;;;;;;:18;;;11074:10;11094:4;11101:16;11055:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;11055:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;11055:63:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;11055:63:0;;;;;;;;;11047:95;;;;;;;;;;;;;;;;;;;;;;10744:406:::0;;;:::o;8322:464::-;8518:7;:14;8526:5;8518:14;;;;;;;;;;;:34;8533:18;8518:34;;;;;;;;;;;;;;;;;;;;;;;;;8517:35;8509:44;;12:1:-1;9;2:12;8509:44:0;8572:69;8584:18;8604:5;8611:15;8628:12;8572:11;:69::i;:::-;8564:104;;;;;;;;;;;;;;;;;;;;;;8718:4;8681:7;:14;8689:5;8681:14;;;;;;;;;;;:34;8696:18;8681:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;8733:45;8742:18;8762:15;8733:8;:45::i;:::-;8322:464;;;;:::o;4173:148::-;3753:12;:10;:12::i;:::-;3743:22;;:6;;;;;;;;;;;:22;;;3735:67;;;;;;;;;;;;;;;;;;;;;;4280:1:::1;4243:40;;4264:6;::::0;::::1;;;;;;;;;4243:40;;;;;;;;;;;;4311:1;4294:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4173:148::o:0;3531:79::-;3569:7;3596:6;;;;;;;;;;;3589:13;;3531:79;:::o;8898:634::-;9026:17;9046:1;9026:21;;9058:18;;:::i;:::-;9092:6;9101:1;9092:10;;9088:384;9108:6;:13;9104:1;:17;9088:384;;;9151:6;9158:1;9151:9;;;;;;;;;;;;;;9143:17;;9186:7;:19;9194:5;:10;;;9186:19;;;;;;;;;;;:39;9206:18;9186:39;;;;;;;;;;;;;;;;;;;;;;;;;9185:40;9177:49;;12:1:-1;9;2:12;9177:49:0;9249:77;9261:18;9281:5;:10;;;9293:5;:13;;;9308:5;:17;;;9249:11;:77::i;:::-;9241:112;;;;;;;;;;;;;;;;;;;;;;9386:5;:13;;;9370:29;;;;9456:4;9414:7;:19;9422:5;:10;;;9414:19;;;;;;;;;;;:39;9434:18;9414:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;9123:3;;;;;;;9088:384;;;;9482:42;9491:18;9511:12;9482:8;:42::i;:::-;8898:634;;;;:::o;7791:47::-;;;;;;;;;;;;;;;;;:::o;10336:400::-;10541:10;10569:12;10611:18;10631:15;10594:53;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;10594:53:0;;;10584:64;;;;;;10569:79;;10666:62;10685:12;10699:15;:22;10715:5;10699:22;;;;;;;;;;;;10723:4;10666:18;:62::i;:::-;10659:69;;;10336:400;;;;;;:::o;4476:244::-;3753:12;:10;:12::i;:::-;3743:22;;:6;;;;;;;;;;;:22;;;3735:67;;;;;;;;;;;;;;;;;;;;;;4585:1:::1;4565:22;;:8;:22;;;;4557:73;;;;;;;;;;;;;;;;;;;;;;4675:8;4646:38;;4667:6;::::0;::::1;;;;;;;;;4646:38;;;;;;;;;;;;4704:8;4695:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;4476:244:::0;:::o;7681:19::-;;;;;;;;;;;;;:::o;2079:106::-;2132:15;2167:10;2160:17;;2079:106;:::o;8010:304::-;8144:1;8133:8;:12;8129:178;;;8167:37;8175:18;8195:8;8167:37;;;;;;;;;;;;;;;;8227:5;;;;;;;;;;;:14;;;8242:18;8262:8;8227:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8227:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8227:44:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;8227:44:0;;;;;;;;;8219:76;;;;;;;;;;;;;;;;;;;;;;8129:178;8010:304;;:::o;646:796::-;737:4;754:20;777:4;754:27;;799:9;811:1;799:13;;794:525;818:5;:12;814:1;:16;794:525;;;852:20;875:5;881:1;875:8;;;;;;;;;;;;;;852:31;;920:12;904;:28;900:408;;1074:12;1088;1057:44;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1057:44:0;;;1047:55;;;;;;1032:70;;900:408;;;1264:12;1278;1247:44;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1247:44:0;;;1237:55;;;;;;1222:70;;900:408;794:525;832:3;;;;;;;794:525;;;;1430:4;1414:12;:20;1407:27;;;646:796;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;160:707;;277:3;270:4;262:6;258:17;254:27;244:2;;295:1;292;285:12;244:2;332:6;319:20;354:80;369:64;426:6;369:64;;;354:80;;;345:89;;451:5;476:6;469:5;462:21;506:4;498:6;494:17;484:27;;528:4;523:3;519:14;512:21;;581:6;628:3;620:4;612:6;608:17;603:3;599:27;596:36;593:2;;;645:1;642;635:12;593:2;670:1;655:206;680:6;677:1;674:13;655:206;;;738:3;760:37;793:3;781:10;760:37;;;755:3;748:50;821:4;816:3;812:14;805:21;;849:4;844:3;840:14;833:21;;712:149;702:1;699;695:9;690:14;;655:206;;;659:14;237:630;;;;;;;;911:744;;1050:3;1043:4;1035:6;1031:17;1027:27;1017:2;;1068:1;1065;1058:12;1017:2;1105:6;1092:20;1127:102;1142:86;1221:6;1142:86;;;1127:102;;;1118:111;;1246:5;1271:6;1264:5;1257:21;1301:4;1293:6;1289:17;1279:27;;1323:4;1318:3;1314:14;1307:21;;1376:6;1409:1;1394:255;1419:6;1416:1;1413:13;1394:255;;;1502:3;1489:17;1481:6;1477:30;1526:59;1581:3;1569:10;1526:59;;;1521:3;1514:72;1609:4;1604:3;1600:14;1593:21;;1637:4;1632:3;1628:14;1621:21;;1451:198;1441:1;1438;1434:9;1429:14;;1394:255;;;1398:14;1010:645;;;;;;;;1663:128;;1744:6;1738:13;1729:22;;1756:30;1780:5;1756:30;;;1723:68;;;;;1798:130;;1878:6;1865:20;1856:29;;1890:33;1917:5;1890:33;;;1850:78;;;;;1967:729;;2078:4;2066:9;2061:3;2057:19;2053:30;2050:2;;;2096:1;2093;2086:12;2050:2;2114:20;2129:4;2114:20;;;2105:29;;2184:1;2216:49;2261:3;2252:6;2241:9;2237:22;2216:49;;;2209:4;2202:5;2198:16;2191:75;2144:133;2330:2;2363:49;2408:3;2399:6;2388:9;2384:22;2363:49;;;2356:4;2349:5;2345:16;2338:75;2287:137;2509:2;2498:9;2494:18;2481:32;2533:18;2525:6;2522:30;2519:2;;;2565:1;2562;2555:12;2519:2;2600:74;2670:3;2661:6;2650:9;2646:22;2600:74;;;2593:4;2586:5;2582:16;2575:100;2434:252;2044:652;;;;;2703:130;;2783:6;2770:20;2761:29;;2795:33;2822:5;2795:33;;;2755:78;;;;;2840:241;;2944:2;2932:9;2923:7;2919:23;2915:32;2912:2;;;2960:1;2957;2950:12;2912:2;2995:1;3012:53;3057:7;3048:6;3037:9;3033:22;3012:53;;;3002:63;;2974:97;2906:175;;;;;3088:546;;;3256:2;3244:9;3235:7;3231:23;3227:32;3224:2;;;3272:1;3269;3262:12;3224:2;3307:1;3324:53;3369:7;3360:6;3349:9;3345:22;3324:53;;;3314:63;;3286:97;3442:2;3431:9;3427:18;3414:32;3466:18;3458:6;3455:30;3452:2;;;3498:1;3495;3488:12;3452:2;3518:100;3610:7;3601:6;3590:9;3586:22;3518:100;;;3508:110;;3393:231;3218:416;;;;;;3641:491;;;;3779:2;3767:9;3758:7;3754:23;3750:32;3747:2;;;3795:1;3792;3785:12;3747:2;3830:1;3847:53;3892:7;3883:6;3872:9;3868:22;3847:53;;;3837:63;;3809:97;3937:2;3955:53;4000:7;3991:6;3980:9;3976:22;3955:53;;;3945:63;;3916:98;4045:2;4063:53;4108:7;4099:6;4088:9;4084:22;4063:53;;;4053:63;;4024:98;3741:391;;;;;;4139:753;;;;;4319:3;4307:9;4298:7;4294:23;4290:33;4287:2;;;4336:1;4333;4326:12;4287:2;4371:1;4388:53;4433:7;4424:6;4413:9;4409:22;4388:53;;;4378:63;;4350:97;4478:2;4496:53;4541:7;4532:6;4521:9;4517:22;4496:53;;;4486:63;;4457:98;4586:2;4604:53;4649:7;4640:6;4629:9;4625:22;4604:53;;;4594:63;;4565:98;4722:2;4711:9;4707:18;4694:32;4746:18;4738:6;4735:30;4732:2;;;4778:1;4775;4768:12;4732:2;4798:78;4868:7;4859:6;4848:9;4844:22;4798:78;;;4788:88;;4673:209;4281:611;;;;;;;;4899:257;;5011:2;4999:9;4990:7;4986:23;4982:32;4979:2;;;5027:1;5024;5017:12;4979:2;5062:1;5079:61;5132:7;5123:6;5112:9;5108:22;5079:61;;;5069:71;;5041:105;4973:183;;;;;5163:241;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5318:1;5335:53;5380:7;5371:6;5360:9;5356:22;5335:53;;;5325:63;;5297:97;5229:175;;;;;5411:366;;;5532:2;5520:9;5511:7;5507:23;5503:32;5500:2;;;5548:1;5545;5538:12;5500:2;5583:1;5600:53;5645:7;5636:6;5625:9;5621:22;5600:53;;;5590:63;;5562:97;5690:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;;;5698:63;;5669:98;5494:283;;;;;;5784:491;;;;5922:2;5910:9;5901:7;5897:23;5893:32;5890:2;;;5938:1;5935;5928:12;5890:2;5973:1;5990:53;6035:7;6026:6;6015:9;6011:22;5990:53;;;5980:63;;5952:97;6080:2;6098:53;6143:7;6134:6;6123:9;6119:22;6098:53;;;6088:63;;6059:98;6188:2;6206:53;6251:7;6242:6;6231:9;6227:22;6206:53;;;6196:63;;6167:98;5884:391;;;;;;6282:366;;;6403:2;6391:9;6382:7;6378:23;6374:32;6371:2;;;6419:1;6416;6409:12;6371:2;6454:1;6471:53;6516:7;6507:6;6496:9;6492:22;6471:53;;;6461:63;;6433:97;6561:2;6579:53;6624:7;6615:6;6604:9;6600:22;6579:53;;;6569:63;;6540:98;6365:283;;;;;;6656:161;;6737:40;6773:3;6765:6;6737:40;;;6806:4;6801:3;6797:14;6783:28;;6730:87;;;;;6826:173;;6913:46;6955:3;6947:6;6913:46;;;6988:4;6983:3;6979:14;6965:28;;6906:93;;;;;7007:142;7098:45;7137:5;7098:45;;;7093:3;7086:58;7080:69;;;7156:113;7239:24;7257:5;7239:24;;;7234:3;7227:37;7221:48;;;7276:152;7377:45;7397:24;7415:5;7397:24;;;7377:45;;;7372:3;7365:58;7359:69;;;7460:666;;7599:51;7644:5;7599:51;;;7663:83;7739:6;7734:3;7663:83;;;7656:90;;7767:53;7814:5;7767:53;;;7840:7;7868:1;7853:251;7878:6;7875:1;7872:13;7853:251;;;7945:6;7939:13;7966:57;8019:3;8004:13;7966:57;;;7959:64;;8040:57;8090:6;8040:57;;;8030:67;;7910:194;7900:1;7897;7893:9;7888:14;;7853:251;;;7857:14;8117:3;8110:10;;7578:548;;;;;;;;8165:690;;8310:54;8358:5;8310:54;;;8377:86;8456:6;8451:3;8377:86;;;8370:93;;8484:56;8534:5;8484:56;;;8560:7;8588:1;8573:260;8598:6;8595:1;8592:13;8573:260;;;8665:6;8659:13;8686:63;8745:3;8730:13;8686:63;;;8679:70;;8766:60;8819:6;8766:60;;;8756:70;;8630:203;8620:1;8617;8613:9;8608:14;;8573:260;;;8577:14;8846:3;8839:10;;8289:566;;;;;;;;8863:94;8930:21;8945:5;8930:21;;;8925:3;8918:34;8912:45;;;8964:104;9041:21;9056:5;9041:21;;;9036:3;9029:34;9023:45;;;9075:103;9148:24;9166:5;9148:24;;;9143:3;9136:37;9130:48;;;9185:113;9268:24;9286:5;9268:24;;;9263:3;9256:37;9250:48;;;9305:152;9406:45;9426:24;9444:5;9426:24;;;9406:45;;;9401:3;9394:58;9388:69;;;9464:154;9561:51;9606:5;9561:51;;;9556:3;9549:64;9543:75;;;9626:375;;9786:67;9850:2;9845:3;9786:67;;;9779:74;;9886:34;9882:1;9877:3;9873:11;9866:55;9955:8;9950:2;9945:3;9941:12;9934:30;9992:2;9987:3;9983:12;9976:19;;9772:229;;;;10010:322;;10170:67;10234:2;10229:3;10170:67;;;10163:74;;10270:24;10266:1;10261:3;10257:11;10250:45;10323:2;10318:3;10314:12;10307:19;;10156:176;;;;10341:332;;10501:67;10565:2;10560:3;10501:67;;;10494:74;;10601:34;10597:1;10592:3;10588:11;10581:55;10664:2;10659:3;10655:12;10648:19;;10487:186;;;;10682:319;;10842:67;10906:2;10901:3;10842:67;;;10835:74;;10942:21;10938:1;10933:3;10929:11;10922:42;10992:2;10987:3;10983:12;10976:19;;10828:173;;;;11010:326;;11170:67;11234:2;11229:3;11170:67;;;11163:74;;11270:28;11266:1;11261:3;11257:11;11250:49;11327:2;11322:3;11318:12;11311:19;;11156:180;;;;11344:113;11427:24;11445:5;11427:24;;;11422:3;11415:37;11409:48;;;11464:152;11565:45;11585:24;11603:5;11585:24;;;11565:45;;;11560:3;11553:58;11547:69;;;11623:392;;11779:75;11850:3;11841:6;11779:75;;;11876:2;11871:3;11867:12;11860:19;;11890:75;11961:3;11952:6;11890:75;;;11987:2;11982:3;11978:12;11971:19;;12007:3;12000:10;;11767:248;;;;;;12022:392;;12178:75;12249:3;12240:6;12178:75;;;12275:2;12270:3;12266:12;12259:19;;12289:75;12360:3;12351:6;12289:75;;;12386:2;12381:3;12377:12;12370:19;;12406:3;12399:10;;12166:248;;;;;;12421:222;;12548:2;12537:9;12533:18;12525:26;;12562:71;12630:1;12619:9;12615:17;12606:6;12562:71;;;12519:124;;;;;12650:460;;12841:2;12830:9;12826:18;12818:26;;12855:79;12931:1;12920:9;12916:17;12907:6;12855:79;;;12945:72;13013:2;13002:9;12998:18;12989:6;12945:72;;;13028;13096:2;13085:9;13081:18;13072:6;13028:72;;;12812:298;;;;;;;13117:333;;13272:2;13261:9;13257:18;13249:26;;13286:71;13354:1;13343:9;13339:17;13330:6;13286:71;;;13368:72;13436:2;13425:9;13421:18;13412:6;13368:72;;;13243:207;;;;;;13457:358;;13628:2;13617:9;13613:18;13605:26;;13678:9;13672:4;13668:20;13664:1;13653:9;13649:17;13642:47;13703:102;13800:4;13791:6;13703:102;;;13695:110;;13599:216;;;;;13822:370;;13999:2;13988:9;13984:18;13976:26;;14049:9;14043:4;14039:20;14035:1;14024:9;14020:17;14013:47;14074:108;14177:4;14168:6;14074:108;;;14066:116;;13970:222;;;;;14199:210;;14320:2;14309:9;14305:18;14297:26;;14334:65;14396:1;14385:9;14381:17;14372:6;14334:65;;;14291:118;;;;;14416:222;;14543:2;14532:9;14528:18;14520:26;;14557:71;14625:1;14614:9;14610:17;14601:6;14557:71;;;14514:124;;;;;14645:250;;14786:2;14775:9;14771:18;14763:26;;14800:85;14882:1;14871:9;14867:17;14858:6;14800:85;;;14757:138;;;;;14902:416;;15102:2;15091:9;15087:18;15079:26;;15152:9;15146:4;15142:20;15138:1;15127:9;15123:17;15116:47;15177:131;15303:4;15177:131;;;15169:139;;15073:245;;;;15325:416;;15525:2;15514:9;15510:18;15502:26;;15575:9;15569:4;15565:20;15561:1;15550:9;15546:17;15539:47;15600:131;15726:4;15600:131;;;15592:139;;15496:245;;;;15748:416;;15948:2;15937:9;15933:18;15925:26;;15998:9;15992:4;15988:20;15984:1;15973:9;15969:17;15962:47;16023:131;16149:4;16023:131;;;16015:139;;15919:245;;;;16171:416;;16371:2;16360:9;16356:18;16348:26;;16421:9;16415:4;16411:20;16407:1;16396:9;16392:17;16385:47;16446:131;16572:4;16446:131;;;16438:139;;16342:245;;;;16594:416;;16794:2;16783:9;16779:18;16771:26;;16844:9;16838:4;16834:20;16830:1;16819:9;16815:17;16808:47;16869:131;16995:4;16869:131;;;16861:139;;16765:245;;;;17017:256;;17079:2;17073:9;17063:19;;17117:4;17109:6;17105:17;17216:6;17204:10;17201:22;17180:18;17168:10;17165:34;17162:62;17159:2;;;17237:1;17234;17227:12;17159:2;17257:10;17253:2;17246:22;17057:216;;;;;17280:304;;17439:18;17431:6;17428:30;17425:2;;;17471:1;17468;17461:12;17425:2;17506:4;17498:6;17494:17;17486:25;;17569:4;17563;17559:15;17551:23;;17362:222;;;;17591:326;;17772:18;17764:6;17761:30;17758:2;;;17804:1;17801;17794:12;17758:2;17839:4;17831:6;17827:17;17819:25;;17902:4;17896;17892:15;17884:23;;17695:222;;;;17924:148;;18007:3;17999:11;;18045:4;18040:3;18036:14;18028:22;;17993:79;;;;18079:151;;18165:3;18157:11;;18203:4;18198:3;18194:14;18186:22;;18151:79;;;;18237:134;;18343:5;18337:12;18327:22;;18308:63;;;;18378:137;;18487:5;18481:12;18471:22;;18452:63;;;;18522:105;;18617:4;18612:3;18608:14;18600:22;;18594:33;;;;18634:108;;18732:4;18727:3;18723:14;18715:22;;18709:33;;;;18750:175;;18877:6;18872:3;18865:19;18914:4;18909:3;18905:14;18890:29;;18858:67;;;;;18934:178;;19064:6;19059:3;19052:19;19101:4;19096:3;19092:14;19077:29;;19045:67;;;;;19121:163;;19236:6;19231:3;19224:19;19273:4;19268:3;19264:14;19249:29;;19217:67;;;;;19292:91;;19354:24;19372:5;19354:24;;;19343:35;;19337:46;;;;19390:85;;19463:5;19456:13;19449:21;19438:32;;19432:43;;;;19482:72;;19544:5;19533:16;;19527:27;;;;19561:121;;19634:42;19627:5;19623:54;19612:65;;19606:76;;;;19689:72;;19751:5;19740:16;;19734:27;;;;19768:129;;19855:37;19886:5;19855:37;;;19842:50;;19836:61;;;;19904:149;;19997:51;20042:5;19997:51;;;19984:64;;19978:75;;;;20060:122;;20153:24;20171:5;20153:24;;;20140:37;;20134:48;;;;20189:121;;20268:37;20299:5;20268:37;;;20255:50;;20249:61;;;;20317:108;;20396:24;20414:5;20396:24;;;20383:37;;20377:48;;;;20432:95;;20496:26;20516:5;20496:26;;;20485:37;;20479:48;;;;20534:74;;20598:5;20587:16;;20581:27;;;;20615:89;;20679:20;20693:5;20679:20;;;20668:31;;20662:42;;;;20711:74;;20775:5;20764:16;;20758:27;;;;20792:94;;20870:5;20866:2;20862:14;20840:36;;20834:52;;;;20894:117;20963:24;20981:5;20963:24;;;20956:5;20953:35;20943:2;;21002:1;20999;20992:12;20943:2;20937:74;;21018:111;21084:21;21099:5;21084:21;;;21077:5;21074:32;21064:2;;21120:1;21117;21110:12;21064:2;21058:71;;21136:117;21205:24;21223:5;21205:24;;;21198:5;21195:35;21185:2;;21244:1;21241;21234:12;21185:2;21179:74;;21260:117;21329:24;21347:5;21329:24;;;21322:5;21319:35;21309:2;;21368:1;21365;21358:12;21309:2;21303:74;

Swarm Source

ipfs://c4dd6aac39c7d7051ea69486582883102a8b14955883c7bcc71329a3786a73b7

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.