ETH Price: $2,894.18 (-5.07%)
Gas: 4 Gwei

Token

Invisible Freakz (FREAKZ)
 

Overview

Max Total Supply

866 FREAKZ

Holders

688

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FREAKZ
0xbb165400963d64db7e9d89758b4a21ccb2819b00
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:
Freakz

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/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);

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: contracts/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 1 (e.g. 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 = 1;

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

  /**
   * @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Freakz.sol



pragma solidity ^0.8.0;





contract Freakz is Ownable, ERC721A, ReentrancyGuard {
    string public baseURI;
    string public baseExtension = ".json";

    uint256 public MAX_SUPPLY = 4200;
    uint256 public constant MAX_PER_WALLET = 20;
 
    uint256 public constant PRESALE_MAX_PER_WALLET = 1; 
    uint256 public PRESALE_MINT_LIMIT = 800;

    mapping(address => uint256) public preSalesMinterToTokenQty;
    uint256 public preSalesMintedQty = 0;
    
    bool public paused = true;
    uint256 public publicPrice = 0.011 ether;

    constructor(
        string memory _initBaseURI
    ) ERC721A("Invisible Freakz", "FREAKZ", MAX_PER_WALLET, MAX_SUPPLY) {
        setBaseURI(_initBaseURI);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function getPrice(address _address, uint256 _quantity) public view returns (uint256) {
        return publicPrice * getPaidQuantity(_address, _quantity);
    }

    function getPaidQuantity(address _address, uint256 _quantity) public view returns (uint256) {
        if (preSalesMintedQty < PRESALE_MINT_LIMIT) {
            if (preSalesMinterToTokenQty[_address] + _quantity > PRESALE_MAX_PER_WALLET) {
                if (preSalesMinterToTokenQty[_address] < PRESALE_MAX_PER_WALLET) {
                    uint256 freeLeft = PRESALE_MAX_PER_WALLET - preSalesMinterToTokenQty[_address];
                    return _quantity - freeLeft;
                }
            } 
            else {
                return 0;
            }
        }
        return _quantity;
    }

    function mint(uint256 _quantity)
        external
        payable
        callerIsUser
        nonReentrant
    {
        require(!paused, "sale is not active");
        
        uint256 paidQuantity = _quantity;
        if (preSalesMintedQty < PRESALE_MINT_LIMIT) {
            if (preSalesMinterToTokenQty[msg.sender] + _quantity > PRESALE_MAX_PER_WALLET) {
                if (preSalesMinterToTokenQty[msg.sender] < PRESALE_MAX_PER_WALLET) {
                    uint256 freeLeft = PRESALE_MAX_PER_WALLET - preSalesMinterToTokenQty[msg.sender];
                    paidQuantity -= freeLeft;
                    preSalesMintedQty += freeLeft;
                    preSalesMinterToTokenQty[msg.sender] += freeLeft;
                }
            } 
            else {
                paidQuantity = 0;
                preSalesMintedQty += _quantity;
                preSalesMinterToTokenQty[msg.sender] += _quantity;
            }
        }

        require(totalSupply() + _quantity <= MAX_SUPPLY, "reached the max supply");
        require(
            numberMinted(msg.sender) + _quantity <= MAX_PER_WALLET,
            "can not mint this many"
        );
        _safeMint(msg.sender, _quantity);

        if (paidQuantity > 0) {
            refundIfOver(publicPrice * paidQuantity);
        }
    }

    function refundIfOver(uint256 _price) private {
        require(msg.value >= _price, "need to send more ETH");
        if (msg.value > _price) {
            payable(msg.sender).transfer(msg.value - _price);
        }
    }

    function airdropMint(address[] calldata _addresses, uint[] calldata _mintQtys) 
        external 
        onlyOwner 
        nonReentrant 
    {
        require(_addresses.length == _mintQtys.length,  "size not same");

        for (uint256 i = 0; i < _addresses.length; i++) {
            require(totalSupply() + _mintQtys[i] <= MAX_SUPPLY, "reached the max supply");
            _safeMint(_addresses[i], _mintQtys[i]);
        }
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        publicPrice = _newPrice;
    }

    function openSales() external onlyOwner {
        paused = false;
    }

    function closeSales() external onlyOwner {
        paused = true;
    }

    function setMaxSupply(uint256 _newSupply) external onlyOwner {
        require(_newSupply > totalSupply(), "can't be lower than the current supply");
        MAX_SUPPLY = _newSupply;
    }

    function setPresaleMintLimit(uint256 _newSupply) external onlyOwner {
        require(_newSupply <= MAX_SUPPLY, "reached the max supply");
        require(_newSupply > preSalesMintedQty, "can't be lower than the current minted");
        PRESALE_MINT_LIMIT = _newSupply;
    }

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

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

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

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

    function setBaseExtension(string calldata _newBaseExtension) external onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function withdraw() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "no amount to withdraw");
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "transfer failed.");
    }

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

    function getOwnershipData(uint256 _tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(_tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_mintQtys","type":"uint256[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeSales","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPaidQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalesMintedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSalesMinterToTokenQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPresaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600180556000600855610100604052600560c081905264173539b7b760d91b60e09081526200003291600b9190620002d9565b50611068600c55610320600d556000600f556010805460ff1916600117905566271471148780006011553480156200006957600080fd5b5060405162003287380380620032878339810160408190526200008c9162000395565b6040518060400160405280601081526020016f24b73b34b9b4b1363290233932b0b5bd60811b81525060405180604001604052806006815260200165232922a0a5ad60d11b8152506014600c54620000f3620000ed6200021060201b60201c565b62000214565b60008111620001605760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001c25760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000157565b8351620001d7906002906020870190620002d9565b508251620001ed906003906020860190620002d9565b5060a09190915260805250506001600955620002098162000264565b50620004ad565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000157565b8051620002d590600a906020840190620002d9565b5050565b828054620002e79062000471565b90600052602060002090601f0160209004810192826200030b576000855562000356565b82601f106200032657805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035657825182559160200191906001019062000339565b506200036492915062000368565b5090565b5b8082111562000364576000815560010162000369565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620003a957600080fd5b82516001600160401b0380821115620003c157600080fd5b818501915085601f830112620003d657600080fd5b815181811115620003eb57620003eb6200037f565b604051601f8201601f19908116603f011681019083821181831017156200041657620004166200037f565b8160405282815288868487010111156200042f57600080fd5b600093505b8284101562000453578484018601518185018701529285019262000434565b82841115620004655760008684830101525b98975050505050505050565b600181811c908216806200048657607f821691505b602082108103620004a757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612da9620004de60003960008181611d3101528181611d5b015261229a015260005050612da96000f3fe6080604052600436106102675760003560e01c80636f8b44b011610144578063a945bf80116100b6578063da3ef23f1161007a578063da3ef23f14610705578063dc33e68114610725578063e985e9c514610745578063f2fde38b1461078e578063f5ebec80146107ae578063f7ca892a146107c457600080fd5b8063a945bf8014610684578063b88d4fde1461069a578063c6682862146106ba578063c87b56dd146106cf578063d7224ba0146106ef57600080fd5b80638dba521e116101085780638dba521e146105af57806391b7f5ed146105cf5780639231ab2a146105ef57806395d89b411461063c578063a0712d6814610651578063a22cb4651461066457600080fd5b80636f8b44b01461050f57806370a082311461052f578063715018a61461054f578063791eef07146105645780638da5cb5b1461059157600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461046b57806355f804b31461048b5780635c975abb146104ab5780635e7ac138146104c55780636352211e146104da5780636c0360eb146104fa57600080fd5b80632f745c59146103e057806332cb6b0c146104005780633ccfd60b1461041657806342842e0e1461042b578063449e815d1461044b57600080fd5b80630f2cdd6c1161022f5780630f2cdd6c1461034157806315a8f0731461035657806318160ddd1461036b57806323b872dd14610380578063279a669e146103a05780632f5f922a146103c057600080fd5b806301e3b4361461026c57806301ffc9a71461029557806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031f575b600080fd5b34801561027857600080fd5b50610282600f5481565b6040519081526020015b60405180910390f35b3480156102a157600080fd5b506102b56102b03660046125d6565b6107d9565b604051901515815260200161028c565b3480156102d157600080fd5b506102da610846565b60405161028c919061264b565b3480156102f357600080fd5b5061030761030236600461265e565b6108d8565b6040516001600160a01b03909116815260200161028c565b34801561032b57600080fd5b5061033f61033a366004612693565b610968565b005b34801561034d57600080fd5b50610282601481565b34801561036257600080fd5b5061033f610a7f565b34801561037757600080fd5b50610282610ab8565b34801561038c57600080fd5b5061033f61039b3660046126bd565b610acd565b3480156103ac57600080fd5b5061033f6103bb366004612744565b610ad8565b3480156103cc57600080fd5b506102826103db366004612693565b610c25565b3480156103ec57600080fd5b506102826103fb366004612693565b610ccc565b34801561040c57600080fd5b50610282600c5481565b34801561042257600080fd5b5061033f610e41565b34801561043757600080fd5b5061033f6104463660046126bd565b610f6a565b34801561045757600080fd5b50610282610466366004612693565b610f85565b34801561047757600080fd5b5061028261048636600461265e565b610fa5565b34801561049757600080fd5b5061033f6104a636600461283a565b61100d565b3480156104b757600080fd5b506010546102b59060ff1681565b3480156104d157600080fd5b50610282600181565b3480156104e657600080fd5b506103076104f536600461265e565b61104e565b34801561050657600080fd5b506102da611060565b34801561051b57600080fd5b5061033f61052a36600461265e565b6110ee565b34801561053b57600080fd5b5061028261054a366004612882565b611182565b34801561055b57600080fd5b5061033f611213565b34801561057057600080fd5b5061028261057f366004612882565b600e6020526000908152604090205481565b34801561059d57600080fd5b506000546001600160a01b0316610307565b3480156105bb57600080fd5b5061033f6105ca36600461265e565b611249565b3480156105db57600080fd5b5061033f6105ea36600461265e565b6112fa565b3480156105fb57600080fd5b5061060f61060a36600461265e565b611329565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161028c565b34801561064857600080fd5b506102da611346565b61033f61065f36600461265e565b611355565b34801561067057600080fd5b5061033f61067f36600461289d565b6115c8565b34801561069057600080fd5b5061028260115481565b3480156106a657600080fd5b5061033f6106b53660046128d9565b61168c565b3480156106c657600080fd5b506102da6116c5565b3480156106db57600080fd5b506102da6106ea36600461265e565b6116d2565b3480156106fb57600080fd5b5061028260085481565b34801561071157600080fd5b5061033f610720366004612954565b6117a1565b34801561073157600080fd5b50610282610740366004612882565b6117d7565b34801561075157600080fd5b506102b56107603660046129c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079a57600080fd5b5061033f6107a9366004612882565b6117e2565b3480156107ba57600080fd5b50610282600d5481565b3480156107d057600080fd5b5061033f61187d565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506001600160e01b0319821663780e9d6360e01b145b8061084057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610855906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610881906129f8565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e5826001541190565b61094c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109738261104e565b9050806001600160a01b0316836001600160a01b0316036109e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610943565b336001600160a01b03821614806109fd57506109fd8133610760565b610a6f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610943565b610a7a8383836118b3565b505050565b6000546001600160a01b03163314610aa95760405162461bcd60e51b815260040161094390612a2c565b6010805460ff19166001179055565b600060018054610ac89190612a77565b905090565b610a7a83838361190f565b6000546001600160a01b03163314610b025760405162461bcd60e51b815260040161094390612a2c565b600260095403610b245760405162461bcd60e51b815260040161094390612a8e565b6002600955828114610b685760405162461bcd60e51b815260206004820152600d60248201526c73697a65206e6f742073616d6560981b6044820152606401610943565b60005b83811015610c1957600c54838383818110610b8857610b88612ac5565b90506020020135610b97610ab8565b610ba19190612adb565b1115610bbf5760405162461bcd60e51b815260040161094390612af3565b610c07858583818110610bd457610bd4612ac5565b9050602002016020810190610be99190612882565b848484818110610bfb57610bfb612ac5565b90506020020135611c95565b80610c1181612b23565b915050610b6b565b50506001600955505050565b6000600d54600f541015610cc6576001600160a01b0383166000908152600e6020526040902054600190610c5a908490612adb565b1115610cbe576001600160a01b0383166000908152600e602052604090205460011115610cb9576001600160a01b0383166000908152600e6020526040812054610ca5906001612a77565b9050610cb18184612a77565b915050610840565b610cc6565b506000610840565b50919050565b6000610cd783611182565b8210610d305760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610943565b6000610d3a610ab8565b905060008060005b83811015610de1576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d9457805192505b876001600160a01b0316836001600160a01b031603610dce57868403610dc05750935061084092505050565b83610dca81612b23565b9450505b5080610dd981612b23565b915050610d42565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610943565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161094390612a2c565b600260095403610e8d5760405162461bcd60e51b815260040161094390612a8e565b600260095547610ed75760405162461bcd60e51b81526020600482015260156024820152746e6f20616d6f756e7420746f20776974686472617760581b6044820152606401610943565b604051600090339047908381818185875af1925050503d8060008114610f19576040519150601f19603f3d011682016040523d82523d6000602084013e610f1e565b606091505b5050905080610f625760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b6044820152606401610943565b506001600955565b610a7a8383836040518060200160405280600081525061168c565b6000610f918383610c25565b601154610f9e9190612b3c565b9392505050565b6000610faf610ab8565b82106110095760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610943565b5090565b6000546001600160a01b031633146110375760405162461bcd60e51b815260040161094390612a2c565b805161104a90600a9060208401906124b7565b5050565b600061105982611caf565b5192915050565b600a805461106d906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906129f8565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6000546001600160a01b031633146111185760405162461bcd60e51b815260040161094390612a2c565b611120610ab8565b811161117d5760405162461bcd60e51b815260206004820152602660248201527f63616e2774206265206c6f776572207468616e207468652063757272656e7420604482015265737570706c7960d01b6064820152608401610943565b600c55565b60006001600160a01b0382166111ee5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610943565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461123d5760405162461bcd60e51b815260040161094390612a2c565b6112476000611e58565b565b6000546001600160a01b031633146112735760405162461bcd60e51b815260040161094390612a2c565b600c548111156112955760405162461bcd60e51b815260040161094390612af3565b600f5481116112f55760405162461bcd60e51b815260206004820152602660248201527f63616e2774206265206c6f776572207468616e207468652063757272656e74206044820152651b5a5b9d195960d21b6064820152608401610943565b600d55565b6000546001600160a01b031633146113245760405162461bcd60e51b815260040161094390612a2c565b601155565b604080518082019091526000808252602082015261084082611caf565b606060038054610855906129f8565b3233146113a45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610943565b6002600954036113c65760405162461bcd60e51b815260040161094390612a8e565b600260095560105460ff16156114135760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610943565b600d54600f548291111561150857336000908152600e602052604090205460019061143f908490612adb565b11156114c857336000908152600e6020526040902054600111156114c357336000908152600e6020526040812054611478906001612a77565b90506114848183612a77565b915080600f60008282546114989190612adb565b9091555050336000908152600e6020526040812080548392906114bc908490612adb565b9091555050505b611508565b6000905081600f60008282546114de9190612adb565b9091555050336000908152600e602052604081208054849290611502908490612adb565b90915550505b600c5482611514610ab8565b61151e9190612adb565b111561153c5760405162461bcd60e51b815260040161094390612af3565b601482611548336117d7565b6115529190612adb565b11156115995760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610943565b6115a33383611c95565b80156115bf576115bf816011546115ba9190612b3c565b611ea8565b50506001600955565b336001600160a01b038316036116205760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610943565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61169784848461190f565b6116a384848484611f2e565b6116bf5760405162461bcd60e51b815260040161094390612b5b565b50505050565b600b805461106d906129f8565b60606116df826001541190565b6117435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b600061174d612030565b9050600081511161176d5760405180602001604052806000815250610f9e565b806117778461203f565b600b60405160200161178b93929190612bae565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146117cb5760405162461bcd60e51b815260040161094390612a2c565b610a7a600b8383612537565b60006108408261213f565b6000546001600160a01b0316331461180c5760405162461bcd60e51b815260040161094390612a2c565b6001600160a01b0381166118715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b61187a81611e58565b50565b6000546001600160a01b031633146118a75760405162461bcd60e51b815260040161094390612a2c565b6010805460ff19169055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191a82611caf565b80519091506000906001600160a01b0316336001600160a01b03161480611951575033611946846108d8565b6001600160a01b0316145b80611963575081516119639033610760565b9050806119cd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610943565b846001600160a01b031682600001516001600160a01b031614611a415760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610943565b6001600160a01b038416611aa55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610943565b611ab560008484600001516118b3565b6001600160a01b0385166000908152600560205260408120805460019290611ae79084906001600160801b0316612c71565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b3391859116612c99565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bba846001612adb565b6000818152600460205260409020549091506001600160a01b0316611c4b57611be4816001541190565b15611c4b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61104a8282604051806020016040528060008152506121dd565b6040805180820190915260008082526020820152611cce826001541190565b611d2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610943565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d8e57611d807f000000000000000000000000000000000000000000000000000000000000000084612a77565b611d8b906001612adb565b90505b825b818110611df7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611de457949350505050565b5080611def81612cc4565b915050611d90565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610943565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611ef05760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610943565b8034111561187a57336108fc611f068334612a77565b6040518115909202916000818181858888f1935050505015801561104a573d6000803e3d6000fd5b60006001600160a01b0384163b1561202457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f72903390899088908890600401612cdb565b6020604051808303816000875af1925050508015611fad575060408051601f3d908101601f19168201909252611faa91810190612d18565b60015b61200a573d808015611fdb576040519150601f19603f3d011682016040523d82523d6000602084013e611fe0565b606091505b5080516000036120025760405162461bcd60e51b815260040161094390612b5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612028565b5060015b949350505050565b6060600a8054610855906129f8565b6060816000036120665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612090578061207a81612b23565b91506120899050600a83612d4b565b915061206a565b6000816001600160401b038111156120aa576120aa6127af565b6040519080825280601f01601f1916602001820160405280156120d4576020820181803683370190505b5090505b8415612028576120e9600183612a77565b91506120f6600a86612d5f565b612101906030612adb565b60f81b81838151811061211657612116612ac5565b60200101906001600160f81b031916908160001a905350612138600a86612d4b565b94506120d8565b60006001600160a01b0382166121b15760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610943565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166122405760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610943565b61224b816001541190565b156122985760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610943565b7f00000000000000000000000000000000000000000000000000000000000000008311156123135760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610943565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061236f908790612c99565b6001600160801b0316815260200185836020015161238d9190612c99565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124ac5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124706000888488611f2e565b61248c5760405162461bcd60e51b815260040161094390612b5b565b8161249681612b23565b92505080806124a490612b23565b915050612423565b506001819055611c8d565b8280546124c3906129f8565b90600052602060002090601f0160209004810192826124e5576000855561252b565b82601f106124fe57805160ff191683800117855561252b565b8280016001018555821561252b579182015b8281111561252b578251825591602001919060010190612510565b506110099291506125ab565b828054612543906129f8565b90600052602060002090601f016020900481019282612565576000855561252b565b82601f1061257e5782800160ff1982351617855561252b565b8280016001018555821561252b579182015b8281111561252b578235825591602001919060010190612590565b5b8082111561100957600081556001016125ac565b6001600160e01b03198116811461187a57600080fd5b6000602082840312156125e857600080fd5b8135610f9e816125c0565b60005b8381101561260e5781810151838201526020016125f6565b838111156116bf5750506000910152565b600081518084526126378160208601602086016125f3565b601f01601f19169290920160200192915050565b602081526000610f9e602083018461261f565b60006020828403121561267057600080fd5b5035919050565b80356001600160a01b038116811461268e57600080fd5b919050565b600080604083850312156126a657600080fd5b6126af83612677565b946020939093013593505050565b6000806000606084860312156126d257600080fd5b6126db84612677565b92506126e960208501612677565b9150604084013590509250925092565b60008083601f84011261270b57600080fd5b5081356001600160401b0381111561272257600080fd5b6020830191508360208260051b850101111561273d57600080fd5b9250929050565b6000806000806040858703121561275a57600080fd5b84356001600160401b038082111561277157600080fd5b61277d888389016126f9565b9096509450602087013591508082111561279657600080fd5b506127a3878288016126f9565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156127df576127df6127af565b604051601f8501601f19908116603f01168101908282118183101715612807576128076127af565b8160405280935085815286868601111561282057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561284c57600080fd5b81356001600160401b0381111561286257600080fd5b8201601f8101841361287357600080fd5b612028848235602084016127c5565b60006020828403121561289457600080fd5b610f9e82612677565b600080604083850312156128b057600080fd5b6128b983612677565b9150602083013580151581146128ce57600080fd5b809150509250929050565b600080600080608085870312156128ef57600080fd5b6128f885612677565b935061290660208601612677565b92506040850135915060608501356001600160401b0381111561292857600080fd5b8501601f8101871361293957600080fd5b612948878235602084016127c5565b91505092959194509250565b6000806020838503121561296757600080fd5b82356001600160401b038082111561297e57600080fd5b818501915085601f83011261299257600080fd5b8135818111156129a157600080fd5b8660208285010111156129b357600080fd5b60209290920196919550909350505050565b600080604083850312156129d857600080fd5b6129e183612677565b91506129ef60208401612677565b90509250929050565b600181811c90821680612a0c57607f821691505b602082108103610cc657634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015612a8957612a89612a61565b500390565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612aee57612aee612a61565b500190565b6020808252601690820152757265616368656420746865206d617820737570706c7960501b604082015260600190565b600060018201612b3557612b35612a61565b5060010190565b6000816000190483118215151615612b5657612b56612a61565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020612bc18285838a016125f3565b855191840191612bd48184848a016125f3565b8554920191600090600181811c9080831680612bf157607f831692505b8583108103612c0e57634e487b7160e01b85526022600452602485fd5b808015612c225760018114612c3357612c60565b60ff19851688528388019550612c60565b60008b81526020902060005b85811015612c585781548a820152908401908801612c3f565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b0383811690831681811015612c9157612c91612a61565b039392505050565b60006001600160801b03808316818516808303821115612cbb57612cbb612a61565b01949350505050565b600081612cd357612cd3612a61565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d0e9083018461261f565b9695505050505050565b600060208284031215612d2a57600080fd5b8151610f9e816125c0565b634e487b7160e01b600052601260045260246000fd5b600082612d5a57612d5a612d35565b500490565b600082612d6e57612d6e612d35565b50069056fea26469706673582212204c36a2bb0fce634bc43928f60367c280dab7278fcd91eebaad13c0dc9b18c28a64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636f8b44b011610144578063a945bf80116100b6578063da3ef23f1161007a578063da3ef23f14610705578063dc33e68114610725578063e985e9c514610745578063f2fde38b1461078e578063f5ebec80146107ae578063f7ca892a146107c457600080fd5b8063a945bf8014610684578063b88d4fde1461069a578063c6682862146106ba578063c87b56dd146106cf578063d7224ba0146106ef57600080fd5b80638dba521e116101085780638dba521e146105af57806391b7f5ed146105cf5780639231ab2a146105ef57806395d89b411461063c578063a0712d6814610651578063a22cb4651461066457600080fd5b80636f8b44b01461050f57806370a082311461052f578063715018a61461054f578063791eef07146105645780638da5cb5b1461059157600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461046b57806355f804b31461048b5780635c975abb146104ab5780635e7ac138146104c55780636352211e146104da5780636c0360eb146104fa57600080fd5b80632f745c59146103e057806332cb6b0c146104005780633ccfd60b1461041657806342842e0e1461042b578063449e815d1461044b57600080fd5b80630f2cdd6c1161022f5780630f2cdd6c1461034157806315a8f0731461035657806318160ddd1461036b57806323b872dd14610380578063279a669e146103a05780632f5f922a146103c057600080fd5b806301e3b4361461026c57806301ffc9a71461029557806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031f575b600080fd5b34801561027857600080fd5b50610282600f5481565b6040519081526020015b60405180910390f35b3480156102a157600080fd5b506102b56102b03660046125d6565b6107d9565b604051901515815260200161028c565b3480156102d157600080fd5b506102da610846565b60405161028c919061264b565b3480156102f357600080fd5b5061030761030236600461265e565b6108d8565b6040516001600160a01b03909116815260200161028c565b34801561032b57600080fd5b5061033f61033a366004612693565b610968565b005b34801561034d57600080fd5b50610282601481565b34801561036257600080fd5b5061033f610a7f565b34801561037757600080fd5b50610282610ab8565b34801561038c57600080fd5b5061033f61039b3660046126bd565b610acd565b3480156103ac57600080fd5b5061033f6103bb366004612744565b610ad8565b3480156103cc57600080fd5b506102826103db366004612693565b610c25565b3480156103ec57600080fd5b506102826103fb366004612693565b610ccc565b34801561040c57600080fd5b50610282600c5481565b34801561042257600080fd5b5061033f610e41565b34801561043757600080fd5b5061033f6104463660046126bd565b610f6a565b34801561045757600080fd5b50610282610466366004612693565b610f85565b34801561047757600080fd5b5061028261048636600461265e565b610fa5565b34801561049757600080fd5b5061033f6104a636600461283a565b61100d565b3480156104b757600080fd5b506010546102b59060ff1681565b3480156104d157600080fd5b50610282600181565b3480156104e657600080fd5b506103076104f536600461265e565b61104e565b34801561050657600080fd5b506102da611060565b34801561051b57600080fd5b5061033f61052a36600461265e565b6110ee565b34801561053b57600080fd5b5061028261054a366004612882565b611182565b34801561055b57600080fd5b5061033f611213565b34801561057057600080fd5b5061028261057f366004612882565b600e6020526000908152604090205481565b34801561059d57600080fd5b506000546001600160a01b0316610307565b3480156105bb57600080fd5b5061033f6105ca36600461265e565b611249565b3480156105db57600080fd5b5061033f6105ea36600461265e565b6112fa565b3480156105fb57600080fd5b5061060f61060a36600461265e565b611329565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161028c565b34801561064857600080fd5b506102da611346565b61033f61065f36600461265e565b611355565b34801561067057600080fd5b5061033f61067f36600461289d565b6115c8565b34801561069057600080fd5b5061028260115481565b3480156106a657600080fd5b5061033f6106b53660046128d9565b61168c565b3480156106c657600080fd5b506102da6116c5565b3480156106db57600080fd5b506102da6106ea36600461265e565b6116d2565b3480156106fb57600080fd5b5061028260085481565b34801561071157600080fd5b5061033f610720366004612954565b6117a1565b34801561073157600080fd5b50610282610740366004612882565b6117d7565b34801561075157600080fd5b506102b56107603660046129c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079a57600080fd5b5061033f6107a9366004612882565b6117e2565b3480156107ba57600080fd5b50610282600d5481565b3480156107d057600080fd5b5061033f61187d565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506001600160e01b0319821663780e9d6360e01b145b8061084057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610855906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610881906129f8565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e5826001541190565b61094c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109738261104e565b9050806001600160a01b0316836001600160a01b0316036109e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610943565b336001600160a01b03821614806109fd57506109fd8133610760565b610a6f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610943565b610a7a8383836118b3565b505050565b6000546001600160a01b03163314610aa95760405162461bcd60e51b815260040161094390612a2c565b6010805460ff19166001179055565b600060018054610ac89190612a77565b905090565b610a7a83838361190f565b6000546001600160a01b03163314610b025760405162461bcd60e51b815260040161094390612a2c565b600260095403610b245760405162461bcd60e51b815260040161094390612a8e565b6002600955828114610b685760405162461bcd60e51b815260206004820152600d60248201526c73697a65206e6f742073616d6560981b6044820152606401610943565b60005b83811015610c1957600c54838383818110610b8857610b88612ac5565b90506020020135610b97610ab8565b610ba19190612adb565b1115610bbf5760405162461bcd60e51b815260040161094390612af3565b610c07858583818110610bd457610bd4612ac5565b9050602002016020810190610be99190612882565b848484818110610bfb57610bfb612ac5565b90506020020135611c95565b80610c1181612b23565b915050610b6b565b50506001600955505050565b6000600d54600f541015610cc6576001600160a01b0383166000908152600e6020526040902054600190610c5a908490612adb565b1115610cbe576001600160a01b0383166000908152600e602052604090205460011115610cb9576001600160a01b0383166000908152600e6020526040812054610ca5906001612a77565b9050610cb18184612a77565b915050610840565b610cc6565b506000610840565b50919050565b6000610cd783611182565b8210610d305760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610943565b6000610d3a610ab8565b905060008060005b83811015610de1576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d9457805192505b876001600160a01b0316836001600160a01b031603610dce57868403610dc05750935061084092505050565b83610dca81612b23565b9450505b5080610dd981612b23565b915050610d42565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610943565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161094390612a2c565b600260095403610e8d5760405162461bcd60e51b815260040161094390612a8e565b600260095547610ed75760405162461bcd60e51b81526020600482015260156024820152746e6f20616d6f756e7420746f20776974686472617760581b6044820152606401610943565b604051600090339047908381818185875af1925050503d8060008114610f19576040519150601f19603f3d011682016040523d82523d6000602084013e610f1e565b606091505b5050905080610f625760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b6044820152606401610943565b506001600955565b610a7a8383836040518060200160405280600081525061168c565b6000610f918383610c25565b601154610f9e9190612b3c565b9392505050565b6000610faf610ab8565b82106110095760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610943565b5090565b6000546001600160a01b031633146110375760405162461bcd60e51b815260040161094390612a2c565b805161104a90600a9060208401906124b7565b5050565b600061105982611caf565b5192915050565b600a805461106d906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906129f8565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6000546001600160a01b031633146111185760405162461bcd60e51b815260040161094390612a2c565b611120610ab8565b811161117d5760405162461bcd60e51b815260206004820152602660248201527f63616e2774206265206c6f776572207468616e207468652063757272656e7420604482015265737570706c7960d01b6064820152608401610943565b600c55565b60006001600160a01b0382166111ee5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610943565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461123d5760405162461bcd60e51b815260040161094390612a2c565b6112476000611e58565b565b6000546001600160a01b031633146112735760405162461bcd60e51b815260040161094390612a2c565b600c548111156112955760405162461bcd60e51b815260040161094390612af3565b600f5481116112f55760405162461bcd60e51b815260206004820152602660248201527f63616e2774206265206c6f776572207468616e207468652063757272656e74206044820152651b5a5b9d195960d21b6064820152608401610943565b600d55565b6000546001600160a01b031633146113245760405162461bcd60e51b815260040161094390612a2c565b601155565b604080518082019091526000808252602082015261084082611caf565b606060038054610855906129f8565b3233146113a45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610943565b6002600954036113c65760405162461bcd60e51b815260040161094390612a8e565b600260095560105460ff16156114135760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610943565b600d54600f548291111561150857336000908152600e602052604090205460019061143f908490612adb565b11156114c857336000908152600e6020526040902054600111156114c357336000908152600e6020526040812054611478906001612a77565b90506114848183612a77565b915080600f60008282546114989190612adb565b9091555050336000908152600e6020526040812080548392906114bc908490612adb565b9091555050505b611508565b6000905081600f60008282546114de9190612adb565b9091555050336000908152600e602052604081208054849290611502908490612adb565b90915550505b600c5482611514610ab8565b61151e9190612adb565b111561153c5760405162461bcd60e51b815260040161094390612af3565b601482611548336117d7565b6115529190612adb565b11156115995760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610943565b6115a33383611c95565b80156115bf576115bf816011546115ba9190612b3c565b611ea8565b50506001600955565b336001600160a01b038316036116205760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610943565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61169784848461190f565b6116a384848484611f2e565b6116bf5760405162461bcd60e51b815260040161094390612b5b565b50505050565b600b805461106d906129f8565b60606116df826001541190565b6117435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b600061174d612030565b9050600081511161176d5760405180602001604052806000815250610f9e565b806117778461203f565b600b60405160200161178b93929190612bae565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146117cb5760405162461bcd60e51b815260040161094390612a2c565b610a7a600b8383612537565b60006108408261213f565b6000546001600160a01b0316331461180c5760405162461bcd60e51b815260040161094390612a2c565b6001600160a01b0381166118715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b61187a81611e58565b50565b6000546001600160a01b031633146118a75760405162461bcd60e51b815260040161094390612a2c565b6010805460ff19169055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191a82611caf565b80519091506000906001600160a01b0316336001600160a01b03161480611951575033611946846108d8565b6001600160a01b0316145b80611963575081516119639033610760565b9050806119cd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610943565b846001600160a01b031682600001516001600160a01b031614611a415760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610943565b6001600160a01b038416611aa55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610943565b611ab560008484600001516118b3565b6001600160a01b0385166000908152600560205260408120805460019290611ae79084906001600160801b0316612c71565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b3391859116612c99565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bba846001612adb565b6000818152600460205260409020549091506001600160a01b0316611c4b57611be4816001541190565b15611c4b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61104a8282604051806020016040528060008152506121dd565b6040805180820190915260008082526020820152611cce826001541190565b611d2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610943565b60007f00000000000000000000000000000000000000000000000000000000000000148310611d8e57611d807f000000000000000000000000000000000000000000000000000000000000001484612a77565b611d8b906001612adb565b90505b825b818110611df7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611de457949350505050565b5080611def81612cc4565b915050611d90565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610943565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611ef05760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610943565b8034111561187a57336108fc611f068334612a77565b6040518115909202916000818181858888f1935050505015801561104a573d6000803e3d6000fd5b60006001600160a01b0384163b1561202457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f72903390899088908890600401612cdb565b6020604051808303816000875af1925050508015611fad575060408051601f3d908101601f19168201909252611faa91810190612d18565b60015b61200a573d808015611fdb576040519150601f19603f3d011682016040523d82523d6000602084013e611fe0565b606091505b5080516000036120025760405162461bcd60e51b815260040161094390612b5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612028565b5060015b949350505050565b6060600a8054610855906129f8565b6060816000036120665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612090578061207a81612b23565b91506120899050600a83612d4b565b915061206a565b6000816001600160401b038111156120aa576120aa6127af565b6040519080825280601f01601f1916602001820160405280156120d4576020820181803683370190505b5090505b8415612028576120e9600183612a77565b91506120f6600a86612d5f565b612101906030612adb565b60f81b81838151811061211657612116612ac5565b60200101906001600160f81b031916908160001a905350612138600a86612d4b565b94506120d8565b60006001600160a01b0382166121b15760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610943565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166122405760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610943565b61224b816001541190565b156122985760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610943565b7f00000000000000000000000000000000000000000000000000000000000000148311156123135760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610943565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061236f908790612c99565b6001600160801b0316815260200185836020015161238d9190612c99565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124ac5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124706000888488611f2e565b61248c5760405162461bcd60e51b815260040161094390612b5b565b8161249681612b23565b92505080806124a490612b23565b915050612423565b506001819055611c8d565b8280546124c3906129f8565b90600052602060002090601f0160209004810192826124e5576000855561252b565b82601f106124fe57805160ff191683800117855561252b565b8280016001018555821561252b579182015b8281111561252b578251825591602001919060010190612510565b506110099291506125ab565b828054612543906129f8565b90600052602060002090601f016020900481019282612565576000855561252b565b82601f1061257e5782800160ff1982351617855561252b565b8280016001018555821561252b579182015b8281111561252b578235825591602001919060010190612590565b5b8082111561100957600081556001016125ac565b6001600160e01b03198116811461187a57600080fd5b6000602082840312156125e857600080fd5b8135610f9e816125c0565b60005b8381101561260e5781810151838201526020016125f6565b838111156116bf5750506000910152565b600081518084526126378160208601602086016125f3565b601f01601f19169290920160200192915050565b602081526000610f9e602083018461261f565b60006020828403121561267057600080fd5b5035919050565b80356001600160a01b038116811461268e57600080fd5b919050565b600080604083850312156126a657600080fd5b6126af83612677565b946020939093013593505050565b6000806000606084860312156126d257600080fd5b6126db84612677565b92506126e960208501612677565b9150604084013590509250925092565b60008083601f84011261270b57600080fd5b5081356001600160401b0381111561272257600080fd5b6020830191508360208260051b850101111561273d57600080fd5b9250929050565b6000806000806040858703121561275a57600080fd5b84356001600160401b038082111561277157600080fd5b61277d888389016126f9565b9096509450602087013591508082111561279657600080fd5b506127a3878288016126f9565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156127df576127df6127af565b604051601f8501601f19908116603f01168101908282118183101715612807576128076127af565b8160405280935085815286868601111561282057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561284c57600080fd5b81356001600160401b0381111561286257600080fd5b8201601f8101841361287357600080fd5b612028848235602084016127c5565b60006020828403121561289457600080fd5b610f9e82612677565b600080604083850312156128b057600080fd5b6128b983612677565b9150602083013580151581146128ce57600080fd5b809150509250929050565b600080600080608085870312156128ef57600080fd5b6128f885612677565b935061290660208601612677565b92506040850135915060608501356001600160401b0381111561292857600080fd5b8501601f8101871361293957600080fd5b612948878235602084016127c5565b91505092959194509250565b6000806020838503121561296757600080fd5b82356001600160401b038082111561297e57600080fd5b818501915085601f83011261299257600080fd5b8135818111156129a157600080fd5b8660208285010111156129b357600080fd5b60209290920196919550909350505050565b600080604083850312156129d857600080fd5b6129e183612677565b91506129ef60208401612677565b90509250929050565b600181811c90821680612a0c57607f821691505b602082108103610cc657634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015612a8957612a89612a61565b500390565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612aee57612aee612a61565b500190565b6020808252601690820152757265616368656420746865206d617820737570706c7960501b604082015260600190565b600060018201612b3557612b35612a61565b5060010190565b6000816000190483118215151615612b5657612b56612a61565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020612bc18285838a016125f3565b855191840191612bd48184848a016125f3565b8554920191600090600181811c9080831680612bf157607f831692505b8583108103612c0e57634e487b7160e01b85526022600452602485fd5b808015612c225760018114612c3357612c60565b60ff19851688528388019550612c60565b60008b81526020902060005b85811015612c585781548a820152908401908801612c3f565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b0383811690831681811015612c9157612c91612a61565b039392505050565b60006001600160801b03808316818516808303821115612cbb57612cbb612a61565b01949350505050565b600081612cd357612cd3612a61565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d0e9083018461261f565b9695505050505050565b600060208284031215612d2a57600080fd5b8151610f9e816125c0565b634e487b7160e01b600052601260045260246000fd5b600082612d5a57612d5a612d35565b500490565b600082612d6e57612d6e612d35565b50069056fea26469706673582212204c36a2bb0fce634bc43928f60367c280dab7278fcd91eebaad13c0dc9b18c28a64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42702:5754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43100:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;43100:36:0;;;;;;;;27798:370;;;;;;;;;;-1:-1:-1;27798:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;27798:370:0;582:187:1;29524:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31049:204::-;;;;;;;;;;-1:-1:-1;31049:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;31049:204:0;1710:203:1;30612:379:0;;;;;;;;;;-1:-1:-1;30612:379:0;;;;;:::i;:::-;;:::i;:::-;;42875:43;;;;;;;;;;;;42916:2;42875:43;;46547:73;;;;;;;;;;;;;:::i;26355:98::-;;;;;;;;;;;;;:::i;31899:142::-;;;;;;;;;;-1:-1:-1;31899:142:0;;;;;:::i;:::-;;:::i;45905:447::-;;;;;;;;;;-1:-1:-1;45905:447:0;;;;;:::i;:::-;;:::i;43701:617::-;;;;;;;;;;-1:-1:-1;43701:617:0;;;;;:::i;:::-;;:::i;26990:744::-;;;;;;;;;;-1:-1:-1;26990:744:0;;;;;:::i;:::-;;:::i;42836:32::-;;;;;;;;;;;;;;;;47897:256;;;;;;;;;;;;;:::i;32104:157::-;;;;;;;;;;-1:-1:-1;32104:157:0;;;;;:::i;:::-;;:::i;43532:161::-;;;;;;;;;;-1:-1:-1;43532:161:0;;;;;:::i;:::-;;:::i;26522:177::-;;;;;;;;;;-1:-1:-1;26522:177:0;;;;;:::i;:::-;;:::i;47645:104::-;;;;;;;;;;-1:-1:-1;47645:104:0;;;;;:::i;:::-;;:::i;43149:25::-;;;;;;;;;;-1:-1:-1;43149:25:0;;;;;;;;42928:50;;;;;;;;;;;;42977:1;42928:50;;29347:118;;;;;;;;;;-1:-1:-1;29347:118:0;;;;;:::i;:::-;;:::i;42762:21::-;;;;;;;;;;;;;:::i;46628:191::-;;;;;;;;;;-1:-1:-1;46628:191:0;;;;;:::i;:::-;;:::i;28224:211::-;;;;;;;;;;-1:-1:-1;28224:211:0;;;;;:::i;:::-;;:::i;41813:103::-;;;;;;;;;;;;;:::i;43034:59::-;;;;;;;;;;-1:-1:-1;43034:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;41162:87;;;;;;;;;;-1:-1:-1;41208:7:0;41235:6;-1:-1:-1;;;;;41235:6:0;41162:87;;46827:280;;;;;;;;;;-1:-1:-1;46827:280:0;;;;;:::i;:::-;;:::i;46360:98::-;;;;;;;;;;-1:-1:-1;46360:98:0;;;;;:::i;:::-;;:::i;48284:169::-;;;;;;;;;;-1:-1:-1;48284:169:0;;;;;:::i;:::-;;:::i;:::-;;;;5484:13:1;;-1:-1:-1;;;;;5480:39:1;5462:58;;5580:4;5568:17;;;5562:24;-1:-1:-1;;;;;5558:49:1;5536:20;;;5529:79;;;;5435:18;48284:169:0;5254:360:1;29679:98:0;;;;;;;;;;;;;:::i;44326:1336::-;;;;;;:::i;:::-;;:::i;31317:274::-;;;;;;;;;;-1:-1:-1;31317:274:0;;;;;:::i;:::-;;:::i;43181:40::-;;;;;;;;;;;;;;;;32324:311;;;;;;;;;;-1:-1:-1;32324:311:0;;;;;:::i;:::-;;:::i;42790:37::-;;;;;;;;;;;;;:::i;47231:406::-;;;;;;;;;;-1:-1:-1;47231:406:0;;;;;:::i;:::-;;:::i;36739:43::-;;;;;;;;;;;;;;;;47757:132;;;;;;;;;;-1:-1:-1;47757:132:0;;;;;:::i;:::-;;:::i;48161:115::-;;;;;;;;;;-1:-1:-1;48161:115:0;;;;;:::i;:::-;;:::i;31654:186::-;;;;;;;;;;-1:-1:-1;31654:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31799:25:0;;;31776:4;31799:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31654:186;42071:201;;;;;;;;;;-1:-1:-1;42071:201:0;;;;;:::i;:::-;;:::i;42986:39::-;;;;;;;;;;;;;;;;46466:73;;;;;;;;;;;;;:::i;27798:370::-;27925:4;-1:-1:-1;;;;;;27955:40:0;;-1:-1:-1;;;27955:40:0;;:99;;-1:-1:-1;;;;;;;28006:48:0;;-1:-1:-1;;;28006:48:0;27955:99;:160;;;-1:-1:-1;;;;;;;28065:50:0;;-1:-1:-1;;;28065:50:0;27955:160;:207;;;-1:-1:-1;;;;;;;;;;11456:40:0;;;28126:36;27941:221;27798:370;-1:-1:-1;;27798:370:0:o;29524:94::-;29578:13;29607:5;29600:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29524:94;:::o;31049:204::-;31117:7;31141:16;31149:7;32961:12;;-1:-1:-1;32951:22:0;32874:105;31141:16;31133:74;;;;-1:-1:-1;;;31133:74:0;;8092:2:1;31133:74:0;;;8074:21:1;8131:2;8111:18;;;8104:30;8170:34;8150:18;;;8143:62;-1:-1:-1;;;8221:18:1;;;8214:43;8274:19;;31133:74:0;;;;;;;;;-1:-1:-1;31223:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31223:24:0;;31049:204::o;30612:379::-;30681:13;30697:24;30713:7;30697:15;:24::i;:::-;30681:40;;30742:5;-1:-1:-1;;;;;30736:11:0;:2;-1:-1:-1;;;;;30736:11:0;;30728:58;;;;-1:-1:-1;;;30728:58:0;;8506:2:1;30728:58:0;;;8488:21:1;8545:2;8525:18;;;8518:30;8584:34;8564:18;;;8557:62;-1:-1:-1;;;8635:18:1;;;8628:32;8677:19;;30728:58:0;8304:398:1;30728:58:0;23908:10;-1:-1:-1;;;;;30811:21:0;;;;:62;;-1:-1:-1;30836:37:0;30853:5;23908:10;31654:186;:::i;30836:37::-;30795:153;;;;-1:-1:-1;;;30795:153:0;;8909:2:1;30795:153:0;;;8891:21:1;8948:2;8928:18;;;8921:30;8987:34;8967:18;;;8960:62;9058:27;9038:18;;;9031:55;9103:19;;30795:153:0;8707:421:1;30795:153:0;30957:28;30966:2;30970:7;30979:5;30957:8;:28::i;:::-;30674:317;30612:379;;:::o;46547:73::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;46599:6:::1;:13:::0;;-1:-1:-1;;46599:13:0::1;46608:4;46599:13;::::0;;46547:73::o;26355:98::-;26408:7;26446:1;26431:12;;:16;;;;:::i;:::-;26424:23;;26355:98;:::o;31899:142::-;32007:28;32017:4;32023:2;32027:7;32007:9;:28::i;45905:447::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;22202:1:::1;22800:7;;:19:::0;22792:63:::1;;;;-1:-1:-1::0;;;22792:63:0::1;;;;;;;:::i;:::-;22202:1;22933:7;:18:::0;46071:37;;::::2;46063:64;;;::::0;-1:-1:-1;;;46063:64:0;;10318:2:1;46063:64:0::2;::::0;::::2;10300:21:1::0;10357:2;10337:18;;;10330:30;-1:-1:-1;;;10376:18:1;;;10369:43;10429:18;;46063:64:0::2;10116:337:1::0;46063:64:0::2;46145:9;46140:205;46160:21:::0;;::::2;46140:205;;;46243:10;;46227:9;;46237:1;46227:12;;;;;;;:::i;:::-;;;;;;;46211:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;46203:77;;;;-1:-1:-1::0;;;46203:77:0::2;;;;;;;:::i;:::-;46295:38;46305:10;;46316:1;46305:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46320:9;;46330:1;46320:12;;;;;;;:::i;:::-;;;;;;;46295:9;:38::i;:::-;46183:3:::0;::::2;::::0;::::2;:::i;:::-;;;;46140:205;;;-1:-1:-1::0;;22158:1:0::1;23112:7;:22:::0;-1:-1:-1;;;45905:447:0:o;43701:617::-;43784:7;43828:18;;43808:17;;:38;43804:480;;;-1:-1:-1;;;;;43867:34:0;;;;;;:24;:34;;;;;;42977:1;;43867:46;;43904:9;;43867:46;:::i;:::-;:71;43863:410;;;-1:-1:-1;;;;;43963:34:0;;;;;;:24;:34;;;;;;42977:1;-1:-1:-1;43959:236:0;;;-1:-1:-1;;;;;44091:34:0;;44047:16;44091:34;;;:24;:34;;;;;;44066:59;;42977:1;44066:59;:::i;:::-;44047:78;-1:-1:-1;44155:20:0;44047:78;44155:9;:20;:::i;:::-;44148:27;;;;;43959:236;43863:410;;;-1:-1:-1;44256:1:0;44249:8;;43863:410;-1:-1:-1;44301:9:0;43701:617;-1:-1:-1;43701:617:0:o;26990:744::-;27099:7;27134:16;27144:5;27134:9;:16::i;:::-;27126:5;:24;27118:71;;;;-1:-1:-1;;;27118:71:0;;11416:2:1;27118:71:0;;;11398:21:1;11455:2;11435:18;;;11428:30;11494:34;11474:18;;;11467:62;-1:-1:-1;;;11545:18:1;;;11538:32;11587:19;;27118:71:0;11214:398:1;27118:71:0;27196:22;27221:13;:11;:13::i;:::-;27196:38;;27241:19;27271:25;27321:9;27316:350;27340:14;27336:1;:18;27316:350;;;27370:31;27404:14;;;:11;:14;;;;;;;;;27370:48;;;;;;;;;-1:-1:-1;;;;;27370:48:0;;;;;-1:-1:-1;;;27370:48:0;;;-1:-1:-1;;;;;27370:48:0;;;;;;;;27431:28;27427:89;;27492:14;;;-1:-1:-1;27427:89:0;27549:5;-1:-1:-1;;;;;27528:26:0;:17;-1:-1:-1;;;;;27528:26:0;;27524:135;;27586:5;27571:11;:20;27567:59;;-1:-1:-1;27613:1:0;-1:-1:-1;27606:8:0;;-1:-1:-1;;;27606:8:0;27567:59;27636:13;;;;:::i;:::-;;;;27524:135;-1:-1:-1;27356:3:0;;;;:::i;:::-;;;;27316:350;;;-1:-1:-1;27672:56:0;;-1:-1:-1;;;27672:56:0;;11819:2:1;27672:56:0;;;11801:21:1;11858:2;11838:18;;;11831:30;11897:34;11877:18;;;11870:62;-1:-1:-1;;;11948:18:1;;;11941:44;12002:19;;27672:56:0;11617:410:1;47897:256:0;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;22202:1:::1;22800:7;;:19:::0;22792:63:::1;;;;-1:-1:-1::0;;;22792:63:0::1;;;;;;;:::i;:::-;22202:1;22933:7;:18:::0;47968:21:::2;47960:59;;;::::0;-1:-1:-1;;;47960:59:0;;12234:2:1;47960:59:0::2;::::0;::::2;12216:21:1::0;12273:2;12253:18;;;12246:30;-1:-1:-1;;;12292:18:1;;;12285:51;12353:18;;47960:59:0::2;12032:345:1::0;47960:59:0::2;48049:49;::::0;48031:12:::2;::::0;48049:10:::2;::::0;48072:21:::2;::::0;48031:12;48049:49;48031:12;48049:49;48072:21;48049:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48030:68;;;48117:7;48109:36;;;::::0;-1:-1:-1;;;48109:36:0;;12794:2:1;48109:36:0::2;::::0;::::2;12776:21:1::0;12833:2;12813:18;;;12806:30;-1:-1:-1;;;12852:18:1;;;12845:46;12908:18;;48109:36:0::2;12592:340:1::0;48109:36:0::2;-1:-1:-1::0;22158:1:0::1;23112:7;:22:::0;47897:256::o;32104:157::-;32216:39;32233:4;32239:2;32243:7;32216:39;;;;;;;;;;;;:16;:39::i;43532:161::-;43608:7;43649:36;43665:8;43675:9;43649:15;:36::i;:::-;43635:11;;:50;;;;:::i;:::-;43628:57;43532:161;-1:-1:-1;;;43532:161:0:o;26522:177::-;26589:7;26621:13;:11;:13::i;:::-;26613:5;:21;26605:69;;;;-1:-1:-1;;;26605:69:0;;13312:2:1;26605:69:0;;;13294:21:1;13351:2;13331:18;;;13324:30;13390:34;13370:18;;;13363:62;-1:-1:-1;;;13441:18:1;;;13434:33;13484:19;;26605:69:0;13110:399:1;26605:69:0;-1:-1:-1;26688:5:0;26522:177::o;47645:104::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;47720:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47645:104:::0;:::o;29347:118::-;29411:7;29434:20;29446:7;29434:11;:20::i;:::-;:25;;29347:118;-1:-1:-1;;29347:118:0:o;42762:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46628:191::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;46721:13:::1;:11;:13::i;:::-;46708:10;:26;46700:77;;;::::0;-1:-1:-1;;;46700:77:0;;13716:2:1;46700:77:0::1;::::0;::::1;13698:21:1::0;13755:2;13735:18;;;13728:30;13794:34;13774:18;;;13767:62;-1:-1:-1;;;13845:18:1;;;13838:36;13891:19;;46700:77:0::1;13514:402:1::0;46700:77:0::1;46788:10;:23:::0;46628:191::o;28224:211::-;28288:7;-1:-1:-1;;;;;28312:19:0;;28304:75;;;;-1:-1:-1;;;28304:75:0;;14123:2:1;28304:75:0;;;14105:21:1;14162:2;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;-1:-1:-1;;;14252:18:1;;;14245:41;14303:19;;28304:75:0;13921:407:1;28304:75:0;-1:-1:-1;;;;;;28401:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28401:27:0;;28224:211::o;41813:103::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;41878:30:::1;41905:1;41878:18;:30::i;:::-;41813:103::o:0;46827:280::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;46928:10:::1;;46914;:24;;46906:59;;;;-1:-1:-1::0;;;46906:59:0::1;;;;;;;:::i;:::-;46997:17;;46984:10;:30;46976:81;;;::::0;-1:-1:-1;;;46976:81:0;;14535:2:1;46976:81:0::1;::::0;::::1;14517:21:1::0;14574:2;14554:18;;;14547:30;14613:34;14593:18;;;14586:62;-1:-1:-1;;;14664:18:1;;;14657:36;14710:19;;46976:81:0::1;14333:402:1::0;46976:81:0::1;47068:18;:31:::0;46827:280::o;46360:98::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;46427:11:::1;:23:::0;46360:98::o;48284:169::-;-1:-1:-1;;;;;;;;;;;;;;;;;48424:21:0;48436:8;48424:11;:21::i;29679:98::-;29735:13;29764:7;29757:14;;;;;:::i;44326:1336::-;43446:9;43459:10;43446:23;43438:66;;;;-1:-1:-1;;;43438:66:0;;14942:2:1;43438:66:0;;;14924:21:1;14981:2;14961:18;;;14954:30;15020:32;15000:18;;;14993:60;15070:18;;43438:66:0;14740:354:1;43438:66:0;22202:1:::1;22800:7;;:19:::0;22792:63:::1;;;;-1:-1:-1::0;;;22792:63:0::1;;;;;;;:::i;:::-;22202:1;22933:7;:18:::0;44463:6:::2;::::0;::::2;;44462:7;44454:38;;;::::0;-1:-1:-1;;;44454:38:0;;15301:2:1;44454:38:0::2;::::0;::::2;15283:21:1::0;15340:2;15320:18;;;15313:30;-1:-1:-1;;;15359:18:1;;;15352:48;15417:18;;44454:38:0::2;15099:342:1::0;44454:38:0::2;44580:18;::::0;44560:17:::2;::::0;44536:9;;-1:-1:-1;44556:731:0::2;;;44644:10;44619:36;::::0;;;:24:::2;:36;::::0;;;;;42977:1:::2;::::0;44619:48:::2;::::0;44658:9;;44619:48:::2;:::i;:::-;:73;44615:661;;;44742:10;44717:36;::::0;;;:24:::2;:36;::::0;;;;;42977:1:::2;-1:-1:-1::0;44713:360:0::2;;;44872:10;44803:16;44847:36:::0;;;:24:::2;:36;::::0;;;;;44822:61:::2;::::0;42977:1:::2;44822:61;:::i;:::-;44803:80:::0;-1:-1:-1;44906:24:0::2;44803:80:::0;44906:24;::::2;:::i;:::-;;;44974:8;44953:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;45030:10:0::2;45005:36;::::0;;;:24:::2;:36;::::0;;;;:48;;45045:8;;45005:36;:48:::2;::::0;45045:8;;45005:48:::2;:::i;:::-;::::0;;;-1:-1:-1;;;44713:360:0::2;44615:661;;;45142:1;45127:16;;45183:9;45162:17;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;45236:10:0::2;45211:36;::::0;;;:24:::2;:36;::::0;;;;:49;;45251:9;;45211:36;:49:::2;::::0;45251:9;;45211:49:::2;:::i;:::-;::::0;;;-1:-1:-1;;44615:661:0::2;45336:10;;45323:9;45307:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;45299:74;;;;-1:-1:-1::0;;;45299:74:0::2;;;;;;;:::i;:::-;42916:2;45433:9;45406:24;45419:10;45406:12;:24::i;:::-;:36;;;;:::i;:::-;:54;;45384:126;;;::::0;-1:-1:-1;;;45384:126:0;;15648:2:1;45384:126:0::2;::::0;::::2;15630:21:1::0;15687:2;15667:18;;;15660:30;-1:-1:-1;;;15706:18:1;;;15699:52;15768:18;;45384:126:0::2;15446:346:1::0;45384:126:0::2;45521:32;45531:10;45543:9;45521;:32::i;:::-;45570:16:::0;;45566:89:::2;;45603:40;45630:12;45616:11;;:26;;;;:::i;:::-;45603:12;:40::i;:::-;-1:-1:-1::0;;22158:1:0::1;23112:7;:22:::0;44326:1336::o;31317:274::-;23908:10;-1:-1:-1;;;;;31408:24:0;;;31400:63;;;;-1:-1:-1;;;31400:63:0;;15999:2:1;31400:63:0;;;15981:21:1;16038:2;16018:18;;;16011:30;16077:28;16057:18;;;16050:56;16123:18;;31400:63:0;15797:350:1;31400:63:0;23908:10;31472:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31472:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31472:53:0;;;;;;;;;;31537:48;;722:41:1;;;31472:42:0;;23908:10;31537:48;;695:18:1;31537:48:0;;;;;;;31317:274;;:::o;32324:311::-;32461:28;32471:4;32477:2;32481:7;32461:9;:28::i;:::-;32512:48;32535:4;32541:2;32545:7;32554:5;32512:22;:48::i;:::-;32496:133;;;;-1:-1:-1;;;32496:133:0;;;;;;;:::i;:::-;32324:311;;;;:::o;42790:37::-;;;;;;;:::i;47231:406::-;47305:13;47339:17;47347:8;32961:12;;-1:-1:-1;32951:22:0;32874:105;47339:17;47331:77;;;;-1:-1:-1;;;47331:77:0;;16774:2:1;47331:77:0;;;16756:21:1;16813:2;16793:18;;;16786:30;16852:34;16832:18;;;16825:62;-1:-1:-1;;;16903:18:1;;;16896:45;16958:19;;47331:77:0;16572:411:1;47331:77:0;47421:28;47452:10;:8;:10::i;:::-;47421:41;;47511:1;47486:14;47480:28;:32;:149;;;;;;;;;;;;;;;;;47552:14;47568:26;47585:8;47568:16;:26::i;:::-;47596:13;47535:75;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47473:156;47231:406;-1:-1:-1;;;47231:406:0:o;47757:132::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;47848:33:::1;:13;47864:17:::0;;47848:33:::1;:::i;48161:115::-:0;48220:7;48247:21;48261:6;48247:13;:21::i;42071:201::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42160:22:0;::::1;42152:73;;;::::0;-1:-1:-1;;;42152:73:0;;18848:2:1;42152:73:0::1;::::0;::::1;18830:21:1::0;18887:2;18867:18;;;18860:30;18926:34;18906:18;;;18899:62;-1:-1:-1;;;18977:18:1;;;18970:36;19023:19;;42152:73:0::1;18646:402:1::0;42152:73:0::1;42236:28;42255:8;42236:18;:28::i;:::-;42071:201:::0;:::o;46466:73::-;41208:7;41235:6;-1:-1:-1;;;;;41235:6:0;23908:10;41382:23;41374:68;;;;-1:-1:-1;;;41374:68:0;;;;;;;:::i;:::-;46517:6:::1;:14:::0;;-1:-1:-1;;46517:14:0::1;::::0;;46466:73::o;36561:172::-;36658:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36658:29:0;-1:-1:-1;;;;;36658:29:0;;;;;;;;;36699:28;;36658:24;;36699:28;;;;;;;36561:172;;;:::o;34926:1529::-;35023:35;35061:20;35073:7;35061:11;:20::i;:::-;35132:18;;35023:58;;-1:-1:-1;35090:22:0;;-1:-1:-1;;;;;35116:34:0;23908:10;-1:-1:-1;;;;;35116:34:0;;:81;;;-1:-1:-1;23908:10:0;35161:20;35173:7;35161:11;:20::i;:::-;-1:-1:-1;;;;;35161:36:0;;35116:81;:142;;;-1:-1:-1;35225:18:0;;35208:50;;23908:10;31654:186;:::i;35208:50::-;35090:169;;35284:17;35268:101;;;;-1:-1:-1;;;35268:101:0;;19255:2:1;35268:101:0;;;19237:21:1;19294:2;19274:18;;;19267:30;19333:34;19313:18;;;19306:62;-1:-1:-1;;;19384:18:1;;;19377:48;19442:19;;35268:101:0;19053:414:1;35268:101:0;35416:4;-1:-1:-1;;;;;35394:26:0;:13;:18;;;-1:-1:-1;;;;;35394:26:0;;35378:98;;;;-1:-1:-1;;;35378:98:0;;19674:2:1;35378:98:0;;;19656:21:1;19713:2;19693:18;;;19686:30;19752:34;19732:18;;;19725:62;-1:-1:-1;;;19803:18:1;;;19796:36;19849:19;;35378:98:0;19472:402:1;35378:98:0;-1:-1:-1;;;;;35491:16:0;;35483:66;;;;-1:-1:-1;;;35483:66:0;;20081:2:1;35483:66:0;;;20063:21:1;20120:2;20100:18;;;20093:30;20159:34;20139:18;;;20132:62;-1:-1:-1;;;20210:18:1;;;20203:35;20255:19;;35483:66:0;19879:401:1;35483:66:0;35658:49;35675:1;35679:7;35688:13;:18;;;35658:8;:49::i;:::-;-1:-1:-1;;;;;35716:18:0;;;;;;:12;:18;;;;;:31;;35746:1;;35716:18;:31;;35746:1;;-1:-1:-1;;;;;35716:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35716:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35754:16:0;;-1:-1:-1;35754:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35754:16:0;;:29;;-1:-1:-1;;35754:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35754:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35813:43:0;;;;;;;;-1:-1:-1;;;;;35813:43:0;;;;;-1:-1:-1;;;;;35839:15:0;35813:43;;;;;;;;;-1:-1:-1;35790:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35790:66:0;-1:-1:-1;;;;;;35790:66:0;;;;;;;;;;;36106:11;35802:7;-1:-1:-1;36106:11:0;:::i;:::-;36169:1;36128:24;;;:11;:24;;;;;:29;36084:33;;-1:-1:-1;;;;;;36128:29:0;36124:236;;36186:20;36194:11;32961:12;;-1:-1:-1;32951:22:0;32874:105;36186:20;36182:171;;;36246:97;;;;;;;;36273:18;;-1:-1:-1;;;;;36246:97:0;;;;;;36304:28;;;;-1:-1:-1;;;;;36246:97:0;;;;;;;;;-1:-1:-1;36219:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36219:124:0;-1:-1:-1;;;;;;36219:124:0;;;;;;;;;;;;36182:171;36392:7;36388:2;-1:-1:-1;;;;;36373:27:0;36382:4;-1:-1:-1;;;;;36373:27:0;;;;;;;;;;;36407:42;35016:1439;;;34926:1529;;;:::o;32985:98::-;33050:27;33060:2;33064:8;33050:27;;;;;;;;;;;;:9;:27::i;28687:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28804:16:0;28812:7;32961:12;;-1:-1:-1;32951:22:0;32874:105;28804:16;28796:71;;;;-1:-1:-1;;;28796:71:0;;20996:2:1;28796:71:0;;;20978:21:1;21035:2;21015:18;;;21008:30;21074:34;21054:18;;;21047:62;-1:-1:-1;;;21125:18:1;;;21118:40;21175:19;;28796:71:0;20794:406:1;28796:71:0;28876:26;28924:12;28913:7;:23;28909:93;;28968:22;28978:12;28968:7;:22;:::i;:::-;:26;;28993:1;28968:26;:::i;:::-;28947:47;;28909:93;29030:7;29010:212;29047:18;29039:4;:26;29010:212;;29084:31;29118:17;;;:11;:17;;;;;;;;;29084:51;;;;;;;;;-1:-1:-1;;;;;29084:51:0;;;;;-1:-1:-1;;;29084:51:0;;;-1:-1:-1;;;;;29084:51:0;;;;;;;;29148:28;29144:71;;29196:9;28687:606;-1:-1:-1;;;;28687:606:0:o;29144:71::-;-1:-1:-1;29067:6:0;;;;:::i;:::-;;;;29010:212;;;-1:-1:-1;29230:57:0;;-1:-1:-1;;;29230:57:0;;21548:2:1;29230:57:0;;;21530:21:1;21587:2;21567:18;;;21560:30;21626:34;21606:18;;;21599:62;-1:-1:-1;;;21677:18:1;;;21670:45;21732:19;;29230:57:0;21346:411:1;42432:191:0;42506:16;42525:6;;-1:-1:-1;;;;;42542:17:0;;;-1:-1:-1;;;;;;42542:17:0;;;;;;42575:40;;42525:6;;;;;;;42575:40;;42506:16;42575:40;42495:128;42432:191;:::o;45670:227::-;45748:6;45735:9;:19;;45727:53;;;;-1:-1:-1;;;45727:53:0;;21964:2:1;45727:53:0;;;21946:21:1;22003:2;21983:18;;;21976:30;-1:-1:-1;;;22022:18:1;;;22015:51;22083:18;;45727:53:0;21762:345:1;45727:53:0;45807:6;45795:9;:18;45791:99;;;45838:10;45830:48;45859:18;45871:6;45859:9;:18;:::i;:::-;45830:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38276:690;38413:4;-1:-1:-1;;;;;38430:13:0;;1559:19;:23;38426:535;;38469:72;;-1:-1:-1;;;38469:72:0;;-1:-1:-1;;;;;38469:36:0;;;;;:72;;23908:10;;38520:4;;38526:7;;38535:5;;38469:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38469:72:0;;;;;;;;-1:-1:-1;;38469:72:0;;;;;;;;;;;;:::i;:::-;;;38456:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38700:6;:13;38717:1;38700:18;38696:215;;38733:61;;-1:-1:-1;;;38733:61:0;;;;;;;:::i;38696:215::-;38879:6;38873:13;38864:6;38860:2;38856:15;38849:38;38456:464;-1:-1:-1;;;;;;38591:55:0;-1:-1:-1;;;38591:55:0;;-1:-1:-1;38584:62:0;;38426:535;-1:-1:-1;38949:4:0;38426:535;38276:690;;;;;;:::o;47115:108::-;47175:13;47208:7;47201:14;;;;;:::i;18631:723::-;18687:13;18908:5;18917:1;18908:10;18904:53;;-1:-1:-1;;18935:10:0;;;;;;;;;;;;-1:-1:-1;;;18935:10:0;;;;;18631:723::o;18904:53::-;18982:5;18967:12;19023:78;19030:9;;19023:78;;19056:8;;;;:::i;:::-;;-1:-1:-1;19079:10:0;;-1:-1:-1;19087:2:0;19079:10;;:::i;:::-;;;19023:78;;;19111:19;19143:6;-1:-1:-1;;;;;19133:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19133:17:0;;19111:39;;19161:154;19168:10;;19161:154;;19195:11;19205:1;19195:11;;:::i;:::-;;-1:-1:-1;19264:10:0;19272:2;19264:5;:10;:::i;:::-;19251:24;;:2;:24;:::i;:::-;19238:39;;19221:6;19228;19221:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19221:56:0;;;;;;;;-1:-1:-1;19292:11:0;19301:2;19292:11;;:::i;:::-;;;19161:154;;28441:240;28502:7;-1:-1:-1;;;;;28534:19:0;;28518:102;;;;-1:-1:-1;;;28518:102:0;;23436:2:1;28518:102:0;;;23418:21:1;23475:2;23455:18;;;23448:30;23514:34;23494:18;;;23487:62;-1:-1:-1;;;23565:18:1;;;23558:47;23622:19;;28518:102:0;23234:413:1;28518:102:0;-1:-1:-1;;;;;;28642:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28642:32:0;;-1:-1:-1;;;;;28642:32:0;;28441:240::o;33422:1272::-;33550:12;;-1:-1:-1;;;;;33577:16:0;;33569:62;;;;-1:-1:-1;;;33569:62:0;;23854:2:1;33569:62:0;;;23836:21:1;23893:2;23873:18;;;23866:30;23932:34;23912:18;;;23905:62;-1:-1:-1;;;23983:18:1;;;23976:31;24024:19;;33569:62:0;23652:397:1;33569:62:0;33768:21;33776:12;32961;;-1:-1:-1;32951:22:0;32874:105;33768:21;33767:22;33759:64;;;;-1:-1:-1;;;33759:64:0;;24256:2:1;33759:64:0;;;24238:21:1;24295:2;24275:18;;;24268:30;24334:31;24314:18;;;24307:59;24383:18;;33759:64:0;24054:353:1;33759:64:0;33850:12;33838:8;:24;;33830:71;;;;-1:-1:-1;;;33830:71:0;;24614:2:1;33830:71:0;;;24596:21:1;24653:2;24633:18;;;24626:30;24692:34;24672:18;;;24665:62;-1:-1:-1;;;24743:18:1;;;24736:32;24785:19;;33830:71:0;24412:398:1;33830:71:0;-1:-1:-1;;;;;34013:16:0;;33980:30;34013:16;;;:12;:16;;;;;;;;;33980:49;;;;;;;;;-1:-1:-1;;;;;33980:49:0;;;;;-1:-1:-1;;;33980:49:0;;;;;;;;;;;34055:119;;;;;;;;34075:19;;33980:49;;34055:119;;;34075:39;;34105:8;;34075:39;:::i;:::-;-1:-1:-1;;;;;34055:119:0;;;;;34158:8;34123:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34055:119:0;;;;;;-1:-1:-1;;;;;34036:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34036:138:0;;;;;;;;;;;;34209:43;;;;;;;;;;-1:-1:-1;;;;;34235:15:0;34209:43;;;;;;;;34181:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34181:71:0;-1:-1:-1;;;;;;34181:71:0;;;;;;;;;;;;;;;;;;34193:12;;34305:281;34329:8;34325:1;:12;34305:281;;;34358:38;;34383:12;;-1:-1:-1;;;;;34358:38:0;;;34375:1;;34358:38;;34375:1;;34358:38;34423:59;34454:1;34458:2;34462:12;34476:5;34423:22;:59::i;:::-;34405:150;;;;-1:-1:-1;;;34405:150:0;;;;;;;:::i;:::-;34564:14;;;;:::i;:::-;;;;34339:3;;;;;:::i;:::-;;;;34305:281;;;-1:-1:-1;34594:12:0;:27;;;34628:60;32324:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:367::-;2751:8;2761:6;2815:3;2808:4;2800:6;2796:17;2792:27;2782:55;;2833:1;2830;2823:12;2782:55;-1:-1:-1;2856:20:1;;-1:-1:-1;;;;;2888:30:1;;2885:50;;;2931:1;2928;2921:12;2885:50;2968:4;2960:6;2956:17;2944:29;;3028:3;3021:4;3011:6;3008:1;3004:14;2996:6;2992:27;2988:38;2985:47;2982:67;;;3045:1;3042;3035:12;2982:67;2688:367;;;;;:::o;3060:773::-;3182:6;3190;3198;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:52;;;3275:1;3272;3265:12;3227:52;3315:9;3302:23;-1:-1:-1;;;;;3385:2:1;3377:6;3374:14;3371:34;;;3401:1;3398;3391:12;3371:34;3440:70;3502:7;3493:6;3482:9;3478:22;3440:70;:::i;:::-;3529:8;;-1:-1:-1;3414:96:1;-1:-1:-1;3617:2:1;3602:18;;3589:32;;-1:-1:-1;3633:16:1;;;3630:36;;;3662:1;3659;3652:12;3630:36;;3701:72;3765:7;3754:8;3743:9;3739:24;3701:72;:::i;:::-;3060:773;;;;-1:-1:-1;3792:8:1;-1:-1:-1;;;;3060:773:1:o;3838:127::-;3899:10;3894:3;3890:20;3887:1;3880:31;3930:4;3927:1;3920:15;3954:4;3951:1;3944:15;3970:632;4035:5;-1:-1:-1;;;;;4106:2:1;4098:6;4095:14;4092:40;;;4112:18;;:::i;:::-;4187:2;4181:9;4155:2;4241:15;;-1:-1:-1;;4237:24:1;;;4263:2;4233:33;4229:42;4217:55;;;4287:18;;;4307:22;;;4284:46;4281:72;;;4333:18;;:::i;:::-;4373:10;4369:2;4362:22;4402:6;4393:15;;4432:6;4424;4417:22;4472:3;4463:6;4458:3;4454:16;4451:25;4448:45;;;4489:1;4486;4479:12;4448:45;4539:6;4534:3;4527:4;4519:6;4515:17;4502:44;4594:1;4587:4;4578:6;4570;4566:19;4562:30;4555:41;;;;3970:632;;;;;:::o;4607:451::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4785:9;4772:23;-1:-1:-1;;;;;4810:6:1;4807:30;4804:50;;;4850:1;4847;4840:12;4804:50;4873:22;;4926:4;4918:13;;4914:27;-1:-1:-1;4904:55:1;;4955:1;4952;4945:12;4904:55;4978:74;5044:7;5039:2;5026:16;5021:2;5017;5013:11;4978:74;:::i;5063:186::-;5122:6;5175:2;5163:9;5154:7;5150:23;5146:32;5143:52;;;5191:1;5188;5181:12;5143:52;5214:29;5233:9;5214:29;:::i;5619:347::-;5684:6;5692;5745:2;5733:9;5724:7;5720:23;5716:32;5713:52;;;5761:1;5758;5751:12;5713:52;5784:29;5803:9;5784:29;:::i;:::-;5774:39;;5863:2;5852:9;5848:18;5835:32;5910:5;5903:13;5896:21;5889:5;5886:32;5876:60;;5932:1;5929;5922:12;5876:60;5955:5;5945:15;;;5619:347;;;;;:::o;5971:667::-;6066:6;6074;6082;6090;6143:3;6131:9;6122:7;6118:23;6114:33;6111:53;;;6160:1;6157;6150:12;6111:53;6183:29;6202:9;6183:29;:::i;:::-;6173:39;;6231:38;6265:2;6254:9;6250:18;6231:38;:::i;:::-;6221:48;;6316:2;6305:9;6301:18;6288:32;6278:42;;6371:2;6360:9;6356:18;6343:32;-1:-1:-1;;;;;6390:6:1;6387:30;6384:50;;;6430:1;6427;6420:12;6384:50;6453:22;;6506:4;6498:13;;6494:27;-1:-1:-1;6484:55:1;;6535:1;6532;6525:12;6484:55;6558:74;6624:7;6619:2;6606:16;6601:2;6597;6593:11;6558:74;:::i;:::-;6548:84;;;5971:667;;;;;;;:::o;6643:592::-;6714:6;6722;6775:2;6763:9;6754:7;6750:23;6746:32;6743:52;;;6791:1;6788;6781:12;6743:52;6831:9;6818:23;-1:-1:-1;;;;;6901:2:1;6893:6;6890:14;6887:34;;;6917:1;6914;6907:12;6887:34;6955:6;6944:9;6940:22;6930:32;;7000:7;6993:4;6989:2;6985:13;6981:27;6971:55;;7022:1;7019;7012:12;6971:55;7062:2;7049:16;7088:2;7080:6;7077:14;7074:34;;;7104:1;7101;7094:12;7074:34;7149:7;7144:2;7135:6;7131:2;7127:15;7123:24;7120:37;7117:57;;;7170:1;7167;7160:12;7117:57;7201:2;7193:11;;;;;7223:6;;-1:-1:-1;6643:592:1;;-1:-1:-1;;;;6643:592:1:o;7240:260::-;7308:6;7316;7369:2;7357:9;7348:7;7344:23;7340:32;7337:52;;;7385:1;7382;7375:12;7337:52;7408:29;7427:9;7408:29;:::i;:::-;7398:39;;7456:38;7490:2;7479:9;7475:18;7456:38;:::i;:::-;7446:48;;7240:260;;;;;:::o;7505:380::-;7584:1;7580:12;;;;7627;;;7648:61;;7702:4;7694:6;7690:17;7680:27;;7648:61;7755:2;7747:6;7744:14;7724:18;7721:38;7718:161;;7801:10;7796:3;7792:20;7789:1;7782:31;7836:4;7833:1;7826:15;7864:4;7861:1;7854:15;9133:356;9335:2;9317:21;;;9354:18;;;9347:30;9413:34;9408:2;9393:18;;9386:62;9480:2;9465:18;;9133:356::o;9494:127::-;9555:10;9550:3;9546:20;9543:1;9536:31;9586:4;9583:1;9576:15;9610:4;9607:1;9600:15;9626:125;9666:4;9694:1;9691;9688:8;9685:34;;;9699:18;;:::i;:::-;-1:-1:-1;9736:9:1;;9626:125::o;9756:355::-;9958:2;9940:21;;;9997:2;9977:18;;;9970:30;10036:33;10031:2;10016:18;;10009:61;10102:2;10087:18;;9756:355::o;10458:127::-;10519:10;10514:3;10510:20;10507:1;10500:31;10550:4;10547:1;10540:15;10574:4;10571:1;10564:15;10590:128;10630:3;10661:1;10657:6;10654:1;10651:13;10648:39;;;10667:18;;:::i;:::-;-1:-1:-1;10703:9:1;;10590:128::o;10723:346::-;10925:2;10907:21;;;10964:2;10944:18;;;10937:30;-1:-1:-1;;;10998:2:1;10983:18;;10976:52;11060:2;11045:18;;10723:346::o;11074:135::-;11113:3;11134:17;;;11131:43;;11154:18;;:::i;:::-;-1:-1:-1;11201:1:1;11190:13;;11074:135::o;12937:168::-;12977:7;13043:1;13039;13035:6;13031:14;13028:1;13025:21;13020:1;13013:9;13006:17;13002:45;12999:71;;;13050:18;;:::i;:::-;-1:-1:-1;13090:9:1;;12937:168::o;16152:415::-;16354:2;16336:21;;;16393:2;16373:18;;;16366:30;16432:34;16427:2;16412:18;;16405:62;-1:-1:-1;;;16498:2:1;16483:18;;16476:49;16557:3;16542:19;;16152:415::o;17114:1527::-;17338:3;17376:6;17370:13;17402:4;17415:51;17459:6;17454:3;17449:2;17441:6;17437:15;17415:51;:::i;:::-;17529:13;;17488:16;;;;17551:55;17529:13;17488:16;17573:15;;;17551:55;:::i;:::-;17695:13;;17628:20;;;17668:1;;17755;17777:18;;;;17830;;;;17857:93;;17935:4;17925:8;17921:19;17909:31;;17857:93;17998:2;17988:8;17985:16;17965:18;17962:40;17959:167;;-1:-1:-1;;;18025:33:1;;18081:4;18078:1;18071:15;18111:4;18032:3;18099:17;17959:167;18142:18;18169:110;;;;18293:1;18288:328;;;;18135:481;;18169:110;-1:-1:-1;;18204:24:1;;18190:39;;18249:20;;;;-1:-1:-1;18169:110:1;;18288:328;17061:1;17054:14;;;17098:4;17085:18;;18383:1;18397:169;18411:8;18408:1;18405:15;18397:169;;;18493:14;;18478:13;;;18471:37;18536:16;;;;18428:10;;18397:169;;;18401:3;;18597:8;18590:5;18586:20;18579:27;;18135:481;-1:-1:-1;18632:3:1;;17114:1527;-1:-1:-1;;;;;;;;;;;17114:1527:1:o;20285:246::-;20325:4;-1:-1:-1;;;;;20438:10:1;;;;20408;;20460:12;;;20457:38;;;20475:18;;:::i;:::-;20512:13;;20285:246;-1:-1:-1;;;20285:246:1:o;20536:253::-;20576:3;-1:-1:-1;;;;;20665:2:1;20662:1;20658:10;20695:2;20692:1;20688:10;20726:3;20722:2;20718:12;20713:3;20710:21;20707:47;;;20734:18;;:::i;:::-;20770:13;;20536:253;-1:-1:-1;;;;20536:253:1:o;21205:136::-;21244:3;21272:5;21262:39;;21281:18;;:::i;:::-;-1:-1:-1;;;21317:18:1;;21205:136::o;22112:489::-;-1:-1:-1;;;;;22381:15:1;;;22363:34;;22433:15;;22428:2;22413:18;;22406:43;22480:2;22465:18;;22458:34;;;22528:3;22523:2;22508:18;;22501:31;;;22306:4;;22549:46;;22575:19;;22567:6;22549:46;:::i;:::-;22541:54;22112:489;-1:-1:-1;;;;;;22112:489:1:o;22606:249::-;22675:6;22728:2;22716:9;22707:7;22703:23;22699:32;22696:52;;;22744:1;22741;22734:12;22696:52;22776:9;22770:16;22795:30;22819:5;22795:30;:::i;22860:127::-;22921:10;22916:3;22912:20;22909:1;22902:31;22952:4;22949:1;22942:15;22976:4;22973:1;22966:15;22992:120;23032:1;23058;23048:35;;23063:18;;:::i;:::-;-1:-1:-1;23097:9:1;;22992:120::o;23117:112::-;23149:1;23175;23165:35;;23180:18;;:::i;:::-;-1:-1:-1;23214:9:1;;23117:112::o

Swarm Source

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