ETH Price: $3,507.96 (-0.61%)
Gas: 3 Gwei

Token

$BRAIN ($BRAIN)
 

Overview

Max Total Supply

1,000,000,000,000 $BRAIN

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000001421244435 $BRAIN

Value
$0.00
0x8968d124D9fB704bbc4b4eB827e19b61c2D7Bf8d
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:
Brain

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

// SPDX-License-Identifier: MIT

/**

    >>> Telegram <<<
   
    https://t.me/TheBrainPortal

   
    >>> Twitter <<<
    
    https://twitter.com/TheBrainERC


    >>> Website <<<
    
    www.TheBrainToken.com
           

    >>> $BRAIN Donation Wallet <<<

    0x9F815BaF8eC74c6934EC2698FC41c80d2E1a39F3

*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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 default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

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

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

        emit Transfer(account, address(0), amount);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @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 {
        _transferOwnership(address(0));
    }

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

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

// File: contracts/GenerationalWealthToken.sol


pragma solidity ^0.8.0;



contract Brain is Ownable, ERC20 {
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("$BRAIN", "$BRAIN") {
        _mint(msg.sender, 1_000_000_000_000_000_000_000_000_000_000);
    }

    function setRule(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function blacklist(address _address, bool _isBlacklist) external onlyOwner {
        blacklists[_address] = _isBlacklist;
    }

    function _beforeTokenTransfer(
    address from,
    address to,
    uint256 /* amount */
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "you are NOT a Chad!");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading has not started");
            return;
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklist","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f24425241494e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f24425241494e00000000000000000000000000000000000000000000000000008152506200009e62000092620000e960201b60201c565b620000f160201b60201c565b8160049081620000af9190620007e6565b508060059081620000c19190620007e6565b505050620000e3336c0c9f2c9cd04674edea40000000620001b560201b60201c565b62000acc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000227576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021e906200092e565b60405180910390fd5b6200023b600083836200032e60201b60201c565b80600360008282546200024f91906200097f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002a791906200097f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030e9190620009cb565b60405180910390a36200032a600083836200053e60201b60201c565b5050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003d35750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000415576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040c9062000a38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000538576200047c6200054360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004f05750620004c16200054360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005299062000aaa565b60405180910390fd5b62000539565b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ee57607f821691505b602082108103620006045762000603620005a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200066e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200062f565b6200067a86836200062f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006c7620006c1620006bb8462000692565b6200069c565b62000692565b9050919050565b6000819050919050565b620006e383620006a6565b620006fb620006f282620006ce565b8484546200063c565b825550505050565b600090565b6200071262000703565b6200071f818484620006d8565b505050565b5b8181101562000747576200073b60008262000708565b60018101905062000725565b5050565b601f821115620007965762000760816200060a565b6200076b846200061f565b810160208510156200077b578190505b620007936200078a856200061f565b83018262000724565b50505b505050565b600082821c905092915050565b6000620007bb600019846008026200079b565b1980831691505092915050565b6000620007d68383620007a8565b9150826002028217905092915050565b620007f1826200056c565b67ffffffffffffffff8111156200080d576200080c62000577565b5b620008198254620005d5565b620008268282856200074b565b600060209050601f8311600181146200085e576000841562000849578287015190505b620008558582620007c8565b865550620008c5565b601f1984166200086e866200060a565b60005b82811015620008985784890151825560018201915060208501945060208101905062000871565b86831015620008b85784890151620008b4601f891682620007a8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000916601f83620008cd565b91506200092382620008de565b602082019050919050565b60006020820190508181036000830152620009498162000907565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200098c8262000692565b9150620009998362000692565b9250828201905080821115620009b457620009b362000950565b5b92915050565b620009c58162000692565b82525050565b6000602082019050620009e26000830184620009ba565b92915050565b7f796f7520617265204e4f54206120436861642100000000000000000000000000600082015250565b600062000a20601383620008cd565b915062000a2d82620009e8565b602082019050919050565b6000602082019050818103600083015262000a538162000a11565b9050919050565b7f74726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b600062000a92601783620008cd565b915062000a9f8262000a5a565b602082019050919050565b6000602082019050818103600083015262000ac58162000a83565b9050919050565b611f9a8062000adc6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806349bd5a5e116100ad578063a457c2d711610071578063a457c2d71461030c578063a9059cbb1461033c578063db5d77931461036c578063dd62ed3e14610388578063f2fde38b146103b857610121565b806349bd5a5e1461027857806370a0823114610296578063715018a6146102c65780638da5cb5b146102d057806395d89b41146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f25780633950935114610210578063404e51291461024057806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d4565b60405161013b9190611460565b60405180910390f35b61015e6004803603810190610159919061151b565b610466565b60405161016b9190611576565b60405180910390f35b61018e60048036038101906101899190611591565b610484565b60405161019b9190611576565b60405180910390f35b6101ac6104a4565b6040516101b991906115cd565b60405180910390f35b6101dc60048036038101906101d791906115e8565b6104ae565b6040516101e99190611576565b60405180910390f35b6101fa6105a6565b6040516102079190611657565b60405180910390f35b61022a6004803603810190610225919061151b565b6105af565b6040516102379190611576565b60405180910390f35b61025a6004803603810190610255919061169e565b61065b565b005b610276600480360381019061027191906116de565b6106be565b005b6102806106cb565b60405161028d919061171a565b60405180910390f35b6102b060048036038101906102ab9190611591565b6106f1565b6040516102bd91906115cd565b60405180910390f35b6102ce61073a565b005b6102d861074e565b6040516102e5919061171a565b60405180910390f35b6102f6610777565b6040516103039190611460565b60405180910390f35b6103266004803603810190610321919061151b565b610809565b6040516103339190611576565b60405180910390f35b6103566004803603810190610351919061151b565b6108f4565b6040516103639190611576565b60405180910390f35b61038660048036038101906103819190611591565b610912565b005b6103a2600480360381019061039d9190611735565b61095e565b6040516103af91906115cd565b60405180910390f35b6103d260048036038101906103cd9190611591565b6109e5565b005b6060600480546103e3906117a4565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906117a4565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a610473610a68565b8484610a70565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60006104bb848484610c39565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610506610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611847565b60405180910390fd5b61059a85610592610a68565b858403610a70565b60019150509392505050565b60006012905090565b60006106516105bc610a68565b8484600260006105ca610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064c9190611896565b610a70565b6001905092915050565b610663610ebb565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106c83382610f39565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610742610ebb565b61074c6000611111565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610786906117a4565b80601f01602080910402602001604051908101604052809291908181526020018280546107b2906117a4565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b60008060026000610818610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc9061193c565b60405180910390fd5b6108e96108e0610a68565b85858403610a70565b600191505092915050565b6000610908610901610a68565b8484610c39565b6001905092915050565b61091a610ebb565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109ed610ebb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906119ce565b60405180910390fd5b610a6581611111565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611af2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2c91906115cd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90611c16565b60405180910390fd5b610d228383836111d5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611ca8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e3e9190611896565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea291906115cd565b60405180910390a3610eb58484846113cb565b50505050565b610ec3610a68565b73ffffffffffffffffffffffffffffffffffffffff16610ee161074e565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90611d14565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90611da6565b60405180910390fd5b610fb4826000836111d5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611e38565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110939190611e58565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f891906115cd565b60405180910390a361110c836000846113cb565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112795750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90611ed8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113c55761131661074e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611381575061135261074e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790611f44565b60405180910390fd5b6113c6565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140a5780820151818401526020810190506113ef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611432826113d0565b61143c81856113db565b935061144c8185602086016113ec565b61145581611416565b840191505092915050565b6000602082019050818103600083015261147a8184611427565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b282611487565b9050919050565b6114c2816114a7565b81146114cd57600080fd5b50565b6000813590506114df816114b9565b92915050565b6000819050919050565b6114f8816114e5565b811461150357600080fd5b50565b600081359050611515816114ef565b92915050565b6000806040838503121561153257611531611482565b5b6000611540858286016114d0565b925050602061155185828601611506565b9150509250929050565b60008115159050919050565b6115708161155b565b82525050565b600060208201905061158b6000830184611567565b92915050565b6000602082840312156115a7576115a6611482565b5b60006115b5848285016114d0565b91505092915050565b6115c7816114e5565b82525050565b60006020820190506115e260008301846115be565b92915050565b60008060006060848603121561160157611600611482565b5b600061160f868287016114d0565b9350506020611620868287016114d0565b925050604061163186828701611506565b9150509250925092565b600060ff82169050919050565b6116518161163b565b82525050565b600060208201905061166c6000830184611648565b92915050565b61167b8161155b565b811461168657600080fd5b50565b60008135905061169881611672565b92915050565b600080604083850312156116b5576116b4611482565b5b60006116c3858286016114d0565b92505060206116d485828601611689565b9150509250929050565b6000602082840312156116f4576116f3611482565b5b600061170284828501611506565b91505092915050565b611714816114a7565b82525050565b600060208201905061172f600083018461170b565b92915050565b6000806040838503121561174c5761174b611482565b5b600061175a858286016114d0565b925050602061176b858286016114d0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bc57607f821691505b6020821081036117cf576117ce611775565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118316028836113db565b915061183c826117d5565b604082019050919050565b6000602082019050818103600083015261186081611824565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a1826114e5565b91506118ac836114e5565b92508282019050808211156118c4576118c3611867565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119266025836113db565b9150611931826118ca565b604082019050919050565b6000602082019050818103600083015261195581611919565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119b86026836113db565b91506119c38261195c565b604082019050919050565b600060208201905081810360008301526119e7816119ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a4a6024836113db565b9150611a55826119ee565b604082019050919050565b60006020820190508181036000830152611a7981611a3d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611adc6022836113db565b9150611ae782611a80565b604082019050919050565b60006020820190508181036000830152611b0b81611acf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6e6025836113db565b9150611b7982611b12565b604082019050919050565b60006020820190508181036000830152611b9d81611b61565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c006023836113db565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c926026836113db565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfe6020836113db565b9150611d0982611cc8565b602082019050919050565b60006020820190508181036000830152611d2d81611cf1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d906021836113db565b9150611d9b82611d34565b604082019050919050565b60006020820190508181036000830152611dbf81611d83565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e226022836113db565b9150611e2d82611dc6565b604082019050919050565b60006020820190508181036000830152611e5181611e15565b9050919050565b6000611e63826114e5565b9150611e6e836114e5565b9250828203905081811115611e8657611e85611867565b5b92915050565b7f796f7520617265204e4f54206120436861642100000000000000000000000000600082015250565b6000611ec26013836113db565b9150611ecd82611e8c565b602082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f74726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b6000611f2e6017836113db565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b905091905056fea264697066735822122045d622d182d444424bd15281c54434a7b6a72a1a1fc47666aba56c974f06f7d264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806349bd5a5e116100ad578063a457c2d711610071578063a457c2d71461030c578063a9059cbb1461033c578063db5d77931461036c578063dd62ed3e14610388578063f2fde38b146103b857610121565b806349bd5a5e1461027857806370a0823114610296578063715018a6146102c65780638da5cb5b146102d057806395d89b41146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f25780633950935114610210578063404e51291461024057806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d4565b60405161013b9190611460565b60405180910390f35b61015e6004803603810190610159919061151b565b610466565b60405161016b9190611576565b60405180910390f35b61018e60048036038101906101899190611591565b610484565b60405161019b9190611576565b60405180910390f35b6101ac6104a4565b6040516101b991906115cd565b60405180910390f35b6101dc60048036038101906101d791906115e8565b6104ae565b6040516101e99190611576565b60405180910390f35b6101fa6105a6565b6040516102079190611657565b60405180910390f35b61022a6004803603810190610225919061151b565b6105af565b6040516102379190611576565b60405180910390f35b61025a6004803603810190610255919061169e565b61065b565b005b610276600480360381019061027191906116de565b6106be565b005b6102806106cb565b60405161028d919061171a565b60405180910390f35b6102b060048036038101906102ab9190611591565b6106f1565b6040516102bd91906115cd565b60405180910390f35b6102ce61073a565b005b6102d861074e565b6040516102e5919061171a565b60405180910390f35b6102f6610777565b6040516103039190611460565b60405180910390f35b6103266004803603810190610321919061151b565b610809565b6040516103339190611576565b60405180910390f35b6103566004803603810190610351919061151b565b6108f4565b6040516103639190611576565b60405180910390f35b61038660048036038101906103819190611591565b610912565b005b6103a2600480360381019061039d9190611735565b61095e565b6040516103af91906115cd565b60405180910390f35b6103d260048036038101906103cd9190611591565b6109e5565b005b6060600480546103e3906117a4565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906117a4565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a610473610a68565b8484610a70565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60006104bb848484610c39565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610506610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611847565b60405180910390fd5b61059a85610592610a68565b858403610a70565b60019150509392505050565b60006012905090565b60006106516105bc610a68565b8484600260006105ca610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064c9190611896565b610a70565b6001905092915050565b610663610ebb565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106c83382610f39565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610742610ebb565b61074c6000611111565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610786906117a4565b80601f01602080910402602001604051908101604052809291908181526020018280546107b2906117a4565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b60008060026000610818610a68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc9061193c565b60405180910390fd5b6108e96108e0610a68565b85858403610a70565b600191505092915050565b6000610908610901610a68565b8484610c39565b6001905092915050565b61091a610ebb565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109ed610ebb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906119ce565b60405180910390fd5b610a6581611111565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611af2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2c91906115cd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90611c16565b60405180910390fd5b610d228383836111d5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611ca8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e3e9190611896565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea291906115cd565b60405180910390a3610eb58484846113cb565b50505050565b610ec3610a68565b73ffffffffffffffffffffffffffffffffffffffff16610ee161074e565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90611d14565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90611da6565b60405180910390fd5b610fb4826000836111d5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611e38565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110939190611e58565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f891906115cd565b60405180910390a361110c836000846113cb565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112795750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90611ed8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113c55761131661074e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611381575061135261074e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790611f44565b60405180910390fd5b6113c6565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140a5780820151818401526020810190506113ef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611432826113d0565b61143c81856113db565b935061144c8185602086016113ec565b61145581611416565b840191505092915050565b6000602082019050818103600083015261147a8184611427565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b282611487565b9050919050565b6114c2816114a7565b81146114cd57600080fd5b50565b6000813590506114df816114b9565b92915050565b6000819050919050565b6114f8816114e5565b811461150357600080fd5b50565b600081359050611515816114ef565b92915050565b6000806040838503121561153257611531611482565b5b6000611540858286016114d0565b925050602061155185828601611506565b9150509250929050565b60008115159050919050565b6115708161155b565b82525050565b600060208201905061158b6000830184611567565b92915050565b6000602082840312156115a7576115a6611482565b5b60006115b5848285016114d0565b91505092915050565b6115c7816114e5565b82525050565b60006020820190506115e260008301846115be565b92915050565b60008060006060848603121561160157611600611482565b5b600061160f868287016114d0565b9350506020611620868287016114d0565b925050604061163186828701611506565b9150509250925092565b600060ff82169050919050565b6116518161163b565b82525050565b600060208201905061166c6000830184611648565b92915050565b61167b8161155b565b811461168657600080fd5b50565b60008135905061169881611672565b92915050565b600080604083850312156116b5576116b4611482565b5b60006116c3858286016114d0565b92505060206116d485828601611689565b9150509250929050565b6000602082840312156116f4576116f3611482565b5b600061170284828501611506565b91505092915050565b611714816114a7565b82525050565b600060208201905061172f600083018461170b565b92915050565b6000806040838503121561174c5761174b611482565b5b600061175a858286016114d0565b925050602061176b858286016114d0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bc57607f821691505b6020821081036117cf576117ce611775565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118316028836113db565b915061183c826117d5565b604082019050919050565b6000602082019050818103600083015261186081611824565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a1826114e5565b91506118ac836114e5565b92508282019050808211156118c4576118c3611867565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119266025836113db565b9150611931826118ca565b604082019050919050565b6000602082019050818103600083015261195581611919565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119b86026836113db565b91506119c38261195c565b604082019050919050565b600060208201905081810360008301526119e7816119ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a4a6024836113db565b9150611a55826119ee565b604082019050919050565b60006020820190508181036000830152611a7981611a3d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611adc6022836113db565b9150611ae782611a80565b604082019050919050565b60006020820190508181036000830152611b0b81611acf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6e6025836113db565b9150611b7982611b12565b604082019050919050565b60006020820190508181036000830152611b9d81611b61565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c006023836113db565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c926026836113db565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfe6020836113db565b9150611d0982611cc8565b602082019050919050565b60006020820190508181036000830152611d2d81611cf1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d906021836113db565b9150611d9b82611d34565b604082019050919050565b60006020820190508181036000830152611dbf81611d83565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e226022836113db565b9150611e2d82611dc6565b604082019050919050565b60006020820190508181036000830152611e5181611e15565b9050919050565b6000611e63826114e5565b9150611e6e836114e5565b9250828203905081811115611e8657611e85611867565b5b92915050565b7f796f7520617265204e4f54206120436861642100000000000000000000000000600082015250565b6000611ec26013836113db565b9150611ecd82611e8c565b602082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f74726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b6000611f2e6017836113db565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b905091905056fea264697066735822122045d622d182d444424bd15281c54434a7b6a72a1a1fc47666aba56c974f06f7d264736f6c63430008120033

