ETH Price: $3,462.95 (+1.61%)
Gas: 7 Gwei

Token

Degenheim (DGNH)
 

Overview

Max Total Supply

7,777 DGNH

Holders

2,254

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
d34thst4lker.eth
Balance
25 DGNH
0xf57a49b941f7725d858b657b9f82052c4d3fcb4d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A fully gamified Play-and-Earn project. Founded & developed by seasoned experts from the gaming industry. Imagine having the fun of playing Diablo, Hades, Path of Exile, Lost Ark etc. within a world where virtually anything in-game can become an NFT. That is Degenheim. Website: https://degenheim.com/ Discord: https://discord.gg/degenheim/ Degenesis: https://opensea.io/collection/degenheim-degenesis

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Degenheim

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion
File 1 of 8 : Degenheim.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

/*

Degenheim.sol

Written by: mousedev.eth

*/

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./MerkleWhitelist.sol";

interface IDegenesis {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

interface IDegenheimRenderer {
    function tokenURI(uint256 _tokenId) external view returns (string memory);
}

contract Degenheim is ERC721A, Ownable, MerkleWhitelist {
    string public contractURI = "ipfs://QmQi2F99Dkg4comZzFvcXMrXrVqDeMoBLXp5vgZmo9VWbJ";

    uint256 public maxSupply = 7777;
    uint256 public maxSupplyInPublicSale = 6450;
    uint256 public numMintedInPublicSale = 0;
    uint256 public price = 0.08 ether;

    address public degenesisAddress;
    address public degenheimRendererAddress;

    struct SaleTierDetails {
        //Timing
        uint64 startTimestamp;
        uint64 endTimestamp;
        //Paused override.
        bool paused;
        //How many can be minted for a user.
        uint16 mintLimit;
    }

    mapping(uint8 => SaleTierDetails) public saleTierDetails;

    constructor() ERC721A("Degenheim", "DGNH") {
        //OG sale
        saleTierDetails[0] = SaleTierDetails({
            startTimestamp: 1666282500,
            endTimestamp: 10000000000000,
            paused: false,
            mintLimit: 2
        });

        //WL sale
        saleTierDetails[1] = SaleTierDetails({
            startTimestamp: 1666282500,
            endTimestamp: 10000000000000,
            paused: false,
            mintLimit: 1
        });

        //Collablist
        saleTierDetails[2] = SaleTierDetails({
            startTimestamp: 1666284300,
            endTimestamp: 10000000000000,
            paused: false,
            mintLimit: 1
        });

        //Public Sale
        saleTierDetails[3] = SaleTierDetails({
            startTimestamp: 1666289700,
            endTimestamp: 10000000000000,
            paused: false,
            mintLimit: 3
        });
    }

    /*
  _____ _   _ _______ ______ _____  _   _          _        ______ _    _ _   _  _____ _______ _____ ____  _   _  _____ 
 |_   _| \ | |__   __|  ____|  __ \| \ | |   /\   | |      |  ____| |  | | \ | |/ ____|__   __|_   _/ __ \| \ | |/ ____|
   | | |  \| |  | |  | |__  | |__) |  \| |  /  \  | |      | |__  | |  | |  \| | |       | |    | || |  | |  \| | (___  
   | | | . ` |  | |  |  __| |  _  /| . ` | / /\ \ | |      |  __| | |  | | . ` | |       | |    | || |  | | . ` |\___ \ 
  _| |_| |\  |  | |  | |____| | \ \| |\  |/ ____ \| |____  | |    | |__| | |\  | |____   | |   _| || |__| | |\  |____) |
 |_____|_| \_|  |_|  |______|_|  \_\_| \_/_/    \_\______| |_|     \____/|_| \_|\_____|  |_|  |_____\____/|_| \_|_____/ 
 */

    function _getAuxIndex(uint8 _index) internal view returns (uint8) {
        return uint8(_getAux(msg.sender) >> (_index * 8));
    }

    function _setAuxIndex(uint8 _index, uint8 _num) internal {
        //Thx to @nftdoyler for helping me with bit shifting.
        uint256 bitMask = (2**(8 * (_index + 1)) - (2**(8 * _index)));
        _setAux(
            msg.sender,
            uint64(
                (_getAux(msg.sender) & ~bitMask) |
                    ((_num * (2**(8 * _index))) & bitMask)
            )
        );
    }

    /*
 _  _  __  __ _  ____    ____  _  _  __ _   ___  ____  __  __   __ _  ____ 
( \/ )(  )(  ( \(_  _)  (  __)/ )( \(  ( \ / __)(_  _)(  )/  \ (  ( \/ ___)
/ \/ \ )( /    /  )(     ) _) ) \/ (/    /( (__   )(   )((  O )/    /\___ \
\_)(_/(__)\_)__) (__)   (__)  \____/\_)__) \___) (__) (__)\__/ \_)__)(____/
*/

    function mintPublic(uint8 _quantity) public payable {
        require(
            numMintedInPublicSale + _quantity <= maxSupplyInPublicSale,
            "Max supply for public sale reached!"
        );

        require(
            (block.timestamp >= saleTierDetails[3].startTimestamp &&
                block.timestamp < saleTierDetails[3].endTimestamp) &&
                !saleTierDetails[3].paused,
            "This sale tier is not active!"
        );

        uint8 mintedAmount = _getAuxIndex(3);

        //Require they haven't minted their allocation.
        require(
            mintedAmount + _quantity <= saleTierDetails[3].mintLimit,
            "You've minted your allocation!"
        );

        require(msg.value >= _quantity * price, "Must send enough ether!");

        //Store they minted this many.
        _setAuxIndex(3, mintedAmount + _quantity);

        //Add this many minted to storage of minting.
        numMintedInPublicSale += _quantity;

        //Mint them their tokens.
        _mint(msg.sender, _quantity);

        return;
    }

    function mint(
        bytes32[] calldata proof,
        uint8 _saleTier,
        uint8 _quantity
    ) public payable onlyWhitelisted(proof, _saleTier) {
        //Ensure total supply doesnt exceed max supply
        require(
            numMintedInPublicSale + _quantity <= maxSupplyInPublicSale,
            "Max supply for public sale reached!"
        );

        require(
            (block.timestamp >= saleTierDetails[_saleTier].startTimestamp &&
                block.timestamp < saleTierDetails[_saleTier].endTimestamp) &&
                !saleTierDetails[_saleTier].paused,
            "This sale tier is not active!"
        );

        uint8 mintedAmount = _getAuxIndex(_saleTier);

        //Require they haven't minted their allocation.
        require(
            mintedAmount + _quantity <= saleTierDetails[_saleTier].mintLimit,
            "You've minted your allocation!"
        );

        require(_quantity > 0, "Quantity must be greater than 0.");

        require(msg.value >= _quantity * price, "Must send enough ether!");

        //Store they minted this many.
        _setAuxIndex(_saleTier, mintedAmount + _quantity);

        //Add this many minted to storage of minting.
        numMintedInPublicSale += _quantity;

        //Mint them their tokens.
        _mint(msg.sender, _quantity);

        return;
    }

    /*
   U  ___ u              _   _   U _____ u   ____          _____    _   _   _   _      ____   _____             U  ___ u  _   _    ____     
    \/"_ \/__        __ | \ |"|  \| ___"|/U |  _"\ u      |" ___|U |"|u| | | \ |"|  U /"___| |_ " _|     ___     \/"_ \/ | \ |"|  / __"| u  
    | | | |\"\      /"/<|  \| |>  |  _|"   \| |_) |/     U| |_  u \| |\| |<|  \| |> \| | u     | |      |_"_|    | | | |<|  \| |><\___ \/   
.-,_| |_| |/\ \ /\ / /\U| |\  |u  | |___    |  _ <       \|  _|/   | |_| |U| |\  |u  | |/__   /| |\      | | .-,_| |_| |U| |\  |u u___) |   
 \_)-\___/U  \ V  V /  U|_| \_|   |_____|   |_| \_\       |_|     <<\___/  |_| \_|    \____| u |_|U    U/| |\u\_)-\___/  |_| \_|  |____/>>  
      \\  .-,_\ /\ /_,-.||   \\,-.<<   >>   //   \\_      )(\\,- (__) )(   ||   \\,-._// \\  _// \\_.-,_|___|_,-.  \\    ||   \\,-.)(  (__) 
     (__)  \_)-'  '-(_/ (_")  (_/(__) (__) (__)  (__)    (__)(_/     (__)  (_")  (_/(__)(__)(__) (__)\_)-' '-(_/  (__)   (_")  (_/(__)      
*/

    function airdropToDegenesisOwners(
        uint256 _startingPassId,
        uint256 _endingPassId,
        uint256 _quantityToAirdrop
    ) public onlyOwner {
        uint256 quantityMinting = (_endingPassId - _startingPassId) *
            _quantityToAirdrop;

        require(
            totalSupply() + quantityMinting <= maxSupply,
            "Exceeds max supply!"
        );
        require(_startingPassId >= 0 && _endingPassId <= 299, "Invalid IDs");

        for (uint256 i = _startingPassId; i <= _endingPassId; i++) {
            address thisOwner = IDegenesis(degenesisAddress).ownerOf(i);
            _mint(thisOwner, _quantityToAirdrop);
        }
    }

    function airdrop(address[] memory _addresses) public onlyOwner {
        require(
            totalSupply() + _addresses.length <= maxSupply,
            "Exceeds max supply!"
        );

        for (uint256 i = 0; i < _addresses.length; i++) {
            _mint(_addresses[i], 1);
        }
    }

    function mintTeam(uint256 _quantity, address _receiver) public onlyOwner {
        require(totalSupply() + _quantity <= maxSupply, "Max supply reached!");
        _mint(_receiver, _quantity);
    }

    function adjustSaleTierDetails(
        uint8 _index,
        SaleTierDetails calldata _saleTierDetails
    ) public onlyOwner {
        saleTierDetails[_index] = SaleTierDetails(
            _saleTierDetails.startTimestamp,
            _saleTierDetails.endTimestamp,
            _saleTierDetails.paused,
            _saleTierDetails.mintLimit
        );
    }

    function adjustSaleTierPaused(uint8 _index, bool _paused) public onlyOwner {
        saleTierDetails[_index].paused = _paused;
    }

    function adjustMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(
            _maxSupply <= 7777,
            "Max supply can only be adjusted to lower than 7777."
        );
        maxSupply = _maxSupply;
    }

