ETH Price: $2,761.97 (+5.25%)

Token

Dunhuang Art (DHA)
 

Overview

Max Total Supply

3,000 DHA

Holders

1,402

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
87668.eth
Balance
1 DHA
0x5750c56094e65e7ae3ba7925ec9b439465756635
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:
DunhuangArt

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 10 : DunhuangArt.sol
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";

pragma solidity ^0.8.7;

contract DunhuangArt is ERC721AQueryable, Ownable, Pausable, ReentrancyGuard {
    event BaseURIChanged(string newBaseURI);
    event WhitelistSaleConfigChanged(WhitelistSaleConfig config);
    event PublicSaleConfigChanged(PublicSaleConfig config);
    event RefundGuaranteeConfigChanged(RefundGuaranteeConfig config);
    event Withdraw(address indexed account, uint256 amount);
    event ContractSealed();

    struct WhitelistSaleConfig {
        uint64 mintQuota;
        uint256 startTime;
        uint256 endTime;
        bytes32 merkleRoot;
        uint256 price;
        uint256 discountPrice;
        bytes32 discountMerkleRoot;
    }

    struct PublicSaleConfig {
        uint256 startTime;
        uint256 price;
    }

    struct RefundGuaranteeConfig {
        uint256 endTime;
        address refundAddress;
    }

    uint64 public constant MAX_TOKEN = 3000;
    uint64 public constant MAX_TOKEN_PER_MINT = 2;

    WhitelistSaleConfig public whitelistSaleConfig;
    PublicSaleConfig public publicSaleConfig;
    RefundGuaranteeConfig public refundGuaranteeConfig;
    bool public contractSealed;
    string public baseURI;
    string public revealingURI;

    uint256[7] private discountFields = [0, 0, 0, 0, 0, 0, 0];
    mapping(uint256 => bool) public hasRefunded;

    constructor() ERC721A("Dunhuang Art", "DHA") {}

    /***********************************|
    |               Core                |
    |__________________________________*/

    function refund(uint256[] calldata tokenIds) external nonReentrant {
        require(isRefundGuaranteeActive(), "Refund expired");

        uint256 refundAmount = 0;
        for (uint256 i = 0; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            require(_msgSender() == ownerOf(tokenId), "Not token owner");
            require(!hasRefunded[tokenId], "Already refunded");
            hasRefunded[tokenId] = true;
            transferFrom(
                _msgSender(),
                refundGuaranteeConfig.refundAddress,
                tokenId
            );

            if (isTokenDiscountSale(tokenId)) {
                refundAmount += whitelistSaleConfig.discountPrice;
            } else {
                refundAmount += publicSaleConfig.price;
            }
        }
        payable(_msgSender()).transfer(refundAmount);
    }

    /**
     * @notice giveaway is used for airdropping to specific addresses.
     * The issuer also reserves tokens through this method.
     * This process is under the supervision of the community.
     * @param address_ the target address of airdrop
     * @param numberOfTokens_ the number of airdrop
     */
    function giveaway(address address_, uint64 numberOfTokens_)
        external
        onlyOwner
        nonReentrant
    {
        require(address_ != address(0), "zero address");
        require(numberOfTokens_ > 0, "invalid number of tokens");
        require(
            totalMinted() + numberOfTokens_ <= MAX_TOKEN,
            "max supply exceeded"
        );
        _safeMint(address_, numberOfTokens_);
    }

    /**
     * @notice whitelistSale is used for whitelist sale.
     * @param numberOfTokens_ quantity
     * @param signature_ merkel proof
     * @param discountSignature_ discount merkel proof
     */
    function whitelistSale(
        uint64 numberOfTokens_,
        bytes32[] calldata signature_,
        bytes32[] calldata discountSignature_
    ) external payable callerIsUser nonReentrant {
        require(isWhitelistSaleEnabled(), "whitelist sale has not enabled");
        require(
            isWhitelistAddress(_msgSender(), signature_),
            "caller is not in whitelist or invalid signature"
        );
        uint64 whitelistMinted = _getAux(_msgSender()) + numberOfTokens_;
        require(
            whitelistMinted <= whitelistSaleConfig.mintQuota,
            "max mint amount per wallet exceeded"
        );

        uint256 price;
        if (isDiscountAddress(_msgSender(), discountSignature_)) {
            price = getWhitelistDiscountPrice();

            uint256 startTokenId = _nextTokenId();
            uint256 end = startTokenId + numberOfTokens_;
            for (uint256 i = startTokenId; i < end; i++) {
                setTokenDiscountSale(i);
            }
        } else {
            price = getWhitelistSalePrice();
        }

        _sale(numberOfTokens_, price);
        _setAux(_msgSender(), whitelistMinted);
    }

    /**
     * @notice publicSale is used for public sale.
     * @param numberOfTokens_ quantity
     */
    function publicSale(uint64 numberOfTokens_)
        external
        payable
        callerIsUser
        nonReentrant
    {
        require(isPublicSaleEnabled(), "public sale has not enabled");
        _sale(numberOfTokens_, getPublicSalePrice());
    }

    /**
     * @notice internal method, _sale is used to sell tokens at the specified unit price.
     * @param numberOfTokens_ quantity
     * @param price_ unit price
     */
    function _sale(uint64 numberOfTokens_, uint256 price_) internal {
        require(numberOfTokens_ > 0, "invalid number of tokens");
        require(
            numberOfTokens_ <= MAX_TOKEN_PER_MINT,
            "can only mint MAX_TOKEN_PER_MINT tokens at a time"
        );
        require(
            totalMinted() + numberOfTokens_ <= MAX_TOKEN,
            "max supply exceeded"
        );
        uint256 amount = price_ * numberOfTokens_;
        require(amount <= msg.value, "ether value sent is not correct");
        _safeMint(_msgSender(), numberOfTokens_);
        refundExcessPayment(amount);
    }

    /**
     * @notice when the amount paid by the user exceeds the actual need, the refund logic will be executed.
     * @param amount_ the actual amount that should be paid
     */
    function refundExcessPayment(uint256 amount_) private {
        if (msg.value > amount_) {
            payable(_msgSender()).transfer(msg.value - amount_);
        }
    }

    /**
     * @notice issuer withdraws the ETH temporarily stored in the contract through this method.
     */
    function withdraw() external onlyOwner nonReentrant {
        require(
            block.timestamp > refundGuaranteeConfig.endTime,
            "Refund period not over"
        );
        uint256 balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
        emit Withdraw(_msgSender(), balance);
    }

    /***********************************|
    |               Getter              |
    |__________________________________*/

    function isTokenRefunded(uint256 tokenId_) public view returns (bool) {
        return hasRefunded[tokenId_];
    }
    
    function refundableTokensOfOwner(address owner)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }

            uint256 size = 0;
            for (uint256 i = 0; i < tokenIds.length; ++i) {
                if (isTokenRefunded(tokenIds[i]) == false) {
                    ++size;
                }
            }

            uint256 j = 0;
            uint256[] memory refundableTokens = new uint256[](size);
            for (uint256 i = 0; i < tokenIds.length; ++i) {
                if (isTokenRefunded(tokenIds[i]) == false) {
                    refundableTokens[j++] = tokenIds[i];
                }
            }
            return refundableTokens;
        }
    }

    function isRefundGuaranteeActive() public view returns (bool) {
        return (block.timestamp <= refundGuaranteeConfig.endTime);
    }

    function getRefundGuaranteeEndTime() public view returns (uint256) {
        return refundGuaranteeConfig.endTime;
    }

    function isTokenDiscountSale(uint256 tokenId_) public view returns (bool) {
        if (tokenId_ >= discountFields.length * 256) {
            return false;
        }

        uint256 i = tokenId_ / 256;
        uint256 j = tokenId_ % 256;

        return discountFields[i] & (1 << j) != 0;
    }

    function setTokenDiscountSale(uint256 tokenId_) private {
        require(tokenId_ < discountFields.length * 256, "out of range");

        uint256 i = tokenId_ / 256;
        uint256 j = tokenId_ % 256;

        discountFields[i] = discountFields[i] | (1 << j);
    }

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

    /**
     * @notice isWhitelistSaleEnabled is used to return whether whitelist sale has been enabled.
     */
    function isWhitelistSaleEnabled() public view returns (bool) {
        if (
            whitelistSaleConfig.endTime > 0 &&
            block.timestamp > whitelistSaleConfig.endTime
        ) {
            return false;
        }
        return
            whitelistSaleConfig.startTime > 0 &&
            block.timestamp > whitelistSaleConfig.startTime &&
            whitelistSaleConfig.price > 0 &&
            whitelistSaleConfig.merkleRoot != "";
    }

    /**
     * @notice isPublicSaleEnabled is used to return whether the public sale has been enabled.
     */
    function isPublicSaleEnabled() public view returns (bool) {
        return
            publicSaleConfig.startTime > 0 &&
            block.timestamp > publicSaleConfig.startTime &&
            publicSaleConfig.price > 0;
    }

    /**
     * @notice isDiscountAddress is used to verify whether the given address_ and signature_ belong to discountMerkleRoot.
     * @param address_ address of the caller
     * @param signature_ merkle proof
     */
    function isDiscountAddress(address address_, bytes32[] calldata signature_)
        public
        view
        returns (bool)
    {
        if (whitelistSaleConfig.discountMerkleRoot == "") {
            return false;
        }
        return
            MerkleProof.verify(
                signature_,
                whitelistSaleConfig.discountMerkleRoot,
                keccak256(abi.encodePacked(address_))
            );
    }

    /**
     * @notice isWhitelistAddress is used to verify whether the given address_ and signature_ belong to merkleRoot.
     * @param address_ address of the caller
     * @param signature_ merkle proof
     */
    function isWhitelistAddress(address address_, bytes32[] calldata signature_)
        public
        view
        returns (bool)
    {
        if (whitelistSaleConfig.merkleRoot == "") {
            return false;
        }
        return
            MerkleProof.verify(
                signature_,
                whitelistSaleConfig.merkleRoot,
                keccak256(abi.encodePacked(address_))
            );
    }

    /**
     * @notice getPublicSalePrice is used to get the price of the public sale.
     * @return price
     */
    function getPublicSalePrice() public view returns (uint256) {
        return publicSaleConfig.price;
    }

    /**
     * @notice getWhitelistDiscountPrice is used to get the price of the whitelist discount sale.
     * @return discountPrice
     */
    function getWhitelistDiscountPrice() public view returns (uint256) {
        return whitelistSaleConfig.discountPrice;
    }

    /**
     * @notice getWhitelistSalePrice is used to get the price of the whitelist sale.
     * @return price
     */
    function getWhitelistSalePrice() public view returns (uint256) {
        return whitelistSaleConfig.price;
    }

    /**
     * @notice totalMinted is used to return the total number of tokens minted.
     * Note that it does not decrease as the token is burnt.
     */
    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    /**
     * @notice _baseURI is used to override the _baseURI method.
     * @return baseURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI_ = _baseURI();
        if (bytes(baseURI_).length == 0) {
            return revealingURI;
        }

        return string(abi.encodePacked(baseURI_, _toString(tokenId), ".json"));
    }

    /***********************************|
    |               Setter              |
    |__________________________________*/

    /**
     * @notice setBaseURI is used to set the base URI in special cases.
     * @param baseURI_ baseURI
     */
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
        emit BaseURIChanged(baseURI_);
    }

    /**
     * @notice setRevealingURI is used to set the revealing URI in special cases.
     * @param revealingURI_ revealingURI
     */
    function setRevealingURI(string calldata revealingURI_) external onlyOwner {
        revealingURI = revealingURI_;
    }

    /**
     * @notice setRefundGuaranteeConfig is used to set the configuration related to refund.
     * This process is under the supervision of the community.
     * @param config_ config
     */
    function setRefundGuaranteeConfig(RefundGuaranteeConfig calldata config_)
        external
        onlyOwner
    {
        require(
            config_.refundAddress != address(0),
            "refund address must not be zero"
        );
        require(
            config_.endTime >= refundGuaranteeConfig.endTime,
            "end time only delay"
        );
        refundGuaranteeConfig = config_;
        emit RefundGuaranteeConfigChanged(config_);
    }

    /**
     * @notice setWhitelistSaleConfig is used to set the configuration related to whitelist sale.
     * This process is under the supervision of the community.
     * @param config_ config
     */
    function setWhitelistSaleConfig(WhitelistSaleConfig calldata config_)
        external
        onlyOwner
    {
        require(config_.price > 0, "sale price must greater than zero");
        require(
            config_.discountPrice > 0,
            "discount price must greater than zero"
        );
        whitelistSaleConfig = config_;
        emit WhitelistSaleConfigChanged(config_);
    }

    /**
     * @notice setPublicSaleConfig is used to set the configuration related to public sale.
     * This process is under the supervision of the community.
     * @param config_ config
     */
    function setPublicSaleConfig(PublicSaleConfig calldata config_)
        external
        onlyOwner
    {
        require(config_.price > 0, "sale price must greater than zero");
        publicSaleConfig = config_;
        emit PublicSaleConfigChanged(config_);
    }

    /***********************************|
    |               Pause               |
    |__________________________________*/

    /**
     * @notice hook function, used to intercept the transfer of token.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        require(!paused(), "token transfer paused");
    }

    /**
     * @notice for the purpose of protecting user assets, under extreme conditions,
     * the circulation of all tokens in the contract needs to be frozen.
     * This process is under the supervision of the community.
     */
    function emergencyPause() external onlyOwner notSealed {
        _pause();
    }

    /**
     * @notice unpause the contract
     */
    function unpause() external onlyOwner notSealed {
        _unpause();
    }

    /**
     * @notice when the project is stable enough, the issuer will call sealContract
     * to give up the permission to call emergencyPause and unpause.
     */
    function sealContract() external onlyOwner {
        contractSealed = true;
        emit ContractSealed();
    }

    /***********************************|
    |             Modifier              |
    |__________________________________*/

    /**
     * @notice for security reasons, CA is not allowed to call sensitive methods.
     */
    modifier callerIsUser() {
        require(tx.origin == _msgSender(), "caller is another contract");
        _;
    }

    /**
     * @notice function call is only allowed when the contract has not been sealed
     */
    modifier notSealed() {
        require(!contractSealed, "contract sealed");
        _;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 4 of 10 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// 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 5 of 10 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 10 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

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

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

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

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

File 7 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// 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 8 of 10 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

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

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

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

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

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

File 9 of 10 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

File 10 of 10 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","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":[],"name":"ContractSealed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"indexed":false,"internalType":"struct DunhuangArt.PublicSaleConfig","name":"config","type":"tuple"}],"name":"PublicSaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address","name":"refundAddress","type":"address"}],"indexed":false,"internalType":"struct DunhuangArt.RefundGuaranteeConfig","name":"config","type":"tuple"}],"name":"RefundGuaranteeConfigChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint64","name":"mintQuota","type":"uint64"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"discountPrice","type":"uint256"},{"internalType":"bytes32","name":"discountMerkleRoot","type":"bytes32"}],"indexed":false,"internalType":"struct DunhuangArt.WhitelistSaleConfig","name":"config","type":"tuple"}],"name":"WhitelistSaleConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_TOKEN","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_MINT","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRefundGuaranteeEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistDiscountPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint64","name":"numberOfTokens_","type":"uint64"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasRefunded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"signature_","type":"bytes32[]"}],"name":"isDiscountAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefundGuaranteeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"isTokenDiscountSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"isTokenRefunded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"signature_","type":"bytes32[]"}],"name":"isWhitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"numberOfTokens_","type":"uint64"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refundGuaranteeConfig","outputs":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address","name":"refundAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"refundableTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealingURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct DunhuangArt.PublicSaleConfig","name":"config_","type":"tuple"}],"name":"setPublicSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address","name":"refundAddress","type":"address"}],"internalType":"struct DunhuangArt.RefundGuaranteeConfig","name":"config_","type":"tuple"}],"name":"setRefundGuaranteeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealingURI_","type":"string"}],"name":"setRevealingURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"mintQuota","type":"uint64"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"discountPrice","type":"uint256"},{"internalType":"bytes32","name":"discountMerkleRoot","type":"bytes32"}],"internalType":"struct DunhuangArt.WhitelistSaleConfig","name":"config_","type":"tuple"}],"name":"setWhitelistSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"numberOfTokens_","type":"uint64"},{"internalType":"bytes32[]","name":"signature_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"discountSignature_","type":"bytes32[]"}],"name":"whitelistSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleConfig","outputs":[{"internalType":"uint64","name":"mintQuota","type":"uint64"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"discountPrice","type":"uint256"},{"internalType":"bytes32","name":"discountMerkleRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101606040526000608081815260a082905260c082905260e0829052610100829052610120829052610140919091526200003e9060189060076200012f565b503480156200004c57600080fd5b50604080518082018252600c81526b111d5b9a1d585b99c8105c9d60a21b60208083019182528351808501909452600384526244484160e81b9084015281519192916200009c9160029162000177565b508051620000b290600390602084019062000177565b5050600160005550620000c533620000dd565b6008805460ff60a01b19169055600160095562000248565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826007810192821562000165579160200282015b8281111562000165578251829060ff1690559160200191906001019062000143565b5062000173929150620001f4565b5090565b82805462000185906200020b565b90600052602060002090601f016020900481019282620001a9576000855562000165565b82601f10620001c457805160ff191683800117855562000165565b8280016001018555821562000165579182015b8281111562000165578251825591602001919060010190620001d7565b5b80821115620001735760008155600101620001f5565b600181811c908216806200022057607f821691505b602082108114156200024257634e487b7160e01b600052602260045260246000fd5b50919050565b613d4c80620002586000396000f3fe6080604052600436106103765760003560e01c80638da5cb5b116101d1578063c23fcdef11610102578063def60126116100a0578063e985e9c51161006f578063e985e9c514610a72578063ecbd68df14610abb578063f2fde38b14610ad0578063faf762bd14610af057600080fd5b8063def60126146109ff578063e1add7d414610a1f578063e2bb193a14610a3f578063e7c75ed714610a5257600080fd5b8063c87b56dd116100dc578063c87b56dd1461097f578063d41da0e01461099f578063d4ef262f146109bf578063dd7f4345146109df57600080fd5b8063c23fcdef14610924578063c4ea084514610954578063c696ad1f1461096c57600080fd5b8063a7a8fed81161016f578063b87ced4e11610149578063b87ced4e146108a2578063b88d4fde146108c2578063bd28c354146108e2578063c23dc68f146108f757600080fd5b8063a7a8fed814610853578063aa613df514610868578063b65016371461088857600080fd5b806399a2557a116101ab57806399a2557a146107ca578063a22cb465146107ea578063a2309ff81461080a578063a3fd2c441461082357600080fd5b80638da5cb5b146107825780638e8bdd0d146107a057806395d89b41146107b557600080fd5b8063576fd94d116102ab57806368bd580e1161024957806370a082311161022357806370a0823114610700578063715018a6146107205780638462151c146107355780638b52c7621461076257600080fd5b806368bd580e146106c05780636c0360eb146106d55780636e1bd323146106ea57600080fd5b80636352211e116102855780636352211e146105c6578063656cf918146105e657806366eb085a1461065f578063677bb2e1146106a057600080fd5b8063576fd94d1461054c5780635bbb21771461057a5780635c975abb146105a757600080fd5b80633f4338941161031857806342842e0e116102f257806342842e0e146104e25780634a9a78641461050257806351858e271461051757806355f804b31461052c57600080fd5b80633f433894146104885780633f4ba83a146104b85780634009920d146104cd57600080fd5b8063095ea7b311610354578063095ea7b31461040a57806318160ddd1461042c57806323b872dd146104535780633ccfd60b1461047357600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d2575b600080fd5b34801561038757600080fd5b5061039b61039636600461337f565b610b05565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610ba2565b6040516103a791906133f4565b3480156103de57600080fd5b506103f26103ed366004613407565b610c34565b6040516001600160a01b0390911681526020016103a7565b34801561041657600080fd5b5061042a610425366004613435565b610c91565b005b34801561043857600080fd5b5060015460005403600019015b6040519081526020016103a7565b34801561045f57600080fd5b5061042a61046e366004613461565b610d57565b34801561047f57600080fd5b5061042a610f41565b34801561049457600080fd5b5061039b6104a3366004613407565b6000908152601f602052604090205460ff1690565b3480156104c457600080fd5b5061042a611064565b3480156104d957600080fd5b5061039b6110c9565b3480156104ee57600080fd5b5061042a6104fd366004613461565b6110f0565b34801561050e57600080fd5b506103c5611110565b34801561052357600080fd5b5061042a61119e565b34801561053857600080fd5b5061042a6105473660046134a2565b611201565b34801561055857600080fd5b50610561600281565b60405167ffffffffffffffff90911681526020016103a7565b34801561058657600080fd5b5061059a610595366004613560565b611253565b6040516103a791906135a2565b3480156105b357600080fd5b50600854600160a01b900460ff1661039b565b3480156105d257600080fd5b506103f26105e1366004613407565b61131f565b3480156105f257600080fd5b50600a54600b54600c54600d54600e54600f5460105461061f9667ffffffffffffffff1695949392919087565b6040805167ffffffffffffffff90981688526020880196909652948601939093526060850191909152608084015260a083015260c082015260e0016103a7565b34801561066b57600080fd5b5060135460145461068391906001600160a01b031682565b604080519283526001600160a01b039091166020830152016103a7565b3480156106ac57600080fd5b5061039b6106bb366004613407565b61132a565b3480156106cc57600080fd5b5061042a61138b565b3480156106e157600080fd5b506103c56113cb565b3480156106f657600080fd5b50610561610bb881565b34801561070c57600080fd5b5061044561071b36600461361f565b6113d8565b34801561072c57600080fd5b5061042a611440565b34801561074157600080fd5b5061075561075036600461361f565b611452565b6040516103a7919061363c565b34801561076e57600080fd5b5061075561077d36600461361f565b61155d565b34801561078e57600080fd5b506008546001600160a01b03166103f2565b3480156107ac57600080fd5b50601254610445565b3480156107c157600080fd5b506103c5611772565b3480156107d657600080fd5b506107556107e5366004613674565b611781565b3480156107f657600080fd5b5061042a6108053660046136a9565b611926565b34801561081657600080fd5b5060005460001901610445565b34801561082f57600080fd5b5060115460125461083e919082565b604080519283526020830191909152016103a7565b34801561085f57600080fd5b50600f54610445565b34801561087457600080fd5b5061042a610883366004613560565b6119d5565b34801561089457600080fd5b5060155461039b9060ff1681565b3480156108ae57600080fd5b5061042a6108bd3660046136ff565b611c23565b3480156108ce57600080fd5b5061042a6108dd366004613731565b611cd5565b3480156108ee57600080fd5b50600e54610445565b34801561090357600080fd5b50610917610912366004613407565b611d1f565b6040516103a79190613811565b34801561093057600080fd5b5061039b61093f366004613407565b601f6020526000908152604090205460ff1681565b34801561096057600080fd5b5060135442111561039b565b61042a61097a36600461386c565b611da7565b34801561098b57600080fd5b506103c561099a366004613407565b612082565b3480156109ab57600080fd5b5061039b6109ba3660046138ef565b61219e565b3480156109cb57600080fd5b5061042a6109da366004613944565b61222f565b3480156109eb57600080fd5b5061042a6109fa3660046136ff565b61234e565b348015610a0b57600080fd5b5061042a610a1a3660046134a2565b612451565b348015610a2b57600080fd5b5061042a610a3a366004613956565b612465565b61042a610a4d366004613984565b612605565b348015610a5e57600080fd5b5061039b610a6d3660046138ef565b61271a565b348015610a7e57600080fd5b5061039b610a8d3660046139a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ac757600080fd5b5061039b61278c565b348015610adc57600080fd5b5061042a610aeb36600461361f565b6127db565b348015610afc57600080fd5b50601354610445565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610b6857507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b9c57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610bb1906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd906139cf565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b5050505050905090565b6000610c3f8261286b565b610c75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c9c8261131f565b9050336001600160a01b03821614610cee57610cb88133610a8d565b610cee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d62826128a0565b9050836001600160a01b0316816001600160a01b031614610daf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610e1557610ddf8633610a8d565b610e15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610e55576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e628686866001612922565b8015610e6d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610ef85760018401600081815260046020526040902054610ef6576000548114610ef65760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610f4961297c565b60026009541415610fa15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556013544211610ff75760405162461bcd60e51b815260206004820152601660248201527f526566756e6420706572696f64206e6f74206f766572000000000000000000006044820152606401610f98565b6040514790339082156108fc029083906000818181858888f19350505050158015611026573d6000803e3d6000fd5b5060405181815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a2506001600955565b61106c61297c565b60155460ff16156110bf5760405162461bcd60e51b815260206004820152600f60248201527f636f6e7472616374207365616c656400000000000000000000000000000000006044820152606401610f98565b6110c76129d6565b565b601154600090158015906110de575060115442115b80156110eb575060125415155b905090565b61110b83838360405180602001604052806000815250611cd5565b505050565b6017805461111d906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611149906139cf565b80156111965780601f1061116b57610100808354040283529160200191611196565b820191906000526020600020905b81548152906001019060200180831161117957829003601f168201915b505050505081565b6111a661297c565b60155460ff16156111f95760405162461bcd60e51b815260206004820152600f60248201527f636f6e7472616374207365616c656400000000000000000000000000000000006044820152606401610f98565b6110c7612a2b565b61120961297c565b611215601683836132d0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611247929190613a04565b60405180910390a15050565b60608160008167ffffffffffffffff8111156112715761127161371b565b6040519080825280602002602001820160405280156112c357816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161128f5790505b50905060005b828114611316576112f18686838181106112e5576112e5613a33565b90506020020135611d1f565b82828151811061130357611303613a33565b60209081029190910101526001016112c9565b50949350505050565b6000610b9c826128a0565b60006113396007610100613a5f565b821061134757506000919050565b600061135561010084613a94565b9050600061136561010085613aa8565b90506001811b6018836007811061137e5761137e613a33565b0154161515949350505050565b61139361297c565b6015805460ff191660011790556040517fa0058887862c892ade184993a48c672897bca2e36ebf7fa2b4703d4805fc3a0190600090a1565b6016805461111d906139cf565b60006001600160a01b03821661141a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61144861297c565b6110c76000612a6e565b60606000806000611462856113d8565b905060008167ffffffffffffffff81111561147f5761147f61371b565b6040519080825280602002602001820160405280156114a8578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611551576114e381612acd565b91508160400151156114f457611549565b81516001600160a01b03161561150957815194505b876001600160a01b0316856001600160a01b03161415611549578083878060010198508151811061153c5761153c613a33565b6020026020010181815250505b6001016114d3565b50909695505050505050565b6060600080600061156d856113d8565b905060008167ffffffffffffffff81111561158a5761158a61371b565b6040519080825280602002602001820160405280156115b3578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b83861461165c576115ee81612acd565b91508160400151156115ff57611654565b81516001600160a01b03161561161457815194505b876001600160a01b0316856001600160a01b03161415611654578083878060010198508151811061164757611647613a33565b6020026020010181815250505b6001016115de565b506000805b83518110156116af5761169c84828151811061167f5761167f613a33565b60200260200101516000908152601f602052604090205460ff1690565b6116a7578160010191505b600101611661565b506000808267ffffffffffffffff8111156116cc576116cc61371b565b6040519080825280602002602001820160405280156116f5578160200160208202803683370190505b50905060005b85518110156117645761171986828151811061167f5761167f613a33565b61175c5785818151811061172f5761172f613a33565b602002602001015182848060010195508151811061174f5761174f613a33565b6020026020010181815250505b6001016116fb565b509998505050505050505050565b606060038054610bb1906139cf565b60608183106117bc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117c860005490565b905060018510156117d857600194505b808411156117e4578093505b60006117ef876113d8565b90508486101561180e5785850381811015611808578091505b50611812565b5060005b60008167ffffffffffffffff81111561182d5761182d61371b565b604051908082528060200260200182016040528015611856578160200160208202803683370190505b5090508161186957935061191f92505050565b600061187488611d1f565b905060008160400151611885575080515b885b8881141580156118975750848714155b15611913576118a581612acd565b92508260400151156118b65761190b565b82516001600160a01b0316156118cb57825191505b8a6001600160a01b0316826001600160a01b0316141561190b57808488806001019950815181106118fe576118fe613a33565b6020026020010181815250505b600101611887565b50505092835250909150505b9392505050565b6001600160a01b038216331415611969576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415611a285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b6002600955601354421115611a7f5760405162461bcd60e51b815260206004820152600e60248201527f526566756e6420657870697265640000000000000000000000000000000000006044820152606401610f98565b6000805b82811015611bea576000848483818110611a9f57611a9f613a33565b905060200201359050611ab18161131f565b6001600160a01b0316336001600160a01b031614611b115760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420746f6b656e206f776e657200000000000000000000000000000000006044820152606401610f98565b6000818152601f602052604090205460ff1615611b705760405162461bcd60e51b815260206004820152601060248201527f416c726561647920726566756e646564000000000000000000000000000000006044820152606401610f98565b6000818152601f60205260409020805460ff19166001179055611ba5611b933390565b6014546001600160a01b031683610d57565b611bae8161132a565b15611bc757600f54611bc09084613abc565b9250611bd7565b601254611bd49084613abc565b92505b5080611be281613ad4565b915050611a83565b50604051339082156108fc029083906000818181858888f19350505050158015611c18573d6000803e3d6000fd5b505060016009555050565b611c2b61297c565b6000816020013511611c895760405162461bcd60e51b815260206004820152602160248201527f73616c65207072696365206d7573742067726561746572207468616e207a65726044820152606f60f81b6064820152608401610f98565b80356011819055602080830135601281905560408051938452918301527fd815bc9e7873606b1c4c2c8ea805b2b430b0c53a00235c5011043d6c486753dc91015b60405180910390a150565b611ce0848484610d57565b6001600160a01b0383163b15611d1957611cfc84848484612b4c565b611d19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080611d7857506000548310155b15611d835792915050565b611d8c83612acd565b9050806040015115611d9e5792915050565b61191f83612c43565b323314611df65760405162461bcd60e51b815260206004820152601a60248201527f63616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610f98565b60026009541415611e495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b6002600955611e5661278c565b611ea25760405162461bcd60e51b815260206004820152601e60248201527f77686974656c6973742073616c6520686173206e6f7420656e61626c656400006044820152606401610f98565b611ead33858561219e565b611f1f5760405162461bcd60e51b815260206004820152602f60248201527f63616c6c6572206973206e6f7420696e2077686974656c697374206f7220696e60448201527f76616c6964207369676e617475726500000000000000000000000000000000006064820152608401610f98565b33600090815260056020526040812054611f3d90879060c01c613aef565b600a5490915067ffffffffffffffff9081169082161115611fc65760405162461bcd60e51b815260206004820152602360248201527f6d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560448201527f64656400000000000000000000000000000000000000000000000000000000006064820152608401610f98565b6000611fd333858561271a565b156120245750600f546000805490611ff567ffffffffffffffff8a1683613abc565b9050815b8181101561201c5761200a81612cbb565b8061201481613ad4565b915050611ff9565b505050612029565b50600e545b6120338782612d6a565b612074336001600160a01b03166000908152600560205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff1660c085901b179055565b505060016009555050505050565b606061208d8261286b565b6120c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120cd612f3d565b905080516000141561216c57601780546120e6906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612112906139cf565b801561215f5780601f106121345761010080835404028352916020019161215f565b820191906000526020600020905b81548152906001019060200180831161214257829003601f168201915b5050505050915050919050565b8061217684612f4c565b604051602001612187929190613b1b565b604051602081830303815290604052915050919050565b600d546000906121b05750600061191f565b61222783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff1960608b901b16602082015290925060340190505b60405160208183030381529060405280519060200120612f8e565b949350505050565b61223761297c565b60008160800135116122955760405162461bcd60e51b815260206004820152602160248201527f73616c65207072696365206d7573742067726561746572207468616e207a65726044820152606f60f81b6064820152608401610f98565b60008160a001351161230f5760405162461bcd60e51b815260206004820152602560248201527f646973636f756e74207072696365206d7573742067726561746572207468616e60448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610f98565b80600a61231c8282613b72565b9050507f82c09fc683a7325afa08668ccc1c2e21d722a999276683d180760dcc3e7ac0d981604051611cca9190613bd9565b61235661297c565b6000612368604083016020840161361f565b6001600160a01b031614156123bf5760405162461bcd60e51b815260206004820152601f60248201527f726566756e642061646472657373206d757374206e6f74206265207a65726f006044820152606401610f98565b601354813510156124125760405162461bcd60e51b815260206004820152601360248201527f656e642074696d65206f6e6c792064656c6179000000000000000000000000006044820152606401610f98565b80601361241f8282613c38565b9050507f484e4a9b0af406fba77167525de492e863e88ec4b429819ce0da0cb75af6d87781604051611cca9190613c7a565b61245961297c565b61110b601783836132d0565b61246d61297c565b600260095414156124c05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b60026009556001600160a01b03821661251b5760405162461bcd60e51b815260206004820152600c60248201527f7a65726f206164647265737300000000000000000000000000000000000000006044820152606401610f98565b60008167ffffffffffffffff16116125755760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610f98565b610bb867ffffffffffffffff82166125906000546000190190565b61259a9190613abc565b11156125e85760405162461bcd60e51b815260206004820152601360248201527f6d617820737570706c79206578636565646564000000000000000000000000006044820152606401610f98565b6125fc828267ffffffffffffffff16612fa4565b50506001600955565b3233146126545760405162461bcd60e51b815260206004820152601a60248201527f63616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610f98565b600260095414156126a75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b60026009556126b46110c9565b6127005760405162461bcd60e51b815260206004820152601b60248201527f7075626c69632073616c6520686173206e6f7420656e61626c656400000000006044820152606401610f98565b6127128161270d60125490565b612d6a565b506001600955565b60105460009061272c5750600061191f565b612227838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905061220c565b600c54600090158015906127a15750600c5442115b156127ac5750600090565b600b54158015906127be5750600b5442115b80156127cb5750600e5415155b80156110eb575050600d54151590565b6127e361297c565b6001600160a01b03811661285f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f98565b61286881612a6e565b50565b60008160011115801561287f575060005482105b8015610b9c575050600090815260046020526040902054600160e01b161590565b600081806001116128f0576000548110156128f057600081815260046020526040902054600160e01b81166128ee575b8061191f5750600019016000818152600460205260409020546128d0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600854600160a01b900460ff1615611d195760405162461bcd60e51b815260206004820152601560248201527f746f6b656e207472616e736665722070617573656400000000000000000000006044820152606401610f98565b6008546001600160a01b031633146110c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f98565b6129de612fc2565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612a3361301b565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a0e3390565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b9c90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b81903390899088908890600401613ca6565b602060405180830381600087803b158015612b9b57600080fd5b505af1925050508015612bcb575060408051601f3d908101601f19168201909252612bc891810190613ce2565b60015b612c26573d808015612bf9576040519150601f19603f3d011682016040523d82523d6000602084013e612bfe565b606091505b508051612c1e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610b9c612c73836128a0565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b612cc86007610100613a5f565b8110612d165760405162461bcd60e51b815260206004820152600c60248201527f6f7574206f662072616e676500000000000000000000000000000000000000006044820152606401610f98565b6000612d2461010083613a94565b90506000612d3461010084613aa8565b90506001811b60188360078110612d4d57612d4d613a33565b01541760188360078110612d6357612d63613a33565b0155505050565b60008267ffffffffffffffff1611612dc45760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610f98565b600267ffffffffffffffff83161115612e455760405162461bcd60e51b815260206004820152603160248201527f63616e206f6e6c79206d696e74204d41585f544f4b454e5f5045525f4d494e5460448201527f20746f6b656e7320617420612074696d650000000000000000000000000000006064820152608401610f98565b610bb867ffffffffffffffff8316612e606000546000190190565b612e6a9190613abc565b1115612eb85760405162461bcd60e51b815260206004820152601360248201527f6d617820737570706c79206578636565646564000000000000000000000000006044820152606401610f98565b6000612ece67ffffffffffffffff841683613a5f565b905034811115612f205760405162461bcd60e51b815260206004820152601f60248201527f65746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610f98565b612f34338467ffffffffffffffff16612fa4565b61110b81613075565b606060168054610bb1906139cf565b604080516080019081905280825b600183039250600a81066030018353600a900480612f7757612f7c565b612f5a565b50819003601f19909101908152919050565b600082612f9b85846130b3565b14949350505050565b612fbe828260405180602001604052806000815250613100565b5050565b600854600160a01b900460ff166110c75760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610f98565b600854600160a01b900460ff16156110c75760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610f98565b8034111561286857336108fc61308b8334613cff565b6040518115909202916000818181858888f19350505050158015612fbe573d6000803e3d6000fd5b600081815b84518110156130f8576130e4828683815181106130d7576130d7613a33565b602002602001015161316d565b9150806130f081613ad4565b9150506130b8565b509392505050565b61310a8383613199565b6001600160a01b0383163b1561110b576000548281035b6131346000868380600101945086612b4c565b613151576040516368d2bf6b60e11b815260040160405180910390fd5b81811061312157816000541461316657600080fd5b5050505050565b600081831061318957600082815260208490526040902061191f565b5060009182526020526040902090565b600054816131d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e06000848385612922565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461328f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613257565b50816132c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b8280546132dc906139cf565b90600052602060002090601f0160209004810192826132fe5760008555613344565b82601f106133175782800160ff19823516178555613344565b82800160010185558215613344579182015b82811115613344578235825591602001919060010190613329565b50613350929150613354565b5090565b5b808211156133505760008155600101613355565b6001600160e01b03198116811461286857600080fd5b60006020828403121561339157600080fd5b813561191f81613369565b60005b838110156133b757818101518382015260200161339f565b83811115611d195750506000910152565b600081518084526133e081602086016020860161339c565b601f01601f19169290920160200192915050565b60208152600061191f60208301846133c8565b60006020828403121561341957600080fd5b5035919050565b6001600160a01b038116811461286857600080fd5b6000806040838503121561344857600080fd5b823561345381613420565b946020939093013593505050565b60008060006060848603121561347657600080fd5b833561348181613420565b9250602084013561349181613420565b929592945050506040919091013590565b600080602083850312156134b557600080fd5b823567ffffffffffffffff808211156134cd57600080fd5b818501915085601f8301126134e157600080fd5b8135818111156134f057600080fd5b86602082850101111561350257600080fd5b60209290920196919550909350505050565b60008083601f84011261352657600080fd5b50813567ffffffffffffffff81111561353e57600080fd5b6020830191508360208260051b850101111561355957600080fd5b9250929050565b6000806020838503121561357357600080fd5b823567ffffffffffffffff81111561358a57600080fd5b61359685828601613514565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b818110156115515761360c8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b92840192608092909201916001016135be565b60006020828403121561363157600080fd5b813561191f81613420565b6020808252825182820181905260009190848201906040850190845b8181101561155157835183529284019291840191600101613658565b60008060006060848603121561368957600080fd5b833561369481613420565b95602085013595506040909401359392505050565b600080604083850312156136bc57600080fd5b82356136c781613420565b9150602083013580151581146136dc57600080fd5b809150509250929050565b6000604082840312156136f957600080fd5b50919050565b60006040828403121561371157600080fd5b61191f83836136e7565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561374757600080fd5b843561375281613420565b9350602085013561376281613420565b925060408501359150606085013567ffffffffffffffff8082111561378657600080fd5b818701915087601f83011261379a57600080fd5b8135818111156137ac576137ac61371b565b604051601f8201601f19908116603f011681019083821181831017156137d4576137d461371b565b816040528281528a60208487010111156137ed57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610b9c565b67ffffffffffffffff8116811461286857600080fd5b60008060008060006060868803121561388457600080fd5b853561388f81613856565b9450602086013567ffffffffffffffff808211156138ac57600080fd5b6138b889838a01613514565b909650945060408801359150808211156138d157600080fd5b506138de88828901613514565b969995985093965092949392505050565b60008060006040848603121561390457600080fd5b833561390f81613420565b9250602084013567ffffffffffffffff81111561392b57600080fd5b61393786828701613514565b9497909650939450505050565b600060e082840312156136f957600080fd5b6000806040838503121561396957600080fd5b823561397481613420565b915060208301356136dc81613856565b60006020828403121561399657600080fd5b813561191f81613856565b600080604083850312156139b457600080fd5b82356139bf81613420565b915060208301356136dc81613420565b600181811c908216806139e357607f821691505b602082108114156136f957634e487b7160e01b600052602260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613a7957613a79613a49565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613aa357613aa3613a7e565b500490565b600082613ab757613ab7613a7e565b500690565b60008219821115613acf57613acf613a49565b500190565b6000600019821415613ae857613ae8613a49565b5060010190565b600067ffffffffffffffff808316818516808303821115613b1257613b12613a49565b01949350505050565b60008351613b2d81846020880161339c565b835190830190613b4181836020880161339c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b8135613b7d81613856565b67ffffffffffffffff811667ffffffffffffffff19835416178255506020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201555050565b60e081018235613be881613856565b67ffffffffffffffff81168352506020830135602083015260408301356040830152606083013560608301526080830135608083015260a083013560a083015260c083013560c083015292915050565b81358155600181016020830135613c4e81613420565b6001600160a01b03811673ffffffffffffffffffffffffffffffffffffffff1983541617825550505050565b81358152604081016020830135613c9081613420565b6001600160a01b03811660208401525092915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613cd860808301846133c8565b9695505050505050565b600060208284031215613cf457600080fd5b815161191f81613369565b600082821015613d1157613d11613a49565b50039056fea26469706673582212206d4f531c2bd4537d058ade98102b59815ebeb80640af737421114859d3dc761364736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103765760003560e01c80638da5cb5b116101d1578063c23fcdef11610102578063def60126116100a0578063e985e9c51161006f578063e985e9c514610a72578063ecbd68df14610abb578063f2fde38b14610ad0578063faf762bd14610af057600080fd5b8063def60126146109ff578063e1add7d414610a1f578063e2bb193a14610a3f578063e7c75ed714610a5257600080fd5b8063c87b56dd116100dc578063c87b56dd1461097f578063d41da0e01461099f578063d4ef262f146109bf578063dd7f4345146109df57600080fd5b8063c23fcdef14610924578063c4ea084514610954578063c696ad1f1461096c57600080fd5b8063a7a8fed81161016f578063b87ced4e11610149578063b87ced4e146108a2578063b88d4fde146108c2578063bd28c354146108e2578063c23dc68f146108f757600080fd5b8063a7a8fed814610853578063aa613df514610868578063b65016371461088857600080fd5b806399a2557a116101ab57806399a2557a146107ca578063a22cb465146107ea578063a2309ff81461080a578063a3fd2c441461082357600080fd5b80638da5cb5b146107825780638e8bdd0d146107a057806395d89b41146107b557600080fd5b8063576fd94d116102ab57806368bd580e1161024957806370a082311161022357806370a0823114610700578063715018a6146107205780638462151c146107355780638b52c7621461076257600080fd5b806368bd580e146106c05780636c0360eb146106d55780636e1bd323146106ea57600080fd5b80636352211e116102855780636352211e146105c6578063656cf918146105e657806366eb085a1461065f578063677bb2e1146106a057600080fd5b8063576fd94d1461054c5780635bbb21771461057a5780635c975abb146105a757600080fd5b80633f4338941161031857806342842e0e116102f257806342842e0e146104e25780634a9a78641461050257806351858e271461051757806355f804b31461052c57600080fd5b80633f433894146104885780633f4ba83a146104b85780634009920d146104cd57600080fd5b8063095ea7b311610354578063095ea7b31461040a57806318160ddd1461042c57806323b872dd146104535780633ccfd60b1461047357600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d2575b600080fd5b34801561038757600080fd5b5061039b61039636600461337f565b610b05565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610ba2565b6040516103a791906133f4565b3480156103de57600080fd5b506103f26103ed366004613407565b610c34565b6040516001600160a01b0390911681526020016103a7565b34801561041657600080fd5b5061042a610425366004613435565b610c91565b005b34801561043857600080fd5b5060015460005403600019015b6040519081526020016103a7565b34801561045f57600080fd5b5061042a61046e366004613461565b610d57565b34801561047f57600080fd5b5061042a610f41565b34801561049457600080fd5b5061039b6104a3366004613407565b6000908152601f602052604090205460ff1690565b3480156104c457600080fd5b5061042a611064565b3480156104d957600080fd5b5061039b6110c9565b3480156104ee57600080fd5b5061042a6104fd366004613461565b6110f0565b34801561050e57600080fd5b506103c5611110565b34801561052357600080fd5b5061042a61119e565b34801561053857600080fd5b5061042a6105473660046134a2565b611201565b34801561055857600080fd5b50610561600281565b60405167ffffffffffffffff90911681526020016103a7565b34801561058657600080fd5b5061059a610595366004613560565b611253565b6040516103a791906135a2565b3480156105b357600080fd5b50600854600160a01b900460ff1661039b565b3480156105d257600080fd5b506103f26105e1366004613407565b61131f565b3480156105f257600080fd5b50600a54600b54600c54600d54600e54600f5460105461061f9667ffffffffffffffff1695949392919087565b6040805167ffffffffffffffff90981688526020880196909652948601939093526060850191909152608084015260a083015260c082015260e0016103a7565b34801561066b57600080fd5b5060135460145461068391906001600160a01b031682565b604080519283526001600160a01b039091166020830152016103a7565b3480156106ac57600080fd5b5061039b6106bb366004613407565b61132a565b3480156106cc57600080fd5b5061042a61138b565b3480156106e157600080fd5b506103c56113cb565b3480156106f657600080fd5b50610561610bb881565b34801561070c57600080fd5b5061044561071b36600461361f565b6113d8565b34801561072c57600080fd5b5061042a611440565b34801561074157600080fd5b5061075561075036600461361f565b611452565b6040516103a7919061363c565b34801561076e57600080fd5b5061075561077d36600461361f565b61155d565b34801561078e57600080fd5b506008546001600160a01b03166103f2565b3480156107ac57600080fd5b50601254610445565b3480156107c157600080fd5b506103c5611772565b3480156107d657600080fd5b506107556107e5366004613674565b611781565b3480156107f657600080fd5b5061042a6108053660046136a9565b611926565b34801561081657600080fd5b5060005460001901610445565b34801561082f57600080fd5b5060115460125461083e919082565b604080519283526020830191909152016103a7565b34801561085f57600080fd5b50600f54610445565b34801561087457600080fd5b5061042a610883366004613560565b6119d5565b34801561089457600080fd5b5060155461039b9060ff1681565b3480156108ae57600080fd5b5061042a6108bd3660046136ff565b611c23565b3480156108ce57600080fd5b5061042a6108dd366004613731565b611cd5565b3480156108ee57600080fd5b50600e54610445565b34801561090357600080fd5b50610917610912366004613407565b611d1f565b6040516103a79190613811565b34801561093057600080fd5b5061039b61093f366004613407565b601f6020526000908152604090205460ff1681565b34801561096057600080fd5b5060135442111561039b565b61042a61097a36600461386c565b611da7565b34801561098b57600080fd5b506103c561099a366004613407565b612082565b3480156109ab57600080fd5b5061039b6109ba3660046138ef565b61219e565b3480156109cb57600080fd5b5061042a6109da366004613944565b61222f565b3480156109eb57600080fd5b5061042a6109fa3660046136ff565b61234e565b348015610a0b57600080fd5b5061042a610a1a3660046134a2565b612451565b348015610a2b57600080fd5b5061042a610a3a366004613956565b612465565b61042a610a4d366004613984565b612605565b348015610a5e57600080fd5b5061039b610a6d3660046138ef565b61271a565b348015610a7e57600080fd5b5061039b610a8d3660046139a1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ac757600080fd5b5061039b61278c565b348015610adc57600080fd5b5061042a610aeb36600461361f565b6127db565b348015610afc57600080fd5b50601354610445565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610b6857507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b9c57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610bb1906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd906139cf565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b5050505050905090565b6000610c3f8261286b565b610c75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c9c8261131f565b9050336001600160a01b03821614610cee57610cb88133610a8d565b610cee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d62826128a0565b9050836001600160a01b0316816001600160a01b031614610daf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610e1557610ddf8633610a8d565b610e15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610e55576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e628686866001612922565b8015610e6d57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610ef85760018401600081815260046020526040902054610ef6576000548114610ef65760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610f4961297c565b60026009541415610fa15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556013544211610ff75760405162461bcd60e51b815260206004820152601660248201527f526566756e6420706572696f64206e6f74206f766572000000000000000000006044820152606401610f98565b6040514790339082156108fc029083906000818181858888f19350505050158015611026573d6000803e3d6000fd5b5060405181815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a2506001600955565b61106c61297c565b60155460ff16156110bf5760405162461bcd60e51b815260206004820152600f60248201527f636f6e7472616374207365616c656400000000000000000000000000000000006044820152606401610f98565b6110c76129d6565b565b601154600090158015906110de575060115442115b80156110eb575060125415155b905090565b61110b83838360405180602001604052806000815250611cd5565b505050565b6017805461111d906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611149906139cf565b80156111965780601f1061116b57610100808354040283529160200191611196565b820191906000526020600020905b81548152906001019060200180831161117957829003601f168201915b505050505081565b6111a661297c565b60155460ff16156111f95760405162461bcd60e51b815260206004820152600f60248201527f636f6e7472616374207365616c656400000000000000000000000000000000006044820152606401610f98565b6110c7612a2b565b61120961297c565b611215601683836132d0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611247929190613a04565b60405180910390a15050565b60608160008167ffffffffffffffff8111156112715761127161371b565b6040519080825280602002602001820160405280156112c357816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161128f5790505b50905060005b828114611316576112f18686838181106112e5576112e5613a33565b90506020020135611d1f565b82828151811061130357611303613a33565b60209081029190910101526001016112c9565b50949350505050565b6000610b9c826128a0565b60006113396007610100613a5f565b821061134757506000919050565b600061135561010084613a94565b9050600061136561010085613aa8565b90506001811b6018836007811061137e5761137e613a33565b0154161515949350505050565b61139361297c565b6015805460ff191660011790556040517fa0058887862c892ade184993a48c672897bca2e36ebf7fa2b4703d4805fc3a0190600090a1565b6016805461111d906139cf565b60006001600160a01b03821661141a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61144861297c565b6110c76000612a6e565b60606000806000611462856113d8565b905060008167ffffffffffffffff81111561147f5761147f61371b565b6040519080825280602002602001820160405280156114a8578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611551576114e381612acd565b91508160400151156114f457611549565b81516001600160a01b03161561150957815194505b876001600160a01b0316856001600160a01b03161415611549578083878060010198508151811061153c5761153c613a33565b6020026020010181815250505b6001016114d3565b50909695505050505050565b6060600080600061156d856113d8565b905060008167ffffffffffffffff81111561158a5761158a61371b565b6040519080825280602002602001820160405280156115b3578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b83861461165c576115ee81612acd565b91508160400151156115ff57611654565b81516001600160a01b03161561161457815194505b876001600160a01b0316856001600160a01b03161415611654578083878060010198508151811061164757611647613a33565b6020026020010181815250505b6001016115de565b506000805b83518110156116af5761169c84828151811061167f5761167f613a33565b60200260200101516000908152601f602052604090205460ff1690565b6116a7578160010191505b600101611661565b506000808267ffffffffffffffff8111156116cc576116cc61371b565b6040519080825280602002602001820160405280156116f5578160200160208202803683370190505b50905060005b85518110156117645761171986828151811061167f5761167f613a33565b61175c5785818151811061172f5761172f613a33565b602002602001015182848060010195508151811061174f5761174f613a33565b6020026020010181815250505b6001016116fb565b509998505050505050505050565b606060038054610bb1906139cf565b60608183106117bc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117c860005490565b905060018510156117d857600194505b808411156117e4578093505b60006117ef876113d8565b90508486101561180e5785850381811015611808578091505b50611812565b5060005b60008167ffffffffffffffff81111561182d5761182d61371b565b604051908082528060200260200182016040528015611856578160200160208202803683370190505b5090508161186957935061191f92505050565b600061187488611d1f565b905060008160400151611885575080515b885b8881141580156118975750848714155b15611913576118a581612acd565b92508260400151156118b65761190b565b82516001600160a01b0316156118cb57825191505b8a6001600160a01b0316826001600160a01b0316141561190b57808488806001019950815181106118fe576118fe613a33565b6020026020010181815250505b600101611887565b50505092835250909150505b9392505050565b6001600160a01b038216331415611969576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415611a285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b6002600955601354421115611a7f5760405162461bcd60e51b815260206004820152600e60248201527f526566756e6420657870697265640000000000000000000000000000000000006044820152606401610f98565b6000805b82811015611bea576000848483818110611a9f57611a9f613a33565b905060200201359050611ab18161131f565b6001600160a01b0316336001600160a01b031614611b115760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420746f6b656e206f776e657200000000000000000000000000000000006044820152606401610f98565b6000818152601f602052604090205460ff1615611b705760405162461bcd60e51b815260206004820152601060248201527f416c726561647920726566756e646564000000000000000000000000000000006044820152606401610f98565b6000818152601f60205260409020805460ff19166001179055611ba5611b933390565b6014546001600160a01b031683610d57565b611bae8161132a565b15611bc757600f54611bc09084613abc565b9250611bd7565b601254611bd49084613abc565b92505b5080611be281613ad4565b915050611a83565b50604051339082156108fc029083906000818181858888f19350505050158015611c18573d6000803e3d6000fd5b505060016009555050565b611c2b61297c565b6000816020013511611c895760405162461bcd60e51b815260206004820152602160248201527f73616c65207072696365206d7573742067726561746572207468616e207a65726044820152606f60f81b6064820152608401610f98565b80356011819055602080830135601281905560408051938452918301527fd815bc9e7873606b1c4c2c8ea805b2b430b0c53a00235c5011043d6c486753dc91015b60405180910390a150565b611ce0848484610d57565b6001600160a01b0383163b15611d1957611cfc84848484612b4c565b611d19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080611d7857506000548310155b15611d835792915050565b611d8c83612acd565b9050806040015115611d9e5792915050565b61191f83612c43565b323314611df65760405162461bcd60e51b815260206004820152601a60248201527f63616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610f98565b60026009541415611e495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b6002600955611e5661278c565b611ea25760405162461bcd60e51b815260206004820152601e60248201527f77686974656c6973742073616c6520686173206e6f7420656e61626c656400006044820152606401610f98565b611ead33858561219e565b611f1f5760405162461bcd60e51b815260206004820152602f60248201527f63616c6c6572206973206e6f7420696e2077686974656c697374206f7220696e60448201527f76616c6964207369676e617475726500000000000000000000000000000000006064820152608401610f98565b33600090815260056020526040812054611f3d90879060c01c613aef565b600a5490915067ffffffffffffffff9081169082161115611fc65760405162461bcd60e51b815260206004820152602360248201527f6d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560448201527f64656400000000000000000000000000000000000000000000000000000000006064820152608401610f98565b6000611fd333858561271a565b156120245750600f546000805490611ff567ffffffffffffffff8a1683613abc565b9050815b8181101561201c5761200a81612cbb565b8061201481613ad4565b915050611ff9565b505050612029565b50600e545b6120338782612d6a565b612074336001600160a01b03166000908152600560205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff1660c085901b179055565b505060016009555050505050565b606061208d8261286b565b6120c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120cd612f3d565b905080516000141561216c57601780546120e6906139cf565b80601f0160208091040260200160405190810160405280929190818152602001828054612112906139cf565b801561215f5780601f106121345761010080835404028352916020019161215f565b820191906000526020600020905b81548152906001019060200180831161214257829003601f168201915b5050505050915050919050565b8061217684612f4c565b604051602001612187929190613b1b565b604051602081830303815290604052915050919050565b600d546000906121b05750600061191f565b61222783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff1960608b901b16602082015290925060340190505b60405160208183030381529060405280519060200120612f8e565b949350505050565b61223761297c565b60008160800135116122955760405162461bcd60e51b815260206004820152602160248201527f73616c65207072696365206d7573742067726561746572207468616e207a65726044820152606f60f81b6064820152608401610f98565b60008160a001351161230f5760405162461bcd60e51b815260206004820152602560248201527f646973636f756e74207072696365206d7573742067726561746572207468616e60448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610f98565b80600a61231c8282613b72565b9050507f82c09fc683a7325afa08668ccc1c2e21d722a999276683d180760dcc3e7ac0d981604051611cca9190613bd9565b61235661297c565b6000612368604083016020840161361f565b6001600160a01b031614156123bf5760405162461bcd60e51b815260206004820152601f60248201527f726566756e642061646472657373206d757374206e6f74206265207a65726f006044820152606401610f98565b601354813510156124125760405162461bcd60e51b815260206004820152601360248201527f656e642074696d65206f6e6c792064656c6179000000000000000000000000006044820152606401610f98565b80601361241f8282613c38565b9050507f484e4a9b0af406fba77167525de492e863e88ec4b429819ce0da0cb75af6d87781604051611cca9190613c7a565b61245961297c565b61110b601783836132d0565b61246d61297c565b600260095414156124c05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b60026009556001600160a01b03821661251b5760405162461bcd60e51b815260206004820152600c60248201527f7a65726f206164647265737300000000000000000000000000000000000000006044820152606401610f98565b60008167ffffffffffffffff16116125755760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610f98565b610bb867ffffffffffffffff82166125906000546000190190565b61259a9190613abc565b11156125e85760405162461bcd60e51b815260206004820152601360248201527f6d617820737570706c79206578636565646564000000000000000000000000006044820152606401610f98565b6125fc828267ffffffffffffffff16612fa4565b50506001600955565b3233146126545760405162461bcd60e51b815260206004820152601a60248201527f63616c6c657220697320616e6f7468657220636f6e74726163740000000000006044820152606401610f98565b600260095414156126a75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f98565b60026009556126b46110c9565b6127005760405162461bcd60e51b815260206004820152601b60248201527f7075626c69632073616c6520686173206e6f7420656e61626c656400000000006044820152606401610f98565b6127128161270d60125490565b612d6a565b506001600955565b60105460009061272c5750600061191f565b612227838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905061220c565b600c54600090158015906127a15750600c5442115b156127ac5750600090565b600b54158015906127be5750600b5442115b80156127cb5750600e5415155b80156110eb575050600d54151590565b6127e361297c565b6001600160a01b03811661285f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f98565b61286881612a6e565b50565b60008160011115801561287f575060005482105b8015610b9c575050600090815260046020526040902054600160e01b161590565b600081806001116128f0576000548110156128f057600081815260046020526040902054600160e01b81166128ee575b8061191f5750600019016000818152600460205260409020546128d0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600854600160a01b900460ff1615611d195760405162461bcd60e51b815260206004820152601560248201527f746f6b656e207472616e736665722070617573656400000000000000000000006044820152606401610f98565b6008546001600160a01b031633146110c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f98565b6129de612fc2565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612a3361301b565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a0e3390565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b9c90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b81903390899088908890600401613ca6565b602060405180830381600087803b158015612b9b57600080fd5b505af1925050508015612bcb575060408051601f3d908101601f19168201909252612bc891810190613ce2565b60015b612c26573d808015612bf9576040519150601f19603f3d011682016040523d82523d6000602084013e612bfe565b606091505b508051612c1e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610b9c612c73836128a0565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b612cc86007610100613a5f565b8110612d165760405162461bcd60e51b815260206004820152600c60248201527f6f7574206f662072616e676500000000000000000000000000000000000000006044820152606401610f98565b6000612d2461010083613a94565b90506000612d3461010084613aa8565b90506001811b60188360078110612d4d57612d4d613a33565b01541760188360078110612d6357612d63613a33565b0155505050565b60008267ffffffffffffffff1611612dc45760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610f98565b600267ffffffffffffffff83161115612e455760405162461bcd60e51b815260206004820152603160248201527f63616e206f6e6c79206d696e74204d41585f544f4b454e5f5045525f4d494e5460448201527f20746f6b656e7320617420612074696d650000000000000000000000000000006064820152608401610f98565b610bb867ffffffffffffffff8316612e606000546000190190565b612e6a9190613abc565b1115612eb85760405162461bcd60e51b815260206004820152601360248201527f6d617820737570706c79206578636565646564000000000000000000000000006044820152606401610f98565b6000612ece67ffffffffffffffff841683613a5f565b905034811115612f205760405162461bcd60e51b815260206004820152601f60248201527f65746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610f98565b612f34338467ffffffffffffffff16612fa4565b61110b81613075565b606060168054610bb1906139cf565b604080516080019081905280825b600183039250600a81066030018353600a900480612f7757612f7c565b612f5a565b50819003601f19909101908152919050565b600082612f9b85846130b3565b14949350505050565b612fbe828260405180602001604052806000815250613100565b5050565b600854600160a01b900460ff166110c75760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610f98565b600854600160a01b900460ff16156110c75760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610f98565b8034111561286857336108fc61308b8334613cff565b6040518115909202916000818181858888f19350505050158015612fbe573d6000803e3d6000fd5b600081815b84518110156130f8576130e4828683815181106130d7576130d7613a33565b602002602001015161316d565b9150806130f081613ad4565b9150506130b8565b509392505050565b61310a8383613199565b6001600160a01b0383163b1561110b576000548281035b6131346000868380600101945086612b4c565b613151576040516368d2bf6b60e11b815260040160405180910390fd5b81811061312157816000541461316657600080fd5b5050505050565b600081831061318957600082815260208490526040902061191f565b5060009182526020526040902090565b600054816131d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e06000848385612922565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461328f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613257565b50816132c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b8280546132dc906139cf565b90600052602060002090601f0160209004810192826132fe5760008555613344565b82601f106133175782800160ff19823516178555613344565b82800160010185558215613344579182015b82811115613344578235825591602001919060010190613329565b50613350929150613354565b5090565b5b808211156133505760008155600101613355565b6001600160e01b03198116811461286857600080fd5b60006020828403121561339157600080fd5b813561191f81613369565b60005b838110156133b757818101518382015260200161339f565b83811115611d195750506000910152565b600081518084526133e081602086016020860161339c565b601f01601f19169290920160200192915050565b60208152600061191f60208301846133c8565b60006020828403121561341957600080fd5b5035919050565b6001600160a01b038116811461286857600080fd5b6000806040838503121561344857600080fd5b823561345381613420565b946020939093013593505050565b60008060006060848603121561347657600080fd5b833561348181613420565b9250602084013561349181613420565b929592945050506040919091013590565b600080602083850312156134b557600080fd5b823567ffffffffffffffff808211156134cd57600080fd5b818501915085601f8301126134e157600080fd5b8135818111156134f057600080fd5b86602082850101111561350257600080fd5b60209290920196919550909350505050565b60008083601f84011261352657600080fd5b50813567ffffffffffffffff81111561353e57600080fd5b6020830191508360208260051b850101111561355957600080fd5b9250929050565b6000806020838503121561357357600080fd5b823567ffffffffffffffff81111561358a57600080fd5b61359685828601613514565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b818110156115515761360c8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b92840192608092909201916001016135be565b60006020828403121561363157600080fd5b813561191f81613420565b6020808252825182820181905260009190848201906040850190845b8181101561155157835183529284019291840191600101613658565b60008060006060848603121561368957600080fd5b833561369481613420565b95602085013595506040909401359392505050565b600080604083850312156136bc57600080fd5b82356136c781613420565b9150602083013580151581146136dc57600080fd5b809150509250929050565b6000604082840312156136f957600080fd5b50919050565b60006040828403121561371157600080fd5b61191f83836136e7565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561374757600080fd5b843561375281613420565b9350602085013561376281613420565b925060408501359150606085013567ffffffffffffffff8082111561378657600080fd5b818701915087601f83011261379a57600080fd5b8135818111156137ac576137ac61371b565b604051601f8201601f19908116603f011681019083821181831017156137d4576137d461371b565b816040528281528a60208487010111156137ed57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610b9c565b67ffffffffffffffff8116811461286857600080fd5b60008060008060006060868803121561388457600080fd5b853561388f81613856565b9450602086013567ffffffffffffffff808211156138ac57600080fd5b6138b889838a01613514565b909650945060408801359150808211156138d157600080fd5b506138de88828901613514565b969995985093965092949392505050565b60008060006040848603121561390457600080fd5b833561390f81613420565b9250602084013567ffffffffffffffff81111561392b57600080fd5b61393786828701613514565b9497909650939450505050565b600060e082840312156136f957600080fd5b6000806040838503121561396957600080fd5b823561397481613420565b915060208301356136dc81613856565b60006020828403121561399657600080fd5b813561191f81613856565b600080604083850312156139b457600080fd5b82356139bf81613420565b915060208301356136dc81613420565b600181811c908216806139e357607f821691505b602082108114156136f957634e487b7160e01b600052602260045260246000fd5b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613a7957613a79613a49565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613aa357613aa3613a7e565b500490565b600082613ab757613ab7613a7e565b500690565b60008219821115613acf57613acf613a49565b500190565b6000600019821415613ae857613ae8613a49565b5060010190565b600067ffffffffffffffff808316818516808303821115613b1257613b12613a49565b01949350505050565b60008351613b2d81846020880161339c565b835190830190613b4181836020880161339c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b8135613b7d81613856565b67ffffffffffffffff811667ffffffffffffffff19835416178255506020820135600182015560408201356002820155606082013560038201556080820135600482015560a0820135600582015560c082013560068201555050565b60e081018235613be881613856565b67ffffffffffffffff81168352506020830135602083015260408301356040830152606083013560608301526080830135608083015260a083013560a083015260c083013560c083015292915050565b81358155600181016020830135613c4e81613420565b6001600160a01b03811673ffffffffffffffffffffffffffffffffffffffff1983541617825550505050565b81358152604081016020830135613c9081613420565b6001600160a01b03811660208401525092915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613cd860808301846133c8565b9695505050505050565b600060208284031215613cf457600080fd5b815161191f81613369565b600082821015613d1157613d11613a49565b50039056fea26469706673582212206d4f531c2bd4537d058ade98102b59815ebeb80640af737421114859d3dc761364736f6c63430008090033

Deployed Bytecode Sourcemap

359:17379:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:6;;;;;;;;;;-1:-1:-1;9112:630:6;;;;;:::i;:::-;;:::i;:::-;;;611:14:10;;604:22;586:41;;574:2;559:18;9112:630:6;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:10;;;1720:74;;1708:2;1693:18;16309:214:6;1574:226:10;15769:390:6;;;;;;;;;;-1:-1:-1;15769:390:6;;;;;:::i;:::-;;:::i;:::-;;5851:317;;;;;;;;;;-1:-1:-1;9609:1:5;6121:12:6;5912:7;6105:13;:28;-1:-1:-1;;6105:46:6;5851:317;;;2430:25:10;;;2418:2;2403:18;5851:317:6;2284:177:10;19918:2756:6;;;;;;;;;;-1:-1:-1;19918:2756:6;;;;;:::i;:::-;;:::i;6446:329:5:-;;;;;;;;;;;;;:::i;6908:115::-;;;;;;;;;;-1:-1:-1;6908:115:5;;;;;:::i;:::-;6972:4;6995:21;;;:11;:21;;;;;;;;;6908:115;16830:75;;;;;;;;;;;;;:::i;10309:226::-;;;;;;;;;;;;;:::i;22765:179:6:-;;;;;;;;;;-1:-1:-1;22765:179:6;;;;;:::i;:::-;;:::i;1504:26:5:-;;;;;;;;;;;;;:::i;16692:80::-;;;;;;;;;;;;;:::i;13787:139::-;;;;;;;;;;-1:-1:-1;13787:139:5;;;;;:::i;:::-;;:::i;1239:45::-;;;;;;;;;;;;1283:1;1239:45;;;;;3698:18:10;3686:31;;;3668:50;;3656:2;3641:18;1239:45:5;3524:200:10;1641:513:8;;;;;;;;;;-1:-1:-1;1641:513:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1615:84:1:-;;;;;;;;;;-1:-1:-1;1685:7:1;;-1:-1:-1;;;1685:7:1;;;;1615:84;;11348:150:6;;;;;;;;;;-1:-1:-1;11348:150:6;;;;;:::i;:::-;;:::i;1291:46:5:-;;;;;;;;;;-1:-1:-1;1291:46:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5992:18:10;5980:31;;;5962:50;;6043:2;6028:18;;6021:34;;;;6071:18;;;6064:34;;;;6129:2;6114:18;;6107:34;;;;6172:3;6157:19;;6150:35;6216:3;6201:19;;6194:35;6260:3;6245:19;;6238:35;5949:3;5934:19;1291:46:5;5649:630:10;1389:50:5;;;;;;;;;;-1:-1:-1;1389:50:5;;;;;;;-1:-1:-1;;;;;1389:50:5;;;;;;;6458:25:10;;;-1:-1:-1;;;;;6519:55:10;;;6514:2;6499:18;;6492:83;6431:18;1389:50:5;6284:297:10;8812:296:5;;;;;;;;;;-1:-1:-1;8812:296:5;;;;;:::i;:::-;;:::i;17080:112::-;;;;;;;;;;;;;:::i;1477:21::-;;;;;;;;;;;;;:::i;1194:39::-;;;;;;;;;;;;1229:4;1194:39;;7002:230:6;;;;;;;;;;-1:-1:-1;7002:230:6;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;5417:879:8:-;;;;;;;;;;-1:-1:-1;5417:879:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7033:1505:5:-;;;;;;;;;;-1:-1:-1;7033:1505:5;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;11959:106:5;;;;;;;;;;-1:-1:-1;12036:22:5;;11959:106;;10165:102:6;;;;;;;;;;;;;:::i;2528:2454:8:-;;;;;;;;;;-1:-1:-1;2528:2454:8;;;;;:::i;:::-;;:::i;16850:303:6:-;;;;;;;;;;-1:-1:-1;16850:303:6;;;;;:::i;:::-;;:::i;12741:91:5:-;;;;;;;;;;-1:-1:-1;12785:7:5;6503:13:6;-1:-1:-1;;6503:31:6;12741:91:5;10309:226;1343:40;;;;;;;;;;-1:-1:-1;1343:40:5;;;;;;;;;;;;;8458:25:10;;;8514:2;8499:18;;8492:34;;;;8431:18;1343:40:5;8284:248:10;12214:124:5;;;;;;;;;;-1:-1:-1;12298:33:5;;12214:124;;1830:868;;;;;;;;;;-1:-1:-1;1830:868:5;;;;;:::i;:::-;;:::i;1445:26::-;;;;;;;;;;-1:-1:-1;1445:26:5;;;;;;;;15672:266;;;;;;;;;;-1:-1:-1;15672:266:5;;;;;:::i;:::-;;:::i;23525:388:6:-;;;;;;;;;;-1:-1:-1;23525:388:6;;;;;:::i;:::-;;:::i;12466:112:5:-;;;;;;;;;;-1:-1:-1;12546:25:5;;12466:112;;1070:418:8;;;;;;;;;;-1:-1:-1;1070:418:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1600:43:5:-;;;;;;;;;;-1:-1:-1;1600:43:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;8544:136;;;;;;;;;;-1:-1:-1;8643:21:5;:29;8624:15;:48;;8544:136;;3646:1160;;;;;;:::i;:::-;;:::i;13114:421::-;;;;;;;;;;-1:-1:-1;13114:421:5;;;;;:::i;:::-;;:::i;11418:419::-;;;;;;;;;;-1:-1:-1;11418:419:5;;;;;:::i;:::-;;:::i;15069:397::-;;;;;;;;;;-1:-1:-1;15069:397:5;;;;;:::i;:::-;;:::i;14397:460::-;;;;;;;;;;-1:-1:-1;14397:460:5;;;;;:::i;:::-;;:::i;14071:120::-;;;;;;;;;;-1:-1:-1;14071:120:5;;;;;:::i;:::-;;:::i;3019:416::-;;;;;;;;;;-1:-1:-1;3019:416:5;;;;;:::i;:::-;;:::i;4918:255::-;;;;;;:::i;:::-;;:::i;10763:434::-;;;;;;;;;;-1:-1:-1;10763:434:5;;;;;:::i;:::-;;:::i;17303:162:6:-;;;;;;;;;;-1:-1:-1;17303:162:6;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:6;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;9736:456:5;;;;;;;;;;;;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;8686:120:5:-;;;;;;;;;;-1:-1:-1;8770:21:5;:29;8686:120;;9112:630:6;9197:4;9515:25;-1:-1:-1;;;;;;9515:25:6;;;;:101;;-1:-1:-1;9591:25:6;-1:-1:-1;;;;;;9591:25:6;;;9515:101;:177;;;-1:-1:-1;9667:25:6;-1:-1:-1;;;;;;9667:25:6;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:6:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:6;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:6;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:6;-1:-1:-1;;;;;15896:28:6;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;16074:35:6;-1:-1:-1;;;;;16074:35:6;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:6;20135:19;-1:-1:-1;;;;;20119:45:6;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:6;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:6;;20586:52;;20615:23;;;;;;;;;;;;;;20586:52;20649:43;20671:4;20677:2;20681:7;20690:1;20649:21;:43::i;:::-;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;-1:-1:-1;;;;;21307:24:6;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:6;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:6;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:6;21661:26;;;;:17;:26;;;;;:172;-1:-1:-1;;;21950:47:6;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;-1:-1:-1;;;;;22588:27:6;22597:4;-1:-1:-1;;;;;22588:27:6;;;;;;;;;;;20037:2637;;;19918:2756;;;:::o;6446:329:5:-;1094:13:0;:11;:13::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:2;;14474:2:10;2317:63:2::1;::::0;::::1;14456:21:10::0;14513:2;14493:18;;;14486:30;14552:33;14532:18;;;14525:61;14603:18;;2317:63:2::1;;;;;;;;;1744:1;2455:7;:18:::0;6547:21:5::2;:29:::0;6529:15:::2;:47;6508:116;;;::::0;-1:-1:-1;;;6508:116:5;;14834:2:10;6508:116:5::2;::::0;::::2;14816:21:10::0;14873:2;14853:18;;;14846:30;14912:24;14892:18;;;14885:52;14954:18;;6508:116:5::2;14632:346:10::0;6508:116:5::2;6683:39;::::0;6652:21:::2;::::0;39008:10:6;;6683:39:5;::::2;;;::::0;6652:21;;6683:39:::2;::::0;;;6652:21;39008:10:6;6683:39:5;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;6737:31:5::2;::::0;2430:25:10;;;39008:10:6;;6737:31:5::2;::::0;2418:2:10;2403:18;6737:31:5::2;;;;;;;-1:-1:-1::0;1701:1:2::1;2628:7;:22:::0;6446:329:5:o;16830:75::-;1094:13:0;:11;:13::i;:::-;17684:14:5::1;::::0;::::1;;17683:15;17675:43;;;::::0;-1:-1:-1;;;17675:43:5;;15185:2:10;17675:43:5::1;::::0;::::1;15167:21:10::0;15224:2;15204:18;;;15197:30;15263:17;15243:18;;;15236:45;15298:18;;17675:43:5::1;14983:339:10::0;17675:43:5::1;16888:10:::2;:8;:10::i;:::-;16830:75::o:0;10309:226::-;10396:16;:26;10361:4;;10396:30;;;;:90;;-1:-1:-1;10460:16:5;:26;10442:15;:44;10396:90;:132;;;;-1:-1:-1;10502:22:5;;:26;;10396:132;10377:151;;10309:226;:::o;22765:179:6:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;1504:26:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16692:80::-;1094:13:0;:11;:13::i;:::-;17684:14:5::1;::::0;::::1;;17683:15;17675:43;;;::::0;-1:-1:-1;;;17675:43:5;;15185:2:10;17675:43:5::1;::::0;::::1;15167:21:10::0;15224:2;15204:18;;;15197:30;15263:17;15243:18;;;15236:45;15298:18;;17675:43:5::1;14983:339:10::0;17675:43:5::1;16757:8:::2;:6;:8::i;13787:139::-:0;1094:13:0;:11;:13::i;:::-;13862:18:5::1;:7;13872:8:::0;;13862:18:::1;:::i;:::-;;13895:24;13910:8;;13895:24;;;;;;;:::i;:::-;;;;;;;;13787:139:::0;;:::o;1641:513:8:-;1780:23;1868:8;1843:22;1868:8;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934:36:8;;-1:-1:-1;;1934:36:8;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;2021:3;;1984:123;;;-1:-1:-1;2127:10:8;1641:513;-1:-1:-1;;;;1641:513:8:o;11348:150:6:-;11420:7;11462:27;11481:7;11462:18;:27::i;8812:296:5:-;8880:4;8912:27;:21;8936:3;8912:27;:::i;:::-;8900:8;:39;8896:82;;-1:-1:-1;8962:5:5;;8812:296;-1:-1:-1;8812:296:5:o;8896:82::-;8988:9;9000:14;9011:3;9000:8;:14;:::i;:::-;8988:26;-1:-1:-1;9024:9:5;9036:14;9047:3;9036:8;:14;:::i;:::-;9024:26;-1:-1:-1;9089:1:5;:6;;9068:14;9083:1;9068:17;;;;;;;:::i;:::-;;;:28;:33;;;8812:296;-1:-1:-1;;;;8812:296:5:o;17080:112::-;1094:13:0;:11;:13::i;:::-;17133:14:5::1;:21:::0;;-1:-1:-1;;17133:21:5::1;17150:4;17133:21;::::0;;17169:16:::1;::::0;::::1;::::0;17133:14:::1;::::0;17169:16:::1;17080:112::o:0;1477:21::-;;;;;;;:::i;7002:230:6:-;7074:7;-1:-1:-1;;;;;7097:19:6;;7093:60;;7125:28;;;;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:6;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;5417:879:8:-:0;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5702:29:8;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57:8;;-1:-1:-1;9609:1:5;5790:461:8;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5923:71;;;5967:8;;5923:71;6015:14;;-1:-1:-1;;;;;6015:28:8;;6011:109;;6087:14;;;-1:-1:-1;6011:109:8;6162:5;-1:-1:-1;;;;;6141:26:8;:17;-1:-1:-1;;;;;6141:26:8;;6137:100;;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6137:100;5855:3;;5790:461;;;-1:-1:-1;6271:8:8;;5417:879;-1:-1:-1;;;;;;5417:879:8:o;7033:1505:5:-;7144:16;7200:19;7233:25;7272:22;7297:16;7307:5;7297:9;:16::i;:::-;7272:41;;7327:25;7369:14;7355:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7355:29:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7327:57:5;;-1:-1:-1;9609:1:5;7443:523;7525:14;7510:11;:29;7443:523;;7605:15;7618:1;7605:12;:15::i;:::-;7593:27;;7642:9;:16;;;7638:71;;;7682:8;;7638:71;7730:14;;-1:-1:-1;;;;;7730:28:5;;7726:109;;7802:14;;;-1:-1:-1;7726:109:5;7877:5;-1:-1:-1;;;;;7856:26:5;:17;-1:-1:-1;;;;;7856:26:5;;7852:100;;;7932:1;7906:8;7915:13;;;;;;7906:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;7852:100;7557:3;;7443:523;;;;7980:12;8015:9;8010:168;8034:8;:15;8030:1;:19;8010:168;;;8078:28;8094:8;8103:1;8094:11;;;;;;;;:::i;:::-;;;;;;;6972:4;6995:21;;;:11;:21;;;;;;;;;6908:115;8078:28;8074:90;;8139:6;;;;;8074:90;8051:3;;8010:168;;;;8192:9;8219:33;8269:4;8255:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8255:19:5;;8219:55;;8293:9;8288:197;8312:8;:15;8308:1;:19;8288:197;;;8356:28;8372:8;8381:1;8372:11;;;;;;;;:::i;8356:28::-;8352:119;;8441:8;8450:1;8441:11;;;;;;;;:::i;:::-;;;;;;;8417:16;8434:3;;;;;;8417:21;;;;;;;;:::i;:::-;;;;;;:35;;;;;8352:119;8329:3;;8288:197;;;-1:-1:-1;8505:16:5;7033:1505;-1:-1:-1;;;;;;;;;7033:1505:5:o;10165:102:6:-;10221:13;10253:7;10246:14;;;;;:::i;2528:2454:8:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;5602:7:6;5628:13;;5547:101;2831:14:8;2811:34;-1:-1:-1;9609:1:5;2921:5:8;:23;2917:85;;;9609:1:5;2964:23:8;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3414:12;;;3448:31;;;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;-1:-1:-1;3611:1:8;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3668:32:8;-1:-1:-1;3640:60:8;-1:-1:-1;3718:22:8;3714:76;;3767:8;-1:-1:-1;3760:15:8;;-1:-1:-1;;;3760:15:8;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;-1:-1:-1;4303:14:8;;4242:90;4362:5;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4484:71;;;4528:8;;4484:71;4576:14;;-1:-1:-1;;;;;4576:28:8;;4572:109;;4648:14;;;-1:-1:-1;4572:109:8;4723:5;-1:-1:-1;;;;;4702:26:8;:17;-1:-1:-1;;;;;4702:26:8;;4698:100;;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4698:100;4416:3;;4345:467;;;-1:-1:-1;;;4894:29:8;;;-1:-1:-1;4901:8:8;;-1:-1:-1;;2528:2454:8;;;;;;:::o;16850:303:6:-;-1:-1:-1;;;;;16948:31:6;;39008:10;16948:31;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:6;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:6;;;;;;;;;;17091:55;;586:41:10;;;17016:49:6;;39008:10;17091:55;;559:18:10;17091:55:6;;;;;;;16850:303;;:::o;1830:868:5:-;1744:1:2;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:2;;14474:2:10;2317:63:2;;;14456:21:10;14513:2;14493:18;;;14486:30;14552:33;14532:18;;;14525:61;14603:18;;2317:63:2;14272:355:10;2317:63:2;1744:1;2455:7;:18;8643:21:5;:29;8624:15;:48;;1907:52:::1;;;::::0;-1:-1:-1;;;1907:52:5;;16906:2:10;1907:52:5::1;::::0;::::1;16888:21:10::0;16945:2;16925:18;;;16918:30;16984:16;16964:18;;;16957:44;17018:18;;1907:52:5::1;16704:338:10::0;1907:52:5::1;1970:20;2009:9:::0;2004:634:::1;2024:19:::0;;::::1;2004:634;;;2064:15;2082:8;;2091:1;2082:11;;;;;;;:::i;:::-;;;;;;;2064:29;;2131:16;2139:7;2131;:16::i;:::-;-1:-1:-1::0;;;;;2115:32:5::1;39008:10:6::0;-1:-1:-1;;;;;2115:32:5::1;;2107:60;;;::::0;-1:-1:-1;;;2107:60:5;;17249:2:10;2107:60:5::1;::::0;::::1;17231:21:10::0;17288:2;17268:18;;;17261:30;17327:17;17307:18;;;17300:45;17362:18;;2107:60:5::1;17047:339:10::0;2107:60:5::1;2190:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;2189:21;2181:50;;;::::0;-1:-1:-1;;;2181:50:5;;17593:2:10;2181:50:5::1;::::0;::::1;17575:21:10::0;17632:2;17612:18;;;17605:30;17671:18;17651;;;17644:46;17707:18;;2181:50:5::1;17391:340:10::0;2181:50:5::1;2245:20;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;2245:27:5::1;2268:4;2245:27;::::0;;2286:134:::1;2316:12;39008:10:6::0;;38922:103;2316:12:5::1;2346:35:::0;;-1:-1:-1;;;;;2346:35:5::1;2399:7:::0;2286:12:::1;:134::i;:::-;2439:28;2459:7;2439:19;:28::i;:::-;2435:193;;;2503:33:::0;;2487:49:::1;::::0;;::::1;:::i;:::-;;;2435:193;;;2591:22:::0;;2575:38:::1;::::0;;::::1;:::i;:::-;;;2435:193;-1:-1:-1::0;2045:3:5;::::1;::::0;::::1;:::i;:::-;;;;2004:634;;;-1:-1:-1::0;2647:44:5::1;::::0;39008:10:6;;2647:44:5;::::1;;;::::0;2678:12;;2647:44:::1;::::0;;;2678:12;39008:10:6;2647:44:5;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;1701:1:2;2628:7;:22;-1:-1:-1;;1830:868:5:o;15672:266::-;1094:13:0;:11;:13::i;:::-;15809:1:5::1;15793:7;:13;;;:17;15785:63;;;::::0;-1:-1:-1;;;15785:63:5;;18211:2:10;15785:63:5::1;::::0;::::1;18193:21:10::0;18250:2;18230:18;;;18223:30;18289:34;18269:18;;;18262:62;-1:-1:-1;;;18340:18:10;;;18333:31;18381:19;;15785:63:5::1;18009:397:10::0;15785:63:5::1;18577:19:10::0;;15858:16:5::1;18564:33:10::0;;;18651:2;18640:14;;;18627:28;18613:12;18606:50;;;15899:32:5::1;::::0;;18881:39:10;;;18936:20;;;18929:61;15899:32:5::1;::::0;18854:18:10;15899:32:5::1;;;;;;;;15672:266:::0;:::o;23525:388:6:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:6;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;-1:-1:-1;;;23852:40:6;;;;;;;;;;;23764:143;23525:388;;;;:::o;1070:418:8:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9609:1:5;1232:7:8;:25;:54;;;-1:-1:-1;5602:7:6;5628:13;1261:7:8;:25;;1232:54;1228:101;;;1309:9;1070:418;-1:-1:-1;;1070:418:8:o;1228:101::-;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1070:418;-1:-1:-1;;1070:418:8:o;1381:63::-;1460:21;1473:7;1460:12;:21::i;3646:1160:5:-;17465:9;39008:10:6;17465:25:5;17457:64;;;;-1:-1:-1;;;17457:64:5;;19203:2:10;17457:64:5;;;19185:21:10;19242:2;19222:18;;;19215:30;19281:28;19261:18;;;19254:56;19327:18;;17457:64:5;19001:350:10;17457:64:5;1744:1:2::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:2;;14474:2:10;2317:63:2::1;::::0;::::1;14456:21:10::0;14513:2;14493:18;;;14486:30;14552:33;14532:18;;;14525:61;14603:18;;2317:63:2::1;14272:355:10::0;2317:63:2::1;1744:1;2455:7;:18:::0;3854:24:5::2;:22;:24::i;:::-;3846:67;;;::::0;-1:-1:-1;;;3846:67:5;;19558:2:10;3846:67:5::2;::::0;::::2;19540:21:10::0;19597:2;19577:18;;;19570:30;19636:32;19616:18;;;19609:60;19686:18;;3846:67:5::2;19356:354:10::0;3846:67:5::2;3944:44;39008:10:6::0;3977::5::2;;3944:18;:44::i;:::-;3923:138;;;::::0;-1:-1:-1;;;3923:138:5;;19917:2:10;3923:138:5::2;::::0;::::2;19899:21:10::0;19956:2;19936:18;;;19929:30;19995:34;19975:18;;;19968:62;20066:17;20046:18;;;20039:45;20101:19;;3923:138:5::2;19715:411:10::0;3923:138:5::2;39008:10:6::0;4071:22:5::2;7954:25:6::0;;;:18;:25;;;;;;4096:39:5::2;::::0;4120:15;;1682:3:6;7954:40;4096:39:5::2;:::i;:::-;4185:19;:29:::0;4071:64;;-1:-1:-1;4185:29:5::2;::::0;;::::2;4166:48:::0;;::::2;;;4145:130;;;::::0;-1:-1:-1;;;4145:130:5;;20574:2:10;4145:130:5::2;::::0;::::2;20556:21:10::0;20613:2;20593:18;;;20586:30;20652:34;20632:18;;;20625:62;20723:5;20703:18;;;20696:33;20746:19;;4145:130:5::2;20372:399:10::0;4145:130:5::2;4286:13;4313:51;39008:10:6::0;4345:18:5::2;;4313:17;:51::i;:::-;4309:403;;;-1:-1:-1::0;12298:33:5;;4430:20:::2;5628:13:6::0;;;4495:30:5::2;;::::0;::::2;5628:13:6::0;4495:30:5::2;:::i;:::-;4481:44:::0;-1:-1:-1;4556:12:5;4539:101:::2;4574:3;4570:1;:7;4539:101;;;4602:23;4623:1;4602:20;:23::i;:::-;4579:3:::0;::::2;::::0;::::2;:::i;:::-;;;;4539:101;;;;4366:284;;4309:403;;;-1:-1:-1::0;12546:25:5;;4309:403:::2;4722:29;4728:15;4745:5;4722;:29::i;:::-;4761:38;39008:10:6::0;-1:-1:-1;;;;;8272:25:6;8255:14;8272:25;;;:18;:25;;;;;;;1824:14;8466:32;1682:3;8503:24;;;8465:63;8538:34;;8184:395;4761:38:5::2;-1:-1:-1::0;;1701:1:2::1;2628:7;:22:::0;-1:-1:-1;;;;;3646:1160:5:o;13114:421::-;13227:13;13261:16;13269:7;13261;:16::i;:::-;13256:59;;13286:29;;;;;;;;;;;;;;13256:59;13326:22;13351:10;:8;:10::i;:::-;13326:35;;13381:8;13375:22;13401:1;13375:27;13371:77;;;13425:12;13418:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13114:421;;;:::o;13371:77::-;13489:8;13499:18;13509:7;13499:9;:18::i;:::-;13472:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13458:70;;;13114:421;;;:::o;11418:419::-;11564:30;;11540:4;;11560:79;;-1:-1:-1;11623:5:5;11616:12;;11560:79;11667:163;11703:10;;11667:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11731:30:5;;11789:26;;-1:-1:-1;;21567:2:10;21563:15;;;21559:53;11789:26:5;;;21547:66:10;11731:30:5;;-1:-1:-1;21629:12:10;;;-1:-1:-1;11789:26:5;;;;;;;;;;;;;11779:37;;;;;;11667:18;:163::i;:::-;11648:182;11418:419;-1:-1:-1;;;;11418:419:5:o;15069:397::-;1094:13:0;:11;:13::i;:::-;15212:1:5::1;15196:7;:13;;;:17;15188:63;;;::::0;-1:-1:-1;;;15188:63:5;;18211:2:10;15188:63:5::1;::::0;::::1;18193:21:10::0;18250:2;18230:18;;;18223:30;18289:34;18269:18;;;18262:62;-1:-1:-1;;;18340:18:10;;;18333:31;18381:19;;15188:63:5::1;18009:397:10::0;15188:63:5::1;15306:1;15282:7;:21;;;:25;15261:109;;;::::0;-1:-1:-1;;;15261:109:5;;21854:2:10;15261:109:5::1;::::0;::::1;21836:21:10::0;21893:2;21873:18;;;21866:30;21932:34;21912:18;;;21905:62;22003:7;21983:18;;;21976:35;22028:19;;15261:109:5::1;21652:401:10::0;15261:109:5::1;15402:7:::0;15380:19:::1;:29;15402:7:::0;15380:19;:29:::1;:::i;:::-;;;;15424:35;15451:7;15424:35;;;;;;:::i;14397:460::-:0;1094:13:0;:11;:13::i;:::-;14574:1:5::1;14541:21;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;14541:35:5::1;;;14520:113;;;::::0;-1:-1:-1;;;14520:113:5;;23746:2:10;14520:113:5::1;::::0;::::1;23728:21:10::0;23785:2;23765:18;;;23758:30;23824:33;23804:18;;;23797:61;23875:18;;14520:113:5::1;23544:355:10::0;14520:113:5::1;14683:21;:29:::0;14664:15;::::1;:48;;14643:114;;;::::0;-1:-1:-1;;;14643:114:5;;24106:2:10;14643:114:5::1;::::0;::::1;24088:21:10::0;24145:2;24125:18;;;24118:30;24184:21;24164:18;;;24157:49;24223:18;;14643:114:5::1;23904:343:10::0;14643:114:5::1;14791:7:::0;14767:21:::1;:31;14791:7:::0;14767:21;:31:::1;:::i;:::-;;;;14813:37;14842:7;14813:37;;;;;;:::i;14071:120::-:0;1094:13:0;:11;:13::i;:::-;14156:28:5::1;:12;14171:13:::0;;14156:28:::1;:::i;3019:416::-:0;1094:13:0;:11;:13::i;:::-;1744:1:2::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:2;;14474:2:10;2317:63:2::1;::::0;::::1;14456:21:10::0;14513:2;14493:18;;;14486:30;14552:33;14532:18;;;14525:61;14603:18;;2317:63:2::1;14272:355:10::0;2317:63:2::1;1744:1;2455:7;:18:::0;-1:-1:-1;;;;;3157:22:5;::::2;3149:47;;;::::0;-1:-1:-1;;;3149:47:5;;25435:2:10;3149:47:5::2;::::0;::::2;25417:21:10::0;25474:2;25454:18;;;25447:30;25513:14;25493:18;;;25486:42;25545:18;;3149:47:5::2;25233:336:10::0;3149:47:5::2;3232:1;3214:15;:19;;;3206:56;;;::::0;-1:-1:-1;;;3206:56:5;;25776:2:10;3206:56:5::2;::::0;::::2;25758:21:10::0;25815:2;25795:18;;;25788:30;25854:26;25834:18;;;25827:54;25898:18;;3206:56:5::2;25574:348:10::0;3206:56:5::2;1229:4;3293:44;:31:::0;::::2;:13;12785:7:::0;6503:13:6;-1:-1:-1;;6503:31:6;;10309:226:5;3293:13:::2;:31;;;;:::i;:::-;:44;;3272:110;;;::::0;-1:-1:-1;;;3272:110:5;;26129:2:10;3272:110:5::2;::::0;::::2;26111:21:10::0;26168:2;26148:18;;;26141:30;26207:21;26187:18;;;26180:49;26246:18;;3272:110:5::2;25927:343:10::0;3272:110:5::2;3392:36;3402:8;3412:15;3392:36;;:9;:36::i;:::-;-1:-1:-1::0;;1701:1:2::1;2628:7;:22:::0;3019:416:5:o;4918:255::-;17465:9;39008:10:6;17465:25:5;17457:64;;;;-1:-1:-1;;;17457:64:5;;19203:2:10;17457:64:5;;;19185:21:10;19242:2;19222:18;;;19215:30;19281:28;19261:18;;;19254:56;19327:18;;17457:64:5;19001:350:10;17457:64:5;1744:1:2::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:2;;14474:2:10;2317:63:2::1;::::0;::::1;14456:21:10::0;14513:2;14493:18;;;14486:30;14552:33;14532:18;;;14525:61;14603:18;;2317:63:2::1;14272:355:10::0;2317:63:2::1;1744:1;2455:7;:18:::0;5059:21:5::2;:19;:21::i;:::-;5051:61;;;::::0;-1:-1:-1;;;5051:61:5;;26477:2:10;5051:61:5::2;::::0;::::2;26459:21:10::0;26516:2;26496:18;;;26489:30;26555:29;26535:18;;;26528:57;26602:18;;5051:61:5::2;26275:351:10::0;5051:61:5::2;5122:44;5128:15;5145:20;12036:22:::0;;;11959:106;5145:20:::2;5122:5;:44::i;:::-;-1:-1:-1::0;1701:1:2::1;2628:7;:22:::0;4918:255:5:o;10763:434::-;10908:38;;10884:4;;10904:87;;-1:-1:-1;10975:5:5;10968:12;;10904:87;11019:171;11055:10;;11019:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11083:38:5;;11149:26;;-1:-1:-1;;21567:2:10;21563:15;;;21559:53;11149:26:5;;;21547:66:10;11083:38:5;;-1:-1:-1;21629:12:10;;;-1:-1:-1;11149:26:5;21418:229:10;9736:456:5;9824:27;;9791:4;;9824:31;;;;:92;;-1:-1:-1;9889:27:5;;9871:15;:45;9824:92;9807:157;;;-1:-1:-1;9948:5:5;;9736:456::o;9807:157::-;9992:29;;:33;;;;:96;;-1:-1:-1;10059:29:5;;10041:15;:47;9992:96;:141;;;;-1:-1:-1;10104:25:5;;:29;;9992:141;:193;;;;-1:-1:-1;;10149:30:5;;:36;;;9736:456::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;26833:2:10;2161:73:0::1;::::0;::::1;26815:21:10::0;26872:2;26852:18;;;26845:30;26911:34;26891:18;;;26884:62;26982:8;26962:18;;;26955:36;27008:19;;2161:73:0::1;26631:402:10::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;17714:277:6:-;17779:4;17833:7;9609:1:5;17814:26:6;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:6;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:6;:49;;17714:277::o;12472:1249::-;12539:7;12573;;9609:1:5;12619:23:6;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;-1:-1:-1;;;12812:24:6;;12808:831;;13467:111;13474:11;13467:111;;-1:-1:-1;;;13544:6:6;13526:25;;;;:17;:25;;;;;;13467:111;;12808:831;12686:971;12660:997;13683:31;;;;;;;;;;;;;;16158:292:5;1685:7:1;;-1:-1:-1;;;1685:7:1;;;;16408:9:5;16400:43;;;;-1:-1:-1;;;16400:43:5;;27240:2:10;16400:43:5;;;27222:21:10;27279:2;27259:18;;;27252:30;27318:23;27298:18;;;27291:51;27359:18;;16400:43:5;27038:345:10;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;39008:10:6;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;27590:2:10;1414:68:0;;;27572:21:10;;;27609:18;;;27602:30;27668:34;27648:18;;;27641:62;27720:18;;1414:68:0;27388:356:10;2433:117:1;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;;;2491:15:1::1;::::0;;2521:22:::1;39008:10:6::0;2530:12:1::1;2521:22;::::0;-1:-1:-1;;;;;1738:55:10;;;1720:74;;1708:2;1693:18;2521:22:1::1;;;;;;;2433:117::o:0;2186:115::-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;;;2245:14:1::1;-1:-1:-1::0;;;2245:14:1::1;::::0;;2274:20:::1;2281:12;39008:10:6::0;;38922:103;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;11936:159:6:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12063:24:6;;;;:17;:24;;;;;;12044:44;;-1:-1:-1;;;;;;;;;;;;;13924:41:6;;;;1961:3;14009:33;;;13975:68;;-1:-1:-1;;;13975:68:6;-1:-1:-1;;;14072:24:6;;:29;;-1:-1:-1;;;14053:48:6;;;;2470:3;14140:28;;;;-1:-1:-1;;;14111:58:6;-1:-1:-1;13815:361:6;25939:697;26117:88;;-1:-1:-1;;;26117:88:6;;26097:4;;-1:-1:-1;;;;;26117:45:6;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:6;;;;;;;;-1:-1:-1;;26117:88:6;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:13:6;;26391:229;;26440:40;;-1:-1:-1;;;26440:40:6;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:6;-1:-1:-1;;;26273:64:6;;-1:-1:-1;25939:697:6;;;;;;:::o;11681:164::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11791:47:6;11810:27;11829:7;11810:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;13924:41:6;;;;1961:3;14009:33;;;13975:68;;-1:-1:-1;;;13975:68:6;-1:-1:-1;;;14072:24:6;;:29;;-1:-1:-1;;;14053:48:6;;;;2470:3;14140:28;;;;-1:-1:-1;;;14111:58:6;-1:-1:-1;13815:361:6;9114:268:5;9199:27;:21;9223:3;9199:27;:::i;:::-;9188:8;:38;9180:63;;;;-1:-1:-1;;;9180:63:5;;28722:2:10;9180:63:5;;;28704:21:10;28761:2;28741:18;;;28734:30;28800:14;28780:18;;;28773:42;28832:18;;9180:63:5;28520:336:10;9180:63:5;9254:9;9266:14;9277:3;9266:8;:14;:::i;:::-;9254:26;-1:-1:-1;9290:9:5;9302:14;9313:3;9302:8;:14;:::i;:::-;9290:26;-1:-1:-1;9368:1:5;:6;;9347:14;9362:1;9347:17;;;;;;;:::i;:::-;;;:28;9327:14;9342:1;9327:17;;;;;;;:::i;:::-;;:48;-1:-1:-1;;;9114:268:5:o;5356:611::-;5456:1;5438:15;:19;;;5430:56;;;;-1:-1:-1;;;5430:56:5;;25776:2:10;5430:56:5;;;25758:21:10;25815:2;25795:18;;;25788:30;25854:26;25834:18;;;25827:54;25898:18;;5430:56:5;25574:348:10;5430:56:5;1283:1;5517:37;;;;;5496:133;;;;-1:-1:-1;;;5496:133:5;;29063:2:10;5496:133:5;;;29045:21:10;29102:2;29082:18;;;29075:30;29141:34;29121:18;;;29114:62;29212:19;29192:18;;;29185:47;29249:19;;5496:133:5;28861:413:10;5496:133:5;1229:4;5660:44;:31;;:13;12785:7;6503:13:6;-1:-1:-1;;6503:31:6;;10309:226:5;5660:13;:31;;;;:::i;:::-;:44;;5639:110;;;;-1:-1:-1;;;5639:110:5;;26129:2:10;5639:110:5;;;26111:21:10;26168:2;26148:18;;;26141:30;26207:21;26187:18;;;26180:49;26246:18;;5639:110:5;25927:343:10;5639:110:5;5759:14;5776:24;;;;:6;:24;:::i;:::-;5759:41;;5828:9;5818:6;:19;;5810:63;;;;-1:-1:-1;;;5810:63:5;;29481:2:10;5810:63:5;;;29463:21:10;29520:2;29500:18;;;29493:30;29559:33;29539:18;;;29532:61;29610:18;;5810:63:5;29279:355:10;5810:63:5;5883:40;39008:10:6;5907:15:5;5883:40;;:9;:40::i;:::-;5933:27;5953:6;5933:19;:27::i;12942:106::-;13002:13;13034:7;13027:14;;;;;:::i;39122:1548:6:-;39599:4;39593:11;;39606:4;39589:22;39683:17;;;;39589:22;40033:5;40015:419;40080:1;40075:3;40071:11;40064:18;;40248:2;40242:4;40238:13;40234:2;40230:22;40225:3;40217:36;40340:2;40330:13;;;40395:25;;40413:5;;40395:25;40015:419;;;-1:-1:-1;40462:13:6;;;-1:-1:-1;;40575:14:6;;;40635:19;;;40575:14;39122:1548;-1:-1:-1;39122:1548:6:o;1153:184:4:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:4:o;32908:110:6:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;:::-;32908:110;;:::o;1945:106:1:-;1685:7;;-1:-1:-1;;;1685:7:1;;;;2003:41;;;;-1:-1:-1;;;2003:41:1;;29841:2:10;2003:41:1;;;29823:21:10;29880:2;29860:18;;;29853:30;29919:22;29899:18;;;29892:50;29959:18;;2003:41:1;29639:344:10;1767:106:1;1685:7;;-1:-1:-1;;;1685:7:1;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:1;;30190:2:10;1828:38:1;;;30172:21:10;30229:2;30209:18;;;30202:30;30268:18;30248;;;30241:46;30304:18;;1828:38:1;29988:340:10;6157:171:5;6237:7;6225:9;:19;6221:101;;;39008:10:6;6260:51:5;6291:19;6303:7;6291:9;:19;:::i;:::-;6260:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991:290:4;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:4;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:4;1991:290;-1:-1:-1;;;1991:290:4:o;32160:669:6:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;-1:-1:-1;;;;;32344:14:6;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;-1:-1:-1;;;32603:40:6;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32160:669;;;:::o;8054:147:4:-;8117:7;8147:1;8143;:5;:51;;8275:13;8366:15;;;8401:4;8394:15;;;8447:4;8431:21;;8143:51;;;-1:-1:-1;8275:13:4;8366:15;;;8401:4;8394:15;8447:4;8431:21;;;8054:147::o;27082:2396:6:-;27154:20;27177:13;27204;27200:44;;27226:18;;;;;;;;;;;;;;27200:44;27255:61;27285:1;27289:2;27293:12;27307:8;27255:21;:61::i;:::-;-1:-1:-1;;;;;27719:22:6;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:6;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;-1:-1:-1;29316:13:6;29312:45;;29338:19;;;;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:6;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:10;-1:-1:-1;;;;;;92:5:10;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:10;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:10;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:10:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:10;;1389:180;-1:-1:-1;1389:180:10:o;1805:154::-;-1:-1:-1;;;;;1884:5:10;1880:54;1873:5;1870:65;1860:93;;1949:1;1946;1939:12;1964:315;2032:6;2040;2093:2;2081:9;2072:7;2068:23;2064:32;2061:52;;;2109:1;2106;2099:12;2061:52;2148:9;2135:23;2167:31;2192:5;2167:31;:::i;:::-;2217:5;2269:2;2254:18;;;;2241:32;;-1:-1:-1;;;1964:315:10:o;2466:456::-;2543:6;2551;2559;2612:2;2600:9;2591:7;2587:23;2583:32;2580:52;;;2628:1;2625;2618:12;2580:52;2667:9;2654:23;2686:31;2711:5;2686:31;:::i;:::-;2736:5;-1:-1:-1;2793:2:10;2778:18;;2765:32;2806:33;2765:32;2806:33;:::i;:::-;2466:456;;2858:7;;-1:-1:-1;;;2912:2:10;2897:18;;;;2884:32;;2466:456::o;2927:592::-;2998:6;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3115:9;3102:23;3144:18;3185:2;3177:6;3174:14;3171:34;;;3201:1;3198;3191:12;3171:34;3239:6;3228:9;3224:22;3214:32;;3284:7;3277:4;3273:2;3269:13;3265:27;3255:55;;3306:1;3303;3296:12;3255:55;3346:2;3333:16;3372:2;3364:6;3361:14;3358:34;;;3388:1;3385;3378:12;3358:34;3433:7;3428:2;3419:6;3415:2;3411:15;3407:24;3404:37;3401:57;;;3454:1;3451;3444:12;3401:57;3485:2;3477:11;;;;;3507:6;;-1:-1:-1;2927:592:10;;-1:-1:-1;;;;2927:592:10:o;3729:367::-;3792:8;3802:6;3856:3;3849:4;3841:6;3837:17;3833:27;3823:55;;3874:1;3871;3864:12;3823:55;-1:-1:-1;3897:20:10;;3940:18;3929:30;;3926:50;;;3972:1;3969;3962:12;3926:50;4009:4;4001:6;3997:17;3985:29;;4069:3;4062:4;4052:6;4049:1;4045:14;4037:6;4033:27;4029:38;4026:47;4023:67;;;4086:1;4083;4076:12;4023:67;3729:367;;;;;:::o;4101:437::-;4187:6;4195;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;4304:9;4291:23;4337:18;4329:6;4326:30;4323:50;;;4369:1;4366;4359:12;4323:50;4408:70;4470:7;4461:6;4450:9;4446:22;4408:70;:::i;:::-;4497:8;;4382:96;;-1:-1:-1;4101:437:10;-1:-1:-1;;;;4101:437:10:o;4920:724::-;5155:2;5207:21;;;5277:13;;5180:18;;;5299:22;;;5126:4;;5155:2;5378:15;;;;5352:2;5337:18;;;5126:4;5421:197;5435:6;5432:1;5429:13;5421:197;;;5484:52;5532:3;5523:6;5517:13;-1:-1:-1;;;;;4633:5:10;4627:12;4623:61;4618:3;4611:74;4746:18;4738:4;4731:5;4727:16;4721:23;4717:48;4710:4;4705:3;4701:14;4694:72;4829:4;4822:5;4818:16;4812:23;4805:31;4798:39;4791:4;4786:3;4782:14;4775:63;4899:8;4891:4;4884:5;4880:16;4874:23;4870:38;4863:4;4858:3;4854:14;4847:62;;;4543:372;5484:52;5593:15;;;;5565:4;5556:14;;;;;5457:1;5450:9;5421:197;;6586:247;6645:6;6698:2;6686:9;6677:7;6673:23;6669:32;6666:52;;;6714:1;6711;6704:12;6666:52;6753:9;6740:23;6772:31;6797:5;6772:31;:::i;6838:632::-;7009:2;7061:21;;;7131:13;;7034:18;;;7153:22;;;6980:4;;7009:2;7232:15;;;;7206:2;7191:18;;;6980:4;7275:169;7289:6;7286:1;7283:13;7275:169;;;7350:13;;7338:26;;7419:15;;;;7384:12;;;;7311:1;7304:9;7275:169;;7475:383;7552:6;7560;7568;7621:2;7609:9;7600:7;7596:23;7592:32;7589:52;;;7637:1;7634;7627:12;7589:52;7676:9;7663:23;7695:31;7720:5;7695:31;:::i;:::-;7745:5;7797:2;7782:18;;7769:32;;-1:-1:-1;7848:2:10;7833:18;;;7820:32;;7475:383;-1:-1:-1;;;7475:383:10:o;7863:416::-;7928:6;7936;7989:2;7977:9;7968:7;7964:23;7960:32;7957:52;;;8005:1;8002;7995:12;7957:52;8044:9;8031:23;8063:31;8088:5;8063:31;:::i;:::-;8113:5;-1:-1:-1;8170:2:10;8155:18;;8142:32;8212:15;;8205:23;8193:36;;8183:64;;8243:1;8240;8233:12;8183:64;8266:7;8256:17;;;7863:416;;;;;:::o;8537:164::-;8606:5;8651:2;8642:6;8637:3;8633:16;8629:25;8626:45;;;8667:1;8664;8657:12;8626:45;-1:-1:-1;8689:6:10;8537:164;-1:-1:-1;8537:164:10:o;8706:255::-;8800:6;8853:2;8841:9;8832:7;8828:23;8824:32;8821:52;;;8869:1;8866;8859:12;8821:52;8892:63;8947:7;8936:9;8892:63;:::i;8966:184::-;-1:-1:-1;;;9015:1:10;9008:88;9115:4;9112:1;9105:15;9139:4;9136:1;9129:15;9155:1266;9250:6;9258;9266;9274;9327:3;9315:9;9306:7;9302:23;9298:33;9295:53;;;9344:1;9341;9334:12;9295:53;9383:9;9370:23;9402:31;9427:5;9402:31;:::i;:::-;9452:5;-1:-1:-1;9509:2:10;9494:18;;9481:32;9522:33;9481:32;9522:33;:::i;:::-;9574:7;-1:-1:-1;9628:2:10;9613:18;;9600:32;;-1:-1:-1;9683:2:10;9668:18;;9655:32;9706:18;9736:14;;;9733:34;;;9763:1;9760;9753:12;9733:34;9801:6;9790:9;9786:22;9776:32;;9846:7;9839:4;9835:2;9831:13;9827:27;9817:55;;9868:1;9865;9858:12;9817:55;9904:2;9891:16;9926:2;9922;9919:10;9916:36;;;9932:18;;:::i;:::-;10007:2;10001:9;9975:2;10061:13;;-1:-1:-1;;10057:22:10;;;10081:2;10053:31;10049:40;10037:53;;;10105:18;;;10125:22;;;10102:46;10099:72;;;10151:18;;:::i;:::-;10191:10;10187:2;10180:22;10226:2;10218:6;10211:18;10266:7;10261:2;10256;10252;10248:11;10244:20;10241:33;10238:53;;;10287:1;10284;10277:12;10238:53;10343:2;10338;10334;10330:11;10325:2;10317:6;10313:15;10300:46;10388:1;10383:2;10378;10370:6;10366:15;10362:24;10355:35;10409:6;10399:16;;;;;;;9155:1266;;;;;;;:::o;10426:268::-;4627:12;;-1:-1:-1;;;;;4623:61:10;4611:74;;4738:4;4727:16;;;4721:23;4746:18;4717:48;4701:14;;;4694:72;4829:4;4818:16;;;4812:23;4805:31;4798:39;4782:14;;;4775:63;4891:4;4880:16;;;4874:23;4899:8;4870:38;4854:14;;;4847:62;10624:3;10609:19;;10637:51;4543:372;10699:129;10784:18;10777:5;10773:30;10766:5;10763:41;10753:69;;10818:1;10815;10808:12;10833:906;10963:6;10971;10979;10987;10995;11048:2;11036:9;11027:7;11023:23;11019:32;11016:52;;;11064:1;11061;11054:12;11016:52;11103:9;11090:23;11122:30;11146:5;11122:30;:::i;:::-;11171:5;-1:-1:-1;11227:2:10;11212:18;;11199:32;11250:18;11280:14;;;11277:34;;;11307:1;11304;11297:12;11277:34;11346:70;11408:7;11399:6;11388:9;11384:22;11346:70;:::i;:::-;11435:8;;-1:-1:-1;11320:96:10;-1:-1:-1;11523:2:10;11508:18;;11495:32;;-1:-1:-1;11539:16:10;;;11536:36;;;11568:1;11565;11558:12;11536:36;;11607:72;11671:7;11660:8;11649:9;11645:24;11607:72;:::i;:::-;10833:906;;;;-1:-1:-1;10833:906:10;;-1:-1:-1;11698:8:10;;11581:98;10833:906;-1:-1:-1;;;10833:906:10:o;11744:572::-;11839:6;11847;11855;11908:2;11896:9;11887:7;11883:23;11879:32;11876:52;;;11924:1;11921;11914:12;11876:52;11963:9;11950:23;11982:31;12007:5;11982:31;:::i;:::-;12032:5;-1:-1:-1;12088:2:10;12073:18;;12060:32;12115:18;12104:30;;12101:50;;;12147:1;12144;12137:12;12101:50;12186:70;12248:7;12239:6;12228:9;12224:22;12186:70;:::i;:::-;11744:572;;12275:8;;-1:-1:-1;12160:96:10;;-1:-1:-1;;;;11744:572:10:o;12321:205::-;12418:6;12471:3;12459:9;12450:7;12446:23;12442:33;12439:53;;;12488:1;12485;12478:12;12796:386;12863:6;12871;12924:2;12912:9;12903:7;12899:23;12895:32;12892:52;;;12940:1;12937;12930:12;12892:52;12979:9;12966:23;12998:31;13023:5;12998:31;:::i;:::-;13048:5;-1:-1:-1;13105:2:10;13090:18;;13077:32;13118;13077;13118;:::i;13187:245::-;13245:6;13298:2;13286:9;13277:7;13273:23;13269:32;13266:52;;;13314:1;13311;13304:12;13266:52;13353:9;13340:23;13372:30;13396:5;13372:30;:::i;13437:388::-;13505:6;13513;13566:2;13554:9;13545:7;13541:23;13537:32;13534:52;;;13582:1;13579;13572:12;13534:52;13621:9;13608:23;13640:31;13665:5;13640:31;:::i;:::-;13690:5;-1:-1:-1;13747:2:10;13732:18;;13719:32;13760:33;13719:32;13760:33;:::i;13830:437::-;13909:1;13905:12;;;;13952;;;13973:61;;14027:4;14019:6;14015:17;14005:27;;13973:61;14080:2;14072:6;14069:14;14049:18;14046:38;14043:218;;;-1:-1:-1;;;14114:1:10;14107:88;14218:4;14215:1;14208:15;14246:4;14243:1;14236:15;15327:390;15486:2;15475:9;15468:21;15525:6;15520:2;15509:9;15505:18;15498:34;15582:6;15574;15569:2;15558:9;15554:18;15541:48;15638:1;15609:22;;;15633:2;15605:31;;;15598:42;;;;15701:2;15680:15;;;-1:-1:-1;;15676:29:10;15661:45;15657:54;;15327:390;-1:-1:-1;15327:390:10:o;15722:184::-;-1:-1:-1;;;15771:1:10;15764:88;15871:4;15868:1;15861:15;15895:4;15892:1;15885:15;15911:184;-1:-1:-1;;;15960:1:10;15953:88;16060:4;16057:1;16050:15;16084:4;16081:1;16074:15;16100:168;16140:7;16206:1;16202;16198:6;16194:14;16191:1;16188:21;16183:1;16176:9;16169:17;16165:45;16162:71;;;16213:18;;:::i;:::-;-1:-1:-1;16253:9:10;;16100:168::o;16273:184::-;-1:-1:-1;;;16322:1:10;16315:88;16422:4;16419:1;16412:15;16446:4;16443:1;16436:15;16462:120;16502:1;16528;16518:35;;16533:18;;:::i;:::-;-1:-1:-1;16567:9:10;;16462:120::o;16587:112::-;16619:1;16645;16635:35;;16650:18;;:::i;:::-;-1:-1:-1;16684:9:10;;16587:112::o;17736:128::-;17776:3;17807:1;17803:6;17800:1;17797:13;17794:39;;;17813:18;;:::i;:::-;-1:-1:-1;17849:9:10;;17736:128::o;17869:135::-;17908:3;-1:-1:-1;;17929:17:10;;17926:43;;;17949:18;;:::i;:::-;-1:-1:-1;17996:1:10;17985:13;;17869:135::o;20131:236::-;20170:3;20198:18;20243:2;20240:1;20236:10;20273:2;20270:1;20266:10;20304:3;20300:2;20296:12;20291:3;20288:21;20285:47;;;20312:18;;:::i;:::-;20348:13;;20131:236;-1:-1:-1;;;;20131:236:10:o;20776:637::-;21056:3;21094:6;21088:13;21110:53;21156:6;21151:3;21144:4;21136:6;21132:17;21110:53;:::i;:::-;21226:13;;21185:16;;;;21248:57;21226:13;21185:16;21282:4;21270:17;;21248:57;:::i;:::-;21370:7;21327:20;;21356:22;;;21405:1;21394:13;;20776:637;-1:-1:-1;;;;20776:637:10:o;22058:699::-;22245:5;22232:19;22260:32;22284:7;22260:32;:::i;:::-;22373:18;22364:7;22360:32;22338:18;22334:23;22327:4;22321:11;22317:41;22314:79;22308:4;22301:93;;22448:2;22441:5;22437:14;22424:28;22420:1;22414:4;22410:12;22403:50;22507:2;22500:5;22496:14;22483:28;22479:1;22473:4;22469:12;22462:50;22566:2;22559:5;22555:14;22542:28;22538:1;22532:4;22528:12;22521:50;22625:3;22618:5;22614:15;22601:29;22597:1;22591:4;22587:12;22580:51;22685:3;22678:5;22674:15;22661:29;22657:1;22651:4;22647:12;22640:51;22745:3;22738:5;22734:15;22721:29;22717:1;22711:4;22707:12;22700:51;22058:699;;:::o;22762:777::-;22970:3;22955:19;;22996:20;;23025:30;22996:20;23025:30;:::i;:::-;23093:18;23086:5;23082:30;23071:9;23064:49;;23176:4;23168:6;23164:17;23151:31;23144:4;23133:9;23129:20;23122:61;23246:4;23238:6;23234:17;23221:31;23214:4;23203:9;23199:20;23192:61;23316:4;23308:6;23304:17;23291:31;23284:4;23273:9;23269:20;23262:61;23386:4;23378:6;23374:17;23361:31;23354:4;23343:9;23339:20;23332:61;23456:4;23448:6;23444:17;23431:31;23424:4;23413:9;23409:20;23402:61;23526:4;23518:6;23514:17;23501:31;23494:4;23483:9;23479:20;23472:61;22762:777;;;;:::o;24252:516::-;24441:5;24428:19;24422:4;24415:33;24485:1;24479:4;24475:12;24535:2;24528:5;24524:14;24511:28;24548:33;24573:7;24548:33;:::i;:::-;-1:-1:-1;;;;;24708:7:10;24704:56;-1:-1:-1;;24622:10:10;24616:17;24612:90;24609:152;24597:10;24590:172;;;24252:516;;:::o;24773:455::-;25015:20;;24997:39;;24985:2;24970:18;;25083:4;25071:17;;25058:31;25098;25058;25098;:::i;:::-;-1:-1:-1;;;;;25171:5:10;25167:54;25160:4;25149:9;25145:20;25138:84;;24773:455;;;;:::o;27749:512::-;27943:4;-1:-1:-1;;;;;28053:2:10;28045:6;28041:15;28030:9;28023:34;28105:2;28097:6;28093:15;28088:2;28077:9;28073:18;28066:43;;28145:6;28140:2;28129:9;28125:18;28118:34;28188:3;28183:2;28172:9;28168:18;28161:31;28209:46;28250:3;28239:9;28235:19;28227:6;28209:46;:::i;:::-;28201:54;27749:512;-1:-1:-1;;;;;;27749:512:10:o;28266:249::-;28335:6;28388:2;28376:9;28367:7;28363:23;28359:32;28356:52;;;28404:1;28401;28394:12;28356:52;28436:9;28430:16;28455:30;28479:5;28455:30;:::i;30333:125::-;30373:4;30401:1;30398;30395:8;30392:34;;;30406:18;;:::i;:::-;-1:-1:-1;30443:9:10;;30333:125::o

Swarm Source

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