ETH Price: $3,453.46 (-0.97%)
Gas: 3 Gwei

Token

MR POTATO NFTs (POTATOS)
 

Overview

Max Total Supply

3,333 POTATOS

Holders

1,407

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 POTATOS
0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
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:
POTATO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-19
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: potato.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;





contract POTATO is Ownable, ERC721A {
    uint256 constant public maxSupply = 3333;
    uint256 public publicPrice = 0.02 ether;
    string public revealedURI = "ipfs:// ----IFPS---/";
    bool public whiteMintEnabled = true;
    bool public publicMintEnabled = false;
    uint256 constant public whiteMintNum = 1;
    uint256 constant public publicMintNum = 3;
    mapping(address => uint256) public WhiteMintedWallets;
    mapping(address => uint256) public PublicMintedWallets;

    bytes32 public root;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _revealedURI,
        bytes32 _root
    ) ERC721A(_name, _symbol) {
        revealedURI = _revealedURI;
        root = _root;
    }

    function setRoot(bytes32 _root) public onlyOwner {
        root = _root;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
    }


    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }


    function whiteMint(uint256 quantity, bytes32[] memory proof) external payable mintCompliance(quantity) {
        require(whiteMintEnabled,"Unable to mint on white");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "user not in whitelist");
        require(maxSupply > totalSupply(), "sold out");
        uint256 currMints = WhiteMintedWallets[msg.sender];
        require(quantity <= whiteMintNum, "u want white mint too many");
        require(currMints + quantity  <= whiteMintNum, "u wanna mint too many");
        
        if(quantity <= whiteMintNum) {
            WhiteMintedWallets[msg.sender] = (currMints + quantity);
            _safeMint(msg.sender, quantity);
        }
    }

    function getWhiteMintNum() public view returns (uint256) {
        return WhiteMintedWallets[msg.sender];
    }


    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicMintEnabled,"Unable to mint on public");
        require(maxSupply > totalSupply(), "sold out");
        uint256 currMints = PublicMintedWallets[msg.sender];
        require(quantity <= publicMintNum, "u want white mint too many");
        require(currMints + quantity  <= publicMintNum, "u wanna mint too many");
        
        if(quantity <= publicMintNum) {
            require(msg.value >= (quantity) * publicPrice, "give me more money");
            PublicMintedWallets[msg.sender] = (currMints + quantity);
            _safeMint(msg.sender, quantity);
        }
    }

    function getpublicMintNum() public view returns (uint256) {
        return PublicMintedWallets[msg.sender];
    }

    function ShowTotalSupply() public view returns (uint256) {
        return totalSupply();
    }
    

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }


    function contractURI() public view returns (string memory) {
        return revealedURI;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        revealedURI = _contractURI;
    }

    function setWhiteMintEnabled(bool _state) public onlyOwner {
        whiteMintEnabled = _state;
    }

    function setPublicMintEnabled(bool _state) public onlyOwner {
        publicMintEnabled = _state;
    }
    

    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner {
        (bool success, ) =_address.call{value: amount}("");
        require(success, "Transfer failed.");
    }

    modifier mintCompliance(uint256 quantity) {
        require(quantity != 0,"mint num is 0");
        require(totalSupply() + quantity <= maxSupply, "you cant become ugly anymore");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_revealedURI","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"","type":"address"}],"name":"PublicMintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ShowTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhiteMintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getWhiteMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getpublicMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"payable","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":"payable","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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhiteMintEnabled","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":"_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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df8200006009556040518060400160405280601481526020017f697066733a2f2f202d2d2d2d494650532d2d2d2f000000000000000000000000815250600a90805190602001906200005c92919062000231565b506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550348015620000a057600080fd5b5060405162004687380380620046878339818101604052810190620000c6919062000376565b8383620000e8620000dc6200015c60201b60201c565b6200016460201b60201c565b81600390805190602001906200010092919062000231565b5080600490805190602001906200011992919062000231565b506200012a6200022860201b60201c565b600181905550505081600a90805190602001906200014a92919062000231565b5080600e8190555050505050620005ed565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200023f90620004e4565b90600052602060002090601f016020900481019282620002635760008555620002af565b82601f106200027e57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002ae57825182559160200191906001019062000291565b5b509050620002be9190620002c2565b5090565b5b80821115620002dd576000816000905550600101620002c3565b5090565b6000620002f8620002f2846200046e565b62000445565b905082815260208101848484011115620003175762000316620005b3565b5b62000324848285620004ae565b509392505050565b6000815190506200033d81620005d3565b92915050565b600082601f8301126200035b576200035a620005ae565b5b81516200036d848260208601620002e1565b91505092915050565b60008060008060808587031215620003935762000392620005bd565b5b600085015167ffffffffffffffff811115620003b457620003b3620005b8565b5b620003c28782880162000343565b945050602085015167ffffffffffffffff811115620003e657620003e5620005b8565b5b620003f48782880162000343565b935050604085015167ffffffffffffffff811115620004185762000417620005b8565b5b620004268782880162000343565b925050606062000439878288016200032c565b91505092959194509250565b60006200045162000464565b90506200045f82826200051a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048c576200048b6200057f565b5b6200049782620005c2565b9050602081019050919050565b6000819050919050565b60005b83811015620004ce578082015181840152602081019050620004b1565b83811115620004de576000848401525b50505050565b60006002820490506001821680620004fd57607f821691505b6020821081141562000514576200051362000550565b5b50919050565b6200052582620005c2565b810181811067ffffffffffffffff821117156200054757620005466200057f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005de81620004a4565b8114620005ea57600080fd5b50565b61408a80620005fd6000396000f3fe6080604052600436106102515760003560e01c8063818668d711610139578063c87b56dd116100b6578063e4055c171161007a578063e4055c1714610895578063e8a3d485146108b1578063e985e9c5146108dc578063ebf0c71714610919578063f2fde38b14610944578063f7e8d6ea1461096d57610251565b8063c87b56dd146107ae578063cae62f86146107eb578063d5abeb0114610816578063dab5f34014610841578063dafb0d221461086a57610251565b8063a22cb465116100fd578063a22cb465146106d8578063a945bf8014610701578063b88d4fde1461072c578063b8a20ed014610748578063c62752551461078557610251565b8063818668d7146106075780638da5cb5b146106305780639007bd721461065b578063938e3d7b1461068457806395d89b41146106ad57610251565b806330264a5b116101d2578063438b630011610196578063438b6300146104e55780634f7f8976146105225780635e8d53931461054b5780636352211e1461057657806370a08231146105b3578063715018a6146105f057610251565b806330264a5b1461040d578063320d56af146104365780633584847b146104615780633c6d0b0a1461048c57806342842e0e146104c957610251565b8063178c10f811610219578063178c10f81461034257806318160ddd1461036d57806323b872dd146103985780632da2f9b3146103b45780632db11544146103f157610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630f4161aa14610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612f33565b610998565b60405161028a91906135b1565b60405180910390f35b34801561029f57600080fd5b506102a8610a2a565b6040516102b591906135e7565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612fd6565b610abc565b6040516102f29190613528565b60405180910390f35b61031560048036038101906103109190612e3d565b610b3b565b005b34801561032357600080fd5b5061032c610c7f565b60405161033991906135b1565b60405180910390f35b34801561034e57600080fd5b50610357610c92565b60405161036491906137c9565b60405180910390f35b34801561037957600080fd5b50610382610c97565b60405161038f91906137c9565b60405180910390f35b6103b260048036038101906103ad9190612d27565b610cae565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612cba565b610fd3565b6040516103e891906137c9565b60405180910390f35b61040b60048036038101906104069190612fd6565b610feb565b005b34801561041957600080fd5b50610434600480360381019061042f9190612ed9565b61131d565b005b34801561044257600080fd5b5061044b611342565b60405161045891906137c9565b60405180910390f35b34801561046d57600080fd5b50610476611347565b60405161048391906137c9565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612cba565b61138e565b6040516104c091906137c9565b60405180910390f35b6104e360048036038101906104de9190612d27565b6113a6565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612cba565b6113c6565b604051610519919061358f565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612e3d565b6114d1565b005b34801561055757600080fd5b5061056061158a565b60405161056d91906135b1565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612fd6565b61159d565b6040516105aa9190613528565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190612cba565b6115af565b6040516105e791906137c9565b60405180910390f35b3480156105fc57600080fd5b50610605611668565b005b34801561061357600080fd5b5061062e60048036038101906106299190612ed9565b61167c565b005b34801561063c57600080fd5b506106456116a1565b6040516106529190613528565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613003565b6116ca565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612f8d565b6117eb565b005b3480156106b957600080fd5b506106c261180d565b6040516106cf91906135e7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612dfd565b61189f565b005b34801561070d57600080fd5b506107166119aa565b60405161072391906137c9565b60405180910390f35b61074660048036038101906107419190612d7a565b6119b0565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612e7d565b611a23565b60405161077c91906135b1565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612fd6565b611a3a565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190612fd6565b611a4c565b6040516107e291906135e7565b60405180910390f35b3480156107f757600080fd5b50610800611ac8565b60405161080d91906137c9565b60405180910390f35b34801561082257600080fd5b5061082b611b0f565b60405161083891906137c9565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190612f06565b611b15565b005b34801561087657600080fd5b5061087f611b27565b60405161088c91906137c9565b60405180910390f35b6108af60048036038101906108aa9190613043565b611b36565b005b3480156108bd57600080fd5b506108c6611e88565b6040516108d391906135e7565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612ce7565b611f1a565b60405161091091906135b1565b60405180910390f35b34801561092557600080fd5b5061092e611fae565b60405161093b91906135cc565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190612cba565b611fb4565b005b34801561097957600080fd5b50610982612038565b60405161098f91906135e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a3990613b08565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6590613b08565b8015610ab25780601f10610a8757610100808354040283529160200191610ab2565b820191906000526020600020905b815481529060010190602001808311610a9557829003601f168201915b5050505050905090565b6000610ac7826120c6565b610afd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b468261159d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b67612125565b73ffffffffffffffffffffffffffffffffffffffff1614610bca57610b9381610b8e612125565b611f1a565b610bc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60019054906101000a900460ff1681565b600181565b6000610ca161212d565b6002546001540303905090565b6000610cb982612136565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d20576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2c84612204565b91509150610d428187610d3d612125565b61222b565b610d8e57610d5786610d52612125565b611f1a565b610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610df5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e02868686600161226f565b8015610e0d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610edb85610eb7888887612275565b7c02000000000000000000000000000000000000000000000000000000001761229d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f63576000600185019050600060056000838152602001908152602001600020541415610f61576001548114610f60578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fcb86868660016122c8565b505050505050565b600c6020528060005260406000206000915090505481565b806000811415611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613689565b60405180910390fd5b610d058161103c610c97565b6110469190613933565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613669565b60405180910390fd5b600b60019054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906136e9565b60405180910390fd5b61114c610c97565b610d051161118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906136a9565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506003831115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613789565b60405180910390fd5b600383826112259190613933565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906136c9565b60405180910390fd5b60038311611318576009548361127c91906139ba565b3410156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613769565b60405180910390fd5b82816112ca9190613933565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131733846122ce565b5b505050565b6113256122ec565b80600b60006101000a81548160ff02191690831515021790555050565b600381565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600d6020528060005260406000206000915090505481565b6113c1838383604051806020016040528060008152506119b0565b505050565b606060006113d3836115af565b905060008167ffffffffffffffff8111156113f1576113f0613cc5565b5b60405190808252806020026020018201604052801561141f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561143c5750610d058211155b156114c557600061144c8361159d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b1578284838151811061149657611495613c96565b5b60200260200101818152505081806114ad90613b6b565b9250505b82806114bc90613b6b565b9350505061142b565b82945050505050919050565b6114d96122ec565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516114ff90613513565b60006040518083038185875af1925050503d806000811461153c576040519150601f19603f3d011682016040523d82523d6000602084013e611541565b606091505b5050905080611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c906137a9565b60405180910390fd5b505050565b600b60009054906101000a900460ff1681565b60006115a882612136565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611617576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116706122ec565b61167a600061236a565b565b6116846122ec565b80600b60016101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116d26122ec565b816000811415611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613689565b60405180910390fd5b610d0581611723610c97565b61172d9190613933565b111561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390613669565b60405180910390fd5b6117e682846122ce565b505050565b6117f36122ec565b80600a9080519060200190611809929190612a1b565b5050565b60606004805461181c90613b08565b80601f016020809104026020016040519081016040528092919081815260200182805461184890613b08565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b80600860006118ac612125565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611959612125565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199e91906135b1565b60405180910390a35050565b60095481565b6119bb848484610cae565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a1d576119e68484848461242e565b611a1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611a3283600e548461258e565b905092915050565b611a426122ec565b8060098190555050565b6060611a57826120c6565b611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613749565b60405180910390fd5b600a611aa1836125a5565b604051602001611ab29291906134e4565b6040516020818303038152906040529050919050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b610d0581565b611b1d6122ec565b80600e8190555050565b6000611b31610c97565b905090565b816000811415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613689565b60405180910390fd5b610d0581611b87610c97565b611b919190613933565b1115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790613669565b60405180910390fd5b600b60009054906101000a900460ff16611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8690613729565b60405180910390fd5b611cbf8233604051602001611ca491906134c9565b60405160208183030381529060405280519060200120611a23565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613629565b60405180910390fd5b611d06610c97565b610d0511611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906136a9565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506001841115611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc890613789565b60405180910390fd5b60018482611ddf9190613933565b1115611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e17906136c9565b60405180910390fd5b60018411611e82578381611e349190613933565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e8133856122ce565b5b50505050565b6060600a8054611e9790613b08565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec390613b08565b8015611f105780601f10611ee557610100808354040283529160200191611f10565b820191906000526020600020905b815481529060010190602001808311611ef357829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611fbc6122ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390613649565b60405180910390fd5b6120358161236a565b50565b600a805461204590613b08565b80601f016020809104026020016040519081016040528092919081815260200182805461207190613b08565b80156120be5780601f10612093576101008083540402835291602001916120be565b820191906000526020600020905b8154815290600101906020018083116120a157829003601f168201915b505050505081565b6000816120d161212d565b111580156120e0575060015482105b801561211e575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061214561212d565b116121cd576001548110156121cc5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156121ca575b60008114156121c0576005600083600190039350838152602001908152602001600020549050612195565b80925050506121ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861228c868684612706565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122e882826040518060200160405280600081525061270f565b5050565b6122f46127ad565b73ffffffffffffffffffffffffffffffffffffffff166123126116a1565b73ffffffffffffffffffffffffffffffffffffffff1614612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613709565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454612125565b8786866040518563ffffffff1660e01b81526004016124769493929190613543565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612f60565b60015b61253b573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b50600081511415612533576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008261259b85846127b5565b1490509392505050565b606060008214156125ed576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612701565b600082905060005b6000821461261f57808061260890613b6b565b915050600a826126189190613989565b91506125f5565b60008167ffffffffffffffff81111561263b5761263a613cc5565b5b6040519080825280601f01601f19166020018201604052801561266d5781602001600182028036833780820191505090505b5090505b600085146126fa576001826126869190613a14565b9150600a856126959190613bd8565b60306126a19190613933565b60f81b8183815181106126b7576126b6613c96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f39190613989565b9450612671565b8093505050505b919050565b60009392505050565b612719838361280b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127a85760006001549050600083820390505b61275a600086838060010194508661242e565b612790576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127475781600154146127a557600080fd5b50505b505050565b600033905090565b60008082905060005b8451811015612800576127eb828683815181106127de576127dd613c96565b5b60200260200101516129c9565b915080806127f890613b6b565b9150506127be565b508091505092915050565b60006001549050600082141561284d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285a600084838561226f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128d1836128c26000866000612275565b6128cb856129f4565b1761229d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461297257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612937565b5060008214156129ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506129c460008483856122c8565b505050565b60008183106129e1576129dc8284612a04565b6129ec565b6129eb8383612a04565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612a2790613b08565b90600052602060002090601f016020900481019282612a495760008555612a90565b82601f10612a6257805160ff1916838001178555612a90565b82800160010185558215612a90579182015b82811115612a8f578251825591602001919060010190612a74565b5b509050612a9d9190612aa1565b5090565b5b80821115612aba576000816000905550600101612aa2565b5090565b6000612ad1612acc84613809565b6137e4565b90508083825260208201905082856020860282011115612af457612af3613cf9565b5b60005b85811015612b245781612b0a8882612c0a565b845260208401935060208301925050600181019050612af7565b5050509392505050565b6000612b41612b3c84613835565b6137e4565b905082815260208101848484011115612b5d57612b5c613cfe565b5b612b68848285613ac6565b509392505050565b6000612b83612b7e84613866565b6137e4565b905082815260208101848484011115612b9f57612b9e613cfe565b5b612baa848285613ac6565b509392505050565b600081359050612bc181613fe1565b92915050565b600082601f830112612bdc57612bdb613cf4565b5b8135612bec848260208601612abe565b91505092915050565b600081359050612c0481613ff8565b92915050565b600081359050612c198161400f565b92915050565b600081359050612c2e81614026565b92915050565b600081519050612c4381614026565b92915050565b600082601f830112612c5e57612c5d613cf4565b5b8135612c6e848260208601612b2e565b91505092915050565b600082601f830112612c8c57612c8b613cf4565b5b8135612c9c848260208601612b70565b91505092915050565b600081359050612cb48161403d565b92915050565b600060208284031215612cd057612ccf613d08565b5b6000612cde84828501612bb2565b91505092915050565b60008060408385031215612cfe57612cfd613d08565b5b6000612d0c85828601612bb2565b9250506020612d1d85828601612bb2565b9150509250929050565b600080600060608486031215612d4057612d3f613d08565b5b6000612d4e86828701612bb2565b9350506020612d5f86828701612bb2565b9250506040612d7086828701612ca5565b9150509250925092565b60008060008060808587031215612d9457612d93613d08565b5b6000612da287828801612bb2565b9450506020612db387828801612bb2565b9350506040612dc487828801612ca5565b925050606085013567ffffffffffffffff811115612de557612de4613d03565b5b612df187828801612c49565b91505092959194509250565b60008060408385031215612e1457612e13613d08565b5b6000612e2285828601612bb2565b9250506020612e3385828601612bf5565b9150509250929050565b60008060408385031215612e5457612e53613d08565b5b6000612e6285828601612bb2565b9250506020612e7385828601612ca5565b9150509250929050565b60008060408385031215612e9457612e93613d08565b5b600083013567ffffffffffffffff811115612eb257612eb1613d03565b5b612ebe85828601612bc7565b9250506020612ecf85828601612c0a565b9150509250929050565b600060208284031215612eef57612eee613d08565b5b6000612efd84828501612bf5565b91505092915050565b600060208284031215612f1c57612f1b613d08565b5b6000612f2a84828501612c0a565b91505092915050565b600060208284031215612f4957612f48613d08565b5b6000612f5784828501612c1f565b91505092915050565b600060208284031215612f7657612f75613d08565b5b6000612f8484828501612c34565b91505092915050565b600060208284031215612fa357612fa2613d08565b5b600082013567ffffffffffffffff811115612fc157612fc0613d03565b5b612fcd84828501612c77565b91505092915050565b600060208284031215612fec57612feb613d08565b5b6000612ffa84828501612ca5565b91505092915050565b6000806040838503121561301a57613019613d08565b5b600061302885828601612ca5565b925050602061303985828601612bb2565b9150509250929050565b6000806040838503121561305a57613059613d08565b5b600061306885828601612ca5565b925050602083013567ffffffffffffffff81111561308957613088613d03565b5b61309585828601612bc7565b9150509250929050565b60006130ab83836134ab565b60208301905092915050565b6130c081613a48565b82525050565b6130d76130d282613a48565b613bb4565b82525050565b60006130e8826138bc565b6130f281856138ea565b93506130fd83613897565b8060005b8381101561312e578151613115888261309f565b9750613120836138dd565b925050600181019050613101565b5085935050505092915050565b61314481613a5a565b82525050565b61315381613a66565b82525050565b6000613164826138c7565b61316e81856138fb565b935061317e818560208601613ad5565b61318781613d0d565b840191505092915050565b600061319d826138d2565b6131a78185613917565b93506131b7818560208601613ad5565b6131c081613d0d565b840191505092915050565b60006131d6826138d2565b6131e08185613928565b93506131f0818560208601613ad5565b80840191505092915050565b6000815461320981613b08565b6132138186613928565b9450600182166000811461322e576001811461323f57613272565b60ff19831686528186019350613272565b613248856138a7565b60005b8381101561326a5781548189015260018201915060208101905061324b565b838801955050505b50505092915050565b6000613288601c83613917565b915061329382613d2b565b602082019050919050565b60006132ab601583613917565b91506132b682613d54565b602082019050919050565b60006132ce602683613917565b91506132d982613d7d565b604082019050919050565b60006132f1601383613917565b91506132fc82613dcc565b602082019050919050565b6000613314600d83613917565b915061331f82613df5565b602082019050919050565b6000613337600883613917565b915061334282613e1e565b602082019050919050565b600061335a601583613917565b915061336582613e47565b602082019050919050565b600061337d601883613917565b915061338882613e70565b602082019050919050565b60006133a0600583613928565b91506133ab82613e99565b600582019050919050565b60006133c3602083613917565b91506133ce82613ec2565b602082019050919050565b60006133e6601783613917565b91506133f182613eeb565b602082019050919050565b6000613409602f83613917565b915061341482613f14565b604082019050919050565b600061342c601283613917565b915061343782613f63565b602082019050919050565b600061344f601a83613917565b915061345a82613f8c565b602082019050919050565b600061347260008361390c565b915061347d82613fb5565b600082019050919050565b6000613495601083613917565b91506134a082613fb8565b602082019050919050565b6134b481613abc565b82525050565b6134c381613abc565b82525050565b60006134d582846130c6565b60148201915081905092915050565b60006134f082856131fc565b91506134fc82846131cb565b915061350782613393565b91508190509392505050565b600061351e82613465565b9150819050919050565b600060208201905061353d60008301846130b7565b92915050565b600060808201905061355860008301876130b7565b61356560208301866130b7565b61357260408301856134ba565b81810360608301526135848184613159565b905095945050505050565b600060208201905081810360008301526135a981846130dd565b905092915050565b60006020820190506135c6600083018461313b565b92915050565b60006020820190506135e1600083018461314a565b92915050565b600060208201905081810360008301526136018184613192565b905092915050565b600060208201905081810360008301526136228161327b565b9050919050565b600060208201905081810360008301526136428161329e565b9050919050565b60006020820190508181036000830152613662816132c1565b9050919050565b60006020820190508181036000830152613682816132e4565b9050919050565b600060208201905081810360008301526136a281613307565b9050919050565b600060208201905081810360008301526136c28161332a565b9050919050565b600060208201905081810360008301526136e28161334d565b9050919050565b6000602082019050818103600083015261370281613370565b9050919050565b60006020820190508181036000830152613722816133b6565b9050919050565b60006020820190508181036000830152613742816133d9565b9050919050565b60006020820190508181036000830152613762816133fc565b9050919050565b600060208201905081810360008301526137828161341f565b9050919050565b600060208201905081810360008301526137a281613442565b9050919050565b600060208201905081810360008301526137c281613488565b9050919050565b60006020820190506137de60008301846134ba565b92915050565b60006137ee6137ff565b90506137fa8282613b3a565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613cc5565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138505761384f613cc5565b5b61385982613d0d565b9050602081019050919050565b600067ffffffffffffffff82111561388157613880613cc5565b5b61388a82613d0d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393e82613abc565b915061394983613abc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397e5761397d613c09565b5b828201905092915050565b600061399482613abc565b915061399f83613abc565b9250826139af576139ae613c38565b5b828204905092915050565b60006139c582613abc565b91506139d083613abc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0957613a08613c09565b5b828202905092915050565b6000613a1f82613abc565b9150613a2a83613abc565b925082821015613a3d57613a3c613c09565b5b828203905092915050565b6000613a5382613a9c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613af3578082015181840152602081019050613ad8565b83811115613b02576000848401525b50505050565b60006002820490506001821680613b2057607f821691505b60208210811415613b3457613b33613c67565b5b50919050565b613b4382613d0d565b810181811067ffffffffffffffff82111715613b6257613b61613cc5565b5b80604052505050565b6000613b7682613abc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba957613ba8613c09565b5b600182019050919050565b6000613bbf82613bc6565b9050919050565b6000613bd182613d1e565b9050919050565b6000613be382613abc565b9150613bee83613abc565b925082613bfe57613bfd613c38565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f75736572206e6f7420696e2077686974656c6973740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f6d696e74206e756d206973203000000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f556e61626c6520746f206d696e74206f6e207075626c69630000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f556e61626c6520746f206d696e74206f6e207768697465000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f67697665206d65206d6f7265206d6f6e65790000000000000000000000000000600082015250565b7f752077616e74207768697465206d696e7420746f6f206d616e79000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613fea81613a48565b8114613ff557600080fd5b50565b61400181613a5a565b811461400c57600080fd5b50565b61401881613a66565b811461402357600080fd5b50565b61402f81613a70565b811461403a57600080fd5b50565b61404681613abc565b811461405157600080fd5b5056fea2646970667358221220e1404d2bc1b6ce2245b443616c356886f9b16d811ad1de624104103d5e08081064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001004d7bd322a61c22e5c1742e13d462e34bd675a7b40ed0022470da5a68e0d70993000000000000000000000000000000000000000000000000000000000000000e4d5220504f5441544f204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504f5441544f53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51786f4144796f364338526934696e514465626375593247754a587155416675724c7a666e345246514d51772f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063818668d711610139578063c87b56dd116100b6578063e4055c171161007a578063e4055c1714610895578063e8a3d485146108b1578063e985e9c5146108dc578063ebf0c71714610919578063f2fde38b14610944578063f7e8d6ea1461096d57610251565b8063c87b56dd146107ae578063cae62f86146107eb578063d5abeb0114610816578063dab5f34014610841578063dafb0d221461086a57610251565b8063a22cb465116100fd578063a22cb465146106d8578063a945bf8014610701578063b88d4fde1461072c578063b8a20ed014610748578063c62752551461078557610251565b8063818668d7146106075780638da5cb5b146106305780639007bd721461065b578063938e3d7b1461068457806395d89b41146106ad57610251565b806330264a5b116101d2578063438b630011610196578063438b6300146104e55780634f7f8976146105225780635e8d53931461054b5780636352211e1461057657806370a08231146105b3578063715018a6146105f057610251565b806330264a5b1461040d578063320d56af146104365780633584847b146104615780633c6d0b0a1461048c57806342842e0e146104c957610251565b8063178c10f811610219578063178c10f81461034257806318160ddd1461036d57806323b872dd146103985780632da2f9b3146103b45780632db11544146103f157610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630f4161aa14610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612f33565b610998565b60405161028a91906135b1565b60405180910390f35b34801561029f57600080fd5b506102a8610a2a565b6040516102b591906135e7565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612fd6565b610abc565b6040516102f29190613528565b60405180910390f35b61031560048036038101906103109190612e3d565b610b3b565b005b34801561032357600080fd5b5061032c610c7f565b60405161033991906135b1565b60405180910390f35b34801561034e57600080fd5b50610357610c92565b60405161036491906137c9565b60405180910390f35b34801561037957600080fd5b50610382610c97565b60405161038f91906137c9565b60405180910390f35b6103b260048036038101906103ad9190612d27565b610cae565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612cba565b610fd3565b6040516103e891906137c9565b60405180910390f35b61040b60048036038101906104069190612fd6565b610feb565b005b34801561041957600080fd5b50610434600480360381019061042f9190612ed9565b61131d565b005b34801561044257600080fd5b5061044b611342565b60405161045891906137c9565b60405180910390f35b34801561046d57600080fd5b50610476611347565b60405161048391906137c9565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612cba565b61138e565b6040516104c091906137c9565b60405180910390f35b6104e360048036038101906104de9190612d27565b6113a6565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612cba565b6113c6565b604051610519919061358f565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612e3d565b6114d1565b005b34801561055757600080fd5b5061056061158a565b60405161056d91906135b1565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612fd6565b61159d565b6040516105aa9190613528565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190612cba565b6115af565b6040516105e791906137c9565b60405180910390f35b3480156105fc57600080fd5b50610605611668565b005b34801561061357600080fd5b5061062e60048036038101906106299190612ed9565b61167c565b005b34801561063c57600080fd5b506106456116a1565b6040516106529190613528565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613003565b6116ca565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612f8d565b6117eb565b005b3480156106b957600080fd5b506106c261180d565b6040516106cf91906135e7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612dfd565b61189f565b005b34801561070d57600080fd5b506107166119aa565b60405161072391906137c9565b60405180910390f35b61074660048036038101906107419190612d7a565b6119b0565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612e7d565b611a23565b60405161077c91906135b1565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612fd6565b611a3a565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190612fd6565b611a4c565b6040516107e291906135e7565b60405180910390f35b3480156107f757600080fd5b50610800611ac8565b60405161080d91906137c9565b60405180910390f35b34801561082257600080fd5b5061082b611b0f565b60405161083891906137c9565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190612f06565b611b15565b005b34801561087657600080fd5b5061087f611b27565b60405161088c91906137c9565b60405180910390f35b6108af60048036038101906108aa9190613043565b611b36565b005b3480156108bd57600080fd5b506108c6611e88565b6040516108d391906135e7565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612ce7565b611f1a565b60405161091091906135b1565b60405180910390f35b34801561092557600080fd5b5061092e611fae565b60405161093b91906135cc565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190612cba565b611fb4565b005b34801561097957600080fd5b50610982612038565b60405161098f91906135e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a3990613b08565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6590613b08565b8015610ab25780601f10610a8757610100808354040283529160200191610ab2565b820191906000526020600020905b815481529060010190602001808311610a9557829003601f168201915b5050505050905090565b6000610ac7826120c6565b610afd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b468261159d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b67612125565b73ffffffffffffffffffffffffffffffffffffffff1614610bca57610b9381610b8e612125565b611f1a565b610bc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60019054906101000a900460ff1681565b600181565b6000610ca161212d565b6002546001540303905090565b6000610cb982612136565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d20576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2c84612204565b91509150610d428187610d3d612125565b61222b565b610d8e57610d5786610d52612125565b611f1a565b610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610df5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e02868686600161226f565b8015610e0d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610edb85610eb7888887612275565b7c02000000000000000000000000000000000000000000000000000000001761229d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f63576000600185019050600060056000838152602001908152602001600020541415610f61576001548114610f60578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fcb86868660016122c8565b505050505050565b600c6020528060005260406000206000915090505481565b806000811415611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790613689565b60405180910390fd5b610d058161103c610c97565b6110469190613933565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613669565b60405180910390fd5b600b60019054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906136e9565b60405180910390fd5b61114c610c97565b610d051161118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906136a9565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506003831115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613789565b60405180910390fd5b600383826112259190613933565b1115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906136c9565b60405180910390fd5b60038311611318576009548361127c91906139ba565b3410156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590613769565b60405180910390fd5b82816112ca9190613933565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131733846122ce565b5b505050565b6113256122ec565b80600b60006101000a81548160ff02191690831515021790555050565b600381565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600d6020528060005260406000206000915090505481565b6113c1838383604051806020016040528060008152506119b0565b505050565b606060006113d3836115af565b905060008167ffffffffffffffff8111156113f1576113f0613cc5565b5b60405190808252806020026020018201604052801561141f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561143c5750610d058211155b156114c557600061144c8361159d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b1578284838151811061149657611495613c96565b5b60200260200101818152505081806114ad90613b6b565b9250505b82806114bc90613b6b565b9350505061142b565b82945050505050919050565b6114d96122ec565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516114ff90613513565b60006040518083038185875af1925050503d806000811461153c576040519150601f19603f3d011682016040523d82523d6000602084013e611541565b606091505b5050905080611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c906137a9565b60405180910390fd5b505050565b600b60009054906101000a900460ff1681565b60006115a882612136565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611617576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116706122ec565b61167a600061236a565b565b6116846122ec565b80600b60016101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116d26122ec565b816000811415611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613689565b60405180910390fd5b610d0581611723610c97565b61172d9190613933565b111561176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390613669565b60405180910390fd5b6117e682846122ce565b505050565b6117f36122ec565b80600a9080519060200190611809929190612a1b565b5050565b60606004805461181c90613b08565b80601f016020809104026020016040519081016040528092919081815260200182805461184890613b08565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b5050505050905090565b80600860006118ac612125565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611959612125565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199e91906135b1565b60405180910390a35050565b60095481565b6119bb848484610cae565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a1d576119e68484848461242e565b611a1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611a3283600e548461258e565b905092915050565b611a426122ec565b8060098190555050565b6060611a57826120c6565b611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613749565b60405180910390fd5b600a611aa1836125a5565b604051602001611ab29291906134e4565b6040516020818303038152906040529050919050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b610d0581565b611b1d6122ec565b80600e8190555050565b6000611b31610c97565b905090565b816000811415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613689565b60405180910390fd5b610d0581611b87610c97565b611b919190613933565b1115611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613609565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790613669565b60405180910390fd5b600b60009054906101000a900460ff16611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8690613729565b60405180910390fd5b611cbf8233604051602001611ca491906134c9565b60405160208183030381529060405280519060200120611a23565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613629565b60405180910390fd5b611d06610c97565b610d0511611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906136a9565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506001841115611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc890613789565b60405180910390fd5b60018482611ddf9190613933565b1115611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e17906136c9565b60405180910390fd5b60018411611e82578381611e349190613933565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e8133856122ce565b5b50505050565b6060600a8054611e9790613b08565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec390613b08565b8015611f105780601f10611ee557610100808354040283529160200191611f10565b820191906000526020600020905b815481529060010190602001808311611ef357829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611fbc6122ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390613649565b60405180910390fd5b6120358161236a565b50565b600a805461204590613b08565b80601f016020809104026020016040519081016040528092919081815260200182805461207190613b08565b80156120be5780601f10612093576101008083540402835291602001916120be565b820191906000526020600020905b8154815290600101906020018083116120a157829003601f168201915b505050505081565b6000816120d161212d565b111580156120e0575060015482105b801561211e575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061214561212d565b116121cd576001548110156121cc5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156121ca575b60008114156121c0576005600083600190039350838152602001908152602001600020549050612195565b80925050506121ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861228c868684612706565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122e882826040518060200160405280600081525061270f565b5050565b6122f46127ad565b73ffffffffffffffffffffffffffffffffffffffff166123126116a1565b73ffffffffffffffffffffffffffffffffffffffff1614612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613709565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454612125565b8786866040518563ffffffff1660e01b81526004016124769493929190613543565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612f60565b60015b61253b573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b50600081511415612533576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008261259b85846127b5565b1490509392505050565b606060008214156125ed576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612701565b600082905060005b6000821461261f57808061260890613b6b565b915050600a826126189190613989565b91506125f5565b60008167ffffffffffffffff81111561263b5761263a613cc5565b5b6040519080825280601f01601f19166020018201604052801561266d5781602001600182028036833780820191505090505b5090505b600085146126fa576001826126869190613a14565b9150600a856126959190613bd8565b60306126a19190613933565b60f81b8183815181106126b7576126b6613c96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f39190613989565b9450612671565b8093505050505b919050565b60009392505050565b612719838361280b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127a85760006001549050600083820390505b61275a600086838060010194508661242e565b612790576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127475781600154146127a557600080fd5b50505b505050565b600033905090565b60008082905060005b8451811015612800576127eb828683815181106127de576127dd613c96565b5b60200260200101516129c9565b915080806127f890613b6b565b9150506127be565b508091505092915050565b60006001549050600082141561284d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285a600084838561226f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128d1836128c26000866000612275565b6128cb856129f4565b1761229d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461297257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612937565b5060008214156129ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506129c460008483856122c8565b505050565b60008183106129e1576129dc8284612a04565b6129ec565b6129eb8383612a04565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612a2790613b08565b90600052602060002090601f016020900481019282612a495760008555612a90565b82601f10612a6257805160ff1916838001178555612a90565b82800160010185558215612a90579182015b82811115612a8f578251825591602001919060010190612a74565b5b509050612a9d9190612aa1565b5090565b5b80821115612aba576000816000905550600101612aa2565b5090565b6000612ad1612acc84613809565b6137e4565b90508083825260208201905082856020860282011115612af457612af3613cf9565b5b60005b85811015612b245781612b0a8882612c0a565b845260208401935060208301925050600181019050612af7565b5050509392505050565b6000612b41612b3c84613835565b6137e4565b905082815260208101848484011115612b5d57612b5c613cfe565b5b612b68848285613ac6565b509392505050565b6000612b83612b7e84613866565b6137e4565b905082815260208101848484011115612b9f57612b9e613cfe565b5b612baa848285613ac6565b509392505050565b600081359050612bc181613fe1565b92915050565b600082601f830112612bdc57612bdb613cf4565b5b8135612bec848260208601612abe565b91505092915050565b600081359050612c0481613ff8565b92915050565b600081359050612c198161400f565b92915050565b600081359050612c2e81614026565b92915050565b600081519050612c4381614026565b92915050565b600082601f830112612c5e57612c5d613cf4565b5b8135612c6e848260208601612b2e565b91505092915050565b600082601f830112612c8c57612c8b613cf4565b5b8135612c9c848260208601612b70565b91505092915050565b600081359050612cb48161403d565b92915050565b600060208284031215612cd057612ccf613d08565b5b6000612cde84828501612bb2565b91505092915050565b60008060408385031215612cfe57612cfd613d08565b5b6000612d0c85828601612bb2565b9250506020612d1d85828601612bb2565b9150509250929050565b600080600060608486031215612d4057612d3f613d08565b5b6000612d4e86828701612bb2565b9350506020612d5f86828701612bb2565b9250506040612d7086828701612ca5565b9150509250925092565b60008060008060808587031215612d9457612d93613d08565b5b6000612da287828801612bb2565b9450506020612db387828801612bb2565b9350506040612dc487828801612ca5565b925050606085013567ffffffffffffffff811115612de557612de4613d03565b5b612df187828801612c49565b91505092959194509250565b60008060408385031215612e1457612e13613d08565b5b6000612e2285828601612bb2565b9250506020612e3385828601612bf5565b9150509250929050565b60008060408385031215612e5457612e53613d08565b5b6000612e6285828601612bb2565b9250506020612e7385828601612ca5565b9150509250929050565b60008060408385031215612e9457612e93613d08565b5b600083013567ffffffffffffffff811115612eb257612eb1613d03565b5b612ebe85828601612bc7565b9250506020612ecf85828601612c0a565b9150509250929050565b600060208284031215612eef57612eee613d08565b5b6000612efd84828501612bf5565b91505092915050565b600060208284031215612f1c57612f1b613d08565b5b6000612f2a84828501612c0a565b91505092915050565b600060208284031215612f4957612f48613d08565b5b6000612f5784828501612c1f565b91505092915050565b600060208284031215612f7657612f75613d08565b5b6000612f8484828501612c34565b91505092915050565b600060208284031215612fa357612fa2613d08565b5b600082013567ffffffffffffffff811115612fc157612fc0613d03565b5b612fcd84828501612c77565b91505092915050565b600060208284031215612fec57612feb613d08565b5b6000612ffa84828501612ca5565b91505092915050565b6000806040838503121561301a57613019613d08565b5b600061302885828601612ca5565b925050602061303985828601612bb2565b9150509250929050565b6000806040838503121561305a57613059613d08565b5b600061306885828601612ca5565b925050602083013567ffffffffffffffff81111561308957613088613d03565b5b61309585828601612bc7565b9150509250929050565b60006130ab83836134ab565b60208301905092915050565b6130c081613a48565b82525050565b6130d76130d282613a48565b613bb4565b82525050565b60006130e8826138bc565b6130f281856138ea565b93506130fd83613897565b8060005b8381101561312e578151613115888261309f565b9750613120836138dd565b925050600181019050613101565b5085935050505092915050565b61314481613a5a565b82525050565b61315381613a66565b82525050565b6000613164826138c7565b61316e81856138fb565b935061317e818560208601613ad5565b61318781613d0d565b840191505092915050565b600061319d826138d2565b6131a78185613917565b93506131b7818560208601613ad5565b6131c081613d0d565b840191505092915050565b60006131d6826138d2565b6131e08185613928565b93506131f0818560208601613ad5565b80840191505092915050565b6000815461320981613b08565b6132138186613928565b9450600182166000811461322e576001811461323f57613272565b60ff19831686528186019350613272565b613248856138a7565b60005b8381101561326a5781548189015260018201915060208101905061324b565b838801955050505b50505092915050565b6000613288601c83613917565b915061329382613d2b565b602082019050919050565b60006132ab601583613917565b91506132b682613d54565b602082019050919050565b60006132ce602683613917565b91506132d982613d7d565b604082019050919050565b60006132f1601383613917565b91506132fc82613dcc565b602082019050919050565b6000613314600d83613917565b915061331f82613df5565b602082019050919050565b6000613337600883613917565b915061334282613e1e565b602082019050919050565b600061335a601583613917565b915061336582613e47565b602082019050919050565b600061337d601883613917565b915061338882613e70565b602082019050919050565b60006133a0600583613928565b91506133ab82613e99565b600582019050919050565b60006133c3602083613917565b91506133ce82613ec2565b602082019050919050565b60006133e6601783613917565b91506133f182613eeb565b602082019050919050565b6000613409602f83613917565b915061341482613f14565b604082019050919050565b600061342c601283613917565b915061343782613f63565b602082019050919050565b600061344f601a83613917565b915061345a82613f8c565b602082019050919050565b600061347260008361390c565b915061347d82613fb5565b600082019050919050565b6000613495601083613917565b91506134a082613fb8565b602082019050919050565b6134b481613abc565b82525050565b6134c381613abc565b82525050565b60006134d582846130c6565b60148201915081905092915050565b60006134f082856131fc565b91506134fc82846131cb565b915061350782613393565b91508190509392505050565b600061351e82613465565b9150819050919050565b600060208201905061353d60008301846130b7565b92915050565b600060808201905061355860008301876130b7565b61356560208301866130b7565b61357260408301856134ba565b81810360608301526135848184613159565b905095945050505050565b600060208201905081810360008301526135a981846130dd565b905092915050565b60006020820190506135c6600083018461313b565b92915050565b60006020820190506135e1600083018461314a565b92915050565b600060208201905081810360008301526136018184613192565b905092915050565b600060208201905081810360008301526136228161327b565b9050919050565b600060208201905081810360008301526136428161329e565b9050919050565b60006020820190508181036000830152613662816132c1565b9050919050565b60006020820190508181036000830152613682816132e4565b9050919050565b600060208201905081810360008301526136a281613307565b9050919050565b600060208201905081810360008301526136c28161332a565b9050919050565b600060208201905081810360008301526136e28161334d565b9050919050565b6000602082019050818103600083015261370281613370565b9050919050565b60006020820190508181036000830152613722816133b6565b9050919050565b60006020820190508181036000830152613742816133d9565b9050919050565b60006020820190508181036000830152613762816133fc565b9050919050565b600060208201905081810360008301526137828161341f565b9050919050565b600060208201905081810360008301526137a281613442565b9050919050565b600060208201905081810360008301526137c281613488565b9050919050565b60006020820190506137de60008301846134ba565b92915050565b60006137ee6137ff565b90506137fa8282613b3a565b919050565b6000604051905090565b600067ffffffffffffffff82111561382457613823613cc5565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138505761384f613cc5565b5b61385982613d0d565b9050602081019050919050565b600067ffffffffffffffff82111561388157613880613cc5565b5b61388a82613d0d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393e82613abc565b915061394983613abc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397e5761397d613c09565b5b828201905092915050565b600061399482613abc565b915061399f83613abc565b9250826139af576139ae613c38565b5b828204905092915050565b60006139c582613abc565b91506139d083613abc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0957613a08613c09565b5b828202905092915050565b6000613a1f82613abc565b9150613a2a83613abc565b925082821015613a3d57613a3c613c09565b5b828203905092915050565b6000613a5382613a9c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613af3578082015181840152602081019050613ad8565b83811115613b02576000848401525b50505050565b60006002820490506001821680613b2057607f821691505b60208210811415613b3457613b33613c67565b5b50919050565b613b4382613d0d565b810181811067ffffffffffffffff82111715613b6257613b61613cc5565b5b80604052505050565b6000613b7682613abc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba957613ba8613c09565b5b600182019050919050565b6000613bbf82613bc6565b9050919050565b6000613bd182613d1e565b9050919050565b6000613be382613abc565b9150613bee83613abc565b925082613bfe57613bfd613c38565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f75736572206e6f7420696e2077686974656c6973740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f6d696e74206e756d206973203000000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f556e61626c6520746f206d696e74206f6e207075626c69630000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f556e61626c6520746f206d696e74206f6e207768697465000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f67697665206d65206d6f7265206d6f6e65790000000000000000000000000000600082015250565b7f752077616e74207768697465206d696e7420746f6f206d616e79000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613fea81613a48565b8114613ff557600080fd5b50565b61400181613a5a565b811461400c57600080fd5b50565b61401881613a66565b811461402357600080fd5b50565b61402f81613a70565b811461403a57600080fd5b50565b61404681613abc565b811461405157600080fd5b5056fea2646970667358221220e1404d2bc1b6ce2245b443616c356886f9b16d811ad1de624104103d5e08081064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001004d7bd322a61c22e5c1742e13d462e34bd675a7b40ed0022470da5a68e0d70993000000000000000000000000000000000000000000000000000000000000000e4d5220504f5441544f204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504f5441544f53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51786f4144796f364338526934696e514465626375593247754a587155416675724c7a666e345246514d51772f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MR POTATO NFTs