    function adjustMaxSupplyInPublicSale(uint256 _maxSupplyInPublicSale) public onlyOwner {
        require(
            _maxSupplyInPublicSale <= maxSupply,
            "Max supply in public sale can only be adjusted to lower than max supply."
        );
        maxSupplyInPublicSale = _maxSupplyInPublicSale;
    }


    function withdrawFunds() public onlyOwner {
        uint256 funds = address(this).balance;

        (bool succ, ) = payable(msg.sender).call{value: funds}("");
        require(succ, "transfer failed");
    }

    function setDegenesisAddress(address _degenesisAddress) public onlyOwner {
        degenesisAddress = _degenesisAddress;
    }

    function setDegenheimRendererAddress(address _degenheimRendererAddress) public onlyOwner {
        degenheimRendererAddress = _degenheimRendererAddress;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }

    /*
  _____  ______          _____    ______ _    _ _   _  _____ _______ _____ ____  _   _  _____ 
 |  __ \|  ____|   /\   |  __ \  |  ____| |  | | \ | |/ ____|__   __|_   _/ __ \| \ | |/ ____|
 | |__) | |__     /  \  | |  | | | |__  | |  | |  \| | |       | |    | || |  | |  \| | (___  
 |  _  /|  __|   / /\ \ | |  | | |  __| | |  | | . ` | |       | |    | || |  | | . ` |\___ \ 
 | | \ \| |____ / ____ \| |__| | | |    | |__| | |\  | |____   | |   _| || |__| | |\  |____) |
 |_|  \_\______/_/    \_\_____/  |_|     \____/|_| \_|\_____|  |_|  |_____\____/|_| \_|_____/ 
*/

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return IDegenheimRenderer(degenheimRendererAddress).tokenURI(_tokenId);
    }
}

File 2 of 8 : MerkleWhitelist.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MerkleWhitelist is Ownable {
    mapping(uint256 => bytes32) public merkleRoots;

    function verifySenderExternal(
        bytes32[] calldata proof,
        uint256 _index,
        address _address
    ) external view returns (bool) {
        return
            MerkleProof.verifyCalldata(
                proof,
                merkleRoots[_index],
                keccak256(abi.encodePacked((_address)))
            );
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot, uint256 _index)
        external
        onlyOwner
    {
        merkleRoots[_index] = merkleRoot;
    }

    modifier onlyWhitelisted(bytes32[] calldata proof, uint256 _index) {
        require(merkleRoots[_index] != bytes32(0x0), "Merkle root is unset.");


        bool whitelisted = MerkleProof.verifyCalldata(
            proof,
            merkleRoots[_index],
            keccak256(abi.encodePacked((msg.sender)))
        );
        require(whitelisted, "MerkleWhitelist: Caller is not whitelisted");
        _;
    }
}

