ETH Price: $1,947.44 (-0.25%)
 

Overview

Max Total Supply

10,001 Z2HN

Holders

2

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zero2HeroNft721A

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: GPL-3.0

/**

                                          /$$$$$$  /$$                                                        
                                         /$$__  $$| $$                                                        
 /$$$$$$$$  /$$$$$$   /$$$$$$   /$$$$$$ |__/  \ $$| $$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$                     
|____ /$$/ /$$__  $$ /$$__  $$ /$$__  $$  /$$$$$$/| $$__  $$ /$$__  $$ /$$__  $$ /$$__  $$                    
   /$$$$/ | $$$$$$$$| $$  \__/| $$  \ $$ /$$____/ | $$  \ $$| $$$$$$$$| $$  \__/| $$  \ $$                    
  /$$__/  | $$_____/| $$      | $$  | $$| $$      | $$  | $$| $$_____/| $$      | $$  | $$                    
 /$$$$$$$$|  $$$$$$$| $$      |  $$$$$$/| $$$$$$$$| $$  | $$|  $$$$$$$| $$      |  $$$$$$/                    
|________/ \_______/|__/       \______/ |________/|__/  |__/ \_______/|__/       \______/                     
                                                                                                              
                                                                                                              
                                                                                                              
 /$$   /$$ /$$$$$$$$ /$$$$$$$$                                                                                
| $$$ | $$| $$_____/|__  $$__/                                                                                
| $$$$| $$| $$         | $$                                                                                   
| $$ $$ $$| $$$$$      | $$                                                                                   
| $$  $$$$| $$__/      | $$                                                                                   
| $$\  $$$| $$         | $$                                                                                   
| $$ \  $$| $$         | $$                                                                                   
|__/  \__/|__/         |__/                                                                                   
                                                                                                              
                                                                                                              
                                                                                                              
 /$$                       /$$$$$$$                      /$$                      /$$$$$$                     
| $$                      | $$__  $$                    |__/                     /$$__  $$                    
| $$$$$$$  /$$   /$$      | $$  \ $$  /$$$$$$   /$$$$$$$ /$$ /$$$$$$/$$$$       | $$  \__/  /$$$$$$  /$$$$$$$ 
| $$__  $$| $$  | $$      | $$$$$$$/ |____  $$ /$$_____/| $$| $$_  $$_  $$      |  $$$$$$  /$$__  $$| $$__  $$
| $$  \ $$| $$  | $$      | $$__  $$  /$$$$$$$|  $$$$$$ | $$| $$ \ $$ \ $$       \____  $$| $$$$$$$$| $$  \ $$
| $$  | $$| $$  | $$      | $$  \ $$ /$$__  $$ \____  $$| $$| $$ | $$ | $$       /$$  \ $$| $$_____/| $$  | $$
| $$$$$$$/|  $$$$$$$      | $$  | $$|  $$$$$$$ /$$$$$$$/| $$| $$ | $$ | $$      |  $$$$$$/|  $$$$$$$| $$  | $$
|_______/  \____  $$      |__/  |__/ \_______/|_______/ |__/|__/ |__/ |__/       \______/  \_______/|__/  |__/
           /$$  | $$                                                                                          
          |  $$$$$$/                                                                                          
           \______/                                                                                           
*/ 

pragma solidity >=0.7.0 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import "@openzeppelin/contracts/utils/Strings.sol";

contract Zero2HeroNft721A is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 10000;
  bool public paused = false;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    uint256 _mintAmount,
    uint256 _cost
) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setCost(_cost);
    mint(msg.sender, _mintAmount);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmount, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) {
       if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
       }
    }
    _;
  }
  function mint(address _to, uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // require(!paused);
    require(!paused, 'The contract is paused!');

    if (_to != owner()) {
        if(whitelisted[_to] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    _safeMint(_msgSender(), _mintAmount+1);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }
  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

  function withdraw() public payable onlyOwner nonReentrant {
    // This will payout the owner 95% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

// 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);
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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);
    }
}

