ETH Price: $3,392.82 (-1.26%)
Gas: 2 Gwei

Token

Crypto Titties (CRYPTOTITTIES)
 

Overview

Max Total Supply

1,956 CRYPTOTITTIES

Holders

300

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CRYPTOTITTIES
0xaf4d5fbf87ec03b7bcfe50fdcbd4149a758e55b6
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:
CryptoTitties

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : CryptoTitties.sol
//SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;

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

pragma solidity >=0.7.0 <0.9.0;

contract CryptoTitties is ERC721A, Ownable {

  /** ERRORS **/
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 0.0009 ether;
  uint256 public maxSupply = 8008;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public freeMaxMintPerWallet = 10;

  uint256 public FREE_MINT_MAX = 1500;
  
  bool public saleActive = false;
  bool public revealed = true;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(string memory baseURI) ERC721A("Crypto Titties", "CRYPTOTITTIES") payable {
      _baseTokenURI = baseURI;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
  }

  function paidMint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
  }

  function _startTokenId()
      internal
      view
      virtual
      override returns (uint256) 
  {
      return 1;
  }

  function isFreeMint() public view returns (bool) {
    return totalSupply() < FREE_MINT_MAX;
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  
  function toggleSaleState() public onlyOwner {
    saleActive = !saleActive;
  }

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function setMaxFreeMintPerWallet(uint256 _max) public onlyOwner {
    freeMaxMintPerWallet = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /** METADATA */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setRevealed(bool state) public onlyOwner {
      revealed = state;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

    if (!revealed) return _baseURI();
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }

}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 3 of 6 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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
    ) external;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","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":"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":[],"name":"FREE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","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":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setRevealed","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":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060408190526603328b944c4000600955611f48600a9081556014600b55600c556105dc600d55600e805461ffff191661010017905562001f78388190039081908339810160408190526200005591620001ee565b604080518082018252600e81526d43727970746f205469747469657360901b60208083019182528351808501909452600d84526c43525950544f5449545449455360981b908401528151919291620000b09160029162000148565b508051620000c690600390602084019062000148565b5050600160005550620000d933620000f6565b8051620000ee90601090602084019062000148565b50506200031d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620002ca565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b600060208083850312156200020257600080fd5b82516001600160401b03808211156200021a57600080fd5b818501915085601f8301126200022f57600080fd5b81518181111562000244576200024462000307565b604051601f8201601f19908116603f011681019083821181831017156200026f576200026f62000307565b8160405282815288868487010111156200028857600080fd5b600093505b82841015620002ac57848401860151818501870152928501926200028d565b82841115620002be5760008684830101525b98975050505050505050565b600181811c90821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c4b806200032d6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e0a808531161006f578063e0a8085314610615578063e985e9c514610635578063efbd73f41461067e578063f2fde38b1461069e578063f77b1edd146106be57600080fd5b8063b88d4fde14610595578063c2d05a6e146105b5578063c87b56dd146105ca578063d5abeb01146105ea578063daaeec861461060057600080fd5b80638da5cb5b116100f25780638da5cb5b1461050c57806394354fd01461052a57806395d89b4114610540578063a22cb46514610555578063b071401b1461057557600080fd5b806370a0823114610497578063715018a6146104b7578063742a4c9b146104cc5780637c928fe9146104ec57600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e1461041457806365cde7331461043457806366112b6b1461044757806368428a1b1461045d5780636f8b44b01461047757600080fd5b80633ccfd60b1461038057806342842e0e1461039557806344a0d68a146103b557806351830227146103d557806355f804b3146103f457600080fd5b8063095ea7b3116101f8578063095ea7b3146102f457806313faede61461031657806318160ddd1461032c57806323b872dd1461034a5780633bc4b0251461036a57600080fd5b806301ffc9a71461022a57806306bb99e21461025f57806306fdde031461029a578063081812fc146102bc575b600080fd5b34801561023657600080fd5b5061024a6102453660046118d7565b6106de565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061028c61027a366004611702565b600f6020526000908152604090205481565b604051908152602001610256565b3480156102a657600080fd5b506102af610730565b6040516102569190611a67565b3480156102c857600080fd5b506102dc6102d7366004611983565b6107c2565b6040516001600160a01b039091168152602001610256565b34801561030057600080fd5b5061031461030f366004611892565b610806565b005b34801561032257600080fd5b5061028c60095481565b34801561033857600080fd5b5061028c600154600054036000190190565b34801561035657600080fd5b50610314610365366004611750565b6108d9565b34801561037657600080fd5b5061028c600d5481565b34801561038c57600080fd5b506103146108e9565b3480156103a157600080fd5b506103146103b0366004611750565b610958565b3480156103c157600080fd5b506103146103d0366004611983565b610973565b3480156103e157600080fd5b50600e5461024a90610100900460ff1681565b34801561040057600080fd5b5061031461040f366004611911565b6109a2565b34801561042057600080fd5b506102dc61042f366004611983565b6109d8565b610314610442366004611983565b6109e3565b34801561045357600080fd5b5061028c600c5481565b34801561046957600080fd5b50600e5461024a9060ff1681565b34801561048357600080fd5b50610314610492366004611983565b610ad0565b3480156104a357600080fd5b5061028c6104b2366004611702565b610aff565b3480156104c357600080fd5b50610314610b4e565b3480156104d857600080fd5b506103146104e7366004611983565b610b84565b3480156104f857600080fd5b50610314610507366004611983565b610bb3565b34801561051857600080fd5b506008546001600160a01b03166102dc565b34801561053657600080fd5b5061028c600b5481565b34801561054c57600080fd5b506102af610ce5565b34801561056157600080fd5b50610314610570366004611868565b610cf4565b34801561058157600080fd5b50610314610590366004611983565b610d8a565b3480156105a157600080fd5b506103146105b036600461178c565b610db9565b3480156105c157600080fd5b5061024a610e03565b3480156105d657600080fd5b506102af6105e5366004611983565b610e1f565b3480156105f657600080fd5b5061028c600a5481565b34801561060c57600080fd5b50610314610e96565b34801561062157600080fd5b506103146106303660046118bc565b610ed4565b34801561064157600080fd5b5061024a61065036600461171d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b5061031461069936600461199c565b610f18565b3480156106aa57600080fd5b506103146106b9366004611702565b610f4c565b3480156106ca57600080fd5b506103146106d9366004611983565b610fe4565b60006301ffc9a760e01b6001600160e01b03198316148061070f57506380ac58cd60e01b6001600160e01b03198316145b8061072a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073f90611b3d565b80601f016020809104026020016040519081016040528092919081815260200182805461076b90611b3d565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd82611013565b6107ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081182611048565b9050806001600160a01b0316836001600160a01b031614156108465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087d576108608133610650565b61087d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e48383836110b8565b505050565b6008546001600160a01b0316331461091c5760405162461bcd60e51b815260040161091390611a7a565b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610955573d6000803e3d6000fd5b50565b6108e483838360405180602001604052806000815250610db9565b6008546001600160a01b0316331461099d5760405162461bcd60e51b815260040161091390611a7a565b600955565b6008546001600160a01b031633146109cc5760405162461bcd60e51b815260040161091390611a7a565b6108e46010838361163d565b600061072a82611048565b600e54819060ff16610a0857604051630fe219dd60e21b815260040160405180910390fd5b333214610a28576040516372f67c2360e01b815260040160405180910390fd5b600a5481610a3d600154600054036000190190565b610a479190611aaf565b1115610a665760405163c30436e960e01b815260040160405180910390fd5b6001811080610a765750600b5481115b15610a945760405163162908e360e11b815260040160405180910390fd5b81600954610aa29190611adb565b341015610ac25760405163044044a560e21b815260040160405180910390fd5b610acc338361125b565b5050565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161091390611a7a565b600a55565b60006001600160a01b038216610b28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161091390611a7a565b610b826000611275565b565b6008546001600160a01b03163314610bae5760405162461bcd60e51b815260040161091390611a7a565b600d55565b600e54819060ff16610bd857604051630fe219dd60e21b815260040160405180910390fd5b333214610bf8576040516372f67c2360e01b815260040160405180910390fd5b600a5481610c0d600154600054036000190190565b610c179190611aaf565b1115610c365760405163c30436e960e01b815260040160405180910390fd5b6001811080610c465750600b5481115b15610c645760405163162908e360e11b815260040160405180910390fd5b610c6c610e03565b610c8957604051633c79ec1b60e21b815260040160405180910390fd5b600c54336000908152600f6020526040902054610ca7908490611aaf565b1115610cc657604051635107dbe760e01b815260040160405180910390fd5b336000818152600f60205260409020805484019055610acc908361125b565b60606003805461073f90611b3d565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db45760405162461bcd60e51b815260040161091390611a7a565b600b55565b610dc48484846110b8565b6001600160a01b0383163b15610dfd57610de0848484846112c7565b610dfd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610e19600154600054036000190190565b10905090565b6060610e2a82611013565b610e4757604051630cbdb7b360e41b815260040160405180910390fd5b600e54610100900460ff16610e5e5761072a6113bf565b610e666113bf565b610e6f836113ce565b604051602001610e809291906119eb565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610ec05760405162461bcd60e51b815260040161091390611a7a565b600e805460ff19811660ff90911615179055565b6008546001600160a01b03163314610efe5760405162461bcd60e51b815260040161091390611a7a565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610f425760405162461bcd60e51b815260040161091390611a7a565b610acc818361125b565b6008546001600160a01b03163314610f765760405162461bcd60e51b815260040161091390611a7a565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610913565b61095581611275565b6008546001600160a01b0316331461100e5760405162461bcd60e51b815260040161091390611a7a565b600c55565b600081600111158015611027575060005482105b801561072a575050600090815260046020526040902054600160e01b161590565b6000818060011161109f5760005481101561109f57600081815260046020526040902054600160e01b811661109d575b80611096575060001901600081815260046020526040902054611078565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110c382611048565b9050836001600160a01b0316816001600160a01b0316146110f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061111457506111148533610650565b8061112f575033611124846107c2565b6001600160a01b0316145b90508061114f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661117657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661121357600183016000818152600460205260409020546112115760005481146112115760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610acc8282604051806020016040528060008152506114cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112fc903390899088908890600401611a2a565b602060405180830381600087803b15801561131657600080fd5b505af1925050508015611346575060408051601f3d908101601f19168201909252611343918101906118f4565b60015b6113a1573d808015611374576040519150601f19603f3d011682016040523d82523d6000602084013e611379565b606091505b508051611399576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073f90611b3d565b6060816113f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141c578061140681611b78565b91506114159050600a83611ac7565b91506113f6565b60008167ffffffffffffffff81111561143757611437611be9565b6040519080825280601f01601f191660200182016040528015611461576020820181803683370190505b5090505b84156113b757611476600183611afa565b9150611483600a86611b93565b61148e906030611aaf565b60f81b8183815181106114a3576114a3611bd3565b60200101906001600160f81b031916908160001a9053506114c5600a86611ac7565b9450611465565b6000546001600160a01b0384166114f557604051622e076360e81b815260040160405180910390fd5b826115135760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115e8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115b160008784806001019550876112c7565b6115ce576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115665782600054146115e357600080fd5b61162d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115e9575b506000908155610dfd9085838684565b82805461164990611b3d565b90600052602060002090601f01602090048101928261166b57600085556116b1565b82601f106116845782800160ff198235161785556116b1565b828001600101855582156116b1579182015b828111156116b1578235825591602001919060010190611696565b506116bd9291506116c1565b5090565b5b808211156116bd57600081556001016116c2565b80356001600160a01b03811681146116ed57600080fd5b919050565b803580151581146116ed57600080fd5b60006020828403121561171457600080fd5b611096826116d6565b6000806040838503121561173057600080fd5b611739836116d6565b9150611747602084016116d6565b90509250929050565b60008060006060848603121561176557600080fd5b61176e846116d6565b925061177c602085016116d6565b9150604084013590509250925092565b600080600080608085870312156117a257600080fd5b6117ab856116d6565b93506117b9602086016116d6565b925060408501359150606085013567ffffffffffffffff808211156117dd57600080fd5b818701915087601f8301126117f157600080fd5b81358181111561180357611803611be9565b604051601f8201601f19908116603f0116810190838211818310171561182b5761182b611be9565b816040528281528a602084870101111561184457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561187b57600080fd5b611884836116d6565b9150611747602084016116f2565b600080604083850312156118a557600080fd5b6118ae836116d6565b946020939093013593505050565b6000602082840312156118ce57600080fd5b611096826116f2565b6000602082840312156118e957600080fd5b813561109681611bff565b60006020828403121561190657600080fd5b815161109681611bff565b6000806020838503121561192457600080fd5b823567ffffffffffffffff8082111561193c57600080fd5b818501915085601f83011261195057600080fd5b81358181111561195f57600080fd5b86602082850101111561197157600080fd5b60209290920196919550909350505050565b60006020828403121561199557600080fd5b5035919050565b600080604083850312156119af57600080fd5b82359150611747602084016116d6565b600081518084526119d7816020860160208601611b11565b601f01601f19169290920160200192915050565b600083516119fd818460208801611b11565b835190830190611a11818360208801611b11565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a5d908301846119bf565b9695505050505050565b60208152600061109660208301846119bf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ac257611ac2611ba7565b500190565b600082611ad657611ad6611bbd565b500490565b6000816000190483118215151615611af557611af5611ba7565b500290565b600082821015611b0c57611b0c611ba7565b500390565b60005b83811015611b2c578181015183820152602001611b14565b83811115610dfd5750506000910152565b600181811c90821680611b5157607f821691505b60208210811415611b7257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b8c57611b8c611ba7565b5060010190565b600082611ba257611ba2611bbd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095557600080fdfea26469706673582212206d328ce1f09e9a296b2903b1d83dd612f642311b2b72d8adffa4499b9b167c3564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e0a808531161006f578063e0a8085314610615578063e985e9c514610635578063efbd73f41461067e578063f2fde38b1461069e578063f77b1edd146106be57600080fd5b8063b88d4fde14610595578063c2d05a6e146105b5578063c87b56dd146105ca578063d5abeb01146105ea578063daaeec861461060057600080fd5b80638da5cb5b116100f25780638da5cb5b1461050c57806394354fd01461052a57806395d89b4114610540578063a22cb46514610555578063b071401b1461057557600080fd5b806370a0823114610497578063715018a6146104b7578063742a4c9b146104cc5780637c928fe9146104ec57600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e1461041457806365cde7331461043457806366112b6b1461044757806368428a1b1461045d5780636f8b44b01461047757600080fd5b80633ccfd60b1461038057806342842e0e1461039557806344a0d68a146103b557806351830227146103d557806355f804b3146103f457600080fd5b8063095ea7b3116101f8578063095ea7b3146102f457806313faede61461031657806318160ddd1461032c57806323b872dd1461034a5780633bc4b0251461036a57600080fd5b806301ffc9a71461022a57806306bb99e21461025f57806306fdde031461029a578063081812fc146102bc575b600080fd5b34801561023657600080fd5b5061024a6102453660046118d7565b6106de565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061028c61027a366004611702565b600f6020526000908152604090205481565b604051908152602001610256565b3480156102a657600080fd5b506102af610730565b6040516102569190611a67565b3480156102c857600080fd5b506102dc6102d7366004611983565b6107c2565b6040516001600160a01b039091168152602001610256565b34801561030057600080fd5b5061031461030f366004611892565b610806565b005b34801561032257600080fd5b5061028c60095481565b34801561033857600080fd5b5061028c600154600054036000190190565b34801561035657600080fd5b50610314610365366004611750565b6108d9565b34801561037657600080fd5b5061028c600d5481565b34801561038c57600080fd5b506103146108e9565b3480156103a157600080fd5b506103146103b0366004611750565b610958565b3480156103c157600080fd5b506103146103d0366004611983565b610973565b3480156103e157600080fd5b50600e5461024a90610100900460ff1681565b34801561040057600080fd5b5061031461040f366004611911565b6109a2565b34801561042057600080fd5b506102dc61042f366004611983565b6109d8565b610314610442366004611983565b6109e3565b34801561045357600080fd5b5061028c600c5481565b34801561046957600080fd5b50600e5461024a9060ff1681565b34801561048357600080fd5b50610314610492366004611983565b610ad0565b3480156104a357600080fd5b5061028c6104b2366004611702565b610aff565b3480156104c357600080fd5b50610314610b4e565b3480156104d857600080fd5b506103146104e7366004611983565b610b84565b3480156104f857600080fd5b50610314610507366004611983565b610bb3565b34801561051857600080fd5b506008546001600160a01b03166102dc565b34801561053657600080fd5b5061028c600b5481565b34801561054c57600080fd5b506102af610ce5565b34801561056157600080fd5b50610314610570366004611868565b610cf4565b34801561058157600080fd5b50610314610590366004611983565b610d8a565b3480156105a157600080fd5b506103146105b036600461178c565b610db9565b3480156105c157600080fd5b5061024a610e03565b3480156105d657600080fd5b506102af6105e5366004611983565b610e1f565b3480156105f657600080fd5b5061028c600a5481565b34801561060c57600080fd5b50610314610e96565b34801561062157600080fd5b506103146106303660046118bc565b610ed4565b34801561064157600080fd5b5061024a61065036600461171d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b5061031461069936600461199c565b610f18565b3480156106aa57600080fd5b506103146106b9366004611702565b610f4c565b3480156106ca57600080fd5b506103146106d9366004611983565b610fe4565b60006301ffc9a760e01b6001600160e01b03198316148061070f57506380ac58cd60e01b6001600160e01b03198316145b8061072a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073f90611b3d565b80601f016020809104026020016040519081016040528092919081815260200182805461076b90611b3d565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd82611013565b6107ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081182611048565b9050806001600160a01b0316836001600160a01b031614156108465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087d576108608133610650565b61087d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e48383836110b8565b505050565b6008546001600160a01b0316331461091c5760405162461bcd60e51b815260040161091390611a7a565b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610955573d6000803e3d6000fd5b50565b6108e483838360405180602001604052806000815250610db9565b6008546001600160a01b0316331461099d5760405162461bcd60e51b815260040161091390611a7a565b600955565b6008546001600160a01b031633146109cc5760405162461bcd60e51b815260040161091390611a7a565b6108e46010838361163d565b600061072a82611048565b600e54819060ff16610a0857604051630fe219dd60e21b815260040160405180910390fd5b333214610a28576040516372f67c2360e01b815260040160405180910390fd5b600a5481610a3d600154600054036000190190565b610a479190611aaf565b1115610a665760405163c30436e960e01b815260040160405180910390fd5b6001811080610a765750600b5481115b15610a945760405163162908e360e11b815260040160405180910390fd5b81600954610aa29190611adb565b341015610ac25760405163044044a560e21b815260040160405180910390fd5b610acc338361125b565b5050565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161091390611a7a565b600a55565b60006001600160a01b038216610b28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161091390611a7a565b610b826000611275565b565b6008546001600160a01b03163314610bae5760405162461bcd60e51b815260040161091390611a7a565b600d55565b600e54819060ff16610bd857604051630fe219dd60e21b815260040160405180910390fd5b333214610bf8576040516372f67c2360e01b815260040160405180910390fd5b600a5481610c0d600154600054036000190190565b610c179190611aaf565b1115610c365760405163c30436e960e01b815260040160405180910390fd5b6001811080610c465750600b5481115b15610c645760405163162908e360e11b815260040160405180910390fd5b610c6c610e03565b610c8957604051633c79ec1b60e21b815260040160405180910390fd5b600c54336000908152600f6020526040902054610ca7908490611aaf565b1115610cc657604051635107dbe760e01b815260040160405180910390fd5b336000818152600f60205260409020805484019055610acc908361125b565b60606003805461073f90611b3d565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db45760405162461bcd60e51b815260040161091390611a7a565b600b55565b610dc48484846110b8565b6001600160a01b0383163b15610dfd57610de0848484846112c7565b610dfd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610e19600154600054036000190190565b10905090565b6060610e2a82611013565b610e4757604051630cbdb7b360e41b815260040160405180910390fd5b600e54610100900460ff16610e5e5761072a6113bf565b610e666113bf565b610e6f836113ce565b604051602001610e809291906119eb565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610ec05760405162461bcd60e51b815260040161091390611a7a565b600e805460ff19811660ff90911615179055565b6008546001600160a01b03163314610efe5760405162461bcd60e51b815260040161091390611a7a565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610f425760405162461bcd60e51b815260040161091390611a7a565b610acc818361125b565b6008546001600160a01b03163314610f765760405162461bcd60e51b815260040161091390611a7a565b6001600160a01b038116610fdb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610913565b61095581611275565b6008546001600160a01b0316331461100e5760405162461bcd60e51b815260040161091390611a7a565b600c55565b600081600111158015611027575060005482105b801561072a575050600090815260046020526040902054600160e01b161590565b6000818060011161109f5760005481101561109f57600081815260046020526040902054600160e01b811661109d575b80611096575060001901600081815260046020526040902054611078565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110c382611048565b9050836001600160a01b0316816001600160a01b0316146110f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061111457506111148533610650565b8061112f575033611124846107c2565b6001600160a01b0316145b90508061114f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661117657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661121357600183016000818152600460205260409020546112115760005481146112115760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610acc8282604051806020016040528060008152506114cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112fc903390899088908890600401611a2a565b602060405180830381600087803b15801561131657600080fd5b505af1925050508015611346575060408051601f3d908101601f19168201909252611343918101906118f4565b60015b6113a1573d808015611374576040519150601f19603f3d011682016040523d82523d6000602084013e611379565b606091505b508051611399576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073f90611b3d565b6060816113f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141c578061140681611b78565b91506114159050600a83611ac7565b91506113f6565b60008167ffffffffffffffff81111561143757611437611be9565b6040519080825280601f01601f191660200182016040528015611461576020820181803683370190505b5090505b84156113b757611476600183611afa565b9150611483600a86611b93565b61148e906030611aaf565b60f81b8183815181106114a3576114a3611bd3565b60200101906001600160f81b031916908160001a9053506114c5600a86611ac7565b9450611465565b6000546001600160a01b0384166114f557604051622e076360e81b815260040160405180910390fd5b826115135760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156115e8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115b160008784806001019550876112c7565b6115ce576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115665782600054146115e357600080fd5b61162d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115e9575b506000908155610dfd9085838684565b82805461164990611b3d565b90600052602060002090601f01602090048101928261166b57600085556116b1565b82601f106116845782800160ff198235161785556116b1565b828001600101855582156116b1579182015b828111156116b1578235825591602001919060010190611696565b506116bd9291506116c1565b5090565b5b808211156116bd57600081556001016116c2565b80356001600160a01b03811681146116ed57600080fd5b919050565b803580151581146116ed57600080fd5b60006020828403121561171457600080fd5b611096826116d6565b6000806040838503121561173057600080fd5b611739836116d6565b9150611747602084016116d6565b90509250929050565b60008060006060848603121561176557600080fd5b61176e846116d6565b925061177c602085016116d6565b9150604084013590509250925092565b600080600080608085870312156117a257600080fd5b6117ab856116d6565b93506117b9602086016116d6565b925060408501359150606085013567ffffffffffffffff808211156117dd57600080fd5b818701915087601f8301126117f157600080fd5b81358181111561180357611803611be9565b604051601f8201601f19908116603f0116810190838211818310171561182b5761182b611be9565b816040528281528a602084870101111561184457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561187b57600080fd5b611884836116d6565b9150611747602084016116f2565b600080604083850312156118a557600080fd5b6118ae836116d6565b946020939093013593505050565b6000602082840312156118ce57600080fd5b611096826116f2565b6000602082840312156118e957600080fd5b813561109681611bff565b60006020828403121561190657600080fd5b815161109681611bff565b6000806020838503121561192457600080fd5b823567ffffffffffffffff8082111561193c57600080fd5b818501915085601f83011261195057600080fd5b81358181111561195f57600080fd5b86602082850101111561197157600080fd5b60209290920196919550909350505050565b60006020828403121561199557600080fd5b5035919050565b600080604083850312156119af57600080fd5b82359150611747602084016116d6565b600081518084526119d7816020860160208601611b11565b601f01601f19169290920160200192915050565b600083516119fd818460208801611b11565b835190830190611a11818360208801611b11565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a5d908301846119bf565b9695505050505050565b60208152600061109660208301846119bf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ac257611ac2611ba7565b500190565b600082611ad657611ad6611bbd565b500490565b6000816000190483118215151615611af557611af5611ba7565b500290565b600082821015611b0c57611b0c611ba7565b500390565b60005b83811015611b2c578181015183820152602001611b14565b83811115610dfd5750506000910152565b600181811c90821680611b5157607f821691505b60208210811415611b7257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b8c57611b8c611ba7565b5060010190565b600082611ba257611ba2611bbd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095557600080fdfea26469706673582212206d328ce1f09e9a296b2903b1d83dd612f642311b2b72d8adffa4499b9b167c3564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