Deployed Bytecode Sourcemap

19739:973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6995:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9162:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19814:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8115:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9813:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7957:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10714:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20109:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20628:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19779:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8286:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18839:103;;;:::i;:::-;;18191:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7214:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11432:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8626:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19992:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8864:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6995:100;7049:13;7082:5;7075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6995:100;:::o;9162:169::-;9245:4;9262:39;9271:12;:10;:12::i;:::-;9285:7;9294:6;9262:8;:39::i;:::-;9319:4;9312:11;;9162:169;;;;:::o;19814:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8115:108::-;8176:7;8203:12;;8196:19;;8115:108;:::o;9813:492::-;9953:4;9970:36;9980:6;9988:9;9999:6;9970:9;:36::i;:::-;10019:24;10046:11;:19;10058:6;10046:19;;;;;;;;;;;;;;;:33;10066:12;:10;:12::i;:::-;10046:33;;;;;;;;;;;;;;;;10019:60;;10118:6;10098:16;:26;;10090:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10205:57;10214:6;10222:12;:10;:12::i;:::-;10255:6;10236:16;:25;10205:8;:57::i;:::-;10293:4;10286:11;;;9813:492;;;;;:::o;7957:93::-;8015:5;8040:2;8033:9;;7957:93;:::o;10714:215::-;10802:4;10819:80;10828:12;:10;:12::i;:::-;10842:7;10888:10;10851:11;:25;10863:12;:10;:12::i;:::-;10851:25;;;;;;;;;;;;;;;:34;10877:7;10851:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10819:8;:80::i;:::-;10917:4;10910:11;;10714:215;;;;:::o;20109:129::-;18077:13;:11;:13::i;:::-;20218:12:::1;20195:10;:20;20206:8;20195:20;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20109:129:::0;;:::o;20628:81::-;20677:24;20683:10;20695:5;20677;:24::i;:::-;20628:81;:::o;19779:28::-;;;;;;;;;;;;;:::o;8286:127::-;8360:7;8387:9;:18;8397:7;8387:18;;;;;;;;;;;;;;;;8380:25;;8286:127;;;:::o;18839:103::-;18077:13;:11;:13::i;:::-;18904:30:::1;18931:1;18904:18;:30::i;:::-;18839:103::o:0;18191:87::-;18237:7;18264:6;;;;;;;;;;;18257:13;;18191:87;:::o;7214:104::-;7270:13;7303:7;7296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7214:104;:::o;11432:413::-;11525:4;11542:24;11569:11;:25;11581:12;:10;:12::i;:::-;11569:25;;;;;;;;;;;;;;;:34;11595:7;11569:34;;;;;;;;;;;;;;;;11542:61;;11642:15;11622:16;:35;;11614:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11735:67;11744:12;:10;:12::i;:::-;11758:7;11786:15;11767:16;:34;11735:8;:67::i;:::-;11833:4;11826:11;;;11432:413;;;;:::o;8626:175::-;8712:4;8729:42;8739:12;:10;:12::i;:::-;8753:9;8764:6;8729:9;:42::i;:::-;8789:4;8782:11;;8626:175;;;;:::o;19992:109::-;18077:13;:11;:13::i;:::-;20079:14:::1;20063:13;;:30;;;;;;;;;;;;;;;;;;19992:109:::0;:::o;8864:151::-;8953:7;8980:11;:18;8992:5;8980:18;;;;;;;;;;;;;;;:27;8999:7;8980:27;;;;;;;;;;;;;;;;8973:34;;8864:151;;;;:::o;19097:201::-;18077:13;:11;:13::i;:::-;19206:1:::1;19186:22;;:8;:22;;::::0;19178:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19262:28;19281:8;19262:18;:28::i;:::-;19097:201:::0;:::o;4650:98::-;4703:7;4730:10;4723:17;;4650:98;:::o;15116:380::-;15269:1;15252:19;;:5;:19;;;15244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15350:1;15331:21;;:7;:21;;;15323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15434:6;15404:11;:18;15416:5;15404:18;;;;;;;;;;;;;;;:27;15423:7;15404:27;;;;;;;;;;;;;;;:36;;;;15472:7;15456:32;;15465:5;15456:32;;;15481:6;15456:32;;;;;;:::i;:::-;;;;;;;;15116:380;;;:::o;12335:733::-;12493:1;12475:20;;:6;:20;;;12467:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12577:1;12556:23;;:9;:23;;;12548:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12632:47;12653:6;12661:9;12672:6;12632:20;:47::i;:::-;12692:21;12716:9;:17;12726:6;12716:17;;;;;;;;;;;;;;;;12692:41;;12769:6;12752:13;:23;;12744:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12890:6;12874:13;:22;12854:9;:17;12864:6;12854:17;;;;;;;;;;;;;;;:42;;;;12942:6;12918:9;:20;12928:9;12918:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12983:9;12966:35;;12975:6;12966:35;;;12994:6;12966:35;;;;;;:::i;:::-;;;;;;;;13014:46;13034:6;13042:9;13053:6;13014:19;:46::i;:::-;12456:612;12335:733;;;:::o;18356:132::-;18431:12;:10;:12::i;:::-;18420:23;;:7;:5;:7::i;:::-;:23;;;18412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18356:132::o;14087:591::-;14190:1;14171:21;;:7;:21;;;14163:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14243:49;14264:7;14281:1;14285:6;14243:20;:49::i;:::-;14305:22;14330:9;:18;14340:7;14330:18;;;;;;;;;;;;;;;;14305:43;;14385:6;14367:14;:24;;14359:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14504:6;14487:14;:23;14466:9;:18;14476:7;14466:18;;;;;;;;;;;;;;;:44;;;;14548:6;14532:12;;:22;;;;;;;:::i;:::-;;;;;;;;14598:1;14572:37;;14581:7;14572:37;;;14602:6;14572:37;;;;;;:::i;:::-;;;;;;;;14622:48;14642:7;14659:1;14663:6;14622:19;:48::i;:::-;14152:526;14087:591;;:::o;19458:191::-;19532:16;19551:6;;;;;;;;;;;19532:25;;19577:8;19568:6;;:17;;;;;;;;;;;;;;;;;;19632:8;19601:40;;19622:8;19601:40;;;;;;;;;;;;19521:128;19458:191;:::o;20246:374::-;20392:10;:14;20403:2;20392:14;;;;;;;;;;;;;;;;;;;;;;;;;20391:15;:36;;;;;20411:10;:16;20422:4;20411:16;;;;;;;;;;;;;;;;;;;;;;;;;20410:17;20391:36;20383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20493:1;20468:27;;:13;;;;;;;;;;;:27;;;20464:149;;20528:7;:5;:7::i;:::-;20520:15;;:4;:15;;;:32;;;;20545:7;:5;:7::i;:::-;20539:13;;:2;:13;;;20520:32;20512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20595:7;;20464:149;20246:374;;;;:::o;16825:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:468::-;5514:6;5522;5571:2;5559:9;5550:7;5546:23;5542:32;5539:119;;;5577:79;;:::i;:::-;5539:119;5697:1;5722:53;5767:7;5758:6;5747:9;5743:22;5722:53;:::i;:::-;5712:63;;5668:117;5824:2;5850:50;5892:7;5883:6;5872:9;5868:22;5850:50;:::i;:::-;5840:60;;5795:115;5449:468;;;;;:::o;5923:329::-;5982:6;6031:2;6019:9;6010:7;6006:23;6002:32;5999:119;;;6037:79;;:::i;:::-;5999:119;6157:1;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6128:117;5923:329;;;;:::o;6258:118::-;6345:24;6363:5;6345:24;:::i;:::-;6340:3;6333:37;6258:118;;:::o;6382:222::-;6475:4;6513:2;6502:9;6498:18;6490:26;;6526:71;6594:1;6583:9;6579:17;6570:6;6526:71;:::i;:::-;6382:222;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:227::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:10;7806:2;7798:6;7794:15;7787:35;7602:227;:::o;7835:366::-;7977:3;7998:67;8062:2;8057:3;7998:67;:::i;:::-;7991:74;;8074:93;8163:3;8074:93;:::i;:::-;8192:2;8187:3;8183:12;8176:19;;7835:366;;;:::o;8207:419::-;8373:4;8411:2;8400:9;8396:18;8388:26;;8460:9;8454:4;8450:20;8446:1;8435:9;8431:17;8424:47;8488:131;8614:4;8488:131;:::i;:::-;8480:139;;8207:419;;;:::o;8632:180::-;8680:77;8677:1;8670:88;8777:4;8774:1;8767:15;8801:4;8798:1;8791:15;8818:191;8858:3;8877:20;8895:1;8877:20;:::i;:::-;8872:25;;8911:20;8929:1;8911:20;:::i;:::-;8906:25;;8954:1;8951;8947:9;8940:16;;8975:3;8972:1;8969:10;8966:36;;;8982:18;;:::i;:::-;8966:36;8818:191;;;;:::o;9015:224::-;9155:34;9151:1;9143:6;9139:14;9132:58;9224:7;9219:2;9211:6;9207:15;9200:32;9015:224;:::o;9245:366::-;9387:3;9408:67;9472:2;9467:3;9408:67;:::i;:::-;9401:74;;9484:93;9573:3;9484:93;:::i;:::-;9602:2;9597:3;9593:12;9586:19;;9245:366;;;:::o;9617:419::-;9783:4;9821:2;9810:9;9806:18;9798:26;;9870:9;9864:4;9860:20;9856:1;9845:9;9841:17;9834:47;9898:131;10024:4;9898:131;:::i;:::-;9890:139;;9617:419;;;:::o;10042:225::-;10182:34;10178:1;10170:6;10166:14;10159:58;10251:8;10246:2;10238:6;10234:15;10227:33;10042:225;:::o;10273:366::-;10415:3;10436:67;10500:2;10495:3;10436:67;:::i;:::-;10429:74;;10512:93;10601:3;10512:93;:::i;:::-;10630:2;10625:3;10621:12;10614:19;;10273:366;;;:::o;10645:419::-;10811:4;10849:2;10838:9;10834:18;10826:26;;10898:9;10892:4;10888:20;10884:1;10873:9;10869:17;10862:47;10926:131;11052:4;10926:131;:::i;:::-;10918:139;;10645:419;;;:::o;11070:223::-;11210:34;11206:1;11198:6;11194:14;11187:58;11279:6;11274:2;11266:6;11262:15;11255:31;11070:223;:::o;11299:366::-;11441:3;11462:67;11526:2;11521:3;11462:67;:::i;:::-;11455:74;;11538:93;11627:3;11538:93;:::i;:::-;11656:2;11651:3;11647:12;11640:19;;11299:366;;;:::o;11671:419::-;11837:4;11875:2;11864:9;11860:18;11852:26;;11924:9;11918:4;11914:20;11910:1;11899:9;11895:17;11888:47;11952:131;12078:4;11952:131;:::i;:::-;11944:139;;11671:419;;;:::o;12096:221::-;12236:34;12232:1;12224:6;12220:14;12213:58;12305:4;12300:2;12292:6;12288:15;12281:29;12096:221;:::o;12323:366::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:419::-;12861:4;12899:2;12888:9;12884:18;12876:26;;12948:9;12942:4;12938:20;12934:1;12923:9;12919:17;12912:47;12976:131;13102:4;12976:131;:::i;:::-;12968:139;;12695:419;;;:::o;13120:224::-;13260:34;13256:1;13248:6;13244:14;13237:58;13329:7;13324:2;13316:6;13312:15;13305:32;13120:224;:::o;13350:366::-;13492:3;13513:67;13577:2;13572:3;13513:67;:::i;:::-;13506:74;;13589:93;13678:3;13589:93;:::i;:::-;13707:2;13702:3;13698:12;13691:19;;13350:366;;;:::o;13722:419::-;13888:4;13926:2;13915:9;13911:18;13903:26;;13975:9;13969:4;13965:20;13961:1;13950:9;13946:17;13939:47;14003:131;14129:4;14003:131;:::i;:::-;13995:139;;13722:419;;;:::o;14147:222::-;14287:34;14283:1;14275:6;14271:14;14264:58;14356:5;14351:2;14343:6;14339:15;14332:30;14147:222;:::o;14375:366::-;14517:3;14538:67;14602:2;14597:3;14538:67;:::i;:::-;14531:74;;14614:93;14703:3;14614:93;:::i;:::-;14732:2;14727:3;14723:12;14716:19;;14375:366;;;:::o;14747:419::-;14913:4;14951:2;14940:9;14936:18;14928:26;;15000:9;14994:4;14990:20;14986:1;14975:9;14971:17;14964:47;15028:131;15154:4;15028:131;:::i;:::-;15020:139;;14747:419;;;:::o;15172:225::-;15312:34;15308:1;15300:6;15296:14;15289:58;15381:8;15376:2;15368:6;15364:15;15357:33;15172:225;:::o;15403:366::-;15545:3;15566:67;15630:2;15625:3;15566:67;:::i;:::-;15559:74;;15642:93;15731:3;15642:93;:::i;:::-;15760:2;15755:3;15751:12;15744:19;;15403:366;;;:::o;15775:419::-;15941:4;15979:2;15968:9;15964:18;15956:26;;16028:9;16022:4;16018:20;16014:1;16003:9;15999:17;15992:47;16056:131;16182:4;16056:131;:::i;:::-;16048:139;;15775:419;;;:::o;16200:182::-;16340:34;16336:1;16328:6;16324:14;16317:58;16200:182;:::o;16388:366::-;16530:3;16551:67;16615:2;16610:3;16551:67;:::i;:::-;16544:74;;16627:93;16716:3;16627:93;:::i;:::-;16745:2;16740:3;16736:12;16729:19;;16388:366;;;:::o;16760:419::-;16926:4;16964:2;16953:9;16949:18;16941:26;;17013:9;17007:4;17003:20;16999:1;16988:9;16984:17;16977:47;17041:131;17167:4;17041:131;:::i;:::-;17033:139;;16760:419;;;:::o;17185:220::-;17325:34;17321:1;17313:6;17309:14;17302:58;17394:3;17389:2;17381:6;17377:15;17370:28;17185:220;:::o;17411:366::-;17553:3;17574:67;17638:2;17633:3;17574:67;:::i;:::-;17567:74;;17650:93;17739:3;17650:93;:::i;:::-;17768:2;17763:3;17759:12;17752:19;;17411:366;;;:::o;17783:419::-;17949:4;17987:2;17976:9;17972:18;17964:26;;18036:9;18030:4;18026:20;18022:1;18011:9;18007:17;18000:47;18064:131;18190:4;18064:131;:::i;:::-;18056:139;;17783:419;;;:::o;18208:221::-;18348:34;18344:1;18336:6;18332:14;18325:58;18417:4;18412:2;18404:6;18400:15;18393:29;18208:221;:::o;18435:366::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:419::-;18973:4;19011:2;19000:9;18996:18;18988:26;;19060:9;19054:4;19050:20;19046:1;19035:9;19031:17;19024:47;19088:131;19214:4;19088:131;:::i;:::-;19080:139;;18807:419;;;:::o;19232:194::-;19272:4;19292:20;19310:1;19292:20;:::i;:::-;19287:25;;19326:20;19344:1;19326:20;:::i;:::-;19321:25;;19370:1;19367;19363:9;19355:17;;19394:1;19388:4;19385:11;19382:37;;;19399:18;;:::i;:::-;19382:37;19232:194;;;;:::o;19432:169::-;19572:21;19568:1;19560:6;19556:14;19549:45;19432:169;:::o;19607:366::-;19749:3;19770:67;19834:2;19829:3;19770:67;:::i;:::-;19763:74;;19846:93;19935:3;19846:93;:::i;:::-;19964:2;19959:3;19955:12;19948:19;;19607:366;;;:::o;19979:419::-;20145:4;20183:2;20172:9;20168:18;20160:26;;20232:9;20226:4;20222:20;20218:1;20207:9;20203:17;20196:47;20260:131;20386:4;20260:131;:::i;:::-;20252:139;;19979:419;;;:::o;20404:173::-;20544:25;20540:1;20532:6;20528:14;20521:49;20404:173;:::o;20583:366::-;20725:3;20746:67;20810:2;20805:3;20746:67;:::i;:::-;20739:74;;20822:93;20911:3;20822:93;:::i;:::-;20940:2;20935:3;20931:12;20924:19;;20583:366;;;:::o;20955:419::-;21121:4;21159:2;21148:9;21144:18;21136:26;;21208:9;21202:4;21198:20;21194:1;21183:9;21179:17;21172:47;21236:131;21362:4;21236:131;:::i;:::-;21228:139;;20955:419;;;:::o

Swarm Source

ipfs://45d622d182d444424bd15281c54434a7b6a72a1a1fc47666aba56c974f06f7d2
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.