ETH Price: $3,429.02 (-7.09%)

Token

DivineComedyInferno (DCI)
 

Overview

Max Total Supply

333 DCI

Holders

236

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DCI
0x884abbd92fc535a0e0f191373868e0cf1de16949
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:
DivineComedyInferno

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 10: DivineComedyInferno.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";
import "./DefaultOperatorFilterer.sol";

contract DivineComedyInferno is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard {
  using Strings for uint256;
  
  uint256 public cost = 0.0069 ether;
  uint256 public maxSupplys = 333;
  uint256 public txnMax = 10;
  uint256 public maxFreeMintEach = 0;
  uint256 public maxMintAmount = 10;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  bool public revealed = true;
  bool public paused = false;

  constructor(
  ) ERC721A("DivineComedyInferno", "DCI") {
  }

  modifier SupplyCompliance(uint256 _mintAmount) {
    require(!paused, "sale has not started.");
    require(_mintAmount > 0 && _mintAmount <= txnMax, "Maximum of 10  per txn!");
    require(totalSupply() + _mintAmount <= maxSupplys, "No Supplys lefts!");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "You may have minted max number !"
    );
    _;
  }

  modifier SupplyPriceCompliance(uint256 _mintAmount) {
    uint256 realCost = 0;
    
    if (numberMinted(msg.sender) < maxFreeMintEach) {
      uint256 freeMintsLeft = maxFreeMintEach - numberMinted(msg.sender);
      realCost = cost * freeMintsLeft;
    }
   
    require(msg.value >= cost * _mintAmount - realCost, "Insufficient/incorrect funds.");
    _;
  }

  function DanteMint(uint256 _mintAmount) public payable SupplyCompliance(_mintAmount) SupplyPriceCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupplys, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

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

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setmaxFreeMintEach(uint256 _maxFreeMintEach) public onlyOwner {
    maxFreeMintEach = _maxFreeMintEach;
  }

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

   function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }


  function setMaxSupplys(uint256 _maxSupplys) public onlyOwner {
    maxSupplys = _maxSupplys;
  }

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool withdrawFunds, ) = payable(owner()).call{value: address(this).balance}("");
    require(withdrawFunds);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
      public
      override
      onlyAllowedOperator(from)
  {
    super.safeTransferFrom(from, to, tokenId, data);
  }

}

File 1 of 10: 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 2 of 10: DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