255:3416:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:4;;;;;;;;;;-1:-1:-1;4880:607:4;;;;;:::i;:::-;;:::i;:::-;;;6307:14:6;;6300:22;6282:41;;6270:2;6255:18;4880:607:4;;;;;;;;854:46:3;;;;;;;;;;-1:-1:-1;854:46:3;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7472:25:6;;;7460:2;7445:18;854:46:3;7326:177:6;9768:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5605:32:6;;;5587:51;;5575:2;5560:18;11769:200:4;5441:203:6;11245:463:4;;;;;;;;;;-1:-1:-1;11245:463:4;;;;;:::i;:::-;;:::i;:::-;;574:34:3;;;;;;;;;;;;;;;;3963:309:4;;;;;;;;;;;;2077:1:3;4225:12:4;4016:7;4209:13;:28;-1:-1:-1;;4209:46:4;;3963:309;12629:164;;;;;;;;;;-1:-1:-1;12629:164:4;;;;;:::i;:::-;;:::i;739:35:3:-;;;;;;;;;;;;;;;;2939:98;;;;;;;;;;;;;:::i;12859:179:4:-;;;;;;;;;;-1:-1:-1;12859:179:4;;;;;:::i;:::-;;:::i;2327:74:3:-;;;;;;;;;;-1:-1:-1;2327:74:3;;;;;:::i;:::-;;:::i;818:27::-;;;;;;;;;;-1:-1:-1;818:27:3;;;;;;;;;;;3176:100;;;;;;;;;;-1:-1:-1;3176:100:3;;;;;:::i;:::-;;:::i;9564:142:4:-;;;;;;;;;;-1:-1:-1;9564:142:4;;;;;:::i;:::-;;:::i;1729:220:3:-;;;;;;:::i;:::-;;:::i;692:40::-;;;;;;;;;;;;;;;;783:30;;;;;;;;;;-1:-1:-1;783:30:3;;;;;;;;2408:96;;;;;;;;;;-1:-1:-1;2408:96:3;;;;;:::i;:::-;;:::i;5546:221:4:-;;;;;;;;;;-1:-1:-1;5546:221:4;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;2735:88:3:-;;;;;;;;;;-1:-1:-1;2735:88:3;;;;;:::i;:::-;;:::i;1394:329::-;;;;;;;;;;-1:-1:-1;1394:329:3;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;649:38:3;;;;;;;;;;;;;;;;9930:102:4;;;;;;;;;;;;;:::i;12036:303::-;;;;;;;;;;-1:-1:-1;12036:303:4;;;;;:::i;:::-;;:::i;2510:130:3:-;;;;;;;;;;-1:-1:-1;2510:130:3;;;;;:::i;:::-;;:::i;13104:385:4:-;;;;;;;;;;-1:-1:-1;13104:385:4;;;;;:::i;:::-;;:::i;2090:98:3:-;;;;;;;;;;;;;:::i;3369:297::-;;;;;;;;;;-1:-1:-1;3369:297:3;;;;;:::i;:::-;;:::i;613:31::-;;;;;;;;;;;;;;;;2648:81;;;;;;;;;;;;;:::i;3282:::-;;;;;;;;;;-1:-1:-1;3282:81:3;;;;;:::i;:::-;;:::i;12405:162:4:-;;;;;;;;;;-1:-1:-1;12405:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:4;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;2194:127:3;;;;;;;;;;-1:-1:-1;2194:127:3;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;2829:104:3:-;;;;;;;;;;-1:-1:-1;2829:104:3;;;;;:::i;:::-;;:::i;4880:607:4:-;4965:4;-1:-1:-1;;;;;;;;;5260:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:4;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:4;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:4:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;-1:-1:-1;;;11886:34:4;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:4;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:4;:2;-1:-1:-1;;;;;11392:11:4;;11388:48;;;11412:24;;-1:-1:-1;;;11412:24:4;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:4;;;11447:172;;11498:44;11515:5;27446:10;12405:162;:::i;11498:44::-;11493:126;;11569:35;;-1:-1:-1;;;11569:35:4;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11629:29:4;-1:-1:-1;;;;;11629:29:4;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;12629:164::-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;2939:98:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;1108:6;;2983:48:3::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;3009:21:3::1;2983:48:::0;::::1;;;::::0;::::1;::::0;;;3009:21;1108:6:0;2983:48:3;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2939:98::o:0;12859:179:4:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;2327:74:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2383:4:3::1;:12:::0;2327:74::o;3176:100::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3247:23:3::1;:13;3263:7:::0;;3247:23:::1;:::i;9564:142:4:-:0;9628:7;9670:27;9689:7;9670:18;:27::i;1729:220:3:-;1121:10;;1815:11;;1121:10;;1116:38;;1140:14;;-1:-1:-1;;;1140:14:3;;;;;;;;;;;1116:38;1165:10;1179:9;1165:23;1161:50;;1197:14;;-1:-1:-1;;;1197:14:3;;;;;;;;;;;1161:50;1252:9;;1238:11;1222:13;2077:1;4225:12:4;4016:7;4209:13;:28;-1:-1:-1;;4209:46:4;;3963:309;1222:13:3;:27;;;;:::i;:::-;:39;1218:70;;;1270:18;;-1:-1:-1;;;1270:18:3;;;;;;;;;;;1218:70;1313:1;1299:11;:15;:51;;;;1332:18;;1318:11;:32;1299:51;1295:79;;;1359:15;;-1:-1:-1;;;1359:15:3;;;;;;;;;;;1295:79;1862:11:::1;1855:4;;:18;;;;:::i;:::-;1842:9;:32;1838:64;;;1883:19;;-1:-1:-1::0;;;1883:19:3::1;;;;;;;;;;;1838:64;1909:34;1919:10;1931:11;1909:9;:34::i;:::-;1729:220:::0;;:::o;2408:96::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2476:9:3::1;:22:::0;2408:96::o;5546:221:4:-;5610:7;-1:-1:-1;;;;;5633:19:4;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:4;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:4;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2735:88:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2797:13:3::1;:20:::0;2735:88::o;1394:329::-;1121:10;;1455:11;;1121:10;;1116:38;;1140:14;;-1:-1:-1;;;1140:14:3;;;;;;;;;;;1116:38;1165:10;1179:9;1165:23;1161:50;;1197:14;;-1:-1:-1;;;1197:14:3;;;;;;;;;;;1161:50;1252:9;;1238:11;1222:13;2077:1;4225:12:4;4016:7;4209:13;:28;-1:-1:-1;;4209:46:4;;3963:309;1222:13:3;:27;;;;:::i;:::-;:39;1218:70;;;1270:18;;-1:-1:-1;;;1270:18:3;;;;;;;;;;;1218:70;1313:1;1299:11;:15;:51;;;;1332:18;;1318:11;:32;1299:51;1295:79;;;1359:15;;-1:-1:-1;;;1359:15:3;;;;;;;;;;;1295:79;1480:12:::1;:10;:12::i;:::-;1475:40;;1501:14;;-1:-1:-1::0;;;1501:14:3::1;;;;;;;;;;;1475:40;1566:20;::::0;1538:10:::1;1526:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;1552:11;;1526:37:::1;:::i;:::-;:60;1522:93;;;1595:20;;-1:-1:-1::0;;;1595:20:3::1;;;;;;;;;;;1522:93;1646:10;1634:23;::::0;;;:11:::1;:23;::::0;;;;:38;;;::::1;::::0;;1683:34:::1;::::0;1661:11;1683:9:::1;:34::i;9930:102:4:-:0;9986:13;10018:7;10011:14;;;;;:::i;12036:303::-;-1:-1:-1;;;;;12134:31:4;;27446:10;12134:31;12130:61;;;12174:17;;-1:-1:-1;;;12174:17:4;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:4;;;;;;;;;;12277:55;;6282:41:6;;;12202:49:4;;27446:10;12277:55;;6255:18:6;12277:55:4;;;;;;;12036:303;;:::o;2510:130:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2594:18:3::1;:40:::0;2510:130::o;13104:385:4:-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:4;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:4;;;;;;;;;;;13340:143;13104:385;;;;:::o;2090:98:3:-;2133:4;2169:13;;2153;2077:1;4225:12:4;4016:7;4209:13;:28;-1:-1:-1;;4209:46:4;;3963:309;2153:13:3;:29;2146:36;;2090:98;:::o;3369:297::-;3468:13;3498:17;3506:8;3498:7;:17::i;:::-;3493:46;;3524:15;;-1:-1:-1;;;3524:15:3;;;;;;;;;;;3493:46;3553:8;;;;;;;3548:32;;3570:10;:8;:10::i;3548:32::-;3618:10;:8;:10::i;:::-;3630:19;:8;:17;:19::i;:::-;3601:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3587:73;;3369:297;;;:::o;2648:81::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2713:10:3::1;::::0;;-1:-1:-1;;2699:24:3;::::1;2713:10;::::0;;::::1;2712:11;2699:24;::::0;;2648:81::o;3282:::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3341:8:3::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;3341:16:3;;::::1;::::0;;;::::1;::::0;;3282:81::o;2194:127::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2282:33:3::1;2292:9;2303:11;2282:9;:33::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;6760:2:6;1998:73:0::1;::::0;::::1;6742:21:6::0;6799:2;6779:18;;;6772:30;6838:34;6818:18;;;6811:62;-1:-1:-1;;;6889:18:6;;;6882:36;6935:19;;1998:73:0::1;6558:402:6::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;2829:104:3:-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2900:20:3::1;:27:::0;2829:104::o;13735:268:4:-;13792:4;13846:7;2077:1:3;13827:26:4;;:65;;;;;13879:13;;13869:7;:23;13827:65;:150;;;;-1:-1:-1;;13929:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:4;:48;;13735:268::o;7141:1105::-;7208:7;7242;;2077:1:3;7288:23:4;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:4;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:4;8051:25;;;;:17;:25;;;;;;7992:111;;;8135:6;7141:1105;-1:-1:-1;;;7141:1105:4:o;7477:687::-;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:4;;;;;;;;;;;18835:2460;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:4;19033:19;-1:-1:-1;;;;;19017:45:4;;19013:86;;19071:28;;-1:-1:-1;;;19071:28:4;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:4;;;;:86;;-1:-1:-1;19179:43:4;19196:4;27446:10;12405:162;:::i;19179:43::-;19136:145;;;-1:-1:-1;27446:10:4;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:4;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;-1:-1:-1;;;19324:35:4;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:4;;19369:52;;19398:23;;-1:-1:-1;;;19398:23:4;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;;;;;19538:31:4;;;-1:-1:-1;;;;;19930:24:4;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:4;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:4;;;20284:26;;;:17;:26;;;;;-1:-1:-1;;;20370:15:4;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:4;21218:4;-1:-1:-1;;;;;21209:27:4;;;;;;;;;;;18935:2360;;18835:2460;;;:::o;14082:102::-;14150:27;14160:2;14164:8;14150:27;;;;;;;;;;;;:9;:27::i;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;24900:697:4:-;25078:88;;-1:-1:-1;;;25078:88:4;;25058:4;;-1:-1:-1;;;;;25078:45:4;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:4;;;;;;;;-1:-1:-1;;25078:88:4;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:13:4;;25352:229;;25401:40;;-1:-1:-1;;;25401:40:4;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:4;-1:-1:-1;;;25234:64:4;;-1:-1:-1;25074:517:4;24900:697;;;;;;:::o;3062:108:3:-;3122:13;3151;3144:20;;;;;:::i;328:703:2:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:2;;;;;;;;;;;;-1:-1:-1;;;627:10:2;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:2;;-1:-1:-1;773:2:2;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:2;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:2;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:2;;;;;;;;-1:-1:-1;972:11:2;981:2;972:11;;:::i;:::-;;;844:150;;14544:2184:4;14662:20;14685:13;-1:-1:-1;;;;;14712:16:4;;14708:48;;14737:19;;-1:-1:-1;;;14737:19:4;;;;;;;;;;;14708:48;14770:13;14766:44;;14792:18;;-1:-1:-1;;;14792:18:4;;;;;;;;;;;14766:44;-1:-1:-1;;;;;15346:22:4;;;;;;:18;:22;;;;1151:2;15346:22;;;:70;;15384:31;15372:44;;15346:70;;;15652:31;;;:17;:31;;;;;15743:15;1656:3;15743:41;15702:83;;-1:-1:-1;15820:13:4;;1913:3;15805:56;15702:160;15652:210;;:31;;15940:23;;;;15982:14;:19;15978:622;;16021:308;16051:38;;16076:12;;-1:-1:-1;;;;;16051:38:4;;;16068:1;;16051:38;;16068:1;;16051:38;16116:69;16155:1;16159:2;16163:14;;;;;;16179:5;16116:30;:69::i;:::-;16111:172;;16220:40;;-1:-1:-1;;;16220:40:4;;;;;;;;;;;16111:172;16324:3;16309:12;:18;16021:308;;16408:12;16391:13;;:29;16387:43;;16422:8;;;16387:43;15978:622;;;16469:117;16499:40;;16524:14;;;;;-1:-1:-1;;;;;16499:40:4;;;16516:1;;16499:40;;16516:1;;16499:40;16581:3;16566:12;:18;16469:117;;15978:622;-1:-1:-1;16613:13:4;:28;;;16661:60;;16694:2;16698:12;16712:8;16661:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:6;82:20;;-1:-1:-1;;;;;131:31:6;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:6;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:6:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:6;;-1:-1:-1;;;;3496:592:6:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:6;;4093:180;-1:-1:-1;4093:180:6:o;4278:254::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4459:9;4446:23;4436:33;;4488:38;4522:2;4511:9;4507:18;4488:38;:::i;4537:257::-;4578:3;4616:5;4610:12;4643:6;4638:3;4631:19;4659:63;4715:6;4708:4;4703:3;4699:14;4692:4;4685:5;4681:16;4659:63;:::i;:::-;4776:2;4755:15;-1:-1:-1;;4751:29:6;4742:39;;;;4783:4;4738:50;;4537:257;-1:-1:-1;;4537:257:6:o;4799:637::-;5079:3;5117:6;5111:13;5133:53;5179:6;5174:3;5167:4;5159:6;5155:17;5133:53;:::i;:::-;5249:13;;5208:16;;;;5271:57;5249:13;5208:16;5305:4;5293:17;;5271:57;:::i;:::-;-1:-1:-1;;;5350:20:6;;5379:22;;;5428:1;5417:13;;4799:637;-1:-1:-1;;;;4799:637:6:o;5649:488::-;-1:-1:-1;;;;;5918:15:6;;;5900:34;;5970:15;;5965:2;5950:18;;5943:43;6017:2;6002:18;;5995:34;;;6065:3;6060:2;6045:18;;6038:31;;;5843:4;;6086:45;;6111:19;;6103:6;6086:45;:::i;:::-;6078:53;5649:488;-1:-1:-1;;;;;;5649:488:6:o;6334:219::-;6483:2;6472:9;6465:21;6446:4;6503:44;6543:2;6532:9;6528:18;6520:6;6503:44;:::i;6965:356::-;7167:2;7149:21;;;7186:18;;;7179:30;7245:34;7240:2;7225:18;;7218:62;7312:2;7297:18;;6965:356::o;7508:128::-;7548:3;7579:1;7575:6;7572:1;7569:13;7566:39;;;7585:18;;:::i;:::-;-1:-1:-1;7621:9:6;;7508:128::o;7641:120::-;7681:1;7707;7697:35;;7712:18;;:::i;:::-;-1:-1:-1;7746:9:6;;7641:120::o;7766:168::-;7806:7;7872:1;7868;7864:6;7860:14;7857:1;7854:21;7849:1;7842:9;7835:17;7831:45;7828:71;;;7879:18;;:::i;:::-;-1:-1:-1;7919:9:6;;7766:168::o;7939:125::-;7979:4;8007:1;8004;8001:8;7998:34;;;8012:18;;:::i;:::-;-1:-1:-1;8049:9:6;;7939:125::o;8069:258::-;8141:1;8151:113;8165:6;8162:1;8159:13;8151:113;;;8241:11;;;8235:18;8222:11;;;8215:39;8187:2;8180:10;8151:113;;;8282:6;8279:1;8276:13;8273:48;;;-1:-1:-1;;8317:1:6;8299:16;;8292:27;8069:258::o;8332:380::-;8411:1;8407:12;;;;8454;;;8475:61;;8529:4;8521:6;8517:17;8507:27;;8475:61;8582:2;8574:6;8571:14;8551:18;8548:38;8545:161;;;8628:10;8623:3;8619:20;8616:1;8609:31;8663:4;8660:1;8653:15;8691:4;8688:1;8681:15;8545:161;;8332:380;;;:::o;8717:135::-;8756:3;-1:-1:-1;;8777:17:6;;8774:43;;;8797:18;;:::i;:::-;-1:-1:-1;8844:1:6;8833:13;;8717:135::o;8857:112::-;8889:1;8915;8905:35;;8920:18;;:::i;:::-;-1:-1:-1;8954:9:6;;8857:112::o;8974:127::-;9035:10;9030:3;9026:20;9023:1;9016:31;9066:4;9063:1;9056:15;9090:4;9087:1;9080:15;9106:127;9167:10;9162:3;9158:20;9155:1;9148:31;9198:4;9195:1;9188:15;9222:4;9219:1;9212:15;9238:127;9299:10;9294:3;9290:20;9287:1;9280:31;9330:4;9327:1;9320:15;9354:4;9351:1;9344:15;9370:127;9431:10;9426:3;9422:20;9419:1;9412:31;9462:4;9459:1;9452:15;9486:4;9483:1;9476:15;9502:131;-1:-1:-1;;;;;;9576:32:6;;9566:43;;9556:71;;9623:1;9620;9613:12

Swarm Source

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