ETH Price: $3,157.44 (-2.60%)

Token

marvallous coin (MARVA$)
 

Overview

Max Total Supply

1,000,000,000 MARVA$

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,846,000 MARVA$

Value
$0.00
0xDd8463c7e803d6A5E8711010cFfAfd977B54f744
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MarvallousCoin

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-24
*/

/**

███╗   ███╗ █████╗ ██████╗ ██╗   ██╗ █████╗ ██╗     ██╗      ██████╗ ██╗   ██╗███████╗     ██████╗ ██████╗ ██╗███╗   ██╗
████╗ ████║██╔══██╗██╔══██╗██║   ██║██╔══██╗██║     ██║     ██╔═══██╗██║   ██║██╔════╝    ██╔════╝██╔═══██╗██║████╗  ██║
██╔████╔██║███████║██████╔╝██║   ██║███████║██║     ██║     ██║   ██║██║   ██║███████╗    ██║     ██║   ██║██║██╔██╗ ██║
██║╚██╔╝██║██╔══██║██╔══██╗╚██╗ ██╔╝██╔══██║██║     ██║     ██║   ██║██║   ██║╚════██║    ██║     ██║   ██║██║██║╚██╗██║
██║ ╚═╝ ██║██║  ██║██║  ██║ ╚████╔╝ ██║  ██║███████╗███████╗╚██████╔╝╚██████╔╝███████║    ╚██████╗╚██████╔╝██║██║ ╚████║
╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝  ╚═══╝  ╚═╝  ╚═╝╚══════╝╚══════╝ ╚═════╝  ╚═════╝ ╚══════╝     ╚═════╝ ╚═════╝ ╚═╝╚═╝  ╚═══╝
*/

// SPDX-License-Identifier: MIT 

pragma solidity 0.8.15;

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     *
     * 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 Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
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 virtual 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());
    }
}
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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 virtual 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;
    }
}

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

/**
Token name: marvallous coin
total supply: 1 000 000 000
decimals: 18
symbol: MARVA$

*/

