ETH Price: $2,304.62 (+0.98%)

Token

Yoodles (YDLS)
 

Overview

Max Total Supply

4,450 YDLS

Holders

239

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 YDLS
0xc8c41efafa579b8459549ed55568e50bdc198cc2
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:
Yoodles

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

    /**
     * @dev 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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/Yoodles.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;





/// @title Yoodles NFT Smart Contract
contract Yoodles is ERC721A, ReentrancyGuard, Ownable {

    /* Different Salestates */
    enum SaleState {
        PAUSED,
        OG_SALE,
        PUBLIC_SALE
    }
    SaleState private saleState = SaleState.PAUSED;


    /* Storage Variables */
    bytes32 public merkleRoot = 0x4a4e175a5aa87448f3accbd108469baabefc6134ab2dfc43f38b4ef7ea3732d4;
    address public developerWallet;
    string private baseURL;
    string private unrevealedURL;
    string private URLSuffix = ".json";
    bool private revealed = false;
    uint256 private ogMaxPerWallet = 2;
    uint256 private publicMaxPerWallet = 1;
    uint256 private maxPerWalletAfter4444 = 10;
    uint256 private mintPrice = 0.022 ether;
    uint256 private constant TOTAL_SUPPLY = 8888;
    mapping (address => uint256) private amountMinted;
    


    /* Executes when contract gets deployed */
    constructor(string memory _baseURL, string memory _unrevealedURL, address _developerWallet ) ERC721A("Yoodles", "YDLS"){
       baseURL = _baseURL;
       unrevealedURL = _unrevealedURL;
       developerWallet = _developerWallet;
       _safeMint(msg.sender, 3);
    }


    /* Safety */
    receive() external payable {}


    /* Public Functions */
    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable nonReentrant mintRequirements(_mintAmount, _merkleProof) {

        if(saleState == SaleState.OG_SALE){
            bytes32 leafNode = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leafNode), "You are not whitelisted!");
            require(amountMinted[msg.sender] + _mintAmount <= ogMaxPerWallet, "Mint amount for wallet exceeded");
        }
        else if(saleState == SaleState.PUBLIC_SALE && totalSupply() <= 4444){
            require(amountMinted[msg.sender] + _mintAmount <= publicMaxPerWallet, "Mint amount for wallet exceeded");
        }
        else if(saleState == SaleState.PUBLIC_SALE && totalSupply() > 4444){
            require(amountMinted[msg.sender] + _mintAmount <= maxPerWalletAfter4444, "Mint amount for wallet exceeded");
            require(msg.value >= mintPrice * _mintAmount, "You did not send enough ETH");
        }

        _safeMint(msg.sender, _mintAmount);
        amountMinted[msg.sender] += _mintAmount;
    }


    /* Getters */
    function getMintPrice() public view returns (uint256){
        return mintPrice;
    }

    function getSaleState() public view returns (SaleState){
        return saleState;
    }

    function getRevealedStatus() public view returns (bool){
        return revealed;
    }

    function getTotalSupply() public pure returns (uint256){
        return TOTAL_SUPPLY;
    }

    function getPublicMaxPerWallet() public view returns (uint256){
        return publicMaxPerWallet;
    }

    function getOgMaxPerWallet() public view returns (uint256){
        return ogMaxPerWallet;
    }

    function getMaxPerWalletAfter4444() public view returns (uint256){
        return maxPerWalletAfter4444;
    }

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


    /* Inherited Functions */
     function _baseURI() internal view override returns (string memory) {
        return baseURL;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(!revealed) return unrevealedURL;

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

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }


    /* Owner Functions */
    function startOgSale() public onlyOwner {
        saleState = SaleState.OG_SALE;
    }

     function startPublicSale() public onlyOwner {
        saleState = SaleState.PUBLIC_SALE;
    }

    function pauseSale() public onlyOwner {
        saleState = SaleState.PAUSED;
    }

    function reveal() public onlyOwner {
        revealed = !revealed;
    }

    function setUnrevealedURL(string memory _newUnrevealedURL) public onlyOwner{
        unrevealedURL = _newUnrevealedURL;
    }

    function setBaseURL(string memory _newBaseURL) public onlyOwner {
        baseURL = _newBaseURL;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function ownerMint(uint256 _mintAmount) public onlyOwner nonReentrant {
        _safeMint(msg.sender, _mintAmount);
    } 

    function withdrawFunds() public payable onlyOwner nonReentrant {
        require(address(this).balance > 0, "The contract has no ETH");

        uint256 contractBalance = address(this).balance;

        (bool withdrawOwner,) = payable(owner()).call{value: contractBalance * 95 / 100}("");
        /* Pay developers 5% */
        (bool withdrawDeveloper,) = payable(developerWallet).call{value: contractBalance * 5 / 100}("");
        require(withdrawOwner && withdrawDeveloper, "Withdraw failed");
    }


    /* Modifiers */
    modifier mintRequirements(uint256 _mintAmount, bytes32[] calldata _merkleProof) {
        require(saleState != SaleState.PAUSED, "Minting is paused");
        require(_mintAmount > 0, "You can't mint 0 NFTs");
        require(totalSupply() + _mintAmount <= TOTAL_SUPPLY, "Sold out!");
        _;
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURL","type":"string"},{"internalType":"string","name":"_unrevealedURL","type":"string"},{"internalType":"address","name":"_developerWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmountMintedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerWalletAfter4444","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOgMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"enum Yoodles.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURL","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealedURL","type":"string"}],"name":"setUnrevealedURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startOgSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6009805460ff60a01b191690557f4a4e175a5aa87448f3accbd108469baabefc6134ab2dfc43f38b4ef7ea3732d4600a5560c06040526005608090815264173539b7b760d91b60a052600e90620000579082620004e0565b50600f805460ff1916905560026010556001601155600a601255664e28e2290f00006013553480156200008957600080fd5b506040516200271c3803806200271c833981016040819052620000ac916200066c565b60405180604001604052806007815260200166596f6f646c657360c81b8152506040518060400160405280600481526020016359444c5360e01b8152508160029081620000fa9190620004e0565b506003620001098282620004e0565b50600160005550506001600855620001213362000170565b600c6200012f8482620004e0565b50600d6200013e8382620004e0565b50600b80546001600160a01b0319166001600160a01b03831617905562000167336003620001c2565b50505062000782565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001e4828260405180602001604052806000815250620001e860201b60201c565b5050565b620001f483836200025f565b6001600160a01b0383163b156200025a576000548281035b6001810190620002229060009087908662000342565b62000240576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200020c5781600054146200025757600080fd5b50505b505050565b6000546001600160a01b0383166200028957604051622e076360e81b815260040160405180910390fd5b81600003620002ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620002f55760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000379903390899088908890600401620006f9565b6020604051808303816000875af1925050508015620003b7575060408051601f3d908101601f19168201909252620003b4918101906200074f565b60015b62000419573d808015620003e8576040519150601f19603f3d011682016040523d82523d6000602084013e620003ed565b606091505b50805160000362000411576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046757607f821691505b6020821081036200048857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025a57600081815260208120601f850160051c81016020861015620004b75750805b601f850160051c820191505b81811015620004d857828155600101620004c3565b505050505050565b81516001600160401b03811115620004fc57620004fc6200043c565b62000514816200050d845462000452565b846200048e565b602080601f8311600181146200054c5760008415620005335750858301515b600019600386901b1c1916600185901b178555620004d8565b600085815260208120601f198616915b828110156200057d578886015182559484019460019091019084016200055c565b50858210156200059c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b83811015620005c9578181015183820152602001620005af565b83811115620004365750506000910152565b600082601f830112620005ed57600080fd5b81516001600160401b03808211156200060a576200060a6200043c565b604051601f8301601f19908116603f011681019082821181831017156200063557620006356200043c565b816040528381528660208588010111156200064f57600080fd5b62000662846020830160208901620005ac565b9695505050505050565b6000806000606084860312156200068257600080fd5b83516001600160401b03808211156200069a57600080fd5b620006a887838801620005db565b94506020860151915080821115620006bf57600080fd5b50620006ce86828701620005db565b604086015190935090506001600160a01b0381168114620006ee57600080fd5b809150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007388160a0850160208701620005ac565b601f01601f19169190910160a00195945050505050565b6000602082840312156200076257600080fd5b81516001600160e01b0319811681146200077b57600080fd5b9392505050565b611f8a80620007926000396000f3fe60806040526004361061021e5760003560e01c806370a0823111610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd146105c2578063e2773c1a146105e2578063e985e9c5146105fa578063f19e75d414610643578063f2fde38b1461066357600080fd5b8063a475b5dd14610550578063a7f93ebd14610565578063b88d4fde1461057a578063ba41b0c61461059a578063c4e41b22146105ad57600080fd5b80638da5cb5b116100f25780638da5cb5b146104c857806395d89b41146104e657806399770850146104fb5780639ae7920014610510578063a22cb4651461053057600080fd5b806370a082311461045e578063715018a61461047e5780637cb64759146104935780638aec3781146104b357600080fd5b806323b872dd116101a657806342842e0e1161017557806342842e0e146103c757806349f2553a146103e75780634ca14c1d1461040757806355367ba9146104295780636352211e1461043e57600080fd5b806323b872dd1461036257806324600fc31461038257806325bdb2a81461038a5780632eb4a7ab146103b157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d85780630c1c972a146102fa57806318160ddd1461030f578063185870f91461032d5780631af77bf71461034d57600080fd5b806301ffc9a71461022a57806304f97e301461025f57806306fdde031461027e578063081812fc146102a057600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611853565b610683565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506012545b604051908152602001610256565b34801561028a57600080fd5b506102936106d5565b60405161025691906118c8565b3480156102ac57600080fd5b506102c06102bb3660046118db565b610767565b6040516001600160a01b039091168152602001610256565b3480156102e457600080fd5b506102f86102f3366004611910565b6107ab565b005b34801561030657600080fd5b506102f861084b565b34801561031b57600080fd5b50610270600154600054036000190190565b34801561033957600080fd5b50600b546102c0906001600160a01b031681565b34801561035957600080fd5b50601054610270565b34801561036e57600080fd5b506102f861037d36600461193a565b610870565b6102f8610a09565b34801561039657600080fd5b50600954600160a01b900460ff16604051610256919061198c565b3480156103bd57600080fd5b50610270600a5481565b3480156103d357600080fd5b506102f86103e236600461193a565b610bc6565b3480156103f357600080fd5b506102f8610402366004611a40565b610be6565b34801561041357600080fd5b5033600090815260146020526040902054610270565b34801561043557600080fd5b506102f8610bfe565b34801561044a57600080fd5b506102c06104593660046118db565b610c20565b34801561046a57600080fd5b50610270610479366004611a89565b610c2b565b34801561048a57600080fd5b506102f8610c7a565b34801561049f57600080fd5b506102f86104ae3660046118db565b610c8e565b3480156104bf57600080fd5b50601154610270565b3480156104d457600080fd5b506009546001600160a01b03166102c0565b3480156104f257600080fd5b50610293610c9b565b34801561050757600080fd5b506102f8610caa565b34801561051c57600080fd5b506102f861052b366004611a40565b610ccc565b34801561053c57600080fd5b506102f861054b366004611aa4565b610ce0565b34801561055c57600080fd5b506102f8610d75565b34801561057157600080fd5b50601354610270565b34801561058657600080fd5b506102f8610595366004611ae0565b610d91565b6102f86105a8366004611b5c565b610ddb565b3480156105b957600080fd5b506122b8610270565b3480156105ce57600080fd5b506102936105dd3660046118db565b6111d0565b3480156105ee57600080fd5b50600f5460ff1661024a565b34801561060657600080fd5b5061024a610615366004611bdb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102f861065e3660046118db565b6112f3565b34801561066f57600080fd5b506102f861067e366004611a89565b611334565b60006301ffc9a760e01b6001600160e01b0319831614806106b457506380ac58cd60e01b6001600160e01b03198316145b806106cf5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e490611c0e565b80601f016020809104026020016040519081016040528092919081815260200182805461071090611c0e565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b6000610772826113ad565b61078f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b682610c20565b9050336001600160a01b038216146107ef576107d28133610615565b6107ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108536113e2565b600980546002919060ff60a01b1916600160a01b835b0217905550565b600061087b8261143c565b9050836001600160a01b0316816001600160a01b0316146108ae5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108fb576108de8633610615565b6108fb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661092257604051633a954ecd60e21b815260040160405180910390fd5b801561092d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109bf576001840160008181526004602052604081205490036109bd5760005481146109bd5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a116113e2565b600260085403610a3c5760405162461bcd60e51b8152600401610a3390611c48565b60405180910390fd5b600260085547610a8e5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420686173206e6f204554480000000000000000006044820152606401610a33565b476000610aa36009546001600160a01b031690565b6001600160a01b03166064610ab984605f611c95565b610ac39190611cb4565b604051600081818185875af1925050503d8060008114610aff576040519150601f19603f3d011682016040523d82523d6000602084013e610b04565b606091505b5050600b549091506000906001600160a01b03166064610b25856005611c95565b610b2f9190611cb4565b604051600081818185875af1925050503d8060008114610b6b576040519150601f19603f3d011682016040523d82523d6000602084013e610b70565b606091505b50509050818015610b7e5750805b610bbc5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610a33565b5050600160085550565b610be183838360405180602001604052806000815250610d91565b505050565b610bee6113e2565b600c610bfa8282611d1c565b5050565b610c066113e2565b600980546000919060ff60a01b1916600160a01b83610869565b60006106cf8261143c565b60006001600160a01b038216610c54576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c826113e2565b610c8c60006114ab565b565b610c966113e2565b600a55565b6060600380546106e490611c0e565b610cb26113e2565b600980546001919060ff60a01b1916600160a01b83610869565b610cd46113e2565b600d610bfa8282611d1c565b336001600160a01b03831603610d095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d7d6113e2565b600f805460ff19811660ff90911615179055565b610d9c848484610870565b6001600160a01b0383163b15610dd557610db8848484846114fd565b610dd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260085403610dfd5760405162461bcd60e51b8152600401610a3390611c48565b60026008558282826000600954600160a01b900460ff166002811115610e2557610e25611976565b03610e665760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610a33565b60008311610eae5760405162461bcd60e51b8152602060048201526015602482015274596f752063616e2774206d696e742030204e46547360581b6044820152606401610a33565b6122b883610ec3600154600054036000190190565b610ecd9190611ddc565b1115610f075760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610a33565b6001600954600160a01b900460ff166002811115610f2757610f27611976565b03611034576040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506115e9565b610ff25760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610a33565b60105433600090815260146020526040902054611010908990611ddc565b111561102e5760405162461bcd60e51b8152600401610a3390611df4565b50611195565b6002600954600160a01b900460ff16600281111561105457611054611976565b148015611073575061115c611070600154600054036000190190565b11155b156110b95760115433600090815260146020526040902054611096908890611ddc565b11156110b45760405162461bcd60e51b8152600401610a3390611df4565b611195565b6002600954600160a01b900460ff1660028111156110d9576110d9611976565b1480156110f7575061115c6110f5600154600054036000190190565b115b15611195576012543360009081526014602052604090205461111a908890611ddc565b11156111385760405162461bcd60e51b8152600401610a3390611df4565b856013546111469190611c95565b3410156111955760405162461bcd60e51b815260206004820152601b60248201527f596f7520646964206e6f742073656e6420656e6f7567682045544800000000006044820152606401610a33565b61119f33876115ff565b33600090815260146020526040812080548892906111be908490611ddc565b90915550506001600855505050505050565b60606111db826113ad565b6111f857604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff1661129457600d805461120f90611c0e565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90611c0e565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b50505050509050919050565b600061129e611619565b905080516000036112be57604051806020016040528060008152506112ec565b806112c884611628565b600e6040516020016112dc93929190611e2b565b6040516020818303038152906040525b9392505050565b6112fb6113e2565b60026008540361131d5760405162461bcd60e51b8152600401610a3390611c48565b600260085561132c33826115ff565b506001600855565b61133c6113e2565b6001600160a01b0381166113a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a33565b6113aa816114ab565b50565b6000816001111580156113c1575060005482105b80156106cf575050600090815260046020526040902054600160e01b161590565b6009546001600160a01b03163314610c8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a33565b60008180600111611492576000548110156114925760008181526004602052604081205490600160e01b82169003611490575b806000036112ec57506000190160008181526004602052604090205461146f565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611532903390899088908890600401611ecb565b6020604051808303816000875af192505050801561156d575060408051601f3d908101601f1916820190925261156a91810190611f08565b60015b6115cb573d80801561159b576040519150601f19603f3d011682016040523d82523d6000602084013e6115a0565b606091505b5080516000036115c3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826115f68584611677565b14949350505050565b610bfa8282604051806020016040528060008152506116c4565b6060600c80546106e490611c0e565b604080516080810191829052607f0190826030600a8206018353600a90045b801561166557600183039250600a81066030018353600a9004611647565b50819003601f19909101908152919050565b600081815b84518110156116bc576116a88286838151811061169b5761169b611f25565b6020026020010151611731565b9150806116b481611f3b565b91505061167c565b509392505050565b6116ce838361175d565b6001600160a01b0383163b15610be1576000548281035b6116f860008683806001019450866114fd565b611715576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e557816000541461172a57600080fd5b5050505050565b600081831061174d5760008281526020849052604090206112ec565b5060009182526020526040902090565b6000546001600160a01b03831661178657604051622e076360e81b815260040160405180910390fd5b816000036117a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117f15760005550505050565b6001600160e01b0319811681146113aa57600080fd5b60006020828403121561186557600080fd5b81356112ec8161183d565b60005b8381101561188b578181015183820152602001611873565b83811115610dd55750506000910152565b600081518084526118b4816020860160208601611870565b601f01601f19169290920160200192915050565b6020815260006112ec602083018461189c565b6000602082840312156118ed57600080fd5b5035919050565b80356001600160a01b038116811461190b57600080fd5b919050565b6000806040838503121561192357600080fd5b61192c836118f4565b946020939093013593505050565b60008060006060848603121561194f57600080fd5b611958846118f4565b9250611966602085016118f4565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b60208101600383106119ae57634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119e5576119e56119b4565b604051601f8501601f19908116603f01168101908282118183101715611a0d57611a0d6119b4565b81604052809350858152868686011115611a2657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a5257600080fd5b813567ffffffffffffffff811115611a6957600080fd5b8201601f81018413611a7a57600080fd5b6115e1848235602084016119ca565b600060208284031215611a9b57600080fd5b6112ec826118f4565b60008060408385031215611ab757600080fd5b611ac0836118f4565b915060208301358015158114611ad557600080fd5b809150509250929050565b60008060008060808587031215611af657600080fd5b611aff856118f4565b9350611b0d602086016118f4565b925060408501359150606085013567ffffffffffffffff811115611b3057600080fd5b8501601f81018713611b4157600080fd5b611b50878235602084016119ca565b91505092959194509250565b600080600060408486031215611b7157600080fd5b83359250602084013567ffffffffffffffff80821115611b9057600080fd5b818601915086601f830112611ba457600080fd5b813581811115611bb357600080fd5b8760208260051b8501011115611bc857600080fd5b6020830194508093505050509250925092565b60008060408385031215611bee57600080fd5b611bf7836118f4565b9150611c05602084016118f4565b90509250929050565b600181811c90821680611c2257607f821691505b602082108103611c4257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611caf57611caf611c7f565b500290565b600082611cd157634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610be157600081815260208120601f850160051c81016020861015611cfd5750805b601f850160051c820191505b81811015610a0157828155600101611d09565b815167ffffffffffffffff811115611d3657611d366119b4565b611d4a81611d448454611c0e565b84611cd6565b602080601f831160018114611d7f5760008415611d675750858301515b600019600386901b1c1916600185901b178555610a01565b600085815260208120601f198616915b82811015611dae57888601518255948401946001909101908401611d8f565b5085821015611dcc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611def57611def611c7f565b500190565b6020808252601f908201527f4d696e7420616d6f756e7420666f722077616c6c657420657863656564656400604082015260600190565b600084516020611e3e8285838a01611870565b855191840191611e518184848a01611870565b8554920191600090611e6281611c0e565b60018281168015611e7a5760018114611e8f57611ebb565b60ff1984168752821515830287019450611ebb565b896000528560002060005b84811015611eb357815489820152908301908701611e9a565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efe9083018461189c565b9695505050505050565b600060208284031215611f1a57600080fd5b81516112ec8161183d565b634e487b7160e01b600052603260045260246000fd5b600060018201611f4d57611f4d611c7f565b506001019056fea2646970667358221220807de90c3b1dce004e8bb81fc40ff133d3cba32a2424d71a621982da55b3161364736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dcd23dee09a9826cf367304a793dc35c1d299bfb0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66584852586e445a57774a454c516270416f68397038516754575951474a3858583268685868365451736b672f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5545746779467254566f725951333935686b7748577935325655385271335336464e384359534a4c697478562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806370a0823111610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd146105c2578063e2773c1a146105e2578063e985e9c5146105fa578063f19e75d414610643578063f2fde38b1461066357600080fd5b8063a475b5dd14610550578063a7f93ebd14610565578063b88d4fde1461057a578063ba41b0c61461059a578063c4e41b22146105ad57600080fd5b80638da5cb5b116100f25780638da5cb5b146104c857806395d89b41146104e657806399770850146104fb5780639ae7920014610510578063a22cb4651461053057600080fd5b806370a082311461045e578063715018a61461047e5780637cb64759146104935780638aec3781146104b357600080fd5b806323b872dd116101a657806342842e0e1161017557806342842e0e146103c757806349f2553a146103e75780634ca14c1d1461040757806355367ba9146104295780636352211e1461043e57600080fd5b806323b872dd1461036257806324600fc31461038257806325bdb2a81461038a5780632eb4a7ab146103b157600080fd5b8063095ea7b3116101ed578063095ea7b3146102d85780630c1c972a146102fa57806318160ddd1461030f578063185870f91461032d5780631af77bf71461034d57600080fd5b806301ffc9a71461022a57806304f97e301461025f57806306fdde031461027e578063081812fc146102a057600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a610245366004611853565b610683565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506012545b604051908152602001610256565b34801561028a57600080fd5b506102936106d5565b60405161025691906118c8565b3480156102ac57600080fd5b506102c06102bb3660046118db565b610767565b6040516001600160a01b039091168152602001610256565b3480156102e457600080fd5b506102f86102f3366004611910565b6107ab565b005b34801561030657600080fd5b506102f861084b565b34801561031b57600080fd5b50610270600154600054036000190190565b34801561033957600080fd5b50600b546102c0906001600160a01b031681565b34801561035957600080fd5b50601054610270565b34801561036e57600080fd5b506102f861037d36600461193a565b610870565b6102f8610a09565b34801561039657600080fd5b50600954600160a01b900460ff16604051610256919061198c565b3480156103bd57600080fd5b50610270600a5481565b3480156103d357600080fd5b506102f86103e236600461193a565b610bc6565b3480156103f357600080fd5b506102f8610402366004611a40565b610be6565b34801561041357600080fd5b5033600090815260146020526040902054610270565b34801561043557600080fd5b506102f8610bfe565b34801561044a57600080fd5b506102c06104593660046118db565b610c20565b34801561046a57600080fd5b50610270610479366004611a89565b610c2b565b34801561048a57600080fd5b506102f8610c7a565b34801561049f57600080fd5b506102f86104ae3660046118db565b610c8e565b3480156104bf57600080fd5b50601154610270565b3480156104d457600080fd5b506009546001600160a01b03166102c0565b3480156104f257600080fd5b50610293610c9b565b34801561050757600080fd5b506102f8610caa565b34801561051c57600080fd5b506102f861052b366004611a40565b610ccc565b34801561053c57600080fd5b506102f861054b366004611aa4565b610ce0565b34801561055c57600080fd5b506102f8610d75565b34801561057157600080fd5b50601354610270565b34801561058657600080fd5b506102f8610595366004611ae0565b610d91565b6102f86105a8366004611b5c565b610ddb565b3480156105b957600080fd5b506122b8610270565b3480156105ce57600080fd5b506102936105dd3660046118db565b6111d0565b3480156105ee57600080fd5b50600f5460ff1661024a565b34801561060657600080fd5b5061024a610615366004611bdb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102f861065e3660046118db565b6112f3565b34801561066f57600080fd5b506102f861067e366004611a89565b611334565b60006301ffc9a760e01b6001600160e01b0319831614806106b457506380ac58cd60e01b6001600160e01b03198316145b806106cf5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e490611c0e565b80601f016020809104026020016040519081016040528092919081815260200182805461071090611c0e565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b6000610772826113ad565b61078f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b682610c20565b9050336001600160a01b038216146107ef576107d28133610615565b6107ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108536113e2565b600980546002919060ff60a01b1916600160a01b835b0217905550565b600061087b8261143c565b9050836001600160a01b0316816001600160a01b0316146108ae5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108fb576108de8633610615565b6108fb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661092257604051633a954ecd60e21b815260040160405180910390fd5b801561092d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109bf576001840160008181526004602052604081205490036109bd5760005481146109bd5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a116113e2565b600260085403610a3c5760405162461bcd60e51b8152600401610a3390611c48565b60405180910390fd5b600260085547610a8e5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420686173206e6f204554480000000000000000006044820152606401610a33565b476000610aa36009546001600160a01b031690565b6001600160a01b03166064610ab984605f611c95565b610ac39190611cb4565b604051600081818185875af1925050503d8060008114610aff576040519150601f19603f3d011682016040523d82523d6000602084013e610b04565b606091505b5050600b549091506000906001600160a01b03166064610b25856005611c95565b610b2f9190611cb4565b604051600081818185875af1925050503d8060008114610b6b576040519150601f19603f3d011682016040523d82523d6000602084013e610b70565b606091505b50509050818015610b7e5750805b610bbc5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610a33565b5050600160085550565b610be183838360405180602001604052806000815250610d91565b505050565b610bee6113e2565b600c610bfa8282611d1c565b5050565b610c066113e2565b600980546000919060ff60a01b1916600160a01b83610869565b60006106cf8261143c565b60006001600160a01b038216610c54576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c826113e2565b610c8c60006114ab565b565b610c966113e2565b600a55565b6060600380546106e490611c0e565b610cb26113e2565b600980546001919060ff60a01b1916600160a01b83610869565b610cd46113e2565b600d610bfa8282611d1c565b336001600160a01b03831603610d095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d7d6113e2565b600f805460ff19811660ff90911615179055565b610d9c848484610870565b6001600160a01b0383163b15610dd557610db8848484846114fd565b610dd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600260085403610dfd5760405162461bcd60e51b8152600401610a3390611c48565b60026008558282826000600954600160a01b900460ff166002811115610e2557610e25611976565b03610e665760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610a33565b60008311610eae5760405162461bcd60e51b8152602060048201526015602482015274596f752063616e2774206d696e742030204e46547360581b6044820152606401610a33565b6122b883610ec3600154600054036000190190565b610ecd9190611ddc565b1115610f075760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610a33565b6001600954600160a01b900460ff166002811115610f2757610f27611976565b03611034576040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fa686868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506115e9565b610ff25760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610a33565b60105433600090815260146020526040902054611010908990611ddc565b111561102e5760405162461bcd60e51b8152600401610a3390611df4565b50611195565b6002600954600160a01b900460ff16600281111561105457611054611976565b148015611073575061115c611070600154600054036000190190565b11155b156110b95760115433600090815260146020526040902054611096908890611ddc565b11156110b45760405162461bcd60e51b8152600401610a3390611df4565b611195565b6002600954600160a01b900460ff1660028111156110d9576110d9611976565b1480156110f7575061115c6110f5600154600054036000190190565b115b15611195576012543360009081526014602052604090205461111a908890611ddc565b11156111385760405162461bcd60e51b8152600401610a3390611df4565b856013546111469190611c95565b3410156111955760405162461bcd60e51b815260206004820152601b60248201527f596f7520646964206e6f742073656e6420656e6f7567682045544800000000006044820152606401610a33565b61119f33876115ff565b33600090815260146020526040812080548892906111be908490611ddc565b90915550506001600855505050505050565b60606111db826113ad565b6111f857604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff1661129457600d805461120f90611c0e565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90611c0e565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b50505050509050919050565b600061129e611619565b905080516000036112be57604051806020016040528060008152506112ec565b806112c884611628565b600e6040516020016112dc93929190611e2b565b6040516020818303038152906040525b9392505050565b6112fb6113e2565b60026008540361131d5760405162461bcd60e51b8152600401610a3390611c48565b600260085561132c33826115ff565b506001600855565b61133c6113e2565b6001600160a01b0381166113a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a33565b6113aa816114ab565b50565b6000816001111580156113c1575060005482105b80156106cf575050600090815260046020526040902054600160e01b161590565b6009546001600160a01b03163314610c8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a33565b60008180600111611492576000548110156114925760008181526004602052604081205490600160e01b82169003611490575b806000036112ec57506000190160008181526004602052604090205461146f565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611532903390899088908890600401611ecb565b6020604051808303816000875af192505050801561156d575060408051601f3d908101601f1916820190925261156a91810190611f08565b60015b6115cb573d80801561159b576040519150601f19603f3d011682016040523d82523d6000602084013e6115a0565b606091505b5080516000036115c3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826115f68584611677565b14949350505050565b610bfa8282604051806020016040528060008152506116c4565b6060600c80546106e490611c0e565b604080516080810191829052607f0190826030600a8206018353600a90045b801561166557600183039250600a81066030018353600a9004611647565b50819003601f19909101908152919050565b600081815b84518110156116bc576116a88286838151811061169b5761169b611f25565b6020026020010151611731565b9150806116b481611f3b565b91505061167c565b509392505050565b6116ce838361175d565b6001600160a01b0383163b15610be1576000548281035b6116f860008683806001019450866114fd565b611715576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e557816000541461172a57600080fd5b5050505050565b600081831061174d5760008281526020849052604090206112ec565b5060009182526020526040902090565b6000546001600160a01b03831661178657604051622e076360e81b815260040160405180910390fd5b816000036117a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117f15760005550505050565b6001600160e01b0319811681146113aa57600080fd5b60006020828403121561186557600080fd5b81356112ec8161183d565b60005b8381101561188b578181015183820152602001611873565b83811115610dd55750506000910152565b600081518084526118b4816020860160208601611870565b601f01601f19169290920160200192915050565b6020815260006112ec602083018461189c565b6000602082840312156118ed57600080fd5b5035919050565b80356001600160a01b038116811461190b57600080fd5b919050565b6000806040838503121561192357600080fd5b61192c836118f4565b946020939093013593505050565b60008060006060848603121561194f57600080fd5b611958846118f4565b9250611966602085016118f4565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b60208101600383106119ae57634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119e5576119e56119b4565b604051601f8501601f19908116603f01168101908282118183101715611a0d57611a0d6119b4565b81604052809350858152868686011115611a2657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a5257600080fd5b813567ffffffffffffffff811115611a6957600080fd5b8201601f81018413611a7a57600080fd5b6115e1848235602084016119ca565b600060208284031215611a9b57600080fd5b6112ec826118f4565b60008060408385031215611ab757600080fd5b611ac0836118f4565b915060208301358015158114611ad557600080fd5b809150509250929050565b60008060008060808587031215611af657600080fd5b611aff856118f4565b9350611b0d602086016118f4565b925060408501359150606085013567ffffffffffffffff811115611b3057600080fd5b8501601f81018713611b4157600080fd5b611b50878235602084016119ca565b91505092959194509250565b600080600060408486031215611b7157600080fd5b83359250602084013567ffffffffffffffff80821115611b9057600080fd5b818601915086601f830112611ba457600080fd5b813581811115611bb357600080fd5b8760208260051b8501011115611bc857600080fd5b6020830194508093505050509250925092565b60008060408385031215611bee57600080fd5b611bf7836118f4565b9150611c05602084016118f4565b90509250929050565b600181811c90821680611c2257607f821691505b602082108103611c4257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611caf57611caf611c7f565b500290565b600082611cd157634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610be157600081815260208120601f850160051c81016020861015611cfd5750805b601f850160051c820191505b81811015610a0157828155600101611d09565b815167ffffffffffffffff811115611d3657611d366119b4565b611d4a81611d448454611c0e565b84611cd6565b602080601f831160018114611d7f5760008415611d675750858301515b600019600386901b1c1916600185901b178555610a01565b600085815260208120601f198616915b82811015611dae57888601518255948401946001909101908401611d8f565b5085821015611dcc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611def57611def611c7f565b500190565b6020808252601f908201527f4d696e7420616d6f756e7420666f722077616c6c657420657863656564656400604082015260600190565b600084516020611e3e8285838a01611870565b855191840191611e518184848a01611870565b8554920191600090611e6281611c0e565b60018281168015611e7a5760018114611e8f57611ebb565b60ff1984168752821515830287019450611ebb565b896000528560002060005b84811015611eb357815489820152908301908701611e9a565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efe9083018461189c565b9695505050505050565b600060208284031215611f1a57600080fd5b81516112ec8161183d565b634e487b7160e01b600052603260045260246000fd5b600060018201611f4d57611f4d611c7f565b506001019056fea2646970667358221220807de90c3b1dce004e8bb81fc40ff133d3cba32a2424d71a621982da55b3161364736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dcd23dee09a9826cf367304a793dc35c1d299bfb0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66584852586e445a57774a454c516270416f68397038516754575951474a3858583268685868365451736b672f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5545746779467254566f725951333935686b7748577935325655385271335336464e384359534a4c697478562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURL (string): ipfs://QmfXHRXnDZWwJELQbpAoh9p8QgTWYQGJ8XX2hhXh6TQskg/
Arg [1] : _unrevealedURL (string): ipfs://QmUEtgyFrTVorYQ395hkwHWy52VU8Rq3S6FN8CYSJLitxV/hidden.json
Arg [2] : _developerWallet (address): 0xDcd23dee09a9826Cf367304A793dc35C1D299BFb

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dcd23dee09a9826cf367304a793dc35c1d299bfb
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d66584852586e445a57774a454c516270416f6839703851
Arg [5] : 6754575951474a3858583268685868365451736b672f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d5545746779467254566f725951333935686b7748577935
Arg [8] : 325655385271335336464e384359534a4c697478562f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59942:5627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29669:615;;;;;;;;;;-1:-1:-1;29669:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29669:615:0;;;;;;;;62952:112;;;;;;;;;;-1:-1:-1;63035:21:0;;62952:112;;;738:25:1;;;726:2;711:18;62952:112:0;592:177:1;35316:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37262:204::-;;;;;;;;;;-1:-1:-1;37262:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;37262:204:0;1710:203:1;36810:386:0;;;;;;;;;;-1:-1:-1;36810:386:0;;;;;:::i;:::-;;:::i;:::-;;63941:96;;;;;;;;;;;;;:::i;28723:315::-;;;;;;;;;;;;63798:1;28989:12;28776:7;28973:13;:28;-1:-1:-1;;28973:46:0;;28723:315;60309:30;;;;;;;;;;-1:-1:-1;60309:30:0;;;;-1:-1:-1;;;;;60309:30:0;;;62846:98;;;;;;;;;;-1:-1:-1;62922:14:0;;62846:98;;46527:2800;;;;;;;;;;-1:-1:-1;46527:2800:0;;;;;:::i;:::-;;:::i;64711:512::-;;;:::i;62436:90::-;;;;;;;;;;-1:-1:-1;62509:9:0;;-1:-1:-1;;;62509:9:0;;;;62436:90;;;;;;:::i;60208:94::-;;;;;;;;;;;;;;;;38152:185;;;;;;;;;;-1:-1:-1;38152:185:0;;;;;:::i;:::-;;:::i;64355:104::-;;;;;;;;;;-1:-1:-1;64355:104:0;;;;;:::i;:::-;;:::i;63072:116::-;;;;;;;;;;-1:-1:-1;63169:10:0;63130:7;63156:24;;;:12;:24;;;;;;63072:116;;64045:85;;;;;;;;;;;;;:::i;35105:144::-;;;;;;;;;;-1:-1:-1;35105:144:0;;;;;:::i;:::-;;:::i;30348:224::-;;;;;;;;;;-1:-1:-1;30348:224:0;;;;;:::i;:::-;;:::i;14260:103::-;;;;;;;;;;;;;:::i;64467:104::-;;;;;;;;;;-1:-1:-1;64467:104:0;;;;;:::i;:::-;;:::i;62732:106::-;;;;;;;;;;-1:-1:-1;62812:18:0;;62732:106;;13612:87;;;;;;;;;;-1:-1:-1;13685:6:0;;-1:-1:-1;;;;;13685:6:0;13612:87;;35485:104;;;;;;;;;;;;;:::i;63844:88::-;;;;;;;;;;;;;:::i;64220:127::-;;;;;;;;;;-1:-1:-1;64220:127:0;;;;;:::i;:::-;;:::i;37538:308::-;;;;;;;;;;-1:-1:-1;37538:308:0;;;;;:::i;:::-;;:::i;64138:74::-;;;;;;;;;;;;;:::i;62340:88::-;;;;;;;;;;-1:-1:-1;62411:9:0;;62340:88;;38408:399;;;;;;;;;;-1:-1:-1;38408:399:0;;;;;:::i;:::-;;:::i;61201:1110::-;;;;;;:::i;:::-;;:::i;62631:93::-;;;;;;;;;;-1:-1:-1;60708:4:0;62631:93;;63338:368;;;;;;;;;;-1:-1:-1;63338:368:0;;;;;:::i;:::-;;:::i;62534:89::-;;;;;;;;;;-1:-1:-1;62607:8:0;;;;62534:89;;37917:164;;;;;;;;;;-1:-1:-1;37917:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38038:25:0;;;38014:4;38038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37917:164;64579:123;;;;;;;;;;-1:-1:-1;64579:123:0;;;;;:::i;:::-;;:::i;14518:201::-;;;;;;;;;;-1:-1:-1;14518:201:0;;;;;:::i;:::-;;:::i;29669:615::-;29754:4;-1:-1:-1;;;;;;;;;30054:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;30131:25:0;;;30054:102;:179;;;-1:-1:-1;;;;;;;;;;30208:25:0;;;30054:179;30034:199;29669:615;-1:-1:-1;;29669:615:0:o;35316:100::-;35370:13;35403:5;35396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35316:100;:::o;37262:204::-;37330:7;37355:16;37363:7;37355;:16::i;:::-;37350:64;;37380:34;;-1:-1:-1;;;37380:34:0;;;;;;;;;;;37350:64;-1:-1:-1;37434:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37434:24:0;;37262:204::o;36810:386::-;36883:13;36899:16;36907:7;36899;:16::i;:::-;36883:32;-1:-1:-1;57710:10:0;-1:-1:-1;;;;;36932:28:0;;;36928:175;;36980:44;36997:5;57710:10;37917:164;:::i;36980:44::-;36975:128;;37052:35;;-1:-1:-1;;;37052:35:0;;;;;;;;;;;36975:128;37115:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37115:29:0;-1:-1:-1;;;;;37115:29:0;;;;;;;;;37160:28;;37115:24;;37160:28;;;;;;;36872:324;36810:386;;:::o;63941:96::-;13498:13;:11;:13::i;:::-;63996:9:::1;:33:::0;;64008:21:::1;::::0;63996:9;-1:-1:-1;;;;63996:33:0::1;-1:-1:-1::0;;;64008:21:0;63996:33:::1;;;;;;63941:96::o:0;46527:2800::-;46661:27;46691;46710:7;46691:18;:27::i;:::-;46661:57;;46776:4;-1:-1:-1;;;;;46735:45:0;46751:19;-1:-1:-1;;;;;46735:45:0;;46731:86;;46789:28;;-1:-1:-1;;;46789:28:0;;;;;;;;;;;46731:86;46831:27;45257:21;;;45084:15;45299:4;45292:36;45381:4;45365:21;;45471:26;;57710:10;46224:30;;;-1:-1:-1;;;;;45922:26:0;;46203:19;;;46200:55;47010:174;;47097:43;47114:4;57710:10;37917:164;:::i;47097:43::-;47092:92;;47149:35;;-1:-1:-1;;;47149:35:0;;;;;;;;;;;47092:92;-1:-1:-1;;;;;47201:16:0;;47197:52;;47226:23;;-1:-1:-1;;;47226:23:0;;;;;;;;;;;47197:52;47398:15;47395:160;;;47538:1;47517:19;47510:30;47395:160;-1:-1:-1;;;;;47933:24:0;;;;;;;:18;:24;;;;;;47931:26;;-1:-1:-1;;47931:26:0;;;48002:22;;;;;;;;;48000:24;;-1:-1:-1;48000:24:0;;;35004:11;34980:22;34976:40;34963:62;-1:-1:-1;;;34963:62:0;48295:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;48589:46:0;;:51;;48585:626;;48693:1;48683:11;;48661:19;48816:30;;;:17;:30;;;;;;:35;;48812:384;;48954:13;;48939:11;:28;48935:242;;49101:30;;;;:17;:30;;;;;:52;;;48935:242;48642:569;48585:626;49258:7;49254:2;-1:-1:-1;;;;;49239:27:0;49248:4;-1:-1:-1;;;;;49239:27:0;;;;;;;;;;;49277:42;46650:2677;;;46527:2800;;;:::o;64711:512::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19:::0;11127:63:::1;;;;-1:-1:-1::0;;;11127:63:0::1;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18:::0;64793:21:::2;64785:61;;;::::0;-1:-1:-1;;;64785:61:0;;7874:2:1;64785:61:0::2;::::0;::::2;7856:21:1::0;7913:2;7893:18;;;7886:30;7952:25;7932:18;;;7925:53;7995:18;;64785:61:0::2;7672:347:1::0;64785:61:0::2;64885:21;64859:23;64951:7;13685:6:::0;;-1:-1:-1;;;;;13685:6:0;;13612:87;64951:7:::2;-1:-1:-1::0;;;;;64943:21:0::2;64995:3;64972:20;:15:::0;64990:2:::2;64972:20;:::i;:::-;:26;;;;:::i;:::-;64943:60;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;65083:15:0::2;::::0;64919:84;;-1:-1:-1;65048:22:0::2;::::0;-1:-1:-1;;;;;65083:15:0::2;65134:3;65112:19;:15:::0;65130:1:::2;65112:19;:::i;:::-;:25;;;;:::i;:::-;65075:67;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65047:95;;;65161:13;:34;;;;;65178:17;65161:34;65153:62;;;::::0;-1:-1:-1;;;65153:62:0;;8963:2:1;65153:62:0::2;::::0;::::2;8945:21:1::0;9002:2;8982:18;;;8975:30;-1:-1:-1;;;9021:18:1;;;9014:45;9076:18;;65153:62:0::2;8761:339:1::0;65153:62:0::2;-1:-1:-1::0;;10493:1:0::1;11447:7;:22:::0;-1:-1:-1;64711:512:0:o;38152:185::-;38290:39;38307:4;38313:2;38317:7;38290:39;;;;;;;;;;;;:16;:39::i;:::-;38152:185;;;:::o;64355:104::-;13498:13;:11;:13::i;:::-;64430:7:::1;:21;64440:11:::0;64430:7;:21:::1;:::i;:::-;;64355:104:::0;:::o;64045:85::-;13498:13;:11;:13::i;:::-;64094:9:::1;:28:::0;;64106:16:::1;::::0;64094:9;-1:-1:-1;;;;64094:28:0::1;-1:-1:-1::0;;;64106:16:0;64094:28:::1;::::0;35105:144;35169:7;35212:27;35231:7;35212:18;:27::i;30348:224::-;30412:7;-1:-1:-1;;;;;30436:19:0;;30432:60;;30464:28;;-1:-1:-1;;;30464:28:0;;;;;;;;;;;30432:60;-1:-1:-1;;;;;;30510:25:0;;;;;:18;:25;;;;;;24903:13;30510:54;;30348:224::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;:::-;14260:103::o:0;64467:104::-;13498:13;:11;:13::i;:::-;64539:10:::1;:24:::0;64467:104::o;35485:::-;35541:13;35574:7;35567:14;;;;;:::i;63844:88::-;13498:13;:11;:13::i;:::-;63895:9:::1;:29:::0;;63907:17:::1;::::0;63895:9;-1:-1:-1;;;;63895:29:0::1;-1:-1:-1::0;;;63907:17:0;63895:29:::1;::::0;64220:127;13498:13;:11;:13::i;:::-;64306::::1;:33;64322:17:::0;64306:13;:33:::1;:::i;37538:308::-:0;57710:10;-1:-1:-1;;;;;37637:31:0;;;37633:61;;37677:17;;-1:-1:-1;;;37677:17:0;;;;;;;;;;;37633:61;57710:10;37707:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;37707:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;37707:60:0;;;;;;;;;;37783:55;;540:41:1;;;37707:49:0;;57710:10;37783:55;;513:18:1;37783:55:0;;;;;;;37538:308;;:::o;64138:74::-;13498:13;:11;:13::i;:::-;64196:8:::1;::::0;;-1:-1:-1;;64184:20:0;::::1;64196:8;::::0;;::::1;64195:9;64184:20;::::0;;64138:74::o;38408:399::-;38575:31;38588:4;38594:2;38598:7;38575:12;:31::i;:::-;-1:-1:-1;;;;;38621:14:0;;;:19;38617:183;;38660:56;38691:4;38697:2;38701:7;38710:5;38660:30;:56::i;:::-;38655:145;;38744:40;;-1:-1:-1;;;38744:40:0;;;;;;;;;;;38655:145;38408:399;;;;:::o;61201:1110::-;10537:1;11135:7;;:19;11127:63;;;;-1:-1:-1;;;11127:63:0;;;;;;;:::i;:::-;10537:1;11268:7;:18;61316:11;61329:12;;65366:16:::1;65353:9;::::0;-1:-1:-1;;;65353:9:0;::::1;;;:29;::::0;::::1;;;;;;:::i;:::-;::::0;65345:59:::1;;;::::0;-1:-1:-1;;;65345:59:0;;11511:2:1;65345:59:0::1;::::0;::::1;11493:21:1::0;11550:2;11530:18;;;11523:30;-1:-1:-1;;;11569:18:1;;;11562:47;11626:18;;65345:59:0::1;11309:341:1::0;65345:59:0::1;65437:1;65423:11;:15;65415:49;;;::::0;-1:-1:-1;;;65415:49:0;;11857:2:1;65415:49:0::1;::::0;::::1;11839:21:1::0;11896:2;11876:18;;;11869:30;-1:-1:-1;;;11915:18:1;;;11908:51;11976:18;;65415:49:0::1;11655:345:1::0;65415:49:0::1;60708:4;65499:11;65483:13;63798:1:::0;28989:12;28776:7;28973:13;:28;-1:-1:-1;;28973:46:0;;28723:315;65483:13:::1;:27;;;;:::i;:::-;:43;;65475:65;;;::::0;-1:-1:-1;;;65475:65:0;;12340:2:1;65475:65:0::1;::::0;::::1;12322:21:1::0;12379:1;12359:18;;;12352:29;-1:-1:-1;;;12397:18:1;;;12390:39;12446:18;;65475:65:0::1;12138:332:1::0;65475:65:0::1;61372:17:::2;61359:9;::::0;-1:-1:-1;;;61359:9:0;::::2;;;:30;::::0;::::2;;;;;;:::i;:::-;::::0;61356:851:::2;;61434:28;::::0;-1:-1:-1;;61451:10:0::2;12624:2:1::0;12620:15;12616:53;61434:28:0::2;::::0;::::2;12604:66:1::0;61405:16:0::2;::::0;12686:12:1;;61434:28:0::2;;;;;;;;;;;;61424:39;;;;;;61405:58;;61486:54;61505:12;;61486:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;61519:10:0::2;::::0;;-1:-1:-1;61531:8:0;;-1:-1:-1;61486:18:0::2;:54::i;:::-;61478:91;;;::::0;-1:-1:-1;;;61478:91:0;;12911:2:1;61478:91:0::2;::::0;::::2;12893:21:1::0;12950:2;12930:18;;;12923:30;12989:26;12969:18;;;12962:54;13033:18;;61478:91:0::2;12709:348:1::0;61478:91:0::2;61634:14;::::0;61605:10:::2;61592:24;::::0;;;:12:::2;:24;::::0;;;;;:38:::2;::::0;61619:11;;61592:38:::2;:::i;:::-;:56;;61584:100;;;;-1:-1:-1::0;;;61584:100:0::2;;;;;;;:::i;:::-;61390:306;61356:851;;;61727:21;61714:9;::::0;-1:-1:-1;;;61714:9:0;::::2;;;:34;::::0;::::2;;;;;;:::i;:::-;;:59;;;;;61769:4;61752:13;63798:1:::0;28989:12;28776:7;28973:13;:28;-1:-1:-1;;28973:46:0;;28723:315;61752:13:::2;:21;;61714:59;61711:496;;;61839:18;::::0;61810:10:::2;61797:24;::::0;;;:12:::2;:24;::::0;;;;;:38:::2;::::0;61824:11;;61797:38:::2;:::i;:::-;:60;;61789:104;;;;-1:-1:-1::0;;;61789:104:0::2;;;;;;;:::i;:::-;61711:496;;;61936:21;61923:9;::::0;-1:-1:-1;;;61923:9:0;::::2;;;:34;::::0;::::2;;;;;;:::i;:::-;;:58;;;;;61977:4;61961:13;63798:1:::0;28989:12;28776:7;28973:13;:28;-1:-1:-1;;28973:46:0;;28723:315;61961:13:::2;:20;61923:58;61920:287;;;62047:21;::::0;62018:10:::2;62005:24;::::0;;;:12:::2;:24;::::0;;;;;:38:::2;::::0;62032:11;;62005:38:::2;:::i;:::-;:63;;61997:107;;;;-1:-1:-1::0;;;61997:107:0::2;;;;;;;:::i;:::-;62152:11;62140:9;;:23;;;;:::i;:::-;62127:9;:36;;62119:76;;;::::0;-1:-1:-1;;;62119:76:0;;13624:2:1;62119:76:0::2;::::0;::::2;13606:21:1::0;13663:2;13643:18;;;13636:30;13702:29;13682:18;;;13675:57;13749:18;;62119:76:0::2;13422:351:1::0;62119:76:0::2;62219:34;62229:10;62241:11;62219:9;:34::i;:::-;62277:10;62264:24;::::0;;;:12:::2;:24;::::0;;;;:39;;62292:11;;62264:24;:39:::2;::::0;62292:11;;62264:39:::2;:::i;:::-;::::0;;;-1:-1:-1;;10493:1:0;11447:7;:22;-1:-1:-1;;;;;;61201:1110:0:o;63338:368::-;63403:13;63434:16;63442:7;63434;:16::i;:::-;63429:59;;63459:29;;-1:-1:-1;;;63459:29:0;;;;;;;;;;;63429:59;63505:8;;;;63501:34;;63522:13;63515:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63338:368;;;:::o;63501:34::-;63548:21;63572:10;:8;:10::i;:::-;63548:34;;63606:7;63600:21;63625:1;63600:26;:98;;;;;;;;;;;;;;;;;63653:7;63662:18;63672:7;63662:9;:18::i;:::-;63682:9;63636:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63600:98;63593:105;63338:368;-1:-1:-1;;;63338:368:0:o;64579:123::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19:::0;11127:63:::1;;;;-1:-1:-1::0;;;11127:63:0::1;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;64660:34:::2;64670:10;64682:11:::0;64660:9:::2;:34::i;:::-;-1:-1:-1::0;10493:1:0::1;11447:7;:22:::0;64579:123::o;14518:201::-;13498:13;:11;:13::i;:::-;-1:-1:-1;;;;;14607:22:0;::::1;14599:73;;;::::0;-1:-1:-1;;;14599:73:0;;15215:2:1;14599:73:0::1;::::0;::::1;15197:21:1::0;15254:2;15234:18;;;15227:30;15293:34;15273:18;;;15266:62;-1:-1:-1;;;15344:18:1;;;15337:36;15390:19;;14599:73:0::1;15013:402:1::0;14599:73:0::1;14683:28;14702:8;14683:18;:28::i;:::-;14518:201:::0;:::o;39062:273::-;39119:4;39175:7;63798:1;39156:26;;:66;;;;;39209:13;;39199:7;:23;39156:66;:152;;;;-1:-1:-1;;39260:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39260:43:0;:48;;39062:273::o;13777:132::-;13685:6;;-1:-1:-1;;;;;13685:6:0;57710:10;13841:23;13833:68;;;;-1:-1:-1;;;13833:68:0;;15622:2:1;13833:68:0;;;15604:21:1;;;15641:18;;;15634:30;15700:34;15680:18;;;15673:62;15752:18;;13833:68:0;15420:356:1;32022:1129:0;32089:7;32124;;63798:1;32173:23;32169:915;;32226:13;;32219:4;:20;32215:869;;;32264:14;32281:23;;;:17;:23;;;;;;;-1:-1:-1;;;32370:23:0;;:28;;32366:699;;32889:113;32896:6;32906:1;32896:11;32889:113;;-1:-1:-1;;;32967:6:0;32949:25;;;;:17;:25;;;;;;32889:113;;32366:699;32241:843;32215:869;33112:31;;-1:-1:-1;;;33112:31:0;;;;;;;;;;;14879:191;14972:6;;;-1:-1:-1;;;;;14989:17:0;;;-1:-1:-1;;;;;;14989:17:0;;;;;;;15022:40;;14972:6;;;14989:17;14972:6;;15022:40;;14953:16;;15022:40;14942:128;14879:191;:::o;53278:716::-;53462:88;;-1:-1:-1;;;53462:88:0;;53441:4;;-1:-1:-1;;;;;53462:45:0;;;;;:88;;57710:10;;53529:4;;53535:7;;53544:5;;53462:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53462:88:0;;;;;;;;-1:-1:-1;;53462:88:0;;;;;;;;;;;;:::i;:::-;;;53458:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53745:6;:13;53762:1;53745:18;53741:235;;53791:40;;-1:-1:-1;;;53791:40:0;;;;;;;;;;;53741:235;53934:6;53928:13;53919:6;53915:2;53911:15;53904:38;53458:529;-1:-1:-1;;;;;;53621:64:0;-1:-1:-1;;;53621:64:0;;-1:-1:-1;53458:529:0;53278:716;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;39419:104::-;39488:27;39498:2;39502:8;39488:27;;;;;;;;;;;;:9;:27::i;63230:100::-;63282:13;63315:7;63308:14;;;;;:::i;57834:1960::-;58303:4;58297:11;;58310:3;58293:21;;58388:17;;;;59084:11;;;58963:5;59216:2;59230;59220:13;;59212:22;59084:11;59199:36;59271:2;59261:13;;58855:697;59290:4;58855:697;;;59481:1;59476:3;59472:11;59465:18;;59532:2;59526:4;59522:13;59518:2;59514:22;59509:3;59501:36;59385:2;59375:13;;58855:697;;;-1:-1:-1;59582:13:0;;;-1:-1:-1;;59697:12:0;;;59757:19;;;59697:12;57834:1960;-1:-1:-1;57834:1960:0:o;2086:296::-;2169:7;2212:4;2169:7;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;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;39939:681::-;40062:19;40068:2;40072:8;40062:5;:19::i;:::-;-1:-1:-1;;;;;40123:14:0;;;:19;40119:483;;40163:11;40177:13;40225:14;;;40258:233;40289:62;40328:1;40332:2;40336:7;;;;;;40345:5;40289:30;:62::i;:::-;40284:167;;40387:40;;-1:-1:-1;;;40387:40:0;;;;;;;;;;;40284:167;40486:3;40478:5;:11;40258:233;;40573:3;40556:13;;:20;40552:34;;40578:8;;;40552:34;40144:458;;39939:681;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;40893:1529::-;40958:20;40981:13;-1:-1:-1;;;;;41009:16:0;;41005:48;;41034:19;;-1:-1:-1;;;41034:19:0;;;;;;;;;;;41005:48;41068:8;41080:1;41068:13;41064:44;;41090:18;;-1:-1:-1;;;41090:18:0;;;;;;;;;;;41064:44;-1:-1:-1;;;;;41596:22:0;;;;;;:18;:22;;25040:2;41596:22;;:70;;41634:31;41622:44;;41596:70;;;35004:11;34980:22;34976:40;-1:-1:-1;36714:15:0;;36689:23;36685:45;34973:51;34963:62;41909:31;;;;:17;:31;;;;;:173;41927:12;42158:23;;;42196:101;42223:35;;42248:9;;;;;-1:-1:-1;;;;;42223:35:0;;;42240:1;;42223:35;;42240:1;;42223:35;42292:3;42282:7;:13;42196:101;;42313:13;:19;-1:-1:-1;38152:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:342;2966:2;2951:18;;2999:1;2988:13;;2978:144;;3044:10;3039:3;3035:20;3032:1;3025:31;3079:4;3076:1;3069:15;3107:4;3104:1;3097:15;2978:144;3131:25;;;2820:342;:::o;3349:127::-;3410:10;3405:3;3401:20;3398:1;3391:31;3441:4;3438:1;3431:15;3465:4;3462:1;3455:15;3481:632;3546:5;3576:18;3617:2;3609:6;3606:14;3603:40;;;3623:18;;:::i;:::-;3698:2;3692:9;3666:2;3752:15;;-1:-1:-1;;3748:24:1;;;3774:2;3744:33;3740:42;3728:55;;;3798:18;;;3818:22;;;3795:46;3792:72;;;3844:18;;:::i;:::-;3884:10;3880:2;3873:22;3913:6;3904:15;;3943:6;3935;3928:22;3983:3;3974:6;3969:3;3965:16;3962:25;3959:45;;;4000:1;3997;3990:12;3959:45;4050:6;4045:3;4038:4;4030:6;4026:17;4013:44;4105:1;4098:4;4089:6;4081;4077:19;4073:30;4066:41;;;;3481:632;;;;;:::o;4118:451::-;4187:6;4240:2;4228:9;4219:7;4215:23;4211:32;4208:52;;;4256:1;4253;4246:12;4208:52;4296:9;4283:23;4329:18;4321:6;4318:30;4315:50;;;4361:1;4358;4351:12;4315:50;4384:22;;4437:4;4429:13;;4425:27;-1:-1:-1;4415:55:1;;4466:1;4463;4456:12;4415:55;4489:74;4555:7;4550:2;4537:16;4532:2;4528;4524:11;4489:74;:::i;4574:186::-;4633:6;4686:2;4674:9;4665:7;4661:23;4657:32;4654:52;;;4702:1;4699;4692:12;4654:52;4725:29;4744:9;4725:29;:::i;4950:347::-;5015:6;5023;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5115:29;5134:9;5115:29;:::i;:::-;5105:39;;5194:2;5183:9;5179:18;5166:32;5241:5;5234:13;5227:21;5220:5;5217:32;5207:60;;5263:1;5260;5253:12;5207:60;5286:5;5276:15;;;4950:347;;;;;:::o;5302:667::-;5397:6;5405;5413;5421;5474:3;5462:9;5453:7;5449:23;5445:33;5442:53;;;5491:1;5488;5481:12;5442:53;5514:29;5533:9;5514:29;:::i;:::-;5504:39;;5562:38;5596:2;5585:9;5581:18;5562:38;:::i;:::-;5552:48;;5647:2;5636:9;5632:18;5619:32;5609:42;;5702:2;5691:9;5687:18;5674:32;5729:18;5721:6;5718:30;5715:50;;;5761:1;5758;5751:12;5715:50;5784:22;;5837:4;5829:13;;5825:27;-1:-1:-1;5815:55:1;;5866:1;5863;5856:12;5815:55;5889:74;5955:7;5950:2;5937:16;5932:2;5928;5924:11;5889:74;:::i;:::-;5879:84;;;5302:667;;;;;;;:::o;5974:683::-;6069:6;6077;6085;6138:2;6126:9;6117:7;6113:23;6109:32;6106:52;;;6154:1;6151;6144:12;6106:52;6190:9;6177:23;6167:33;;6251:2;6240:9;6236:18;6223:32;6274:18;6315:2;6307:6;6304:14;6301:34;;;6331:1;6328;6321:12;6301:34;6369:6;6358:9;6354:22;6344:32;;6414:7;6407:4;6403:2;6399:13;6395:27;6385:55;;6436:1;6433;6426:12;6385:55;6476:2;6463:16;6502:2;6494:6;6491:14;6488:34;;;6518:1;6515;6508:12;6488:34;6571:7;6566:2;6556:6;6553:1;6549:14;6545:2;6541:23;6537:32;6534:45;6531:65;;;6592:1;6589;6582:12;6531:65;6623:2;6619;6615:11;6605:21;;6645:6;6635:16;;;;;5974:683;;;;;:::o;6662:260::-;6730:6;6738;6791:2;6779:9;6770:7;6766:23;6762:32;6759:52;;;6807:1;6804;6797:12;6759:52;6830:29;6849:9;6830:29;:::i;:::-;6820:39;;6878:38;6912:2;6901:9;6897:18;6878:38;:::i;:::-;6868:48;;6662:260;;;;;:::o;6927:380::-;7006:1;7002:12;;;;7049;;;7070:61;;7124:4;7116:6;7112:17;7102:27;;7070:61;7177:2;7169:6;7166:14;7146:18;7143:38;7140:161;;7223:10;7218:3;7214:20;7211:1;7204:31;7258:4;7255:1;7248:15;7286:4;7283:1;7276:15;7140:161;;6927:380;;;:::o;7312:355::-;7514:2;7496:21;;;7553:2;7533:18;;;7526:30;7592:33;7587:2;7572:18;;7565:61;7658:2;7643:18;;7312:355::o;8024:127::-;8085:10;8080:3;8076:20;8073:1;8066:31;8116:4;8113:1;8106:15;8140:4;8137:1;8130:15;8156:168;8196:7;8262:1;8258;8254:6;8250:14;8247:1;8244:21;8239:1;8232:9;8225:17;8221:45;8218:71;;;8269:18;;:::i;:::-;-1:-1:-1;8309:9:1;;8156:168::o;8329:217::-;8369:1;8395;8385:132;;8439:10;8434:3;8430:20;8427:1;8420:31;8474:4;8471:1;8464:15;8502:4;8499:1;8492:15;8385:132;-1:-1:-1;8531:9:1;;8329:217::o;9231:545::-;9333:2;9328:3;9325:11;9322:448;;;9369:1;9394:5;9390:2;9383:17;9439:4;9435:2;9425:19;9509:2;9497:10;9493:19;9490:1;9486:27;9480:4;9476:38;9545:4;9533:10;9530:20;9527:47;;;-1:-1:-1;9568:4:1;9527:47;9623:2;9618:3;9614:12;9611:1;9607:20;9601:4;9597:31;9587:41;;9678:82;9696:2;9689:5;9686:13;9678:82;;;9741:17;;;9722:1;9711:13;9678:82;;9952:1352;10078:3;10072:10;10105:18;10097:6;10094:30;10091:56;;;10127:18;;:::i;:::-;10156:97;10246:6;10206:38;10238:4;10232:11;10206:38;:::i;:::-;10200:4;10156:97;:::i;:::-;10308:4;;10372:2;10361:14;;10389:1;10384:663;;;;11091:1;11108:6;11105:89;;;-1:-1:-1;11160:19:1;;;11154:26;11105:89;-1:-1:-1;;9909:1:1;9905:11;;;9901:24;9897:29;9887:40;9933:1;9929:11;;;9884:57;11207:81;;10354:944;;10384:663;9178:1;9171:14;;;9215:4;9202:18;;-1:-1:-1;;10420:20:1;;;10538:236;10552:7;10549:1;10546:14;10538:236;;;10641:19;;;10635:26;10620:42;;10733:27;;;;10701:1;10689:14;;;;10568:19;;10538:236;;;10542:3;10802:6;10793:7;10790:19;10787:201;;;10863:19;;;10857:26;-1:-1:-1;;10946:1:1;10942:14;;;10958:3;10938:24;10934:37;10930:42;10915:58;10900:74;;10787:201;-1:-1:-1;;;;;11034:1:1;11018:14;;;11014:22;11001:36;;-1:-1:-1;9952:1352:1:o;12005:128::-;12045:3;12076:1;12072:6;12069:1;12066:13;12063:39;;;12082:18;;:::i;:::-;-1:-1:-1;12118:9:1;;12005:128::o;13062:355::-;13264:2;13246:21;;;13303:2;13283:18;;;13276:30;13342:33;13337:2;13322:18;;13315:61;13408:2;13393:18;;13062:355::o;13778:1230::-;14002:3;14040:6;14034:13;14066:4;14079:51;14123:6;14118:3;14113:2;14105:6;14101:15;14079:51;:::i;:::-;14193:13;;14152:16;;;;14215:55;14193:13;14152:16;14237:15;;;14215:55;:::i;:::-;14359:13;;14292:20;;;14332:1;;14397:36;14359:13;14397:36;:::i;:::-;14452:1;14469:18;;;14496:141;;;;14651:1;14646:337;;;;14462:521;;14496:141;-1:-1:-1;;14531:24:1;;14517:39;;14608:16;;14601:24;14587:39;;14576:51;;;-1:-1:-1;14496:141:1;;14646:337;14677:6;14674:1;14667:17;14725:2;14722:1;14712:16;14750:1;14764:169;14778:8;14775:1;14772:15;14764:169;;;14860:14;;14845:13;;;14838:37;14903:16;;;;14795:10;;14764:169;;;14768:3;;14964:8;14957:5;14953:20;14946:27;;14462:521;-1:-1:-1;14999:3:1;;13778:1230;-1:-1:-1;;;;;;;;;;13778:1230:1:o;15781:489::-;-1:-1:-1;;;;;16050:15:1;;;16032:34;;16102:15;;16097:2;16082:18;;16075:43;16149:2;16134:18;;16127:34;;;16197:3;16192:2;16177:18;;16170:31;;;15975:4;;16218:46;;16244:19;;16236:6;16218:46;:::i;:::-;16210:54;15781:489;-1:-1:-1;;;;;;15781:489:1:o;16275:249::-;16344:6;16397:2;16385:9;16376:7;16372:23;16368:32;16365:52;;;16413:1;16410;16403:12;16365:52;16445:9;16439:16;16464:30;16488:5;16464:30;:::i;16529:127::-;16590:10;16585:3;16581:20;16578:1;16571:31;16621:4;16618:1;16611:15;16645:4;16642:1;16635:15;16661:135;16700:3;16721:17;;;16718:43;;16741:18;;:::i;:::-;-1:-1:-1;16788:1:1;16777:13;;16661:135::o

Swarm Source

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