ETH Price: $2,431.24 (+3.07%)

Token

WincityLand (WLAND)
 

Overview

Max Total Supply

1,631 WLAND

Holders

177

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WLAND
0x5c513c27d6bd1764b3e54dbc035501e6cee270e3
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:
WincityLand

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion, MIT license
File 1 of 7 : Land.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {ERC721A} from "erc721a/contracts/ERC721A.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

error InsufficientBalance();

contract WincityLand is ERC721A, Pausable, Ownable {
    enum LandType {
        AFRICA,
        AMERICA,
        ASIA,
        EUROPE
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Constants
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    uint256 public constant LIMIT_DECIMALS = 10 ** 9; // Use 9 decimals for precision.

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Variables
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    string private _tokenBaseURI;

    uint256 public cycle = 2 hours;
    uint256 public limit = (10 * LIMIT_DECIMALS) / 100;
    uint256 public mintPrice = 0.034 ether;
    uint256 public reservedSupply = 0;
    uint256 public steepModifier = 0;

    // Public mint starting time in seconds
    uint256 public publicSaleStartTimestamp;
    uint256[] public mintTimestamps;

    bytes32 public freeMintMerkleRoot;
    bytes32 public whitelistMerkleRoot;

    // Mapping to keep track of whitelist addresses that have already been claimed
    mapping(address => bool) private freeMintClaimed;

    // Mapping to keep track of which tokenId is which LandType
    mapping(uint256 => LandType) public landTypeTokens;

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Events
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    event MintMessage(
        address to,
        uint256[] tokenIds,
        uint256 quantity,
        LandType landType,
        uint256 totalPrice
    );

    event AdminMintMessage(
        address to,
        uint256[] tokenIds,
        uint256 quantity,
        LandType landType
    );

    event ClaimFreeMint(address to, uint256 tokenId, LandType landType);

    constructor(string memory _uri) ERC721A("WincityLand", "WLAND") {
        _tokenBaseURI = _uri;
        uint256[] memory africaTokens = _handleMint(
            msg.sender,
            LandType.AFRICA,
            300,
            true
        );
        uint256[] memory americaTokens = _handleMint(
            msg.sender,
            LandType.AMERICA,
            300,
            true
        );
        uint256[] memory asiaTokens = _handleMint(
            msg.sender,
            LandType.ASIA,
            300,
            true
        );
        uint256[] memory europeTokens = _handleMint(
            msg.sender,
            LandType.EUROPE,
            300,
            true
        );

        reservedSupply += 1200;

        emit AdminMintMessage(msg.sender, africaTokens, 300, LandType.AFRICA);
        emit AdminMintMessage(msg.sender, americaTokens, 300, LandType.AMERICA);
        emit AdminMintMessage(msg.sender, asiaTokens, 300, LandType.ASIA);
        emit AdminMintMessage(msg.sender, europeTokens, 300, LandType.EUROPE);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Modifiers
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    modifier whenPublicSaleActive() {
        require(isPublicSaleOpen(), "Public sale not opened.");
        _;
    }
    modifier whenPreSaleActive() {
        require(isPreSaleOpen(), "Presale not opened.");
        _;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Getters / Setters
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function isPublicSaleOpen() public view returns (bool) {
        return
            block.timestamp >= publicSaleStartTimestamp &&
            publicSaleStartTimestamp != 0;
    }

    function isPreSaleOpen() public view returns (bool) {
        return
            publicSaleStartTimestamp > 0
                ? block.timestamp >= (publicSaleStartTimestamp - 1 hours)
                : false;
    }

    function isWhitelisted(
        bytes32[] calldata _merkleProof
    ) external view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf);
    }

    function isFreeMintEligible(
        bytes32[] calldata _merkleProof
    ) external view returns (bool) {
        if (freeMintClaimed[msg.sender] == true) {
            return false;
        }

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(_merkleProof, freeMintMerkleRoot, leaf);
    }

    function landTypeOf(uint256 _tokenId) public view returns (LandType) {
        return landTypeTokens[_tokenId];
    }

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

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Setters (Ownable)
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function setPublicSaleTimestamp(uint256 _timestamp) external onlyOwner {
        publicSaleStartTimestamp = _timestamp;
    }

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

    function setCycle(uint256 _newCycle) external onlyOwner {
        cycle = _newCycle;
    }

    function setSteepModifier(uint256 _newSteepModifier) external onlyOwner {
        steepModifier = _newSteepModifier;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        whitelistMerkleRoot = _merkleRoot;
    }

    function setFreeMintMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        freeMintMerkleRoot = _merkleRoot;
    }

    function setURI(string calldata _newURI) external onlyOwner {
        _tokenBaseURI = _newURI;
    }

    function resetMintTimestamps() external onlyOwner {
        delete mintTimestamps;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Admin
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    function adminMint(
        address _recipient,
        LandType _landType,
        uint256 _quantity
    ) external onlyOwner {
        reservedSupply += _quantity;

        uint256[] memory mintedTokens = _handleMint(
            _recipient,
            _landType,
            _quantity,
            true
        );

        emit AdminMintMessage(_recipient, mintedTokens, _quantity, _landType);
    }

    function updateLimit(uint8 _limit) external onlyOwner {
        require(
            _limit <= 100,
            "Invalid percentage. Limit must be comprised between 0 and 100"
        );

        limit = (_limit * LIMIT_DECIMALS) / 100;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Minting
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function cleanCurrentCycleSupply() internal {
        // If the most recent mint is older than one cycle, clear the whole array.
        if (
            mintTimestamps.length > 0 &&
            mintTimestamps[mintTimestamps.length - 1] <= block.timestamp - cycle
        ) {
            delete mintTimestamps;
            return;
        }

        // Update currentCycleSupplyCount and mintTimestamps to match the correct cycle supply at mint time.
        while (
            mintTimestamps.length > 0 &&
            mintTimestamps[0] <= block.timestamp - cycle
        ) {
            // Remove the oldest timestamp.
            for (uint256 i = 0; i < mintTimestamps.length - 1; i++) {
                mintTimestamps[i] = mintTimestamps[i + 1];
            }
            mintTimestamps.pop();
        }
    }

    function getCurrentCycleSupply(
        uint256 _timestamp
    ) public view returns (uint256) {
        uint256 currentCycleSupply = 0;

        for (uint256 i = 0; i < mintTimestamps.length; i++) {
            if (mintTimestamps[i] + cycle > _timestamp) currentCycleSupply++;
        }

        return currentCycleSupply;
    }

    function computeMintPrice(
        uint256 _quantity,
        uint256 _timestamp
    ) public view returns (uint256) {
        // Prevent price scale while first cycle isn't elapsed.
        if (_timestamp < publicSaleStartTimestamp + 2 hours) {
            return mintPrice * _quantity;
        }

        uint256 computedPrice = 0;
        uint256 currentCycleSupply = getCurrentCycleSupply(_timestamp);

        for (uint8 i = 0; i < _quantity; i++) {
            uint256 cycleSupply = (currentCycleSupply + i) * LIMIT_DECIMALS;
            uint256 supply = ((totalSupply() - reservedSupply) -
                currentCycleSupply +
                i) + steepModifier;

            // Calculate proportion of emitted NFT for the ongoing cycle
            uint256 z = (((cycleSupply * 100) / supply)) / 100;

            // Ensure proportion can't overflow the mint limit.
            if (z > limit) z = limit - 1;

            uint256 variance = (((limit * LIMIT_DECIMALS) / (limit - z))) *
                LIMIT_DECIMALS;

            // Compute mint price via current cycle emission against max cycle emission (limit).
            computedPrice += mintPrice + variance - (1 * (LIMIT_DECIMALS ** 2));
        }

        return computedPrice;
    }

    function _handleMint(
        address recipient,
        LandType _landType,
        uint256 _quantity,
        bool _isAdmin
    ) private whenNotPaused returns (uint256[] memory) {
        uint256 firstToken = _nextTokenId();

        // Process minting.
        _safeMint(recipient, _quantity);

        uint256[] memory mintedTokens = new uint256[](_quantity);

        for (uint256 i = 0; i < _quantity; i++) {
            uint256 tokenId = i + firstToken;
            landTypeTokens[tokenId] = _landType;
            mintedTokens[i] = tokenId;

            // Add newest mint to last cycle count to be evaluated on next mint price.
            if (
                block.timestamp < publicSaleStartTimestamp + 2 hours ||
                !_isAdmin
            ) {
                mintTimestamps.push(block.timestamp);
            }
        }

        return mintedTokens;
    }

    function _purchaseMint(
        LandType _landType,
        uint256 _quantity
    ) internal whenNotPaused {
        require(
            _quantity > 0 && _quantity <= 10,
            "Quantity must be comprised between 1 and 10"
        );

        uint totalMintPrice = 0;

        // Ensure computed mint price to be exact.
        cleanCurrentCycleSupply();
        totalMintPrice = computeMintPrice(_quantity, block.timestamp);

        // Ensure sender sent enough ether to mint.
        if (msg.value < totalMintPrice) {
            revert InsufficientBalance();
        }

        uint256[] memory mintedTokens = _handleMint(
            msg.sender,
            _landType,
            _quantity,
            false
        );

        emit MintMessage(
            msg.sender,
            mintedTokens,
            _quantity,
            _landType,
            totalMintPrice
        );

        // Refund excess ether.
        uint256 refund = msg.value - totalMintPrice;

        if (refund > 0) {
            payable(msg.sender).transfer(refund);
        }
    }

    function mint(
        LandType _landType,
        uint256 _quantity
    ) external payable whenPublicSaleActive whenNotPaused {
        _purchaseMint(_landType, _quantity);
    }

    function preMint(
        LandType _landType,
        uint256 _quantity,
        bytes32[] calldata _merkleProof
    ) external payable whenPreSaleActive whenNotPaused {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf),
            "Address is not whitelisted."
        );

        _purchaseMint(_landType, _quantity);
    }

    function freeMint(
        LandType _landType,
        bytes32[] calldata _merkleProof
    ) external whenPreSaleActive whenNotPaused {
        require(
            freeMintClaimed[msg.sender] == false,
            "Address has already claimed."
        );

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(
            MerkleProof.verify(_merkleProof, freeMintMerkleRoot, leaf),
            "Address is not whitelisted."
        );

        freeMintClaimed[msg.sender] = true;
        uint256 tokenId = _nextTokenId();

        _safeMint(msg.sender, 1);

        landTypeTokens[tokenId] = _landType;

        emit ClaimFreeMint(msg.sender, tokenId, _landType);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Withdrawls
     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    function withdrawAmount(
        address payable recipient,
        uint256 amount
    ) external onlyOwner {
        (bool succeed, ) = recipient.call{value: amount}("");
        require(succeed, "Failed to withdraw Ether");
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 7 : 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 4 of 7 : 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 5 of 7 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                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 6 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InsufficientBalance","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"enum WincityLand.LandType","name":"landType","type":"uint8"}],"name":"AdminMintMessage","type":"event"},{"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":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum WincityLand.LandType","name":"landType","type":"uint8"}],"name":"ClaimFreeMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"enum WincityLand.LandType","name":"landType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"totalPrice","type":"uint256"}],"name":"MintMessage","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":[{"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"},{"inputs":[],"name":"LIMIT_DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"enum WincityLand.LandType","name":"_landType","type":"uint8"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"computeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum WincityLand.LandType","name":"_landType","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"getCurrentCycleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isFreeMintEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"landTypeOf","outputs":[{"internalType":"enum WincityLand.LandType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"landTypeTokens","outputs":[{"internalType":"enum WincityLand.LandType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum WincityLand.LandType","name":"_landType","type":"uint8"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintTimestamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum WincityLand.LandType","name":"_landType","type":"uint8"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetMintTimestamps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCycle","type":"uint256"}],"name":"setCycle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setFreeMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPublicSaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSteepModifier","type":"uint256"}],"name":"setSteepModifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"steepModifier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"updateLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611c20600a556064633b9aca00600a6200001f9190620006c5565b6200002b9190620006e7565b600b556678cad1e25d0000600c556000600d556000600e553480156200005057600080fd5b506040516200370e3803806200370e83398101604081905262000073916200074f565b6040518060400160405280600b81526020016a15da5b98da5d1e53185b9960aa1b8152506040518060400160405280600581526020016415d310539160da1b8152508160029081620000c6919062000895565b506003620000d5828262000895565b506000805550506008805460ff19169055620000f13362000241565b6009620000ff828262000895565b50600062000113338261012c60016200029b565b905060006200012833600161012c816200029b565b905060006200013e33600261012c60016200029b565b905060006200015433600361012c60016200029b565b90506104b0600d60008282546200016c919062000961565b9091555050604051600080516020620036ce833981519152906200019b903390879061012c9060009062000992565b60405180910390a1600080516020620036ce833981519152338461012c6001604051620001cc949392919062000992565b60405180910390a1600080516020620036ce833981519152338361012c6002604051620001fd949392919062000992565b60405180910390a1600080516020620036ce833981519152338261012c60036040516200022e949392919062000992565b60405180910390a1505050505062000ad4565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060620002a7620003ed565b600054620002b686856200043a565b6000846001600160401b03811115620002d357620002d36200070a565b604051908082528060200260200182016040528015620002fd578160200160208202803683370190505b50905060005b85811015620003e05760006200031a848362000961565b60008181526014602052604090208054919250899160ff191660018360038111156200034a576200034a6200097c565b02179055508083838151811062000365576200036562000a19565b6020908102919091010152600f546200038190611c2062000961565b4210806200038d575085155b15620003ca5760108054600181018255600091909152427f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672909101555b5080620003d78162000a2f565b91505062000303565b509150505b949350505050565b60085460ff1615620004385760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b6200045c8282604051806020016040528060008152506200046060201b60201c565b5050565b6200046c8383620004d7565b6001600160a01b0383163b15620004d2576000548281035b60018101906200049a90600090879086620005b7565b620004b8576040516368d2bf6b60e11b815260040160405180910390fd5b81811062000484578160005414620004cf57600080fd5b50505b505050565b6000805490829003620004fd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620036ee8339815191528180a4600183015b8181146200058c5780836000600080516020620036ee833981519152600080a460010162000563565b5081600003620005ae57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620005ee90339089908890889060040162000a4b565b6020604051808303816000875af19250505080156200062c575060408051601f3d908101601f19168201909252620006299181019062000aa1565b60015b6200068e573d8080156200065d576040519150601f19603f3d011682016040523d82523d6000602084013e62000662565b606091505b50805160000362000686576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003e5565b50505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006e257620006e2620006af565b500290565b6000826200070557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200073d57818101518382015260200162000723565b83811115620006a95750506000910152565b6000602082840312156200076257600080fd5b81516001600160401b03808211156200077a57600080fd5b818401915084601f8301126200078f57600080fd5b815181811115620007a457620007a46200070a565b604051601f8201601f19908116603f01168101908382118183101715620007cf57620007cf6200070a565b81604052828152876020848701011115620007e957600080fd5b620007fc83602083016020880162000720565b979650505050505050565b600181811c908216806200081c57607f821691505b6020821081036200083d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d257600081815260208120601f850160051c810160208610156200086c5750805b601f850160051c820191505b818110156200088d5782815560010162000878565b505050505050565b81516001600160401b03811115620008b157620008b16200070a565b620008c981620008c2845462000807565b8462000843565b602080601f831160018114620009015760008415620008e85750858301515b600019600386901b1c1916600185901b1785556200088d565b600085815260208120601f198616915b82811015620009325788860151825594840194600190910190840162000911565b5085821015620009515787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115620009775762000977620006af565b500190565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385168152608060208083018290528551918301829052600091868201919060a0850190845b81811015620009dd57845183529383019391830191600101620009bf565b50508093505050508360408301526004831062000a0a57634e487b7160e01b600052602160045260246000fd5b82606083015295945050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820162000a445762000a44620006af565b5060010190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a8a8160a085016020870162000720565b601f01601f19169190910160a00195945050505050565b60006020828403121562000ab457600080fd5b81516001600160e01b03198116811462000acd57600080fd5b9392505050565b612bea8062000ae46000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063b0921fe9116100dc578063d7822c9911610095578063e985e9c51161006f578063e985e9c51461087e578063f26748e2146108c7578063f2fde38b146108da578063f4a0a528146108fa57600080fd5b8063d7822c9914610832578063dde44b8914610848578063e1a8f0321461086857600080fd5b8063b0921fe91461077a578063b88d4fde1461078f578063bb77f749146107a2578063bd32fb66146107c2578063c87b56dd146107e2578063cd7e7c101461080257600080fd5b806390556e3311610149578063a22cb46511610123578063a22cb4651461070e578063a4d66daf1461072e578063aa98e0c614610744578063b03321721461075a57600080fd5b806390556e331461069c57806395d89b41146106d95780639d9e9f15146106ee57600080fd5b8063715018a6146105fc578063736fe565146106115780637882d67b146106315780638456cb59146106515780638da5cb5b146106665780638f825a861461068957600080fd5b806323b872dd1161024f5780635c975abb116102085780636817c76c116101e25780636817c76c1461059057806368963df0146105a65780636d93c3ba146105bc57806370a08231146105dc57600080fd5b80635c975abb146105425780636190c9d51461055a5780636352211e1461057057600080fd5b806323b872dd146104b15780632c8244fc146104c45780633f4ba83a146104e457806342842e0e146104f957806344d19d2b1461050c578063511a96051461052257600080fd5b8063081812fc116102bc57806318160ddd1161029657806318160ddd146104565780631a6949e31461046f5780631e65497d146104845780631f281ace1461049c57600080fd5b8063081812fc146103eb578063095ea7b3146104235780630dd845441461043657600080fd5b806301ffc9a71461030457806302fe5305146103395780630367adf81461035b5780630564fa8014610389578063069824fb146103a957806306fdde03146103c9575b600080fd5b34801561031057600080fd5b5061032461031f3660046121bf565b61091a565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b506103596103543660046121dc565b61096c565b005b34801561036757600080fd5b5061037b61037636600461224e565b610986565b604051908152602001610330565b34801561039557600080fd5b506103596103a436600461224e565b6109ee565b3480156103b557600080fd5b506103246103c43660046122b3565b6109fb565b3480156103d557600080fd5b506103de610a70565b604051610330919061234d565b3480156103f757600080fd5b5061040b61040636600461224e565b610b02565b6040516001600160a01b039091168152602001610330565b610359610431366004612375565b610b46565b34801561044257600080fd5b506103596104513660046123b5565b610be6565b34801561046257600080fd5b506001546000540361037b565b34801561047b57600080fd5b50610324610c5a565b34801561049057600080fd5b5061037b633b9aca0081565b3480156104a857600080fd5b50610324610c74565b6103596104bf3660046123f3565b610c9d565b3480156104d057600080fd5b506103596104df366004612434565b610e36565b3480156104f057600080fd5b50610359611047565b6103596105073660046123f3565b611059565b34801561051857600080fd5b5061037b600d5481565b34801561052e57600080fd5b5061035961053d36600461224e565b611074565b34801561054e57600080fd5b5060085460ff16610324565b34801561056657600080fd5b5061037b600a5481565b34801561057c57600080fd5b5061040b61058b36600461224e565b611081565b34801561059c57600080fd5b5061037b600c5481565b3480156105b257600080fd5b5061037b60115481565b3480156105c857600080fd5b506103596105d736600461224e565b61108c565b3480156105e857600080fd5b5061037b6105f7366004612487565b611099565b34801561060857600080fd5b506103596110e8565b34801561061d57600080fd5b5061035961062c366004612375565b6110fa565b34801561063d57600080fd5b5061032461064c3660046122b3565b6111a5565b34801561065d57600080fd5b50610359611235565b34801561067257600080fd5b5060085461010090046001600160a01b031661040b565b6103596106973660046124a4565b611245565b3480156106a857600080fd5b506106cc6106b736600461224e565b60009081526014602052604090205460ff1690565b6040516103309190612536565b3480156106e557600080fd5b506103de611360565b3480156106fa57600080fd5b5061037b610709366004612544565b61136f565b34801561071a57600080fd5b50610359610729366004612566565b6114fa565b34801561073a57600080fd5b5061037b600b5481565b34801561075057600080fd5b5061037b60125481565b34801561076657600080fd5b506103596107753660046125a4565b611566565b34801561078657600080fd5b5061035961160b565b61035961079d3660046125dd565b61161f565b3480156107ae57600080fd5b5061037b6107bd36600461224e565b611669565b3480156107ce57600080fd5b506103596107dd36600461224e565b61168a565b3480156107ee57600080fd5b506103de6107fd36600461224e565b611697565b34801561080e57600080fd5b506106cc61081d36600461224e565b60146020526000908152604090205460ff1681565b34801561083e57600080fd5b5061037b600f5481565b34801561085457600080fd5b5061035961086336600461224e565b61171b565b34801561087457600080fd5b5061037b600e5481565b34801561088a57600080fd5b506103246108993660046126bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103596108d53660046126eb565b611728565b3480156108e657600080fd5b506103596108f5366004612487565b611792565b34801561090657600080fd5b5061035961091536600461224e565b61180b565b60006301ffc9a760e01b6001600160e01b03198316148061094b57506380ac58cd60e01b6001600160e01b03198316145b806109665750635b5e139f60e01b6001600160e01b03198316145b92915050565b610974611818565b6009610981828483612787565b505050565b600080805b6010548110156109e75783600a54601083815481106109ac576109ac612847565b90600052602060002001546109c19190612873565b11156109d557816109d18161288b565b9250505b806109df8161288b565b91505061098b565b5092915050565b6109f6611818565b600e55565b60008033604051602001610a0f91906128a4565b604051602081830303815290604052805190602001209050610a68848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611878565b949350505050565b606060028054610a7f90612707565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90612707565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d8261188e565b610b2a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5182611081565b9050336001600160a01b03821614610b8a57610b6d8133610899565b610b8a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bee611818565b80600d6000828254610c009190612873565b9091555060009050610c1584848460016118b5565b90507fc91291136362315a89ee83d4b5795b8eee23bea345270ea41a4f65ff24651b8384828486604051610c4c94939291906128fc565b60405180910390a150505050565b6000600f544210158015610c6f5750600f5415155b905090565b600080600f5411610c855750600090565b610e10600f54610c95919061293e565b421015905090565b6000610ca8826119ee565b9050836001600160a01b0316816001600160a01b031614610cdb5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d2857610d0b8633610899565b610d2857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d4f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d5a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610dec57600184016000818152600460205260408120549003610dea576000548114610dea5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e3e610c74565b610e855760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b632903737ba1037b832b732b21760691b60448201526064015b60405180910390fd5b610e8d611a55565b3360009081526013602052604090205460ff1615610eed5760405162461bcd60e51b815260206004820152601c60248201527f416464726573732068617320616c726561647920636c61696d65642e000000006044820152606401610e7c565b600033604051602001610f0091906128a4565b604051602081830303815290604052805190602001209050610f59838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611878565b610fa55760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610e7c565b336000908152601360205260408120805460ff19166001179055610fc860005490565b9050610fd5336001611a9b565b6000818152601460205260409020805486919060ff19166001836003811115611000576110006124fe565b02179055507f8483e9afea732ec0409fcc31d5671844771dcf21e481551fdc7ce260180936c333828760405161103893929190612955565b60405180910390a15050505050565b61104f611818565b611057611ab5565b565b6109818383836040518060200160405280600081525061161f565b61107c611818565b600f55565b6000610966826119ee565b611094611818565b600a55565b60006001600160a01b0382166110c2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110f0611818565b6110576000611b07565b611102611818565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461114f576040519150601f19603f3d011682016040523d82523d6000602084013e611154565b606091505b50509050806109815760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610e7c565b3360009081526013602052604081205460ff1615156001036111c957506000610966565b6000336040516020016111dc91906128a4565b604051602081830303815290604052805190602001209050610a68848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611878565b61123d611818565b611057611b61565b61124d610c74565b61128f5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b632903737ba1037b832b732b21760691b6044820152606401610e7c565b611297611a55565b6000336040516020016112aa91906128a4565b604051602081830303815290604052805190602001209050611303838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611878565b61134f5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610e7c565b6113598585611b9e565b5050505050565b606060038054610a7f90612707565b6000600f54611c206113819190612873565b82101561139d5782600c546113969190612979565b9050610966565b6000806113a984610986565b905060005b858160ff1610156114f0576000633b9aca006113cd60ff841685612873565b6113d79190612979565b90506000600e548360ff1685600d546113f36001546000540390565b6113fd919061293e565b611407919061293e565b6114119190612873565b61141b9190612873565b9050600060648261142c8583612979565b6114369190612998565b6114409190612998565b9050600b5481111561145e576001600b5461145b919061293e565b90505b6000633b9aca0082600b54611473919061293e565b633b9aca00600b546114859190612979565b61148f9190612998565b6114999190612979565b90506114aa6002633b9aca00612a9e565b6114b5906001612979565b81600c546114c39190612873565b6114cd919061293e565b6114d79088612873565b96505050505080806114e890612aad565b9150506113ae565b5090949350505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61156e611818565b60648160ff1611156115e85760405162461bcd60e51b815260206004820152603d60248201527f496e76616c69642070657263656e746167652e204c696d6974206d757374206260448201527f6520636f6d707269736564206265747765656e203020616e64203130300000006064820152608401610e7c565b60646115fb633b9aca0060ff8416612979565b6116059190612998565b600b5550565b611613611818565b61105760106000612177565b61162a848484610c9d565b6001600160a01b0383163b156116635761164684848484611cdf565b611663576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061167957600080fd5b600091825260209091200154905081565b611692611818565b601255565b60606116a28261188e565b6116bf57604051630a14c4b560e41b815260040160405180910390fd5b60006116c9611dc7565b905080516000036116e95760405180602001604052806000815250611714565b806116f384611dd6565b604051602001611704929190612acc565b6040516020818303038152906040525b9392505050565b611723611818565b601155565b611730610c5a565b61177c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f74206f70656e65642e0000000000000000006044820152606401610e7c565b611784611a55565b61178e8282611b9e565b5050565b61179a611818565b6001600160a01b0381166117ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e7c565b61180881611b07565b50565b611813611818565b600c55565b6008546001600160a01b036101009091041633146110575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7c565b6000826118858584611e1a565b14949350505050565b6000805482108015610966575050600090815260046020526040902054600160e01b161590565b60606118bf611a55565b6000546118cc8685611a9b565b60008467ffffffffffffffff8111156118e7576118e76125c7565b604051908082528060200260200182016040528015611910578160200160208202803683370190505b50905060005b858110156119e357600061192a8483612873565b60008181526014602052604090208054919250899160ff19166001836003811115611957576119576124fe565b02179055508083838151811061196f5761196f612847565b6020908102919091010152600f5461198990611c20612873565b421080611994575085155b156119d05760108054600181018255600091909152427f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672909101555b50806119db8161288b565b915050611916565b509695505050505050565b600081600054811015611a3c5760008181526004602052604081205490600160e01b82169003611a3a575b80600003611714575060001901600081815260046020526040902054611a19565b505b604051636f96cda160e11b815260040160405180910390fd5b60085460ff16156110575760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e7c565b61178e828260405180602001604052806000815250611e67565b611abd611ecd565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b69611a55565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611aea3390565b611ba6611a55565b600081118015611bb75750600a8111155b611c175760405162461bcd60e51b815260206004820152602b60248201527f5175616e74697479206d75737420626520636f6d70726973656420626574776560448201526a0656e203120616e642031360ac1b6064820152608401610e7c565b6000611c21611f16565b611c2b824261136f565b905080341015611c4e57604051631e9acf1760e31b815260040160405180910390fd5b6000611c5d33858560006118b5565b90507fe659630e08a4123d667e829bf4f773f8717cb9321b05ef1470a9f058b09b7e4c3382858786604051611c96959493929190612afb565b60405180910390a16000611caa833461293e565b9050801561135957604051339082156108fc029083906000818181858888f19350505050158015610e2e573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d14903390899088908890600401612b44565b6020604051808303816000875af1925050508015611d4f575060408051601f3d908101601f19168201909252611d4c91810190612b81565b60015b611dad573d808015611d7d576040519150601f19603f3d011682016040523d82523d6000602084013e611d82565b606091505b508051600003611da5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a68565b606060098054610a7f90612707565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611df05750819003601f19909101908152919050565b600081815b8451811015611e5f57611e4b82868381518110611e3e57611e3e612847565b602002602001015161204d565b915080611e578161288b565b915050611e1f565b509392505050565b611e718383612079565b6001600160a01b0383163b15610981576000548281035b611e9b6000868380600101945086611cdf565b611eb8576040516368d2bf6b60e11b815260040160405180910390fd5b818110611e8857816000541461135957600080fd5b60085460ff166110575760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e7c565b60105415801590611f5d5750600a54611f2f904261293e565b60108054611f3f9060019061293e565b81548110611f4f57611f4f612847565b906000526020600020015411155b15611f6e5761105760106000612177565b60105415801590611fa95750600a54611f87904261293e565b6010600081548110611f9b57611f9b612847565b906000526020600020015411155b156110575760005b601054611fc09060019061293e565b811015612020576010611fd4826001612873565b81548110611fe457611fe4612847565b90600052602060002001546010828154811061200257612002612847565b600091825260209091200155806120188161288b565b915050611fb1565b50601080548061203257612032612b9e565b60019003818190600052602060002001600090559055611f6e565b6000818310612069576000828152602084905260409020611714565b5060009182526020526040902090565b600080549082900361209e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461214d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612115565b508160000361216e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b508054600082559060005260206000209081019061180891905b808211156121a55760008155600101612191565b5090565b6001600160e01b03198116811461180857600080fd5b6000602082840312156121d157600080fd5b8135611714816121a9565b600080602083850312156121ef57600080fd5b823567ffffffffffffffff8082111561220757600080fd5b818501915085601f83011261221b57600080fd5b81358181111561222a57600080fd5b86602082850101111561223c57600080fd5b60209290920196919550909350505050565b60006020828403121561226057600080fd5b5035919050565b60008083601f84011261227957600080fd5b50813567ffffffffffffffff81111561229157600080fd5b6020830191508360208260051b85010111156122ac57600080fd5b9250929050565b600080602083850312156122c657600080fd5b823567ffffffffffffffff8111156122dd57600080fd5b6122e985828601612267565b90969095509350505050565b60005b838110156123105781810151838201526020016122f8565b838111156116635750506000910152565b600081518084526123398160208601602086016122f5565b601f01601f19169290920160200192915050565b6020815260006117146020830184612321565b6001600160a01b038116811461180857600080fd5b6000806040838503121561238857600080fd5b823561239381612360565b946020939093013593505050565b8035600481106123b057600080fd5b919050565b6000806000606084860312156123ca57600080fd5b83356123d581612360565b92506123e3602085016123a1565b9150604084013590509250925092565b60008060006060848603121561240857600080fd5b833561241381612360565b9250602084013561242381612360565b929592945050506040919091013590565b60008060006040848603121561244957600080fd5b612452846123a1565b9250602084013567ffffffffffffffff81111561246e57600080fd5b61247a86828701612267565b9497909650939450505050565b60006020828403121561249957600080fd5b813561171481612360565b600080600080606085870312156124ba57600080fd5b6124c3856123a1565b935060208501359250604085013567ffffffffffffffff8111156124e657600080fd5b6124f287828801612267565b95989497509550505050565b634e487b7160e01b600052602160045260246000fd5b6004811061253257634e487b7160e01b600052602160045260246000fd5b9052565b602081016109668284612514565b6000806040838503121561255757600080fd5b50508035926020909101359150565b6000806040838503121561257957600080fd5b823561258481612360565b91506020830135801515811461259957600080fd5b809150509250929050565b6000602082840312156125b657600080fd5b813560ff8116811461171457600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156125f357600080fd5b84356125fe81612360565b9350602085013561260e81612360565b925060408501359150606085013567ffffffffffffffff8082111561263257600080fd5b818701915087601f83011261264657600080fd5b813581811115612658576126586125c7565b604051601f8201601f19908116603f01168101908382118183101715612680576126806125c7565b816040528281528a602084870101111561269957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126d057600080fd5b82356126db81612360565b9150602083013561259981612360565b600080604083850312156126fe57600080fd5b612393836123a1565b600181811c9082168061271b57607f821691505b60208210810361273b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561098157600081815260208120601f850160051c810160208610156127685750805b601f850160051c820191505b81811015610e2e57828155600101612774565b67ffffffffffffffff83111561279f5761279f6125c7565b6127b3836127ad8354612707565b83612741565b6000601f8411600181146127e757600085156127cf5750838201355b600019600387901b1c1916600186901b178355611359565b600083815260209020601f19861690835b8281101561281857868501358255602094850194600190920191016127f8565b50868210156128355760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156128865761288661285d565b500190565b60006001820161289d5761289d61285d565b5060010190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600081518084526020808501945080840160005b838110156128f1578151875295820195908201906001016128d5565b509495945050505050565b6001600160a01b0385168152608060208201819052600090612920908301866128c1565b90508360408301526129356060830184612514565b95945050505050565b6000828210156129505761295061285d565b500390565b6001600160a01b03841681526020810183905260608101610a686040830184612514565b60008160001904831182151516156129935761299361285d565b500290565b6000826129b557634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156129f55781600019048211156129db576129db61285d565b808516156129e857918102915b93841c93908002906129bf565b509250929050565b600082612a0c57506001610966565b81612a1957506000610966565b8160018114612a2f5760028114612a3957612a55565b6001915050610966565b60ff841115612a4a57612a4a61285d565b50506001821b610966565b5060208310610133831016604e8410600b8410161715612a78575081810a610966565b612a8283836129ba565b8060001904821115612a9657612a9661285d565b029392505050565b600061171460ff8416836129fd565b600060ff821660ff8103612ac357612ac361285d565b60010192915050565b60008351612ade8184602088016122f5565b835190830190612af28183602088016122f5565b01949350505050565b6001600160a01b038616815260a060208201819052600090612b1f908301876128c1565b9050846040830152612b346060830185612514565b8260808301529695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7790830184612321565b9695505050505050565b600060208284031215612b9357600080fd5b8151611714816121a9565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206e58b663bd357b51f520e7a1332f5ffd77a287f6213ec529e1b302cd7bd2ed2c64736f6c634300080f0033c91291136362315a89ee83d4b5795b8eee23bea345270ea41a4f65ff24651b83ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e77696e636974792e636f6d2f6c616e642f6d657461646174612f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063b0921fe9116100dc578063d7822c9911610095578063e985e9c51161006f578063e985e9c51461087e578063f26748e2146108c7578063f2fde38b146108da578063f4a0a528146108fa57600080fd5b8063d7822c9914610832578063dde44b8914610848578063e1a8f0321461086857600080fd5b8063b0921fe91461077a578063b88d4fde1461078f578063bb77f749146107a2578063bd32fb66146107c2578063c87b56dd146107e2578063cd7e7c101461080257600080fd5b806390556e3311610149578063a22cb46511610123578063a22cb4651461070e578063a4d66daf1461072e578063aa98e0c614610744578063b03321721461075a57600080fd5b806390556e331461069c57806395d89b41146106d95780639d9e9f15146106ee57600080fd5b8063715018a6146105fc578063736fe565146106115780637882d67b146106315780638456cb59146106515780638da5cb5b146106665780638f825a861461068957600080fd5b806323b872dd1161024f5780635c975abb116102085780636817c76c116101e25780636817c76c1461059057806368963df0146105a65780636d93c3ba146105bc57806370a08231146105dc57600080fd5b80635c975abb146105425780636190c9d51461055a5780636352211e1461057057600080fd5b806323b872dd146104b15780632c8244fc146104c45780633f4ba83a146104e457806342842e0e146104f957806344d19d2b1461050c578063511a96051461052257600080fd5b8063081812fc116102bc57806318160ddd1161029657806318160ddd146104565780631a6949e31461046f5780631e65497d146104845780631f281ace1461049c57600080fd5b8063081812fc146103eb578063095ea7b3146104235780630dd845441461043657600080fd5b806301ffc9a71461030457806302fe5305146103395780630367adf81461035b5780630564fa8014610389578063069824fb146103a957806306fdde03146103c9575b600080fd5b34801561031057600080fd5b5061032461031f3660046121bf565b61091a565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b506103596103543660046121dc565b61096c565b005b34801561036757600080fd5b5061037b61037636600461224e565b610986565b604051908152602001610330565b34801561039557600080fd5b506103596103a436600461224e565b6109ee565b3480156103b557600080fd5b506103246103c43660046122b3565b6109fb565b3480156103d557600080fd5b506103de610a70565b604051610330919061234d565b3480156103f757600080fd5b5061040b61040636600461224e565b610b02565b6040516001600160a01b039091168152602001610330565b610359610431366004612375565b610b46565b34801561044257600080fd5b506103596104513660046123b5565b610be6565b34801561046257600080fd5b506001546000540361037b565b34801561047b57600080fd5b50610324610c5a565b34801561049057600080fd5b5061037b633b9aca0081565b3480156104a857600080fd5b50610324610c74565b6103596104bf3660046123f3565b610c9d565b3480156104d057600080fd5b506103596104df366004612434565b610e36565b3480156104f057600080fd5b50610359611047565b6103596105073660046123f3565b611059565b34801561051857600080fd5b5061037b600d5481565b34801561052e57600080fd5b5061035961053d36600461224e565b611074565b34801561054e57600080fd5b5060085460ff16610324565b34801561056657600080fd5b5061037b600a5481565b34801561057c57600080fd5b5061040b61058b36600461224e565b611081565b34801561059c57600080fd5b5061037b600c5481565b3480156105b257600080fd5b5061037b60115481565b3480156105c857600080fd5b506103596105d736600461224e565b61108c565b3480156105e857600080fd5b5061037b6105f7366004612487565b611099565b34801561060857600080fd5b506103596110e8565b34801561061d57600080fd5b5061035961062c366004612375565b6110fa565b34801561063d57600080fd5b5061032461064c3660046122b3565b6111a5565b34801561065d57600080fd5b50610359611235565b34801561067257600080fd5b5060085461010090046001600160a01b031661040b565b6103596106973660046124a4565b611245565b3480156106a857600080fd5b506106cc6106b736600461224e565b60009081526014602052604090205460ff1690565b6040516103309190612536565b3480156106e557600080fd5b506103de611360565b3480156106fa57600080fd5b5061037b610709366004612544565b61136f565b34801561071a57600080fd5b50610359610729366004612566565b6114fa565b34801561073a57600080fd5b5061037b600b5481565b34801561075057600080fd5b5061037b60125481565b34801561076657600080fd5b506103596107753660046125a4565b611566565b34801561078657600080fd5b5061035961160b565b61035961079d3660046125dd565b61161f565b3480156107ae57600080fd5b5061037b6107bd36600461224e565b611669565b3480156107ce57600080fd5b506103596107dd36600461224e565b61168a565b3480156107ee57600080fd5b506103de6107fd36600461224e565b611697565b34801561080e57600080fd5b506106cc61081d36600461224e565b60146020526000908152604090205460ff1681565b34801561083e57600080fd5b5061037b600f5481565b34801561085457600080fd5b5061035961086336600461224e565b61171b565b34801561087457600080fd5b5061037b600e5481565b34801561088a57600080fd5b506103246108993660046126bd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103596108d53660046126eb565b611728565b3480156108e657600080fd5b506103596108f5366004612487565b611792565b34801561090657600080fd5b5061035961091536600461224e565b61180b565b60006301ffc9a760e01b6001600160e01b03198316148061094b57506380ac58cd60e01b6001600160e01b03198316145b806109665750635b5e139f60e01b6001600160e01b03198316145b92915050565b610974611818565b6009610981828483612787565b505050565b600080805b6010548110156109e75783600a54601083815481106109ac576109ac612847565b90600052602060002001546109c19190612873565b11156109d557816109d18161288b565b9250505b806109df8161288b565b91505061098b565b5092915050565b6109f6611818565b600e55565b60008033604051602001610a0f91906128a4565b604051602081830303815290604052805190602001209050610a68848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611878565b949350505050565b606060028054610a7f90612707565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90612707565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d8261188e565b610b2a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5182611081565b9050336001600160a01b03821614610b8a57610b6d8133610899565b610b8a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bee611818565b80600d6000828254610c009190612873565b9091555060009050610c1584848460016118b5565b90507fc91291136362315a89ee83d4b5795b8eee23bea345270ea41a4f65ff24651b8384828486604051610c4c94939291906128fc565b60405180910390a150505050565b6000600f544210158015610c6f5750600f5415155b905090565b600080600f5411610c855750600090565b610e10600f54610c95919061293e565b421015905090565b6000610ca8826119ee565b9050836001600160a01b0316816001600160a01b031614610cdb5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d2857610d0b8633610899565b610d2857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d4f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d5a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610dec57600184016000818152600460205260408120549003610dea576000548114610dea5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610e3e610c74565b610e855760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b632903737ba1037b832b732b21760691b60448201526064015b60405180910390fd5b610e8d611a55565b3360009081526013602052604090205460ff1615610eed5760405162461bcd60e51b815260206004820152601c60248201527f416464726573732068617320616c726561647920636c61696d65642e000000006044820152606401610e7c565b600033604051602001610f0091906128a4565b604051602081830303815290604052805190602001209050610f59838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611878565b610fa55760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610e7c565b336000908152601360205260408120805460ff19166001179055610fc860005490565b9050610fd5336001611a9b565b6000818152601460205260409020805486919060ff19166001836003811115611000576110006124fe565b02179055507f8483e9afea732ec0409fcc31d5671844771dcf21e481551fdc7ce260180936c333828760405161103893929190612955565b60405180910390a15050505050565b61104f611818565b611057611ab5565b565b6109818383836040518060200160405280600081525061161f565b61107c611818565b600f55565b6000610966826119ee565b611094611818565b600a55565b60006001600160a01b0382166110c2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6110f0611818565b6110576000611b07565b611102611818565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461114f576040519150601f19603f3d011682016040523d82523d6000602084013e611154565b606091505b50509050806109815760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610e7c565b3360009081526013602052604081205460ff1615156001036111c957506000610966565b6000336040516020016111dc91906128a4565b604051602081830303815290604052805190602001209050610a68848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611878565b61123d611818565b611057611b61565b61124d610c74565b61128f5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b632903737ba1037b832b732b21760691b6044820152606401610e7c565b611297611a55565b6000336040516020016112aa91906128a4565b604051602081830303815290604052805190602001209050611303838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611878565b61134f5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610e7c565b6113598585611b9e565b5050505050565b606060038054610a7f90612707565b6000600f54611c206113819190612873565b82101561139d5782600c546113969190612979565b9050610966565b6000806113a984610986565b905060005b858160ff1610156114f0576000633b9aca006113cd60ff841685612873565b6113d79190612979565b90506000600e548360ff1685600d546113f36001546000540390565b6113fd919061293e565b611407919061293e565b6114119190612873565b61141b9190612873565b9050600060648261142c8583612979565b6114369190612998565b6114409190612998565b9050600b5481111561145e576001600b5461145b919061293e565b90505b6000633b9aca0082600b54611473919061293e565b633b9aca00600b546114859190612979565b61148f9190612998565b6114999190612979565b90506114aa6002633b9aca00612a9e565b6114b5906001612979565b81600c546114c39190612873565b6114cd919061293e565b6114d79088612873565b96505050505080806114e890612aad565b9150506113ae565b5090949350505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61156e611818565b60648160ff1611156115e85760405162461bcd60e51b815260206004820152603d60248201527f496e76616c69642070657263656e746167652e204c696d6974206d757374206260448201527f6520636f6d707269736564206265747765656e203020616e64203130300000006064820152608401610e7c565b60646115fb633b9aca0060ff8416612979565b6116059190612998565b600b5550565b611613611818565b61105760106000612177565b61162a848484610c9d565b6001600160a01b0383163b156116635761164684848484611cdf565b611663576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061167957600080fd5b600091825260209091200154905081565b611692611818565b601255565b60606116a28261188e565b6116bf57604051630a14c4b560e41b815260040160405180910390fd5b60006116c9611dc7565b905080516000036116e95760405180602001604052806000815250611714565b806116f384611dd6565b604051602001611704929190612acc565b6040516020818303038152906040525b9392505050565b611723611818565b601155565b611730610c5a565b61177c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f74206f70656e65642e0000000000000000006044820152606401610e7c565b611784611a55565b61178e8282611b9e565b5050565b61179a611818565b6001600160a01b0381166117ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e7c565b61180881611b07565b50565b611813611818565b600c55565b6008546001600160a01b036101009091041633146110575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7c565b6000826118858584611e1a565b14949350505050565b6000805482108015610966575050600090815260046020526040902054600160e01b161590565b60606118bf611a55565b6000546118cc8685611a9b565b60008467ffffffffffffffff8111156118e7576118e76125c7565b604051908082528060200260200182016040528015611910578160200160208202803683370190505b50905060005b858110156119e357600061192a8483612873565b60008181526014602052604090208054919250899160ff19166001836003811115611957576119576124fe565b02179055508083838151811061196f5761196f612847565b6020908102919091010152600f5461198990611c20612873565b421080611994575085155b156119d05760108054600181018255600091909152427f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672909101555b50806119db8161288b565b915050611916565b509695505050505050565b600081600054811015611a3c5760008181526004602052604081205490600160e01b82169003611a3a575b80600003611714575060001901600081815260046020526040902054611a19565b505b604051636f96cda160e11b815260040160405180910390fd5b60085460ff16156110575760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e7c565b61178e828260405180602001604052806000815250611e67565b611abd611ecd565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b69611a55565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611aea3390565b611ba6611a55565b600081118015611bb75750600a8111155b611c175760405162461bcd60e51b815260206004820152602b60248201527f5175616e74697479206d75737420626520636f6d70726973656420626574776560448201526a0656e203120616e642031360ac1b6064820152608401610e7c565b6000611c21611f16565b611c2b824261136f565b905080341015611c4e57604051631e9acf1760e31b815260040160405180910390fd5b6000611c5d33858560006118b5565b90507fe659630e08a4123d667e829bf4f773f8717cb9321b05ef1470a9f058b09b7e4c3382858786604051611c96959493929190612afb565b60405180910390a16000611caa833461293e565b9050801561135957604051339082156108fc029083906000818181858888f19350505050158015610e2e573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d14903390899088908890600401612b44565b6020604051808303816000875af1925050508015611d4f575060408051601f3d908101601f19168201909252611d4c91810190612b81565b60015b611dad573d808015611d7d576040519150601f19603f3d011682016040523d82523d6000602084013e611d82565b606091505b508051600003611da5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a68565b606060098054610a7f90612707565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611df05750819003601f19909101908152919050565b600081815b8451811015611e5f57611e4b82868381518110611e3e57611e3e612847565b602002602001015161204d565b915080611e578161288b565b915050611e1f565b509392505050565b611e718383612079565b6001600160a01b0383163b15610981576000548281035b611e9b6000868380600101945086611cdf565b611eb8576040516368d2bf6b60e11b815260040160405180910390fd5b818110611e8857816000541461135957600080fd5b60085460ff166110575760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e7c565b60105415801590611f5d5750600a54611f2f904261293e565b60108054611f3f9060019061293e565b81548110611f4f57611f4f612847565b906000526020600020015411155b15611f6e5761105760106000612177565b60105415801590611fa95750600a54611f87904261293e565b6010600081548110611f9b57611f9b612847565b906000526020600020015411155b156110575760005b601054611fc09060019061293e565b811015612020576010611fd4826001612873565b81548110611fe457611fe4612847565b90600052602060002001546010828154811061200257612002612847565b600091825260209091200155806120188161288b565b915050611fb1565b50601080548061203257612032612b9e565b60019003818190600052602060002001600090559055611f6e565b6000818310612069576000828152602084905260409020611714565b5060009182526020526040902090565b600080549082900361209e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461214d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612115565b508160000361216e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b508054600082559060005260206000209081019061180891905b808211156121a55760008155600101612191565b5090565b6001600160e01b03198116811461180857600080fd5b6000602082840312156121d157600080fd5b8135611714816121a9565b600080602083850312156121ef57600080fd5b823567ffffffffffffffff8082111561220757600080fd5b818501915085601f83011261221b57600080fd5b81358181111561222a57600080fd5b86602082850101111561223c57600080fd5b60209290920196919550909350505050565b60006020828403121561226057600080fd5b5035919050565b60008083601f84011261227957600080fd5b50813567ffffffffffffffff81111561229157600080fd5b6020830191508360208260051b85010111156122ac57600080fd5b9250929050565b600080602083850312156122c657600080fd5b823567ffffffffffffffff8111156122dd57600080fd5b6122e985828601612267565b90969095509350505050565b60005b838110156123105781810151838201526020016122f8565b838111156116635750506000910152565b600081518084526123398160208601602086016122f5565b601f01601f19169290920160200192915050565b6020815260006117146020830184612321565b6001600160a01b038116811461180857600080fd5b6000806040838503121561238857600080fd5b823561239381612360565b946020939093013593505050565b8035600481106123b057600080fd5b919050565b6000806000606084860312156123ca57600080fd5b83356123d581612360565b92506123e3602085016123a1565b9150604084013590509250925092565b60008060006060848603121561240857600080fd5b833561241381612360565b9250602084013561242381612360565b929592945050506040919091013590565b60008060006040848603121561244957600080fd5b612452846123a1565b9250602084013567ffffffffffffffff81111561246e57600080fd5b61247a86828701612267565b9497909650939450505050565b60006020828403121561249957600080fd5b813561171481612360565b600080600080606085870312156124ba57600080fd5b6124c3856123a1565b935060208501359250604085013567ffffffffffffffff8111156124e657600080fd5b6124f287828801612267565b95989497509550505050565b634e487b7160e01b600052602160045260246000fd5b6004811061253257634e487b7160e01b600052602160045260246000fd5b9052565b602081016109668284612514565b6000806040838503121561255757600080fd5b50508035926020909101359150565b6000806040838503121561257957600080fd5b823561258481612360565b91506020830135801515811461259957600080fd5b809150509250929050565b6000602082840312156125b657600080fd5b813560ff8116811461171457600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156125f357600080fd5b84356125fe81612360565b9350602085013561260e81612360565b925060408501359150606085013567ffffffffffffffff8082111561263257600080fd5b818701915087601f83011261264657600080fd5b813581811115612658576126586125c7565b604051601f8201601f19908116603f01168101908382118183101715612680576126806125c7565b816040528281528a602084870101111561269957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126d057600080fd5b82356126db81612360565b9150602083013561259981612360565b600080604083850312156126fe57600080fd5b612393836123a1565b600181811c9082168061271b57607f821691505b60208210810361273b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561098157600081815260208120601f850160051c810160208610156127685750805b601f850160051c820191505b81811015610e2e57828155600101612774565b67ffffffffffffffff83111561279f5761279f6125c7565b6127b3836127ad8354612707565b83612741565b6000601f8411600181146127e757600085156127cf5750838201355b600019600387901b1c1916600186901b178355611359565b600083815260209020601f19861690835b8281101561281857868501358255602094850194600190920191016127f8565b50868210156128355760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156128865761288661285d565b500190565b60006001820161289d5761289d61285d565b5060010190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600081518084526020808501945080840160005b838110156128f1578151875295820195908201906001016128d5565b509495945050505050565b6001600160a01b0385168152608060208201819052600090612920908301866128c1565b90508360408301526129356060830184612514565b95945050505050565b6000828210156129505761295061285d565b500390565b6001600160a01b03841681526020810183905260608101610a686040830184612514565b60008160001904831182151516156129935761299361285d565b500290565b6000826129b557634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156129f55781600019048211156129db576129db61285d565b808516156129e857918102915b93841c93908002906129bf565b509250929050565b600082612a0c57506001610966565b81612a1957506000610966565b8160018114612a2f5760028114612a3957612a55565b6001915050610966565b60ff841115612a4a57612a4a61285d565b50506001821b610966565b5060208310610133831016604e8410600b8410161715612a78575081810a610966565b612a8283836129ba565b8060001904821115612a9657612a9661285d565b029392505050565b600061171460ff8416836129fd565b600060ff821660ff8103612ac357612ac361285d565b60010192915050565b60008351612ade8184602088016122f5565b835190830190612af28183602088016122f5565b01949350505050565b6001600160a01b038616815260a060208201819052600090612b1f908301876128c1565b9050846040830152612b346060830185612514565b8260808301529695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7790830184612321565b9695505050505050565b600060208284031215612b9357600080fd5b8151611714816121a9565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206e58b663bd357b51f520e7a1332f5ffd77a287f6213ec529e1b302cd7bd2ed2c64736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e77696e636974792e636f6d2f6c616e642f6d657461646174612f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://api.wincity.com/land/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [2] : 68747470733a2f2f6170692e77696e636974792e636f6d2f6c616e642f6d6574
Arg [3] : 61646174612f0000000000000000000000000000000000000000000000000000


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.