ETH Price: $2,832.15 (-10.39%)
Gas: 10 Gwei

Token

Beanz3D (BEANZ3D)
 

Overview

Max Total Supply

19,950 BEANZ3D

Holders

288

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thadream.eth
Balance
1 BEANZ3D
0x35566A5b3aDB28dD3fBC64434c87AF09382e7e83
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:
Beanz3D

Compiler Version
v0.8.16+commit.07a7930e

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-05
*/

// SPDX-License-Identifier: MIT

// 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/Address.sol


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.0
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

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

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

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

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

// File: contracts/Beanz3D.sol


pragma solidity ^0.8.11;






error PrivateMintNotStarted();
error PublicMintNotStarted();
error InsufficientPayment();
error NotInWhitelist();
error ExceedSupply();
error ExceedMaxPerWallet();

contract Beanz3D is ERC721A, Ownable, ReentrancyGuard {
    using MerkleProof for bytes32[];

    // ===== Variables =====
    uint16 constant devSupply = 19950;
    uint16 constant presaleSupply = 0;
    uint16 constant collectionSupply = 19950;

    bool private privateMintStarted;
    bool private publicMintStarted;

    uint8 private presaleMaxItemsPerWallet = 20;

    uint256 private presalePrice = 0.01 ether;
    uint256 private mintPrice = 0.015 ether;

    string private baseTokenURI;

    bytes32 private presaleMerkleRoot;

    // ===== Constructor =====
    constructor() ERC721A("Beanz3D", "BEANZ3D") {}

    // ===== Modifiers =====
    modifier whenPrivateMint() {
        if (!privateMintStarted || publicMintStarted) revert PrivateMintNotStarted();
        _;
    }

    modifier whenPublicMint() {
        if (!publicMintStarted) revert PublicMintNotStarted();
        _;
    }

    // ===== Dev mint =====
    function devMint(uint8 quantity) external onlyOwner {
        if(totalSupply() + quantity > devSupply) revert ExceedSupply();

        _mint(msg.sender, quantity);        
    }

    // ===== Private mint =====
    function privateMint(bytes32[] memory proof, uint8 quantity) external payable nonReentrant whenPrivateMint {
        if(msg.value < presalePrice * quantity) revert InsufficientPayment();
        if(totalSupply() + quantity > presaleSupply) revert ExceedSupply();
        if(_numberMinted(msg.sender) + quantity > presaleMaxItemsPerWallet) revert ExceedMaxPerWallet();
        if(!isAddressWhitelisted(proof, msg.sender)) revert NotInWhitelist();

        _mint(msg.sender, quantity);        
    }

    // ===== Public mint =====
    function mint(uint8 quantity) external payable nonReentrant whenPublicMint {
        if(msg.value < mintPrice * quantity) revert InsufficientPayment();
        if(totalSupply() + quantity > collectionSupply) revert ExceedSupply();

        _mint(msg.sender, quantity);        
    }

    // ===== Whitelisting =====
    function isAddressWhitelisted(bytes32[] memory proof, address _address) internal view returns (bool) {
        return proof.verify(presaleMerkleRoot, keccak256(abi.encodePacked(_address)));
    }

    // ===== Withdraw =====
    function withdraw() external onlyOwner nonReentrant {
        Address.sendValue(payable(owner()), address(this).balance);
    }

    // ===== Metadata URI =====
    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return baseTokenURI;
    }

    function setBaseTokenURI(string memory value) external onlyOwner {
        baseTokenURI = value;
    }

    // ===== Setters =====
    function startPrivateMint() external onlyOwner {
        privateMintStarted = true;
    }

    function startPublicMint() external onlyOwner {
        publicMintStarted = true;
    }

    function setPresaleMaxItemsPerWallet(uint8 value) external onlyOwner {
        presaleMaxItemsPerWallet = value;
    }

    function setPresalePrice(uint256 value) external onlyOwner {
        presalePrice = value;
    }

    function setMintPrice(uint256 value) external onlyOwner {
        mintPrice = value;
    }

    function setPresaleMerkleRoot(bytes32 value) external onlyOwner {
        presaleMerkleRoot = value;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"ExceedSupply","type":"error"},{"inputs":[],"name":"InsufficientPayment","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotInWhitelist","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PrivateMintNotStarted","type":"error"},{"inputs":[],"name":"PublicMintNotStarted","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"privateMint","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"value","type":"uint8"}],"name":"setPresaleMaxItemsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600a60026101000a81548160ff021916908360ff160217905550662386f26fc10000600b5566354a6ba7a18000600c553480156200004357600080fd5b506040518060400160405280600781526020017f4265616e7a3344000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4245414e5a3344000000000000000000000000000000000000000000000000008152508160029081620000c1919062000467565b508060039081620000d3919062000467565b50620000e46200011a60201b60201c565b60008190555050506200010c620001006200011f60201b60201c565b6200012760201b60201c565b60016009819055506200054e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026f57607f821691505b60208210810362000285576200028462000227565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b0565b620002fb8683620002b0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000348620003426200033c8462000313565b6200031d565b62000313565b9050919050565b6000819050919050565b620003648362000327565b6200037c62000373826200034f565b848454620002bd565b825550505050565b600090565b6200039362000384565b620003a081848462000359565b505050565b5b81811015620003c857620003bc60008262000389565b600181019050620003a6565b5050565b601f8211156200041757620003e1816200028b565b620003ec84620002a0565b81016020851015620003fc578190505b620004146200040b85620002a0565b830182620003a5565b50505b505050565b600082821c905092915050565b60006200043c600019846008026200041c565b1980831691505092915050565b600062000457838362000429565b9150826002028217905092915050565b6200047282620001ed565b67ffffffffffffffff8111156200048e576200048d620001f8565b5b6200049a825462000256565b620004a7828285620003cc565b600060209050601f831160018114620004df5760008415620004ca578287015190505b620004d6858262000449565b86555062000546565b601f198416620004ef866200028b565b60005b828110156200051957848901518255600182019150602085019450602081019050620004f2565b8683101562000539578489015162000535601f89168262000429565b8355505b6001600288020188555050505b505050505050565b613188806200055e6000396000f3fe6080604052600436106101b75760003560e01c80636ecd2306116100ec578063b88d4fde1161008a578063e6a7e93311610064578063e6a7e933146105b0578063e985e9c5146105c7578063f2fde38b14610604578063f4a0a5281461062d576101b7565b8063b88d4fde1461052e578063c87b56dd14610557578063dfb9eb5614610594576101b7565b806376c64c62116100c657806376c64c62146104985780638da5cb5b146104af57806395d89b41146104da578063a22cb46514610505576101b7565b80636ecd23061461042857806370a0823114610444578063715018a614610481576101b7565b806328d7b276116101595780633549345e116101335780633549345e146103825780633ccfd60b146103ab57806342842e0e146103c25780636352211e146103eb576101b7565b806328d7b2761461030757806330176e13146103305780633497d16514610359576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631a0ef8a9146102b557806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906120c7565b610656565b6040516101f0919061210f565b60405180910390f35b34801561020557600080fd5b5061020e6106e8565b60405161021b91906121ba565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612212565b61077a565b6040516102589190612280565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906122c7565b6107f9565b005b34801561029657600080fd5b5061029f61093d565b6040516102ac9190612316565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061236a565b610954565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612397565b61097a565b005b34801561031357600080fd5b5061032e60048036038101906103299190612420565b610c9c565b005b34801561033c57600080fd5b5061035760048036038101906103529190612582565b610cae565b005b34801561036557600080fd5b50610380600480360381019061037b919061236a565b610cc9565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612212565b610d36565b005b3480156103b757600080fd5b506103c0610d48565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612397565b610db8565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612212565b610dd8565b60405161041f9190612280565b60405180910390f35b610442600480360381019061043d919061236a565b610dea565b005b34801561045057600080fd5b5061046b600480360381019061046691906125cb565b610f34565b6040516104789190612316565b60405180910390f35b34801561048d57600080fd5b50610496610fec565b005b3480156104a457600080fd5b506104ad611000565b005b3480156104bb57600080fd5b506104c4611025565b6040516104d19190612280565b60405180910390f35b3480156104e657600080fd5b506104ef61104f565b6040516104fc91906121ba565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612624565b6110e1565b005b34801561053a57600080fd5b5061055560048036038101906105509190612705565b611258565b005b34801561056357600080fd5b5061057e60048036038101906105799190612212565b6112cb565b60405161058b91906121ba565b60405180910390f35b6105ae60048036038101906105a99190612850565b611369565b005b3480156105bc57600080fd5b506105c561156e565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906128ac565b611593565b6040516105fb919061210f565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906125cb565b611627565b005b34801561063957600080fd5b50610654600480360381019061064f9190612212565b6116aa565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f79061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546107239061291b565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000610785826116bc565b6107bb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080482610dd8565b90508073ffffffffffffffffffffffffffffffffffffffff1661082561171b565b73ffffffffffffffffffffffffffffffffffffffff1614610888576108518161084c61171b565b611593565b610887576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610947611723565b6001546000540303905090565b61095c611728565b80600a60026101000a81548160ff021916908360ff16021790555050565b6000610985826117a6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109f884611872565b91509150610a0e8187610a0961171b565b611899565b610a5a57610a2386610a1e61171b565b611593565b610a59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acd86868660016118dd565b8015610ad857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ba685610b828888876118e3565b7c02000000000000000000000000000000000000000000000000000000001761190b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c2c5760006001850190506000600460008381526020019081526020016000205403610c2a576000548114610c29578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c948686866001611936565b505050505050565b610ca4611728565b80600e8190555050565b610cb6611728565b80600d9081610cc59190612af8565b5050565b610cd1611728565b614dee61ffff168160ff16610ce461093d565b610cee9190612bf9565b1115610d26576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d33338260ff1661193c565b50565b610d3e611728565b80600b8190555050565b610d50611728565b600260095403610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612c79565b60405180910390fd5b6002600981905550610dae610da8611025565b47611af7565b6001600981905550565b610dd383838360405180602001604052806000815250611258565b505050565b6000610de3826117a6565b9050919050565b600260095403610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612c79565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff16610e7d576040517fb35ba98d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600c54610e8e9190612c99565b341015610ec7576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614dee61ffff168160ff16610eda61093d565b610ee49190612bf9565b1115610f1c576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f29338260ff1661193c565b600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff4611728565b610ffe6000611beb565b565b611008611728565b6001600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105e9061291b565b80601f016020809104026020016040519081016040528092919081815260200182805461108a9061291b565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e961171b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115a61171b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120761171b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124c919061210f565b60405180910390a35050565b61126384848461097a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c55761128e84848484611cb1565b6112c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d6826116bc565b61130c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611316611e01565b905060008151036113365760405180602001604052806000815250611361565b8061134084611e93565b604051602001611351929190612d2f565b6040516020818303038152906040525b915050919050565b6002600954036113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612c79565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff1615806113de5750600a60019054906101000a900460ff165b15611415576040517fd23cd50900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600b546114269190612c99565b34101561145f576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061ffff168160ff1661147161093d565b61147b9190612bf9565b11156114b3576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60029054906101000a900460ff1660ff168160ff166114d333611eed565b6114dd9190612bf9565b1115611515576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151f8233611f44565b611555576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611562338260ff1661193c565b60016009819055505050565b611576611728565b6001600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61162f611728565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612dc5565b60405180910390fd5b6116a781611beb565b50565b6116b2611728565b80600c8190555050565b6000816116c7611723565b111580156116d6575060005482105b8015611714575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611730611f8b565b73ffffffffffffffffffffffffffffffffffffffff1661174e611025565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612e31565b60405180910390fd5b565b600080829050806117b5611723565b1161183b5760005481101561183a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611838575b6000810361182e576004600083600190039350838152602001908152602001600020549050611804565b809250505061186d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118fa868684611f93565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361197c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61198960008483856118dd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a00836119f160008660006118e3565b6119fa85611f9c565b1761190b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611aa157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a66565b5060008203611adc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611af26000848385611936565b505050565b80471015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190612e9d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b6090612eee565b60006040518083038185875af1925050503d8060008114611b9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ba2565b606091505b5050905080611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612f75565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd761171b565b8786866040518563ffffffff1660e01b8152600401611cf99493929190612fea565b6020604051808303816000875af1925050508015611d3557506040513d601f19601f82011682018060405250810190611d32919061304b565b60015b611dae573d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b506000815103611da6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e109061291b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3c9061291b565b8015611e895780601f10611e5e57610100808354040283529160200191611e89565b820191906000526020600020905b815481529060010190602001808311611e6c57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ed957600183039250600a81066030018353600a81049050611eb9565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611f83600e5483604051602001611f5d91906130c0565b6040516020818303038152906040528051906020012085611fac9092919063ffffffff16565b905092915050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600082611fb98584611fc3565b1490509392505050565b60008082905060005b845181101561200e57611ff982868381518110611fec57611feb6130db565b5b6020026020010151612019565b915080806120069061310a565b915050611fcc565b508091505092915050565b60008183106120315761202c8284612044565b61203c565b61203b8383612044565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120a48161206f565b81146120af57600080fd5b50565b6000813590506120c18161209b565b92915050565b6000602082840312156120dd576120dc612065565b5b60006120eb848285016120b2565b91505092915050565b60008115159050919050565b612109816120f4565b82525050565b60006020820190506121246000830184612100565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612164578082015181840152602081019050612149565b60008484015250505050565b6000601f19601f8301169050919050565b600061218c8261212a565b6121968185612135565b93506121a6818560208601612146565b6121af81612170565b840191505092915050565b600060208201905081810360008301526121d48184612181565b905092915050565b6000819050919050565b6121ef816121dc565b81146121fa57600080fd5b50565b60008135905061220c816121e6565b92915050565b60006020828403121561222857612227612065565b5b6000612236848285016121fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226a8261223f565b9050919050565b61227a8161225f565b82525050565b60006020820190506122956000830184612271565b92915050565b6122a48161225f565b81146122af57600080fd5b50565b6000813590506122c18161229b565b92915050565b600080604083850312156122de576122dd612065565b5b60006122ec858286016122b2565b92505060206122fd858286016121fd565b9150509250929050565b612310816121dc565b82525050565b600060208201905061232b6000830184612307565b92915050565b600060ff82169050919050565b61234781612331565b811461235257600080fd5b50565b6000813590506123648161233e565b92915050565b6000602082840312156123805761237f612065565b5b600061238e84828501612355565b91505092915050565b6000806000606084860312156123b0576123af612065565b5b60006123be868287016122b2565b93505060206123cf868287016122b2565b92505060406123e0868287016121fd565b9150509250925092565b6000819050919050565b6123fd816123ea565b811461240857600080fd5b50565b60008135905061241a816123f4565b92915050565b60006020828403121561243657612435612065565b5b60006124448482850161240b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248f82612170565b810181811067ffffffffffffffff821117156124ae576124ad612457565b5b80604052505050565b60006124c161205b565b90506124cd8282612486565b919050565b600067ffffffffffffffff8211156124ed576124ec612457565b5b6124f682612170565b9050602081019050919050565b82818337600083830152505050565b6000612525612520846124d2565b6124b7565b90508281526020810184848401111561254157612540612452565b5b61254c848285612503565b509392505050565b600082601f8301126125695761256861244d565b5b8135612579848260208601612512565b91505092915050565b60006020828403121561259857612597612065565b5b600082013567ffffffffffffffff8111156125b6576125b561206a565b5b6125c284828501612554565b91505092915050565b6000602082840312156125e1576125e0612065565b5b60006125ef848285016122b2565b91505092915050565b612601816120f4565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a612065565b5b6000612649858286016122b2565b925050602061265a8582860161260f565b9150509250929050565b600067ffffffffffffffff82111561267f5761267e612457565b5b61268882612170565b9050602081019050919050565b60006126a86126a384612664565b6124b7565b9050828152602081018484840111156126c4576126c3612452565b5b6126cf848285612503565b509392505050565b600082601f8301126126ec576126eb61244d565b5b81356126fc848260208601612695565b91505092915050565b6000806000806080858703121561271f5761271e612065565b5b600061272d878288016122b2565b945050602061273e878288016122b2565b935050604061274f878288016121fd565b925050606085013567ffffffffffffffff8111156127705761276f61206a565b5b61277c878288016126d7565b91505092959194509250565b600067ffffffffffffffff8211156127a3576127a2612457565b5b602082029050602081019050919050565b600080fd5b60006127cc6127c784612788565b6124b7565b905080838252602082019050602084028301858111156127ef576127ee6127b4565b5b835b818110156128185780612804888261240b565b8452602084019350506020810190506127f1565b5050509392505050565b600082601f8301126128375761283661244d565b5b81356128478482602086016127b9565b91505092915050565b6000806040838503121561286757612866612065565b5b600083013567ffffffffffffffff8111156128855761288461206a565b5b61289185828601612822565b92505060206128a285828601612355565b9150509250929050565b600080604083850312156128c3576128c2612065565b5b60006128d1858286016122b2565b92505060206128e2858286016122b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293357607f821691505b602082108103612946576129456128ec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612971565b6129b88683612971565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f56129f06129eb846121dc565b6129d0565b6121dc565b9050919050565b6000819050919050565b612a0f836129da565b612a23612a1b826129fc565b84845461297e565b825550505050565b600090565b612a38612a2b565b612a43818484612a06565b505050565b5b81811015612a6757612a5c600082612a30565b600181019050612a49565b5050565b601f821115612aac57612a7d8161294c565b612a8684612961565b81016020851015612a95578190505b612aa9612aa185612961565b830182612a48565b50505b505050565b600082821c905092915050565b6000612acf60001984600802612ab1565b1980831691505092915050565b6000612ae88383612abe565b9150826002028217905092915050565b612b018261212a565b67ffffffffffffffff811115612b1a57612b19612457565b5b612b24825461291b565b612b2f828285612a6b565b600060209050601f831160018114612b625760008415612b50578287015190505b612b5a8582612adc565b865550612bc2565b601f198416612b708661294c565b60005b82811015612b9857848901518255600182019150602085019450602081019050612b73565b86831015612bb55784890151612bb1601f891682612abe565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c04826121dc565b9150612c0f836121dc565b9250828201905080821115612c2757612c26612bca565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c63601f83612135565b9150612c6e82612c2d565b602082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b6000612ca4826121dc565b9150612caf836121dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ce857612ce7612bca565b5b828202905092915050565b600081905092915050565b6000612d098261212a565b612d138185612cf3565b9350612d23818560208601612146565b80840191505092915050565b6000612d3b8285612cfe565b9150612d478284612cfe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612daf602683612135565b9150612dba82612d53565b604082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e1b602083612135565b9150612e2682612de5565b602082019050919050565b60006020820190508181036000830152612e4a81612e0e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612e87601d83612135565b9150612e9282612e51565b602082019050919050565b60006020820190508181036000830152612eb681612e7a565b9050919050565b600081905092915050565b50565b6000612ed8600083612ebd565b9150612ee382612ec8565b600082019050919050565b6000612ef982612ecb565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612f5f603a83612135565b9150612f6a82612f03565b604082019050919050565b60006020820190508181036000830152612f8e81612f52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fbc82612f95565b612fc68185612fa0565b9350612fd6818560208601612146565b612fdf81612170565b840191505092915050565b6000608082019050612fff6000830187612271565b61300c6020830186612271565b6130196040830185612307565b818103606083015261302b8184612fb1565b905095945050505050565b6000815190506130458161209b565b92915050565b60006020828403121561306157613060612065565b5b600061306f84828501613036565b91505092915050565b60008160601b9050919050565b600061309082613078565b9050919050565b60006130a282613085565b9050919050565b6130ba6130b58261225f565b613097565b82525050565b60006130cc82846130a9565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613115826121dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361314757613146612bca565b5b60018201905091905056fea2646970667358221220359e2b22ac374a39898a0975e4cb21d042957284b5533f0bcc314f59aa8474f464736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636ecd2306116100ec578063b88d4fde1161008a578063e6a7e93311610064578063e6a7e933146105b0578063e985e9c5146105c7578063f2fde38b14610604578063f4a0a5281461062d576101b7565b8063b88d4fde1461052e578063c87b56dd14610557578063dfb9eb5614610594576101b7565b806376c64c62116100c657806376c64c62146104985780638da5cb5b146104af57806395d89b41146104da578063a22cb46514610505576101b7565b80636ecd23061461042857806370a0823114610444578063715018a614610481576101b7565b806328d7b276116101595780633549345e116101335780633549345e146103825780633ccfd60b146103ab57806342842e0e146103c25780636352211e146103eb576101b7565b806328d7b2761461030757806330176e13146103305780633497d16514610359576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631a0ef8a9146102b557806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906120c7565b610656565b6040516101f0919061210f565b60405180910390f35b34801561020557600080fd5b5061020e6106e8565b60405161021b91906121ba565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612212565b61077a565b6040516102589190612280565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906122c7565b6107f9565b005b34801561029657600080fd5b5061029f61093d565b6040516102ac9190612316565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061236a565b610954565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612397565b61097a565b005b34801561031357600080fd5b5061032e60048036038101906103299190612420565b610c9c565b005b34801561033c57600080fd5b5061035760048036038101906103529190612582565b610cae565b005b34801561036557600080fd5b50610380600480360381019061037b919061236a565b610cc9565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612212565b610d36565b005b3480156103b757600080fd5b506103c0610d48565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612397565b610db8565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612212565b610dd8565b60405161041f9190612280565b60405180910390f35b610442600480360381019061043d919061236a565b610dea565b005b34801561045057600080fd5b5061046b600480360381019061046691906125cb565b610f34565b6040516104789190612316565b60405180910390f35b34801561048d57600080fd5b50610496610fec565b005b3480156104a457600080fd5b506104ad611000565b005b3480156104bb57600080fd5b506104c4611025565b6040516104d19190612280565b60405180910390f35b3480156104e657600080fd5b506104ef61104f565b6040516104fc91906121ba565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612624565b6110e1565b005b34801561053a57600080fd5b5061055560048036038101906105509190612705565b611258565b005b34801561056357600080fd5b5061057e60048036038101906105799190612212565b6112cb565b60405161058b91906121ba565b60405180910390f35b6105ae60048036038101906105a99190612850565b611369565b005b3480156105bc57600080fd5b506105c561156e565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906128ac565b611593565b6040516105fb919061210f565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906125cb565b611627565b005b34801561063957600080fd5b50610654600480360381019061064f9190612212565b6116aa565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f79061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546107239061291b565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000610785826116bc565b6107bb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080482610dd8565b90508073ffffffffffffffffffffffffffffffffffffffff1661082561171b565b73ffffffffffffffffffffffffffffffffffffffff1614610888576108518161084c61171b565b611593565b610887576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610947611723565b6001546000540303905090565b61095c611728565b80600a60026101000a81548160ff021916908360ff16021790555050565b6000610985826117a6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109ec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109f884611872565b91509150610a0e8187610a0961171b565b611899565b610a5a57610a2386610a1e61171b565b611593565b610a59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acd86868660016118dd565b8015610ad857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ba685610b828888876118e3565b7c02000000000000000000000000000000000000000000000000000000001761190b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c2c5760006001850190506000600460008381526020019081526020016000205403610c2a576000548114610c29578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c948686866001611936565b505050505050565b610ca4611728565b80600e8190555050565b610cb6611728565b80600d9081610cc59190612af8565b5050565b610cd1611728565b614dee61ffff168160ff16610ce461093d565b610cee9190612bf9565b1115610d26576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d33338260ff1661193c565b50565b610d3e611728565b80600b8190555050565b610d50611728565b600260095403610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612c79565b60405180910390fd5b6002600981905550610dae610da8611025565b47611af7565b6001600981905550565b610dd383838360405180602001604052806000815250611258565b505050565b6000610de3826117a6565b9050919050565b600260095403610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612c79565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff16610e7d576040517fb35ba98d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600c54610e8e9190612c99565b341015610ec7576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614dee61ffff168160ff16610eda61093d565b610ee49190612bf9565b1115610f1c576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f29338260ff1661193c565b600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff4611728565b610ffe6000611beb565b565b611008611728565b6001600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105e9061291b565b80601f016020809104026020016040519081016040528092919081815260200182805461108a9061291b565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e961171b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115a61171b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120761171b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124c919061210f565b60405180910390a35050565b61126384848461097a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112c55761128e84848484611cb1565b6112c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112d6826116bc565b61130c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611316611e01565b905060008151036113365760405180602001604052806000815250611361565b8061134084611e93565b604051602001611351929190612d2f565b6040516020818303038152906040525b915050919050565b6002600954036113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612c79565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff1615806113de5750600a60019054906101000a900460ff165b15611415576040517fd23cd50900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600b546114269190612c99565b34101561145f576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061ffff168160ff1661147161093d565b61147b9190612bf9565b11156114b3576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60029054906101000a900460ff1660ff168160ff166114d333611eed565b6114dd9190612bf9565b1115611515576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151f8233611f44565b611555576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611562338260ff1661193c565b60016009819055505050565b611576611728565b6001600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61162f611728565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612dc5565b60405180910390fd5b6116a781611beb565b50565b6116b2611728565b80600c8190555050565b6000816116c7611723565b111580156116d6575060005482105b8015611714575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611730611f8b565b73ffffffffffffffffffffffffffffffffffffffff1661174e611025565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90612e31565b60405180910390fd5b565b600080829050806117b5611723565b1161183b5760005481101561183a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611838575b6000810361182e576004600083600190039350838152602001908152602001600020549050611804565b809250505061186d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118fa868684611f93565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361197c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61198960008483856118dd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a00836119f160008660006118e3565b6119fa85611f9c565b1761190b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611aa157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a66565b5060008203611adc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611af26000848385611936565b505050565b80471015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190612e9d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b6090612eee565b60006040518083038185875af1925050503d8060008114611b9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ba2565b606091505b5050905080611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612f75565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd761171b565b8786866040518563ffffffff1660e01b8152600401611cf99493929190612fea565b6020604051808303816000875af1925050508015611d3557506040513d601f19601f82011682018060405250810190611d32919061304b565b60015b611dae573d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b506000815103611da6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e109061291b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3c9061291b565b8015611e895780601f10611e5e57610100808354040283529160200191611e89565b820191906000526020600020905b815481529060010190602001808311611e6c57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ed957600183039250600a81066030018353600a81049050611eb9565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611f83600e5483604051602001611f5d91906130c0565b6040516020818303038152906040528051906020012085611fac9092919063ffffffff16565b905092915050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600082611fb98584611fc3565b1490509392505050565b60008082905060005b845181101561200e57611ff982868381518110611fec57611feb6130db565b5b6020026020010151612019565b915080806120069061310a565b915050611fcc565b508091505092915050565b60008183106120315761202c8284612044565b61203c565b61203b8383612044565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120a48161206f565b81146120af57600080fd5b50565b6000813590506120c18161209b565b92915050565b6000602082840312156120dd576120dc612065565b5b60006120eb848285016120b2565b91505092915050565b60008115159050919050565b612109816120f4565b82525050565b60006020820190506121246000830184612100565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612164578082015181840152602081019050612149565b60008484015250505050565b6000601f19601f8301169050919050565b600061218c8261212a565b6121968185612135565b93506121a6818560208601612146565b6121af81612170565b840191505092915050565b600060208201905081810360008301526121d48184612181565b905092915050565b6000819050919050565b6121ef816121dc565b81146121fa57600080fd5b50565b60008135905061220c816121e6565b92915050565b60006020828403121561222857612227612065565b5b6000612236848285016121fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061226a8261223f565b9050919050565b61227a8161225f565b82525050565b60006020820190506122956000830184612271565b92915050565b6122a48161225f565b81146122af57600080fd5b50565b6000813590506122c18161229b565b92915050565b600080604083850312156122de576122dd612065565b5b60006122ec858286016122b2565b92505060206122fd858286016121fd565b9150509250929050565b612310816121dc565b82525050565b600060208201905061232b6000830184612307565b92915050565b600060ff82169050919050565b61234781612331565b811461235257600080fd5b50565b6000813590506123648161233e565b92915050565b6000602082840312156123805761237f612065565b5b600061238e84828501612355565b91505092915050565b6000806000606084860312156123b0576123af612065565b5b60006123be868287016122b2565b93505060206123cf868287016122b2565b92505060406123e0868287016121fd565b9150509250925092565b6000819050919050565b6123fd816123ea565b811461240857600080fd5b50565b60008135905061241a816123f4565b92915050565b60006020828403121561243657612435612065565b5b60006124448482850161240b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61248f82612170565b810181811067ffffffffffffffff821117156124ae576124ad612457565b5b80604052505050565b60006124c161205b565b90506124cd8282612486565b919050565b600067ffffffffffffffff8211156124ed576124ec612457565b5b6124f682612170565b9050602081019050919050565b82818337600083830152505050565b6000612525612520846124d2565b6124b7565b90508281526020810184848401111561254157612540612452565b5b61254c848285612503565b509392505050565b600082601f8301126125695761256861244d565b5b8135612579848260208601612512565b91505092915050565b60006020828403121561259857612597612065565b5b600082013567ffffffffffffffff8111156125b6576125b561206a565b5b6125c284828501612554565b91505092915050565b6000602082840312156125e1576125e0612065565b5b60006125ef848285016122b2565b91505092915050565b612601816120f4565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a612065565b5b6000612649858286016122b2565b925050602061265a8582860161260f565b9150509250929050565b600067ffffffffffffffff82111561267f5761267e612457565b5b61268882612170565b9050602081019050919050565b60006126a86126a384612664565b6124b7565b9050828152602081018484840111156126c4576126c3612452565b5b6126cf848285612503565b509392505050565b600082601f8301126126ec576126eb61244d565b5b81356126fc848260208601612695565b91505092915050565b6000806000806080858703121561271f5761271e612065565b5b600061272d878288016122b2565b945050602061273e878288016122b2565b935050604061274f878288016121fd565b925050606085013567ffffffffffffffff8111156127705761276f61206a565b5b61277c878288016126d7565b91505092959194509250565b600067ffffffffffffffff8211156127a3576127a2612457565b5b602082029050602081019050919050565b600080fd5b60006127cc6127c784612788565b6124b7565b905080838252602082019050602084028301858111156127ef576127ee6127b4565b5b835b818110156128185780612804888261240b565b8452602084019350506020810190506127f1565b5050509392505050565b600082601f8301126128375761283661244d565b5b81356128478482602086016127b9565b91505092915050565b6000806040838503121561286757612866612065565b5b600083013567ffffffffffffffff8111156128855761288461206a565b5b61289185828601612822565b92505060206128a285828601612355565b9150509250929050565b600080604083850312156128c3576128c2612065565b5b60006128d1858286016122b2565b92505060206128e2858286016122b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293357607f821691505b602082108103612946576129456128ec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612971565b6129b88683612971565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f56129f06129eb846121dc565b6129d0565b6121dc565b9050919050565b6000819050919050565b612a0f836129da565b612a23612a1b826129fc565b84845461297e565b825550505050565b600090565b612a38612a2b565b612a43818484612a06565b505050565b5b81811015612a6757612a5c600082612a30565b600181019050612a49565b5050565b601f821115612aac57612a7d8161294c565b612a8684612961565b81016020851015612a95578190505b612aa9612aa185612961565b830182612a48565b50505b505050565b600082821c905092915050565b6000612acf60001984600802612ab1565b1980831691505092915050565b6000612ae88383612abe565b9150826002028217905092915050565b612b018261212a565b67ffffffffffffffff811115612b1a57612b19612457565b5b612b24825461291b565b612b2f828285612a6b565b600060209050601f831160018114612b625760008415612b50578287015190505b612b5a8582612adc565b865550612bc2565b601f198416612b708661294c565b60005b82811015612b9857848901518255600182019150602085019450602081019050612b73565b86831015612bb55784890151612bb1601f891682612abe565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c04826121dc565b9150612c0f836121dc565b9250828201905080821115612c2757612c26612bca565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c63601f83612135565b9150612c6e82612c2d565b602082019050919050565b60006020820190508181036000830152612c9281612c56565b9050919050565b6000612ca4826121dc565b9150612caf836121dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ce857612ce7612bca565b5b828202905092915050565b600081905092915050565b6000612d098261212a565b612d138185612cf3565b9350612d23818560208601612146565b80840191505092915050565b6000612d3b8285612cfe565b9150612d478284612cfe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612daf602683612135565b9150612dba82612d53565b604082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e1b602083612135565b9150612e2682612de5565b602082019050919050565b60006020820190508181036000830152612e4a81612e0e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612e87601d83612135565b9150612e9282612e51565b602082019050919050565b60006020820190508181036000830152612eb681612e7a565b9050919050565b600081905092915050565b50565b6000612ed8600083612ebd565b9150612ee382612ec8565b600082019050919050565b6000612ef982612ecb565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612f5f603a83612135565b9150612f6a82612f03565b604082019050919050565b60006020820190508181036000830152612f8e81612f52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fbc82612f95565b612fc68185612fa0565b9350612fd6818560208601612146565b612fdf81612170565b840191505092915050565b6000608082019050612fff6000830187612271565b61300c6020830186612271565b6130196040830185612307565b818103606083015261302b8184612fb1565b905095945050505050565b6000815190506130458161209b565b92915050565b60006020828403121561306157613060612065565b5b600061306f84828501613036565b91505092915050565b60008160601b9050919050565b600061309082613078565b9050919050565b60006130a282613085565b9050919050565b6130ba6130b58261225f565b613097565b82525050565b60006130cc82846130a9565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613115826121dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361314757613146612bca565b5b60018201905091905056fea2646970667358221220359e2b22ac374a39898a0975e4cb21d042957284b5533f0bcc314f59aa8474f464736f6c63430008100033

