ETH Price: $3,418.15 (-0.60%)
Gas: 2 Gwei

Token

MyLittleUzis (MLU)
 

Overview

Max Total Supply

5,000 MLU

Holders

2,369

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
outofbound.eth
Balance
2 MLU
0x8A6961E70f15c308b15Dd84C9CC319dA8FBb6Fdd
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:
MyLittleUzis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: MyLittleUzis.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

contract MyLittleUzis is ERC721Enumerable, Ownable {

  // timestamp of when the sale goes live
  uint256 public saleStartTimestamp;
  // timestamp of when NFTs can be revealed (if they don't sell out)
  uint256 public revealTimestamp = saleStartTimestamp + (86400 * 5);

  // randomization values
  uint256 public startingIndexBlock;
  uint256 public startingIndex;

  uint256 public immutable MAX_PER_ADDRESS = 2;
  uint256 public immutable MAX_NFT_SUPPLY  = 5000;

  constructor(uint256 startTimestamp_, string memory coverURI_, string memory baseURI_) ERC721("MyLittleUzis", "MLU") {
    saleStartTimestamp = startTimestamp_;
    coverURI = coverURI_;
    baseURI = baseURI_;
  }

  // track who has minted to cap mints at 2 per address
  mapping(address => uint256) minters;

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

  string public baseURI;
  string public coverURI;

  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    require(tokenId < MAX_NFT_SUPPLY, "token id too high");
    if(startingIndex == 0) {
      return coverURI;
    }
    return string(abi.encodePacked(baseURI, Strings.toString((tokenId + startingIndex) % MAX_NFT_SUPPLY), '.json'));
  }

  function mint(uint256 amount) public {
    address minter = msg.sender;
    require((minters[minter] + amount) <= MAX_PER_ADDRESS, "amount exceeds max of 2 per address");
    require((totalSupply() + amount) <= MAX_NFT_SUPPLY, "amount exceeds max supply");
    require(block.timestamp > saleStartTimestamp, "sale not live yet");

    for(uint i = 0; i < amount; i++) {
      uint256 mintIndex = totalSupply();
      _safeMint(msg.sender, mintIndex);
    }

    minters[minter] += amount;

    /**
     * Source of randomness. Theoretical miner withhold manipulation possible but should be sufficient in a pragmatic sense
     */
    if (startingIndexBlock == 0 && (totalSupply() == MAX_NFT_SUPPLY || block.timestamp >= revealTimestamp)) {
      startingIndexBlock = block.number;
    }
  }

  /* randomization */
  /**
  * @dev Finalize starting index
  */
  function finalizeStartingIndex() public {
    require(startingIndex == 0, "Starting index is already set");
    require(startingIndexBlock != 0, "Starting index block must be set");

    startingIndex = uint(blockhash(startingIndexBlock)) % MAX_NFT_SUPPLY;
    // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
    if ((block.number - startingIndexBlock) > 255) {
      startingIndex = uint(blockhash(block.number-1)) % MAX_NFT_SUPPLY;
    }
    // Prevent default sequence
    if (startingIndex == 0) {
      startingIndex = startingIndex + 1;
    }
  }

  /* admin functions */

  function setSaleStartTime(uint time) public onlyOwner {
    saleStartTimestamp = time;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setCoverURI(string memory _newCoverURI) public onlyOwner {
    coverURI = _newCoverURI;
  }

  /**
  * @dev Withdraw ether from this contract (in case someone accidentally sends ETH to the contract)
  */
  function withdraw() onlyOwner public payable {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev public Mint function, restricted to a max of 5 mints per address.
     *
     */

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 14: ERC721Holder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721Receiver.sol";

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

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 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT

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":[{"internalType":"uint256","name":"startTimestamp_","type":"uint256"},{"internalType":"string","name":"coverURI_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coverURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTimestamp","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newCoverURI","type":"string"}],"name":"setCoverURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052600b5462000016906206978062000337565b600c55600260805261138860a0523480156200003157600080fd5b5060405162002806380380620028068339810160408190526200005491620002c3565b604080518082018252600c81526b4d794c6974746c65557a697360a01b6020808301918252835180850190945260038452624d4c5560e81b908401528151919291620000a39160009162000166565b508051620000b990600190602084019062000166565b505050620000d6620000d06200011060201b60201c565b62000114565b600b8390558151620000f090601190602085019062000166565b5080516200010690601090602084019062000166565b50505050620003b1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200035e565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600082601f8301126200021e57600080fd5b81516001600160401b03808211156200023b576200023b6200039b565b604051601f8301601f19908116603f011681019082821181831017156200026657620002666200039b565b816040528381526020925086838588010111156200028357600080fd5b600091505b83821015620002a7578582018301518183018401529082019062000288565b83821115620002b95760008385830101525b9695505050505050565b600080600060608486031215620002d957600080fd5b835160208501519093506001600160401b0380821115620002f957600080fd5b62000307878388016200020c565b935060408601519150808211156200031e57600080fd5b506200032d868287016200020c565b9150509250925092565b600082198211156200035957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200037357607f821691505b602082108114156200039557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a0516123fe62000408600039600081816104f201528181610d4101528181610d8201528181610e7d01528181610fb3015281816110f701526111f80152600081816102b60152610df601526123fe6000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b5077f44116100a0578063e36d64981161006f578063e36d64981461056a578063e985e9c514610580578063ecd783c4146105c9578063f2fde38b146105e9578063f62f3c111461060957600080fd5b8063b5077f44146104e0578063b88d4fde14610514578063c87b56dd14610534578063cb774d471461055457600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046d57806395d89b411461048b578063a0712d68146104a0578063a22cb465146104c057600080fd5b80636c0360eb1461040e57806370a0823114610423578063715018a61461044357806374df39c91461045857600080fd5b80633c276d8611610185578063525f8a5c11610154578063525f8a5c1461039957806355f804b3146103b957806358039706146103d95780636352211e146103ee57600080fd5b80633c276d861461033b5780633ccfd60b1461035157806342842e0e146103595780634f6ccce71461037957600080fd5b80630aaef285116101c15780630aaef285146102a457806318160ddd146102e657806323b872dd146102fb5780632f745c591461031b57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611fa4565b61061f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190612180565b34801561025657600080fd5b5061026a610265366004612027565b6106dc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f7a565b610776565b005b3480156102b057600080fd5b506102d87f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161021f565b3480156102f257600080fd5b506008546102d8565b34801561030757600080fd5b506102a2610316366004611e86565b61088c565b34801561032757600080fd5b506102d8610336366004611f7a565b6108bd565b34801561034757600080fd5b506102d8600b5481565b6102a2610953565b34801561036557600080fd5b506102a2610374366004611e86565b6109b0565b34801561038557600080fd5b506102d8610394366004612027565b6109cb565b3480156103a557600080fd5b506102a26103b4366004612027565b610a5e565b3480156103c557600080fd5b506102a26103d4366004611fde565b610a8d565b3480156103e557600080fd5b5061023d610aca565b3480156103fa57600080fd5b5061026a610409366004612027565b610b58565b34801561041a57600080fd5b5061023d610bcf565b34801561042f57600080fd5b506102d861043e366004611e31565b610bdc565b34801561044f57600080fd5b506102a2610c63565b34801561046457600080fd5b506102a2610c99565b34801561047957600080fd5b50600a546001600160a01b031661026a565b34801561049757600080fd5b5061023d610dd5565b3480156104ac57600080fd5b506102a26104bb366004612027565b610de4565b3480156104cc57600080fd5b506102a26104db366004611f3e565b610ff6565b3480156104ec57600080fd5b506102d87f000000000000000000000000000000000000000000000000000000000000000081565b34801561052057600080fd5b506102a261052f366004611ec2565b6110bb565b34801561054057600080fd5b5061023d61054f366004612027565b6110f3565b34801561056057600080fd5b506102d8600e5481565b34801561057657600080fd5b506102d8600d5481565b34801561058c57600080fd5b5061021361059b366004611e53565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d557600080fd5b506102a26105e4366004611fde565b61125b565b3480156105f557600080fd5b506102a2610604366004611e31565b611298565b34801561061557600080fd5b506102d8600c5481565b60006001600160e01b0319821663780e9d6360e01b1480610644575061064482611333565b92915050565b606060008054610659906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610685906122da565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078182610b58565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610751565b336001600160a01b038216148061080b575061080b813361059b565b61087d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610751565b6108878383611383565b505050565b61089633826113f1565b6108b25760405162461bcd60e51b81526004016107519061221a565b6108878383836114e8565b60006108c883610bdc565b821061092a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461097d5760405162461bcd60e51b8152600401610751906121e5565b6040514790339082156108fc029083906000818181858888f193505050501580156109ac573d6000803e3d6000fd5b5050565b610887838383604051806020016040528060008152506110bb565b60006109d660085490565b8210610a395760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610751565b60088281548110610a4c57610a4c612386565b90600052602060002001549050919050565b600a546001600160a01b03163314610a885760405162461bcd60e51b8152600401610751906121e5565b600b55565b600a546001600160a01b03163314610ab75760405162461bcd60e51b8152600401610751906121e5565b80516109ac906010906020840190611d06565b60118054610ad7906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610b03906122da565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610751565b60108054610ad7906122da565b60006001600160a01b038216610c475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610751565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610751906121e5565b610c976000611693565b565b600e5415610ce95760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610751565b600d54610d385760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610751565b600d54610d67907f00000000000000000000000000000000000000000000000000000000000000009040612330565b600e55600d5460ff90610d7a9043612297565b1115610dbb577f0000000000000000000000000000000000000000000000000000000000000000610dac600143612297565b610db7919040612330565b600e555b600e54610c9757600e54610dd090600161226b565b600e55565b606060018054610659906122da565b336000818152600f60205260409020547f000000000000000000000000000000000000000000000000000000000000000090610e2190849061226b565b1115610e7b5760405162461bcd60e51b815260206004820152602360248201527f616d6f756e742065786365656473206d6178206f66203220706572206164647260448201526265737360e81b6064820152608401610751565b7f000000000000000000000000000000000000000000000000000000000000000082610ea660085490565b610eb0919061226b565b1115610efe5760405162461bcd60e51b815260206004820152601960248201527f616d6f756e742065786365656473206d617820737570706c79000000000000006044820152606401610751565b600b544211610f435760405162461bcd60e51b81526020600482015260116024820152701cd85b19481b9bdd081b1a5d99481e595d607a1b6044820152606401610751565b60005b82811015610f78576000610f5960085490565b9050610f6533826116e5565b5080610f7081612315565b915050610f46565b506001600160a01b0381166000908152600f602052604081208054849290610fa190849061226b565b9091555050600d54158015610fe957507f0000000000000000000000000000000000000000000000000000000000000000610fdb60085490565b1480610fe95750600c544210155b156109ac5743600d555050565b6001600160a01b03821633141561104f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610751565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c533836113f1565b6110e15760405162461bcd60e51b81526004016107519061221a565b6110ed848484846116ff565b50505050565b60607f000000000000000000000000000000000000000000000000000000000000000082106111585760405162461bcd60e51b81526020600482015260116024820152700e8ded6cadc40d2c840e8dede40d0d2ced607b1b6044820152606401610751565b600e546111f1576011805461116c906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054611198906122da565b80156111e55780601f106111ba576101008083540402835291602001916111e5565b820191906000526020600020905b8154815290600101906020018083116111c857829003601f168201915b50505050509050919050565b60106112347f0000000000000000000000000000000000000000000000000000000000000000600e5485611225919061226b565b61122f9190612330565b611732565b604051602001611245929190612088565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146112855760405162461bcd60e51b8152600401610751906121e5565b80516109ac906011906020840190611d06565b600a546001600160a01b031633146112c25760405162461bcd60e51b8152600401610751906121e5565b6001600160a01b0381166113275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b61133081611693565b50565b60006001600160e01b031982166380ac58cd60e01b148061136457506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b0319831614610644565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b882610b58565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661146a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610751565b600061147583610b58565b9050806001600160a01b0316846001600160a01b031614806114b05750836001600160a01b03166114a5846106dc565b6001600160a01b0316145b806114e057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114fb82610b58565b6001600160a01b0316146115635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610751565b6001600160a01b0382166115c55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610751565b6115d0838383611830565b6115db600082611383565b6001600160a01b0383166000908152600360205260408120805460019290611604908490612297565b90915550506001600160a01b038216600090815260036020526040812080546001929061163290849061226b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109ac8282604051806020016040528060008152506118e8565b61170a8484846114e8565b6117168484848461191b565b6110ed5760405162461bcd60e51b815260040161075190612193565b6060816117565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611780578061176a81612315565b91506117799050600a83612283565b915061175a565b60008167ffffffffffffffff81111561179b5761179b61239c565b6040519080825280601f01601f1916602001820160405280156117c5576020820181803683370190505b5090505b84156114e0576117da600183612297565b91506117e7600a86612330565b6117f290603061226b565b60f81b81838151811061180757611807612386565b60200101906001600160f81b031916908160001a905350611829600a86612283565b94506117c9565b6001600160a01b03831661188b5761188681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ae565b816001600160a01b0316836001600160a01b0316146118ae576118ae8382611a28565b6001600160a01b0382166118c55761088781611ac5565b826001600160a01b0316826001600160a01b031614610887576108878282611b74565b6118f28383611bb8565b6118ff600084848461191b565b6108875760405162461bcd60e51b815260040161075190612193565b60006001600160a01b0384163b15611a1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061195f903390899088908890600401612143565b602060405180830381600087803b15801561197957600080fd5b505af19250505080156119a9575060408051601f3d908101601f191682019092526119a691810190611fc1565b60015b611a03573d8080156119d7576040519150601f19603f3d011682016040523d82523d6000602084013e6119dc565b606091505b5080516119fb5760405162461bcd60e51b815260040161075190612193565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e0565b506001949350505050565b60006001611a3584610bdc565b611a3f9190612297565b600083815260076020526040902054909150808214611a92576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ad790600190612297565b60008381526009602052604081205460088054939450909284908110611aff57611aff612386565b906000526020600020015490508060088381548110611b2057611b20612386565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5857611b58612370565b6001900381819060005260206000200160009055905550505050565b6000611b7f83610bdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610751565b6000818152600260205260409020546001600160a01b031615611c735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610751565b611c7f60008383611830565b6001600160a01b0382166000908152600360205260408120805460019290611ca890849061226b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d12906122da565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba61239c565b604051601f8501601f19908116603f01168101908282118183101715611de257611de261239c565b81604052809350858152868686011115611dfb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2c57600080fd5b919050565b600060208284031215611e4357600080fd5b611e4c82611e15565b9392505050565b60008060408385031215611e6657600080fd5b611e6f83611e15565b9150611e7d60208401611e15565b90509250929050565b600080600060608486031215611e9b57600080fd5b611ea484611e15565b9250611eb260208501611e15565b9150604084013590509250925092565b60008060008060808587031215611ed857600080fd5b611ee185611e15565b9350611eef60208601611e15565b925060408501359150606085013567ffffffffffffffff811115611f1257600080fd5b8501601f81018713611f2357600080fd5b611f3287823560208401611d9f565b91505092959194509250565b60008060408385031215611f5157600080fd5b611f5a83611e15565b915060208301358015158114611f6f57600080fd5b809150509250929050565b60008060408385031215611f8d57600080fd5b611f9683611e15565b946020939093013593505050565b600060208284031215611fb657600080fd5b8135611e4c816123b2565b600060208284031215611fd357600080fd5b8151611e4c816123b2565b600060208284031215611ff057600080fd5b813567ffffffffffffffff81111561200757600080fd5b8201601f8101841361201857600080fd5b6114e084823560208401611d9f565b60006020828403121561203957600080fd5b5035919050565b600081518084526120588160208601602086016122ae565b601f01601f19169290920160200192915050565b6000815161207e8185602086016122ae565b9290920192915050565b600080845481600182811c9150808316806120a457607f831692505b60208084108214156120c457634e487b7160e01b86526022600452602486fd5b8180156120d857600181146120e957612116565b60ff19861689528489019650612116565b60008b81526020902060005b8681101561210e5781548b8201529085019083016120f5565b505084890196505b50505050505061213a612129828661206c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217690830184612040565b9695505050505050565b602081526000611e4c6020830184612040565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561227e5761227e612344565b500190565b6000826122925761229261235a565b500490565b6000828210156122a9576122a9612344565b500390565b60005b838110156122c95781810151838201526020016122b1565b838111156110ed5750506000910152565b600181811c908216806122ee57607f821691505b6020821081141561230f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232957612329612344565b5060010190565b60008261233f5761233f61235a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133057600080fdfea2646970667358221220427861a58b805138bda647b4340a831b8cd7687568b1f5d8c7c47c78a780052a64736f6c634300080700330000000000000000000000000000000000000000000000000000000061578864000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544b6d7476336e745947344b544466725531725671463655446d69787069356d505732325a6e6d785177384800000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b5077f44116100a0578063e36d64981161006f578063e36d64981461056a578063e985e9c514610580578063ecd783c4146105c9578063f2fde38b146105e9578063f62f3c111461060957600080fd5b8063b5077f44146104e0578063b88d4fde14610514578063c87b56dd14610534578063cb774d471461055457600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046d57806395d89b411461048b578063a0712d68146104a0578063a22cb465146104c057600080fd5b80636c0360eb1461040e57806370a0823114610423578063715018a61461044357806374df39c91461045857600080fd5b80633c276d8611610185578063525f8a5c11610154578063525f8a5c1461039957806355f804b3146103b957806358039706146103d95780636352211e146103ee57600080fd5b80633c276d861461033b5780633ccfd60b1461035157806342842e0e146103595780634f6ccce71461037957600080fd5b80630aaef285116101c15780630aaef285146102a457806318160ddd146102e657806323b872dd146102fb5780632f745c591461031b57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611fa4565b61061f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190612180565b34801561025657600080fd5b5061026a610265366004612027565b6106dc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f7a565b610776565b005b3480156102b057600080fd5b506102d87f000000000000000000000000000000000000000000000000000000000000000281565b60405190815260200161021f565b3480156102f257600080fd5b506008546102d8565b34801561030757600080fd5b506102a2610316366004611e86565b61088c565b34801561032757600080fd5b506102d8610336366004611f7a565b6108bd565b34801561034757600080fd5b506102d8600b5481565b6102a2610953565b34801561036557600080fd5b506102a2610374366004611e86565b6109b0565b34801561038557600080fd5b506102d8610394366004612027565b6109cb565b3480156103a557600080fd5b506102a26103b4366004612027565b610a5e565b3480156103c557600080fd5b506102a26103d4366004611fde565b610a8d565b3480156103e557600080fd5b5061023d610aca565b3480156103fa57600080fd5b5061026a610409366004612027565b610b58565b34801561041a57600080fd5b5061023d610bcf565b34801561042f57600080fd5b506102d861043e366004611e31565b610bdc565b34801561044f57600080fd5b506102a2610c63565b34801561046457600080fd5b506102a2610c99565b34801561047957600080fd5b50600a546001600160a01b031661026a565b34801561049757600080fd5b5061023d610dd5565b3480156104ac57600080fd5b506102a26104bb366004612027565b610de4565b3480156104cc57600080fd5b506102a26104db366004611f3e565b610ff6565b3480156104ec57600080fd5b506102d87f000000000000000000000000000000000000000000000000000000000000138881565b34801561052057600080fd5b506102a261052f366004611ec2565b6110bb565b34801561054057600080fd5b5061023d61054f366004612027565b6110f3565b34801561056057600080fd5b506102d8600e5481565b34801561057657600080fd5b506102d8600d5481565b34801561058c57600080fd5b5061021361059b366004611e53565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d557600080fd5b506102a26105e4366004611fde565b61125b565b3480156105f557600080fd5b506102a2610604366004611e31565b611298565b34801561061557600080fd5b506102d8600c5481565b60006001600160e01b0319821663780e9d6360e01b1480610644575061064482611333565b92915050565b606060008054610659906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610685906122da565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078182610b58565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610751565b336001600160a01b038216148061080b575061080b813361059b565b61087d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610751565b6108878383611383565b505050565b61089633826113f1565b6108b25760405162461bcd60e51b81526004016107519061221a565b6108878383836114e8565b60006108c883610bdc565b821061092a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461097d5760405162461bcd60e51b8152600401610751906121e5565b6040514790339082156108fc029083906000818181858888f193505050501580156109ac573d6000803e3d6000fd5b5050565b610887838383604051806020016040528060008152506110bb565b60006109d660085490565b8210610a395760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610751565b60088281548110610a4c57610a4c612386565b90600052602060002001549050919050565b600a546001600160a01b03163314610a885760405162461bcd60e51b8152600401610751906121e5565b600b55565b600a546001600160a01b03163314610ab75760405162461bcd60e51b8152600401610751906121e5565b80516109ac906010906020840190611d06565b60118054610ad7906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610b03906122da565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610751565b60108054610ad7906122da565b60006001600160a01b038216610c475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610751565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610751906121e5565b610c976000611693565b565b600e5415610ce95760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610751565b600d54610d385760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610751565b600d54610d67907f00000000000000000000000000000000000000000000000000000000000013889040612330565b600e55600d5460ff90610d7a9043612297565b1115610dbb577f0000000000000000000000000000000000000000000000000000000000001388610dac600143612297565b610db7919040612330565b600e555b600e54610c9757600e54610dd090600161226b565b600e55565b606060018054610659906122da565b336000818152600f60205260409020547f000000000000000000000000000000000000000000000000000000000000000290610e2190849061226b565b1115610e7b5760405162461bcd60e51b815260206004820152602360248201527f616d6f756e742065786365656473206d6178206f66203220706572206164647260448201526265737360e81b6064820152608401610751565b7f000000000000000000000000000000000000000000000000000000000000138882610ea660085490565b610eb0919061226b565b1115610efe5760405162461bcd60e51b815260206004820152601960248201527f616d6f756e742065786365656473206d617820737570706c79000000000000006044820152606401610751565b600b544211610f435760405162461bcd60e51b81526020600482015260116024820152701cd85b19481b9bdd081b1a5d99481e595d607a1b6044820152606401610751565b60005b82811015610f78576000610f5960085490565b9050610f6533826116e5565b5080610f7081612315565b915050610f46565b506001600160a01b0381166000908152600f602052604081208054849290610fa190849061226b565b9091555050600d54158015610fe957507f0000000000000000000000000000000000000000000000000000000000001388610fdb60085490565b1480610fe95750600c544210155b156109ac5743600d555050565b6001600160a01b03821633141561104f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610751565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c533836113f1565b6110e15760405162461bcd60e51b81526004016107519061221a565b6110ed848484846116ff565b50505050565b60607f000000000000000000000000000000000000000000000000000000000000138882106111585760405162461bcd60e51b81526020600482015260116024820152700e8ded6cadc40d2c840e8dede40d0d2ced607b1b6044820152606401610751565b600e546111f1576011805461116c906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054611198906122da565b80156111e55780601f106111ba576101008083540402835291602001916111e5565b820191906000526020600020905b8154815290600101906020018083116111c857829003601f168201915b50505050509050919050565b60106112347f0000000000000000000000000000000000000000000000000000000000001388600e5485611225919061226b565b61122f9190612330565b611732565b604051602001611245929190612088565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146112855760405162461bcd60e51b8152600401610751906121e5565b80516109ac906011906020840190611d06565b600a546001600160a01b031633146112c25760405162461bcd60e51b8152600401610751906121e5565b6001600160a01b0381166113275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b61133081611693565b50565b60006001600160e01b031982166380ac58cd60e01b148061136457506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b0319831614610644565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b882610b58565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661146a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610751565b600061147583610b58565b9050806001600160a01b0316846001600160a01b031614806114b05750836001600160a01b03166114a5846106dc565b6001600160a01b0316145b806114e057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114fb82610b58565b6001600160a01b0316146115635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610751565b6001600160a01b0382166115c55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610751565b6115d0838383611830565b6115db600082611383565b6001600160a01b0383166000908152600360205260408120805460019290611604908490612297565b90915550506001600160a01b038216600090815260036020526040812080546001929061163290849061226b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109ac8282604051806020016040528060008152506118e8565b61170a8484846114e8565b6117168484848461191b565b6110ed5760405162461bcd60e51b815260040161075190612193565b6060816117565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611780578061176a81612315565b91506117799050600a83612283565b915061175a565b60008167ffffffffffffffff81111561179b5761179b61239c565b6040519080825280601f01601f1916602001820160405280156117c5576020820181803683370190505b5090505b84156114e0576117da600183612297565b91506117e7600a86612330565b6117f290603061226b565b60f81b81838151811061180757611807612386565b60200101906001600160f81b031916908160001a905350611829600a86612283565b94506117c9565b6001600160a01b03831661188b5761188681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ae565b816001600160a01b0316836001600160a01b0316146118ae576118ae8382611a28565b6001600160a01b0382166118c55761088781611ac5565b826001600160a01b0316826001600160a01b031614610887576108878282611b74565b6118f28383611bb8565b6118ff600084848461191b565b6108875760405162461bcd60e51b815260040161075190612193565b60006001600160a01b0384163b15611a1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061195f903390899088908890600401612143565b602060405180830381600087803b15801561197957600080fd5b505af19250505080156119a9575060408051601f3d908101601f191682019092526119a691810190611fc1565b60015b611a03573d8080156119d7576040519150601f19603f3d011682016040523d82523d6000602084013e6119dc565b606091505b5080516119fb5760405162461bcd60e51b815260040161075190612193565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e0565b506001949350505050565b60006001611a3584610bdc565b611a3f9190612297565b600083815260076020526040902054909150808214611a92576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ad790600190612297565b60008381526009602052604081205460088054939450909284908110611aff57611aff612386565b906000526020600020015490508060088381548110611b2057611b20612386565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5857611b58612370565b6001900381819060005260206000200160009055905550505050565b6000611b7f83610bdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610751565b6000818152600260205260409020546001600160a01b031615611c735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610751565b611c7f60008383611830565b6001600160a01b0382166000908152600360205260408120805460019290611ca890849061226b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d12906122da565b90600052602060002090601f016020900481019282611d345760008555611d7a565b82601f10611d4d57805160ff1916838001178555611d7a565b82800160010185558215611d7a579182015b82811115611d7a578251825591602001919060010190611d5f565b50611d86929150611d8a565b5090565b5b80821115611d865760008155600101611d8b565b600067ffffffffffffffff80841115611dba57611dba61239c565b604051601f8501601f19908116603f01168101908282118183101715611de257611de261239c565b81604052809350858152868686011115611dfb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2c57600080fd5b919050565b600060208284031215611e4357600080fd5b611e4c82611e15565b9392505050565b60008060408385031215611e6657600080fd5b611e6f83611e15565b9150611e7d60208401611e15565b90509250929050565b600080600060608486031215611e9b57600080fd5b611ea484611e15565b9250611eb260208501611e15565b9150604084013590509250925092565b60008060008060808587031215611ed857600080fd5b611ee185611e15565b9350611eef60208601611e15565b925060408501359150606085013567ffffffffffffffff811115611f1257600080fd5b8501601f81018713611f2357600080fd5b611f3287823560208401611d9f565b91505092959194509250565b60008060408385031215611f5157600080fd5b611f5a83611e15565b915060208301358015158114611f6f57600080fd5b809150509250929050565b60008060408385031215611f8d57600080fd5b611f9683611e15565b946020939093013593505050565b600060208284031215611fb657600080fd5b8135611e4c816123b2565b600060208284031215611fd357600080fd5b8151611e4c816123b2565b600060208284031215611ff057600080fd5b813567ffffffffffffffff81111561200757600080fd5b8201601f8101841361201857600080fd5b6114e084823560208401611d9f565b60006020828403121561203957600080fd5b5035919050565b600081518084526120588160208601602086016122ae565b601f01601f19169290920160200192915050565b6000815161207e8185602086016122ae565b9290920192915050565b600080845481600182811c9150808316806120a457607f831692505b60208084108214156120c457634e487b7160e01b86526022600452602486fd5b8180156120d857600181146120e957612116565b60ff19861689528489019650612116565b60008b81526020902060005b8681101561210e5781548b8201529085019083016120f5565b505084890196505b50505050505061213a612129828661206c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217690830184612040565b9695505050505050565b602081526000611e4c6020830184612040565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561227e5761227e612344565b500190565b6000826122925761229261235a565b500490565b6000828210156122a9576122a9612344565b500390565b60005b838110156122c95781810151838201526020016122b1565b838111156110ed5750506000910152565b600181811c908216806122ee57607f821691505b6020821081141561230f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232957612329612344565b5060010190565b60008261233f5761233f61235a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133057600080fdfea2646970667358221220427861a58b805138bda647b4340a831b8cd7687568b1f5d8c7c47c78a780052a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000061578864000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544b6d7476336e745947344b544466725531725671463655446d69787069356d505732325a6e6d785177384800000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : startTimestamp_ (uint256): 1633126500
Arg [1] : coverURI_ (string): ipfs://QmTKmtv3ntYG4KTDfrU1rVqF6UDmixpi5mPW22ZnmxQw8H
Arg [2] : baseURI_ (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061578864
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d544b6d7476336e745947344b5444667255317256714636
Arg [5] : 55446d69787069356d505732325a6e6d78517738480000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

313:3404:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;-1:-1:-1;909:222:4;;;;;:::i;:::-;;:::i;:::-;;;6785:14:14;;6778:22;6760:41;;6748:2;6733:18;909:222:4;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:14;;;6065:51;;6053:2;6038:18;3860:217:3;5919:203:14;3398:401:3;;;;;;;;;;-1:-1:-1;3398:401:3;;;;;:::i;:::-;;:::i;:::-;;694:44:11;;;;;;;;;;;;;;;;;;16142:25:14;;;16130:2;16115:18;694:44:11;15996:177:14;1534:111:4;;;;;;;;;;-1:-1:-1;1621:10:4;:17;1534:111;;4724:330:3;;;;;;;;;;-1:-1:-1;4724:330:3;;;;;:::i;:::-;;:::i;1210:253:4:-;;;;;;;;;;-1:-1:-1;1210:253:4;;;;;:::i;:::-;;:::i;414:33:11:-;;;;;;;;;;;;;;;;3576:138;;;:::i;5120:179:3:-;;;;;;;;;;-1:-1:-1;5120:179:3;;;;;:::i;:::-;;:::i;1717:230:4:-;;;;;;;;;;-1:-1:-1;1717:230:4;;;;;:::i;:::-;;:::i;3152:92:11:-;;;;;;;;;;-1:-1:-1;3152:92:11;;;;;:::i;:::-;;:::i;3250:98::-;;;;;;;;;;-1:-1:-1;3250:98:11;;;;;:::i;:::-;;:::i;1245:22::-;;;;;;;;;;;;;:::i;2052:235:3:-;;;;;;;;;;-1:-1:-1;2052:235:3;;;;;:::i;:::-;;:::i;1219:21:11:-;;;;;;;;;;;;;:::i;1790:205:3:-;;;;;;;;;;-1:-1:-1;1790:205:3;;;;;:::i;:::-;;:::i;1607:101:12:-;;;;;;;;;;;;;:::i;2490:629:11:-;;;;;;;;;;;;;:::i;975:85:12:-;;;;;;;;;;-1:-1:-1;1047:6:12;;-1:-1:-1;;;;;1047:6:12;975:85;;2511:102:3;;;;;;;;;;;;;:::i;1606:808:11:-;;;;;;;;;;-1:-1:-1;1606:808:11;;;;;:::i;:::-;;:::i;4144:290:3:-;;;;;;;;;;-1:-1:-1;4144:290:3;;;;;:::i;:::-;;:::i;743:47:11:-;;;;;;;;;;;;;;;5365:320:3;;;;;;;;;;-1:-1:-1;5365:320:3;;;;;:::i;:::-;;:::i;1274:326:11:-;;;;;;;;;;-1:-1:-1;1274:326:11;;;;;:::i;:::-;;:::i;659:28::-;;;;;;;;;;;;;;;;621:33;;;;;;;;;;;;;;;;4500:162:3;;;;;;;;;;-1:-1:-1;4500:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;3354:102:11;;;;;;;;;;-1:-1:-1;3354:102:11;;;;;:::i;:::-;;:::i;1857:198:12:-;;;;;;;;;;-1:-1:-1;1857:198:12;;;;;:::i;:::-;;:::i;522:65:11:-;;;;;;;;;;;;;;;;909:222:4;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:4:o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;3955:73;;;;-1:-1:-1;;;3955:73:3;;13420:2:14;3955:73:3;;;13402:21:14;13459:2;13439:18;;;13432:30;13498:34;13478:18;;;13471:62;-1:-1:-1;;;13549:18:14;;;13542:42;13601:19;;3955:73:3;;;;;;;;;-1:-1:-1;4046:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:3;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:3;:2;-1:-1:-1;;;;;3535:11:3;;;3527:57;;;;-1:-1:-1;;;3527:57:3;;14604:2:14;3527:57:3;;;14586:21:14;14643:2;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;-1:-1:-1;;;14733:18:14;;;14726:31;14774:19;;3527:57:3;14402:397:14;3527:57:3;666:10:1;-1:-1:-1;;;;;3616:21:3;;;;:62;;-1:-1:-1;3641:37:3;3658:5;666:10:1;4500:162:3;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:3;;11467:2:14;3595:165:3;;;11449:21:14;11506:2;11486:18;;;11479:30;11545:34;11525:18;;;11518:62;11616:26;11596:18;;;11589:54;11660:19;;3595:165:3;11265:420:14;3595:165:3;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;4724:330::-;4913:41;666:10:1;4946:7:3;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:3;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:4;;7642:2:14;1326:87:4;;;7624:21:14;7681:2;7661:18;;;7654:30;7720:34;7700:18;;;7693:62;-1:-1:-1;;;7771:18:14;;;7764:41;7822:19;;1326:87:4;7440:407:14;1326:87:4;-1:-1:-1;;;;;;1430:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;3576:138:11:-;1047:6:12;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;3671:37:11::1;::::0;3643:21:::1;::::0;3679:10:::1;::::0;3671:37;::::1;;;::::0;3643:21;;3628:12:::1;3671:37:::0;3628:12;3671:37;3643:21;3679:10;3671:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3621:93;3576:138::o:0;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1717:230:4:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:4;;15785:2:14;1811:95:4;;;15767:21:14;15824:2;15804:18;;;15797:30;15863:34;15843:18;;;15836:62;-1:-1:-1;;;15914:18:14;;;15907:42;15966:19;;1811:95:4;15583:408:14;1811:95:4;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;3152:92:11:-;1047:6:12;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;3213:18:11::1;:25:::0;3152:92::o;3250:98::-;1047:6:12;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;3321:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;1245:22::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2052:235:3:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:3;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:3;;12303:2:14;2185:73:3;;;12285:21:14;12342:2;12322:18;;;12315:30;12381:34;12361:18;;;12354:62;-1:-1:-1;;;12432:18:14;;;12425:39;12481:19;;2185:73:3;12101:405:14;1219:21:11;;;;;;;:::i;1790:205:3:-;1862:7;-1:-1:-1;;;;;1889:19:3;;1881:74;;;;-1:-1:-1;;;1881:74:3;;11892:2:14;1881:74:3;;;11874:21:14;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;-1:-1:-1;;;12021:18:14;;;12014:40;12071:19;;1881:74:3;11690:406:14;1881:74:3;-1:-1:-1;;;;;;1972:16:3;;;;;:9;:16;;;;;;;1790:205::o;1607:101:12:-;1047:6;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;1671:30:::1;1698:1;1671:18;:30::i;:::-;1607:101::o:0;2490:629:11:-;2545:13;;:18;2537:60;;;;-1:-1:-1;;;2537:60:11;;11109:2:14;2537:60:11;;;11091:21:14;11148:2;11128:18;;;11121:30;11187:31;11167:18;;;11160:59;11236:18;;2537:60:11;10907:353:14;2537:60:11;2612:18;;2604:68;;;;-1:-1:-1;;;2604:68:11;;15006:2:14;2604:68:11;;;14988:21:14;;;15025:18;;;15018:30;15084:34;15064:18;;;15057:62;15136:18;;2604:68:11;14804:356:14;2604:68:11;2712:18;;2697:52;;2735:14;;2702:29;2697:52;:::i;:::-;2681:13;:68;2893:18;;2915:3;;2878:33;;:12;:33;:::i;:::-;2877:41;2873:128;;;2979:14;2960;2973:1;2960:12;:14;:::i;:::-;2945:48;;;2950:25;2945:48;:::i;:::-;2929:13;:64;2873:128;3044:13;;3040:74;;3089:13;;:17;;3105:1;3089:17;:::i;:::-;3073:13;:33;2490:629::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;1606:808:11:-;1667:10;1650:14;1693:15;;;:7;:15;;;;;;1722;;1693:24;;1711:6;;1693:24;:::i;:::-;1692:45;;1684:93;;;;-1:-1:-1;;;1684:93:11;;7238:2:14;1684:93:11;;;7220:21:14;7277:2;7257:18;;;7250:30;7316:34;7296:18;;;7289:62;-1:-1:-1;;;7367:18:14;;;7360:33;7410:19;;1684:93:11;7036:399:14;1684:93:11;1820:14;1809:6;1793:13;1621:10:4;:17;;1534:111;1793:13:11;:22;;;;:::i;:::-;1792:42;;1784:80;;;;-1:-1:-1;;;1784:80:11;;10755:2:14;1784:80:11;;;10737:21:14;10794:2;10774:18;;;10767:30;10833:27;10813:18;;;10806:55;10878:18;;1784:80:11;10553:349:14;1784:80:11;1897:18;;1879:15;:36;1871:66;;;;-1:-1:-1;;;1871:66:11;;13074:2:14;1871:66:11;;;13056:21:14;13113:2;13093:18;;;13086:30;-1:-1:-1;;;13132:18:14;;;13125:47;13189:18;;1871:66:11;12872:341:14;1871:66:11;1950:6;1946:124;1966:6;1962:1;:10;1946:124;;;1988:17;2008:13;1621:10:4;:17;;1534:111;2008:13:11;1988:33;;2030:32;2040:10;2052:9;2030;:32::i;:::-;-1:-1:-1;1974:3:11;;;;:::i;:::-;;;;1946:124;;;-1:-1:-1;;;;;;2078:15:11;;;;;;:7;:15;;;;;:25;;2097:6;;2078:15;:25;;2097:6;;2078:25;:::i;:::-;;;;-1:-1:-1;;2259:18:11;;:23;:98;;;;;2304:14;2287:13;1621:10:4;:17;;1534:111;2287:13:11;:31;:69;;;;2341:15;;2322;:34;;2287:69;2255:154;;;2389:12;2368:18;:33;1643:771;1606:808;:::o;4144:290:3:-;-1:-1:-1;;;;;4246:24:3;;666:10:1;4246:24:3;;4238:62;;;;-1:-1:-1;;;4238:62:3;;9988:2:14;4238:62:3;;;9970:21:14;10027:2;10007:18;;;10000:30;10066:27;10046:18;;;10039:55;10111:18;;4238:62:3;9786:349:14;4238:62:3;666:10:1;4311:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:3;;;;;;;;;;4379:48;;6760:41:14;;;4311:42:3;;666:10:1;4379:48:3;;6733:18:14;4379:48:3;;;;;;;4144:290;;:::o;5365:320::-;5534:41;666:10:1;5567:7:3;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:3;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;1274:326:11:-;1339:13;1379:14;1369:7;:24;1361:54;;;;-1:-1:-1;;;1361:54:11;;9237:2:14;1361:54:11;;;9219:21:14;9276:2;9256:18;;;9249:30;-1:-1:-1;;;9295:18:14;;;9288:47;9352:18;;1361:54:11;9035:341:14;1361:54:11;1425:13;;1422:55;;1461:8;1454:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274:326;;;:::o;1422:55::-;1514:7;1523:60;1568:14;1551:13;;1541:7;:23;;;;:::i;:::-;1540:42;;;;:::i;:::-;1523:16;:60::i;:::-;1497:96;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1483:111;;1274:326;;;:::o;3354:102::-;1047:6:12;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;3427:23:11;;::::1;::::0;:8:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;1857:198:12:-:0;1047:6;;-1:-1:-1;;;;;1047:6:12;666:10:1;1187:23:12;1179:68;;;;-1:-1:-1;;;1179:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1945:22:12;::::1;1937:73;;;::::0;-1:-1:-1;;;1937:73:12;;8473:2:14;1937:73:12::1;::::0;::::1;8455:21:14::0;8512:2;8492:18;;;8485:30;8551:34;8531:18;;;8524:62;-1:-1:-1;;;8602:18:14;;;8595:36;8648:19;;1937:73:12::1;8271:402:14::0;1937:73:12::1;2020:28;2039:8;2020:18;:28::i;:::-;1857:198:::0;:::o;1431:300:3:-;1533:4;-1:-1:-1;;;;;;1568:40:3;;-1:-1:-1;;;1568:40:3;;:104;;-1:-1:-1;;;;;;;1624:48:3;;-1:-1:-1;;;1624:48:3;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1688:36:3;763:155:2;11110:171:3;11184:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11184:29:3;-1:-1:-1;;;;;11184:29:3;;;;;;;;:24;;11237:23;11184:24;11237:14;:23::i;:::-;-1:-1:-1;;;;;11228:46:3;;;;;;;;;;;11110:171;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;7549:73;;;;-1:-1:-1;;;7549:73:3;;10342:2:14;7549:73:3;;;10324:21:14;10381:2;10361:18;;;10354:30;10420:34;10400:18;;;10393:62;-1:-1:-1;;;10471:18:14;;;10464:42;10523:19;;7549:73:3;10140:408:14;7549:73:3;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:3;:7;-1:-1:-1;;;;;7689:16:3;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:3;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:3;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:3;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:3:o;10439:560::-;10593:4;-1:-1:-1;;;;;10566:31:3;:23;10581:7;10566:14;:23::i;:::-;-1:-1:-1;;;;;10566:31:3;;10558:85;;;;-1:-1:-1;;;10558:85:3;;14194:2:14;10558:85:3;;;14176:21:14;14233:2;14213:18;;;14206:30;14272:34;14252:18;;;14245:62;-1:-1:-1;;;14323:18:14;;;14316:39;14372:19;;10558:85:3;13992:405:14;10558:85:3;-1:-1:-1;;;;;10661:16:3;;10653:65;;;;-1:-1:-1;;;10653:65:3;;9583:2:14;10653:65:3;;;9565:21:14;9622:2;9602:18;;;9595:30;9661:34;9641:18;;;9634:62;-1:-1:-1;;;9712:18:14;;;9705:34;9756:19;;10653:65:3;9381:400:14;10653:65:3;10729:39;10750:4;10756:2;10760:7;10729:20;:39::i;:::-;10830:29;10847:1;10851:7;10830:8;:29::i;:::-;-1:-1:-1;;;;;10870:15:3;;;;;;:9;:15;;;;;:20;;10889:1;;10870:15;:20;;10889:1;;10870:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10900:13:3;;;;;;:9;:13;;;;;:18;;10917:1;;10900:13;:18;;10917:1;;10900:18;:::i;:::-;;;;-1:-1:-1;;10928:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10928:21:3;-1:-1:-1;;;;;10928:21:3;;;;;;;;;10965:27;;10928:16;;10965:27;;;;;;;10439:560;;;:::o;2209:187:12:-;2301:6;;;-1:-1:-1;;;;;2317:17:12;;;-1:-1:-1;;;;;;2317:17:12;;;;;;;2349:40;;2301:6;;;2317:17;2301:6;;2349:40;;2282:16;;2349:40;2272:124;2209:187;:::o;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:3;;;;;;;:::i;275:703:13:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:13;;;;;;;;;;;;-1:-1:-1;;;574:10:13;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:13;;-1:-1:-1;720:2:13;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:13;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:13;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:13;;;;;;;;-1:-1:-1;919:11:13;928:2;919:11;;:::i;:::-;;;791:150;;2543:572:4;-1:-1:-1;;;;;2742:18:4;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:4;:4;-1:-1:-1;;;;;2837:10:4;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:4;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:4;:2;-1:-1:-1;;;;;3032:10:4;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:3;;;;;;;:::i;11834:778::-;11984:4;-1:-1:-1;;;;;12004:13:3;;1034:20:0;1080:8;12000:606:3;;12039:72;;-1:-1:-1;;;12039:72:3;;-1:-1:-1;;;;;12039:36:3;;;;;:72;;666:10:1;;12090:4:3;;12096:7;;12105:5;;12039:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12039:72:3;;;;;;;;-1:-1:-1;;12039:72:3;;;;;;;;;;;;:::i;:::-;;;12035:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12278:13:3;;12274:266;;12320:60;;-1:-1:-1;;;12320:60:3;;;;;;;:::i;12274:266::-;12492:6;12486:13;12477:6;12473:2;12469:15;12462:38;12035:519;-1:-1:-1;;;;;;12161:51:3;-1:-1:-1;;;12161:51:3;;-1:-1:-1;12154:58:3;;12000:606;-1:-1:-1;12591:4:3;11834:778;;;;;;:::o;4599:970:4:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:4;;;5069:323;;-1:-1:-1;;;;;5139:18:4;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:4;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:4;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:4;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:4:o;9076:372:3:-;-1:-1:-1;;;;;9155:16:3;;9147:61;;;;-1:-1:-1;;;9147:61:3;;12713:2:14;9147:61:3;;;12695:21:14;;;12732:18;;;12725:30;12791:34;12771:18;;;12764:62;12843:18;;9147:61:3;12511:356:14;9147:61:3;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:3;:30;9218:58;;;;-1:-1:-1;;;9218:58:3;;8880:2:14;9218:58:3;;;8862:21:14;8919:2;8899:18;;;8892:30;8958;8938:18;;;8931:58;9006:18;;9218:58:3;8678:352:14;9218:58:3;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:3;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:3;-1:-1:-1;;;;;9371:21:3;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:14;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:14:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:14;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:14:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:14;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:14;;3858:180;-1:-1:-1;3858:180:14:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:14;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:14:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:14:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:14;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:14;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:14;;5516:320;16251:1;16244:14;;;16288:4;16275:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:14;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:14:o;6127:488::-;-1:-1:-1;;;;;6396:15:14;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:14:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;7852:414::-;8054:2;8036:21;;;8093:2;8073:18;;;8066:30;8132:34;8127:2;8112:18;;8105:62;-1:-1:-1;;;8198:2:14;8183:18;;8176:48;8256:3;8241:19;;7852:414::o;13631:356::-;13833:2;13815:21;;;13852:18;;;13845:30;13911:34;13906:2;13891:18;;13884:62;13978:2;13963:18;;13631:356::o;15165:413::-;15367:2;15349:21;;;15406:2;15386:18;;;15379:30;15445:34;15440:2;15425:18;;15418:62;-1:-1:-1;;;15511:2:14;15496:18;;15489:47;15568:3;15553:19;;15165:413::o;16304:128::-;16344:3;16375:1;16371:6;16368:1;16365:13;16362:39;;;16381:18;;:::i;:::-;-1:-1:-1;16417:9:14;;16304:128::o;16437:120::-;16477:1;16503;16493:35;;16508:18;;:::i;:::-;-1:-1:-1;16542:9:14;;16437:120::o;16562:125::-;16602:4;16630:1;16627;16624:8;16621:34;;;16635:18;;:::i;:::-;-1:-1:-1;16672:9:14;;16562:125::o;16692:258::-;16764:1;16774:113;16788:6;16785:1;16782:13;16774:113;;;16864:11;;;16858:18;16845:11;;;16838:39;16810:2;16803:10;16774:113;;;16905:6;16902:1;16899:13;16896:48;;;-1:-1:-1;;16940:1:14;16922:16;;16915:27;16692:258::o;16955:380::-;17034:1;17030:12;;;;17077;;;17098:61;;17152:4;17144:6;17140:17;17130:27;;17098:61;17205:2;17197:6;17194:14;17174:18;17171:38;17168:161;;;17251:10;17246:3;17242:20;17239:1;17232:31;17286:4;17283:1;17276:15;17314:4;17311:1;17304:15;17168:161;;16955:380;;;:::o;17340:135::-;17379:3;-1:-1:-1;;17400:17:14;;17397:43;;;17420:18;;:::i;:::-;-1:-1:-1;17467:1:14;17456:13;;17340:135::o;17480:112::-;17512:1;17538;17528:35;;17543:18;;:::i;:::-;-1:-1:-1;17577:9:14;;17480:112::o;17597:127::-;17658:10;17653:3;17649:20;17646:1;17639:31;17689:4;17686:1;17679:15;17713:4;17710:1;17703:15;17729:127;17790:10;17785:3;17781:20;17778:1;17771:31;17821:4;17818:1;17811:15;17845:4;17842:1;17835:15;17861:127;17922:10;17917:3;17913:20;17910:1;17903:31;17953:4;17950:1;17943:15;17977:4;17974:1;17967:15;17993:127;18054:10;18049:3;18045:20;18042:1;18035:31;18085:4;18082:1;18075:15;18109:4;18106:1;18099:15;18125:127;18186:10;18181:3;18177:20;18174:1;18167:31;18217:4;18214:1;18207:15;18241:4;18238:1;18231:15;18257:131;-1:-1:-1;;;;;;18331:32:14;;18321:43;;18311:71;;18378:1;18375;18368:12

Swarm Source

ipfs://427861a58b805138bda647b4340a831b8cd7687568b1f5d8c7c47c78a780052a
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.