ETH Price: $3,135.34 (-8.77%)
Gas: 6 Gwei

Token

Crypto Pepes (CP)
 

Overview

Max Total Supply

666 CP

Holders

567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CP
0xafe8f98b0605a98a7a7d49779ccd58cb36ac70b8
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:
CryptoPepes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 50000 runs

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

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

pragma solidity >=0.8.0 <0.9.0;

contract CryptoPepes 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.0066 ether;
  uint256 public maxSupply = 666;
  uint256 public maxMintAmountPerTx = 2;
  uint256 public freeMaxMintPerWallet = 0;
  uint256 public FREE_MINT_MAX = 0;
  
  bool public saleActive = true;
  bool public revealed = true;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(string memory baseURI) ERC721A("Crypto Pepes", "CP") 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory 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.
                // The ASCII index of the '0' character is 48.
                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.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 50000
  },
  "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":"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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"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"}]

60806040819052661772aa3f84800060095561029a600a556002600b556000600c819055600d55600e805461ffff191661010117905562002628388190039081908339810160408190526200005491620001ea565b6040518060400160405280600c81526020016b43727970746f20506570657360a01b81525060405180604001604052806002815260200161043560f41b8152508160029080519060200190620000ac92919062000144565b508051620000c290600390602084019062000144565b5050600160005550620000d533620000f2565b8051620000ea90601090602084019062000144565b505062000319565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620002c6565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b60006020808385031215620001fe57600080fd5b82516001600160401b03808211156200021657600080fd5b818501915085601f8301126200022b57600080fd5b81518181111562000240576200024062000303565b604051601f8201601f19908116603f011681019083821181831017156200026b576200026b62000303565b8160405282815288868487010111156200028457600080fd5b600093505b82841015620002a8578484018601518185018701529285019262000289565b82841115620002ba5760008684830101525b98975050505050505050565b600181811c90821680620002db57607f821691505b60208210811415620002fd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6122ff80620003296000396000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e0a808531161007f578063efbd73f411610064578063efbd73f414610722578063f2fde38b14610742578063f77b1edd1461076257600080fd5b8063e0a80853146106ac578063e985e9c5146106cc57600080fd5b8063c87b56dd116100b0578063c87b56dd14610661578063d5abeb0114610681578063daaeec861461069757600080fd5b8063b88d4fde1461062c578063c2d05a6e1461064c57600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b41146105d7578063a22cb465146105ec578063b071401b1461060c57600080fd5b80638da5cb5b1461059657806394354fd0146105c157600080fd5b806370a0823114610521578063715018a614610541578063742a4c9b146105565780637c928fe91461057657600080fd5b80633ccfd60b116102015780636352211e116101b557806366112b6b1161019a57806366112b6b146104d157806368428a1b146104e75780636f8b44b01461050157600080fd5b80636352211e1461049e57806365cde733146104be57600080fd5b806344a0d68a116101e657806344a0d68a1461043f578063518302271461045f57806355f804b31461047e57600080fd5b80633ccfd60b1461040a57806342842e0e1461041f57600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461039957806323b872dd146103d45780633bc4b025146103f457600080fd5b8063095ea7b31461036157806313faede61461038357600080fd5b806301ffc9a71461028a57806306bb99e2146102bf57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611ead565b610782565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102ec6102da366004611cba565b600f6020526000908152604090205481565b6040519081526020016102b6565b34801561030657600080fd5b5061030f610867565b6040516102b6919061207f565b34801561032857600080fd5b5061033c610337366004611f59565b6108f9565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b34801561036d57600080fd5b5061038161037c366004611e68565b610963565b005b34801561038f57600080fd5b506102ec60095481565b3480156103a557600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016102ec565b3480156103e057600080fd5b506103816103ef366004611d08565b610a4e565b34801561040057600080fd5b506102ec600d5481565b34801561041657600080fd5b50610381610cd6565b34801561042b57600080fd5b5061038161043a366004611d08565b610d27565b34801561044b57600080fd5b5061038161045a366004611f59565b610d47565b34801561046b57600080fd5b50600e546102aa90610100900460ff1681565b34801561048a57600080fd5b50610381610499366004611ee7565b610d54565b3480156104aa57600080fd5b5061033c6104b9366004611f59565b610d68565b6103816104cc366004611f59565b610d73565b3480156104dd57600080fd5b506102ec600c5481565b3480156104f357600080fd5b50600e546102aa9060ff1681565b34801561050d57600080fd5b5061038161051c366004611f59565b610ef7565b34801561052d57600080fd5b506102ec61053c366004611cba565b610f04565b34801561054d57600080fd5b50610381610f86565b34801561056257600080fd5b50610381610571366004611f59565b610f9a565b34801561058257600080fd5b50610381610591366004611f59565b610fa7565b3480156105a257600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661033c565b3480156105cd57600080fd5b506102ec600b5481565b3480156105e357600080fd5b5061030f611189565b3480156105f857600080fd5b50610381610607366004611e3e565b611198565b34801561061857600080fd5b50610381610627366004611f59565b61127f565b34801561063857600080fd5b50610381610647366004611d44565b61128c565b34801561065857600080fd5b506102aa6112fc565b34801561066d57600080fd5b5061030f61067c366004611f59565b611338565b34801561068d57600080fd5b506102ec600a5481565b3480156106a357600080fd5b506103816113c8565b3480156106b857600080fd5b506103816106c7366004611e92565b611402565b3480156106d857600080fd5b506102aa6106e7366004611cd5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072e57600080fd5b5061038161073d366004611f72565b611441565b34801561074e57600080fd5b5061038161075d366004611cba565b611453565b34801561076e57600080fd5b5061038161077d366004611f59565b61150c565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061081557507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061086157507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546108769061213e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061213e565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b600061090482611519565b61093a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061096e82610d68565b90503373ffffffffffffffffffffffffffffffffffffffff8216146109cd5761099781336106e7565b6109cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a5982611567565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610b3357610afd86336106e7565b610b33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610b80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610b8b57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610c735760018401600081815260046020526040902054610c71576000548114610c715760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610cde611627565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610d24573d6000803e3d6000fd5b50565b610d428383836040518060200160405280600081525061128c565b505050565b610d4f611627565b600955565b610d5c611627565b610d4260108383611bca565b600061086182611567565b600e54819060ff16610db1576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214610dea576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610e239190612092565b1115610e5b576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001811080610e6b5750600b5481115b15610ea2576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600954610eb091906120be565b341015610ee9576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef333836116a8565b5050565b610eff611627565b600a55565b600073ffffffffffffffffffffffffffffffffffffffff8216610f53576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610f8e611627565b610f9860006116c2565b565b610fa2611627565b600d55565b600e54819060ff16610fe5576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461101e576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016110579190612092565b111561108f576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181108061109f5750600b5481115b156110d6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110de6112fc565b611114576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054611132908490612092565b111561116a576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610ef390836116a8565b6060600380546108769061213e565b73ffffffffffffffffffffffffffffffffffffffff82163314156111e8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611287611627565b600b55565b611297848484610a4e565b73ffffffffffffffffffffffffffffffffffffffff83163b156112f6576112c084848484611739565b6112f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600d546113326001546000547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9190030190565b10905090565b606061134382611519565b611379576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e54610100900460ff16611390576108616118bf565b6113986118bf565b6113a1836118ce565b6040516020016113b2929190611fdf565b6040516020818303038152906040529050919050565b6113d0611627565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b61140a611627565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b611449611627565b610ef381836116a8565b61145b611627565b73ffffffffffffffffffffffffffffffffffffffff8116611503576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610d24816116c2565b611514611627565b600c55565b60008160011115801561152d575060005482105b80156108615750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116115f5576000548110156115f5576000818152600460205260409020547c010000000000000000000000000000000000000000000000000000000081166115f3575b806115ec57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546115b0565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016114fa565b610ef3828260405180602001604052806000815250611a00565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611794903390899088908890600401612036565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117fc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526117f991810190611eca565b60015b611870573d80801561182a576040519150601f19603f3d011682016040523d82523d6000602084013e61182f565b606091505b508051611868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060601080546108769061213e565b60608161190e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611938578061192281612192565b91506119319050600a836120aa565b9150611912565b60008167ffffffffffffffff8111156119535761195361226c565b6040519080825280601f01601f19166020018201604052801561197d576020820181803683370190505b5090505b84156118b7576119926001836120fb565b915061199f600a866121cb565b6119aa906030612092565b60f81b8183815181106119bf576119bf61223d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119f9600a866120aa565b9450611981565b611a0a8383611a93565b73ffffffffffffffffffffffffffffffffffffffff83163b15610d42576000548281035b611a416000868380600101945086611739565b611a77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a2e578160005414611a8c57600080fd5b5050505050565b60005481611acd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b8957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b51565b5081611bc1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b828054611bd69061213e565b90600052602060002090601f016020900481019282611bf85760008555611c5c565b82601f10611c2f578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555611c5c565b82800160010185558215611c5c579182015b82811115611c5c578235825591602001919060010190611c41565b50611c68929150611c6c565b5090565b5b80821115611c685760008155600101611c6d565b803573ffffffffffffffffffffffffffffffffffffffff81168114611ca557600080fd5b919050565b80358015158114611ca557600080fd5b600060208284031215611ccc57600080fd5b6115ec82611c81565b60008060408385031215611ce857600080fd5b611cf183611c81565b9150611cff60208401611c81565b90509250929050565b600080600060608486031215611d1d57600080fd5b611d2684611c81565b9250611d3460208501611c81565b9150604084013590509250925092565b60008060008060808587031215611d5a57600080fd5b611d6385611c81565b9350611d7160208601611c81565b925060408501359150606085013567ffffffffffffffff80821115611d9557600080fd5b818701915087601f830112611da957600080fd5b813581811115611dbb57611dbb61226c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611e0157611e0161226c565b816040528281528a6020848701011115611e1a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e5157600080fd5b611e5a83611c81565b9150611cff60208401611caa565b60008060408385031215611e7b57600080fd5b611e8483611c81565b946020939093013593505050565b600060208284031215611ea457600080fd5b6115ec82611caa565b600060208284031215611ebf57600080fd5b81356115ec8161229b565b600060208284031215611edc57600080fd5b81516115ec8161229b565b60008060208385031215611efa57600080fd5b823567ffffffffffffffff80821115611f1257600080fd5b818501915085601f830112611f2657600080fd5b813581811115611f3557600080fd5b866020828501011115611f4757600080fd5b60209290920196919550909350505050565b600060208284031215611f6b57600080fd5b5035919050565b60008060408385031215611f8557600080fd5b82359150611cff60208401611c81565b60008151808452611fad816020860160208601612112565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351611ff1818460208801612112565b835190830190612005818360208801612112565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526120756080830184611f95565b9695505050505050565b6020815260006115ec6020830184611f95565b600082198211156120a5576120a56121df565b500190565b6000826120b9576120b961220e565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120f6576120f66121df565b500290565b60008282101561210d5761210d6121df565b500390565b60005b8381101561212d578181015183820152602001612115565b838111156112f65750506000910152565b600181811c9082168061215257607f821691505b6020821081141561218c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121c4576121c46121df565b5060010190565b6000826121da576121da61220e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d2457600080fdfea26469706673582212202aa7584e2557313ca9459c87b82eac6d3eab66c7afb7f54a3c9455b12d1462ee64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e0a808531161007f578063efbd73f411610064578063efbd73f414610722578063f2fde38b14610742578063f77b1edd1461076257600080fd5b8063e0a80853146106ac578063e985e9c5146106cc57600080fd5b8063c87b56dd116100b0578063c87b56dd14610661578063d5abeb0114610681578063daaeec861461069757600080fd5b8063b88d4fde1461062c578063c2d05a6e1461064c57600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b41146105d7578063a22cb465146105ec578063b071401b1461060c57600080fd5b80638da5cb5b1461059657806394354fd0146105c157600080fd5b806370a0823114610521578063715018a614610541578063742a4c9b146105565780637c928fe91461057657600080fd5b80633ccfd60b116102015780636352211e116101b557806366112b6b1161019a57806366112b6b146104d157806368428a1b146104e75780636f8b44b01461050157600080fd5b80636352211e1461049e57806365cde733146104be57600080fd5b806344a0d68a116101e657806344a0d68a1461043f578063518302271461045f57806355f804b31461047e57600080fd5b80633ccfd60b1461040a57806342842e0e1461041f57600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461039957806323b872dd146103d45780633bc4b025146103f457600080fd5b8063095ea7b31461036157806313faede61461038357600080fd5b806301ffc9a71461028a57806306bb99e2146102bf57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611ead565b610782565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102ec6102da366004611cba565b600f6020526000908152604090205481565b6040519081526020016102b6565b34801561030657600080fd5b5061030f610867565b6040516102b6919061207f565b34801561032857600080fd5b5061033c610337366004611f59565b6108f9565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b34801561036d57600080fd5b5061038161037c366004611e68565b610963565b005b34801561038f57600080fd5b506102ec60095481565b3480156103a557600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016102ec565b3480156103e057600080fd5b506103816103ef366004611d08565b610a4e565b34801561040057600080fd5b506102ec600d5481565b34801561041657600080fd5b50610381610cd6565b34801561042b57600080fd5b5061038161043a366004611d08565b610d27565b34801561044b57600080fd5b5061038161045a366004611f59565b610d47565b34801561046b57600080fd5b50600e546102aa90610100900460ff1681565b34801561048a57600080fd5b50610381610499366004611ee7565b610d54565b3480156104aa57600080fd5b5061033c6104b9366004611f59565b610d68565b6103816104cc366004611f59565b610d73565b3480156104dd57600080fd5b506102ec600c5481565b3480156104f357600080fd5b50600e546102aa9060ff1681565b34801561050d57600080fd5b5061038161051c366004611f59565b610ef7565b34801561052d57600080fd5b506102ec61053c366004611cba565b610f04565b34801561054d57600080fd5b50610381610f86565b34801561056257600080fd5b50610381610571366004611f59565b610f9a565b34801561058257600080fd5b50610381610591366004611f59565b610fa7565b3480156105a257600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661033c565b3480156105cd57600080fd5b506102ec600b5481565b3480156105e357600080fd5b5061030f611189565b3480156105f857600080fd5b50610381610607366004611e3e565b611198565b34801561061857600080fd5b50610381610627366004611f59565b61127f565b34801561063857600080fd5b50610381610647366004611d44565b61128c565b34801561065857600080fd5b506102aa6112fc565b34801561066d57600080fd5b5061030f61067c366004611f59565b611338565b34801561068d57600080fd5b506102ec600a5481565b3480156106a357600080fd5b506103816113c8565b3480156106b857600080fd5b506103816106c7366004611e92565b611402565b3480156106d857600080fd5b506102aa6106e7366004611cd5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072e57600080fd5b5061038161073d366004611f72565b611441565b34801561074e57600080fd5b5061038161075d366004611cba565b611453565b34801561076e57600080fd5b5061038161077d366004611f59565b61150c565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061081557507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061086157507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546108769061213e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061213e565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b600061090482611519565b61093a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061096e82610d68565b90503373ffffffffffffffffffffffffffffffffffffffff8216146109cd5761099781336106e7565b6109cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a5982611567565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610b3357610afd86336106e7565b610b33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610b80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610b8b57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610c735760018401600081815260046020526040902054610c71576000548114610c715760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610cde611627565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610d24573d6000803e3d6000fd5b50565b610d428383836040518060200160405280600081525061128c565b505050565b610d4f611627565b600955565b610d5c611627565b610d4260108383611bca565b600061086182611567565b600e54819060ff16610db1576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214610dea576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610e239190612092565b1115610e5b576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001811080610e6b5750600b5481115b15610ea2576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600954610eb091906120be565b341015610ee9576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef333836116a8565b5050565b610eff611627565b600a55565b600073ffffffffffffffffffffffffffffffffffffffff8216610f53576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610f8e611627565b610f9860006116c2565b565b610fa2611627565b600d55565b600e54819060ff16610fe5576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461101e576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016110579190612092565b111561108f576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181108061109f5750600b5481115b156110d6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110de6112fc565b611114576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054611132908490612092565b111561116a576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610ef390836116a8565b6060600380546108769061213e565b73ffffffffffffffffffffffffffffffffffffffff82163314156111e8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611287611627565b600b55565b611297848484610a4e565b73ffffffffffffffffffffffffffffffffffffffff83163b156112f6576112c084848484611739565b6112f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600d546113326001546000547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9190030190565b10905090565b606061134382611519565b611379576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e54610100900460ff16611390576108616118bf565b6113986118bf565b6113a1836118ce565b6040516020016113b2929190611fdf565b6040516020818303038152906040529050919050565b6113d0611627565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b61140a611627565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b611449611627565b610ef381836116a8565b61145b611627565b73ffffffffffffffffffffffffffffffffffffffff8116611503576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610d24816116c2565b611514611627565b600c55565b60008160011115801561152d575060005482105b80156108615750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116115f5576000548110156115f5576000818152600460205260409020547c010000000000000000000000000000000000000000000000000000000081166115f3575b806115ec57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546115b0565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016114fa565b610ef3828260405180602001604052806000815250611a00565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611794903390899088908890600401612036565b602060405180830381600087803b1580156117ae57600080fd5b505af19250505080156117fc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526117f991810190611eca565b60015b611870573d80801561182a576040519150601f19603f3d011682016040523d82523d6000602084013e61182f565b606091505b508051611868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060601080546108769061213e565b60608161190e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611938578061192281612192565b91506119319050600a836120aa565b9150611912565b60008167ffffffffffffffff8111156119535761195361226c565b6040519080825280601f01601f19166020018201604052801561197d576020820181803683370190505b5090505b84156118b7576119926001836120fb565b915061199f600a866121cb565b6119aa906030612092565b60f81b8183815181106119bf576119bf61223d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119f9600a866120aa565b9450611981565b611a0a8383611a93565b73ffffffffffffffffffffffffffffffffffffffff83163b15610d42576000548281035b611a416000868380600101945086611739565b611a77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a2e578160005414611a8c57600080fd5b5050505050565b60005481611acd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b8957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b51565b5081611bc1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b828054611bd69061213e565b90600052602060002090601f016020900481019282611bf85760008555611c5c565b82601f10611c2f578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555611c5c565b82800160010185558215611c5c579182015b82811115611c5c578235825591602001919060010190611c41565b50611c68929150611c6c565b5090565b5b80821115611c685760008155600101611c6d565b803573ffffffffffffffffffffffffffffffffffffffff81168114611ca557600080fd5b919050565b80358015158114611ca557600080fd5b600060208284031215611ccc57600080fd5b6115ec82611c81565b60008060408385031215611ce857600080fd5b611cf183611c81565b9150611cff60208401611c81565b90509250929050565b600080600060608486031215611d1d57600080fd5b611d2684611c81565b9250611d3460208501611c81565b9150604084013590509250925092565b60008060008060808587031215611d5a57600080fd5b611d6385611c81565b9350611d7160208601611c81565b925060408501359150606085013567ffffffffffffffff80821115611d9557600080fd5b818701915087601f830112611da957600080fd5b813581811115611dbb57611dbb61226c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611e0157611e0161226c565b816040528281528a6020848701011115611e1a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e5157600080fd5b611e5a83611c81565b9150611cff60208401611caa565b60008060408385031215611e7b57600080fd5b611e8483611c81565b946020939093013593505050565b600060208284031215611ea457600080fd5b6115ec82611caa565b600060208284031215611ebf57600080fd5b81356115ec8161229b565b600060208284031215611edc57600080fd5b81516115ec8161229b565b60008060208385031215611efa57600080fd5b823567ffffffffffffffff80821115611f1257600080fd5b818501915085601f830112611f2657600080fd5b813581811115611f3557600080fd5b866020828501011115611f4757600080fd5b60209290920196919550909350505050565b600060208284031215611f6b57600080fd5b5035919050565b60008060408385031215611f8557600080fd5b82359150611cff60208401611c81565b60008151808452611fad816020860160208601612112565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351611ff1818460208801612112565b835190830190612005818360208801612112565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526120756080830184611f95565b9695505050505050565b6020815260006115ec6020830184611f95565b600082198211156120a5576120a56121df565b500190565b6000826120b9576120b961220e565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120f6576120f66121df565b500290565b60008282101561210d5761210d6121df565b500390565b60005b8381101561212d578181015183820152602001612115565b838111156112f65750506000910152565b600181811c9082168061215257607f821691505b6020821081141561218c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121c4576121c46121df565b5060010190565b6000826121da576121da61220e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d2457600080fdfea26469706673582212202aa7584e2557313ca9459c87b82eac6d3eab66c7afb7f54a3c9455b12d1462ee64736f6c63430008070033

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

