ETH Price: $3,567.13 (+8.18%)

Token

Klub Coin (KLUB)
 

Overview

Max Total Supply

1 KLUB

Holders

1 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Klub Coin: Deployer
Balance
1 KLUB

Value
$0.00
0x3fd49b634900d00b0160bf574fa71bf863513449
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:
KlubCoin

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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}.
     *
     * 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) {
        _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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * 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) {
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
            unchecked {
                _approve(sender, _msgSender(), currentAllowance - amount);
            }
        }

        _transfer(sender, recipient, 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: KlubCoin.sol


pragma solidity ^0.8.11;


contract KlubCoin is ERC20 {
    address public admin;
    constructor() ERC20('Klub Coin', 'KLUB') {
        _mint(msg.sender, 1000000000 * 10 ** 18);
        admin = msg.sender;
    }

    function mint(address to, uint amount) external {
            require(msg.sender == admin, 'only admin');
            _mint(to, amount);
        }

        function burn(uint amount) external {
            require(msg.sender == admin, 'only admin');
            _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4b6c756220436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4c5542000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200029a565b508060049080519060200190620000af9291906200029a565b505050620000d0336b033b2e3c9fd0803ce80000006200011760201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200018a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018190620003ab565b60405180910390fd5b6200019e600083836200029060201b60201c565b8060026000828254620001b2919062000406565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000209919062000406565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000270919062000474565b60405180910390a36200028c600083836200029560201b60201c565b5050565b505050565b505050565b828054620002a890620004c0565b90600052602060002090601f016020900481019282620002cc576000855562000318565b82601f10620002e757805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000317578251825591602001919060010190620002fa565b5b5090506200032791906200032b565b5090565b5b80821115620003465760008160009055506001016200032c565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000393601f836200034a565b9150620003a0826200035b565b602082019050919050565b60006020820190508181036000830152620003c68162000384565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200041382620003cd565b91506200042083620003cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004585762000457620003d7565b5b828201905092915050565b6200046e81620003cd565b82525050565b60006020820190506200048b600083018462000463565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d957607f821691505b60208210811415620004f057620004ef62000491565b5b50919050565b611b8780620005066000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063f851a440146102ef576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190611194565b60405180910390f35b6101276004803603810190610122919061124f565b61039f565b60405161013491906112aa565b60405180910390f35b6101456103bd565b60405161015291906112d4565b60405180910390f35b610175600480360381019061017091906112ef565b6103c7565b60405161018291906112aa565b60405180910390f35b6101936104e6565b6040516101a0919061135e565b60405180910390f35b6101c360048036038101906101be919061124f565b6104ef565b6040516101d091906112aa565b60405180910390f35b6101f360048036038101906101ee919061124f565b61059b565b005b61020f600480360381019061020a9190611379565b610639565b005b61022b600480360381019061022691906113a6565b6106d6565b60405161023891906112d4565b60405180910390f35b61024961071e565b6040516102569190611194565b60405180910390f35b6102796004803603810190610274919061124f565b6107b0565b60405161028691906112aa565b60405180910390f35b6102a960048036038101906102a4919061124f565b61089b565b6040516102b691906112aa565b60405180910390f35b6102d960048036038101906102d491906113d3565b6108b9565b6040516102e691906112d4565b60405180910390f35b6102f7610940565b6040516103049190611422565b60405180910390f35b60606003805461031c9061146c565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061146c565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610966565b848461096e565b6001905092915050565b6000600254905090565b600080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610413610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146104cf57828110156104ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b190611510565b60405180910390fd5b6104ce856104c6610966565b85840361096e565b5b6104da858585610b39565b60019150509392505050565b60006012905090565b60006105916104fc610966565b84846001600061050a610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461058c919061155f565b61096e565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461062b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062290611601565b60405180910390fd5b6106358282610dba565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090611601565b60405180910390fd5b6106d33382610f1a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461072d9061146c565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061146c565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b600080600160006107bf610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611693565b60405180910390fd5b610890610887610966565b8585840361096e565b600191505092915050565b60006108af6108a8610966565b8484610b39565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590611725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906117b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2c91906112d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906118db565b60405180910390fd5b610c248383836110f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca19061196d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d3d919061155f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610da191906112d4565b60405180910390a3610db48484846110f6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906119d9565b60405180910390fd5b610e36600083836110f1565b8060026000828254610e48919061155f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9d919061155f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0291906112d4565b60405180910390a3610f16600083836110f6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190611a6b565b60405180910390fd5b610f96826000836110f1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611afd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110739190611b1d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d891906112d4565b60405180910390a36110ec836000846110f6565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561113557808201518184015260208101905061111a565b83811115611144576000848401525b50505050565b6000601f19601f8301169050919050565b6000611166826110fb565b6111708185611106565b9350611180818560208601611117565b6111898161114a565b840191505092915050565b600060208201905081810360008301526111ae818461115b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111e6826111bb565b9050919050565b6111f6816111db565b811461120157600080fd5b50565b600081359050611213816111ed565b92915050565b6000819050919050565b61122c81611219565b811461123757600080fd5b50565b60008135905061124981611223565b92915050565b60008060408385031215611266576112656111b6565b5b600061127485828601611204565b92505060206112858582860161123a565b9150509250929050565b60008115159050919050565b6112a48161128f565b82525050565b60006020820190506112bf600083018461129b565b92915050565b6112ce81611219565b82525050565b60006020820190506112e960008301846112c5565b92915050565b600080600060608486031215611308576113076111b6565b5b600061131686828701611204565b935050602061132786828701611204565b92505060406113388682870161123a565b9150509250925092565b600060ff82169050919050565b61135881611342565b82525050565b6000602082019050611373600083018461134f565b92915050565b60006020828403121561138f5761138e6111b6565b5b600061139d8482850161123a565b91505092915050565b6000602082840312156113bc576113bb6111b6565b5b60006113ca84828501611204565b91505092915050565b600080604083850312156113ea576113e96111b6565b5b60006113f885828601611204565b925050602061140985828601611204565b9150509250929050565b61141c816111db565b82525050565b60006020820190506114376000830184611413565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148457607f821691505b602082108114156114985761149761143d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114fa602883611106565b91506115058261149e565b604082019050919050565b60006020820190508181036000830152611529816114ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156a82611219565b915061157583611219565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115aa576115a9611530565b5b828201905092915050565b7f6f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b60006115eb600a83611106565b91506115f6826115b5565b602082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061167d602583611106565b915061168882611621565b604082019050919050565b600060208201905081810360008301526116ac81611670565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170f602483611106565b915061171a826116b3565b604082019050919050565b6000602082019050818103600083015261173e81611702565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a1602283611106565b91506117ac82611745565b604082019050919050565b600060208201905081810360008301526117d081611794565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611833602583611106565b915061183e826117d7565b604082019050919050565b6000602082019050818103600083015261186281611826565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c5602383611106565b91506118d082611869565b604082019050919050565b600060208201905081810360008301526118f4816118b8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611957602683611106565b9150611962826118fb565b604082019050919050565b600060208201905081810360008301526119868161194a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119c3601f83611106565b91506119ce8261198d565b602082019050919050565b600060208201905081810360008301526119f2816119b6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a55602183611106565b9150611a60826119f9565b604082019050919050565b60006020820190508181036000830152611a8481611a48565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae7602283611106565b9150611af282611a8b565b604082019050919050565b60006020820190508181036000830152611b1681611ada565b9050919050565b6000611b2882611219565b9150611b3383611219565b925082821015611b4657611b45611530565b5b82820390509291505056fea26469706673582212200a709c80ff93fe95bf3b4f824dfbb48b895bd87ea98040f38cbf944340ba554464736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063f851a440146102ef576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190611194565b60405180910390f35b6101276004803603810190610122919061124f565b61039f565b60405161013491906112aa565b60405180910390f35b6101456103bd565b60405161015291906112d4565b60405180910390f35b610175600480360381019061017091906112ef565b6103c7565b60405161018291906112aa565b60405180910390f35b6101936104e6565b6040516101a0919061135e565b60405180910390f35b6101c360048036038101906101be919061124f565b6104ef565b6040516101d091906112aa565b60405180910390f35b6101f360048036038101906101ee919061124f565b61059b565b005b61020f600480360381019061020a9190611379565b610639565b005b61022b600480360381019061022691906113a6565b6106d6565b60405161023891906112d4565b60405180910390f35b61024961071e565b6040516102569190611194565b60405180910390f35b6102796004803603810190610274919061124f565b6107b0565b60405161028691906112aa565b60405180910390f35b6102a960048036038101906102a4919061124f565b61089b565b6040516102b691906112aa565b60405180910390f35b6102d960048036038101906102d491906113d3565b6108b9565b6040516102e691906112d4565b60405180910390f35b6102f7610940565b6040516103049190611422565b60405180910390f35b60606003805461031c9061146c565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061146c565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b60006103b36103ac610966565b848461096e565b6001905092915050565b6000600254905090565b600080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610413610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146104cf57828110156104ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b190611510565b60405180910390fd5b6104ce856104c6610966565b85840361096e565b5b6104da858585610b39565b60019150509392505050565b60006012905090565b60006105916104fc610966565b84846001600061050a610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461058c919061155f565b61096e565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461062b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062290611601565b60405180910390fd5b6106358282610dba565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c090611601565b60405180910390fd5b6106d33382610f1a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461072d9061146c565b80601f01602080910402602001604051908101604052809291908181526020018280546107599061146c565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b600080600160006107bf610966565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611693565b60405180910390fd5b610890610887610966565b8585840361096e565b600191505092915050565b60006108af6108a8610966565b8484610b39565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590611725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906117b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2c91906112d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c10906118db565b60405180910390fd5b610c248383836110f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca19061196d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d3d919061155f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610da191906112d4565b60405180910390a3610db48484846110f6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906119d9565b60405180910390fd5b610e36600083836110f1565b8060026000828254610e48919061155f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9d919061155f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0291906112d4565b60405180910390a3610f16600083836110f6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190611a6b565b60405180910390fd5b610f96826000836110f1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611afd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110739190611b1d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d891906112d4565b60405180910390a36110ec836000846110f6565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561113557808201518184015260208101905061111a565b83811115611144576000848401525b50505050565b6000601f19601f8301169050919050565b6000611166826110fb565b6111708185611106565b9350611180818560208601611117565b6111898161114a565b840191505092915050565b600060208201905081810360008301526111ae818461115b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111e6826111bb565b9050919050565b6111f6816111db565b811461120157600080fd5b50565b600081359050611213816111ed565b92915050565b6000819050919050565b61122c81611219565b811461123757600080fd5b50565b60008135905061124981611223565b92915050565b60008060408385031215611266576112656111b6565b5b600061127485828601611204565b92505060206112858582860161123a565b9150509250929050565b60008115159050919050565b6112a48161128f565b82525050565b60006020820190506112bf600083018461129b565b92915050565b6112ce81611219565b82525050565b60006020820190506112e960008301846112c5565b92915050565b600080600060608486031215611308576113076111b6565b5b600061131686828701611204565b935050602061132786828701611204565b92505060406113388682870161123a565b9150509250925092565b600060ff82169050919050565b61135881611342565b82525050565b6000602082019050611373600083018461134f565b92915050565b60006020828403121561138f5761138e6111b6565b5b600061139d8482850161123a565b91505092915050565b6000602082840312156113bc576113bb6111b6565b5b60006113ca84828501611204565b91505092915050565b600080604083850312156113ea576113e96111b6565b5b60006113f885828601611204565b925050602061140985828601611204565b9150509250929050565b61141c816111db565b82525050565b60006020820190506114376000830184611413565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148457607f821691505b602082108114156114985761149761143d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114fa602883611106565b91506115058261149e565b604082019050919050565b60006020820190508181036000830152611529816114ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156a82611219565b915061157583611219565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115aa576115a9611530565b5b828201905092915050565b7f6f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b60006115eb600a83611106565b91506115f6826115b5565b602082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061167d602583611106565b915061168882611621565b604082019050919050565b600060208201905081810360008301526116ac81611670565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170f602483611106565b915061171a826116b3565b604082019050919050565b6000602082019050818103600083015261173e81611702565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a1602283611106565b91506117ac82611745565b604082019050919050565b600060208201905081810360008301526117d081611794565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611833602583611106565b915061183e826117d7565b604082019050919050565b6000602082019050818103600083015261186281611826565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c5602383611106565b91506118d082611869565b604082019050919050565b600060208201905081810360008301526118f4816118b8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611957602683611106565b9150611962826118fb565b604082019050919050565b600060208201905081810360008301526119868161194a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119c3601f83611106565b91506119ce8261198d565b602082019050919050565b600060208201905081810360008301526119f2816119b6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a55602183611106565b9150611a60826119f9565b604082019050919050565b60006020820190508181036000830152611a8481611a48565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ae7602283611106565b9150611af282611a8b565b604082019050919050565b60006020820190508181036000830152611b1681611ada565b9050919050565b6000611b2882611219565b9150611b3383611219565b925082821015611b4657611b45611530565b5b82820390509291505056fea26469706673582212200a709c80ff93fe95bf3b4f824dfbb48b895bd87ea98040f38cbf944340ba554464736f6c634300080b0033

Deployed Bytecode Sourcemap

17250:503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6867:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9207:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7987:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9969:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7829:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10951:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17448:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17609:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8158:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7086:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11669:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8498:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8736:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17284:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6867:100;6921:13;6954:5;6947:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6867:100;:::o;9207:169::-;9290:4;9307:39;9316:12;:10;:12::i;:::-;9330:7;9339:6;9307:8;:39::i;:::-;9364:4;9357:11;;9207:169;;;;:::o;7987:108::-;8048:7;8075:12;;8068:19;;7987:108;:::o;9969:573::-;10109:4;10126:24;10153:11;:19;10165:6;10153:19;;;;;;;;;;;;;;;:33;10173:12;:10;:12::i;:::-;10153:33;;;;;;;;;;;;;;;;10126:60;;10221:17;10201:16;:37;10197:265;;10283:6;10263:16;:26;;10255:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10378:57;10387:6;10395:12;:10;:12::i;:::-;10428:6;10409:16;:25;10378:8;:57::i;:::-;10197:265;10474:36;10484:6;10492:9;10503:6;10474:9;:36::i;:::-;10530:4;10523:11;;;9969:573;;;;;:::o;7829:93::-;7887:5;7912:2;7905:9;;7829:93;:::o;10951:215::-;11039:4;11056:80;11065:12;:10;:12::i;:::-;11079:7;11125:10;11088:11;:25;11100:12;:10;:12::i;:::-;11088:25;;;;;;;;;;;;;;;:34;11114:7;11088:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11056:8;:80::i;:::-;11154:4;11147:11;;10951:215;;;;:::o;17448:149::-;17533:5;;;;;;;;;;;17519:19;;:10;:19;;;17511:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;17568:17;17574:2;17578:6;17568:5;:17::i;:::-;17448:149;;:::o;17609:141::-;17682:5;;;;;;;;;;;17668:19;;:10;:19;;;17660:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;17717:25;17723:10;17735:6;17717:5;:25::i;:::-;17609:141;:::o;8158:127::-;8232:7;8259:9;:18;8269:7;8259:18;;;;;;;;;;;;;;;;8252:25;;8158:127;;;:::o;7086:104::-;7142:13;7175:7;7168:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7086:104;:::o;11669:413::-;11762:4;11779:24;11806:11;:25;11818:12;:10;:12::i;:::-;11806:25;;;;;;;;;;;;;;;:34;11832:7;11806:34;;;;;;;;;;;;;;;;11779:61;;11879:15;11859:16;:35;;11851:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11972:67;11981:12;:10;:12::i;:::-;11995:7;12023:15;12004:16;:34;11972:8;:67::i;:::-;12070:4;12063:11;;;11669:413;;;;:::o;8498:175::-;8584:4;8601:42;8611:12;:10;:12::i;:::-;8625:9;8636:6;8601:9;:42::i;:::-;8661:4;8654:11;;8498:175;;;;:::o;8736:151::-;8825:7;8852:11;:18;8864:5;8852:18;;;;;;;;;;;;;;;:27;8871:7;8852:27;;;;;;;;;;;;;;;;8845:34;;8736:151;;;;:::o;17284:20::-;;;;;;;;;;;;;:::o;732:98::-;785:7;812:10;805:17;;732:98;:::o;15353:380::-;15506:1;15489:19;;:5;:19;;;;15481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15587:1;15568:21;;:7;:21;;;;15560:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15671:6;15641:11;:18;15653:5;15641:18;;;;;;;;;;;;;;;:27;15660:7;15641:27;;;;;;;;;;;;;;;:36;;;;15709:7;15693:32;;15702:5;15693:32;;;15718:6;15693:32;;;;;;:::i;:::-;;;;;;;;15353:380;;;:::o;12572:733::-;12730:1;12712:20;;:6;:20;;;;12704:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12814:1;12793:23;;:9;:23;;;;12785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12869:47;12890:6;12898:9;12909:6;12869:20;:47::i;:::-;12929:21;12953:9;:17;12963:6;12953:17;;;;;;;;;;;;;;;;12929:41;;13006:6;12989:13;:23;;12981:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13127:6;13111:13;:22;13091:9;:17;13101:6;13091:17;;;;;;;;;;;;;;;:42;;;;13179:6;13155:9;:20;13165:9;13155:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13220:9;13203:35;;13212:6;13203:35;;;13231:6;13203:35;;;;;;:::i;:::-;;;;;;;;13251:46;13271:6;13279:9;13290:6;13251:19;:46::i;:::-;12693:612;12572:733;;;:::o;13592:399::-;13695:1;13676:21;;:7;:21;;;;13668:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13746:49;13775:1;13779:7;13788:6;13746:20;:49::i;:::-;13824:6;13808:12;;:22;;;;;;;:::i;:::-;;;;;;;;13863:6;13841:9;:18;13851:7;13841:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13906:7;13885:37;;13902:1;13885:37;;;13915:6;13885:37;;;;;;:::i;:::-;;;;;;;;13935:48;13963:1;13967:7;13976:6;13935:19;:48::i;:::-;13592:399;;:::o;14324:591::-;14427:1;14408:21;;:7;:21;;;;14400:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14480:49;14501:7;14518:1;14522:6;14480:20;:49::i;:::-;14542:22;14567:9;:18;14577:7;14567:18;;;;;;;;;;;;;;;;14542:43;;14622:6;14604:14;:24;;14596:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14741:6;14724:14;:23;14703:9;:18;14713:7;14703:18;;;;;;;;;;;;;;;:44;;;;14785:6;14769:12;;:22;;;;;;;:::i;:::-;;;;;;;;14835:1;14809:37;;14818:7;14809:37;;;14839:6;14809:37;;;;;;:::i;:::-;;;;;;;;14859:48;14879:7;14896:1;14900:6;14859:19;:48::i;:::-;14389:526;14324:591;;:::o;16333:125::-;;;;:::o;17062: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:474::-;5639:6;5647;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5949:2;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5920:118;5571:474;;;;;:::o;6051:118::-;6138:24;6156:5;6138:24;:::i;:::-;6133:3;6126:37;6051:118;;:::o;6175:222::-;6268:4;6306:2;6295:9;6291:18;6283:26;;6319:71;6387:1;6376:9;6372:17;6363:6;6319:71;:::i;:::-;6175:222;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:305;8171:3;8190:20;8208:1;8190:20;:::i;:::-;8185:25;;8224:20;8242:1;8224:20;:::i;:::-;8219:25;;8378:1;8310:66;8306:74;8303:1;8300:81;8297:107;;;8384:18;;:::i;:::-;8297:107;8428:1;8425;8421:9;8414:16;;8131:305;;;;:::o;8442:160::-;8582:12;8578:1;8570:6;8566:14;8559:36;8442:160;:::o;8608:366::-;8750:3;8771:67;8835:2;8830:3;8771:67;:::i;:::-;8764:74;;8847:93;8936:3;8847:93;:::i;:::-;8965:2;8960:3;8956:12;8949:19;;8608:366;;;:::o;8980:419::-;9146:4;9184:2;9173:9;9169:18;9161:26;;9233:9;9227:4;9223:20;9219:1;9208:9;9204:17;9197:47;9261:131;9387:4;9261:131;:::i;:::-;9253:139;;8980:419;;;:::o;9405:224::-;9545:34;9541:1;9533:6;9529:14;9522:58;9614:7;9609:2;9601:6;9597:15;9590:32;9405:224;:::o;9635:366::-;9777:3;9798:67;9862:2;9857:3;9798:67;:::i;:::-;9791:74;;9874:93;9963:3;9874:93;:::i;:::-;9992:2;9987:3;9983:12;9976:19;;9635:366;;;:::o;10007:419::-;10173:4;10211:2;10200:9;10196:18;10188:26;;10260:9;10254:4;10250:20;10246:1;10235:9;10231:17;10224:47;10288:131;10414:4;10288:131;:::i;:::-;10280:139;;10007:419;;;:::o;10432:223::-;10572:34;10568:1;10560:6;10556:14;10549:58;10641:6;10636:2;10628:6;10624:15;10617:31;10432:223;:::o;10661:366::-;10803:3;10824:67;10888:2;10883:3;10824:67;:::i;:::-;10817:74;;10900:93;10989:3;10900:93;:::i;:::-;11018:2;11013:3;11009:12;11002:19;;10661:366;;;:::o;11033:419::-;11199:4;11237:2;11226:9;11222:18;11214:26;;11286:9;11280:4;11276:20;11272:1;11261:9;11257:17;11250:47;11314:131;11440:4;11314:131;:::i;:::-;11306:139;;11033:419;;;:::o;11458:221::-;11598:34;11594:1;11586:6;11582:14;11575:58;11667:4;11662:2;11654:6;11650:15;11643:29;11458:221;:::o;11685:366::-;11827:3;11848:67;11912:2;11907:3;11848:67;:::i;:::-;11841:74;;11924:93;12013:3;11924:93;:::i;:::-;12042:2;12037:3;12033:12;12026:19;;11685:366;;;:::o;12057:419::-;12223:4;12261:2;12250:9;12246:18;12238:26;;12310:9;12304:4;12300:20;12296:1;12285:9;12281:17;12274:47;12338:131;12464:4;12338:131;:::i;:::-;12330:139;;12057:419;;;:::o;12482:224::-;12622:34;12618:1;12610:6;12606:14;12599:58;12691:7;12686:2;12678:6;12674:15;12667:32;12482:224;:::o;12712:366::-;12854:3;12875:67;12939:2;12934:3;12875:67;:::i;:::-;12868:74;;12951:93;13040:3;12951:93;:::i;:::-;13069:2;13064:3;13060:12;13053:19;;12712:366;;;:::o;13084:419::-;13250:4;13288:2;13277:9;13273:18;13265:26;;13337:9;13331:4;13327:20;13323:1;13312:9;13308:17;13301:47;13365:131;13491:4;13365:131;:::i;:::-;13357:139;;13084:419;;;:::o;13509:222::-;13649:34;13645:1;13637:6;13633:14;13626:58;13718:5;13713:2;13705:6;13701:15;13694:30;13509:222;:::o;13737:366::-;13879:3;13900:67;13964:2;13959:3;13900:67;:::i;:::-;13893:74;;13976:93;14065:3;13976:93;:::i;:::-;14094:2;14089:3;14085:12;14078:19;;13737:366;;;:::o;14109:419::-;14275:4;14313:2;14302:9;14298:18;14290:26;;14362:9;14356:4;14352:20;14348:1;14337:9;14333:17;14326:47;14390:131;14516:4;14390:131;:::i;:::-;14382:139;;14109:419;;;:::o;14534:225::-;14674:34;14670:1;14662:6;14658:14;14651:58;14743:8;14738:2;14730:6;14726:15;14719:33;14534:225;:::o;14765:366::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:419::-;15303:4;15341:2;15330:9;15326:18;15318:26;;15390:9;15384:4;15380:20;15376:1;15365:9;15361:17;15354:47;15418:131;15544:4;15418:131;:::i;:::-;15410:139;;15137:419;;;:::o;15562:181::-;15702:33;15698:1;15690:6;15686:14;15679:57;15562:181;:::o;15749:366::-;15891:3;15912:67;15976:2;15971:3;15912:67;:::i;:::-;15905:74;;15988:93;16077:3;15988:93;:::i;:::-;16106:2;16101:3;16097:12;16090:19;;15749:366;;;:::o;16121:419::-;16287:4;16325:2;16314:9;16310:18;16302:26;;16374:9;16368:4;16364:20;16360:1;16349:9;16345:17;16338:47;16402:131;16528:4;16402:131;:::i;:::-;16394:139;;16121:419;;;:::o;16546:220::-;16686:34;16682:1;16674:6;16670:14;16663:58;16755:3;16750:2;16742:6;16738:15;16731:28;16546:220;:::o;16772:366::-;16914:3;16935:67;16999:2;16994:3;16935:67;:::i;:::-;16928:74;;17011:93;17100:3;17011:93;:::i;:::-;17129:2;17124:3;17120:12;17113:19;;16772:366;;;:::o;17144:419::-;17310:4;17348:2;17337:9;17333:18;17325:26;;17397:9;17391:4;17387:20;17383:1;17372:9;17368:17;17361:47;17425:131;17551:4;17425:131;:::i;:::-;17417:139;;17144:419;;;:::o;17569:221::-;17709:34;17705:1;17697:6;17693:14;17686:58;17778:4;17773:2;17765:6;17761:15;17754:29;17569:221;:::o;17796:366::-;17938:3;17959:67;18023:2;18018:3;17959:67;:::i;:::-;17952:74;;18035:93;18124:3;18035:93;:::i;:::-;18153:2;18148:3;18144:12;18137:19;;17796:366;;;:::o;18168:419::-;18334:4;18372:2;18361:9;18357:18;18349:26;;18421:9;18415:4;18411:20;18407:1;18396:9;18392:17;18385:47;18449:131;18575:4;18449:131;:::i;:::-;18441:139;;18168:419;;;:::o;18593:191::-;18633:4;18653:20;18671:1;18653:20;:::i;:::-;18648:25;;18687:20;18705:1;18687:20;:::i;:::-;18682:25;;18726:1;18723;18720:8;18717:34;;;18731:18;;:::i;:::-;18717:34;18776:1;18773;18769:9;18761:17;;18593:191;;;;:::o

Swarm Source

ipfs://0a709c80ff93fe95bf3b4f824dfbb48b895bd87ea98040f38cbf944340ba5544
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.