ETH Price: $3,361.87 (-1.61%)
Gas: 7 Gwei

Token

Potato Power (PW)
 

Overview

Max Total Supply

4,329 PW

Holders

1,143

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
der.eth
Balance
1 PW
0xA31DBF0435aF02F3B68eC7f985c9388E8AB1e47B
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:
PotatoPower

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-10
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-10
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-10
*/

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


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
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 allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol






/**
 * @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.
 */

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


/**
 * @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 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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol




/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol




/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol




/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

// File: Set.sol

interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



contract PotatoPower is ERC721Enumerable, Ownable,Pausable {
    using Counters for Counters.Counter;
    
       struct SpecificAddresses{
        
        
        address userAddress;
        bool mint;
        
        
    }
    
    mapping(address => SpecificAddresses) public _whiteList;
    mapping(address=>bool) public _addressExist;
    mapping(uint256 => string) private _tokenURIs;
    
    Counters.Counter private _tokenIds;

    uint256 public maxSupply = 7777;
    uint256 public currentPrice = 0.05 ether;
    uint256 public maxQuantity=30;
    string  public tokenBaseURI;
    event MAX_SUPPLY_UPDATED(uint256 maxSupply);
    event MAX_PRICE_UPDATED(uint256 maxPrice);

    constructor(string memory _baseURII) ERC721("Potato Power", "PW"){tokenBaseURI=_baseURII;}
        function getPrice(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*currentPrice ;
        }
        

    function mint( uint256 _quantity) whenNotPaused() public payable returns (uint256) {
    require(totalSupplyy()+_quantity<=maxSupply,"Quantity must be lesser then MaxSupply");
    require(_quantity>0,"quantity must be greater then zero");
    require(_quantity <= maxQuantity, "Your are not allowed to mint more than 30 tokens");
    require(getPrice(_quantity) == msg.value, "Ether value sent is not correct");

        uint256 newItemId;

        for (uint256 i = 0; i < _quantity; i++) {
       
        _tokenIds.increment();
         newItemId = _tokenIds.current();
        _mint(msg.sender, newItemId);
        _setTokenURI(newItemId, tokenBaseURI);
    }
            return newItemId;

    }
       function mintByAdmin( uint256 _quantity)  public  onlyOwner  returns (uint256) {
        require(_quantity <= 60, "Your are not allowed to mint more than 60 tokens");
        require(totalSupplyy()+_quantity<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(_quantity>0,"quantity must be greater then zero");
        uint256 newItemId;

        for (uint256 i = 0; i < _quantity; i++) {
       
        _tokenIds.increment();
         newItemId = _tokenIds.current();
        _mint(msg.sender, newItemId);
        _setTokenURI(newItemId, tokenBaseURI);
    }
            return newItemId;

    }

     /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupplyy() private view returns (uint256) {
        return _tokenIds.current();
    }

     /**
     * @dev Withdraw ether from this contract (Callable by owner)
     */
    function withdraw() public onlyOwner {
        uint amount = address(this).balance;
        payable(owner()).transfer(amount);
    }
    
    function addWhiteList(address whiteAddress)public onlyOwner {
        require(!_addressExist[whiteAddress],"Address already Exist");
        
        _whiteList[whiteAddress]=SpecificAddresses({
            userAddress :msg.sender,
            mint:false
           });
           
           _addressExist[whiteAddress]=true;
        
    }
    
    function mintBeta() public payable{
        
        require(_addressExist[msg.sender]==true,"Address not Found in whitelist");
        SpecificAddresses storage myaddress = _whiteList[msg.sender];
        
        require(myaddress.mint==false,"User Already minted a token");
        require(msg.value==currentPrice,"Price Error");
        require(_tokenIds.current() < maxSupply, "Max Supply Exceeded");

        uint256 newItemId;
         _tokenIds.increment();
         newItemId = _tokenIds.current();
        _mint(msg.sender, newItemId);
        _setTokenURI(newItemId, tokenBaseURI);
        myaddress.mint=true;
        
    }
    
     function burn(uint256 tokenId) public  {
         require(ownerOf(tokenId)==msg.sender,"you are not owner of this id");
        _burn(tokenId);
    }
    
     function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }
    
 
    function _setTokenURI(uint256 tokenId, string memory tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = tokenURI;
    }


    function updateCurrentPrice(uint256 _price) public onlyOwner {
        currentPrice = _price;
        emit MAX_PRICE_UPDATED(_price);
    }
        
  
    
 function _baseURI() internal view override returns (string memory) {
    return tokenBaseURI ;
  }
  
  function updateBaseURI(string memory _baseURIII) public onlyOwner returns(string memory )
  {
      tokenBaseURI=_baseURIII;
      return tokenBaseURI;
  }
   function pause() public onlyOwner whenNotPaused 
   {
        _pause();
    }
    
     function unpause() public onlyOwner whenPaused 
     {
        _unpause();
    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURII","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxPrice","type":"uint256"}],"name":"MAX_PRICE_UPDATED","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"MAX_SUPPLY_UPDATED","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bool","name":"mint","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"whiteAddress","type":"address"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintBeta","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintByAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIII","type":"string"}],"name":"updateBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e61600f5566b1a2bc2ec50000601055601e6011553480156200002757600080fd5b50604051620058003803806200580083398181016040528101906200004d919062000338565b6040518060400160405280600c81526020017f506f7461746f20506f77657200000000000000000000000000000000000000008152506040518060400160405280600281526020017f50570000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d192919062000216565b508060019080519060200190620000ea92919062000216565b5050506200010d620001016200014860201b60201c565b6200015060201b60201c565b6000600a60146101000a81548160ff02191690831515021790555080601290805190602001906200014092919062000216565b5050620004ae565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000224906200041a565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b6000620002dd620002d784620003b1565b6200037d565b905082815260208101848484011115620002f657600080fd5b62000303848285620003e4565b509392505050565b600082601f8301126200031d57600080fd5b81516200032f848260208601620002c6565b91505092915050565b6000602082840312156200034b57600080fd5b600082015167ffffffffffffffff8111156200036657600080fd5b62000374848285016200030b565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003a757620003a66200047f565b5b8060405250919050565b600067ffffffffffffffff821115620003cf57620003ce6200047f565b5b601f19601f8301169050602081019050919050565b60005b8381101562000404578082015181840152602081019050620003e7565b8381111562000414576000848401525b50505050565b600060028204905060018216806200043357607f821691505b602082108114156200044a576200044962000450565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61534280620004be6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063e640cf7d1161006f578063e640cf7d14610814578063e75722301461083f578063e7cd4a041461087c578063e985e9c5146108a5578063f2fde38b146108e257610225565b8063a22cb4651461071d578063b88d4fde14610746578063c2f037761461076f578063c87b56dd146107ac578063d5abeb01146107e957610225565b80638da5cb5b116100f25780638da5cb5b1461062f578063931688cb1461065a57806395d89b41146106975780639d1b464a146106c2578063a0712d68146106ed57610225565b8063715018a61461059b5780637fc6686e146105b25780638456cb59146105db5780638462151c146105f257610225565b80632f745c59116101b15780634e99b800116101755780634e99b8001461048e5780634f6ccce7146104b95780635c975abb146104f65780636352211e1461052157806370a082311461055e57610225565b80632f745c59146103d15780633ccfd60b1461040e5780633f4ba83a1461042557806342842e0e1461043c57806342966c681461046557610225565b8063081812fc116101f8578063081812fc146102da578063095ea7b31461031757806318160ddd146103405780631f5e3d1a1461036b57806323b872dd146103a857610225565b806301ffc9a71461022a57806305d60ffb1461026757806306fdde03146102a5578063080450de146102d0575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613c4e565b61090b565b60405161025e9190614a07565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613aa7565b610985565b60405161029c9291906149bc565b60405180910390f35b3480156102b157600080fd5b506102ba6109d6565b6040516102c79190614a22565b60405180910390f35b6102d8610a68565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190613ce1565b610cfe565b60405161030e9190614955565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190613c12565b610d83565b005b34801561034c57600080fd5b50610355610e9b565b6040516103629190614e44565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613ce1565b610ea8565b60405161039f9190614e44565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190613b0c565b6110e5565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613c12565b611145565b6040516104059190614e44565b60405180910390f35b34801561041a57600080fd5b506104236111ea565b005b34801561043157600080fd5b5061043a6112bc565b005b34801561044857600080fd5b50610463600480360381019061045e9190613b0c565b611389565b005b34801561047157600080fd5b5061048c60048036038101906104879190613ce1565b6113a9565b005b34801561049a57600080fd5b506104a361142b565b6040516104b09190614a22565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613ce1565b6114b9565b6040516104ed9190614e44565b60405180910390f35b34801561050257600080fd5b5061050b611550565b6040516105189190614a07565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190613ce1565b611567565b6040516105559190614955565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613aa7565b611619565b6040516105929190614e44565b60405180910390f35b3480156105a757600080fd5b506105b06116d1565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613ce1565b611759565b005b3480156105e757600080fd5b506105f0611816565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613aa7565b6118e4565b60405161062691906149e5565b60405180910390f35b34801561063b57600080fd5b506106446119de565b6040516106519190614955565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613ca0565b611a08565b60405161068e9190614a22565b60405180910390f35b3480156106a357600080fd5b506106ac611b2f565b6040516106b99190614a22565b60405180910390f35b3480156106ce57600080fd5b506106d7611bc1565b6040516106e49190614e44565b60405180910390f35b61070760048036038101906107029190613ce1565b611bc7565b6040516107149190614e44565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613bd6565b611e1b565b005b34801561075257600080fd5b5061076d60048036038101906107689190613b5b565b611f9c565b005b34801561077b57600080fd5b5061079660048036038101906107919190613aa7565b611ffe565b6040516107a39190614a07565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613ce1565b61201e565b6040516107e09190614a22565b60405180910390f35b3480156107f557600080fd5b506107fe6120c5565b60405161080b9190614e44565b60405180910390f35b34801561082057600080fd5b506108296120cb565b6040516108369190614e44565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613ce1565b6120d1565b6040516108739190614e44565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190613aa7565b6120e8565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190613ad0565b612323565b6040516108d99190614a07565b60405180910390f35b3480156108ee57600080fd5b5061090960048036038101906109049190613aa7565b6123b7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d826124af565b5b9050919050565b600b6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060000160149054906101000a900460ff16905082565b6060600080546109e590615137565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190615137565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290614b24565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600015158160000160149054906101000a900460ff16151514610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90614c44565b60405180910390fd5b6010543414610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190614de4565b60405180910390fd5b600f54610be7600e612591565b10610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90614a44565b60405180910390fd5b6000610c33600e61259f565b610c3d600e612591565b9050610c4933826125b5565b610cdd8160128054610c5a90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690615137565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b5050505050612783565b60018260000160146101000a81548160ff0219169083151502179055505050565b6000610d09826127f7565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614d24565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d8e82611567565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614dc4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e1e612863565b73ffffffffffffffffffffffffffffffffffffffff161480610e4d5750610e4c81610e47612863565b612323565b5b610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614c64565b60405180910390fd5b610e96838361286b565b505050565b6000600880549050905090565b6000610eb2612863565b73ffffffffffffffffffffffffffffffffffffffff16610ed06119de565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614d44565b60405180910390fd5b603c821115610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614b04565b60405180910390fd5b600f5482610f76612924565b610f809190614f6c565b1115610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890614d64565b60405180910390fd5b60008211611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614b64565b60405180910390fd5b600080600090505b838110156110db5761101e600e61259f565b611028600e612591565b915061103433836125b5565b6110c8826012805461104590615137565b80601f016020809104026020016040519081016040528092919081815260200182805461107190615137565b80156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b5050505050612783565b80806110d390615169565b91505061100c565b5080915050919050565b6110f66110f0612863565b82612935565b611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90614e04565b60405180910390fd5b611140838383612a13565b505050565b600061115083611619565b8210611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890614a84565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111f2612863565b73ffffffffffffffffffffffffffffffffffffffff166112106119de565b73ffffffffffffffffffffffffffffffffffffffff1614611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614d44565b60405180910390fd5b60004790506112736119de565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112b8573d6000803e3d6000fd5b5050565b6112c4612863565b73ffffffffffffffffffffffffffffffffffffffff166112e26119de565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90614d44565b60405180910390fd5b611340611550565b61137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614a64565b60405180910390fd5b611387612c6f565b565b6113a483838360405180602001604052806000815250611f9c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166113c982611567565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614c04565b60405180910390fd5b61142881612d11565b50565b6012805461143890615137565b80601f016020809104026020016040519081016040528092919081815260200182805461146490615137565b80156114b15780601f10611486576101008083540402835291602001916114b1565b820191906000526020600020905b81548152906001019060200180831161149457829003601f168201915b505050505081565b60006114c3610e9b565b8210611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90614e24565b60405180910390fd5b6008828154811061153e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614ca4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190614c84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d9612863565b73ffffffffffffffffffffffffffffffffffffffff166116f76119de565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490614d44565b60405180910390fd5b6117576000612e22565b565b611761612863565b73ffffffffffffffffffffffffffffffffffffffff1661177f6119de565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90614d44565b60405180910390fd5b806010819055507f4b9d786179e2599e65d6eb10cdb73af77287bb79b562194500404a8612be16578160405161180b9190614e44565b60405180910390a150565b61181e612863565b73ffffffffffffffffffffffffffffffffffffffff1661183c6119de565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990614d44565b60405180910390fd5b61189a611550565b156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614c24565b60405180910390fd5b6118e2612ee8565b565b606060006118f183611619565b905060008167ffffffffffffffff811115611935577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119635781602001602082028036833780820191505090505b50905060005b828110156119d35761197b8582611145565b8282815181106119b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806119cb90615169565b915050611969565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611a12612863565b73ffffffffffffffffffffffffffffffffffffffff16611a306119de565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90614d44565b60405180910390fd5b8160129080519060200190611a9c9291906138cb565b5060128054611aaa90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad690615137565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b50505050509050919050565b606060018054611b3e90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a90615137565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b5050505050905090565b60105481565b6000611bd1611550565b15611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890614c24565b60405180910390fd5b600f5482611c1d612924565b611c279190614f6c565b1115611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614d64565b60405180910390fd5b60008211611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290614b64565b60405180910390fd5b601154821115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614d04565b60405180910390fd5b34611cfa836120d1565b14611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190614bc4565b60405180910390fd5b600080600090505b83811015611e1157611d54600e61259f565b611d5e600e612591565b9150611d6a33836125b5565b611dfe8260128054611d7b90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611da790615137565b8015611df45780601f10611dc957610100808354040283529160200191611df4565b820191906000526020600020905b815481529060010190602001808311611dd757829003601f168201915b5050505050612783565b8080611e0990615169565b915050611d42565b5080915050919050565b611e23612863565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890614ba4565b60405180910390fd5b8060056000611e9e612863565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4b612863565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f909190614a07565b60405180910390a35050565b611fad611fa7612863565b83612935565b611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390614e04565b60405180910390fd5b611ff884848484612f8b565b50505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6060612029826127f7565b612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614da4565b60405180910390fd5b6000612072612fe7565b9050600081511161209257604051806020016040528060008152506120bd565b8061209c84613079565b6040516020016120ad929190614931565b6040516020818303038152906040525b915050919050565b600f5481565b60115481565b6000601054826120e19190614ff3565b9050919050565b6120f0612863565b73ffffffffffffffffffffffffffffffffffffffff1661210e6119de565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614d44565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614b44565b60405180910390fd5b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160001515815250600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff0219169083151502179055509050506001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123bf612863565b73ffffffffffffffffffffffffffffffffffffffff166123dd6119de565b73ffffffffffffffffffffffffffffffffffffffff1614612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614d44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614ac4565b60405180910390fd5b6124ac81612e22565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061258a575061258982613226565b5b9050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614ce4565b60405180910390fd5b61262e816127f7565b1561266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614ae4565b60405180910390fd5b61267a60008383613290565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ca9190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61278c826127f7565b6127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290614cc4565b60405180910390fd5b80600d600084815260200190815260200160002090805190602001906127f29291906138cb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128de83611567565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612930600e612591565b905090565b6000612940826127f7565b61297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614be4565b60405180910390fd5b600061298a83611567565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129f957508373ffffffffffffffffffffffffffffffffffffffff166129e184610cfe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0a5750612a098185612323565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a3382611567565b73ffffffffffffffffffffffffffffffffffffffff1614612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090614d84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614b84565b60405180910390fd5b612b04838383613290565b612b0f60008261286b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f919061504d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb69190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c77611550565b612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90614a64565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cfa612863565b604051612d079190614955565b60405180910390a1565b6000612d1c82611567565b9050612d2a81600084613290565b612d3560008361286b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d85919061504d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ef0611550565b15612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2790614c24565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f74612863565b604051612f819190614955565b60405180910390a1565b612f96848484612a13565b612fa2848484846133a4565b612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd890614aa4565b60405180910390fd5b50505050565b606060128054612ff690615137565b80601f016020809104026020016040519081016040528092919081815260200182805461302290615137565b801561306f5780601f106130445761010080835404028352916020019161306f565b820191906000526020600020905b81548152906001019060200180831161305257829003601f168201915b5050505050905090565b606060008214156130c1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613221565b600082905060005b600082146130f35780806130dc90615169565b915050600a826130ec9190614fc2565b91506130c9565b60008167ffffffffffffffff811115613135577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b6000851461321a57600182613180919061504d565b9150600a8561318f91906151b2565b603061319b9190614f6c565b60f81b8183815181106131d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132139190614fc2565b945061316b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61329b83838361353b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576132d981613540565b61331d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461331c5761331b8382613589565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133605761335b816136f6565b61339f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461339e5761339d8282613839565b5b5b505050565b60006133c58473ffffffffffffffffffffffffffffffffffffffff166138b8565b1561352e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ee612863565b8786866040518563ffffffff1660e01b81526004016134109493929190614970565b602060405180830381600087803b15801561342a57600080fd5b505af192505050801561345b57506040513d601f19601f820116820180604052508101906134589190613c77565b60015b6134de573d806000811461348b576040519150601f19603f3d011682016040523d82523d6000602084013e613490565b606091505b506000815114156134d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134cd90614aa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613533565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161359684611619565b6135a0919061504d565b9050600060076000848152602001908152602001600020549050818114613685576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061370a919061504d565b9050600060096000848152602001908152602001600020549050600060088381548110613760577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106137a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061381d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061384483611619565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546138d790615137565b90600052602060002090601f0160209004810192826138f95760008555613940565b82601f1061391257805160ff1916838001178555613940565b82800160010185558215613940579182015b8281111561393f578251825591602001919060010190613924565b5b50905061394d9190613951565b5090565b5b8082111561396a576000816000905550600101613952565b5090565b600061398161397c84614e90565b614e5f565b90508281526020810184848401111561399957600080fd5b6139a48482856150f5565b509392505050565b60006139bf6139ba84614ec0565b614e5f565b9050828152602081018484840111156139d757600080fd5b6139e28482856150f5565b509392505050565b6000813590506139f9816152b0565b92915050565b600081359050613a0e816152c7565b92915050565b600081359050613a23816152de565b92915050565b600081519050613a38816152de565b92915050565b600082601f830112613a4f57600080fd5b8135613a5f84826020860161396e565b91505092915050565b600082601f830112613a7957600080fd5b8135613a898482602086016139ac565b91505092915050565b600081359050613aa1816152f5565b92915050565b600060208284031215613ab957600080fd5b6000613ac7848285016139ea565b91505092915050565b60008060408385031215613ae357600080fd5b6000613af1858286016139ea565b9250506020613b02858286016139ea565b9150509250929050565b600080600060608486031215613b2157600080fd5b6000613b2f868287016139ea565b9350506020613b40868287016139ea565b9250506040613b5186828701613a92565b9150509250925092565b60008060008060808587031215613b7157600080fd5b6000613b7f878288016139ea565b9450506020613b90878288016139ea565b9350506040613ba187828801613a92565b925050606085013567ffffffffffffffff811115613bbe57600080fd5b613bca87828801613a3e565b91505092959194509250565b60008060408385031215613be957600080fd5b6000613bf7858286016139ea565b9250506020613c08858286016139ff565b9150509250929050565b60008060408385031215613c2557600080fd5b6000613c33858286016139ea565b9250506020613c4485828601613a92565b9150509250929050565b600060208284031215613c6057600080fd5b6000613c6e84828501613a14565b91505092915050565b600060208284031215613c8957600080fd5b6000613c9784828501613a29565b91505092915050565b600060208284031215613cb257600080fd5b600082013567ffffffffffffffff811115613ccc57600080fd5b613cd884828501613a68565b91505092915050565b600060208284031215613cf357600080fd5b6000613d0184828501613a92565b91505092915050565b6000613d168383614913565b60208301905092915050565b613d2b81615081565b82525050565b6000613d3c82614f00565b613d468185614f2e565b9350613d5183614ef0565b8060005b83811015613d82578151613d698882613d0a565b9750613d7483614f21565b925050600181019050613d55565b5085935050505092915050565b613d9881615093565b82525050565b6000613da982614f0b565b613db38185614f3f565b9350613dc3818560208601615104565b613dcc8161529f565b840191505092915050565b6000613de282614f16565b613dec8185614f50565b9350613dfc818560208601615104565b613e058161529f565b840191505092915050565b6000613e1b82614f16565b613e258185614f61565b9350613e35818560208601615104565b80840191505092915050565b6000613e4e601383614f50565b91507f4d617820537570706c79204578636565646564000000000000000000000000006000830152602082019050919050565b6000613e8e601483614f50565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613ece602b83614f50565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f34603283614f50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f9a602683614f50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614000601c83614f50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614040603083614f50565b91507f596f757220617265206e6f7420616c6c6f77656420746f206d696e74206d6f7260008301527f65207468616e20363020746f6b656e73000000000000000000000000000000006020830152604082019050919050565b60006140a6601e83614f50565b91507f41646472657373206e6f7420466f756e6420696e2077686974656c69737400006000830152602082019050919050565b60006140e6601583614f50565b91507f4164647265737320616c726561647920457869737400000000000000000000006000830152602082019050919050565b6000614126602283614f50565b91507f7175616e74697479206d7573742062652067726561746572207468656e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061418c602483614f50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141f2601983614f50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614232601f83614f50565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614272602c83614f50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142d8601c83614f50565b91507f796f7520617265206e6f74206f776e6572206f662074686973206964000000006000830152602082019050919050565b6000614318601083614f50565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614358601b83614f50565b91507f5573657220416c7265616479206d696e746564206120746f6b656e00000000006000830152602082019050919050565b6000614398603883614f50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006143fe602a83614f50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614464602983614f50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ca602e83614f50565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000614530602083614f50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614570603083614f50565b91507f596f757220617265206e6f7420616c6c6f77656420746f206d696e74206d6f7260008301527f65207468616e20333020746f6b656e73000000000000000000000000000000006020830152604082019050919050565b60006145d6602c83614f50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061463c602083614f50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061467c602683614f50565b91507f5175616e74697479206d757374206265206c6573736572207468656e204d617860008301527f537570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e2602983614f50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614748602f83614f50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006147ae602183614f50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614814600b83614f50565b91507f5072696365204572726f720000000000000000000000000000000000000000006000830152602082019050919050565b6000614854603183614f50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006148ba602c83614f50565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61491c816150eb565b82525050565b61492b816150eb565b82525050565b600061493d8285613e10565b91506149498284613e10565b91508190509392505050565b600060208201905061496a6000830184613d22565b92915050565b60006080820190506149856000830187613d22565b6149926020830186613d22565b61499f6040830185614922565b81810360608301526149b18184613d9e565b905095945050505050565b60006040820190506149d16000830185613d22565b6149de6020830184613d8f565b9392505050565b600060208201905081810360008301526149ff8184613d31565b905092915050565b6000602082019050614a1c6000830184613d8f565b92915050565b60006020820190508181036000830152614a3c8184613dd7565b905092915050565b60006020820190508181036000830152614a5d81613e41565b9050919050565b60006020820190508181036000830152614a7d81613e81565b9050919050565b60006020820190508181036000830152614a9d81613ec1565b9050919050565b60006020820190508181036000830152614abd81613f27565b9050919050565b60006020820190508181036000830152614add81613f8d565b9050919050565b60006020820190508181036000830152614afd81613ff3565b9050919050565b60006020820190508181036000830152614b1d81614033565b9050919050565b60006020820190508181036000830152614b3d81614099565b9050919050565b60006020820190508181036000830152614b5d816140d9565b9050919050565b60006020820190508181036000830152614b7d81614119565b9050919050565b60006020820190508181036000830152614b9d8161417f565b9050919050565b60006020820190508181036000830152614bbd816141e5565b9050919050565b60006020820190508181036000830152614bdd81614225565b9050919050565b60006020820190508181036000830152614bfd81614265565b9050919050565b60006020820190508181036000830152614c1d816142cb565b9050919050565b60006020820190508181036000830152614c3d8161430b565b9050919050565b60006020820190508181036000830152614c5d8161434b565b9050919050565b60006020820190508181036000830152614c7d8161438b565b9050919050565b60006020820190508181036000830152614c9d816143f1565b9050919050565b60006020820190508181036000830152614cbd81614457565b9050919050565b60006020820190508181036000830152614cdd816144bd565b9050919050565b60006020820190508181036000830152614cfd81614523565b9050919050565b60006020820190508181036000830152614d1d81614563565b9050919050565b60006020820190508181036000830152614d3d816145c9565b9050919050565b60006020820190508181036000830152614d5d8161462f565b9050919050565b60006020820190508181036000830152614d7d8161466f565b9050919050565b60006020820190508181036000830152614d9d816146d5565b9050919050565b60006020820190508181036000830152614dbd8161473b565b9050919050565b60006020820190508181036000830152614ddd816147a1565b9050919050565b60006020820190508181036000830152614dfd81614807565b9050919050565b60006020820190508181036000830152614e1d81614847565b9050919050565b60006020820190508181036000830152614e3d816148ad565b9050919050565b6000602082019050614e596000830184614922565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e8657614e85615270565b5b8060405250919050565b600067ffffffffffffffff821115614eab57614eaa615270565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614edb57614eda615270565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f77826150eb565b9150614f82836150eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb757614fb66151e3565b5b828201905092915050565b6000614fcd826150eb565b9150614fd8836150eb565b925082614fe857614fe7615212565b5b828204905092915050565b6000614ffe826150eb565b9150615009836150eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615042576150416151e3565b5b828202905092915050565b6000615058826150eb565b9150615063836150eb565b925082821015615076576150756151e3565b5b828203905092915050565b600061508c826150cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615122578082015181840152602081019050615107565b83811115615131576000848401525b50505050565b6000600282049050600182168061514f57607f821691505b6020821081141561516357615162615241565b5b50919050565b6000615174826150eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151a7576151a66151e3565b5b600182019050919050565b60006151bd826150eb565b91506151c8836150eb565b9250826151d8576151d7615212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152b981615081565b81146152c457600080fd5b50565b6152d081615093565b81146152db57600080fd5b50565b6152e78161509f565b81146152f257600080fd5b50565b6152fe816150eb565b811461530957600080fd5b5056fea26469706673582212204e44c0fba25d9f9f4d40653681f5353ae0679b7553a50181836508d54cce220564736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170692e706f7461746f706f7765722e636c75622f6170692f6d657461646174612f00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063e640cf7d1161006f578063e640cf7d14610814578063e75722301461083f578063e7cd4a041461087c578063e985e9c5146108a5578063f2fde38b146108e257610225565b8063a22cb4651461071d578063b88d4fde14610746578063c2f037761461076f578063c87b56dd146107ac578063d5abeb01146107e957610225565b80638da5cb5b116100f25780638da5cb5b1461062f578063931688cb1461065a57806395d89b41146106975780639d1b464a146106c2578063a0712d68146106ed57610225565b8063715018a61461059b5780637fc6686e146105b25780638456cb59146105db5780638462151c146105f257610225565b80632f745c59116101b15780634e99b800116101755780634e99b8001461048e5780634f6ccce7146104b95780635c975abb146104f65780636352211e1461052157806370a082311461055e57610225565b80632f745c59146103d15780633ccfd60b1461040e5780633f4ba83a1461042557806342842e0e1461043c57806342966c681461046557610225565b8063081812fc116101f8578063081812fc146102da578063095ea7b31461031757806318160ddd146103405780631f5e3d1a1461036b57806323b872dd146103a857610225565b806301ffc9a71461022a57806305d60ffb1461026757806306fdde03146102a5578063080450de146102d0575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613c4e565b61090b565b60405161025e9190614a07565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613aa7565b610985565b60405161029c9291906149bc565b60405180910390f35b3480156102b157600080fd5b506102ba6109d6565b6040516102c79190614a22565b60405180910390f35b6102d8610a68565b005b3480156102e657600080fd5b5061030160048036038101906102fc9190613ce1565b610cfe565b60405161030e9190614955565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190613c12565b610d83565b005b34801561034c57600080fd5b50610355610e9b565b6040516103629190614e44565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190613ce1565b610ea8565b60405161039f9190614e44565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190613b0c565b6110e5565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613c12565b611145565b6040516104059190614e44565b60405180910390f35b34801561041a57600080fd5b506104236111ea565b005b34801561043157600080fd5b5061043a6112bc565b005b34801561044857600080fd5b50610463600480360381019061045e9190613b0c565b611389565b005b34801561047157600080fd5b5061048c60048036038101906104879190613ce1565b6113a9565b005b34801561049a57600080fd5b506104a361142b565b6040516104b09190614a22565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613ce1565b6114b9565b6040516104ed9190614e44565b60405180910390f35b34801561050257600080fd5b5061050b611550565b6040516105189190614a07565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190613ce1565b611567565b6040516105559190614955565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613aa7565b611619565b6040516105929190614e44565b60405180910390f35b3480156105a757600080fd5b506105b06116d1565b005b3480156105be57600080fd5b506105d960048036038101906105d49190613ce1565b611759565b005b3480156105e757600080fd5b506105f0611816565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613aa7565b6118e4565b60405161062691906149e5565b60405180910390f35b34801561063b57600080fd5b506106446119de565b6040516106519190614955565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613ca0565b611a08565b60405161068e9190614a22565b60405180910390f35b3480156106a357600080fd5b506106ac611b2f565b6040516106b99190614a22565b60405180910390f35b3480156106ce57600080fd5b506106d7611bc1565b6040516106e49190614e44565b60405180910390f35b61070760048036038101906107029190613ce1565b611bc7565b6040516107149190614e44565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613bd6565b611e1b565b005b34801561075257600080fd5b5061076d60048036038101906107689190613b5b565b611f9c565b005b34801561077b57600080fd5b5061079660048036038101906107919190613aa7565b611ffe565b6040516107a39190614a07565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613ce1565b61201e565b6040516107e09190614a22565b60405180910390f35b3480156107f557600080fd5b506107fe6120c5565b60405161080b9190614e44565b60405180910390f35b34801561082057600080fd5b506108296120cb565b6040516108369190614e44565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613ce1565b6120d1565b6040516108739190614e44565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190613aa7565b6120e8565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190613ad0565b612323565b6040516108d99190614a07565b60405180910390f35b3480156108ee57600080fd5b5061090960048036038101906109049190613aa7565b6123b7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d826124af565b5b9050919050565b600b6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060000160149054906101000a900460ff16905082565b6060600080546109e590615137565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190615137565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290614b24565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600015158160000160149054906101000a900460ff16151514610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90614c44565b60405180910390fd5b6010543414610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190614de4565b60405180910390fd5b600f54610be7600e612591565b10610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90614a44565b60405180910390fd5b6000610c33600e61259f565b610c3d600e612591565b9050610c4933826125b5565b610cdd8160128054610c5a90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690615137565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b5050505050612783565b60018260000160146101000a81548160ff0219169083151502179055505050565b6000610d09826127f7565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90614d24565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d8e82611567565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690614dc4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e1e612863565b73ffffffffffffffffffffffffffffffffffffffff161480610e4d5750610e4c81610e47612863565b612323565b5b610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390614c64565b60405180910390fd5b610e96838361286b565b505050565b6000600880549050905090565b6000610eb2612863565b73ffffffffffffffffffffffffffffffffffffffff16610ed06119de565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614d44565b60405180910390fd5b603c821115610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614b04565b60405180910390fd5b600f5482610f76612924565b610f809190614f6c565b1115610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890614d64565b60405180910390fd5b60008211611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614b64565b60405180910390fd5b600080600090505b838110156110db5761101e600e61259f565b611028600e612591565b915061103433836125b5565b6110c8826012805461104590615137565b80601f016020809104026020016040519081016040528092919081815260200182805461107190615137565b80156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b5050505050612783565b80806110d390615169565b91505061100c565b5080915050919050565b6110f66110f0612863565b82612935565b611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90614e04565b60405180910390fd5b611140838383612a13565b505050565b600061115083611619565b8210611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890614a84565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111f2612863565b73ffffffffffffffffffffffffffffffffffffffff166112106119de565b73ffffffffffffffffffffffffffffffffffffffff1614611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614d44565b60405180910390fd5b60004790506112736119de565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112b8573d6000803e3d6000fd5b5050565b6112c4612863565b73ffffffffffffffffffffffffffffffffffffffff166112e26119de565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90614d44565b60405180910390fd5b611340611550565b61137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614a64565b60405180910390fd5b611387612c6f565b565b6113a483838360405180602001604052806000815250611f9c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166113c982611567565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614c04565b60405180910390fd5b61142881612d11565b50565b6012805461143890615137565b80601f016020809104026020016040519081016040528092919081815260200182805461146490615137565b80156114b15780601f10611486576101008083540402835291602001916114b1565b820191906000526020600020905b81548152906001019060200180831161149457829003601f168201915b505050505081565b60006114c3610e9b565b8210611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90614e24565b60405180910390fd5b6008828154811061153e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614ca4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190614c84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d9612863565b73ffffffffffffffffffffffffffffffffffffffff166116f76119de565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490614d44565b60405180910390fd5b6117576000612e22565b565b611761612863565b73ffffffffffffffffffffffffffffffffffffffff1661177f6119de565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90614d44565b60405180910390fd5b806010819055507f4b9d786179e2599e65d6eb10cdb73af77287bb79b562194500404a8612be16578160405161180b9190614e44565b60405180910390a150565b61181e612863565b73ffffffffffffffffffffffffffffffffffffffff1661183c6119de565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990614d44565b60405180910390fd5b61189a611550565b156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614c24565b60405180910390fd5b6118e2612ee8565b565b606060006118f183611619565b905060008167ffffffffffffffff811115611935577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119635781602001602082028036833780820191505090505b50905060005b828110156119d35761197b8582611145565b8282815181106119b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806119cb90615169565b915050611969565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060611a12612863565b73ffffffffffffffffffffffffffffffffffffffff16611a306119de565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90614d44565b60405180910390fd5b8160129080519060200190611a9c9291906138cb565b5060128054611aaa90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad690615137565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b50505050509050919050565b606060018054611b3e90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6a90615137565b8015611bb75780601f10611b8c57610100808354040283529160200191611bb7565b820191906000526020600020905b815481529060010190602001808311611b9a57829003601f168201915b5050505050905090565b60105481565b6000611bd1611550565b15611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890614c24565b60405180910390fd5b600f5482611c1d612924565b611c279190614f6c565b1115611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614d64565b60405180910390fd5b60008211611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca290614b64565b60405180910390fd5b601154821115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614d04565b60405180910390fd5b34611cfa836120d1565b14611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190614bc4565b60405180910390fd5b600080600090505b83811015611e1157611d54600e61259f565b611d5e600e612591565b9150611d6a33836125b5565b611dfe8260128054611d7b90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611da790615137565b8015611df45780601f10611dc957610100808354040283529160200191611df4565b820191906000526020600020905b815481529060010190602001808311611dd757829003601f168201915b5050505050612783565b8080611e0990615169565b915050611d42565b5080915050919050565b611e23612863565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890614ba4565b60405180910390fd5b8060056000611e9e612863565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4b612863565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f909190614a07565b60405180910390a35050565b611fad611fa7612863565b83612935565b611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390614e04565b60405180910390fd5b611ff884848484612f8b565b50505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6060612029826127f7565b612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614da4565b60405180910390fd5b6000612072612fe7565b9050600081511161209257604051806020016040528060008152506120bd565b8061209c84613079565b6040516020016120ad929190614931565b6040516020818303038152906040525b915050919050565b600f5481565b60115481565b6000601054826120e19190614ff3565b9050919050565b6120f0612863565b73ffffffffffffffffffffffffffffffffffffffff1661210e6119de565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b90614d44565b60405180910390fd5b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614b44565b60405180910390fd5b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160001515815250600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548160ff0219169083151502179055509050506001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123bf612863565b73ffffffffffffffffffffffffffffffffffffffff166123dd6119de565b73ffffffffffffffffffffffffffffffffffffffff1614612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614d44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614ac4565b60405180910390fd5b6124ac81612e22565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061258a575061258982613226565b5b9050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614ce4565b60405180910390fd5b61262e816127f7565b1561266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614ae4565b60405180910390fd5b61267a60008383613290565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ca9190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61278c826127f7565b6127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290614cc4565b60405180910390fd5b80600d600084815260200190815260200160002090805190602001906127f29291906138cb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128de83611567565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612930600e612591565b905090565b6000612940826127f7565b61297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614be4565b60405180910390fd5b600061298a83611567565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129f957508373ffffffffffffffffffffffffffffffffffffffff166129e184610cfe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0a5750612a098185612323565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a3382611567565b73ffffffffffffffffffffffffffffffffffffffff1614612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090614d84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614b84565b60405180910390fd5b612b04838383613290565b612b0f60008261286b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f919061504d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb69190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c77611550565b612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90614a64565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cfa612863565b604051612d079190614955565b60405180910390a1565b6000612d1c82611567565b9050612d2a81600084613290565b612d3560008361286b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d85919061504d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ef0611550565b15612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2790614c24565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f74612863565b604051612f819190614955565b60405180910390a1565b612f96848484612a13565b612fa2848484846133a4565b612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd890614aa4565b60405180910390fd5b50505050565b606060128054612ff690615137565b80601f016020809104026020016040519081016040528092919081815260200182805461302290615137565b801561306f5780601f106130445761010080835404028352916020019161306f565b820191906000526020600020905b81548152906001019060200180831161305257829003601f168201915b5050505050905090565b606060008214156130c1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613221565b600082905060005b600082146130f35780806130dc90615169565b915050600a826130ec9190614fc2565b91506130c9565b60008167ffffffffffffffff811115613135577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b6000851461321a57600182613180919061504d565b9150600a8561318f91906151b2565b603061319b9190614f6c565b60f81b8183815181106131d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132139190614fc2565b945061316b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61329b83838361353b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576132d981613540565b61331d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461331c5761331b8382613589565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133605761335b816136f6565b61339f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461339e5761339d8282613839565b5b5b505050565b60006133c58473ffffffffffffffffffffffffffffffffffffffff166138b8565b1561352e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ee612863565b8786866040518563ffffffff1660e01b81526004016134109493929190614970565b602060405180830381600087803b15801561342a57600080fd5b505af192505050801561345b57506040513d601f19601f820116820180604052508101906134589190613c77565b60015b6134de573d806000811461348b576040519150601f19603f3d011682016040523d82523d6000602084013e613490565b606091505b506000815114156134d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134cd90614aa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613533565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161359684611619565b6135a0919061504d565b9050600060076000848152602001908152602001600020549050818114613685576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061370a919061504d565b9050600060096000848152602001908152602001600020549050600060088381548110613760577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106137a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061381d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061384483611619565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546138d790615137565b90600052602060002090601f0160209004810192826138f95760008555613940565b82601f1061391257805160ff1916838001178555613940565b82800160010185558215613940579182015b8281111561393f578251825591602001919060010190613924565b5b50905061394d9190613951565b5090565b5b8082111561396a576000816000905550600101613952565b5090565b600061398161397c84614e90565b614e5f565b90508281526020810184848401111561399957600080fd5b6139a48482856150f5565b509392505050565b60006139bf6139ba84614ec0565b614e5f565b9050828152602081018484840111156139d757600080fd5b6139e28482856150f5565b509392505050565b6000813590506139f9816152b0565b92915050565b600081359050613a0e816152c7565b92915050565b600081359050613a23816152de565b92915050565b600081519050613a38816152de565b92915050565b600082601f830112613a4f57600080fd5b8135613a5f84826020860161396e565b91505092915050565b600082601f830112613a7957600080fd5b8135613a898482602086016139ac565b91505092915050565b600081359050613aa1816152f5565b92915050565b600060208284031215613ab957600080fd5b6000613ac7848285016139ea565b91505092915050565b60008060408385031215613ae357600080fd5b6000613af1858286016139ea565b9250506020613b02858286016139ea565b9150509250929050565b600080600060608486031215613b2157600080fd5b6000613b2f868287016139ea565b9350506020613b40868287016139ea565b9250506040613b5186828701613a92565b9150509250925092565b60008060008060808587031215613b7157600080fd5b6000613b7f878288016139ea565b9450506020613b90878288016139ea565b9350506040613ba187828801613a92565b925050606085013567ffffffffffffffff811115613bbe57600080fd5b613bca87828801613a3e565b91505092959194509250565b60008060408385031215613be957600080fd5b6000613bf7858286016139ea565b9250506020613c08858286016139ff565b9150509250929050565b60008060408385031215613c2557600080fd5b6000613c33858286016139ea565b9250506020613c4485828601613a92565b9150509250929050565b600060208284031215613c6057600080fd5b6000613c6e84828501613a14565b91505092915050565b600060208284031215613c8957600080fd5b6000613c9784828501613a29565b91505092915050565b600060208284031215613cb257600080fd5b600082013567ffffffffffffffff811115613ccc57600080fd5b613cd884828501613a68565b91505092915050565b600060208284031215613cf357600080fd5b6000613d0184828501613a92565b91505092915050565b6000613d168383614913565b60208301905092915050565b613d2b81615081565b82525050565b6000613d3c82614f00565b613d468185614f2e565b9350613d5183614ef0565b8060005b83811015613d82578151613d698882613d0a565b9750613d7483614f21565b925050600181019050613d55565b5085935050505092915050565b613d9881615093565b82525050565b6000613da982614f0b565b613db38185614f3f565b9350613dc3818560208601615104565b613dcc8161529f565b840191505092915050565b6000613de282614f16565b613dec8185614f50565b9350613dfc818560208601615104565b613e058161529f565b840191505092915050565b6000613e1b82614f16565b613e258185614f61565b9350613e35818560208601615104565b80840191505092915050565b6000613e4e601383614f50565b91507f4d617820537570706c79204578636565646564000000000000000000000000006000830152602082019050919050565b6000613e8e601483614f50565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613ece602b83614f50565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f34603283614f50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f9a602683614f50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614000601c83614f50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614040603083614f50565b91507f596f757220617265206e6f7420616c6c6f77656420746f206d696e74206d6f7260008301527f65207468616e20363020746f6b656e73000000000000000000000000000000006020830152604082019050919050565b60006140a6601e83614f50565b91507f41646472657373206e6f7420466f756e6420696e2077686974656c69737400006000830152602082019050919050565b60006140e6601583614f50565b91507f4164647265737320616c726561647920457869737400000000000000000000006000830152602082019050919050565b6000614126602283614f50565b91507f7175616e74697479206d7573742062652067726561746572207468656e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061418c602483614f50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141f2601983614f50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614232601f83614f50565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614272602c83614f50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142d8601c83614f50565b91507f796f7520617265206e6f74206f776e6572206f662074686973206964000000006000830152602082019050919050565b6000614318601083614f50565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614358601b83614f50565b91507f5573657220416c7265616479206d696e746564206120746f6b656e00000000006000830152602082019050919050565b6000614398603883614f50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006143fe602a83614f50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614464602983614f50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006144ca602e83614f50565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000614530602083614f50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614570603083614f50565b91507f596f757220617265206e6f7420616c6c6f77656420746f206d696e74206d6f7260008301527f65207468616e20333020746f6b656e73000000000000000000000000000000006020830152604082019050919050565b60006145d6602c83614f50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061463c602083614f50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061467c602683614f50565b91507f5175616e74697479206d757374206265206c6573736572207468656e204d617860008301527f537570706c7900000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e2602983614f50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614748602f83614f50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006147ae602183614f50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614814600b83614f50565b91507f5072696365204572726f720000000000000000000000000000000000000000006000830152602082019050919050565b6000614854603183614f50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006148ba602c83614f50565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61491c816150eb565b82525050565b61492b816150eb565b82525050565b600061493d8285613e10565b91506149498284613e10565b91508190509392505050565b600060208201905061496a6000830184613d22565b92915050565b60006080820190506149856000830187613d22565b6149926020830186613d22565b61499f6040830185614922565b81810360608301526149b18184613d9e565b905095945050505050565b60006040820190506149d16000830185613d22565b6149de6020830184613d8f565b9392505050565b600060208201905081810360008301526149ff8184613d31565b905092915050565b6000602082019050614a1c6000830184613d8f565b92915050565b60006020820190508181036000830152614a3c8184613dd7565b905092915050565b60006020820190508181036000830152614a5d81613e41565b9050919050565b60006020820190508181036000830152614a7d81613e81565b9050919050565b60006020820190508181036000830152614a9d81613ec1565b9050919050565b60006020820190508181036000830152614abd81613f27565b9050919050565b60006020820190508181036000830152614add81613f8d565b9050919050565b60006020820190508181036000830152614afd81613ff3565b9050919050565b60006020820190508181036000830152614b1d81614033565b9050919050565b60006020820190508181036000830152614b3d81614099565b9050919050565b60006020820190508181036000830152614b5d816140d9565b9050919050565b60006020820190508181036000830152614b7d81614119565b9050919050565b60006020820190508181036000830152614b9d8161417f565b9050919050565b60006020820190508181036000830152614bbd816141e5565b9050919050565b60006020820190508181036000830152614bdd81614225565b9050919050565b60006020820190508181036000830152614bfd81614265565b9050919050565b60006020820190508181036000830152614c1d816142cb565b9050919050565b60006020820190508181036000830152614c3d8161430b565b9050919050565b60006020820190508181036000830152614c5d8161434b565b9050919050565b60006020820190508181036000830152614c7d8161438b565b9050919050565b60006020820190508181036000830152614c9d816143f1565b9050919050565b60006020820190508181036000830152614cbd81614457565b9050919050565b60006020820190508181036000830152614cdd816144bd565b9050919050565b60006020820190508181036000830152614cfd81614523565b9050919050565b60006020820190508181036000830152614d1d81614563565b9050919050565b60006020820190508181036000830152614d3d816145c9565b9050919050565b60006020820190508181036000830152614d5d8161462f565b9050919050565b60006020820190508181036000830152614d7d8161466f565b9050919050565b60006020820190508181036000830152614d9d816146d5565b9050919050565b60006020820190508181036000830152614dbd8161473b565b9050919050565b60006020820190508181036000830152614ddd816147a1565b9050919050565b60006020820190508181036000830152614dfd81614807565b9050919050565b60006020820190508181036000830152614e1d81614847565b9050919050565b60006020820190508181036000830152614e3d816148ad565b9050919050565b6000602082019050614e596000830184614922565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e8657614e85615270565b5b8060405250919050565b600067ffffffffffffffff821115614eab57614eaa615270565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614edb57614eda615270565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f77826150eb565b9150614f82836150eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb757614fb66151e3565b5b828201905092915050565b6000614fcd826150eb565b9150614fd8836150eb565b925082614fe857614fe7615212565b5b828204905092915050565b6000614ffe826150eb565b9150615009836150eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615042576150416151e3565b5b828202905092915050565b6000615058826150eb565b9150615063836150eb565b925082821015615076576150756151e3565b5b828203905092915050565b600061508c826150cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615122578082015181840152602081019050615107565b83811115615131576000848401525b50505050565b6000600282049050600182168061514f57607f821691505b6020821081141561516357615162615241565b5b50919050565b6000615174826150eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151a7576151a66151e3565b5b600182019050919050565b60006151bd826150eb565b91506151c8836150eb565b9250826151d8576151d7615212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152b981615081565b81146152c457600080fd5b50565b6152d081615093565b81146152db57600080fd5b50565b6152e78161509f565b81146152f257600080fd5b50565b6152fe816150eb565b811461530957600080fd5b5056fea26469706673582212204e44c0fba25d9f9f4d40653681f5353ae0679b7553a50181836508d54cce220564736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170692e706f7461746f706f7765722e636c75622f6170692f6d657461646174612f00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURII (string): https://api.potatopower.club/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [2] : 68747470733a2f2f6170692e706f7461746f706f7765722e636c75622f617069