215:3265:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:4;;;;;;;;;;-1:-1:-1;9112:630:4;;;;;:::i;:::-;;:::i;:::-;;;6494:14:6;;6487:22;6469:41;;6457:2;6442:18;9112:630:4;;;;;;;;780:46:3;;;;;;;;;;-1:-1:-1;780:46:3;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7659:25:6;;;7647:2;7632:18;780:46:3;7513:177:6;9996:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:4;;;;;:::i;:::-;;:::i;:::-;;;5758:42:6;5746:55;;;5728:74;;5716:2;5701:18;16309:214:4;5582:226:6;15769:390:4;;;;;;;;;;-1:-1:-1;15769:390:4;;;;;:::i;:::-;;:::i;:::-;;518:34:3;;;;;;;;;;;;;;;;5851:317:4;;;;;;;;;;-1:-1:-1;1951:1:3;6121:12:4;5912:7;6105:13;:28;:46;;5851:317;;19918:2756;;;;;;;;;;-1:-1:-1;19918:2756:4;;;;;:::i;:::-;;:::i;674:32:3:-;;;;;;;;;;;;;;;;2778:96;;;;;;;;;;;;;:::i;22765:179:4:-;;;;;;;;;;-1:-1:-1;22765:179:4;;;;;:::i;:::-;;:::i;2190:72:3:-;;;;;;;;;;-1:-1:-1;2190:72:3;;;;;:::i;:::-;;:::i;746:27::-;;;;;;;;;;-1:-1:-1;746:27:3;;;;;;;;;;;3006:98;;;;;;;;;;-1:-1:-1;3006:98:3;;;;;:::i;:::-;;:::i;11348:150:4:-;;;;;;;;;;-1:-1:-1;11348:150:4;;;;;:::i;:::-;;:::i;1618:213:3:-;;;;;;:::i;:::-;;:::i;631:39::-;;;;;;;;;;;;;;;;713:29;;;;;;;;;;-1:-1:-1;713:29:3;;;;;;;;2267:94;;;;;;;;;;-1:-1:-1;2267:94:3;;;;;:::i;:::-;;:::i;7002:230:4:-;;;;;;;;;;-1:-1:-1;7002:230:4;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;2582:86:3:-;;;;;;;;;;-1:-1:-1;2582:86:3;;;;;:::i;:::-;;:::i;1291:323::-;;;;;;;;;;-1:-1:-1;1291:323:3;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;;;1201:85;;590:37:3;;;;;;;;;;;;;;;;10165:102:4;;;;;;;;;;;;;:::i;16850:303::-;;;;;;;;;;-1:-1:-1;16850:303:4;;;;;:::i;:::-;;:::i;2365:128:3:-;;;;;;;;;;-1:-1:-1;2365:128:3;;;;;:::i;:::-;;:::i;23525:388:4:-;;;;;;;;;;-1:-1:-1;23525:388:4;;;;;:::i;:::-;;:::i;1961:96:3:-;;;;;;;;;;;;;:::i;3191:286::-;;;;;;;;;;-1:-1:-1;3191:286:3;;;;;:::i;:::-;;:::i;556:30::-;;;;;;;;;;;;;;;;2499:79;;;;;;;;;;;;;:::i;3108:::-;;;;;;;;;;-1:-1:-1;3108:79:3;;;;;:::i;:::-;;:::i;17303:162:4:-;;;;;;;;;;-1:-1:-1;17303:162:4;;;;;:::i;:::-;17423:25;;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;2061:125:3;;;;;;;;;;-1:-1:-1;2061:125:3;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;2672:102:3:-;;;;;;;;;;-1:-1:-1;2672:102:3;;;;;:::i;:::-;;:::i;9112:630:4:-;9197:4;9515:25;;;;;;:101;;-1:-1:-1;9591:25:4;;;;;9515:101;:177;;;-1:-1:-1;9667:25:4;;;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:4:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:4;;;;:15;:24;;;;;:30;;;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:4;15896:28;;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;;;;;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;20119:45;;20135:19;20119:45;;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;18402:16;18391:28;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;20590:16;;;20586:52;;20615:23;;;;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;21307:24;;;;;;;;:18;:24;;;;;;21305:26;;;;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:4;;;14660:11;14635:23;14631:41;14618:63;2349:8;14618:63;21661:26;;;;:17;:26;;;;;:172;2349:8;21950:47;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;22588:27;;22597:4;22588:27;;;;;;;;;;;;20037:2637;;;19918:2756;;;:::o;2778:96:3:-;1094:13:0;:11;:13::i;:::-;1273:6;;2821:48:3::1;::::0;1273:6:0;;;;;2847:21:3::1;2821:48:::0;::::1;;;::::0;::::1;::::0;;;2847:21;1273:6:0;2821:48:3;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2778:96::o:0;22765:179:4:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;2190:72:3:-;1094:13:0;:11;:13::i;:::-;2245:4:3::1;:12:::0;2190:72::o;3006:98::-;1094:13:0;:11;:13::i;:::-;3076:23:3::1;:13;3092:7:::0;;3076:23:::1;:::i;11348:150:4:-:0;11420:7;11462:27;11481:7;11462:18;:27::i;1618:213:3:-;1025:10;;1701:11;;1025:10;;1020:38;;1044:14;;;;;;;;;;;;;;1020:38;1068:10;1082:9;1068:23;1064:50;;1100:14;;;;;;;;;;;;;;1064:50;1154:9;;1951:1;6121:12:4;5912:7;6105:13;1140:11:3;;6105:28:4;;:46;;1124:27:3;;;;:::i;:::-;:39;1120:70;;;1172:18;;;;;;;;;;;;;;1120:70;1214:1;1200:11;:15;:51;;;;1233:18;;1219:11;:32;1200:51;1196:79;;;1260:15;;;;;;;;;;;;;;1196:79;1746:11:::1;1739:4;;:18;;;;:::i;:::-;1726:9;:32;1722:64;;;1767:19;;;;;;;;;;;;;;1722:64;1792:34;1802:10;1814:11;1792:9;:34::i;:::-;1618:213:::0;;:::o;2267:94::-;1094:13:0;:11;:13::i;:::-;2334:9:3::1;:22:::0;2267:94::o;7002:230:4:-;7074:7;7097:19;;;7093:60;;7125:28;;;;;;;;;;;;;;7093:60;-1:-1:-1;7170:25:4;;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2582:86:3:-;1094:13:0;:11;:13::i;:::-;2643::3::1;:20:::0;2582:86::o;1291:323::-;1025:10;;1352:11;;1025:10;;1020:38;;1044:14;;;;;;;;;;;;;;1020:38;1068:10;1082:9;1068:23;1064:50;;1100:14;;;;;;;;;;;;;;1064:50;1154:9;;1951:1;6121:12:4;5912:7;6105:13;1140:11:3;;6105:28:4;;:46;;1124:27:3;;;;:::i;:::-;:39;1120:70;;;1172:18;;;;;;;;;;;;;;1120:70;1214:1;1200:11;:15;:51;;;;1233:18;;1219:11;:32;1200:51;1196:79;;;1260:15;;;;;;;;;;;;;;1196:79;1376:12:::1;:10;:12::i;:::-;1371:40;;1397:14;;;;;;;;;;;;;;1371:40;1461:20;::::0;1433:10:::1;1421:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;1447:11;;1421:37:::1;:::i;:::-;:60;1417:93;;;1490:20;;;;;;;;;;;;;;1417:93;1540:10;1528:23;::::0;;;:11:::1;:23;::::0;;;;:38;;;::::1;::::0;;1575:34:::1;::::0;1555:11;1575:9:::1;:34::i;10165:102:4:-:0;10221:13;10253:7;10246:14;;;;;:::i;16850:303::-;16948:31;;;39008:10;16948:31;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;17091:55;;6469:41:6;;;17016:49:4;;39008:10;17091:55;;6442:18:6;17091:55:4;;;;;;;16850:303;;:::o;2365:128:3:-;1094:13:0;:11;:13::i;:::-;2448:18:3::1;:40:::0;2365:128::o;23525:388:4:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;23731:14;;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;;;;;;;;;;;;;23764:143;23525:388;;;;:::o;1961:96:3:-;2004:4;2039:13;;2023;1951:1;6121:12:4;5912:7;6105:13;:46;:28;;;:46;;5851:317;2023:13:3;:29;2016:36;;1961:96;:::o;3191:286::-;3285:13;3313:17;3321:8;3313:7;:17::i;:::-;3308:46;;3339:15;;;;;;;;;;;;;;3308:46;3366:8;;;;;;;3361:32;;3383:10;:8;:10::i;3361:32::-;3430:10;:8;:10::i;:::-;3442:19;:8;:17;:19::i;:::-;3413:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3399:73;;3191:286;;;:::o;2499:79::-;1094:13:0;:11;:13::i;:::-;2563:10:3::1;::::0;;2549:24;;::::1;2563:10;::::0;;::::1;2562:11;2549:24;::::0;;2499:79::o;3108:::-;1094:13:0;:11;:13::i;:::-;3166:8:3::1;:16:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;3108:79::o;2061:125::-;1094:13:0;:11;:13::i;:::-;2148:33:3::1;2158:9;2169:11;2148:9;:33::i;2081:198:0:-:0;1094:13;:11;:13::i;:::-;2169:22:::1;::::0;::::1;2161:73;;;::::0;::::1;::::0;;6947:2:6;2161:73:0::1;::::0;::::1;6929:21:6::0;6986:2;6966:18;;;6959:30;7025:34;7005:18;;;6998:62;7096:8;7076:18;;;7069:36;7122:19;;2161:73:0::1;;;;;;;;;2244:28;2263:8;2244:18;:28::i;2672:102:3:-:0;1094:13:0;:11;:13::i;:::-;2742:20:3::1;:27:::0;2672:102::o;17714:277:4:-;17779:4;17833:7;1951:1:3;17814:26:4;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:4;;;;:17;:26;;;;;;2075:8;17916:44;:49;;17714:277::o;12472:1249::-;12539:7;12573;;1951:1:3;12619:23:4;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;2075:8;12812:24;;12808:831;;13467:111;13474:11;13467:111;;-1:-1:-1;13544:6:4;;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:4:o;12808:831::-;12686:971;12660:997;13683:31;;;;;;;;;;;;;;1359:130:0;1273:6;;1422:23;1273:6;39008:10:4;1422:23:0;1414:68;;;;;;;7354:2:6;1414:68:0;;;7336:21:6;;;7373:18;;;7366:30;7432:34;7412:18;;;7405:62;7484:18;;1414:68:0;7152:356:6;32908:110:4;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;2433:187:0:-;2525:6;;;;2541:17;;;;;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;25939:697:4:-;26117:88;;;;;26097:4;;26117:45;;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:4;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:13:4;;26391:229;;26440:40;;;;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;26273:64;;26283:54;26273:64;;-1:-1:-1;26113:517:4;25939:697;;;;;;:::o;2896:106:3:-;2956:13;2984;2977:20;;;;;:::i;392:703:2:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:2;;;;;;;;;;;;;;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:2;;-1:-1:-1;837:2:2;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:2;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:2;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1036:11:2;1045:2;1036:11;;:::i;:::-;;;908:150;;32160:669:4;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;32344:14;;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;;;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32160:669;;;:::o;27082:2396::-;27154:20;27177:13;27204;27200:44;;27226:18;;;;;;;;;;;;;;27200:44;27719:22;;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:4;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;-1:-1:-1;29316:13:4;29312:45;;29338:19;;;;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:4;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:6;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1197::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1952:2;1946:9;2014:4;2006:13;;1857:66;2002:22;;;2026:2;1998:31;1994:40;1982:53;;;2050:18;;;2070:22;;;2047:46;2044:72;;;2096:18;;:::i;:::-;2136:10;2132:2;2125:22;2171:2;2163:6;2156:18;2211:7;2206:2;2201;2197;2193:11;2189:20;2186:33;2183:53;;;2232:1;2229;2222:12;2183:53;2288:2;2283;2279;2275:11;2270:2;2262:6;2258:15;2245:46;2333:1;2328:2;2323;2315:6;2311:15;2307:24;2300:35;2354:6;2344:16;;;;;;;1169:1197;;;;;;;:::o;2371:254::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:52;;;2513:1;2510;2503:12;2465:52;2536:29;2555:9;2536:29;:::i;:::-;2526:39;;2584:35;2615:2;2604:9;2600:18;2584:35;:::i;2630:254::-;2698:6;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2798:29;2817:9;2798:29;:::i;:::-;2788:39;2874:2;2859:18;;;;2846:32;;-1:-1:-1;;;2630:254:6:o;2889:180::-;2945:6;2998:2;2986:9;2977:7;2973:23;2969:32;2966:52;;;3014:1;3011;3004:12;2966:52;3037:26;3053:9;3037:26;:::i;3074:245::-;3132:6;3185:2;3173:9;3164:7;3160:23;3156:32;3153:52;;;3201:1;3198;3191:12;3153:52;3240:9;3227:23;3259:30;3283:5;3259:30;:::i;3324:249::-;3393:6;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;3494:9;3488:16;3513:30;3537:5;3513:30;:::i;3578:592::-;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3795:18;3836:2;3828:6;3825:14;3822:34;;;3852:1;3849;3842:12;3822:34;3890:6;3879:9;3875:22;3865:32;;3935:7;3928:4;3924:2;3920:13;3916:27;3906:55;;3957:1;3954;3947:12;3906:55;3997:2;3984:16;4023:2;4015:6;4012:14;4009:34;;;4039:1;4036;4029:12;4009:34;4084:7;4079:2;4070:6;4066:2;4062:15;4058:24;4055:37;4052:57;;;4105:1;4102;4095:12;4052:57;4136:2;4128:11;;;;;4158:6;;-1:-1:-1;3578:592:6;;-1:-1:-1;;;;3578:592:6:o;4175:180::-;4234:6;4287:2;4275:9;4266:7;4262:23;4258:32;4255:52;;;4303:1;4300;4293:12;4255:52;-1:-1:-1;4326:23:6;;4175:180;-1:-1:-1;4175:180:6:o;4360:254::-;4428:6;4436;4489:2;4477:9;4468:7;4464:23;4460:32;4457:52;;;4505:1;4502;4495:12;4457:52;4541:9;4528:23;4518:33;;4570:38;4604:2;4593:9;4589:18;4570:38;:::i;4619:316::-;4660:3;4698:5;4692:12;4725:6;4720:3;4713:19;4741:63;4797:6;4790:4;4785:3;4781:14;4774:4;4767:5;4763:16;4741:63;:::i;:::-;4849:2;4837:15;4854:66;4833:88;4824:98;;;;4924:4;4820:109;;4619:316;-1:-1:-1;;4619:316:6:o;4940:637::-;5220:3;5258:6;5252:13;5274:53;5320:6;5315:3;5308:4;5300:6;5296:17;5274:53;:::i;:::-;5390:13;;5349:16;;;;5412:57;5390:13;5349:16;5446:4;5434:17;;5412:57;:::i;:::-;5534:7;5491:20;;5520:22;;;5569:1;5558:13;;4940:637;-1:-1:-1;;;;4940:637:6:o;5813:511::-;6007:4;6036:42;6117:2;6109:6;6105:15;6094:9;6087:34;6169:2;6161:6;6157:15;6152:2;6141:9;6137:18;6130:43;;6209:6;6204:2;6193:9;6189:18;6182:34;6252:3;6247:2;6236:9;6232:18;6225:31;6273:45;6313:3;6302:9;6298:19;6290:6;6273:45;:::i;:::-;6265:53;5813:511;-1:-1:-1;;;;;;5813:511:6:o;6521:219::-;6670:2;6659:9;6652:21;6633:4;6690:44;6730:2;6719:9;6715:18;6707:6;6690:44;:::i;7695:128::-;7735:3;7766:1;7762:6;7759:1;7756:13;7753:39;;;7772:18;;:::i;:::-;-1:-1:-1;7808:9:6;;7695:128::o;7828:120::-;7868:1;7894;7884:35;;7899:18;;:::i;:::-;-1:-1:-1;7933:9:6;;7828:120::o;7953:228::-;7993:7;8119:1;8051:66;8047:74;8044:1;8041:81;8036:1;8029:9;8022:17;8018:105;8015:131;;;8126:18;;:::i;:::-;-1:-1:-1;8166:9:6;;7953:228::o;8186:125::-;8226:4;8254:1;8251;8248:8;8245:34;;;8259:18;;:::i;:::-;-1:-1:-1;8296:9:6;;8186:125::o;8316:258::-;8388:1;8398:113;8412:6;8409:1;8406:13;8398:113;;;8488:11;;;8482:18;8469:11;;;8462:39;8434:2;8427:10;8398:113;;;8529:6;8526:1;8523:13;8520:48;;;-1:-1:-1;;8564:1:6;8546:16;;8539:27;8316:258::o;8579:437::-;8658:1;8654:12;;;;8701;;;8722:61;;8776:4;8768:6;8764:17;8754:27;;8722:61;8829:2;8821:6;8818:14;8798:18;8795:38;8792:218;;;8866:77;8863:1;8856:88;8967:4;8964:1;8957:15;8995:4;8992:1;8985:15;8792:218;;8579:437;;;:::o;9021:195::-;9060:3;9091:66;9084:5;9081:77;9078:103;;;9161:18;;:::i;:::-;-1:-1:-1;9208:1:6;9197:13;;9021:195::o;9221:112::-;9253:1;9279;9269:35;;9284:18;;:::i;:::-;-1:-1:-1;9318:9:6;;9221:112::o;9338:184::-;9390:77;9387:1;9380:88;9487:4;9484:1;9477:15;9511:4;9508:1;9501:15;9527:184;9579:77;9576:1;9569:88;9676:4;9673:1;9666:15;9700:4;9697:1;9690:15;9716:184;9768:77;9765:1;9758:88;9865:4;9862:1;9855:15;9889:4;9886:1;9879:15;9905:184;9957:77;9954:1;9947:88;10054:4;10051:1;10044:15;10078:4;10075:1;10068:15;10094:177;10179:66;10172:5;10168:78;10161:5;10158:89;10148:117;;10261:1;10258;10251:12

Swarm Source

ipfs://2aa7584e2557313ca9459c87b82eac6d3eab66c7afb7f54a3c9455b12d1462ee
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.