ETH Price: $3,233.88 (-0.26%)

Token

ProjectCurseNFT (Curse)
 

Overview

Max Total Supply

50 Curse

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ultimatepoopmaster.eth
Balance
1 Curse
0x5001f992df93dc089c356514eec6ac40b0e1c792
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:
ProjectCurseNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ProjectCurseNFT.sol
// SPDX-License-Identifier: MIT

/* 
  ________  ________  ________        ___  _______   ________ _________        ________  ___  ___  ________  ________  _______      
|\   __  \|\   __  \|\   __  \      |\  \|\  ___ \ |\   ____\\___   ___\     |\   ____\|\  \|\  \|\   __  \|\   ____\|\  ___ \     
\ \  \|\  \ \  \|\  \ \  \|\  \     \ \  \ \   __/|\ \  \___\|___ \  \_|     \ \  \___|\ \  \\\  \ \  \|\  \ \  \___|\ \   __/|    
 \ \   ____\ \   _  _\ \  \\\  \  __ \ \  \ \  \_|/_\ \  \       \ \  \       \ \  \    \ \  \\\  \ \   _  _\ \_____  \ \  \_|/__  
  \ \  \___|\ \  \\  \\ \  \\\  \|\  \\_\  \ \  \_|\ \ \  \____   \ \  \       \ \  \____\ \  \\\  \ \  \\  \\|____|\  \ \  \_|\ \ 
   \ \__\    \ \__\\ _\\ \_______\ \________\ \_______\ \_______\  \ \__\       \ \_______\ \_______\ \__\\ _\ ____\_\  \ \_______\
    \|__|     \|__|\|__|\|_______|\|________|\|_______|\|_______|   \|__|        \|_______|\|_______|\|__|\|__|\_________\|_______|
                                                                                                              \|_________|         

*/

pragma solidity 0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./ERC721A.sol";

