ETH Price: $2,878.08 (-5.68%)
Gas: 1 Gwei

Token

mysterioustown (mysterioustown.wtf)
 

Overview

Max Total Supply

6,666 mysterioustown.wtf

Holders

1,921

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*100🇨🇳.eth
Balance
1 mysterioustown.wtf
0x702618b33b869bac3f2dad523145aa3ab83c711b
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:
mysterioustown

Compiler Version
v0.8.12+commit.f00d7308

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-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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


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

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
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 public currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri = "ipfs://QM/";

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; 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);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; 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(), ".json")) : '';
    }

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    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);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = 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);
    }

    /**
     * @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 mysterioustown is ERC721A, Ownable {

    constructor() ERC721A("mysterioustown", "mysterioustown.wtf") {}

    uint public maxSupply = 6666;
    bool public saleStatus;
    uint public price;   
    uint public maxPerTx = 10;    
    uint public maxPerWallet = 20;
    uint public freeMintPrice = 0;
    uint public maxFreePerTx = 1;    
    uint public maxFreePerWallet = 1;
 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    mapping(address => uint) public _freeminted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    function getTotalSupply() public view returns(uint) {
        return currentIndex - 1;
    }

    function getMaxSupply() public view returns(uint) {
        return maxSupply;
    }

    function devmint(uint256 amount) external onlyOwner {
        require(currentIndex <= maxSupply, "NOT_ALLOWED!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function mintFree(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * freeMintPrice == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_freeminted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _freeminted[msg.sender] += amount;
    }
    
    function mint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _minted[msg.sender] += amount;
    }
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintPrice","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":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160005560c0604052600a608081905269697066733a2f2f514d2f60b01b60a09081526200003291600391906200014f565b50611a0a600955600a600c556014600d556000600e556001600f5560016010553480156200005f57600080fd5b50604080518082018252600e81526d36bcb9ba32b934b7bab9ba37bbb760911b60208083019182528351808501909452601284527136bcb9ba32b934b7bab9ba37bbb7173bba3360711b908401528151919291620000c0916001916200014f565b508051620000d69060029060208401906200014f565b505050620000f3620000ed620000f960201b60201c565b620000fd565b62000232565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b6124ce80620002426000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d3146106cb578063e985e9c5146106eb578063f2fde38b14610734578063f737c47a14610754578063f9020e331461076a578063f968adbe1461078457600080fd5b8063b88d4fde14610655578063c4e41b2214610378578063c6f6f21614610675578063c87b56dd14610695578063d5abeb01146106b557600080fd5b806395d89b411161010857806395d89b41146105ce578063a035b1fe146105e3578063a0712d68146105f9578063a22cb4651461060c578063a41467331461062c578063a70273571461063f57600080fd5b8063715018a6146105385780637dc949b21461054d5780637de77ecc146105635780638da5cb5b1461059057806391b7f5ed146105ae57600080fd5b806340f070a8116101dd578063502b33af116101a1578063502b33af1461048357806355f804b3146104985780636352211e146104b85780636d7c4a4b146104d85780636f8b44b0146104f857806370a082311461051857600080fd5b806340f070a8146103f857806342842e0e14610418578063453c2310146104385780634c0f38c21461044e5780634f6ccce71461046357600080fd5b80631491c2e51161022f5780631491c2e51461033d57806318160ddd1461037857806323b872dd1461038d57806326987b60146103ad5780632f745c59146103c35780633ccfd60b146103e357600080fd5b806301ffc9a71461026c57806302fb4791146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f2d565b61079a565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611f4a565b610807565b005b3480156102cf57600080fd5b506102d86108c5565b6040516102989190611fbb565b3480156102f157600080fd5b50610305610300366004611f4a565b610957565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004611fea565b6109e0565b34801561034957600080fd5b5061036a610358366004612014565b60126020526000908152604090205481565b604051908152602001610298565b34801561038457600080fd5b5061036a610af8565b34801561039957600080fd5b506102c16103a836600461202f565b610b0e565b3480156103b957600080fd5b5061036a60005481565b3480156103cf57600080fd5b5061036a6103de366004611fea565b610b19565b3480156103ef57600080fd5b506102c1610c80565b34801561040457600080fd5b506102c1610413366004611f4a565b610cd6565b34801561042457600080fd5b506102c161043336600461202f565b610d05565b34801561044457600080fd5b5061036a600d5481565b34801561045a57600080fd5b5060095461036a565b34801561046f57600080fd5b5061036a61047e366004611f4a565b610d20565b34801561048f57600080fd5b506102c1610d88565b3480156104a457600080fd5b506102c16104b336600461206b565b610dc6565b3480156104c457600080fd5b506103056104d3366004611f4a565b610dfc565b3480156104e457600080fd5b506102c16104f3366004611f4a565b610e0e565b34801561050457600080fd5b506102c1610513366004611f4a565b610e3d565b34801561052457600080fd5b5061036a610533366004612014565b610e6c565b34801561054457600080fd5b506102c1610efd565b34801561055957600080fd5b5061036a600f5481565b34801561056f57600080fd5b5061036a61057e366004612014565b60116020526000908152604090205481565b34801561059c57600080fd5b506008546001600160a01b0316610305565b3480156105ba57600080fd5b506102c16105c9366004611f4a565b610f33565b3480156105da57600080fd5b506102d8610f62565b3480156105ef57600080fd5b5061036a600b5481565b6102c1610607366004611f4a565b610f71565b34801561061857600080fd5b506102c16106273660046120dd565b611169565b6102c161063a366004611f4a565b61122e565b34801561064b57600080fd5b5061036a60105481565b34801561066157600080fd5b506102c161067036600461212f565b61141e565b34801561068157600080fd5b506102c1610690366004611f4a565b611457565b3480156106a157600080fd5b506102d86106b0366004611f4a565b611486565b3480156106c157600080fd5b5061036a60095481565b3480156106d757600080fd5b506102c16106e6366004611f4a565b611552565b3480156106f757600080fd5b5061028c61070636600461220b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074057600080fd5b506102c161074f366004612014565b611581565b34801561076057600080fd5b5061036a600e5481565b34801561077657600080fd5b50600a5461028c9060ff1681565b34801561079057600080fd5b5061036a600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107cb57506001600160e01b03198216635b5e139f60e01b145b806107e657506001600160e01b0319821663780e9d6360e01b145b8061080157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083a5760405162461bcd60e51b81526004016108319061223e565b60405180910390fd5b600954600054111561087d5760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b6044820152606401610831565b6009546001826000546108909190612289565b61089a91906122a1565b11156108b85760405162461bcd60e51b8152600401610831906122b8565b6108c23382611619565b50565b6060600180546108d4906122e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906122e3565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611637565b6109c45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610831565b506000908152600660205260409020546001600160a01b031690565b60006109eb82610dfc565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610831565b336001600160a01b0382161480610a765750610a768133610706565b610ae85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610831565b610af383838361164a565b505050565b60006001600054610b0991906122a1565b905090565b610af38383836116a6565b6000610b2483610e6c565b8210610b7d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610831565b6000610b87610af8565b905060008060005b83811015610c20576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be257805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c105750935061080192505050565b6001909301925b50600101610b8f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610831565b6008546001600160a01b03163314610caa5760405162461bcd60e51b81526004016108319061223e565b60405133904780156108fc02916000818181858888f193505050501580156108c2573d6000803e3d6000fd5b6008546001600160a01b03163314610d005760405162461bcd60e51b81526004016108319061223e565b600f55565b610af38383836040518060200160405280600081525061141e565b6000610d2a610af8565b8210610d845760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610831565b5090565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016108319061223e565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108319061223e565b610af360038383611e87565b6000610e0782611989565b5192915050565b6008546001600160a01b03163314610e385760405162461bcd60e51b81526004016108319061223e565b601055565b6008546001600160a01b03163314610e675760405162461bcd60e51b81526004016108319061223e565b600955565b60006001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610831565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610f275760405162461bcd60e51b81526004016108319061223e565b610f316000611a5e565b565b6008546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016108319061223e565b600b55565b6060600280546108d4906122e3565b600a5460ff16610fb65760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610831565b34600b5482610fc5919061231e565b146110065760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610831565b600c5481111561104e5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610831565b60095460005411156110975760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610831565b6009546001826000546110aa9190612289565b6110b491906122a1565b11156110d25760405162461bcd60e51b8152600401610831906122b8565b600d54336000908152601160205260409020546110f0908390612289565b11156111385760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b6044820152606401610831565b6111423382611619565b3360009081526011602052604081208054839290611161908490612289565b909155505050565b6001600160a01b0382163314156111c25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610831565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460ff166112735760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610831565b34600e5482611282919061231e565b146112c35760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610831565b600f5481111561130b5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610831565b60095460005411156113545760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610831565b6009546001826000546113679190612289565b61137191906122a1565b111561138f5760405162461bcd60e51b8152600401610831906122b8565b601054336000908152601260205260409020546113ad908390612289565b11156113f55760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b6044820152606401610831565b6113ff3382611619565b3360009081526012602052604081208054839290611161908490612289565b6114298484846116a6565b61143584848484611ab0565b6114515760405162461bcd60e51b81526004016108319061233d565b50505050565b6008546001600160a01b031633146114815760405162461bcd60e51b81526004016108319061223e565b600c55565b606061149182611637565b6114f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610831565b60006114ff611baf565b9050805160001415611520576040518060200160405280600081525061154b565b8061152a84611bbe565b60405160200161153b929190612390565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461157c5760405162461bcd60e51b81526004016108319061223e565b600d55565b6008546001600160a01b031633146115ab5760405162461bcd60e51b81526004016108319061223e565b6001600160a01b0381166116105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b6108c281611a5e565b611633828260405180602001604052806000815250611cbc565b5050565b6000805482108015610801575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116b182611989565b80519091506000906001600160a01b0316336001600160a01b031614806116e85750336116dd84610957565b6001600160a01b0316145b806116fa575081516116fa9033610706565b9050806117645760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610831565b846001600160a01b031682600001516001600160a01b0316146117d85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610831565b6001600160a01b03841661183c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b61184c600084846000015161164a565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661193f576118f281611637565b1561193f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119a682611637565b611a055760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610831565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a54579392505050565b5060001901611a07565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ba357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af49033908990889088906004016123cf565b6020604051808303816000875af1925050508015611b2f575060408051601f3d908101601f19168201909252611b2c9181019061240c565b60015b611b89573d808015611b5d576040519150601f19603f3d011682016040523d82523d6000602084013e611b62565b606091505b508051611b815760405162461bcd60e51b81526004016108319061233d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba7565b5060015b949350505050565b6060600380546108d4906122e3565b606081611be25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0c5780611bf681612429565b9150611c059050600a8361245a565b9150611be6565b60008167ffffffffffffffff811115611c2757611c27612119565b6040519080825280601f01601f191660200182016040528015611c51576020820181803683370190505b5090505b8415611ba757611c666001836122a1565b9150611c73600a8661246e565b611c7e906030612289565b60f81b818381518110611c9357611c93612482565b60200101906001600160f81b031916908160001a905350611cb5600a8661245a565b9450611c55565b610af383838360016000546001600160a01b038516611d275760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610831565b83611d855760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610831565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e7e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e7257611e566000888488611ab0565b611e725760405162461bcd60e51b81526004016108319061233d565b60019182019101611e03565b50600055611982565b828054611e93906122e3565b90600052602060002090601f016020900481019282611eb55760008555611efb565b82601f10611ece5782800160ff19823516178555611efb565b82800160010185558215611efb579182015b82811115611efb578235825591602001919060010190611ee0565b50610d849291505b80821115610d845760008155600101611f03565b6001600160e01b0319811681146108c257600080fd5b600060208284031215611f3f57600080fd5b813561154b81611f17565b600060208284031215611f5c57600080fd5b5035919050565b60005b83811015611f7e578181015183820152602001611f66565b838111156114515750506000910152565b60008151808452611fa7816020860160208601611f63565b601f01601f19169290920160200192915050565b60208152600061154b6020830184611f8f565b80356001600160a01b0381168114611fe557600080fd5b919050565b60008060408385031215611ffd57600080fd5b61200683611fce565b946020939093013593505050565b60006020828403121561202657600080fd5b61154b82611fce565b60008060006060848603121561204457600080fd5b61204d84611fce565b925061205b60208501611fce565b9150604084013590509250925092565b6000806020838503121561207e57600080fd5b823567ffffffffffffffff8082111561209657600080fd5b818501915085601f8301126120aa57600080fd5b8135818111156120b957600080fd5b8660208285010111156120cb57600080fd5b60209290920196919550909350505050565b600080604083850312156120f057600080fd5b6120f983611fce565b91506020830135801515811461210e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561214557600080fd5b61214e85611fce565b935061215c60208601611fce565b925060408501359150606085013567ffffffffffffffff8082111561218057600080fd5b818701915087601f83011261219457600080fd5b8135818111156121a6576121a6612119565b604051601f8201601f19908116603f011681019083821181831017156121ce576121ce612119565b816040528281528a60208487010111156121e757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221e57600080fd5b61222783611fce565b915061223560208401611fce565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229c5761229c612273565b500190565b6000828210156122b3576122b3612273565b500390565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b600181811c908216806122f757607f821691505b6020821081141561231857634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561233857612338612273565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516123a2818460208801611f63565b8351908301906123b6818360208801611f63565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240290830184611f8f565b9695505050505050565b60006020828403121561241e57600080fd5b815161154b81611f17565b600060001982141561243d5761243d612273565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261246957612469612444565b500490565b60008261247d5761247d612444565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e9430fb2ace33de003e89ada9629e970d03446636a79382480b16d72c0cff66764736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d3146106cb578063e985e9c5146106eb578063f2fde38b14610734578063f737c47a14610754578063f9020e331461076a578063f968adbe1461078457600080fd5b8063b88d4fde14610655578063c4e41b2214610378578063c6f6f21614610675578063c87b56dd14610695578063d5abeb01146106b557600080fd5b806395d89b411161010857806395d89b41146105ce578063a035b1fe146105e3578063a0712d68146105f9578063a22cb4651461060c578063a41467331461062c578063a70273571461063f57600080fd5b8063715018a6146105385780637dc949b21461054d5780637de77ecc146105635780638da5cb5b1461059057806391b7f5ed146105ae57600080fd5b806340f070a8116101dd578063502b33af116101a1578063502b33af1461048357806355f804b3146104985780636352211e146104b85780636d7c4a4b146104d85780636f8b44b0146104f857806370a082311461051857600080fd5b806340f070a8146103f857806342842e0e14610418578063453c2310146104385780634c0f38c21461044e5780634f6ccce71461046357600080fd5b80631491c2e51161022f5780631491c2e51461033d57806318160ddd1461037857806323b872dd1461038d57806326987b60146103ad5780632f745c59146103c35780633ccfd60b146103e357600080fd5b806301ffc9a71461026c57806302fb4791146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f2d565b61079a565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004611f4a565b610807565b005b3480156102cf57600080fd5b506102d86108c5565b6040516102989190611fbb565b3480156102f157600080fd5b50610305610300366004611f4a565b610957565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004611fea565b6109e0565b34801561034957600080fd5b5061036a610358366004612014565b60126020526000908152604090205481565b604051908152602001610298565b34801561038457600080fd5b5061036a610af8565b34801561039957600080fd5b506102c16103a836600461202f565b610b0e565b3480156103b957600080fd5b5061036a60005481565b3480156103cf57600080fd5b5061036a6103de366004611fea565b610b19565b3480156103ef57600080fd5b506102c1610c80565b34801561040457600080fd5b506102c1610413366004611f4a565b610cd6565b34801561042457600080fd5b506102c161043336600461202f565b610d05565b34801561044457600080fd5b5061036a600d5481565b34801561045a57600080fd5b5060095461036a565b34801561046f57600080fd5b5061036a61047e366004611f4a565b610d20565b34801561048f57600080fd5b506102c1610d88565b3480156104a457600080fd5b506102c16104b336600461206b565b610dc6565b3480156104c457600080fd5b506103056104d3366004611f4a565b610dfc565b3480156104e457600080fd5b506102c16104f3366004611f4a565b610e0e565b34801561050457600080fd5b506102c1610513366004611f4a565b610e3d565b34801561052457600080fd5b5061036a610533366004612014565b610e6c565b34801561054457600080fd5b506102c1610efd565b34801561055957600080fd5b5061036a600f5481565b34801561056f57600080fd5b5061036a61057e366004612014565b60116020526000908152604090205481565b34801561059c57600080fd5b506008546001600160a01b0316610305565b3480156105ba57600080fd5b506102c16105c9366004611f4a565b610f33565b3480156105da57600080fd5b506102d8610f62565b3480156105ef57600080fd5b5061036a600b5481565b6102c1610607366004611f4a565b610f71565b34801561061857600080fd5b506102c16106273660046120dd565b611169565b6102c161063a366004611f4a565b61122e565b34801561064b57600080fd5b5061036a60105481565b34801561066157600080fd5b506102c161067036600461212f565b61141e565b34801561068157600080fd5b506102c1610690366004611f4a565b611457565b3480156106a157600080fd5b506102d86106b0366004611f4a565b611486565b3480156106c157600080fd5b5061036a60095481565b3480156106d757600080fd5b506102c16106e6366004611f4a565b611552565b3480156106f757600080fd5b5061028c61070636600461220b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074057600080fd5b506102c161074f366004612014565b611581565b34801561076057600080fd5b5061036a600e5481565b34801561077657600080fd5b50600a5461028c9060ff1681565b34801561079057600080fd5b5061036a600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107cb57506001600160e01b03198216635b5e139f60e01b145b806107e657506001600160e01b0319821663780e9d6360e01b145b8061080157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083a5760405162461bcd60e51b81526004016108319061223e565b60405180910390fd5b600954600054111561087d5760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b6044820152606401610831565b6009546001826000546108909190612289565b61089a91906122a1565b11156108b85760405162461bcd60e51b8152600401610831906122b8565b6108c23382611619565b50565b6060600180546108d4906122e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906122e3565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611637565b6109c45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610831565b506000908152600660205260409020546001600160a01b031690565b60006109eb82610dfc565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610831565b336001600160a01b0382161480610a765750610a768133610706565b610ae85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610831565b610af383838361164a565b505050565b60006001600054610b0991906122a1565b905090565b610af38383836116a6565b6000610b2483610e6c565b8210610b7d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610831565b6000610b87610af8565b905060008060005b83811015610c20576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be257805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c105750935061080192505050565b6001909301925b50600101610b8f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610831565b6008546001600160a01b03163314610caa5760405162461bcd60e51b81526004016108319061223e565b60405133904780156108fc02916000818181858888f193505050501580156108c2573d6000803e3d6000fd5b6008546001600160a01b03163314610d005760405162461bcd60e51b81526004016108319061223e565b600f55565b610af38383836040518060200160405280600081525061141e565b6000610d2a610af8565b8210610d845760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610831565b5090565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016108319061223e565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108319061223e565b610af360038383611e87565b6000610e0782611989565b5192915050565b6008546001600160a01b03163314610e385760405162461bcd60e51b81526004016108319061223e565b601055565b6008546001600160a01b03163314610e675760405162461bcd60e51b81526004016108319061223e565b600955565b60006001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610831565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610f275760405162461bcd60e51b81526004016108319061223e565b610f316000611a5e565b565b6008546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016108319061223e565b600b55565b6060600280546108d4906122e3565b600a5460ff16610fb65760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610831565b34600b5482610fc5919061231e565b146110065760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610831565b600c5481111561104e5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610831565b60095460005411156110975760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610831565b6009546001826000546110aa9190612289565b6110b491906122a1565b11156110d25760405162461bcd60e51b8152600401610831906122b8565b600d54336000908152601160205260409020546110f0908390612289565b11156111385760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b6044820152606401610831565b6111423382611619565b3360009081526011602052604081208054839290611161908490612289565b909155505050565b6001600160a01b0382163314156111c25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610831565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460ff166112735760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b6044820152606401610831565b34600e5482611282919061231e565b146112c35760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b6044820152606401610831565b600f5481111561130b5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610831565b60095460005411156113545760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b6044820152606401610831565b6009546001826000546113679190612289565b61137191906122a1565b111561138f5760405162461bcd60e51b8152600401610831906122b8565b601054336000908152601260205260409020546113ad908390612289565b11156113f55760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b6044820152606401610831565b6113ff3382611619565b3360009081526012602052604081208054839290611161908490612289565b6114298484846116a6565b61143584848484611ab0565b6114515760405162461bcd60e51b81526004016108319061233d565b50505050565b6008546001600160a01b031633146114815760405162461bcd60e51b81526004016108319061223e565b600c55565b606061149182611637565b6114f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610831565b60006114ff611baf565b9050805160001415611520576040518060200160405280600081525061154b565b8061152a84611bbe565b60405160200161153b929190612390565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461157c5760405162461bcd60e51b81526004016108319061223e565b600d55565b6008546001600160a01b031633146115ab5760405162461bcd60e51b81526004016108319061223e565b6001600160a01b0381166116105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b6108c281611a5e565b611633828260405180602001604052806000815250611cbc565b5050565b6000805482108015610801575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116b182611989565b80519091506000906001600160a01b0316336001600160a01b031614806116e85750336116dd84610957565b6001600160a01b0316145b806116fa575081516116fa9033610706565b9050806117645760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610831565b846001600160a01b031682600001516001600160a01b0316146117d85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610831565b6001600160a01b03841661183c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b61184c600084846000015161164a565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661193f576118f281611637565b1561193f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526119a682611637565b611a055760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610831565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a54579392505050565b5060001901611a07565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ba357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af49033908990889088906004016123cf565b6020604051808303816000875af1925050508015611b2f575060408051601f3d908101601f19168201909252611b2c9181019061240c565b60015b611b89573d808015611b5d576040519150601f19603f3d011682016040523d82523d6000602084013e611b62565b606091505b508051611b815760405162461bcd60e51b81526004016108319061233d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba7565b5060015b949350505050565b6060600380546108d4906122e3565b606081611be25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0c5780611bf681612429565b9150611c059050600a8361245a565b9150611be6565b60008167ffffffffffffffff811115611c2757611c27612119565b6040519080825280601f01601f191660200182016040528015611c51576020820181803683370190505b5090505b8415611ba757611c666001836122a1565b9150611c73600a8661246e565b611c7e906030612289565b60f81b818381518110611c9357611c93612482565b60200101906001600160f81b031916908160001a905350611cb5600a8661245a565b9450611c55565b610af383838360016000546001600160a01b038516611d275760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610831565b83611d855760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610831565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e7e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e7257611e566000888488611ab0565b611e725760405162461bcd60e51b81526004016108319061233d565b60019182019101611e03565b50600055611982565b828054611e93906122e3565b90600052602060002090601f016020900481019282611eb55760008555611efb565b82601f10611ece5782800160ff19823516178555611efb565b82800160010185558215611efb579182015b82811115611efb578235825591602001919060010190611ee0565b50610d849291505b80821115610d845760008155600101611f03565b6001600160e01b0319811681146108c257600080fd5b600060208284031215611f3f57600080fd5b813561154b81611f17565b600060208284031215611f5c57600080fd5b5035919050565b60005b83811015611f7e578181015183820152602001611f66565b838111156114515750506000910152565b60008151808452611fa7816020860160208601611f63565b601f01601f19169290920160200192915050565b60208152600061154b6020830184611f8f565b80356001600160a01b0381168114611fe557600080fd5b919050565b60008060408385031215611ffd57600080fd5b61200683611fce565b946020939093013593505050565b60006020828403121561202657600080fd5b61154b82611fce565b60008060006060848603121561204457600080fd5b61204d84611fce565b925061205b60208501611fce565b9150604084013590509250925092565b6000806020838503121561207e57600080fd5b823567ffffffffffffffff8082111561209657600080fd5b818501915085601f8301126120aa57600080fd5b8135818111156120b957600080fd5b8660208285010111156120cb57600080fd5b60209290920196919550909350505050565b600080604083850312156120f057600080fd5b6120f983611fce565b91506020830135801515811461210e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561214557600080fd5b61214e85611fce565b935061215c60208601611fce565b925060408501359150606085013567ffffffffffffffff8082111561218057600080fd5b818701915087601f83011261219457600080fd5b8135818111156121a6576121a6612119565b604051601f8201601f19908116603f011681019083821181831017156121ce576121ce612119565b816040528281528a60208487010111156121e757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221e57600080fd5b61222783611fce565b915061223560208401611fce565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561229c5761229c612273565b500190565b6000828210156122b3576122b3612273565b500390565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b600181811c908216806122f757607f821691505b6020821081141561231857634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561233857612338612273565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516123a2818460208801611f63565b8351908301906123b6818360208801611f63565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240290830184611f8f565b9695505050505050565b60006020828403121561241e57600080fd5b815161154b81611f17565b600060001982141561243d5761243d612273565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261246957612469612444565b500490565b60008261247d5761247d612444565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e9430fb2ace33de003e89ada9629e970d03446636a79382480b16d72c0cff66764736f6c634300080c0033

Deployed Bytecode Sourcemap

38334:3488:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25185:372;;;;;;;;;;-1:-1:-1;25185:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25185:372:0;;;;;;;;40423:242;;;;;;;;;;-1:-1:-1;40423:242:0;;;;;:::i;:::-;;:::i;:::-;;27071:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28643:214::-;;;;;;;;;;-1:-1:-1;28643:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28643:214:0;1528:203:1;28164:413:0;;;;;;;;;;-1:-1:-1;28164:413:0;;;;;:::i;:::-;;:::i;39011:43::-;;;;;;;;;;-1:-1:-1;39011:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;39011:43:0;2364:177:1;23438:104:0;;;;;;;;;;;;;:::i;29519:162::-;;;;;;;;;;-1:-1:-1;29519:162:0;;;;;:::i;:::-;;:::i;22480:31::-;;;;;;;;;;;;;;;;24106:1007;;;;;;;;;;-1:-1:-1;24106:1007:0;;;;;:::i;:::-;;:::i;39292:109::-;;;;;;;;;;;;;:::i;39904:97::-;;;;;;;;;;-1:-1:-1;39904:97:0;;;;;:::i;:::-;;:::i;29752:177::-;;;;;;;;;;-1:-1:-1;29752:177:0;;;;;:::i;:::-;;:::i;38586:29::-;;;;;;;;;;;;;;;;40330:85;;;;;;;;;;-1:-1:-1;40398:9:0;;40330:85;;23619:187;;;;;;;;;;-1:-1:-1;23619:187:0;;;;;:::i;:::-;;:::i;39409:87::-;;;;;;;;;;;;;:::i;40130:90::-;;;;;;;;;;-1:-1:-1;40130:90:0;;;;;:::i;:::-;;:::i;26880:124::-;;;;;;;;;;-1:-1:-1;26880:124:0;;;;;:::i;:::-;;:::i;40013:105::-;;;;;;;;;;-1:-1:-1;40013:105:0;;;;;:::i;:::-;;:::i;39504:91::-;;;;;;;;;;-1:-1:-1;39504:91:0;;;;;:::i;:::-;;:::i;25621:221::-;;;;;;;;;;-1:-1:-1;25621:221:0;;;;;:::i;:::-;;:::i;4365:94::-;;;;;;;;;;;;;:::i;38658:28::-;;;;;;;;;;;;;;;;38962:39;;;;;;;;;;-1:-1:-1;38962:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;3714:87;;;;;;;;;;-1:-1:-1;3787:6:0;;-1:-1:-1;;;;;3787:6:0;3714:87;;39603:83;;;;;;;;;;-1:-1:-1;39603:83:0;;;;;:::i;:::-;;:::i;27240:104::-;;;;;;;;;;;;;:::i;38523:17::-;;;;;;;;;;;;;;;;41266:553;;;;;;:::i;:::-;;:::i;28929:288::-;;;;;;;;;;-1:-1:-1;28929:288:0;;;;;:::i;:::-;;:::i;40673:581::-;;;;;;:::i;:::-;;:::i;38697:32::-;;;;;;;;;;;;;;;;30000:355;;;;;;;;;;-1:-1:-1;30000:355:0;;;;;:::i;:::-;;:::i;39698:89::-;;;;;;;;;;-1:-1:-1;39698:89:0;;;;;:::i;:::-;;:::i;27415:344::-;;;;;;;;;;-1:-1:-1;27415:344:0;;;;;:::i;:::-;;:::i;38459:28::-;;;;;;;;;;;;;;;;39799:97;;;;;;;;;;-1:-1:-1;39799:97:0;;;;;:::i;:::-;;:::i;29288:164::-;;;;;;;;;;-1:-1:-1;29288:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29409:25:0;;;29385:4;29409:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29288:164;4614:192;;;;;;;;;;-1:-1:-1;4614:192:0;;;;;:::i;:::-;;:::i;38622:29::-;;;;;;;;;;;;;;;;38494:22;;;;;;;;;;-1:-1:-1;38494:22:0;;;;;;;;38550:25;;;;;;;;;;;;;;;;25185:372;25287:4;-1:-1:-1;;;;;;25324:40:0;;-1:-1:-1;;;25324:40:0;;:105;;-1:-1:-1;;;;;;;25381:48:0;;-1:-1:-1;;;25381:48:0;25324:105;:172;;;-1:-1:-1;;;;;;;25446:50:0;;-1:-1:-1;;;25446:50:0;25324:172;:225;;;-1:-1:-1;;;;;;;;;;15425:40:0;;;25513:36;25304:245;25185:372;-1:-1:-1;;25185:372:0:o;40423:242::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;;;;;;;;;40510:9:::1;;40494:12;;:25;;40486:50;;;::::0;-1:-1:-1;;;40486:50:0;;5931:2:1;40486:50:0::1;::::0;::::1;5913:21:1::0;5970:2;5950:18;;;5943:30;-1:-1:-1;;;5989:18:1;;;5982:42;6041:18;;40486:50:0::1;5729:336:1::0;40486:50:0::1;40586:9;;40580:1;40572:6;40557:12;;:21;;;;:::i;:::-;40556:25;;;;:::i;:::-;40555:40;;40547:70;;;;-1:-1:-1::0;;;40547:70:0::1;;;;;;;:::i;:::-;40628:29;40638:10;40650:6;40628:9;:29::i;:::-;40423:242:::0;:::o;27071:100::-;27125:13;27158:5;27151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27071:100;:::o;28643:214::-;28711:7;28739:16;28747:7;28739;:16::i;:::-;28731:74;;;;-1:-1:-1;;;28731:74:0;;7398:2:1;28731:74:0;;;7380:21:1;7437:2;7417:18;;;7410:30;7476:34;7456:18;;;7449:62;-1:-1:-1;;;7527:18:1;;;7520:43;7580:19;;28731:74:0;7196:409:1;28731:74:0;-1:-1:-1;28825:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28825:24:0;;28643:214::o;28164:413::-;28237:13;28253:24;28269:7;28253:15;:24::i;:::-;28237:40;;28302:5;-1:-1:-1;;;;;28296:11:0;:2;-1:-1:-1;;;;;28296:11:0;;;28288:58;;;;-1:-1:-1;;;28288:58:0;;7812:2:1;28288:58:0;;;7794:21:1;7851:2;7831:18;;;7824:30;7890:34;7870:18;;;7863:62;-1:-1:-1;;;7941:18:1;;;7934:32;7983:19;;28288:58:0;7610:398:1;28288:58:0;2670:10;-1:-1:-1;;;;;28381:21:0;;;;:62;;-1:-1:-1;28406:37:0;28423:5;2670:10;29288:164;:::i;28406:37::-;28359:169;;;;-1:-1:-1;;;28359:169:0;;8215:2:1;28359:169:0;;;8197:21:1;8254:2;8234:18;;;8227:30;8293:34;8273:18;;;8266:62;8364:27;8344:18;;;8337:55;8409:19;;28359:169:0;8013:421:1;28359:169:0;28541:28;28550:2;28554:7;28563:5;28541:8;:28::i;:::-;28226:351;28164:413;;:::o;23438:104::-;23491:7;23533:1;23518:12;;:16;;;;:::i;:::-;23511:23;;23438:104;:::o;29519:162::-;29645:28;29655:4;29661:2;29665:7;29645:9;:28::i;24106:1007::-;24195:7;24231:16;24241:5;24231:9;:16::i;:::-;24223:5;:24;24215:71;;;;-1:-1:-1;;;24215:71:0;;8641:2:1;24215:71:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:32;8812:19;;24215:71:0;8439:398:1;24215:71:0;24297:22;24322:13;:11;:13::i;:::-;24297:38;;24346:19;24376:25;24565:9;24560:466;24580:14;24576:1;:18;24560:466;;;24620:31;24654:14;;;:11;:14;;;;;;;;;24620:48;;;;;;;;;-1:-1:-1;;;;;24620:48:0;;;;;-1:-1:-1;;;24620:48:0;;;;;;;;;;;;24691:28;24687:111;;24764:14;;;-1:-1:-1;24687:111:0;24841:5;-1:-1:-1;;;;;24820:26:0;:17;-1:-1:-1;;;;;24820:26:0;;24816:195;;;24890:5;24875:11;:20;24871:85;;;-1:-1:-1;24931:1:0;-1:-1:-1;24924:8:0;;-1:-1:-1;;;24924:8:0;24871:85;24978:13;;;;;24816:195;-1:-1:-1;24596:3:0;;24560:466;;;-1:-1:-1;25049:56:0;;-1:-1:-1;;;25049:56:0;;9044:2:1;25049:56:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:44;9227:19;;25049:56:0;8842:410:1;39292:109:0;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39342:51:::1;::::0;39350:10:::1;::::0;39371:21:::1;39342:51:::0;::::1;;;::::0;::::1;::::0;;;39371:21;39350:10;39342:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;39904:97:::0;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39972:12:::1;:21:::0;39904:97::o;29752:177::-;29882:39;29899:4;29905:2;29909:7;29882:39;;;;;;;;;;;;:16;:39::i;23619:187::-;23686:7;23722:13;:11;:13::i;:::-;23714:5;:21;23706:69;;;;-1:-1:-1;;;23706:69:0;;9459:2:1;23706:69:0;;;9441:21:1;9498:2;9478:18;;;9471:30;9537:34;9517:18;;;9510:62;-1:-1:-1;;;9588:18:1;;;9581:33;9631:19;;23706:69:0;9257:399:1;23706:69:0;-1:-1:-1;23793:5:0;23619:187::o;39409:87::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39478:10:::1;::::0;;-1:-1:-1;;39464:24:0;::::1;39478:10;::::0;;::::1;39477:11;39464:24;::::0;;39409:87::o;40130:90::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40202:10:::1;:3;40208:4:::0;;40202:10:::1;:::i;26880:124::-:0;26944:7;26971:20;26983:7;26971:11;:20::i;:::-;:25;;26880:124;-1:-1:-1;;26880:124:0:o;40013:105::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40085:16:::1;:25:::0;40013:105::o;39504:91::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39569:9:::1;:18:::0;39504:91::o;25621:221::-;25685:7;-1:-1:-1;;;;;25713:19:0;;25705:75;;;;-1:-1:-1;;;25705:75:0;;9863:2:1;25705:75:0;;;9845:21:1;9902:2;9882:18;;;9875:30;9941:34;9921:18;;;9914:62;-1:-1:-1;;;9992:18:1;;;9985:41;10043:19;;25705:75:0;9661:407:1;25705:75:0;-1:-1:-1;;;;;;25806:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25806:27:0;;25621:221::o;4365:94::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39603:83::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39664:5:::1;:14:::0;39603:83::o;27240:104::-;27296:13;27329:7;27322:14;;;;;:::i;41266:553::-;41332:10;;;;41324:39;;;;-1:-1:-1;;;41324:39:0;;10275:2:1;41324:39:0;;;10257:21:1;10314:2;10294:18;;;10287:30;-1:-1:-1;;;10333:18:1;;;10326:46;10389:18;;41324:39:0;10073:340:1;41324:39:0;41400:9;41391:5;;41382:6;:14;;;;:::i;:::-;:27;41374:57;;;;-1:-1:-1;;;41374:57:0;;10793:2:1;41374:57:0;;;10775:21:1;10832:2;10812:18;;;10805:30;-1:-1:-1;;;10851:18:1;;;10844:47;10908:18;;41374:57:0;10591:341:1;41374:57:0;41460:8;;41450:6;:18;;41442:50;;;;-1:-1:-1;;;41442:50:0;;11139:2:1;41442:50:0;;;11121:21:1;11178:2;11158:18;;;11151:30;-1:-1:-1;;;11197:18:1;;;11190:49;11256:18;;41442:50:0;10937:343:1;41442:50:0;41527:9;;41511:12;;:25;;41503:56;;;;-1:-1:-1;;;41503:56:0;;11487:2:1;41503:56:0;;;11469:21:1;11526:2;11506:18;;;11499:30;-1:-1:-1;;;11545:18:1;;;11538:48;11603:18;;41503:56:0;11285:342:1;41503:56:0;41609:9;;41603:1;41595:6;41580:12;;:21;;;;:::i;:::-;41579:25;;;;:::i;:::-;41578:40;;41570:70;;;;-1:-1:-1;;;41570:70:0;;;;;;;:::i;:::-;41691:12;;41667:10;41659:19;;;;:7;:19;;;;;;:28;;41681:6;;41659:28;:::i;:::-;:44;;41651:80;;;;-1:-1:-1;;;41651:80:0;;11834:2:1;41651:80:0;;;11816:21:1;11873:2;11853:18;;;11846:30;-1:-1:-1;;;11892:18:1;;;11885:53;11955:18;;41651:80:0;11632:347:1;41651:80:0;41742:29;41752:10;41764:6;41742:9;:29::i;:::-;41790:10;41782:19;;;;:7;:19;;;;;:29;;41805:6;;41782:19;:29;;41805:6;;41782:29;:::i;:::-;;;;-1:-1:-1;;;41266:553:0:o;28929:288::-;-1:-1:-1;;;;;29024:24:0;;2670:10;29024:24;;29016:63;;;;-1:-1:-1;;;29016:63:0;;12186:2:1;29016:63:0;;;12168:21:1;12225:2;12205:18;;;12198:30;12264:28;12244:18;;;12237:56;12310:18;;29016:63:0;11984:350:1;29016:63:0;2670:10;29092:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29092:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29092:53:0;;;;;;;;;;29161:48;;540:41:1;;;29092:42:0;;2670:10;29161:48;;513:18:1;29161:48:0;;;;;;;28929:288;;:::o;40673:581::-;40743:10;;;;40735:39;;;;-1:-1:-1;;;40735:39:0;;10275:2:1;40735:39:0;;;10257:21:1;10314:2;10294:18;;;10287:30;-1:-1:-1;;;10333:18:1;;;10326:46;10389:18;;40735:39:0;10073:340:1;40735:39:0;40819:9;40802:13;;40793:6;:22;;;;:::i;:::-;:35;40785:65;;;;-1:-1:-1;;;40785:65:0;;10793:2:1;40785:65:0;;;10775:21:1;10832:2;10812:18;;;10805:30;-1:-1:-1;;;10851:18:1;;;10844:47;10908:18;;40785:65:0;10591:341:1;40785:65:0;40879:12;;40869:6;:22;;40861:54;;;;-1:-1:-1;;;40861:54:0;;11139:2:1;40861:54:0;;;11121:21:1;11178:2;11158:18;;;11151:30;-1:-1:-1;;;11197:18:1;;;11190:49;11256:18;;40861:54:0;10937:343:1;40861:54:0;40950:9;;40934:12;;:25;;40926:56;;;;-1:-1:-1;;;40926:56:0;;11487:2:1;40926:56:0;;;11469:21:1;11526:2;11506:18;;;11499:30;-1:-1:-1;;;11545:18:1;;;11538:48;11603:18;;40926:56:0;11285:342:1;40926:56:0;41032:9;;41026:1;41018:6;41003:12;;:21;;;;:::i;:::-;41002:25;;;;:::i;:::-;41001:40;;40993:70;;;;-1:-1:-1;;;40993:70:0;;;;;;;:::i;:::-;41118:16;;41094:10;41082:23;;;;:11;:23;;;;;;:32;;41108:6;;41082:32;:::i;:::-;:52;;41074:88;;;;-1:-1:-1;;;41074:88:0;;11834:2:1;41074:88:0;;;11816:21:1;11873:2;11853:18;;;11846:30;-1:-1:-1;;;11892:18:1;;;11885:53;11955:18;;41074:88:0;11632:347:1;41074:88:0;41173:29;41183:10;41195:6;41173:9;:29::i;:::-;41225:10;41213:23;;;;:11;:23;;;;;:33;;41240:6;;41213:23;:33;;41240:6;;41213:33;:::i;30000:355::-;30159:28;30169:4;30175:2;30179:7;30159:9;:28::i;:::-;30220:48;30243:4;30249:2;30253:7;30262:5;30220:22;:48::i;:::-;30198:149;;;;-1:-1:-1;;;30198:149:0;;;;;;;:::i;:::-;30000:355;;;;:::o;39698:89::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39762:8:::1;:17:::0;39698:89::o;27415:344::-;27488:13;27522:16;27530:7;27522;:16::i;:::-;27514:76;;;;-1:-1:-1;;;27514:76:0;;12961:2:1;27514:76:0;;;12943:21:1;13000:2;12980:18;;;12973:30;13039:34;13019:18;;;13012:62;-1:-1:-1;;;13090:18:1;;;13083:45;13145:19;;27514:76:0;12759:411:1;27514:76:0;27603:21;27627:10;:8;:10::i;:::-;27603:34;;27661:7;27655:21;27680:1;27655:26;;:96;;;;;;;;;;;;;;;;;27708:7;27717:18;:7;:16;:18::i;:::-;27691:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27655:96;27648:103;27415:344;-1:-1:-1;;;27415:344:0:o;39799:97::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39867:12:::1;:21:::0;39799:97::o;4614:192::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4703:22:0;::::1;4695:73;;;::::0;-1:-1:-1;;;4695:73:0;;14019:2:1;4695:73:0::1;::::0;::::1;14001:21:1::0;14058:2;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;-1:-1:-1;;;14148:18:1;;;14141:36;14194:19;;4695:73:0::1;13817:402:1::0;4695:73:0::1;4779:19;4789:8;4779:9;:19::i;30744:104::-:0;30813:27;30823:2;30827:8;30813:27;;;;;;;;;;;;:9;:27::i;:::-;30744:104;;:::o;30610:126::-;30667:4;30701:12;;30691:7;:22;:37;;;;-1:-1:-1;;30717:11:0;;;30610:126::o;35545:196::-;35660:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35660:29:0;-1:-1:-1;;;;;35660:29:0;;;;;;;;;35705:28;;35660:24;;35705:28;;;;;;;35545:196;;;:::o;33425:2002::-;33540:35;33578:20;33590:7;33578:11;:20::i;:::-;33653:18;;33540:58;;-1:-1:-1;33611:22:0;;-1:-1:-1;;;;;33637:34:0;2670:10;-1:-1:-1;;;;;33637:34:0;;:87;;;-1:-1:-1;2670:10:0;33688:20;33700:7;33688:11;:20::i;:::-;-1:-1:-1;;;;;33688:36:0;;33637:87;:154;;;-1:-1:-1;33758:18:0;;33741:50;;2670:10;29288:164;:::i;33741:50::-;33611:181;;33813:17;33805:80;;;;-1:-1:-1;;;33805:80:0;;14426:2:1;33805:80:0;;;14408:21:1;14465:2;14445:18;;;14438:30;14504:34;14484:18;;;14477:62;-1:-1:-1;;;14555:18:1;;;14548:48;14613:19;;33805:80:0;14224:414:1;33805:80:0;33928:4;-1:-1:-1;;;;;33906:26:0;:13;:18;;;-1:-1:-1;;;;;33906:26:0;;33898:77;;;;-1:-1:-1;;;33898:77:0;;14845:2:1;33898:77:0;;;14827:21:1;14884:2;14864:18;;;14857:30;14923:34;14903:18;;;14896:62;-1:-1:-1;;;14974:18:1;;;14967:36;15020:19;;33898:77:0;14643:402:1;33898:77:0;-1:-1:-1;;;;;33994:16:0;;33986:66;;;;-1:-1:-1;;;33986:66:0;;15252:2:1;33986:66:0;;;15234:21:1;15291:2;15271:18;;;15264:30;15330:34;15310:18;;;15303:62;-1:-1:-1;;;15381:18:1;;;15374:35;15426:19;;33986:66:0;15050:401:1;33986:66:0;34173:49;34190:1;34194:7;34203:13;:18;;;34173:8;:49::i;:::-;-1:-1:-1;;;;;34518:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34518:31:0;;;-1:-1:-1;;;;;34518:31:0;;;-1:-1:-1;;34518:31:0;;;;;;;34564:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34564:29:0;;;;;;;;;;;;;34610:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34655:61:0;;;;-1:-1:-1;;;34700:15:0;34655:61;;;;;;34990:11;;;35020:24;;;;;:29;34990:11;;35020:29;35016:295;;35088:20;35096:11;35088:7;:20::i;:::-;35084:212;;;35165:18;;;35133:24;;;:11;:24;;;;;;;;:50;;35248:28;;;;35206:70;;-1:-1:-1;;;35206:70:0;-1:-1:-1;;;;;;35206:70:0;;;-1:-1:-1;;;;;35133:50:0;;;35206:70;;;;;;;35084:212;34493:829;35358:7;35354:2;-1:-1:-1;;;;;35339:27:0;35348:4;-1:-1:-1;;;;;35339:27:0;;;;;;;;;;;35377:42;33529:1898;;33425:2002;;;:::o;26281:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26384:16:0;26392:7;26384;:16::i;:::-;26376:71;;;;-1:-1:-1;;;26376:71:0;;15658:2:1;26376:71:0;;;15640:21:1;15697:2;15677:18;;;15670:30;15736:34;15716:18;;;15709:62;-1:-1:-1;;;15787:18:1;;;15780:40;15837:19;;26376:71:0;15456:406:1;26376:71:0;26505:7;26485:245;26552:31;26586:17;;;:11;:17;;;;;;;;;26552:51;;;;;;;;;-1:-1:-1;;;;;26552:51:0;;;;;-1:-1:-1;;;26552:51:0;;;;;;;;;;;;26626:28;26622:93;;26686:9;26281:537;-1:-1:-1;;;26281:537:0:o;26622:93::-;-1:-1:-1;;;26525:6:0;26485:245;;4814:173;4889:6;;;-1:-1:-1;;;;;4906:17:0;;;-1:-1:-1;;;;;;4906:17:0;;;;;;;4939:40;;4889:6;;;4906:17;4889:6;;4939:40;;4870:16;;4939:40;4859:128;4814:173;:::o;36306:804::-;36461:4;-1:-1:-1;;;;;36482:13:0;;5998:20;6046:8;36478:625;;36518:72;;-1:-1:-1;;;36518:72:0;;-1:-1:-1;;;;;36518:36:0;;;;;:72;;2670:10;;36569:4;;36575:7;;36584:5;;36518:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36518:72:0;;;;;;;;-1:-1:-1;;36518:72:0;;;;;;;;;;;;:::i;:::-;;;36514:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36764:13:0;;36760:273;;36807:61;;-1:-1:-1;;;36807:61:0;;;;;;;:::i;36760:273::-;36983:6;36977:13;36968:6;36964:2;36960:15;36953:38;36514:534;-1:-1:-1;;;;;;36641:55:0;-1:-1:-1;;;36641:55:0;;-1:-1:-1;36634:62:0;;36478:625;-1:-1:-1;37087:4:0;36478:625;36306:804;;;;;;:::o;28007:95::-;28058:13;28091:3;28084:10;;;;;:::i;289:723::-;345:13;566:10;562:53;;-1:-1:-1;;593:10:0;;;;;;;;;;;;-1:-1:-1;;;593:10:0;;;;;289:723::o;562:53::-;640:5;625:12;681:78;688:9;;681:78;;714:8;;;;:::i;:::-;;-1:-1:-1;737:10:0;;-1:-1:-1;745:2:0;737:10;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;791:17:0;;769:39;;819:154;826:10;;819:154;;853:11;863:1;853:11;;:::i;:::-;;-1:-1:-1;922:10:0;930:2;922:5;:10;:::i;:::-;909:24;;:2;:24;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;879:56:0;;;;;;;;-1:-1:-1;950:11:0;959:2;950:11;;:::i;:::-;;;819:154;;31211:163;31334:32;31340:2;31344:8;31354:5;31361:4;31772:20;31795:12;-1:-1:-1;;;;;31826:16:0;;31818:62;;;;-1:-1:-1;;;31818:62:0;;17879:2:1;31818:62:0;;;17861:21:1;17918:2;17898:18;;;17891:30;17957:34;17937:18;;;17930:62;-1:-1:-1;;;18008:18:1;;;18001:31;18049:19;;31818:62:0;17677:397:1;31818:62:0;31899:13;31891:66;;;;-1:-1:-1;;;31891:66:0;;18281:2:1;31891:66:0;;;18263:21:1;18320:2;18300:18;;;18293:30;18359:34;18339:18;;;18332:62;-1:-1:-1;;;18410:18:1;;;18403:38;18458:19;;31891:66:0;18079:404:1;31891:66:0;-1:-1:-1;;;;;32309:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32309:45:0;;-1:-1:-1;;;;;32309:45:0;;;;;;;;;;32369:50;;;;;;;;;;;;;;32436:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32486:66:0;;;;-1:-1:-1;;;32536:15:0;32486:66;;;;;;;32436:25;;32621:415;32641:8;32637:1;:12;32621:415;;;32680:38;;32705:12;;-1:-1:-1;;;;;32680:38:0;;;32697:1;;32680:38;;32697:1;;32680:38;32741:4;32737:249;;;32804:59;32835:1;32839:2;32843:12;32857:5;32804:22;:59::i;:::-;32770:196;;;;-1:-1:-1;;;32770:196:0;;;;;;;:::i;:::-;33006:14;;;;;32651:3;32621:415;;;-1:-1:-1;33052:12:0;:27;33103:60;30000:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:592::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;3067:9;3054:23;3096:18;3137:2;3129:6;3126:14;3123:34;;;3153:1;3150;3143:12;3123:34;3191:6;3180:9;3176:22;3166:32;;3236:7;3229:4;3225:2;3221:13;3217:27;3207:55;;3258:1;3255;3248:12;3207:55;3298:2;3285:16;3324:2;3316:6;3313:14;3310:34;;;3340:1;3337;3330:12;3310:34;3385:7;3380:2;3371:6;3367:2;3363:15;3359:24;3356:37;3353:57;;;3406:1;3403;3396:12;3353:57;3437:2;3429:11;;;;;3459:6;;-1:-1:-1;2879:592:1;;-1:-1:-1;;;;2879:592:1:o;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:356::-;5570:2;5552:21;;;5589:18;;;5582:30;5648:34;5643:2;5628:18;;5621:62;5715:2;5700:18;;5368:356::o;6070:127::-;6131:10;6126:3;6122:20;6119:1;6112:31;6162:4;6159:1;6152:15;6186:4;6183:1;6176:15;6202:128;6242:3;6273:1;6269:6;6266:1;6263:13;6260:39;;;6279:18;;:::i;:::-;-1:-1:-1;6315:9:1;;6202:128::o;6335:125::-;6375:4;6403:1;6400;6397:8;6394:34;;;6408:18;;:::i;:::-;-1:-1:-1;6445:9:1;;6335:125::o;6465:341::-;6667:2;6649:21;;;6706:2;6686:18;;;6679:30;-1:-1:-1;;;6740:2:1;6725:18;;6718:47;6797:2;6782:18;;6465:341::o;6811:380::-;6890:1;6886:12;;;;6933;;;6954:61;;7008:4;7000:6;6996:17;6986:27;;6954:61;7061:2;7053:6;7050:14;7030:18;7027:38;7024:161;;;7107:10;7102:3;7098:20;7095:1;7088:31;7142:4;7139:1;7132:15;7170:4;7167:1;7160:15;7024:161;;6811:380;;;:::o;10418:168::-;10458:7;10524:1;10520;10516:6;10512:14;10509:1;10506:21;10501:1;10494:9;10487:17;10483:45;10480:71;;;10531:18;;:::i;:::-;-1:-1:-1;10571:9:1;;10418:168::o;12339:415::-;12541:2;12523:21;;;12580:2;12560:18;;;12553:30;12619:34;12614:2;12599:18;;12592:62;-1:-1:-1;;;12685:2:1;12670:18;;12663:49;12744:3;12729:19;;12339:415::o;13175:637::-;13455:3;13493:6;13487:13;13509:53;13555:6;13550:3;13543:4;13535:6;13531:17;13509:53;:::i;:::-;13625:13;;13584:16;;;;13647:57;13625:13;13584:16;13681:4;13669:17;;13647:57;:::i;:::-;-1:-1:-1;;;13726:20:1;;13755:22;;;13804:1;13793:13;;13175:637;-1:-1:-1;;;;13175:637:1:o;16283:489::-;-1:-1:-1;;;;;16552:15:1;;;16534:34;;16604:15;;16599:2;16584:18;;16577:43;16651:2;16636:18;;16629:34;;;16699:3;16694:2;16679:18;;16672:31;;;16477:4;;16720:46;;16746:19;;16738:6;16720:46;:::i;:::-;16712:54;16283:489;-1:-1:-1;;;;;;16283:489:1:o;16777:249::-;16846:6;16899:2;16887:9;16878:7;16874:23;16870:32;16867:52;;;16915:1;16912;16905:12;16867:52;16947:9;16941:16;16966:30;16990:5;16966:30;:::i;17031:135::-;17070:3;-1:-1:-1;;17091:17:1;;17088:43;;;17111:18;;:::i;:::-;-1:-1:-1;17158:1:1;17147:13;;17031:135::o;17171:127::-;17232:10;17227:3;17223:20;17220:1;17213:31;17263:4;17260:1;17253:15;17287:4;17284:1;17277:15;17303:120;17343:1;17369;17359:35;;17374:18;;:::i;:::-;-1:-1:-1;17408:9:1;;17303:120::o;17428:112::-;17460:1;17486;17476:35;;17491:18;;:::i;:::-;-1:-1:-1;17525:9:1;;17428:112::o;17545:127::-;17606:10;17601:3;17597:20;17594:1;17587:31;17637:4;17634:1;17627:15;17661:4;17658:1;17651:15

Swarm Source

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