ETH Price: $3,393.34 (-1.91%)
Gas: 8 Gwei

Token

Oof (OOF)
 

Overview

Max Total Supply

420,000,000,000 OOF

Holders

93

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*רנדון.eth
Balance
3,000,000,000.000000015503431841 OOF

Value
$0.00
0xccb14685183f872bd195cf1bb7d470751262923e
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:
Oof

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-13
*/

// ██████████████████████████████████████████████
// █░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█
// █░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█
// █░░▄▀░░░░░░▄▀░░█░░▄▀░░░░░░▄▀░░█░░▄▀░░░░░░░░░░█
// █░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░█████████
// █░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░░░░░█
// █░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█
// █░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░░░░░█
// █░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░█████████
// █░░▄▀░░░░░░▄▀░░█░░▄▀░░░░░░▄▀░░█░░▄▀░░█████████
// █░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░█████████
// █░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░█████████
// ██████████████████████████████████████████████

/**

Website: https://ooooooff.com/
Telegram: https://t.me/+w-PxPEBBe0U1NTI8
Twitter: https://twitter.com/oofcoineth
*/

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

pragma solidity ^0.8.0;


contract Oof is Ownable, ERC20 {
    bool public maxBuyEnabled;
    uint256 public maxBuyerAmount;
    address public uniswapPair;

    constructor() ERC20("Oof", "OOF") {
        _mint(msg.sender, 420000000000 * 10 ** decimals());
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapPair == address(0)) {
            require(from == owner() || to == owner(), "Not the owner");
            return;
        }

        if (maxBuyEnabled && from == uniswapPair) {
            require(super.balanceOf(to) + amount <= maxBuyerAmount, "Go Back");
        }
    }

    function setSettings(bool _maxBuyEnabled, address _uniswapPair, uint256 _maxBuyerAmount) external onlyOwner {
        maxBuyEnabled = _maxBuyEnabled;
        uniswapPair = _uniswapPair;
        maxBuyerAmount = _maxBuyerAmount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyerAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_maxBuyEnabled","type":"bool"},{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"uint256","name":"_maxBuyerAmount","type":"uint256"}],"name":"setSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f4f6f6600000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4f4600000000000000000000000000000000000000000000000000000000008152506200009e620000926200010b60201b60201c565b6200011360201b60201c565b8160049081620000af91906200084e565b508060059081620000c191906200084e565b5050506200010533620000d9620001d760201b60201c565b600a620000e7919062000ac5565b6461c9f36800620000f9919062000b16565b620001e060201b60201c565b62000d31565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002499062000bc2565b60405180910390fd5b62000266600083836200035960201b60201c565b80600360008282546200027a919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d2919062000be4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000339919062000c30565b60405180910390a362000355600083836200055d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200047c57620003c06200056260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004345750620004056200056260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046d9062000c9d565b60405180910390fd5b62000558565b600660009054906101000a900460ff168015620004e65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000557576007548162000506846200058b60201b620006fa1760201c565b62000512919062000be4565b111562000556576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054d9062000d0f565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065657607f821691505b6020821081036200066c576200066b6200060e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000697565b620006e2868362000697565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200072f620007296200072384620006fa565b62000704565b620006fa565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006a4565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c88162000672565b620007d38462000687565b81016020851015620007e3578190505b620007fb620007f28562000687565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b6200085982620005d4565b67ffffffffffffffff811115620008755762000874620005df565b5b6200088182546200063d565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d68662000672565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad282620006fa565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b2382620006fa565b915062000b3083620006fa565b925082820262000b4081620006fa565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf182620006fa565b915062000bfe83620006fa565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a81620006fa565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b600062000c85600d8362000b61565b915062000c928262000c4d565b602082019050919050565b6000602082019050818103600083015262000cb88162000c76565b9050919050565b7f476f204261636b00000000000000000000000000000000000000000000000000600082015250565b600062000cf760078362000b61565b915062000d048262000cbf565b602082019050919050565b6000602082019050818103600083015262000d2a8162000ce8565b9050919050565b611c878062000d416000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e5578063bcf2308414610315578063c816841b14610333578063dd62ed3e14610351578063f2fde38b1461038157610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d5578063417fd2d6146102055780634c36e70e1461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906112bf565b60405180910390f35b610153600480360381019061014e919061137a565b61042f565b60405161016091906113d5565b60405180910390f35b61017161044d565b60405161017e91906113ff565b60405180910390f35b6101a1600480360381019061019c919061141a565b610457565b6040516101ae91906113d5565b60405180910390f35b6101bf61054f565b6040516101cc9190611489565b60405180910390f35b6101ef60048036038101906101ea919061137a565b610558565b6040516101fc91906113d5565b60405180910390f35b61020d610604565b60405161021a91906113d5565b60405180910390f35b61023d600480360381019061023891906114d0565b610617565b005b61025960048036038101906102549190611523565b6106fa565b60405161026691906113ff565b60405180910390f35b610277610743565b005b6102816107cb565b60405161028e919061155f565b60405180910390f35b61029f6107f4565b6040516102ac91906112bf565b60405180910390f35b6102cf60048036038101906102ca919061137a565b610886565b6040516102dc91906113d5565b60405180910390f35b6102ff60048036038101906102fa919061137a565b610971565b60405161030c91906113d5565b60405180910390f35b61031d61098f565b60405161032a91906113ff565b60405180910390f35b61033b610995565b604051610348919061155f565b60405180910390f35b61036b6004803603810190610366919061157a565b6109bb565b60405161037891906113ff565b60405180910390f35b61039b60048036038101906103969190611523565b610a42565b005b6060600480546103ac906115e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115e9565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b39565b8484610b41565b6001905092915050565b6000600354905090565b6000610464848484610d0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104af610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105269061168c565b60405180910390fd5b6105438561053b610b39565b858403610b41565b60019150509392505050565b60006012905090565b60006105fa610565610b39565b848460026000610573610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f591906116db565b610b41565b6001905092915050565b600660009054906101000a900460ff1681565b61061f610b39565b73ffffffffffffffffffffffffffffffffffffffff1661063d6107cb565b73ffffffffffffffffffffffffffffffffffffffff1614610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a9061175b565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61074b610b39565b73ffffffffffffffffffffffffffffffffffffffff166107696107cb565b73ffffffffffffffffffffffffffffffffffffffff16146107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061175b565b60405180910390fd5b6107c96000610f8c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610803906115e9565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906115e9565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b60008060026000610895610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906117ed565b60405180910390fd5b61096661095d610b39565b85858403610b41565b600191505092915050565b600061098561097e610b39565b8484610d0a565b6001905092915050565b60075481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4a610b39565b73ffffffffffffffffffffffffffffffffffffffff16610a686107cb565b73ffffffffffffffffffffffffffffffffffffffff1614610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab59061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b249061187f565b60405180910390fd5b610b3681610f8c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906119a3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906113ff565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611ac7565b60405180910390fd5b610df3838383611050565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b59565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0f91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391906113ff565b60405180910390a3610f8684848461122a565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361115d576110ae6107cb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111957506110ea6107cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90611bc5565b60405180910390fd5b611225565b600660009054906101000a900460ff1680156111c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561122457600754816111d8846106fa565b6111e291906116db565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90611c31565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126957808201518184015260208101905061124e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112918261122f565b61129b818561123a565b93506112ab81856020860161124b565b6112b481611275565b840191505092915050565b600060208201905081810360008301526112d98184611286565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611311826112e6565b9050919050565b61132181611306565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000819050919050565b61135781611344565b811461136257600080fd5b50565b6000813590506113748161134e565b92915050565b60008060408385031215611391576113906112e1565b5b600061139f8582860161132f565b92505060206113b085828601611365565b9150509250929050565b60008115159050919050565b6113cf816113ba565b82525050565b60006020820190506113ea60008301846113c6565b92915050565b6113f981611344565b82525050565b600060208201905061141460008301846113f0565b92915050565b600080600060608486031215611433576114326112e1565b5b60006114418682870161132f565b93505060206114528682870161132f565b925050604061146386828701611365565b9150509250925092565b600060ff82169050919050565b6114838161146d565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113ba565b81146114b857600080fd5b50565b6000813590506114ca816114a4565b92915050565b6000806000606084860312156114e9576114e86112e1565b5b60006114f7868287016114bb565b93505060206115088682870161132f565b925050604061151986828701611365565b9150509250925092565b600060208284031215611539576115386112e1565b5b60006115478482850161132f565b91505092915050565b61155981611306565b82525050565b60006020820190506115746000830184611550565b92915050565b60008060408385031215611591576115906112e1565b5b600061159f8582860161132f565b92505060206115b08582860161132f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160157607f821691505b602082108103611614576116136115ba565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061167660288361123a565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e682611344565b91506116f183611344565b9250828201905080821115611709576117086116ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174560208361123a565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117d760258361123a565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061186960268361123a565b91506118748261180d565b604082019050919050565b600060208201905081810360008301526118988161185c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118fb60248361123a565b91506119068261189f565b604082019050919050565b6000602082019050818103600083015261192a816118ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061198d60228361123a565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f60258361123a565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab160238361123a565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4360268361123a565b9150611b4e82611ae7565b604082019050919050565b60006020820190508181036000830152611b7281611b36565b9050919050565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b6000611baf600d8361123a565b9150611bba82611b79565b602082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f476f204261636b00000000000000000000000000000000000000000000000000600082015250565b6000611c1b60078361123a565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea2646970667358221220f4c06531c898379c07335f05e48d1ddbb05d36d48611bc4c7f00fc30db1f02a664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e5578063bcf2308414610315578063c816841b14610333578063dd62ed3e14610351578063f2fde38b1461038157610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d5578063417fd2d6146102055780634c36e70e1461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906112bf565b60405180910390f35b610153600480360381019061014e919061137a565b61042f565b60405161016091906113d5565b60405180910390f35b61017161044d565b60405161017e91906113ff565b60405180910390f35b6101a1600480360381019061019c919061141a565b610457565b6040516101ae91906113d5565b60405180910390f35b6101bf61054f565b6040516101cc9190611489565b60405180910390f35b6101ef60048036038101906101ea919061137a565b610558565b6040516101fc91906113d5565b60405180910390f35b61020d610604565b60405161021a91906113d5565b60405180910390f35b61023d600480360381019061023891906114d0565b610617565b005b61025960048036038101906102549190611523565b6106fa565b60405161026691906113ff565b60405180910390f35b610277610743565b005b6102816107cb565b60405161028e919061155f565b60405180910390f35b61029f6107f4565b6040516102ac91906112bf565b60405180910390f35b6102cf60048036038101906102ca919061137a565b610886565b6040516102dc91906113d5565b60405180910390f35b6102ff60048036038101906102fa919061137a565b610971565b60405161030c91906113d5565b60405180910390f35b61031d61098f565b60405161032a91906113ff565b60405180910390f35b61033b610995565b604051610348919061155f565b60405180910390f35b61036b6004803603810190610366919061157a565b6109bb565b60405161037891906113ff565b60405180910390f35b61039b60048036038101906103969190611523565b610a42565b005b6060600480546103ac906115e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115e9565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b39565b8484610b41565b6001905092915050565b6000600354905090565b6000610464848484610d0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104af610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105269061168c565b60405180910390fd5b6105438561053b610b39565b858403610b41565b60019150509392505050565b60006012905090565b60006105fa610565610b39565b848460026000610573610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f591906116db565b610b41565b6001905092915050565b600660009054906101000a900460ff1681565b61061f610b39565b73ffffffffffffffffffffffffffffffffffffffff1661063d6107cb565b73ffffffffffffffffffffffffffffffffffffffff1614610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a9061175b565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61074b610b39565b73ffffffffffffffffffffffffffffffffffffffff166107696107cb565b73ffffffffffffffffffffffffffffffffffffffff16146107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061175b565b60405180910390fd5b6107c96000610f8c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610803906115e9565b80601f016020809104026020016040519081016040528092919081815260200182805461082f906115e9565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b60008060026000610895610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906117ed565b60405180910390fd5b61096661095d610b39565b85858403610b41565b600191505092915050565b600061098561097e610b39565b8484610d0a565b6001905092915050565b60075481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4a610b39565b73ffffffffffffffffffffffffffffffffffffffff16610a686107cb565b73ffffffffffffffffffffffffffffffffffffffff1614610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab59061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b249061187f565b60405180910390fd5b610b3681610f8c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906119a3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906113ff565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611ac7565b60405180910390fd5b610df3838383611050565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b59565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0f91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391906113ff565b60405180910390a3610f8684848461122a565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361115d576110ae6107cb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111957506110ea6107cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90611bc5565b60405180910390fd5b611225565b600660009054906101000a900460ff1680156111c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561122457600754816111d8846106fa565b6111e291906116db565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90611c31565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126957808201518184015260208101905061124e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112918261122f565b61129b818561123a565b93506112ab81856020860161124b565b6112b481611275565b840191505092915050565b600060208201905081810360008301526112d98184611286565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611311826112e6565b9050919050565b61132181611306565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000819050919050565b61135781611344565b811461136257600080fd5b50565b6000813590506113748161134e565b92915050565b60008060408385031215611391576113906112e1565b5b600061139f8582860161132f565b92505060206113b085828601611365565b9150509250929050565b60008115159050919050565b6113cf816113ba565b82525050565b60006020820190506113ea60008301846113c6565b92915050565b6113f981611344565b82525050565b600060208201905061141460008301846113f0565b92915050565b600080600060608486031215611433576114326112e1565b5b60006114418682870161132f565b93505060206114528682870161132f565b925050604061146386828701611365565b9150509250925092565b600060ff82169050919050565b6114838161146d565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113ba565b81146114b857600080fd5b50565b6000813590506114ca816114a4565b92915050565b6000806000606084860312156114e9576114e86112e1565b5b60006114f7868287016114bb565b93505060206115088682870161132f565b925050604061151986828701611365565b9150509250925092565b600060208284031215611539576115386112e1565b5b60006115478482850161132f565b91505092915050565b61155981611306565b82525050565b60006020820190506115746000830184611550565b92915050565b60008060408385031215611591576115906112e1565b5b600061159f8582860161132f565b92505060206115b08582860161132f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160157607f821691505b602082108103611614576116136115ba565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061167660288361123a565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e682611344565b91506116f183611344565b9250828201905080821115611709576117086116ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174560208361123a565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117d760258361123a565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061186960268361123a565b91506118748261180d565b604082019050919050565b600060208201905081810360008301526118988161185c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118fb60248361123a565b91506119068261189f565b604082019050919050565b6000602082019050818103600083015261192a816118ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061198d60228361123a565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f60258361123a565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab160238361123a565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4360268361123a565b9150611b4e82611ae7565b604082019050919050565b60006020820190508181036000830152611b7281611b36565b9050919050565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b6000611baf600d8361123a565b9150611bba82611b79565b602082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f476f204261636b00000000000000000000000000000000000000000000000000600082015250565b6000611c1b60078361123a565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea2646970667358221220f4c06531c898379c07335f05e48d1ddbb05d36d48611bc4c7f00fc30db1f02a664736f6c63430008120033

Deployed Bytecode Sourcemap

21078:936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11088:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13255:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12208:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13906:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12050:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14807:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21116:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21774:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12379:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4489:103;;;:::i;:::-;;3838:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11307:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15525:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12719:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21148:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21184:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12957:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4747:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11088:100;11142:13;11175:5;11168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11088:100;:::o;13255:169::-;13338:4;13355:39;13364:12;:10;:12::i;:::-;13378:7;13387:6;13355:8;:39::i;:::-;13412:4;13405:11;;13255:169;;;;:::o;12208:108::-;12269:7;12296:12;;12289:19;;12208:108;:::o;13906:492::-;14046:4;14063:36;14073:6;14081:9;14092:6;14063:9;:36::i;:::-;14112:24;14139:11;:19;14151:6;14139:19;;;;;;;;;;;;;;;:33;14159:12;:10;:12::i;:::-;14139:33;;;;;;;;;;;;;;;;14112:60;;14211:6;14191:16;:26;;14183:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14298:57;14307:6;14315:12;:10;:12::i;:::-;14348:6;14329:16;:25;14298:8;:57::i;:::-;14386:4;14379:11;;;13906:492;;;;;:::o;12050:93::-;12108:5;12133:2;12126:9;;12050:93;:::o;14807:215::-;14895:4;14912:80;14921:12;:10;:12::i;:::-;14935:7;14981:10;14944:11;:25;14956:12;:10;:12::i;:::-;14944:25;;;;;;;;;;;;;;;:34;14970:7;14944:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14912:8;:80::i;:::-;15010:4;15003:11;;14807:215;;;;:::o;21116:25::-;;;;;;;;;;;;;:::o;21774:237::-;4069:12;:10;:12::i;:::-;4058:23;;:7;:5;:7::i;:::-;:23;;;4050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21909:14:::1;21893:13;;:30;;;;;;;;;;;;;;;;;;21948:12;21934:11;;:26;;;;;;;;;;;;;;;;;;21988:15;21971:14;:32;;;;21774:237:::0;;;:::o;12379:127::-;12453:7;12480:9;:18;12490:7;12480:18;;;;;;;;;;;;;;;;12473:25;;12379:127;;;:::o;4489:103::-;4069:12;:10;:12::i;:::-;4058:23;;:7;:5;:7::i;:::-;:23;;;4050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4554:30:::1;4581:1;4554:18;:30::i;:::-;4489:103::o:0;3838:87::-;3884:7;3911:6;;;;;;;;;;;3904:13;;3838:87;:::o;11307:104::-;11363:13;11396:7;11389:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11307:104;:::o;15525:413::-;15618:4;15635:24;15662:11;:25;15674:12;:10;:12::i;:::-;15662:25;;;;;;;;;;;;;;;:34;15688:7;15662:34;;;;;;;;;;;;;;;;15635:61;;15735:15;15715:16;:35;;15707:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15828:67;15837:12;:10;:12::i;:::-;15851:7;15879:15;15860:16;:34;15828:8;:67::i;:::-;15926:4;15919:11;;;15525:413;;;;:::o;12719:175::-;12805:4;12822:42;12832:12;:10;:12::i;:::-;12846:9;12857:6;12822:9;:42::i;:::-;12882:4;12875:11;;12719:175;;;;:::o;21148:29::-;;;;:::o;21184:26::-;;;;;;;;;;;;;:::o;12957:151::-;13046:7;13073:11;:18;13085:5;13073:18;;;;;;;;;;;;;;;:27;13092:7;13073:27;;;;;;;;;;;;;;;;13066:34;;12957:151;;;;:::o;4747:201::-;4069:12;:10;:12::i;:::-;4058:23;;:7;:5;:7::i;:::-;:23;;;4050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4856:1:::1;4836:22;;:8;:22;;::::0;4828:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4912:28;4931:8;4912:18;:28::i;:::-;4747:201:::0;:::o;2556:98::-;2609:7;2636:10;2629:17;;2556:98;:::o;19209:380::-;19362:1;19345:19;;:5;:19;;;19337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19443:1;19424:21;;:7;:21;;;19416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19527:6;19497:11;:18;19509:5;19497:18;;;;;;;;;;;;;;;:27;19516:7;19497:27;;;;;;;;;;;;;;;:36;;;;19565:7;19549:32;;19558:5;19549:32;;;19574:6;19549:32;;;;;;:::i;:::-;;;;;;;;19209:380;;;:::o;16428:733::-;16586:1;16568:20;;:6;:20;;;16560:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16670:1;16649:23;;:9;:23;;;16641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16725:47;16746:6;16754:9;16765:6;16725:20;:47::i;:::-;16785:21;16809:9;:17;16819:6;16809:17;;;;;;;;;;;;;;;;16785:41;;16862:6;16845:13;:23;;16837:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16983:6;16967:13;:22;16947:9;:17;16957:6;16947:17;;;;;;;;;;;;;;;:42;;;;17035:6;17011:9;:20;17021:9;17011:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17076:9;17059:35;;17068:6;17059:35;;;17087:6;17059:35;;;;;;:::i;:::-;;;;;;;;17107:46;17127:6;17135:9;17146:6;17107:19;:46::i;:::-;16549:612;16428:733;;;:::o;5108:191::-;5182:16;5201:6;;;;;;;;;;;5182:25;;5227:8;5218:6;;:17;;;;;;;;;;;;;;;;;;5282:8;5251:40;;5272:8;5251:40;;;;;;;;;;;;5171:128;5108:191;:::o;21330:436::-;21502:1;21479:25;;:11;;;;;;;;;;;:25;;;21475:137;;21537:7;:5;:7::i;:::-;21529:15;;:4;:15;;;:32;;;;21554:7;:5;:7::i;:::-;21548:13;;:2;:13;;;21529:32;21521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;21594:7;;21475:137;21628:13;;;;;;;;;;;:36;;;;;21653:11;;;;;;;;;;;21645:19;;:4;:19;;;21628:36;21624:135;;;21721:14;;21711:6;21689:19;21705:2;21689:15;:19::i;:::-;:28;;;;:::i;:::-;:46;;21681:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21624:135;21330:436;;;;:::o;20918:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446: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:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:613::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:50;5446:7;5437:6;5426:9;5422:22;5404:50;:::i;:::-;5394:60;;5350:114;5503:2;5529:53;5574:7;5565:6;5554:9;5550:22;5529:53;:::i;:::-;5519:63;;5474:118;5631:2;5657:53;5702:7;5693:6;5682:9;5678:22;5657:53;:::i;:::-;5647:63;;5602:118;5114:613;;;;;:::o;5733:329::-;5792:6;5841:2;5829:9;5820:7;5816:23;5812:32;5809:119;;;5847:79;;:::i;:::-;5809:119;5967:1;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5938:117;5733:329;;;;:::o;6068:118::-;6155:24;6173:5;6155:24;:::i;:::-;6150:3;6143:37;6068:118;;:::o;6192:222::-;6285:4;6323:2;6312:9;6308:18;6300:26;;6336:71;6404:1;6393:9;6389:17;6380:6;6336:71;:::i;:::-;6192:222;;;;:::o;6420:474::-;6488:6;6496;6545:2;6533:9;6524:7;6520:23;6516:32;6513:119;;;6551:79;;:::i;:::-;6513:119;6671:1;6696:53;6741:7;6732:6;6721:9;6717:22;6696:53;:::i;:::-;6686:63;;6642:117;6798:2;6824:53;6869:7;6860:6;6849:9;6845:22;6824:53;:::i;:::-;6814:63;;6769:118;6420:474;;;;;:::o;6900:180::-;6948:77;6945:1;6938:88;7045:4;7042:1;7035:15;7069:4;7066:1;7059:15;7086:320;7130:6;7167:1;7161:4;7157:12;7147:22;;7214:1;7208:4;7204:12;7235:18;7225:81;;7291:4;7283:6;7279:17;7269:27;;7225:81;7353:2;7345:6;7342:14;7322:18;7319:38;7316:84;;7372:18;;:::i;:::-;7316:84;7137:269;7086:320;;;:::o;7412:227::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:10;7616:2;7608:6;7604:15;7597:35;7412:227;:::o;7645:366::-;7787:3;7808:67;7872:2;7867:3;7808:67;:::i;:::-;7801:74;;7884:93;7973:3;7884:93;:::i;:::-;8002:2;7997:3;7993:12;7986:19;;7645:366;;;:::o;8017:419::-;8183:4;8221:2;8210:9;8206:18;8198:26;;8270:9;8264:4;8260:20;8256:1;8245:9;8241:17;8234:47;8298:131;8424:4;8298:131;:::i;:::-;8290:139;;8017:419;;;:::o;8442:180::-;8490:77;8487:1;8480:88;8587:4;8584:1;8577:15;8611:4;8608:1;8601:15;8628:191;8668:3;8687:20;8705:1;8687:20;:::i;:::-;8682:25;;8721:20;8739:1;8721:20;:::i;:::-;8716:25;;8764:1;8761;8757:9;8750:16;;8785:3;8782:1;8779:10;8776:36;;;8792:18;;:::i;:::-;8776:36;8628:191;;;;:::o;8825:182::-;8965:34;8961:1;8953:6;8949:14;8942:58;8825:182;:::o;9013:366::-;9155:3;9176:67;9240:2;9235:3;9176:67;:::i;:::-;9169:74;;9252:93;9341:3;9252:93;:::i;:::-;9370:2;9365:3;9361:12;9354:19;;9013:366;;;:::o;9385:419::-;9551:4;9589:2;9578:9;9574:18;9566:26;;9638:9;9632:4;9628:20;9624:1;9613:9;9609:17;9602:47;9666:131;9792:4;9666:131;:::i;:::-;9658:139;;9385:419;;;:::o;9810:224::-;9950:34;9946:1;9938:6;9934:14;9927:58;10019:7;10014:2;10006:6;10002:15;9995:32;9810:224;:::o;10040:366::-;10182:3;10203:67;10267:2;10262:3;10203:67;:::i;:::-;10196:74;;10279:93;10368:3;10279:93;:::i;:::-;10397:2;10392:3;10388:12;10381:19;;10040:366;;;:::o;10412:419::-;10578:4;10616:2;10605:9;10601:18;10593:26;;10665:9;10659:4;10655:20;10651:1;10640:9;10636:17;10629:47;10693:131;10819:4;10693:131;:::i;:::-;10685:139;;10412:419;;;:::o;10837:225::-;10977:34;10973:1;10965:6;10961:14;10954:58;11046:8;11041:2;11033:6;11029:15;11022:33;10837:225;:::o;11068:366::-;11210:3;11231:67;11295:2;11290:3;11231:67;:::i;:::-;11224:74;;11307:93;11396:3;11307:93;:::i;:::-;11425:2;11420:3;11416:12;11409:19;;11068:366;;;:::o;11440:419::-;11606:4;11644:2;11633:9;11629:18;11621:26;;11693:9;11687:4;11683:20;11679:1;11668:9;11664:17;11657:47;11721:131;11847:4;11721:131;:::i;:::-;11713:139;;11440:419;;;:::o;11865:223::-;12005:34;12001:1;11993:6;11989:14;11982:58;12074:6;12069:2;12061:6;12057:15;12050:31;11865:223;:::o;12094:366::-;12236:3;12257:67;12321:2;12316:3;12257:67;:::i;:::-;12250:74;;12333:93;12422:3;12333:93;:::i;:::-;12451:2;12446:3;12442:12;12435:19;;12094:366;;;:::o;12466:419::-;12632:4;12670:2;12659:9;12655:18;12647:26;;12719:9;12713:4;12709:20;12705:1;12694:9;12690:17;12683:47;12747:131;12873:4;12747:131;:::i;:::-;12739:139;;12466:419;;;:::o;12891:221::-;13031:34;13027:1;13019:6;13015:14;13008:58;13100:4;13095:2;13087:6;13083:15;13076:29;12891:221;:::o;13118:366::-;13260:3;13281:67;13345:2;13340:3;13281:67;:::i;:::-;13274:74;;13357:93;13446:3;13357:93;:::i;:::-;13475:2;13470:3;13466:12;13459:19;;13118:366;;;:::o;13490:419::-;13656:4;13694:2;13683:9;13679:18;13671:26;;13743:9;13737:4;13733:20;13729:1;13718:9;13714:17;13707:47;13771:131;13897:4;13771:131;:::i;:::-;13763:139;;13490:419;;;:::o;13915:224::-;14055:34;14051:1;14043:6;14039:14;14032:58;14124:7;14119:2;14111:6;14107:15;14100:32;13915:224;:::o;14145:366::-;14287:3;14308:67;14372:2;14367:3;14308:67;:::i;:::-;14301:74;;14384:93;14473:3;14384:93;:::i;:::-;14502:2;14497:3;14493:12;14486:19;;14145:366;;;:::o;14517:419::-;14683:4;14721:2;14710:9;14706:18;14698:26;;14770:9;14764:4;14760:20;14756:1;14745:9;14741:17;14734:47;14798:131;14924:4;14798:131;:::i;:::-;14790:139;;14517:419;;;:::o;14942:222::-;15082:34;15078:1;15070:6;15066:14;15059:58;15151:5;15146:2;15138:6;15134:15;15127:30;14942:222;:::o;15170:366::-;15312:3;15333:67;15397:2;15392:3;15333:67;:::i;:::-;15326:74;;15409:93;15498:3;15409:93;:::i;:::-;15527:2;15522:3;15518:12;15511:19;;15170:366;;;:::o;15542:419::-;15708:4;15746:2;15735:9;15731:18;15723:26;;15795:9;15789:4;15785:20;15781:1;15770:9;15766:17;15759:47;15823:131;15949:4;15823:131;:::i;:::-;15815:139;;15542:419;;;:::o;15967:225::-;16107:34;16103:1;16095:6;16091:14;16084:58;16176:8;16171:2;16163:6;16159:15;16152:33;15967:225;:::o;16198:366::-;16340:3;16361:67;16425:2;16420:3;16361:67;:::i;:::-;16354:74;;16437:93;16526:3;16437:93;:::i;:::-;16555:2;16550:3;16546:12;16539:19;;16198:366;;;:::o;16570:419::-;16736:4;16774:2;16763:9;16759:18;16751:26;;16823:9;16817:4;16813:20;16809:1;16798:9;16794:17;16787:47;16851:131;16977:4;16851:131;:::i;:::-;16843:139;;16570:419;;;:::o;16995:163::-;17135:15;17131:1;17123:6;17119:14;17112:39;16995:163;:::o;17164:366::-;17306:3;17327:67;17391:2;17386:3;17327:67;:::i;:::-;17320:74;;17403:93;17492:3;17403:93;:::i;:::-;17521:2;17516:3;17512:12;17505:19;;17164:366;;;:::o;17536:419::-;17702:4;17740:2;17729:9;17725:18;17717:26;;17789:9;17783:4;17779:20;17775:1;17764:9;17760:17;17753:47;17817:131;17943:4;17817:131;:::i;:::-;17809:139;;17536:419;;;:::o;17961:157::-;18101:9;18097:1;18089:6;18085:14;18078:33;17961:157;:::o;18124:365::-;18266:3;18287:66;18351:1;18346:3;18287:66;:::i;:::-;18280:73;;18362:93;18451:3;18362:93;:::i;:::-;18480:2;18475:3;18471:12;18464:19;;18124:365;;;:::o;18495:419::-;18661:4;18699:2;18688:9;18684:18;18676:26;;18748:9;18742:4;18738:20;18734:1;18723:9;18719:17;18712:47;18776:131;18902:4;18776:131;:::i;:::-;18768:139;;18495:419;;;:::o

Swarm Source

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