Arg [1] : _symbol (string): POTATOS
Arg [2] : _revealedURI (string): ipfs://QmQxoADyo6C8Ri4inQDebcuY2GuJXqUAfurLzfn4RFQMQw/
Arg [3] : _root (bytes32): 0x4d7bd322a61c22e5c1742e13d462e34bd675a7b40ed0022470da5a68e0d70993

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 4d7bd322a61c22e5c1742e13d462e34bd675a7b40ed0022470da5a68e0d70993
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 4d5220504f5441544f204e465473000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 504f5441544f5300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d51786f4144796f364338526934696e5144656263755932
Arg [10] : 47754a587155416675724c7a666e345246514d51772f00000000000000000000


Deployed Bytecode Sourcemap

66348:5087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33219:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40612:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40045:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66583:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66627:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29872:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44251:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66722:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68605:691;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70573:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66674:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68482:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66782:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47172:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69537:684;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70957:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66541:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35514:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31056:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;70684:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70803:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70451:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41170:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66438:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47963:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67595:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70335:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67316:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69304:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66391:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67115:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69427:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67750:724;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70231:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41561:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66845:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66484:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33219:639;33304:4;33643:10;33628:25;;:11;:25;;;;:102;;;;33720:10;33705:25;;:11;:25;;;;33628:102;:179;;;;33797:10;33782:25;;:11;:25;;;;33628:179;33608:199;;33219:639;;;:::o;34121:100::-;34175:13;34208:5;34201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34121:100;:::o;40612:218::-;40688:7;40713:16;40721:7;40713;:16::i;:::-;40708:64;;40738:34;;;;;;;;;;;;;;40708:64;40792:15;:24;40808:7;40792:24;;;;;;;;;;;:30;;;;;;;;;;;;40785:37;;40612:218;;;:::o;40045:408::-;40134:13;40150:16;40158:7;40150;:16::i;:::-;40134:32;;40206:5;40183:28;;:19;:17;:19::i;:::-;:28;;;40179:175;;40231:44;40248:5;40255:19;:17;:19::i;:::-;40231:16;:44::i;:::-;40226:128;;40303:35;;;;;;;;;;;;;;40226:128;40179:175;40399:2;40366:15;:24;40382:7;40366:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40437:7;40433:2;40417:28;;40426:5;40417:28;;;;;;;;;;;;40123:330;40045:408;;:::o;66583:37::-;;;;;;;;;;;;;:::o;66627:40::-;66666:1;66627:40;:::o;29872:323::-;29933:7;30161:15;:13;:15::i;:::-;30146:12;;30130:13;;:28;:46;30123:53;;29872:323;:::o;44251:2825::-;44393:27;44423;44442:7;44423:18;:27::i;:::-;44393:57;;44508:4;44467:45;;44483:19;44467:45;;;44463:86;;44521:28;;;;;;;;;;;;;;44463:86;44563:27;44592:23;44619:35;44646:7;44619:26;:35::i;:::-;44562:92;;;;44754:68;44779:15;44796:4;44802:19;:17;:19::i;:::-;44754:24;:68::i;:::-;44749:180;;44842:43;44859:4;44865:19;:17;:19::i;:::-;44842:16;:43::i;:::-;44837:92;;44894:35;;;;;;;;;;;;;;44837:92;44749:180;44960:1;44946:16;;:2;:16;;;44942:52;;;44971:23;;;;;;;;;;;;;;44942:52;45007:43;45029:4;45035:2;45039:7;45048:1;45007:21;:43::i;:::-;45143:15;45140:160;;;45283:1;45262:19;45255:30;45140:160;45680:18;:24;45699:4;45680:24;;;;;;;;;;;;;;;;45678:26;;;;;;;;;;;;45749:18;:22;45768:2;45749:22;;;;;;;;;;;;;;;;45747:24;;;;;;;;;;;46071:146;46108:2;46157:45;46172:4;46178:2;46182:19;46157:14;:45::i;:::-;26271:8;46129:73;46071:18;:146::i;:::-;46042:17;:26;46060:7;46042:26;;;;;;;;;;;:175;;;;46388:1;26271:8;46337:19;:47;:52;46333:627;;;46410:19;46442:1;46432:7;:11;46410:33;;46599:1;46565:17;:30;46583:11;46565:30;;;;;;;;;;;;:35;46561:384;;;46703:13;;46688:11;:28;46684:242;;46883:19;46850:17;:30;46868:11;46850:30;;;;;;;;;;;:52;;;;46684:242;46561:384;46391:569;46333:627;47007:7;47003:2;46988:27;;46997:4;46988:27;;;;;;;;;;;;47026:42;47047:4;47053:2;47057:7;47066:1;47026:20;:42::i;:::-;44382:2694;;;44251:2825;;;:::o;66722:53::-;;;;;;;;;;;;;;;;;:::o;68605:691::-;68675:8;71239:1;71227:8;:13;;71219:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66427:4;71292:8;71276:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;71268:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;71378:10;71365:23;;:9;:23;;;71357:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;68704:17:::1;;;;;;;;;;;68696:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;68780:13;:11;:13::i;:::-;66427:4;68768:25;68760:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;68817:17;68837:19;:31;68857:10;68837:31;;;;;;;;;;;;;;;;68817:51;;66714:1;68887:8;:25;;68879:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;66714:1;68974:8;68962:9;:20;;;;:::i;:::-;:38;;68954:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;66714:1;69050:8;:25;69047:242;;69126:11;;69114:8;69113:24;;;;:::i;:::-;69100:9;:37;;69092:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69222:8;69210:9;:20;;;;:::i;:::-;69175:19;:31;69195:10;69175:31;;;;;;;;;;;;;;;:56;;;;69246:31;69256:10;69268:8;69246:9;:31::i;:::-;69047:242;68685:611;68605:691:::0;;:::o;70573:103::-;13236:13;:11;:13::i;:::-;70662:6:::1;70643:16;;:25;;;;;;;;;;;;;;;;;;70573:103:::0;:::o;66674:41::-;66714:1;66674:41;:::o;68482:113::-;68530:7;68557:18;:30;68576:10;68557:30;;;;;;;;;;;;;;;;68550:37;;68482:113;:::o;66782:54::-;;;;;;;;;;;;;;;;;:::o;47172:193::-;47318:39;47335:4;47341:2;47345:7;47318:39;;;;;;;;;;;;:16;:39::i;:::-;47172:193;;;:::o;69537:684::-;69597:16;69631:23;69657:17;69667:6;69657:9;:17::i;:::-;69631:43;;69685:30;69732:15;69718:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69685:63;;69759:22;69784:1;69759:26;;69796:23;69836:345;69861:15;69843;:33;:64;;;;;66427:4;69880:14;:27;;69843:64;69836:345;;;69924:25;69952:23;69960:14;69952:7;:23::i;:::-;69924:51;;70015:6;69994:27;;:17;:27;;;69990:151;;;70075:14;70042:13;70056:15;70042:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;70108:17;;;;;:::i;:::-;;;;69990:151;70153:16;;;;;:::i;:::-;;;;69909:272;69836:345;;;70200:13;70193:20;;;;;;69537:684;;;:::o;70957:201::-;13236:13;:11;:13::i;:::-;71054:12:::1;71071:8;:13;;71092:6;71071:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71053:50;;;71122:7;71114:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;71042:116;70957:201:::0;;:::o;66541:35::-;;;;;;;;;;;;;:::o;35514:152::-;35586:7;35629:27;35648:7;35629:18;:27::i;:::-;35606:52;;35514:152;;;:::o;31056:233::-;31128:7;31169:1;31152:19;;:5;:19;;;31148:60;;;31180:28;;;;;;;;;;;;;;31148:60;25215:13;31226:18;:25;31245:5;31226:25;;;;;;;;;;;;;;;;:55;31219:62;;31056:233;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;70684:105::-;13236:13;:11;:13::i;:::-;70775:6:::1;70755:17;;:26;;;;;;;;;;;;;;;;;;70684:105:::0;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;70803:146::-;13236:13;:11;:13::i;:::-;70891:8:::1;71239:1;71227:8;:13;;71219:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66427:4;71292:8;71276:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;71268:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;71378:10;71365:23;;:9;:23;;;71357:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;70912:29:::2;70922:8;70932;70912:9;:29::i;:::-;13260:1:::1;70803:146:::0;;:::o;70451:114::-;13236:13;:11;:13::i;:::-;70545:12:::1;70531:11;:26;;;;;;;;;;;;:::i;:::-;;70451:114:::0;:::o;34297:104::-;34353:13;34386:7;34379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34297:104;:::o;41170:234::-;41317:8;41265:18;:39;41284:19;:17;:19::i;:::-;41265:39;;;;;;;;;;;;;;;:49;41305:8;41265:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41377:8;41341:55;;41356:19;:17;:19::i;:::-;41341:55;;;41387:8;41341:55;;;;;;:::i;:::-;;;;;;;;41170:234;;:::o;66438:39::-;;;;:::o;47963:407::-;48138:31;48151:4;48157:2;48161:7;48138:12;:31::i;:::-;48202:1;48184:2;:14;;;:19;48180:183;;48223:56;48254:4;48260:2;48264:7;48273:5;48223:30;:56::i;:::-;48218:145;;48307:40;;;;;;;;;;;;;;48218:145;48180:183;47963:407;;;;:::o;67595:145::-;67671:4;67695:37;67714:5;67721:4;;67727;67695:18;:37::i;:::-;67688:44;;67595:145;;;;:::o;70335:108::-;13236:13;:11;:13::i;:::-;70423:12:::1;70409:11;:26;;;;70335:108:::0;:::o;67316:269::-;67382:13;67416:17;67424:8;67416:7;:17::i;:::-;67408:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;67527:11;67540:26;67557:8;67540:16;:26::i;:::-;67510:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67496:81;;67316:269;;;:::o;69304:115::-;69353:7;69380:19;:31;69400:10;69380:31;;;;;;;;;;;;;;;;69373:38;;69304:115;:::o;66391:40::-;66427:4;66391:40;:::o;67115:80::-;13236:13;:11;:13::i;:::-;67182:5:::1;67175:4;:12;;;;67115:80:::0;:::o;69427:96::-;69475:7;69502:13;:11;:13::i;:::-;69495:20;;69427:96;:::o;67750:724::-;67843:8;71239:1;71227:8;:13;;71219:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66427:4;71292:8;71276:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;71268:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;71378:10;71365:23;;:9;:23;;;71357:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;67872:16:::1;;;;;;;;;;;67864:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;67934:55;67942:5;67976:10;67959:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;67949:39;;;;;;67934:7;:55::i;:::-;67926:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;68046:13;:11;:13::i;:::-;66427:4;68034:25;68026:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;68083:17;68103:18;:30;68122:10;68103:30;;;;;;;;;;;;;;;;68083:50;;66666:1;68152:8;:24;;68144:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;66666:1;68238:8;68226:9;:20;;;;:::i;:::-;:37;;68218:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;66666:1;68313:8;:24;68310:157;;68400:8;68388:9;:20;;;;:::i;:::-;68354:18;:30;68373:10;68354:30;;;;;;;;;;;;;;;:55;;;;68424:31;68434:10;68446:8;68424:9;:31::i;:::-;68310:157;67853:621;67750:724:::0;;;:::o;70231:96::-;70275:13;70308:11;70301:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70231:96;:::o;41561:164::-;41658:4;41682:18;:25;41701:5;41682:25;;;;;;;;;;;;;;;:35;41708:8;41682:35;;;;;;;;;;;;;;;;;;;;;;;;;41675:42;;41561:164;;;;:::o;66845:19::-;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;66484:50::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41983:282::-;42048:4;42104:7;42085:15;:13;:15::i;:::-;:26;;:66;;;;;42138:13;;42128:7;:23;42085:66;:153;;;;;42237:1;25991:8;42189:17;:26;42207:7;42189:26;;;;;;;;;;;;:44;:49;42085:153;42065:173;;41983:282;;;:::o;64291:105::-;64351:7;64378:10;64371:17;;64291:105;:::o;67203:101::-;67268:7;67295:1;67288:8;;67203:101;:::o;36669:1275::-;36736:7;36756:12;36771:7;36756:22;;36839:4;36820:15;:13;:15::i;:::-;:23;36816:1061;;36873:13;;36866:4;:20;36862:1015;;;36911:14;36928:17;:23;36946:4;36928:23;;;;;;;;;;;;36911:40;;37045:1;25991:8;37017:6;:24;:29;37013:845;;;37682:113;37699:1;37689:6;:11;37682:113;;;37742:17;:25;37760:6;;;;;;;37742:25;;;;;;;;;;;;37733:34;;37682:113;;;37828:6;37821:13;;;;;;37013:845;36888:989;36862:1015;36816:1061;37905:31;;;;;;;;;;;;;;36669:1275;;;;:::o;43146:485::-;43248:27;43277:23;43318:38;43359:15;:24;43375:7;43359:24;;;;;;;;;;;43318:65;;43536:18;43513:41;;43593:19;43587:26;43568:45;;43498:126;43146:485;;;:::o;42374:659::-;42523:11;42688:16;42681:5;42677:28;42668:37;;42848:16;42837:9;42833:32;42820:45;;42998:15;42987:9;42984:30;42976:5;42965:9;42962:20;42959:56;42949:66;;42374:659;;;;;:::o;49032:159::-;;;;;:::o;63600:311::-;63735:7;63755:16;26395:3;63781:19;:41;;63755:68;;26395:3;63849:31;63860:4;63866:2;63870:9;63849:10;:31::i;:::-;63841:40;;:62;;63834:69;;;63600:311;;;;;:::o;38492:450::-;38572:14;38740:16;38733:5;38729:28;38720:37;;38917:5;38903:11;38878:23;38874:41;38871:52;38864:5;38861:63;38851:73;;38492:450;;;;:::o;49856:158::-;;;;;:::o;58123:112::-;58200:27;58210:2;58214:8;58200:27;;;;;;;;;;;;:9;:27::i;:::-;58123:112;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;50454:716::-;50617:4;50663:2;50638:45;;;50684:19;:17;:19::i;:::-;50705:4;50711:7;50720:5;50638:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50634:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50938:1;50921:6;:13;:18;50917:235;;;50967:40;;;;;;;;;;;;;;50917:235;51110:6;51104:13;51095:6;51091:2;51087:15;51080:38;50634:529;50807:54;;;50797:64;;;:6;:64;;;;50790:71;;;50454:716;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;63301:147::-;63438:6;63301:147;;;;;:::o;57350:689::-;57481:19;57487:2;57491:8;57481:5;:19::i;:::-;57560:1;57542:2;:14;;;:19;57538:483;;57582:11;57596:13;;57582:27;;57628:13;57650:8;57644:3;:14;57628:30;;57677:233;57708:62;57747:1;57751:2;57755:7;;;;;;57764:5;57708:30;:62::i;:::-;57703:167;;57806:40;;;;;;;;;;;;;;57703:167;57905:3;57897:5;:11;57677:233;;57992:3;57975:13;;:20;57971:34;;57997:8;;;57971:34;57563:458;;57538:483;57350:689;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;51632:2966::-;51705:20;51728:13;;51705:36;;51768:1;51756:8;:13;51752:44;;;51778:18;;;;;;;;;;;;;;51752:44;51809:61;51839:1;51843:2;51847:12;51861:8;51809:21;:61::i;:::-;52353:1;25353:2;52323:1;:26;;52322:32;52310:8;:45;52284:18;:22;52303:2;52284:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52632:139;52669:2;52723:33;52746:1;52750:2;52754:1;52723:14;:33::i;:::-;52690:30;52711:8;52690:20;:30::i;:::-;:66;52632:18;:139::i;:::-;52598:17;:31;52616:12;52598:31;;;;;;;;;;;:173;;;;52788:16;52819:11;52848:8;52833:12;:23;52819:37;;53369:16;53365:2;53361:25;53349:37;;53741:12;53701:8;53660:1;53598:25;53539:1;53478;53451:335;54112:1;54098:12;54094:20;54052:346;54153:3;54144:7;54141:16;54052:346;;54371:7;54361:8;54358:1;54331:25;54328:1;54325;54320:59;54206:1;54197:7;54193:15;54182:26;;54052:346;;;54056:77;54443:1;54431:8;:13;54427:45;;;54453:19;;;;;;;;;;;;;;54427:45;54505:3;54489:13;:19;;;;52058:2462;;54530:60;54559:1;54563:2;54567:12;54581:8;54530:20;:60::i;:::-;51694:2904;51632:2966;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;39044:324::-;39114:14;39347:1;39337:8;39334:15;39308:24;39304:46;39294:56;;39044:324;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:323::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:50;7891:7;7882:6;7871:9;7867:22;7849:50;:::i;:::-;7839:60;;7795:114;7593:323;;;;:::o;7922:329::-;7981:6;8030:2;8018:9;8009:7;8005:23;8001:32;7998:119;;;8036:79;;:::i;:::-;7998:119;8156:1;8181:53;8226:7;8217:6;8206:9;8202:22;8181:53;:::i;:::-;8171:63;;8127:117;7922:329;;;;:::o;8257:327::-;8315:6;8364:2;8352:9;8343:7;8339:23;8335:32;8332:119;;;8370:79;;:::i;:::-;8332:119;8490:1;8515:52;8559:7;8550:6;8539:9;8535:22;8515:52;:::i;:::-;8505:62;;8461:116;8257:327;;;;:::o;8590:349::-;8659:6;8708:2;8696:9;8687:7;8683:23;8679:32;8676:119;;;8714:79;;:::i;:::-;8676:119;8834:1;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8805:127;8590:349;;;;:::o;8945:509::-;9014:6;9063:2;9051:9;9042:7;9038:23;9034:32;9031:119;;;9069:79;;:::i;:::-;9031:119;9217:1;9206:9;9202:17;9189:31;9247:18;9239:6;9236:30;9233:117;;;9269:79;;:::i;:::-;9233:117;9374:63;9429:7;9420:6;9409:9;9405:22;9374:63;:::i;:::-;9364:73;;9160:287;8945:509;;;;:::o;9460:329::-;9519:6;9568:2;9556:9;9547:7;9543:23;9539:32;9536:119;;;9574:79;;:::i;:::-;9536:119;9694:1;9719:53;9764:7;9755:6;9744:9;9740:22;9719:53;:::i;:::-;9709:63;;9665:117;9460:329;;;;:::o;9795:474::-;9863:6;9871;9920:2;9908:9;9899:7;9895:23;9891:32;9888:119;;;9926:79;;:::i;:::-;9888:119;10046:1;10071:53;10116:7;10107:6;10096:9;10092:22;10071:53;:::i;:::-;10061:63;;10017:117;10173:2;10199:53;10244:7;10235:6;10224:9;10220:22;10199:53;:::i;:::-;10189:63;;10144:118;9795:474;;;;;:::o;10275:684::-;10368:6;10376;10425:2;10413:9;10404:7;10400:23;10396:32;10393:119;;;10431:79;;:::i;:::-;10393:119;10551:1;10576:53;10621:7;10612:6;10601:9;10597:22;10576:53;:::i;:::-;10566:63;;10522:117;10706:2;10695:9;10691:18;10678:32;10737:18;10729:6;10726:30;10723:117;;;10759:79;;:::i;:::-;10723:117;10864:78;10934:7;10925:6;10914:9;10910:22;10864:78;:::i;:::-;10854:88;;10649:303;10275:684;;;;;:::o;10965:179::-;11034:10;11055:46;11097:3;11089:6;11055:46;:::i;:::-;11133:4;11128:3;11124:14;11110:28;;10965:179;;;;:::o;11150:118::-;11237:24;11255:5;11237:24;:::i;:::-;11232:3;11225:37;11150:118;;:::o;11274:157::-;11379:45;11399:24;11417:5;11399:24;:::i;:::-;11379:45;:::i;:::-;11374:3;11367:58;11274:157;;:::o;11467:732::-;11586:3;11615:54;11663:5;11615:54;:::i;:::-;11685:86;11764:6;11759:3;11685:86;:::i;:::-;11678:93;;11795:56;11845:5;11795:56;:::i;:::-;11874:7;11905:1;11890:284;11915:6;11912:1;11909:13;11890:284;;;11991:6;11985:13;12018:63;12077:3;12062:13;12018:63;:::i;:::-;12011:70;;12104:60;12157:6;12104:60;:::i;:::-;12094:70;;11950:224;11937:1;11934;11930:9;11925:14;;11890:284;;;11894:14;12190:3;12183:10;;11591:608;;;11467:732;;;;:::o;12205:109::-;12286:21;12301:5;12286:21;:::i;:::-;12281:3;12274:34;12205:109;;:::o;12320:118::-;12407:24;12425:5;12407:24;:::i;:::-;12402:3;12395:37;12320:118;;:::o;12444:360::-;12530:3;12558:38;12590:5;12558:38;:::i;:::-;12612:70;12675:6;12670:3;12612:70;:::i;:::-;12605:77;;12691:52;12736:6;12731:3;12724:4;12717:5;12713:16;12691:52;:::i;:::-;12768:29;12790:6;12768:29;:::i;:::-;12763:3;12759:39;12752:46;;12534:270;12444:360;;;;:::o;12810:364::-;12898:3;12926:39;12959:5;12926:39;:::i;:::-;12981:71;13045:6;13040:3;12981:71;:::i;:::-;12974:78;;13061:52;13106:6;13101:3;13094:4;13087:5;13083:16;13061:52;:::i;:::-;13138:29;13160:6;13138:29;:::i;:::-;13133:3;13129:39;13122:46;;12902:272;12810:364;;;;:::o;13180:377::-;13286:3;13314:39;13347:5;13314:39;:::i;:::-;13369:89;13451:6;13446:3;13369:89;:::i;:::-;13362:96;;13467:52;13512:6;13507:3;13500:4;13493:5;13489:16;13467:52;:::i;:::-;13544:6;13539:3;13535:16;13528:23;;13290:267;13180:377;;;;:::o;13587:845::-;13690:3;13727:5;13721:12;13756:36;13782:9;13756:36;:::i;:::-;13808:89;13890:6;13885:3;13808:89;:::i;:::-;13801:96;;13928:1;13917:9;13913:17;13944:1;13939:137;;;;14090:1;14085:341;;;;13906:520;;13939:137;14023:4;14019:9;14008;14004:25;13999:3;13992:38;14059:6;14054:3;14050:16;14043:23;;13939:137;;14085:341;14152:38;14184:5;14152:38;:::i;:::-;14212:1;14226:154;14240:6;14237:1;14234:13;14226:154;;;14314:7;14308:14;14304:1;14299:3;14295:11;14288:35;14364:1;14355:7;14351:15;14340:26;;14262:4;14259:1;14255:12;14250:17;;14226:154;;;14409:6;14404:3;14400:16;14393:23;;14092:334;;13906:520;;13694:738;;13587:845;;;;:::o;14438:366::-;14580:3;14601:67;14665:2;14660:3;14601:67;:::i;:::-;14594:74;;14677:93;14766:3;14677:93;:::i;:::-;14795:2;14790:3;14786:12;14779:19;;14438:366;;;:::o;14810:::-;14952:3;14973:67;15037:2;15032:3;14973:67;:::i;:::-;14966:74;;15049:93;15138:3;15049:93;:::i;:::-;15167:2;15162:3;15158:12;15151:19;;14810:366;;;:::o;15182:::-;15324:3;15345:67;15409:2;15404:3;15345:67;:::i;:::-;15338:74;;15421:93;15510:3;15421:93;:::i;:::-;15539:2;15534:3;15530:12;15523:19;;15182:366;;;:::o;15554:::-;15696:3;15717:67;15781:2;15776:3;15717:67;:::i;:::-;15710:74;;15793:93;15882:3;15793:93;:::i;:::-;15911:2;15906:3;15902:12;15895:19;;15554:366;;;:::o;15926:::-;16068:3;16089:67;16153:2;16148:3;16089:67;:::i;:::-;16082:74;;16165:93;16254:3;16165:93;:::i;:::-;16283:2;16278:3;16274:12;16267:19;;15926:366;;;:::o;16298:365::-;16440:3;16461:66;16525:1;16520:3;16461:66;:::i;:::-;16454:73;;16536:93;16625:3;16536:93;:::i;:::-;16654:2;16649:3;16645:12;16638:19;;16298:365;;;:::o;16669:366::-;16811:3;16832:67;16896:2;16891:3;16832:67;:::i;:::-;16825:74;;16908:93;16997:3;16908:93;:::i;:::-;17026:2;17021:3;17017:12;17010:19;;16669:366;;;:::o;17041:::-;17183:3;17204:67;17268:2;17263:3;17204:67;:::i;:::-;17197:74;;17280:93;17369:3;17280:93;:::i;:::-;17398:2;17393:3;17389:12;17382:19;;17041:366;;;:::o;17413:400::-;17573:3;17594:84;17676:1;17671:3;17594:84;:::i;:::-;17587:91;;17687:93;17776:3;17687:93;:::i;:::-;17805:1;17800:3;17796:11;17789:18;;17413:400;;;:::o;17819:366::-;17961:3;17982:67;18046:2;18041:3;17982:67;:::i;:::-;17975:74;;18058:93;18147:3;18058:93;:::i;:::-;18176:2;18171:3;18167:12;18160:19;;17819:366;;;:::o;18191:::-;18333:3;18354:67;18418:2;18413:3;18354:67;:::i;:::-;18347:74;;18430:93;18519:3;18430:93;:::i;:::-;18548:2;18543:3;18539:12;18532:19;;18191:366;;;:::o;18563:::-;18705:3;18726:67;18790:2;18785:3;18726:67;:::i;:::-;18719:74;;18802:93;18891:3;18802:93;:::i;:::-;18920:2;18915:3;18911:12;18904:19;;18563:366;;;:::o;18935:::-;19077:3;19098:67;19162:2;19157:3;19098:67;:::i;:::-;19091:74;;19174:93;19263:3;19174:93;:::i;:::-;19292:2;19287:3;19283:12;19276:19;;18935:366;;;:::o;19307:::-;19449:3;19470:67;19534:2;19529:3;19470:67;:::i;:::-;19463:74;;19546:93;19635:3;19546:93;:::i;:::-;19664:2;19659:3;19655:12;19648:19;;19307:366;;;:::o;19679:398::-;19838:3;19859:83;19940:1;19935:3;19859:83;:::i;:::-;19852:90;;19951:93;20040:3;19951:93;:::i;:::-;20069:1;20064:3;20060:11;20053:18;;19679:398;;;:::o;20083:366::-;20225:3;20246:67;20310:2;20305:3;20246:67;:::i;:::-;20239:74;;20322:93;20411:3;20322:93;:::i;:::-;20440:2;20435:3;20431:12;20424:19;;20083:366;;;:::o;20455:108::-;20532:24;20550:5;20532:24;:::i;:::-;20527:3;20520:37;20455:108;;:::o;20569:118::-;20656:24;20674:5;20656:24;:::i;:::-;20651:3;20644:37;20569:118;;:::o;20693:256::-;20805:3;20820:75;20891:3;20882:6;20820:75;:::i;:::-;20920:2;20915:3;20911:12;20904:19;;20940:3;20933:10;;20693:256;;;;:::o;20955:695::-;21233:3;21255:92;21343:3;21334:6;21255:92;:::i;:::-;21248:99;;21364:95;21455:3;21446:6;21364:95;:::i;:::-;21357:102;;21476:148;21620:3;21476:148;:::i;:::-;21469:155;;21641:3;21634:10;;20955:695;;;;;:::o;21656:379::-;21840:3;21862:147;22005:3;21862:147;:::i;:::-;21855:154;;22026:3;22019:10;;21656:379;;;:::o;22041:222::-;22134:4;22172:2;22161:9;22157:18;22149:26;;22185:71;22253:1;22242:9;22238:17;22229:6;22185:71;:::i;:::-;22041:222;;;;:::o;22269:640::-;22464:4;22502:3;22491:9;22487:19;22479:27;;22516:71;22584:1;22573:9;22569:17;22560:6;22516:71;:::i;:::-;22597:72;22665:2;22654:9;22650:18;22641:6;22597:72;:::i;:::-;22679;22747:2;22736:9;22732:18;22723:6;22679:72;:::i;:::-;22798:9;22792:4;22788:20;22783:2;22772:9;22768:18;22761:48;22826:76;22897:4;22888:6;22826:76;:::i;:::-;22818:84;;22269:640;;;;;;;:::o;22915:373::-;23058:4;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:108;23276:4;23267:6;23173:108;:::i;:::-;23165:116;;22915:373;;;;:::o;23294:210::-;23381:4;23419:2;23408:9;23404:18;23396:26;;23432:65;23494:1;23483:9;23479:17;23470:6;23432:65;:::i;:::-;23294:210;;;;:::o;23510:222::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23654:71;23722:1;23711:9;23707:17;23698:6;23654:71;:::i;:::-;23510:222;;;;:::o;23738:313::-;23851:4;23889:2;23878:9;23874:18;23866:26;;23938:9;23932:4;23928:20;23924:1;23913:9;23909:17;23902:47;23966:78;24039:4;24030:6;23966:78;:::i;:::-;23958:86;;23738:313;;;;:::o;24057:419::-;24223:4;24261:2;24250:9;24246:18;24238:26;;24310:9;24304:4;24300:20;24296:1;24285:9;24281:17;24274:47;24338:131;24464:4;24338:131;:::i;:::-;24330:139;;24057:419;;;:::o;24482:::-;24648:4;24686:2;24675:9;24671:18;24663:26;;24735:9;24729:4;24725:20;24721:1;24710:9;24706:17;24699:47;24763:131;24889:4;24763:131;:::i;:::-;24755:139;;24482:419;;;:::o;24907:::-;25073:4;25111:2;25100:9;25096:18;25088:26;;25160:9;25154:4;25150:20;25146:1;25135:9;25131:17;25124:47;25188:131;25314:4;25188:131;:::i;:::-;25180:139;;24907:419;;;:::o;25332:::-;25498:4;25536:2;25525:9;25521:18;25513:26;;25585:9;25579:4;25575:20;25571:1;25560:9;25556:17;25549:47;25613:131;25739:4;25613:131;:::i;:::-;25605:139;;25332:419;;;:::o;25757:::-;25923:4;25961:2;25950:9;25946:18;25938:26;;26010:9;26004:4;26000:20;25996:1;25985:9;25981:17;25974:47;26038:131;26164:4;26038:131;:::i;:::-;26030:139;;25757:419;;;:::o;26182:::-;26348:4;26386:2;26375:9;26371:18;26363:26;;26435:9;26429:4;26425:20;26421:1;26410:9;26406:17;26399:47;26463:131;26589:4;26463:131;:::i;:::-;26455:139;;26182:419;;;:::o;26607:::-;26773:4;26811:2;26800:9;26796:18;26788:26;;26860:9;26854:4;26850:20;26846:1;26835:9;26831:17;26824:47;26888:131;27014:4;26888:131;:::i;:::-;26880:139;;26607:419;;;:::o;27032:::-;27198:4;27236:2;27225:9;27221:18;27213:26;;27285:9;27279:4;27275:20;27271:1;27260:9;27256:17;27249:47;27313:131;27439:4;27313:131;:::i;:::-;27305:139;;27032:419;;;:::o;27457:::-;27623:4;27661:2;27650:9;27646:18;27638:26;;27710:9;27704:4;27700:20;27696:1;27685:9;27681:17;27674:47;27738:131;27864:4;27738:131;:::i;:::-;27730:139;;27457:419;;;:::o;27882:::-;28048:4;28086:2;28075:9;28071:18;28063:26;;28135:9;28129:4;28125:20;28121:1;28110:9;28106:17;28099:47;28163:131;28289:4;28163:131;:::i;:::-;28155:139;;27882:419;;;:::o;28307:::-;28473:4;28511:2;28500:9;28496:18;28488:26;;28560:9;28554:4;28550:20;28546:1;28535:9;28531:17;28524:47;28588:131;28714:4;28588:131;:::i;:::-;28580:139;;28307:419;;;:::o;28732:::-;28898:4;28936:2;28925:9;28921:18;28913:26;;28985:9;28979:4;28975:20;28971:1;28960:9;28956:17;28949:47;29013:131;29139:4;29013:131;:::i;:::-;29005:139;;28732:419;;;:::o;29157:::-;29323:4;29361:2;29350:9;29346:18;29338:26;;29410:9;29404:4;29400:20;29396:1;29385:9;29381:17;29374:47;29438:131;29564:4;29438:131;:::i;:::-;29430:139;;29157:419;;;:::o;29582:::-;29748:4;29786:2;29775:9;29771:18;29763:26;;29835:9;29829:4;29825:20;29821:1;29810:9;29806:17;29799:47;29863:131;29989:4;29863:131;:::i;:::-;29855:139;;29582:419;;;:::o;30007:222::-;30100:4;30138:2;30127:9;30123:18;30115:26;;30151:71;30219:1;30208:9;30204:17;30195:6;30151:71;:::i;:::-;30007:222;;;;:::o;30235:129::-;30269:6;30296:20;;:::i;:::-;30286:30;;30325:33;30353:4;30345:6;30325:33;:::i;:::-;30235:129;;;:::o;30370:75::-;30403:6;30436:2;30430:9;30420:19;;30370:75;:::o;30451:311::-;30528:4;30618:18;30610:6;30607:30;30604:56;;;30640:18;;:::i;:::-;30604:56;30690:4;30682:6;30678:17;30670:25;;30750:4;30744;30740:15;30732:23;;30451:311;;;:::o;30768:307::-;30829:4;30919:18;30911:6;30908:30;30905:56;;;30941:18;;:::i;:::-;30905:56;30979:29;31001:6;30979:29;:::i;:::-;30971:37;;31063:4;31057;31053:15;31045:23;;30768:307;;;:::o;31081:308::-;31143:4;31233:18;31225:6;31222:30;31219:56;;;31255:18;;:::i;:::-;31219:56;31293:29;31315:6;31293:29;:::i;:::-;31285:37;;31377:4;31371;31367:15;31359:23;;31081:308;;;:::o;31395:132::-;31462:4;31485:3;31477:11;;31515:4;31510:3;31506:14;31498:22;;31395:132;;;:::o;31533:141::-;31582:4;31605:3;31597:11;;31628:3;31625:1;31618:14;31662:4;31659:1;31649:18;31641:26;;31533:141;;;:::o;31680:114::-;31747:6;31781:5;31775:12;31765:22;;31680:114;;;:::o;31800:98::-;31851:6;31885:5;31879:12;31869:22;;31800:98;;;:::o;31904:99::-;31956:6;31990:5;31984:12;31974:22;;31904:99;;;:::o;32009:113::-;32079:4;32111;32106:3;32102:14;32094:22;;32009:113;;;:::o;32128:184::-;32227:11;32261:6;32256:3;32249:19;32301:4;32296:3;32292:14;32277:29;;32128:184;;;;:::o;32318:168::-;32401:11;32435:6;32430:3;32423:19;32475:4;32470:3;32466:14;32451:29;;32318:168;;;;:::o;32492:147::-;32593:11;32630:3;32615:18;;32492:147;;;;:::o;32645:169::-;32729:11;32763:6;32758:3;32751:19;32803:4;32798:3;32794:14;32779:29;;32645:169;;;;:::o;32820:148::-;32922:11;32959:3;32944:18;;32820:148;;;;:::o;32974:305::-;33014:3;33033:20;33051:1;33033:20;:::i;:::-;33028:25;;33067:20;33085:1;33067:20;:::i;:::-;33062:25;;33221:1;33153:66;33149:74;33146:1;33143:81;33140:107;;;33227:18;;:::i;:::-;33140:107;33271:1;33268;33264:9;33257:16;;32974:305;;;;:::o;33285:185::-;33325:1;33342:20;33360:1;33342:20;:::i;:::-;33337:25;;33376:20;33394:1;33376:20;:::i;:::-;33371:25;;33415:1;33405:35;;33420:18;;:::i;:::-;33405:35;33462:1;33459;33455:9;33450:14;;33285:185;;;;:::o;33476:348::-;33516:7;33539:20;33557:1;33539:20;:::i;:::-;33534:25;;33573:20;33591:1;33573:20;:::i;:::-;33568:25;;33761:1;33693:66;33689:74;33686:1;33683:81;33678:1;33671:9;33664:17;33660:105;33657:131;;;33768:18;;:::i;:::-;33657:131;33816:1;33813;33809:9;33798:20;;33476:348;;;;:::o;33830:191::-;33870:4;33890:20;33908:1;33890:20;:::i;:::-;33885:25;;33924:20;33942:1;33924:20;:::i;:::-;33919:25;;33963:1;33960;33957:8;33954:34;;;33968:18;;:::i;:::-;33954:34;34013:1;34010;34006:9;33998:17;;33830:191;;;;:::o;34027:96::-;34064:7;34093:24;34111:5;34093:24;:::i;:::-;34082:35;;34027:96;;;:::o;34129:90::-;34163:7;34206:5;34199:13;34192:21;34181:32;;34129:90;;;:::o;34225:77::-;34262:7;34291:5;34280:16;;34225:77;;;:::o;34308:149::-;34344:7;34384:66;34377:5;34373:78;34362:89;;34308:149;;;:::o;34463:126::-;34500:7;34540:42;34533:5;34529:54;34518:65;;34463:126;;;:::o;34595:77::-;34632:7;34661:5;34650:16;;34595:77;;;:::o;34678:154::-;34762:6;34757:3;34752;34739:30;34824:1;34815:6;34810:3;34806:16;34799:27;34678:154;;;:::o;34838:307::-;34906:1;34916:113;34930:6;34927:1;34924:13;34916:113;;;35015:1;35010:3;35006:11;35000:18;34996:1;34991:3;34987:11;34980:39;34952:2;34949:1;34945:10;34940:15;;34916:113;;;35047:6;35044:1;35041:13;35038:101;;;35127:1;35118:6;35113:3;35109:16;35102:27;35038:101;34887:258;34838:307;;;:::o;35151:320::-;35195:6;35232:1;35226:4;35222:12;35212:22;;35279:1;35273:4;35269:12;35300:18;35290:81;;35356:4;35348:6;35344:17;35334:27;;35290:81;35418:2;35410:6;35407:14;35387:18;35384:38;35381:84;;;35437:18;;:::i;:::-;35381:84;35202:269;35151:320;;;:::o;35477:281::-;35560:27;35582:4;35560:27;:::i;:::-;35552:6;35548:40;35690:6;35678:10;35675:22;35654:18;35642:10;35639:34;35636:62;35633:88;;;35701:18;;:::i;:::-;35633:88;35741:10;35737:2;35730:22;35520:238;35477:281;;:::o;35764:233::-;35803:3;35826:24;35844:5;35826:24;:::i;:::-;35817:33;;35872:66;35865:5;35862:77;35859:103;;;35942:18;;:::i;:::-;35859:103;35989:1;35982:5;35978:13;35971:20;;35764:233;;;:::o;36003:100::-;36042:7;36071:26;36091:5;36071:26;:::i;:::-;36060:37;;36003:100;;;:::o;36109:94::-;36148:7;36177:20;36191:5;36177:20;:::i;:::-;36166:31;;36109:94;;;:::o;36209:176::-;36241:1;36258:20;36276:1;36258:20;:::i;:::-;36253:25;;36292:20;36310:1;36292:20;:::i;:::-;36287:25;;36331:1;36321:35;;36336:18;;:::i;:::-;36321:35;36377:1;36374;36370:9;36365:14;;36209:176;;;;:::o;36391:180::-;36439:77;36436:1;36429:88;36536:4;36533:1;36526:15;36560:4;36557:1;36550:15;36577:180;36625:77;36622:1;36615:88;36722:4;36719:1;36712:15;36746:4;36743:1;36736:15;36763:180;36811:77;36808:1;36801:88;36908:4;36905:1;36898:15;36932:4;36929:1;36922:15;36949:180;36997:77;36994:1;36987:88;37094:4;37091:1;37084:15;37118:4;37115:1;37108:15;37135:180;37183:77;37180:1;37173:88;37280:4;37277:1;37270:15;37304:4;37301:1;37294:15;37321:117;37430:1;37427;37420:12;37444:117;37553:1;37550;37543:12;37567:117;37676:1;37673;37666:12;37690:117;37799:1;37796;37789:12;37813:117;37922:1;37919;37912:12;37936:102;37977:6;38028:2;38024:7;38019:2;38012:5;38008:14;38004:28;37994:38;;37936:102;;;:::o;38044:94::-;38077:8;38125:5;38121:2;38117:14;38096:35;;38044:94;;;:::o;38144:178::-;38284:30;38280:1;38272:6;38268:14;38261:54;38144:178;:::o;38328:171::-;38468:23;38464:1;38456:6;38452:14;38445:47;38328:171;:::o;38505:225::-;38645:34;38641:1;38633:6;38629:14;38622:58;38714:8;38709:2;38701:6;38697:15;38690:33;38505:225;:::o;38736:169::-;38876:21;38872:1;38864:6;38860:14;38853:45;38736:169;:::o;38911:163::-;39051:15;39047:1;39039:6;39035:14;39028:39;38911:163;:::o;39080:158::-;39220:10;39216:1;39208:6;39204:14;39197:34;39080:158;:::o;39244:171::-;39384:23;39380:1;39372:6;39368:14;39361:47;39244:171;:::o;39421:174::-;39561:26;39557:1;39549:6;39545:14;39538:50;39421:174;:::o;39601:155::-;39741:7;39737:1;39729:6;39725:14;39718:31;39601:155;:::o;39762:182::-;39902:34;39898:1;39890:6;39886:14;39879:58;39762:182;:::o;39950:173::-;40090:25;40086:1;40078:6;40074:14;40067:49;39950:173;:::o;40129:234::-;40269:34;40265:1;40257:6;40253:14;40246:58;40338:17;40333:2;40325:6;40321:15;40314:42;40129:234;:::o;40369:168::-;40509:20;40505:1;40497:6;40493:14;40486:44;40369:168;:::o;40543:176::-;40683:28;40679:1;40671:6;40667:14;40660:52;40543:176;:::o;40725:114::-;;:::o;40845:166::-;40985:18;40981:1;40973:6;40969:14;40962:42;40845:166;:::o;41017:122::-;41090:24;41108:5;41090:24;:::i;:::-;41083:5;41080:35;41070:63;;41129:1;41126;41119:12;41070:63;41017:122;:::o;41145:116::-;41215:21;41230:5;41215:21;:::i;:::-;41208:5;41205:32;41195:60;;41251:1;41248;41241:12;41195:60;41145:116;:::o;41267:122::-;41340:24;41358:5;41340:24;:::i;:::-;41333:5;41330:35;41320:63;;41379:1;41376;41369:12;41320:63;41267:122;:::o;41395:120::-;41467:23;41484:5;41467:23;:::i;:::-;41460:5;41457:34;41447:62;;41505:1;41502;41495:12;41447:62;41395:120;:::o;41521:122::-;41594:24;41612:5;41594:24;:::i;:::-;41587:5;41584:35;41574:63;;41633:1;41630;41623:12;41574:63;41521:122;:::o

Swarm Source

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