// 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 6 of 7 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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);
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"}],"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":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000af8565b50662386f26fc10000600c55612710600d55612710600e556000600f60006101000a81548160ff0219169083151502179055503480156200009157600080fd5b506040516200459c3803806200459c8339818101604052810190620000b7919062000d80565b84848160029080519060200190620000d192919062000af8565b508060039080519060200190620000ea92919062000af8565b50620000fb6200016a60201b60201c565b600081905550505062000123620001176200016f60201b60201c565b6200017760201b60201c565b60016009819055506200013c836200023d60201b60201c565b6200014d816200026960201b60201c565b6200015f33836200028360201b60201c565b505050505062001398565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024d6200057460201b60201c565b80600a90805190602001906200026592919062000af8565b5050565b620002796200057460201b60201c565b80600c8190555050565b80600081118015620002975750600e548111155b620002d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d09062000ec6565b60405180910390fd5b600d5481620002ed6200060560201b60201c565b620002f9919062000f17565b11156200033d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003349062000fc4565b60405180910390fd5b816200034e6200062460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620004315760011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620004305780600c54620003ea919062000fe6565b3410156200042f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004269062001097565b60405180910390fd5b5b5b600f60009054906101000a900460ff161562000484576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047b9062001109565b60405180910390fd5b620004946200062460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146200053f5760011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146200053e5782600c5462000530919062000fe6565b3410156200053d57600080fd5b5b5b6200056e620005536200016f60201b60201c565b60018562000562919062000f17565b6200064e60201b60201c565b50505050565b620005846200016f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005aa6200062460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000603576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005fa906200117b565b60405180910390fd5b565b6000620006176200016a60201b60201c565b6001546000540303905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006708282604051806020016040528060008152506200067460201b60201c565b5050565b6200068683836200072560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200072057600080549050600083820390505b620006cf60008683806001019450866200090e60201b60201c565b62000706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620006b45781600054146200071d57600080fd5b50505b505050565b600080549050600082141562000767576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200077c600084838562000a7060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200080b83620007ed600086600062000a7660201b60201c565b620007fe8562000aa660201b60201c565b1762000ab660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620008ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000871565b506000821415620008eb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000909600084838562000ae160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200093c62000ae760201b60201c565b8786866040518563ffffffff1660e01b815260040162000960949392919062001250565b6020604051808303816000875af19250505080156200099f57506040513d601f19601f820116820180604052508101906200099c919062001301565b60015b62000a1d573d8060008114620009d2576040519150601f19603f3d011682016040523d82523d6000602084013e620009d7565b606091505b5060008151141562000a15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000a9586868462000aef60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000b069062001362565b90600052602060002090601f01602090048101928262000b2a576000855562000b76565b82601f1062000b4557805160ff191683800117855562000b76565b8280016001018555821562000b76579182015b8281111562000b7557825182559160200191906001019062000b58565b5b50905062000b85919062000b89565b5090565b5b8082111562000ba457600081600090555060010162000b8a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c118262000bc6565b810181811067ffffffffffffffff8211171562000c335762000c3262000bd7565b5b80604052505050565b600062000c4862000ba8565b905062000c56828262000c06565b919050565b600067ffffffffffffffff82111562000c795762000c7862000bd7565b5b62000c848262000bc6565b9050602081019050919050565b60005b8381101562000cb157808201518184015260208101905062000c94565b8381111562000cc1576000848401525b50505050565b600062000cde62000cd88462000c5b565b62000c3c565b90508281526020810184848401111562000cfd5762000cfc62000bc1565b5b62000d0a84828562000c91565b509392505050565b600082601f83011262000d2a5762000d2962000bbc565b5b815162000d3c84826020860162000cc7565b91505092915050565b6000819050919050565b62000d5a8162000d45565b811462000d6657600080fd5b50565b60008151905062000d7a8162000d4f565b92915050565b600080600080600060a0868803121562000d9f5762000d9e62000bb2565b5b600086015167ffffffffffffffff81111562000dc05762000dbf62000bb7565b5b62000dce8882890162000d12565b955050602086015167ffffffffffffffff81111562000df25762000df162000bb7565b5b62000e008882890162000d12565b945050604086015167ffffffffffffffff81111562000e245762000e2362000bb7565b5b62000e328882890162000d12565b935050606062000e458882890162000d69565b925050608062000e588882890162000d69565b9150509295509295909350565b600082825260208201905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600062000eae60148362000e65565b915062000ebb8262000e76565b602082019050919050565b6000602082019050818103600083015262000ee18162000e9f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f248262000d45565b915062000f318362000d45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f695762000f6862000ee8565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600062000fac60148362000e65565b915062000fb98262000f74565b602082019050919050565b6000602082019050818103600083015262000fdf8162000f9d565b9050919050565b600062000ff38262000d45565b9150620010008362000d45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200103c576200103b62000ee8565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006200107f60138362000e65565b91506200108c8262001047565b602082019050919050565b60006020820190508181036000830152620010b28162001070565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000620010f160178362000e65565b9150620010fe82620010b9565b602082019050919050565b600060208201905081810360008301526200112481620010e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200116360208362000e65565b915062001170826200112b565b602082019050919050565b60006020820190508181036000830152620011968162001154565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011ca826200119d565b9050919050565b620011dc81620011bd565b82525050565b620011ed8162000d45565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200121c82620011f3565b620012288185620011fe565b93506200123a81856020860162000c91565b620012458162000bc6565b840191505092915050565b6000608082019050620012676000830187620011d1565b620012766020830186620011d1565b620012856040830185620011e2565b81810360608301526200129981846200120f565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620012db81620012a4565b8114620012e757600080fd5b50565b600081519050620012fb81620012d0565b92915050565b6000602082840312156200131a576200131962000bb2565b5b60006200132a84828501620012ea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200137b57607f821691505b6020821081141562001392576200139162001333565b5b50919050565b6131f480620013a86000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610673578063d936547e1461069e578063da3ef23f146106db578063e985e9c514610704578063f2fde38b14610741576101ee565b8063a22cb465146105c6578063b88d4fde146105ef578063c66828621461060b578063c87b56dd14610636576101ee565b8063715018a6116100dc578063715018a6146105305780637f00c7a6146105475780638da5cb5b1461057057806395d89b411461059b576101ee565b80635c975abb146104605780636352211e1461048b5780636c0360eb146104c857806370a08231146104f3576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103c957806344a0d68a146103e55780634a4c560d1461040e57806355f804b314610437576101ee565b806323b872dd1461035e57806330cc7ae01461037a5780633ccfd60b146103a357806340c10f19146103ad576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102dd57806318160ddd14610308578063239c70ae14610333576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122fd565b61076a565b6040516102279190612345565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061238c565b6107fc565b005b34801561026557600080fd5b5061026e610821565b60405161027b9190612452565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906124aa565b6108b3565b6040516102b89190612518565b60405180910390f35b6102db60048036038101906102d6919061255f565b610932565b005b3480156102e957600080fd5b506102f2610a76565b6040516102ff91906125ae565b60405180910390f35b34801561031457600080fd5b5061031d610a7c565b60405161032a91906125ae565b60405180910390f35b34801561033f57600080fd5b50610348610a93565b60405161035591906125ae565b60405180910390f35b610378600480360381019061037391906125c9565b610a99565b005b34801561038657600080fd5b506103a1600480360381019061039c919061261c565b610dbe565b005b6103ab610e21565b005b6103c760048036038101906103c2919061255f565b610eff565b005b6103e360048036038101906103de91906125c9565b6111ae565b005b3480156103f157600080fd5b5061040c600480360381019061040791906124aa565b6111ce565b005b34801561041a57600080fd5b506104356004803603810190610430919061261c565b6111e0565b005b34801561044357600080fd5b5061045e6004803603810190610459919061277e565b611243565b005b34801561046c57600080fd5b50610475611265565b6040516104829190612345565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906124aa565b611278565b6040516104bf9190612518565b60405180910390f35b3480156104d457600080fd5b506104dd61128a565b6040516104ea9190612452565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061261c565b611318565b60405161052791906125ae565b60405180910390f35b34801561053c57600080fd5b506105456113d1565b005b34801561055357600080fd5b5061056e600480360381019061056991906124aa565b6113e5565b005b34801561057c57600080fd5b506105856113f7565b6040516105929190612518565b60405180910390f35b3480156105a757600080fd5b506105b0611421565b6040516105bd9190612452565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906127c7565b6114b3565b005b610609600480360381019061060491906128a8565b6115be565b005b34801561061757600080fd5b50610620611631565b60405161062d9190612452565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906124aa565b6116bf565b60405161066a9190612452565b60405180910390f35b34801561067f57600080fd5b50610688611769565b60405161069591906125ae565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061261c565b61176f565b6040516106d29190612345565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061277e565b61178f565b005b34801561071057600080fd5b5061072b6004803603810190610726919061292b565b6117b1565b6040516107389190612345565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061261c565b611845565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108046118c9565b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108309061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461085c9061299a565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be82611947565b6108f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093d82611278565b90508073ffffffffffffffffffffffffffffffffffffffff1661095e6119a6565b73ffffffffffffffffffffffffffffffffffffffff16146109c15761098a816109856119a6565b6117b1565b6109c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610a866119ae565b6001546000540303905090565b600e5481565b6000610aa4826119b3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b1784611a81565b91509150610b2d8187610b286119a6565b611aa8565b610b7957610b4286610b3d6119a6565b6117b1565b610b78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610be0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bed8686866001611aec565b8015610bf857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cc685610ca2888887611af2565b7c020000000000000000000000000000000000000000000000000000000017611b1a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d4e576000600185019050600060046000838152602001908152602001600020541415610d4c576000548114610d4b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610db68686866001611b45565b505050505050565b610dc66118c9565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e296118c9565b60026009541415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612a18565b60405180910390fd5b60026009819055506000610e816113f7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea490612a69565b60006040518083038185875af1925050503d8060008114610ee1576040519150601f19603f3d011682016040523d82523d6000602084013e610ee6565b606091505b5050905080610ef457600080fd5b506001600981905550565b80600081118015610f125750600e548111155b610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612aca565b60405180910390fd5b600d5481610f5d610a7c565b610f679190612b19565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90612bbb565b60405180910390fd5b81610fb16113f7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461108d5760011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461108c5780600c546110499190612bdb565b34101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612c81565b60405180910390fd5b5b5b600f60009054906101000a900460ff16156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612ced565b60405180910390fd5b6110e56113f7565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461118b5760011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461118a5782600c5461117d9190612bdb565b34101561118957600080fd5b5b5b6111a8611196611b4b565b6001856111a39190612b19565b611b53565b50505050565b6111c9838383604051806020016040528060008152506115be565b505050565b6111d66118c9565b80600c8190555050565b6111e86118c9565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61124b6118c9565b80600a90805190602001906112619291906121ee565b5050565b600f60009054906101000a900460ff1681565b6000611283826119b3565b9050919050565b600a80546112979061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546112c39061299a565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113d96118c9565b6113e36000611b71565b565b6113ed6118c9565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114309061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461145c9061299a565b80156114a95780601f1061147e576101008083540402835291602001916114a9565b820191906000526020600020905b81548152906001019060200180831161148c57829003601f168201915b5050505050905090565b80600760006114c06119a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156d6119a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b29190612345565b60405180910390a35050565b6115c9848484610a99565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162b576115f484848484611c37565b61162a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b805461163e9061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461166a9061299a565b80156116b75780601f1061168c576101008083540402835291602001916116b7565b820191906000526020600020905b81548152906001019060200180831161169a57829003601f168201915b505050505081565b60606116ca82611947565b611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090612d7f565b60405180910390fd5b6000611713611d88565b905060008151116117335760405180602001604052806000815250611761565b8061173d84611e1a565b600b60405160200161175193929190612e6f565b6040516020818303038152906040525b915050919050565b600d5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6117976118c9565b80600b90805190602001906117ad9291906121ee565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d6118c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612f12565b60405180910390fd5b6118c681611b71565b50565b6118d1611b4b565b73ffffffffffffffffffffffffffffffffffffffff166118ef6113f7565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90612f7e565b60405180910390fd5b565b6000816119526119ae565b11158015611961575060005482105b801561199f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806119c26119ae565b11611a4a57600054811015611a495760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a47575b6000811415611a3d576004600083600190039350838152602001908152602001600020549050611a12565b8092505050611a7c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b09868684611f7b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611b6d828260405180602001604052806000815250611f84565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5d6119a6565b8786866040518563ffffffff1660e01b8152600401611c7f9493929190612ff3565b6020604051808303816000875af1925050508015611cbb57506040513d601f19601f82011682018060405250810190611cb89190613054565b60015b611d35573d8060008114611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b50600081511415611d2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d979061299a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc39061299a565b8015611e105780601f10611de557610100808354040283529160200191611e10565b820191906000526020600020905b815481529060010190602001808311611df357829003601f168201915b5050505050905090565b60606000821415611e62576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f76565b600082905060005b60008214611e94578080611e7d90613081565b915050600a82611e8d91906130f9565b9150611e6a565b60008167ffffffffffffffff811115611eb057611eaf612653565b5b6040519080825280601f01601f191660200182016040528015611ee25781602001600182028036833780820191505090505b5090505b60008514611f6f57600182611efb919061312a565b9150600a85611f0a919061315e565b6030611f169190612b19565b60f81b818381518110611f2c57611f2b61318f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6891906130f9565b9450611ee6565b8093505050505b919050565b60009392505050565b611f8e8383612021565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461201c57600080549050600083820390505b611fce6000868380600101945086611c37565b612004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fbb57816000541461201957600080fd5b50505b505050565b6000805490506000821415612062576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f6000848385611aec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120e6836120d76000866000611af2565b6120e0856121de565b17611b1a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461218757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061214c565b5060008214156121c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121d96000848385611b45565b505050565b60006001821460e11b9050919050565b8280546121fa9061299a565b90600052602060002090601f01602090048101928261221c5760008555612263565b82601f1061223557805160ff1916838001178555612263565b82800160010185558215612263579182015b82811115612262578251825591602001919060010190612247565b5b5090506122709190612274565b5090565b5b8082111561228d576000816000905550600101612275565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122da816122a5565b81146122e557600080fd5b50565b6000813590506122f7816122d1565b92915050565b6000602082840312156123135761231261229b565b5b6000612321848285016122e8565b91505092915050565b60008115159050919050565b61233f8161232a565b82525050565b600060208201905061235a6000830184612336565b92915050565b6123698161232a565b811461237457600080fd5b50565b60008135905061238681612360565b92915050565b6000602082840312156123a2576123a161229b565b5b60006123b084828501612377565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f35780820151818401526020810190506123d8565b83811115612402576000848401525b50505050565b6000601f19601f8301169050919050565b6000612424826123b9565b61242e81856123c4565b935061243e8185602086016123d5565b61244781612408565b840191505092915050565b6000602082019050818103600083015261246c8184612419565b905092915050565b6000819050919050565b61248781612474565b811461249257600080fd5b50565b6000813590506124a48161247e565b92915050565b6000602082840312156124c0576124bf61229b565b5b60006124ce84828501612495565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612502826124d7565b9050919050565b612512816124f7565b82525050565b600060208201905061252d6000830184612509565b92915050565b61253c816124f7565b811461254757600080fd5b50565b60008135905061255981612533565b92915050565b600080604083850312156125765761257561229b565b5b60006125848582860161254a565b925050602061259585828601612495565b9150509250929050565b6125a881612474565b82525050565b60006020820190506125c3600083018461259f565b92915050565b6000806000606084860312156125e2576125e161229b565b5b60006125f08682870161254a565b93505060206126018682870161254a565b925050604061261286828701612495565b9150509250925092565b6000602082840312156126325761263161229b565b5b60006126408482850161254a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268b82612408565b810181811067ffffffffffffffff821117156126aa576126a9612653565b5b80604052505050565b60006126bd612291565b90506126c98282612682565b919050565b600067ffffffffffffffff8211156126e9576126e8612653565b5b6126f282612408565b9050602081019050919050565b82818337600083830152505050565b600061272161271c846126ce565b6126b3565b90508281526020810184848401111561273d5761273c61264e565b5b6127488482856126ff565b509392505050565b600082601f83011261276557612764612649565b5b813561277584826020860161270e565b91505092915050565b6000602082840312156127945761279361229b565b5b600082013567ffffffffffffffff8111156127b2576127b16122a0565b5b6127be84828501612750565b91505092915050565b600080604083850312156127de576127dd61229b565b5b60006127ec8582860161254a565b92505060206127fd85828601612377565b9150509250929050565b600067ffffffffffffffff82111561282257612821612653565b5b61282b82612408565b9050602081019050919050565b600061284b61284684612807565b6126b3565b9050828152602081018484840111156128675761286661264e565b5b6128728482856126ff565b509392505050565b600082601f83011261288f5761288e612649565b5b813561289f848260208601612838565b91505092915050565b600080600080608085870312156128c2576128c161229b565b5b60006128d08782880161254a565b94505060206128e18782880161254a565b93505060406128f287828801612495565b925050606085013567ffffffffffffffff811115612913576129126122a0565b5b61291f8782880161287a565b91505092959194509250565b600080604083850312156129425761294161229b565b5b60006129508582860161254a565b92505060206129618582860161254a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b257607f821691505b602082108114156129c6576129c561296b565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612a02601f836123c4565b9150612a0d826129cc565b602082019050919050565b60006020820190508181036000830152612a31816129f5565b9050919050565b600081905092915050565b50565b6000612a53600083612a38565b9150612a5e82612a43565b600082019050919050565b6000612a7482612a46565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612ab46014836123c4565b9150612abf82612a7e565b602082019050919050565b60006020820190508181036000830152612ae381612aa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b2482612474565b9150612b2f83612474565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6457612b63612aea565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612ba56014836123c4565b9150612bb082612b6f565b602082019050919050565b60006020820190508181036000830152612bd481612b98565b9050919050565b6000612be682612474565b9150612bf183612474565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c2a57612c29612aea565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612c6b6013836123c4565b9150612c7682612c35565b602082019050919050565b60006020820190508181036000830152612c9a81612c5e565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612cd76017836123c4565b9150612ce282612ca1565b602082019050919050565b60006020820190508181036000830152612d0681612cca565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d69602f836123c4565b9150612d7482612d0d565b604082019050919050565b60006020820190508181036000830152612d9881612d5c565b9050919050565b600081905092915050565b6000612db5826123b9565b612dbf8185612d9f565b9350612dcf8185602086016123d5565b80840191505092915050565b60008190508160005260206000209050919050565b60008154612dfd8161299a565b612e078186612d9f565b94506001821660008114612e225760018114612e3357612e66565b60ff19831686528186019350612e66565b612e3c85612ddb565b60005b83811015612e5e57815481890152600182019150602081019050612e3f565b838801955050505b50505092915050565b6000612e7b8286612daa565b9150612e878285612daa565b9150612e938284612df0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612efc6026836123c4565b9150612f0782612ea0565b604082019050919050565b60006020820190508181036000830152612f2b81612eef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f686020836123c4565b9150612f7382612f32565b602082019050919050565b60006020820190508181036000830152612f9781612f5b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fc582612f9e565b612fcf8185612fa9565b9350612fdf8185602086016123d5565b612fe881612408565b840191505092915050565b60006080820190506130086000830187612509565b6130156020830186612509565b613022604083018561259f565b81810360608301526130348184612fba565b905095945050505050565b60008151905061304e816122d1565b92915050565b60006020828403121561306a5761306961229b565b5b60006130788482850161303f565b91505092915050565b600061308c82612474565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130bf576130be612aea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061310482612474565b915061310f83612474565b92508261311f5761311e6130ca565b5b828204905092915050565b600061313582612474565b915061314083612474565b92508282101561315357613152612aea565b5b828203905092915050565b600061316982612474565b915061317483612474565b925082613184576131836130ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e78dfab2a4e75d899f569c69640bbcb1494b68d8171deda87008e44ac63f714364736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000000000000000001b7a65726f326865726f204f776c732d506174726f6e204269726473000000000000000000000000000000000000000000000000000000000000000000000000045a32484e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57616670706d6d36374c3450793554486b4b6161467339753369466167386f726545444832436361486e464d2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610673578063d936547e1461069e578063da3ef23f146106db578063e985e9c514610704578063f2fde38b14610741576101ee565b8063a22cb465146105c6578063b88d4fde146105ef578063c66828621461060b578063c87b56dd14610636576101ee565b8063715018a6116100dc578063715018a6146105305780637f00c7a6146105475780638da5cb5b1461057057806395d89b411461059b576101ee565b80635c975abb146104605780636352211e1461048b5780636c0360eb146104c857806370a08231146104f3576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e146103c957806344a0d68a146103e55780634a4c560d1461040e57806355f804b314610437576101ee565b806323b872dd1461035e57806330cc7ae01461037a5780633ccfd60b146103a357806340c10f19146103ad576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102dd57806318160ddd14610308578063239c70ae14610333576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906122fd565b61076a565b6040516102279190612345565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061238c565b6107fc565b005b34801561026557600080fd5b5061026e610821565b60405161027b9190612452565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906124aa565b6108b3565b6040516102b89190612518565b60405180910390f35b6102db60048036038101906102d6919061255f565b610932565b005b3480156102e957600080fd5b506102f2610a76565b6040516102ff91906125ae565b60405180910390f35b34801561031457600080fd5b5061031d610a7c565b60405161032a91906125ae565b60405180910390f35b34801561033f57600080fd5b50610348610a93565b60405161035591906125ae565b60405180910390f35b610378600480360381019061037391906125c9565b610a99565b005b34801561038657600080fd5b506103a1600480360381019061039c919061261c565b610dbe565b005b6103ab610e21565b005b6103c760048036038101906103c2919061255f565b610eff565b005b6103e360048036038101906103de91906125c9565b6111ae565b005b3480156103f157600080fd5b5061040c600480360381019061040791906124aa565b6111ce565b005b34801561041a57600080fd5b506104356004803603810190610430919061261c565b6111e0565b005b34801561044357600080fd5b5061045e6004803603810190610459919061277e565b611243565b005b34801561046c57600080fd5b50610475611265565b6040516104829190612345565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906124aa565b611278565b6040516104bf9190612518565b60405180910390f35b3480156104d457600080fd5b506104dd61128a565b6040516104ea9190612452565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061261c565b611318565b60405161052791906125ae565b60405180910390f35b34801561053c57600080fd5b506105456113d1565b005b34801561055357600080fd5b5061056e600480360381019061056991906124aa565b6113e5565b005b34801561057c57600080fd5b506105856113f7565b6040516105929190612518565b60405180910390f35b3480156105a757600080fd5b506105b0611421565b6040516105bd9190612452565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906127c7565b6114b3565b005b610609600480360381019061060491906128a8565b6115be565b005b34801561061757600080fd5b50610620611631565b60405161062d9190612452565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906124aa565b6116bf565b60405161066a9190612452565b60405180910390f35b34801561067f57600080fd5b50610688611769565b60405161069591906125ae565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061261c565b61176f565b6040516106d29190612345565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061277e565b61178f565b005b34801561071057600080fd5b5061072b6004803603810190610726919061292b565b6117b1565b6040516107389190612345565b60405180910390f35b34801561074d57600080fd5b506107686004803603810190610763919061261c565b611845565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108046118c9565b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108309061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461085c9061299a565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be82611947565b6108f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093d82611278565b90508073ffffffffffffffffffffffffffffffffffffffff1661095e6119a6565b73ffffffffffffffffffffffffffffffffffffffff16146109c15761098a816109856119a6565b6117b1565b6109c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610a866119ae565b6001546000540303905090565b600e5481565b6000610aa4826119b3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b1784611a81565b91509150610b2d8187610b286119a6565b611aa8565b610b7957610b4286610b3d6119a6565b6117b1565b610b78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610be0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bed8686866001611aec565b8015610bf857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cc685610ca2888887611af2565b7c020000000000000000000000000000000000000000000000000000000017611b1a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d4e576000600185019050600060046000838152602001908152602001600020541415610d4c576000548114610d4b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610db68686866001611b45565b505050505050565b610dc66118c9565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e296118c9565b60026009541415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612a18565b60405180910390fd5b60026009819055506000610e816113f7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ea490612a69565b60006040518083038185875af1925050503d8060008114610ee1576040519150601f19603f3d011682016040523d82523d6000602084013e610ee6565b606091505b5050905080610ef457600080fd5b506001600981905550565b80600081118015610f125750600e548111155b610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612aca565b60405180910390fd5b600d5481610f5d610a7c565b610f679190612b19565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90612bbb565b60405180910390fd5b81610fb16113f7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461108d5760011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461108c5780600c546110499190612bdb565b34101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612c81565b60405180910390fd5b5b5b600f60009054906101000a900460ff16156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612ced565b60405180910390fd5b6110e56113f7565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461118b5760011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461118a5782600c5461117d9190612bdb565b34101561118957600080fd5b5b5b6111a8611196611b4b565b6001856111a39190612b19565b611b53565b50505050565b6111c9838383604051806020016040528060008152506115be565b505050565b6111d66118c9565b80600c8190555050565b6111e86118c9565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61124b6118c9565b80600a90805190602001906112619291906121ee565b5050565b600f60009054906101000a900460ff1681565b6000611283826119b3565b9050919050565b600a80546112979061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546112c39061299a565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113d96118c9565b6113e36000611b71565b565b6113ed6118c9565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114309061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461145c9061299a565b80156114a95780601f1061147e576101008083540402835291602001916114a9565b820191906000526020600020905b81548152906001019060200180831161148c57829003601f168201915b5050505050905090565b80600760006114c06119a6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156d6119a6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b29190612345565b60405180910390a35050565b6115c9848484610a99565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162b576115f484848484611c37565b61162a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b805461163e9061299a565b80601f016020809104026020016040519081016040528092919081815260200182805461166a9061299a565b80156116b75780601f1061168c576101008083540402835291602001916116b7565b820191906000526020600020905b81548152906001019060200180831161169a57829003601f168201915b505050505081565b60606116ca82611947565b611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090612d7f565b60405180910390fd5b6000611713611d88565b905060008151116117335760405180602001604052806000815250611761565b8061173d84611e1a565b600b60405160200161175193929190612e6f565b6040516020818303038152906040525b915050919050565b600d5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6117976118c9565b80600b90805190602001906117ad9291906121ee565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d6118c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612f12565b60405180910390fd5b6118c681611b71565b50565b6118d1611b4b565b73ffffffffffffffffffffffffffffffffffffffff166118ef6113f7565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90612f7e565b60405180910390fd5b565b6000816119526119ae565b11158015611961575060005482105b801561199f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806119c26119ae565b11611a4a57600054811015611a495760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a47575b6000811415611a3d576004600083600190039350838152602001908152602001600020549050611a12565b8092505050611a7c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b09868684611f7b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611b6d828260405180602001604052806000815250611f84565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5d6119a6565b8786866040518563ffffffff1660e01b8152600401611c7f9493929190612ff3565b6020604051808303816000875af1925050508015611cbb57506040513d601f19601f82011682018060405250810190611cb89190613054565b60015b611d35573d8060008114611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b50600081511415611d2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d979061299a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc39061299a565b8015611e105780601f10611de557610100808354040283529160200191611e10565b820191906000526020600020905b815481529060010190602001808311611df357829003601f168201915b5050505050905090565b60606000821415611e62576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f76565b600082905060005b60008214611e94578080611e7d90613081565b915050600a82611e8d91906130f9565b9150611e6a565b60008167ffffffffffffffff811115611eb057611eaf612653565b5b6040519080825280601f01601f191660200182016040528015611ee25781602001600182028036833780820191505090505b5090505b60008514611f6f57600182611efb919061312a565b9150600a85611f0a919061315e565b6030611f169190612b19565b60f81b818381518110611f2c57611f2b61318f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6891906130f9565b9450611ee6565b8093505050505b919050565b60009392505050565b611f8e8383612021565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461201c57600080549050600083820390505b611fce6000868380600101945086611c37565b612004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fbb57816000541461201957600080fd5b50505b505050565b6000805490506000821415612062576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f6000848385611aec565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120e6836120d76000866000611af2565b6120e0856121de565b17611b1a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461218757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061214c565b5060008214156121c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121d96000848385611b45565b505050565b60006001821460e11b9050919050565b8280546121fa9061299a565b90600052602060002090601f01602090048101928261221c5760008555612263565b82601f1061223557805160ff1916838001178555612263565b82800160010185558215612263579182015b82811115612262578251825591602001919060010190612247565b5b5090506122709190612274565b5090565b5b8082111561228d576000816000905550600101612275565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122da816122a5565b81146122e557600080fd5b50565b6000813590506122f7816122d1565b92915050565b6000602082840312156123135761231261229b565b5b6000612321848285016122e8565b91505092915050565b60008115159050919050565b61233f8161232a565b82525050565b600060208201905061235a6000830184612336565b92915050565b6123698161232a565b811461237457600080fd5b50565b60008135905061238681612360565b92915050565b6000602082840312156123a2576123a161229b565b5b60006123b084828501612377565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f35780820151818401526020810190506123d8565b83811115612402576000848401525b50505050565b6000601f19601f8301169050919050565b6000612424826123b9565b61242e81856123c4565b935061243e8185602086016123d5565b61244781612408565b840191505092915050565b6000602082019050818103600083015261246c8184612419565b905092915050565b6000819050919050565b61248781612474565b811461249257600080fd5b50565b6000813590506124a48161247e565b92915050565b6000602082840312156124c0576124bf61229b565b5b60006124ce84828501612495565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612502826124d7565b9050919050565b612512816124f7565b82525050565b600060208201905061252d6000830184612509565b92915050565b61253c816124f7565b811461254757600080fd5b50565b60008135905061255981612533565b92915050565b600080604083850312156125765761257561229b565b5b60006125848582860161254a565b925050602061259585828601612495565b9150509250929050565b6125a881612474565b82525050565b60006020820190506125c3600083018461259f565b92915050565b6000806000606084860312156125e2576125e161229b565b5b60006125f08682870161254a565b93505060206126018682870161254a565b925050604061261286828701612495565b9150509250925092565b6000602082840312156126325761263161229b565b5b60006126408482850161254a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268b82612408565b810181811067ffffffffffffffff821117156126aa576126a9612653565b5b80604052505050565b60006126bd612291565b90506126c98282612682565b919050565b600067ffffffffffffffff8211156126e9576126e8612653565b5b6126f282612408565b9050602081019050919050565b82818337600083830152505050565b600061272161271c846126ce565b6126b3565b90508281526020810184848401111561273d5761273c61264e565b5b6127488482856126ff565b509392505050565b600082601f83011261276557612764612649565b5b813561277584826020860161270e565b91505092915050565b6000602082840312156127945761279361229b565b5b600082013567ffffffffffffffff8111156127b2576127b16122a0565b5b6127be84828501612750565b91505092915050565b600080604083850312156127de576127dd61229b565b5b60006127ec8582860161254a565b92505060206127fd85828601612377565b9150509250929050565b600067ffffffffffffffff82111561282257612821612653565b5b61282b82612408565b9050602081019050919050565b600061284b61284684612807565b6126b3565b9050828152602081018484840111156128675761286661264e565b5b6128728482856126ff565b509392505050565b600082601f83011261288f5761288e612649565b5b813561289f848260208601612838565b91505092915050565b600080600080608085870312156128c2576128c161229b565b5b60006128d08782880161254a565b94505060206128e18782880161254a565b93505060406128f287828801612495565b925050606085013567ffffffffffffffff811115612913576129126122a0565b5b61291f8782880161287a565b91505092959194509250565b600080604083850312156129425761294161229b565b5b60006129508582860161254a565b92505060206129618582860161254a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129b257607f821691505b602082108114156129c6576129c561296b565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612a02601f836123c4565b9150612a0d826129cc565b602082019050919050565b60006020820190508181036000830152612a31816129f5565b9050919050565b600081905092915050565b50565b6000612a53600083612a38565b9150612a5e82612a43565b600082019050919050565b6000612a7482612a46565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612ab46014836123c4565b9150612abf82612a7e565b602082019050919050565b60006020820190508181036000830152612ae381612aa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b2482612474565b9150612b2f83612474565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6457612b63612aea565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612ba56014836123c4565b9150612bb082612b6f565b602082019050919050565b60006020820190508181036000830152612bd481612b98565b9050919050565b6000612be682612474565b9150612bf183612474565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c2a57612c29612aea565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612c6b6013836123c4565b9150612c7682612c35565b602082019050919050565b60006020820190508181036000830152612c9a81612c5e565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612cd76017836123c4565b9150612ce282612ca1565b602082019050919050565b60006020820190508181036000830152612d0681612cca565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d69602f836123c4565b9150612d7482612d0d565b604082019050919050565b60006020820190508181036000830152612d9881612d5c565b9050919050565b600081905092915050565b6000612db5826123b9565b612dbf8185612d9f565b9350612dcf8185602086016123d5565b80840191505092915050565b60008190508160005260206000209050919050565b60008154612dfd8161299a565b612e078186612d9f565b94506001821660008114612e225760018114612e3357612e66565b60ff19831686528186019350612e66565b612e3c85612ddb565b60005b83811015612e5e57815481890152600182019150602081019050612e3f565b838801955050505b50505092915050565b6000612e7b8286612daa565b9150612e878285612daa565b9150612e938284612df0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612efc6026836123c4565b9150612f0782612ea0565b604082019050919050565b60006020820190508181036000830152612f2b81612eef565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f686020836123c4565b9150612f7382612f32565b602082019050919050565b60006020820190508181036000830152612f9781612f5b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fc582612f9e565b612fcf8185612fa9565b9350612fdf8185602086016123d5565b612fe881612408565b840191505092915050565b60006080820190506130086000830187612509565b6130156020830186612509565b613022604083018561259f565b81810360608301526130348184612fba565b905095945050505050565b60008151905061304e816122d1565b92915050565b60006020828403121561306a5761306961229b565b5b60006130788482850161303f565b91505092915050565b600061308c82612474565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130bf576130be612aea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061310482612474565b915061310f83612474565b92508261311f5761311e6130ca565b5b828204905092915050565b600061313582612474565b915061314083612474565b92508282101561315357613152612aea565b5b828203905092915050565b600061316982612474565b915061317483612474565b925082613184576131836130ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e78dfab2a4e75d899f569c69640bbcb1494b68d8171deda87008e44ac63f714364736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000000000000000001b7a65726f326865726f204f776c732d506174726f6e204269726473000000000000000000000000000000000000000000000000000000000000000000000000045a32484e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57616670706d6d36374c3450793554486b4b6161467339753369466167386f726545444832436361486e464d2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): zero2hero Owls-Patron Birds
Arg [1] : _symbol (string): Z2HN
Arg [2] : _initBaseURI (string): ipfs://QmWafppmm67L4Py5THkKaaFs9u3iFag8oreEDH2CcaHnFM/
Arg [3] : _mintAmount (uint256): 500
Arg [4] : _cost (uint256): 30000000000000000

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [6] : 7a65726f326865726f204f776c732d506174726f6e2042697264730000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5a32484e00000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d57616670706d6d36374c3450793554486b4b6161467339
Arg [11] : 753369466167386f726545444832436361486e464d2f00000000000000000000


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.