ETH Price: $3,338.72 (-3.65%)
Gas: 2 Gwei

Token

DreamscapesNFT (DS)
 

Overview

Max Total Supply

100 DS

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leftlost.eth
Balance
2 DS
0xb4bb62cf25a97d75a11d1848ef23ce66ee38d70d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dreamscapes is a colorful collection of 5000 randomly generated landscapes featuring art by Robin Fischer. Every Dreamscape is unique and consits of different traits with different rarities. A wide variety of Traits ranging from Time of Day, Skies, Regions, Details and Foregro...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DreamscapesNFT

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

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract DreamscapesNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public price = 0.07 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmount = 7;
  uint256 public nftPerAddressLimit = 3;
  string public provenance = "";
  bool public salePaused = false;
  bool public preSaleOnly = true;
  bool public revealed = false;
  string public notRevealedUri;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;
  address payable public payments;
  uint256 supply = totalSupply();
  address team1 = 0x889549315C4e407C66F657C889546C7D601c33A7; // R
  address team2 = 0x72955DA661419619BA017B1cd71530A9724b9bdc; // J
  address team3 = 0xdF6769E7fCF7D3DF3c1d488CE4AdD0df9a1AC9a6; // N
  address team4 = 0x42cD50b383d6098688BaB8a68a2feCC8e8EB7367; // C
  address team5 = 0x451ba8e9c27D101e769bC291E487F71425A39D2d ; // Z
  address giveaway = 0xc5bbC6ad9B7d201EF24d27548E58800CD477563d; // DS

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri,
    address _payments
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    payments = payable(_payments);
    mint(giveaway, 7);
    mint(giveaway, 7);
    mint(giveaway, 6);
    mint(team1, 1);
    mint(team2, 1);
    mint(team3, 1);
    mint(team4, 1);
    mint(team5, 1);
    setSalePaused(true);
  }

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

  // public
  function mint(address _toAddress, uint256 _mintAmount) public payable {
    require(!salePaused, "the contract is paused");
    supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(preSaleOnly == true) {
            require(isWhitelisted(_toAddress), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[_toAddress];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= price * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[_toAddress]++;
      _safeMint(_toAddress, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

 function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return bytes(notRevealedUri).length > 0
        ? string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension))
        : "";
    }

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

  // Only owner

  function reveal() public onlyOwner {
    revealed = true;
  }

  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    provenance = provenanceHash;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    nftPerAddressLimit = _limit;
  }
  
  function setPrice(uint256 _newPrice) public onlyOwner() {
    price = _newPrice;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setSalePaused(bool _state) public onlyOwner {
    salePaused = _state;
  }
  
  function setPreSaleOnly(bool _state) public onlyOwner {
    preSaleOnly = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(payments).call{value: address(this).balance}("");
    require(success);
  }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    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 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 6 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

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 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

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 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

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 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

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 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"_payments","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreSaleOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000e5b565b5066f8b0a10e470000600d55611388600e556007600f556003601055604080516020810191829052600090819052620000649160119162000e5b565b506012805462ffffff19166101001790556200007f60085490565b601755601880546001600160a01b031990811673889549315c4e407c66f657c889546c7d601c33a7179091556019805482167372955da661419619ba017b1cd71530a9724b9bdc179055601a8054821673df6769e7fcf7d3df3c1d488ce4add0df9a1ac9a6179055601b805482167342cd50b383d6098688bab8a68a2fecc8e8eb7367179055601c8054821673451ba8e9c27d101e769bc291e487f71425a39d2d179055601d805490911673c5bbc6ad9b7d201ef24d27548e58800cd477563d1790553480156200014f57600080fd5b5060405162003d5338038062003d53833981016040819052620001729162000fc5565b8451859085906200018b90600090602085019062000e5b565b508051620001a190600190602084019062000e5b565b505050620001be620001b8620002cb60201b60201c565b620002cf565b620001c98362000321565b620001d48262000389565b601680546001600160a01b0319166001600160a01b0383811691909117909155601d546200020591166007620003e9565b601d546200021e906001600160a01b03166007620003e9565b601d5462000237906001600160a01b03166006620003e9565b60185462000250906001600160a01b03166001620003e9565b60195462000269906001600160a01b03166001620003e9565b601a5462000282906001600160a01b03166001620003e9565b601b546200029b906001600160a01b03166001620003e9565b601c54620002b4906001600160a01b03166001620003e9565b620002c0600162000714565b505050505062001235565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620003705760405162461bcd60e51b8152602060048201819052602482015260008051602062003d3383398151915260448201526064015b60405180910390fd5b80516200038590600b90602084019062000e5b565b5050565b600a546001600160a01b03163314620003d45760405162461bcd60e51b8152602060048201819052602482015260008051602062003d33833981519152604482015260640162000367565b80516200038590601390602084019062000e5b565b60125460ff16156200043e5760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e74726163742069732070617573656400000000000000000000604482015260640162000367565b60085460175580620004935760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640162000367565b600f54811115620004f35760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840162000367565b600e5481601754620005069190620010f8565b1115620005565760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d697420657863656564656400000000000000000000604482015260640162000367565b600a546001600160a01b03163314620006a95760125460ff6101009091041615156001141562000653576200058b8262000772565b620005d95760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640162000367565b6001600160a01b038216600090815260156020526040902054601054620006018383620010f8565b1115620006515760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640162000367565b505b80600d5462000663919062001113565b341015620006a95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640162000367565b60015b8181116200070f576001600160a01b0383166000908152601560205260408120805491620006da83620011bf565b9190505550620006fa8382601754620006f49190620010f8565b620007e4565b806200070681620011bf565b915050620006ac565b505050565b600a546001600160a01b031633146200075f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003d33833981519152604482015260640162000367565b6012805460ff1916911515919091179055565b6000805b601454811015620007db57826001600160a01b031660148281548110620007a157620007a162001209565b6000918252602090912001546001600160a01b03161415620007c65750600192915050565b80620007d281620011bf565b91505062000776565b50600092915050565b620003858282604051806020016040528060008152506200080660201b60201c565b62000812838362000879565b620008216000848484620009cf565b6200070f5760405162461bcd60e51b8152602060048201526032602482015260008051602062003d1383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000367565b6001600160a01b038216620008d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000367565b6000818152600260205260409020546001600160a01b031615620009385760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000367565b620009466000838362000b38565b6001600160a01b038216600090815260036020526040812080546001929062000971908490620010f8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620009f0846001600160a01b031662000c1460201b620017a81760201c565b1562000b2c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000a2a903390899088908890600401620010a2565b602060405180830381600087803b15801562000a4557600080fd5b505af192505050801562000a78575060408051601f3d908101601f1916820190925262000a759181019062000f92565b60015b62000b11573d80801562000aa9576040519150601f19603f3d011682016040523d82523d6000602084013e62000aae565b606091505b50805162000b095760405162461bcd60e51b8152602060048201526032602482015260008051602062003d1383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000367565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000b30565b5060015b949350505050565b62000b508383836200070f60201b62000b5e1760201c565b6001600160a01b03831662000bae5762000ba881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000bd4565b816001600160a01b0316836001600160a01b03161462000bd45762000bd4838262000c1a565b6001600160a01b03821662000bee576200070f8162000cc7565b826001600160a01b0316826001600160a01b0316146200070f576200070f828262000d81565b3b151590565b6000600162000c348462000dd260201b620012ba1760201c565b62000c40919062001135565b60008381526007602052604090205490915080821462000c94576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000cdb9060019062001135565b6000838152600960205260408120546008805493945090928490811062000d065762000d0662001209565b90600052602060002001549050806008838154811062000d2a5762000d2a62001209565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000d655762000d65620011f3565b6001900381819060005260206000200160009055905550505050565b600062000d998362000dd260201b620012ba1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000e3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000367565b506001600160a01b031660009081526003602052604090205490565b82805462000e699062001182565b90600052602060002090601f01602090048101928262000e8d576000855562000ed8565b82601f1062000ea857805160ff191683800117855562000ed8565b8280016001018555821562000ed8579182015b8281111562000ed857825182559160200191906001019062000ebb565b5062000ee692915062000eea565b5090565b5b8082111562000ee6576000815560010162000eeb565b600082601f83011262000f1357600080fd5b81516001600160401b038082111562000f305762000f306200121f565b604051601f8301601f19908116603f0116810190828211818310171562000f5b5762000f5b6200121f565b8160405283815286602085880101111562000f7557600080fd5b62000f888460208301602089016200114f565b9695505050505050565b60006020828403121562000fa557600080fd5b81516001600160e01b03198116811462000fbe57600080fd5b9392505050565b600080600080600060a0868803121562000fde57600080fd5b85516001600160401b038082111562000ff657600080fd5b6200100489838a0162000f01565b965060208801519150808211156200101b57600080fd5b6200102989838a0162000f01565b955060408801519150808211156200104057600080fd5b6200104e89838a0162000f01565b945060608801519150808211156200106557600080fd5b50620010748882890162000f01565b608088015190935090506001600160a01b03811681146200109457600080fd5b809150509295509295909350565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620010e18160a08501602087016200114f565b601f01601f19169190910160a00195945050505050565b600082198211156200110e576200110e620011dd565b500190565b6000816000190483118215151615620011305762001130620011dd565b500290565b6000828210156200114a576200114a620011dd565b500390565b60005b838110156200116c57818101518382015260200162001152565b838111156200117c576000848401525b50505050565b600181811c908216806200119757607f821691505b60208210811415620011b957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620011d657620011d6620011dd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612ace80620012456000396000f3fe6080604052600436106102935760003560e01c80636c0360eb1161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610789578063da3ef23f1461079f578063e985e9c5146107bf578063edec5f2714610808578063f2c4ce1e14610828578063f2fde38b1461084857600080fd5b8063b88d4fde146106de578063ba4e5c49146106fe578063ba7d2c761461071e578063c668286214610734578063c87b56dd14610749578063d0eb26b01461076957600080fd5b806391b7f5ed1161011357806391b7f5ed1461063e57806395d89b411461065e578063a035b1fe14610673578063a22cb46514610689578063a475b5dd146106a9578063a6d23e10146106be57600080fd5b80636c0360eb1461059657806370a08231146105ab578063715018a6146105cb5780637f00c7a6146105e05780638d92becd146106005780638da5cb5b1461062057600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104dd57806351830227146104fd57806355f804b31461051d5780635d08c1ae1461053d5780635f2cc131146105575780636352211e1461057657600080fd5b80632f745c59146104355780633af32abf146104555780633ccfd60b1461047557806340c10f191461047d57806342842e0e14610490578063438b6300146104b057600080fd5b80631096952311610250578063109695231461037357806318160ddd1461039357806318cae269146103b25780631b4fc7f9146103df578063239c70ae146103ff57806323b872dd1461041557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063081c8c4414610327578063095ea7b31461033c5780630f7309e81461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125f5565b610868565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610893565b6040516102c49190612831565b3480156102fb57600080fd5b5061030f61030a366004612678565b610925565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506102e26109bf565b34801561034857600080fd5b5061035c61035736600461253b565b610a4d565b005b34801561036a57600080fd5b506102e2610b63565b34801561037f57600080fd5b5061035c61038e36600461262f565b610b70565b34801561039f57600080fd5b506008545b6040519081526020016102c4565b3480156103be57600080fd5b506103a46103cd36600461240b565b60156020526000908152604090205481565b3480156103eb57600080fd5b5061035c6103fa3660046125da565b610bb1565b34801561040b57600080fd5b506103a4600f5481565b34801561042157600080fd5b5061035c610430366004612459565b610bf5565b34801561044157600080fd5b506103a461045036600461253b565b610c26565b34801561046157600080fd5b506102b861047036600461240b565b610cbc565b61035c610d26565b61035c61048b36600461253b565b610db3565b34801561049c57600080fd5b5061035c6104ab366004612459565b6110a9565b3480156104bc57600080fd5b506104d06104cb36600461240b565b6110c4565b6040516102c491906127ed565b3480156104e957600080fd5b506103a46104f8366004612678565b611166565b34801561050957600080fd5b506012546102b89062010000900460ff1681565b34801561052957600080fd5b5061035c61053836600461262f565b6111f9565b34801561054957600080fd5b506012546102b89060ff1681565b34801561056357600080fd5b506012546102b890610100900460ff1681565b34801561058257600080fd5b5061030f610591366004612678565b611236565b3480156105a257600080fd5b506102e26112ad565b3480156105b757600080fd5b506103a46105c636600461240b565b6112ba565b3480156105d757600080fd5b5061035c611341565b3480156105ec57600080fd5b5061035c6105fb366004612678565b611377565b34801561060c57600080fd5b5061035c61061b3660046125da565b6113a6565b34801561062c57600080fd5b50600a546001600160a01b031661030f565b34801561064a57600080fd5b5061035c610659366004612678565b6113e3565b34801561066a57600080fd5b506102e2611412565b34801561067f57600080fd5b506103a4600d5481565b34801561069557600080fd5b5061035c6106a4366004612511565b611421565b3480156106b557600080fd5b5061035c61142c565b3480156106ca57600080fd5b5060165461030f906001600160a01b031681565b3480156106ea57600080fd5b5061035c6106f9366004612495565b611469565b34801561070a57600080fd5b5061030f610719366004612678565b6114a1565b34801561072a57600080fd5b506103a460105481565b34801561074057600080fd5b506102e26114cb565b34801561075557600080fd5b506102e2610764366004612678565b6114d8565b34801561077557600080fd5b5061035c610784366004612678565b611625565b34801561079557600080fd5b506103a4600e5481565b3480156107ab57600080fd5b5061035c6107ba36600461262f565b611654565b3480156107cb57600080fd5b506102b86107da366004612426565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081457600080fd5b5061035c610823366004612565565b611691565b34801561083457600080fd5b5061035c61084336600461262f565b6116d3565b34801561085457600080fd5b5061035c61086336600461240b565b611710565b60006001600160e01b0319821663780e9d6360e01b148061088d575061088d826117ae565b92915050565b6060600080546108a2906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce906129aa565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b601380546109cc906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546109f8906129aa565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b505050505081565b6000610a5882611236565b9050806001600160a01b0316836001600160a01b03161415610ac65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099a565b336001600160a01b0382161480610ae25750610ae281336107da565b610b545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161099a565b610b5e83836117fe565b505050565b601180546109cc906129aa565b600a546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161099a90612896565b8051610bad90601190602084019061225f565b5050565b600a546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161099a90612896565b601280549115156101000261ff0019909216919091179055565b610bff338261186c565b610c1b5760405162461bcd60e51b815260040161099a906128cb565b610b5e838383611963565b6000610c31836112ba565b8210610c935760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161099a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601454811015610d1d57826001600160a01b031660148281548110610ce757610ce7612a56565b6000918252602090912001546001600160a01b03161415610d0b5750600192915050565b80610d15816129e5565b915050610cc0565b50600092915050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161099a90612896565b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d9d576040519150601f19603f3d011682016040523d82523d6000602084013e610da2565b606091505b5050905080610db057600080fd5b50565b60125460ff1615610dff5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161099a565b60085460175580610e525760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161099a565b600f54811115610eb05760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161099a565b600e5481601754610ec1919061291c565b1115610f085760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161099a565b600a546001600160a01b0316331461104d5760125460ff61010090910416151560011415610ffb57610f3982610cbc565b610f855760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161099a565b6001600160a01b038216600090815260156020526040902054601054610fab838361291c565b1115610ff95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161099a565b505b80600d546110099190612948565b34101561104d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161099a565b60015b818111610b5e576001600160a01b038316600090815260156020526040812080549161107b836129e5565b91905055506110978382601754611092919061291c565b611b0e565b806110a1816129e5565b915050611050565b610b5e83838360405180602001604052806000815250611469565b606060006110d1836112ba565b905060008167ffffffffffffffff8111156110ee576110ee612a6c565b604051908082528060200260200182016040528015611117578160200160208202803683370190505b50905060005b8281101561115e5761112f8582610c26565b82828151811061114157611141612a56565b602090810291909101015280611156816129e5565b91505061111d565b509392505050565b600061117160085490565b82106111d45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161099a565b600882815481106111e7576111e7612a56565b90600052602060002001549050919050565b600a546001600160a01b031633146112235760405162461bcd60e51b815260040161099a90612896565b8051610bad90600b90602084019061225f565b6000818152600260205260408120546001600160a01b03168061088d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099a565b600b80546109cc906129aa565b60006001600160a01b0382166113255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136b5760405162461bcd60e51b815260040161099a90612896565b6113756000611b28565b565b600a546001600160a01b031633146113a15760405162461bcd60e51b815260040161099a90612896565b600f55565b600a546001600160a01b031633146113d05760405162461bcd60e51b815260040161099a90612896565b6012805460ff1916911515919091179055565b600a546001600160a01b0316331461140d5760405162461bcd60e51b815260040161099a90612896565b600d55565b6060600180546108a2906129aa565b610bad338383611b7a565b600a546001600160a01b031633146114565760405162461bcd60e51b815260040161099a90612896565b6012805462ff0000191662010000179055565b611473338361186c565b61148f5760405162461bcd60e51b815260040161099a906128cb565b61149b84848484611c49565b50505050565b601481815481106114b157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109cc906129aa565b6000818152600260205260409020546060906001600160a01b03166115575760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099a565b60125462010000900460ff166115c657600060138054611576906129aa565b905011611592576040518060200160405280600081525061088d565b601361159d83611c7c565b600c6040516020016115b193929190612794565b60405160208183030381529060405292915050565b60006115d0611d7a565b905060008151116115f0576040518060200160405280600081525061161e565b806115fa84611c7c565b600c60405160200161160e93929190612757565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461164f5760405162461bcd60e51b815260040161099a90612896565b601055565b600a546001600160a01b0316331461167e5760405162461bcd60e51b815260040161099a90612896565b8051610bad90600c90602084019061225f565b600a546001600160a01b031633146116bb5760405162461bcd60e51b815260040161099a90612896565b6116c7601460006122e3565b610b5e60148383612301565b600a546001600160a01b031633146116fd5760405162461bcd60e51b815260040161099a90612896565b8051610bad90601390602084019061225f565b600a546001600160a01b0316331461173a5760405162461bcd60e51b815260040161099a90612896565b6001600160a01b03811661179f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099a565b610db081611b28565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806117df57506001600160e01b03198216635b5e139f60e01b145b8061088d57506301ffc9a760e01b6001600160e01b031983161461088d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183382611236565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099a565b60006118f083611236565b9050806001600160a01b0316846001600160a01b0316148061192b5750836001600160a01b031661192084610925565b6001600160a01b0316145b8061195b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661197682611236565b6001600160a01b0316146119de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099a565b6001600160a01b038216611a405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099a565b611a4b838383611d89565b611a566000826117fe565b6001600160a01b0383166000908152600360205260408120805460019290611a7f908490612967565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aad90849061291c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bad828260405180602001604052806000815250611e41565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bdc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161099a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c54848484611963565b611c6084848484611e74565b61149b5760405162461bcd60e51b815260040161099a90612844565b606081611ca05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cca5780611cb4816129e5565b9150611cc39050600a83612934565b9150611ca4565b60008167ffffffffffffffff811115611ce557611ce5612a6c565b6040519080825280601f01601f191660200182016040528015611d0f576020820181803683370190505b5090505b841561195b57611d24600183612967565b9150611d31600a86612a00565b611d3c90603061291c565b60f81b818381518110611d5157611d51612a56565b60200101906001600160f81b031916908160001a905350611d73600a86612934565b9450611d13565b6060600b80546108a2906129aa565b6001600160a01b038316611de457611ddf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e07565b816001600160a01b0316836001600160a01b031614611e0757611e078382611f81565b6001600160a01b038216611e1e57610b5e8161201e565b826001600160a01b0316826001600160a01b031614610b5e57610b5e82826120cd565b611e4b8383612111565b611e586000848484611e74565b610b5e5760405162461bcd60e51b815260040161099a90612844565b60006001600160a01b0384163b15611f7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb89033908990889088906004016127b0565b602060405180830381600087803b158015611ed257600080fd5b505af1925050508015611f02575060408051601f3d908101601f19168201909252611eff91810190612612565b60015b611f5c573d808015611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b508051611f545760405162461bcd60e51b815260040161099a90612844565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061195b565b506001949350505050565b60006001611f8e846112ba565b611f989190612967565b600083815260076020526040902054909150808214611feb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061203090600190612967565b6000838152600960205260408120546008805493945090928490811061205857612058612a56565b90600052602060002001549050806008838154811061207957612079612a56565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120b1576120b1612a40565b6001900381819060005260206000200160009055905550505050565b60006120d8836112ba565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099a565b6000818152600260205260409020546001600160a01b0316156121cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161099a565b6121d860008383611d89565b6001600160a01b038216600090815260036020526040812080546001929061220190849061291c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461226b906129aa565b90600052602060002090601f01602090048101928261228d57600085556122d3565b82601f106122a657805160ff19168380011785556122d3565b828001600101855582156122d3579182015b828111156122d35782518255916020019190600101906122b8565b506122df929150612354565b5090565b5080546000825590600052602060002090810190610db09190612354565b8280548282559060005260206000209081019282156122d3579160200282015b828111156122d35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612321565b5b808211156122df5760008155600101612355565b600067ffffffffffffffff8084111561238457612384612a6c565b604051601f8501601f19908116603f011681019082821181831017156123ac576123ac612a6c565b816040528093508581528686860111156123c557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f657600080fd5b919050565b803580151581146123f657600080fd5b60006020828403121561241d57600080fd5b61161e826123df565b6000806040838503121561243957600080fd5b612442836123df565b9150612450602084016123df565b90509250929050565b60008060006060848603121561246e57600080fd5b612477846123df565b9250612485602085016123df565b9150604084013590509250925092565b600080600080608085870312156124ab57600080fd5b6124b4856123df565b93506124c2602086016123df565b925060408501359150606085013567ffffffffffffffff8111156124e557600080fd5b8501601f810187136124f657600080fd5b61250587823560208401612369565b91505092959194509250565b6000806040838503121561252457600080fd5b61252d836123df565b9150612450602084016123fb565b6000806040838503121561254e57600080fd5b612557836123df565b946020939093013593505050565b6000806020838503121561257857600080fd5b823567ffffffffffffffff8082111561259057600080fd5b818501915085601f8301126125a457600080fd5b8135818111156125b357600080fd5b8660208260051b85010111156125c857600080fd5b60209290920196919550909350505050565b6000602082840312156125ec57600080fd5b61161e826123fb565b60006020828403121561260757600080fd5b813561161e81612a82565b60006020828403121561262457600080fd5b815161161e81612a82565b60006020828403121561264157600080fd5b813567ffffffffffffffff81111561265857600080fd5b8201601f8101841361266957600080fd5b61195b84823560208401612369565b60006020828403121561268a57600080fd5b5035919050565b600081518084526126a981602086016020860161297e565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806126d757607f831692505b60208084108214156126f957634e487b7160e01b600052602260045260246000fd5b81801561270d576001811461271e5761274b565b60ff1986168952848901965061274b565b60008881526020902060005b868110156127435781548b82015290850190830161272a565b505084890196505b50505050505092915050565b6000845161276981846020890161297e565b84519083019061277d81836020890161297e565b612789818301866126bd565b979650505050505050565b60006127a082866126bd565b845161277d81836020890161297e565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e390830184612691565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561282557835183529284019291840191600101612809565b50909695505050505050565b60208152600061161e6020830184612691565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561292f5761292f612a14565b500190565b60008261294357612943612a2a565b500490565b600081600019048311821515161561296257612962612a14565b500290565b60008282101561297957612979612a14565b500390565b60005b83811015612999578181015183820152602001612981565b8381111561149b5750506000910152565b600181811c908216806129be57607f821691505b602082108114156129df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129f9576129f9612a14565b5060010190565b600082612a0f57612a0f612a2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db057600080fdfea2646970667358221220d49116436ce72c311a116755361f60518559f422b58c4fd6edb766c4dfcc62d664736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000a7852f694473e512153ce9bf293d777619460321000000000000000000000000000000000000000000000000000000000000000e447265616d7363617065734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000762617365757269000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576142416246696e57554165515346614b547352554b3442757057327269615841487138415943546d3732662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636c0360eb1161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610789578063da3ef23f1461079f578063e985e9c5146107bf578063edec5f2714610808578063f2c4ce1e14610828578063f2fde38b1461084857600080fd5b8063b88d4fde146106de578063ba4e5c49146106fe578063ba7d2c761461071e578063c668286214610734578063c87b56dd14610749578063d0eb26b01461076957600080fd5b806391b7f5ed1161011357806391b7f5ed1461063e57806395d89b411461065e578063a035b1fe14610673578063a22cb46514610689578063a475b5dd146106a9578063a6d23e10146106be57600080fd5b80636c0360eb1461059657806370a08231146105ab578063715018a6146105cb5780637f00c7a6146105e05780638d92becd146106005780638da5cb5b1461062057600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104dd57806351830227146104fd57806355f804b31461051d5780635d08c1ae1461053d5780635f2cc131146105575780636352211e1461057657600080fd5b80632f745c59146104355780633af32abf146104555780633ccfd60b1461047557806340c10f191461047d57806342842e0e14610490578063438b6300146104b057600080fd5b80631096952311610250578063109695231461037357806318160ddd1461039357806318cae269146103b25780631b4fc7f9146103df578063239c70ae146103ff57806323b872dd1461041557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063081c8c4414610327578063095ea7b31461033c5780630f7309e81461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125f5565b610868565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610893565b6040516102c49190612831565b3480156102fb57600080fd5b5061030f61030a366004612678565b610925565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506102e26109bf565b34801561034857600080fd5b5061035c61035736600461253b565b610a4d565b005b34801561036a57600080fd5b506102e2610b63565b34801561037f57600080fd5b5061035c61038e36600461262f565b610b70565b34801561039f57600080fd5b506008545b6040519081526020016102c4565b3480156103be57600080fd5b506103a46103cd36600461240b565b60156020526000908152604090205481565b3480156103eb57600080fd5b5061035c6103fa3660046125da565b610bb1565b34801561040b57600080fd5b506103a4600f5481565b34801561042157600080fd5b5061035c610430366004612459565b610bf5565b34801561044157600080fd5b506103a461045036600461253b565b610c26565b34801561046157600080fd5b506102b861047036600461240b565b610cbc565b61035c610d26565b61035c61048b36600461253b565b610db3565b34801561049c57600080fd5b5061035c6104ab366004612459565b6110a9565b3480156104bc57600080fd5b506104d06104cb36600461240b565b6110c4565b6040516102c491906127ed565b3480156104e957600080fd5b506103a46104f8366004612678565b611166565b34801561050957600080fd5b506012546102b89062010000900460ff1681565b34801561052957600080fd5b5061035c61053836600461262f565b6111f9565b34801561054957600080fd5b506012546102b89060ff1681565b34801561056357600080fd5b506012546102b890610100900460ff1681565b34801561058257600080fd5b5061030f610591366004612678565b611236565b3480156105a257600080fd5b506102e26112ad565b3480156105b757600080fd5b506103a46105c636600461240b565b6112ba565b3480156105d757600080fd5b5061035c611341565b3480156105ec57600080fd5b5061035c6105fb366004612678565b611377565b34801561060c57600080fd5b5061035c61061b3660046125da565b6113a6565b34801561062c57600080fd5b50600a546001600160a01b031661030f565b34801561064a57600080fd5b5061035c610659366004612678565b6113e3565b34801561066a57600080fd5b506102e2611412565b34801561067f57600080fd5b506103a4600d5481565b34801561069557600080fd5b5061035c6106a4366004612511565b611421565b3480156106b557600080fd5b5061035c61142c565b3480156106ca57600080fd5b5060165461030f906001600160a01b031681565b3480156106ea57600080fd5b5061035c6106f9366004612495565b611469565b34801561070a57600080fd5b5061030f610719366004612678565b6114a1565b34801561072a57600080fd5b506103a460105481565b34801561074057600080fd5b506102e26114cb565b34801561075557600080fd5b506102e2610764366004612678565b6114d8565b34801561077557600080fd5b5061035c610784366004612678565b611625565b34801561079557600080fd5b506103a4600e5481565b3480156107ab57600080fd5b5061035c6107ba36600461262f565b611654565b3480156107cb57600080fd5b506102b86107da366004612426565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081457600080fd5b5061035c610823366004612565565b611691565b34801561083457600080fd5b5061035c61084336600461262f565b6116d3565b34801561085457600080fd5b5061035c61086336600461240b565b611710565b60006001600160e01b0319821663780e9d6360e01b148061088d575061088d826117ae565b92915050565b6060600080546108a2906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce906129aa565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b601380546109cc906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546109f8906129aa565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b505050505081565b6000610a5882611236565b9050806001600160a01b0316836001600160a01b03161415610ac65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099a565b336001600160a01b0382161480610ae25750610ae281336107da565b610b545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161099a565b610b5e83836117fe565b505050565b601180546109cc906129aa565b600a546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161099a90612896565b8051610bad90601190602084019061225f565b5050565b600a546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161099a90612896565b601280549115156101000261ff0019909216919091179055565b610bff338261186c565b610c1b5760405162461bcd60e51b815260040161099a906128cb565b610b5e838383611963565b6000610c31836112ba565b8210610c935760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161099a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601454811015610d1d57826001600160a01b031660148281548110610ce757610ce7612a56565b6000918252602090912001546001600160a01b03161415610d0b5750600192915050565b80610d15816129e5565b915050610cc0565b50600092915050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161099a90612896565b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d9d576040519150601f19603f3d011682016040523d82523d6000602084013e610da2565b606091505b5050905080610db057600080fd5b50565b60125460ff1615610dff5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161099a565b60085460175580610e525760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161099a565b600f54811115610eb05760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161099a565b600e5481601754610ec1919061291c565b1115610f085760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161099a565b600a546001600160a01b0316331461104d5760125460ff61010090910416151560011415610ffb57610f3982610cbc565b610f855760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161099a565b6001600160a01b038216600090815260156020526040902054601054610fab838361291c565b1115610ff95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161099a565b505b80600d546110099190612948565b34101561104d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161099a565b60015b818111610b5e576001600160a01b038316600090815260156020526040812080549161107b836129e5565b91905055506110978382601754611092919061291c565b611b0e565b806110a1816129e5565b915050611050565b610b5e83838360405180602001604052806000815250611469565b606060006110d1836112ba565b905060008167ffffffffffffffff8111156110ee576110ee612a6c565b604051908082528060200260200182016040528015611117578160200160208202803683370190505b50905060005b8281101561115e5761112f8582610c26565b82828151811061114157611141612a56565b602090810291909101015280611156816129e5565b91505061111d565b509392505050565b600061117160085490565b82106111d45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161099a565b600882815481106111e7576111e7612a56565b90600052602060002001549050919050565b600a546001600160a01b031633146112235760405162461bcd60e51b815260040161099a90612896565b8051610bad90600b90602084019061225f565b6000818152600260205260408120546001600160a01b03168061088d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099a565b600b80546109cc906129aa565b60006001600160a01b0382166113255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136b5760405162461bcd60e51b815260040161099a90612896565b6113756000611b28565b565b600a546001600160a01b031633146113a15760405162461bcd60e51b815260040161099a90612896565b600f55565b600a546001600160a01b031633146113d05760405162461bcd60e51b815260040161099a90612896565b6012805460ff1916911515919091179055565b600a546001600160a01b0316331461140d5760405162461bcd60e51b815260040161099a90612896565b600d55565b6060600180546108a2906129aa565b610bad338383611b7a565b600a546001600160a01b031633146114565760405162461bcd60e51b815260040161099a90612896565b6012805462ff0000191662010000179055565b611473338361186c565b61148f5760405162461bcd60e51b815260040161099a906128cb565b61149b84848484611c49565b50505050565b601481815481106114b157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109cc906129aa565b6000818152600260205260409020546060906001600160a01b03166115575760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099a565b60125462010000900460ff166115c657600060138054611576906129aa565b905011611592576040518060200160405280600081525061088d565b601361159d83611c7c565b600c6040516020016115b193929190612794565b60405160208183030381529060405292915050565b60006115d0611d7a565b905060008151116115f0576040518060200160405280600081525061161e565b806115fa84611c7c565b600c60405160200161160e93929190612757565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461164f5760405162461bcd60e51b815260040161099a90612896565b601055565b600a546001600160a01b0316331461167e5760405162461bcd60e51b815260040161099a90612896565b8051610bad90600c90602084019061225f565b600a546001600160a01b031633146116bb5760405162461bcd60e51b815260040161099a90612896565b6116c7601460006122e3565b610b5e60148383612301565b600a546001600160a01b031633146116fd5760405162461bcd60e51b815260040161099a90612896565b8051610bad90601390602084019061225f565b600a546001600160a01b0316331461173a5760405162461bcd60e51b815260040161099a90612896565b6001600160a01b03811661179f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099a565b610db081611b28565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806117df57506001600160e01b03198216635b5e139f60e01b145b8061088d57506301ffc9a760e01b6001600160e01b031983161461088d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061183382611236565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099a565b60006118f083611236565b9050806001600160a01b0316846001600160a01b0316148061192b5750836001600160a01b031661192084610925565b6001600160a01b0316145b8061195b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661197682611236565b6001600160a01b0316146119de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099a565b6001600160a01b038216611a405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099a565b611a4b838383611d89565b611a566000826117fe565b6001600160a01b0383166000908152600360205260408120805460019290611a7f908490612967565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aad90849061291c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bad828260405180602001604052806000815250611e41565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bdc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161099a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c54848484611963565b611c6084848484611e74565b61149b5760405162461bcd60e51b815260040161099a90612844565b606081611ca05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cca5780611cb4816129e5565b9150611cc39050600a83612934565b9150611ca4565b60008167ffffffffffffffff811115611ce557611ce5612a6c565b6040519080825280601f01601f191660200182016040528015611d0f576020820181803683370190505b5090505b841561195b57611d24600183612967565b9150611d31600a86612a00565b611d3c90603061291c565b60f81b818381518110611d5157611d51612a56565b60200101906001600160f81b031916908160001a905350611d73600a86612934565b9450611d13565b6060600b80546108a2906129aa565b6001600160a01b038316611de457611ddf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e07565b816001600160a01b0316836001600160a01b031614611e0757611e078382611f81565b6001600160a01b038216611e1e57610b5e8161201e565b826001600160a01b0316826001600160a01b031614610b5e57610b5e82826120cd565b611e4b8383612111565b611e586000848484611e74565b610b5e5760405162461bcd60e51b815260040161099a90612844565b60006001600160a01b0384163b15611f7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb89033908990889088906004016127b0565b602060405180830381600087803b158015611ed257600080fd5b505af1925050508015611f02575060408051601f3d908101601f19168201909252611eff91810190612612565b60015b611f5c573d808015611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b508051611f545760405162461bcd60e51b815260040161099a90612844565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061195b565b506001949350505050565b60006001611f8e846112ba565b611f989190612967565b600083815260076020526040902054909150808214611feb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061203090600190612967565b6000838152600960205260408120546008805493945090928490811061205857612058612a56565b90600052602060002001549050806008838154811061207957612079612a56565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120b1576120b1612a40565b6001900381819060005260206000200160009055905550505050565b60006120d8836112ba565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099a565b6000818152600260205260409020546001600160a01b0316156121cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161099a565b6121d860008383611d89565b6001600160a01b038216600090815260036020526040812080546001929061220190849061291c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461226b906129aa565b90600052602060002090601f01602090048101928261228d57600085556122d3565b82601f106122a657805160ff19168380011785556122d3565b828001600101855582156122d3579182015b828111156122d35782518255916020019190600101906122b8565b506122df929150612354565b5090565b5080546000825590600052602060002090810190610db09190612354565b8280548282559060005260206000209081019282156122d3579160200282015b828111156122d35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612321565b5b808211156122df5760008155600101612355565b600067ffffffffffffffff8084111561238457612384612a6c565b604051601f8501601f19908116603f011681019082821181831017156123ac576123ac612a6c565b816040528093508581528686860111156123c557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123f657600080fd5b919050565b803580151581146123f657600080fd5b60006020828403121561241d57600080fd5b61161e826123df565b6000806040838503121561243957600080fd5b612442836123df565b9150612450602084016123df565b90509250929050565b60008060006060848603121561246e57600080fd5b612477846123df565b9250612485602085016123df565b9150604084013590509250925092565b600080600080608085870312156124ab57600080fd5b6124b4856123df565b93506124c2602086016123df565b925060408501359150606085013567ffffffffffffffff8111156124e557600080fd5b8501601f810187136124f657600080fd5b61250587823560208401612369565b91505092959194509250565b6000806040838503121561252457600080fd5b61252d836123df565b9150612450602084016123fb565b6000806040838503121561254e57600080fd5b612557836123df565b946020939093013593505050565b6000806020838503121561257857600080fd5b823567ffffffffffffffff8082111561259057600080fd5b818501915085601f8301126125a457600080fd5b8135818111156125b357600080fd5b8660208260051b85010111156125c857600080fd5b60209290920196919550909350505050565b6000602082840312156125ec57600080fd5b61161e826123fb565b60006020828403121561260757600080fd5b813561161e81612a82565b60006020828403121561262457600080fd5b815161161e81612a82565b60006020828403121561264157600080fd5b813567ffffffffffffffff81111561265857600080fd5b8201601f8101841361266957600080fd5b61195b84823560208401612369565b60006020828403121561268a57600080fd5b5035919050565b600081518084526126a981602086016020860161297e565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806126d757607f831692505b60208084108214156126f957634e487b7160e01b600052602260045260246000fd5b81801561270d576001811461271e5761274b565b60ff1986168952848901965061274b565b60008881526020902060005b868110156127435781548b82015290850190830161272a565b505084890196505b50505050505092915050565b6000845161276981846020890161297e565b84519083019061277d81836020890161297e565b612789818301866126bd565b979650505050505050565b60006127a082866126bd565b845161277d81836020890161297e565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e390830184612691565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561282557835183529284019291840191600101612809565b50909695505050505050565b60208152600061161e6020830184612691565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561292f5761292f612a14565b500190565b60008261294357612943612a2a565b500490565b600081600019048311821515161561296257612962612a14565b500290565b60008282101561297957612979612a14565b500390565b60005b83811015612999578181015183820152602001612981565b8381111561149b5750506000910152565b600181811c908216806129be57607f821691505b602082108114156129df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129f9576129f9612a14565b5060010190565b600082612a0f57612a0f612a2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db057600080fdfea2646970667358221220d49116436ce72c311a116755361f60518559f422b58c4fd6edb766c4dfcc62d664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000a7852f694473e512153ce9bf293d777619460321000000000000000000000000000000000000000000000000000000000000000e447265616d7363617065734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000762617365757269000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576142416246696e57554165515346614b547352554b3442757057327269615841487138415943546d3732662f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DreamscapesNFT
Arg [1] : _symbol (string): DS
Arg [2] : _initBaseURI (string): baseuri
Arg [3] : _initNotRevealedUri (string): ipfs://QmWaBAbFinWUAeQSFaKTsRUK4BupW2riaXAHq8AYCTm72f/
Arg [4] : _payments (address): 0xa7852F694473e512153Ce9Bf293D777619460321

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000a7852f694473e512153ce9bf293d777619460321
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 447265616d7363617065734e4654000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4453000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 6261736575726900000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d576142416246696e57554165515346614b547352554b34
Arg [13] : 42757057327269615841487138415943546d3732662f00000000000000000000


Deployed Bytecode Sourcemap

131:5295:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018:224:4;;;;;;;;;;-1:-1:-1;1018:224:4;;;;;:::i;:::-;;:::i;:::-;;;9113:14:13;;9106:22;9088:41;;9076:2;9061:18;1018:224:4;;;;;;;;2486:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4045:221::-;;;;;;;;;;-1:-1:-1;4045:221:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7550:32:13;;;7532:51;;7520:2;7505:18;4045:221:3;7386:203:13;579:28:12;;;;;;;;;;;;;:::i;3568:411:3:-;;;;;;;;;;-1:-1:-1;3568:411:3;;;;;:::i;:::-;;:::i;:::-;;442:29:12;;;;;;;;;;;;;:::i;4120:114::-;;;;;;;;;;-1:-1:-1;4120:114:12;;;;;:::i;:::-;;:::i;1658:113:4:-;;;;;;;;;;-1:-1:-1;1746:10:4;:17;1658:113;;;19236:25:13;;;19224:2;19209:18;1658:113:4;19090:177:13;654:55:12;;;;;;;;;;-1:-1:-1;654:55:12;;;;;:::i;:::-;;;;;;;;;;;;;;5021:87;;;;;;;;;;-1:-1:-1;5021:87:12;;;;;:::i;:::-;;:::i;363:32::-;;;;;;;;;;;;;;;;4795:339:3;;;;;;;;;;-1:-1:-1;4795:339:3;;;;;:::i;:::-;;:::i;1326:256:4:-;;;;;;;;;;-1:-1:-1;1326:256:4;;;;;:::i;:::-;;:::i;2812:239:12:-;;;;;;;;;;-1:-1:-1;2812:239:12;;;;;:::i;:::-;;:::i;5267:156::-;;;:::i;1854:950::-;;;;;;:::i;:::-;;:::i;5205:185:3:-;;;;;;;;;;-1:-1:-1;5205:185:3;;;;;:::i;:::-;;:::i;3057:348:12:-;;;;;;;;;;-1:-1:-1;3057:348:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1848:233:4:-;;;;;;;;;;-1:-1:-1;1848:233:4;;;;;:::i;:::-;;:::i;546:28:12:-;;;;;;;;;;-1:-1:-1;546:28:12;;;;;;;;;;;4696:98;;;;;;;;;;-1:-1:-1;4696:98:12;;;;;:::i;:::-;;:::i;476:30::-;;;;;;;;;;-1:-1:-1;476:30:12;;;;;;;;511;;;;;;;;;;-1:-1:-1;511:30:12;;;;;;;;;;;2180:239:3;;;;;;;;;;-1:-1:-1;2180:239:3;;;;;:::i;:::-;;:::i;221:21:12:-;;;;;;;;;;;;;:::i;1910:208:3:-;;;;;;;;;;-1:-1:-1;1910:208:3;;;;;:::i;:::-;;:::i;1714:103:10:-;;;;;;;;;;;;;:::i;4446:118:12:-;;;;;;;;;;-1:-1:-1;4446:118:12;;;;;:::i;:::-;;:::i;4928:85::-;;;;;;;;;;-1:-1:-1;4928:85:12;;;;;:::i;:::-;;:::i;1063:87:10:-;;;;;;;;;;-1:-1:-1;1136:6:10;;-1:-1:-1;;;;;1136:6:10;1063:87;;4354:86:12;;;;;;;;;;-1:-1:-1;4354:86:12;;;;;:::i;:::-;;:::i;2655:104:3:-;;;;;;;;;;;;;:::i;289:33:12:-;;;;;;;;;;;;;;;;4338:155:3;;;;;;;;;;-1:-1:-1;4338:155:3;;;;;:::i;:::-;;:::i;4051:63:12:-;;;;;;;;;;;;;:::i;714:31::-;;;;;;;;;;-1:-1:-1;714:31:12;;;;-1:-1:-1;;;;;714:31:12;;;5461:328:3;;;;;;;;;;-1:-1:-1;5461:328:3;;;;;:::i;:::-;;:::i;612:37:12:-;;;;;;;;;;-1:-1:-1;612:37:12;;;;;:::i;:::-;;:::i;400:::-;;;;;;;;;;;;;;;;247;;;;;;;;;;;;;:::i;3410:616::-;;;;;;;;;;-1:-1:-1;3410:616:12;;;;;:::i;:::-;;:::i;4240:106::-;;;;;;;;;;-1:-1:-1;4240:106:12;;;;;:::i;:::-;;:::i;327:31::-;;;;;;;;;;;;;;;;4800:122;;;;;;;;;;-1:-1:-1;4800:122:12;;;;;:::i;:::-;;:::i;4564:164:3:-;;;;;;;;;;-1:-1:-1;4564:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:3;;;4661:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4564:164;5116:144:12;;;;;;;;;;-1:-1:-1;5116:144:12;;;;;:::i;:::-;;:::i;4570:120::-;;;;;;;;;;-1:-1:-1;4570:120:12;;;;;:::i;:::-;;:::i;1972:201:10:-;;;;;;;;;;-1:-1:-1;1972:201:10;;;;;:::i;:::-;;:::i;1018:224:4:-;1120:4;-1:-1:-1;;;;;;1144:50:4;;-1:-1:-1;;;1144:50:4;;:90;;;1198:36;1222:11;1198:23;:36::i;:::-;1137:97;1018:224;-1:-1:-1;;1018:224:4:o;2486:100:3:-;2540:13;2573:5;2566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2486:100;:::o;4045:221::-;4121:7;7388:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7388:16:3;4141:73;;;;-1:-1:-1;;;4141:73:3;;15053:2:13;4141:73:3;;;15035:21:13;15092:2;15072:18;;;15065:30;15131:34;15111:18;;;15104:62;-1:-1:-1;;;15182:18:13;;;15175:42;15234:19;;4141:73:3;;;;;;;;;-1:-1:-1;4234:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4234:24:3;;4045:221::o;579:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3568:411:3:-;3649:13;3665:23;3680:7;3665:14;:23::i;:::-;3649:39;;3713:5;-1:-1:-1;;;;;3707:11:3;:2;-1:-1:-1;;;;;3707:11:3;;;3699:57;;;;-1:-1:-1;;;3699:57:3;;17004:2:13;3699:57:3;;;16986:21:13;17043:2;17023:18;;;17016:30;17082:34;17062:18;;;17055:62;-1:-1:-1;;;17133:18:13;;;17126:31;17174:19;;3699:57:3;16802:397:13;3699:57:3;736:10:1;-1:-1:-1;;;;;3791:21:3;;;;:62;;-1:-1:-1;3816:37:3;3833:5;736:10:1;4564:164:3;:::i;3816:37::-;3769:168;;;;-1:-1:-1;;;3769:168:3;;12690:2:13;3769:168:3;;;12672:21:13;12729:2;12709:18;;;12702:30;12768:34;12748:18;;;12741:62;12839:26;12819:18;;;12812:54;12883:19;;3769:168:3;12488:420:13;3769:168:3;3950:21;3959:2;3963:7;3950:8;:21::i;:::-;3638:341;3568:411;;:::o;442:29:12:-;;;;;;;:::i;4120:114::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4201:27:12;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4120:114:::0;:::o;5021:87::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5082:11:12::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;5082:20:12;;::::1;::::0;;;::::1;::::0;;5021:87::o;4795:339:3:-;4990:41;736:10:1;5023:7:3;4990:18;:41::i;:::-;4982:103;;;;-1:-1:-1;;;4982:103:3;;;;;;;:::i;:::-;5098:28;5108:4;5114:2;5118:7;5098:9;:28::i;1326:256:4:-;1423:7;1459:23;1476:5;1459:16;:23::i;:::-;1451:5;:31;1443:87;;;;-1:-1:-1;;;1443:87:4;;9566:2:13;1443:87:4;;;9548:21:13;9605:2;9585:18;;;9578:30;9644:34;9624:18;;;9617:62;-1:-1:-1;;;9695:18:13;;;9688:41;9746:19;;1443:87:4;9364:407:13;1443:87:4;-1:-1:-1;;;;;;1548:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1326:256::o;2812:239:12:-;2871:4;;2884:143;2905:20;:27;2901:31;;2884:143;;;2979:5;-1:-1:-1;;;;;2952:32:12;:20;2973:1;2952:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2952:23:12;:32;2948:72;;;-1:-1:-1;3006:4:12;;2812:239;-1:-1:-1;;2812:239:12:o;2948:72::-;2934:3;;;;:::i;:::-;;;;2884:143;;;-1:-1:-1;3040:5:12;;2812:239;-1:-1:-1;;2812:239:12:o;5267:156::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5346:8:12::1;::::0;5338:56:::1;::::0;5320:12:::1;::::0;-1:-1:-1;;;;;5346:8:12::1;::::0;5368:21:::1;::::0;5320:12;5338:56;5320:12;5338:56;5368:21;5346:8;5338:56:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5319:75;;;5409:7;5401:16;;;::::0;::::1;;5312:111;5267:156::o:0;1854:950::-;1940:10;;;;1939:11;1931:46;;;;-1:-1:-1;;;1931:46:12;;15827:2:13;1931:46:12;;;15809:21:13;15866:2;15846:18;;;15839:30;-1:-1:-1;;;15885:18:13;;;15878:52;15947:18;;1931:46:12;15625:346:13;1931:46:12;1746:10:4;:17;1984:6:12;:22;2021:15;2013:55;;;;-1:-1:-1;;;2013:55:12;;18936:2:13;2013:55:12;;;18918:21:13;18975:2;18955:18;;;18948:30;19014:29;18994:18;;;18987:57;19061:18;;2013:55:12;18734:351:13;2013:55:12;2098:13;;2083:11;:28;;2075:77;;;;-1:-1:-1;;;2075:77:12;;14287:2:13;2075:77:12;;;14269:21:13;14326:2;14306:18;;;14299:30;14365:34;14345:18;;;14338:62;-1:-1:-1;;;14416:18:13;;;14409:34;14460:19;;2075:77:12;14085:400:13;2075:77:12;2191:9;;2176:11;2167:6;;:20;;;;:::i;:::-;:33;;2159:68;;;;-1:-1:-1;;;2159:68:12;;13936:2:13;2159:68:12;;;13918:21:13;13975:2;13955:18;;;13948:30;-1:-1:-1;;;13994:18:13;;;13987:52;14056:18;;2159:68:12;13734:346:13;2159:68:12;1136:6:10;;-1:-1:-1;;;;;1136:6:10;2240:10:12;:21;2236:413;;2277:11;;;;;;;;:19;;:11;:19;2274:294;;;2321:25;2335:10;2321:13;:25::i;:::-;2313:61;;;;-1:-1:-1;;;2313:61:12;;18584:2:13;2313:61:12;;;18566:21:13;18623:2;18603:18;;;18596:30;18662:25;18642:18;;;18635:53;18705:18;;2313:61:12;18382:347:13;2313:61:12;-1:-1:-1;;;;;2416:32:12;;2389:24;2416:32;;;:20;:32;;;;;;2505:18;;2471:30;2490:11;2416:32;2471:30;:::i;:::-;:52;;2463:93;;;;-1:-1:-1;;;2463:93:12;;11161:2:13;2463:93:12;;;11143:21:13;11200:2;11180:18;;;11173:30;11239;11219:18;;;11212:58;11287:18;;2463:93:12;10959:352:13;2463:93:12;2298:270;2274:294;2607:11;2599:5;;:19;;;;:::i;:::-;2586:9;:32;;2578:63;;;;-1:-1:-1;;;2578:63:12;;17406:2:13;2578:63:12;;;17388:21:13;17445:2;17425:18;;;17418:30;-1:-1:-1;;;17464:18:13;;;17457:48;17522:18;;2578:63:12;17204:342:13;2578:63:12;2678:1;2661:138;2686:11;2681:1;:16;2661:138;;-1:-1:-1;;;;;2715:32:12;;;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;2758:33;2768:10;2789:1;2780:6;;:10;;;;:::i;:::-;2758:9;:33::i;:::-;2699:3;;;;:::i;:::-;;;;2661:138;;5205:185:3;5343:39;5360:4;5366:2;5370:7;5343:39;;;;;;;;;;;;:16;:39::i;3057:348:12:-;3132:16;3160:23;3186:17;3196:6;3186:9;:17::i;:::-;3160:43;;3210:25;3252:15;3238:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3238:30:12;;3210:58;;3280:9;3275:103;3295:15;3291:1;:19;3275:103;;;3340:30;3360:6;3368:1;3340:19;:30::i;:::-;3326:8;3335:1;3326:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;3312:3;;;;:::i;:::-;;;;3275:103;;;-1:-1:-1;3391:8:12;3057:348;-1:-1:-1;;;3057:348:12:o;1848:233:4:-;1923:7;1959:30;1746:10;:17;;1658:113;1959:30;1951:5;:38;1943:95;;;;-1:-1:-1;;;1943:95:4;;18171:2:13;1943:95:4;;;18153:21:13;18210:2;18190:18;;;18183:30;18249:34;18229:18;;;18222:62;-1:-1:-1;;;18300:18:13;;;18293:42;18352:19;;1943:95:4;17969:408:13;1943:95:4;2056:10;2067:5;2056:17;;;;;;;;:::i;:::-;;;;;;;;;2049:24;;1848:233;;;:::o;4696:98:12:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4767:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;2180:239:3:-:0;2252:7;2288:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2288:16:3;2323:19;2315:73;;;;-1:-1:-1;;;2315:73:3;;13526:2:13;2315:73:3;;;13508:21:13;13565:2;13545:18;;;13538:30;13604:34;13584:18;;;13577:62;-1:-1:-1;;;13655:18:13;;;13648:39;13704:19;;2315:73:3;13324:405:13;221:21:12;;;;;;;:::i;1910:208:3:-;1982:7;-1:-1:-1;;;;;2010:19:3;;2002:74;;;;-1:-1:-1;;;2002:74:3;;13115:2:13;2002:74:3;;;13097:21:13;13154:2;13134:18;;;13127:30;13193:34;13173:18;;;13166:62;-1:-1:-1;;;13244:18:13;;;13237:40;13294:19;;2002:74:3;12913:406:13;2002:74:3;-1:-1:-1;;;;;;2094:16:3;;;;;:9;:16;;;;;;;1910:208::o;1714:103:10:-;1136:6;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;4446:118:12:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4525:13:12::1;:33:::0;4446:118::o;4928:85::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4988:10:12::1;:19:::0;;-1:-1:-1;;4988:19:12::1;::::0;::::1;;::::0;;;::::1;::::0;;4928:85::o;4354:86::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4417:5:12::1;:17:::0;4354:86::o;2655:104:3:-;2711:13;2744:7;2737:14;;;;;:::i;4338:155::-;4433:52;736:10:1;4466:8:3;4476;4433:18;:52::i;4051:63:12:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4093:8:12::1;:15:::0;;-1:-1:-1;;4093:15:12::1;::::0;::::1;::::0;;4051:63::o;5461:328:3:-;5636:41;736:10:1;5669:7:3;5636:18;:41::i;:::-;5628:103;;;;-1:-1:-1;;;5628:103:3;;;;;;;:::i;:::-;5742:39;5756:4;5762:2;5766:7;5775:5;5742:13;:39::i;:::-;5461:328;;;;:::o;612:37:12:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;612:37:12;;-1:-1:-1;612:37:12;:::o;247:::-;;;;;;;:::i;3410:616::-;7364:4:3;7388:16;;;:7;:16;;;;;;3508:13:12;;-1:-1:-1;;;;;7388:16:3;3533:97:12;;;;-1:-1:-1;;;3533:97:12;;16588:2:13;3533:97:12;;;16570:21:13;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;-1:-1:-1;;;16717:18:13;;;16710:45;16772:19;;3533:97:12;16386:411:13;3533:97:12;3646:8;;;;;;;3643:181;;3714:1;3689:14;3683:28;;;;;:::i;:::-;;;:32;:133;;;;;;;;;;;;;;;;;3751:14;3767:18;:7;:16;:18::i;:::-;3787:13;3734:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3676:140;3410:616;-1:-1:-1;;3410:616:12:o;3643:181::-;3832:28;3863:10;:8;:10::i;:::-;3832:41;;3918:1;3893:14;3887:28;:32;:133;;;;;;;;;;;;;;;;;3955:14;3971:18;:7;:16;:18::i;:::-;3991:13;3938:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3887:133;3880:140;3410:616;-1:-1:-1;;;3410:616:12:o;4240:106::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4313:18:12::1;:27:::0;4240:106::o;4800:122::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4883:33:12;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5116:144::-:0;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5191:27:12::1;5198:20;;5191:27;:::i;:::-;5225:29;:20;5248:6:::0;;5225:29:::1;:::i;4570:120::-:0;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4652:32:12;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1972:201:10:-:0;1136:6;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:10;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:10;;10397:2:13;2053:73:10::1;::::0;::::1;10379:21:13::0;10436:2;10416:18;;;10409:30;10475:34;10455:18;;;10448:62;-1:-1:-1;;;10526:18:13;;;10519:36;10572:19;;2053:73:10::1;10195:402:13::0;2053:73:10::1;2137:28;2156:8;2137:18;:28::i;1195:387:0:-:0;1518:20;1566:8;;;1195:387::o;1541:305:3:-;1643:4;-1:-1:-1;;;;;;1680:40:3;;-1:-1:-1;;;1680:40:3;;:105;;-1:-1:-1;;;;;;;1737:48:3;;-1:-1:-1;;;1737:48:3;1680:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:2;;;1802:36:3;854:157:2;11281:174:3;11356:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11356:29:3;-1:-1:-1;;;;;11356:29:3;;;;;;;;:24;;11410:23;11356:24;11410:14;:23::i;:::-;-1:-1:-1;;;;;11401:46:3;;;;;;;;;;;11281:174;;:::o;7593:348::-;7686:4;7388:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7388:16:3;7703:73;;;;-1:-1:-1;;;7703:73:3;;12277:2:13;7703:73:3;;;12259:21:13;12316:2;12296:18;;;12289:30;12355:34;12335:18;;;12328:62;-1:-1:-1;;;12406:18:13;;;12399:42;12458:19;;7703:73:3;12075:408:13;7703:73:3;7787:13;7803:23;7818:7;7803:14;:23::i;:::-;7787:39;;7856:5;-1:-1:-1;;;;;7845:16:3;:7;-1:-1:-1;;;;;7845:16:3;;:51;;;;7889:7;-1:-1:-1;;;;;7865:31:3;:20;7877:7;7865:11;:20::i;:::-;-1:-1:-1;;;;;7865:31:3;;7845:51;:87;;;-1:-1:-1;;;;;;4685:25:3;;;4661:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7900:32;7837:96;7593:348;-1:-1:-1;;;;7593:348:3:o;10585:578::-;10744:4;-1:-1:-1;;;;;10717:31:3;:23;10732:7;10717:14;:23::i;:::-;-1:-1:-1;;;;;10717:31:3;;10709:85;;;;-1:-1:-1;;;10709:85:3;;16178:2:13;10709:85:3;;;16160:21:13;16217:2;16197:18;;;16190:30;16256:34;16236:18;;;16229:62;-1:-1:-1;;;16307:18:13;;;16300:39;16356:19;;10709:85:3;15976:405:13;10709:85:3;-1:-1:-1;;;;;10813:16:3;;10805:65;;;;-1:-1:-1;;;10805:65:3;;11518:2:13;10805:65:3;;;11500:21:13;11557:2;11537:18;;;11530:30;11596:34;11576:18;;;11569:62;-1:-1:-1;;;11647:18:13;;;11640:34;11691:19;;10805:65:3;11316:400:13;10805:65:3;10883:39;10904:4;10910:2;10914:7;10883:20;:39::i;:::-;10987:29;11004:1;11008:7;10987:8;:29::i;:::-;-1:-1:-1;;;;;11029:15:3;;;;;;:9;:15;;;;;:20;;11048:1;;11029:15;:20;;11048:1;;11029:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11060:13:3;;;;;;:9;:13;;;;;:18;;11077:1;;11060:13;:18;;11077:1;;11060:18;:::i;:::-;;;;-1:-1:-1;;11089:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11089:21:3;-1:-1:-1;;;;;11089:21:3;;;;;;;;;11128:27;;11089:16;;11128:27;;;;;;;10585:578;;;:::o;8283:110::-;8359:26;8369:2;8373:7;8359:26;;;;;;;;;;;;:9;:26::i;2333:191:10:-;2426:6;;;-1:-1:-1;;;;;2443:17:10;;;-1:-1:-1;;;;;;2443:17:10;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;11597:315:3:-;11752:8;-1:-1:-1;;;;;11743:17:3;:5;-1:-1:-1;;;;;11743:17:3;;;11735:55;;;;-1:-1:-1;;;11735:55:3;;11923:2:13;11735:55:3;;;11905:21:13;11962:2;11942:18;;;11935:30;12001:27;11981:18;;;11974:55;12046:18;;11735:55:3;11721:349:13;11735:55:3;-1:-1:-1;;;;;11801:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11801:46:3;;;;;;;;;;11863:41;;9088::13;;;11863::3;;9061:18:13;11863:41:3;;;;;;;11597:315;;;:::o;6671:::-;6828:28;6838:4;6844:2;6848:7;6828:9;:28::i;:::-;6875:48;6898:4;6904:2;6908:7;6917:5;6875:22;:48::i;:::-;6867:111;;;;-1:-1:-1;;;6867:111:3;;;;;;;:::i;342:723:11:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:11;;;;;;;;;;;;-1:-1:-1;;;646:10:11;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:11;;-1:-1:-1;798:2:11;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:11;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:11;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:11;;;;;;;;-1:-1:-1;1003:11:11;1012:2;1003:11;;:::i;:::-;;;872:154;;1733:102:12;1793:13;1822:7;1815:14;;;;;:::i;2694:589:4:-;-1:-1:-1;;;;;2900:18:4;;2896:187;;2935:40;2967:7;4110:10;:17;;4083:24;;;;:15;:24;;;;;:44;;;4138:24;;;;;;;;;;;;4006:164;2935:40;2896:187;;;3005:2;-1:-1:-1;;;;;2997:10:4;:4;-1:-1:-1;;;;;2997:10:4;;2993:90;;3024:47;3057:4;3063:7;3024:32;:47::i;:::-;-1:-1:-1;;;;;3097:16:4;;3093:183;;3130:45;3167:7;3130:36;:45::i;3093:183::-;3203:4;-1:-1:-1;;;;;3197:10:4;:2;-1:-1:-1;;;;;3197:10:4;;3193:83;;3224:40;3252:2;3256:7;3224:27;:40::i;8620:321:3:-;8750:18;8756:2;8760:7;8750:5;:18::i;:::-;8801:54;8832:1;8836:2;8840:7;8849:5;8801:22;:54::i;:::-;8779:154;;;;-1:-1:-1;;;8779:154:3;;;;;;;:::i;12477:799::-;12632:4;-1:-1:-1;;;;;12653:13:3;;1518:20:0;1566:8;12649:620:3;;12689:72;;-1:-1:-1;;;12689:72:3;;-1:-1:-1;;;;;12689:36:3;;;;;:72;;736:10:1;;12740:4:3;;12746:7;;12755:5;;12689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12689:72:3;;;;;;;;-1:-1:-1;;12689:72:3;;;;;;;;;;;;:::i;:::-;;;12685:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12931:13:3;;12927:272;;12974:60;;-1:-1:-1;;;12974:60:3;;;;;;;:::i;12927:272::-;13149:6;13143:13;13134:6;13130:2;13126:15;13119:38;12685:529;-1:-1:-1;;;;;;12812:51:3;-1:-1:-1;;;12812:51:3;;-1:-1:-1;12805:58:3;;12649:620;-1:-1:-1;13253:4:3;12477:799;;;;;;:::o;4797:988:4:-;5063:22;5113:1;5088:22;5105:4;5088:16;:22::i;:::-;:26;;;;:::i;:::-;5125:18;5146:26;;;:17;:26;;;;;;5063:51;;-1:-1:-1;5279:28:4;;;5275:328;;-1:-1:-1;;;;;5346:18:4;;5324:19;5346:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5397:30;;;;;;:44;;;5514:30;;:17;:30;;;;;:43;;;5275:328;-1:-1:-1;5699:26:4;;;;:17;:26;;;;;;;;5692:33;;;-1:-1:-1;;;;;5743:18:4;;;;;:12;:18;;;;;:34;;;;;;;5736:41;4797:988::o;6080:1079::-;6358:10;:17;6333:22;;6358:21;;6378:1;;6358:21;:::i;:::-;6390:18;6411:24;;;:15;:24;;;;;;6784:10;:26;;6333:46;;-1:-1:-1;6411:24:4;;6333:46;;6784:26;;;;;;:::i;:::-;;;;;;;;;6762:48;;6848:11;6823:10;6834;6823:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6928:28;;;:15;:28;;;;;;;:41;;;7100:24;;;;;7093:31;7135:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6151:1008;;;6080:1079;:::o;3584:221::-;3669:14;3686:20;3703:2;3686:16;:20::i;:::-;-1:-1:-1;;;;;3717:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3762:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3584:221:4:o;9277:382:3:-;-1:-1:-1;;;;;9357:16:3;;9349:61;;;;-1:-1:-1;;;9349:61:3;;14692:2:13;9349:61:3;;;14674:21:13;;;14711:18;;;14704:30;14770:34;14750:18;;;14743:62;14822:18;;9349:61:3;14490:356:13;9349:61:3;7364:4;7388:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7388:16:3;:30;9421:58;;;;-1:-1:-1;;;9421:58:3;;10804:2:13;9421:58:3;;;10786:21:13;10843:2;10823:18;;;10816:30;10882;10862:18;;;10855:58;10930:18;;9421:58:3;10602:352:13;9421:58:3;9492:45;9521:1;9525:2;9529:7;9492:20;:45::i;:::-;-1:-1:-1;;;;;9550:13:3;;;;;;:9;:13;;;;;:18;;9567:1;;9550:13;:18;;9567:1;;9550:18;:::i;:::-;;;;-1:-1:-1;;9579:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9579:21:3;-1:-1:-1;;;;;9579:21:3;;;;;;;;9618:33;;9579:16;;;9618:33;;9579:16;;9618:33;9277:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:13;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:13;;;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:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:13;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:13:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:13;;-1:-1:-1;;;;2971:615:13:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:13;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:13;;4735:180;-1:-1:-1;4735:180:13:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:13;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:13:o;5182:973::-;5267:12;;5232:3;;5322:1;5342:18;;;;5395;;;;5422:61;;5476:4;5468:6;5464:17;5454:27;;5422:61;5502:2;5550;5542:6;5539:14;5519:18;5516:38;5513:161;;;5596:10;5591:3;5587:20;5584:1;5577:31;5631:4;5628:1;5621:15;5659:4;5656:1;5649:15;5513:161;5690:18;5717:104;;;;5835:1;5830:319;;;;5683:466;;5717:104;-1:-1:-1;;5750:24:13;;5738:37;;5795:16;;;;-1:-1:-1;5717:104:13;;5830:319;19345:1;19338:14;;;19382:4;19369:18;;5924:1;5938:165;5952:6;5949:1;5946:13;5938:165;;;6030:14;;6017:11;;;6010:35;6073:16;;;;5967:10;;5938:165;;;5942:3;;6132:6;6127:3;6123:16;6116:23;;5683:466;;;;;;;5182:973;;;;:::o;6160:550::-;6384:3;6422:6;6416:13;6438:53;6484:6;6479:3;6472:4;6464:6;6460:17;6438:53;:::i;:::-;6554:13;;6513:16;;;;6576:57;6554:13;6513:16;6610:4;6598:17;;6576:57;:::i;:::-;6649:55;6694:8;6687:5;6683:20;6675:6;6649:55;:::i;:::-;6642:62;6160:550;-1:-1:-1;;;;;;;6160:550:13:o;6715:456::-;6936:3;6964:38;6998:3;6990:6;6964:38;:::i;:::-;7031:6;7025:13;7047:52;7092:6;7088:2;7081:4;7073:6;7069:17;7047:52;:::i;7818:488::-;-1:-1:-1;;;;;8087:15:13;;;8069:34;;8139:15;;8134:2;8119:18;;8112:43;8186:2;8171:18;;8164:34;;;8234:3;8229:2;8214:18;;8207:31;;;8012:4;;8255:45;;8280:19;;8272:6;8255:45;:::i;:::-;8247:53;7818:488;-1:-1:-1;;;;;;7818:488:13:o;8311:632::-;8482:2;8534:21;;;8604:13;;8507:18;;;8626:22;;;8453:4;;8482:2;8705:15;;;;8679:2;8664:18;;;8453:4;8748:169;8762:6;8759:1;8756:13;8748:169;;;8823:13;;8811:26;;8892:15;;;;8857:12;;;;8784:1;8777:9;8748:169;;;-1:-1:-1;8934:3:13;;8311:632;-1:-1:-1;;;;;;8311:632:13:o;9140:219::-;9289:2;9278:9;9271:21;9252:4;9309:44;9349:2;9338:9;9334:18;9326:6;9309:44;:::i;9776:414::-;9978:2;9960:21;;;10017:2;9997:18;;;9990:30;10056:34;10051:2;10036:18;;10029:62;-1:-1:-1;;;10122:2:13;10107:18;;10100:48;10180:3;10165:19;;9776:414::o;15264:356::-;15466:2;15448:21;;;15485:18;;;15478:30;15544:34;15539:2;15524:18;;15517:62;15611:2;15596:18;;15264:356::o;17551:413::-;17753:2;17735:21;;;17792:2;17772:18;;;17765:30;17831:34;17826:2;17811:18;;17804:62;-1:-1:-1;;;17897:2:13;17882:18;;17875:47;17954:3;17939:19;;17551:413::o;19398:128::-;19438:3;19469:1;19465:6;19462:1;19459:13;19456:39;;;19475:18;;:::i;:::-;-1:-1:-1;19511:9:13;;19398:128::o;19531:120::-;19571:1;19597;19587:35;;19602:18;;:::i;:::-;-1:-1:-1;19636:9:13;;19531:120::o;19656:168::-;19696:7;19762:1;19758;19754:6;19750:14;19747:1;19744:21;19739:1;19732:9;19725:17;19721:45;19718:71;;;19769:18;;:::i;:::-;-1:-1:-1;19809:9:13;;19656:168::o;19829:125::-;19869:4;19897:1;19894;19891:8;19888:34;;;19902:18;;:::i;:::-;-1:-1:-1;19939:9:13;;19829:125::o;19959:258::-;20031:1;20041:113;20055:6;20052:1;20049:13;20041:113;;;20131:11;;;20125:18;20112:11;;;20105:39;20077:2;20070:10;20041:113;;;20172:6;20169:1;20166:13;20163:48;;;-1:-1:-1;;20207:1:13;20189:16;;20182:27;19959:258::o;20222:380::-;20301:1;20297:12;;;;20344;;;20365:61;;20419:4;20411:6;20407:17;20397:27;;20365:61;20472:2;20464:6;20461:14;20441:18;20438:38;20435:161;;;20518:10;20513:3;20509:20;20506:1;20499:31;20553:4;20550:1;20543:15;20581:4;20578:1;20571:15;20435:161;;20222:380;;;:::o;20607:135::-;20646:3;-1:-1:-1;;20667:17:13;;20664:43;;;20687:18;;:::i;:::-;-1:-1:-1;20734:1:13;20723:13;;20607:135::o;20747:112::-;20779:1;20805;20795:35;;20810:18;;:::i;:::-;-1:-1:-1;20844:9:13;;20747:112::o;20864:127::-;20925:10;20920:3;20916:20;20913:1;20906:31;20956:4;20953:1;20946:15;20980:4;20977:1;20970:15;20996:127;21057:10;21052:3;21048:20;21045:1;21038:31;21088:4;21085:1;21078:15;21112:4;21109:1;21102:15;21128:127;21189:10;21184:3;21180:20;21177:1;21170:31;21220:4;21217:1;21210:15;21244:4;21241:1;21234:15;21260:127;21321:10;21316:3;21312:20;21309:1;21302:31;21352:4;21349:1;21342:15;21376:4;21373:1;21366:15;21392:127;21453:10;21448:3;21444:20;21441:1;21434:31;21484:4;21481:1;21474:15;21508:4;21505:1;21498:15;21524:131;-1:-1:-1;;;;;;21598:32:13;;21588:43;;21578:71;;21645:1;21642;21635:12

Swarm Source

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