ETH Price: $2,102.71 (-10.68%)

Token

MallVerseNFT (MALLVERSE)
 

Overview

Max Total Supply

122 MALLVERSE

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nfttwin.eth
Balance
1 MALLVERSE
0x85349b9830B07dAe1f490fd920dB404E76B671f6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MallverseNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-07
*/

// File: MallVerse/ReentrancyGuard.sol


pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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



pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    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);
    }

    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: MallVerse/Context.sol


pragma solidity ^0.8.0;

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: MallVerse/Ownable.sol



pragma solidity ^0.8.0;


abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: MallVerse/Address.sol


pragma solidity ^0.8.1;

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    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");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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");
    }

    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);
    }

    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    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);
    }

    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    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);
    }

    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: MallVerse/IERC721Receiver.sol



pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: MallVerse/IERC165.sol



pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: MallVerse/ERC165.sol


pragma solidity ^0.8.0;


/**
 * @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: MallVerse/IERC721.sol



pragma solidity ^0.8.0;


interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: MallVerse/IERC721Metadata.sol



pragma solidity ^0.8.0;


interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: MallVerse/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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: MallVerse/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    // require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

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

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: MallVerse/MerkleProof.sol


pragma solidity ^0.8.0;

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: MallVerse/mallverse.sol


pragma solidity ^0.8.7;





contract MallverseNFT is Ownable, ERC721A, ReentrancyGuard {
    uint256 private constant _publicPrice = 0.07 ether; // 0.07 LIVE
    uint256 private constant _presalePrice = 0.07 ether;
    uint256 public whitelistStartTime = 1657220400; // 1657220400 = 3PM EST
    uint256 public publicStartTime = 1657242000; //1657242000 = 9PM EST

    uint256 private constant _maxPurchaseDuringWhitelist = 1;
    uint256 private constant _maxPerTransaction = 1;
    uint256 private _maxMint = 1000;
    address private _team = 0x9ab25504C44fC11A82e9aE36f94bda249092130d;
    bytes32 public merkleRoot = 0x855ee37575b916d65220e8e6f3086750af193aa9d2522907720bbec013060933;
    mapping(address => uint256) public presaleAddressMintCount;
    bool public isPaused = false;
    string private _tokenURI = "ipfs://QmWLaQSWg6v1mwu2KH5hsveSZ1GN7pjRW9ntqkEW9n5rCH/";

    constructor() ERC721A("MallVerseNFT", "MALLVERSE", _maxPerTransaction, _maxMint) {}

    function setWhitelistStartTime(uint256 time) external onlyOwner {
        whitelistStartTime = time;
    }

    function setPublicStartTime(uint256 time) external onlyOwner {
        publicStartTime = time;
    }

    function pause() external onlyOwner {
        isPaused = true;
    }

    function unpause() external onlyOwner {
        isPaused = false;
    }

    modifier mintGuard(uint256 tokenCount) {
        require(!isPaused, "Sale has not started!");
        require(tokenCount > 0 && tokenCount <= _maxPerTransaction, "Max one per transaction");
        require(msg.sender == tx.origin, "Sender not origin");
        // Price check
        if (block.timestamp > publicStartTime) {
            require(_publicPrice * tokenCount <= msg.value, "Insufficient funds");
        } else {
            require(_presalePrice * tokenCount <= msg.value, "Insufficient funds");
        }
        require(totalSupply() + tokenCount <= _maxMint+1, "Sold out!");
        _;
    }

    function mint(uint256 amount) external payable mintGuard(amount) {
        require(block.timestamp > publicStartTime, "Sale has not started!");
        _safeMint(msg.sender, amount);
    }

    function mintPresale(bytes32[] calldata proof, uint256 amount) external payable mintGuard(amount) {
        require(block.timestamp > whitelistStartTime, "Whitelist mint has not started!");
        require(presaleAddressMintCount[msg.sender] + amount <= _maxPurchaseDuringWhitelist, "Only one Mallverse NFT can be minted during the whitelist period.");
        require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not eligible for presale");

        presaleAddressMintCount[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function cashout() external onlyOwner {
        payable(_team).transfer(address(this).balance);
    }

    function setCashout(address addr) external onlyOwner returns(address) {
        _team = addr;
        return addr;
    }

    function devMint(uint32 qty) external onlyOwner {
        _safeMint(msg.sender, qty);
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    function setMaxMint(uint256 maxMint) external onlyOwner {
        _maxMint = maxMint;
    }

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"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":"cashout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"qty","type":"uint32"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setCashout","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setPublicStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setWhitelistStartTime","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

600060018190556008556362c72d30600a556362c78190600b556103e8600c55600d80546001600160a01b031916739ab25504c44fc11a82e9ae36f94bda249092130d1790557f855ee37575b916d65220e8e6f3086750af193aa9d2522907720bbec013060933600e556010805460ff19169055610120604052603660c08181529062002c2b60e03980516200009e9160119160209091019062000278565b50348015620000ac57600080fd5b506040518060400160405280600c81526020016b13585b1b15995c9cd953919560a21b815250604051806040016040528060098152602001684d414c4c564552534560b81b8152506001600c54620001136200010d6200022460201b60201c565b62000228565b60008111620001805760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001e25760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000177565b8351620001f790600290602087019062000278565b5082516200020d90600390602086019062000278565b5060a091909152608052505060016009556200035b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000286906200031e565b90600052602060002090601f016020900481019282620002aa5760008555620002f5565b82601f10620002c557805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f5578251825591602001919060010190620002d8565b506200030392915062000307565b5090565b5b8082111562000303576000815560010162000308565b600181811c908216806200033357607f821691505b602082108114156200035557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128a66200038560003960008181611a730152611a9d0152600050506128a66000f3fe60806040526004361061021a5760003560e01c80637cb6475911610123578063ad7f1ea1116100ab578063c87b56dd1161006f578063c87b56dd146105e5578063d7224ba014610605578063db8cc8fa1461061b578063e985e9c51461063b578063f2fde38b1461068457600080fd5b8063ad7f1ea114610558578063b187bd261461056b578063b3c11d3a14610585578063b88d4fde146105a5578063c75a20b3146105c557600080fd5b80638da5cb5b116100f25780638da5cb5b146104dc5780639292caaf146104fa57806395d89b4114610510578063a0712d6814610525578063a22cb4651461053857600080fd5b80637cb64759146104655780637db5a6361461048557806384054d3d146104b25780638456cb59146104c757600080fd5b80633f4ba83a116101a657806355f804b31161017557806355f804b3146103da5780635fd1bbc4146103fa5780636352211e1461041057806370a0823114610430578063715018a61461045057600080fd5b80633f4ba83a1461036557806342842e0e1461037a5780634f6ccce71461039a578063547520fe146103ba57600080fd5b806318160ddd116101ed57806318160ddd146102d05780631c0ce3d3146102ef57806323b872dd1461030f5780632eb4a7ab1461032f5780632f745c591461034557600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612449565b6106a4565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610711565b60405161024b91906125b3565b34801561028257600080fd5b50610296610291366004612430565b6107a3565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461238b565b610833565b005b3480156102dc57600080fd5b506001545b60405190815260200161024b565b3480156102fb57600080fd5b506102ce61030a366004612430565b61094b565b34801561031b57600080fd5b506102ce61032a366004612237565b61097a565b34801561033b57600080fd5b506102e1600e5481565b34801561035157600080fd5b506102e161036036600461238b565b610985565b34801561037157600080fd5b506102ce610afe565b34801561038657600080fd5b506102ce610395366004612237565b610b34565b3480156103a657600080fd5b506102e16103b5366004612430565b610b4f565b3480156103c657600080fd5b506102ce6103d5366004612430565b610bb8565b3480156103e657600080fd5b506102ce6103f5366004612483565b610be7565b34801561040657600080fd5b506102e1600b5481565b34801561041c57600080fd5b5061029661042b366004612430565b610c1d565b34801561043c57600080fd5b506102e161044b3660046121e9565b610c2f565b34801561045c57600080fd5b506102ce610cc0565b34801561047157600080fd5b506102ce610480366004612430565b610cf6565b34801561049157600080fd5b506102e16104a03660046121e9565b600f6020526000908152604090205481565b3480156104be57600080fd5b506102ce610d25565b3480156104d357600080fd5b506102ce610d8b565b3480156104e857600080fd5b506000546001600160a01b0316610296565b34801561050657600080fd5b506102e1600a5481565b34801561051c57600080fd5b50610269610dc4565b6102ce610533366004612430565b610dd3565b34801561054457600080fd5b506102ce61055336600461234f565b610f8c565b6102ce6105663660046123b5565b611051565b34801561057757600080fd5b5060105461023f9060ff1681565b34801561059157600080fd5b506102ce6105a03660046124f5565b6113be565b3480156105b157600080fd5b506102ce6105c0366004612273565b6113f8565b3480156105d157600080fd5b506102966105e03660046121e9565b61142b565b3480156105f157600080fd5b50610269610600366004612430565b611479565b34801561061157600080fd5b506102e160085481565b34801561062757600080fd5b506102ce610636366004612430565b611546565b34801561064757600080fd5b5061023f610656366004612204565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069057600080fd5b506102ce61069f3660046121e9565b611575565b60006001600160e01b031982166380ac58cd60e01b14806106d557506001600160e01b03198216635b5e139f60e01b145b806106f057506001600160e01b0319821663780e9d6360e01b145b8061070b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072090612798565b80601f016020809104026020016040519081016040528092919081815260200182805461074c90612798565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107b0826001541190565b6108175760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083e82610c1d565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080e565b336001600160a01b03821614806108c957506108c98133610656565b61093b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080e565b61094683838361160d565b505050565b6000546001600160a01b031633146109755760405162461bcd60e51b815260040161080e90612621565b600a55565b610946838383611669565b600061099083610c2f565b82106109e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080e565b60006109f460015490565b905060008060005b83811015610a9e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4f57805192505b876001600160a01b0316836001600160a01b03161415610a8b5786841415610a7d5750935061070b92505050565b83610a87816127d3565b9450505b5080610a96816127d3565b9150506109fc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080e565b6000546001600160a01b03163314610b285760405162461bcd60e51b815260040161080e90612621565b6010805460ff19169055565b610946838383604051806020016040528060008152506113f8565b6000610b5a60015490565b8210610bb45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080e565b5090565b6000546001600160a01b03163314610be25760405162461bcd60e51b815260040161080e90612621565b600c55565b6000546001600160a01b03163314610c115760405162461bcd60e51b815260040161080e90612621565b61094660118383612142565b6000610c28826119f1565b5192915050565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cea5760405162461bcd60e51b815260040161080e90612621565b610cf46000611b9b565b565b6000546001600160a01b03163314610d205760405162461bcd60e51b815260040161080e90612621565b600e55565b6000546001600160a01b03163314610d4f5760405162461bcd60e51b815260040161080e90612621565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d88573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610db55760405162461bcd60e51b815260040161080e90612621565b6010805460ff19166001179055565b60606003805461072090612798565b601054819060ff1615610df85760405162461bcd60e51b815260040161080e906125f2565b600081118015610e09575060018111155b610e4f5760405162461bcd60e51b815260206004820152601760248201527626b0bc1037b732903832b9103a3930b739b0b1ba34b7b760491b604482015260640161080e565b333214610e925760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b604482015260640161080e565b600b54421115610ed15734610eae8266f8b0a10e4700006126f7565b1115610ecc5760405162461bcd60e51b815260040161080e906125c6565b610f01565b34610ee38266f8b0a10e4700006126f7565b1115610f015760405162461bcd60e51b815260040161080e906125c6565b600c54610f0f9060016126cb565b81610f1960015490565b610f2391906126cb565b1115610f5d5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161080e565b600b544211610f7e5760405162461bcd60e51b815260040161080e906125f2565b610f883383611beb565b5050565b6001600160a01b038216331415610fe55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054819060ff16156110765760405162461bcd60e51b815260040161080e906125f2565b600081118015611087575060018111155b6110cd5760405162461bcd60e51b815260206004820152601760248201527626b0bc1037b732903832b9103a3930b739b0b1ba34b7b760491b604482015260640161080e565b3332146111105760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b604482015260640161080e565b600b5442111561114f573461112c8266f8b0a10e4700006126f7565b111561114a5760405162461bcd60e51b815260040161080e906125c6565b61117f565b346111618266f8b0a10e4700006126f7565b111561117f5760405162461bcd60e51b815260040161080e906125c6565b600c5461118d9060016126cb565b8161119760015490565b6111a191906126cb565b11156111db5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161080e565b600a54421161122c5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465642100604482015260640161080e565b336000908152600f602052604090205460019061124a9084906126cb565b11156112c85760405162461bcd60e51b815260206004820152604160248201527f4f6e6c79206f6e65204d616c6c7665727365204e46542063616e206265206d6960448201527f6e74656420647572696e67207468652077686974656c69737420706572696f646064820152601760f91b608482015260a40161080e565b61133d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c05565b6113895760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f722070726573616c650000000000000000604482015260640161080e565b336000908152600f6020526040812080548492906113a89084906126cb565b909155506113b890503383611beb565b50505050565b6000546001600160a01b031633146113e85760405162461bcd60e51b815260040161080e90612621565b610d88338263ffffffff16611beb565b611403848484611669565b61140f84848484611c1b565b6113b85760405162461bcd60e51b815260040161080e90612656565b600080546001600160a01b031633146114565760405162461bcd60e51b815260040161080e90612621565b50600d80546001600160a01b0319166001600160a01b038316179055805b919050565b6060611486826001541190565b6114ea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60006114f4611d29565b90506000815111611514576040518060200160405280600081525061153f565b8061151e84611d38565b60405160200161152f929190612547565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115705760405162461bcd60e51b815260040161080e90612621565b600b55565b6000546001600160a01b0316331461159f5760405162461bcd60e51b815260040161080e90612621565b6001600160a01b0381166116045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610d8881611b9b565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611674826119f1565b80519091506000906001600160a01b0316336001600160a01b031614806116ab5750336116a0846107a3565b6001600160a01b0316145b806116bd575081516116bd9033610656565b9050806117275760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080e565b846001600160a01b031682600001516001600160a01b03161461179b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080e565b6001600160a01b0384166117ff5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b61180f600084846000015161160d565b6001600160a01b03851660009081526005602052604081208054600192906118419084906001600160801b0316612716565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261188d918591166126a9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119158460016126cb565b6000818152600460205260409020549091506001600160a01b03166119a75761193f816001541190565b156119a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a10826001541190565b611a6f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080e565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ad057611ac27f00000000000000000000000000000000000000000000000000000000000000008461273e565b611acd9060016126cb565b90505b825b818110611b3a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2757949350505050565b5080611b3281612781565b915050611ad2565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161080e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f88828260405180602001604052806000815250611e36565b600082611c128584612096565b14949350505050565b60006001600160a01b0384163b15611d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5f903390899088908890600401612576565b602060405180830381600087803b158015611c7957600080fd5b505af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190612466565b60015b611d03573d808015611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b508051611cfb5760405162461bcd60e51b815260040161080e90612656565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d21565b5060015b949350505050565b60606011805461072090612798565b606081611d5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d865780611d70816127d3565b9150611d7f9050600a836126e3565b9150611d60565b60008167ffffffffffffffff811115611da157611da1612844565b6040519080825280601f01601f191660200182016040528015611dcb576020820181803683370190505b5090505b8415611d2157611de060018361273e565b9150611ded600a866127ee565b611df89060306126cb565b60f81b818381518110611e0d57611e0d61282e565b60200101906001600160f81b031916908160001a905350611e2f600a866126e3565b9450611dcf565b6001546001600160a01b038416611e995760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080e565b611ea4816001541190565b15611ef15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f4d9087906126a9565b6001600160801b03168152602001858360200151611f6b91906126a9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561208b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461204f6000888488611c1b565b61206b5760405162461bcd60e51b815260040161080e90612656565b81612075816127d3565b9250508080612083906127d3565b915050612002565b5060018190556119e9565b600081815b845181101561213a5760008582815181106120b8576120b861282e565b602002602001015190508083116120fa576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612127565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612132816127d3565b91505061209b565b509392505050565b82805461214e90612798565b90600052602060002090601f01602090048101928261217057600085556121b6565b82601f106121895782800160ff198235161785556121b6565b828001600101855582156121b6579182015b828111156121b657823582559160200191906001019061219b565b50610bb49291505b80821115610bb457600081556001016121be565b80356001600160a01b038116811461147457600080fd5b6000602082840312156121fb57600080fd5b61153f826121d2565b6000806040838503121561221757600080fd5b612220836121d2565b915061222e602084016121d2565b90509250929050565b60008060006060848603121561224c57600080fd5b612255846121d2565b9250612263602085016121d2565b9150604084013590509250925092565b6000806000806080858703121561228957600080fd5b612292856121d2565b93506122a0602086016121d2565b925060408501359150606085013567ffffffffffffffff808211156122c457600080fd5b818701915087601f8301126122d857600080fd5b8135818111156122ea576122ea612844565b604051601f8201601f19908116603f0116810190838211818310171561231257612312612844565b816040528281528a602084870101111561232b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561236257600080fd5b61236b836121d2565b91506020830135801515811461238057600080fd5b809150509250929050565b6000806040838503121561239e57600080fd5b6123a7836121d2565b946020939093013593505050565b6000806000604084860312156123ca57600080fd5b833567ffffffffffffffff808211156123e257600080fd5b818601915086601f8301126123f657600080fd5b81358181111561240557600080fd5b8760208260051b850101111561241a57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561244257600080fd5b5035919050565b60006020828403121561245b57600080fd5b813561153f8161285a565b60006020828403121561247857600080fd5b815161153f8161285a565b6000806020838503121561249657600080fd5b823567ffffffffffffffff808211156124ae57600080fd5b818501915085601f8301126124c257600080fd5b8135818111156124d157600080fd5b8660208285010111156124e357600080fd5b60209290920196919550909350505050565b60006020828403121561250757600080fd5b813563ffffffff8116811461153f57600080fd5b60008151808452612533816020860160208601612755565b601f01601f19169290920160200192915050565b60008351612559818460208801612755565b83519083019061256d818360208801612755565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a99083018461251b565b9695505050505050565b60208152600061153f602083018461251b565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526015908201527453616c6520686173206e6f7420737461727465642160581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561256d5761256d612802565b600082198211156126de576126de612802565b500190565b6000826126f2576126f2612818565b500490565b600081600019048311821515161561271157612711612802565b500290565b60006001600160801b038381169083168181101561273657612736612802565b039392505050565b60008282101561275057612750612802565b500390565b60005b83811015612770578181015183820152602001612758565b838111156113b85750506000910152565b60008161279057612790612802565b506000190190565b600181811c908216806127ac57607f821691505b602082108114156127cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e7576127e7612802565b5060010190565b6000826127fd576127fd612818565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8857600080fdfea264697066735822122017cb54637f3e0cc5da2e9dd4ee2d8458baa34903996432cf25ca5f2abb6df9b664736f6c63430008070033697066733a2f2f516d574c61515357673676316d7775324b483568737665535a31474e37706a5257396e74716b4557396e357243482f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637cb6475911610123578063ad7f1ea1116100ab578063c87b56dd1161006f578063c87b56dd146105e5578063d7224ba014610605578063db8cc8fa1461061b578063e985e9c51461063b578063f2fde38b1461068457600080fd5b8063ad7f1ea114610558578063b187bd261461056b578063b3c11d3a14610585578063b88d4fde146105a5578063c75a20b3146105c557600080fd5b80638da5cb5b116100f25780638da5cb5b146104dc5780639292caaf146104fa57806395d89b4114610510578063a0712d6814610525578063a22cb4651461053857600080fd5b80637cb64759146104655780637db5a6361461048557806384054d3d146104b25780638456cb59146104c757600080fd5b80633f4ba83a116101a657806355f804b31161017557806355f804b3146103da5780635fd1bbc4146103fa5780636352211e1461041057806370a0823114610430578063715018a61461045057600080fd5b80633f4ba83a1461036557806342842e0e1461037a5780634f6ccce71461039a578063547520fe146103ba57600080fd5b806318160ddd116101ed57806318160ddd146102d05780631c0ce3d3146102ef57806323b872dd1461030f5780632eb4a7ab1461032f5780632f745c591461034557600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612449565b6106a4565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610711565b60405161024b91906125b3565b34801561028257600080fd5b50610296610291366004612430565b6107a3565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461238b565b610833565b005b3480156102dc57600080fd5b506001545b60405190815260200161024b565b3480156102fb57600080fd5b506102ce61030a366004612430565b61094b565b34801561031b57600080fd5b506102ce61032a366004612237565b61097a565b34801561033b57600080fd5b506102e1600e5481565b34801561035157600080fd5b506102e161036036600461238b565b610985565b34801561037157600080fd5b506102ce610afe565b34801561038657600080fd5b506102ce610395366004612237565b610b34565b3480156103a657600080fd5b506102e16103b5366004612430565b610b4f565b3480156103c657600080fd5b506102ce6103d5366004612430565b610bb8565b3480156103e657600080fd5b506102ce6103f5366004612483565b610be7565b34801561040657600080fd5b506102e1600b5481565b34801561041c57600080fd5b5061029661042b366004612430565b610c1d565b34801561043c57600080fd5b506102e161044b3660046121e9565b610c2f565b34801561045c57600080fd5b506102ce610cc0565b34801561047157600080fd5b506102ce610480366004612430565b610cf6565b34801561049157600080fd5b506102e16104a03660046121e9565b600f6020526000908152604090205481565b3480156104be57600080fd5b506102ce610d25565b3480156104d357600080fd5b506102ce610d8b565b3480156104e857600080fd5b506000546001600160a01b0316610296565b34801561050657600080fd5b506102e1600a5481565b34801561051c57600080fd5b50610269610dc4565b6102ce610533366004612430565b610dd3565b34801561054457600080fd5b506102ce61055336600461234f565b610f8c565b6102ce6105663660046123b5565b611051565b34801561057757600080fd5b5060105461023f9060ff1681565b34801561059157600080fd5b506102ce6105a03660046124f5565b6113be565b3480156105b157600080fd5b506102ce6105c0366004612273565b6113f8565b3480156105d157600080fd5b506102966105e03660046121e9565b61142b565b3480156105f157600080fd5b50610269610600366004612430565b611479565b34801561061157600080fd5b506102e160085481565b34801561062757600080fd5b506102ce610636366004612430565b611546565b34801561064757600080fd5b5061023f610656366004612204565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069057600080fd5b506102ce61069f3660046121e9565b611575565b60006001600160e01b031982166380ac58cd60e01b14806106d557506001600160e01b03198216635b5e139f60e01b145b806106f057506001600160e01b0319821663780e9d6360e01b145b8061070b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072090612798565b80601f016020809104026020016040519081016040528092919081815260200182805461074c90612798565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107b0826001541190565b6108175760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083e82610c1d565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080e565b336001600160a01b03821614806108c957506108c98133610656565b61093b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080e565b61094683838361160d565b505050565b6000546001600160a01b031633146109755760405162461bcd60e51b815260040161080e90612621565b600a55565b610946838383611669565b600061099083610c2f565b82106109e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080e565b60006109f460015490565b905060008060005b83811015610a9e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4f57805192505b876001600160a01b0316836001600160a01b03161415610a8b5786841415610a7d5750935061070b92505050565b83610a87816127d3565b9450505b5080610a96816127d3565b9150506109fc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080e565b6000546001600160a01b03163314610b285760405162461bcd60e51b815260040161080e90612621565b6010805460ff19169055565b610946838383604051806020016040528060008152506113f8565b6000610b5a60015490565b8210610bb45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080e565b5090565b6000546001600160a01b03163314610be25760405162461bcd60e51b815260040161080e90612621565b600c55565b6000546001600160a01b03163314610c115760405162461bcd60e51b815260040161080e90612621565b61094660118383612142565b6000610c28826119f1565b5192915050565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cea5760405162461bcd60e51b815260040161080e90612621565b610cf46000611b9b565b565b6000546001600160a01b03163314610d205760405162461bcd60e51b815260040161080e90612621565b600e55565b6000546001600160a01b03163314610d4f5760405162461bcd60e51b815260040161080e90612621565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d88573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610db55760405162461bcd60e51b815260040161080e90612621565b6010805460ff19166001179055565b60606003805461072090612798565b601054819060ff1615610df85760405162461bcd60e51b815260040161080e906125f2565b600081118015610e09575060018111155b610e4f5760405162461bcd60e51b815260206004820152601760248201527626b0bc1037b732903832b9103a3930b739b0b1ba34b7b760491b604482015260640161080e565b333214610e925760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b604482015260640161080e565b600b54421115610ed15734610eae8266f8b0a10e4700006126f7565b1115610ecc5760405162461bcd60e51b815260040161080e906125c6565b610f01565b34610ee38266f8b0a10e4700006126f7565b1115610f015760405162461bcd60e51b815260040161080e906125c6565b600c54610f0f9060016126cb565b81610f1960015490565b610f2391906126cb565b1115610f5d5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161080e565b600b544211610f7e5760405162461bcd60e51b815260040161080e906125f2565b610f883383611beb565b5050565b6001600160a01b038216331415610fe55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054819060ff16156110765760405162461bcd60e51b815260040161080e906125f2565b600081118015611087575060018111155b6110cd5760405162461bcd60e51b815260206004820152601760248201527626b0bc1037b732903832b9103a3930b739b0b1ba34b7b760491b604482015260640161080e565b3332146111105760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b604482015260640161080e565b600b5442111561114f573461112c8266f8b0a10e4700006126f7565b111561114a5760405162461bcd60e51b815260040161080e906125c6565b61117f565b346111618266f8b0a10e4700006126f7565b111561117f5760405162461bcd60e51b815260040161080e906125c6565b600c5461118d9060016126cb565b8161119760015490565b6111a191906126cb565b11156111db5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161080e565b600a54421161122c5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465642100604482015260640161080e565b336000908152600f602052604090205460019061124a9084906126cb565b11156112c85760405162461bcd60e51b815260206004820152604160248201527f4f6e6c79206f6e65204d616c6c7665727365204e46542063616e206265206d6960448201527f6e74656420647572696e67207468652077686974656c69737420706572696f646064820152601760f91b608482015260a40161080e565b61133d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c05565b6113895760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f722070726573616c650000000000000000604482015260640161080e565b336000908152600f6020526040812080548492906113a89084906126cb565b909155506113b890503383611beb565b50505050565b6000546001600160a01b031633146113e85760405162461bcd60e51b815260040161080e90612621565b610d88338263ffffffff16611beb565b611403848484611669565b61140f84848484611c1b565b6113b85760405162461bcd60e51b815260040161080e90612656565b600080546001600160a01b031633146114565760405162461bcd60e51b815260040161080e90612621565b50600d80546001600160a01b0319166001600160a01b038316179055805b919050565b6060611486826001541190565b6114ea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60006114f4611d29565b90506000815111611514576040518060200160405280600081525061153f565b8061151e84611d38565b60405160200161152f929190612547565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115705760405162461bcd60e51b815260040161080e90612621565b600b55565b6000546001600160a01b0316331461159f5760405162461bcd60e51b815260040161080e90612621565b6001600160a01b0381166116045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610d8881611b9b565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611674826119f1565b80519091506000906001600160a01b0316336001600160a01b031614806116ab5750336116a0846107a3565b6001600160a01b0316145b806116bd575081516116bd9033610656565b9050806117275760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080e565b846001600160a01b031682600001516001600160a01b03161461179b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080e565b6001600160a01b0384166117ff5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b61180f600084846000015161160d565b6001600160a01b03851660009081526005602052604081208054600192906118419084906001600160801b0316612716565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261188d918591166126a9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119158460016126cb565b6000818152600460205260409020549091506001600160a01b03166119a75761193f816001541190565b156119a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a10826001541190565b611a6f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080e565b60007f00000000000000000000000000000000000000000000000000000000000000018310611ad057611ac27f00000000000000000000000000000000000000000000000000000000000000018461273e565b611acd9060016126cb565b90505b825b818110611b3a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2757949350505050565b5080611b3281612781565b915050611ad2565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161080e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f88828260405180602001604052806000815250611e36565b600082611c128584612096565b14949350505050565b60006001600160a01b0384163b15611d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5f903390899088908890600401612576565b602060405180830381600087803b158015611c7957600080fd5b505af1925050508015611ca9575060408051601f3d908101601f19168201909252611ca691810190612466565b60015b611d03573d808015611cd7576040519150601f19603f3d011682016040523d82523d6000602084013e611cdc565b606091505b508051611cfb5760405162461bcd60e51b815260040161080e90612656565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d21565b5060015b949350505050565b60606011805461072090612798565b606081611d5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d865780611d70816127d3565b9150611d7f9050600a836126e3565b9150611d60565b60008167ffffffffffffffff811115611da157611da1612844565b6040519080825280601f01601f191660200182016040528015611dcb576020820181803683370190505b5090505b8415611d2157611de060018361273e565b9150611ded600a866127ee565b611df89060306126cb565b60f81b818381518110611e0d57611e0d61282e565b60200101906001600160f81b031916908160001a905350611e2f600a866126e3565b9450611dcf565b6001546001600160a01b038416611e995760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080e565b611ea4816001541190565b15611ef15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f4d9087906126a9565b6001600160801b03168152602001858360200151611f6b91906126a9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561208b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461204f6000888488611c1b565b61206b5760405162461bcd60e51b815260040161080e90612656565b81612075816127d3565b9250508080612083906127d3565b915050612002565b5060018190556119e9565b600081815b845181101561213a5760008582815181106120b8576120b861282e565b602002602001015190508083116120fa576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612127565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612132816127d3565b91505061209b565b509392505050565b82805461214e90612798565b90600052602060002090601f01602090048101928261217057600085556121b6565b82601f106121895782800160ff198235161785556121b6565b828001600101855582156121b6579182015b828111156121b657823582559160200191906001019061219b565b50610bb49291505b80821115610bb457600081556001016121be565b80356001600160a01b038116811461147457600080fd5b6000602082840312156121fb57600080fd5b61153f826121d2565b6000806040838503121561221757600080fd5b612220836121d2565b915061222e602084016121d2565b90509250929050565b60008060006060848603121561224c57600080fd5b612255846121d2565b9250612263602085016121d2565b9150604084013590509250925092565b6000806000806080858703121561228957600080fd5b612292856121d2565b93506122a0602086016121d2565b925060408501359150606085013567ffffffffffffffff808211156122c457600080fd5b818701915087601f8301126122d857600080fd5b8135818111156122ea576122ea612844565b604051601f8201601f19908116603f0116810190838211818310171561231257612312612844565b816040528281528a602084870101111561232b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561236257600080fd5b61236b836121d2565b91506020830135801515811461238057600080fd5b809150509250929050565b6000806040838503121561239e57600080fd5b6123a7836121d2565b946020939093013593505050565b6000806000604084860312156123ca57600080fd5b833567ffffffffffffffff808211156123e257600080fd5b818601915086601f8301126123f657600080fd5b81358181111561240557600080fd5b8760208260051b850101111561241a57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561244257600080fd5b5035919050565b60006020828403121561245b57600080fd5b813561153f8161285a565b60006020828403121561247857600080fd5b815161153f8161285a565b6000806020838503121561249657600080fd5b823567ffffffffffffffff808211156124ae57600080fd5b818501915085601f8301126124c257600080fd5b8135818111156124d157600080fd5b8660208285010111156124e357600080fd5b60209290920196919550909350505050565b60006020828403121561250757600080fd5b813563ffffffff8116811461153f57600080fd5b60008151808452612533816020860160208601612755565b601f01601f19169290920160200192915050565b60008351612559818460208801612755565b83519083019061256d818360208801612755565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a99083018461251b565b9695505050505050565b60208152600061153f602083018461251b565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526015908201527453616c6520686173206e6f7420737461727465642160581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561256d5761256d612802565b600082198211156126de576126de612802565b500190565b6000826126f2576126f2612818565b500490565b600081600019048311821515161561271157612711612802565b500290565b60006001600160801b038381169083168181101561273657612736612802565b039392505050565b60008282101561275057612750612802565b500390565b60005b83811015612770578181015183820152602001612758565b838111156113b85750506000910152565b60008161279057612790612802565b506000190190565b600181811c908216806127ac57607f821691505b602082108114156127cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e7576127e7612802565b5060010190565b6000826127fd576127fd612818565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8857600080fdfea264697066735822122017cb54637f3e0cc5da2e9dd4ee2d8458baa34903996432cf25ca5f2abb6df9b664736f6c63430008070033

Deployed Bytecode Sourcemap

29790:3529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15724:370;;;;;;;;;;-1:-1:-1;15724:370:0;;;;;:::i;:::-;;:::i;:::-;;;7270:14:1;;7263:22;7245:41;;7233:2;7218:18;15724:370:0;;;;;;;;17450:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18975:204::-;;;;;;;;;;-1:-1:-1;18975:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6568:32:1;;;6550:51;;6538:2;6523:18;18975:204:0;6404:203:1;18538:379:0;;;;;;;;;;-1:-1:-1;18538:379:0;;;;;:::i;:::-;;:::i;:::-;;14285:94;;;;;;;;;;-1:-1:-1;14361:12:0;;14285:94;;;7443:25:1;;;7431:2;7416:18;14285:94:0;7297:177:1;30748:108:0;;;;;;;;;;-1:-1:-1;30748:108:0;;;;;:::i;:::-;;:::i;19825:142::-;;;;;;;;;;-1:-1:-1;19825:142:0;;;;;:::i;:::-;;:::i;30364:94::-;;;;;;;;;;;;;;;;14916:744;;;;;;;;;;-1:-1:-1;14916:744:0;;;;;:::i;:::-;;:::i;31052:73::-;;;;;;;;;;;;;:::i;20030:157::-;;;;;;;;;;-1:-1:-1;20030:157:0;;;;;:::i;:::-;;:::i;14448:177::-;;;;;;;;;;-1:-1:-1;14448:177:0;;;;;:::i;:::-;;:::i;32995:93::-;;;;;;;;;;-1:-1:-1;32995:93:0;;;;;:::i;:::-;;:::i;33096:102::-;;;;;;;;;;-1:-1:-1;33096:102:0;;;;;:::i;:::-;;:::i;30061:43::-;;;;;;;;;;;;;;;;17273:118;;;;;;;;;;-1:-1:-1;17273:118:0;;;;;:::i;:::-;;:::i;16150:211::-;;;;;;;;;;-1:-1:-1;16150:211:0;;;;;:::i;:::-;;:::i;3863:103::-;;;;;;;;;;;;;:::i;32895:92::-;;;;;;;;;;-1:-1:-1;32895:92:0;;;;;:::i;:::-;;:::i;30465:58::-;;;;;;;;;;-1:-1:-1;30465:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;32552:103;;;;;;;;;;;;;:::i;30974:70::-;;;;;;;;;;;;;:::i;3640:87::-;;;;;;;;;;-1:-1:-1;3686:7:0;3713:6;-1:-1:-1;;;;;3713:6:0;3640:87;;29984:46;;;;;;;;;;;;;;;;17605:98;;;;;;;;;;;;;:::i;31760:191::-;;;;;;:::i;:::-;;:::i;19243:274::-;;;;;;;;;;-1:-1:-1;19243:274:0;;;;;:::i;:::-;;:::i;31959:585::-;;;;;;:::i;:::-;;:::i;30530:28::-;;;;;;;;;;-1:-1:-1;30530:28:0;;;;;;;;32794:93;;;;;;;;;;-1:-1:-1;32794:93:0;;;;;:::i;:::-;;:::i;20250:311::-;;;;;;;;;;-1:-1:-1;20250:311:0;;;;;:::i;:::-;;:::i;32663:123::-;;;;;;;;;;-1:-1:-1;32663:123:0;;;;;:::i;:::-;;:::i;17766:394::-;;;;;;;;;;-1:-1:-1;17766:394:0;;;;;:::i;:::-;;:::i;24668:43::-;;;;;;;;;;;;;;;;30864:102;;;;;;;;;;-1:-1:-1;30864:102:0;;;;;:::i;:::-;;:::i;19580:186::-;;;;;;;;;;-1:-1:-1;19580:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;19725:25:0;;;19702:4;19725:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19580:186;3974:201;;;;;;;;;;-1:-1:-1;3974:201:0;;;;;:::i;:::-;;:::i;15724:370::-;15851:4;-1:-1:-1;;;;;;15881:40:0;;-1:-1:-1;;;15881:40:0;;:99;;-1:-1:-1;;;;;;;15932:48:0;;-1:-1:-1;;;15932:48:0;15881:99;:160;;;-1:-1:-1;;;;;;;15991:50:0;;-1:-1:-1;;;15991:50:0;15881:160;:207;;;-1:-1:-1;;;;;;;;;;9384:40:0;;;16052:36;15867:221;15724:370;-1:-1:-1;;15724:370:0:o;17450:94::-;17504:13;17533:5;17526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17450:94;:::o;18975:204::-;19043:7;19067:16;19075:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;19067:16;19059:74;;;;-1:-1:-1;;;19059:74:0;;16901:2:1;19059:74:0;;;16883:21:1;16940:2;16920:18;;;16913:30;16979:34;16959:18;;;16952:62;-1:-1:-1;;;17030:18:1;;;17023:43;17083:19;;19059:74:0;;;;;;;;;-1:-1:-1;19149:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19149:24:0;;18975:204::o;18538:379::-;18607:13;18623:24;18639:7;18623:15;:24::i;:::-;18607:40;;18668:5;-1:-1:-1;;;;;18662:11:0;:2;-1:-1:-1;;;;;18662:11:0;;;18654:58;;;;-1:-1:-1;;;18654:58:0;;13775:2:1;18654:58:0;;;13757:21:1;13814:2;13794:18;;;13787:30;13853:34;13833:18;;;13826:62;-1:-1:-1;;;13904:18:1;;;13897:32;13946:19;;18654:58:0;13573:398:1;18654:58:0;3201:10;-1:-1:-1;;;;;18737:21:0;;;;:62;;-1:-1:-1;18762:37:0;18779:5;3201:10;19580:186;:::i;18762:37::-;18721:153;;;;-1:-1:-1;;;18721:153:0;;10629:2:1;18721:153:0;;;10611:21:1;10668:2;10648:18;;;10641:30;10707:34;10687:18;;;10680:62;10778:27;10758:18;;;10751:55;10823:19;;18721:153:0;10427:421:1;18721:153:0;18883:28;18892:2;18896:7;18905:5;18883:8;:28::i;:::-;18600:317;18538:379;;:::o;30748:108::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;30823:18:::1;:25:::0;30748:108::o;19825:142::-;19933:28;19943:4;19949:2;19953:7;19933:9;:28::i;14916:744::-;15025:7;15060:16;15070:5;15060:9;:16::i;:::-;15052:5;:24;15044:71;;;;-1:-1:-1;;;15044:71:0;;7905:2:1;15044:71:0;;;7887:21:1;7944:2;7924:18;;;7917:30;7983:34;7963:18;;;7956:62;-1:-1:-1;;;8034:18:1;;;8027:32;8076:19;;15044:71:0;7703:398:1;15044:71:0;15122:22;15147:13;14361:12;;;14285:94;15147:13;15122:38;;15167:19;15197:25;15247:9;15242:350;15266:14;15262:1;:18;15242:350;;;15296:31;15330:14;;;:11;:14;;;;;;;;;15296:48;;;;;;;;;-1:-1:-1;;;;;15296:48:0;;;;;-1:-1:-1;;;15296:48:0;;;;;;;;;;;;15357:28;15353:89;;15418:14;;;-1:-1:-1;15353:89:0;15475:5;-1:-1:-1;;;;;15454:26:0;:17;-1:-1:-1;;;;;15454:26:0;;15450:135;;;15512:5;15497:11;:20;15493:59;;;-1:-1:-1;15539:1:0;-1:-1:-1;15532:8:0;;-1:-1:-1;;;15532:8:0;15493:59;15562:13;;;;:::i;:::-;;;;15450:135;-1:-1:-1;15282:3:0;;;;:::i;:::-;;;;15242:350;;;-1:-1:-1;15598:56:0;;-1:-1:-1;;;15598:56:0;;15718:2:1;15598:56:0;;;15700:21:1;15757:2;15737:18;;;15730:30;15796:34;15776:18;;;15769:62;-1:-1:-1;;;15847:18:1;;;15840:44;15901:19;;15598:56:0;15516:410:1;31052:73:0;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;31101:8:::1;:16:::0;;-1:-1:-1;;31101:16:0::1;::::0;;31052:73::o;20030:157::-;20142:39;20159:4;20165:2;20169:7;20142:39;;;;;;;;;;;;:16;:39::i;14448:177::-;14515:7;14547:13;14361:12;;;14285:94;14547:13;14539:5;:21;14531:69;;;;-1:-1:-1;;;14531:69:0;;9472:2:1;14531:69:0;;;9454:21:1;9511:2;9491:18;;;9484:30;9550:34;9530:18;;;9523:62;-1:-1:-1;;;9601:18:1;;;9594:33;9644:19;;14531:69:0;9270:399:1;14531:69:0;-1:-1:-1;14614:5:0;14448:177::o;32995:93::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;33062:8:::1;:18:::0;32995:93::o;33096:102::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;33171:19:::1;:9;33183:7:::0;;33171:19:::1;:::i;17273:118::-:0;17337:7;17360:20;17372:7;17360:11;:20::i;:::-;:25;;17273:118;-1:-1:-1;;17273:118:0:o;16150:211::-;16214:7;-1:-1:-1;;;;;16238:19:0;;16230:75;;;;-1:-1:-1;;;16230:75:0;;11405:2:1;16230:75:0;;;11387:21:1;11444:2;11424:18;;;11417:30;11483:34;11463:18;;;11456:62;-1:-1:-1;;;11534:18:1;;;11527:41;11585:19;;16230:75:0;11203:407:1;16230:75:0;-1:-1:-1;;;;;;16327:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;16327:27:0;;16150:211::o;3863:103::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;3928:30:::1;3955:1;3928:18;:30::i;:::-;3863:103::o:0;32895:92::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;32962:10:::1;:17:::0;32895:92::o;32552:103::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;32609:5:::1;::::0;32601:46:::1;::::0;-1:-1:-1;;;;;32609:5:0;;::::1;::::0;32625:21:::1;32601:46:::0;::::1;;;::::0;32609:5:::1;32601:46:::0;32609:5;32601:46;32625:21;32609:5;32601:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;32552:103::o:0;30974:70::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;31021:8:::1;:15:::0;;-1:-1:-1;;31021:15:0::1;31032:4;31021:15;::::0;;30974:70::o;17605:98::-;17661:13;17690:7;17683:14;;;;;:::i;31760:191::-;31192:8;;31817:6;;31192:8;;31191:9;31183:43;;;;-1:-1:-1;;;31183:43:0;;;;;;;:::i;:::-;31258:1;31245:10;:14;:50;;;;;30245:1;31263:10;:32;;31245:50;31237:86;;;;-1:-1:-1;;;31237:86:0;;16133:2:1;31237:86:0;;;16115:21:1;16172:2;16152:18;;;16145:30;-1:-1:-1;;;16191:18:1;;;16184:53;16254:18;;31237:86:0;15931:347:1;31237:86:0;31342:10;31356:9;31342:23;31334:53;;;;-1:-1:-1;;;31334:53:0;;9126:2:1;31334:53:0;;;9108:21:1;9165:2;9145:18;;;9138:30;-1:-1:-1;;;9184:18:1;;;9177:47;9241:18;;31334:53:0;8924:341:1;31334:53:0;31444:15;;31426;:33;31422:238;;;31513:9;31484:25;31499:10;29896;31484:25;:::i;:::-;:38;;31476:69;;;;-1:-1:-1;;;31476:69:0;;;;;;;:::i;:::-;31422:238;;;31616:9;31586:26;31602:10;29967;31586:26;:::i;:::-;:39;;31578:70;;;;-1:-1:-1;;;31578:70:0;;;;;;;:::i;:::-;31708:8;;:10;;31717:1;31708:10;:::i;:::-;31694;31678:13;14361:12;;;14285:94;31678:13;:26;;;;:::i;:::-;:40;;31670:62;;;;-1:-1:-1;;;31670:62:0;;17789:2:1;31670:62:0;;;17771:21:1;17828:1;17808:18;;;17801:29;-1:-1:-1;;;17846:18:1;;;17839:39;17895:18;;31670:62:0;17587:332:1;31670:62:0;31862:15:::1;;31844;:33;31836:67;;;;-1:-1:-1::0;;;31836:67:0::1;;;;;;;:::i;:::-;31914:29;31924:10;31936:6;31914:9;:29::i;:::-;31760:191:::0;;:::o;19243:274::-;-1:-1:-1;;;;;19334:24:0;;3201:10;19334:24;;19326:63;;;;-1:-1:-1;;;19326:63:0;;13001:2:1;19326:63:0;;;12983:21:1;13040:2;13020:18;;;13013:30;13079:28;13059:18;;;13052:56;13125:18;;19326:63:0;12799:350:1;19326:63:0;3201:10;19398:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19398:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19398:53:0;;;;;;;;;;19463:48;;7245:41:1;;;19398:42:0;;3201:10;19463:48;;7218:18:1;19463:48:0;;;;;;;19243:274;;:::o;31959:585::-;31192:8;;32049:6;;31192:8;;31191:9;31183:43;;;;-1:-1:-1;;;31183:43:0;;;;;;;:::i;:::-;31258:1;31245:10;:14;:50;;;;;30245:1;31263:10;:32;;31245:50;31237:86;;;;-1:-1:-1;;;31237:86:0;;16133:2:1;31237:86:0;;;16115:21:1;16172:2;16152:18;;;16145:30;-1:-1:-1;;;16191:18:1;;;16184:53;16254:18;;31237:86:0;15931:347:1;31237:86:0;31342:10;31356:9;31342:23;31334:53;;;;-1:-1:-1;;;31334:53:0;;9126:2:1;31334:53:0;;;9108:21:1;9165:2;9145:18;;;9138:30;-1:-1:-1;;;9184:18:1;;;9177:47;9241:18;;31334:53:0;8924:341:1;31334:53:0;31444:15;;31426;:33;31422:238;;;31513:9;31484:25;31499:10;29896;31484:25;:::i;:::-;:38;;31476:69;;;;-1:-1:-1;;;31476:69:0;;;;;;;:::i;:::-;31422:238;;;31616:9;31586:26;31602:10;29967;31586:26;:::i;:::-;:39;;31578:70;;;;-1:-1:-1;;;31578:70:0;;;;;;;:::i;:::-;31708:8;;:10;;31717:1;31708:10;:::i;:::-;31694;31678:13;14361:12;;;14285:94;31678:13;:26;;;;:::i;:::-;:40;;31670:62;;;;-1:-1:-1;;;31670:62:0;;17789:2:1;31670:62:0;;;17771:21:1;17828:1;17808:18;;;17801:29;-1:-1:-1;;;17846:18:1;;;17839:39;17895:18;;31670:62:0;17587:332:1;31670:62:0;32094:18:::1;;32076:15;:36;32068:80;;;::::0;-1:-1:-1;;;32068:80:0;;14178:2:1;32068:80:0::1;::::0;::::1;14160:21:1::0;14217:2;14197:18;;;14190:30;14256:33;14236:18;;;14229:61;14307:18;;32068:80:0::1;13976:355:1::0;32068:80:0::1;32191:10;32167:35;::::0;;;:23:::1;:35;::::0;;;;;30191:1:::1;::::0;32167:44:::1;::::0;32205:6;;32167:44:::1;:::i;:::-;:75;;32159:153;;;::::0;-1:-1:-1;;;32159:153:0;;17315:2:1;32159:153:0::1;::::0;::::1;17297:21:1::0;17354:2;17334:18;;;17327:30;17393:34;17373:18;;;17366:62;17464:34;17444:18;;;17437:62;-1:-1:-1;;;17515:19:1;;;17508:32;17557:19;;32159:153:0::1;17113:469:1::0;32159:153:0::1;32331:78;32350:5;;32331:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;32357:10:0::1;::::0;32379:28:::1;::::0;-1:-1:-1;;32396:10:0::1;5592:2:1::0;5588:15;5584:53;32379:28:0::1;::::0;::::1;5572:66:1::0;32357:10:0;;-1:-1:-1;5654:12:1;;;-1:-1:-1;32379:28:0::1;;;;;;;;;;;;32369:39;;;;;;32331:18;:78::i;:::-;32323:115;;;::::0;-1:-1:-1;;;32323:115:0;;18126:2:1;32323:115:0::1;::::0;::::1;18108:21:1::0;18165:2;18145:18;;;18138:30;18204:26;18184:18;;;18177:54;18248:18;;32323:115:0::1;17924:348:1::0;32323:115:0::1;32475:10;32451:35;::::0;;;:23:::1;:35;::::0;;;;:45;;32490:6;;32451:35;:45:::1;::::0;32490:6;;32451:45:::1;:::i;:::-;::::0;;;-1:-1:-1;32507:29:0::1;::::0;-1:-1:-1;32517:10:0::1;32529:6:::0;32507:9:::1;:29::i;:::-;31959:585:::0;;;;:::o;32794:93::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;32853:26:::1;32863:10;32875:3;32853:26;;:9;:26::i;20250:311::-:0;20387:28;20397:4;20403:2;20407:7;20387:9;:28::i;:::-;20438:48;20461:4;20467:2;20471:7;20480:5;20438:22;:48::i;:::-;20422:133;;;;-1:-1:-1;;;20422:133:0;;;;;;;:::i;32663:123::-;32724:7;3713:6;;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;-1:-1:-1;32744:5:0::1;:12:::0;;-1:-1:-1;;;;;;32744:12:0::1;-1:-1:-1::0;;;;;32744:12:0;::::1;;::::0;;;3846:1:::1;32663:123:::0;;;:::o;17766:394::-;17864:13;17905:16;17913:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;17905:16;17889:97;;;;-1:-1:-1;;;17889:97:0;;12585:2:1;17889:97:0;;;12567:21:1;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:45;12769:19;;17889:97:0;12383:411:1;17889:97:0;17995:21;18019:10;:8;:10::i;:::-;17995:34;;18074:1;18056:7;18050:21;:25;:104;;;;;;;;;;;;;;;;;18111:7;18120:18;:7;:16;:18::i;:::-;18094:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18050:104;18036:118;17766:394;-1:-1:-1;;;17766:394:0:o;30864:102::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;30936:15:::1;:22:::0;30864:102::o;3974:201::-;3686:7;3713:6;-1:-1:-1;;;;;3713:6:0;3201:10;3775:23;3767:68;;;;-1:-1:-1;;;3767:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4063:22:0;::::1;4055:73;;;::::0;-1:-1:-1;;;4055:73:0;;8308:2:1;4055:73:0::1;::::0;::::1;8290:21:1::0;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;-1:-1:-1;;;8437:18:1;;;8430:36;8483:19;;4055:73:0::1;8106:402:1::0;4055:73:0::1;4139:28;4158:8;4139:18;:28::i;24490:172::-:0;24587:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24587:29:0;-1:-1:-1;;;;;24587:29:0;;;;;;;;;24628:28;;24587:24;;24628:28;;;;;;;24490:172;;;:::o;22855:1529::-;22952:35;22990:20;23002:7;22990:11;:20::i;:::-;23061:18;;22952:58;;-1:-1:-1;23019:22:0;;-1:-1:-1;;;;;23045:34:0;3201:10;-1:-1:-1;;;;;23045:34:0;;:81;;;-1:-1:-1;3201:10:0;23090:20;23102:7;23090:11;:20::i;:::-;-1:-1:-1;;;;;23090:36:0;;23045:81;:142;;;-1:-1:-1;23154:18:0;;23137:50;;3201:10;19580:186;:::i;23137:50::-;23019:169;;23213:17;23197:101;;;;-1:-1:-1;;;23197:101:0;;13356:2:1;23197:101:0;;;13338:21:1;13395:2;13375:18;;;13368:30;13434:34;13414:18;;;13407:62;-1:-1:-1;;;13485:18:1;;;13478:48;13543:19;;23197:101:0;13154:414:1;23197:101:0;23345:4;-1:-1:-1;;;;;23323:26:0;:13;:18;;;-1:-1:-1;;;;;23323:26:0;;23307:98;;;;-1:-1:-1;;;23307:98:0;;11817:2:1;23307:98:0;;;11799:21:1;11856:2;11836:18;;;11829:30;11895:34;11875:18;;;11868:62;-1:-1:-1;;;11946:18:1;;;11939:36;11992:19;;23307:98:0;11615:402:1;23307:98:0;-1:-1:-1;;;;;23420:16:0;;23412:66;;;;-1:-1:-1;;;23412:66:0;;9876:2:1;23412:66:0;;;9858:21:1;9915:2;9895:18;;;9888:30;9954:34;9934:18;;;9927:62;-1:-1:-1;;;10005:18:1;;;9998:35;10050:19;;23412:66:0;9674:401:1;23412:66:0;23587:49;23604:1;23608:7;23617:13;:18;;;23587:8;:49::i;:::-;-1:-1:-1;;;;;23645:18:0;;;;;;:12;:18;;;;;:31;;23675:1;;23645:18;:31;;23675:1;;-1:-1:-1;;;;;23645:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;23645:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23683:16:0;;-1:-1:-1;23683:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;23683:16:0;;:29;;-1:-1:-1;;23683:29:0;;:::i;:::-;;;-1:-1:-1;;;;;23683:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23742:43:0;;;;;;;;-1:-1:-1;;;;;23742:43:0;;;;;;23768:15;23742:43;;;;;;;;;-1:-1:-1;23719:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;23719:66:0;-1:-1:-1;;;;;;23719:66:0;;;;;;;;;;;24035:11;23731:7;-1:-1:-1;24035:11:0;:::i;:::-;24098:1;24057:24;;;:11;:24;;;;;:29;24013:33;;-1:-1:-1;;;;;;24057:29:0;24053:236;;24115:20;24123:11;20887:12;;-1:-1:-1;20877:22:0;20800:105;24115:20;24111:171;;;24175:97;;;;;;;;24202:18;;-1:-1:-1;;;;;24175:97:0;;;;;;24233:28;;;;24175:97;;;;;;;;;;-1:-1:-1;24148:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;24148:124:0;-1:-1:-1;;;;;;24148:124:0;;;;;;;;;;;;24111:171;24321:7;24317:2;-1:-1:-1;;;;;24302:27:0;24311:4;-1:-1:-1;;;;;24302:27:0;;;;;;;;;;;24336:42;22945:1439;;;22855:1529;;;:::o;16613:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;16730:16:0;16738:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;16730:16;16722:71;;;;-1:-1:-1;;;16722:71:0;;8715:2:1;16722:71:0;;;8697:21:1;8754:2;8734:18;;;8727:30;8793:34;8773:18;;;8766:62;-1:-1:-1;;;8844:18:1;;;8837:40;8894:19;;16722:71:0;8513:406:1;16722:71:0;16802:26;16850:12;16839:7;:23;16835:93;;16894:22;16904:12;16894:7;:22;:::i;:::-;:26;;16919:1;16894:26;:::i;:::-;16873:47;;16835:93;16956:7;16936:212;16973:18;16965:4;:26;16936:212;;17010:31;17044:17;;;:11;:17;;;;;;;;;17010:51;;;;;;;;;-1:-1:-1;;;;;17010:51:0;;;;;-1:-1:-1;;;17010:51:0;;;;;;;;;;;;17074:28;17070:71;;17122:9;16613:606;-1:-1:-1;;;;16613:606:0:o;17070:71::-;-1:-1:-1;16993:6:0;;;;:::i;:::-;;;;16936:212;;;-1:-1:-1;17156:57:0;;-1:-1:-1;;;17156:57:0;;16485:2:1;17156:57:0;;;16467:21:1;16524:2;16504:18;;;16497:30;16563:34;16543:18;;;16536:62;-1:-1:-1;;;16614:18:1;;;16607:45;16669:19;;17156:57:0;16283:411:1;4183:191:0;4257:16;4276:6;;-1:-1:-1;;;;;4293:17:0;;;-1:-1:-1;;;;;;4293:17:0;;;;;;4326:40;;4276:6;;;;;;;4326:40;;4257:16;4326:40;4246:128;4183:191;:::o;20911:98::-;20976:27;20986:2;20990:8;20976:27;;;;;;;;;;;;:9;:27::i;28457:190::-;28582:4;28635;28606:25;28619:5;28626:4;28606:12;:25::i;:::-;:33;;28457:190;-1:-1:-1;;;;28457:190:0:o;26205:690::-;26342:4;-1:-1:-1;;;;;26359:13:0;;4551:19;:23;26355:535;;26398:72;;-1:-1:-1;;;26398:72:0;;-1:-1:-1;;;;;26398:36:0;;;;;:72;;3201:10;;26449:4;;26455:7;;26464:5;;26398:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26398:72:0;;;;;;;;-1:-1:-1;;26398:72:0;;;;;;;;;;;;:::i;:::-;;;26385:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26629:13:0;;26625:215;;26662:61;;-1:-1:-1;;;26662:61:0;;;;;;;:::i;26625:215::-;26808:6;26802:13;26793:6;26789:2;26785:15;26778:38;26385:464;-1:-1:-1;;;;;;26520:55:0;-1:-1:-1;;;26520:55:0;;-1:-1:-1;26513:62:0;;26355:535;-1:-1:-1;26878:4:0;26355:535;26205:690;;;;;;:::o;33206:110::-;33266:13;33299:9;33292:16;;;;;:::i;1679:532::-;1735:13;1765:10;1761:53;;-1:-1:-1;;1792:10:0;;;;;;;;;;;;-1:-1:-1;;;1792:10:0;;;;;1679:532::o;1761:53::-;1839:5;1824:12;1880:78;1887:9;;1880:78;;1913:8;;;;:::i;:::-;;-1:-1:-1;1936:10:0;;-1:-1:-1;1944:2:0;1936:10;;:::i;:::-;;;1880:78;;;1968:19;2000:6;1990:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1990:17:0;;1968:39;;2018:154;2025:10;;2018:154;;2052:11;2062:1;2052:11;;:::i;:::-;;-1:-1:-1;2121:10:0;2129:2;2121:5;:10;:::i;:::-;2108:24;;:2;:24;:::i;:::-;2095:39;;2078:6;2085;2078:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2078:56:0;;;;;;;;-1:-1:-1;2149:11:0;2158:2;2149:11;;:::i;:::-;;;2018:154;;21348:1275;21476:12;;-1:-1:-1;;;;;21503:16:0;;21495:62;;;;-1:-1:-1;;;21495:62:0;;15316:2:1;21495:62:0;;;15298:21:1;15355:2;15335:18;;;15328:30;15394:34;15374:18;;;15367:62;-1:-1:-1;;;15445:18:1;;;15438:31;15486:19;;21495:62:0;15114:397:1;21495:62:0;21694:21;21702:12;20887;;-1:-1:-1;20877:22:0;20800:105;21694:21;21693:22;21685:64;;;;-1:-1:-1;;;21685:64:0;;14958:2:1;21685:64:0;;;14940:21:1;14997:2;14977:18;;;14970:30;15036:31;15016:18;;;15009:59;15085:18;;21685:64:0;14756:353:1;21685:64:0;-1:-1:-1;;;;;21942:16:0;;21909:30;21942:16;;;:12;:16;;;;;;;;;21909:49;;;;;;;;;-1:-1:-1;;;;;21909:49:0;;;;;-1:-1:-1;;;21909:49:0;;;;;;;;;;;21984:119;;;;;;;;22004:19;;21909:49;;21984:119;;;22004:39;;22034:8;;22004:39;:::i;:::-;-1:-1:-1;;;;;21984:119:0;;;;;22087:8;22052:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;21984:119:0;;;;;;-1:-1:-1;;;;;21965:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;21965:138:0;;;;;;;;;;;;22138:43;;;;;;;;;;;22164:15;22138:43;;;;;;;;22110:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;22110:71:0;-1:-1:-1;;;;;;22110:71:0;;;;;;;;;;;;;;;;;;22122:12;;22234:281;22258:8;22254:1;:12;22234:281;;;22287:38;;22312:12;;-1:-1:-1;;;;;22287:38:0;;;22304:1;;22287:38;;22304:1;;22287:38;22352:59;22383:1;22387:2;22391:12;22405:5;22352:22;:59::i;:::-;22334:150;;;;-1:-1:-1;;;22334:150:0;;;;;;;:::i;:::-;22493:14;;;;:::i;:::-;;;;22268:3;;;;;:::i;:::-;;;;22234:281;;;-1:-1:-1;22523:12:0;:27;;;22557:60;31959:585;29009:701;29092:7;29135:4;29092:7;29150:523;29174:5;:12;29170:1;:16;29150:523;;;29208:20;29231:5;29237:1;29231:8;;;;;;;;:::i;:::-;;;;;;;29208:31;;29274:12;29258;:28;29254:408;;29411:44;;;;;;5834:19:1;;;5869:12;;;5862:28;;;5906:12;;29411:44:0;;;;;;;;;;;;29401:55;;;;;;29386:70;;29254:408;;;29601:44;;;;;;5834:19:1;;;5869:12;;;5862:28;;;5906:12;;29601:44:0;;;;;;;;;;;;29591:55;;;;;;29576:70;;29254:408;-1:-1:-1;29188:3:0;;;;:::i;:::-;;;;29150:523;;;-1:-1:-1;29690:12:0;29009:701;-1:-1:-1;;;29009:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:689::-;2830:6;2838;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2955:9;2942:23;2984:18;3025:2;3017:6;3014:14;3011:34;;;3041:1;3038;3031:12;3011:34;3079:6;3068:9;3064:22;3054:32;;3124:7;3117:4;3113:2;3109:13;3105:27;3095:55;;3146:1;3143;3136:12;3095:55;3186:2;3173:16;3212:2;3204:6;3201:14;3198:34;;;3228:1;3225;3218:12;3198:34;3283:7;3276:4;3266:6;3263:1;3259:14;3255:2;3251:23;3247:34;3244:47;3241:67;;;3304:1;3301;3294:12;3241:67;3335:4;3327:13;;;;3359:6;;-1:-1:-1;3397:20:1;;;;3384:34;;2735:689;-1:-1:-1;;;;2735:689:1:o;3429:180::-;3488:6;3541:2;3529:9;3520:7;3516:23;3512:32;3509:52;;;3557:1;3554;3547:12;3509:52;-1:-1:-1;3580:23:1;;3429:180;-1:-1:-1;3429:180:1:o;3614:245::-;3672:6;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:30;3823:5;3799:30;:::i;3864:249::-;3933:6;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4034:9;4028:16;4053:30;4077:5;4053:30;:::i;4118:592::-;4189:6;4197;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;4335:18;4376:2;4368:6;4365:14;4362:34;;;4392:1;4389;4382:12;4362:34;4430:6;4419:9;4415:22;4405:32;;4475:7;4468:4;4464:2;4460:13;4456:27;4446:55;;4497:1;4494;4487:12;4446:55;4537:2;4524:16;4563:2;4555:6;4552:14;4549:34;;;4579:1;4576;4569:12;4549:34;4624:7;4619:2;4610:6;4606:2;4602:15;4598:24;4595:37;4592:57;;;4645:1;4642;4635:12;4592:57;4676:2;4668:11;;;;;4698:6;;-1:-1:-1;4118:592:1;;-1:-1:-1;;;;4118:592:1:o;4900:276::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:52;;;5027:1;5024;5017:12;4979:52;5066:9;5053:23;5116:10;5109:5;5105:22;5098:5;5095:33;5085:61;;5142:1;5139;5132:12;5181:257;5222:3;5260:5;5254:12;5287:6;5282:3;5275:19;5303:63;5359:6;5352:4;5347:3;5343:14;5336:4;5329:5;5325:16;5303:63;:::i;:::-;5420:2;5399:15;-1:-1:-1;;5395:29:1;5386:39;;;;5427:4;5382:50;;5181:257;-1:-1:-1;;5181:257:1:o;5929:470::-;6108:3;6146:6;6140:13;6162:53;6208:6;6203:3;6196:4;6188:6;6184:17;6162:53;:::i;:::-;6278:13;;6237:16;;;;6300:57;6278:13;6237:16;6334:4;6322:17;;6300:57;:::i;:::-;6373:20;;5929:470;-1:-1:-1;;;;5929:470:1:o;6612:488::-;-1:-1:-1;;;;;6881:15:1;;;6863:34;;6933:15;;6928:2;6913:18;;6906:43;6980:2;6965:18;;6958:34;;;7028:3;7023:2;7008:18;;7001:31;;;6806:4;;7049:45;;7074:19;;7066:6;7049:45;:::i;:::-;7041:53;6612:488;-1:-1:-1;;;;;;6612:488:1:o;7479:219::-;7628:2;7617:9;7610:21;7591:4;7648:44;7688:2;7677:9;7673:18;7665:6;7648:44;:::i;10080:342::-;10282:2;10264:21;;;10321:2;10301:18;;;10294:30;-1:-1:-1;;;10355:2:1;10340:18;;10333:48;10413:2;10398:18;;10080:342::o;10853:345::-;11055:2;11037:21;;;11094:2;11074:18;;;11067:30;-1:-1:-1;;;11128:2:1;11113:18;;11106:51;11189:2;11174:18;;10853:345::o;12022:356::-;12224:2;12206:21;;;12243:18;;;12236:30;12302:34;12297:2;12282:18;;12275:62;12369:2;12354:18;;12022:356::o;14336:415::-;14538:2;14520:21;;;14577:2;14557:18;;;14550:30;14616:34;14611:2;14596:18;;14589:62;-1:-1:-1;;;14682:2:1;14667:18;;14660:49;14741:3;14726:19;;14336:415::o;18459:253::-;18499:3;-1:-1:-1;;;;;18588:2:1;18585:1;18581:10;18618:2;18615:1;18611:10;18649:3;18645:2;18641:12;18636:3;18633:21;18630:47;;;18657:18;;:::i;18717:128::-;18757:3;18788:1;18784:6;18781:1;18778:13;18775:39;;;18794:18;;:::i;:::-;-1:-1:-1;18830:9:1;;18717:128::o;18850:120::-;18890:1;18916;18906:35;;18921:18;;:::i;:::-;-1:-1:-1;18955:9:1;;18850:120::o;18975:168::-;19015:7;19081:1;19077;19073:6;19069:14;19066:1;19063:21;19058:1;19051:9;19044:17;19040:45;19037:71;;;19088:18;;:::i;:::-;-1:-1:-1;19128:9:1;;18975:168::o;19148:246::-;19188:4;-1:-1:-1;;;;;19301:10:1;;;;19271;;19323:12;;;19320:38;;;19338:18;;:::i;:::-;19375:13;;19148:246;-1:-1:-1;;;19148:246:1:o;19399:125::-;19439:4;19467:1;19464;19461:8;19458:34;;;19472:18;;:::i;:::-;-1:-1:-1;19509:9:1;;19399:125::o;19529:258::-;19601:1;19611:113;19625:6;19622:1;19619:13;19611:113;;;19701:11;;;19695:18;19682:11;;;19675:39;19647:2;19640:10;19611:113;;;19742:6;19739:1;19736:13;19733:48;;;-1:-1:-1;;19777:1:1;19759:16;;19752:27;19529:258::o;19792:136::-;19831:3;19859:5;19849:39;;19868:18;;:::i;:::-;-1:-1:-1;;;19904:18:1;;19792:136::o;19933:380::-;20012:1;20008:12;;;;20055;;;20076:61;;20130:4;20122:6;20118:17;20108:27;;20076:61;20183:2;20175:6;20172:14;20152:18;20149:38;20146:161;;;20229:10;20224:3;20220:20;20217:1;20210:31;20264:4;20261:1;20254:15;20292:4;20289:1;20282:15;20146:161;;19933:380;;;:::o;20318:135::-;20357:3;-1:-1:-1;;20378:17:1;;20375:43;;;20398:18;;:::i;:::-;-1:-1:-1;20445:1:1;20434:13;;20318:135::o;20458:112::-;20490:1;20516;20506:35;;20521:18;;:::i;:::-;-1:-1:-1;20555:9:1;;20458:112::o;20575:127::-;20636:10;20631:3;20627:20;20624:1;20617:31;20667:4;20664:1;20657:15;20691:4;20688:1;20681:15;20707:127;20768:10;20763:3;20759:20;20756:1;20749:31;20799:4;20796:1;20789:15;20823:4;20820:1;20813:15;20839:127;20900:10;20895:3;20891:20;20888:1;20881:31;20931:4;20928:1;20921:15;20955:4;20952:1;20945:15;20971:127;21032:10;21027:3;21023:20;21020:1;21013:31;21063:4;21060:1;21053:15;21087:4;21084:1;21077:15;21103:131;-1:-1:-1;;;;;;21177:32:1;;21167:43;;21157:71;;21224:1;21221;21214:12

Swarm Source

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