ETH Price: $3,433.46 (-0.26%)
Gas: 2 Gwei

Token

Bank Run (BANKRUN)
 

Overview

Max Total Supply

1,000,000,000,000 BANKRUN

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
36,570,303,554.341482585732205193 BANKRUN

Value
$0.00
0x9245cf006913290fa0ce5ad0e37cb3725d8b3625
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:
BANKRUN

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-11
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}

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

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

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

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

contract BANKRUN is Context, IERC20, IERC20Metadata, Ownable {
    // Openzeppelin variables
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // My variables
    mapping(address => bool) public isPauseExempt;
    bool isPaused;
    
    // Openzeppelin functions

    /**
     * @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() {
        // Editable
        _name = "Bank Run";
        _symbol = "BANKRUN";
        uint e_totalSupply = 1_000_000_000_000 ether;
        isPaused = false;
        // End editable

        isPauseExempt[msg.sender] = true;

        _mint(msg.sender, e_totalSupply);
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev 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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        // My implementation
        require(!isPaused || isPauseExempt[from], "Transactions are paused.");
        // End my implementation

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    // My functions

    function setPauseExempt(address account, bool value) external onlyOwner {
        isPauseExempt[account] = value;
    }
    
    function setPaused(bool value) external onlyOwner {
        isPaused = 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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPauseExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPauseExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

60806040523480156200001157600080fd5b5062000032620000266200015e60201b60201c565b6200016660201b60201c565b6040518060400160405280600881526020017f42616e6b2052756e0000000000000000000000000000000000000000000000008152506004908162000078919062000627565b506040518060400160405280600781526020017f42414e4b52554e0000000000000000000000000000000000000000000000000081525060059081620000bf919062000627565b5060006c0c9f2c9cd04674edea4000000090506000600760006101000a81548160ff0219169083151502179055506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200015733826200022a60201b60201c565b5062000829565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000293906200076f565b60405180910390fd5b620002b060008383620003a360201b60201c565b8060036000828254620002c49190620007c0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031c9190620007c0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038391906200080c565b60405180910390a36200039f60008383620003a860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042f57607f821691505b602082108103620004455762000444620003e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000470565b620004bb868362000470565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200050862000502620004fc84620004d3565b620004dd565b620004d3565b9050919050565b6000819050919050565b6200052483620004e7565b6200053c62000533826200050f565b8484546200047d565b825550505050565b600090565b6200055362000544565b6200056081848462000519565b505050565b5b8181101562000588576200057c60008262000549565b60018101905062000566565b5050565b601f821115620005d757620005a1816200044b565b620005ac8462000460565b81016020851015620005bc578190505b620005d4620005cb8562000460565b83018262000565565b50505b505050565b600082821c905092915050565b6000620005fc60001984600802620005dc565b1980831691505092915050565b6000620006178383620005e9565b9150826002028217905092915050565b6200063282620003ad565b67ffffffffffffffff8111156200064e576200064d620003b8565b5b6200065a825462000416565b620006678282856200058c565b600060209050601f8311600181146200069f57600084156200068a578287015190505b62000696858262000609565b86555062000706565b601f198416620006af866200044b565b60005b82811015620006d957848901518255600182019150602085019450602081019050620006b2565b86831015620006f95784890151620006f5601f891682620005e9565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000757601f836200070e565b915062000764826200071f565b602082019050919050565b600060208201905081810360008301526200078a8162000748565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007cd82620004d3565b9150620007da83620004d3565b9250828201905080821115620007f557620007f462000791565b5b92915050565b6200080681620004d3565b82525050565b6000602082019050620008236000830184620007fb565b92915050565b611afd80620008396000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806343afb798116100a257806395d89b411161007157806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806343afb7981461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780634294dd2a146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806316c38b3c1461015e57806318160ddd1461017a575b600080fd5b610118610384565b60405161012591906111ad565b60405180910390f35b61014860048036038101906101439190611268565b610416565b60405161015591906112c3565b60405180910390f35b6101786004803603810190610173919061130a565b610439565b005b6101826104d2565b60405161018f9190611346565b60405180910390f35b6101b260048036038101906101ad9190611361565b6104dc565b6040516101bf91906112c3565b60405180910390f35b6101d061050b565b6040516101dd91906113d0565b60405180910390f35b61020060048036038101906101fb9190611268565b610514565b60405161020d91906112c3565b60405180910390f35b610230600480360381019061022b91906113eb565b6105be565b60405161023d91906112c3565b60405180910390f35b610260600480360381019061025b9190611418565b6105de565b005b61027c600480360381019061027791906113eb565b6106b5565b6040516102899190611346565b60405180910390f35b61029a6106fe565b005b6102a4610786565b6040516102b19190611467565b60405180910390f35b6102c26107af565b6040516102cf91906111ad565b60405180910390f35b6102f260048036038101906102ed9190611268565b610841565b6040516102ff91906112c3565b60405180910390f35b610322600480360381019061031d9190611268565b61092b565b60405161032f91906112c3565b60405180910390f35b610352600480360381019061034d9190611482565b61094e565b60405161035f9190611346565b60405180910390f35b610382600480360381019061037d91906113eb565b6109d5565b005b606060048054610393906114f1565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114f1565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610acc565b905061042e818585610ad4565b600191505092915050565b610441610acc565b73ffffffffffffffffffffffffffffffffffffffff1661045f610786565b73ffffffffffffffffffffffffffffffffffffffff16146104b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ac9061156e565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6000600354905090565b6000806104e7610acc565b90506104f4858285610c9d565b6104ff858585610d29565b60019150509392505050565b60006012905090565b60008061051f610acc565b90506105b3818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ae91906115bd565b610ad4565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6105e6610acc565b73ffffffffffffffffffffffffffffffffffffffff16610604610786565b73ffffffffffffffffffffffffffffffffffffffff161461065a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106519061156e565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610706610acc565b73ffffffffffffffffffffffffffffffffffffffff16610724610786565b73ffffffffffffffffffffffffffffffffffffffff161461077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061156e565b60405180910390fd5b610784600061104f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107be906114f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea906114f1565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b60008061084c610acc565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990611663565b60405180910390fd5b61091f8286868403610ad4565b60019250505092915050565b600080610936610acc565b9050610943818585610d29565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109dd610acc565b73ffffffffffffffffffffffffffffffffffffffff166109fb610786565b73ffffffffffffffffffffffffffffffffffffffff1614610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a489061156e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906116f5565b60405180910390fd5b610ac98161104f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611787565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990611819565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c909190611346565b60405180910390a3505050565b6000610ca9848461094e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d235781811015610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90611885565b60405180910390fd5b610d228484848403610ad4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906119a9565b60405180910390fd5b610e12838383611113565b600760009054906101000a900460ff161580610e775750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611a15565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490611aa7565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd291906115bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110369190611346565b60405180910390a3611049848484611118565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561115757808201518184015260208101905061113c565b60008484015250505050565b6000601f19601f8301169050919050565b600061117f8261111d565b6111898185611128565b9350611199818560208601611139565b6111a281611163565b840191505092915050565b600060208201905081810360008301526111c78184611174565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ff826111d4565b9050919050565b61120f816111f4565b811461121a57600080fd5b50565b60008135905061122c81611206565b92915050565b6000819050919050565b61124581611232565b811461125057600080fd5b50565b6000813590506112628161123c565b92915050565b6000806040838503121561127f5761127e6111cf565b5b600061128d8582860161121d565b925050602061129e85828601611253565b9150509250929050565b60008115159050919050565b6112bd816112a8565b82525050565b60006020820190506112d860008301846112b4565b92915050565b6112e7816112a8565b81146112f257600080fd5b50565b600081359050611304816112de565b92915050565b6000602082840312156113205761131f6111cf565b5b600061132e848285016112f5565b91505092915050565b61134081611232565b82525050565b600060208201905061135b6000830184611337565b92915050565b60008060006060848603121561137a576113796111cf565b5b60006113888682870161121d565b93505060206113998682870161121d565b92505060406113aa86828701611253565b9150509250925092565b600060ff82169050919050565b6113ca816113b4565b82525050565b60006020820190506113e560008301846113c1565b92915050565b600060208284031215611401576114006111cf565b5b600061140f8482850161121d565b91505092915050565b6000806040838503121561142f5761142e6111cf565b5b600061143d8582860161121d565b925050602061144e858286016112f5565b9150509250929050565b611461816111f4565b82525050565b600060208201905061147c6000830184611458565b92915050565b60008060408385031215611499576114986111cf565b5b60006114a78582860161121d565b92505060206114b88582860161121d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150957607f821691505b60208210810361151c5761151b6114c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611558602083611128565b915061156382611522565b602082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115c882611232565b91506115d383611232565b92508282019050808211156115eb576115ea61158e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061164d602583611128565b9150611658826115f1565b604082019050919050565b6000602082019050818103600083015261167c81611640565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116df602683611128565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611771602483611128565b915061177c82611715565b604082019050919050565b600060208201905081810360008301526117a081611764565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611803602283611128565b915061180e826117a7565b604082019050919050565b60006020820190508181036000830152611832816117f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061186f601d83611128565b915061187a82611839565b602082019050919050565b6000602082019050818103600083015261189e81611862565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611901602583611128565b915061190c826118a5565b604082019050919050565b60006020820190508181036000830152611930816118f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611993602383611128565b915061199e82611937565b604082019050919050565b600060208201905081810360008301526119c281611986565b9050919050565b7f5472616e73616374696f6e7320617265207061757365642e0000000000000000600082015250565b60006119ff601883611128565b9150611a0a826119c9565b602082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a91602683611128565b9150611a9c82611a35565b604082019050919050565b60006020820190508181036000830152611ac081611a84565b905091905056fea264697066735822122075c2455da44cc82dd10ec025982bcbbfcd4857d63357e853e7579cab3fcbf0e764736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806343afb798116100a257806395d89b411161007157806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806343afb7981461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780634294dd2a146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806316c38b3c1461015e57806318160ddd1461017a575b600080fd5b610118610384565b60405161012591906111ad565b60405180910390f35b61014860048036038101906101439190611268565b610416565b60405161015591906112c3565b60405180910390f35b6101786004803603810190610173919061130a565b610439565b005b6101826104d2565b60405161018f9190611346565b60405180910390f35b6101b260048036038101906101ad9190611361565b6104dc565b6040516101bf91906112c3565b60405180910390f35b6101d061050b565b6040516101dd91906113d0565b60405180910390f35b61020060048036038101906101fb9190611268565b610514565b60405161020d91906112c3565b60405180910390f35b610230600480360381019061022b91906113eb565b6105be565b60405161023d91906112c3565b60405180910390f35b610260600480360381019061025b9190611418565b6105de565b005b61027c600480360381019061027791906113eb565b6106b5565b6040516102899190611346565b60405180910390f35b61029a6106fe565b005b6102a4610786565b6040516102b19190611467565b60405180910390f35b6102c26107af565b6040516102cf91906111ad565b60405180910390f35b6102f260048036038101906102ed9190611268565b610841565b6040516102ff91906112c3565b60405180910390f35b610322600480360381019061031d9190611268565b61092b565b60405161032f91906112c3565b60405180910390f35b610352600480360381019061034d9190611482565b61094e565b60405161035f9190611346565b60405180910390f35b610382600480360381019061037d91906113eb565b6109d5565b005b606060048054610393906114f1565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114f1565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610acc565b905061042e818585610ad4565b600191505092915050565b610441610acc565b73ffffffffffffffffffffffffffffffffffffffff1661045f610786565b73ffffffffffffffffffffffffffffffffffffffff16146104b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ac9061156e565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6000600354905090565b6000806104e7610acc565b90506104f4858285610c9d565b6104ff858585610d29565b60019150509392505050565b60006012905090565b60008061051f610acc565b90506105b3818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ae91906115bd565b610ad4565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6105e6610acc565b73ffffffffffffffffffffffffffffffffffffffff16610604610786565b73ffffffffffffffffffffffffffffffffffffffff161461065a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106519061156e565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610706610acc565b73ffffffffffffffffffffffffffffffffffffffff16610724610786565b73ffffffffffffffffffffffffffffffffffffffff161461077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061156e565b60405180910390fd5b610784600061104f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107be906114f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea906114f1565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b60008061084c610acc565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090990611663565b60405180910390fd5b61091f8286868403610ad4565b60019250505092915050565b600080610936610acc565b9050610943818585610d29565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109dd610acc565b73ffffffffffffffffffffffffffffffffffffffff166109fb610786565b73ffffffffffffffffffffffffffffffffffffffff1614610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a489061156e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab7906116f5565b60405180910390fd5b610ac98161104f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611787565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990611819565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c909190611346565b60405180910390a3505050565b6000610ca9848461094e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d235781811015610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90611885565b60405180910390fd5b610d228484848403610ad4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906119a9565b60405180910390fd5b610e12838383611113565b600760009054906101000a900460ff161580610e775750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611a15565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490611aa7565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd291906115bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110369190611346565b60405180910390a3611049848484611118565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561115757808201518184015260208101905061113c565b60008484015250505050565b6000601f19601f8301169050919050565b600061117f8261111d565b6111898185611128565b9350611199818560208601611139565b6111a281611163565b840191505092915050565b600060208201905081810360008301526111c78184611174565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ff826111d4565b9050919050565b61120f816111f4565b811461121a57600080fd5b50565b60008135905061122c81611206565b92915050565b6000819050919050565b61124581611232565b811461125057600080fd5b50565b6000813590506112628161123c565b92915050565b6000806040838503121561127f5761127e6111cf565b5b600061128d8582860161121d565b925050602061129e85828601611253565b9150509250929050565b60008115159050919050565b6112bd816112a8565b82525050565b60006020820190506112d860008301846112b4565b92915050565b6112e7816112a8565b81146112f257600080fd5b50565b600081359050611304816112de565b92915050565b6000602082840312156113205761131f6111cf565b5b600061132e848285016112f5565b91505092915050565b61134081611232565b82525050565b600060208201905061135b6000830184611337565b92915050565b60008060006060848603121561137a576113796111cf565b5b60006113888682870161121d565b93505060206113998682870161121d565b92505060406113aa86828701611253565b9150509250925092565b600060ff82169050919050565b6113ca816113b4565b82525050565b60006020820190506113e560008301846113c1565b92915050565b600060208284031215611401576114006111cf565b5b600061140f8482850161121d565b91505092915050565b6000806040838503121561142f5761142e6111cf565b5b600061143d8582860161121d565b925050602061144e858286016112f5565b9150509250929050565b611461816111f4565b82525050565b600060208201905061147c6000830184611458565b92915050565b60008060408385031215611499576114986111cf565b5b60006114a78582860161121d565b92505060206114b88582860161121d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150957607f821691505b60208210810361151c5761151b6114c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611558602083611128565b915061156382611522565b602082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115c882611232565b91506115d383611232565b92508282019050808211156115eb576115ea61158e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061164d602583611128565b9150611658826115f1565b604082019050919050565b6000602082019050818103600083015261167c81611640565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116df602683611128565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611771602483611128565b915061177c82611715565b604082019050919050565b600060208201905081810360008301526117a081611764565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611803602283611128565b915061180e826117a7565b604082019050919050565b60006020820190508181036000830152611832816117f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061186f601d83611128565b915061187a82611839565b602082019050919050565b6000602082019050818103600083015261189e81611862565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611901602583611128565b915061190c826118a5565b604082019050919050565b60006020820190508181036000830152611930816118f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611993602383611128565b915061199e82611937565b604082019050919050565b600060208201905081810360008301526119c281611986565b9050919050565b7f5472616e73616374696f6e7320617265207061757365642e0000000000000000600082015250565b60006119ff601883611128565b9150611a0a826119c9565b602082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a91602683611128565b9150611a9c82611a35565b604082019050919050565b60006020820190508181036000830152611ac081611a84565b905091905056fea264697066735822122075c2455da44cc82dd10ec025982bcbbfcd4857d63357e853e7579cab3fcbf0e764736f6c63430008100033

Deployed Bytecode Sourcemap

5252:12323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6389:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8740:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17487:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7509:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9521:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7351:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10225:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5597:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17354:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7680:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4435:103;;;:::i;:::-;;3784:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6608:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10968:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8013:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8269:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4693:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6389:100;6443:13;6476:5;6469:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6389:100;:::o;8740:201::-;8823:4;8840:13;8856:12;:10;:12::i;:::-;8840:28;;8879:32;8888:5;8895:7;8904:6;8879:8;:32::i;:::-;8929:4;8922:11;;;8740:201;;;;:::o;17487:85::-;4015:12;:10;:12::i;:::-;4004:23;;:7;:5;:7::i;:::-;:23;;;3996:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17559:5:::1;17548:8;;:16;;;;;;;;;;;;;;;;;;17487:85:::0;:::o;7509:108::-;7570:7;7597:12;;7590:19;;7509:108;:::o;9521:295::-;9652:4;9669:15;9687:12;:10;:12::i;:::-;9669:30;;9710:38;9726:4;9732:7;9741:6;9710:15;:38::i;:::-;9759:27;9769:4;9775:2;9779:6;9759:9;:27::i;:::-;9804:4;9797:11;;;9521:295;;;;;:::o;7351:93::-;7409:5;7434:2;7427:9;;7351:93;:::o;10225:240::-;10313:4;10330:13;10346:12;:10;:12::i;:::-;10330:28;;10369:66;10378:5;10385:7;10424:10;10394:11;:18;10406:5;10394:18;;;;;;;;;;;;;;;:27;10413:7;10394:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10369:8;:66::i;:::-;10453:4;10446:11;;;10225:240;;;;:::o;5597:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;17354:121::-;4015:12;:10;:12::i;:::-;4004:23;;:7;:5;:7::i;:::-;:23;;;3996:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17462:5:::1;17437:13;:22;17451:7;17437:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;17354:121:::0;;:::o;7680:127::-;7754:7;7781:9;:18;7791:7;7781:18;;;;;;;;;;;;;;;;7774:25;;7680:127;;;:::o;4435:103::-;4015:12;:10;:12::i;:::-;4004:23;;:7;:5;:7::i;:::-;:23;;;3996:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;3784:87::-;3830:7;3857:6;;;;;;;;;;;3850:13;;3784:87;:::o;6608:104::-;6664:13;6697:7;6690:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608:104;:::o;10968:438::-;11061:4;11078:13;11094:12;:10;:12::i;:::-;11078:28;;11117:24;11144:11;:18;11156:5;11144:18;;;;;;;;;;;;;;;:27;11163:7;11144:27;;;;;;;;;;;;;;;;11117:54;;11210:15;11190:16;:35;;11182:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11303:60;11312:5;11319:7;11347:15;11328:16;:34;11303:8;:60::i;:::-;11394:4;11387:11;;;;10968:438;;;;:::o;8013:193::-;8092:4;8109:13;8125:12;:10;:12::i;:::-;8109:28;;8148;8158:5;8165:2;8169:6;8148:9;:28::i;:::-;8194:4;8187:11;;;8013:193;;;;:::o;8269:151::-;8358:7;8385:11;:18;8397:5;8385:18;;;;;;;;;;;;;;;:27;8404:7;8385:27;;;;;;;;;;;;;;;;8378:34;;8269:151;;;;:::o;4693:201::-;4015:12;:10;:12::i;:::-;4004:23;;:7;:5;:7::i;:::-;:23;;;3996:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4802:1:::1;4782:22;;:8;:22;;::::0;4774:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;93:98::-;146:7;173:10;166:17;;93:98;:::o;14750:380::-;14903:1;14886:19;;:5;:19;;;14878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14984:1;14965:21;;:7;:21;;;14957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15068:6;15038:11;:18;15050:5;15038:18;;;;;;;;;;;;;;;:27;15057:7;15038:27;;;;;;;;;;;;;;;:36;;;;15106:7;15090:32;;15099:5;15090:32;;;15115:6;15090:32;;;;;;:::i;:::-;;;;;;;;14750:380;;;:::o;15417:453::-;15552:24;15579:25;15589:5;15596:7;15579:9;:25::i;:::-;15552:52;;15639:17;15619:16;:37;15615:248;;15701:6;15681:16;:26;;15673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15785:51;15794:5;15801:7;15829:6;15810:16;:25;15785:8;:51::i;:::-;15615:248;15541:329;15417:453;;;:::o;11885:817::-;12032:1;12016:18;;:4;:18;;;12008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12109:1;12095:16;;:2;:16;;;12087:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12164:38;12185:4;12191:2;12195:6;12164:20;:38::i;:::-;12254:8;;;;;;;;;;;12253:9;:32;;;;12266:13;:19;12280:4;12266:19;;;;;;;;;;;;;;;;;;;;;;;;;12253:32;12245:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;12361:19;12383:9;:15;12393:4;12383:15;;;;;;;;;;;;;;;;12361:37;;12432:6;12417:11;:21;;12409:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12549:6;12535:11;:20;12517:9;:15;12527:4;12517:15;;;;;;;;;;;;;;;:38;;;;12594:6;12577:9;:13;12587:2;12577:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12633:2;12618:26;;12627:4;12618:26;;;12637:6;12618:26;;;;;;:::i;:::-;;;;;;;;12657:37;12677:4;12683:2;12687:6;12657:19;:37::i;:::-;11997:705;11885:817;;;:::o;5054:191::-;5128:16;5147:6;;;;;;;;;;;5128:25;;5173:8;5164:6;;:17;;;;;;;;;;;;;;;;;;5228:8;5197:40;;5218:8;5197:40;;;;;;;;;;;;5117:128;5054:191;:::o;16470:125::-;;;;:::o;17199: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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:323::-;3763:6;3812:2;3800:9;3791:7;3787:23;3783:32;3780:119;;;3818:79;;:::i;:::-;3780:119;3938:1;3963:50;4005:7;3996:6;3985:9;3981:22;3963:50;:::i;:::-;3953:60;;3909:114;3707:323;;;;:::o;4036:118::-;4123:24;4141:5;4123:24;:::i;:::-;4118:3;4111:37;4036:118;;:::o;4160:222::-;4253:4;4291:2;4280:9;4276:18;4268:26;;4304:71;4372:1;4361:9;4357:17;4348:6;4304:71;:::i;:::-;4160:222;;;;:::o;4388:619::-;4465:6;4473;4481;4530:2;4518:9;4509:7;4505:23;4501:32;4498:119;;;4536:79;;:::i;:::-;4498:119;4656:1;4681:53;4726:7;4717:6;4706:9;4702:22;4681:53;:::i;:::-;4671:63;;4627:117;4783:2;4809:53;4854:7;4845:6;4834:9;4830:22;4809:53;:::i;:::-;4799:63;;4754:118;4911:2;4937:53;4982:7;4973:6;4962:9;4958:22;4937:53;:::i;:::-;4927:63;;4882:118;4388:619;;;;;:::o;5013:86::-;5048:7;5088:4;5081:5;5077:16;5066:27;;5013:86;;;:::o;5105:112::-;5188:22;5204:5;5188:22;:::i;:::-;5183:3;5176:35;5105:112;;:::o;5223:214::-;5312:4;5350:2;5339:9;5335:18;5327:26;;5363:67;5427:1;5416:9;5412:17;5403:6;5363:67;:::i;:::-;5223:214;;;;:::o;5443:329::-;5502:6;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5443:329;;;;:::o;5778:468::-;5843:6;5851;5900:2;5888:9;5879:7;5875:23;5871:32;5868:119;;;5906:79;;:::i;:::-;5868:119;6026:1;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5997:117;6153:2;6179:50;6221:7;6212:6;6201:9;6197:22;6179:50;:::i;:::-;6169:60;;6124:115;5778:468;;;;;:::o;6252:118::-;6339:24;6357:5;6339:24;:::i;:::-;6334:3;6327:37;6252:118;;:::o;6376:222::-;6469:4;6507:2;6496:9;6492:18;6484:26;;6520:71;6588:1;6577:9;6573:17;6564:6;6520:71;:::i;:::-;6376:222;;;;:::o;6604:474::-;6672:6;6680;6729:2;6717:9;6708:7;6704:23;6700:32;6697:119;;;6735:79;;:::i;:::-;6697:119;6855:1;6880:53;6925:7;6916:6;6905:9;6901:22;6880:53;:::i;:::-;6870:63;;6826:117;6982:2;7008:53;7053:7;7044:6;7033:9;7029:22;7008:53;:::i;:::-;6998:63;;6953:118;6604:474;;;;;:::o;7084:180::-;7132:77;7129:1;7122:88;7229:4;7226:1;7219:15;7253:4;7250:1;7243:15;7270:320;7314:6;7351:1;7345:4;7341:12;7331:22;;7398:1;7392:4;7388:12;7419:18;7409:81;;7475:4;7467:6;7463:17;7453:27;;7409:81;7537:2;7529:6;7526:14;7506:18;7503:38;7500:84;;7556:18;;:::i;:::-;7500:84;7321:269;7270:320;;;:::o;7596:182::-;7736:34;7732:1;7724:6;7720:14;7713:58;7596:182;:::o;7784:366::-;7926:3;7947:67;8011:2;8006:3;7947:67;:::i;:::-;7940:74;;8023:93;8112:3;8023:93;:::i;:::-;8141:2;8136:3;8132:12;8125:19;;7784:366;;;:::o;8156:419::-;8322:4;8360:2;8349:9;8345:18;8337:26;;8409:9;8403:4;8399:20;8395:1;8384:9;8380:17;8373:47;8437:131;8563:4;8437:131;:::i;:::-;8429:139;;8156:419;;;:::o;8581:180::-;8629:77;8626:1;8619:88;8726:4;8723:1;8716:15;8750:4;8747:1;8740:15;8767:191;8807:3;8826:20;8844:1;8826:20;:::i;:::-;8821:25;;8860:20;8878:1;8860:20;:::i;:::-;8855:25;;8903:1;8900;8896:9;8889:16;;8924:3;8921:1;8918:10;8915:36;;;8931:18;;:::i;:::-;8915:36;8767:191;;;;:::o;8964:224::-;9104:34;9100:1;9092:6;9088:14;9081:58;9173:7;9168:2;9160:6;9156:15;9149:32;8964:224;:::o;9194:366::-;9336:3;9357:67;9421:2;9416:3;9357:67;:::i;:::-;9350:74;;9433:93;9522:3;9433:93;:::i;:::-;9551:2;9546:3;9542:12;9535:19;;9194:366;;;:::o;9566:419::-;9732:4;9770:2;9759:9;9755:18;9747:26;;9819:9;9813:4;9809:20;9805:1;9794:9;9790:17;9783:47;9847:131;9973:4;9847:131;:::i;:::-;9839:139;;9566:419;;;:::o;9991:225::-;10131:34;10127:1;10119:6;10115:14;10108:58;10200:8;10195:2;10187:6;10183:15;10176:33;9991:225;:::o;10222:366::-;10364:3;10385:67;10449:2;10444:3;10385:67;:::i;:::-;10378:74;;10461:93;10550:3;10461:93;:::i;:::-;10579:2;10574:3;10570:12;10563:19;;10222:366;;;:::o;10594:419::-;10760:4;10798:2;10787:9;10783:18;10775:26;;10847:9;10841:4;10837:20;10833:1;10822:9;10818:17;10811:47;10875:131;11001:4;10875:131;:::i;:::-;10867:139;;10594:419;;;:::o;11019:223::-;11159:34;11155:1;11147:6;11143:14;11136:58;11228:6;11223:2;11215:6;11211:15;11204:31;11019:223;:::o;11248:366::-;11390:3;11411:67;11475:2;11470:3;11411:67;:::i;:::-;11404:74;;11487:93;11576:3;11487:93;:::i;:::-;11605:2;11600:3;11596:12;11589:19;;11248:366;;;:::o;11620:419::-;11786:4;11824:2;11813:9;11809:18;11801:26;;11873:9;11867:4;11863:20;11859:1;11848:9;11844:17;11837:47;11901:131;12027:4;11901:131;:::i;:::-;11893:139;;11620:419;;;:::o;12045:221::-;12185:34;12181:1;12173:6;12169:14;12162:58;12254:4;12249:2;12241:6;12237:15;12230:29;12045:221;:::o;12272:366::-;12414:3;12435:67;12499:2;12494:3;12435:67;:::i;:::-;12428:74;;12511:93;12600:3;12511:93;:::i;:::-;12629:2;12624:3;12620:12;12613:19;;12272:366;;;:::o;12644:419::-;12810:4;12848:2;12837:9;12833:18;12825:26;;12897:9;12891:4;12887:20;12883:1;12872:9;12868:17;12861:47;12925:131;13051:4;12925:131;:::i;:::-;12917:139;;12644:419;;;:::o;13069:179::-;13209:31;13205:1;13197:6;13193:14;13186:55;13069:179;:::o;13254:366::-;13396:3;13417:67;13481:2;13476:3;13417:67;:::i;:::-;13410:74;;13493:93;13582:3;13493:93;:::i;:::-;13611:2;13606:3;13602:12;13595:19;;13254:366;;;:::o;13626:419::-;13792:4;13830:2;13819:9;13815:18;13807:26;;13879:9;13873:4;13869:20;13865:1;13854:9;13850:17;13843:47;13907:131;14033:4;13907:131;:::i;:::-;13899:139;;13626:419;;;:::o;14051:224::-;14191:34;14187:1;14179:6;14175:14;14168:58;14260:7;14255:2;14247:6;14243:15;14236:32;14051:224;:::o;14281:366::-;14423:3;14444:67;14508:2;14503:3;14444:67;:::i;:::-;14437:74;;14520:93;14609:3;14520:93;:::i;:::-;14638:2;14633:3;14629:12;14622:19;;14281:366;;;:::o;14653:419::-;14819:4;14857:2;14846:9;14842:18;14834:26;;14906:9;14900:4;14896:20;14892:1;14881:9;14877:17;14870:47;14934:131;15060:4;14934:131;:::i;:::-;14926:139;;14653:419;;;:::o;15078:222::-;15218:34;15214:1;15206:6;15202:14;15195:58;15287:5;15282:2;15274:6;15270:15;15263:30;15078:222;:::o;15306:366::-;15448:3;15469:67;15533:2;15528:3;15469:67;:::i;:::-;15462:74;;15545:93;15634:3;15545:93;:::i;:::-;15663:2;15658:3;15654:12;15647:19;;15306:366;;;:::o;15678:419::-;15844:4;15882:2;15871:9;15867:18;15859:26;;15931:9;15925:4;15921:20;15917:1;15906:9;15902:17;15895:47;15959:131;16085:4;15959:131;:::i;:::-;15951:139;;15678:419;;;:::o;16103:174::-;16243:26;16239:1;16231:6;16227:14;16220:50;16103:174;:::o;16283:366::-;16425:3;16446:67;16510:2;16505:3;16446:67;:::i;:::-;16439:74;;16522:93;16611:3;16522:93;:::i;:::-;16640:2;16635:3;16631:12;16624:19;;16283:366;;;:::o;16655:419::-;16821:4;16859:2;16848:9;16844:18;16836:26;;16908:9;16902:4;16898:20;16894:1;16883:9;16879:17;16872:47;16936:131;17062:4;16936:131;:::i;:::-;16928:139;;16655:419;;;:::o;17080:225::-;17220:34;17216:1;17208:6;17204:14;17197:58;17289:8;17284:2;17276:6;17272:15;17265:33;17080:225;:::o;17311:366::-;17453:3;17474:67;17538:2;17533:3;17474:67;:::i;:::-;17467:74;;17550:93;17639:3;17550:93;:::i;:::-;17668:2;17663:3;17659:12;17652:19;;17311:366;;;:::o;17683:419::-;17849:4;17887:2;17876:9;17872:18;17864:26;;17936:9;17930:4;17926:20;17922:1;17911:9;17907:17;17900:47;17964:131;18090:4;17964:131;:::i;:::-;17956:139;;17683:419;;;:::o

Swarm Source

ipfs://75c2455da44cc82dd10ec025982bcbbfcd4857d63357e853e7579cab3fcbf0e7
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.