contract ProjectCurseNFT is ERC721A, Ownable, PaymentSplitter {
    using Strings for uint256;

    enum Step {
        Before,
        WhitelistSale,
        PublicSale,
        Finished
    }

    uint256 private constant MAX_SUPPLY = 666;

    uint256 private PRICE_WHITELIST = 0.0099 ether;
    uint256 private PRICE_PUBLIC = 0.014 ether;

    uint256 public saleStartTime = 1668877200;

    bytes32 public merkleRoot;

    string public baseURI;

    mapping(address => uint256) amountNFTsperWalletWhitelist;
    mapping(address => uint256) amountNFTsperWalletPublic;

    uint256 private constant MAX_PER_ADDRESS_DURING_WHITELIST = 1;
    uint256 private constant MAX_PER_ADDRESS_DURING_PUBLIC = 2;

    uint256 private teamLenght;

    address[] private _team = [
        0x81D6c56f90d98B5BebF741deDf7C718f3045F2e5,
        0xEE6605C6eE07D3c74157Abf65E0b09D05d39296F
    ];

    uint256[] private _teamShares = [
        50, 
        50
    ];

    constructor(bytes32 _merkleRoot, string memory _baseURI)
        ERC721A("ProjectCurseNFT", "Curse")
        PaymentSplitter(_team, _teamShares)
    {
        merkleRoot = _merkleRoot;
        baseURI = _baseURI;
        teamLenght = _team.length;
    }

    function whitelistMint(
        address _account,
        uint256 _quantity,
        bytes32[] calldata _proof
    ) external payable {
        require(
            getStep() == Step.WhitelistSale,
            "Not the moment for the WL sale"
        );
        require(isWhitelisted(_account, _proof), "Not whitelisted");
        require(
            amountNFTsperWalletWhitelist[msg.sender] + _quantity <=
                MAX_PER_ADDRESS_DURING_WHITELIST,
            "You can only mint 2 NFTs during the whitelist sale"
        );
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= PRICE_WHITELIST * _quantity, "not enought funds");
        amountNFTsperWalletWhitelist[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
    }

    function publicMint(address _account, uint256 _quantity) external payable {
        require(
            getStep() == Step.PublicSale,
            "Not the moment to mint during public"
        );
        require(
            amountNFTsperWalletPublic[msg.sender] + _quantity <=
                MAX_PER_ADDRESS_DURING_PUBLIC,
            "You can only mint 2NFTs during the public sale"
        );
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= PRICE_PUBLIC * _quantity, "Not enought funds");
        amountNFTsperWalletPublic[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
    }

    function getStep() public view returns (Step actualStep) {
        if (block.timestamp < saleStartTime) {
            return Step.Before;
        }
        if (
            block.timestamp >= saleStartTime &&
            block.timestamp < saleStartTime + 24 hours
        ) {
            return Step.WhitelistSale;
        }
        if (
            block.timestamp >= saleStartTime + 24 hours &&
            block.timestamp < saleStartTime + 168 hours
        ) {
            return Step.PublicSale;
        }
        if (
            block.timestamp >= saleStartTime + 168 hours &&
            block.timestamp < saleStartTime + 169 hours
        ) {
            return Step.Finished;
        }
    }

    function isWhitelisted(address _account, bytes32[] calldata _proof)
        internal
        view
        returns (bool)
    {
        return
            MerkleProof.verify(
                _proof,
                merkleRoot,
                keccak256(abi.encodePacked((_account)))
            );
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override(ERC721A)
        returns (string memory)
    {
        require(_exists(_tokenId), "NFT NOT MINTED");

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    function setSaleStartime(uint256 _saleStartTime) external onlyOwner {
        saleStartTime = _saleStartTime;
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

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

    function withdraw() external onlyOwner {
        for (uint256 i = 0; i < teamLenght; i++) {
            release(payable(payee(i)));
        }
    }

    receive() external payable override {
        revert("only if you mint");
    }

    function teamMint(address _account, uint256 _quantity) external onlyOwner {
        _safeMint(_account, _quantity);
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 12 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import "./IERC721A.sol";

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // 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`.
                )

                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 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 12 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 11 of 12 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStep","outputs":[{"internalType":"enum ProjectCurseNFT.Step","name":"actualStep","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"setSaleStartime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266232bff5f46c0006010556631bced02db00006011556363790b9060125560405180604001604052807381d6c56f90d98b5bebf741dedf7c718f3045f2e573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173ee6605c6ee07d3c74157abf65e0b09d05d39296f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506018906002620000c99291906200070a565b506040518060400160405280603260ff168152602001603260ff168152506019906002620000f992919062000799565b503480156200010757600080fd5b5060405162005d0838038062005d0883398181016040528101906200012d9190620009dd565b6018805480602002602001604051908101604052809291908181526020018280548015620001b157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000166575b505050505060198054806020026020016040519081016040528092919081815260200182805480156200020457602002820191906000526020600020905b815481526020019060010190808311620001ef575b50505050506040518060400160405280600f81526020017f50726f6a65637443757273654e465400000000000000000000000000000000008152506040518060400160405280600581526020017f4375727365000000000000000000000000000000000000000000000000000000815250816002908162000286919062000c8e565b50806003908162000298919062000c8e565b50620002a9620003fe60201b60201c565b6000819055505050620002d1620002c56200040360201b60201c565b6200040b60201b60201c565b805182511462000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f9062000dfc565b60405180910390fd5b60008251116200035f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003569062000e6e565b60405180910390fd5b60005b8251811015620003ce57620003b883828151811062000386576200038562000e90565b5b6020026020010151838381518110620003a457620003a362000e90565b5b6020026020010151620004d160201b60201c565b8080620003c59062000eee565b91505062000362565b505050816013819055508060149081620003e9919062000c8e565b5060188054905060178190555050506200119b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053a9062000fb1565b60405180910390fd5b6000811162000589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005809062001023565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200060e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060590620010bb565b60405180910390fd5b600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600954620006c59190620010dd565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620006fe9291906200116e565b60405180910390a15050565b82805482825590600052602060002090810192821562000786579160200282015b82811115620007855782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200072b565b5b509050620007959190620007f0565b5090565b828054828255906000526020600020908101928215620007dd579160200282015b82811115620007dc578251829060ff16905591602001919060010190620007ba565b5b509050620007ec9190620007f0565b5090565b5b808211156200080b576000816000905550600101620007f1565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620008388162000823565b81146200084457600080fd5b50565b60008151905062000858816200082d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620008b38262000868565b810181811067ffffffffffffffff82111715620008d557620008d462000879565b5b80604052505050565b6000620008ea6200080f565b9050620008f88282620008a8565b919050565b600067ffffffffffffffff8211156200091b576200091a62000879565b5b620009268262000868565b9050602081019050919050565b60005b838110156200095357808201518184015260208101905062000936565b60008484015250505050565b6000620009766200097084620008fd565b620008de565b90508281526020810184848401111562000995576200099462000863565b5b620009a284828562000933565b509392505050565b600082601f830112620009c257620009c16200085e565b5b8151620009d48482602086016200095f565b91505092915050565b60008060408385031215620009f757620009f662000819565b5b600062000a078582860162000847565b925050602083015167ffffffffffffffff81111562000a2b5762000a2a6200081e565b5b62000a3985828601620009aa565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9657607f821691505b60208210810362000aac5762000aab62000a4e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad7565b62000b22868362000ad7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6f62000b6962000b638462000b3a565b62000b44565b62000b3a565b9050919050565b6000819050919050565b62000b8b8362000b4e565b62000ba362000b9a8262000b76565b84845462000ae4565b825550505050565b600090565b62000bba62000bab565b62000bc781848462000b80565b505050565b5b8181101562000bef5762000be360008262000bb0565b60018101905062000bcd565b5050565b601f82111562000c3e5762000c088162000ab2565b62000c138462000ac7565b8101602085101562000c23578190505b62000c3b62000c328562000ac7565b83018262000bcc565b50505b505050565b600082821c905092915050565b600062000c636000198460080262000c43565b1980831691505092915050565b600062000c7e838362000c50565b9150826002028217905092915050565b62000c998262000a43565b67ffffffffffffffff81111562000cb55762000cb462000879565b5b62000cc1825462000a7d565b62000cce82828562000bf3565b600060209050601f83116001811462000d06576000841562000cf1578287015190505b62000cfd858262000c70565b86555062000d6d565b601f19841662000d168662000ab2565b60005b8281101562000d405784890151825560018201915060208501945060208101905062000d19565b8683101562000d60578489015162000d5c601f89168262000c50565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000de460328362000d75565b915062000df18262000d86565b604082019050919050565b6000602082019050818103600083015262000e178162000dd5565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000e56601a8362000d75565b915062000e638262000e1e565b602082019050919050565b6000602082019050818103600083015262000e898162000e47565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000efb8262000b3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000f305762000f2f62000ebf565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000f99602c8362000d75565b915062000fa68262000f3b565b604082019050919050565b6000602082019050818103600083015262000fcc8162000f8a565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b60006200100b601d8362000d75565b9150620010188262000fd3565b602082019050919050565b600060208201905081810360008301526200103e8162000ffc565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b6000620010a3602b8362000d75565b9150620010b08262001045565b604082019050919050565b60006020820190508181036000830152620010d68162001094565b9050919050565b6000620010ea8262000b3a565b9150620010f78362000b3a565b925082820190508082111562001112576200111162000ebf565b5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011458262001118565b9050919050565b620011578162001138565b82525050565b620011688162000b3a565b82525050565b60006040820190506200118560008301856200114c565b6200119460208301846200115d565b9392505050565b614b5d80620011ab6000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063add5a4fa116100ab578063ce7c2ac21161006f578063ce7c2ac214610887578063d79779b2146108c4578063e33b7de314610901578063e985e9c51461092c578063f2fde38b1461096957610274565b8063add5a4fa1461079f578063b88d4fde146107c8578063c45ac050146107f1578063c87b56dd1461082e578063ce6df2b91461086b57610274565b806395d89b41116100f257806395d89b41146106a65780639852595c146106d15780639e5288a01461070e578063a22cb46514610739578063a3f8eace1461076257610274565b806370a08231146105c1578063715018a6146105fe5780637cb64759146106155780638b83209b1461063e5780638da5cb5b1461067b57610274565b80632eb4a7ab116101bc57806348b750441161018057806348b75044146104eb5780634b11faaf1461051457806355f804b3146105305780636352211e146105595780636c0360eb1461059657610274565b80632eb4a7ab146104185780633a98ef39146104435780633ccfd60b1461046e578063406072a91461048557806342842e0e146104c257610274565b806318160ddd1161020357806318160ddd1461034757806319165587146103725780631cbaee2d1461039b57806323b872dd146103c657806327d77ba9146103ef57610274565b806301ffc9a71461027957806306fdde03146102b6578063081812fc146102e1578063095ea7b31461031e57610274565b36610274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026b90612f85565b60405180910390fd5b600080fd5b34801561028557600080fd5b506102a0600480360381019061029b9190613011565b610992565b6040516102ad9190613059565b60405180910390f35b3480156102c257600080fd5b506102cb610a24565b6040516102d891906130f3565b60405180910390f35b3480156102ed57600080fd5b506103086004803603810190610303919061314b565b610ab6565b60405161031591906131b9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613200565b610b35565b005b34801561035357600080fd5b5061035c610c79565b604051610369919061324f565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906132a8565b610c90565b005b3480156103a757600080fd5b506103b0610e18565b6040516103bd919061324f565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e891906132d5565b610e1e565b005b3480156103fb57600080fd5b506104166004803603810190610411919061314b565b611140565b005b34801561042457600080fd5b5061042d611152565b60405161043a9190613341565b60405180910390f35b34801561044f57600080fd5b50610458611158565b604051610465919061324f565b60405180910390f35b34801561047a57600080fd5b50610483611162565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061339a565b61119e565b6040516104b9919061324f565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906132d5565b611225565b005b3480156104f757600080fd5b50610512600480360381019061050d919061339a565b611245565b005b61052e6004803603810190610529919061343f565b611461565b005b34801561053c57600080fd5b50610557600480360381019061055291906135e3565b6116b4565b005b34801561056557600080fd5b50610580600480360381019061057b919061314b565b6116cf565b60405161058d91906131b9565b60405180910390f35b3480156105a257600080fd5b506105ab6116e1565b6040516105b891906130f3565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061362c565b61176f565b6040516105f5919061324f565b60405180910390f35b34801561060a57600080fd5b50610613611827565b005b34801561062157600080fd5b5061063c60048036038101906106379190613685565b61183b565b005b34801561064a57600080fd5b506106656004803603810190610660919061314b565b61184d565b60405161067291906131b9565b60405180910390f35b34801561068757600080fd5b50610690611895565b60405161069d91906131b9565b60405180910390f35b3480156106b257600080fd5b506106bb6118bf565b6040516106c891906130f3565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f3919061362c565b611951565b604051610705919061324f565b60405180910390f35b34801561071a57600080fd5b5061072361199a565b6040516107309190613729565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613770565b611a5c565b005b34801561076e57600080fd5b506107896004803603810190610784919061362c565b611b67565b604051610796919061324f565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613200565b611b9a565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613851565b611bb0565b005b3480156107fd57600080fd5b506108186004803603810190610813919061339a565b611c23565b604051610825919061324f565b60405180910390f35b34801561083a57600080fd5b506108556004803603810190610850919061314b565b611cd2565b60405161086291906130f3565b60405180910390f35b61088560048036038101906108809190613200565b611d4e565b005b34801561089357600080fd5b506108ae60048036038101906108a9919061362c565b611f55565b6040516108bb919061324f565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906138d4565b611f9e565b6040516108f8919061324f565b60405180910390f35b34801561090d57600080fd5b50610916611fe7565b604051610923919061324f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613901565b611ff1565b6040516109609190613059565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b919061362c565b612085565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a3390613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f90613970565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac182612108565b610af7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b40826116cf565b90508073ffffffffffffffffffffffffffffffffffffffff16610b61612167565b73ffffffffffffffffffffffffffffffffffffffff1614610bc457610b8d81610b88612167565b611ff1565b610bc3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c8361216f565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613a13565b60405180910390fd5b6000610d1d82611b67565b905060008103610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990613aa5565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610db19190613af4565b9250508190555080600a6000828254610dca9190613af4565b92505081905550610ddb8282612174565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610e0c929190613b87565b60405180910390a15050565b60125481565b6000610e2982612268565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e9c84612334565b91509150610eb28187610ead612167565b61235b565b610efe57610ec786610ec2612167565b611ff1565b610efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f64576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f71868686600161239f565b8015610f7c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061104a856110268888876123a5565b7c0200000000000000000000000000000000000000000000000000000000176123cd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110d057600060018501905060006004600083815260200190815260200160002054036110ce5760005481146110cd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461113886868660016123f8565b505050505050565b6111486123fe565b8060128190555050565b60135481565b6000600954905090565b61116a6123fe565b60005b60175481101561119b576111886111838261184d565b610c90565b808061119390613bb0565b91505061116d565b50565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61124083838360405180602001604052806000815250611bb0565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613a13565b60405180910390fd5b60006112d38383611c23565b905060008103611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613aa5565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a49190613af4565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fa9190613af4565b9250508190555061140c83838361247c565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611454929190613bf8565b60405180910390a2505050565b60016003811115611475576114746136b2565b5b61147d61199a565b600381111561148f5761148e6136b2565b5b146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613c6d565b60405180910390fd5b6114da848383612502565b611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613cd9565b60405180910390fd5b600183601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115669190613af4565b11156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613d6b565b60405180910390fd5b61029a836115b3610c79565b6115bd9190613af4565b11156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613dd7565b60405180910390fd5b8260105461160c9190613df7565b34101561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613e85565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169d9190613af4565b925050819055506116ae8484612581565b50505050565b6116bc6123fe565b80601490816116cb9190614047565b5050565b60006116da82612268565b9050919050565b601480546116ee90613970565b80601f016020809104026020016040519081016040528092919081815260200182805461171a90613970565b80156117675780601f1061173c57610100808354040283529160200191611767565b820191906000526020600020905b81548152906001019060200180831161174a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61182f6123fe565b611839600061259f565b565b6118436123fe565b8060138190555050565b6000600d828154811061186357611862614119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ce90613970565b80601f01602080910402602001604051908101604052809291908181526020018280546118fa90613970565b80156119475780601f1061191c57610100808354040283529160200191611947565b820191906000526020600020905b81548152906001019060200180831161192a57829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006012544210156119af5760009050611a59565b60125442101580156119d05750620151806012546119cd9190613af4565b42105b156119de5760019050611a59565b620151806012546119ef9190613af4565b4210158015611a0d575062093a80601254611a0a9190613af4565b42105b15611a1b5760029050611a59565b62093a80601254611a2c9190613af4565b4210158015611a4a575062094890601254611a479190613af4565b42105b15611a585760039050611a59565b5b90565b8060076000611a69612167565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b16612167565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b9190613059565b60405180910390a35050565b600080611b72611fe7565b47611b7d9190613af4565b9050611b928382611b8d86611951565b612665565b915050919050565b611ba26123fe565b611bac8282612581565b5050565b611bbb848484610e1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c1d57611be6848484846126d3565b611c1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600080611c2f84611f9e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c6891906131b9565b602060405180830381865afa158015611c85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca9919061415d565b611cb39190613af4565b9050611cc98382611cc4878761119e565b612665565b91505092915050565b6060611cdd82612108565b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906141d6565b60405180910390fd5b6014611d2783612823565b604051602001611d38929190614301565b6040516020818303038152906040529050919050565b60026003811115611d6257611d616136b2565b5b611d6a61199a565b6003811115611d7c57611d7b6136b2565b5b14611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906143a2565b60405180910390fd5b600281601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e099190613af4565b1115611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190614434565b60405180910390fd5b61029a81611e56610c79565b611e609190613af4565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613dd7565b60405180910390fd5b80601154611eaf9190613df7565b341015611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee8906144a0565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f409190613af4565b92505081905550611f518282612581565b5050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61208d6123fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f390614532565b60405180910390fd5b6121058161259f565b50565b60008161211361216f565b11158015612122575060005482105b8015612160575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b804710156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae9061459e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121dd906145ef565b60006040518083038185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050905080612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614676565b60405180910390fd5b505050565b6000808290508061227761216f565b116122fd576000548110156122fc5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122fa575b600081036122f05760046000836001900393508381526020019081526020016000205490506122c6565b809250505061232f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123bc868684612983565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61240661298c565b73ffffffffffffffffffffffffffffffffffffffff16612424611895565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906146e2565b60405180910390fd5b565b6124fd8363a9059cbb60e01b848460405160240161249b929190613bf8565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612994565b505050565b6000612578838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506013548660405160200161255d919061474a565b60405160208183030381529060405280519060200120612a5b565b90509392505050565b61259b828260405180602001604052806000815250612a72565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856126b69190613df7565b6126c09190614794565b6126ca91906147c5565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126f9612167565b8786866040518563ffffffff1660e01b815260040161271b949392919061484e565b6020604051808303816000875af192505050801561275757506040513d601f19601f8201168201806040525081019061275491906148af565b60015b6127d0573d8060008114612787576040519150601f19603f3d011682016040523d82523d6000602084013e61278c565b606091505b5060008151036127c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361286a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297e565b600082905060005b6000821461289c57808061288590613bb0565b915050600a826128959190614794565b9150612872565b60008167ffffffffffffffff8111156128b8576128b76134b8565b5b6040519080825280601f01601f1916602001820160405280156128ea5781602001600182028036833780820191505090505b5090505b600085146129775760018261290391906147c5565b9150600a8561291291906148dc565b603061291e9190613af4565b60f81b81838151811061293457612933614119565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129709190614794565b94506128ee565b8093505050505b919050565b60009392505050565b600033905090565b60006129f6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b0f9092919063ffffffff16565b9050600081511115612a565780806020019051810190612a169190614922565b612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c906149c1565b60405180910390fd5b5b505050565b600082612a688584612b27565b1490509392505050565b612a7c8383612b7d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b0a57600080549050600083820390505b612abc60008683806001019450866126d3565b612af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612aa9578160005414612b0757600080fd5b50505b505050565b6060612b1e8484600085612d38565b90509392505050565b60008082905060005b8451811015612b7257612b5d82868381518110612b5057612b4f614119565b5b6020026020010151612e4c565b91508080612b6a90613bb0565b915050612b30565b508091505092915050565b60008054905060008203612bbd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bca600084838561239f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c4183612c3260008660006123a5565b612c3b85612e77565b176123cd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ce257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ca7565b5060008203612d1d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d3360008483856123f8565b505050565b606082471015612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614a53565b60405180910390fd5b612d8685612e87565b612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90614abf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612dee9190614b10565b60006040518083038185875af1925050503d8060008114612e2b576040519150601f19603f3d011682016040523d82523d6000602084013e612e30565b606091505b5091509150612e40828286612eaa565b92505050949350505050565b6000818310612e6457612e5f8284612f11565b612e6f565b612e6e8383612f11565b5b905092915050565b60006001821460e11b9050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612eba57829050612f0a565b600083511115612ecd5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0191906130f3565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b600082825260208201905092915050565b7f6f6e6c7920696620796f75206d696e7400000000000000000000000000000000600082015250565b6000612f6f601083612f28565b9150612f7a82612f39565b602082019050919050565b60006020820190508181036000830152612f9e81612f62565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fee81612fb9565b8114612ff957600080fd5b50565b60008135905061300b81612fe5565b92915050565b60006020828403121561302757613026612faf565b5b600061303584828501612ffc565b91505092915050565b60008115159050919050565b6130538161303e565b82525050565b600060208201905061306e600083018461304a565b92915050565b600081519050919050565b60005b8381101561309d578082015181840152602081019050613082565b60008484015250505050565b6000601f19601f8301169050919050565b60006130c582613074565b6130cf8185612f28565b93506130df81856020860161307f565b6130e8816130a9565b840191505092915050565b6000602082019050818103600083015261310d81846130ba565b905092915050565b6000819050919050565b61312881613115565b811461313357600080fd5b50565b6000813590506131458161311f565b92915050565b60006020828403121561316157613160612faf565b5b600061316f84828501613136565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131a382613178565b9050919050565b6131b381613198565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd81613198565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000806040838503121561321757613216612faf565b5b6000613225858286016131eb565b925050602061323685828601613136565b9150509250929050565b61324981613115565b82525050565b60006020820190506132646000830184613240565b92915050565b600061327582613178565b9050919050565b6132858161326a565b811461329057600080fd5b50565b6000813590506132a28161327c565b92915050565b6000602082840312156132be576132bd612faf565b5b60006132cc84828501613293565b91505092915050565b6000806000606084860312156132ee576132ed612faf565b5b60006132fc868287016131eb565b935050602061330d868287016131eb565b925050604061331e86828701613136565b9150509250925092565b6000819050919050565b61333b81613328565b82525050565b60006020820190506133566000830184613332565b92915050565b600061336782613198565b9050919050565b6133778161335c565b811461338257600080fd5b50565b6000813590506133948161336e565b92915050565b600080604083850312156133b1576133b0612faf565b5b60006133bf85828601613385565b92505060206133d0858286016131eb565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133ff576133fe6133da565b5b8235905067ffffffffffffffff81111561341c5761341b6133df565b5b602083019150836020820283011115613438576134376133e4565b5b9250929050565b6000806000806060858703121561345957613458612faf565b5b6000613467878288016131eb565b945050602061347887828801613136565b935050604085013567ffffffffffffffff81111561349957613498612fb4565b5b6134a5878288016133e9565b925092505092959194509250565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134f0826130a9565b810181811067ffffffffffffffff8211171561350f5761350e6134b8565b5b80604052505050565b6000613522612fa5565b905061352e82826134e7565b919050565b600067ffffffffffffffff82111561354e5761354d6134b8565b5b613557826130a9565b9050602081019050919050565b82818337600083830152505050565b600061358661358184613533565b613518565b9050828152602081018484840111156135a2576135a16134b3565b5b6135ad848285613564565b509392505050565b600082601f8301126135ca576135c96133da565b5b81356135da848260208601613573565b91505092915050565b6000602082840312156135f9576135f8612faf565b5b600082013567ffffffffffffffff81111561361757613616612fb4565b5b613623848285016135b5565b91505092915050565b60006020828403121561364257613641612faf565b5b6000613650848285016131eb565b91505092915050565b61366281613328565b811461366d57600080fd5b50565b60008135905061367f81613659565b92915050565b60006020828403121561369b5761369a612faf565b5b60006136a984828501613670565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106136f2576136f16136b2565b5b50565b6000819050613703826136e1565b919050565b6000613713826136f5565b9050919050565b61372381613708565b82525050565b600060208201905061373e600083018461371a565b92915050565b61374d8161303e565b811461375857600080fd5b50565b60008135905061376a81613744565b92915050565b6000806040838503121561378757613786612faf565b5b6000613795858286016131eb565b92505060206137a68582860161375b565b9150509250929050565b600067ffffffffffffffff8211156137cb576137ca6134b8565b5b6137d4826130a9565b9050602081019050919050565b60006137f46137ef846137b0565b613518565b9050828152602081018484840111156138105761380f6134b3565b5b61381b848285613564565b509392505050565b600082601f830112613838576138376133da565b5b81356138488482602086016137e1565b91505092915050565b6000806000806080858703121561386b5761386a612faf565b5b6000613879878288016131eb565b945050602061388a878288016131eb565b935050604061389b87828801613136565b925050606085013567ffffffffffffffff8111156138bc576138bb612fb4565b5b6138c887828801613823565b91505092959194509250565b6000602082840312156138ea576138e9612faf565b5b60006138f884828501613385565b91505092915050565b6000806040838503121561391857613917612faf565b5b6000613926858286016131eb565b9250506020613937858286016131eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398857607f821691505b60208210810361399b5761399a613941565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006139fd602683612f28565b9150613a08826139a1565b604082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613a8f602b83612f28565b9150613a9a82613a33565b604082019050919050565b60006020820190508181036000830152613abe81613a82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aff82613115565b9150613b0a83613115565b9250828201905080821115613b2257613b21613ac5565b5b92915050565b6000819050919050565b6000613b4d613b48613b4384613178565b613b28565b613178565b9050919050565b6000613b5f82613b32565b9050919050565b6000613b7182613b54565b9050919050565b613b8181613b66565b82525050565b6000604082019050613b9c6000830185613b78565b613ba96020830184613240565b9392505050565b6000613bbb82613115565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bed57613bec613ac5565b5b600182019050919050565b6000604082019050613c0d60008301856131aa565b613c1a6020830184613240565b9392505050565b7f4e6f7420746865206d6f6d656e7420666f722074686520574c2073616c650000600082015250565b6000613c57601e83612f28565b9150613c6282613c21565b602082019050919050565b60006020820190508181036000830152613c8681613c4a565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613cc3600f83612f28565b9150613cce82613c8d565b602082019050919050565b60006020820190508181036000830152613cf281613cb6565b9050919050565b7f596f752063616e206f6e6c79206d696e742032204e46547320647572696e672060008201527f7468652077686974656c6973742073616c650000000000000000000000000000602082015250565b6000613d55603283612f28565b9150613d6082613cf9565b604082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613dc1601383612f28565b9150613dcc82613d8b565b602082019050919050565b60006020820190508181036000830152613df081613db4565b9050919050565b6000613e0282613115565b9150613e0d83613115565b9250828202613e1b81613115565b91508282048414831517613e3257613e31613ac5565b5b5092915050565b7f6e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000613e6f601183612f28565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eca565b613f118683613eca565b95508019841693508086168417925050509392505050565b6000613f44613f3f613f3a84613115565b613b28565b613115565b9050919050565b6000819050919050565b613f5e83613f29565b613f72613f6a82613f4b565b848454613ed7565b825550505050565b600090565b613f87613f7a565b613f92818484613f55565b505050565b5b81811015613fb657613fab600082613f7f565b600181019050613f98565b5050565b601f821115613ffb57613fcc81613ea5565b613fd584613eba565b81016020851015613fe4578190505b613ff8613ff085613eba565b830182613f97565b50505b505050565b600082821c905092915050565b600061401e60001984600802614000565b1980831691505092915050565b6000614037838361400d565b9150826002028217905092915050565b61405082613074565b67ffffffffffffffff811115614069576140686134b8565b5b6140738254613970565b61407e828285613fba565b600060209050601f8311600181146140b1576000841561409f578287015190505b6140a9858261402b565b865550614111565b601f1984166140bf86613ea5565b60005b828110156140e7578489015182556001820191506020850194506020810190506140c2565b868310156141045784890151614100601f89168261400d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141578161311f565b92915050565b60006020828403121561417357614172612faf565b5b600061418184828501614148565b91505092915050565b7f4e4654204e4f54204d494e544544000000000000000000000000000000000000600082015250565b60006141c0600e83612f28565b91506141cb8261418a565b602082019050919050565b600060208201905081810360008301526141ef816141b3565b9050919050565b600081905092915050565b6000815461420e81613970565b61421881866141f6565b9450600182166000811461423357600181146142485761427b565b60ff198316865281151582028601935061427b565b61425185613ea5565b60005b8381101561427357815481890152600182019150602081019050614254565b838801955050505b50505092915050565b600061428f82613074565b61429981856141f6565b93506142a981856020860161307f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006142eb6005836141f6565b91506142f6826142b5565b600582019050919050565b600061430d8285614201565b91506143198284614284565b9150614324826142de565b91508190509392505050565b7f4e6f7420746865206d6f6d656e7420746f206d696e7420647572696e6720707560008201527f626c696300000000000000000000000000000000000000000000000000000000602082015250565b600061438c602483612f28565b915061439782614330565b604082019050919050565b600060208201905081810360008301526143bb8161437f565b9050919050565b7f596f752063616e206f6e6c79206d696e7420324e46547320647572696e67207460008201527f6865207075626c69632073616c65000000000000000000000000000000000000602082015250565b600061441e602e83612f28565b9150614429826143c2565b604082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b600061448a601183612f28565b915061449582614454565b602082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061451c602683612f28565b9150614527826144c0565b604082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614588601d83612f28565b915061459382614552565b602082019050919050565b600060208201905081810360008301526145b78161457b565b9050919050565b600081905092915050565b50565b60006145d96000836145be565b91506145e4826145c9565b600082019050919050565b60006145fa826145cc565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614660603a83612f28565b915061466b82614604565b604082019050919050565b6000602082019050818103600083015261468f81614653565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146cc602083612f28565b91506146d782614696565b602082019050919050565b600060208201905081810360008301526146fb816146bf565b9050919050565b60008160601b9050919050565b600061471a82614702565b9050919050565b600061472c8261470f565b9050919050565b61474461473f82613198565b614721565b82525050565b60006147568284614733565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479f82613115565b91506147aa83613115565b9250826147ba576147b9614765565b5b828204905092915050565b60006147d082613115565b91506147db83613115565b92508282039050818111156147f3576147f2613ac5565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000614820826147f9565b61482a8185614804565b935061483a81856020860161307f565b614843816130a9565b840191505092915050565b600060808201905061486360008301876131aa565b61487060208301866131aa565b61487d6040830185613240565b818103606083015261488f8184614815565b905095945050505050565b6000815190506148a981612fe5565b92915050565b6000602082840312156148c5576148c4612faf565b5b60006148d38482850161489a565b91505092915050565b60006148e782613115565b91506148f283613115565b92508261490257614901614765565b5b828206905092915050565b60008151905061491c81613744565b92915050565b60006020828403121561493857614937612faf565b5b60006149468482850161490d565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006149ab602a83612f28565b91506149b68261494f565b604082019050919050565b600060208201905081810360008301526149da8161499e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614a3d602683612f28565b9150614a48826149e1565b604082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614aa9601d83612f28565b9150614ab482614a73565b602082019050919050565b60006020820190508181036000830152614ad881614a9c565b9050919050565b6000614aea826147f9565b614af481856145be565b9350614b0481856020860161307f565b80840191505092915050565b6000614b1c8284614adf565b91508190509291505056fea264697066735822122056bb77b86316780b409e47900affe6e46960bc049915a9359e390698dfeeb7a864736f6c634300081100333b43af7b4b81adcc65f2e1194be8f2021d5b15093b0c1d683907ff0271d0739e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569616e7a736279686e69663235736e323665797161796d736436716e6f793478636d687578633734776464343672366261653772752e697066732e6e667473746f726167652e6c696e6b2f00000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c806370a082311161012e578063add5a4fa116100ab578063ce7c2ac21161006f578063ce7c2ac214610887578063d79779b2146108c4578063e33b7de314610901578063e985e9c51461092c578063f2fde38b1461096957610274565b8063add5a4fa1461079f578063b88d4fde146107c8578063c45ac050146107f1578063c87b56dd1461082e578063ce6df2b91461086b57610274565b806395d89b41116100f257806395d89b41146106a65780639852595c146106d15780639e5288a01461070e578063a22cb46514610739578063a3f8eace1461076257610274565b806370a08231146105c1578063715018a6146105fe5780637cb64759146106155780638b83209b1461063e5780638da5cb5b1461067b57610274565b80632eb4a7ab116101bc57806348b750441161018057806348b75044146104eb5780634b11faaf1461051457806355f804b3146105305780636352211e146105595780636c0360eb1461059657610274565b80632eb4a7ab146104185780633a98ef39146104435780633ccfd60b1461046e578063406072a91461048557806342842e0e146104c257610274565b806318160ddd1161020357806318160ddd1461034757806319165587146103725780631cbaee2d1461039b57806323b872dd146103c657806327d77ba9146103ef57610274565b806301ffc9a71461027957806306fdde03146102b6578063081812fc146102e1578063095ea7b31461031e57610274565b36610274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026b90612f85565b60405180910390fd5b600080fd5b34801561028557600080fd5b506102a0600480360381019061029b9190613011565b610992565b6040516102ad9190613059565b60405180910390f35b3480156102c257600080fd5b506102cb610a24565b6040516102d891906130f3565b60405180910390f35b3480156102ed57600080fd5b506103086004803603810190610303919061314b565b610ab6565b60405161031591906131b9565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613200565b610b35565b005b34801561035357600080fd5b5061035c610c79565b604051610369919061324f565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906132a8565b610c90565b005b3480156103a757600080fd5b506103b0610e18565b6040516103bd919061324f565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e891906132d5565b610e1e565b005b3480156103fb57600080fd5b506104166004803603810190610411919061314b565b611140565b005b34801561042457600080fd5b5061042d611152565b60405161043a9190613341565b60405180910390f35b34801561044f57600080fd5b50610458611158565b604051610465919061324f565b60405180910390f35b34801561047a57600080fd5b50610483611162565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061339a565b61119e565b6040516104b9919061324f565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906132d5565b611225565b005b3480156104f757600080fd5b50610512600480360381019061050d919061339a565b611245565b005b61052e6004803603810190610529919061343f565b611461565b005b34801561053c57600080fd5b50610557600480360381019061055291906135e3565b6116b4565b005b34801561056557600080fd5b50610580600480360381019061057b919061314b565b6116cf565b60405161058d91906131b9565b60405180910390f35b3480156105a257600080fd5b506105ab6116e1565b6040516105b891906130f3565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e3919061362c565b61176f565b6040516105f5919061324f565b60405180910390f35b34801561060a57600080fd5b50610613611827565b005b34801561062157600080fd5b5061063c60048036038101906106379190613685565b61183b565b005b34801561064a57600080fd5b506106656004803603810190610660919061314b565b61184d565b60405161067291906131b9565b60405180910390f35b34801561068757600080fd5b50610690611895565b60405161069d91906131b9565b60405180910390f35b3480156106b257600080fd5b506106bb6118bf565b6040516106c891906130f3565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f3919061362c565b611951565b604051610705919061324f565b60405180910390f35b34801561071a57600080fd5b5061072361199a565b6040516107309190613729565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613770565b611a5c565b005b34801561076e57600080fd5b506107896004803603810190610784919061362c565b611b67565b604051610796919061324f565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613200565b611b9a565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613851565b611bb0565b005b3480156107fd57600080fd5b506108186004803603810190610813919061339a565b611c23565b604051610825919061324f565b60405180910390f35b34801561083a57600080fd5b506108556004803603810190610850919061314b565b611cd2565b60405161086291906130f3565b60405180910390f35b61088560048036038101906108809190613200565b611d4e565b005b34801561089357600080fd5b506108ae60048036038101906108a9919061362c565b611f55565b6040516108bb919061324f565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906138d4565b611f9e565b6040516108f8919061324f565b60405180910390f35b34801561090d57600080fd5b50610916611fe7565b604051610923919061324f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613901565b611ff1565b6040516109609190613059565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b919061362c565b612085565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a3390613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f90613970565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac182612108565b610af7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b40826116cf565b90508073ffffffffffffffffffffffffffffffffffffffff16610b61612167565b73ffffffffffffffffffffffffffffffffffffffff1614610bc457610b8d81610b88612167565b611ff1565b610bc3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c8361216f565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613a13565b60405180910390fd5b6000610d1d82611b67565b905060008103610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990613aa5565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610db19190613af4565b9250508190555080600a6000828254610dca9190613af4565b92505081905550610ddb8282612174565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610e0c929190613b87565b60405180910390a15050565b60125481565b6000610e2982612268565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e9c84612334565b91509150610eb28187610ead612167565b61235b565b610efe57610ec786610ec2612167565b611ff1565b610efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f64576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f71868686600161239f565b8015610f7c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061104a856110268888876123a5565b7c0200000000000000000000000000000000000000000000000000000000176123cd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110d057600060018501905060006004600083815260200190815260200160002054036110ce5760005481146110cd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461113886868660016123f8565b505050505050565b6111486123fe565b8060128190555050565b60135481565b6000600954905090565b61116a6123fe565b60005b60175481101561119b576111886111838261184d565b610c90565b808061119390613bb0565b91505061116d565b50565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61124083838360405180602001604052806000815250611bb0565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613a13565b60405180910390fd5b60006112d38383611c23565b905060008103611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613aa5565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a49190613af4565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fa9190613af4565b9250508190555061140c83838361247c565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611454929190613bf8565b60405180910390a2505050565b60016003811115611475576114746136b2565b5b61147d61199a565b600381111561148f5761148e6136b2565b5b146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613c6d565b60405180910390fd5b6114da848383612502565b611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613cd9565b60405180910390fd5b600183601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115669190613af4565b11156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613d6b565b60405180910390fd5b61029a836115b3610c79565b6115bd9190613af4565b11156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613dd7565b60405180910390fd5b8260105461160c9190613df7565b34101561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613e85565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169d9190613af4565b925050819055506116ae8484612581565b50505050565b6116bc6123fe565b80601490816116cb9190614047565b5050565b60006116da82612268565b9050919050565b601480546116ee90613970565b80601f016020809104026020016040519081016040528092919081815260200182805461171a90613970565b80156117675780601f1061173c57610100808354040283529160200191611767565b820191906000526020600020905b81548152906001019060200180831161174a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61182f6123fe565b611839600061259f565b565b6118436123fe565b8060138190555050565b6000600d828154811061186357611862614119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ce90613970565b80601f01602080910402602001604051908101604052809291908181526020018280546118fa90613970565b80156119475780601f1061191c57610100808354040283529160200191611947565b820191906000526020600020905b81548152906001019060200180831161192a57829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006012544210156119af5760009050611a59565b60125442101580156119d05750620151806012546119cd9190613af4565b42105b156119de5760019050611a59565b620151806012546119ef9190613af4565b4210158015611a0d575062093a80601254611a0a9190613af4565b42105b15611a1b5760029050611a59565b62093a80601254611a2c9190613af4565b4210158015611a4a575062094890601254611a479190613af4565b42105b15611a585760039050611a59565b5b90565b8060076000611a69612167565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b16612167565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b9190613059565b60405180910390a35050565b600080611b72611fe7565b47611b7d9190613af4565b9050611b928382611b8d86611951565b612665565b915050919050565b611ba26123fe565b611bac8282612581565b5050565b611bbb848484610e1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c1d57611be6848484846126d3565b611c1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600080611c2f84611f9e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c6891906131b9565b602060405180830381865afa158015611c85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca9919061415d565b611cb39190613af4565b9050611cc98382611cc4878761119e565b612665565b91505092915050565b6060611cdd82612108565b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906141d6565b60405180910390fd5b6014611d2783612823565b604051602001611d38929190614301565b6040516020818303038152906040529050919050565b60026003811115611d6257611d616136b2565b5b611d6a61199a565b6003811115611d7c57611d7b6136b2565b5b14611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906143a2565b60405180910390fd5b600281601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e099190613af4565b1115611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190614434565b60405180910390fd5b61029a81611e56610c79565b611e609190613af4565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613dd7565b60405180910390fd5b80601154611eaf9190613df7565b341015611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee8906144a0565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f409190613af4565b92505081905550611f518282612581565b5050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61208d6123fe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f390614532565b60405180910390fd5b6121058161259f565b50565b60008161211361216f565b11158015612122575060005482105b8015612160575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b804710156121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae9061459e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121dd906145ef565b60006040518083038185875af1925050503d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5050905080612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614676565b60405180910390fd5b505050565b6000808290508061227761216f565b116122fd576000548110156122fc5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036122fa575b600081036122f05760046000836001900393508381526020019081526020016000205490506122c6565b809250505061232f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123bc868684612983565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61240661298c565b73ffffffffffffffffffffffffffffffffffffffff16612424611895565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906146e2565b60405180910390fd5b565b6124fd8363a9059cbb60e01b848460405160240161249b929190613bf8565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612994565b505050565b6000612578838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506013548660405160200161255d919061474a565b60405160208183030381529060405280519060200120612a5b565b90509392505050565b61259b828260405180602001604052806000815250612a72565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856126b69190613df7565b6126c09190614794565b6126ca91906147c5565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126f9612167565b8786866040518563ffffffff1660e01b815260040161271b949392919061484e565b6020604051808303816000875af192505050801561275757506040513d601f19601f8201168201806040525081019061275491906148af565b60015b6127d0573d8060008114612787576040519150601f19603f3d011682016040523d82523d6000602084013e61278c565b606091505b5060008151036127c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361286a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297e565b600082905060005b6000821461289c57808061288590613bb0565b915050600a826128959190614794565b9150612872565b60008167ffffffffffffffff8111156128b8576128b76134b8565b5b6040519080825280601f01601f1916602001820160405280156128ea5781602001600182028036833780820191505090505b5090505b600085146129775760018261290391906147c5565b9150600a8561291291906148dc565b603061291e9190613af4565b60f81b81838151811061293457612933614119565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129709190614794565b94506128ee565b8093505050505b919050565b60009392505050565b600033905090565b60006129f6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b0f9092919063ffffffff16565b9050600081511115612a565780806020019051810190612a169190614922565b612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c906149c1565b60405180910390fd5b5b505050565b600082612a688584612b27565b1490509392505050565b612a7c8383612b7d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b0a57600080549050600083820390505b612abc60008683806001019450866126d3565b612af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612aa9578160005414612b0757600080fd5b50505b505050565b6060612b1e8484600085612d38565b90509392505050565b60008082905060005b8451811015612b7257612b5d82868381518110612b5057612b4f614119565b5b6020026020010151612e4c565b91508080612b6a90613bb0565b915050612b30565b508091505092915050565b60008054905060008203612bbd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bca600084838561239f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c4183612c3260008660006123a5565b612c3b85612e77565b176123cd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ce257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ca7565b5060008203612d1d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d3360008483856123f8565b505050565b606082471015612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614a53565b60405180910390fd5b612d8685612e87565b612dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbc90614abf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612dee9190614b10565b60006040518083038185875af1925050503d8060008114612e2b576040519150601f19603f3d011682016040523d82523d6000602084013e612e30565b606091505b5091509150612e40828286612eaa565b92505050949350505050565b6000818310612e6457612e5f8284612f11565b612e6f565b612e6e8383612f11565b5b905092915050565b60006001821460e11b9050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612eba57829050612f0a565b600083511115612ecd5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0191906130f3565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b600082825260208201905092915050565b7f6f6e6c7920696620796f75206d696e7400000000000000000000000000000000600082015250565b6000612f6f601083612f28565b9150612f7a82612f39565b602082019050919050565b60006020820190508181036000830152612f9e81612f62565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fee81612fb9565b8114612ff957600080fd5b50565b60008135905061300b81612fe5565b92915050565b60006020828403121561302757613026612faf565b5b600061303584828501612ffc565b91505092915050565b60008115159050919050565b6130538161303e565b82525050565b600060208201905061306e600083018461304a565b92915050565b600081519050919050565b60005b8381101561309d578082015181840152602081019050613082565b60008484015250505050565b6000601f19601f8301169050919050565b60006130c582613074565b6130cf8185612f28565b93506130df81856020860161307f565b6130e8816130a9565b840191505092915050565b6000602082019050818103600083015261310d81846130ba565b905092915050565b6000819050919050565b61312881613115565b811461313357600080fd5b50565b6000813590506131458161311f565b92915050565b60006020828403121561316157613160612faf565b5b600061316f84828501613136565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131a382613178565b9050919050565b6131b381613198565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd81613198565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000806040838503121561321757613216612faf565b5b6000613225858286016131eb565b925050602061323685828601613136565b9150509250929050565b61324981613115565b82525050565b60006020820190506132646000830184613240565b92915050565b600061327582613178565b9050919050565b6132858161326a565b811461329057600080fd5b50565b6000813590506132a28161327c565b92915050565b6000602082840312156132be576132bd612faf565b5b60006132cc84828501613293565b91505092915050565b6000806000606084860312156132ee576132ed612faf565b5b60006132fc868287016131eb565b935050602061330d868287016131eb565b925050604061331e86828701613136565b9150509250925092565b6000819050919050565b61333b81613328565b82525050565b60006020820190506133566000830184613332565b92915050565b600061336782613198565b9050919050565b6133778161335c565b811461338257600080fd5b50565b6000813590506133948161336e565b92915050565b600080604083850312156133b1576133b0612faf565b5b60006133bf85828601613385565b92505060206133d0858286016131eb565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133ff576133fe6133da565b5b8235905067ffffffffffffffff81111561341c5761341b6133df565b5b602083019150836020820283011115613438576134376133e4565b5b9250929050565b6000806000806060858703121561345957613458612faf565b5b6000613467878288016131eb565b945050602061347887828801613136565b935050604085013567ffffffffffffffff81111561349957613498612fb4565b5b6134a5878288016133e9565b925092505092959194509250565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134f0826130a9565b810181811067ffffffffffffffff8211171561350f5761350e6134b8565b5b80604052505050565b6000613522612fa5565b905061352e82826134e7565b919050565b600067ffffffffffffffff82111561354e5761354d6134b8565b5b613557826130a9565b9050602081019050919050565b82818337600083830152505050565b600061358661358184613533565b613518565b9050828152602081018484840111156135a2576135a16134b3565b5b6135ad848285613564565b509392505050565b600082601f8301126135ca576135c96133da565b5b81356135da848260208601613573565b91505092915050565b6000602082840312156135f9576135f8612faf565b5b600082013567ffffffffffffffff81111561361757613616612fb4565b5b613623848285016135b5565b91505092915050565b60006020828403121561364257613641612faf565b5b6000613650848285016131eb565b91505092915050565b61366281613328565b811461366d57600080fd5b50565b60008135905061367f81613659565b92915050565b60006020828403121561369b5761369a612faf565b5b60006136a984828501613670565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106136f2576136f16136b2565b5b50565b6000819050613703826136e1565b919050565b6000613713826136f5565b9050919050565b61372381613708565b82525050565b600060208201905061373e600083018461371a565b92915050565b61374d8161303e565b811461375857600080fd5b50565b60008135905061376a81613744565b92915050565b6000806040838503121561378757613786612faf565b5b6000613795858286016131eb565b92505060206137a68582860161375b565b9150509250929050565b600067ffffffffffffffff8211156137cb576137ca6134b8565b5b6137d4826130a9565b9050602081019050919050565b60006137f46137ef846137b0565b613518565b9050828152602081018484840111156138105761380f6134b3565b5b61381b848285613564565b509392505050565b600082601f830112613838576138376133da565b5b81356138488482602086016137e1565b91505092915050565b6000806000806080858703121561386b5761386a612faf565b5b6000613879878288016131eb565b945050602061388a878288016131eb565b935050604061389b87828801613136565b925050606085013567ffffffffffffffff8111156138bc576138bb612fb4565b5b6138c887828801613823565b91505092959194509250565b6000602082840312156138ea576138e9612faf565b5b60006138f884828501613385565b91505092915050565b6000806040838503121561391857613917612faf565b5b6000613926858286016131eb565b9250506020613937858286016131eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061398857607f821691505b60208210810361399b5761399a613941565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006139fd602683612f28565b9150613a08826139a1565b604082019050919050565b60006020820190508181036000830152613a2c816139f0565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613a8f602b83612f28565b9150613a9a82613a33565b604082019050919050565b60006020820190508181036000830152613abe81613a82565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613aff82613115565b9150613b0a83613115565b9250828201905080821115613b2257613b21613ac5565b5b92915050565b6000819050919050565b6000613b4d613b48613b4384613178565b613b28565b613178565b9050919050565b6000613b5f82613b32565b9050919050565b6000613b7182613b54565b9050919050565b613b8181613b66565b82525050565b6000604082019050613b9c6000830185613b78565b613ba96020830184613240565b9392505050565b6000613bbb82613115565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bed57613bec613ac5565b5b600182019050919050565b6000604082019050613c0d60008301856131aa565b613c1a6020830184613240565b9392505050565b7f4e6f7420746865206d6f6d656e7420666f722074686520574c2073616c650000600082015250565b6000613c57601e83612f28565b9150613c6282613c21565b602082019050919050565b60006020820190508181036000830152613c8681613c4a565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613cc3600f83612f28565b9150613cce82613c8d565b602082019050919050565b60006020820190508181036000830152613cf281613cb6565b9050919050565b7f596f752063616e206f6e6c79206d696e742032204e46547320647572696e672060008201527f7468652077686974656c6973742073616c650000000000000000000000000000602082015250565b6000613d55603283612f28565b9150613d6082613cf9565b604082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613dc1601383612f28565b9150613dcc82613d8b565b602082019050919050565b60006020820190508181036000830152613df081613db4565b9050919050565b6000613e0282613115565b9150613e0d83613115565b9250828202613e1b81613115565b91508282048414831517613e3257613e31613ac5565b5b5092915050565b7f6e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000613e6f601183612f28565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eca565b613f118683613eca565b95508019841693508086168417925050509392505050565b6000613f44613f3f613f3a84613115565b613b28565b613115565b9050919050565b6000819050919050565b613f5e83613f29565b613f72613f6a82613f4b565b848454613ed7565b825550505050565b600090565b613f87613f7a565b613f92818484613f55565b505050565b5b81811015613fb657613fab600082613f7f565b600181019050613f98565b5050565b601f821115613ffb57613fcc81613ea5565b613fd584613eba565b81016020851015613fe4578190505b613ff8613ff085613eba565b830182613f97565b50505b505050565b600082821c905092915050565b600061401e60001984600802614000565b1980831691505092915050565b6000614037838361400d565b9150826002028217905092915050565b61405082613074565b67ffffffffffffffff811115614069576140686134b8565b5b6140738254613970565b61407e828285613fba565b600060209050601f8311600181146140b1576000841561409f578287015190505b6140a9858261402b565b865550614111565b601f1984166140bf86613ea5565b60005b828110156140e7578489015182556001820191506020850194506020810190506140c2565b868310156141045784890151614100601f89168261400d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141578161311f565b92915050565b60006020828403121561417357614172612faf565b5b600061418184828501614148565b91505092915050565b7f4e4654204e4f54204d494e544544000000000000000000000000000000000000600082015250565b60006141c0600e83612f28565b91506141cb8261418a565b602082019050919050565b600060208201905081810360008301526141ef816141b3565b9050919050565b600081905092915050565b6000815461420e81613970565b61421881866141f6565b9450600182166000811461423357600181146142485761427b565b60ff198316865281151582028601935061427b565b61425185613ea5565b60005b8381101561427357815481890152600182019150602081019050614254565b838801955050505b50505092915050565b600061428f82613074565b61429981856141f6565b93506142a981856020860161307f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006142eb6005836141f6565b91506142f6826142b5565b600582019050919050565b600061430d8285614201565b91506143198284614284565b9150614324826142de565b91508190509392505050565b7f4e6f7420746865206d6f6d656e7420746f206d696e7420647572696e6720707560008201527f626c696300000000000000000000000000000000000000000000000000000000602082015250565b600061438c602483612f28565b915061439782614330565b604082019050919050565b600060208201905081810360008301526143bb8161437f565b9050919050565b7f596f752063616e206f6e6c79206d696e7420324e46547320647572696e67207460008201527f6865207075626c69632073616c65000000000000000000000000000000000000602082015250565b600061441e602e83612f28565b9150614429826143c2565b604082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b600061448a601183612f28565b915061449582614454565b602082019050919050565b600060208201905081810360008301526144b98161447d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061451c602683612f28565b9150614527826144c0565b604082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614588601d83612f28565b915061459382614552565b602082019050919050565b600060208201905081810360008301526145b78161457b565b9050919050565b600081905092915050565b50565b60006145d96000836145be565b91506145e4826145c9565b600082019050919050565b60006145fa826145cc565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614660603a83612f28565b915061466b82614604565b604082019050919050565b6000602082019050818103600083015261468f81614653565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146cc602083612f28565b91506146d782614696565b602082019050919050565b600060208201905081810360008301526146fb816146bf565b9050919050565b60008160601b9050919050565b600061471a82614702565b9050919050565b600061472c8261470f565b9050919050565b61474461473f82613198565b614721565b82525050565b60006147568284614733565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479f82613115565b91506147aa83613115565b9250826147ba576147b9614765565b5b828204905092915050565b60006147d082613115565b91506147db83613115565b92508282039050818111156147f3576147f2613ac5565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000614820826147f9565b61482a8185614804565b935061483a81856020860161307f565b614843816130a9565b840191505092915050565b600060808201905061486360008301876131aa565b61487060208301866131aa565b61487d6040830185613240565b818103606083015261488f8184614815565b905095945050505050565b6000815190506148a981612fe5565b92915050565b6000602082840312156148c5576148c4612faf565b5b60006148d38482850161489a565b91505092915050565b60006148e782613115565b91506148f283613115565b92508261490257614901614765565b5b828206905092915050565b60008151905061491c81613744565b92915050565b60006020828403121561493857614937612faf565b5b60006149468482850161490d565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006149ab602a83612f28565b91506149b68261494f565b604082019050919050565b600060208201905081810360008301526149da8161499e565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614a3d602683612f28565b9150614a48826149e1565b604082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614aa9601d83612f28565b9150614ab482614a73565b602082019050919050565b60006020820190508181036000830152614ad881614a9c565b9050919050565b6000614aea826147f9565b614af481856145be565b9350614b0481856020860161307f565b80840191505092915050565b6000614b1c8284614adf565b91508190509291505056fea264697066735822122056bb77b86316780b409e47900affe6e46960bc049915a9359e390698dfeeb7a864736f6c63430008110033

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

3b43af7b4b81adcc65f2e1194be8f2021d5b15093b0c1d683907ff0271d0739e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569616e7a736279686e69663235736e323665797161796d736436716e6f793478636d687578633734776464343672366261653772752e697066732e6e667473746f726167652e6c696e6b2f00000000000000

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x3b43af7b4b81adcc65f2e1194be8f2021d5b15093b0c1d683907ff0271d0739e
Arg [1] : _baseURI (string): https://bafybeianzsbyhnif25sn26eyqaymsd6qnoy4xcmhuxc74wdd46r6bae7ru.ipfs.nftstorage.link/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 3b43af7b4b81adcc65f2e1194be8f2021d5b15093b0c1d683907ff0271d0739e
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [3] : 68747470733a2f2f62616679626569616e7a736279686e69663235736e323665
Arg [4] : 797161796d736436716e6f793478636d68757863373477646434367236626165
Arg [5] : 3772752e697066732e6e667473746f726167652e6c696e6b2f00000000000000


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.