File 6 of 10: IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 7 of 10: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 8 of 10: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 9 of 10: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"DanteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintEach","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplys","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplys","type":"uint256"}],"name":"setMaxSupplys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintEach","type":"uint256"}],"name":"setmaxFreeMintEach","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txnMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6618838370f34000600a90815561014d600b55600c8190556000600d819055600e9190915560a0604081905260808290526200003f91600f9190620002d1565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006e91601091620002d1565b506012805461ffff191660011790553480156200008a57600080fd5b50604080518082018252601381527f446976696e65436f6d656479496e6665726e6f0000000000000000000000000060208083019182528351808501909452600384526244434960e81b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939290916200010491600291620002d1565b5080516200011a906003906020840190620002d1565b50506001600055506200012d336200027f565b6daaeb6d7670e522a718067333cd4e3b1562000272578015620001c057604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001a157600080fd5b505af1158015620001b6573d6000803e3d6000fd5b5050505062000272565b6001600160a01b03821615620002115760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000186565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025857600080fd5b505af11580156200026d573d6000803e3d6000fd5b505050505b50506001600955620003b3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002df9062000377565b90600052602060002090601f0160209004810192826200030357600085556200034e565b82601f106200031e57805160ff19168380011785556200034e565b828001600101855582156200034e579182015b828111156200034e57825182559160200191906001019062000331565b506200035c92915062000360565b5090565b5b808211156200035c576000815560010162000361565b600181811c908216806200038c57607f821691505b602082108103620003ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6121b280620003c36000396000f3fe6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063e0a808531161007a578063e0a8085314610669578063e985e9c514610689578063ebe2e3aa146106d2578063efbd73f4146106f2578063f2fde38b14610712578063f9308cc51461073257600080fd5b8063a22cb465146105d4578063a45ba8e7146105f4578063b88d4fde14610609578063c87b56dd14610629578063dc33e6811461064957600080fd5b80637ec4a659116100fd5780637ec4a659146105555780638a68d451146105755780638da5cb5b1461058b57806395d89b41146105a95780639a85f86d146105be57600080fd5b80635c975abb146104cc57806362b99ad4146104eb5780636352211e1461050057806370a0823114610520578063715018a61461054057600080fd5b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a1461044a5780634f3bd29b1461046a5780634fdd43cb1461047d578063518302271461049d5780635503a0e8146104b757600080fd5b8063239c70ae146103bd57806323b872dd146103d35780633ccfd60b146103f357806341f434341461040857806342842e0e1461042a57600080fd5b806313faede61161020e57806313faede61461031c57806316ba10e01461034057806316c38b3c1461036057806318160ddd14610380578063224143231461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063088a4ed0146102da578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611bbb565b610748565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561079a565b6040516102779190611c30565b3480156102ae57600080fd5b506102c26102bd366004611c43565b61082c565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c43565b610870565b005b34801561030857600080fd5b506102fa610317366004611c78565b6108a8565b34801561032857600080fd5b50610332600a5481565b604051908152602001610277565b34801561034c57600080fd5b506102fa61035b366004611d2e565b6108c1565b34801561036c57600080fd5b506102fa61037b366004611d85565b610902565b34801561038c57600080fd5b506001546000540360001901610332565b3480156103a957600080fd5b506102fa6103b8366004611c43565b610946565b3480156103c957600080fd5b50610332600e5481565b3480156103df57600080fd5b506102fa6103ee366004611da2565b610975565b3480156103ff57600080fd5b506102fa6109a0565b34801561041457600080fd5b506102c26daaeb6d7670e522a718067333cd4e81565b34801561043657600080fd5b506102fa610445366004611da2565b610a9a565b34801561045657600080fd5b506102fa610465366004611c43565b610abf565b6102fa610478366004611c43565b610aee565b34801561048957600080fd5b506102fa610498366004611d2e565b610d1f565b3480156104a957600080fd5b5060125461026b9060ff1681565b3480156104c357600080fd5b50610295610d5c565b3480156104d857600080fd5b5060125461026b90610100900460ff1681565b3480156104f757600080fd5b50610295610dea565b34801561050c57600080fd5b506102c261051b366004611c43565b610df7565b34801561052c57600080fd5b5061033261053b366004611dde565b610e02565b34801561054c57600080fd5b506102fa610e51565b34801561056157600080fd5b506102fa610570366004611d2e565b610e87565b34801561058157600080fd5b50610332600d5481565b34801561059757600080fd5b506008546001600160a01b03166102c2565b3480156105b557600080fd5b50610295610ec4565b3480156105ca57600080fd5b50610332600b5481565b3480156105e057600080fd5b506102fa6105ef366004611df9565b610ed3565b34801561060057600080fd5b50610295610ee7565b34801561061557600080fd5b506102fa610624366004611e30565b610ef4565b34801561063557600080fd5b50610295610644366004611c43565b610f21565b34801561065557600080fd5b50610332610664366004611dde565b611090565b34801561067557600080fd5b506102fa610684366004611d85565b6110bb565b34801561069557600080fd5b5061026b6106a4366004611eac565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106de57600080fd5b506102fa6106ed366004611c43565b6110f8565b3480156106fe57600080fd5b506102fa61070d366004611edf565b611127565b34801561071e57600080fd5b506102fa61072d366004611dde565b6111bb565b34801561073e57600080fd5b50610332600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061077957506380ac58cd60e01b6001600160e01b03198316145b806107945750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a990611f02565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611f02565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611256565b610854576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108a35760405162461bcd60e51b815260040161089a90611f3c565b60405180910390fd5b600e55565b816108b28161128b565b6108bc8383611344565b505050565b6008546001600160a01b031633146108eb5760405162461bcd60e51b815260040161089a90611f3c565b80516108fe906010906020840190611b0c565b5050565b6008546001600160a01b0316331461092c5760405162461bcd60e51b815260040161089a90611f3c565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146109705760405162461bcd60e51b815260040161089a90611f3c565b600b55565b826001600160a01b038116331461098f5761098f3361128b565b61099a848484611416565b50505050565b6008546001600160a01b031633146109ca5760405162461bcd60e51b815260040161089a90611f3c565b600260095403610a1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161089a565b60026009556000610a356008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7f576040519150601f19603f3d011682016040523d82523d6000602084013e610a84565b606091505b5050905080610a9257600080fd5b506001600955565b826001600160a01b0381163314610ab457610ab43361128b565b61099a848484611421565b6008546001600160a01b03163314610ae95760405162461bcd60e51b815260040161089a90611f3c565b600a55565b6012548190610100900460ff1615610b405760405162461bcd60e51b815260206004820152601560248201527439b0b632903430b9903737ba1039ba30b93a32b21760591b604482015260640161089a565b600081118015610b525750600c548111155b610b9e5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d206f6620313020207065722074786e21000000000000000000604482015260640161089a565b600b546001546000548391900360001901610bb99190611f87565b1115610bfb5760405162461bcd60e51b81526020600482015260116024820152704e6f20537570706c7973206c656674732160781b604482015260640161089a565b600081118015610c205750600e5481610c1333611090565b610c1d9190611f87565b11155b610c6c5760405162461bcd60e51b815260206004820181905260248201527f596f75206d61792068617665206d696e746564206d6178206e756d6265722021604482015260640161089a565b816000600d54610c7b33611090565b1015610cad576000610c8c33611090565b600d54610c999190611f9f565b905080600a54610ca99190611fb6565b9150505b8082600a54610cbc9190611fb6565b610cc69190611f9f565b341015610d155760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742f696e636f72726563742066756e64732e000000604482015260640161089a565b61099a338561143c565b6008546001600160a01b03163314610d495760405162461bcd60e51b815260040161089a90611f3c565b80516108fe906011906020840190611b0c565b60108054610d6990611f02565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9590611f02565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b600f8054610d6990611f02565b600061079482611456565b60006001600160a01b038216610e2b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e7b5760405162461bcd60e51b815260040161089a90611f3c565b610e8560006114c5565b565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161089a90611f3c565b80516108fe90600f906020840190611b0c565b6060600380546107a990611f02565b81610edd8161128b565b6108bc8383611517565b60118054610d6990611f02565b836001600160a01b0381163314610f0e57610f0e3361128b565b610f1a858585856115ac565b5050505050565b6060610f2c82611256565b610f905760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161089a565b60125460ff1615156000036110315760118054610fac90611f02565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd890611f02565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b50505050509050919050565b600061103b6115f0565b9050600081511161105b5760405180602001604052806000815250611089565b80611065846115ff565b601060405160200161107993929190611fd5565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610794565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260040161089a90611f3c565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146111225760405162461bcd60e51b815260040161089a90611f3c565b600d55565b6008546001600160a01b031633146111515760405162461bcd60e51b815260040161089a90611f3c565b600b54600154600054849190036000190161116c9190611f87565b11156111b15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161089a565b6108fe818361143c565b6008546001600160a01b031633146111e55760405162461bcd60e51b815260040161089a90611f3c565b6001600160a01b03811661124a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b611253816114c5565b50565b60008160011115801561126a575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561125357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131c9190612098565b61125357604051633b79c77360e21b81526001600160a01b038216600482015260240161089a565b600061134f82611456565b9050806001600160a01b0316836001600160a01b0316036113835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146113ba5761139d81336106a4565b6113ba576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bc838383611708565b6108bc83838360405180602001604052806000815250610ef4565b6108fe8282604051806020016040528060008152506118ad565b600081806001116114ac576000548110156114ac5760008181526004602052604081205490600160e01b821690036114aa575b80600003611089575060001901600081815260046020526040902054611489565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036115405760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115b7848484611708565b6001600160a01b0383163b1561099a576115d384848484611a21565b61099a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546107a990611f02565b6060816000036116265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611650578061163a816120b5565b91506116499050600a836120e4565b915061162a565b60008167ffffffffffffffff81111561166b5761166b611ca2565b6040519080825280601f01601f191660200182016040528015611695576020820181803683370190505b5090505b8415611700576116aa600183611f9f565b91506116b7600a866120f8565b6116c2906030611f87565b60f81b8183815181106116d7576116d761210c565b60200101906001600160f81b031916908160001a9053506116f9600a866120e4565b9450611699565b949350505050565b600061171382611456565b9050836001600160a01b0316816001600160a01b0316146117465760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611764575061176485336106a4565b8061177f5750336117748461082c565b6001600160a01b0316145b90508061179f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117c657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611867576001830160008181526004602052604081205490036118655760005481146118655760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f1a565b6000546001600160a01b0384166118d657604051622e076360e81b815260040160405180910390fd5b826000036118f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156119cc575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119956000878480600101955087611a21565b6119b2576040516368d2bf6b60e11b815260040160405180910390fd5b80821061194a5782600054146119c757600080fd5b611a11565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119cd575b50600090815561099a9085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a56903390899088908890600401612122565b6020604051808303816000875af1925050508015611a91575060408051601f3d908101601f19168201909252611a8e9181019061215f565b60015b611aef573d808015611abf576040519150601f19603f3d011682016040523d82523d6000602084013e611ac4565b606091505b508051600003611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054611b1890611f02565b90600052602060002090601f016020900481019282611b3a5760008555611b80565b82601f10611b5357805160ff1916838001178555611b80565b82800160010185558215611b80579182015b82811115611b80578251825591602001919060010190611b65565b50611b8c929150611b90565b5090565b5b80821115611b8c5760008155600101611b91565b6001600160e01b03198116811461125357600080fd5b600060208284031215611bcd57600080fd5b813561108981611ba5565b60005b83811015611bf3578181015183820152602001611bdb565b8381111561099a5750506000910152565b60008151808452611c1c816020860160208601611bd8565b601f01601f19169290920160200192915050565b6020815260006110896020830184611c04565b600060208284031215611c5557600080fd5b5035919050565b80356001600160a01b0381168114611c7357600080fd5b919050565b60008060408385031215611c8b57600080fd5b611c9483611c5c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cd357611cd3611ca2565b604051601f8501601f19908116603f01168101908282118183101715611cfb57611cfb611ca2565b81604052809350858152868686011115611d1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d4057600080fd5b813567ffffffffffffffff811115611d5757600080fd5b8201601f81018413611d6857600080fd5b61170084823560208401611cb8565b801515811461125357600080fd5b600060208284031215611d9757600080fd5b813561108981611d77565b600080600060608486031215611db757600080fd5b611dc084611c5c565b9250611dce60208501611c5c565b9150604084013590509250925092565b600060208284031215611df057600080fd5b61108982611c5c565b60008060408385031215611e0c57600080fd5b611e1583611c5c565b91506020830135611e2581611d77565b809150509250929050565b60008060008060808587031215611e4657600080fd5b611e4f85611c5c565b9350611e5d60208601611c5c565b925060408501359150606085013567ffffffffffffffff811115611e8057600080fd5b8501601f81018713611e9157600080fd5b611ea087823560208401611cb8565b91505092959194509250565b60008060408385031215611ebf57600080fd5b611ec883611c5c565b9150611ed660208401611c5c565b90509250929050565b60008060408385031215611ef257600080fd5b82359150611ed660208401611c5c565b600181811c90821680611f1657607f821691505b602082108103611f3657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f9a57611f9a611f71565b500190565b600082821015611fb157611fb1611f71565b500390565b6000816000190483118215151615611fd057611fd0611f71565b500290565b600084516020611fe88285838a01611bd8565b855191840191611ffb8184848a01611bd8565b8554920191600090600181811c908083168061201857607f831692505b858310810361203557634e487b7160e01b85526022600452602485fd5b808015612049576001811461205a57612087565b60ff19851688528388019550612087565b60008b81526020902060005b8581101561207f5781548a820152908401908801612066565b505083880195505b50939b9a5050505050505050505050565b6000602082840312156120aa57600080fd5b815161108981611d77565b6000600182016120c7576120c7611f71565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120f3576120f36120ce565b500490565b600082612107576121076120ce565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215590830184611c04565b9695505050505050565b60006020828403121561217157600080fd5b815161108981611ba556fea26469706673582212209fbb5755d5ae88ee24356c6c8994b0ea428ccfcaa2e0988721a49f711ce59d2c64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063e0a808531161007a578063e0a8085314610669578063e985e9c514610689578063ebe2e3aa146106d2578063efbd73f4146106f2578063f2fde38b14610712578063f9308cc51461073257600080fd5b8063a22cb465146105d4578063a45ba8e7146105f4578063b88d4fde14610609578063c87b56dd14610629578063dc33e6811461064957600080fd5b80637ec4a659116100fd5780637ec4a659146105555780638a68d451146105755780638da5cb5b1461058b57806395d89b41146105a95780639a85f86d146105be57600080fd5b80635c975abb146104cc57806362b99ad4146104eb5780636352211e1461050057806370a0823114610520578063715018a61461054057600080fd5b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a1461044a5780634f3bd29b1461046a5780634fdd43cb1461047d578063518302271461049d5780635503a0e8146104b757600080fd5b8063239c70ae146103bd57806323b872dd146103d35780633ccfd60b146103f357806341f434341461040857806342842e0e1461042a57600080fd5b806313faede61161020e57806313faede61461031c57806316ba10e01461034057806316c38b3c1461036057806318160ddd14610380578063224143231461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063088a4ed0146102da578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611bbb565b610748565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561079a565b6040516102779190611c30565b3480156102ae57600080fd5b506102c26102bd366004611c43565b61082c565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c43565b610870565b005b34801561030857600080fd5b506102fa610317366004611c78565b6108a8565b34801561032857600080fd5b50610332600a5481565b604051908152602001610277565b34801561034c57600080fd5b506102fa61035b366004611d2e565b6108c1565b34801561036c57600080fd5b506102fa61037b366004611d85565b610902565b34801561038c57600080fd5b506001546000540360001901610332565b3480156103a957600080fd5b506102fa6103b8366004611c43565b610946565b3480156103c957600080fd5b50610332600e5481565b3480156103df57600080fd5b506102fa6103ee366004611da2565b610975565b3480156103ff57600080fd5b506102fa6109a0565b34801561041457600080fd5b506102c26daaeb6d7670e522a718067333cd4e81565b34801561043657600080fd5b506102fa610445366004611da2565b610a9a565b34801561045657600080fd5b506102fa610465366004611c43565b610abf565b6102fa610478366004611c43565b610aee565b34801561048957600080fd5b506102fa610498366004611d2e565b610d1f565b3480156104a957600080fd5b5060125461026b9060ff1681565b3480156104c357600080fd5b50610295610d5c565b3480156104d857600080fd5b5060125461026b90610100900460ff1681565b3480156104f757600080fd5b50610295610dea565b34801561050c57600080fd5b506102c261051b366004611c43565b610df7565b34801561052c57600080fd5b5061033261053b366004611dde565b610e02565b34801561054c57600080fd5b506102fa610e51565b34801561056157600080fd5b506102fa610570366004611d2e565b610e87565b34801561058157600080fd5b50610332600d5481565b34801561059757600080fd5b506008546001600160a01b03166102c2565b3480156105b557600080fd5b50610295610ec4565b3480156105ca57600080fd5b50610332600b5481565b3480156105e057600080fd5b506102fa6105ef366004611df9565b610ed3565b34801561060057600080fd5b50610295610ee7565b34801561061557600080fd5b506102fa610624366004611e30565b610ef4565b34801561063557600080fd5b50610295610644366004611c43565b610f21565b34801561065557600080fd5b50610332610664366004611dde565b611090565b34801561067557600080fd5b506102fa610684366004611d85565b6110bb565b34801561069557600080fd5b5061026b6106a4366004611eac565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106de57600080fd5b506102fa6106ed366004611c43565b6110f8565b3480156106fe57600080fd5b506102fa61070d366004611edf565b611127565b34801561071e57600080fd5b506102fa61072d366004611dde565b6111bb565b34801561073e57600080fd5b50610332600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061077957506380ac58cd60e01b6001600160e01b03198316145b806107945750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a990611f02565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611f02565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611256565b610854576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108a35760405162461bcd60e51b815260040161089a90611f3c565b60405180910390fd5b600e55565b816108b28161128b565b6108bc8383611344565b505050565b6008546001600160a01b031633146108eb5760405162461bcd60e51b815260040161089a90611f3c565b80516108fe906010906020840190611b0c565b5050565b6008546001600160a01b0316331461092c5760405162461bcd60e51b815260040161089a90611f3c565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146109705760405162461bcd60e51b815260040161089a90611f3c565b600b55565b826001600160a01b038116331461098f5761098f3361128b565b61099a848484611416565b50505050565b6008546001600160a01b031633146109ca5760405162461bcd60e51b815260040161089a90611f3c565b600260095403610a1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161089a565b60026009556000610a356008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7f576040519150601f19603f3d011682016040523d82523d6000602084013e610a84565b606091505b5050905080610a9257600080fd5b506001600955565b826001600160a01b0381163314610ab457610ab43361128b565b61099a848484611421565b6008546001600160a01b03163314610ae95760405162461bcd60e51b815260040161089a90611f3c565b600a55565b6012548190610100900460ff1615610b405760405162461bcd60e51b815260206004820152601560248201527439b0b632903430b9903737ba1039ba30b93a32b21760591b604482015260640161089a565b600081118015610b525750600c548111155b610b9e5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d206f6620313020207065722074786e21000000000000000000604482015260640161089a565b600b546001546000548391900360001901610bb99190611f87565b1115610bfb5760405162461bcd60e51b81526020600482015260116024820152704e6f20537570706c7973206c656674732160781b604482015260640161089a565b600081118015610c205750600e5481610c1333611090565b610c1d9190611f87565b11155b610c6c5760405162461bcd60e51b815260206004820181905260248201527f596f75206d61792068617665206d696e746564206d6178206e756d6265722021604482015260640161089a565b816000600d54610c7b33611090565b1015610cad576000610c8c33611090565b600d54610c999190611f9f565b905080600a54610ca99190611fb6565b9150505b8082600a54610cbc9190611fb6565b610cc69190611f9f565b341015610d155760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742f696e636f72726563742066756e64732e000000604482015260640161089a565b61099a338561143c565b6008546001600160a01b03163314610d495760405162461bcd60e51b815260040161089a90611f3c565b80516108fe906011906020840190611b0c565b60108054610d6990611f02565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9590611f02565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b600f8054610d6990611f02565b600061079482611456565b60006001600160a01b038216610e2b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e7b5760405162461bcd60e51b815260040161089a90611f3c565b610e8560006114c5565b565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161089a90611f3c565b80516108fe90600f906020840190611b0c565b6060600380546107a990611f02565b81610edd8161128b565b6108bc8383611517565b60118054610d6990611f02565b836001600160a01b0381163314610f0e57610f0e3361128b565b610f1a858585856115ac565b5050505050565b6060610f2c82611256565b610f905760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161089a565b60125460ff1615156000036110315760118054610fac90611f02565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd890611f02565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b50505050509050919050565b600061103b6115f0565b9050600081511161105b5760405180602001604052806000815250611089565b80611065846115ff565b601060405160200161107993929190611fd5565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610794565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260040161089a90611f3c565b6012805460ff1916911515919091179055565b6008546001600160a01b031633146111225760405162461bcd60e51b815260040161089a90611f3c565b600d55565b6008546001600160a01b031633146111515760405162461bcd60e51b815260040161089a90611f3c565b600b54600154600054849190036000190161116c9190611f87565b11156111b15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161089a565b6108fe818361143c565b6008546001600160a01b031633146111e55760405162461bcd60e51b815260040161089a90611f3c565b6001600160a01b03811661124a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b611253816114c5565b50565b60008160011115801561126a575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561125357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131c9190612098565b61125357604051633b79c77360e21b81526001600160a01b038216600482015260240161089a565b600061134f82611456565b9050806001600160a01b0316836001600160a01b0316036113835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146113ba5761139d81336106a4565b6113ba576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108bc838383611708565b6108bc83838360405180602001604052806000815250610ef4565b6108fe8282604051806020016040528060008152506118ad565b600081806001116114ac576000548110156114ac5760008181526004602052604081205490600160e01b821690036114aa575b80600003611089575060001901600081815260046020526040902054611489565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036115405760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115b7848484611708565b6001600160a01b0383163b1561099a576115d384848484611a21565b61099a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546107a990611f02565b6060816000036116265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611650578061163a816120b5565b91506116499050600a836120e4565b915061162a565b60008167ffffffffffffffff81111561166b5761166b611ca2565b6040519080825280601f01601f191660200182016040528015611695576020820181803683370190505b5090505b8415611700576116aa600183611f9f565b91506116b7600a866120f8565b6116c2906030611f87565b60f81b8183815181106116d7576116d761210c565b60200101906001600160f81b031916908160001a9053506116f9600a866120e4565b9450611699565b949350505050565b600061171382611456565b9050836001600160a01b0316816001600160a01b0316146117465760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611764575061176485336106a4565b8061177f5750336117748461082c565b6001600160a01b0316145b90508061179f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117c657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611867576001830160008181526004602052604081205490036118655760005481146118655760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f1a565b6000546001600160a01b0384166118d657604051622e076360e81b815260040160405180910390fd5b826000036118f75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156119cc575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119956000878480600101955087611a21565b6119b2576040516368d2bf6b60e11b815260040160405180910390fd5b80821061194a5782600054146119c757600080fd5b611a11565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119cd575b50600090815561099a9085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a56903390899088908890600401612122565b6020604051808303816000875af1925050508015611a91575060408051601f3d908101601f19168201909252611a8e9181019061215f565b60015b611aef573d808015611abf576040519150601f19603f3d011682016040523d82523d6000602084013e611ac4565b606091505b508051600003611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054611b1890611f02565b90600052602060002090601f016020900481019282611b3a5760008555611b80565b82601f10611b5357805160ff1916838001178555611b80565b82800160010185558215611b80579182015b82811115611b80578251825591602001919060010190611b65565b50611b8c929150611b90565b5090565b5b80821115611b8c5760008155600101611b91565b6001600160e01b03198116811461125357600080fd5b600060208284031215611bcd57600080fd5b813561108981611ba5565b60005b83811015611bf3578181015183820152602001611bdb565b8381111561099a5750506000910152565b60008151808452611c1c816020860160208601611bd8565b601f01601f19169290920160200192915050565b6020815260006110896020830184611c04565b600060208284031215611c5557600080fd5b5035919050565b80356001600160a01b0381168114611c7357600080fd5b919050565b60008060408385031215611c8b57600080fd5b611c9483611c5c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611cd357611cd3611ca2565b604051601f8501601f19908116603f01168101908282118183101715611cfb57611cfb611ca2565b81604052809350858152868686011115611d1457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d4057600080fd5b813567ffffffffffffffff811115611d5757600080fd5b8201601f81018413611d6857600080fd5b61170084823560208401611cb8565b801515811461125357600080fd5b600060208284031215611d9757600080fd5b813561108981611d77565b600080600060608486031215611db757600080fd5b611dc084611c5c565b9250611dce60208501611c5c565b9150604084013590509250925092565b600060208284031215611df057600080fd5b61108982611c5c565b60008060408385031215611e0c57600080fd5b611e1583611c5c565b91506020830135611e2581611d77565b809150509250929050565b60008060008060808587031215611e4657600080fd5b611e4f85611c5c565b9350611e5d60208601611c5c565b925060408501359150606085013567ffffffffffffffff811115611e8057600080fd5b8501601f81018713611e9157600080fd5b611ea087823560208401611cb8565b91505092959194509250565b60008060408385031215611ebf57600080fd5b611ec883611c5c565b9150611ed660208401611c5c565b90509250929050565b60008060408385031215611ef257600080fd5b82359150611ed660208401611c5c565b600181811c90821680611f1657607f821691505b602082108103611f3657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f9a57611f9a611f71565b500190565b600082821015611fb157611fb1611f71565b500390565b6000816000190483118215151615611fd057611fd0611f71565b500290565b600084516020611fe88285838a01611bd8565b855191840191611ffb8184848a01611bd8565b8554920191600090600181811c908083168061201857607f831692505b858310810361203557634e487b7160e01b85526022600452602485fd5b808015612049576001811461205a57612087565b60ff19851688528388019550612087565b60008b81526020902060005b8581101561207f5781548a820152908401908801612066565b505083880195505b50939b9a5050505050505050505050565b6000602082840312156120aa57600080fd5b815161108981611d77565b6000600182016120c7576120c7611f71565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120f3576120f36120ce565b500490565b600082612107576121076120ce565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215590830184611c04565b9695505050505050565b60006020828403121561217157600080fd5b815161108981611ba556fea26469706673582212209fbb5755d5ae88ee24356c6c8994b0ea428ccfcaa2e0988721a49f711ce59d2c64736f6c634300080d0033

