ETH Price: $2,399.89 (-0.23%)

Token

Multiverse Travelers Official (MTO)
 

Overview

Max Total Supply

872 MTO

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MTO
0xe33f06b81ddb8042a93648b4c13f9cbce8a04c42
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:
MTO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
 * @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);
}

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
 * @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);
            }
        }
    }
}

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

contract MTO is Ownable, ERC721A, ReentrancyGuard {
  uint256 public constant COLLECTION_SIZE = 6666;
  address private mintContract;
  address payable private financialAddress;

  event Fallback(address _sender);
  event Receive(address _sender);

  constructor() ERC721A("Multiverse Travelers Official", "MTO", 10, COLLECTION_SIZE) {}

  function mint(address to, uint256 quantity) external {
    require(msg.sender == mintContract, "can mint by using only mint contract");
    _safeMint(to, quantity);
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

  function setMintContract(address addr) external onlyOwner {
    mintContract = addr;
  }

  function setFinalcialAddress(address addr) external onlyOwner {
    financialAddress = payable(addr);
  }

  function withdrawMoney() external nonReentrant {
    (bool success, ) = financialAddress.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

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

  fallback () external payable {
    require(msg.data.length == 0); 
    emit Fallback(msg.sender);
  }

  receive () external payable {
    emit Receive(msg.sender);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sender","type":"address"}],"name":"Fallback","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":false,"internalType":"address","name":"_sender","type":"address"}],"name":"Receive","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COLLECTION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setFinalcialAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setMintContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040518060400160405280601d81526020017f4d756c746976657273652054726176656c657273204f6666696369616c000000815250604051806040016040528060038152602001624d544f60e81b815250600a611a0a6200008d620000876200019e60201b60201c565b620001a2565b60008111620000fa5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200015c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f1565b835162000171906002906020870190620001f2565b50825162000187906003906020860190620001f2565b5060a09190915260805250506001600955620002d5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002009062000298565b90600052602060002090601f0160209004810192826200022457600085556200026f565b82601f106200023f57805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026f57825182559160200191906001019062000252565b506200027d92915062000281565b5090565b5b808211156200027d576000815560010162000282565b600181811c90821680620002ad57607f821691505b60208210811415620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124c9620003106000396000818161177e015281816117a80152611c88015260008181611569015261159b01526124c96000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063ae810dba11610095578063d8258d9511610064578063d8258d951461058d578063dc33e681146105a3578063e985e9c5146105c3578063f2fde38b1461060c57610201565b8063ae810dba14610517578063b88d4fde14610537578063c87b56dd14610557578063d7224ba01461057757610201565b80639231ab2a116100d15780639231ab2a1461047f57806395d89b41146104cd578063a22cb465146104e2578063ac4460021461050257610201565b806370a082311461042c578063715018a61461044c5780638da5cb5b1461046157610201565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce7146103ac57806355f804b3146103cc5780635fb64a6a146103ec5780636352211e1461040c57610201565b80632f745c591461034c57806340c10f191461036c57806342842e0e1461038c57610201565b8063095ea7b3116101a0578063095ea7b3146102cb57806318160ddd146102ed57806323b872dd1461030c5780632d20fb601461032c57610201565b806301ffc9a71461023c57806306fdde0314610271578063081812fc1461029357610201565b36610201576040513381527f681ad3cb4f20e39dd01bc0e45f0bc6f95ea2de196277ed6ec4f7357e2e2044b8906020015b60405180910390a1005b361561020c57600080fd5b6040513381527fdd0c5778ddb0b0501649417aeffed44057db3d5d530231758c8dc5ef6eeb7894906020016101f7565b34801561024857600080fd5b5061025c610257366004612111565b61062c565b60405190151581526020015b60405180910390f35b34801561027d57600080fd5b50610286610699565b6040516102689190612266565b34801561029f57600080fd5b506102b36102ae3660046121b6565b61072b565b6040516001600160a01b039091168152602001610268565b3480156102d757600080fd5b506102eb6102e63660046120e8565b6107bb565b005b3480156102f957600080fd5b506001545b604051908152602001610268565b34801561031857600080fd5b506102eb610327366004611f9e565b6108d3565b34801561033857600080fd5b506102eb6103473660046121b6565b6108de565b34801561035857600080fd5b506102fe6103673660046120e8565b610971565b34801561037857600080fd5b506102eb6103873660046120e8565b610aea565b34801561039857600080fd5b506102eb6103a7366004611f9e565b610b5e565b3480156103b857600080fd5b506102fe6103c73660046121b6565b610b79565b3480156103d857600080fd5b506102eb6103e7366004612149565b610be2565b3480156103f857600080fd5b506102eb610407366004611f52565b610c18565b34801561041857600080fd5b506102b36104273660046121b6565b610c64565b34801561043857600080fd5b506102fe610447366004611f52565b610c76565b34801561045857600080fd5b506102eb610d07565b34801561046d57600080fd5b506000546001600160a01b03166102b3565b34801561048b57600080fd5b5061049f61049a3660046121b6565b610d3d565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610268565b3480156104d957600080fd5b50610286610d5a565b3480156104ee57600080fd5b506102eb6104fd3660046120ae565b610d69565b34801561050e57600080fd5b506102eb610e2e565b34801561052357600080fd5b506102eb610532366004611f52565b610f1c565b34801561054357600080fd5b506102eb610552366004611fd9565b610f68565b34801561056357600080fd5b506102866105723660046121b6565b610fa1565b34801561058357600080fd5b506102fe60085481565b34801561059957600080fd5b506102fe611a0a81565b3480156105af57600080fd5b506102fe6105be366004611f52565b61106e565b3480156105cf57600080fd5b5061025c6105de366004611f6c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061857600080fd5b506102eb610627366004611f52565b611079565b60006001600160e01b031982166380ac58cd60e01b148061065d57506001600160e01b03198216635b5e139f60e01b145b8061067857506001600160e01b0319821663780e9d6360e01b145b8061069357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a8906123d1565b80601f01602080910402602001604051908101604052809291908181526020018280546106d4906123d1565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b6000610738826001541190565b61079f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c682610c64565b9050806001600160a01b0316836001600160a01b031614156108355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610796565b336001600160a01b0382161480610851575061085181336105de565b6108c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610796565b6108ce838383611114565b505050565b6108ce838383611170565b6000546001600160a01b031633146109085760405162461bcd60e51b815260040161079690612279565b6002600954141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610796565b6002600955610969816114f8565b506001600955565b600061097c83610c76565b82106109d55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610796565b60006109e060015490565b905060008060005b83811015610a8a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3b57805192505b876001600160a01b0316836001600160a01b03161415610a775786841415610a695750935061069392505050565b83610a738161240c565b9450505b5080610a828161240c565b9150506109e8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610796565b600a546001600160a01b03163314610b505760405162461bcd60e51b8152602060048201526024808201527f63616e206d696e74206279207573696e67206f6e6c79206d696e7420636f6e746044820152631c9858dd60e21b6064820152608401610796565b610b5a82826116e2565b5050565b6108ce83838360405180602001604052806000815250610f68565b6000610b8460015490565b8210610bde5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610796565b5090565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079690612279565b6108ce600c8383611ea6565b6000546001600160a01b03163314610c425760405162461bcd60e51b815260040161079690612279565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c6f826116fc565b5192915050565b60006001600160a01b038216610ce25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610796565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d315760405162461bcd60e51b815260040161079690612279565b610d3b60006118a6565b565b6040805180820190915260008082526020820152610693826116fc565b6060600380546106a8906123d1565b6001600160a01b038216331415610dc25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610796565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415610e815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610796565b6002600955600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ed3576040519150601f19603f3d011682016040523d82523d6000602084013e610ed8565b606091505b50509050806109695760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610796565b6000546001600160a01b03163314610f465760405162461bcd60e51b815260040161079690612279565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610f73848484611170565b610f7f848484846118f6565b610f9b5760405162461bcd60e51b8152600401610796906122ae565b50505050565b6060610fae826001541190565b6110125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610796565b600061101c611a04565b9050600081511161103c5760405180602001604052806000815250611067565b8061104684611a13565b6040516020016110579291906121fa565b6040516020818303038152906040525b9392505050565b600061069382611b2d565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260040161079690612279565b6001600160a01b0381166111085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610796565b611111816118a6565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061117b826116fc565b80519091506000906001600160a01b0316336001600160a01b031614806111b25750336111a78461072b565b6001600160a01b0316145b806111c4575081516111c490336105de565b90508061122e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610796565b846001600160a01b031682600001516001600160a01b0316146112a25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610796565b6001600160a01b0384166113065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610796565b6113166000848460000151611114565b6001600160a01b03851660009081526005602052604081208054600192906113489084906001600160801b031661234f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261139491859116612301565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561141c846001612323565b6000818152600460205260409020549091506001600160a01b03166114ae57611446816001541190565b156114ae5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115485760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610796565b600060016115568484612323565b6115609190612377565b905061158d60017f0000000000000000000000000000000000000000000000000000000000000000612377565b8111156115c2576115bf60017f0000000000000000000000000000000000000000000000000000000000000000612377565b90505b6115cd816001541190565b6116285760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610796565b815b8181116116ce576000818152600460205260409020546001600160a01b03166116bc576000611658826116fc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806116c68161240c565b91505061162a565b506116da816001612323565b600855505050565b610b5a828260405180602001604052806000815250611bcb565b604080518082019091526000808252602082015261171b826001541190565b61177a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610796565b60007f000000000000000000000000000000000000000000000000000000000000000083106117db576117cd7f000000000000000000000000000000000000000000000000000000000000000084612377565b6117d8906001612323565b90505b825b818110611845576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561183257949350505050565b508061183d816123ba565b9150506117dd565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610796565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193a903390899088908890600401612229565b602060405180830381600087803b15801561195457600080fd5b505af1925050508015611984575060408051601f3d908101601f191682019092526119819181019061212d565b60015b6119de573d8080156119b2576040519150601f19603f3d011682016040523d82523d6000602084013e6119b7565b606091505b5080516119d65760405162461bcd60e51b8152600401610796906122ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fc565b5060015b949350505050565b6060600c80546106a8906123d1565b606081611a375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a615780611a4b8161240c565b9150611a5a9050600a8361233b565b9150611a3b565b60008167ffffffffffffffff811115611a8a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ab4576020820181803683370190505b5090505b84156119fc57611ac9600183612377565b9150611ad6600a86612427565b611ae1906030612323565b60f81b818381518110611b0457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b26600a8661233b565b9450611ab8565b60006001600160a01b038216611b9f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610796565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611c2e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610796565b611c39816001541190565b15611c865760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610796565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610796565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d5d908790612301565b6001600160801b03168152602001858360200151611d7b9190612301565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e9b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e5f60008884886118f6565b611e7b5760405162461bcd60e51b8152600401610796906122ae565b81611e858161240c565b9250508080611e939061240c565b915050611e12565b5060018190556114f0565b828054611eb2906123d1565b90600052602060002090601f016020900481019282611ed45760008555611f1a565b82601f10611eed5782800160ff19823516178555611f1a565b82800160010185558215611f1a579182015b82811115611f1a578235825591602001919060010190611eff565b50610bde9291505b80821115610bde5760008155600101611f22565b80356001600160a01b0381168114611f4d57600080fd5b919050565b600060208284031215611f63578081fd5b61106782611f36565b60008060408385031215611f7e578081fd5b611f8783611f36565b9150611f9560208401611f36565b90509250929050565b600080600060608486031215611fb2578081fd5b611fbb84611f36565b9250611fc960208501611f36565b9150604084013590509250925092565b60008060008060808587031215611fee578081fd5b611ff785611f36565b935061200560208601611f36565b925060408501359150606085013567ffffffffffffffff80821115612028578283fd5b818701915087601f83011261203b578283fd5b81358181111561204d5761204d612467565b604051601f8201601f19908116603f0116810190838211818310171561207557612075612467565b816040528281528a602084870101111561208d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156120c0578182fd5b6120c983611f36565b9150602083013580151581146120dd578182fd5b809150509250929050565b600080604083850312156120fa578182fd5b61210383611f36565b946020939093013593505050565b600060208284031215612122578081fd5b81356110678161247d565b60006020828403121561213e578081fd5b81516110678161247d565b6000806020838503121561215b578182fd5b823567ffffffffffffffff80821115612172578384fd5b818501915085601f830112612185578384fd5b813581811115612193578485fd5b8660208285010111156121a4578485fd5b60209290920196919550909350505050565b6000602082840312156121c7578081fd5b5035919050565b600081518084526121e681602086016020860161238e565b601f01601f19169290920160200192915050565b6000835161220c81846020880161238e565b83519083019061222081836020880161238e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225c908301846121ce565b9695505050505050565b60208152600061106760208301846121ce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122205761222061243b565b600082198211156123365761233661243b565b500190565b60008261234a5761234a612451565b500490565b60006001600160801b038381169083168181101561236f5761236f61243b565b039392505050565b6000828210156123895761238961243b565b500390565b60005b838110156123a9578181015183820152602001612391565b83811115610f9b5750506000910152565b6000816123c9576123c961243b565b506000190190565b600181811c908216806123e557607f821691505b6020821081141561240657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124205761242061243b565b5060010190565b60008261243657612436612451565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111157600080fdfea2646970667358221220cb2e344c150d032275f5556ebe963f4be0c1967ec14040775038891875538d1564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806370a08231116100f7578063ae810dba11610095578063d8258d9511610064578063d8258d951461058d578063dc33e681146105a3578063e985e9c5146105c3578063f2fde38b1461060c57610201565b8063ae810dba14610517578063b88d4fde14610537578063c87b56dd14610557578063d7224ba01461057757610201565b80639231ab2a116100d15780639231ab2a1461047f57806395d89b41146104cd578063a22cb465146104e2578063ac4460021461050257610201565b806370a082311461042c578063715018a61461044c5780638da5cb5b1461046157610201565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce7146103ac57806355f804b3146103cc5780635fb64a6a146103ec5780636352211e1461040c57610201565b80632f745c591461034c57806340c10f191461036c57806342842e0e1461038c57610201565b8063095ea7b3116101a0578063095ea7b3146102cb57806318160ddd146102ed57806323b872dd1461030c5780632d20fb601461032c57610201565b806301ffc9a71461023c57806306fdde0314610271578063081812fc1461029357610201565b36610201576040513381527f681ad3cb4f20e39dd01bc0e45f0bc6f95ea2de196277ed6ec4f7357e2e2044b8906020015b60405180910390a1005b361561020c57600080fd5b6040513381527fdd0c5778ddb0b0501649417aeffed44057db3d5d530231758c8dc5ef6eeb7894906020016101f7565b34801561024857600080fd5b5061025c610257366004612111565b61062c565b60405190151581526020015b60405180910390f35b34801561027d57600080fd5b50610286610699565b6040516102689190612266565b34801561029f57600080fd5b506102b36102ae3660046121b6565b61072b565b6040516001600160a01b039091168152602001610268565b3480156102d757600080fd5b506102eb6102e63660046120e8565b6107bb565b005b3480156102f957600080fd5b506001545b604051908152602001610268565b34801561031857600080fd5b506102eb610327366004611f9e565b6108d3565b34801561033857600080fd5b506102eb6103473660046121b6565b6108de565b34801561035857600080fd5b506102fe6103673660046120e8565b610971565b34801561037857600080fd5b506102eb6103873660046120e8565b610aea565b34801561039857600080fd5b506102eb6103a7366004611f9e565b610b5e565b3480156103b857600080fd5b506102fe6103c73660046121b6565b610b79565b3480156103d857600080fd5b506102eb6103e7366004612149565b610be2565b3480156103f857600080fd5b506102eb610407366004611f52565b610c18565b34801561041857600080fd5b506102b36104273660046121b6565b610c64565b34801561043857600080fd5b506102fe610447366004611f52565b610c76565b34801561045857600080fd5b506102eb610d07565b34801561046d57600080fd5b506000546001600160a01b03166102b3565b34801561048b57600080fd5b5061049f61049a3660046121b6565b610d3d565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610268565b3480156104d957600080fd5b50610286610d5a565b3480156104ee57600080fd5b506102eb6104fd3660046120ae565b610d69565b34801561050e57600080fd5b506102eb610e2e565b34801561052357600080fd5b506102eb610532366004611f52565b610f1c565b34801561054357600080fd5b506102eb610552366004611fd9565b610f68565b34801561056357600080fd5b506102866105723660046121b6565b610fa1565b34801561058357600080fd5b506102fe60085481565b34801561059957600080fd5b506102fe611a0a81565b3480156105af57600080fd5b506102fe6105be366004611f52565b61106e565b3480156105cf57600080fd5b5061025c6105de366004611f6c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061857600080fd5b506102eb610627366004611f52565b611079565b60006001600160e01b031982166380ac58cd60e01b148061065d57506001600160e01b03198216635b5e139f60e01b145b8061067857506001600160e01b0319821663780e9d6360e01b145b8061069357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a8906123d1565b80601f01602080910402602001604051908101604052809291908181526020018280546106d4906123d1565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b6000610738826001541190565b61079f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c682610c64565b9050806001600160a01b0316836001600160a01b031614156108355760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610796565b336001600160a01b0382161480610851575061085181336105de565b6108c35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610796565b6108ce838383611114565b505050565b6108ce838383611170565b6000546001600160a01b031633146109085760405162461bcd60e51b815260040161079690612279565b6002600954141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610796565b6002600955610969816114f8565b506001600955565b600061097c83610c76565b82106109d55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610796565b60006109e060015490565b905060008060005b83811015610a8a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3b57805192505b876001600160a01b0316836001600160a01b03161415610a775786841415610a695750935061069392505050565b83610a738161240c565b9450505b5080610a828161240c565b9150506109e8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610796565b600a546001600160a01b03163314610b505760405162461bcd60e51b8152602060048201526024808201527f63616e206d696e74206279207573696e67206f6e6c79206d696e7420636f6e746044820152631c9858dd60e21b6064820152608401610796565b610b5a82826116e2565b5050565b6108ce83838360405180602001604052806000815250610f68565b6000610b8460015490565b8210610bde5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610796565b5090565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079690612279565b6108ce600c8383611ea6565b6000546001600160a01b03163314610c425760405162461bcd60e51b815260040161079690612279565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c6f826116fc565b5192915050565b60006001600160a01b038216610ce25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610796565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d315760405162461bcd60e51b815260040161079690612279565b610d3b60006118a6565b565b6040805180820190915260008082526020820152610693826116fc565b6060600380546106a8906123d1565b6001600160a01b038216331415610dc25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610796565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415610e815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610796565b6002600955600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ed3576040519150601f19603f3d011682016040523d82523d6000602084013e610ed8565b606091505b50509050806109695760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610796565b6000546001600160a01b03163314610f465760405162461bcd60e51b815260040161079690612279565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610f73848484611170565b610f7f848484846118f6565b610f9b5760405162461bcd60e51b8152600401610796906122ae565b50505050565b6060610fae826001541190565b6110125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610796565b600061101c611a04565b9050600081511161103c5760405180602001604052806000815250611067565b8061104684611a13565b6040516020016110579291906121fa565b6040516020818303038152906040525b9392505050565b600061069382611b2d565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260040161079690612279565b6001600160a01b0381166111085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610796565b611111816118a6565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061117b826116fc565b80519091506000906001600160a01b0316336001600160a01b031614806111b25750336111a78461072b565b6001600160a01b0316145b806111c4575081516111c490336105de565b90508061122e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610796565b846001600160a01b031682600001516001600160a01b0316146112a25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610796565b6001600160a01b0384166113065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610796565b6113166000848460000151611114565b6001600160a01b03851660009081526005602052604081208054600192906113489084906001600160801b031661234f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261139491859116612301565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561141c846001612323565b6000818152600460205260409020549091506001600160a01b03166114ae57611446816001541190565b156114ae5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115485760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610796565b600060016115568484612323565b6115609190612377565b905061158d60017f0000000000000000000000000000000000000000000000000000000000001a0a612377565b8111156115c2576115bf60017f0000000000000000000000000000000000000000000000000000000000001a0a612377565b90505b6115cd816001541190565b6116285760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610796565b815b8181116116ce576000818152600460205260409020546001600160a01b03166116bc576000611658826116fc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806116c68161240c565b91505061162a565b506116da816001612323565b600855505050565b610b5a828260405180602001604052806000815250611bcb565b604080518082019091526000808252602082015261171b826001541190565b61177a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610796565b60007f000000000000000000000000000000000000000000000000000000000000000a83106117db576117cd7f000000000000000000000000000000000000000000000000000000000000000a84612377565b6117d8906001612323565b90505b825b818110611845576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561183257949350505050565b508061183d816123ba565b9150506117dd565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610796565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193a903390899088908890600401612229565b602060405180830381600087803b15801561195457600080fd5b505af1925050508015611984575060408051601f3d908101601f191682019092526119819181019061212d565b60015b6119de573d8080156119b2576040519150601f19603f3d011682016040523d82523d6000602084013e6119b7565b606091505b5080516119d65760405162461bcd60e51b8152600401610796906122ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fc565b5060015b949350505050565b6060600c80546106a8906123d1565b606081611a375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a615780611a4b8161240c565b9150611a5a9050600a8361233b565b9150611a3b565b60008167ffffffffffffffff811115611a8a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ab4576020820181803683370190505b5090505b84156119fc57611ac9600183612377565b9150611ad6600a86612427565b611ae1906030612323565b60f81b818381518110611b0457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b26600a8661233b565b9450611ab8565b60006001600160a01b038216611b9f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610796565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611c2e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610796565b611c39816001541190565b15611c865760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610796565b7f000000000000000000000000000000000000000000000000000000000000000a831115611d015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610796565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d5d908790612301565b6001600160801b03168152602001858360200151611d7b9190612301565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e9b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e5f60008884886118f6565b611e7b5760405162461bcd60e51b8152600401610796906122ae565b81611e858161240c565b9250508080611e939061240c565b915050611e12565b5060018190556114f0565b828054611eb2906123d1565b90600052602060002090601f016020900481019282611ed45760008555611f1a565b82601f10611eed5782800160ff19823516178555611f1a565b82800160010185558215611f1a579182015b82811115611f1a578235825591602001919060010190611eff565b50610bde9291505b80821115610bde5760008155600101611f22565b80356001600160a01b0381168114611f4d57600080fd5b919050565b600060208284031215611f63578081fd5b61106782611f36565b60008060408385031215611f7e578081fd5b611f8783611f36565b9150611f9560208401611f36565b90509250929050565b600080600060608486031215611fb2578081fd5b611fbb84611f36565b9250611fc960208501611f36565b9150604084013590509250925092565b60008060008060808587031215611fee578081fd5b611ff785611f36565b935061200560208601611f36565b925060408501359150606085013567ffffffffffffffff80821115612028578283fd5b818701915087601f83011261203b578283fd5b81358181111561204d5761204d612467565b604051601f8201601f19908116603f0116810190838211818310171561207557612075612467565b816040528281528a602084870101111561208d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156120c0578182fd5b6120c983611f36565b9150602083013580151581146120dd578182fd5b809150509250929050565b600080604083850312156120fa578182fd5b61210383611f36565b946020939093013593505050565b600060208284031215612122578081fd5b81356110678161247d565b60006020828403121561213e578081fd5b81516110678161247d565b6000806020838503121561215b578182fd5b823567ffffffffffffffff80821115612172578384fd5b818501915085601f830112612185578384fd5b813581811115612193578485fd5b8660208285010111156121a4578485fd5b60209290920196919550909350505050565b6000602082840312156121c7578081fd5b5035919050565b600081518084526121e681602086016020860161238e565b601f01601f19169290920160200192915050565b6000835161220c81846020880161238e565b83519083019061222081836020880161238e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225c908301846121ce565b9695505050505050565b60208152600061106760208301846121ce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122205761222061243b565b600082198211156123365761233661243b565b500190565b60008261234a5761234a612451565b500490565b60006001600160801b038381169083168181101561236f5761236f61243b565b039392505050565b6000828210156123895761238961243b565b500390565b60005b838110156123a9578181015183820152602001612391565b83811115610f9b5750506000910152565b6000816123c9576123c961243b565b506000190190565b600181811c908216806123e557607f821691505b6020821081141561240657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124205761242061243b565b5060010190565b60008261243657612436612451565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111157600080fdfea2646970667358221220cb2e344c150d032275f5556ebe963f4be0c1967ec14040775038891875538d1564736f6c63430008040033

Deployed Bytecode Sourcemap

41521:1764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43257:19;;43265:10;5299:51:1;;43257:19:0;;5287:2:1;5272:18;43257:19:0;;;;;;;;41521:1764;;43151:8;:20;43143:29;;;;;;43185:20;;43194:10;5299:51:1;;43185:20:0;;5287:2:1;5272:18;43185:20:0;5254:102:1;29217:370:0;;;;;;;;;;-1:-1:-1;29217:370:0;;;;;:::i;:::-;;:::i;:::-;;;6019:14:1;;6012:22;5994:41;;5982:2;5967:18;29217:370:0;;;;;;;;30943:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32468:204::-;;;;;;;;;;-1:-1:-1;32468:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5317:32:1;;;5299:51;;5287:2;5272:18;32468:204:0;5254:102:1;32031:379:0;;;;;;;;;;-1:-1:-1;32031:379:0;;;;;:::i;:::-;;:::i;:::-;;27778:94;;;;;;;;;;-1:-1:-1;27854:12:0;;27778:94;;;17127:25:1;;;17115:2;17100:18;27778:94:0;17082:76:1;33318:142:0;;;;;;;;;;-1:-1:-1;33318:142:0;;;;;:::i;:::-;;:::i;42717:118::-;;;;;;;;;;-1:-1:-1;42717:118:0;;;;;:::i;:::-;;:::i;28409:744::-;;;;;;;;;;-1:-1:-1;28409:744:0;;;;;:::i;:::-;;:::i;41871:171::-;;;;;;;;;;-1:-1:-1;41871:171:0;;;;;:::i;:::-;;:::i;33523:157::-;;;;;;;;;;-1:-1:-1;33523:157:0;;;;;:::i;:::-;;:::i;27941:177::-;;;;;;;;;;-1:-1:-1;27941:177:0;;;;;:::i;:::-;;:::i;42219:100::-;;;;;;;;;;-1:-1:-1;42219:100:0;;;;;:::i;:::-;;:::i;42325:90::-;;;;;;;;;;-1:-1:-1;42325:90:0;;;;;:::i;:::-;;:::i;30766:118::-;;;;;;;;;;-1:-1:-1;30766:118:0;;;;;:::i;:::-;;:::i;29643:211::-;;;;;;;;;;-1:-1:-1;29643:211:0;;;;;:::i;:::-;;:::i;2495:103::-;;;;;;;;;;;;;:::i;1844:87::-;;;;;;;;;;-1:-1:-1;1890:7:0;1917:6;-1:-1:-1;;;;;1917:6:0;1844:87;;42954:147;;;;;;;;;;-1:-1:-1;42954:147:0;;;;;:::i;:::-;;:::i;:::-;;;;16846:13:1;;-1:-1:-1;;;;;16842:39:1;16824:58;;16942:4;16930:17;;;16924:24;16950:18;16920:49;16898:20;;;16891:79;;;;16797:18;42954:147:0;16779:197:1;31098:98:0;;;;;;;;;;;;;:::i;32736:274::-;;;;;;;;;;-1:-1:-1;32736:274:0;;;;;:::i;:::-;;:::i;42534:177::-;;;;;;;;;;;;;:::i;42421:107::-;;;;;;;;;;-1:-1:-1;42421:107:0;;;;;:::i;:::-;;:::i;33743:311::-;;;;;;;;;;-1:-1:-1;33743:311:0;;;;;:::i;:::-;;:::i;31259:394::-;;;;;;;;;;-1:-1:-1;31259:394:0;;;;;:::i;:::-;;:::i;38158:43::-;;;;;;;;;;;;;;;;41576:46;;;;;;;;;;;;41618:4;41576:46;;42841:107;;;;;;;;;;-1:-1:-1;42841:107:0;;;;;:::i;:::-;;:::i;33073:186::-;;;;;;;;;;-1:-1:-1;33073:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;33218:25:0;;;33195:4;33218:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33073:186;2753:201;;;;;;;;;;-1:-1:-1;2753:201:0;;;;;:::i;:::-;;:::i;29217:370::-;29344:4;-1:-1:-1;;;;;;29374:40:0;;-1:-1:-1;;;29374:40:0;;:99;;-1:-1:-1;;;;;;;29425:48:0;;-1:-1:-1;;;29425:48:0;29374:99;:160;;;-1:-1:-1;;;;;;;29484:50:0;;-1:-1:-1;;;29484:50:0;29374:160;:207;;;-1:-1:-1;;;;;;;;;;25488:40:0;;;29545:36;29360:221;29217:370;-1:-1:-1;;29217:370:0:o;30943:94::-;30997:13;31026:5;31019:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30943:94;:::o;32468:204::-;32536:7;32560:16;32568:7;34380:12;;-1:-1:-1;34370:22:0;34293:105;32560:16;32552:74;;;;-1:-1:-1;;;32552:74:0;;16001:2:1;32552:74:0;;;15983:21:1;16040:2;16020:18;;;16013:30;16079:34;16059:18;;;16052:62;-1:-1:-1;;;16130:18:1;;;16123:43;16183:19;;32552:74:0;;;;;;;;;-1:-1:-1;32642:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32642:24:0;;32468:204::o;32031:379::-;32100:13;32116:24;32132:7;32116:15;:24::i;:::-;32100:40;;32161:5;-1:-1:-1;;;;;32155:11:0;:2;-1:-1:-1;;;;;32155:11:0;;;32147:58;;;;-1:-1:-1;;;32147:58:0;;12475:2:1;32147:58:0;;;12457:21:1;12514:2;12494:18;;;12487:30;12553:34;12533:18;;;12526:62;-1:-1:-1;;;12604:18:1;;;12597:32;12646:19;;32147:58:0;12447:224:1;32147:58:0;736:10;-1:-1:-1;;;;;32230:21:0;;;;:62;;-1:-1:-1;32255:37:0;32272:5;736:10;33073:186;:::i;32255:37::-;32214:153;;;;-1:-1:-1;;;32214:153:0;;9326:2:1;32214:153:0;;;9308:21:1;9365:2;9345:18;;;9338:30;9404:34;9384:18;;;9377:62;9475:27;9455:18;;;9448:55;9520:19;;32214:153:0;9298:247:1;32214:153:0;32376:28;32385:2;32389:7;32398:5;32376:8;:28::i;:::-;32031:379;;;:::o;33318:142::-;33426:28;33436:4;33442:2;33446:7;33426:9;:28::i;42717:118::-;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;5028:1:::1;5626:7;;:19;;5618:63;;;::::0;-1:-1:-1;;;5618:63:0;;15225:2:1;5618:63:0::1;::::0;::::1;15207:21:1::0;15264:2;15244:18;;;15237:30;15303:33;15283:18;;;15276:61;15354:18;;5618:63:0::1;15197:181:1::0;5618:63:0::1;5028:1;5759:7;:18:::0;42801:28:::2;42820:8:::0;42801:18:::2;:28::i;:::-;-1:-1:-1::0;4984:1:0::1;5938:7;:22:::0;42717:118::o;28409:744::-;28518:7;28553:16;28563:5;28553:9;:16::i;:::-;28545:5;:24;28537:71;;;;-1:-1:-1;;;28537:71:0;;6472:2:1;28537:71:0;;;6454:21:1;6511:2;6491:18;;;6484:30;6550:34;6530:18;;;6523:62;-1:-1:-1;;;6601:18:1;;;6594:32;6643:19;;28537:71:0;6444:224:1;28537:71:0;28615:22;28640:13;27854:12;;;27778:94;28640:13;28615:38;;28660:19;28690:25;28740:9;28735:350;28759:14;28755:1;:18;28735:350;;;28789:31;28823:14;;;:11;:14;;;;;;;;;28789:48;;;;;;;;;-1:-1:-1;;;;;28789:48:0;;;;;-1:-1:-1;;;28789:48:0;;;;;;;;;;;;28850:28;28846:89;;28911:14;;;-1:-1:-1;28846:89:0;28968:5;-1:-1:-1;;;;;28947:26:0;:17;-1:-1:-1;;;;;28947:26:0;;28943:135;;;29005:5;28990:11;:20;28986:59;;;-1:-1:-1;29032:1:0;-1:-1:-1;29025:8:0;;-1:-1:-1;;;29025:8:0;28986:59;29055:13;;;;:::i;:::-;;;;28943:135;-1:-1:-1;28775:3:0;;;;:::i;:::-;;;;28735:350;;;-1:-1:-1;29091:56:0;;-1:-1:-1;;;29091:56:0;;14403:2:1;29091:56:0;;;14385:21:1;14442:2;14422:18;;;14415:30;14481:34;14461:18;;;14454:62;-1:-1:-1;;;14532:18:1;;;14525:44;14586:19;;29091:56:0;14375:236:1;41871:171:0;41953:12;;-1:-1:-1;;;;;41953:12:0;41939:10;:26;41931:75;;;;-1:-1:-1;;;41931:75:0;;7693:2:1;41931:75:0;;;7675:21:1;7732:2;7712:18;;;7705:30;7771:34;7751:18;;;7744:62;-1:-1:-1;;;7822:18:1;;;7815:34;7866:19;;41931:75:0;7665:226:1;41931:75:0;42013:23;42023:2;42027:8;42013:9;:23::i;:::-;41871:171;;:::o;33523:157::-;33635:39;33652:4;33658:2;33662:7;33635:39;;;;;;;;;;;;:16;:39::i;27941:177::-;28008:7;28040:13;27854:12;;;27778:94;28040:13;28032:5;:21;28024:69;;;;-1:-1:-1;;;28024:69:0;;8098:2:1;28024:69:0;;;8080:21:1;8137:2;8117:18;;;8110:30;8176:34;8156:18;;;8149:62;-1:-1:-1;;;8227:18:1;;;8220:33;8270:19;;28024:69:0;8070:225:1;28024:69:0;-1:-1:-1;28107:5:0;27941:177::o;42219:100::-;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;42290:23:::1;:13;42306:7:::0;;42290:23:::1;:::i;42325:90::-:0;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;42390:12:::1;:19:::0;;-1:-1:-1;;;;;;42390:19:0::1;-1:-1:-1::0;;;;;42390:19:0;;;::::1;::::0;;;::::1;::::0;;42325:90::o;30766:118::-;30830:7;30853:20;30865:7;30853:11;:20::i;:::-;:25;;30766:118;-1:-1:-1;;30766:118:0:o;29643:211::-;29707:7;-1:-1:-1;;;;;29731:19:0;;29723:75;;;;-1:-1:-1;;;29723:75:0;;10105:2:1;29723:75:0;;;10087:21:1;10144:2;10124:18;;;10117:30;10183:34;10163:18;;;10156:62;-1:-1:-1;;;10234:18:1;;;10227:41;10285:19;;29723:75:0;10077:233:1;29723:75:0;-1:-1:-1;;;;;;29820:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29820:27:0;;29643:211::o;2495:103::-;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;2560:30:::1;2587:1;2560:18;:30::i;:::-;2495:103::o:0;42954:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43075:20:0;43087:7;43075:11;:20::i;31098:98::-;31154:13;31183:7;31176:14;;;;;:::i;32736:274::-;-1:-1:-1;;;;;32827:24:0;;736:10;32827:24;;32819:63;;;;-1:-1:-1;;;32819:63:0;;11701:2:1;32819:63:0;;;11683:21:1;11740:2;11720:18;;;11713:30;11779:28;11759:18;;;11752:56;11825:18;;32819:63:0;11673:176:1;32819:63:0;736:10;32891:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32891:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32891:53:0;;;;;;;;;;32956:48;;5994:41:1;;;32891:42:0;;736:10;32956:48;;5967:18:1;32956:48:0;;;;;;;32736:274;;:::o;42534:177::-;5028:1;5626:7;;:19;;5618:63;;;;-1:-1:-1;;;5618:63:0;;15225:2:1;5618:63:0;;;15207:21:1;15264:2;15244:18;;;15237:30;15303:33;15283:18;;;15276:61;15354:18;;5618:63:0;15197:181:1;5618:63:0;5028:1;5759:7;:18;42607:16:::1;::::0;:55:::1;::::0;42589:12:::1;::::0;-1:-1:-1;;;;;42607:16:0::1;::::0;42636:21:::1;::::0;42589:12;42607:55;42589:12;42607:55;42636:21;42607:16;:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42588:74;;;42677:7;42669:36;;;::::0;-1:-1:-1;;;42669:36:0;;12878:2:1;42669:36:0::1;::::0;::::1;12860:21:1::0;12917:2;12897:18;;;12890:30;-1:-1:-1;;;12936:18:1;;;12929:46;12992:18;;42669:36:0::1;12850:166:1::0;42421:107:0;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;42490:16:::1;:32:::0;;-1:-1:-1;;;;;;42490:32:0::1;-1:-1:-1::0;;;;;42490:32:0;;;::::1;::::0;;;::::1;::::0;;42421:107::o;33743:311::-;33880:28;33890:4;33896:2;33900:7;33880:9;:28::i;:::-;33931:48;33954:4;33960:2;33964:7;33973:5;33931:22;:48::i;:::-;33915:133;;;;-1:-1:-1;;;33915:133:0;;;;;;;:::i;:::-;33743:311;;;;:::o;31259:394::-;31357:13;31398:16;31406:7;34380:12;;-1:-1:-1;34370:22:0;34293:105;31398:16;31382:97;;;;-1:-1:-1;;;31382:97:0;;11285:2:1;31382:97:0;;;11267:21:1;11324:2;11304:18;;;11297:30;11363:34;11343:18;;;11336:62;-1:-1:-1;;;11414:18:1;;;11407:45;11469:19;;31382:97:0;11257:237:1;31382:97:0;31488:21;31512:10;:8;:10::i;:::-;31488:34;;31567:1;31549:7;31543:21;:25;:104;;;;;;;;;;;;;;;;;31604:7;31613:18;:7;:16;:18::i;:::-;31587:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31543:104;31529:118;31259:394;-1:-1:-1;;;31259:394:0:o;42841:107::-;42899:7;42922:20;42936:5;42922:13;:20::i;2753:201::-;1890:7;1917:6;-1:-1:-1;;;;;1917:6:0;736:10;2064:23;2056:68;;;;-1:-1:-1;;;2056:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2842:22:0;::::1;2834:73;;;::::0;-1:-1:-1;;;2834:73:0;;6875:2:1;2834:73:0::1;::::0;::::1;6857:21:1::0;6914:2;6894:18;;;6887:30;6953:34;6933:18;;;6926:62;-1:-1:-1;;;7004:18:1;;;6997:36;7050:19;;2834:73:0::1;6847:228:1::0;2834:73:0::1;2918:28;2937:8;2918:18;:28::i;:::-;2753:201:::0;:::o;37980:172::-;38077:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38077:29:0;-1:-1:-1;;;;;38077:29:0;;;;;;;;;38118:28;;38077:24;;38118:28;;;;;;;37980:172;;;:::o;36345:1529::-;36442:35;36480:20;36492:7;36480:11;:20::i;:::-;36551:18;;36442:58;;-1:-1:-1;36509:22:0;;-1:-1:-1;;;;;36535:34:0;736:10;-1:-1:-1;;;;;36535:34:0;;:81;;;-1:-1:-1;736:10:0;36580:20;36592:7;36580:11;:20::i;:::-;-1:-1:-1;;;;;36580:36:0;;36535:81;:142;;;-1:-1:-1;36644:18:0;;36627:50;;736:10;33073:186;:::i;36627:50::-;36509:169;;36703:17;36687:101;;;;-1:-1:-1;;;36687:101:0;;12056:2:1;36687:101:0;;;12038:21:1;12095:2;12075:18;;;12068:30;12134:34;12114:18;;;12107:62;-1:-1:-1;;;12185:18:1;;;12178:48;12243:19;;36687:101:0;12028:240:1;36687:101:0;36835:4;-1:-1:-1;;;;;36813:26:0;:13;:18;;;-1:-1:-1;;;;;36813:26:0;;36797:98;;;;-1:-1:-1;;;36797:98:0;;10517:2:1;36797:98:0;;;10499:21:1;10556:2;10536:18;;;10529:30;10595:34;10575:18;;;10568:62;-1:-1:-1;;;10646:18:1;;;10639:36;10692:19;;36797:98:0;10489:228:1;36797:98:0;-1:-1:-1;;;;;36910:16:0;;36902:66;;;;-1:-1:-1;;;36902:66:0;;8502:2:1;36902:66:0;;;8484:21:1;8541:2;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;-1:-1:-1;;;8631:18:1;;;8624:35;8676:19;;36902:66:0;8474:227:1;36902:66:0;37077:49;37094:1;37098:7;37107:13;:18;;;37077:8;:49::i;:::-;-1:-1:-1;;;;;37135:18:0;;;;;;:12;:18;;;;;:31;;37165:1;;37135:18;:31;;37165:1;;-1:-1:-1;;;;;37135:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37135:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37173:16:0;;-1:-1:-1;37173:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37173:16:0;;:29;;-1:-1:-1;;37173:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37173:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37232:43:0;;;;;;;;-1:-1:-1;;;;;37232:43:0;;;;;;37258:15;37232:43;;;;;;;;;-1:-1:-1;37209:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;37209:66:0;-1:-1:-1;;;;;;37209:66:0;;;;;;;;;;;37525:11;37221:7;-1:-1:-1;37525:11:0;:::i;:::-;37588:1;37547:24;;;:11;:24;;;;;:29;37503:33;;-1:-1:-1;;;;;;37547:29:0;37543:236;;37605:20;37613:11;34380:12;;-1:-1:-1;34370:22:0;34293:105;37605:20;37601:171;;;37665:97;;;;;;;;37692:18;;-1:-1:-1;;;;;37665:97:0;;;;;;37723:28;;;;37665:97;;;;;;;;;;-1:-1:-1;37638:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;37638:124:0;-1:-1:-1;;;;;;37638:124:0;;;;;;;;;;;;37601:171;37811:7;37807:2;-1:-1:-1;;;;;37792:27:0;37801:4;-1:-1:-1;;;;;37792:27:0;;;;;;;;;;;37826:42;36345:1529;;;;;;:::o;38306:846::-;38396:24;;38435:12;38427:49;;;;-1:-1:-1;;;38427:49:0;;9752:2:1;38427:49:0;;;9734:21:1;9791:2;9771:18;;;9764:30;9830:26;9810:18;;;9803:54;9874:18;;38427:49:0;9724:174:1;38427:49:0;38483:16;38533:1;38502:28;38522:8;38502:17;:28;:::i;:::-;:32;;;;:::i;:::-;38483:51;-1:-1:-1;38556:18:0;38573:1;38556:14;:18;:::i;:::-;38545:8;:29;38541:81;;;38596:18;38613:1;38596:14;:18;:::i;:::-;38585:29;;38541:81;38737:17;38745:8;34380:12;;-1:-1:-1;34370:22:0;34293:105;38737:17;38729:68;;;;-1:-1:-1;;;38729:68:0;;14818:2:1;38729:68:0;;;14800:21:1;14857:2;14837:18;;;14830:30;14896:34;14876:18;;;14869:62;-1:-1:-1;;;14947:18:1;;;14940:36;14993:19;;38729:68:0;14790:228:1;38729:68:0;38821:17;38804:297;38845:8;38840:1;:13;38804:297;;38904:1;38873:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;38873:19:0;38869:225;;38919:31;38953:14;38965:1;38953:11;:14::i;:::-;38995:89;;;;;;;;39022:14;;-1:-1:-1;;;;;38995:89:0;;;;;;39049:24;;;;38995:89;;;;;;;;;;-1:-1:-1;38978:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;38978:106:0;-1:-1:-1;;;;;;38978:106:0;;;;;;;;;;;;-1:-1:-1;38869:225:0;38855:3;;;;:::i;:::-;;;;38804:297;;;-1:-1:-1;39134:12:0;:8;39145:1;39134:12;:::i;:::-;39107:24;:39;-1:-1:-1;;;38306:846:0:o;34404:98::-;34469:27;34479:2;34483:8;34469:27;;;;;;;;;;;;:9;:27::i;30106:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;30223:16:0;30231:7;34380:12;;-1:-1:-1;34370:22:0;34293:105;30223:16;30215:71;;;;-1:-1:-1;;;30215:71:0;;7282:2:1;30215:71:0;;;7264:21:1;7321:2;7301:18;;;7294:30;7360:34;7340:18;;;7333:62;-1:-1:-1;;;7411:18:1;;;7404:40;7461:19;;30215:71:0;7254:232:1;30215:71:0;30295:26;30343:12;30332:7;:23;30328:93;;30387:22;30397:12;30387:7;:22;:::i;:::-;:26;;30412:1;30387:26;:::i;:::-;30366:47;;30328:93;30449:7;30429:212;30466:18;30458:4;:26;30429:212;;30503:31;30537:17;;;:11;:17;;;;;;;;;30503:51;;;;;;;;;-1:-1:-1;;;;;30503:51:0;;;;;-1:-1:-1;;;30503:51:0;;;;;;;;;;;;30567:28;30563:71;;30615:9;30106:606;-1:-1:-1;;;;30106:606:0:o;30563:71::-;-1:-1:-1;30486:6:0;;;;:::i;:::-;;;;30429:212;;;-1:-1:-1;30649:57:0;;-1:-1:-1;;;30649:57:0;;15585:2:1;30649:57:0;;;15567:21:1;15624:2;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;-1:-1:-1;;;15714:18:1;;;15707:45;15769:19;;30649:57:0;15557:237:1;3114:191:0;3188:16;3207:6;;-1:-1:-1;;;;;3224:17:0;;;-1:-1:-1;;;;;;3224:17:0;;;;;;3257:40;;3207:6;;;;;;;3257:40;;3188:16;3257:40;3114:191;;:::o;39695:690::-;39832:4;-1:-1:-1;;;;;39849:13:0;;17639:19;:23;39845:535;;39888:72;;-1:-1:-1;;;39888:72:0;;-1:-1:-1;;;;;39888:36:0;;;;;:72;;736:10;;39939:4;;39945:7;;39954:5;;39888:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39888:72:0;;;;;;;;-1:-1:-1;;39888:72:0;;;;;;;;;;;;:::i;:::-;;;39875:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40119:13:0;;40115:215;;40152:61;;-1:-1:-1;;;40152:61:0;;;;;;;:::i;40115:215::-;40298:6;40292:13;40283:6;40279:2;40275:15;40268:38;39875:464;-1:-1:-1;;;;;;40010:55:0;-1:-1:-1;;;40010:55:0;;-1:-1:-1;40003:62:0;;39845:535;-1:-1:-1;40368:4:0;39845:535;39695:690;;;;;;:::o;42105:108::-;42165:13;42194;42187:20;;;;;:::i;6255:723::-;6311:13;6532:10;6528:53;;-1:-1:-1;;6559:10:0;;;;;;;;;;;;-1:-1:-1;;;6559:10:0;;;;;6255:723::o;6528:53::-;6606:5;6591:12;6647:78;6654:9;;6647:78;;6680:8;;;;:::i;:::-;;-1:-1:-1;6703:10:0;;-1:-1:-1;6711:2:0;6703:10;;:::i;:::-;;;6647:78;;;6735:19;6767:6;6757:17;;;;;;-1:-1:-1;;;6757:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6757:17:0;;6735:39;;6785:154;6792:10;;6785:154;;6819:11;6829:1;6819:11;;:::i;:::-;;-1:-1:-1;6888:10:0;6896:2;6888:5;:10;:::i;:::-;6875:24;;:2;:24;:::i;:::-;6862:39;;6845:6;6852;6845:14;;;;;;-1:-1:-1;;;6845:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;6845:56:0;;;;;;;;-1:-1:-1;6916:11:0;6925:2;6916:11;;:::i;:::-;;;6785:154;;29860:240;29921:7;-1:-1:-1;;;;;29953:19:0;;29937:102;;;;-1:-1:-1;;;29937:102:0;;8908:2:1;29937:102:0;;;8890:21:1;8947:2;8927:18;;;8920:30;8986:34;8966:18;;;8959:62;-1:-1:-1;;;9037:18:1;;;9030:47;9094:19;;29937:102:0;8880:239:1;29937:102:0;-1:-1:-1;;;;;;30061:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30061:32:0;;-1:-1:-1;;;;;30061:32:0;;29860:240::o;34841:1272::-;34969:12;;-1:-1:-1;;;;;34996:16:0;;34988:62;;;;-1:-1:-1;;;34988:62:0;;14001:2:1;34988:62:0;;;13983:21:1;14040:2;14020:18;;;14013:30;14079:34;14059:18;;;14052:62;-1:-1:-1;;;14130:18:1;;;14123:31;14171:19;;34988:62:0;13973:223:1;34988:62:0;35187:21;35195:12;34380;;-1:-1:-1;34370:22:0;34293:105;35187:21;35186:22;35178:64;;;;-1:-1:-1;;;35178:64:0;;13643:2:1;35178:64:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:31;13701:18;;;13694:59;13770:18;;35178:64:0;13615:179:1;35178:64:0;35269:12;35257:8;:24;;35249:71;;;;-1:-1:-1;;;35249:71:0;;16415:2:1;35249:71:0;;;16397:21:1;16454:2;16434:18;;;16427:30;16493:34;16473:18;;;16466:62;-1:-1:-1;;;16544:18:1;;;16537:32;16586:19;;35249:71:0;16387:224:1;35249:71:0;-1:-1:-1;;;;;35432:16:0;;35399:30;35432:16;;;:12;:16;;;;;;;;;35399:49;;;;;;;;;-1:-1:-1;;;;;35399:49:0;;;;;-1:-1:-1;;;35399:49:0;;;;;;;;;;;35474:119;;;;;;;;35494:19;;35399:49;;35474:119;;;35494:39;;35524:8;;35494:39;:::i;:::-;-1:-1:-1;;;;;35474:119:0;;;;;35577:8;35542:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35474:119:0;;;;;;-1:-1:-1;;;;;35455:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;35455:138:0;;;;;;;;;;;;35628:43;;;;;;;;;;;35654:15;35628:43;;;;;;;;35600:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35600:71:0;-1:-1:-1;;;;;;35600:71:0;;;;;;;;;;;;;;;;;;35612:12;;35724:281;35748:8;35744:1;:12;35724:281;;;35777:38;;35802:12;;-1:-1:-1;;;;;35777:38:0;;;35794:1;;35777:38;;35794:1;;35777:38;35842:59;35873:1;35877:2;35881:12;35895:5;35842:22;:59::i;:::-;35824:150;;;;-1:-1:-1;;;35824:150:0;;;;;;;:::i;:::-;35983:14;;;;:::i;:::-;;;;35758:3;;;;;:::i;:::-;;;;35724:281;;;-1:-1:-1;36013:12:0;:27;;;36047:60;33743:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:257::-;4247:3;4285:5;4279:12;4312:6;4307:3;4300:19;4328:63;4384:6;4377:4;4372:3;4368:14;4361:4;4354:5;4350:16;4328:63;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4411:39;;;;4452:4;4407:50;;4255:208;-1:-1:-1;;4255:208:1:o;4468:470::-;4647:3;4685:6;4679:13;4701:53;4747:6;4742:3;4735:4;4727:6;4723:17;4701:53;:::i;:::-;4817:13;;4776:16;;;;4839:57;4817:13;4776:16;4873:4;4861:17;;4839:57;:::i;:::-;4912:20;;4655:283;-1:-1:-1;;;;4655:283:1:o;5361:488::-;-1:-1:-1;;;;;5630:15:1;;;5612:34;;5682:15;;5677:2;5662:18;;5655:43;5729:2;5714:18;;5707:34;;;5777:3;5772:2;5757:18;;5750:31;;;5555:4;;5798:45;;5823:19;;5815:6;5798:45;:::i;:::-;5790:53;5564:285;-1:-1:-1;;;;;;5564:285:1:o;6046:219::-;6195:2;6184:9;6177:21;6158:4;6215:44;6255:2;6244:9;6240:18;6232:6;6215:44;:::i;10722:356::-;10924:2;10906:21;;;10943:18;;;10936:30;11002:34;10997:2;10982:18;;10975:62;11069:2;11054:18;;10896:182::o;13021:415::-;13223:2;13205:21;;;13262:2;13242:18;;;13235:30;13301:34;13296:2;13281:18;;13274:62;-1:-1:-1;;;13367:2:1;13352:18;;13345:49;13426:3;13411:19;;13195:241::o;17163:253::-;17203:3;-1:-1:-1;;;;;17292:2:1;17289:1;17285:10;17322:2;17319:1;17315:10;17353:3;17349:2;17345:12;17340:3;17337:21;17334:2;;;17361:18;;:::i;17421:128::-;17461:3;17492:1;17488:6;17485:1;17482:13;17479:2;;;17498:18;;:::i;:::-;-1:-1:-1;17534:9:1;;17469:80::o;17554:120::-;17594:1;17620;17610:2;;17625:18;;:::i;:::-;-1:-1:-1;17659:9:1;;17600:74::o;17679:246::-;17719:4;-1:-1:-1;;;;;17832:10:1;;;;17802;;17854:12;;;17851:2;;;17869:18;;:::i;:::-;17906:13;;17728:197;-1:-1:-1;;;17728:197:1:o;17930:125::-;17970:4;17998:1;17995;17992:8;17989:2;;;18003:18;;:::i;:::-;-1:-1:-1;18040:9:1;;17979:76::o;18060:258::-;18132:1;18142:113;18156:6;18153:1;18150:13;18142:113;;;18232:11;;;18226:18;18213:11;;;18206:39;18178:2;18171:10;18142:113;;;18273:6;18270:1;18267:13;18264:2;;;-1:-1:-1;;18308:1:1;18290:16;;18283:27;18113:205::o;18323:136::-;18362:3;18390:5;18380:2;;18399:18;;:::i;:::-;-1:-1:-1;;;18435:18:1;;18370:89::o;18464:380::-;18543:1;18539:12;;;;18586;;;18607:2;;18661:4;18653:6;18649:17;18639:27;;18607:2;18714;18706:6;18703:14;18683:18;18680:38;18677:2;;;18760:10;18755:3;18751:20;18748:1;18741:31;18795:4;18792:1;18785:15;18823:4;18820:1;18813:15;18677:2;;18519:325;;;:::o;18849:135::-;18888:3;-1:-1:-1;;18909:17:1;;18906:2;;;18929:18;;:::i;:::-;-1:-1:-1;18976:1:1;18965:13;;18896:88::o;18989:112::-;19021:1;19047;19037:2;;19052:18;;:::i;:::-;-1:-1:-1;19086:9:1;;19027:74::o;19106:127::-;19167:10;19162:3;19158:20;19155:1;19148:31;19198:4;19195:1;19188:15;19222:4;19219:1;19212:15;19238:127;19299:10;19294:3;19290:20;19287:1;19280:31;19330:4;19327:1;19320:15;19354:4;19351:1;19344:15;19370:127;19431:10;19426:3;19422:20;19419:1;19412:31;19462:4;19459:1;19452:15;19486:4;19483:1;19476:15;19502:131;-1:-1:-1;;;;;;19576:32:1;;19566:43;;19556:2;;19623:1;19620;19613:12

Swarm Source

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