ETH Price: $2,760.66 (+5.20%)

Token

Exoricks (RICK)
 

Overview

Max Total Supply

1 RICK

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RICK
0xc6297c6645de4ab09a375f5cc1cc66620a0a852b
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:
Exoricks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: nft.sol


pragma solidity ^0.8.9;






error MyNftCollection__InvalidMintAmount();
error MyNftCollection__MaxSupplyExceeded();
error MyNftCollection__InsufficientFunds();
error MyNftCollection__AllowlistSaleClosed();
error MyNftCollection__AddressAlreadyClaimed();
error MyNftCollection__InvalidProof();
error MyNftCollection__PublicSaleClosed();
error MyNftCollection__TransferFailed();
error MyNftCollection__NonexistentToken();

contract Exoricks is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    /// Type declarations
    enum SaleState {
        Closed,
        AllowlistOnly,
        PublicOpen
    }

    /// State variables
    SaleState private sSaleState;

    uint256 private constant START_TOKEN_ID = 1;
    uint256 private immutable iMaxSupply;
    uint256 private sMintPrice;
    uint256 private sMaxMintAmountPerTx;
    string private sHiddenMetadataUri;
    string private sBaseUri;
    bytes32 private sMerkleRoot;
    bool private sRevealed;

    mapping(address => bool) private sAllowlistClaimed;

    /// Events
    event Mint(address indexed minter, uint256 amount);

    constructor(
        string memory nftName,
        string memory nftSymbol,
        string memory baseUri,
        uint256 maxSupply,
        uint256 mintPrice,
        uint256 maxMintAmountPerTx
    ) ERC721A(nftName, nftSymbol) {
        iMaxSupply = maxSupply;
        sMintPrice = mintPrice;
        sMaxMintAmountPerTx = maxMintAmountPerTx;
        sBaseUri = baseUri;
        sSaleState = SaleState.PublicOpen;
    }

    /// Modifiers
    modifier mintCompliance(uint256 _mintAmount, uint256 _maxMintAmount) {
        if (_mintAmount < 1 || _mintAmount > _maxMintAmount)
            revert MyNftCollection__InvalidMintAmount();

        if (totalSupply() + _mintAmount > iMaxSupply)
            revert MyNftCollection__MaxSupplyExceeded();

        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        if (msg.value < sMintPrice * _mintAmount)
            revert MyNftCollection__InsufficientFunds();

        _;
    }

    /// Functions
    function allowlistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
        mintCompliance(_mintAmount, sMaxMintAmountPerTx)
        mintPriceCompliance(_mintAmount)
    {
        if (sSaleState != SaleState.AllowlistOnly)
            revert MyNftCollection__AllowlistSaleClosed();

        if (sAllowlistClaimed[_msgSender()])
            revert MyNftCollection__AddressAlreadyClaimed();

        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));

        if (!MerkleProof.verify(_merkleProof, sMerkleRoot, leaf))
            revert MyNftCollection__InvalidProof();

        sAllowlistClaimed[_msgSender()] = true;

        _safeMint(_msgSender(), _mintAmount);

        emit Mint(_msgSender(), _mintAmount);
    }

    function publicMint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount, sMaxMintAmountPerTx)
        mintPriceCompliance(_mintAmount)
    {
        if (sSaleState != SaleState.PublicOpen)
            revert MyNftCollection__PublicSaleClosed();

        _safeMint(_msgSender(), _mintAmount);

        emit Mint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount, sMaxMintAmountPerTx)
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool success, ) = payable(owner()).call{value: address(this).balance}(
            ''
        );
        if (!success) revert MyNftCollection__TransferFailed();
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(_tokenId)) revert MyNftCollection__NonexistentToken();

        if (sRevealed == false) return sHiddenMetadataUri;

        return
            bytes(_baseURI()).length > 0
                ? string(
                    abi.encodePacked(_baseURI(), _tokenId.toString(), '.json')
                )
                : '';
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return sBaseUri;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return START_TOKEN_ID;
    }

    /// Getter Functions
    function getSaleState() public view returns (SaleState) {
        return sSaleState;
    }

    function getMaxSupply() public view returns (uint256) {
        return iMaxSupply;
    }

    function getMintPrice() public view returns (uint256) {
        return sMintPrice;
    }

    function getMaxMintAmountPerTx() public view returns (uint256) {
        return sMaxMintAmountPerTx;
    }

    function getHiddenMetadataUri() public view returns (string memory) {
        return sHiddenMetadataUri;
    }

    function getBaseUri() public view returns (string memory) {
        return sBaseUri;
    }

    function getMerkleRoot() public view returns (bytes32) {
        return sMerkleRoot;
    }

    function getRevealed() public view returns (bool) {
        return sRevealed;
    }

    /// Setter Functions
    function setAllowlistOnly() public onlyOwner {
        sSaleState = SaleState.AllowlistOnly;
    }

    function setPublicOpen() public onlyOwner {
        sSaleState = SaleState.PublicOpen;
    }

    function setClosed() public onlyOwner {
        sSaleState = SaleState.Closed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        sMintPrice = _mintPrice;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        sMaxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        sHiddenMetadataUri = _hiddenMetadataUri;
    }

    function setBaseUri(string memory _baseUri) public onlyOwner {
        sBaseUri = _baseUri;
    }

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

    function setRevealed(bool _state) public onlyOwner {
        sRevealed = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"nftName","type":"string"},{"internalType":"string","name":"nftSymbol","type":"string"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxMintAmountPerTx","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MyNftCollection__AddressAlreadyClaimed","type":"error"},{"inputs":[],"name":"MyNftCollection__AllowlistSaleClosed","type":"error"},{"inputs":[],"name":"MyNftCollection__InsufficientFunds","type":"error"},{"inputs":[],"name":"MyNftCollection__InvalidMintAmount","type":"error"},{"inputs":[],"name":"MyNftCollection__InvalidProof","type":"error"},{"inputs":[],"name":"MyNftCollection__MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MyNftCollection__NonexistentToken","type":"error"},{"inputs":[],"name":"MyNftCollection__PublicSaleClosed","type":"error"},{"inputs":[],"name":"MyNftCollection__TransferFailed","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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"getBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"enum Exoricks.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"setAllowlistOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620048c9380380620048c9833981810160405281019062000037919062000473565b8585816002908051906020019062000051929190620001eb565b5080600390805190602001906200006a929190620001eb565b506200007b6200011460201b60201c565b6000819055505050620000a3620000976200011d60201b60201c565b6200012560201b60201c565b6001600981905550826080818152505081600b8190555080600c8190555083600e9080519060200190620000d9929190620001eb565b506002600a60006101000a81548160ff021916908360028111156200010357620001026200056c565b5b021790555050505050505062000600565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f990620005ca565b90600052602060002090601f0160209004810192826200021d576000855562000269565b82601f106200023857805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002685782518255916020019190600101906200024b565b5b5090506200027891906200027c565b5090565b5b80821115620002975760008160009055506001016200027d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200030482620002b9565b810181811067ffffffffffffffff82111715620003265762000325620002ca565b5b80604052505050565b60006200033b6200029b565b9050620003498282620002f9565b919050565b600067ffffffffffffffff8211156200036c576200036b620002ca565b5b6200037782620002b9565b9050602081019050919050565b60005b83811015620003a457808201518184015260208101905062000387565b83811115620003b4576000848401525b50505050565b6000620003d1620003cb846200034e565b6200032f565b905082815260208101848484011115620003f057620003ef620002b4565b5b620003fd84828562000384565b509392505050565b600082601f8301126200041d576200041c620002af565b5b81516200042f848260208601620003ba565b91505092915050565b6000819050919050565b6200044d8162000438565b81146200045957600080fd5b50565b6000815190506200046d8162000442565b92915050565b60008060008060008060c08789031215620004935762000492620002a5565b5b600087015167ffffffffffffffff811115620004b457620004b3620002aa565b5b620004c289828a0162000405565b965050602087015167ffffffffffffffff811115620004e657620004e5620002aa565b5b620004f489828a0162000405565b955050604087015167ffffffffffffffff811115620005185762000517620002aa565b5b6200052689828a0162000405565b94505060606200053989828a016200045c565b93505060806200054c89828a016200045c565b92505060a06200055f89828a016200045c565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005e357607f821691505b60208210811415620005fa57620005f96200059b565b5b50919050565b608051614298620006316000396000818161105f015281816113220152818161155f015261224401526142986000f3fe6080604052600436106102515760003560e01c80638462151c11610139578063b071401b116100b6578063e0a808531161007a578063e0a8085314610850578063e985e9c514610879578063efbd73f4146108b6578063f2dc6b33146108df578063f2fde38b146108f6578063f4a0a5281461091f57610251565b8063b071401b14610766578063b88d4fde1461078f578063b98dd237146107ab578063c23dc68f146107d6578063c87b56dd1461081357610251565b80639e79effc116100fd5780639e79effc146106bb578063a0bcfc7f146106d2578063a22cb465146106fb578063a74773ad14610724578063a7f93ebd1461073b57610251565b80638462151c146105c05780638da5cb5b146105fd57806394cc41401461062857806395d89b411461065357806399a2557a1461067e57610251565b806342842e0e116101d25780635bbb2177116101965780635bbb2177146104ad5780636352211e146104ea57806370a0823114610527578063715018a6146105645780637bc9200e1461057b5780637cb647591461059757610251565b806342842e0e146103e757806349590657146104035780634c0f38c21461042e5780634fdd43cb14610459578063598195561461048257610251565b806318160ddd1161021957806318160ddd1461034257806323b872dd1461036d57806325bdb2a8146103895780632db11544146103b45780633ccfd60b146103d057610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630cac36b214610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612fe0565b610948565b60405161028a9190613028565b60405180910390f35b34801561029f57600080fd5b506102a86109da565b6040516102b591906130dc565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613134565b610a6c565b6040516102f291906131a2565b60405180910390f35b610315600480360381019061031091906131e9565b610aeb565b005b34801561032357600080fd5b5061032c610c2f565b60405161033991906130dc565b60405180910390f35b34801561034e57600080fd5b50610357610cc1565b6040516103649190613238565b60405180910390f35b61038760048036038101906103829190613253565b610cd8565b005b34801561039557600080fd5b5061039e610ffd565b6040516103ab919061331d565b60405180910390f35b6103ce60048036038101906103c99190613134565b611014565b005b3480156103dc57600080fd5b506103e56111e9565b005b61040160048036038101906103fc9190613253565b6112f4565b005b34801561040f57600080fd5b50610418611314565b6040516104259190613351565b60405180910390f35b34801561043a57600080fd5b5061044361131e565b6040516104509190613238565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b91906134a1565b611346565b005b34801561048e57600080fd5b50610497611368565b6040516104a49190613238565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf919061354a565b611372565b6040516104e191906136fa565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613134565b611435565b60405161051e91906131a2565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061371c565b611447565b60405161055b9190613238565b60405180910390f35b34801561057057600080fd5b50610579611500565b005b6105956004803603810190610590919061379f565b611514565b005b3480156105a357600080fd5b506105be60048036038101906105b9919061382b565b61188d565b005b3480156105cc57600080fd5b506105e760048036038101906105e2919061371c565b61189f565b6040516105f49190613916565b60405180910390f35b34801561060957600080fd5b506106126119e9565b60405161061f91906131a2565b60405180910390f35b34801561063457600080fd5b5061063d611a13565b60405161064a9190613028565b60405180910390f35b34801561065f57600080fd5b50610668611a2a565b60405161067591906130dc565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613938565b611abc565b6040516106b29190613916565b60405180910390f35b3480156106c757600080fd5b506106d0611cd0565b005b3480156106de57600080fd5b506106f960048036038101906106f491906134a1565b611d05565b005b34801561070757600080fd5b50610722600480360381019061071d91906139b7565b611d27565b005b34801561073057600080fd5b50610739611e32565b005b34801561074757600080fd5b50610750611e67565b60405161075d9190613238565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613134565b611e71565b005b6107a960048036038101906107a49190613a98565b611e83565b005b3480156107b757600080fd5b506107c0611ef6565b6040516107cd91906130dc565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613134565b611f88565b60405161080a9190613b70565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613134565b611ff2565b60405161084791906130dc565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613b8b565b612140565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613bb8565b612165565b6040516108ad9190613028565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613bf8565b6121f9565b005b3480156108eb57600080fd5b506108f46122c6565b005b34801561090257600080fd5b5061091d6004803603810190610918919061371c565b6122fb565b005b34801561092b57600080fd5b5061094660048036038101906109419190613134565b61237f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e990613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590613c67565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b5050505050905090565b6000610a7782612391565b610aad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af682611435565b90508073ffffffffffffffffffffffffffffffffffffffff16610b176123f0565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a57610b4381610b3e6123f0565b612165565b610b79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060600e8054610c3e90613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90613c67565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b5050505050905090565b6000610ccb6123f8565b6001546000540303905090565b6000610ce382612401565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d56846124cf565b91509150610d6c8187610d676123f0565b6124f6565b610db857610d8186610d7c6123f0565b612165565b610db7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2c868686600161253a565b8015610e3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0585610ee1888887612540565b7c020000000000000000000000000000000000000000000000000000000017612568565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8d576000600185019050600060046000838152602001908152602001600020541415610f8b576000548114610f8a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff58686866001612593565b505050505050565b6000600a60009054906101000a900460ff16905090565b80600c54600182108061102657508082115b1561105d576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611087610cc1565b6110919190613cc8565b11156110c9576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8280600b546110d89190613d1e565b341015611111576040517f094701c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115611124576111236132a6565b5b600a60009054906101000a900460ff166002811115611146576111456132a6565b5b1461117d576040517fde89b3c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61118e611188612599565b856125a1565b611196612599565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885856040516111db9190613238565b60405180910390a250505050565b6111f16125bf565b60026009541415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613dc4565b60405180910390fd5b600260098190555060006112496119e9565b73ffffffffffffffffffffffffffffffffffffffff164760405161126c90613e15565b60006040518083038185875af1925050503d80600081146112a9576040519150601f19603f3d011682016040523d82523d6000602084013e6112ae565b606091505b50509050806112e9576040517f0feba81d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600981905550565b61130f83838360405180602001604052806000815250611e83565b505050565b6000600f54905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b61134e6125bf565b80600d9080519060200190611364929190612e82565b5050565b6000600c54905090565b6060600083839050905060008167ffffffffffffffff81111561139857611397613376565b5b6040519080825280602002602001820160405280156113d157816020015b6113be612f08565b8152602001906001900390816113b65790505b50905060005b828114611429576114008686838181106113f4576113f3613e2a565b5b90506020020135611f88565b82828151811061141357611412613e2a565b5b60200260200101819052508060010190506113d7565b50809250505092915050565b600061144082612401565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114af576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115086125bf565b611512600061263d565b565b82600c54600182108061152657508082115b1561155d576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611587610cc1565b6115919190613cc8565b11156115c9576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8480600b546115d89190613d1e565b341015611611576040517f094701c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016002811115611625576116246132a6565b5b600a60009054906101000a900460ff166002811115611647576116466132a6565b5b1461167e576040517f016c2aa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6011600061168a612599565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611709576040517f538c047d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611713612599565b6040516020016117239190613ea1565b604051602081830303815290604052805190602001209050611789868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612703565b6117bf576040517faf227c3700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601160006117cd612599565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061182f611829612599565b886125a1565b611837612599565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858860405161187c9190613238565b60405180910390a250505050505050565b6118956125bf565b80600f8190555050565b606060008060006118af85611447565b905060008167ffffffffffffffff8111156118cd576118cc613376565b5b6040519080825280602002602001820160405280156118fb5781602001602082028036833780820191505090505b509050611906612f08565b60006119106123f8565b90505b8386146119db576119238161271a565b9150816040015115611934576119d0565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461197457816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119cf57808387806001019850815181106119c2576119c1613e2a565b5b6020026020010181815250505b5b806001019050611913565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601060009054906101000a900460ff16905090565b606060038054611a3990613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6590613c67565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b6060818310611af7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b02612745565b9050611b0c6123f8565b851015611b1e57611b1b6123f8565b94505b80841115611b2a578093505b6000611b3587611447565b905084861015611b58576000868603905081811015611b52578091505b50611b5d565b600090505b60008167ffffffffffffffff811115611b7957611b78613376565b5b604051908082528060200260200182016040528015611ba75781602001602082028036833780820191505090505b5090506000821415611bbf5780945050505050611cc9565b6000611bca88611f88565b905060008160400151611bdf57816000015190505b60008990505b888114158015611bf55750848714155b15611cbb57611c038161271a565b9250826040015115611c1457611cb0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c5457826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611caf5780848880600101995081518110611ca257611ca1613e2a565b5b6020026020010181815250505b5b806001019050611be5565b508583528296505050505050505b9392505050565b611cd86125bf565b6001600a60006101000a81548160ff02191690836002811115611cfe57611cfd6132a6565b5b0217905550565b611d0d6125bf565b80600e9080519060200190611d23929190612e82565b5050565b8060076000611d346123f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611de16123f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e269190613028565b60405180910390a35050565b611e3a6125bf565b6002600a60006101000a81548160ff02191690836002811115611e6057611e5f6132a6565b5b0217905550565b6000600b54905090565b611e796125bf565b80600c8190555050565b611e8e848484610cd8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ef057611eb98484848461274e565b611eef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611f0590613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3190613c67565b8015611f7e5780601f10611f5357610100808354040283529160200191611f7e565b820191906000526020600020905b815481529060010190602001808311611f6157829003601f168201915b5050505050905090565b611f90612f08565b611f98612f08565b611fa06123f8565b831080611fb45750611fb0612745565b8310155b15611fc25780915050611fed565b611fcb8361271a565b9050806040015115611fe05780915050611fed565b611fe9836128ae565b9150505b919050565b6060611ffd82612391565b612033576040517f7ad113c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060009054906101000a900460ff16151514156120e157600d805461205c90613c67565b80601f016020809104026020016040519081016040528092919081815260200182805461208890613c67565b80156120d55780601f106120aa576101008083540402835291602001916120d5565b820191906000526020600020905b8154815290600101906020018083116120b857829003601f168201915b5050505050905061213b565b60006120eb6128ce565b51116121065760405180602001604052806000815250612138565b61210e6128ce565b61211783612960565b604051602001612128929190613f44565b6040516020818303038152906040525b90505b919050565b6121486125bf565b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c54600182108061220b57508082115b15612242576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261226c610cc1565b6122769190613cc8565b11156122ae576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b66125bf565b6122c083856125a1565b50505050565b6122ce6125bf565b6000600a60006101000a81548160ff021916908360028111156122f4576122f36132a6565b5b0217905550565b6123036125bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613fe5565b60405180910390fd5b61237c8161263d565b50565b6123876125bf565b80600b8190555050565b60008161239c6123f8565b111580156123ab575060005482105b80156123e9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806124106123f8565b11612498576000548110156124975760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612495575b600081141561248b576004600083600190039350838152602001908152602001600020549050612460565b80925050506124ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612557868684612ac1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6125bb828260405180602001604052806000815250612aca565b5050565b6125c7612599565b73ffffffffffffffffffffffffffffffffffffffff166125e56119e9565b73ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290614051565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826127108584612b67565b1490509392505050565b612722612f08565b61273e6004600084815260200190815260200160002054612bbd565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127746123f0565b8786866040518563ffffffff1660e01b815260040161279694939291906140c6565b602060405180830381600087803b1580156127b057600080fd5b505af19250505080156127e157506040513d601f19601f820116820180604052508101906127de9190614127565b60015b61285b573d8060008114612811576040519150601f19603f3d011682016040523d82523d6000602084013e612816565b606091505b50600081511415612853576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6128b6612f08565b6128c76128c283612401565b612bbd565b9050919050565b6060600e80546128dd90613c67565b80601f016020809104026020016040519081016040528092919081815260200182805461290990613c67565b80156129565780601f1061292b57610100808354040283529160200191612956565b820191906000526020600020905b81548152906001019060200180831161293957829003601f168201915b5050505050905090565b606060008214156129a8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612abc565b600082905060005b600082146129da5780806129c390614154565b915050600a826129d391906141cc565b91506129b0565b60008167ffffffffffffffff8111156129f6576129f5613376565b5b6040519080825280601f01601f191660200182016040528015612a285781602001600182028036833780820191505090505b5090505b60008514612ab557600182612a4191906141fd565b9150600a85612a509190614231565b6030612a5c9190613cc8565b60f81b818381518110612a7257612a71613e2a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aae91906141cc565b9450612a2c565b8093505050505b919050565b60009392505050565b612ad48383612c73565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b6257600080549050600083820390505b612b14600086838060010194508661274e565b612b4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b01578160005414612b5f57600080fd5b50505b505050565b60008082905060005b8451811015612bb257612b9d82868381518110612b9057612b8f613e2a565b5b6020026020010151612e30565b91508080612baa90614154565b915050612b70565b508091505092915050565b612bc5612f08565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612cb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cc1600084838561253a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d3883612d296000866000612540565b612d3285612e5b565b17612568565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dd957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d9e565b506000821415612e15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e2b6000848385612593565b505050565b6000818310612e4857612e438284612e6b565b612e53565b612e528383612e6b565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e8e90613c67565b90600052602060002090601f016020900481019282612eb05760008555612ef7565b82601f10612ec957805160ff1916838001178555612ef7565b82800160010185558215612ef7579182015b82811115612ef6578251825591602001919060010190612edb565b5b509050612f049190612f57565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f70576000816000905550600101612f58565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fbd81612f88565b8114612fc857600080fd5b50565b600081359050612fda81612fb4565b92915050565b600060208284031215612ff657612ff5612f7e565b5b600061300484828501612fcb565b91505092915050565b60008115159050919050565b6130228161300d565b82525050565b600060208201905061303d6000830184613019565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561307d578082015181840152602081019050613062565b8381111561308c576000848401525b50505050565b6000601f19601f8301169050919050565b60006130ae82613043565b6130b8818561304e565b93506130c881856020860161305f565b6130d181613092565b840191505092915050565b600060208201905081810360008301526130f681846130a3565b905092915050565b6000819050919050565b613111816130fe565b811461311c57600080fd5b50565b60008135905061312e81613108565b92915050565b60006020828403121561314a57613149612f7e565b5b60006131588482850161311f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061318c82613161565b9050919050565b61319c81613181565b82525050565b60006020820190506131b76000830184613193565b92915050565b6131c681613181565b81146131d157600080fd5b50565b6000813590506131e3816131bd565b92915050565b60008060408385031215613200576131ff612f7e565b5b600061320e858286016131d4565b925050602061321f8582860161311f565b9150509250929050565b613232816130fe565b82525050565b600060208201905061324d6000830184613229565b92915050565b60008060006060848603121561326c5761326b612f7e565b5b600061327a868287016131d4565b935050602061328b868287016131d4565b925050604061329c8682870161311f565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106132e6576132e56132a6565b5b50565b60008190506132f7826132d5565b919050565b6000613307826132e9565b9050919050565b613317816132fc565b82525050565b6000602082019050613332600083018461330e565b92915050565b6000819050919050565b61334b81613338565b82525050565b60006020820190506133666000830184613342565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ae82613092565b810181811067ffffffffffffffff821117156133cd576133cc613376565b5b80604052505050565b60006133e0612f74565b90506133ec82826133a5565b919050565b600067ffffffffffffffff82111561340c5761340b613376565b5b61341582613092565b9050602081019050919050565b82818337600083830152505050565b600061344461343f846133f1565b6133d6565b9050828152602081018484840111156134605761345f613371565b5b61346b848285613422565b509392505050565b600082601f8301126134885761348761336c565b5b8135613498848260208601613431565b91505092915050565b6000602082840312156134b7576134b6612f7e565b5b600082013567ffffffffffffffff8111156134d5576134d4612f83565b5b6134e184828501613473565b91505092915050565b600080fd5b600080fd5b60008083601f84011261350a5761350961336c565b5b8235905067ffffffffffffffff811115613527576135266134ea565b5b602083019150836020820283011115613543576135426134ef565b5b9250929050565b6000806020838503121561356157613560612f7e565b5b600083013567ffffffffffffffff81111561357f5761357e612f83565b5b61358b858286016134f4565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135cc81613181565b82525050565b600067ffffffffffffffff82169050919050565b6135ef816135d2565b82525050565b6135fe8161300d565b82525050565b600062ffffff82169050919050565b61361c81613604565b82525050565b60808201600082015161363860008501826135c3565b50602082015161364b60208501826135e6565b50604082015161365e60408501826135f5565b5060608201516136716060850182613613565b50505050565b60006136838383613622565b60808301905092915050565b6000602082019050919050565b60006136a782613597565b6136b181856135a2565b93506136bc836135b3565b8060005b838110156136ed5781516136d48882613677565b97506136df8361368f565b9250506001810190506136c0565b5085935050505092915050565b60006020820190508181036000830152613714818461369c565b905092915050565b60006020828403121561373257613731612f7e565b5b6000613740848285016131d4565b91505092915050565b60008083601f84011261375f5761375e61336c565b5b8235905067ffffffffffffffff81111561377c5761377b6134ea565b5b602083019150836020820283011115613798576137976134ef565b5b9250929050565b6000806000604084860312156137b8576137b7612f7e565b5b60006137c68682870161311f565b935050602084013567ffffffffffffffff8111156137e7576137e6612f83565b5b6137f386828701613749565b92509250509250925092565b61380881613338565b811461381357600080fd5b50565b600081359050613825816137ff565b92915050565b60006020828403121561384157613840612f7e565b5b600061384f84828501613816565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61388d816130fe565b82525050565b600061389f8383613884565b60208301905092915050565b6000602082019050919050565b60006138c382613858565b6138cd8185613863565b93506138d883613874565b8060005b838110156139095781516138f08882613893565b97506138fb836138ab565b9250506001810190506138dc565b5085935050505092915050565b6000602082019050818103600083015261393081846138b8565b905092915050565b60008060006060848603121561395157613950612f7e565b5b600061395f868287016131d4565b93505060206139708682870161311f565b92505060406139818682870161311f565b9150509250925092565b6139948161300d565b811461399f57600080fd5b50565b6000813590506139b18161398b565b92915050565b600080604083850312156139ce576139cd612f7e565b5b60006139dc858286016131d4565b92505060206139ed858286016139a2565b9150509250929050565b600067ffffffffffffffff821115613a1257613a11613376565b5b613a1b82613092565b9050602081019050919050565b6000613a3b613a36846139f7565b6133d6565b905082815260208101848484011115613a5757613a56613371565b5b613a62848285613422565b509392505050565b600082601f830112613a7f57613a7e61336c565b5b8135613a8f848260208601613a28565b91505092915050565b60008060008060808587031215613ab257613ab1612f7e565b5b6000613ac0878288016131d4565b9450506020613ad1878288016131d4565b9350506040613ae28782880161311f565b925050606085013567ffffffffffffffff811115613b0357613b02612f83565b5b613b0f87828801613a6a565b91505092959194509250565b608082016000820151613b3160008501826135c3565b506020820151613b4460208501826135e6565b506040820151613b5760408501826135f5565b506060820151613b6a6060850182613613565b50505050565b6000608082019050613b856000830184613b1b565b92915050565b600060208284031215613ba157613ba0612f7e565b5b6000613baf848285016139a2565b91505092915050565b60008060408385031215613bcf57613bce612f7e565b5b6000613bdd858286016131d4565b9250506020613bee858286016131d4565b9150509250929050565b60008060408385031215613c0f57613c0e612f7e565b5b6000613c1d8582860161311f565b9250506020613c2e858286016131d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7f57607f821691505b60208210811415613c9357613c92613c38565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd3826130fe565b9150613cde836130fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1357613d12613c99565b5b828201905092915050565b6000613d29826130fe565b9150613d34836130fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6d57613d6c613c99565b5b828202905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613dae601f8361304e565b9150613db982613d78565b602082019050919050565b60006020820190508181036000830152613ddd81613da1565b9050919050565b600081905092915050565b50565b6000613dff600083613de4565b9150613e0a82613def565b600082019050919050565b6000613e2082613df2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b6000613e7182613e59565b9050919050565b6000613e8382613e66565b9050919050565b613e9b613e9682613181565b613e78565b82525050565b6000613ead8284613e8a565b60148201915081905092915050565b600081905092915050565b6000613ed282613043565b613edc8185613ebc565b9350613eec81856020860161305f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613f2e600583613ebc565b9150613f3982613ef8565b600582019050919050565b6000613f508285613ec7565b9150613f5c8284613ec7565b9150613f6782613f21565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fcf60268361304e565b9150613fda82613f73565b604082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061403b60208361304e565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061409882614071565b6140a2818561407c565b93506140b281856020860161305f565b6140bb81613092565b840191505092915050565b60006080820190506140db6000830187613193565b6140e86020830186613193565b6140f56040830185613229565b8181036060830152614107818461408d565b905095945050505050565b60008151905061412181612fb4565b92915050565b60006020828403121561413d5761413c612f7e565b5b600061414b84828501614112565b91505092915050565b600061415f826130fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419257614191613c99565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141d7826130fe565b91506141e2836130fe565b9250826141f2576141f161419d565b5b828204905092915050565b6000614208826130fe565b9150614213836130fe565b92508282101561422657614225613c99565b5b828203905092915050565b600061423c826130fe565b9150614247836130fe565b9250826142575761425661419d565b5b82820690509291505056fea2646970667358221220eff215ebc7dd86105b5ffaaf095ab87e1f94634c08b84559313121ed474f696464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000007c5850872380000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000845786f7269636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045249434b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569647769706e787665363370686b686c7a6d6c3432796d697270716b35346d6d366f787779656c6a65676d763462757466697870612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638462151c11610139578063b071401b116100b6578063e0a808531161007a578063e0a8085314610850578063e985e9c514610879578063efbd73f4146108b6578063f2dc6b33146108df578063f2fde38b146108f6578063f4a0a5281461091f57610251565b8063b071401b14610766578063b88d4fde1461078f578063b98dd237146107ab578063c23dc68f146107d6578063c87b56dd1461081357610251565b80639e79effc116100fd5780639e79effc146106bb578063a0bcfc7f146106d2578063a22cb465146106fb578063a74773ad14610724578063a7f93ebd1461073b57610251565b80638462151c146105c05780638da5cb5b146105fd57806394cc41401461062857806395d89b411461065357806399a2557a1461067e57610251565b806342842e0e116101d25780635bbb2177116101965780635bbb2177146104ad5780636352211e146104ea57806370a0823114610527578063715018a6146105645780637bc9200e1461057b5780637cb647591461059757610251565b806342842e0e146103e757806349590657146104035780634c0f38c21461042e5780634fdd43cb14610459578063598195561461048257610251565b806318160ddd1161021957806318160ddd1461034257806323b872dd1461036d57806325bdb2a8146103895780632db11544146103b45780633ccfd60b146103d057610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630cac36b214610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612fe0565b610948565b60405161028a9190613028565b60405180910390f35b34801561029f57600080fd5b506102a86109da565b6040516102b591906130dc565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613134565b610a6c565b6040516102f291906131a2565b60405180910390f35b610315600480360381019061031091906131e9565b610aeb565b005b34801561032357600080fd5b5061032c610c2f565b60405161033991906130dc565b60405180910390f35b34801561034e57600080fd5b50610357610cc1565b6040516103649190613238565b60405180910390f35b61038760048036038101906103829190613253565b610cd8565b005b34801561039557600080fd5b5061039e610ffd565b6040516103ab919061331d565b60405180910390f35b6103ce60048036038101906103c99190613134565b611014565b005b3480156103dc57600080fd5b506103e56111e9565b005b61040160048036038101906103fc9190613253565b6112f4565b005b34801561040f57600080fd5b50610418611314565b6040516104259190613351565b60405180910390f35b34801561043a57600080fd5b5061044361131e565b6040516104509190613238565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b91906134a1565b611346565b005b34801561048e57600080fd5b50610497611368565b6040516104a49190613238565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf919061354a565b611372565b6040516104e191906136fa565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613134565b611435565b60405161051e91906131a2565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061371c565b611447565b60405161055b9190613238565b60405180910390f35b34801561057057600080fd5b50610579611500565b005b6105956004803603810190610590919061379f565b611514565b005b3480156105a357600080fd5b506105be60048036038101906105b9919061382b565b61188d565b005b3480156105cc57600080fd5b506105e760048036038101906105e2919061371c565b61189f565b6040516105f49190613916565b60405180910390f35b34801561060957600080fd5b506106126119e9565b60405161061f91906131a2565b60405180910390f35b34801561063457600080fd5b5061063d611a13565b60405161064a9190613028565b60405180910390f35b34801561065f57600080fd5b50610668611a2a565b60405161067591906130dc565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613938565b611abc565b6040516106b29190613916565b60405180910390f35b3480156106c757600080fd5b506106d0611cd0565b005b3480156106de57600080fd5b506106f960048036038101906106f491906134a1565b611d05565b005b34801561070757600080fd5b50610722600480360381019061071d91906139b7565b611d27565b005b34801561073057600080fd5b50610739611e32565b005b34801561074757600080fd5b50610750611e67565b60405161075d9190613238565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190613134565b611e71565b005b6107a960048036038101906107a49190613a98565b611e83565b005b3480156107b757600080fd5b506107c0611ef6565b6040516107cd91906130dc565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613134565b611f88565b60405161080a9190613b70565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613134565b611ff2565b60405161084791906130dc565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613b8b565b612140565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613bb8565b612165565b6040516108ad9190613028565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613bf8565b6121f9565b005b3480156108eb57600080fd5b506108f46122c6565b005b34801561090257600080fd5b5061091d6004803603810190610918919061371c565b6122fb565b005b34801561092b57600080fd5b5061094660048036038101906109419190613134565b61237f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109e990613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590613c67565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b5050505050905090565b6000610a7782612391565b610aad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af682611435565b90508073ffffffffffffffffffffffffffffffffffffffff16610b176123f0565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a57610b4381610b3e6123f0565b612165565b610b79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060600e8054610c3e90613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90613c67565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b5050505050905090565b6000610ccb6123f8565b6001546000540303905090565b6000610ce382612401565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d56846124cf565b91509150610d6c8187610d676123f0565b6124f6565b610db857610d8186610d7c6123f0565b612165565b610db7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2c868686600161253a565b8015610e3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0585610ee1888887612540565b7c020000000000000000000000000000000000000000000000000000000017612568565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8d576000600185019050600060046000838152602001908152602001600020541415610f8b576000548114610f8a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff58686866001612593565b505050505050565b6000600a60009054906101000a900460ff16905090565b80600c54600182108061102657508082115b1561105d576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000cf82611087610cc1565b6110919190613cc8565b11156110c9576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8280600b546110d89190613d1e565b341015611111576040517f094701c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115611124576111236132a6565b5b600a60009054906101000a900460ff166002811115611146576111456132a6565b5b1461117d576040517fde89b3c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61118e611188612599565b856125a1565b611196612599565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885856040516111db9190613238565b60405180910390a250505050565b6111f16125bf565b60026009541415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613dc4565b60405180910390fd5b600260098190555060006112496119e9565b73ffffffffffffffffffffffffffffffffffffffff164760405161126c90613e15565b60006040518083038185875af1925050503d80600081146112a9576040519150601f19603f3d011682016040523d82523d6000602084013e6112ae565b606091505b50509050806112e9576040517f0feba81d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600981905550565b61130f83838360405180602001604052806000815250611e83565b505050565b6000600f54905090565b60007f00000000000000000000000000000000000000000000000000000000000000cf905090565b61134e6125bf565b80600d9080519060200190611364929190612e82565b5050565b6000600c54905090565b6060600083839050905060008167ffffffffffffffff81111561139857611397613376565b5b6040519080825280602002602001820160405280156113d157816020015b6113be612f08565b8152602001906001900390816113b65790505b50905060005b828114611429576114008686838181106113f4576113f3613e2a565b5b90506020020135611f88565b82828151811061141357611412613e2a565b5b60200260200101819052508060010190506113d7565b50809250505092915050565b600061144082612401565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114af576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115086125bf565b611512600061263d565b565b82600c54600182108061152657508082115b1561155d576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000cf82611587610cc1565b6115919190613cc8565b11156115c9576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8480600b546115d89190613d1e565b341015611611576040517f094701c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016002811115611625576116246132a6565b5b600a60009054906101000a900460ff166002811115611647576116466132a6565b5b1461167e576040517f016c2aa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6011600061168a612599565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611709576040517f538c047d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611713612599565b6040516020016117239190613ea1565b604051602081830303815290604052805190602001209050611789868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612703565b6117bf576040517faf227c3700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601160006117cd612599565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061182f611829612599565b886125a1565b611837612599565b73ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858860405161187c9190613238565b60405180910390a250505050505050565b6118956125bf565b80600f8190555050565b606060008060006118af85611447565b905060008167ffffffffffffffff8111156118cd576118cc613376565b5b6040519080825280602002602001820160405280156118fb5781602001602082028036833780820191505090505b509050611906612f08565b60006119106123f8565b90505b8386146119db576119238161271a565b9150816040015115611934576119d0565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461197457816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119cf57808387806001019850815181106119c2576119c1613e2a565b5b6020026020010181815250505b5b806001019050611913565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601060009054906101000a900460ff16905090565b606060038054611a3990613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6590613c67565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b6060818310611af7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b02612745565b9050611b0c6123f8565b851015611b1e57611b1b6123f8565b94505b80841115611b2a578093505b6000611b3587611447565b905084861015611b58576000868603905081811015611b52578091505b50611b5d565b600090505b60008167ffffffffffffffff811115611b7957611b78613376565b5b604051908082528060200260200182016040528015611ba75781602001602082028036833780820191505090505b5090506000821415611bbf5780945050505050611cc9565b6000611bca88611f88565b905060008160400151611bdf57816000015190505b60008990505b888114158015611bf55750848714155b15611cbb57611c038161271a565b9250826040015115611c1457611cb0565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c5457826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611caf5780848880600101995081518110611ca257611ca1613e2a565b5b6020026020010181815250505b5b806001019050611be5565b508583528296505050505050505b9392505050565b611cd86125bf565b6001600a60006101000a81548160ff02191690836002811115611cfe57611cfd6132a6565b5b0217905550565b611d0d6125bf565b80600e9080519060200190611d23929190612e82565b5050565b8060076000611d346123f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611de16123f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e269190613028565b60405180910390a35050565b611e3a6125bf565b6002600a60006101000a81548160ff02191690836002811115611e6057611e5f6132a6565b5b0217905550565b6000600b54905090565b611e796125bf565b80600c8190555050565b611e8e848484610cd8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ef057611eb98484848461274e565b611eef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611f0590613c67565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3190613c67565b8015611f7e5780601f10611f5357610100808354040283529160200191611f7e565b820191906000526020600020905b815481529060010190602001808311611f6157829003601f168201915b5050505050905090565b611f90612f08565b611f98612f08565b611fa06123f8565b831080611fb45750611fb0612745565b8310155b15611fc25780915050611fed565b611fcb8361271a565b9050806040015115611fe05780915050611fed565b611fe9836128ae565b9150505b919050565b6060611ffd82612391565b612033576040517f7ad113c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060009054906101000a900460ff16151514156120e157600d805461205c90613c67565b80601f016020809104026020016040519081016040528092919081815260200182805461208890613c67565b80156120d55780601f106120aa576101008083540402835291602001916120d5565b820191906000526020600020905b8154815290600101906020018083116120b857829003601f168201915b5050505050905061213b565b60006120eb6128ce565b51116121065760405180602001604052806000815250612138565b61210e6128ce565b61211783612960565b604051602001612128929190613f44565b6040516020818303038152906040525b90505b919050565b6121486125bf565b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c54600182108061220b57508082115b15612242576040517f1d94419200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000cf8261226c610cc1565b6122769190613cc8565b11156122ae576040517fc97cb40e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b66125bf565b6122c083856125a1565b50505050565b6122ce6125bf565b6000600a60006101000a81548160ff021916908360028111156122f4576122f36132a6565b5b0217905550565b6123036125bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613fe5565b60405180910390fd5b61237c8161263d565b50565b6123876125bf565b80600b8190555050565b60008161239c6123f8565b111580156123ab575060005482105b80156123e9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806124106123f8565b11612498576000548110156124975760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612495575b600081141561248b576004600083600190039350838152602001908152602001600020549050612460565b80925050506124ca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612557868684612ac1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6125bb828260405180602001604052806000815250612aca565b5050565b6125c7612599565b73ffffffffffffffffffffffffffffffffffffffff166125e56119e9565b73ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290614051565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826127108584612b67565b1490509392505050565b612722612f08565b61273e6004600084815260200190815260200160002054612bbd565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127746123f0565b8786866040518563ffffffff1660e01b815260040161279694939291906140c6565b602060405180830381600087803b1580156127b057600080fd5b505af19250505080156127e157506040513d601f19601f820116820180604052508101906127de9190614127565b60015b61285b573d8060008114612811576040519150601f19603f3d011682016040523d82523d6000602084013e612816565b606091505b50600081511415612853576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6128b6612f08565b6128c76128c283612401565b612bbd565b9050919050565b6060600e80546128dd90613c67565b80601f016020809104026020016040519081016040528092919081815260200182805461290990613c67565b80156129565780601f1061292b57610100808354040283529160200191612956565b820191906000526020600020905b81548152906001019060200180831161293957829003601f168201915b5050505050905090565b606060008214156129a8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612abc565b600082905060005b600082146129da5780806129c390614154565b915050600a826129d391906141cc565b91506129b0565b60008167ffffffffffffffff8111156129f6576129f5613376565b5b6040519080825280601f01601f191660200182016040528015612a285781602001600182028036833780820191505090505b5090505b60008514612ab557600182612a4191906141fd565b9150600a85612a509190614231565b6030612a5c9190613cc8565b60f81b818381518110612a7257612a71613e2a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aae91906141cc565b9450612a2c565b8093505050505b919050565b60009392505050565b612ad48383612c73565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b6257600080549050600083820390505b612b14600086838060010194508661274e565b612b4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b01578160005414612b5f57600080fd5b50505b505050565b60008082905060005b8451811015612bb257612b9d82868381518110612b9057612b8f613e2a565b5b6020026020010151612e30565b91508080612baa90614154565b915050612b70565b508091505092915050565b612bc5612f08565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612cb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cc1600084838561253a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d3883612d296000866000612540565b612d3285612e5b565b17612568565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dd957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d9e565b506000821415612e15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e2b6000848385612593565b505050565b6000818310612e4857612e438284612e6b565b612e53565b612e528383612e6b565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e8e90613c67565b90600052602060002090601f016020900481019282612eb05760008555612ef7565b82601f10612ec957805160ff1916838001178555612ef7565b82800160010185558215612ef7579182015b82811115612ef6578251825591602001919060010190612edb565b5b509050612f049190612f57565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f70576000816000905550600101612f58565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fbd81612f88565b8114612fc857600080fd5b50565b600081359050612fda81612fb4565b92915050565b600060208284031215612ff657612ff5612f7e565b5b600061300484828501612fcb565b91505092915050565b60008115159050919050565b6130228161300d565b82525050565b600060208201905061303d6000830184613019565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561307d578082015181840152602081019050613062565b8381111561308c576000848401525b50505050565b6000601f19601f8301169050919050565b60006130ae82613043565b6130b8818561304e565b93506130c881856020860161305f565b6130d181613092565b840191505092915050565b600060208201905081810360008301526130f681846130a3565b905092915050565b6000819050919050565b613111816130fe565b811461311c57600080fd5b50565b60008135905061312e81613108565b92915050565b60006020828403121561314a57613149612f7e565b5b60006131588482850161311f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061318c82613161565b9050919050565b61319c81613181565b82525050565b60006020820190506131b76000830184613193565b92915050565b6131c681613181565b81146131d157600080fd5b50565b6000813590506131e3816131bd565b92915050565b60008060408385031215613200576131ff612f7e565b5b600061320e858286016131d4565b925050602061321f8582860161311f565b9150509250929050565b613232816130fe565b82525050565b600060208201905061324d6000830184613229565b92915050565b60008060006060848603121561326c5761326b612f7e565b5b600061327a868287016131d4565b935050602061328b868287016131d4565b925050604061329c8682870161311f565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106132e6576132e56132a6565b5b50565b60008190506132f7826132d5565b919050565b6000613307826132e9565b9050919050565b613317816132fc565b82525050565b6000602082019050613332600083018461330e565b92915050565b6000819050919050565b61334b81613338565b82525050565b60006020820190506133666000830184613342565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ae82613092565b810181811067ffffffffffffffff821117156133cd576133cc613376565b5b80604052505050565b60006133e0612f74565b90506133ec82826133a5565b919050565b600067ffffffffffffffff82111561340c5761340b613376565b5b61341582613092565b9050602081019050919050565b82818337600083830152505050565b600061344461343f846133f1565b6133d6565b9050828152602081018484840111156134605761345f613371565b5b61346b848285613422565b509392505050565b600082601f8301126134885761348761336c565b5b8135613498848260208601613431565b91505092915050565b6000602082840312156134b7576134b6612f7e565b5b600082013567ffffffffffffffff8111156134d5576134d4612f83565b5b6134e184828501613473565b91505092915050565b600080fd5b600080fd5b60008083601f84011261350a5761350961336c565b5b8235905067ffffffffffffffff811115613527576135266134ea565b5b602083019150836020820283011115613543576135426134ef565b5b9250929050565b6000806020838503121561356157613560612f7e565b5b600083013567ffffffffffffffff81111561357f5761357e612f83565b5b61358b858286016134f4565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135cc81613181565b82525050565b600067ffffffffffffffff82169050919050565b6135ef816135d2565b82525050565b6135fe8161300d565b82525050565b600062ffffff82169050919050565b61361c81613604565b82525050565b60808201600082015161363860008501826135c3565b50602082015161364b60208501826135e6565b50604082015161365e60408501826135f5565b5060608201516136716060850182613613565b50505050565b60006136838383613622565b60808301905092915050565b6000602082019050919050565b60006136a782613597565b6136b181856135a2565b93506136bc836135b3565b8060005b838110156136ed5781516136d48882613677565b97506136df8361368f565b9250506001810190506136c0565b5085935050505092915050565b60006020820190508181036000830152613714818461369c565b905092915050565b60006020828403121561373257613731612f7e565b5b6000613740848285016131d4565b91505092915050565b60008083601f84011261375f5761375e61336c565b5b8235905067ffffffffffffffff81111561377c5761377b6134ea565b5b602083019150836020820283011115613798576137976134ef565b5b9250929050565b6000806000604084860312156137b8576137b7612f7e565b5b60006137c68682870161311f565b935050602084013567ffffffffffffffff8111156137e7576137e6612f83565b5b6137f386828701613749565b92509250509250925092565b61380881613338565b811461381357600080fd5b50565b600081359050613825816137ff565b92915050565b60006020828403121561384157613840612f7e565b5b600061384f84828501613816565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61388d816130fe565b82525050565b600061389f8383613884565b60208301905092915050565b6000602082019050919050565b60006138c382613858565b6138cd8185613863565b93506138d883613874565b8060005b838110156139095781516138f08882613893565b97506138fb836138ab565b9250506001810190506138dc565b5085935050505092915050565b6000602082019050818103600083015261393081846138b8565b905092915050565b60008060006060848603121561395157613950612f7e565b5b600061395f868287016131d4565b93505060206139708682870161311f565b92505060406139818682870161311f565b9150509250925092565b6139948161300d565b811461399f57600080fd5b50565b6000813590506139b18161398b565b92915050565b600080604083850312156139ce576139cd612f7e565b5b60006139dc858286016131d4565b92505060206139ed858286016139a2565b9150509250929050565b600067ffffffffffffffff821115613a1257613a11613376565b5b613a1b82613092565b9050602081019050919050565b6000613a3b613a36846139f7565b6133d6565b905082815260208101848484011115613a5757613a56613371565b5b613a62848285613422565b509392505050565b600082601f830112613a7f57613a7e61336c565b5b8135613a8f848260208601613a28565b91505092915050565b60008060008060808587031215613ab257613ab1612f7e565b5b6000613ac0878288016131d4565b9450506020613ad1878288016131d4565b9350506040613ae28782880161311f565b925050606085013567ffffffffffffffff811115613b0357613b02612f83565b5b613b0f87828801613a6a565b91505092959194509250565b608082016000820151613b3160008501826135c3565b506020820151613b4460208501826135e6565b506040820151613b5760408501826135f5565b506060820151613b6a6060850182613613565b50505050565b6000608082019050613b856000830184613b1b565b92915050565b600060208284031215613ba157613ba0612f7e565b5b6000613baf848285016139a2565b91505092915050565b60008060408385031215613bcf57613bce612f7e565b5b6000613bdd858286016131d4565b9250506020613bee858286016131d4565b9150509250929050565b60008060408385031215613c0f57613c0e612f7e565b5b6000613c1d8582860161311f565b9250506020613c2e858286016131d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7f57607f821691505b60208210811415613c9357613c92613c38565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd3826130fe565b9150613cde836130fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1357613d12613c99565b5b828201905092915050565b6000613d29826130fe565b9150613d34836130fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6d57613d6c613c99565b5b828202905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613dae601f8361304e565b9150613db982613d78565b602082019050919050565b60006020820190508181036000830152613ddd81613da1565b9050919050565b600081905092915050565b50565b6000613dff600083613de4565b9150613e0a82613def565b600082019050919050565b6000613e2082613df2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b6000613e7182613e59565b9050919050565b6000613e8382613e66565b9050919050565b613e9b613e9682613181565b613e78565b82525050565b6000613ead8284613e8a565b60148201915081905092915050565b600081905092915050565b6000613ed282613043565b613edc8185613ebc565b9350613eec81856020860161305f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613f2e600583613ebc565b9150613f3982613ef8565b600582019050919050565b6000613f508285613ec7565b9150613f5c8284613ec7565b9150613f6782613f21565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fcf60268361304e565b9150613fda82613f73565b604082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061403b60208361304e565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061409882614071565b6140a2818561407c565b93506140b281856020860161305f565b6140bb81613092565b840191505092915050565b60006080820190506140db6000830187613193565b6140e86020830186613193565b6140f56040830185613229565b8181036060830152614107818461408d565b905095945050505050565b60008151905061412181612fb4565b92915050565b60006020828403121561413d5761413c612f7e565b5b600061414b84828501614112565b91505092915050565b600061415f826130fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419257614191613c99565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141d7826130fe565b91506141e2836130fe565b9250826141f2576141f161419d565b5b828204905092915050565b6000614208826130fe565b9150614213836130fe565b92508282101561422657614225613c99565b5b828203905092915050565b600061423c826130fe565b9150614247836130fe565b9250826142575761425661419d565b5b82820690509291505056fea2646970667358221220eff215ebc7dd86105b5ffaaf095ab87e1f94634c08b84559313121ed474f696464736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000007c5850872380000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000845786f7269636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045249434b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569647769706e787665363370686b686c7a6d6c3432796d697270716b35346d6d366f787779656c6a65676d763462757466697870612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : nftName (string): Exoricks
Arg [1] : nftSymbol (string): RICK
Arg [2] : baseUri (string): ipfs://bafybeidwipnxve63phkhlzml42ymirpqk54mm6oxwyeljegmv4butfixpa/
Arg [3] : maxSupply (uint256): 207
Arg [4] : mintPrice (uint256): 35000000000000000
Arg [5] : maxMintAmountPerTx (uint256): 3

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000cf
Arg [4] : 000000000000000000000000000000000000000000000000007c585087238000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 45786f7269636b73000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 5249434b00000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [11] : 697066733a2f2f62616679626569647769706e787665363370686b686c7a6d6c
Arg [12] : 3432796d697270716b35346d6d366f787779656c6a65676d7634627574666978
Arg [13] : 70612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

78446:6063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35978:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36880:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43371:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42804:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83128:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32631:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47010:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82596:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80967:391;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81588:232;;;;;;;;;;;;;:::i;:::-;;49931:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83228:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82696:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84028:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82892:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73201:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38273:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33815:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16757:103;;;;;;;;;;;;;:::i;:::-;;80174:785;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84305:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77077:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83328:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37056:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74117:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83447:100;;;;;;;;;;;;;:::i;:::-;;84198:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43929:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83555:94;;;;;;;;;;;;;:::i;:::-;;82794:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83860:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50722:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83008:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72614:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81828:495;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84418:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44320:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81366:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83657:86;;;;;;;;;;;;;:::i;:::-;;17015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83751:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35978:639;36063:4;36402:10;36387:25;;:11;:25;;;;:102;;;;36479:10;36464:25;;:11;:25;;;;36387:102;:179;;;;36556:10;36541:25;;:11;:25;;;;36387:179;36367:199;;35978:639;;;:::o;36880:100::-;36934:13;36967:5;36960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36880:100;:::o;43371:218::-;43447:7;43472:16;43480:7;43472;:16::i;:::-;43467:64;;43497:34;;;;;;;;;;;;;;43467:64;43551:15;:24;43567:7;43551:24;;;;;;;;;;;:30;;;;;;;;;;;;43544:37;;43371:218;;;:::o;42804:408::-;42893:13;42909:16;42917:7;42909;:16::i;:::-;42893:32;;42965:5;42942:28;;:19;:17;:19::i;:::-;:28;;;42938:175;;42990:44;43007:5;43014:19;:17;:19::i;:::-;42990:16;:44::i;:::-;42985:128;;43062:35;;;;;;;;;;;;;;42985:128;42938:175;43158:2;43125:15;:24;43141:7;43125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43196:7;43192:2;43176:28;;43185:5;43176:28;;;;;;;;;;;;42882:330;42804:408;;:::o;83128:92::-;83171:13;83204:8;83197:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83128:92;:::o;32631:323::-;32692:7;32920:15;:13;:15::i;:::-;32905:12;;32889:13;;:28;:46;32882:53;;32631:323;:::o;47010:2825::-;47152:27;47182;47201:7;47182:18;:27::i;:::-;47152:57;;47267:4;47226:45;;47242:19;47226:45;;;47222:86;;47280:28;;;;;;;;;;;;;;47222:86;47322:27;47351:23;47378:35;47405:7;47378:26;:35::i;:::-;47321:92;;;;47513:68;47538:15;47555:4;47561:19;:17;:19::i;:::-;47513:24;:68::i;:::-;47508:180;;47601:43;47618:4;47624:19;:17;:19::i;:::-;47601:16;:43::i;:::-;47596:92;;47653:35;;;;;;;;;;;;;;47596:92;47508:180;47719:1;47705:16;;:2;:16;;;47701:52;;;47730:23;;;;;;;;;;;;;;47701:52;47766:43;47788:4;47794:2;47798:7;47807:1;47766:21;:43::i;:::-;47902:15;47899:160;;;48042:1;48021:19;48014:30;47899:160;48439:18;:24;48458:4;48439:24;;;;;;;;;;;;;;;;48437:26;;;;;;;;;;;;48508:18;:22;48527:2;48508:22;;;;;;;;;;;;;;;;48506:24;;;;;;;;;;;48830:146;48867:2;48916:45;48931:4;48937:2;48941:19;48916:14;:45::i;:::-;29030:8;48888:73;48830:18;:146::i;:::-;48801:17;:26;48819:7;48801:26;;;;;;;;;;;:175;;;;49147:1;29030:8;49096:19;:47;:52;49092:627;;;49169:19;49201:1;49191:7;:11;49169:33;;49358:1;49324:17;:30;49342:11;49324:30;;;;;;;;;;;;:35;49320:384;;;49462:13;;49447:11;:28;49443:242;;49642:19;49609:17;:30;49627:11;49609:30;;;;;;;;;;;:52;;;;49443:242;49320:384;49150:569;49092:627;49766:7;49762:2;49747:27;;49756:4;49747:27;;;;;;;;;;;;49785:42;49806:4;49812:2;49816:7;49825:1;49785:20;:42::i;:::-;47141:2694;;;47010:2825;;;:::o;82596:92::-;82641:9;82670:10;;;;;;;;;;;82663:17;;82596:92;:::o;80967:391::-;81065:11;81078:19;;79730:1;79716:11;:15;:47;;;;79749:14;79735:11;:28;79716:47;79712:109;;;79785:36;;;;;;;;;;;;;;79712:109;79868:10;79854:11;79838:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;79834:102;;;79900:36;;;;;;;;;;;;;;79834:102;81128:11:::1;80056;80043:10;;:24;;;;:::i;:::-;80031:9;:36;80027:98;;;80089:36;;;;;;;;;;;;;;80027:98;81175:20:::2;81161:34:::0;::::2;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:34;;;;;;;;:::i;:::-;;;81157:95;;81217:35;;;;;;;;;;;;;;81157:95;81265:36;81275:12;:10;:12::i;:::-;81289:11;81265:9;:36::i;:::-;81324:12;:10;:12::i;:::-;81319:31;;;81338:11;81319:31;;;;;;:::i;:::-;;;;;;;;79949:1:::1;80967:391:::0;;;:::o;81588:232::-;15995:13;:11;:13::i;:::-;13034:1:::1;13632:7;;:19;;13624:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13034:1;13765:7;:18;;;;81650:12:::2;81676:7;:5;:7::i;:::-;81668:21;;81697;81668:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81649:98;;;81763:7;81758:54;;81779:33;;;;;;;;;;;;;;81758:54;81638:182;12990:1:::1;13944:7;:22;;;;81588:232::o:0;49931:193::-;50077:39;50094:4;50100:2;50104:7;50077:39;;;;;;;;;;;;:16;:39::i;:::-;49931:193;;;:::o;83228:92::-;83274:7;83301:11;;83294:18;;83228:92;:::o;82696:90::-;82741:7;82768:10;82761:17;;82696:90;:::o;84028:162::-;15995:13;:11;:13::i;:::-;84164:18:::1;84143;:39;;;;;;;;;;;;:::i;:::-;;84028:162:::0;:::o;82892:108::-;82946:7;82973:19;;82966:26;;82892:108;:::o;73201:528::-;73345:23;73411:22;73436:8;;:15;;73411:40;;73466:34;73524:14;73503:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;73466:73;;73559:9;73554:125;73575:14;73570:1;:19;73554:125;;73631:32;73651:8;;73660:1;73651:11;;;;;;;:::i;:::-;;;;;;;;73631:19;:32::i;:::-;73615:10;73626:1;73615:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;73591:3;;;;;73554:125;;;;73700:10;73693:17;;;;73201:528;;;;:::o;38273:152::-;38345:7;38388:27;38407:7;38388:18;:27::i;:::-;38365:52;;38273:152;;;:::o;33815:233::-;33887:7;33928:1;33911:19;;:5;:19;;;33907:60;;;33939:28;;;;;;;;;;;;;;33907:60;27974:13;33985:18;:25;34004:5;33985:25;;;;;;;;;;;;;;;;:55;33978:62;;33815:233;;;:::o;16757:103::-;15995:13;:11;:13::i;:::-;16822:30:::1;16849:1;16822:18;:30::i;:::-;16757:103::o:0;80174:785::-;80308:11;80321:19;;79730:1;79716:11;:15;:47;;;;79749:14;79735:11;:28;79716:47;79712:109;;;79785:36;;;;;;;;;;;;;;79712:109;79868:10;79854:11;79838:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;79834:102;;;79900:36;;;;;;;;;;;;;;79834:102;80371:11:::1;80056;80043:10;;:24;;;;:::i;:::-;80031:9;:36;80027:98;;;80089:36;;;;;;;;;;;;;;80027:98;80418:23:::2;80404:37;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;80400:101;;80463:38;;;;;;;;;;;;;;80400:101;80518:17;:31;80536:12;:10;:12::i;:::-;80518:31;;;;;;;;;;;;;;;;;;;;;;;;;80514:97;;;80571:40;;;;;;;;;;;;;;80514:97;80624:12;80666;:10;:12::i;:::-;80649:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;80639:41;;;;;;80624:56;;80698:51;80717:12;;80698:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80731:11;;80744:4;80698:18;:51::i;:::-;80693:109;;80771:31;;;;;;;;;;;;;;80693:109;80849:4;80815:17;:31;80833:12;:10;:12::i;:::-;80815:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;80866:36;80876:12;:10;:12::i;:::-;80890:11;80866:9;:36::i;:::-;80925:12;:10;:12::i;:::-;80920:31;;;80939:11;80920:31;;;;;;:::i;:::-;;;;;;;;80389:570;79949:1:::1;80174:785:::0;;;;;:::o;84305:105::-;15995:13;:11;:13::i;:::-;84391:11:::1;84377;:25;;;;84305:105:::0;:::o;77077:900::-;77155:16;77209:19;77243:25;77283:22;77308:16;77318:5;77308:9;:16::i;:::-;77283:41;;77339:25;77381:14;77367:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77339:57;;77411:31;;:::i;:::-;77462:9;77474:15;:13;:15::i;:::-;77462:27;;77457:472;77506:14;77491:11;:29;77457:472;;77558:15;77571:1;77558:12;:15::i;:::-;77546:27;;77596:9;:16;;;77592:73;;;77637:8;;77592:73;77713:1;77687:28;;:9;:14;;;:28;;;77683:111;;77760:9;:14;;;77740:34;;77683:111;77837:5;77816:26;;:17;:26;;;77812:102;;;77893:1;77867:8;77876:13;;;;;;77867:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;77812:102;77457:472;77522:3;;;;;77457:472;;;;77950:8;77943:15;;;;;;;77077:900;;;:::o;16109:87::-;16155:7;16182:6;;;;;;;;;;;16175:13;;16109:87;:::o;83328:85::-;83372:4;83396:9;;;;;;;;;;;83389:16;;83328:85;:::o;37056:104::-;37112:13;37145:7;37138:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37056:104;:::o;74117:2513::-;74260:16;74327:4;74318:5;:13;74314:45;;74340:19;;;;;;;;;;;;;;74314:45;74374:19;74408:17;74428:14;:12;:14::i;:::-;74408:34;;74528:15;:13;:15::i;:::-;74520:5;:23;74516:87;;;74572:15;:13;:15::i;:::-;74564:23;;74516:87;74679:9;74672:4;:16;74668:73;;;74716:9;74709:16;;74668:73;74755:25;74783:16;74793:5;74783:9;:16::i;:::-;74755:44;;74977:4;74969:5;:12;74965:278;;;75002:19;75031:5;75024:4;:12;75002:34;;75073:17;75059:11;:31;75055:111;;;75135:11;75115:31;;75055:111;74983:198;74965:278;;;75226:1;75206:21;;74965:278;75257:25;75299:17;75285:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75257:60;;75357:1;75336:17;:22;75332:78;;;75386:8;75379:15;;;;;;;;75332:78;75554:31;75588:26;75608:5;75588:19;:26::i;:::-;75554:60;;75629:25;75874:9;:16;;;75869:92;;75931:9;:14;;;75911:34;;75869:92;75980:9;75992:5;75980:17;;75975:478;76004:4;75999:1;:9;;:45;;;;;76027:17;76012:11;:32;;75999:45;75975:478;;;76082:15;76095:1;76082:12;:15::i;:::-;76070:27;;76120:9;:16;;;76116:73;;;76161:8;;76116:73;76237:1;76211:28;;:9;:14;;;:28;;;76207:111;;76284:9;:14;;;76264:34;;76207:111;76361:5;76340:26;;:17;:26;;;76336:102;;;76417:1;76391:8;76400:13;;;;;;76391:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;76336:102;75975:478;76046:3;;;;;75975:478;;;;76555:11;76545:8;76538:29;76603:8;76596:15;;;;;;;;74117:2513;;;;;;:::o;83447:100::-;15995:13;:11;:13::i;:::-;83516:23:::1;83503:10;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;83447:100::o:0;84198:99::-;15995:13;:11;:13::i;:::-;84281:8:::1;84270;:19;;;;;;;;;;;;:::i;:::-;;84198:99:::0;:::o;43929:234::-;44076:8;44024:18;:39;44043:19;:17;:19::i;:::-;44024:39;;;;;;;;;;;;;;;:49;44064:8;44024:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44136:8;44100:55;;44115:19;:17;:19::i;:::-;44100:55;;;44146:8;44100:55;;;;;;:::i;:::-;;;;;;;;43929:234;;:::o;83555:94::-;15995:13;:11;:13::i;:::-;83621:20:::1;83608:10;;:33;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;83555:94::o:0;82794:90::-;82839:7;82866:10;;82859:17;;82794:90;:::o;83860:160::-;15995:13;:11;:13::i;:::-;83993:19:::1;83971;:41;;;;83860:160:::0;:::o;50722:407::-;50897:31;50910:4;50916:2;50920:7;50897:12;:31::i;:::-;50961:1;50943:2;:14;;;:19;50939:183;;50982:56;51013:4;51019:2;51023:7;51032:5;50982:30;:56::i;:::-;50977:145;;51066:40;;;;;;;;;;;;;;50977:145;50939:183;50722:407;;;;:::o;83008:112::-;83061:13;83094:18;83087:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83008:112;:::o;72614:428::-;72698:21;;:::i;:::-;72732:31;;:::i;:::-;72788:15;:13;:15::i;:::-;72778:7;:25;:54;;;;72818:14;:12;:14::i;:::-;72807:7;:25;;72778:54;72774:103;;;72856:9;72849:16;;;;;72774:103;72899:21;72912:7;72899:12;:21::i;:::-;72887:33;;72935:9;:16;;;72931:65;;;72975:9;72968:16;;;;;72931:65;73013:21;73026:7;73013:12;:21::i;:::-;73006:28;;;72614:428;;;;:::o;81828:495::-;81947:13;81983:17;81991:8;81983:7;:17::i;:::-;81978:66;;82009:35;;;;;;;;;;;;;;81978:66;82074:5;82061:18;;:9;;;;;;;;;;;:18;;;82057:49;;;82088:18;82081:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82057:49;82166:1;82145:10;:8;:10::i;:::-;82139:24;:28;:176;;;;;;;;;;;;;;;;;82233:10;:8;:10::i;:::-;82245:19;:8;:17;:19::i;:::-;82216:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82139:176;82119:196;;81828:495;;;;:::o;84418:88::-;15995:13;:11;:13::i;:::-;84492:6:::1;84480:9;;:18;;;;;;;;;;;;;;;;;;84418:88:::0;:::o;44320:164::-;44417:4;44441:18;:25;44460:5;44441:25;;;;;;;;;;;;;;;:35;44467:8;44441:35;;;;;;;;;;;;;;;;;;;;;;;;;44434:42;;44320:164;;;;:::o;81366:214::-;81470:11;81483:19;;79730:1;79716:11;:15;:47;;;;79749:14;79735:11;:28;79716:47;79712:109;;;79785:36;;;;;;;;;;;;;;79712:109;79868:10;79854:11;79838:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;79834:102;;;79900:36;;;;;;;;;;;;;;79834:102;15995:13:::1;:11;:13::i;:::-;81539:33:::2;81549:9;81560:11;81539:9;:33::i;:::-;81366:214:::0;;;;:::o;83657:86::-;15995:13;:11;:13::i;:::-;83719:16:::1;83706:10;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;83657:86::o:0;17015:201::-;15995:13;:11;:13::i;:::-;17124:1:::1;17104:22;;:8;:22;;;;17096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17180:28;17199:8;17180:18;:28::i;:::-;17015:201:::0;:::o;83751:101::-;15995:13;:11;:13::i;:::-;83834:10:::1;83821;:23;;;;83751:101:::0;:::o;44742:282::-;44807:4;44863:7;44844:15;:13;:15::i;:::-;:26;;:66;;;;;44897:13;;44887:7;:23;44844:66;:153;;;;;44996:1;28750:8;44948:17;:26;44966:7;44948:26;;;;;;;;;;;;:44;:49;44844:153;44824:173;;44742:282;;;:::o;67050:105::-;67110:7;67137:10;67130:17;;67050:105;:::o;82448:114::-;82513:7;78774:1;82533:21;;82448:114;:::o;39428:1275::-;39495:7;39515:12;39530:7;39515:22;;39598:4;39579:15;:13;:15::i;:::-;:23;39575:1061;;39632:13;;39625:4;:20;39621:1015;;;39670:14;39687:17;:23;39705:4;39687:23;;;;;;;;;;;;39670:40;;39804:1;28750:8;39776:6;:24;:29;39772:845;;;40441:113;40458:1;40448:6;:11;40441:113;;;40501:17;:25;40519:6;;;;;;;40501:25;;;;;;;;;;;;40492:34;;40441:113;;;40587:6;40580:13;;;;;;39772:845;39647:989;39621:1015;39575:1061;40664:31;;;;;;;;;;;;;;39428:1275;;;;:::o;45905:485::-;46007:27;46036:23;46077:38;46118:15;:24;46134:7;46118:24;;;;;;;;;;;46077:65;;46295:18;46272:41;;46352:19;46346:26;46327:45;;46257:126;45905:485;;;:::o;45133:659::-;45282:11;45447:16;45440:5;45436:28;45427:37;;45607:16;45596:9;45592:32;45579:45;;45757:15;45746:9;45743:30;45735:5;45724:9;45721:20;45718:56;45708:66;;45133:659;;;;;:::o;51791:159::-;;;;;:::o;66359:311::-;66494:7;66514:16;29154:3;66540:19;:41;;66514:68;;29154:3;66608:31;66619:4;66625:2;66629:9;66608:10;:31::i;:::-;66600:40;;:62;;66593:69;;;66359:311;;;;;:::o;41251:450::-;41331:14;41499:16;41492:5;41488:28;41479:37;;41676:5;41662:11;41637:23;41633:41;41630:52;41623:5;41620:63;41610:73;;41251:450;;;;:::o;52615:158::-;;;;;:::o;14660:98::-;14713:7;14740:10;14733:17;;14660:98;:::o;60882:112::-;60959:27;60969:2;60973:8;60959:27;;;;;;;;;;;;:9;:27::i;:::-;60882:112;;:::o;16274:132::-;16349:12;:10;:12::i;:::-;16338:23;;:7;:5;:7::i;:::-;:23;;;16330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16274:132::o;17376:191::-;17450:16;17469:6;;;;;;;;;;;17450:25;;17495:8;17486:6;;:17;;;;;;;;;;;;;;;;;;17550:8;17519:40;;17540:8;17519:40;;;;;;;;;;;;17439:128;17376:191;:::o;3716:190::-;3841:4;3894;3865:25;3878:5;3885:4;3865:12;:25::i;:::-;:33;3858:40;;3716:190;;;;;:::o;38876:161::-;38944:21;;:::i;:::-;38985:44;39004:17;:24;39022:5;39004:24;;;;;;;;;;;;38985:18;:44::i;:::-;38978:51;;38876:161;;;:::o;32318:103::-;32373:7;32400:13;;32393:20;;32318:103;:::o;53213:716::-;53376:4;53422:2;53397:45;;;53443:19;:17;:19::i;:::-;53464:4;53470:7;53479:5;53397:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53393:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53697:1;53680:6;:13;:18;53676:235;;;53726:40;;;;;;;;;;;;;;53676:235;53869:6;53863:13;53854:6;53850:2;53846:15;53839:38;53393:529;53566:54;;;53556:64;;;:6;:64;;;;53549:71;;;53213:716;;;;;;:::o;38614:166::-;38684:21;;:::i;:::-;38725:47;38744:27;38763:7;38744:18;:27::i;:::-;38725:18;:47::i;:::-;38718:54;;38614:166;;;:::o;82331:109::-;82391:13;82424:8;82417:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82331:109;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;66060:147::-;66197:6;66060:147;;;;;:::o;60109:689::-;60240:19;60246:2;60250:8;60240:5;:19::i;:::-;60319:1;60301:2;:14;;;:19;60297:483;;60341:11;60355:13;;60341:27;;60387:13;60409:8;60403:3;:14;60387:30;;60436:233;60467:62;60506:1;60510:2;60514:7;;;;;;60523:5;60467:30;:62::i;:::-;60462:167;;60565:40;;;;;;;;;;;;;;60462:167;60664:3;60656:5;:11;60436:233;;60751:3;60734:13;;:20;60730:34;;60756:8;;;60730:34;60322:458;;60297:483;60109:689;;;:::o;4583:296::-;4666:7;4686:20;4709:4;4686:27;;4729:9;4724:118;4748:5;:12;4744:1;:16;4724:118;;;4797:33;4807:12;4821:5;4827:1;4821:8;;;;;;;;:::i;:::-;;;;;;;;4797:9;:33::i;:::-;4782:48;;4762:3;;;;;:::i;:::-;;;;4724:118;;;;4859:12;4852:19;;;4583:296;;;;:::o;40802:366::-;40868:31;;:::i;:::-;40945:6;40912:9;:14;;:41;;;;;;;;;;;28633:3;40998:6;:33;;40964:9;:24;;:68;;;;;;;;;;;41090:1;28750:8;41062:6;:24;:29;;41043:9;:16;;:48;;;;;;;;;;;29154:3;41131:6;:28;;41102:9;:19;;:58;;;;;;;;;;;40802:366;;;:::o;54391:2966::-;54464:20;54487:13;;54464:36;;54527:1;54515:8;:13;54511:44;;;54537:18;;;;;;;;;;;;;;54511:44;54568:61;54598:1;54602:2;54606:12;54620:8;54568:21;:61::i;:::-;55112:1;28112:2;55082:1;:26;;55081:32;55069:8;:45;55043:18;:22;55062:2;55043:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55391:139;55428:2;55482:33;55505:1;55509:2;55513:1;55482:14;:33::i;:::-;55449:30;55470:8;55449:20;:30::i;:::-;:66;55391:18;:139::i;:::-;55357:17;:31;55375:12;55357:31;;;;;;;;;;;:173;;;;55547:16;55578:11;55607:8;55592:12;:23;55578:37;;56128:16;56124:2;56120:25;56108:37;;56500:12;56460:8;56419:1;56357:25;56298:1;56237;56210:335;56871:1;56857:12;56853:20;56811:346;56912:3;56903:7;56900:16;56811:346;;57130:7;57120:8;57117:1;57090:25;57087:1;57084;57079:59;56965:1;56956:7;56952:15;56941:26;;56811:346;;;56815:77;57202:1;57190:8;:13;57186:45;;;57212:19;;;;;;;;;;;;;;57186:45;57264:3;57248:13;:19;;;;54817:2462;;57289:60;57318:1;57322:2;57326:12;57340:8;57289:20;:60::i;:::-;54453:2904;54391:2966;;:::o;10790:149::-;10853:7;10884:1;10880;:5;:51;;10911:20;10926:1;10929;10911:14;:20::i;:::-;10880:51;;;10888:20;10903:1;10906;10888:14;:20::i;:::-;10880:51;10873:58;;10790:149;;;;:::o;41803:324::-;41873:14;42106:1;42096:8;42093:15;42067:24;42063:46;42053:56;;41803:324;;;:::o;10947:268::-;11015:13;11122:1;11116:4;11109:15;11151:1;11145:4;11138:15;11192:4;11186;11176:21;11167:30;;10947:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:180::-;5963:77;5960:1;5953:88;6060:4;6057:1;6050:15;6084:4;6081:1;6074:15;6101:119;6188:1;6181:5;6178:12;6168:46;;6194:18;;:::i;:::-;6168:46;6101:119;:::o;6226:139::-;6277:7;6306:5;6295:16;;6312:47;6353:5;6312:47;:::i;:::-;6226:139;;;:::o;6371:::-;6433:9;6466:38;6498:5;6466:38;:::i;:::-;6453:51;;6371:139;;;:::o;6516:155::-;6615:49;6658:5;6615:49;:::i;:::-;6610:3;6603:62;6516:155;;:::o;6677:246::-;6782:4;6820:2;6809:9;6805:18;6797:26;;6833:83;6913:1;6902:9;6898:17;6889:6;6833:83;:::i;:::-;6677:246;;;;:::o;6929:77::-;6966:7;6995:5;6984:16;;6929:77;;;:::o;7012:118::-;7099:24;7117:5;7099:24;:::i;:::-;7094:3;7087:37;7012:118;;:::o;7136:222::-;7229:4;7267:2;7256:9;7252:18;7244:26;;7280:71;7348:1;7337:9;7333:17;7324:6;7280:71;:::i;:::-;7136:222;;;;:::o;7364:117::-;7473:1;7470;7463:12;7487:117;7596:1;7593;7586:12;7610:180;7658:77;7655:1;7648:88;7755:4;7752:1;7745:15;7779:4;7776:1;7769:15;7796:281;7879:27;7901:4;7879:27;:::i;:::-;7871:6;7867:40;8009:6;7997:10;7994:22;7973:18;7961:10;7958:34;7955:62;7952:88;;;8020:18;;:::i;:::-;7952:88;8060:10;8056:2;8049:22;7839:238;7796:281;;:::o;8083:129::-;8117:6;8144:20;;:::i;:::-;8134:30;;8173:33;8201:4;8193:6;8173:33;:::i;:::-;8083:129;;;:::o;8218:308::-;8280:4;8370:18;8362:6;8359:30;8356:56;;;8392:18;;:::i;:::-;8356:56;8430:29;8452:6;8430:29;:::i;:::-;8422:37;;8514:4;8508;8504:15;8496:23;;8218:308;;;:::o;8532:154::-;8616:6;8611:3;8606;8593:30;8678:1;8669:6;8664:3;8660:16;8653:27;8532:154;;;:::o;8692:412::-;8770:5;8795:66;8811:49;8853:6;8811:49;:::i;:::-;8795:66;:::i;:::-;8786:75;;8884:6;8877:5;8870:21;8922:4;8915:5;8911:16;8960:3;8951:6;8946:3;8942:16;8939:25;8936:112;;;8967:79;;:::i;:::-;8936:112;9057:41;9091:6;9086:3;9081;9057:41;:::i;:::-;8776:328;8692:412;;;;;:::o;9124:340::-;9180:5;9229:3;9222:4;9214:6;9210:17;9206:27;9196:122;;9237:79;;:::i;:::-;9196:122;9354:6;9341:20;9379:79;9454:3;9446:6;9439:4;9431:6;9427:17;9379:79;:::i;:::-;9370:88;;9186:278;9124:340;;;;:::o;9470:509::-;9539:6;9588:2;9576:9;9567:7;9563:23;9559:32;9556:119;;;9594:79;;:::i;:::-;9556:119;9742:1;9731:9;9727:17;9714:31;9772:18;9764:6;9761:30;9758:117;;;9794:79;;:::i;:::-;9758:117;9899:63;9954:7;9945:6;9934:9;9930:22;9899:63;:::i;:::-;9889:73;;9685:287;9470:509;;;;:::o;9985:117::-;10094:1;10091;10084:12;10108:117;10217:1;10214;10207:12;10248:568;10321:8;10331:6;10381:3;10374:4;10366:6;10362:17;10358:27;10348:122;;10389:79;;:::i;:::-;10348:122;10502:6;10489:20;10479:30;;10532:18;10524:6;10521:30;10518:117;;;10554:79;;:::i;:::-;10518:117;10668:4;10660:6;10656:17;10644:29;;10722:3;10714:4;10706:6;10702:17;10692:8;10688:32;10685:41;10682:128;;;10729:79;;:::i;:::-;10682:128;10248:568;;;;;:::o;10822:559::-;10908:6;10916;10965:2;10953:9;10944:7;10940:23;10936:32;10933:119;;;10971:79;;:::i;:::-;10933:119;11119:1;11108:9;11104:17;11091:31;11149:18;11141:6;11138:30;11135:117;;;11171:79;;:::i;:::-;11135:117;11284:80;11356:7;11347:6;11336:9;11332:22;11284:80;:::i;:::-;11266:98;;;;11062:312;10822:559;;;;;:::o;11387:145::-;11485:6;11519:5;11513:12;11503:22;;11387:145;;;:::o;11538:215::-;11668:11;11702:6;11697:3;11690:19;11742:4;11737:3;11733:14;11718:29;;11538:215;;;;:::o;11759:163::-;11857:4;11880:3;11872:11;;11910:4;11905:3;11901:14;11893:22;;11759:163;;;:::o;11928:108::-;12005:24;12023:5;12005:24;:::i;:::-;12000:3;11993:37;11928:108;;:::o;12042:101::-;12078:7;12118:18;12111:5;12107:30;12096:41;;12042:101;;;:::o;12149:105::-;12224:23;12241:5;12224:23;:::i;:::-;12219:3;12212:36;12149:105;;:::o;12260:99::-;12331:21;12346:5;12331:21;:::i;:::-;12326:3;12319:34;12260:99;;:::o;12365:91::-;12401:7;12441:8;12434:5;12430:20;12419:31;;12365:91;;;:::o;12462:105::-;12537:23;12554:5;12537:23;:::i;:::-;12532:3;12525:36;12462:105;;:::o;12645:864::-;12794:4;12789:3;12785:14;12881:4;12874:5;12870:16;12864:23;12900:63;12957:4;12952:3;12948:14;12934:12;12900:63;:::i;:::-;12809:164;13065:4;13058:5;13054:16;13048:23;13084:61;13139:4;13134:3;13130:14;13116:12;13084:61;:::i;:::-;12983:172;13239:4;13232:5;13228:16;13222:23;13258:57;13309:4;13304:3;13300:14;13286:12;13258:57;:::i;:::-;13165:160;13412:4;13405:5;13401:16;13395:23;13431:61;13486:4;13481:3;13477:14;13463:12;13431:61;:::i;:::-;13335:167;12763:746;12645:864;;:::o;13515:303::-;13646:10;13667:108;13771:3;13763:6;13667:108;:::i;:::-;13807:4;13802:3;13798:14;13784:28;;13515:303;;;;:::o;13824:144::-;13925:4;13957;13952:3;13948:14;13940:22;;13824:144;;;:::o;14050:980::-;14231:3;14260:85;14339:5;14260:85;:::i;:::-;14361:117;14471:6;14466:3;14361:117;:::i;:::-;14354:124;;14502:87;14583:5;14502:87;:::i;:::-;14612:7;14643:1;14628:377;14653:6;14650:1;14647:13;14628:377;;;14729:6;14723:13;14756:125;14877:3;14862:13;14756:125;:::i;:::-;14749:132;;14904:91;14988:6;14904:91;:::i;:::-;14894:101;;14688:317;14675:1;14672;14668:9;14663:14;;14628:377;;;14632:14;15021:3;15014:10;;14236:794;;;14050:980;;;;:::o;15036:497::-;15241:4;15279:2;15268:9;15264:18;15256:26;;15328:9;15322:4;15318:20;15314:1;15303:9;15299:17;15292:47;15356:170;15521:4;15512:6;15356:170;:::i;:::-;15348:178;;15036:497;;;;:::o;15539:329::-;15598:6;15647:2;15635:9;15626:7;15622:23;15618:32;15615:119;;;15653:79;;:::i;:::-;15615:119;15773:1;15798:53;15843:7;15834:6;15823:9;15819:22;15798:53;:::i;:::-;15788:63;;15744:117;15539:329;;;;:::o;15891:568::-;15964:8;15974:6;16024:3;16017:4;16009:6;16005:17;16001:27;15991:122;;16032:79;;:::i;:::-;15991:122;16145:6;16132:20;16122:30;;16175:18;16167:6;16164:30;16161:117;;;16197:79;;:::i;:::-;16161:117;16311:4;16303:6;16299:17;16287:29;;16365:3;16357:4;16349:6;16345:17;16335:8;16331:32;16328:41;16325:128;;;16372:79;;:::i;:::-;16325:128;15891:568;;;;;:::o;16465:704::-;16560:6;16568;16576;16625:2;16613:9;16604:7;16600:23;16596:32;16593:119;;;16631:79;;:::i;:::-;16593:119;16751:1;16776:53;16821:7;16812:6;16801:9;16797:22;16776:53;:::i;:::-;16766:63;;16722:117;16906:2;16895:9;16891:18;16878:32;16937:18;16929:6;16926:30;16923:117;;;16959:79;;:::i;:::-;16923:117;17072:80;17144:7;17135:6;17124:9;17120:22;17072:80;:::i;:::-;17054:98;;;;16849:313;16465:704;;;;;:::o;17175:122::-;17248:24;17266:5;17248:24;:::i;:::-;17241:5;17238:35;17228:63;;17287:1;17284;17277:12;17228:63;17175:122;:::o;17303:139::-;17349:5;17387:6;17374:20;17365:29;;17403:33;17430:5;17403:33;:::i;:::-;17303:139;;;;:::o;17448:329::-;17507:6;17556:2;17544:9;17535:7;17531:23;17527:32;17524:119;;;17562:79;;:::i;:::-;17524:119;17682:1;17707:53;17752:7;17743:6;17732:9;17728:22;17707:53;:::i;:::-;17697:63;;17653:117;17448:329;;;;:::o;17783:114::-;17850:6;17884:5;17878:12;17868:22;;17783:114;;;:::o;17903:184::-;18002:11;18036:6;18031:3;18024:19;18076:4;18071:3;18067:14;18052:29;;17903:184;;;;:::o;18093:132::-;18160:4;18183:3;18175:11;;18213:4;18208:3;18204:14;18196:22;;18093:132;;;:::o;18231:108::-;18308:24;18326:5;18308:24;:::i;:::-;18303:3;18296:37;18231:108;;:::o;18345:179::-;18414:10;18435:46;18477:3;18469:6;18435:46;:::i;:::-;18513:4;18508:3;18504:14;18490:28;;18345:179;;;;:::o;18530:113::-;18600:4;18632;18627:3;18623:14;18615:22;;18530:113;;;:::o;18679:732::-;18798:3;18827:54;18875:5;18827:54;:::i;:::-;18897:86;18976:6;18971:3;18897:86;:::i;:::-;18890:93;;19007:56;19057:5;19007:56;:::i;:::-;19086:7;19117:1;19102:284;19127:6;19124:1;19121:13;19102:284;;;19203:6;19197:13;19230:63;19289:3;19274:13;19230:63;:::i;:::-;19223:70;;19316:60;19369:6;19316:60;:::i;:::-;19306:70;;19162:224;19149:1;19146;19142:9;19137:14;;19102:284;;;19106:14;19402:3;19395:10;;18803:608;;;18679:732;;;;:::o;19417:373::-;19560:4;19598:2;19587:9;19583:18;19575:26;;19647:9;19641:4;19637:20;19633:1;19622:9;19618:17;19611:47;19675:108;19778:4;19769:6;19675:108;:::i;:::-;19667:116;;19417:373;;;;:::o;19796:619::-;19873:6;19881;19889;19938:2;19926:9;19917:7;19913:23;19909:32;19906:119;;;19944:79;;:::i;:::-;19906:119;20064:1;20089:53;20134:7;20125:6;20114:9;20110:22;20089:53;:::i;:::-;20079:63;;20035:117;20191:2;20217:53;20262:7;20253:6;20242:9;20238:22;20217:53;:::i;:::-;20207:63;;20162:118;20319:2;20345:53;20390:7;20381:6;20370:9;20366:22;20345:53;:::i;:::-;20335:63;;20290:118;19796:619;;;;;:::o;20421:116::-;20491:21;20506:5;20491:21;:::i;:::-;20484:5;20481:32;20471:60;;20527:1;20524;20517:12;20471:60;20421:116;:::o;20543:133::-;20586:5;20624:6;20611:20;20602:29;;20640:30;20664:5;20640:30;:::i;:::-;20543:133;;;;:::o;20682:468::-;20747:6;20755;20804:2;20792:9;20783:7;20779:23;20775:32;20772:119;;;20810:79;;:::i;:::-;20772:119;20930:1;20955:53;21000:7;20991:6;20980:9;20976:22;20955:53;:::i;:::-;20945:63;;20901:117;21057:2;21083:50;21125:7;21116:6;21105:9;21101:22;21083:50;:::i;:::-;21073:60;;21028:115;20682:468;;;;;:::o;21156:307::-;21217:4;21307:18;21299:6;21296:30;21293:56;;;21329:18;;:::i;:::-;21293:56;21367:29;21389:6;21367:29;:::i;:::-;21359:37;;21451:4;21445;21441:15;21433:23;;21156:307;;;:::o;21469:410::-;21546:5;21571:65;21587:48;21628:6;21587:48;:::i;:::-;21571:65;:::i;:::-;21562:74;;21659:6;21652:5;21645:21;21697:4;21690:5;21686:16;21735:3;21726:6;21721:3;21717:16;21714:25;21711:112;;;21742:79;;:::i;:::-;21711:112;21832:41;21866:6;21861:3;21856;21832:41;:::i;:::-;21552:327;21469:410;;;;;:::o;21898:338::-;21953:5;22002:3;21995:4;21987:6;21983:17;21979:27;21969:122;;22010:79;;:::i;:::-;21969:122;22127:6;22114:20;22152:78;22226:3;22218:6;22211:4;22203:6;22199:17;22152:78;:::i;:::-;22143:87;;21959:277;21898:338;;;;:::o;22242:943::-;22337:6;22345;22353;22361;22410:3;22398:9;22389:7;22385:23;22381:33;22378:120;;;22417:79;;:::i;:::-;22378:120;22537:1;22562:53;22607:7;22598:6;22587:9;22583:22;22562:53;:::i;:::-;22552:63;;22508:117;22664:2;22690:53;22735:7;22726:6;22715:9;22711:22;22690:53;:::i;:::-;22680:63;;22635:118;22792:2;22818:53;22863:7;22854:6;22843:9;22839:22;22818:53;:::i;:::-;22808:63;;22763:118;22948:2;22937:9;22933:18;22920:32;22979:18;22971:6;22968:30;22965:117;;;23001:79;;:::i;:::-;22965:117;23106:62;23160:7;23151:6;23140:9;23136:22;23106:62;:::i;:::-;23096:72;;22891:287;22242:943;;;;;;;:::o;23263:874::-;23422:4;23417:3;23413:14;23509:4;23502:5;23498:16;23492:23;23528:63;23585:4;23580:3;23576:14;23562:12;23528:63;:::i;:::-;23437:164;23693:4;23686:5;23682:16;23676:23;23712:61;23767:4;23762:3;23758:14;23744:12;23712:61;:::i;:::-;23611:172;23867:4;23860:5;23856:16;23850:23;23886:57;23937:4;23932:3;23928:14;23914:12;23886:57;:::i;:::-;23793:160;24040:4;24033:5;24029:16;24023:23;24059:61;24114:4;24109:3;24105:14;24091:12;24059:61;:::i;:::-;23963:167;23391:746;23263:874;;:::o;24143:347::-;24298:4;24336:3;24325:9;24321:19;24313:27;;24350:133;24480:1;24469:9;24465:17;24456:6;24350:133;:::i;:::-;24143:347;;;;:::o;24496:323::-;24552:6;24601:2;24589:9;24580:7;24576:23;24572:32;24569:119;;;24607:79;;:::i;:::-;24569:119;24727:1;24752:50;24794:7;24785:6;24774:9;24770:22;24752:50;:::i;:::-;24742:60;;24698:114;24496:323;;;;:::o;24825:474::-;24893:6;24901;24950:2;24938:9;24929:7;24925:23;24921:32;24918:119;;;24956:79;;:::i;:::-;24918:119;25076:1;25101:53;25146:7;25137:6;25126:9;25122:22;25101:53;:::i;:::-;25091:63;;25047:117;25203:2;25229:53;25274:7;25265:6;25254:9;25250:22;25229:53;:::i;:::-;25219:63;;25174:118;24825:474;;;;;:::o;25305:::-;25373:6;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:53;25626:7;25617:6;25606:9;25602:22;25581:53;:::i;:::-;25571:63;;25527:117;25683:2;25709:53;25754:7;25745:6;25734:9;25730:22;25709:53;:::i;:::-;25699:63;;25654:118;25305:474;;;;;:::o;25785:180::-;25833:77;25830:1;25823:88;25930:4;25927:1;25920:15;25954:4;25951:1;25944:15;25971:320;26015:6;26052:1;26046:4;26042:12;26032:22;;26099:1;26093:4;26089:12;26120:18;26110:81;;26176:4;26168:6;26164:17;26154:27;;26110:81;26238:2;26230:6;26227:14;26207:18;26204:38;26201:84;;;26257:18;;:::i;:::-;26201:84;26022:269;25971:320;;;:::o;26297:180::-;26345:77;26342:1;26335:88;26442:4;26439:1;26432:15;26466:4;26463:1;26456:15;26483:305;26523:3;26542:20;26560:1;26542:20;:::i;:::-;26537:25;;26576:20;26594:1;26576:20;:::i;:::-;26571:25;;26730:1;26662:66;26658:74;26655:1;26652:81;26649:107;;;26736:18;;:::i;:::-;26649:107;26780:1;26777;26773:9;26766:16;;26483:305;;;;:::o;26794:348::-;26834:7;26857:20;26875:1;26857:20;:::i;:::-;26852:25;;26891:20;26909:1;26891:20;:::i;:::-;26886:25;;27079:1;27011:66;27007:74;27004:1;27001:81;26996:1;26989:9;26982:17;26978:105;26975:131;;;27086:18;;:::i;:::-;26975:131;27134:1;27131;27127:9;27116:20;;26794:348;;;;:::o;27148:181::-;27288:33;27284:1;27276:6;27272:14;27265:57;27148:181;:::o;27335:366::-;27477:3;27498:67;27562:2;27557:3;27498:67;:::i;:::-;27491:74;;27574:93;27663:3;27574:93;:::i;:::-;27692:2;27687:3;27683:12;27676:19;;27335:366;;;:::o;27707:419::-;27873:4;27911:2;27900:9;27896:18;27888:26;;27960:9;27954:4;27950:20;27946:1;27935:9;27931:17;27924:47;27988:131;28114:4;27988:131;:::i;:::-;27980:139;;27707:419;;;:::o;28132:147::-;28233:11;28270:3;28255:18;;28132:147;;;;:::o;28285:114::-;;:::o;28405:398::-;28564:3;28585:83;28666:1;28661:3;28585:83;:::i;:::-;28578:90;;28677:93;28766:3;28677:93;:::i;:::-;28795:1;28790:3;28786:11;28779:18;;28405:398;;;:::o;28809:379::-;28993:3;29015:147;29158:3;29015:147;:::i;:::-;29008:154;;29179:3;29172:10;;28809:379;;;:::o;29194:180::-;29242:77;29239:1;29232:88;29339:4;29336:1;29329:15;29363:4;29360:1;29353:15;29380:94;29413:8;29461:5;29457:2;29453:14;29432:35;;29380:94;;;:::o;29480:::-;29519:7;29548:20;29562:5;29548:20;:::i;:::-;29537:31;;29480:94;;;:::o;29580:100::-;29619:7;29648:26;29668:5;29648:26;:::i;:::-;29637:37;;29580:100;;;:::o;29686:157::-;29791:45;29811:24;29829:5;29811:24;:::i;:::-;29791:45;:::i;:::-;29786:3;29779:58;29686:157;;:::o;29849:256::-;29961:3;29976:75;30047:3;30038:6;29976:75;:::i;:::-;30076:2;30071:3;30067:12;30060:19;;30096:3;30089:10;;29849:256;;;;:::o;30111:148::-;30213:11;30250:3;30235:18;;30111:148;;;;:::o;30265:377::-;30371:3;30399:39;30432:5;30399:39;:::i;:::-;30454:89;30536:6;30531:3;30454:89;:::i;:::-;30447:96;;30552:52;30597:6;30592:3;30585:4;30578:5;30574:16;30552:52;:::i;:::-;30629:6;30624:3;30620:16;30613:23;;30375:267;30265:377;;;;:::o;30648:155::-;30788:7;30784:1;30776:6;30772:14;30765:31;30648:155;:::o;30809:400::-;30969:3;30990:84;31072:1;31067:3;30990:84;:::i;:::-;30983:91;;31083:93;31172:3;31083:93;:::i;:::-;31201:1;31196:3;31192:11;31185:18;;30809:400;;;:::o;31215:701::-;31496:3;31518:95;31609:3;31600:6;31518:95;:::i;:::-;31511:102;;31630:95;31721:3;31712:6;31630:95;:::i;:::-;31623:102;;31742:148;31886:3;31742:148;:::i;:::-;31735:155;;31907:3;31900:10;;31215:701;;;;;:::o;31922:225::-;32062:34;32058:1;32050:6;32046:14;32039:58;32131:8;32126:2;32118:6;32114:15;32107:33;31922:225;:::o;32153:366::-;32295:3;32316:67;32380:2;32375:3;32316:67;:::i;:::-;32309:74;;32392:93;32481:3;32392:93;:::i;:::-;32510:2;32505:3;32501:12;32494:19;;32153:366;;;:::o;32525:419::-;32691:4;32729:2;32718:9;32714:18;32706:26;;32778:9;32772:4;32768:20;32764:1;32753:9;32749:17;32742:47;32806:131;32932:4;32806:131;:::i;:::-;32798:139;;32525:419;;;:::o;32950:182::-;33090:34;33086:1;33078:6;33074:14;33067:58;32950:182;:::o;33138:366::-;33280:3;33301:67;33365:2;33360:3;33301:67;:::i;:::-;33294:74;;33377:93;33466:3;33377:93;:::i;:::-;33495:2;33490:3;33486:12;33479:19;;33138:366;;;:::o;33510:419::-;33676:4;33714:2;33703:9;33699:18;33691:26;;33763:9;33757:4;33753:20;33749:1;33738:9;33734:17;33727:47;33791:131;33917:4;33791:131;:::i;:::-;33783:139;;33510:419;;;:::o;33935:98::-;33986:6;34020:5;34014:12;34004:22;;33935:98;;;:::o;34039:168::-;34122:11;34156:6;34151:3;34144:19;34196:4;34191:3;34187:14;34172:29;;34039:168;;;;:::o;34213:360::-;34299:3;34327:38;34359:5;34327:38;:::i;:::-;34381:70;34444:6;34439:3;34381:70;:::i;:::-;34374:77;;34460:52;34505:6;34500:3;34493:4;34486:5;34482:16;34460:52;:::i;:::-;34537:29;34559:6;34537:29;:::i;:::-;34532:3;34528:39;34521:46;;34303:270;34213:360;;;;:::o;34579:640::-;34774:4;34812:3;34801:9;34797:19;34789:27;;34826:71;34894:1;34883:9;34879:17;34870:6;34826:71;:::i;:::-;34907:72;34975:2;34964:9;34960:18;34951:6;34907:72;:::i;:::-;34989;35057:2;35046:9;35042:18;35033:6;34989:72;:::i;:::-;35108:9;35102:4;35098:20;35093:2;35082:9;35078:18;35071:48;35136:76;35207:4;35198:6;35136:76;:::i;:::-;35128:84;;34579:640;;;;;;;:::o;35225:141::-;35281:5;35312:6;35306:13;35297:22;;35328:32;35354:5;35328:32;:::i;:::-;35225:141;;;;:::o;35372:349::-;35441:6;35490:2;35478:9;35469:7;35465:23;35461:32;35458:119;;;35496:79;;:::i;:::-;35458:119;35616:1;35641:63;35696:7;35687:6;35676:9;35672:22;35641:63;:::i;:::-;35631:73;;35587:127;35372:349;;;;:::o;35727:233::-;35766:3;35789:24;35807:5;35789:24;:::i;:::-;35780:33;;35835:66;35828:5;35825:77;35822:103;;;35905:18;;:::i;:::-;35822:103;35952:1;35945:5;35941:13;35934:20;;35727:233;;;:::o;35966:180::-;36014:77;36011:1;36004:88;36111:4;36108:1;36101:15;36135:4;36132:1;36125:15;36152:185;36192:1;36209:20;36227:1;36209:20;:::i;:::-;36204:25;;36243:20;36261:1;36243:20;:::i;:::-;36238:25;;36282:1;36272:35;;36287:18;;:::i;:::-;36272:35;36329:1;36326;36322:9;36317:14;;36152:185;;;;:::o;36343:191::-;36383:4;36403:20;36421:1;36403:20;:::i;:::-;36398:25;;36437:20;36455:1;36437:20;:::i;:::-;36432:25;;36476:1;36473;36470:8;36467:34;;;36481:18;;:::i;:::-;36467:34;36526:1;36523;36519:9;36511:17;;36343:191;;;;:::o;36540:176::-;36572:1;36589:20;36607:1;36589:20;:::i;:::-;36584:25;;36623:20;36641:1;36623:20;:::i;:::-;36618:25;;36662:1;36652:35;;36667:18;;:::i;:::-;36652:35;36708:1;36705;36701:9;36696:14;;36540:176;;;;:::o

Swarm Source

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