contract MarvallousCoin  is Context, IERC20, IERC20Metadata, Ownable, Pausable{
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    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 () {
        _name = "marvallous coin";
        _symbol = "MARVA$";
        _totalSupply;
        _mint(owner(), 1000000000 * 10 ** (decimals()) ); 

    }

    //mapping (address => bool) private _isBlackListedBot;
    //address[] private _blackListedBots;


    //function isBot(address account) public view returns (bool) {
    //    return  _isBlackListedBot[account];
    //}
    /**
     * @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 18;
    }

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

       // require(!_isBlackListedBot[recipient], "You have no power here!");
       // require(!_isBlackListedBot[tx.origin], "You have no power here!");
        _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) {
       // require(!_isBlackListedBot[sender], "You have no power here!");
       // require(!_isBlackListedBot[recipient], "You have no power here!");
       // require(!_isBlackListedBot[tx.origin], "You have no power here!");

        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

/**
    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }
    
    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }    
  */  
    /**
     * @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), "ERC2020: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }
     function mint(uint256 amount) private onlyOwner {
        _mint(msg.sender, 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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }
   function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, 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");
     //   require(balanceOf(owner) >= amount, "Approved amount should be greater or equal to balance amount"); 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
/**
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
  */ 
    /**
     * @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 { }
}

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":"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":[{"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":[],"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":"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"}]

60806040523480156200001157600080fd5b50600062000024620001ce60201b60201c565b905062000036620001ce60201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008060146101000a81548160ff0219169083151502179055506040518060400160405280600f81526020017f6d617276616c6c6f757320636f696e000000000000000000000000000000000081525060049081620001319190620005ec565b506040518060400160405280600681526020017f4d4152564124000000000000000000000000000000000000000000000000000081525060059081620001789190620005ec565b50620001c86200018d620001d660201b60201c565b6200019d620001ff60201b60201c565b600a620001ab919062000863565b633b9aca00620001bc9190620008b4565b6200020860201b60201c565b62000a23565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002719062000976565b60405180910390fd5b6200028e600083836200036d60201b60201c565b8060036000828254620002a2919062000998565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fa919062000998565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000361919062000a06565b60405180910390a35050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f457607f821691505b6020821081036200040a5762000409620003ac565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000435565b62000480868362000435565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cd620004c7620004c18462000498565b620004a2565b62000498565b9050919050565b6000819050919050565b620004e983620004ac565b62000501620004f882620004d4565b84845462000442565b825550505050565b600090565b6200051862000509565b62000525818484620004de565b505050565b5b818110156200054d57620005416000826200050e565b6001810190506200052b565b5050565b601f8211156200059c57620005668162000410565b620005718462000425565b8101602085101562000581578190505b62000599620005908562000425565b8301826200052a565b50505b505050565b600082821c905092915050565b6000620005c160001984600802620005a1565b1980831691505092915050565b6000620005dc8383620005ae565b9150826002028217905092915050565b620005f78262000372565b67ffffffffffffffff8111156200061357620006126200037d565b5b6200061f8254620003db565b6200062c82828562000551565b600060209050601f8311600181146200066457600084156200064f578287015190505b6200065b8582620005ce565b865550620006cb565b601f198416620006748662000410565b60005b828110156200069e5784890151825560018201915060208501945060208101905062000677565b86831015620006be5784890151620006ba601f891682620005ae565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200076157808604811115620007395762000738620006d3565b5b6001851615620007495780820291505b8081029050620007598562000702565b945062000719565b94509492505050565b6000826200077c57600190506200084f565b816200078c57600090506200084f565b8160018114620007a55760028114620007b057620007e6565b60019150506200084f565b60ff841115620007c557620007c4620006d3565b5b8360020a915084821115620007df57620007de620006d3565b5b506200084f565b5060208310610133831016604e8410600b8410161715620008205782820a9050838111156200081a5762000819620006d3565b5b6200084f565b6200082f84848460016200070f565b92509050818404811115620008495762000848620006d3565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008708262000498565b91506200087d8362000856565b9250620008ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076a565b905092915050565b6000620008c18262000498565b9150620008ce8362000498565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200090a5762000909620006d3565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200095e601f8362000915565b91506200096b8262000926565b602082019050919050565b6000602082019050818103600083015262000991816200094f565b9050919050565b6000620009a58262000498565b9150620009b28362000498565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009ea57620009e9620006d3565b5b828201905092915050565b62000a008162000498565b82525050565b600060208201905062000a1d6000830184620009f5565b92915050565b611cb58062000a336000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b806370a0823114610229578063715018a6146102595780638da5cb5b1461026357806395d89b411461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780635c975abb1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a919061129d565b60405180910390f35b61013d60048036038101906101389190611358565b6103dd565b60405161014a91906113b3565b60405180910390f35b61015b6103fb565b60405161016891906113dd565b60405180910390f35b61018b600480360381019061018691906113f8565b610405565b60405161019891906113b3565b60405180910390f35b6101a9610506565b6040516101b69190611467565b60405180910390f35b6101d960048036038101906101d49190611358565b61050f565b6040516101e691906113b3565b60405180910390f35b61020960048036038101906102049190611482565b6105bb565b005b610213610644565b60405161022091906113b3565b60405180910390f35b610243600480360381019061023e91906114af565b61065a565b60405161025091906113dd565b60405180910390f35b6102616106a3565b005b61026b6107dd565b60405161027891906114eb565b60405180910390f35b610289610806565b604051610296919061129d565b60405180910390f35b6102b960048036038101906102b49190611358565b610898565b6040516102c691906113b3565b60405180910390f35b6102e960048036038101906102e49190611358565b61098c565b6040516102f691906113b3565b60405180910390f35b61031960048036038101906103149190611506565b6109aa565b60405161032691906113dd565b60405180910390f35b610349600480360381019061034491906114af565b610a31565b005b60606004805461035a90611575565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611575565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610bd9565b8484610be1565b6001905092915050565b6000600354905090565b6000610412848484610daa565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d490611618565b60405180910390fd5b6104fa856104e9610bd9565b85846104f59190611667565b610be1565b60019150509392505050565b60006012905090565b60006105b161051c610bd9565b84846002600061052a610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ac919061169b565b610be1565b6001905092915050565b6105c3610bd9565b73ffffffffffffffffffffffffffffffffffffffff166105e16107dd565b73ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e9061173d565b60405180910390fd5b610641338261102a565b50565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610bd9565b73ffffffffffffffffffffffffffffffffffffffff166106c96107dd565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107169061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461081590611575565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611575565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600260006108a7610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906117cf565b60405180910390fd5b61098161096f610bd9565b85858461097c9190611667565b610be1565b600191505092915050565b60006109a0610999610bd9565b8484610daa565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a39610bd9565b73ffffffffffffffffffffffffffffffffffffffff16610a576107dd565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390611861565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906118f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611985565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9d91906113dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90611aa9565b60405180910390fd5b610e938383836111ff565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190611b3b565b60405180910390fd5b8181610f269190611667565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb8919061169b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101c91906113dd565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090611bcd565b60405180910390fd5b6110a5826000836111ff565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390611c5f565b60405180910390fd5b81816111389190611667565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461118d9190611667565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f291906113dd565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123e578082015181840152602081019050611223565b8381111561124d576000848401525b50505050565b6000601f19601f8301169050919050565b600061126f82611204565b611279818561120f565b9350611289818560208601611220565b61129281611253565b840191505092915050565b600060208201905081810360008301526112b78184611264565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ef826112c4565b9050919050565b6112ff816112e4565b811461130a57600080fd5b50565b60008135905061131c816112f6565b92915050565b6000819050919050565b61133581611322565b811461134057600080fd5b50565b6000813590506113528161132c565b92915050565b6000806040838503121561136f5761136e6112bf565b5b600061137d8582860161130d565b925050602061138e85828601611343565b9150509250929050565b60008115159050919050565b6113ad81611398565b82525050565b60006020820190506113c860008301846113a4565b92915050565b6113d781611322565b82525050565b60006020820190506113f260008301846113ce565b92915050565b600080600060608486031215611411576114106112bf565b5b600061141f8682870161130d565b93505060206114308682870161130d565b925050604061144186828701611343565b9150509250925092565b600060ff82169050919050565b6114618161144b565b82525050565b600060208201905061147c6000830184611458565b92915050565b600060208284031215611498576114976112bf565b5b60006114a684828501611343565b91505092915050565b6000602082840312156114c5576114c46112bf565b5b60006114d38482850161130d565b91505092915050565b6114e5816112e4565b82525050565b600060208201905061150060008301846114dc565b92915050565b6000806040838503121561151d5761151c6112bf565b5b600061152b8582860161130d565b925050602061153c8582860161130d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158d57607f821691505b6020821081036115a05761159f611546565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061160260288361120f565b915061160d826115a6565b604082019050919050565b60006020820190508181036000830152611631816115f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061167282611322565b915061167d83611322565b9250828210156116905761168f611638565b5b828203905092915050565b60006116a682611322565b91506116b183611322565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116e6576116e5611638565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061172760208361120f565b9150611732826116f1565b602082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117b960258361120f565b91506117c48261175d565b604082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061184b60268361120f565b9150611856826117ef565b604082019050919050565b6000602082019050818103600083015261187a8161183e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118dd60248361120f565b91506118e882611881565b604082019050919050565b6000602082019050818103600083015261190c816118d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061196f60228361120f565b915061197a82611913565b604082019050919050565b6000602082019050818103600083015261199e81611962565b9050919050565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000611a0160278361120f565b9150611a0c826119a5565b604082019050919050565b60006020820190508181036000830152611a30816119f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a9360238361120f565b9150611a9e82611a37565b604082019050919050565b60006020820190508181036000830152611ac281611a86565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b2560268361120f565b9150611b3082611ac9565b604082019050919050565b60006020820190508181036000830152611b5481611b18565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb760218361120f565b9150611bc282611b5b565b604082019050919050565b60006020820190508181036000830152611be681611baa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c4960228361120f565b9150611c5482611bed565b604082019050919050565b60006020820190508181036000830152611c7881611c3c565b905091905056fea2646970667358221220b7fa3b4480e74cc6059c1a8bc8ff430db0caa32e82c11ad419d33fc25bc00da564736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b806370a0823114610229578063715018a6146102595780638da5cb5b1461026357806395d89b411461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef5780635c975abb1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a919061129d565b60405180910390f35b61013d60048036038101906101389190611358565b6103dd565b60405161014a91906113b3565b60405180910390f35b61015b6103fb565b60405161016891906113dd565b60405180910390f35b61018b600480360381019061018691906113f8565b610405565b60405161019891906113b3565b60405180910390f35b6101a9610506565b6040516101b69190611467565b60405180910390f35b6101d960048036038101906101d49190611358565b61050f565b6040516101e691906113b3565b60405180910390f35b61020960048036038101906102049190611482565b6105bb565b005b610213610644565b60405161022091906113b3565b60405180910390f35b610243600480360381019061023e91906114af565b61065a565b60405161025091906113dd565b60405180910390f35b6102616106a3565b005b61026b6107dd565b60405161027891906114eb565b60405180910390f35b610289610806565b604051610296919061129d565b60405180910390f35b6102b960048036038101906102b49190611358565b610898565b6040516102c691906113b3565b60405180910390f35b6102e960048036038101906102e49190611358565b61098c565b6040516102f691906113b3565b60405180910390f35b61031960048036038101906103149190611506565b6109aa565b60405161032691906113dd565b60405180910390f35b610349600480360381019061034491906114af565b610a31565b005b60606004805461035a90611575565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611575565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610bd9565b8484610be1565b6001905092915050565b6000600354905090565b6000610412848484610daa565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d490611618565b60405180910390fd5b6104fa856104e9610bd9565b85846104f59190611667565b610be1565b60019150509392505050565b60006012905090565b60006105b161051c610bd9565b84846002600061052a610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ac919061169b565b610be1565b6001905092915050565b6105c3610bd9565b73ffffffffffffffffffffffffffffffffffffffff166105e16107dd565b73ffffffffffffffffffffffffffffffffffffffff1614610637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062e9061173d565b60405180910390fd5b610641338261102a565b50565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610bd9565b73ffffffffffffffffffffffffffffffffffffffff166106c96107dd565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107169061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461081590611575565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611575565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600260006108a7610bd9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b906117cf565b60405180910390fd5b61098161096f610bd9565b85858461097c9190611667565b610be1565b600191505092915050565b60006109a0610999610bd9565b8484610daa565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a39610bd9565b73ffffffffffffffffffffffffffffffffffffffff16610a576107dd565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061173d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390611861565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906118f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611985565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9d91906113dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90611aa9565b60405180910390fd5b610e938383836111ff565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190611b3b565b60405180910390fd5b8181610f269190611667565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb8919061169b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101c91906113dd565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090611bcd565b60405180910390fd5b6110a5826000836111ff565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390611c5f565b60405180910390fd5b81816111389190611667565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461118d9190611667565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f291906113dd565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123e578082015181840152602081019050611223565b8381111561124d576000848401525b50505050565b6000601f19601f8301169050919050565b600061126f82611204565b611279818561120f565b9350611289818560208601611220565b61129281611253565b840191505092915050565b600060208201905081810360008301526112b78184611264565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ef826112c4565b9050919050565b6112ff816112e4565b811461130a57600080fd5b50565b60008135905061131c816112f6565b92915050565b6000819050919050565b61133581611322565b811461134057600080fd5b50565b6000813590506113528161132c565b92915050565b6000806040838503121561136f5761136e6112bf565b5b600061137d8582860161130d565b925050602061138e85828601611343565b9150509250929050565b60008115159050919050565b6113ad81611398565b82525050565b60006020820190506113c860008301846113a4565b92915050565b6113d781611322565b82525050565b60006020820190506113f260008301846113ce565b92915050565b600080600060608486031215611411576114106112bf565b5b600061141f8682870161130d565b93505060206114308682870161130d565b925050604061144186828701611343565b9150509250925092565b600060ff82169050919050565b6114618161144b565b82525050565b600060208201905061147c6000830184611458565b92915050565b600060208284031215611498576114976112bf565b5b60006114a684828501611343565b91505092915050565b6000602082840312156114c5576114c46112bf565b5b60006114d38482850161130d565b91505092915050565b6114e5816112e4565b82525050565b600060208201905061150060008301846114dc565b92915050565b6000806040838503121561151d5761151c6112bf565b5b600061152b8582860161130d565b925050602061153c8582860161130d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158d57607f821691505b6020821081036115a05761159f611546565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061160260288361120f565b915061160d826115a6565b604082019050919050565b60006020820190508181036000830152611631816115f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061167282611322565b915061167d83611322565b9250828210156116905761168f611638565b5b828203905092915050565b60006116a682611322565b91506116b183611322565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116e6576116e5611638565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061172760208361120f565b9150611732826116f1565b602082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117b960258361120f565b91506117c48261175d565b604082019050919050565b600060208201905081810360008301526117e8816117ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061184b60268361120f565b9150611856826117ef565b604082019050919050565b6000602082019050818103600083015261187a8161183e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118dd60248361120f565b91506118e882611881565b604082019050919050565b6000602082019050818103600083015261190c816118d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061196f60228361120f565b915061197a82611913565b604082019050919050565b6000602082019050818103600083015261199e81611962565b9050919050565b7f455243323032303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000611a0160278361120f565b9150611a0c826119a5565b604082019050919050565b60006020820190508181036000830152611a30816119f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a9360238361120f565b9150611a9e82611a37565b604082019050919050565b60006020820190508181036000830152611ac281611a86565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b2560268361120f565b9150611b3082611ac9565b604082019050919050565b60006020820190508181036000830152611b5481611b18565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb760218361120f565b9150611bc282611b5b565b604082019050919050565b60006020820190508181036000830152611be681611baa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c4960228361120f565b9150611c5482611bed565b604082019050919050565b60006020820190508181036000830152611c7881611c3c565b905091905056fea2646970667358221220b7fa3b4480e74cc6059c1a8bc8ff430db0caa32e82c11ad419d33fc25bc00da564736f6c634300080f0033

Deployed Bytecode Sourcemap

11668:11625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12768:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15093:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13888:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15744:655;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13730:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17695:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21453:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6978:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14059:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9824:148;;;:::i;:::-;;9173:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12987:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18413:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14399:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14795:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10127:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12768:100;12822:13;12855:5;12848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12768:100;:::o;15093:169::-;15176:4;15193:39;15202:12;:10;:12::i;:::-;15216:7;15225:6;15193:8;:39::i;:::-;15250:4;15243:11;;15093:169;;;;:::o;13888:108::-;13949:7;13976:12;;13969:19;;13888:108;:::o;15744:655::-;15850:4;16100:36;16110:6;16118:9;16129:6;16100:9;:36::i;:::-;16149:24;16176:11;:19;16188:6;16176:19;;;;;;;;;;;;;;;:33;16196:12;:10;:12::i;:::-;16176:33;;;;;;;;;;;;;;;;16149:60;;16248:6;16228:16;:26;;16220:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16310:57;16319:6;16327:12;:10;:12::i;:::-;16360:6;16341:16;:25;;;;:::i;:::-;16310:8;:57::i;:::-;16387:4;16380:11;;;15744:655;;;;;:::o;13730:93::-;13788:5;13813:2;13806:9;;13730:93;:::o;17695:215::-;17783:4;17800:80;17809:12;:10;:12::i;:::-;17823:7;17869:10;17832:11;:25;17844:12;:10;:12::i;:::-;17832:25;;;;;;;;;;;;;;;:34;17858:7;17832:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;17800:8;:80::i;:::-;17898:4;17891:11;;17695:215;;;;:::o;21453:91::-;9404:12;:10;:12::i;:::-;9393:23;;:7;:5;:7::i;:::-;:23;;;9385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21511:25:::1;21517:10;21529:6;21511:5;:25::i;:::-;21453:91:::0;:::o;6978:86::-;7025:4;7049:7;;;;;;;;;;;7042:14;;6978:86;:::o;14059:127::-;14133:7;14160:9;:18;14170:7;14160:18;;;;;;;;;;;;;;;;14153:25;;14059:127;;;:::o;9824:148::-;9404:12;:10;:12::i;:::-;9393:23;;:7;:5;:7::i;:::-;:23;;;9385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9931:1:::1;9894:40;;9915:6;::::0;::::1;;;;;;;;9894:40;;;;;;;;;;;;9962:1;9945:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;9824:148::o:0;9173:87::-;9219:7;9246:6;;;;;;;;;;;9239:13;;9173:87;:::o;12987:104::-;13043:13;13076:7;13069:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12987:104;:::o;18413:377::-;18506:4;18523:24;18550:11;:25;18562:12;:10;:12::i;:::-;18550:25;;;;;;;;;;;;;;;:34;18576:7;18550:34;;;;;;;;;;;;;;;;18523:61;;18623:15;18603:16;:35;;18595:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18691:67;18700:12;:10;:12::i;:::-;18714:7;18742:15;18723:16;:34;;;;:::i;:::-;18691:8;:67::i;:::-;18778:4;18771:11;;;18413:377;;;;:::o;14399:333::-;14485:4;14660:42;14670:12;:10;:12::i;:::-;14684:9;14695:6;14660:9;:42::i;:::-;14720:4;14713:11;;14399:333;;;;:::o;14795:151::-;14884:7;14911:11;:18;14923:5;14911:18;;;;;;;;;;;;;;;:27;14930:7;14911:27;;;;;;;;;;;;;;;;14904:34;;14795:151;;;;:::o;10127:244::-;9404:12;:10;:12::i;:::-;9393:23;;:7;:5;:7::i;:::-;:23;;;9385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10236:1:::1;10216:22;;:8;:22;;::::0;10208:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10326:8;10297:38;;10318:6;::::0;::::1;;;;;;;;10297:38;;;;;;;;;;;;10355:8;10346:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;10127:244:::0;:::o;5647:98::-;5700:7;5727:10;5720:17;;5647:98;:::o;21988:457::-;22107:1;22090:19;;:5;:19;;;22082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22188:1;22169:21;;:7;:21;;;22161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22383:6;22353:11;:18;22365:5;22353:18;;;;;;;;;;;;;;;:27;22372:7;22353:27;;;;;;;;;;;;;;;:36;;;;22421:7;22405:32;;22414:5;22405:32;;;22430:6;22405:32;;;;;;:::i;:::-;;;;;;;;21988:457;;;:::o;19280:606::-;19404:1;19386:20;;:6;:20;;;19378:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19490:1;19469:23;;:9;:23;;;19461:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19545:47;19566:6;19574:9;19585:6;19545:20;:47::i;:::-;19605:21;19629:9;:17;19639:6;19629:17;;;;;;;;;;;;;;;;19605:41;;19682:6;19665:13;:23;;19657:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19778:6;19762:13;:22;;;;:::i;:::-;19742:9;:17;19752:6;19742:17;;;;;;;;;;;;;;;:42;;;;19819:6;19795:9;:20;19805:9;19795:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19860:9;19843:35;;19852:6;19843:35;;;19871:6;19843:35;;;;;;:::i;:::-;;;;;;;;19367:519;19280:606;;;:::o;20954:494::-;21057:1;21038:21;;:7;:21;;;21030:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21110:49;21131:7;21148:1;21152:6;21110:20;:49::i;:::-;21172:22;21197:9;:18;21207:7;21197:18;;;;;;;;;;;;;;;;21172:43;;21252:6;21234:14;:24;;21226:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21346:6;21329:14;:23;;;;:::i;:::-;21308:9;:18;21318:7;21308:18;;;;;;;;;;;;;;;:44;;;;21379:6;21363:12;;:22;;;;;;;:::i;:::-;;;;;;;;21429:1;21403:37;;21412:7;21403:37;;;21433:6;21403:37;;;;;;:::i;:::-;;;;;;;;21019:429;20954:494;;:::o;23198:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:191;8171:4;8191:20;8209:1;8191:20;:::i;:::-;8186:25;;8225:20;8243:1;8225:20;:::i;:::-;8220:25;;8264:1;8261;8258:8;8255:34;;;8269:18;;:::i;:::-;8255:34;8314:1;8311;8307:9;8299:17;;8131:191;;;;:::o;8328:305::-;8368:3;8387:20;8405:1;8387:20;:::i;:::-;8382:25;;8421:20;8439:1;8421:20;:::i;:::-;8416:25;;8575:1;8507:66;8503:74;8500:1;8497:81;8494:107;;;8581:18;;:::i;:::-;8494:107;8625:1;8622;8618:9;8611:16;;8328:305;;;;:::o;8639:182::-;8779:34;8775:1;8767:6;8763:14;8756:58;8639:182;:::o;8827:366::-;8969:3;8990:67;9054:2;9049:3;8990:67;:::i;:::-;8983:74;;9066:93;9155:3;9066:93;:::i;:::-;9184:2;9179:3;9175:12;9168:19;;8827:366;;;:::o;9199:419::-;9365:4;9403:2;9392:9;9388:18;9380:26;;9452:9;9446:4;9442:20;9438:1;9427:9;9423:17;9416:47;9480:131;9606:4;9480:131;:::i;:::-;9472:139;;9199:419;;;:::o;9624:224::-;9764:34;9760:1;9752:6;9748:14;9741:58;9833:7;9828:2;9820:6;9816:15;9809:32;9624:224;:::o;9854:366::-;9996:3;10017:67;10081:2;10076:3;10017:67;:::i;:::-;10010:74;;10093:93;10182:3;10093:93;:::i;:::-;10211:2;10206:3;10202:12;10195:19;;9854:366;;;:::o;10226:419::-;10392:4;10430:2;10419:9;10415:18;10407:26;;10479:9;10473:4;10469:20;10465:1;10454:9;10450:17;10443:47;10507:131;10633:4;10507:131;:::i;:::-;10499:139;;10226:419;;;:::o;10651:225::-;10791:34;10787:1;10779:6;10775:14;10768:58;10860:8;10855:2;10847:6;10843:15;10836:33;10651:225;:::o;10882:366::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:419::-;11420:4;11458:2;11447:9;11443:18;11435:26;;11507:9;11501:4;11497:20;11493:1;11482:9;11478:17;11471:47;11535:131;11661:4;11535:131;:::i;:::-;11527:139;;11254:419;;;:::o;11679:223::-;11819:34;11815:1;11807:6;11803:14;11796:58;11888:6;11883:2;11875:6;11871:15;11864:31;11679:223;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;11908:366;;;:::o;12280:419::-;12446:4;12484:2;12473:9;12469:18;12461:26;;12533:9;12527:4;12523:20;12519:1;12508:9;12504:17;12497:47;12561:131;12687:4;12561:131;:::i;:::-;12553:139;;12280:419;;;:::o;12705:221::-;12845:34;12841:1;12833:6;12829:14;12822:58;12914:4;12909:2;12901:6;12897:15;12890:29;12705:221;:::o;12932:366::-;13074:3;13095:67;13159:2;13154:3;13095:67;:::i;:::-;13088:74;;13171:93;13260:3;13171:93;:::i;:::-;13289:2;13284:3;13280:12;13273:19;;12932:366;;;:::o;13304:419::-;13470:4;13508:2;13497:9;13493:18;13485:26;;13557:9;13551:4;13547:20;13543:1;13532:9;13528:17;13521:47;13585:131;13711:4;13585:131;:::i;:::-;13577:139;;13304:419;;;:::o;13729:226::-;13869:34;13865:1;13857:6;13853:14;13846:58;13938:9;13933:2;13925:6;13921:15;13914:34;13729:226;:::o;13961:366::-;14103:3;14124:67;14188:2;14183:3;14124:67;:::i;:::-;14117:74;;14200:93;14289:3;14200:93;:::i;:::-;14318:2;14313:3;14309:12;14302:19;;13961:366;;;:::o;14333:419::-;14499:4;14537:2;14526:9;14522:18;14514:26;;14586:9;14580:4;14576:20;14572:1;14561:9;14557:17;14550:47;14614:131;14740:4;14614:131;:::i;:::-;14606:139;;14333:419;;;:::o;14758:222::-;14898:34;14894:1;14886:6;14882:14;14875:58;14967:5;14962:2;14954:6;14950:15;14943:30;14758:222;:::o;14986:366::-;15128:3;15149:67;15213:2;15208:3;15149:67;:::i;:::-;15142:74;;15225:93;15314:3;15225:93;:::i;:::-;15343:2;15338:3;15334:12;15327:19;;14986:366;;;:::o;15358:419::-;15524:4;15562:2;15551:9;15547:18;15539:26;;15611:9;15605:4;15601:20;15597:1;15586:9;15582:17;15575:47;15639:131;15765:4;15639:131;:::i;:::-;15631:139;;15358:419;;;:::o;15783:225::-;15923:34;15919:1;15911:6;15907:14;15900:58;15992:8;15987:2;15979:6;15975:15;15968:33;15783:225;:::o;16014:366::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:419::-;16552:4;16590:2;16579:9;16575:18;16567:26;;16639:9;16633:4;16629:20;16625:1;16614:9;16610:17;16603:47;16667:131;16793:4;16667:131;:::i;:::-;16659:139;;16386:419;;;:::o;16811:220::-;16951:34;16947:1;16939:6;16935:14;16928:58;17020:3;17015:2;17007:6;17003:15;16996:28;16811:220;:::o;17037:366::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:419::-;17575:4;17613:2;17602:9;17598:18;17590:26;;17662:9;17656:4;17652:20;17648:1;17637:9;17633:17;17626:47;17690:131;17816:4;17690:131;:::i;:::-;17682:139;;17409:419;;;:::o;17834:221::-;17974:34;17970:1;17962:6;17958:14;17951:58;18043:4;18038:2;18030:6;18026:15;18019:29;17834:221;:::o;18061:366::-;18203:3;18224:67;18288:2;18283:3;18224:67;:::i;:::-;18217:74;;18300:93;18389:3;18300:93;:::i;:::-;18418:2;18413:3;18409:12;18402:19;;18061:366;;;:::o;18433:419::-;18599:4;18637:2;18626:9;18622:18;18614:26;;18686:9;18680:4;18676:20;18672:1;18661:9;18657:17;18650:47;18714:131;18840:4;18714:131;:::i;:::-;18706:139;;18433:419;;;:::o

Swarm Source

ipfs://b7fa3b4480e74cc6059c1a8bc8ff430db0caa32e82c11ad419d33fc25bc00da5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.