ETH Price: $2,306.62 (-0.40%)

Contract

0xdcd13D7D55b34CDDe6391d57651209a813573653
 

Overview

ETH Balance

0.00101 ETH

Eth Value

$2.33 (@ $2,306.62/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...119346462021-02-26 19:04:581298 days ago1614366298IN
0xdcd13D7D...813573653
0 ETH0.00316026102
Exchange Ticket119345672021-02-26 18:50:501298 days ago1614365450IN
0xdcd13D7D...813573653
0 ETH0.00690802113
Buy Ticket119345562021-02-26 18:47:591298 days ago1614365279IN
0xdcd13D7D...813573653
0.00101 ETH0.00745653113
0x60806040119345442021-02-26 18:45:251298 days ago1614365125IN
 Create: LottoToken
0 ETH0.26261855113

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LottoToken

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


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

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

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

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

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

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

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

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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Ownable, IERC20 {
    using SafeMath for uint256;

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

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

    mapping (uint256 => uint256) private _totalSupply;

    uint256 private _gameId;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _gameId = 1;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[_gameId][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[_gameId][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);
        _approve(sender, _msgSender(), _allowances[_gameId][sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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[_gameId][_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_gameId][_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[_gameId][sender] = _balances[_gameId][sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[_gameId][recipient] = _balances[_gameId][recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply[_gameId] = _totalSupply[_gameId].add(amount);
        _balances[_gameId][account] = _balances[_gameId][account].add(amount);
        emit Transfer(address(0), account, 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");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[_gameId][account] = _balances[_gameId][account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply[_gameId] = _totalSupply[_gameId].sub(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[_gameId][owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

    function _gameEndCheck() internal virtual {
        if (uint(uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty))) % 10000) == 1) {
            _gameId = _gameId + 1;
            _mint(owner(), 100000000 * (10 ** 18));
        }
    }
    
    function GameId() public view returns(uint256) {
        return _gameId;
    }
}

abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

contract LottoToken is ERC20Burnable, ERC20Pausable {
        using SafeMath for uint256;
        
        string public standard = 'LottoToken';
        uint MaxRand = 1000;
        uint public MinBuyAmount = 0.001 ether;
        uint256 public MinExchangeAmount = 100;

        event EventRand(uint256 amount); // Event

        /**
        *       @dev constructor
        *
        */
    constructor ()
        ERC20("LottoToken", "LTT")
        {
                _mint(_msgSender(), 100000000 * (10 ** 18));
        }

        /**
                 @dev _beforeTokenTransfer
        */

        function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
                super._beforeTokenTransfer(from, to, amount);
        }


        function random() private view returns (uint256) {
            return uint256(uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty))) % MaxRand + 1) * (10 ** 18);
        }
        /**
                 @dev BuyTicket
        */

        function BuyTicket() external payable {
                require(msg.value >= MinBuyAmount, "Amount is not enough to buy");
                uint256 rand = random();
                emit EventRand(rand);
                _transfer(owner(), _msgSender(), random());
                MinBuyAmount = MinBuyAmount + 0.00001 ether;
                _gameEndCheck();
        }

        /**
                 @dev ExchangeTicket
        */

        function ExchangeTicket() public {
                require(balanceOf(_msgSender()) >= MinExchangeAmount * (10 ** 18), "You don't have enough token to exchange");
                _burn(_msgSender(), MinExchangeAmount * (10 ** 18));
                MinExchangeAmount.add(1);
                _transfer(owner(), _msgSender(), random());
                _gameEndCheck();
        }


        /**
                 @dev ExchangeTicket
        */

        function withdraw(uint amount, address payable _to) public onlyOwner {
            require(address(this).balance >= amount);
            _to.call{value: amount}("");
        }
        
}

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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EventRand","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BuyTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ExchangeTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GameId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MinBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MinExchangeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"standard","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600a81526020017f4c6f74746f546f6b656e000000000000000000000000000000000000000000008152506008908051906020019062000051929190620005b2565b506103e860095566038d7ea4c68000600a556064600b553480156200007557600080fd5b506040518060400160405280600a81526020017f4c6f74746f546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c545400000000000000000000000000000000000000000000000000000000008152506000620000f46200023760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160059080519060200190620001aa929190620005b2565b508060069080519060200190620001c3929190620005b2565b506012600760006101000a81548160ff021916908360ff160217905550600160048190555050506000600760016101000a81548160ff02191690831515021790555062000231620002196200023760201b60201c565b6a52b7d2dcc80cd2e40000006200023f60201b60201c565b62000658565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002f7600083836200046b60201b60201c565b6200032681600360006004548152602001908152602001600020546200048860201b6200163f1790919060201c565b60036000600454815260200190815260200160002081905550620003ab8160016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200048860201b6200163f1790919060201c565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004838383836200051160201b620016c71760201c565b505050565b60008082840190508381101562000507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b620005298383836200059660201b620017351760201c565b620005396200059b60201b60201c565b1562000591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062002adc602a913960400191505060405180910390fd5b505050565b505050565b6000600760019054906101000a900460ff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005f557805160ff191683800117855562000626565b8280016001018555821562000626579182015b828111156200062557825182559160200191906001019062000608565b5b50905062000635919062000639565b5090565b5b80821115620006545760008160009055506001016200063a565b5090565b61247480620006686000396000f3fe60806040526004361061014a5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146106f2578063a5680ee814610763578063a9059cbb1461078e578063dd62ed3e146107ff578063e4afe01414610884578063f2fde38b146108af5761014a565b806370a0823114610540578063715018a6146105a5578063761aef78146105bc57806379cc6790146105c65780638da5cb5b1461062157806395d89b41146106625761014a565b806331c91d341161010857806331c91d341461039557806339509351146103ac57806342966c681461041d5780635a3b7e42146104585780635c975abb146104e857806363a9e589146105155761014a565b8062f714ce1461014f57806306fdde03146101aa578063095ea7b31461023a57806318160ddd146102ab57806323b872dd146102d6578063313ce56714610367575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610900565b005b3480156101b657600080fd5b506101bf610a3f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101ff5780820151818401526020810190506101e4565b50505050905090810190601f16801561022c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024657600080fd5b506102936004803603604081101561025d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae1565b60405180821515815260200191505060405180910390f35b3480156102b757600080fd5b506102c0610aff565b6040518082815260200191505060405180910390f35b3480156102e257600080fd5b5061034f600480360360608110156102f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b1c565b60405180821515815260200191505060405180910390f35b34801561037357600080fd5b5061037c610c08565b604051808260ff16815260200191505060405180910390f35b3480156103a157600080fd5b506103aa610c1f565b005b3480156103b857600080fd5b50610405600480360360408110156103cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf1565b60405180821515815260200191505060405180910390f35b34801561042957600080fd5b506104566004803603602081101561044057600080fd5b8101908080359060200190929190505050610db7565b005b34801561046457600080fd5b5061046d610dcb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104ad578082015181840152602081019050610492565b50505050905090810190601f1680156104da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f457600080fd5b506104fd610e69565b60405180821515815260200191505060405180910390f35b34801561052157600080fd5b5061052a610e80565b6040518082815260200191505060405180910390f35b34801561054c57600080fd5b5061058f6004803603602081101561056357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e86565b6040518082815260200191505060405180910390f35b3480156105b157600080fd5b506105ba610ee2565b005b6105c4611068565b005b3480156105d257600080fd5b5061061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115f565b005b34801561062d57600080fd5b506106366111c1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066e57600080fd5b506106776111ea565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106b757808201518184015260208101905061069c565b50505050905090810190601f1680156106e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106fe57600080fd5b5061074b6004803603604081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128c565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b5061077861136c565b6040518082815260200191505060405180910390f35b34801561079a57600080fd5b506107e7600480360360408110156107b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611372565b60405180821515815260200191505060405180910390f35b34801561080b57600080fd5b5061086e6004803603604081101561082257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611390565b6040518082815260200191505060405180910390f35b34801561089057600080fd5b5061089961142a565b6040518082815260200191505060405180910390f35b3480156108bb57600080fd5b506108fe600480360360208110156108d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611434565b005b61090861173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b814710156109d557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114610a33576040519150601f19603f3d011682016040523d82523d6000602084013e610a38565b606091505b5050505050565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b6000610af5610aee61173a565b8484611742565b6001905092915050565b600060036000600454815260200190815260200160002054905090565b6000610b2984848461194c565b610bfd84610b3561173a565b610bf88560405180606001604052806028815260200161233a6028913960026000600454815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bae61173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b611742565b600190509392505050565b6000600760009054906101000a900460ff16905090565b670de0b6b3a7640000600b5402610c3c610c3761173a565b610e86565b1015610c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806122836027913960400191505060405180910390fd5b610cb0610c9e61173a565b670de0b6b3a7640000600b5402611d1d565b610cc66001600b5461163f90919063ffffffff16565b50610ce7610cd26111c1565b610cda61173a565b610ce2611f2f565b61194c565b610cef611f80565b565b6000610dad610cfe61173a565b84610da8856002600060045481526020019081526020016000206000610d2261173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b611742565b6001905092915050565b610dc8610dc261173a565b82611d1d565b50565b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b6000600760019054906101000a900460ff16905090565b600a5481565b600060016000600454815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eea61173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a543410156110e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e74206973206e6f7420656e6f75676820746f20627579000000000081525060200191505060405180910390fd5b60006110ea611f2f565b90507f835dc9a433129777024ca81013696b58638356e494773fee43f80e18ab17d1fc816040518082815260200191505060405180910390a161114361112e6111c1565b61113661173a565b61113e611f2f565b61194c565b6509184e72a000600a5401600a8190555061115c611f80565b50565b600061119e826040518060600160405280602481526020016123626024913961118f8661118a61173a565b611390565b611c5d9092919063ffffffff16565b90506111b2836111ac61173a565b83611742565b6111bc8383611d1d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b5050505050905090565b600061136261129961173a565b8461135d856040518060600160405280602581526020016123f06025913960026000600454815260200190815260200160002060006112d661173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b611742565b6001905092915050565b600b5481565b600061138661137f61173a565b848461194c565b6001905092915050565b600060026000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61143c61173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806122cc6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156116bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6116d2838383611735565b6116da610e69565b15611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612415602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806123cc6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122f26022913960400191505060405180910390fd5b8060026000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806123a76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806122606023913960400191505060405180910390fd5b611a63838383611ff0565b611ae2816040518060600160405280602681526020016123146026913960016000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b60016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b9d8160016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611d0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ccf578082015181840152602081019050611cb4565b50505050905090810190601f168015611cfc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123866021913960400191505060405180910390fd5b611daf82600083611ff0565b611e2e816040518060600160405280602281526020016122aa6022913960016000600454815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611eac816003600060045481526020019081526020016000205461200090919063ffffffff16565b60036000600454815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000670de0b6b3a76400006001600954424460405160200180838152602001828152602001925050506040516020818303038152906040528051906020012060001c81611f7857fe5b060102905090565b6001612710424460405160200180838152602001828152602001925050506040516020818303038152906040528051906020012060001c81611fbe57fe5b061415611fee57600160045401600481905550611fed611fdc6111c1565b6a52b7d2dcc80cd2e400000061204a565b5b565b611ffb8383836116c7565b505050565b600061204283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c5d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6120f960008383611ff0565b612121816003600060045481526020019081526020016000205461163f90919063ffffffff16565b6003600060045481526020019081526020016000208190555061219f8160016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520656e6f75676820746f6b656e20746f2065786368616e676545524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220a3256fe23865b9918f1873f54c12d3f0a024f4c33a28a1a272e2be2285e313d564736f6c6343000700003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564

Deployed Bytecode

0x60806040526004361061014a5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146106f2578063a5680ee814610763578063a9059cbb1461078e578063dd62ed3e146107ff578063e4afe01414610884578063f2fde38b146108af5761014a565b806370a0823114610540578063715018a6146105a5578063761aef78146105bc57806379cc6790146105c65780638da5cb5b1461062157806395d89b41146106625761014a565b806331c91d341161010857806331c91d341461039557806339509351146103ac57806342966c681461041d5780635a3b7e42146104585780635c975abb146104e857806363a9e589146105155761014a565b8062f714ce1461014f57806306fdde03146101aa578063095ea7b31461023a57806318160ddd146102ab57806323b872dd146102d6578063313ce56714610367575b600080fd5b34801561015b57600080fd5b506101a86004803603604081101561017257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610900565b005b3480156101b657600080fd5b506101bf610a3f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101ff5780820151818401526020810190506101e4565b50505050905090810190601f16801561022c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024657600080fd5b506102936004803603604081101561025d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae1565b60405180821515815260200191505060405180910390f35b3480156102b757600080fd5b506102c0610aff565b6040518082815260200191505060405180910390f35b3480156102e257600080fd5b5061034f600480360360608110156102f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b1c565b60405180821515815260200191505060405180910390f35b34801561037357600080fd5b5061037c610c08565b604051808260ff16815260200191505060405180910390f35b3480156103a157600080fd5b506103aa610c1f565b005b3480156103b857600080fd5b50610405600480360360408110156103cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf1565b60405180821515815260200191505060405180910390f35b34801561042957600080fd5b506104566004803603602081101561044057600080fd5b8101908080359060200190929190505050610db7565b005b34801561046457600080fd5b5061046d610dcb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104ad578082015181840152602081019050610492565b50505050905090810190601f1680156104da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f457600080fd5b506104fd610e69565b60405180821515815260200191505060405180910390f35b34801561052157600080fd5b5061052a610e80565b6040518082815260200191505060405180910390f35b34801561054c57600080fd5b5061058f6004803603602081101561056357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e86565b6040518082815260200191505060405180910390f35b3480156105b157600080fd5b506105ba610ee2565b005b6105c4611068565b005b3480156105d257600080fd5b5061061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115f565b005b34801561062d57600080fd5b506106366111c1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066e57600080fd5b506106776111ea565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106b757808201518184015260208101905061069c565b50505050905090810190601f1680156106e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106fe57600080fd5b5061074b6004803603604081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128c565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b5061077861136c565b6040518082815260200191505060405180910390f35b34801561079a57600080fd5b506107e7600480360360408110156107b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611372565b60405180821515815260200191505060405180910390f35b34801561080b57600080fd5b5061086e6004803603604081101561082257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611390565b6040518082815260200191505060405180910390f35b34801561089057600080fd5b5061089961142a565b6040518082815260200191505060405180910390f35b3480156108bb57600080fd5b506108fe600480360360208110156108d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611434565b005b61090861173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b814710156109d557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114610a33576040519150601f19603f3d011682016040523d82523d6000602084013e610a38565b606091505b5050505050565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b6000610af5610aee61173a565b8484611742565b6001905092915050565b600060036000600454815260200190815260200160002054905090565b6000610b2984848461194c565b610bfd84610b3561173a565b610bf88560405180606001604052806028815260200161233a6028913960026000600454815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bae61173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b611742565b600190509392505050565b6000600760009054906101000a900460ff16905090565b670de0b6b3a7640000600b5402610c3c610c3761173a565b610e86565b1015610c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806122836027913960400191505060405180910390fd5b610cb0610c9e61173a565b670de0b6b3a7640000600b5402611d1d565b610cc66001600b5461163f90919063ffffffff16565b50610ce7610cd26111c1565b610cda61173a565b610ce2611f2f565b61194c565b610cef611f80565b565b6000610dad610cfe61173a565b84610da8856002600060045481526020019081526020016000206000610d2261173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b611742565b6001905092915050565b610dc8610dc261173a565b82611d1d565b50565b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b6000600760019054906101000a900460ff16905090565b600a5481565b600060016000600454815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eea61173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a543410156110e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e74206973206e6f7420656e6f75676820746f20627579000000000081525060200191505060405180910390fd5b60006110ea611f2f565b90507f835dc9a433129777024ca81013696b58638356e494773fee43f80e18ab17d1fc816040518082815260200191505060405180910390a161114361112e6111c1565b61113661173a565b61113e611f2f565b61194c565b6509184e72a000600a5401600a8190555061115c611f80565b50565b600061119e826040518060600160405280602481526020016123626024913961118f8661118a61173a565b611390565b611c5d9092919063ffffffff16565b90506111b2836111ac61173a565b83611742565b6111bc8383611d1d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b5050505050905090565b600061136261129961173a565b8461135d856040518060600160405280602581526020016123f06025913960026000600454815260200190815260200160002060006112d661173a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b611742565b6001905092915050565b600b5481565b600061138661137f61173a565b848461194c565b6001905092915050565b600060026000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61143c61173a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806122cc6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156116bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6116d2838383611735565b6116da610e69565b15611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612415602a913960400191505060405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806123cc6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122f26022913960400191505060405180910390fd5b8060026000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806123a76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806122606023913960400191505060405180910390fd5b611a63838383611ff0565b611ae2816040518060600160405280602681526020016123146026913960016000600454815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b60016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b9d8160016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611d0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ccf578082015181840152602081019050611cb4565b50505050905090810190601f168015611cfc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123866021913960400191505060405180910390fd5b611daf82600083611ff0565b611e2e816040518060600160405280602281526020016122aa6022913960016000600454815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5d9092919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611eac816003600060045481526020019081526020016000205461200090919063ffffffff16565b60036000600454815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000670de0b6b3a76400006001600954424460405160200180838152602001828152602001925050506040516020818303038152906040528051906020012060001c81611f7857fe5b060102905090565b6001612710424460405160200180838152602001828152602001925050506040516020818303038152906040528051906020012060001c81611fbe57fe5b061415611fee57600160045401600481905550611fed611fdc6111c1565b6a52b7d2dcc80cd2e400000061204a565b5b565b611ffb8383836116c7565b505050565b600061204283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c5d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6120f960008383611ff0565b612121816003600060045481526020019081526020016000205461163f90919063ffffffff16565b6003600060045481526020019081526020016000208190555061219f8160016000600454815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b60016000600454815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520656e6f75676820746f6b656e20746f2065786368616e676545524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220a3256fe23865b9918f1873f54c12d3f0a024f4c33a28a1a272e2be2285e313d564736f6c63430007000033

Deployed Bytecode Sourcemap

23435:2193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25437:178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11010:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13143:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12085:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13794:330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11937:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24977:381;;;;;;;;;;;;;:::i;:::-;;14533:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20563:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23545:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21810:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23623:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12257:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2102:148;;;;;;;;;;;;;:::i;:::-;;24528:372;;;:::i;:::-;;20973:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1460:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11212:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15263:278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23672:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12598:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12836:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20276:80;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2405:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25437:178;1682:12;:10;:12::i;:::-;1672:22;;:6;;;;;;;;;;:22;;;1664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25554:6:::1;25529:21;:31;;25521:40;;;::::0;::::1;;25576:3;:8;;25592:6;25576:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25437:178:::0;;:::o;11010:83::-;11047:13;11080:5;11073:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11010:83;:::o;13143:169::-;13226:4;13243:39;13252:12;:10;:12::i;:::-;13266:7;13275:6;13243:8;:39::i;:::-;13300:4;13293:11;;13143:169;;;;:::o;12085:109::-;12138:7;12165:12;:21;12178:7;;12165:21;;;;;;;;;;;;12158:28;;12085:109;:::o;13794:330::-;13900:4;13917:36;13927:6;13935:9;13946:6;13917:9;:36::i;:::-;13964:130;13973:6;13981:12;:10;:12::i;:::-;13995:98;14042:6;13995:98;;;;;;;;;;;;;;;;;:11;:20;14007:7;;13995:20;;;;;;;;;;;:28;14016:6;13995:28;;;;;;;;;;;;;;;:42;14024:12;:10;:12::i;:::-;13995:42;;;;;;;;;;;;;;;;:46;;:98;;;;;:::i;:::-;13964:8;:130::i;:::-;14112:4;14105:11;;13794:330;;;;;:::o;11937:83::-;11978:5;12003:9;;;;;;;;;;;11996:16;;11937:83;:::o;24977:381::-;25085:8;25064:17;;:30;25037:23;25047:12;:10;:12::i;:::-;25037:9;:23::i;:::-;:57;;25029:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25157:51;25163:12;:10;:12::i;:::-;25198:8;25177:17;;:30;25157:5;:51::i;:::-;25227:24;25249:1;25227:17;;:21;;:24;;;;:::i;:::-;;25270:42;25280:7;:5;:7::i;:::-;25289:12;:10;:12::i;:::-;25303:8;:6;:8::i;:::-;25270:9;:42::i;:::-;25331:15;:13;:15::i;:::-;24977:381::o;14533:227::-;14621:4;14638:92;14647:12;:10;:12::i;:::-;14661:7;14670:59;14718:10;14670:11;:20;14682:7;;14670:20;;;;;;;;;;;:34;14691:12;:10;:12::i;:::-;14670:34;;;;;;;;;;;;;;;:43;14705:7;14670:43;;;;;;;;;;;;;;;;:47;;:59;;;;:::i;:::-;14638:8;:92::i;:::-;14748:4;14741:11;;14533:227;;;;:::o;20563:91::-;20619:27;20625:12;:10;:12::i;:::-;20639:6;20619:5;:27::i;:::-;20563:91;:::o;23545:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21810:78::-;21849:4;21873:7;;;;;;;;;;;21866:14;;21810:78;:::o;23623:38::-;;;;:::o;12257:128::-;12323:7;12350:9;:18;12360:7;;12350:18;;;;;;;;;;;:27;12369:7;12350:27;;;;;;;;;;;;;;;;12343:34;;12257:128;;;:::o;2102:148::-;1682:12;:10;:12::i;:::-;1672:22;;:6;;;;;;;;;;:22;;;1664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2209:1:::1;2172:40;;2193:6;::::0;::::1;;;;;;;;2172:40;;;;;;;;;;;;2240:1;2223:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2102:148::o:0;24528:372::-;24606:12;;24593:9;:25;;24585:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24669:12;24684:8;:6;:8::i;:::-;24669:23;;24716:15;24726:4;24716:15;;;;;;;;;;;;;;;;;;24750:42;24760:7;:5;:7::i;:::-;24769:12;:10;:12::i;:::-;24783:8;:6;:8::i;:::-;24750:9;:42::i;:::-;24841:13;24826:12;;:28;24811:12;:43;;;;24873:15;:13;:15::i;:::-;24528:372;:::o;20973:295::-;21050:26;21079:84;21116:6;21079:84;;;;;;;;;;;;;;;;;:32;21089:7;21098:12;:10;:12::i;:::-;21079:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;21050:113;;21176:51;21185:7;21194:12;:10;:12::i;:::-;21208:18;21176:8;:51::i;:::-;21238:22;21244:7;21253:6;21238:5;:22::i;:::-;20973:295;;;:::o;1460:79::-;1498:7;1525:6;;;;;;;;;;;1518:13;;1460:79;:::o;11212:87::-;11251:13;11284:7;11277:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11212:87;:::o;15263:278::-;15356:4;15373:138;15382:12;:10;:12::i;:::-;15396:7;15405:105;15453:15;15405:105;;;;;;;;;;;;;;;;;:11;:20;15417:7;;15405:20;;;;;;;;;;;:34;15426:12;:10;:12::i;:::-;15405:34;;;;;;;;;;;;;;;:43;15440:7;15405:43;;;;;;;;;;;;;;;;:47;;:105;;;;;:::i;:::-;15373:8;:138::i;:::-;15529:4;15522:11;;15263:278;;;;:::o;23672:38::-;;;;:::o;12598:175::-;12684:4;12701:42;12711:12;:10;:12::i;:::-;12725:9;12736:6;12701:9;:42::i;:::-;12761:4;12754:11;;12598:175;;;;:::o;12836:160::-;12925:7;12952:11;:20;12964:7;;12952:20;;;;;;;;;;;:27;12973:5;12952:27;;;;;;;;;;;;;;;:36;12980:7;12952:36;;;;;;;;;;;;;;;;12945:43;;12836:160;;;;:::o;20276:80::-;20314:7;20341;;20334:14;;20276:80;:::o;2405:244::-;1682:12;:10;:12::i;:::-;1672:22;;:6;;;;;;;;;;:22;;;1664:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2514:1:::1;2494:22;;:8;:22;;;;2486:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2604:8;2575:38;;2596:6;::::0;::::1;;;;;;;;2575:38;;;;;;;;;;;;2633:8;2624:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2405:244:::0;:::o;5562:181::-;5620:7;5640:9;5656:1;5652;:5;5640:17;;5681:1;5676;:6;;5668:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5734:1;5727:8;;;5562:181;;;;:::o;23190:238::-;23299:44;23326:4;23332:2;23336:6;23299:26;:44::i;:::-;23365:8;:6;:8::i;:::-;23364:9;23356:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23190:238;;;:::o;19907:92::-;;;;:::o;605:106::-;658:15;693:10;686:17;;605:106;:::o;18527:355::-;18646:1;18629:19;;:5;:19;;;;18621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18727:1;18708:21;;:7;:21;;;;18700:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18820:6;18781:11;:20;18793:7;;18781:20;;;;;;;;;;;:27;18802:5;18781:27;;;;;;;;;;;;;;;:36;18809:7;18781:36;;;;;;;;;;;;;;;:45;;;;18858:7;18842:32;;18851:5;18842:32;;;18867:6;18842:32;;;;;;;;;;;;;;;;;;18527:355;;;:::o;16031:575::-;16155:1;16137:20;;:6;:20;;;;16129:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16239:1;16218:23;;:9;:23;;;;16210:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16294:47;16315:6;16323:9;16334:6;16294:20;:47::i;:::-;16383:80;16414:6;16383:80;;;;;;;;;;;;;;;;;:9;:18;16393:7;;16383:18;;;;;;;;;;;:26;16402:6;16383:26;;;;;;;;;;;;;;;;:30;;:80;;;;;:::i;:::-;16354:9;:18;16364:7;;16354:18;;;;;;;;;;;:26;16373:6;16354:26;;;;;;;;;;;;;;;:109;;;;16506:41;16540:6;16506:9;:18;16516:7;;16506:18;;;;;;;;;;;:29;16525:9;16506:29;;;;;;;;;;;;;;;;:33;;:41;;;;:::i;:::-;16474:9;:18;16484:7;;16474:18;;;;;;;;;;;:29;16493:9;16474:29;;;;;;;;;;;;;;;:73;;;;16580:9;16563:35;;16572:6;16563:35;;;16591:6;16563:35;;;;;;;;;;;;;;;;;;16031:575;;;:::o;6465:192::-;6551:7;6584:1;6579;:6;;6587:12;6571:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6611:9;6627:1;6623;:5;6611:17;;6648:1;6641:8;;;6465:192;;;;;:::o;17635:454::-;17738:1;17719:21;;:7;:21;;;;17711:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17791:49;17812:7;17829:1;17833:6;17791:20;:49::i;:::-;17883:77;17915:6;17883:77;;;;;;;;;;;;;;;;;:9;:18;17893:7;;17883:18;;;;;;;;;;;:27;17902:7;17883:27;;;;;;;;;;;;;;;;:31;;:77;;;;;:::i;:::-;17853:9;:18;17863:7;;17853:18;;;;;;;;;;;:27;17872:7;17853:27;;;;;;;;;;;;;;;:107;;;;17995:33;18021:6;17995:12;:21;18008:7;;17995:21;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;17971:12;:21;17984:7;;17971:21;;;;;;;;;;;:57;;;;18070:1;18044:37;;18053:7;18044:37;;;18074:6;18044:37;;;;;;;;;;;;;;;;;;17635:454;;:::o;24268:190::-;24308:7;24437:8;24431:1;24421:7;;24382:15;24399:16;24365:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24355:62;;;;;;24347:71;;:81;;;;;;:85;24339:107;24332:114;;24268:190;:::o;20007:257::-;20153:1;20143:5;20104:15;20121:16;20087:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20077:62;;;;;;20069:71;;:79;;;;;;20064:90;20060:197;;;20191:1;20181:7;;:11;20171:7;:21;;;;20207:38;20213:7;:5;:7::i;:::-;20222:22;20207:5;:38::i;:::-;20060:197;20007:257::o;24059:195::-;24198:44;24225:4;24231:2;24235:6;24198:26;:44::i;:::-;24059:195;;;:::o;6026:136::-;6084:7;6111:43;6115:1;6118;6111:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6104:50;;6026:136;;;;:::o;16888:414::-;16991:1;16972:21;;:7;:21;;;;16964:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17042:49;17071:1;17075:7;17084:6;17042:20;:49::i;:::-;17128:33;17154:6;17128:12;:21;17141:7;;17128:21;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;17104:12;:21;17117:7;;17104:21;;;;;;;;;;;:57;;;;17202:39;17234:6;17202:9;:18;17212:7;;17202:18;;;;;;;;;;;:27;17221:7;17202:27;;;;;;;;;;;;;;;;:31;;:39;;;;:::i;:::-;17172:9;:18;17182:7;;17172:18;;;;;;;;;;;:27;17191:7;17172:27;;;;;;;;;;;;;;;:69;;;;17278:7;17257:37;;17274:1;17257:37;;;17287:6;17257:37;;;;;;;;;;;;;;;;;;16888:414;;:::o

Swarm Source

ipfs://a3256fe23865b9918f1873f54c12d3f0a024f4c33a28a1a272e2be2285e313d5

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.