Arg [3] : 2f6d657461646174612f00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46740:5154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40588:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46991:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;27971:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49845:652;;;:::i;:::-;;29530:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29053:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41228:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48434:630;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30420:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40896:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49335:135;;;;;;;;;;;;;:::i;:::-;;51796:83;;;;;;;;;;;;;:::i;:::-;;30830:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50510:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47325:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41418:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4078:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27665:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27395:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9898:94;;;;;;;;;;;;;:::i;:::-;;51266:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51703:80;;;;;;;;;;;;;:::i;:::-;;50675:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9247:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51539:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28140:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47242:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47709:716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29823:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31086:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47053:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28315:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47204:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47289:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47559:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49482:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30189:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10147:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40588:224;40690:4;40729:35;40714:50;;;:11;:50;;;;:90;;;;40768:36;40792:11;40768:23;:36::i;:::-;40714:90;40707:97;;40588:224;;;:::o;46991:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27971:100::-;28025:13;28058:5;28051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27971:100;:::o;49845:652::-;49935:4;49908:31;;:13;:25;49922:10;49908:25;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;49900:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49984:35;50022:10;:22;50033:10;50022:22;;;;;;;;;;;;;;;49984:60;;50089:5;50073:21;;:9;:14;;;;;;;;;;;;:21;;;50065:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:12;;50144:9;:23;50136:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50223:9;;50201:19;:9;:17;:19::i;:::-;:31;50193:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50269:17;50298:21;:9;:19;:21::i;:::-;50343:19;:9;:17;:19::i;:::-;50331:31;;50373:28;50379:10;50391:9;50373:5;:28::i;:::-;50412:37;50425:9;50436:12;50412:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:37::i;:::-;50475:4;50460:9;:14;;;:19;;;;;;;;;;;;;;;;;;49845:652;;:::o;29530:221::-;29606:7;29634:16;29642:7;29634;:16::i;:::-;29626:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29719:15;:24;29735:7;29719:24;;;;;;;;;;;;;;;;;;;;;29712:31;;29530:221;;;:::o;29053:411::-;29134:13;29150:23;29165:7;29150:14;:23::i;:::-;29134:39;;29198:5;29192:11;;:2;:11;;;;29184:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29292:5;29276:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29301:37;29318:5;29325:12;:10;:12::i;:::-;29301:16;:37::i;:::-;29276:62;29254:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29435:21;29444:2;29448:7;29435:8;:21::i;:::-;29053:411;;;:::o;41228:113::-;41289:7;41316:10;:17;;;;41309:24;;41228:113;:::o;48434:630::-;48504:7;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48545:2:::1;48532:9;:15;;48524:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48645:9;;48634;48619:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:35;;48611:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48725:1;48715:9;:11;48707:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48775:17;48810:9:::0;48822:1:::1;48810:13;;48805:219;48829:9;48825:1;:13;48805:219;;;48865:21;:9;:19;:21::i;:::-;48910:19;:9;:17;:19::i;:::-;48898:31;;48940:28;48946:10;48958:9;48940:5;:28::i;:::-;48979:37;48992:9;49003:12;48979:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:37::i;:::-;48840:3;;;;;:::i;:::-;;;;48805:219;;;;49045:9;49038:16;;;48434:630:::0;;;:::o;30420:339::-;30615:41;30634:12;:10;:12::i;:::-;30648:7;30615:18;:41::i;:::-;30607:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30723:28;30733:4;30739:2;30743:7;30723:9;:28::i;:::-;30420:339;;;:::o;40896:256::-;40993:7;41029:23;41046:5;41029:16;:23::i;:::-;41021:5;:31;41013:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;41118:12;:19;41131:5;41118:19;;;;;;;;;;;;;;;:26;41138:5;41118:26;;;;;;;;;;;;41111:33;;40896:256;;;;:::o;49335:135::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49383:11:::1;49397:21;49383:35;;49437:7;:5;:7::i;:::-;49429:25;;:33;49455:6;49429:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;9538:1;49335:135::o:0;51796:83::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4681:8:::1;:6;:8::i;:::-;4673:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;51861:10:::2;:8;:10::i;:::-;51796:83::o:0;30830:185::-;30968:39;30985:4;30991:2;30995:7;30968:39;;;;;;;;;;;;:16;:39::i;:::-;30830:185;;;:::o;50510:152::-;50587:10;50569:28;;:16;50577:7;50569;:16::i;:::-;:28;;;50561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50640:14;50646:7;50640:5;:14::i;:::-;50510:152;:::o;47325:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41418:233::-;41493:7;41529:30;:28;:30::i;:::-;41521:5;:38;41513:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41626:10;41637:5;41626:17;;;;;;;;;;;;;;;;;;;;;;;;41619:24;;41418:233;;;:::o;4078:86::-;4125:4;4149:7;;;;;;;;;;;4142:14;;4078:86;:::o;27665:239::-;27737:7;27757:13;27773:7;:16;27781:7;27773:16;;;;;;;;;;;;;;;;;;;;;27757:32;;27825:1;27808:19;;:5;:19;;;;27800:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27891:5;27884:12;;;27665:239;;;:::o;27395:208::-;27467:7;27512:1;27495:19;;:5;:19;;;;27487:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27579:9;:16;27589:5;27579:16;;;;;;;;;;;;;;;;27572:23;;27395:208;;;:::o;9898:94::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9963:21:::1;9981:1;9963:9;:21::i;:::-;9898:94::o:0;51266:142::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51353:6:::1;51338:12;:21;;;;51375:25;51393:6;51375:25;;;;;;:::i;:::-;;;;;;;;51266:142:::0;:::o;51703:80::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4404:8:::1;:6;:8::i;:::-;4403:9;4395:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;51767:8:::2;:6;:8::i;:::-;51703:80::o:0;50675:351::-;50735:16;50769:13;50785:17;50795:6;50785:9;:17::i;:::-;50769:33;;50813:23;50853:5;50839:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50813:46;;50875:13;50870:125;50902:5;50894;:13;50870:125;;;50949:34;50969:6;50977:5;50949:19;:34::i;:::-;50933:6;50940:5;50933:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;50909:7;;;;;:::i;:::-;;;;50870:125;;;;51012:6;51005:13;;;;50675:351;;;:::o;9247:87::-;9293:7;9320:6;;;;;;;;;;;9313:13;;9247:87;:::o;51539:159::-;51613:13;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51654:10:::1;51641:12;:23;;;;;;;;;;;;:::i;:::-;;51680:12;51673:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51539:159:::0;;;:::o;28140:104::-;28196:13;28229:7;28222:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28140:104;:::o;47242:40::-;;;;:::o;47709:716::-;47783:7;4404:8;:6;:8::i;:::-;4403:9;4395:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;47833:9:::1;;47822;47807:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:35;;47799:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47909:1;47899:9;:11;47891:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47976:11;;47963:9;:24;;47955:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48078:9;48055:19;48064:9;48055:8;:19::i;:::-;:32;48047:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48136:17;48171:9:::0;48183:1:::1;48171:13;;48166:219;48190:9;48186:1;:13;48166:219;;;48226:21;:9;:19;:21::i;:::-;48271:19;:9;:17;:19::i;:::-;48259:31;;48301:28;48307:10;48319:9;48301:5;:28::i;:::-;48340:37;48353:9;48364:12;48340:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:37::i;:::-;48201:3;;;;;:::i;:::-;;;;48166:219;;;;48406:9;48399:16;;;47709:716:::0;;;:::o;29823:295::-;29938:12;:10;:12::i;:::-;29926:24;;:8;:24;;;;29918:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30038:8;29993:18;:32;30012:12;:10;:12::i;:::-;29993:32;;;;;;;;;;;;;;;:42;30026:8;29993:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30091:8;30062:48;;30077:12;:10;:12::i;:::-;30062:48;;;30101:8;30062:48;;;;;;:::i;:::-;;;;;;;;29823:295;;:::o;31086:328::-;31261:41;31280:12;:10;:12::i;:::-;31294:7;31261:18;:41::i;:::-;31253:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31367:39;31381:4;31387:2;31391:7;31400:5;31367:13;:39::i;:::-;31086:328;;;;:::o;47053:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;28315:334::-;28388:13;28422:16;28430:7;28422;:16::i;:::-;28414:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28503:21;28527:10;:8;:10::i;:::-;28503:34;;28579:1;28561:7;28555:21;:25;:86;;;;;;;;;;;;;;;;;28607:7;28616:18;:7;:16;:18::i;:::-;28590:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28555:86;28548:93;;;28315:334;;;:::o;47204:31::-;;;;:::o;47289:29::-;;;;:::o;47559:132::-;47617:7;47666:12;;47656:9;:22;;;;:::i;:::-;47649:29;;47559:132;;;:::o;49482:351::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49562:13:::1;:27;49576:12;49562:27;;;;;;;;;;;;;;;;;;;;;;;;;49561:28;49553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49660:96;;;;;;;;49706:10;49660:96;;;;;;49736:5;49660:96;;;;::::0;49635:10:::1;:24;49646:12;49635:24;;;;;;;;;;;;;;;:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49811:4;49783:13;:27;49797:12;49783:27;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;49482:351:::0;:::o;30189:164::-;30286:4;30310:18;:25;30329:5;30310:25;;;;;;;;;;;;;;;:35;30336:8;30310:35;;;;;;;;;;;;;;;;;;;;;;;;;30303:42;;30189:164;;;;:::o;10147:192::-;9478:12;:10;:12::i;:::-;9467:23;;:7;:5;:7::i;:::-;:23;;;9459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10256:1:::1;10236:22;;:8;:22;;;;10228:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10312:19;10322:8;10312:9;:19::i;:::-;10147:192:::0;:::o;27026:305::-;27128:4;27180:25;27165:40;;;:11;:40;;;;:105;;;;27237:33;27222:48;;;:11;:48;;;;27165:105;:158;;;;27287:36;27311:11;27287:23;:36::i;:::-;27165:158;27145:178;;27026:305;;;:::o;1391:114::-;1456:7;1483;:14;;;1476:21;;1391:114;;;:::o;1513:127::-;1620:1;1602:7;:14;;;:19;;;;;;;;;;;1513:127;:::o;34902:382::-;34996:1;34982:16;;:2;:16;;;;34974:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35055:16;35063:7;35055;:16::i;:::-;35054:17;35046:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35117:45;35146:1;35150:2;35154:7;35117:20;:45::i;:::-;35192:1;35175:9;:13;35185:2;35175:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35223:2;35204:7;:16;35212:7;35204:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35268:7;35264:2;35243:33;;35260:1;35243:33;;;;;;;;;;;;34902:382;;:::o;51041:215::-;51140:16;51148:7;51140;:16::i;:::-;51132:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;51240:8;51218:10;:19;51229:7;51218:19;;;;;;;;;;;:30;;;;;;;;;;;;:::i;:::-;;51041:215;;:::o;32924:127::-;32989:4;33041:1;33013:30;;:7;:16;33021:7;33013:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33006:37;;32924:127;;;:::o;2126:98::-;2179:7;2206:10;2199:17;;2126:98;:::o;36906:174::-;37008:2;36981:15;:24;36997:7;36981:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37064:7;37060:2;37026:46;;37035:23;37050:7;37035:14;:23::i;:::-;37026:46;;;;;;;;;;;;36906:174;;:::o;49141:100::-;49187:7;49214:19;:9;:17;:19::i;:::-;49207:26;;49141:100;:::o;33218:348::-;33311:4;33336:16;33344:7;33336;:16::i;:::-;33328:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33412:13;33428:23;33443:7;33428:14;:23::i;:::-;33412:39;;33481:5;33470:16;;:7;:16;;;:51;;;;33514:7;33490:31;;:20;33502:7;33490:11;:20::i;:::-;:31;;;33470:51;:87;;;;33525:32;33542:5;33549:7;33525:16;:32::i;:::-;33470:87;33462:96;;;33218:348;;;;:::o;36210:578::-;36369:4;36342:31;;:23;36357:7;36342:14;:23::i;:::-;:31;;;36334:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36452:1;36438:16;;:2;:16;;;;36430:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36508:39;36529:4;36535:2;36539:7;36508:20;:39::i;:::-;36612:29;36629:1;36633:7;36612:8;:29::i;:::-;36673:1;36654:9;:15;36664:4;36654:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36702:1;36685:9;:13;36695:2;36685:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36733:2;36714:7;:16;36722:7;36714:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36772:7;36768:2;36753:27;;36762:4;36753:27;;;;;;;;;;;;36210:578;;;:::o;5137:120::-;4681:8;:6;:8::i;:::-;4673:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5206:5:::1;5196:7;;:15;;;;;;;;;;;;;;;;;;5227:22;5236:12;:10;:12::i;:::-;5227:22;;;;;;:::i;:::-;;;;;;;;5137:120::o:0;35513:360::-;35573:13;35589:23;35604:7;35589:14;:23::i;:::-;35573:39;;35625:48;35646:5;35661:1;35665:7;35625:20;:48::i;:::-;35714:29;35731:1;35735:7;35714:8;:29::i;:::-;35776:1;35756:9;:16;35766:5;35756:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;35795:7;:16;35803:7;35795:16;;;;;;;;;;;;35788:23;;;;;;;;;;;35857:7;35853:1;35829:36;;35838:5;35829:36;;;;;;;;;;;;35513:360;;:::o;10347:173::-;10403:16;10422:6;;;;;;;;;;;10403:25;;10448:8;10439:6;;:17;;;;;;;;;;;;;;;;;;10503:8;10472:40;;10493:8;10472:40;;;;;;;;;;;;10347:173;;:::o;4878:118::-;4404:8;:6;:8::i;:::-;4403:9;4395:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;4948:4:::1;4938:7;;:14;;;;;;;;;;;;;;;;;;4968:20;4975:12;:10;:12::i;:::-;4968:20;;;;;;:::i;:::-;;;;;;;;4878:118::o:0;32296:315::-;32453:28;32463:4;32469:2;32473:7;32453:9;:28::i;:::-;32500:48;32523:4;32529:2;32533:7;32542:5;32500:22;:48::i;:::-;32492:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32296:315;;;;:::o;51431:100::-;51483:13;51512:12;51505:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51431:100;:::o;6467:723::-;6523:13;6753:1;6744:5;:10;6740:53;;;6771:10;;;;;;;;;;;;;;;;;;;;;6740:53;6803:12;6818:5;6803:20;;6834:14;6859:78;6874:1;6866:4;:9;6859:78;;6892:8;;;;;:::i;:::-;;;;6923:2;6915:10;;;;;:::i;:::-;;;6859:78;;;6947:19;6979:6;6969:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6947:39;;6997:154;7013:1;7004:5;:10;6997:154;;7041:1;7031:11;;;;;:::i;:::-;;;7108:2;7100:5;:10;;;;:::i;:::-;7087:2;:24;;;;:::i;:::-;7074:39;;7057:6;7064;7057:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7137:2;7128:11;;;;;:::i;:::-;;;6997:154;;;7175:6;7161:21;;;;;6467:723;;;;:::o;5966:157::-;6051:4;6090:25;6075:40;;;:11;:40;;;;6068:47;;5966:157;;;:::o;42264:589::-;42408:45;42435:4;42441:2;42445:7;42408:26;:45::i;:::-;42486:1;42470:18;;:4;:18;;;42466:187;;;42505:40;42537:7;42505:31;:40::i;:::-;42466:187;;;42575:2;42567:10;;:4;:10;;;42563:90;;42594:47;42627:4;42633:7;42594:32;:47::i;:::-;42563:90;42466:187;42681:1;42667:16;;:2;:16;;;42663:183;;;42700:45;42737:7;42700:36;:45::i;:::-;42663:183;;;42773:4;42767:10;;:2;:10;;;42763:83;;42794:40;42822:2;42826:7;42794:27;:40::i;:::-;42763:83;42663:183;42264:589;;;:::o;37645:799::-;37800:4;37821:15;:2;:13;;;:15::i;:::-;37817:620;;;37873:2;37857:36;;;37894:12;:10;:12::i;:::-;37908:4;37914:7;37923:5;37857:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37853:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38116:1;38099:6;:13;:18;38095:272;;;38142:60;;;;;;;;;;:::i;:::-;;;;;;;;38095:272;38317:6;38311:13;38302:6;38298:2;38294:15;38287:38;37853:529;37990:41;;;37980:51;;;:6;:51;;;;37973:58;;;;;37817:620;38421:4;38414:11;;37645:799;;;;;;;:::o;39016:126::-;;;;:::o;43576:164::-;43680:10;:17;;;;43653:15;:24;43669:7;43653:24;;;;;;;;;;;:44;;;;43708:10;43724:7;43708:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43576:164;:::o;44367:988::-;44633:22;44683:1;44658:22;44675:4;44658:16;:22::i;:::-;:26;;;;:::i;:::-;44633:51;;44695:18;44716:17;:26;44734:7;44716:26;;;;;;;;;;;;44695:47;;44863:14;44849:10;:28;44845:328;;44894:19;44916:12;:18;44929:4;44916:18;;;;;;;;;;;;;;;:34;44935:14;44916:34;;;;;;;;;;;;44894:56;;45000:11;44967:12;:18;44980:4;44967:18;;;;;;;;;;;;;;;:30;44986:10;44967:30;;;;;;;;;;;:44;;;;45117:10;45084:17;:30;45102:11;45084:30;;;;;;;;;;;:43;;;;44845:328;;45269:17;:26;45287:7;45269:26;;;;;;;;;;;45262:33;;;45313:12;:18;45326:4;45313:18;;;;;;;;;;;;;;;:34;45332:14;45313:34;;;;;;;;;;;45306:41;;;44367:988;;;;:::o;45650:1079::-;45903:22;45948:1;45928:10;:17;;;;:21;;;;:::i;:::-;45903:46;;45960:18;45981:15;:24;45997:7;45981:24;;;;;;;;;;;;45960:45;;46332:19;46354:10;46365:14;46354:26;;;;;;;;;;;;;;;;;;;;;;;;46332:48;;46418:11;46393:10;46404;46393:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;46529:10;46498:15;:28;46514:11;46498:28;;;;;;;;;;;:41;;;;46670:15;:24;46686:7;46670:24;;;;;;;;;;;46663:31;;;46705:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45650:1079;;;;:::o;43154:221::-;43239:14;43256:20;43273:2;43256:16;:20::i;:::-;43239:37;;43314:7;43287:12;:16;43300:2;43287:16;;;;;;;;;;;;;;;:24;43304:6;43287:24;;;;;;;;;;;:34;;;;43361:6;43332:17;:26;43350:7;43332:26;;;;;;;;;;;:35;;;;43154:221;;;:::o;11321:387::-;11381:4;11589:12;11656:7;11644:20;11636:28;;11699:1;11692:4;:8;11685:15;;;11321:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:118::-;6356:24;6374:5;6356:24;:::i;:::-;6351:3;6344:37;6334:53;;:::o;6423:732::-;;6571:54;6619:5;6571:54;:::i;:::-;6641:86;6720:6;6715:3;6641:86;:::i;:::-;6634:93;;6751:56;6801:5;6751:56;:::i;:::-;6830:7;6861:1;6846:284;6871:6;6868:1;6865:13;6846:284;;;6947:6;6941:13;6974:63;7033:3;7018:13;6974:63;:::i;:::-;6967:70;;7060:60;7113:6;7060:60;:::i;:::-;7050:70;;6906:224;6893:1;6890;6886:9;6881:14;;6846:284;;;6850:14;7146:3;7139:10;;6547:608;;;;;;;:::o;7161:109::-;7242:21;7257:5;7242:21;:::i;:::-;7237:3;7230:34;7220:50;;:::o;7276:360::-;;7390:38;7422:5;7390:38;:::i;:::-;7444:70;7507:6;7502:3;7444:70;:::i;:::-;7437:77;;7523:52;7568:6;7563:3;7556:4;7549:5;7545:16;7523:52;:::i;:::-;7600:29;7622:6;7600:29;:::i;:::-;7595:3;7591:39;7584:46;;7366:270;;;;;:::o;7642:364::-;;7758:39;7791:5;7758:39;:::i;:::-;7813:71;7877:6;7872:3;7813:71;:::i;:::-;7806:78;;7893:52;7938:6;7933:3;7926:4;7919:5;7915:16;7893:52;:::i;:::-;7970:29;7992:6;7970:29;:::i;:::-;7965:3;7961:39;7954:46;;7734:272;;;;;:::o;8012:377::-;;8146:39;8179:5;8146:39;:::i;:::-;8201:89;8283:6;8278:3;8201:89;:::i;:::-;8194:96;;8299:52;8344:6;8339:3;8332:4;8325:5;8321:16;8299:52;:::i;:::-;8376:6;8371:3;8367:16;8360:23;;8122:267;;;;;:::o;8395:317::-;;8558:67;8622:2;8617:3;8558:67;:::i;:::-;8551:74;;8655:21;8651:1;8646:3;8642:11;8635:42;8703:2;8698:3;8694:12;8687:19;;8541:171;;;:::o;8718:318::-;;8881:67;8945:2;8940:3;8881:67;:::i;:::-;8874:74;;8978:22;8974:1;8969:3;8965:11;8958:43;9027:2;9022:3;9018:12;9011:19;;8864:172;;;:::o;9042:375::-;;9205:67;9269:2;9264:3;9205:67;:::i;:::-;9198:74;;9302:34;9298:1;9293:3;9289:11;9282:55;9368:13;9363:2;9358:3;9354:12;9347:35;9408:2;9403:3;9399:12;9392:19;;9188:229;;;:::o;9423:382::-;;9586:67;9650:2;9645:3;9586:67;:::i;:::-;9579:74;;9683:34;9679:1;9674:3;9670:11;9663:55;9749:20;9744:2;9739:3;9735:12;9728:42;9796:2;9791:3;9787:12;9780:19;;9569:236;;;:::o;9811:370::-;;9974:67;10038:2;10033:3;9974:67;:::i;:::-;9967:74;;10071:34;10067:1;10062:3;10058:11;10051:55;10137:8;10132:2;10127:3;10123:12;10116:30;10172:2;10167:3;10163:12;10156:19;;9957:224;;;:::o;10187:326::-;;10350:67;10414:2;10409:3;10350:67;:::i;:::-;10343:74;;10447:30;10443:1;10438:3;10434:11;10427:51;10504:2;10499:3;10495:12;10488:19;;10333:180;;;:::o;10519:380::-;;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10779:34;10775:1;10770:3;10766:11;10759:55;10845:18;10840:2;10835:3;10831:12;10824:40;10890:2;10885:3;10881:12;10874:19;;10665:234;;;:::o;10905:328::-;;11068:67;11132:2;11127:3;11068:67;:::i;:::-;11061:74;;11165:32;11161:1;11156:3;11152:11;11145:53;11224:2;11219:3;11215:12;11208:19;;11051:182;;;:::o;11239:319::-;;11402:67;11466:2;11461:3;11402:67;:::i;:::-;11395:74;;11499:23;11495:1;11490:3;11486:11;11479:44;11549:2;11544:3;11540:12;11533:19;;11385:173;;;:::o;11564:366::-;;11727:67;11791:2;11786:3;11727:67;:::i;:::-;11720:74;;11824:34;11820:1;11815:3;11811:11;11804:55;11890:4;11885:2;11880:3;11876:12;11869:26;11921:2;11916:3;11912:12;11905:19;;11710:220;;;:::o;11936:368::-;;12099:67;12163:2;12158:3;12099:67;:::i;:::-;12092:74;;12196:34;12192:1;12187:3;12183:11;12176:55;12262:6;12257:2;12252:3;12248:12;12241:28;12295:2;12290:3;12286:12;12279:19;;12082:222;;;:::o;12310:323::-;;12473:67;12537:2;12532:3;12473:67;:::i;:::-;12466:74;;12570:27;12566:1;12561:3;12557:11;12550:48;12624:2;12619:3;12615:12;12608:19;;12456:177;;;:::o;12639:329::-;;12802:67;12866:2;12861:3;12802:67;:::i;:::-;12795:74;;12899:33;12895:1;12890:3;12886:11;12879:54;12959:2;12954:3;12950:12;12943:19;;12785:183;;;:::o;12974:376::-;;13137:67;13201:2;13196:3;13137:67;:::i;:::-;13130:74;;13234:34;13230:1;13225:3;13221:11;13214:55;13300:14;13295:2;13290:3;13286:12;13279:36;13341:2;13336:3;13332:12;13325:19;;13120:230;;;:::o;13356:326::-;;13519:67;13583:2;13578:3;13519:67;:::i;:::-;13512:74;;13616:30;13612:1;13607:3;13603:11;13596:51;13673:2;13668:3;13664:12;13657:19;;13502:180;;;:::o;13688:314::-;;13851:67;13915:2;13910:3;13851:67;:::i;:::-;13844:74;;13948:18;13944:1;13939:3;13935:11;13928:39;13993:2;13988:3;13984:12;13977:19;;13834:168;;;:::o;14008:325::-;;14171:67;14235:2;14230:3;14171:67;:::i;:::-;14164:74;;14268:29;14264:1;14259:3;14255:11;14248:50;14324:2;14319:3;14315:12;14308:19;;14154:179;;;:::o;14339:388::-;;14502:67;14566:2;14561:3;14502:67;:::i;:::-;14495:74;;14599:34;14595:1;14590:3;14586:11;14579:55;14665:26;14660:2;14655:3;14651:12;14644:48;14718:2;14713:3;14709:12;14702:19;;14485:242;;;:::o;14733:374::-;;14896:67;14960:2;14955:3;14896:67;:::i;:::-;14889:74;;14993:34;14989:1;14984:3;14980:11;14973:55;15059:12;15054:2;15049:3;15045:12;15038:34;15098:2;15093:3;15089:12;15082:19;;14879:228;;;:::o;15113:373::-;;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15373:34;15369:1;15364:3;15360:11;15353:55;15439:11;15434:2;15429:3;15425:12;15418:33;15477:2;15472:3;15468:12;15461:19;;15259:227;;;:::o;15492:378::-;;15655:67;15719:2;15714:3;15655:67;:::i;:::-;15648:74;;15752:34;15748:1;15743:3;15739:11;15732:55;15818:16;15813:2;15808:3;15804:12;15797:38;15861:2;15856:3;15852:12;15845:19;;15638:232;;;:::o;15876:330::-;;16039:67;16103:2;16098:3;16039:67;:::i;:::-;16032:74;;16136:34;16132:1;16127:3;16123:11;16116:55;16197:2;16192:3;16188:12;16181:19;;16022:184;;;:::o;16212:380::-;;16375:67;16439:2;16434:3;16375:67;:::i;:::-;16368:74;;16472:34;16468:1;16463:3;16459:11;16452:55;16538:18;16533:2;16528:3;16524:12;16517:40;16583:2;16578:3;16574:12;16567:19;;16358:234;;;:::o;16598:376::-;;16761:67;16825:2;16820:3;16761:67;:::i;:::-;16754:74;;16858:34;16854:1;16849:3;16845:11;16838:55;16924:14;16919:2;16914:3;16910:12;16903:36;16965:2;16960:3;16956:12;16949:19;;16744:230;;;:::o;16980:330::-;;17143:67;17207:2;17202:3;17143:67;:::i;:::-;17136:74;;17240:34;17236:1;17231:3;17227:11;17220:55;17301:2;17296:3;17292:12;17285:19;;17126:184;;;:::o;17316:370::-;;17479:67;17543:2;17538:3;17479:67;:::i;:::-;17472:74;;17576:34;17572:1;17567:3;17563:11;17556:55;17642:8;17637:2;17632:3;17628:12;17621:30;17677:2;17672:3;17668:12;17661:19;;17462:224;;;:::o;17692:373::-;;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17952:34;17948:1;17943:3;17939:11;17932:55;18018:11;18013:2;18008:3;18004:12;17997:33;18056:2;18051:3;18047:12;18040:19;;17838:227;;;:::o;18071:379::-;;18234:67;18298:2;18293:3;18234:67;:::i;:::-;18227:74;;18331:34;18327:1;18322:3;18318:11;18311:55;18397:17;18392:2;18387:3;18383:12;18376:39;18441:2;18436:3;18432:12;18425:19;;18217:233;;;:::o;18456:365::-;;18619:67;18683:2;18678:3;18619:67;:::i;:::-;18612:74;;18716:34;18712:1;18707:3;18703:11;18696:55;18782:3;18777:2;18772:3;18768:12;18761:25;18812:2;18807:3;18803:12;18796:19;;18602:219;;;:::o;18827:309::-;;18990:67;19054:2;19049:3;18990:67;:::i;:::-;18983:74;;19087:13;19083:1;19078:3;19074:11;19067:34;19127:2;19122:3;19118:12;19111:19;;18973:163;;;:::o;19142:381::-;;19305:67;19369:2;19364:3;19305:67;:::i;:::-;19298:74;;19402:34;19398:1;19393:3;19389:11;19382:55;19468:19;19463:2;19458:3;19454:12;19447:41;19514:2;19509:3;19505:12;19498:19;;19288:235;;;:::o;19529:376::-;;19692:67;19756:2;19751:3;19692:67;:::i;:::-;19685:74;;19789:34;19785:1;19780:3;19776:11;19769:55;19855:14;19850:2;19845:3;19841:12;19834:36;19896:2;19891:3;19887:12;19880:19;;19675:230;;;:::o;19911:108::-;19988:24;20006:5;19988:24;:::i;:::-;19983:3;19976:37;19966:53;;:::o;20025:118::-;20112:24;20130:5;20112:24;:::i;:::-;20107:3;20100:37;20090:53;;:::o;20149:435::-;;20351:95;20442:3;20433:6;20351:95;:::i;:::-;20344:102;;20463:95;20554:3;20545:6;20463:95;:::i;:::-;20456:102;;20575:3;20568:10;;20333:251;;;;;:::o;20590:222::-;;20721:2;20710:9;20706:18;20698:26;;20734:71;20802:1;20791:9;20787:17;20778:6;20734:71;:::i;:::-;20688:124;;;;:::o;20818:640::-;;21051:3;21040:9;21036:19;21028:27;;21065:71;21133:1;21122:9;21118:17;21109:6;21065:71;:::i;:::-;21146:72;21214:2;21203:9;21199:18;21190:6;21146:72;:::i;:::-;21228;21296:2;21285:9;21281:18;21272:6;21228:72;:::i;:::-;21347:9;21341:4;21337:20;21332:2;21321:9;21317:18;21310:48;21375:76;21446:4;21437:6;21375:76;:::i;:::-;21367:84;;21018:440;;;;;;;:::o;21464:320::-;;21617:2;21606:9;21602:18;21594:26;;21630:71;21698:1;21687:9;21683:17;21674:6;21630:71;:::i;:::-;21711:66;21773:2;21762:9;21758:18;21749:6;21711:66;:::i;:::-;21584:200;;;;;:::o;21790:373::-;;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:108;22151:4;22142:6;22048:108;:::i;:::-;22040:116;;21938:225;;;;:::o;22169:210::-;;22294:2;22283:9;22279:18;22271:26;;22307:65;22369:1;22358:9;22354:17;22345:6;22307:65;:::i;:::-;22261:118;;;;:::o;22385:313::-;;22536:2;22525:9;22521:18;22513:26;;22585:9;22579:4;22575:20;22571:1;22560:9;22556:17;22549:47;22613:78;22686:4;22677:6;22613:78;:::i;:::-;22605:86;;22503:195;;;;:::o;22704:419::-;;22908:2;22897:9;22893:18;22885:26;;22957:9;22951:4;22947:20;22943:1;22932:9;22928:17;22921:47;22985:131;23111:4;22985:131;:::i;:::-;22977:139;;22875:248;;;:::o;23129:419::-;;23333:2;23322:9;23318:18;23310:26;;23382:9;23376:4;23372:20;23368:1;23357:9;23353:17;23346:47;23410:131;23536:4;23410:131;:::i;:::-;23402:139;;23300:248;;;:::o;23554:419::-;;23758:2;23747:9;23743:18;23735:26;;23807:9;23801:4;23797:20;23793:1;23782:9;23778:17;23771:47;23835:131;23961:4;23835:131;:::i;:::-;23827:139;;23725:248;;;:::o;23979:419::-;;24183:2;24172:9;24168:18;24160:26;;24232:9;24226:4;24222:20;24218:1;24207:9;24203:17;24196:47;24260:131;24386:4;24260:131;:::i;:::-;24252:139;;24150:248;;;:::o;24404:419::-;;24608:2;24597:9;24593:18;24585:26;;24657:9;24651:4;24647:20;24643:1;24632:9;24628:17;24621:47;24685:131;24811:4;24685:131;:::i;:::-;24677:139;;24575:248;;;:::o;24829:419::-;;25033:2;25022:9;25018:18;25010:26;;25082:9;25076:4;25072:20;25068:1;25057:9;25053:17;25046:47;25110:131;25236:4;25110:131;:::i;:::-;25102:139;;25000:248;;;:::o;25254:419::-;;25458:2;25447:9;25443:18;25435:26;;25507:9;25501:4;25497:20;25493:1;25482:9;25478:17;25471:47;25535:131;25661:4;25535:131;:::i;:::-;25527:139;;25425:248;;;:::o;25679:419::-;;25883:2;25872:9;25868:18;25860:26;;25932:9;25926:4;25922:20;25918:1;25907:9;25903:17;25896:47;25960:131;26086:4;25960:131;:::i;:::-;25952:139;;25850:248;;;:::o;26104:419::-;;26308:2;26297:9;26293:18;26285:26;;26357:9;26351:4;26347:20;26343:1;26332:9;26328:17;26321:47;26385:131;26511:4;26385:131;:::i;:::-;26377:139;;26275:248;;;:::o;26529:419::-;;26733:2;26722:9;26718:18;26710:26;;26782:9;26776:4;26772:20;26768:1;26757:9;26753:17;26746:47;26810:131;26936:4;26810:131;:::i;:::-;26802:139;;26700:248;;;:::o;26954:419::-;;27158:2;27147:9;27143:18;27135:26;;27207:9;27201:4;27197:20;27193:1;27182:9;27178:17;27171:47;27235:131;27361:4;27235:131;:::i;:::-;27227:139;;27125:248;;;:::o;27379:419::-;;27583:2;27572:9;27568:18;27560:26;;27632:9;27626:4;27622:20;27618:1;27607:9;27603:17;27596:47;27660:131;27786:4;27660:131;:::i;:::-;27652:139;;27550:248;;;:::o;27804:419::-;;28008:2;27997:9;27993:18;27985:26;;28057:9;28051:4;28047:20;28043:1;28032:9;28028:17;28021:47;28085:131;28211:4;28085:131;:::i;:::-;28077:139;;27975:248;;;:::o;28229:419::-;;28433:2;28422:9;28418:18;28410:26;;28482:9;28476:4;28472:20;28468:1;28457:9;28453:17;28446:47;28510:131;28636:4;28510:131;:::i;:::-;28502:139;;28400:248;;;:::o;28654:419::-;;28858:2;28847:9;28843:18;28835:26;;28907:9;28901:4;28897:20;28893:1;28882:9;28878:17;28871:47;28935:131;29061:4;28935:131;:::i;:::-;28927:139;;28825:248;;;:::o;29079:419::-;;29283:2;29272:9;29268:18;29260:26;;29332:9;29326:4;29322:20;29318:1;29307:9;29303:17;29296:47;29360:131;29486:4;29360:131;:::i;:::-;29352:139;;29250:248;;;:::o;29504:419::-;;29708:2;29697:9;29693:18;29685:26;;29757:9;29751:4;29747:20;29743:1;29732:9;29728:17;29721:47;29785:131;29911:4;29785:131;:::i;:::-;29777:139;;29675:248;;;:::o;29929:419::-;;30133:2;30122:9;30118:18;30110:26;;30182:9;30176:4;30172:20;30168:1;30157:9;30153:17;30146:47;30210:131;30336:4;30210:131;:::i;:::-;30202:139;;30100:248;;;:::o;30354:419::-;;30558:2;30547:9;30543:18;30535:26;;30607:9;30601:4;30597:20;30593:1;30582:9;30578:17;30571:47;30635:131;30761:4;30635:131;:::i;:::-;30627:139;;30525:248;;;:::o;30779:419::-;;30983:2;30972:9;30968:18;30960:26;;31032:9;31026:4;31022:20;31018:1;31007:9;31003:17;30996:47;31060:131;31186:4;31060:131;:::i;:::-;31052:139;;30950:248;;;:::o;31204:419::-;;31408:2;31397:9;31393:18;31385:26;;31457:9;31451:4;31447:20;31443:1;31432:9;31428:17;31421:47;31485:131;31611:4;31485:131;:::i;:::-;31477:139;;31375:248;;;:::o;31629:419::-;;31833:2;31822:9;31818:18;31810:26;;31882:9;31876:4;31872:20;31868:1;31857:9;31853:17;31846:47;31910:131;32036:4;31910:131;:::i;:::-;31902:139;;31800:248;;;:::o;32054:419::-;;32258:2;32247:9;32243:18;32235:26;;32307:9;32301:4;32297:20;32293:1;32282:9;32278:17;32271:47;32335:131;32461:4;32335:131;:::i;:::-;32327:139;;32225:248;;;:::o;32479:419::-;;32683:2;32672:9;32668:18;32660:26;;32732:9;32726:4;32722:20;32718:1;32707:9;32703:17;32696:47;32760:131;32886:4;32760:131;:::i;:::-;32752:139;;32650:248;;;:::o;32904:419::-;;33108:2;33097:9;33093:18;33085:26;;33157:9;33151:4;33147:20;33143:1;33132:9;33128:17;33121:47;33185:131;33311:4;33185:131;:::i;:::-;33177:139;;33075:248;;;:::o;33329:419::-;;33533:2;33522:9;33518:18;33510:26;;33582:9;33576:4;33572:20;33568:1;33557:9;33553:17;33546:47;33610:131;33736:4;33610:131;:::i;:::-;33602:139;;33500:248;;;:::o;33754:419::-;;33958:2;33947:9;33943:18;33935:26;;34007:9;34001:4;33997:20;33993:1;33982:9;33978:17;33971:47;34035:131;34161:4;34035:131;:::i;:::-;34027:139;;33925:248;;;:::o;34179:419::-;;34383:2;34372:9;34368:18;34360:26;;34432:9;34426:4;34422:20;34418:1;34407:9;34403:17;34396:47;34460:131;34586:4;34460:131;:::i;:::-;34452:139;;34350:248;;;:::o;34604:419::-;;34808:2;34797:9;34793:18;34785:26;;34857:9;34851:4;34847:20;34843:1;34832:9;34828:17;34821:47;34885:131;35011:4;34885:131;:::i;:::-;34877:139;;34775:248;;;:::o;35029:419::-;;35233:2;35222:9;35218:18;35210:26;;35282:9;35276:4;35272:20;35268:1;35257:9;35253:17;35246:47;35310:131;35436:4;35310:131;:::i;:::-;35302:139;;35200:248;;;:::o;35454:419::-;;35658:2;35647:9;35643:18;35635:26;;35707:9;35701:4;35697:20;35693:1;35682:9;35678:17;35671:47;35735:131;35861:4;35735:131;:::i;:::-;35727:139;;35625:248;;;:::o;35879:419::-;;36083:2;36072:9;36068:18;36060:26;;36132:9;36126:4;36122:20;36118:1;36107:9;36103:17;36096:47;36160:131;36286:4;36160:131;:::i;:::-;36152:139;;36050:248;;;:::o;36304:222::-;;36435:2;36424:9;36420:18;36412:26;;36448:71;36516:1;36505:9;36501:17;36492:6;36448:71;:::i;:::-;36402:124;;;;:::o;36532:283::-;;36598:2;36592:9;36582:19;;36640:4;36632:6;36628:17;36747:6;36735:10;36732:22;36711:18;36699:10;36696:34;36693:62;36690:2;;;36758:18;;:::i;:::-;36690:2;36798:10;36794:2;36787:22;36572:243;;;;:::o;36821:331::-;;36972:18;36964:6;36961:30;36958:2;;;36994:18;;:::i;:::-;36958:2;37079:4;37075:9;37068:4;37060:6;37056:17;37052:33;37044:41;;37140:4;37134;37130:15;37122:23;;36887:265;;;:::o;37158:332::-;;37310:18;37302:6;37299:30;37296:2;;;37332:18;;:::i;:::-;37296:2;37417:4;37413:9;37406:4;37398:6;37394:17;37390:33;37382:41;;37478:4;37472;37468:15;37460:23;;37225:265;;;:::o;37496:132::-;;37586:3;37578:11;;37616:4;37611:3;37607:14;37599:22;;37568:60;;;:::o;37634:114::-;;37735:5;37729:12;37719:22;;37708:40;;;:::o;37754:98::-;;37839:5;37833:12;37823:22;;37812:40;;;:::o;37858:99::-;;37944:5;37938:12;37928:22;;37917:40;;;:::o;37963:113::-;;38065:4;38060:3;38056:14;38048:22;;38038:38;;;:::o;38082:184::-;;38215:6;38210:3;38203:19;38255:4;38250:3;38246:14;38231:29;;38193:73;;;;:::o;38272:168::-;;38389:6;38384:3;38377:19;38429:4;38424:3;38420:14;38405:29;;38367:73;;;;:::o;38446:169::-;;38564:6;38559:3;38552:19;38604:4;38599:3;38595:14;38580:29;;38542:73;;;;:::o;38621:148::-;;38760:3;38745:18;;38735:34;;;;:::o;38775:305::-;;38834:20;38852:1;38834:20;:::i;:::-;38829:25;;38868:20;38886:1;38868:20;:::i;:::-;38863:25;;39022:1;38954:66;38950:74;38947:1;38944:81;38941:2;;;39028:18;;:::i;:::-;38941:2;39072:1;39069;39065:9;39058:16;;38819:261;;;;:::o;39086:185::-;;39143:20;39161:1;39143:20;:::i;:::-;39138:25;;39177:20;39195:1;39177:20;:::i;:::-;39172:25;;39216:1;39206:2;;39221:18;;:::i;:::-;39206:2;39263:1;39260;39256:9;39251:14;;39128:143;;;;:::o;39277:348::-;;39340:20;39358:1;39340:20;:::i;:::-;39335:25;;39374:20;39392:1;39374:20;:::i;:::-;39369:25;;39562:1;39494:66;39490:74;39487:1;39484:81;39479:1;39472:9;39465:17;39461:105;39458:2;;;39569:18;;:::i;:::-;39458:2;39617:1;39614;39610:9;39599:20;;39325:300;;;;:::o;39631:191::-;;39691:20;39709:1;39691:20;:::i;:::-;39686:25;;39725:20;39743:1;39725:20;:::i;:::-;39720:25;;39764:1;39761;39758:8;39755:2;;;39769:18;;:::i;:::-;39755:2;39814:1;39811;39807:9;39799:17;;39676:146;;;;:::o;39828:96::-;;39894:24;39912:5;39894:24;:::i;:::-;39883:35;;39873:51;;;:::o;39930:90::-;;40007:5;40000:13;39993:21;39982:32;;39972:48;;;:::o;40026:149::-;;40102:66;40095:5;40091:78;40080:89;;40070:105;;;:::o;40181:126::-;;40258:42;40251:5;40247:54;40236:65;;40226:81;;;:::o;40313:77::-;;40379:5;40368:16;;40358:32;;;:::o;40396:154::-;40480:6;40475:3;40470;40457:30;40542:1;40533:6;40528:3;40524:16;40517:27;40447:103;;;:::o;40556:307::-;40624:1;40634:113;40648:6;40645:1;40642:13;40634:113;;;40733:1;40728:3;40724:11;40718:18;40714:1;40709:3;40705:11;40698:39;40670:2;40667:1;40663:10;40658:15;;40634:113;;;40765:6;40762:1;40759:13;40756:2;;;40845:1;40836:6;40831:3;40827:16;40820:27;40756:2;40605:258;;;;:::o;40869:320::-;;40950:1;40944:4;40940:12;40930:22;;40997:1;40991:4;40987:12;41018:18;41008:2;;41074:4;41066:6;41062:17;41052:27;;41008:2;41136;41128:6;41125:14;41105:18;41102:38;41099:2;;;41155:18;;:::i;:::-;41099:2;40920:269;;;;:::o;41195:233::-;;41257:24;41275:5;41257:24;:::i;:::-;41248:33;;41303:66;41296:5;41293:77;41290:2;;;41373:18;;:::i;:::-;41290:2;41420:1;41413:5;41409:13;41402:20;;41238:190;;;:::o;41434:176::-;;41483:20;41501:1;41483:20;:::i;:::-;41478:25;;41517:20;41535:1;41517:20;:::i;:::-;41512:25;;41556:1;41546:2;;41561:18;;:::i;:::-;41546:2;41602:1;41599;41595:9;41590:14;;41468:142;;;;:::o;41616:180::-;41664:77;41661:1;41654:88;41761:4;41758:1;41751:15;41785:4;41782:1;41775:15;41802:180;41850:77;41847:1;41840:88;41947:4;41944:1;41937:15;41971:4;41968:1;41961:15;41988:180;42036:77;42033:1;42026:88;42133:4;42130:1;42123:15;42157:4;42154:1;42147:15;42174:180;42222:77;42219:1;42212:88;42319:4;42316:1;42309:15;42343:4;42340:1;42333:15;42360:102;;42452:2;42448:7;42443:2;42436:5;42432:14;42428:28;42418:38;;42408:54;;;:::o;42468:122::-;42541:24;42559:5;42541:24;:::i;:::-;42534:5;42531:35;42521:2;;42580:1;42577;42570:12;42521:2;42511:79;:::o;42596:116::-;42666:21;42681:5;42666:21;:::i;:::-;42659:5;42656:32;42646:2;;42702:1;42699;42692:12;42646:2;42636:76;:::o;42718:120::-;42790:23;42807:5;42790:23;:::i;:::-;42783:5;42780:34;42770:2;;42828:1;42825;42818:12;42770:2;42760:78;:::o;42844:122::-;42917:24;42935:5;42917:24;:::i;:::-;42910:5;42907:35;42897:2;;42956:1;42953;42946:12;42897:2;42887:79;:::o

Swarm Source

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