ETH Price: $2,952.76 (-5.38%)
Gas: 8 Gwei

Token

Phat Pandaz (PANDAZ)
 

Overview

Max Total Supply

1,373 PANDAZ

Holders

753

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
alshayea.eth
Balance
3 PANDAZ
0x4424f4a2b65857ba92b2c78ed36d0d1bdee417b1
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:
PhatPandaz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-28
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol



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;`
 */
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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
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();
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: PhatPandaz.sol


pragma solidity ^0.8.2;








contract PhatPandaz is ERC721, ERC721URIStorage, ERC721Enumerable, ReentrancyGuard, Ownable {

    using Counters for Counters.Counter;

    enum Status { Closed, GasPass, Whitelist, Public }

    Counters.Counter private _tokenIds;
    
    string private _baseURIextended;
    string public provenance = "ef112d8feddb2daf519bf41d13fe4ccf98518c1e933acdf2a34cdd525a591b95";
    uint constant private maxSupply = 9898;
    uint constant private publicStartPrice = 0.30 ether;
    uint constant private whitelistPrice = 0.14 ether;
    uint constant private gasPassPrice = 0.04 ether;
    bool public isActive = true;
    uint private gasPassStart = 1642806000; // 1642806000 == 1.21.2022 11PM UTC
    uint private whitelistStart = gasPassStart + 24 hours;
    uint private publicStart = gasPassStart + 48 hours;
    bytes32 private gasPassRoot;
    bytes32 private whitelistRoot;
    mapping(address => uint) public numMinted;
    mapping(address => bool) public gasPassClaimed;
    mapping(address => bool) public whitelistClaimed;
    mapping(uint => uint) public lastTransfer;

    constructor() ERC721("Phat Pandaz", "PANDAZ") {
        _baseURIextended = "ipfs://QmVpMQ8Cc794dRDJNbq9fKZzx7A5US3R1VphYp56N3ECQw/";
        teamMint(102);
    }

    modifier checkGasPass(address _to, uint _amount, bytes32[] calldata _merkleProof) {
        require(isActive, "Sale not active");
        require(getStatus() == Status.GasPass, "Status is not Gas Pass");
        require(!gasPassClaimed[_to], "Already minted in Gas Pass");
        bytes32 leaf = keccak256(abi.encodePacked(_to, _amount));
        require(MerkleProof.verify(_merkleProof, gasPassRoot, leaf), "Not Enough Gas Passes");
        require(msg.value >= (gasPassPrice * _amount), "Incorrect ether sent");
        _;
    }

    modifier checkWhitelist(address _to, uint _amount, bytes32[] calldata _merkleProof) {
        require(isActive, "Sale not active");
        require(getStatus() == Status.Whitelist, "Status is not Whitelist");
        require(!whitelistClaimed[_to], "Already minted in Whitelist");
        bytes32 leaf = keccak256(abi.encodePacked(_to, _amount));
        require(MerkleProof.verify(_merkleProof, whitelistRoot, leaf), "Not whitelisted or minting too many");
        require(msg.value >= (whitelistPrice * _amount), "Incorrect ether sent");
        _;
    }

    modifier checkPublic(address _to, uint _amount) {
        uint _totalSupply = totalSupply();
        require(isActive, "Sale not active");
        require(getStatus() == Status.Public, "Status is not Public");
        require(_totalSupply < maxSupply, "Sold out");
        require((_totalSupply + _amount) <= maxSupply, "Minting would exceed maximum supply");
        require(msg.value >= (getPrice() * _amount), "Incorrect ether sent");
        require((numMinted[_to] + _amount) <= 5, "Maximum is 5");
        _;
    }

    modifier checkUser() {
        require(tx.origin == msg.sender, "Caller is not user");
        _;
    }

    function getStatus() internal view returns (Status) {
        if(block.timestamp >= publicStart) {
            return Status.Public;
        } else if (block.timestamp >= whitelistStart) {
            return Status.Whitelist;
        } else if (block.timestamp >= gasPassStart) {
            return Status.GasPass;
        }
        return Status.Closed;
    }

    function checkStatus() external view returns (Status) {
        return getStatus();
    }

    function getPrice() internal view returns (uint) {
        require(block.timestamp > publicStart, "Public sale not started.");
        uint elapsed = (block.timestamp - publicStart) / (30 minutes);
        if (elapsed > 11) { elapsed = 11; }
        uint currentPrice = publicStartPrice - (elapsed * .01 ether);
        return currentPrice;
    }

    function checkPrice() external view returns (uint) {
        return getPrice();
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }
    
    function setGasPassRoot (bytes32 _gasPassRoot) external onlyOwner {
        gasPassRoot = _gasPassRoot;
    }

    function setWhitelistRoot (bytes32 _whitelistRoot) external onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function setNewTime(uint _gasPassStart) external onlyOwner {
        gasPassStart = _gasPassStart;
        whitelistStart = _gasPassStart + 24 hours;
        publicStart = _gasPassStart + 48 hours;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function setProvenance(string memory _provenance) external onlyOwner {
        provenance = _provenance;
    }

    function setActive() external onlyOwner {
        isActive = !isActive;
    }

    function teamMint(uint _amount) internal onlyOwner {
        address _to = owner();
        for (uint i = 0; i < _amount; i++) {
            _tokenIds.increment();
            _safeMint(_to, _tokenIds.current());
        }
    }
    
    function mintGasPass(uint _amount, bytes32[] calldata _merkleProof) public payable checkGasPass(msg.sender, _amount, _merkleProof) checkUser {
        address _to = msg.sender;
        for (uint i = 0; i < _amount; i++) {
            _tokenIds.increment();
            _safeMint(_to, _tokenIds.current());
        }
        gasPassClaimed[_to] = true;
        numMinted[_to] += _amount;
    }

    function mintWhitelist(uint _amount, bytes32[] calldata _merkleProof) public payable checkWhitelist(msg.sender, _amount, _merkleProof) checkUser {
        address _to = msg.sender;
        for (uint i = 0; i < _amount; i++) {
            _tokenIds.increment();
            _safeMint(_to, _tokenIds.current());
        }
        whitelistClaimed[_to] = true;
        numMinted[_to] += _amount;
    }

    function mintPublic(uint _amount) public payable checkPublic(msg.sender, _amount) checkUser {
        address _to = msg.sender;
        for (uint i = 0; i < _amount; i++) {
            _tokenIds.increment();
            _safeMint(_to, _tokenIds.current());
        }
        numMinted[_to] += _amount;
    }
    
    function withdraw() external onlyOwner nonReentrant {
        payable(msg.sender).transfer(address(this).balance);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
        lastTransfer[tokenId] = block.timestamp;
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkStatus","outputs":[{"internalType":"enum PhatPandaz.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gasPassClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintGasPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"setActive","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_gasPassRoot","type":"bytes32"}],"name":"setGasPassRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasPassStart","type":"uint256"}],"name":"setNewTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","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":[{"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":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060409081526080818152906200395260a03980516200002991600f9160209091019062000910565b506010805460ff191660011790556361eb3af0601181905562000050906201518062000a64565b60125560115462000065906202a30062000a64565b6013553480156200007557600080fd5b50604080518082018252600b81526a283430ba102830b73230bd60a91b6020808301918252835180850190945260068452652820a72220ad60d11b908401528151919291620000c79160009162000910565b508051620000dd90600190602084019062000910565b50506001600b5550620000f03362000133565b604051806060016040528060368152602001620038fc6036913980516200012091600e9160209091019062000910565b506200012d606662000185565b62000b36565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c546001600160a01b03163314620001e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6000620001fa600c546001600160a01b031690565b905060005b8281101562000256576200021f600d6200025b60201b620017e61760201c565b62000241826200023b600d6200026460201b620017ef1760201c565b62000268565b806200024d8162000ad6565b915050620001ff565b505050565b80546001019055565b5490565b6200028a8282604051806020016040528060008152506200028e60201b60201c565b5050565b6200029a838362000301565b620002a9600084848462000457565b620002565760405162461bcd60e51b815260206004820152603260248201526000805160206200393283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001dc565b6001600160a01b038216620003595760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001dc565b6000818152600260205260409020546001600160a01b031615620003c05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001dc565b620003ce60008383620005c0565b6001600160a01b0382166000908152600360205260408120805460019290620003f990849062000a64565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000478846001600160a01b0316620005ed60201b620017f31760201c565b15620005b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004b2903390899088908890600401620009e9565b602060405180830381600087803b158015620004cd57600080fd5b505af192505050801562000500575060408051601f3d908101601f19168201909252620004fd91810190620009b6565b60015b62000599573d80801562000531576040519150601f19603f3d011682016040523d82523d6000602084013e62000536565b606091505b508051620005915760405162461bcd60e51b815260206004820152603260248201526000805160206200393283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005b8565b5060015b949350505050565b620005d8838383620005f360201b620017f91760201c565b60009081526019602052604090204290555050565b3b151590565b6200060b8383836200025660201b62000be61760201c565b6001600160a01b03831662000669576200066381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6200068f565b816001600160a01b0316836001600160a01b0316146200068f576200068f8382620006cf565b6001600160a01b038216620006a95762000256816200077c565b826001600160a01b0316826001600160a01b031614620002565762000256828262000836565b60006001620006e9846200088760201b62000fec1760201c565b620006f5919062000a7f565b60008381526008602052604090205490915080821462000749576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090620007909060019062000a7f565b6000838152600a602052604081205460098054939450909284908110620007bb57620007bb62000b20565b906000526020600020015490508060098381548110620007df57620007df62000b20565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806200081a576200081a62000b0a565b6001900381819060005260206000200160009055905550505050565b60006200084e836200088760201b62000fec1760201c565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60006001600160a01b038216620008f45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001dc565b506001600160a01b031660009081526003602052604090205490565b8280546200091e9062000a99565b90600052602060002090601f0160209004810192826200094257600085556200098d565b82601f106200095d57805160ff19168380011785556200098d565b828001600101855582156200098d579182015b828111156200098d57825182559160200191906001019062000970565b506200099b9291506200099f565b5090565b5b808211156200099b5760008155600101620009a0565b600060208284031215620009c957600080fd5b81516001600160e01b031981168114620009e257600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000a385785810182015185820160a00152810162000a1a565b8281111562000a4b57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000a7a5762000a7a62000af4565b500190565b60008282101562000a945762000a9462000af4565b500390565b600181811c9082168062000aae57607f821691505b6020821081141562000ad057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000aed5762000aed62000af4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b612db68062000b466000396000f3fe60806040526004361061021a5760003560e01c806355f804b311610123578063b88d4fde116100ab578063efd0cbf91161006f578063efd0cbf91461065d578063f2fde38b14610670578063f5aa406d14610690578063f986e1c1146106b0578063ffe630b5146106c357600080fd5b8063b88d4fde14610574578063c87b56dd14610594578063db4bec44146105b4578063e493979b146105e4578063e985e9c51461061457600080fd5b8063760a8c2a116100f2578063760a8c2a146104f75780638da5cb5b1461050c5780638fc3047d1461052a57806395d89b411461053f578063a22cb4651461055457600080fd5b806355f804b3146104825780636352211e146104a257806370a08231146104c2578063715018a6146104e257600080fd5b806323b872dd116101a65780633b7104f2116101755780633b7104f2146103de5780633ccfd60b146104005780634139493e1461041557806342842e0e146104425780634f6ccce71461046257600080fd5b806323b872dd1461035e5780632f745c591461037e57806331fc504d1461039e578063358ccc40146103be57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c35780630f7309e8146102e357806318160ddd146102f857806320fc7eb21461031757806322f3e2d41461034457600080fd5b806301ffc9a71461021f578063061431a81461025457806306fdde0314610269578063081812fc1461028b575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046128be565b6106e3565b60405190151581526020015b60405180910390f35b610267610262366004612941565b6106f4565b005b34801561027557600080fd5b5061027e6109ae565b60405161024b9190612a80565b34801561029757600080fd5b506102ab6102a63660046128a5565b610a40565b6040516001600160a01b03909116815260200161024b565b3480156102cf57600080fd5b506102676102de36600461287b565b610ad5565b3480156102ef57600080fd5b5061027e610beb565b34801561030457600080fd5b506009545b60405190815260200161024b565b34801561032357600080fd5b50610309610332366004612739565b60166020526000908152604090205481565b34801561035057600080fd5b5060105461023f9060ff1681565b34801561036a57600080fd5b50610267610379366004612787565b610c79565b34801561038a57600080fd5b5061030961039936600461287b565b610caa565b3480156103aa57600080fd5b506102676103b93660046128a5565b610d40565b3480156103ca57600080fd5b506102676103d93660046128a5565b610d92565b3480156103ea57600080fd5b506103f3610dc1565b60405161024b9190612a58565b34801561040c57600080fd5b50610267610dd0565b34801561042157600080fd5b506103096104303660046128a5565b60196020526000908152604090205481565b34801561044e57600080fd5b5061026761045d366004612787565b610e86565b34801561046e57600080fd5b5061030961047d3660046128a5565b610ea1565b34801561048e57600080fd5b5061026761049d3660046128f8565b610f34565b3480156104ae57600080fd5b506102ab6104bd3660046128a5565b610f75565b3480156104ce57600080fd5b506103096104dd366004612739565b610fec565b3480156104ee57600080fd5b50610267611073565b34801561050357600080fd5b506102676110a9565b34801561051857600080fd5b50600c546001600160a01b03166102ab565b34801561053657600080fd5b506103096110e7565b34801561054b57600080fd5b5061027e6110f1565b34801561056057600080fd5b5061026761056f36600461283f565b611100565b34801561058057600080fd5b5061026761058f3660046127c3565b6111c5565b3480156105a057600080fd5b5061027e6105af3660046128a5565b6111fd565b3480156105c057600080fd5b5061023f6105cf366004612739565b60186020526000908152604090205460ff1681565b3480156105f057600080fd5b5061023f6105ff366004612739565b60176020526000908152604090205460ff1681565b34801561062057600080fd5b5061023f61062f366004612754565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61026761066b3660046128a5565b611208565b34801561067c57600080fd5b5061026761068b366004612739565b61145f565b34801561069c57600080fd5b506102676106ab3660046128a5565b6114fa565b6102676106be366004612941565b611529565b3480156106cf57600080fd5b506102676106de3660046128f8565b6117a9565b60006106ee826118b1565b92915050565b601054339084908490849060ff166107275760405162461bcd60e51b815260040161071e90612b13565b60405180910390fd5b60026107316118d6565b600381111561074257610742612d12565b1461078f5760405162461bcd60e51b815260206004820152601760248201527f537461747573206973206e6f742057686974656c697374000000000000000000604482015260640161071e565b6001600160a01b03841660009081526018602052604090205460ff16156107f85760405162461bcd60e51b815260206004820152601b60248201527f416c7265616479206d696e74656420696e2057686974656c6973740000000000604482015260640161071e565b6040516bffffffffffffffffffffffff19606086901b1660208201526034810184905260009060540160405160208183030381529060405280519060200120905061087a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601554915084905061190b565b6108d25760405162461bcd60e51b815260206004820152602360248201527f4e6f742077686974656c6973746564206f72206d696e74696e6720746f6f206d604482015262616e7960e81b606482015260840161071e565b6108e4846701f161421c8e0000612c1a565b3410156109035760405162461bcd60e51b815260040161071e90612a93565b3233146109225760405162461bcd60e51b815260040161071e90612bc2565b3360005b898110156109605761093c600d80546001019055565b61094e82610949600d5490565b611921565b8061095881612cb7565b915050610926565b506001600160a01b0381166000908152601860209081526040808320805460ff191660011790556016909152812080548b929061099e908490612bee565b9091555050505050505050505050565b6060600080546109bd90612c7c565b80601f01602080910402602001604051908101604052809291908181526020018280546109e990612c7c565b8015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ab95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b506000908152600460205260409020546001600160a01b031690565b6000610ae082610f75565b9050806001600160a01b0316836001600160a01b03161415610b4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071e565b336001600160a01b0382161480610b6a5750610b6a813361062f565b610bdc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071e565b610be6838361193b565b505050565b600f8054610bf890612c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2490612c7c565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b505050505081565b610c8333826119a9565b610c9f5760405162461bcd60e51b815260040161071e90612b71565b610be6838383611aa0565b6000610cb583610fec565b8210610d175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071e565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c546001600160a01b03163314610d6a5760405162461bcd60e51b815260040161071e90612b3c565b6011819055610d7c8162015180612bee565b601255610d8c816202a300612bee565b60135550565b600c546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161071e90612b3c565b601455565b6000610dcb6118d6565b905090565b600c546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161071e90612b3c565b6002600b541415610e4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600b5560405133904780156108fc02916000818181858888f19350505050158015610e7e573d6000803e3d6000fd5b506001600b55565b610be6838383604051806020016040528060008152506111c5565b6000610eac60095490565b8210610f0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071e565b60098281548110610f2257610f22612d3e565b90600052602060002001549050919050565b600c546001600160a01b03163314610f5e5760405162461bcd60e51b815260040161071e90612b3c565b8051610f7190600e90602084019061260e565b5050565b6000818152600260205260408120546001600160a01b0316806106ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071e565b60006001600160a01b0382166110575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071e565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b0316331461109d5760405162461bcd60e51b815260040161071e90612b3c565b6110a76000611c4b565b565b600c546001600160a01b031633146110d35760405162461bcd60e51b815260040161071e90612b3c565b6010805460ff19811660ff90911615179055565b6000610dcb611c9d565b6060600180546109bd90612c7c565b6001600160a01b0382163314156111595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111cf33836119a9565b6111eb5760405162461bcd60e51b815260040161071e90612b71565b6111f784848484611d48565b50505050565b60606106ee82611d7b565b3381600061121560095490565b60105490915060ff1661123a5760405162461bcd60e51b815260040161071e90612b13565b60036112446118d6565b600381111561125557611255612d12565b146112995760405162461bcd60e51b8152602060048201526014602482015273537461747573206973206e6f74205075626c696360601b604482015260640161071e565b6126aa81106112d55760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161071e565b6126aa6112e28383612bee565b111561133c5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e6720776f756c6420657863656564206d6178696d756d20737570604482015262706c7960e81b606482015260840161071e565b81611345611c9d565b61134f9190612c1a565b34101561136e5760405162461bcd60e51b815260040161071e90612a93565b6001600160a01b038316600090815260166020526040902054600590611395908490612bee565b11156113d25760405162461bcd60e51b815260206004820152600c60248201526b4d6178696d756d206973203560a01b604482015260640161071e565b3233146113f15760405162461bcd60e51b815260040161071e90612bc2565b3360005b8581101561142a5761140b600d80546001019055565b61141882610949600d5490565b8061142281612cb7565b9150506113f5565b506001600160a01b03811660009081526016602052604081208054879290611453908490612bee565b90915550505050505050565b600c546001600160a01b031633146114895760405162461bcd60e51b815260040161071e90612b3c565b6001600160a01b0381166114ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b6114f781611c4b565b50565b600c546001600160a01b031633146115245760405162461bcd60e51b815260040161071e90612b3c565b601555565b601054339084908490849060ff166115535760405162461bcd60e51b815260040161071e90612b13565b600161155d6118d6565b600381111561156e5761156e612d12565b146115b45760405162461bcd60e51b8152602060048201526016602482015275537461747573206973206e6f7420476173205061737360501b604482015260640161071e565b6001600160a01b03841660009081526017602052604090205460ff161561161d5760405162461bcd60e51b815260206004820152601a60248201527f416c7265616479206d696e74656420696e204761732050617373000000000000604482015260640161071e565b6040516bffffffffffffffffffffffff19606086901b1660208201526034810184905260009060540160405160208183030381529060405280519060200120905061169f83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061190b565b6116e35760405162461bcd60e51b81526020600482015260156024820152744e6f7420456e6f756768204761732050617373657360581b604482015260640161071e565b6116f484668e1bc9bf040000612c1a565b3410156117135760405162461bcd60e51b815260040161071e90612a93565b3233146117325760405162461bcd60e51b815260040161071e90612bc2565b3360005b8981101561176b5761174c600d80546001019055565b61175982610949600d5490565b8061176381612cb7565b915050611736565b506001600160a01b0381166000908152601760209081526040808320805460ff191660011790556016909152812080548b929061099e908490612bee565b600c546001600160a01b031633146117d35760405162461bcd60e51b815260040161071e90612b3c565b8051610f7190600f90602084019061260e565b80546001019055565b5490565b3b151590565b6001600160a01b0383166118545761184f81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611877565b816001600160a01b0316836001600160a01b031614611877576118778382611eed565b6001600160a01b03821661188e57610be681611f8a565b826001600160a01b0316826001600160a01b031614610be657610be68282612039565b60006001600160e01b0319821663780e9d6360e01b14806106ee57506106ee8261207d565b600060135442106118e75750600390565b60125442106118f65750600290565b60115442106119055750600190565b50600090565b60008261191885846120cd565b14949350505050565b610f71828260405180602001604052806000815250612179565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197082610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b6000611a2d83610f75565b9050806001600160a01b0316846001600160a01b03161480611a685750836001600160a01b0316611a5d84610a40565b6001600160a01b0316145b80611a9857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab382610f75565b6001600160a01b031614611b1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071e565b6001600160a01b038216611b7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b611b888383836121ac565b611b9360008261193b565b6001600160a01b0383166000908152600360205260408120805460019290611bbc908490612c39565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bea908490612bee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006013544211611cf05760405162461bcd60e51b815260206004820152601860248201527f5075626c69632073616c65206e6f7420737461727465642e0000000000000000604482015260640161071e565b600061070860135442611d039190612c39565b611d0d9190612c06565b9050600b811115611d1c5750600b5b6000611d2f82662386f26fc10000612c1a565b611d4190670429d069189e0000612c39565b9392505050565b611d53848484611aa0565b611d5f848484846121cc565b6111f75760405162461bcd60e51b815260040161071e90612ac1565b6000818152600260205260409020546060906001600160a01b0316611dfc5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161071e565b60008281526006602052604081208054611e1590612c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4190612c7c565b8015611e8e5780601f10611e6357610100808354040283529160200191611e8e565b820191906000526020600020905b815481529060010190602001808311611e7157829003601f168201915b505050505090506000611e9f6122d9565b9050805160001415611eb2575092915050565b815115611ee4578082604051602001611ecc9291906129ec565b60405160208183030381529060405292505050919050565b611a98846122e8565b60006001611efa84610fec565b611f049190612c39565b600083815260086020526040902054909150808214611f57576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611f9c90600190612c39565b6000838152600a602052604081205460098054939450909284908110611fc457611fc4612d3e565b906000526020600020015490508060098381548110611fe557611fe5612d3e565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061201d5761201d612d28565b6001900381819060005260206000200160009055905550505050565b600061204483610fec565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b14806120ae57506001600160e01b03198216635b5e139f60e01b145b806106ee57506301ffc9a760e01b6001600160e01b03198316146106ee565b600081815b84518110156121715760008582815181106120ef576120ef612d3e565b6020026020010151905080831161213157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061215e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061216981612cb7565b9150506120d2565b509392505050565b61218383836123c2565b61219060008484846121cc565b610be65760405162461bcd60e51b815260040161071e90612ac1565b6121b78383836117f9565b60009081526019602052604090204290555050565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612210903390899088908890600401612a1b565b602060405180830381600087803b15801561222a57600080fd5b505af192505050801561225a575060408051601f3d908101601f19168201909252612257918101906128db565b60015b6122b4573d808015612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b5080516122ac5760405162461bcd60e51b815260040161071e90612ac1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a98565b506001949350505050565b6060600e80546109bd90612c7c565b6000818152600260205260409020546060906001600160a01b03166123675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071e565b60006123716122d9565b905060008151116123915760405180602001604052806000815250611d41565b8061239b84612510565b6040516020016123ac9291906129ec565b6040516020818303038152906040529392505050565b6001600160a01b0382166124185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600260205260409020546001600160a01b03161561247d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b612489600083836121ac565b6001600160a01b03821660009081526003602052604081208054600192906124b2908490612bee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816125345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561255e578061254881612cb7565b91506125579050600a83612c06565b9150612538565b60008167ffffffffffffffff81111561257957612579612d54565b6040519080825280601f01601f1916602001820160405280156125a3576020820181803683370190505b5090505b8415611a98576125b8600183612c39565b91506125c5600a86612cd2565b6125d0906030612bee565b60f81b8183815181106125e5576125e5612d3e565b60200101906001600160f81b031916908160001a905350612607600a86612c06565b94506125a7565b82805461261a90612c7c565b90600052602060002090601f01602090048101928261263c5760008555612682565b82601f1061265557805160ff1916838001178555612682565b82800160010185558215612682579182015b82811115612682578251825591602001919060010190612667565b5061268e929150612692565b5090565b5b8082111561268e5760008155600101612693565b600067ffffffffffffffff808411156126c2576126c2612d54565b604051601f8501601f19908116603f011681019082821181831017156126ea576126ea612d54565b8160405280935085815286868601111561270357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461273457600080fd5b919050565b60006020828403121561274b57600080fd5b611d418261271d565b6000806040838503121561276757600080fd5b6127708361271d565b915061277e6020840161271d565b90509250929050565b60008060006060848603121561279c57600080fd5b6127a58461271d565b92506127b36020850161271d565b9150604084013590509250925092565b600080600080608085870312156127d957600080fd5b6127e28561271d565b93506127f06020860161271d565b925060408501359150606085013567ffffffffffffffff81111561281357600080fd5b8501601f8101871361282457600080fd5b612833878235602084016126a7565b91505092959194509250565b6000806040838503121561285257600080fd5b61285b8361271d565b91506020830135801515811461287057600080fd5b809150509250929050565b6000806040838503121561288e57600080fd5b6128978361271d565b946020939093013593505050565b6000602082840312156128b757600080fd5b5035919050565b6000602082840312156128d057600080fd5b8135611d4181612d6a565b6000602082840312156128ed57600080fd5b8151611d4181612d6a565b60006020828403121561290a57600080fd5b813567ffffffffffffffff81111561292157600080fd5b8201601f8101841361293257600080fd5b611a98848235602084016126a7565b60008060006040848603121561295657600080fd5b83359250602084013567ffffffffffffffff8082111561297557600080fd5b818601915086601f83011261298957600080fd5b81358181111561299857600080fd5b8760208260051b85010111156129ad57600080fd5b6020830194508093505050509250925092565b600081518084526129d8816020860160208601612c50565b601f01601f19169290920160200192915050565b600083516129fe818460208801612c50565b835190830190612a12818360208801612c50565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a4e908301846129c0565b9695505050505050565b6020810160048310612a7a57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611d4160208301846129c0565b602080825260149082015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e53616c65206e6f742061637469766560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527121b0b63632b91034b9903737ba103ab9b2b960711b604082015260600190565b60008219821115612c0157612c01612ce6565b500190565b600082612c1557612c15612cfc565b500490565b6000816000190483118215151615612c3457612c34612ce6565b500290565b600082821015612c4b57612c4b612ce6565b500390565b60005b83811015612c6b578181015183820152602001612c53565b838111156111f75750506000910152565b600181811c90821680612c9057607f821691505b60208210811415612cb157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ccb57612ccb612ce6565b5060010190565b600082612ce157612ce1612cfc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114f757600080fdfea26469706673582212203be7fca01fd28867b9e925a02f8864efd882e5866f158a691c2d827feab8be6a64736f6c63430008070033697066733a2f2f516d56704d513843633739346452444a4e627139664b5a7a783741355553335231567068597035364e33454351772f4552433732313a207472616e7366657220746f206e6f6e20455243373231526565663131326438666564646232646166353139626634316431336665346363663938353138633165393333616364663261333463646435323561353931623935

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806355f804b311610123578063b88d4fde116100ab578063efd0cbf91161006f578063efd0cbf91461065d578063f2fde38b14610670578063f5aa406d14610690578063f986e1c1146106b0578063ffe630b5146106c357600080fd5b8063b88d4fde14610574578063c87b56dd14610594578063db4bec44146105b4578063e493979b146105e4578063e985e9c51461061457600080fd5b8063760a8c2a116100f2578063760a8c2a146104f75780638da5cb5b1461050c5780638fc3047d1461052a57806395d89b411461053f578063a22cb4651461055457600080fd5b806355f804b3146104825780636352211e146104a257806370a08231146104c2578063715018a6146104e257600080fd5b806323b872dd116101a65780633b7104f2116101755780633b7104f2146103de5780633ccfd60b146104005780634139493e1461041557806342842e0e146104425780634f6ccce71461046257600080fd5b806323b872dd1461035e5780632f745c591461037e57806331fc504d1461039e578063358ccc40146103be57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c35780630f7309e8146102e357806318160ddd146102f857806320fc7eb21461031757806322f3e2d41461034457600080fd5b806301ffc9a71461021f578063061431a81461025457806306fdde0314610269578063081812fc1461028b575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046128be565b6106e3565b60405190151581526020015b60405180910390f35b610267610262366004612941565b6106f4565b005b34801561027557600080fd5b5061027e6109ae565b60405161024b9190612a80565b34801561029757600080fd5b506102ab6102a63660046128a5565b610a40565b6040516001600160a01b03909116815260200161024b565b3480156102cf57600080fd5b506102676102de36600461287b565b610ad5565b3480156102ef57600080fd5b5061027e610beb565b34801561030457600080fd5b506009545b60405190815260200161024b565b34801561032357600080fd5b50610309610332366004612739565b60166020526000908152604090205481565b34801561035057600080fd5b5060105461023f9060ff1681565b34801561036a57600080fd5b50610267610379366004612787565b610c79565b34801561038a57600080fd5b5061030961039936600461287b565b610caa565b3480156103aa57600080fd5b506102676103b93660046128a5565b610d40565b3480156103ca57600080fd5b506102676103d93660046128a5565b610d92565b3480156103ea57600080fd5b506103f3610dc1565b60405161024b9190612a58565b34801561040c57600080fd5b50610267610dd0565b34801561042157600080fd5b506103096104303660046128a5565b60196020526000908152604090205481565b34801561044e57600080fd5b5061026761045d366004612787565b610e86565b34801561046e57600080fd5b5061030961047d3660046128a5565b610ea1565b34801561048e57600080fd5b5061026761049d3660046128f8565b610f34565b3480156104ae57600080fd5b506102ab6104bd3660046128a5565b610f75565b3480156104ce57600080fd5b506103096104dd366004612739565b610fec565b3480156104ee57600080fd5b50610267611073565b34801561050357600080fd5b506102676110a9565b34801561051857600080fd5b50600c546001600160a01b03166102ab565b34801561053657600080fd5b506103096110e7565b34801561054b57600080fd5b5061027e6110f1565b34801561056057600080fd5b5061026761056f36600461283f565b611100565b34801561058057600080fd5b5061026761058f3660046127c3565b6111c5565b3480156105a057600080fd5b5061027e6105af3660046128a5565b6111fd565b3480156105c057600080fd5b5061023f6105cf366004612739565b60186020526000908152604090205460ff1681565b3480156105f057600080fd5b5061023f6105ff366004612739565b60176020526000908152604090205460ff1681565b34801561062057600080fd5b5061023f61062f366004612754565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61026761066b3660046128a5565b611208565b34801561067c57600080fd5b5061026761068b366004612739565b61145f565b34801561069c57600080fd5b506102676106ab3660046128a5565b6114fa565b6102676106be366004612941565b611529565b3480156106cf57600080fd5b506102676106de3660046128f8565b6117a9565b60006106ee826118b1565b92915050565b601054339084908490849060ff166107275760405162461bcd60e51b815260040161071e90612b13565b60405180910390fd5b60026107316118d6565b600381111561074257610742612d12565b1461078f5760405162461bcd60e51b815260206004820152601760248201527f537461747573206973206e6f742057686974656c697374000000000000000000604482015260640161071e565b6001600160a01b03841660009081526018602052604090205460ff16156107f85760405162461bcd60e51b815260206004820152601b60248201527f416c7265616479206d696e74656420696e2057686974656c6973740000000000604482015260640161071e565b6040516bffffffffffffffffffffffff19606086901b1660208201526034810184905260009060540160405160208183030381529060405280519060200120905061087a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601554915084905061190b565b6108d25760405162461bcd60e51b815260206004820152602360248201527f4e6f742077686974656c6973746564206f72206d696e74696e6720746f6f206d604482015262616e7960e81b606482015260840161071e565b6108e4846701f161421c8e0000612c1a565b3410156109035760405162461bcd60e51b815260040161071e90612a93565b3233146109225760405162461bcd60e51b815260040161071e90612bc2565b3360005b898110156109605761093c600d80546001019055565b61094e82610949600d5490565b611921565b8061095881612cb7565b915050610926565b506001600160a01b0381166000908152601860209081526040808320805460ff191660011790556016909152812080548b929061099e908490612bee565b9091555050505050505050505050565b6060600080546109bd90612c7c565b80601f01602080910402602001604051908101604052809291908181526020018280546109e990612c7c565b8015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ab95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b506000908152600460205260409020546001600160a01b031690565b6000610ae082610f75565b9050806001600160a01b0316836001600160a01b03161415610b4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071e565b336001600160a01b0382161480610b6a5750610b6a813361062f565b610bdc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071e565b610be6838361193b565b505050565b600f8054610bf890612c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2490612c7c565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b505050505081565b610c8333826119a9565b610c9f5760405162461bcd60e51b815260040161071e90612b71565b610be6838383611aa0565b6000610cb583610fec565b8210610d175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071e565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c546001600160a01b03163314610d6a5760405162461bcd60e51b815260040161071e90612b3c565b6011819055610d7c8162015180612bee565b601255610d8c816202a300612bee565b60135550565b600c546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161071e90612b3c565b601455565b6000610dcb6118d6565b905090565b600c546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161071e90612b3c565b6002600b541415610e4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161071e565b6002600b5560405133904780156108fc02916000818181858888f19350505050158015610e7e573d6000803e3d6000fd5b506001600b55565b610be6838383604051806020016040528060008152506111c5565b6000610eac60095490565b8210610f0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071e565b60098281548110610f2257610f22612d3e565b90600052602060002001549050919050565b600c546001600160a01b03163314610f5e5760405162461bcd60e51b815260040161071e90612b3c565b8051610f7190600e90602084019061260e565b5050565b6000818152600260205260408120546001600160a01b0316806106ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071e565b60006001600160a01b0382166110575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071e565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b0316331461109d5760405162461bcd60e51b815260040161071e90612b3c565b6110a76000611c4b565b565b600c546001600160a01b031633146110d35760405162461bcd60e51b815260040161071e90612b3c565b6010805460ff19811660ff90911615179055565b6000610dcb611c9d565b6060600180546109bd90612c7c565b6001600160a01b0382163314156111595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111cf33836119a9565b6111eb5760405162461bcd60e51b815260040161071e90612b71565b6111f784848484611d48565b50505050565b60606106ee82611d7b565b3381600061121560095490565b60105490915060ff1661123a5760405162461bcd60e51b815260040161071e90612b13565b60036112446118d6565b600381111561125557611255612d12565b146112995760405162461bcd60e51b8152602060048201526014602482015273537461747573206973206e6f74205075626c696360601b604482015260640161071e565b6126aa81106112d55760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161071e565b6126aa6112e28383612bee565b111561133c5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e6720776f756c6420657863656564206d6178696d756d20737570604482015262706c7960e81b606482015260840161071e565b81611345611c9d565b61134f9190612c1a565b34101561136e5760405162461bcd60e51b815260040161071e90612a93565b6001600160a01b038316600090815260166020526040902054600590611395908490612bee565b11156113d25760405162461bcd60e51b815260206004820152600c60248201526b4d6178696d756d206973203560a01b604482015260640161071e565b3233146113f15760405162461bcd60e51b815260040161071e90612bc2565b3360005b8581101561142a5761140b600d80546001019055565b61141882610949600d5490565b8061142281612cb7565b9150506113f5565b506001600160a01b03811660009081526016602052604081208054879290611453908490612bee565b90915550505050505050565b600c546001600160a01b031633146114895760405162461bcd60e51b815260040161071e90612b3c565b6001600160a01b0381166114ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b6114f781611c4b565b50565b600c546001600160a01b031633146115245760405162461bcd60e51b815260040161071e90612b3c565b601555565b601054339084908490849060ff166115535760405162461bcd60e51b815260040161071e90612b13565b600161155d6118d6565b600381111561156e5761156e612d12565b146115b45760405162461bcd60e51b8152602060048201526016602482015275537461747573206973206e6f7420476173205061737360501b604482015260640161071e565b6001600160a01b03841660009081526017602052604090205460ff161561161d5760405162461bcd60e51b815260206004820152601a60248201527f416c7265616479206d696e74656420696e204761732050617373000000000000604482015260640161071e565b6040516bffffffffffffffffffffffff19606086901b1660208201526034810184905260009060540160405160208183030381529060405280519060200120905061169f83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061190b565b6116e35760405162461bcd60e51b81526020600482015260156024820152744e6f7420456e6f756768204761732050617373657360581b604482015260640161071e565b6116f484668e1bc9bf040000612c1a565b3410156117135760405162461bcd60e51b815260040161071e90612a93565b3233146117325760405162461bcd60e51b815260040161071e90612bc2565b3360005b8981101561176b5761174c600d80546001019055565b61175982610949600d5490565b8061176381612cb7565b915050611736565b506001600160a01b0381166000908152601760209081526040808320805460ff191660011790556016909152812080548b929061099e908490612bee565b600c546001600160a01b031633146117d35760405162461bcd60e51b815260040161071e90612b3c565b8051610f7190600f90602084019061260e565b80546001019055565b5490565b3b151590565b6001600160a01b0383166118545761184f81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611877565b816001600160a01b0316836001600160a01b031614611877576118778382611eed565b6001600160a01b03821661188e57610be681611f8a565b826001600160a01b0316826001600160a01b031614610be657610be68282612039565b60006001600160e01b0319821663780e9d6360e01b14806106ee57506106ee8261207d565b600060135442106118e75750600390565b60125442106118f65750600290565b60115442106119055750600190565b50600090565b60008261191885846120cd565b14949350505050565b610f71828260405180602001604052806000815250612179565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197082610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071e565b6000611a2d83610f75565b9050806001600160a01b0316846001600160a01b03161480611a685750836001600160a01b0316611a5d84610a40565b6001600160a01b0316145b80611a9857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab382610f75565b6001600160a01b031614611b1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071e565b6001600160a01b038216611b7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b611b888383836121ac565b611b9360008261193b565b6001600160a01b0383166000908152600360205260408120805460019290611bbc908490612c39565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bea908490612bee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006013544211611cf05760405162461bcd60e51b815260206004820152601860248201527f5075626c69632073616c65206e6f7420737461727465642e0000000000000000604482015260640161071e565b600061070860135442611d039190612c39565b611d0d9190612c06565b9050600b811115611d1c5750600b5b6000611d2f82662386f26fc10000612c1a565b611d4190670429d069189e0000612c39565b9392505050565b611d53848484611aa0565b611d5f848484846121cc565b6111f75760405162461bcd60e51b815260040161071e90612ac1565b6000818152600260205260409020546060906001600160a01b0316611dfc5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161071e565b60008281526006602052604081208054611e1590612c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4190612c7c565b8015611e8e5780601f10611e6357610100808354040283529160200191611e8e565b820191906000526020600020905b815481529060010190602001808311611e7157829003601f168201915b505050505090506000611e9f6122d9565b9050805160001415611eb2575092915050565b815115611ee4578082604051602001611ecc9291906129ec565b60405160208183030381529060405292505050919050565b611a98846122e8565b60006001611efa84610fec565b611f049190612c39565b600083815260086020526040902054909150808214611f57576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611f9c90600190612c39565b6000838152600a602052604081205460098054939450909284908110611fc457611fc4612d3e565b906000526020600020015490508060098381548110611fe557611fe5612d3e565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061201d5761201d612d28565b6001900381819060005260206000200160009055905550505050565b600061204483610fec565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b14806120ae57506001600160e01b03198216635b5e139f60e01b145b806106ee57506301ffc9a760e01b6001600160e01b03198316146106ee565b600081815b84518110156121715760008582815181106120ef576120ef612d3e565b6020026020010151905080831161213157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061215e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061216981612cb7565b9150506120d2565b509392505050565b61218383836123c2565b61219060008484846121cc565b610be65760405162461bcd60e51b815260040161071e90612ac1565b6121b78383836117f9565b60009081526019602052604090204290555050565b60006001600160a01b0384163b156122ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612210903390899088908890600401612a1b565b602060405180830381600087803b15801561222a57600080fd5b505af192505050801561225a575060408051601f3d908101601f19168201909252612257918101906128db565b60015b6122b4573d808015612288576040519150601f19603f3d011682016040523d82523d6000602084013e61228d565b606091505b5080516122ac5760405162461bcd60e51b815260040161071e90612ac1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a98565b506001949350505050565b6060600e80546109bd90612c7c565b6000818152600260205260409020546060906001600160a01b03166123675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071e565b60006123716122d9565b905060008151116123915760405180602001604052806000815250611d41565b8061239b84612510565b6040516020016123ac9291906129ec565b6040516020818303038152906040529392505050565b6001600160a01b0382166124185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600260205260409020546001600160a01b03161561247d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b612489600083836121ac565b6001600160a01b03821660009081526003602052604081208054600192906124b2908490612bee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816125345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561255e578061254881612cb7565b91506125579050600a83612c06565b9150612538565b60008167ffffffffffffffff81111561257957612579612d54565b6040519080825280601f01601f1916602001820160405280156125a3576020820181803683370190505b5090505b8415611a98576125b8600183612c39565b91506125c5600a86612cd2565b6125d0906030612bee565b60f81b8183815181106125e5576125e5612d3e565b60200101906001600160f81b031916908160001a905350612607600a86612c06565b94506125a7565b82805461261a90612c7c565b90600052602060002090601f01602090048101928261263c5760008555612682565b82601f1061265557805160ff1916838001178555612682565b82800160010185558215612682579182015b82811115612682578251825591602001919060010190612667565b5061268e929150612692565b5090565b5b8082111561268e5760008155600101612693565b600067ffffffffffffffff808411156126c2576126c2612d54565b604051601f8501601f19908116603f011681019082821181831017156126ea576126ea612d54565b8160405280935085815286868601111561270357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461273457600080fd5b919050565b60006020828403121561274b57600080fd5b611d418261271d565b6000806040838503121561276757600080fd5b6127708361271d565b915061277e6020840161271d565b90509250929050565b60008060006060848603121561279c57600080fd5b6127a58461271d565b92506127b36020850161271d565b9150604084013590509250925092565b600080600080608085870312156127d957600080fd5b6127e28561271d565b93506127f06020860161271d565b925060408501359150606085013567ffffffffffffffff81111561281357600080fd5b8501601f8101871361282457600080fd5b612833878235602084016126a7565b91505092959194509250565b6000806040838503121561285257600080fd5b61285b8361271d565b91506020830135801515811461287057600080fd5b809150509250929050565b6000806040838503121561288e57600080fd5b6128978361271d565b946020939093013593505050565b6000602082840312156128b757600080fd5b5035919050565b6000602082840312156128d057600080fd5b8135611d4181612d6a565b6000602082840312156128ed57600080fd5b8151611d4181612d6a565b60006020828403121561290a57600080fd5b813567ffffffffffffffff81111561292157600080fd5b8201601f8101841361293257600080fd5b611a98848235602084016126a7565b60008060006040848603121561295657600080fd5b83359250602084013567ffffffffffffffff8082111561297557600080fd5b818601915086601f83011261298957600080fd5b81358181111561299857600080fd5b8760208260051b85010111156129ad57600080fd5b6020830194508093505050509250925092565b600081518084526129d8816020860160208601612c50565b601f01601f19169290920160200192915050565b600083516129fe818460208801612c50565b835190830190612a12818360208801612c50565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a4e908301846129c0565b9695505050505050565b6020810160048310612a7a57634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611d4160208301846129c0565b602080825260149082015273125b98dbdc9c9958dd08195d1a195c881cd95b9d60621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e53616c65206e6f742061637469766560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527121b0b63632b91034b9903737ba103ab9b2b960711b604082015260600190565b60008219821115612c0157612c01612ce6565b500190565b600082612c1557612c15612cfc565b500490565b6000816000190483118215151615612c3457612c34612ce6565b500290565b600082821015612c4b57612c4b612ce6565b500390565b60005b83811015612c6b578181015183820152602001612c53565b838111156111f75750506000910152565b600181811c90821680612c9057607f821691505b60208210811415612cb157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ccb57612ccb612ce6565b5060010190565b600082612ce157612ce1612cfc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114f757600080fdfea26469706673582212203be7fca01fd28867b9e925a02f8864efd882e5866f158a691c2d827feab8be6a64736f6c63430008070033

Deployed Bytecode Sourcemap

51446:7196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58468:171;;;;;;;;;;-1:-1:-1;58468:171:0;;;;;:::i;:::-;;:::i;:::-;;;7070:14:1;;7063:22;7045:41;;7033:2;7018:18;58468:171:0;;;;;;;;57003:406;;;;;;:::i;:::-;;:::i;:::-;;31196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32755:221::-;;;;;;;;;;-1:-1:-1;32755:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6368:32:1;;;6350:51;;6338:2;6323:18;32755:221:0;6204:203:1;32278:411:0;;;;;;;;;;-1:-1:-1;32278:411:0;;;;;:::i;:::-;;:::i;51734:93::-;;;;;;;;;;;;;:::i;43944:113::-;;;;;;;;;;-1:-1:-1;44032:10:0;:17;43944:113;;;20787:25:1;;;20775:2;20760:18;43944:113:0;20641:177:1;52349:41:0;;;;;;;;;;-1:-1:-1;52349:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;52047:27;;;;;;;;;;-1:-1:-1;52047:27:0;;;;;;;;33645:339;;;;;;;;;;-1:-1:-1;33645:339:0;;;;;:::i;:::-;;:::i;43612:256::-;;;;;;;;;;-1:-1:-1;43612:256:0;;;;;:::i;:::-;;:::i;55806:207::-;;;;;;;;;;-1:-1:-1;55806:207:0;;;;;:::i;:::-;;:::i;55560:111::-;;;;;;;;;;-1:-1:-1;55560:111:0;;;;;:::i;:::-;;:::i;54873:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57743:122::-;;;;;;;;;;;;;:::i;52505:41::-;;;;;;;;;;-1:-1:-1;52505:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;34055:185;;;;;;;;;;-1:-1:-1;34055:185:0;;;;;:::i;:::-;;:::i;44134:233::-;;;;;;;;;;-1:-1:-1;44134:233:0;;;;;:::i;:::-;;:::i;56025:109::-;;;;;;;;;;-1:-1:-1;56025:109:0;;;;;:::i;:::-;;:::i;30890:239::-;;;;;;;;;;-1:-1:-1;30890:239:0;;;;;:::i;:::-;;:::i;30620:208::-;;;;;;;;;;-1:-1:-1;30620:208:0;;;;;:::i;:::-;;:::i;10895:94::-;;;;;;;;;;;;;:::i;56262:79::-;;;;;;;;;;;;;:::i;10244:87::-;;;;;;;;;;-1:-1:-1;10317:6:0;;-1:-1:-1;;;;;10317:6:0;10244:87;;55332;;;;;;;;;;;;;:::i;31365:104::-;;;;;;;;;;;;;:::i;33048:295::-;;;;;;;;;;-1:-1:-1;33048:295:0;;;;;:::i;:::-;;:::i;34311:328::-;;;;;;;;;;-1:-1:-1;34311:328:0;;;;;:::i;:::-;;:::i;58305:155::-;;;;;;;;;;-1:-1:-1;58305:155:0;;;;;:::i;:::-;;:::i;52450:48::-;;;;;;;;;;-1:-1:-1;52450:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52397:46;;;;;;;;;;-1:-1:-1;52397:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33414:164;;;;;;;;;;-1:-1:-1;33414:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33535:25:0;;;33511:4;33535:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33414:164;57417:314;;;;;;:::i;:::-;;:::i;11144:192::-;;;;;;;;;;-1:-1:-1;11144:192:0;;;;;:::i;:::-;;:::i;55679:119::-;;;;;;;;;;-1:-1:-1;55679:119:0;;;;;:::i;:::-;;:::i;56595:400::-;;;;;;:::i;:::-;;:::i;56142:112::-;;;;;;;;;;-1:-1:-1;56142:112:0;;;;;:::i;:::-;;:::i;58468:171::-;58571:4;58595:36;58619:11;58595:23;:36::i;:::-;58588:43;58468:171;-1:-1:-1;;58468:171:0:o;57003:406::-;53376:8;;57103:10;;57115:7;;57124:12;;;;53376:8;;53368:36;;;;-1:-1:-1;;;53368:36:0;;;;;;;:::i;:::-;;;;;;;;;53438:16;53423:11;:9;:11::i;:::-;:31;;;;;;;;:::i;:::-;;53415:67;;;;-1:-1:-1;;;53415:67:0;;14033:2:1;53415:67:0;;;14015:21:1;14072:2;14052:18;;;14045:30;14111:25;14091:18;;;14084:53;14154:18;;53415:67:0;13831:347:1;53415:67:0;-1:-1:-1;;;;;53502:21:0;;;;;;:16;:21;;;;;;;;53501:22;53493:62;;;;-1:-1:-1;;;53493:62:0;;12856:2:1;53493:62:0;;;12838:21:1;12895:2;12875:18;;;12868:30;12934:29;12914:18;;;12907:57;12981:18;;53493:62:0;12654:351:1;53493:62:0;53591:30;;-1:-1:-1;;5355:2:1;5351:15;;;5347:53;53591:30:0;;;5335:66:1;5417:12;;;5410:28;;;53566:12:0;;5454::1;;53591:30:0;;;;;;;;;;;;53581:41;;;;;;53566:56;;53641:53;53660:12;;53641:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53674:13:0;;;-1:-1:-1;53689:4:0;;-1:-1:-1;53641:18:0;:53::i;:::-;53633:101;;;;-1:-1:-1;;;53633:101:0;;17920:2:1;53633:101:0;;;17902:21:1;17959:2;17939:18;;;17932:30;17998:34;17978:18;;;17971:62;-1:-1:-1;;;18049:18:1;;;18042:33;18092:19;;53633:101:0;17718:399:1;53633:101:0;53767:24;53784:7;51976:10;53767:24;:::i;:::-;53753:9;:39;;53745:72;;;;-1:-1:-1;;;53745:72:0;;;;;;;:::i;:::-;54422:9:::1;54435:10;54422:23;54414:54;;;;-1:-1:-1::0;;;54414:54:0::1;;;;;;;:::i;:::-;57173:10:::2;57159:11;57194:133;57215:7;57211:1;:11;57194:133;;;57244:21;:9;3196:19:::0;;3214:1;3196:19;;;3107:127;57244:21:::2;57280:35;57290:3;57295:19;:9;3077:14:::0;;2985:114;57295:19:::2;57280:9;:35::i;:::-;57224:3:::0;::::2;::::0;::::2;:::i;:::-;;;;57194:133;;;-1:-1:-1::0;;;;;;57337:21:0;::::2;;::::0;;;:16:::2;:21;::::0;;;;;;;:28;;-1:-1:-1;;57337:28:0::2;57361:4;57337:28;::::0;;57376:9:::2;:14:::0;;;;;:25;;57394:7;;57337:21;57376:25:::2;::::0;57394:7;;57376:25:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;;;57003:406:0:o;31196:100::-;31250:13;31283:5;31276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31196:100;:::o;32755:221::-;32831:7;36238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36238:16:0;32851:73;;;;-1:-1:-1;;;32851:73:0;;15164:2:1;32851:73:0;;;15146:21:1;15203:2;15183:18;;;15176:30;15242:34;15222:18;;;15215:62;-1:-1:-1;;;15293:18:1;;;15286:42;15345:19;;32851:73:0;14962:408:1;32851:73:0;-1:-1:-1;32944:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32944:24:0;;32755:221::o;32278:411::-;32359:13;32375:23;32390:7;32375:14;:23::i;:::-;32359:39;;32423:5;-1:-1:-1;;;;;32417:11:0;:2;-1:-1:-1;;;;;32417:11:0;;;32409:57;;;;-1:-1:-1;;;32409:57:0;;16764:2:1;32409:57:0;;;16746:21:1;16803:2;16783:18;;;16776:30;16842:34;16822:18;;;16815:62;-1:-1:-1;;;16893:18:1;;;16886:31;16934:19;;32409:57:0;16562:397:1;32409:57:0;9112:10;-1:-1:-1;;;;;32501:21:0;;;;:62;;-1:-1:-1;32526:37:0;32543:5;9112:10;33414:164;:::i;32526:37::-;32479:168;;;;-1:-1:-1;;;32479:168:0;;12431:2:1;32479:168:0;;;12413:21:1;12470:2;12450:18;;;12443:30;12509:34;12489:18;;;12482:62;12580:26;12560:18;;;12553:54;12624:19;;32479:168:0;12229:420:1;32479:168:0;32660:21;32669:2;32673:7;32660:8;:21::i;:::-;32348:341;32278:411;;:::o;51734:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33645:339::-;33840:41;9112:10;33873:7;33840:18;:41::i;:::-;33832:103;;;;-1:-1:-1;;;33832:103:0;;;;;;;:::i;:::-;33948:28;33958:4;33964:2;33968:7;33948:9;:28::i;43612:256::-;43709:7;43745:23;43762:5;43745:16;:23::i;:::-;43737:5;:31;43729:87;;;;-1:-1:-1;;;43729:87:0;;8216:2:1;43729:87:0;;;8198:21:1;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:1;;;8338:41;8396:19;;43729:87:0;8014:407:1;43729:87:0;-1:-1:-1;;;;;;43834:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43612:256::o;55806:207::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;55876:12:::1;:28:::0;;;55932:24:::1;55891:13:::0;55948:8:::1;55932:24;:::i;:::-;55915:14;:41:::0;55981:24:::1;:13:::0;55997:8:::1;55981:24;:::i;:::-;55967:11;:38:::0;-1:-1:-1;55806:207:0:o;55560:111::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;55637:11:::1;:26:::0;55560:111::o;54873:91::-;54919:6;54945:11;:9;:11::i;:::-;54938:18;;54873:91;:::o;57743:122::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;5390:1:::1;5988:7;;:19;;5980:63;;;::::0;-1:-1:-1;;;5980:63:0;;20133:2:1;5980:63:0::1;::::0;::::1;20115:21:1::0;20172:2;20152:18;;;20145:30;20211:33;20191:18;;;20184:61;20262:18;;5980:63:0::1;19931:355:1::0;5980:63:0::1;5390:1;6121:7;:18:::0;57806:51:::2;::::0;57814:10:::2;::::0;57835:21:::2;57806:51:::0;::::2;;;::::0;::::2;::::0;;;57835:21;57814:10;57806:51;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;5346:1:0::1;6300:7;:22:::0;57743:122::o;34055:185::-;34193:39;34210:4;34216:2;34220:7;34193:39;;;;;;;;;;;;:16;:39::i;44134:233::-;44209:7;44245:30;44032:10;:17;;43944:113;44245:30;44237:5;:38;44229:95;;;;-1:-1:-1;;;44229:95:0;;18324:2:1;44229:95:0;;;18306:21:1;18363:2;18343:18;;;18336:30;18402:34;18382:18;;;18375:62;-1:-1:-1;;;18453:18:1;;;18446:42;18505:19;;44229:95:0;18122:408:1;44229:95:0;44342:10;44353:5;44342:17;;;;;;;;:::i;:::-;;;;;;;;;44335:24;;44134:233;;;:::o;56025:109::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;56099:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56025:109:::0;:::o;30890:239::-;30962:7;30998:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30998:16:0;31033:19;31025:73;;;;-1:-1:-1;;;31025:73:0;;13623:2:1;31025:73:0;;;13605:21:1;13662:2;13642:18;;;13635:30;13701:34;13681:18;;;13674:62;-1:-1:-1;;;13752:18:1;;;13745:39;13801:19;;31025:73:0;13421:405:1;30620:208:0;30692:7;-1:-1:-1;;;;;30720:19:0;;30712:74;;;;-1:-1:-1;;;30712:74:0;;13212:2:1;30712:74:0;;;13194:21:1;13251:2;13231:18;;;13224:30;13290:34;13270:18;;;13263:62;-1:-1:-1;;;13341:18:1;;;13334:40;13391:19;;30712:74:0;13010:406:1;30712:74:0;-1:-1:-1;;;;;;30804:16:0;;;;;:9;:16;;;;;;;30620:208::o;10895:94::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;10960:21:::1;10978:1;10960:9;:21::i;:::-;10895:94::o:0;56262:79::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;56325:8:::1;::::0;;-1:-1:-1;;56313:20:0;::::1;56325:8;::::0;;::::1;56324:9;56313:20;::::0;;56262:79::o;55332:87::-;55377:4;55401:10;:8;:10::i;31365:104::-;31421:13;31454:7;31447:14;;;;;:::i;33048:295::-;-1:-1:-1;;;;;33151:24:0;;9112:10;33151:24;;33143:62;;;;-1:-1:-1;;;33143:62:0;;10971:2:1;33143:62:0;;;10953:21:1;11010:2;10990:18;;;10983:30;11049:27;11029:18;;;11022:55;11094:18;;33143:62:0;10769:349:1;33143:62:0;9112:10;33218:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33218:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33218:53:0;;;;;;;;;;33287:48;;7045:41:1;;;33218:42:0;;9112:10;33287:48;;7018:18:1;33287:48:0;;;;;;;33048:295;;:::o;34311:328::-;34486:41;9112:10;34519:7;34486:18;:41::i;:::-;34478:103;;;;-1:-1:-1;;;34478:103:0;;;;;;;:::i;:::-;34592:39;34606:4;34612:2;34616:7;34625:5;34592:13;:39::i;:::-;34311:328;;;;:::o;58305:155::-;58396:13;58429:23;58444:7;58429:14;:23::i;57417:314::-;57478:10;57490:7;53904:17;53924:13;44032:10;:17;;43944:113;53924:13;53956:8;;53904:33;;-1:-1:-1;53956:8:0;;53948:36;;;;-1:-1:-1;;;53948:36:0;;;;;;;:::i;:::-;54018:13;54003:11;:9;:11::i;:::-;:28;;;;;;;;:::i;:::-;;53995:61;;;;-1:-1:-1;;;53995:61:0;;11325:2:1;53995:61:0;;;11307:21:1;11364:2;11344:18;;;11337:30;-1:-1:-1;;;11383:18:1;;;11376:50;11443:18;;53995:61:0;11123:344:1;53995:61:0;51868:4;54075:12;:24;54067:45;;;;-1:-1:-1;;;54067:45:0;;17584:2:1;54067:45:0;;;17566:21:1;17623:1;17603:18;;;17596:29;-1:-1:-1;;;17641:18:1;;;17634:38;17689:18;;54067:45:0;17382:331:1;54067:45:0;51868:4;54132:22;54147:7;54132:12;:22;:::i;:::-;54131:37;;54123:85;;;;-1:-1:-1;;;54123:85:0;;9047:2:1;54123:85:0;;;9029:21:1;9086:2;9066:18;;;9059:30;9125:34;9105:18;;;9098:62;-1:-1:-1;;;9176:18:1;;;9169:33;9219:19;;54123:85:0;8845:399:1;54123:85:0;54254:7;54241:10;:8;:10::i;:::-;:20;;;;:::i;:::-;54227:9;:35;;54219:68;;;;-1:-1:-1;;;54219:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54307:14:0;;;;;;:9;:14;;;;;;54336:1;;54307:24;;54324:7;;54307:24;:::i;:::-;54306:31;;54298:56;;;;-1:-1:-1;;;54298:56:0;;19084:2:1;54298:56:0;;;19066:21:1;19123:2;19103:18;;;19096:30;-1:-1:-1;;;19142:18:1;;;19135:42;19194:18;;54298:56:0;18882:336:1;54298:56:0;54422:9:::1;54435:10;54422:23;54414:54;;;;-1:-1:-1::0;;;54414:54:0::1;;;;;;;:::i;:::-;57534:10:::2;57520:11;57555:133;57576:7;57572:1;:11;57555:133;;;57605:21;:9;3196:19:::0;;3214:1;3196:19;;;3107:127;57605:21:::2;57641:35;57651:3;57656:19;:9;3077:14:::0;;2985:114;57641:35:::2;57585:3:::0;::::2;::::0;::::2;:::i;:::-;;;;57555:133;;;-1:-1:-1::0;;;;;;57698:14:0;::::2;;::::0;;;:9:::2;:14;::::0;;;;:25;;57716:7;;57698:14;:25:::2;::::0;57716:7;;57698:25:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;57417:314:0:o;11144:192::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11233:22:0;::::1;11225:73;;;::::0;-1:-1:-1;;;11225:73:0;;9451:2:1;11225:73:0::1;::::0;::::1;9433:21:1::0;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;-1:-1:-1;;;9580:18:1;;;9573:36;9626:19;;11225:73:0::1;9249:402:1::0;11225:73:0::1;11309:19;11319:8;11309:9;:19::i;:::-;11144:192:::0;:::o;55679:119::-;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;55760:13:::1;:30:::0;55679:119::o;56595:400::-;52828:8;;56691:10;;56703:7;;56712:12;;;;52828:8;;52820:36;;;;-1:-1:-1;;;52820:36:0;;;;;;;:::i;:::-;52890:14;52875:11;:9;:11::i;:::-;:29;;;;;;;;:::i;:::-;;52867:64;;;;-1:-1:-1;;;52867:64:0;;10215:2:1;52867:64:0;;;10197:21:1;10254:2;10234:18;;;10227:30;-1:-1:-1;;;10273:18:1;;;10266:52;10335:18;;52867:64:0;10013:346:1;52867:64:0;-1:-1:-1;;;;;52951:19:0;;;;;;:14;:19;;;;;;;;52950:20;52942:59;;;;-1:-1:-1;;;52942:59:0;;19778:2:1;52942:59:0;;;19760:21:1;19817:2;19797:18;;;19790:30;19856:28;19836:18;;;19829:56;19902:18;;52942:59:0;19576:350:1;52942:59:0;53037:30;;-1:-1:-1;;5355:2:1;5351:15;;;5347:53;53037:30:0;;;5335:66:1;5417:12;;;5410:28;;;53012:12:0;;5454::1;;53037:30:0;;;;;;;;;;;;53027:41;;;;;;53012:56;;53087:51;53106:12;;53087:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53120:11:0;;;-1:-1:-1;53133:4:0;;-1:-1:-1;53087:18:0;:51::i;:::-;53079:85;;;;-1:-1:-1;;;53079:85:0;;20493:2:1;53079:85:0;;;20475:21:1;20532:2;20512:18;;;20505:30;-1:-1:-1;;;20551:18:1;;;20544:51;20612:18;;53079:85:0;20291:345:1;53079:85:0;53197:22;53212:7;52030:10;53197:22;:::i;:::-;53183:9;:37;;53175:70;;;;-1:-1:-1;;;53175:70:0;;;;;;;:::i;:::-;54422:9:::1;54435:10;54422:23;54414:54;;;;-1:-1:-1::0;;;54414:54:0::1;;;;;;;:::i;:::-;56761:10:::2;56747:11;56782:133;56803:7;56799:1;:11;56782:133;;;56832:21;:9;3196:19:::0;;3214:1;3196:19;;;3107:127;56832:21:::2;56868:35;56878:3;56883:19;:9;3077:14:::0;;2985:114;56868:35:::2;56812:3:::0;::::2;::::0;::::2;:::i;:::-;;;;56782:133;;;-1:-1:-1::0;;;;;;56925:19:0;::::2;;::::0;;;:14:::2;:19;::::0;;;;;;;:26;;-1:-1:-1;;56925:26:0::2;56947:4;56925:26;::::0;;56962:9:::2;:14:::0;;;;;:25;;56980:7;;56925:19;56962:25:::2;::::0;56980:7;;56962:25:::2;:::i;56142:112::-:0;10317:6;;-1:-1:-1;;;;;10317:6:0;9112:10;10464:23;10456:68;;;;-1:-1:-1;;;10456:68:0;;;;;;;:::i;:::-;56222:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;3107:127::-:0;3196:19;;3214:1;3196:19;;;3107:127::o;2985:114::-;3077:14;;2985:114::o;12290:387::-;12613:20;12661:8;;;12290:387::o;44980:589::-;-1:-1:-1;;;;;45186:18:0;;45182:187;;45221:40;45253:7;46396:10;:17;;46369:24;;;;:15;:24;;;;;:44;;;46424:24;;;;;;;;;;;;46292:164;45221:40;45182:187;;;45291:2;-1:-1:-1;;;;;45283:10:0;:4;-1:-1:-1;;;;;45283:10:0;;45279:90;;45310:47;45343:4;45349:7;45310:32;:47::i;:::-;-1:-1:-1;;;;;45383:16:0;;45379:183;;45416:45;45453:7;45416:36;:45::i;45379:183::-;45489:4;-1:-1:-1;;;;;45483:10:0;:2;-1:-1:-1;;;;;45483:10:0;;45479:83;;45510:40;45538:2;45542:7;45510:27;:40::i;43304:224::-;43406:4;-1:-1:-1;;;;;;43430:50:0;;-1:-1:-1;;;43430:50:0;;:90;;;43484:36;43508:11;43484:23;:36::i;54496:369::-;54540:6;54581:11;;54562:15;:30;54559:268;;-1:-1:-1;54616:13:0;;54496:369::o;54559:268::-;54670:14;;54651:15;:33;54647:180;;-1:-1:-1;54708:16:0;;54496:369::o;54647:180::-;54765:12;;54746:15;:31;54742:85;;-1:-1:-1;54801:14:0;;54496:369::o;54742:85::-;-1:-1:-1;54844:13:0;;54496:369::o;908:190::-;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;37133:110::-;37209:26;37219:2;37223:7;37209:26;;;;;;;;;;;;:9;:26::i;40131:174::-;40206:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40206:29:0;-1:-1:-1;;;;;40206:29:0;;;;;;;;:24;;40260:23;40206:24;40260:14;:23::i;:::-;-1:-1:-1;;;;;40251:46:0;;;;;;;;;;;40131:174;;:::o;36443:348::-;36536:4;36238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36238:16:0;36553:73;;;;-1:-1:-1;;;36553:73:0;;11674:2:1;36553:73:0;;;11656:21:1;11713:2;11693:18;;;11686:30;11752:34;11732:18;;;11725:62;-1:-1:-1;;;11803:18:1;;;11796:42;11855:19;;36553:73:0;11472:408:1;36553:73:0;36637:13;36653:23;36668:7;36653:14;:23::i;:::-;36637:39;;36706:5;-1:-1:-1;;;;;36695:16:0;:7;-1:-1:-1;;;;;36695:16:0;;:51;;;;36739:7;-1:-1:-1;;;;;36715:31:0;:20;36727:7;36715:11;:20::i;:::-;-1:-1:-1;;;;;36715:31:0;;36695:51;:87;;;-1:-1:-1;;;;;;33535:25:0;;;33511:4;33535:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36750:32;36687:96;36443:348;-1:-1:-1;;;;36443:348:0:o;39435:578::-;39594:4;-1:-1:-1;;;;;39567:31:0;:23;39582:7;39567:14;:23::i;:::-;-1:-1:-1;;;;;39567:31:0;;39559:85;;;;-1:-1:-1;;;39559:85:0;;15938:2:1;39559:85:0;;;15920:21:1;15977:2;15957:18;;;15950:30;16016:34;15996:18;;;15989:62;-1:-1:-1;;;16067:18:1;;;16060:39;16116:19;;39559:85:0;15736:405:1;39559:85:0;-1:-1:-1;;;;;39663:16:0;;39655:65;;;;-1:-1:-1;;;39655:65:0;;10566:2:1;39655:65:0;;;10548:21:1;10605:2;10585:18;;;10578:30;10644:34;10624:18;;;10617:62;-1:-1:-1;;;10695:18:1;;;10688:34;10739:19;;39655:65:0;10364:400:1;39655:65:0;39733:39;39754:4;39760:2;39764:7;39733:20;:39::i;:::-;39837:29;39854:1;39858:7;39837:8;:29::i;:::-;-1:-1:-1;;;;;39879:15:0;;;;;;:9;:15;;;;;:20;;39898:1;;39879:15;:20;;39898:1;;39879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39910:13:0;;;;;;:9;:13;;;;;:18;;39927:1;;39910:13;:18;;39927:1;;39910:18;:::i;:::-;;;;-1:-1:-1;;39939:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39939:21:0;-1:-1:-1;;;;;39939:21:0;;;;;;;;;39978:27;;39939:16;;39978:27;;;;;;;39435:578;;;:::o;11344:173::-;11419:6;;;-1:-1:-1;;;;;11436:17:0;;;-1:-1:-1;;;;;;11436:17:0;;;;;;;11469:40;;11419:6;;;11436:17;11419:6;;11469:40;;11400:16;;11469:40;11389:128;11344:173;:::o;54972:352::-;55015:4;55058:11;;55040:15;:29;55032:66;;;;-1:-1:-1;;;55032:66:0;;19425:2:1;55032:66:0;;;19407:21:1;19464:2;19444:18;;;19437:30;19503:26;19483:18;;;19476:54;19547:18;;55032:66:0;19223:348:1;55032:66:0;55109:12;55159:10;55143:11;;55125:15;:29;;;;:::i;:::-;55124:46;;;;:::i;:::-;55109:61;;55195:2;55185:7;:12;55181:35;;;-1:-1:-1;55211:2:0;55181:35;55226:17;55266:19;:7;55276:9;55266:19;:::i;:::-;55246:40;;51920:10;55246:40;:::i;:::-;55226:60;54972:352;-1:-1:-1;;;54972:352:0:o;35521:315::-;35678:28;35688:4;35694:2;35698:7;35678:9;:28::i;:::-;35725:48;35748:4;35754:2;35758:7;35767:5;35725:22;:48::i;:::-;35717:111;;;;-1:-1:-1;;;35717:111:0;;;;;;;:::i;49882:679::-;36214:4;36238:16;;;:7;:16;;;;;;49955:13;;-1:-1:-1;;;;;36238:16:0;49981:78;;;;-1:-1:-1;;;49981:78:0;;14746:2:1;49981:78:0;;;14728:21:1;14785:2;14765:18;;;14758:30;14824:34;14804:18;;;14797:62;-1:-1:-1;;;14875:18:1;;;14868:47;14932:19;;49981:78:0;14544:413:1;49981:78:0;50072:23;50098:19;;;:10;:19;;;;;50072:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50128:18;50149:10;:8;:10::i;:::-;50128:31;;50241:4;50235:18;50257:1;50235:23;50231:72;;;-1:-1:-1;50282:9:0;49882:679;-1:-1:-1;;49882:679:0:o;50231:72::-;50407:23;;:27;50403:108;;50482:4;50488:9;50465:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50451:48;;;;49882:679;;;:::o;50403:108::-;50530:23;50545:7;50530:14;:23::i;47083:988::-;47349:22;47399:1;47374:22;47391:4;47374:16;:22::i;:::-;:26;;;;:::i;:::-;47411:18;47432:26;;;:17;:26;;;;;;47349:51;;-1:-1:-1;47565:28:0;;;47561:328;;-1:-1:-1;;;;;47632:18:0;;47610:19;47632:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47683:30;;;;;;:44;;;47800:30;;:17;:30;;;;;:43;;;47561:328;-1:-1:-1;47985:26:0;;;;:17;:26;;;;;;;;47978:33;;;-1:-1:-1;;;;;48029:18:0;;;;;:12;:18;;;;;:34;;;;;;;48022:41;47083:988::o;48366:1079::-;48644:10;:17;48619:22;;48644:21;;48664:1;;48644:21;:::i;:::-;48676:18;48697:24;;;:15;:24;;;;;;49070:10;:26;;48619:46;;-1:-1:-1;48697:24:0;;48619:46;;49070:26;;;;;;:::i;:::-;;;;;;;;;49048:48;;49134:11;49109:10;49120;49109:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49214:28;;;:15;:28;;;;;;;:41;;;49386:24;;;;;49379:31;49421:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48437:1008;;;48366:1079;:::o;45870:221::-;45955:14;45972:20;45989:2;45972:16;:20::i;:::-;-1:-1:-1;;;;;46003:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46048:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45870:221:0:o;30251:305::-;30353:4;-1:-1:-1;;;;;;30390:40:0;;-1:-1:-1;;;30390:40:0;;:105;;-1:-1:-1;;;;;;;30447:48:0;;-1:-1:-1;;;30447:48:0;30390:105;:158;;;-1:-1:-1;;;;;;;;;;22339:40:0;;;30512:36;22230:157;1460:701;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;5634:19:1;;;5669:12;;;5662:28;;;5706:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;5634:19:1;;;5669:12;;;5662:28;;;5706:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;;-1:-1:-1;2141:12:0;1460:701;-1:-1:-1;;;1460:701:0:o;37470:321::-;37600:18;37606:2;37610:7;37600:5;:18::i;:::-;37651:54;37682:1;37686:2;37690:7;37699:5;37651:22;:54::i;:::-;37629:154;;;;-1:-1:-1;;;37629:154:0;;;;;;;:::i;57943:231::-;58071:45;58098:4;58104:2;58108:7;58071:26;:45::i;:::-;58127:21;;;;:12;:21;;;;;58151:15;58127:39;;-1:-1:-1;;57943:231:0:o;40870:799::-;41025:4;-1:-1:-1;;;;;41046:13:0;;12613:20;12661:8;41042:620;;41082:72;;-1:-1:-1;;;41082:72:0;;-1:-1:-1;;;;;41082:36:0;;;;;:72;;9112:10;;41133:4;;41139:7;;41148:5;;41082:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41082:72:0;;;;;;;;-1:-1:-1;;41082:72:0;;;;;;;;;;;;:::i;:::-;;;41078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41324:13:0;;41320:272;;41367:60;;-1:-1:-1;;;41367:60:0;;;;;;;:::i;41320:272::-;41542:6;41536:13;41527:6;41523:2;41519:15;41512:38;41078:529;-1:-1:-1;;;;;;41205:51:0;-1:-1:-1;;;41205:51:0;;-1:-1:-1;41198:58:0;;41042:620;-1:-1:-1;41646:4:0;40870:799;;;;;;:::o;55431:117::-;55491:13;55524:16;55517:23;;;;;:::i;31540:334::-;36214:4;36238:16;;;:7;:16;;;;;;31613:13;;-1:-1:-1;;;;;36238:16:0;31639:76;;;;-1:-1:-1;;;31639:76:0;;16348:2:1;31639:76:0;;;16330:21:1;16387:2;16367:18;;;16360:30;16426:34;16406:18;;;16399:62;-1:-1:-1;;;16477:18:1;;;16470:45;16532:19;;31639:76:0;16146:411:1;31639:76:0;31728:21;31752:10;:8;:10::i;:::-;31728:34;;31804:1;31786:7;31780:21;:25;:86;;;;;;;;;;;;;;;;;31832:7;31841:18;:7;:16;:18::i;:::-;31815:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31773:93;31540:334;-1:-1:-1;;;31540:334:0:o;38127:382::-;-1:-1:-1;;;;;38207:16:0;;38199:61;;;;-1:-1:-1;;;38199:61:0;;14385:2:1;38199:61:0;;;14367:21:1;;;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;14515:18;;38199:61:0;14183:356:1;38199:61:0;36214:4;36238:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36238:16:0;:30;38271:58;;;;-1:-1:-1;;;38271:58:0;;9858:2:1;38271:58:0;;;9840:21:1;9897:2;9877:18;;;9870:30;9936;9916:18;;;9909:58;9984:18;;38271:58:0;9656:352:1;38271:58:0;38342:45;38371:1;38375:2;38379:7;38342:20;:45::i;:::-;-1:-1:-1;;;;;38400:13:0;;;;;;:9;:13;;;;;:18;;38417:1;;38400:13;:18;;38417:1;;38400:18;:::i;:::-;;;;-1:-1:-1;;38429:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38429:21:0;-1:-1:-1;;;;;38429:21:0;;;;;;;;38468:33;;38429:16;;;38468:33;;38429:16;;38468:33;38127:382;;:::o;6648:723::-;6704:13;6925:10;6921:53;;-1:-1:-1;;6952:10:0;;;;;;;;;;;;-1:-1:-1;;;6952:10:0;;;;;6648:723::o;6921:53::-;6999:5;6984:12;7040:78;7047:9;;7040:78;;7073:8;;;;:::i;:::-;;-1:-1:-1;7096:10:0;;-1:-1:-1;7104:2:0;7096:10;;:::i;:::-;;;7040:78;;;7128:19;7160:6;7150:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7150:17:0;;7128:39;;7178:154;7185:10;;7178:154;;7212:11;7222:1;7212:11;;:::i;:::-;;-1:-1:-1;7281:10:0;7289:2;7281:5;:10;:::i;:::-;7268:24;;:2;:24;:::i;:::-;7255:39;;7238:6;7245;7238:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7238:56:0;;;;;;;;-1:-1:-1;7309:11:0;7318:2;7309:11;;:::i;:::-;;;7178:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:180::-;2958:6;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;-1:-1:-1;3050:23:1;;2899:180;-1:-1:-1;2899:180:1:o;3084:245::-;3142:6;3195:2;3183:9;3174:7;3170:23;3166:32;3163:52;;;3211:1;3208;3201:12;3163:52;3250:9;3237:23;3269:30;3293:5;3269:30;:::i;3334:249::-;3403:6;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3504:9;3498:16;3523:30;3547:5;3523:30;:::i;3588:450::-;3657:6;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3799:18;3791:6;3788:30;3785:50;;;3831:1;3828;3821:12;3785:50;3854:22;;3907:4;3899:13;;3895:27;-1:-1:-1;3885:55:1;;3936:1;3933;3926:12;3885:55;3959:73;4024:7;4019:2;4006:16;4001:2;3997;3993:11;3959:73;:::i;4228:683::-;4323:6;4331;4339;4392:2;4380:9;4371:7;4367:23;4363:32;4360:52;;;4408:1;4405;4398:12;4360:52;4444:9;4431:23;4421:33;;4505:2;4494:9;4490:18;4477:32;4528:18;4569:2;4561:6;4558:14;4555:34;;;4585:1;4582;4575:12;4555:34;4623:6;4612:9;4608:22;4598:32;;4668:7;4661:4;4657:2;4653:13;4649:27;4639:55;;4690:1;4687;4680:12;4639:55;4730:2;4717:16;4756:2;4748:6;4745:14;4742:34;;;4772:1;4769;4762:12;4742:34;4825:7;4820:2;4810:6;4807:1;4803:14;4799:2;4795:23;4791:32;4788:45;4785:65;;;4846:1;4843;4836:12;4785:65;4877:2;4873;4869:11;4859:21;;4899:6;4889:16;;;;;4228:683;;;;;:::o;4916:257::-;4957:3;4995:5;4989:12;5022:6;5017:3;5010:19;5038:63;5094:6;5087:4;5082:3;5078:14;5071:4;5064:5;5060:16;5038:63;:::i;:::-;5155:2;5134:15;-1:-1:-1;;5130:29:1;5121:39;;;;5162:4;5117:50;;4916:257;-1:-1:-1;;4916:257:1:o;5729:470::-;5908:3;5946:6;5940:13;5962:53;6008:6;6003:3;5996:4;5988:6;5984:17;5962:53;:::i;:::-;6078:13;;6037:16;;;;6100:57;6078:13;6037:16;6134:4;6122:17;;6100:57;:::i;:::-;6173:20;;5729:470;-1:-1:-1;;;;5729:470:1:o;6412:488::-;-1:-1:-1;;;;;6681:15:1;;;6663:34;;6733:15;;6728:2;6713:18;;6706:43;6780:2;6765:18;;6758:34;;;6828:3;6823:2;6808:18;;6801:31;;;6606:4;;6849:45;;6874:19;;6866:6;6849:45;:::i;:::-;6841:53;6412:488;-1:-1:-1;;;;;;6412:488:1:o;7097:339::-;7240:2;7225:18;;7273:1;7262:13;;7252:144;;7318:10;7313:3;7309:20;7306:1;7299:31;7353:4;7350:1;7343:15;7381:4;7378:1;7371:15;7252:144;7405:25;;;7097:339;:::o;7441:219::-;7590:2;7579:9;7572:21;7553:4;7610:44;7650:2;7639:9;7635:18;7627:6;7610:44;:::i;7665:344::-;7867:2;7849:21;;;7906:2;7886:18;;;7879:30;-1:-1:-1;;;7940:2:1;7925:18;;7918:50;8000:2;7985:18;;7665:344::o;8426:414::-;8628:2;8610:21;;;8667:2;8647:18;;;8640:30;8706:34;8701:2;8686:18;;8679:62;-1:-1:-1;;;8772:2:1;8757:18;;8750:48;8830:3;8815:19;;8426:414::o;11885:339::-;12087:2;12069:21;;;12126:2;12106:18;;;12099:30;-1:-1:-1;;;12160:2:1;12145:18;;12138:45;12215:2;12200:18;;11885:339::o;15375:356::-;15577:2;15559:21;;;15596:18;;;15589:30;15655:34;15650:2;15635:18;;15628:62;15722:2;15707:18;;15375:356::o;16964:413::-;17166:2;17148:21;;;17205:2;17185:18;;;17178:30;17244:34;17239:2;17224:18;;17217:62;-1:-1:-1;;;17310:2:1;17295:18;;17288:47;17367:3;17352:19;;16964:413::o;18535:342::-;18737:2;18719:21;;;18776:2;18756:18;;;18749:30;-1:-1:-1;;;18810:2:1;18795:18;;18788:48;18868:2;18853:18;;18535:342::o;20823:128::-;20863:3;20894:1;20890:6;20887:1;20884:13;20881:39;;;20900:18;;:::i;:::-;-1:-1:-1;20936:9:1;;20823:128::o;20956:120::-;20996:1;21022;21012:35;;21027:18;;:::i;:::-;-1:-1:-1;21061:9:1;;20956:120::o;21081:168::-;21121:7;21187:1;21183;21179:6;21175:14;21172:1;21169:21;21164:1;21157:9;21150:17;21146:45;21143:71;;;21194:18;;:::i;:::-;-1:-1:-1;21234:9:1;;21081:168::o;21254:125::-;21294:4;21322:1;21319;21316:8;21313:34;;;21327:18;;:::i;:::-;-1:-1:-1;21364:9:1;;21254:125::o;21384:258::-;21456:1;21466:113;21480:6;21477:1;21474:13;21466:113;;;21556:11;;;21550:18;21537:11;;;21530:39;21502:2;21495:10;21466:113;;;21597:6;21594:1;21591:13;21588:48;;;-1:-1:-1;;21632:1:1;21614:16;;21607:27;21384:258::o;21647:380::-;21726:1;21722:12;;;;21769;;;21790:61;;21844:4;21836:6;21832:17;21822:27;;21790:61;21897:2;21889:6;21886:14;21866:18;21863:38;21860:161;;;21943:10;21938:3;21934:20;21931:1;21924:31;21978:4;21975:1;21968:15;22006:4;22003:1;21996:15;21860:161;;21647:380;;;:::o;22032:135::-;22071:3;-1:-1:-1;;22092:17:1;;22089:43;;;22112:18;;:::i;:::-;-1:-1:-1;22159:1:1;22148:13;;22032:135::o;22172:112::-;22204:1;22230;22220:35;;22235:18;;:::i;:::-;-1:-1:-1;22269:9:1;;22172:112::o;22289:127::-;22350:10;22345:3;22341:20;22338:1;22331:31;22381:4;22378:1;22371:15;22405:4;22402:1;22395:15;22421:127;22482:10;22477:3;22473:20;22470:1;22463:31;22513:4;22510:1;22503:15;22537:4;22534:1;22527:15;22553:127;22614:10;22609:3;22605:20;22602:1;22595:31;22645:4;22642:1;22635:15;22669:4;22666:1;22659:15;22685:127;22746:10;22741:3;22737:20;22734:1;22727:31;22777:4;22774:1;22767:15;22801:4;22798:1;22791:15;22817:127;22878:10;22873:3;22869:20;22866:1;22859:31;22909:4;22906:1;22899:15;22933:4;22930:1;22923:15;22949:127;23010:10;23005:3;23001:20;22998:1;22991:31;23041:4;23038:1;23031:15;23065:4;23062:1;23055:15;23081:131;-1:-1:-1;;;;;;23155:32:1;;23145:43;;23135:71;;23202:1;23199;23192:12

Swarm Source

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