Deployed Bytecode Sourcemap

221:4536:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5031:615:3;;;;;;;;;;-1:-1:-1;5031:615:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:10;;558:22;540:41;;528:2;513:18;5031:615:3;;;;;;;;10044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12120:204::-;;;;;;;;;;-1:-1:-1;12120:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:10;;;1674:51;;1662:2;1647:18;12120:204:3;1528:203:10;3354:110:2;;;;;;;;;;-1:-1:-1;3354:110:2;;;;;:::i;:::-;;:::i;:::-;;4047:151;;;;;;;;;;-1:-1:-1;4047:151:2;;;;;:::i;:::-;;:::i;351:34::-;;;;;;;;;;;;;;;;;;;2319:25:10;;;2307:2;2292:18;351:34:2;2173:177:10;3059:100:2;;;;;;;;;;-1:-1:-1;3059:100:2;;;;;:::i;:::-;;:::i;3165:77::-;;;;;;;;;;-1:-1:-1;3165:77:2;;;;;:::i;:::-;;:::i;4085:315:3:-;;;;;;;;;;-1:-1:-1;2059:1:2;4351:12:3;4138:7;4335:13;:28;-1:-1:-1;;4335:46:3;4085:315;;3250:98:2;;;;;;;;;;-1:-1:-1;3250:98:2;;;;;:::i;:::-;;:::i;496:33::-;;;;;;;;;;;;;;;;4204:157;;;;;;;;;;-1:-1:-1;4204:157:2;;;;;:::i;:::-;;:::i;3470:172::-;;;;;;;;;;;;;:::i;722:143:6:-;;;;;;;;;;;;822:42;722:143;;4367:165:2;;;;;;;;;;-1:-1:-1;4367:165:2;;;;;:::i;:::-;;:::i;2523:74::-;;;;;;;;;;-1:-1:-1;2523:74:2;;;;;:::i;:::-;;:::i;1580:169::-;;;;;;:::i;:::-;;:::i;2815:132::-;;;;;;;;;;-1:-1:-1;2815:132:2;;;;;:::i;:::-;;:::i;645:27::-;;;;;;;;;;-1:-1:-1;645:27:2;;;;;;;;569:33;;;;;;;;;;;;;:::i;677:26::-;;;;;;;;;;-1:-1:-1;677:26:2;;;;;;;;;;;536:28;;;;;;;;;;;;;:::i;9833:144:3:-;;;;;;;;;;-1:-1:-1;9833:144:3;;;;;:::i;:::-;;:::i;5710:224::-;;;;;;;;;;-1:-1:-1;5710:224:3;;;;;:::i;:::-;;:::i;1714:103:7:-;;;;;;;;;;;;;:::i;2953:100:2:-;;;;;;;;;;-1:-1:-1;2953:100:2;;;;;:::i;:::-;;:::i;457:34::-;;;;;;;;;;;;;;;;1063:87:7;;;;;;;;;;-1:-1:-1;1136:6:7;;-1:-1:-1;;;;;1136:6:7;1063:87;;10213:104:3;;;;;;;;;;;;;:::i;390:31:2:-;;;;;;;;;;;;;;;;3871:170;;;;;;;;;;-1:-1:-1;3871:170:2;;;;;:::i;:::-;;:::i;607:31::-;;;;;;;;;;;;;:::i;4538:214::-;;;;;;;;;;-1:-1:-1;4538:214:2;;;;;:::i;:::-;;:::i;2072:445::-;;;;;;;;;;-1:-1:-1;2072:445:2;;;;;:::i;:::-;;:::i;3648:107::-;;;;;;;;;;-1:-1:-1;3648:107:2;;;;;:::i;:::-;;:::i;2727:81::-;;;;;;;;;;-1:-1:-1;2727:81:2;;;;;:::i;:::-;;:::i;12775:164:3:-;;;;;;;;;;-1:-1:-1;12775:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;12896:25:3;;;12872:4;12896:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12775:164;2603:118:2;;;;;;;;;;-1:-1:-1;2603:118:2;;;;;:::i;:::-;;:::i;1757:208::-;;;;;;;;;;-1:-1:-1;1757:208:2;;;;;:::i;:::-;;:::i;1972:201:7:-;;;;;;;;;;-1:-1:-1;1972:201:7;;;;;:::i;:::-;;:::i;426:26:2:-;;;;;;;;;;;;;;;;5031:615:3;5116:4;-1:-1:-1;;;;;;;;;5416:25:3;;;;:102;;-1:-1:-1;;;;;;;;;;5493:25:3;;;5416:102;:179;;;-1:-1:-1;;;;;;;;;;5570:25:3;;;5416:179;5396:199;5031:615;-1:-1:-1;;5031:615:3:o;10044:100::-;10098:13;10131:5;10124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10044:100;:::o;12120:204::-;12188:7;12213:16;12221:7;12213;:16::i;:::-;12208:64;;12238:34;;-1:-1:-1;;;12238:34:3;;;;;;;;;;;12208:64;-1:-1:-1;12292:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;12292:24:3;;12120:204::o;3354:110:2:-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;;;;;;;;;3428:13:2::1;:30:::0;3354:110::o;4047:151::-;4143:8;2243:30:6;2264:8;2243:20;:30::i;:::-;4160:32:2::1;4174:8;4184:7;4160:13;:32::i;:::-;4047:151:::0;;;:::o;3059:100::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;3131:22:2;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3059:100:::0;:::o;3165:77::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;3221:6:2::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;3221:15:2;;::::1;::::0;;;::::1;::::0;;3165:77::o;3250:98::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;3318:10:2::1;:24:::0;3250:98::o;4204:157::-;4305:4;-1:-1:-1;;;;;2063:18:6;;2071:10;2063:18;2059:83;;2098:32;2119:10;2098:20;:32::i;:::-;4318:37:2::1;4337:4;4343:2;4347:7;4318:18;:37::i;:::-;4204:157:::0;;;;:::o;3470:172::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;1778:1:8::1;2376:7;;:19:::0;2368:63:::1;;;::::0;-1:-1:-1;;;2368:63:8;;7177:2:10;2368:63:8::1;::::0;::::1;7159:21:10::0;7216:2;7196:18;;;7189:30;7255:33;7235:18;;;7228:61;7306:18;;2368:63:8::1;6975:355:10::0;2368:63:8::1;1778:1;2509:7;:18:::0;3528::2::2;3560:7;1136:6:7::0;;-1:-1:-1;;;;;1136:6:7;;1063:87;3560:7:2::2;-1:-1:-1::0;;;;;3552:21:2::2;3581;3552:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3527:80;;;3622:13;3614:22;;;::::0;::::2;;-1:-1:-1::0;1734:1:8::1;2688:7;:22:::0;3470:172:2:o;4367:165::-;4472:4;-1:-1:-1;;;;;2063:18:6;;2071:10;2063:18;2059:83;;2098:32;2119:10;2098:20;:32::i;:::-;4485:41:2::1;4508:4;4514:2;4518:7;4485:22;:41::i;2523:74::-:0;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;2579:4:2::1;:12:::0;2523:74::o;1580:169::-;841:6;;1652:11;;841:6;;;;;840:7;832:41;;;;-1:-1:-1;;;832:41:2;;7747:2:10;832:41:2;;;7729:21:10;7786:2;7766:18;;;7759:30;-1:-1:-1;;;7805:18:10;;;7798:51;7866:18;;832:41:2;7545:345:10;832:41:2;902:1;888:11;:15;:40;;;;;922:6;;907:11;:21;;888:40;880:76;;;;-1:-1:-1;;;880:76:2;;8097:2:10;880:76:2;;;8079:21:10;8136:2;8116:18;;;8109:30;8175:25;8155:18;;;8148:53;8218:18;;880:76:2;7895:347:10;880:76:2;1002:10;;2059:1;4351:12:3;4138:7;4335:13;987:11:2;;4335:28:3;;-1:-1:-1;;4335:46:3;971:27:2;;;;:::i;:::-;:41;;963:71;;;;-1:-1:-1;;;963:71:2;;8714:2:10;963:71:2;;;8696:21:10;8753:2;8733:18;;;8726:30;-1:-1:-1;;;8772:18:10;;;8765:47;8829:18;;963:71:2;8512:341:10;963:71:2;1071:1;1057:11;:15;:74;;;;;1118:13;;1103:11;1076:24;1089:10;1076:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;1057:74;1041:141;;;;-1:-1:-1;;;1041:141:2;;9060:2:10;1041:141:2;;;9042:21:10;;;9079:18;;;9072:30;9138:34;9118:18;;;9111:62;9190:18;;1041:141:2;8858:356:10;1041:141:2;1687:11:::1;1261:16;1325:15;;1298:24;1311:10;1298:12;:24::i;:::-;:42;1294:171;;;1351:21;1393:24;1406:10;1393:12;:24::i;:::-;1375:15;;:42;;;;:::i;:::-;1351:66;;1444:13;1437:4;;:20;;;;:::i;:::-;1426:31;;1342:123;1294:171;1518:8;1504:11;1497:4;;:18;;;;:::i;:::-;:29;;;;:::i;:::-;1484:9;:42;;1476:84;;;::::0;-1:-1:-1;;;1476:84:2;;9724:2:10;1476:84:2::1;::::0;::::1;9706:21:10::0;9763:2;9743:18;;;9736:30;9802:31;9782:18;;;9775:59;9851:18;;1476:84:2::1;9522:353:10::0;1476:84:2::1;1707:36:::2;736:10:0::0;1731:11:2::2;1707:9;:36::i;2815:132::-:0;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;2903:38:2;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;569:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;536:28::-;;;;;;;:::i;9833:144:3:-;9897:7;9940:27;9959:7;9940:18;:27::i;5710:224::-;5774:7;-1:-1:-1;;;;;5798:19:3;;5794:60;;5826:28;;-1:-1:-1;;;5826:28:3;;;;;;;;;;;5794:60;-1:-1:-1;;;;;;5872:25:3;;;;;:18;:25;;;;;;1049:13;5872:54;;5710:224::o;1714:103:7:-;1136:6;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2953:100:2:-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;3025:22:2;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;10213:104:3:-:0;10269:13;10302:7;10295:14;;;;;:::i;3871:170:2:-;3975:8;2243:30:6;2264:8;2243:20;:30::i;:::-;3992:43:2::1;4016:8;4026;3992:23;:43::i;607:31::-:0;;;;;;;:::i;4538:214::-;4683:4;-1:-1:-1;;;;;2063:18:6;;2071:10;2063:18;2059:83;;2098:32;2119:10;2098:20;:32::i;:::-;4699:47:2::1;4722:4;4728:2;4732:7;4741:4;4699:22;:47::i;:::-;4538:214:::0;;;;;:::o;2072:445::-;2146:13;2176:17;2184:8;2176:7;:17::i;:::-;2168:77;;;;-1:-1:-1;;;2168:77:2;;10082:2:10;2168:77:2;;;10064:21:10;10121:2;10101:18;;;10094:30;10160:34;10140:18;;;10133:62;-1:-1:-1;;;10211:18:10;;;10204:45;10266:19;;2168:77:2;9880:411:10;2168:77:2;2258:8;;;;:17;;:8;:17;2254:64;;2293:17;2286:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2072:445;;;:::o;2254:64::-;2326:28;2357:10;:8;:10::i;:::-;2326:41;;2412:1;2387:14;2381:28;:32;:130;;;;;;;;;;;;;;;;;2449:14;2465:19;:8;:17;:19::i;:::-;2486:9;2432:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2381:130;2374:137;2072:445;-1:-1:-1;;;2072:445:2:o;3648:107::-;-1:-1:-1;;;;;6105:25:3;;3706:7:2;6105:25:3;;;:18;:25;;1186:2;6105:25;;;;1049:13;6105:49;;6104:80;3729:20:2;6016:176:3;2727:81:2;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;2785:8:2::1;:17:::0;;-1:-1:-1;;2785:17:2::1;::::0;::::1;;::::0;;;::::1;::::0;;2727:81::o;2603:118::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;2681:15:2::1;:34:::0;2603:118::o;1757:208::-;1136:6:7;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;1884:10:2::1;::::0;2059:1;4351:12:3;4138:7;4335:13;1869:11:2;;4335:28:3;;-1:-1:-1;;4335:46:3;1853:27:2::1;;;;:::i;:::-;:41;;1845:74;;;::::0;-1:-1:-1;;;1845:74:2;;12156:2:10;1845:74:2::1;::::0;::::1;12138:21:10::0;12195:2;12175:18;;;12168:30;-1:-1:-1;;;12214:18:10;;;12207:50;12274:18;;1845:74:2::1;11954:344:10::0;1845:74:2::1;1926:33;1936:9;1947:11;1926:9;:33::i;1972:201:7:-:0;1136:6;;-1:-1:-1;;;;;1136:6:7;736:10:0;1283:23:7;1275:68;;;;-1:-1:-1;;;1275:68:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:7;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:7;;12505:2:10;2053:73:7::1;::::0;::::1;12487:21:10::0;12544:2;12524:18;;;12517:30;12583:34;12563:18;;;12556:62;-1:-1:-1;;;12634:18:10;;;12627:36;12680:19;;2053:73:7::1;12303:402:10::0;2053:73:7::1;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;14154:273:3:-;14211:4;14267:7;2059:1:2;14248:26:3;;:66;;;;;14301:13;;14291:7;:23;14248:66;:152;;;;-1:-1:-1;;14352:26:3;;;;:17;:26;;;;;;-1:-1:-1;;;14352:43:3;:48;;14154:273::o;2301:419:6:-;822:42;2492:45;:49;2488:225;;2563:67;;-1:-1:-1;;;2563:67:6;;2614:4;2563:67;;;12922:34:10;-1:-1:-1;;;;;12992:15:10;;12972:18;;;12965:43;822:42:6;;2563;;12857:18:10;;2563:67:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2558:144;;2658:28;;-1:-1:-1;;;2658:28:6;;-1:-1:-1;;;;;1692:32:10;;2658:28:6;;;1674:51:10;1647:18;;2658:28:6;1528:203:10;11572:482:3;11653:13;11685:27;11704:7;11685:18;:27::i;:::-;11653:61;;11735:5;-1:-1:-1;;;;;11729:11:3;:2;-1:-1:-1;;;;;11729:11:3;;11725:48;;11749:24;;-1:-1:-1;;;11749:24:3;;;;;;;;;;;11725:48;736:10:0;-1:-1:-1;;;;;11790:28:3;;;11786:175;;11838:44;11855:5;736:10:0;12775:164:3;:::i;11838:44::-;11833:128;;11910:35;;-1:-1:-1;;;11910:35:3;;;;;;;;;;;11833:128;11973:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11973:29:3;-1:-1:-1;;;;;11973:29:3;;;;;;;;;12018:28;;11973:24;;12018:28;;;;;;;11642:412;11572:482;;:::o;13006:170::-;13140:28;13150:4;13156:2;13160:7;13140:9;:28::i;13247:185::-;13385:39;13402:4;13408:2;13412:7;13385:39;;;;;;;;;;;;:16;:39::i;14511:104::-;14580:27;14590:2;14594:8;14580:27;;;;;;;;;;;;:9;:27::i;7348:1129::-;7415:7;7450;;2059:1:2;7499:23:3;7495:915;;7552:13;;7545:4;:20;7541:869;;;7590:14;7607:23;;;:17;:23;;;;;;;-1:-1:-1;;;7696:23:3;;:28;;7692:699;;8215:113;8222:6;8232:1;8222:11;8215:113;;-1:-1:-1;;;8293:6:3;8275:25;;;;:17;:25;;;;;;8215:113;;7692:699;7567:843;7541:869;8438:31;;-1:-1:-1;;;8438:31:3;;;;;;;;;;;2333:191:7;2426:6;;;-1:-1:-1;;;;;2443:17:7;;;-1:-1:-1;;;;;;2443:17:7;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;12396:308:3:-;736:10:0;-1:-1:-1;;;;;12495:31:3;;;12491:61;;12535:17;;-1:-1:-1;;;12535:17:3;;;;;;;;;;;12491:61;736:10:0;12565:39:3;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12565:49:3;;;;;;;;;;;;:60;;-1:-1:-1;;12565:60:3;;;;;;;;;;12641:55;;540:41:10;;;12565:49:3;;736:10:0;12641:55:3;;513:18:10;12641:55:3;;;;;;;12396:308;;:::o;13503:396::-;13670:28;13680:4;13686:2;13690:7;13670:9;:28::i;:::-;-1:-1:-1;;;;;13713:14:3;;;:19;13709:183;;13752:56;13783:4;13789:2;13793:7;13802:5;13752:30;:56::i;:::-;13747:145;;13836:40;;-1:-1:-1;;;13836:40:3;;;;;;;;;;;3761:104:2;3821:13;3850:9;3843:16;;;;;:::i;342:723:9:-;398:13;619:5;628:1;619:10;615:53;;-1:-1:-1;;646:10:9;;;;;;;;;;;;-1:-1:-1;;;646:10:9;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:9;;-1:-1:-1;798:2:9;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:9;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:9;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:9;;;;;;;;-1:-1:-1;1003:11:9;1012:2;1003:11;;:::i;:::-;;;872:154;;;1050:6;342:723;-1:-1:-1;;;;342:723:9:o;19393:2515:3:-;19508:27;19538;19557:7;19538:18;:27::i;:::-;19508:57;;19623:4;-1:-1:-1;;;;;19582:45:3;19598:19;-1:-1:-1;;;;;19582:45:3;;19578:86;;19636:28;;-1:-1:-1;;;19636:28:3;;;;;;;;;;;19578:86;19677:22;736:10:0;-1:-1:-1;;;;;19703:27:3;;;;:87;;-1:-1:-1;19747:43:3;19764:4;736:10:0;12775:164:3;:::i;19747:43::-;19703:147;;;-1:-1:-1;736:10:0;19807:20:3;19819:7;19807:11;:20::i;:::-;-1:-1:-1;;;;;19807:43:3;;19703:147;19677:174;;19869:17;19864:66;;19895:35;;-1:-1:-1;;;19895:35:3;;;;;;;;;;;19864:66;-1:-1:-1;;;;;19945:16:3;;19941:52;;19970:23;;-1:-1:-1;;;19970:23:3;;;;;;;;;;;19941:52;20122:24;;;;:15;:24;;;;;;;;20115:31;;-1:-1:-1;;;;;;20115:31:3;;;-1:-1:-1;;;;;20514:24:3;;;;;:18;:24;;;;;20512:26;;-1:-1:-1;;20512:26:3;;;20583:22;;;;;;;20581:24;;-1:-1:-1;20581:24:3;;;20876:26;;;:17;:26;;;;;-1:-1:-1;;;20964:15:3;1703:3;20964:41;20922:84;;:128;;20876:174;;;21170:46;;:51;;21166:626;;21274:1;21264:11;;21242:19;21397:30;;;:17;:30;;;;;;:35;;21393:384;;21535:13;;21520:11;:28;21516:242;;21682:30;;;;:17;:30;;;;;:52;;;21516:242;21223:569;21166:626;21839:7;21835:2;-1:-1:-1;;;;;21820:27:3;21829:4;-1:-1:-1;;;;;21820:27:3;;;;;;;;;;;21858:42;4204:157:2;14988:2236:3;15111:20;15134:13;-1:-1:-1;;;;;15162:16:3;;15158:48;;15187:19;;-1:-1:-1;;;15187:19:3;;;;;;;;;;;15158:48;15221:8;15233:1;15221:13;15217:44;;15243:18;;-1:-1:-1;;;15243:18:3;;;;;;;;;;;15217:44;-1:-1:-1;;;;;15810:22:3;;;;;;:18;:22;;;;1186:2;15810:22;;;:70;;15848:31;15836:44;;15810:70;;;16123:31;;;:17;:31;;;;;16216:15;1703:3;16216:41;16174:84;;-1:-1:-1;16294:13:3;;1966:3;16279:56;16174:162;16123:213;;:31;;16417:23;;;;16461:14;:19;16457:635;;16501:313;16532:38;;16557:12;;-1:-1:-1;;;;;16532:38:3;;;16549:1;;16532:38;;16549:1;;16532:38;16598:69;16637:1;16641:2;16645:14;;;;;;16661:5;16598:30;:69::i;:::-;16593:174;;16703:40;;-1:-1:-1;;;16703:40:3;;;;;;;;;;;16593:174;16809:3;16794:12;:18;16501:313;;16895:12;16878:13;;:29;16874:43;;16909:8;;;16874:43;16457:635;;;16958:119;16989:40;;17014:14;;;;;-1:-1:-1;;;;;16989:40:3;;;17006:1;;16989:40;;17006:1;;16989:40;17072:3;17057:12;:18;16958:119;;16457:635;-1:-1:-1;17106:13:3;:28;;;17156:60;;17189:2;17193:12;17207:8;17156:60;:::i;25605:716::-;25789:88;;-1:-1:-1;;;25789:88:3;;25768:4;;-1:-1:-1;;;;;25789:45:3;;;;;:88;;736:10:0;;25856:4:3;;25862:7;;25871:5;;25789:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25789:88:3;;;;;;;;-1:-1:-1;;25789:88:3;;;;;;;;;;;;:::i;:::-;;;25785:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26072:6;:13;26089:1;26072:18;26068:235;;26118:40;;-1:-1:-1;;;26118:40:3;;;;;;;;;;;26068:235;26261:6;26255:13;26246:6;26242:2;26238:15;26231:38;25785:529;-1:-1:-1;;;;;;25948:64:3;-1:-1:-1;;;25948:64:3;;-1:-1:-1;25605:716:3;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:10;-1:-1:-1;;;;;;88:32:10;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:10;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:10;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:10:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:10;;1343:180;-1:-1:-1;1343:180:10:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:10;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:10:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:10;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:10;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:118::-;3666:5;3659:13;3652:21;3645:5;3642:32;3632:60;;3688:1;3685;3678:12;3703:241;3759:6;3812:2;3800:9;3791:7;3787:23;3783:32;3780:52;;;3828:1;3825;3818:12;3780:52;3867:9;3854:23;3886:28;3908:5;3886:28;:::i;3949:328::-;4026:6;4034;4042;4095:2;4083:9;4074:7;4070:23;4066:32;4063:52;;;4111:1;4108;4101:12;4063:52;4134:29;4153:9;4134:29;:::i;:::-;4124:39;;4182:38;4216:2;4205:9;4201:18;4182:38;:::i;:::-;4172:48;;4267:2;4256:9;4252:18;4239:32;4229:42;;3949:328;;;;;:::o;4522:186::-;4581:6;4634:2;4622:9;4613:7;4609:23;4605:32;4602:52;;;4650:1;4647;4640:12;4602:52;4673:29;4692:9;4673:29;:::i;4713:315::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;:::-;4868:39;;4957:2;4946:9;4942:18;4929:32;4970:28;4992:5;4970:28;:::i;:::-;5017:5;5007:15;;;4713:315;;;;;:::o;5033:667::-;5128:6;5136;5144;5152;5205:3;5193:9;5184:7;5180:23;5176:33;5173:53;;;5222:1;5219;5212:12;5173:53;5245:29;5264:9;5245:29;:::i;:::-;5235:39;;5293:38;5327:2;5316:9;5312:18;5293:38;:::i;:::-;5283:48;;5378:2;5367:9;5363:18;5350:32;5340:42;;5433:2;5422:9;5418:18;5405:32;5460:18;5452:6;5449:30;5446:50;;;5492:1;5489;5482:12;5446:50;5515:22;;5568:4;5560:13;;5556:27;-1:-1:-1;5546:55:10;;5597:1;5594;5587:12;5546:55;5620:74;5686:7;5681:2;5668:16;5663:2;5659;5655:11;5620:74;:::i;:::-;5610:84;;;5033:667;;;;;;;:::o;5705:260::-;5773:6;5781;5834:2;5822:9;5813:7;5809:23;5805:32;5802:52;;;5850:1;5847;5840:12;5802:52;5873:29;5892:9;5873:29;:::i;:::-;5863:39;;5921:38;5955:2;5944:9;5940:18;5921:38;:::i;:::-;5911:48;;5705:260;;;;;:::o;5970:254::-;6038:6;6046;6099:2;6087:9;6078:7;6074:23;6070:32;6067:52;;;6115:1;6112;6105:12;6067:52;6151:9;6138:23;6128:33;;6180:38;6214:2;6203:9;6199:18;6180:38;:::i;6229:380::-;6308:1;6304:12;;;;6351;;;6372:61;;6426:4;6418:6;6414:17;6404:27;;6372:61;6479:2;6471:6;6468:14;6448:18;6445:38;6442:161;;6525:10;6520:3;6516:20;6513:1;6506:31;6560:4;6557:1;6550:15;6588:4;6585:1;6578:15;6442:161;;6229:380;;;:::o;6614:356::-;6816:2;6798:21;;;6835:18;;;6828:30;6894:34;6889:2;6874:18;;6867:62;6961:2;6946:18;;6614:356::o;8247:127::-;8308:10;8303:3;8299:20;8296:1;8289:31;8339:4;8336:1;8329:15;8363:4;8360:1;8353:15;8379:128;8419:3;8450:1;8446:6;8443:1;8440:13;8437:39;;;8456:18;;:::i;:::-;-1:-1:-1;8492:9:10;;8379:128::o;9219:125::-;9259:4;9287:1;9284;9281:8;9278:34;;;9292:18;;:::i;:::-;-1:-1:-1;9329:9:10;;9219:125::o;9349:168::-;9389:7;9455:1;9451;9447:6;9443:14;9440:1;9437:21;9432:1;9425:9;9418:17;9414:45;9411:71;;;9462:18;;:::i;:::-;-1:-1:-1;9502:9:10;;9349:168::o;10422:1527::-;10646:3;10684:6;10678:13;10710:4;10723:51;10767:6;10762:3;10757:2;10749:6;10745:15;10723:51;:::i;:::-;10837:13;;10796:16;;;;10859:55;10837:13;10796:16;10881:15;;;10859:55;:::i;:::-;11003:13;;10936:20;;;10976:1;;11063;11085:18;;;;11138;;;;11165:93;;11243:4;11233:8;11229:19;11217:31;;11165:93;11306:2;11296:8;11293:16;11273:18;11270:40;11267:167;;-1:-1:-1;;;11333:33:10;;11389:4;11386:1;11379:15;11419:4;11340:3;11407:17;11267:167;11450:18;11477:110;;;;11601:1;11596:328;;;;11443:481;;11477:110;-1:-1:-1;;11512:24:10;;11498:39;;11557:20;;;;-1:-1:-1;11477:110:10;;11596:328;10369:1;10362:14;;;10406:4;10393:18;;11691:1;11705:169;11719:8;11716:1;11713:15;11705:169;;;11801:14;;11786:13;;;11779:37;11844:16;;;;11736:10;;11705:169;;;11709:3;;11905:8;11898:5;11894:20;11887:27;;11443:481;-1:-1:-1;11940:3:10;;10422:1527;-1:-1:-1;;;;;;;;;;;10422:1527:10:o;13019:245::-;13086:6;13139:2;13127:9;13118:7;13114:23;13110:32;13107:52;;;13155:1;13152;13145:12;13107:52;13187:9;13181:16;13206:28;13228:5;13206:28;:::i;13269:135::-;13308:3;13329:17;;;13326:43;;13349:18;;:::i;:::-;-1:-1:-1;13396:1:10;13385:13;;13269:135::o;13409:127::-;13470:10;13465:3;13461:20;13458:1;13451:31;13501:4;13498:1;13491:15;13525:4;13522:1;13515:15;13541:120;13581:1;13607;13597:35;;13612:18;;:::i;:::-;-1:-1:-1;13646:9:10;;13541:120::o;13666:112::-;13698:1;13724;13714:35;;13729:18;;:::i;:::-;-1:-1:-1;13763:9:10;;13666:112::o;13783:127::-;13844:10;13839:3;13835:20;13832:1;13825:31;13875:4;13872:1;13865:15;13899:4;13896:1;13889:15;13915:489;-1:-1:-1;;;;;14184:15:10;;;14166:34;;14236:15;;14231:2;14216:18;;14209:43;14283:2;14268:18;;14261:34;;;14331:3;14326:2;14311:18;;14304:31;;;14109:4;;14352:46;;14378:19;;14370:6;14352:46;:::i;:::-;14344:54;13915:489;-1:-1:-1;;;;;;13915:489:10:o;14409:249::-;14478:6;14531:2;14519:9;14510:7;14506:23;14502:32;14499:52;;;14547:1;14544;14537:12;14499:52;14579:9;14573:16;14598:30;14622:5;14598:30;:::i

Swarm Source

ipfs://9fbb5755d5ae88ee24356c6c8994b0ea428ccfcaa2e0988721a49f711ce59d2c
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.