File 3 of 8 : 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 4 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 8 : 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 8 : 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 7 of 8 : 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 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"adjustMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyInPublicSale","type":"uint256"}],"name":"adjustMaxSupplyInPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"components":[{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"uint64","name":"endTimestamp","type":"uint64"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint16","name":"mintLimit","type":"uint16"}],"internalType":"struct Degenheim.SaleTierDetails","name":"_saleTierDetails","type":"tuple"}],"name":"adjustSaleTierDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"bool","name":"_paused","type":"bool"}],"name":"adjustSaleTierPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startingPassId","type":"uint256"},{"internalType":"uint256","name":"_endingPassId","type":"uint256"},{"internalType":"uint256","name":"_quantityToAirdrop","type":"uint256"}],"name":"airdropToDegenesisOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"degenesisAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"degenheimRendererAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyInPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"_saleTier","type":"uint8"},{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMintedInPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"saleTierDetails","outputs":[{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"uint64","name":"endTimestamp","type":"uint64"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint16","name":"mintLimit","type":"uint16"}],"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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_degenesisAddress","type":"address"}],"name":"setDegenesisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_degenheimRendererAddress","type":"address"}],"name":"setDegenheimRendererAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"verifySenderExternal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603560808181529062003ae060a03980516200002991600a9160209091019062000511565b50611e61600b55611932600c556000600d5567011c37937e080000600e553480156200005457600080fd5b506040805180820182526009815268446567656e6865696d60b81b6020808301918252835180850190945260048452630888e9c960e31b908401528151919291620000a29160029162000511565b508051620000b890600390602084019062000511565b50506000805550620000ca33620004bf565b604051806080016040528063635174046001600160401b031681526020016509184e72a0006001600160401b03168152602001600015158152602001600261ffff16815250601160008060ff16815260200190815260200160002060008201518160000160006101000a8154816001600160401b0302191690836001600160401b0316021790555060208201518160000160086101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160000160106101000a81548160ff02191690831515021790555060608201518160000160116101000a81548161ffff021916908361ffff160217905550905050604051806080016040528063635174046001600160401b031681526020016509184e72a0006001600160401b03168152602001600015158152602001600161ffff1681525060116000600160ff16815260200190815260200160002060008201518160000160006101000a8154816001600160401b0302191690836001600160401b0316021790555060208201518160000160086101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160000160106101000a81548160ff02191690831515021790555060608201518160000160116101000a81548161ffff021916908361ffff16021790555090505060405180608001604052806363517b0c6001600160401b031681526020016509184e72a0006001600160401b03168152602001600015158152602001600161ffff1681525060116000600260ff16815260200190815260200160002060008201518160000160006101000a8154816001600160401b0302191690836001600160401b0316021790555060208201518160000160086101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160000160106101000a81548160ff02191690831515021790555060608201518160000160116101000a81548161ffff021916908361ffff160217905550905050604051806080016040528063635190246001600160401b031681526020016509184e72a0006001600160401b03168152602001600015158152602001600361ffff1681525060116000600360ff16815260200190815260200160002060008201518160000160006101000a8154816001600160401b0302191690836001600160401b0316021790555060208201518160000160086101000a8154816001600160401b0302191690836001600160401b0316021790555060408201518160000160106101000a81548160ff02191690831515021790555060608201518160000160116101000a81548161ffff021916908361ffff160217905550905050620005f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200051f90620005b7565b90600052602060002090601f0160209004810192826200054357600085556200058e565b82601f106200055e57805160ff19168380011785556200058e565b828001600101855582156200058e579182015b828111156200058e57825182559160200191906001019062000571565b506200059c929150620005a0565b5090565b5b808211156200059c5760008155600101620005a1565b600181811c90821680620005cc57607f821691505b60208210811415620005ee57634e487b7160e01b600052602260045260246000fd5b50919050565b6134dc80620006046000396000f3fe6080604052600436106102c65760003560e01c80638d8dbb4811610179578063b88d4fde116100d6578063e30de15e1161008a578063e985e9c511610064578063e985e9c5146107ed578063ea7b020f14610843578063f2fde38b1461086357600080fd5b8063e30de15e14610798578063e43523c4146107b8578063e8a3d485146107d857600080fd5b8063c87b56dd116100bb578063c87b56dd146106b1578063d5abeb01146106d1578063e18dc915146106e757600080fd5b8063b88d4fde1461068b578063c788bd981461069e57600080fd5b8063a035b1fe1161012d578063a2b2be8511610112578063a2b2be8514610635578063a89da29014610655578063aa6120251461066b57600080fd5b8063a035b1fe146105ff578063a22cb4651461061557600080fd5b8063938e3d7b1161015e578063938e3d7b146105aa57806395d89b41146105ca5780639730fdd1146105df57600080fd5b80638d8dbb48146105525780638da5cb5b1461057f57600080fd5b80635d915cae1161022757806370a08231116101db57806371c5ecb1116101c057806371c5ecb1146104e5578063729ad39e146105125780637bffd7551461053257600080fd5b806370a08231146104b0578063715018a6146104d057600080fd5b8063676c125a1161020c578063676c125a1461045a57806367dce1ed14610487578063688dc19d1461049a57600080fd5b80635d915cae1461041a5780636352211e1461043a57600080fd5b806318160ddd1161027e57806324600fc31161026357806324600fc3146103d25780632dc01c54146103e757806342842e0e1461040757600080fd5b806318160ddd1461039c57806323b872dd146103bf57600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b3146103675780630ceeae6a1461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612df6565b610883565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b50610315610968565b6040516102f791906130bb565b34801561032e57600080fd5b5061034261033d366004612f09565b6109fa565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f7565b61037a610375366004612c1c565b610a64565b005b34801561038857600080fd5b5061037a610397366004612abb565b610b79565b3480156103a857600080fd5b50600154600054035b6040519081526020016102f7565b61037a6103cd366004612b2b565b610bc8565b3480156103de57600080fd5b5061037a610e7a565b3480156103f357600080fd5b506102eb610402366004612cfb565b610f3f565b61037a610415366004612b2b565b610fb3565b34801561042657600080fd5b5061037a610435366004612f45565b610fd3565b34801561044657600080fd5b50610342610455366004612f09565b6111b5565b34801561046657600080fd5b50600f546103429073ffffffffffffffffffffffffffffffffffffffff1681565b61037a610495366004612f98565b6111c0565b3480156104a657600080fd5b506103b1600d5481565b3480156104bc57600080fd5b506103b16104cb366004612abb565b611517565b3480156104dc57600080fd5b5061037a611599565b3480156104f157600080fd5b506103b1610500366004612f09565b60096020526000908152604090205481565b34801561051e57600080fd5b5061037a61052d366004612c47565b6115ad565b34801561053e57600080fd5b5061037a61054d366004612f21565b61169c565b34801561055e57600080fd5b506010546103429073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058b57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610342565b3480156105b657600080fd5b5061037a6105c5366004612e2e565b611731565b3480156105d657600080fd5b5061031561174c565b3480156105eb57600080fd5b5061037a6105fa366004612abb565b61175b565b34801561060b57600080fd5b506103b1600e5481565b34801561062157600080fd5b5061037a610630366004612be8565b6117aa565b34801561064157600080fd5b5061037a610650366004612f09565b611841565b34801561066157600080fd5b506103b1600c5481565b34801561067757600080fd5b5061037a610686366004612fb2565b611906565b61037a610699366004612b6b565b611965565b61037a6106ac366004612d58565b6119d5565b3480156106bd57600080fd5b506103156106cc366004612f09565b611e95565b3480156106dd57600080fd5b506103b1600b5481565b3480156106f357600080fd5b50610762610702366004612f98565b60116020526000908152604090205467ffffffffffffffff8082169168010000000000000000810490911690700100000000000000000000000000000000810460ff169071010000000000000000000000000000000000900461ffff1684565b6040805167ffffffffffffffff95861681529490931660208501529015159183019190915261ffff1660608201526080016102f7565b3480156107a457600080fd5b5061037a6107b3366004612f09565b611f5a565b3480156107c457600080fd5b5061037a6107d3366004612dd5565b611ff9565b3480156107e457600080fd5b50610315612012565b3480156107f957600080fd5b506102eb610808366004612af3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084f57600080fd5b5061037a61085e366004612fcd565b6120a0565b34801561086f57600080fd5b5061037a61087e366004612abb565b612211565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061091657507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109779061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a39061336b565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a05826122c8565b610a3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6f826111b5565b90503373ffffffffffffffffffffffffffffffffffffffff821614610af85773ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff16610af8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b81612308565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610bd382612389565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610cd75773ffffffffffffffffffffffffffffffffffffffff8616600090815260076020908152604080832033845290915290205460ff16610cd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610d24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610d2f57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610e175760018401600081815260046020526040902054610e15576000548114610e155760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e82612308565b6040514790600090339083908381818185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610f3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b5050565b60008281526009602090815260408083205490517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b1692810192909252610fa891879187916034015b60405160208183030381529060405280519060200120612441565b90505b949350505050565b610fce83838360405180602001604052806000815250611965565b505050565b610fdb612308565b600081610fe88585613328565b610ff291906132ca565b9050600b54816110056001546000540390565b61100f9190613163565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45786365656473206d617820737570706c7921000000000000000000000000006044820152606401610f32565b61012b8311156110e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f496e76616c6964204944730000000000000000000000000000000000000000006044820152606401610f32565b835b8381116111ae57600f546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905260009173ffffffffffffffffffffffffffffffffffffffff1690636352211e9060240160206040518083038186803b15801561115757600080fd5b505afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f9190612ad7565b905061119b8185612459565b50806111a6816133bf565b9150506110e5565b5050505050565b600061096282612389565b600c548160ff16600d546111d49190613163565b1115611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d617820737570706c7920666f72207075626c69632073616c6520726561636860448201527f65642100000000000000000000000000000000000000000000000000000000006064820152608401610f32565b600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5467ffffffffffffffff1642108015906112e75750600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5468010000000000000000900467ffffffffffffffff1642105b80156113335750600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff54700100000000000000000000000000000000900460ff16155b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546869732073616c652074696572206973206e6f7420616374697665210000006044820152606401610f32565b60006113a56003612590565b600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5490915071010000000000000000000000000000000000900461ffff166113f7838361317b565b60ff161115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f596f75277665206d696e74656420796f757220616c6c6f636174696f6e2100006044820152606401610f32565b600e546114729060ff84166132ca565b3410156114db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d7573742073656e6420656e6f756768206574686572210000000000000000006044820152606401610f32565b6114ef60036114ea848461317b565b6125e1565b8160ff16600d60008282546115049190613163565b90915550610f3b90503360ff8416612459565b600073ffffffffffffffffffffffffffffffffffffffff8216611566576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b6115a1612308565b6115ab60006126dc565b565b6115b5612308565b600b548151600154600054036115cb9190613163565b1115611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45786365656473206d617820737570706c7921000000000000000000000000006044820152606401610f32565b60005b8151811015610f3b5761168a82828151811061167b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612459565b80611694816133bf565b915050611636565b6116a4612308565b600b54826116b56001546000540390565b6116bf9190613163565b1115611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d617820737570706c79207265616368656421000000000000000000000000006044820152606401610f32565b610f3b8183612459565b611739612308565b8051610f3b90600a906020840190612974565b6060600380546109779061336b565b611763612308565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611849612308565b600b54811115611901576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604860248201527f4d617820737570706c7920696e207075626c69632073616c652063616e206f6e60448201527f6c792062652061646a757374656420746f206c6f776572207468616e206d617860648201527f20737570706c792e000000000000000000000000000000000000000000000000608482015260a401610f32565b600c55565b61190e612308565b60ff90911660009081526011602052604090208054911515700100000000000000000000000000000000027fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff909216919091179055565b611970848484610bc8565b73ffffffffffffffffffffffffffffffffffffffff83163b156119cf5761199984848484612753565b6119cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60ff821660008181526009602052604090205485918591611a52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d65726b6c6520726f6f7420697320756e7365742e00000000000000000000006044820152606401610f32565b60008181526009602090815260408083205490517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1692810192909252611aa39186918691603401610f8d565b905080611b32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d65726b6c6557686974656c6973743a2043616c6c6572206973206e6f74207760448201527f686974656c6973746564000000000000000000000000000000000000000000006064820152608401610f32565b600c548560ff16600d54611b469190613163565b1115611bd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d617820737570706c7920666f72207075626c69632073616c6520726561636860448201527f65642100000000000000000000000000000000000000000000000000000000006064820152608401610f32565b60ff861660009081526011602052604090205467ffffffffffffffff164210801590611c27575060ff861660009081526011602052604090205468010000000000000000900467ffffffffffffffff1642105b8015611c59575060ff808716600090815260116020526040902054700100000000000000000000000000000000900416155b611cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546869732073616c652074696572206973206e6f7420616374697665210000006044820152606401610f32565b6000611cca87612590565b60ff881660009081526011602052604090205490915071010000000000000000000000000000000000900461ffff16611d03878361317b565b60ff161115611d6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f596f75277665206d696e74656420796f757220616c6c6f636174696f6e2100006044820152606401610f32565b60008660ff1611611ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302e6044820152606401610f32565b600e54611deb9060ff88166132ca565b341015611e54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d7573742073656e6420656e6f756768206574686572210000000000000000006044820152606401610f32565b611e62876114ea888461317b565b8560ff16600d6000828254611e779190613163565b90915550611e8a90503360ff8816612459565b505050505050505050565b6010546040517fc87b56dd0000000000000000000000000000000000000000000000000000000081526004810183905260609173ffffffffffffffffffffffffffffffffffffffff169063c87b56dd9060240160006040518083038186803b158015611f0057600080fd5b505afa158015611f14573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526109629190810190612e74565b611f62612308565b611e61811115611ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f4d617820737570706c792063616e206f6e6c792062652061646a75737465642060448201527f746f206c6f776572207468616e20373737372e000000000000000000000000006064820152608401610f32565b600b55565b612001612308565b600090815260096020526040902055565b600a805461201f9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461204b9061336b565b80156120985780601f1061206d57610100808354040283529160200191612098565b820191906000526020600020905b81548152906001019060200180831161207b57829003601f168201915b505050505081565b6120a8612308565b6040805160808101909152806120c16020840184612f70565b67ffffffffffffffff1681526020018260200160208101906120e39190612f70565b67ffffffffffffffff1681526020016121026060840160408501612dbb565b151581526020016121196080840160608501612ee7565b61ffff90811690915260ff90931660009081526011602090815260409182902083518154928501519385015160609095015190961671010000000000000000000000000000000000027fffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffff94151570010000000000000000000000000000000002949094167fffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffff67ffffffffffffffff94851668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000000000000000000090941694909716939093179190911794909416171790915550565b612219612308565b73ffffffffffffffffffffffffffffffffffffffff81166122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f32565b6122c5816126dc565b50565b60008054821080156109625750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f32565b60008160005481101561240f576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661240d575b8061240657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546123ca565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008261244f8686856128d5565b1495945050505050565b60005481612493576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461254f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612517565b5081612587576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b600061259d826008613307565b60ff166125cf3373ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460c01c90565b67ffffffffffffffff16901c92915050565b60006125ee836008613307565b6125f9906002613201565b61260484600161317b565b61260f906008613307565b61261a906002613201565b6126249190613328565b9050610fce3382612636866008613307565b612641906002613201565b61264e9060ff87166132ca565b1683196126803373ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460c01c90565b67ffffffffffffffff16161773ffffffffffffffffffffffffffffffffffffffff9091166000908152600560205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff1660c09290921b919091179055565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906127ae903390899088908890600401613072565b602060405180830381600087803b1580156127c857600080fd5b505af1925050508015612816575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261281391810190612e12565b60015b61288a573d808015612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b508051612882576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610fab565b600081815b8481101561293f5761292b8287878481811061291f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612948565b915080612937816133bf565b9150506128da565b50949350505050565b6000818310612964576000828152602084905260409020612406565b5060009182526020526040902090565b8280546129809061336b565b90600052602060002090601f0160209004810192826129a257600085556129e8565b82601f106129bb57805160ff19168380011785556129e8565b828001600101855582156129e8579182015b828111156129e85782518255916020019190600101906129cd565b506129f49291506129f8565b5090565b5b808211156129f457600081556001016129f9565b6000612a20612a1b8461311d565b6130ce565b9050828152838383011115612a3457600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612a5c578182fd5b50813567ffffffffffffffff811115612a73578182fd5b6020830191508360208260051b8501011115612a8e57600080fd5b9250929050565b80358015158114612aa557600080fd5b919050565b803560ff81168114612aa557600080fd5b600060208284031215612acc578081fd5b813561240681613456565b600060208284031215612ae8578081fd5b815161240681613456565b60008060408385031215612b05578081fd5b8235612b1081613456565b91506020830135612b2081613456565b809150509250929050565b600080600060608486031215612b3f578081fd5b8335612b4a81613456565b92506020840135612b5a81613456565b929592945050506040919091013590565b60008060008060808587031215612b80578081fd5b8435612b8b81613456565b93506020850135612b9b81613456565b925060408501359150606085013567ffffffffffffffff811115612bbd578182fd5b8501601f81018713612bcd578182fd5b612bdc87823560208401612a0d565b91505092959194509250565b60008060408385031215612bfa578182fd5b8235612c0581613456565b9150612c1360208401612a95565b90509250929050565b60008060408385031215612c2e578182fd5b8235612c3981613456565b946020939093013593505050565b60006020808385031215612c59578182fd5b823567ffffffffffffffff80821115612c70578384fd5b818501915085601f830112612c83578384fd5b813581811115612c9557612c95613427565b8060051b9150612ca68483016130ce565b8181528481019084860184860187018a1015612cc0578788fd5b8795505b83861015612cee5780359450612cd985613456565b84835260019590950194918601918601612cc4565b5098975050505050505050565b60008060008060608587031215612d10578182fd5b843567ffffffffffffffff811115612d26578283fd5b612d3287828801612a4b565b909550935050602085013591506040850135612d4d81613456565b939692955090935050565b60008060008060608587031215612d6d578182fd5b843567ffffffffffffffff811115612d83578283fd5b612d8f87828801612a4b565b9095509350612da2905060208601612aaa565b9150612db060408601612aaa565b905092959194509250565b600060208284031215612dcc578081fd5b61240682612a95565b60008060408385031215612de7578182fd5b50508035926020909101359150565b600060208284031215612e07578081fd5b813561240681613478565b600060208284031215612e23578081fd5b815161240681613478565b600060208284031215612e3f578081fd5b813567ffffffffffffffff811115612e55578182fd5b8201601f81018413612e65578182fd5b610fab84823560208401612a0d565b600060208284031215612e85578081fd5b815167ffffffffffffffff811115612e9b578182fd5b8201601f81018413612eab578182fd5b8051612eb9612a1b8261311d565b818152856020838501011115612ecd578384fd5b612ede82602083016020860161333f565b95945050505050565b600060208284031215612ef8578081fd5b813561ffff81168114612406578182fd5b600060208284031215612f1a578081fd5b5035919050565b60008060408385031215612f33578182fd5b823591506020830135612b2081613456565b600080600060608486031215612f59578081fd5b505081359360208301359350604090920135919050565b600060208284031215612f81578081fd5b813567ffffffffffffffff81168114612406578182fd5b600060208284031215612fa9578081fd5b61240682612aaa565b60008060408385031215612fc4578182fd5b612c0583612aaa565b60008082840360a0811215612fe0578283fd5b612fe984612aaa565b925060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561301a578182fd5b506020830190509250929050565b6000815180845261304081602086016020860161333f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526130b16080830184613028565b9695505050505050565b6020815260006124066020830184613028565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561311557613115613427565b604052919050565b600067ffffffffffffffff82111561313757613137613427565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008219821115613176576131766133f8565b500190565b600060ff821660ff84168060ff03821115613198576131986133f8565b019392505050565b600181815b808511156131f957817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156131df576131df6133f8565b808516156131ec57918102915b93841c93908002906131a5565b509250929050565b600061240660ff84168360008261321a57506001610962565b8161322757506000610962565b816001811461323d576002811461324757613263565b6001915050610962565b60ff841115613258576132586133f8565b50506001821b610962565b5060208310610133831016604e8410600b8410161715613286575081810a610962565b61329083836131a0565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156132c2576132c26133f8565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613302576133026133f8565b500290565b600060ff821660ff84168160ff04811182151516156132c2576132c26133f8565b60008282101561333a5761333a6133f8565b500390565b60005b8381101561335a578181015183820152602001613342565b838111156119cf5750506000910152565b600181811c9082168061337f57607f821691505b602082108114156133b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f1576133f16133f8565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146122c557600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146122c557600080fdfea2646970667358221220aa9624a4ad38566d8340adb2e71834572443b1eb74c147416f72b586d309670864736f6c63430008040033697066733a2f2f516d516932463939446b6734636f6d5a7a467663584d725872567144654d6f424c58703576675a6d6f395657624a

Deployed Bytecode

0x6080604052600436106102c65760003560e01c80638d8dbb4811610179578063b88d4fde116100d6578063e30de15e1161008a578063e985e9c511610064578063e985e9c5146107ed578063ea7b020f14610843578063f2fde38b1461086357600080fd5b8063e30de15e14610798578063e43523c4146107b8578063e8a3d485146107d857600080fd5b8063c87b56dd116100bb578063c87b56dd146106b1578063d5abeb01146106d1578063e18dc915146106e757600080fd5b8063b88d4fde1461068b578063c788bd981461069e57600080fd5b8063a035b1fe1161012d578063a2b2be8511610112578063a2b2be8514610635578063a89da29014610655578063aa6120251461066b57600080fd5b8063a035b1fe146105ff578063a22cb4651461061557600080fd5b8063938e3d7b1161015e578063938e3d7b146105aa57806395d89b41146105ca5780639730fdd1146105df57600080fd5b80638d8dbb48146105525780638da5cb5b1461057f57600080fd5b80635d915cae1161022757806370a08231116101db57806371c5ecb1116101c057806371c5ecb1146104e5578063729ad39e146105125780637bffd7551461053257600080fd5b806370a08231146104b0578063715018a6146104d057600080fd5b8063676c125a1161020c578063676c125a1461045a57806367dce1ed14610487578063688dc19d1461049a57600080fd5b80635d915cae1461041a5780636352211e1461043a57600080fd5b806318160ddd1161027e57806324600fc31161026357806324600fc3146103d25780632dc01c54146103e757806342842e0e1461040757600080fd5b806318160ddd1461039c57806323b872dd146103bf57600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b3146103675780630ceeae6a1461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612df6565b610883565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b50610315610968565b6040516102f791906130bb565b34801561032e57600080fd5b5061034261033d366004612f09565b6109fa565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f7565b61037a610375366004612c1c565b610a64565b005b34801561038857600080fd5b5061037a610397366004612abb565b610b79565b3480156103a857600080fd5b50600154600054035b6040519081526020016102f7565b61037a6103cd366004612b2b565b610bc8565b3480156103de57600080fd5b5061037a610e7a565b3480156103f357600080fd5b506102eb610402366004612cfb565b610f3f565b61037a610415366004612b2b565b610fb3565b34801561042657600080fd5b5061037a610435366004612f45565b610fd3565b34801561044657600080fd5b50610342610455366004612f09565b6111b5565b34801561046657600080fd5b50600f546103429073ffffffffffffffffffffffffffffffffffffffff1681565b61037a610495366004612f98565b6111c0565b3480156104a657600080fd5b506103b1600d5481565b3480156104bc57600080fd5b506103b16104cb366004612abb565b611517565b3480156104dc57600080fd5b5061037a611599565b3480156104f157600080fd5b506103b1610500366004612f09565b60096020526000908152604090205481565b34801561051e57600080fd5b5061037a61052d366004612c47565b6115ad565b34801561053e57600080fd5b5061037a61054d366004612f21565b61169c565b34801561055e57600080fd5b506010546103429073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058b57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610342565b3480156105b657600080fd5b5061037a6105c5366004612e2e565b611731565b3480156105d657600080fd5b5061031561174c565b3480156105eb57600080fd5b5061037a6105fa366004612abb565b61175b565b34801561060b57600080fd5b506103b1600e5481565b34801561062157600080fd5b5061037a610630366004612be8565b6117aa565b34801561064157600080fd5b5061037a610650366004612f09565b611841565b34801561066157600080fd5b506103b1600c5481565b34801561067757600080fd5b5061037a610686366004612fb2565b611906565b61037a610699366004612b6b565b611965565b61037a6106ac366004612d58565b6119d5565b3480156106bd57600080fd5b506103156106cc366004612f09565b611e95565b3480156106dd57600080fd5b506103b1600b5481565b3480156106f357600080fd5b50610762610702366004612f98565b60116020526000908152604090205467ffffffffffffffff8082169168010000000000000000810490911690700100000000000000000000000000000000810460ff169071010000000000000000000000000000000000900461ffff1684565b6040805167ffffffffffffffff95861681529490931660208501529015159183019190915261ffff1660608201526080016102f7565b3480156107a457600080fd5b5061037a6107b3366004612f09565b611f5a565b3480156107c457600080fd5b5061037a6107d3366004612dd5565b611ff9565b3480156107e457600080fd5b50610315612012565b3480156107f957600080fd5b506102eb610808366004612af3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084f57600080fd5b5061037a61085e366004612fcd565b6120a0565b34801561086f57600080fd5b5061037a61087e366004612abb565b612211565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061091657507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061096257507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109779061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a39061336b565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a05826122c8565b610a3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6f826111b5565b90503373ffffffffffffffffffffffffffffffffffffffff821614610af85773ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff16610af8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b81612308565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610bd382612389565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610cd75773ffffffffffffffffffffffffffffffffffffffff8616600090815260076020908152604080832033845290915290205460ff16610cd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610d24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610d2f57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610e175760018401600081815260046020526040902054610e15576000548114610e155760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e82612308565b6040514790600090339083908381818185875af1925050503d8060008114610ec6576040519150601f19603f3d011682016040523d82523d6000602084013e610ecb565b606091505b5050905080610f3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b5050565b60008281526009602090815260408083205490517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b1692810192909252610fa891879187916034015b60405160208183030381529060405280519060200120612441565b90505b949350505050565b610fce83838360405180602001604052806000815250611965565b505050565b610fdb612308565b600081610fe88585613328565b610ff291906132ca565b9050600b54816110056001546000540390565b61100f9190613163565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45786365656473206d617820737570706c7921000000000000000000000000006044820152606401610f32565b61012b8311156110e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f496e76616c6964204944730000000000000000000000000000000000000000006044820152606401610f32565b835b8381116111ae57600f546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905260009173ffffffffffffffffffffffffffffffffffffffff1690636352211e9060240160206040518083038186803b15801561115757600080fd5b505afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f9190612ad7565b905061119b8185612459565b50806111a6816133bf565b9150506110e5565b5050505050565b600061096282612389565b600c548160ff16600d546111d49190613163565b1115611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d617820737570706c7920666f72207075626c69632073616c6520726561636860448201527f65642100000000000000000000000000000000000000000000000000000000006064820152608401610f32565b600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5467ffffffffffffffff1642108015906112e75750600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5468010000000000000000900467ffffffffffffffff1642105b80156113335750600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff54700100000000000000000000000000000000900460ff16155b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546869732073616c652074696572206973206e6f7420616374697665210000006044820152606401610f32565b60006113a56003612590565b600360005260116020527f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5490915071010000000000000000000000000000000000900461ffff166113f7838361317b565b60ff161115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f596f75277665206d696e74656420796f757220616c6c6f636174696f6e2100006044820152606401610f32565b600e546114729060ff84166132ca565b3410156114db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d7573742073656e6420656e6f756768206574686572210000000000000000006044820152606401610f32565b6114ef60036114ea848461317b565b6125e1565b8160ff16600d60008282546115049190613163565b90915550610f3b90503360ff8416612459565b600073ffffffffffffffffffffffffffffffffffffffff8216611566576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b6115a1612308565b6115ab60006126dc565b565b6115b5612308565b600b548151600154600054036115cb9190613163565b1115611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f45786365656473206d617820737570706c7921000000000000000000000000006044820152606401610f32565b60005b8151811015610f3b5761168a82828151811061167b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612459565b80611694816133bf565b915050611636565b6116a4612308565b600b54826116b56001546000540390565b6116bf9190613163565b1115611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d617820737570706c79207265616368656421000000000000000000000000006044820152606401610f32565b610f3b8183612459565b611739612308565b8051610f3b90600a906020840190612974565b6060600380546109779061336b565b611763612308565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611849612308565b600b54811115611901576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604860248201527f4d617820737570706c7920696e207075626c69632073616c652063616e206f6e60448201527f6c792062652061646a757374656420746f206c6f776572207468616e206d617860648201527f20737570706c792e000000000000000000000000000000000000000000000000608482015260a401610f32565b600c55565b61190e612308565b60ff90911660009081526011602052604090208054911515700100000000000000000000000000000000027fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff909216919091179055565b611970848484610bc8565b73ffffffffffffffffffffffffffffffffffffffff83163b156119cf5761199984848484612753565b6119cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60ff821660008181526009602052604090205485918591611a52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d65726b6c6520726f6f7420697320756e7365742e00000000000000000000006044820152606401610f32565b60008181526009602090815260408083205490517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1692810192909252611aa39186918691603401610f8d565b905080611b32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d65726b6c6557686974656c6973743a2043616c6c6572206973206e6f74207760448201527f686974656c6973746564000000000000000000000000000000000000000000006064820152608401610f32565b600c548560ff16600d54611b469190613163565b1115611bd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d617820737570706c7920666f72207075626c69632073616c6520726561636860448201527f65642100000000000000000000000000000000000000000000000000000000006064820152608401610f32565b60ff861660009081526011602052604090205467ffffffffffffffff164210801590611c27575060ff861660009081526011602052604090205468010000000000000000900467ffffffffffffffff1642105b8015611c59575060ff808716600090815260116020526040902054700100000000000000000000000000000000900416155b611cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546869732073616c652074696572206973206e6f7420616374697665210000006044820152606401610f32565b6000611cca87612590565b60ff881660009081526011602052604090205490915071010000000000000000000000000000000000900461ffff16611d03878361317b565b60ff161115611d6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f596f75277665206d696e74656420796f757220616c6c6f636174696f6e2100006044820152606401610f32565b60008660ff1611611ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302e6044820152606401610f32565b600e54611deb9060ff88166132ca565b341015611e54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d7573742073656e6420656e6f756768206574686572210000000000000000006044820152606401610f32565b611e62876114ea888461317b565b8560ff16600d6000828254611e779190613163565b90915550611e8a90503360ff8816612459565b505050505050505050565b6010546040517fc87b56dd0000000000000000000000000000000000000000000000000000000081526004810183905260609173ffffffffffffffffffffffffffffffffffffffff169063c87b56dd9060240160006040518083038186803b158015611f0057600080fd5b505afa158015611f14573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526109629190810190612e74565b611f62612308565b611e61811115611ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f4d617820737570706c792063616e206f6e6c792062652061646a75737465642060448201527f746f206c6f776572207468616e20373737372e000000000000000000000000006064820152608401610f32565b600b55565b612001612308565b600090815260096020526040902055565b600a805461201f9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461204b9061336b565b80156120985780601f1061206d57610100808354040283529160200191612098565b820191906000526020600020905b81548152906001019060200180831161207b57829003601f168201915b505050505081565b6120a8612308565b6040805160808101909152806120c16020840184612f70565b67ffffffffffffffff1681526020018260200160208101906120e39190612f70565b67ffffffffffffffff1681526020016121026060840160408501612dbb565b151581526020016121196080840160608501612ee7565b61ffff90811690915260ff90931660009081526011602090815260409182902083518154928501519385015160609095015190961671010000000000000000000000000000000000027fffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffff94151570010000000000000000000000000000000002949094167fffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffff67ffffffffffffffff94851668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000000000000000000090941694909716939093179190911794909416171790915550565b612219612308565b73ffffffffffffffffffffffffffffffffffffffff81166122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f32565b6122c5816126dc565b50565b60008054821080156109625750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f32565b60008160005481101561240f576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661240d575b8061240657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546123ca565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008261244f8686856128d5565b1495945050505050565b60005481612493576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461254f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612517565b5081612587576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b600061259d826008613307565b60ff166125cf3373ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460c01c90565b67ffffffffffffffff16901c92915050565b60006125ee836008613307565b6125f9906002613201565b61260484600161317b565b61260f906008613307565b61261a906002613201565b6126249190613328565b9050610fce3382612636866008613307565b612641906002613201565b61264e9060ff87166132ca565b1683196126803373ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460c01c90565b67ffffffffffffffff16161773ffffffffffffffffffffffffffffffffffffffff9091166000908152600560205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff1660c09290921b919091179055565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906127ae903390899088908890600401613072565b602060405180830381600087803b1580156127c857600080fd5b505af1925050508015612816575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261281391810190612e12565b60015b61288a573d808015612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b508051612882576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610fab565b600081815b8481101561293f5761292b8287878481811061291f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612948565b915080612937816133bf565b9150506128da565b50949350505050565b6000818310612964576000828152602084905260409020612406565b5060009182526020526040902090565b8280546129809061336b565b90600052602060002090601f0160209004810192826129a257600085556129e8565b82601f106129bb57805160ff19168380011785556129e8565b828001600101855582156129e8579182015b828111156129e85782518255916020019190600101906129cd565b506129f49291506129f8565b5090565b5b808211156129f457600081556001016129f9565b6000612a20612a1b8461311d565b6130ce565b9050828152838383011115612a3457600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612a5c578182fd5b50813567ffffffffffffffff811115612a73578182fd5b6020830191508360208260051b8501011115612a8e57600080fd5b9250929050565b80358015158114612aa557600080fd5b919050565b803560ff81168114612aa557600080fd5b600060208284031215612acc578081fd5b813561240681613456565b600060208284031215612ae8578081fd5b815161240681613456565b60008060408385031215612b05578081fd5b8235612b1081613456565b91506020830135612b2081613456565b809150509250929050565b600080600060608486031215612b3f578081fd5b8335612b4a81613456565b92506020840135612b5a81613456565b929592945050506040919091013590565b60008060008060808587031215612b80578081fd5b8435612b8b81613456565b93506020850135612b9b81613456565b925060408501359150606085013567ffffffffffffffff811115612bbd578182fd5b8501601f81018713612bcd578182fd5b612bdc87823560208401612a0d565b91505092959194509250565b60008060408385031215612bfa578182fd5b8235612c0581613456565b9150612c1360208401612a95565b90509250929050565b60008060408385031215612c2e578182fd5b8235612c3981613456565b946020939093013593505050565b60006020808385031215612c59578182fd5b823567ffffffffffffffff80821115612c70578384fd5b818501915085601f830112612c83578384fd5b813581811115612c9557612c95613427565b8060051b9150612ca68483016130ce565b8181528481019084860184860187018a1015612cc0578788fd5b8795505b83861015612cee5780359450612cd985613456565b84835260019590950194918601918601612cc4565b5098975050505050505050565b60008060008060608587031215612d10578182fd5b843567ffffffffffffffff811115612d26578283fd5b612d3287828801612a4b565b909550935050602085013591506040850135612d4d81613456565b939692955090935050565b60008060008060608587031215612d6d578182fd5b843567ffffffffffffffff811115612d83578283fd5b612d8f87828801612a4b565b9095509350612da2905060208601612aaa565b9150612db060408601612aaa565b905092959194509250565b600060208284031215612dcc578081fd5b61240682612a95565b60008060408385031215612de7578182fd5b50508035926020909101359150565b600060208284031215612e07578081fd5b813561240681613478565b600060208284031215612e23578081fd5b815161240681613478565b600060208284031215612e3f578081fd5b813567ffffffffffffffff811115612e55578182fd5b8201601f81018413612e65578182fd5b610fab84823560208401612a0d565b600060208284031215612e85578081fd5b815167ffffffffffffffff811115612e9b578182fd5b8201601f81018413612eab578182fd5b8051612eb9612a1b8261311d565b818152856020838501011115612ecd578384fd5b612ede82602083016020860161333f565b95945050505050565b600060208284031215612ef8578081fd5b813561ffff81168114612406578182fd5b600060208284031215612f1a578081fd5b5035919050565b60008060408385031215612f33578182fd5b823591506020830135612b2081613456565b600080600060608486031215612f59578081fd5b505081359360208301359350604090920135919050565b600060208284031215612f81578081fd5b813567ffffffffffffffff81168114612406578182fd5b600060208284031215612fa9578081fd5b61240682612aaa565b60008060408385031215612fc4578182fd5b612c0583612aaa565b60008082840360a0811215612fe0578283fd5b612fe984612aaa565b925060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561301a578182fd5b506020830190509250929050565b6000815180845261304081602086016020860161333f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526130b16080830184613028565b9695505050505050565b6020815260006124066020830184613028565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561311557613115613427565b604052919050565b600067ffffffffffffffff82111561313757613137613427565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008219821115613176576131766133f8565b500190565b600060ff821660ff84168060ff03821115613198576131986133f8565b019392505050565b600181815b808511156131f957817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156131df576131df6133f8565b808516156131ec57918102915b93841c93908002906131a5565b509250929050565b600061240660ff84168360008261321a57506001610962565b8161322757506000610962565b816001811461323d576002811461324757613263565b6001915050610962565b60ff841115613258576132586133f8565b50506001821b610962565b5060208310610133831016604e8410600b8410161715613286575081810a610962565b61329083836131a0565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156132c2576132c26133f8565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613302576133026133f8565b500290565b600060ff821660ff84168160ff04811182151516156132c2576132c26133f8565b60008282101561333a5761333a6133f8565b500390565b60005b8381101561335a578181015183820152602001613342565b838111156119cf5750506000910152565b600181811c9082168061337f57607f821691505b602082108114156133b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f1576133f16133f8565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146122c557600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146122c557600080fdfea2646970667358221220aa9624a4ad38566d8340adb2e71834572443b1eb74c147416f72b586d309670864736f6c63430008040033

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.