Deployed Bytecode Sourcemap

75158:3369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42100:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43002:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49485:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48926:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38753:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78082:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53192:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78416:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77746:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76126:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78210:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77454:129;;;;;;;;;;;;;:::i;:::-;;56105:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44395:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76892:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39937:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22848:103;;;;;;;;;;;;;:::i;:::-;;77985:89;;;;;;;;;;;;;:::i;:::-;;22200:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43178:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50043:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56888:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43388:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76348:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77886:91;;;;;;;;;;;;;:::i;:::-;;50508:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23106:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78316:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42100:639;42185:4;42524:10;42509:25;;:11;:25;;;;:102;;;;42601:10;42586:25;;:11;:25;;;;42509:102;:179;;;;42678:10;42663:25;;:11;:25;;;;42509:179;42489:199;;42100:639;;;:::o;43002:100::-;43056:13;43089:5;43082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43002:100;:::o;49485:218::-;49561:7;49586:16;49594:7;49586;:16::i;:::-;49581:64;;49611:34;;;;;;;;;;;;;;49581:64;49665:15;:24;49681:7;49665:24;;;;;;;;;;;:30;;;;;;;;;;;;49658:37;;49485:218;;;:::o;48926:400::-;49007:13;49023:16;49031:7;49023;:16::i;:::-;49007:32;;49079:5;49056:28;;:19;:17;:19::i;:::-;:28;;;49052:175;;49104:44;49121:5;49128:19;:17;:19::i;:::-;49104:16;:44::i;:::-;49099:128;;49176:35;;;;;;;;;;;;;;49099:128;49052:175;49272:2;49239:15;:24;49255:7;49239:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49310:7;49306:2;49290:28;;49299:5;49290:28;;;;;;;;;;;;48996:330;48926:400;;:::o;38753:323::-;38814:7;39042:15;:13;:15::i;:::-;39027:12;;39011:13;;:28;:46;39004:53;;38753:323;:::o;78082:120::-;22086:13;:11;:13::i;:::-;78189:5:::1;78162:24;;:32;;;;;;;;;;;;;;;;;;78082:120:::0;:::o;53192:2817::-;53326:27;53356;53375:7;53356:18;:27::i;:::-;53326:57;;53441:4;53400:45;;53416:19;53400:45;;;53396:86;;53454:28;;;;;;;;;;;;;;53396:86;53496:27;53525:23;53552:35;53579:7;53552:26;:35::i;:::-;53495:92;;;;53687:68;53712:15;53729:4;53735:19;:17;:19::i;:::-;53687:24;:68::i;:::-;53682:180;;53775:43;53792:4;53798:19;:17;:19::i;:::-;53775:16;:43::i;:::-;53770:92;;53827:35;;;;;;;;;;;;;;53770:92;53682:180;53893:1;53879:16;;:2;:16;;;53875:52;;53904:23;;;;;;;;;;;;;;53875:52;53940:43;53962:4;53968:2;53972:7;53981:1;53940:21;:43::i;:::-;54076:15;54073:160;;;54216:1;54195:19;54188:30;54073:160;54613:18;:24;54632:4;54613:24;;;;;;;;;;;;;;;;54611:26;;;;;;;;;;;;54682:18;:22;54701:2;54682:22;;;;;;;;;;;;;;;;54680:24;;;;;;;;;;;55004:146;55041:2;55090:45;55105:4;55111:2;55115:19;55090:14;:45::i;:::-;35152:8;55062:73;55004:18;:146::i;:::-;54975:17;:26;54993:7;54975:26;;;;;;;;;;;:175;;;;55321:1;35152:8;55270:19;:47;:52;55266:627;;55343:19;55375:1;55365:7;:11;55343:33;;55532:1;55498:17;:30;55516:11;55498:30;;;;;;;;;;;;:35;55494:384;;55636:13;;55621:11;:28;55617:242;;55816:19;55783:17;:30;55801:11;55783:30;;;;;;;;;;;:52;;;;55617:242;55494:384;55324:569;55266:627;55940:7;55936:2;55921:27;;55930:4;55921:27;;;;;;;;;;;;55959:42;55980:4;55986:2;55990:7;55999:1;55959:20;:42::i;:::-;53315:2694;;;53192:2817;;;:::o;78416:108::-;22086:13;:11;:13::i;:::-;78511:5:::1;78491:17;:25;;;;78416:108:::0;:::o;77746:104::-;22086:13;:11;:13::i;:::-;77837:5:::1;77822:12;:20;;;;;;:::i;:::-;;77746:104:::0;:::o;76126:181::-;22086:13;:11;:13::i;:::-;75317:5:::1;76192:36;;76208:8;76192:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;76189:62;;;76237:14;;;;;;;;;;;;;;76189:62;76264:27;76270:10;76282:8;76264:27;;:5;:27::i;:::-;76126:181:::0;:::o;78210:98::-;22086:13;:11;:13::i;:::-;78295:5:::1;78280:12;:20;;;;78210:98:::0;:::o;77454:129::-;22086:13;:11;:13::i;:::-;10572:1:::1;11170:7;;:19:::0;11162:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10572:1;11303:7;:18;;;;77517:58:::2;77543:7;:5;:7::i;:::-;77553:21;77517:17;:58::i;:::-;10528:1:::1;11482:7;:22;;;;77454:129::o:0;56105:185::-;56243:39;56260:4;56266:2;56270:7;56243:39;;;;;;;;;;;;:16;:39::i;:::-;56105:185;;;:::o;44395:152::-;44467:7;44510:27;44529:7;44510:18;:27::i;:::-;44487:52;;44395:152;;;:::o;76892:287::-;10572:1;11170:7;;:19;11162:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10572:1;11303:7;:18;;;;76021:17:::1;;;;;;;;;;;76016:53;;76047:22;;;;;;;;;;;;;;76016:53;77005:8:::2;76993:20;;:9;;:20;;;;:::i;:::-;76981:9;:32;76978:65;;;77022:21;;;;;;;;;;;;;;76978:65;75404:5;77057:43;;77073:8;77057:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:43;77054:69;;;77109:14;;;;;;;;;;;;;;77054:69;77136:27;77142:10;77154:8;77136:27;;:5;:27::i;:::-;10528:1:::0;11482:7;:22;;;;76892:287;:::o;39937:233::-;40009:7;40050:1;40033:19;;:5;:19;;;40029:60;;40061:28;;;;;;;;;;;;;;40029:60;34096:13;40107:18;:25;40126:5;40107:25;;;;;;;;;;;;;;;;:55;40100:62;;39937:233;;;:::o;22848:103::-;22086:13;:11;:13::i;:::-;22913:30:::1;22940:1;22913:18;:30::i;:::-;22848:103::o:0;77985:89::-;22086:13;:11;:13::i;:::-;78062:4:::1;78042:17;;:24;;;;;;;;;;;;;;;;;;77985:89::o:0;22200:87::-;22246:7;22273:6;;;;;;;;;;;22266:13;;22200:87;:::o;43178:104::-;43234:13;43267:7;43260:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43178:104;:::o;50043:308::-;50154:19;:17;:19::i;:::-;50142:31;;:8;:31;;;50138:61;;50182:17;;;;;;;;;;;;;;50138:61;50264:8;50212:18;:39;50231:19;:17;:19::i;:::-;50212:39;;;;;;;;;;;;;;;:49;50252:8;50212:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50324:8;50288:55;;50303:19;:17;:19::i;:::-;50288:55;;;50334:8;50288:55;;;;;;:::i;:::-;;;;;;;;50043:308;;:::o;56888:399::-;57055:31;57068:4;57074:2;57078:7;57055:12;:31::i;:::-;57119:1;57101:2;:14;;;:19;57097:183;;57140:56;57171:4;57177:2;57181:7;57190:5;57140:30;:56::i;:::-;57135:145;;57224:40;;;;;;;;;;;;;;57135:145;57097:183;56888:399;;;;:::o;43388:318::-;43461:13;43492:16;43500:7;43492;:16::i;:::-;43487:59;;43517:29;;;;;;;;;;;;;;43487:59;43559:21;43583:10;:8;:10::i;:::-;43559:34;;43636:1;43617:7;43611:21;:26;:87;;;;;;;;;;;;;;;;;43664:7;43673:18;43683:7;43673:9;:18::i;:::-;43647:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43611:87;43604:94;;;43388:318;;;:::o;76348:504::-;10572:1;11170:7;;:19;11162:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10572:1;11303:7;:18;;;;75880::::1;;;;;;;;;;;75879:19;:40;;;;75902:17;;;;;;;;;;;75879:40;75875:76;;;75928:23;;;;;;;;;;;;;;75875:76;76496:8:::2;76481:23;;:12;;:23;;;;:::i;:::-;76469:9;:35;76466:68;;;76513:21;;;;;;;;;;;;;;76466:68;75361:1;76548:40;;76564:8;76548:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;76545:66;;;76597:14;;;;;;;;;;;;;;76545:66;76664:24;;;;;;;;;;;76625:63;;76653:8;76625:36;;:25;76639:10;76625:13;:25::i;:::-;:36;;;;:::i;:::-;:63;76622:95;;;76697:20;;;;;;;;;;;;;;76622:95;76732:39;76753:5;76760:10;76732:20;:39::i;:::-;76728:68;;76780:16;;;;;;;;;;;;;;76728:68;76809:27;76815:10;76827:8;76809:27;;:5;:27::i;:::-;10528:1:::0;11482:7;:22;;;;76348:504;;:::o;77886:91::-;22086:13;:11;:13::i;:::-;77965:4:::1;77944:18;;:25;;;;;;;;;;;;;;;;;;77886:91::o:0;50508:164::-;50605:4;50629:18;:25;50648:5;50629:25;;;;;;;;;;;;;;;:35;50655:8;50629:35;;;;;;;;;;;;;;;;;;;;;;;;;50622:42;;50508:164;;;;:::o;23106:201::-;22086:13;:11;:13::i;:::-;23215:1:::1;23195:22;;:8;:22;;::::0;23187:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23271:28;23290:8;23271:18;:28::i;:::-;23106:201:::0;:::o;78316:92::-;22086:13;:11;:13::i;:::-;78395:5:::1;78383:9;:17;;;;78316:92:::0;:::o;50930:282::-;50995:4;51051:7;51032:15;:13;:15::i;:::-;:26;;:66;;;;;51085:13;;51075:7;:23;51032:66;:153;;;;;51184:1;34872:8;51136:17;:26;51154:7;51136:26;;;;;;;;;;;;:44;:49;51032:153;51012:173;;50930:282;;;:::o;72696:105::-;72756:7;72783:10;72776:17;;72696:105;:::o;38269:92::-;38325:7;38269:92;:::o;22365:132::-;22440:12;:10;:12::i;:::-;22429:23;;:7;:5;:7::i;:::-;:23;;;22421:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22365:132::o;45550:1275::-;45617:7;45637:12;45652:7;45637:22;;45720:4;45701:15;:13;:15::i;:::-;:23;45697:1061;;45754:13;;45747:4;:20;45743:1015;;;45792:14;45809:17;:23;45827:4;45809:23;;;;;;;;;;;;45792:40;;45926:1;34872:8;45898:6;:24;:29;45894:845;;46563:113;46580:1;46570:6;:11;46563:113;;46623:17;:25;46641:6;;;;;;;46623:25;;;;;;;;;;;;46614:34;;46563:113;;;46709:6;46702:13;;;;;;45894:845;45769:989;45743:1015;45697:1061;46786:31;;;;;;;;;;;;;;45550:1275;;;;:::o;52093:479::-;52195:27;52224:23;52265:38;52306:15;:24;52322:7;52306:24;;;;;;;;;;;52265:65;;52477:18;52454:41;;52534:19;52528:26;52509:45;;52439:126;52093:479;;;:::o;51321:659::-;51470:11;51635:16;51628:5;51624:28;51615:37;;51795:16;51784:9;51780:32;51767:45;;51945:15;51934:9;51931:30;51923:5;51912:9;51909:20;51906:56;51896:66;;51321:659;;;;;:::o;57949:159::-;;;;;:::o;72005:311::-;72140:7;72160:16;35276:3;72186:19;:41;;72160:68;;35276:3;72254:31;72265:4;72271:2;72275:9;72254:10;:31::i;:::-;72246:40;;:62;;72239:69;;;72005:311;;;;;:::o;47373:450::-;47453:14;47621:16;47614:5;47610:28;47601:37;;47798:5;47784:11;47759:23;47755:41;47752:52;47745:5;47742:63;47732:73;;47373:450;;;;:::o;58773:158::-;;;;;:::o;60549:2454::-;60622:20;60645:13;;60622:36;;60685:1;60673:8;:13;60669:44;;60695:18;;;;;;;;;;;;;;60669:44;60726:61;60756:1;60760:2;60764:12;60778:8;60726:21;:61::i;:::-;61270:1;34234:2;61240:1;:26;;61239:32;61227:8;:45;61201:18;:22;61220:2;61201:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61549:139;61586:2;61640:33;61663:1;61667:2;61671:1;61640:14;:33::i;:::-;61607:30;61628:8;61607:20;:30::i;:::-;:66;61549:18;:139::i;:::-;61515:17;:31;61533:12;61515:31;;;;;;;;;;;:173;;;;61705:16;61736:11;61765:8;61750:12;:23;61736:37;;62020:16;62016:2;62012:25;62000:37;;62392:12;62352:8;62311:1;62249:25;62190:1;62129;62102:335;62517:1;62503:12;62499:20;62457:346;62558:3;62549:7;62546:16;62457:346;;62776:7;62766:8;62763:1;62736:25;62733:1;62730;62725:59;62611:1;62602:7;62598:15;62587:26;;62457:346;;;62461:77;62848:1;62836:8;:13;62832:45;;62858:19;;;;;;;;;;;;;;62832:45;62910:3;62894:13;:19;;;;60975:1950;;62935:60;62964:1;62968:2;62972:12;62986:8;62935:20;:60::i;:::-;60611:2392;60549:2454;;:::o;14013:317::-;14128:6;14103:21;:31;;14095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14182:12;14200:9;:14;;14222:6;14200:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14181:52;;;14252:7;14244:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;14084:246;14013:317;;:::o;23467:191::-;23541:16;23560:6;;;;;;;;;;;23541:25;;23586:8;23577:6;;:17;;;;;;;;;;;;;;;;;;23641:8;23610:40;;23631:8;23610:40;;;;;;;;;;;;23530:128;23467:191;:::o;59371:716::-;59534:4;59580:2;59555:45;;;59601:19;:17;:19::i;:::-;59622:4;59628:7;59637:5;59555:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59551:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59855:1;59838:6;:13;:18;59834:235;;59884:40;;;;;;;;;;;;;;59834:235;60027:6;60021:13;60012:6;60008:2;60004:15;59997:38;59551:529;59724:54;;;59714:64;;;:6;:64;;;;59707:71;;;59371:716;;;;;;:::o;77624:114::-;77685:13;77718:12;77711:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77624:114;:::o;72903:2002::-;72968:17;73387:3;73380:4;73374:11;73370:21;73363:28;;73478:3;73472:4;73465:17;73584:3;74040:5;74170:1;74165:3;74161:11;74154:18;;74341:2;74335:4;74331:13;74327:2;74323:22;74318:3;74310:36;74382:2;74376:4;74372:13;74364:21;;73932:731;74401:4;73932:731;;;74592:1;74587:3;74583:11;74576:18;;74643:2;74637:4;74633:13;74629:2;74625:22;74620:3;74612:36;74496:2;74490:4;74486:13;74478:21;;73932:731;;;73936:464;74702:3;74697;74693:13;74817:2;74812:3;74808:12;74801:19;;74880:6;74875:3;74868:19;73007:1891;;72903:2002;;;:::o;40252:178::-;40313:7;34096:13;34234:2;40341:18;:25;40360:5;40341:25;;;;;;;;;;;;;;;;:50;;40340:82;40333:89;;40252:178;;;:::o;77220:197::-;77315:4;77339:70;77352:17;;77398:8;77381:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;77371:37;;;;;;77339:5;:12;;:70;;;;;:::i;:::-;77332:77;;77220:197;;;;:::o;20751:98::-;20804:7;20831:10;20824:17;;20751:98;:::o;71706:147::-;71843:6;71706:147;;;;;:::o;47925:324::-;47995:14;48228:1;48218:8;48215:15;48189:24;48185:46;48175:56;;47925:324;;;:::o;1254:190::-;1379:4;1432;1403:25;1416:5;1423:4;1403:12;:25::i;:::-;:33;1396:40;;1254:190;;;;;:::o;2121:296::-;2204:7;2224:20;2247:4;2224:27;;2267:9;2262:118;2286:5;:12;2282:1;:16;2262:118;;;2335:33;2345:12;2359:5;2365:1;2359:8;;;;;;;;:::i;:::-;;;;;;;;2335:9;:33::i;:::-;2320:48;;2300:3;;;;;:::i;:::-;;;;2262:118;;;;2397:12;2390:19;;;2121:296;;;;:::o;8328:149::-;8391:7;8422:1;8418;:5;:51;;8449:20;8464:1;8467;8449:14;:20::i;:::-;8418:51;;;8426:20;8441:1;8444;8426:14;:20::i;:::-;8418:51;8411:58;;8328:149;;;;:::o;8485:268::-;8553:13;8660:1;8654:4;8647:15;8689:1;8683:4;8676:15;8730:4;8724;8714:21;8705:30;;8485:268;;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:86::-;5277:7;5317:4;5310:5;5306:16;5295:27;;5242:86;;;:::o;5334:118::-;5405:22;5421:5;5405:22;:::i;:::-;5398:5;5395:33;5385:61;;5442:1;5439;5432:12;5385:61;5334:118;:::o;5458:135::-;5502:5;5540:6;5527:20;5518:29;;5556:31;5581:5;5556:31;:::i;:::-;5458:135;;;;:::o;5599:325::-;5656:6;5705:2;5693:9;5684:7;5680:23;5676:32;5673:119;;;5711:79;;:::i;:::-;5673:119;5831:1;5856:51;5899:7;5890:6;5879:9;5875:22;5856:51;:::i;:::-;5846:61;;5802:115;5599:325;;;;:::o;5930:619::-;6007:6;6015;6023;6072:2;6060:9;6051:7;6047:23;6043:32;6040:119;;;6078:79;;:::i;:::-;6040:119;6198:1;6223:53;6268:7;6259:6;6248:9;6244:22;6223:53;:::i;:::-;6213:63;;6169:117;6325:2;6351:53;6396:7;6387:6;6376:9;6372:22;6351:53;:::i;:::-;6341:63;;6296:118;6453:2;6479:53;6524:7;6515:6;6504:9;6500:22;6479:53;:::i;:::-;6469:63;;6424:118;5930:619;;;;;:::o;6555:77::-;6592:7;6621:5;6610:16;;6555:77;;;:::o;6638:122::-;6711:24;6729:5;6711:24;:::i;:::-;6704:5;6701:35;6691:63;;6750:1;6747;6740:12;6691:63;6638:122;:::o;6766:139::-;6812:5;6850:6;6837:20;6828:29;;6866:33;6893:5;6866:33;:::i;:::-;6766:139;;;;:::o;6911:329::-;6970:6;7019:2;7007:9;6998:7;6994:23;6990:32;6987:119;;;7025:79;;:::i;:::-;6987:119;7145:1;7170:53;7215:7;7206:6;7195:9;7191:22;7170:53;:::i;:::-;7160:63;;7116:117;6911:329;;;;:::o;7246:117::-;7355:1;7352;7345:12;7369:117;7478:1;7475;7468:12;7492:180;7540:77;7537:1;7530:88;7637:4;7634:1;7627:15;7661:4;7658:1;7651:15;7678:281;7761:27;7783:4;7761:27;:::i;:::-;7753:6;7749:40;7891:6;7879:10;7876:22;7855:18;7843:10;7840:34;7837:62;7834:88;;;7902:18;;:::i;:::-;7834:88;7942:10;7938:2;7931:22;7721:238;7678:281;;:::o;7965:129::-;7999:6;8026:20;;:::i;:::-;8016:30;;8055:33;8083:4;8075:6;8055:33;:::i;:::-;7965:129;;;:::o;8100:308::-;8162:4;8252:18;8244:6;8241:30;8238:56;;;8274:18;;:::i;:::-;8238:56;8312:29;8334:6;8312:29;:::i;:::-;8304:37;;8396:4;8390;8386:15;8378:23;;8100:308;;;:::o;8414:146::-;8511:6;8506:3;8501;8488:30;8552:1;8543:6;8538:3;8534:16;8527:27;8414:146;;;:::o;8566:425::-;8644:5;8669:66;8685:49;8727:6;8685:49;:::i;:::-;8669:66;:::i;:::-;8660:75;;8758:6;8751:5;8744:21;8796:4;8789:5;8785:16;8834:3;8825:6;8820:3;8816:16;8813:25;8810:112;;;8841:79;;:::i;:::-;8810:112;8931:54;8978:6;8973:3;8968;8931:54;:::i;:::-;8650:341;8566:425;;;;;:::o;9011:340::-;9067:5;9116:3;9109:4;9101:6;9097:17;9093:27;9083:122;;9124:79;;:::i;:::-;9083:122;9241:6;9228:20;9266:79;9341:3;9333:6;9326:4;9318:6;9314:17;9266:79;:::i;:::-;9257:88;;9073:278;9011:340;;;;:::o;9357:509::-;9426:6;9475:2;9463:9;9454:7;9450:23;9446:32;9443:119;;;9481:79;;:::i;:::-;9443:119;9629:1;9618:9;9614:17;9601:31;9659:18;9651:6;9648:30;9645:117;;;9681:79;;:::i;:::-;9645:117;9786:63;9841:7;9832:6;9821:9;9817:22;9786:63;:::i;:::-;9776:73;;9572:287;9357:509;;;;:::o;9872:329::-;9931:6;9980:2;9968:9;9959:7;9955:23;9951:32;9948:119;;;9986:79;;:::i;:::-;9948:119;10106:1;10131:53;10176:7;10167:6;10156:9;10152:22;10131:53;:::i;:::-;10121:63;;10077:117;9872:329;;;;:::o;10207:116::-;10277:21;10292:5;10277:21;:::i;:::-;10270:5;10267:32;10257:60;;10313:1;10310;10303:12;10257:60;10207:116;:::o;10329:133::-;10372:5;10410:6;10397:20;10388:29;;10426:30;10450:5;10426:30;:::i;:::-;10329:133;;;;:::o;10468:468::-;10533:6;10541;10590:2;10578:9;10569:7;10565:23;10561:32;10558:119;;;10596:79;;:::i;:::-;10558:119;10716:1;10741:53;10786:7;10777:6;10766:9;10762:22;10741:53;:::i;:::-;10731:63;;10687:117;10843:2;10869:50;10911:7;10902:6;10891:9;10887:22;10869:50;:::i;:::-;10859:60;;10814:115;10468:468;;;;;:::o;10942:307::-;11003:4;11093:18;11085:6;11082:30;11079:56;;;11115:18;;:::i;:::-;11079:56;11153:29;11175:6;11153:29;:::i;:::-;11145:37;;11237:4;11231;11227:15;11219:23;;10942:307;;;:::o;11255:423::-;11332:5;11357:65;11373:48;11414:6;11373:48;:::i;:::-;11357:65;:::i;:::-;11348:74;;11445:6;11438:5;11431:21;11483:4;11476:5;11472:16;11521:3;11512:6;11507:3;11503:16;11500:25;11497:112;;;11528:79;;:::i;:::-;11497:112;11618:54;11665:6;11660:3;11655;11618:54;:::i;:::-;11338:340;11255:423;;;;;:::o;11697:338::-;11752:5;11801:3;11794:4;11786:6;11782:17;11778:27;11768:122;;11809:79;;:::i;:::-;11768:122;11926:6;11913:20;11951:78;12025:3;12017:6;12010:4;12002:6;11998:17;11951:78;:::i;:::-;11942:87;;11758:277;11697:338;;;;:::o;12041:943::-;12136:6;12144;12152;12160;12209:3;12197:9;12188:7;12184:23;12180:33;12177:120;;;12216:79;;:::i;:::-;12177:120;12336:1;12361:53;12406:7;12397:6;12386:9;12382:22;12361:53;:::i;:::-;12351:63;;12307:117;12463:2;12489:53;12534:7;12525:6;12514:9;12510:22;12489:53;:::i;:::-;12479:63;;12434:118;12591:2;12617:53;12662:7;12653:6;12642:9;12638:22;12617:53;:::i;:::-;12607:63;;12562:118;12747:2;12736:9;12732:18;12719:32;12778:18;12770:6;12767:30;12764:117;;;12800:79;;:::i;:::-;12764:117;12905:62;12959:7;12950:6;12939:9;12935:22;12905:62;:::i;:::-;12895:72;;12690:287;12041:943;;;;;;;:::o;12990:311::-;13067:4;13157:18;13149:6;13146:30;13143:56;;;13179:18;;:::i;:::-;13143:56;13229:4;13221:6;13217:17;13209:25;;13289:4;13283;13279:15;13271:23;;12990:311;;;:::o;13307:117::-;13416:1;13413;13406:12;13447:710;13543:5;13568:81;13584:64;13641:6;13584:64;:::i;:::-;13568:81;:::i;:::-;13559:90;;13669:5;13698:6;13691:5;13684:21;13732:4;13725:5;13721:16;13714:23;;13785:4;13777:6;13773:17;13765:6;13761:30;13814:3;13806:6;13803:15;13800:122;;;13833:79;;:::i;:::-;13800:122;13948:6;13931:220;13965:6;13960:3;13957:15;13931:220;;;14040:3;14069:37;14102:3;14090:10;14069:37;:::i;:::-;14064:3;14057:50;14136:4;14131:3;14127:14;14120:21;;14007:144;13991:4;13986:3;13982:14;13975:21;;13931:220;;;13935:21;13549:608;;13447:710;;;;;:::o;14180:370::-;14251:5;14300:3;14293:4;14285:6;14281:17;14277:27;14267:122;;14308:79;;:::i;:::-;14267:122;14425:6;14412:20;14450:94;14540:3;14532:6;14525:4;14517:6;14513:17;14450:94;:::i;:::-;14441:103;;14257:293;14180:370;;;;:::o;14556:680::-;14647:6;14655;14704:2;14692:9;14683:7;14679:23;14675:32;14672:119;;;14710:79;;:::i;:::-;14672:119;14858:1;14847:9;14843:17;14830:31;14888:18;14880:6;14877:30;14874:117;;;14910:79;;:::i;:::-;14874:117;15015:78;15085:7;15076:6;15065:9;15061:22;15015:78;:::i;:::-;15005:88;;14801:302;15142:2;15168:51;15211:7;15202:6;15191:9;15187:22;15168:51;:::i;:::-;15158:61;;15113:116;14556:680;;;;;:::o;15242:474::-;15310:6;15318;15367:2;15355:9;15346:7;15342:23;15338:32;15335:119;;;15373:79;;:::i;:::-;15335:119;15493:1;15518:53;15563:7;15554:6;15543:9;15539:22;15518:53;:::i;:::-;15508:63;;15464:117;15620:2;15646:53;15691:7;15682:6;15671:9;15667:22;15646:53;:::i;:::-;15636:63;;15591:118;15242:474;;;;;:::o;15722:180::-;15770:77;15767:1;15760:88;15867:4;15864:1;15857:15;15891:4;15888:1;15881:15;15908:320;15952:6;15989:1;15983:4;15979:12;15969:22;;16036:1;16030:4;16026:12;16057:18;16047:81;;16113:4;16105:6;16101:17;16091:27;;16047:81;16175:2;16167:6;16164:14;16144:18;16141:38;16138:84;;16194:18;;:::i;:::-;16138:84;15959:269;15908:320;;;:::o;16234:141::-;16283:4;16306:3;16298:11;;16329:3;16326:1;16319:14;16363:4;16360:1;16350:18;16342:26;;16234:141;;;:::o;16381:93::-;16418:6;16465:2;16460;16453:5;16449:14;16445:23;16435:33;;16381:93;;;:::o;16480:107::-;16524:8;16574:5;16568:4;16564:16;16543:37;;16480:107;;;;:::o;16593:393::-;16662:6;16712:1;16700:10;16696:18;16735:97;16765:66;16754:9;16735:97;:::i;:::-;16853:39;16883:8;16872:9;16853:39;:::i;:::-;16841:51;;16925:4;16921:9;16914:5;16910:21;16901:30;;16974:4;16964:8;16960:19;16953:5;16950:30;16940:40;;16669:317;;16593:393;;;;;:::o;16992:60::-;17020:3;17041:5;17034:12;;16992:60;;;:::o;17058:142::-;17108:9;17141:53;17159:34;17168:24;17186:5;17168:24;:::i;:::-;17159:34;:::i;:::-;17141:53;:::i;:::-;17128:66;;17058:142;;;:::o;17206:75::-;17249:3;17270:5;17263:12;;17206:75;;;:::o;17287:269::-;17397:39;17428:7;17397:39;:::i;:::-;17458:91;17507:41;17531:16;17507:41;:::i;:::-;17499:6;17492:4;17486:11;17458:91;:::i;:::-;17452:4;17445:105;17363:193;17287:269;;;:::o;17562:73::-;17607:3;17562:73;:::o;17641:189::-;17718:32;;:::i;:::-;17759:65;17817:6;17809;17803:4;17759:65;:::i;:::-;17694:136;17641:189;;:::o;17836:186::-;17896:120;17913:3;17906:5;17903:14;17896:120;;;17967:39;18004:1;17997:5;17967:39;:::i;:::-;17940:1;17933:5;17929:13;17920:22;;17896:120;;;17836:186;;:::o;18028:543::-;18129:2;18124:3;18121:11;18118:446;;;18163:38;18195:5;18163:38;:::i;:::-;18247:29;18265:10;18247:29;:::i;:::-;18237:8;18233:44;18430:2;18418:10;18415:18;18412:49;;;18451:8;18436:23;;18412:49;18474:80;18530:22;18548:3;18530:22;:::i;:::-;18520:8;18516:37;18503:11;18474:80;:::i;:::-;18133:431;;18118:446;18028:543;;;:::o;18577:117::-;18631:8;18681:5;18675:4;18671:16;18650:37;;18577:117;;;;:::o;18700:169::-;18744:6;18777:51;18825:1;18821:6;18813:5;18810:1;18806:13;18777:51;:::i;:::-;18773:56;18858:4;18852;18848:15;18838:25;;18751:118;18700:169;;;;:::o;18874:295::-;18950:4;19096:29;19121:3;19115:4;19096:29;:::i;:::-;19088:37;;19158:3;19155:1;19151:11;19145:4;19142:21;19134:29;;18874:295;;;;:::o;19174:1395::-;19291:37;19324:3;19291:37;:::i;:::-;19393:18;19385:6;19382:30;19379:56;;;19415:18;;:::i;:::-;19379:56;19459:38;19491:4;19485:11;19459:38;:::i;:::-;19544:67;19604:6;19596;19590:4;19544:67;:::i;:::-;19638:1;19662:4;19649:17;;19694:2;19686:6;19683:14;19711:1;19706:618;;;;20368:1;20385:6;20382:77;;;20434:9;20429:3;20425:19;20419:26;20410:35;;20382:77;20485:67;20545:6;20538:5;20485:67;:::i;:::-;20479:4;20472:81;20341:222;19676:887;;19706:618;19758:4;19754:9;19746:6;19742:22;19792:37;19824:4;19792:37;:::i;:::-;19851:1;19865:208;19879:7;19876:1;19873:14;19865:208;;;19958:9;19953:3;19949:19;19943:26;19935:6;19928:42;20009:1;20001:6;19997:14;19987:24;;20056:2;20045:9;20041:18;20028:31;;19902:4;19899:1;19895:12;19890:17;;19865:208;;;20101:6;20092:7;20089:19;20086:179;;;20159:9;20154:3;20150:19;20144:26;20202:48;20244:4;20236:6;20232:17;20221:9;20202:48;:::i;:::-;20194:6;20187:64;20109:156;20086:179;20311:1;20307;20299:6;20295:14;20291:22;20285:4;20278:36;19713:611;;;19676:887;;19266:1303;;;19174:1395;;:::o;20575:180::-;20623:77;20620:1;20613:88;20720:4;20717:1;20710:15;20744:4;20741:1;20734:15;20761:191;20801:3;20820:20;20838:1;20820:20;:::i;:::-;20815:25;;20854:20;20872:1;20854:20;:::i;:::-;20849:25;;20897:1;20894;20890:9;20883:16;;20918:3;20915:1;20912:10;20909:36;;;20925:18;;:::i;:::-;20909:36;20761:191;;;;:::o;20958:181::-;21098:33;21094:1;21086:6;21082:14;21075:57;20958:181;:::o;21145:366::-;21287:3;21308:67;21372:2;21367:3;21308:67;:::i;:::-;21301:74;;21384:93;21473:3;21384:93;:::i;:::-;21502:2;21497:3;21493:12;21486:19;;21145:366;;;:::o;21517:419::-;21683:4;21721:2;21710:9;21706:18;21698:26;;21770:9;21764:4;21760:20;21756:1;21745:9;21741:17;21734:47;21798:131;21924:4;21798:131;:::i;:::-;21790:139;;21517:419;;;:::o;21942:348::-;21982:7;22005:20;22023:1;22005:20;:::i;:::-;22000:25;;22039:20;22057:1;22039:20;:::i;:::-;22034:25;;22227:1;22159:66;22155:74;22152:1;22149:81;22144:1;22137:9;22130:17;22126:105;22123:131;;;22234:18;;:::i;:::-;22123:131;22282:1;22279;22275:9;22264:20;;21942:348;;;;:::o;22296:148::-;22398:11;22435:3;22420:18;;22296:148;;;;:::o;22450:390::-;22556:3;22584:39;22617:5;22584:39;:::i;:::-;22639:89;22721:6;22716:3;22639:89;:::i;:::-;22632:96;;22737:65;22795:6;22790:3;22783:4;22776:5;22772:16;22737:65;:::i;:::-;22827:6;22822:3;22818:16;22811:23;;22560:280;22450:390;;;;:::o;22846:435::-;23026:3;23048:95;23139:3;23130:6;23048:95;:::i;:::-;23041:102;;23160:95;23251:3;23242:6;23160:95;:::i;:::-;23153:102;;23272:3;23265:10;;22846:435;;;;;:::o;23287:225::-;23427:34;23423:1;23415:6;23411:14;23404:58;23496:8;23491:2;23483:6;23479:15;23472:33;23287:225;:::o;23518:366::-;23660:3;23681:67;23745:2;23740:3;23681:67;:::i;:::-;23674:74;;23757:93;23846:3;23757:93;:::i;:::-;23875:2;23870:3;23866:12;23859:19;;23518:366;;;:::o;23890:419::-;24056:4;24094:2;24083:9;24079:18;24071:26;;24143:9;24137:4;24133:20;24129:1;24118:9;24114:17;24107:47;24171:131;24297:4;24171:131;:::i;:::-;24163:139;;23890:419;;;:::o;24315:182::-;24455:34;24451:1;24443:6;24439:14;24432:58;24315:182;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:179::-;25440:31;25436:1;25428:6;25424:14;25417:55;25300:179;:::o;25485:366::-;25627:3;25648:67;25712:2;25707:3;25648:67;:::i;:::-;25641:74;;25724:93;25813:3;25724:93;:::i;:::-;25842:2;25837:3;25833:12;25826:19;;25485:366;;;:::o;25857:419::-;26023:4;26061:2;26050:9;26046:18;26038:26;;26110:9;26104:4;26100:20;26096:1;26085:9;26081:17;26074:47;26138:131;26264:4;26138:131;:::i;:::-;26130:139;;25857:419;;;:::o;26282:147::-;26383:11;26420:3;26405:18;;26282:147;;;;:::o;26435:114::-;;:::o;26555:398::-;26714:3;26735:83;26816:1;26811:3;26735:83;:::i;:::-;26728:90;;26827:93;26916:3;26827:93;:::i;:::-;26945:1;26940:3;26936:11;26929:18;;26555:398;;;:::o;26959:379::-;27143:3;27165:147;27308:3;27165:147;:::i;:::-;27158:154;;27329:3;27322:10;;26959:379;;;:::o;27344:245::-;27484:34;27480:1;27472:6;27468:14;27461:58;27553:28;27548:2;27540:6;27536:15;27529:53;27344:245;:::o;27595:366::-;27737:3;27758:67;27822:2;27817:3;27758:67;:::i;:::-;27751:74;;27834:93;27923:3;27834:93;:::i;:::-;27952:2;27947:3;27943:12;27936:19;;27595:366;;;:::o;27967:419::-;28133:4;28171:2;28160:9;28156:18;28148:26;;28220:9;28214:4;28210:20;28206:1;28195:9;28191:17;28184:47;28248:131;28374:4;28248:131;:::i;:::-;28240:139;;27967:419;;;:::o;28392:98::-;28443:6;28477:5;28471:12;28461:22;;28392:98;;;:::o;28496:168::-;28579:11;28613:6;28608:3;28601:19;28653:4;28648:3;28644:14;28629:29;;28496:168;;;;:::o;28670:373::-;28756:3;28784:38;28816:5;28784:38;:::i;:::-;28838:70;28901:6;28896:3;28838:70;:::i;:::-;28831:77;;28917:65;28975:6;28970:3;28963:4;28956:5;28952:16;28917:65;:::i;:::-;29007:29;29029:6;29007:29;:::i;:::-;29002:3;28998:39;28991:46;;28760:283;28670:373;;;;:::o;29049:640::-;29244:4;29282:3;29271:9;29267:19;29259:27;;29296:71;29364:1;29353:9;29349:17;29340:6;29296:71;:::i;:::-;29377:72;29445:2;29434:9;29430:18;29421:6;29377:72;:::i;:::-;29459;29527:2;29516:9;29512:18;29503:6;29459:72;:::i;:::-;29578:9;29572:4;29568:20;29563:2;29552:9;29548:18;29541:48;29606:76;29677:4;29668:6;29606:76;:::i;:::-;29598:84;;29049:640;;;;;;;:::o;29695:141::-;29751:5;29782:6;29776:13;29767:22;;29798:32;29824:5;29798:32;:::i;:::-;29695:141;;;;:::o;29842:349::-;29911:6;29960:2;29948:9;29939:7;29935:23;29931:32;29928:119;;;29966:79;;:::i;:::-;29928:119;30086:1;30111:63;30166:7;30157:6;30146:9;30142:22;30111:63;:::i;:::-;30101:73;;30057:127;29842:349;;;;:::o;30197:94::-;30230:8;30278:5;30274:2;30270:14;30249:35;;30197:94;;;:::o;30297:::-;30336:7;30365:20;30379:5;30365:20;:::i;:::-;30354:31;;30297:94;;;:::o;30397:100::-;30436:7;30465:26;30485:5;30465:26;:::i;:::-;30454:37;;30397:100;;;:::o;30503:157::-;30608:45;30628:24;30646:5;30628:24;:::i;:::-;30608:45;:::i;:::-;30603:3;30596:58;30503:157;;:::o;30666:256::-;30778:3;30793:75;30864:3;30855:6;30793:75;:::i;:::-;30893:2;30888:3;30884:12;30877:19;;30913:3;30906:10;;30666:256;;;;:::o;30928:180::-;30976:77;30973:1;30966:88;31073:4;31070:1;31063:15;31097:4;31094:1;31087:15;31114:233;31153:3;31176:24;31194:5;31176:24;:::i;:::-;31167:33;;31222:66;31215:5;31212:77;31209:103;;31292:18;;:::i;:::-;31209:103;31339:1;31332:5;31328:13;31321:20;;31114:233;;;:::o

Swarm Source

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