ETH Price: $2,695.21 (-1.59%)

Token

BluWorld (BluWorld)
 

Overview

Max Total Supply

1,321 BluWorld

Holders

718

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ulices.eth
Balance
19 BluWorld
0x860F4d513Fd15789Af2D5942fF80a637Fd4a27d7
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:
BluWorld

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-09
*/

// SPDX-License-Identifier: MIT AND GPL-3.0

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

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: contracts/BluWorld.sol

pragma solidity >=0.7.0 <0.9.0;



contract BluWorld is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string private baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public preSaleCost = 0.065 ether;
    uint256 public cost = 0.075 ether;
    uint256 public maxSupply = 5000;
    uint256 public preSaleMaxSupply = 0;
    uint256 public maxMintAmountPresale = 0;
    uint256 public maxMintAmount = 10;
    uint256 public nftPerAddressLimitPresale = 1;
    uint256 public nftPerAddressLimit = 500;
    uint256 public preSaleDate = 1532710800;
    uint256 public preSaleEndDate = 1625775200;
    uint256 public publicSaleDate = 1636506000;
    bool public paused = false;
    bool public revealed = false;
    mapping(address => bool) whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri) ERC721(_name, _symbol) {
        setNotRevealedURI(_initNotRevealedUri);
    }
    
    //MODIFIERS
    modifier notPaused {
         require(!paused, "the contract is paused");
         _;
    }

    modifier saleStarted {
        require(block.timestamp >= preSaleDate, "Sale has not started yet");
        _;
    }

    modifier minimumMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        _;
    }

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

    function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal {
            uint256 actualCost;
            block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost;
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale");
            require(msg.value >= actualCost * _mintAmount, "insufficient funds");
            require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded");
            require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded");
    }

    function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal {
        require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded");
    }

    //MINT
    function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) {
        uint256 supply = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        //Do some validations depending on which step of the sale we are in
        block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount);

        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function gift(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[destination]++;
            _safeMint(destination, supply + i);
        }
    }

    //PUBLIC VIEWS
    function isWhitelisted(address _user) public view returns (bool) {
        return whitelistedAddresses[_user];
    }

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

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

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

    function getCurrentCost() public view returns (uint256) {
        if (block.timestamp < preSaleEndDate) {
            return preSaleCost;
        } else {
            return cost;
        }
    }

    //ONLY OWNER VIEWS
    function getBaseURI() public view onlyOwner returns (string memory) {
        return baseURI;
    }

    function getContractBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    //ONLY OWNER SETTERS
    function reveal() public onlyOwner {
        revealed = true;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
        nftPerAddressLimitPresale = _limit;
    }

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

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        preSaleCost = _newCost;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }
    
    function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountPresale = _newmaxMintAmount;
    }

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

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

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

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

    function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
        preSaleMaxSupply = _newPresaleMaxSupply;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
        preSaleDate = _preSaleDate;
    }

    function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
        preSaleEndDate = _preSaleEndDate;
    }

    function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
        publicSaleDate = _publicSaleDate;
    }

    function whitelistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistedAddresses[addresses[i]] = true;
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001e0565b5066e6ed27d6668000600e5567010a741a46278000600f5561138860105560006011819055601255600a60135560016014556101f4601555635b5b4f906016556360e75c6060175563618b19906018556019805461ffff191690553480156200009057600080fd5b506040516200387a3803806200387a833981016040819052620000b39162000331565b825183908390620000cc906000906020850190620001e0565b508051620000e2906001906020840190620001e0565b505050620000ff620000f96200011360201b60201c565b62000117565b6200010a8162000169565b50505062000446565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017362000113565b6001600160a01b031662000186620001d1565b6001600160a01b031614620001b85760405162461bcd60e51b8152600401620001af90620003be565b60405180910390fd5b8051620001cd90600d906020840190620001e0565b5050565b600a546001600160a01b031690565b828054620001ee90620003f3565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b600082601f83011262000297578081fd5b81516001600160401b0380821115620002b457620002b462000430565b6040516020601f8401601f1916820181018381118382101715620002dc57620002dc62000430565b6040528382528584018101871015620002f3578485fd5b8492505b83831015620003165785830181015182840182015291820191620002f7565b838311156200032757848185840101525b5095945050505050565b60008060006060848603121562000346578283fd5b83516001600160401b03808211156200035d578485fd5b6200036b8783880162000286565b9450602086015191508082111562000381578384fd5b6200038f8783880162000286565b93506040860151915080821115620003a5578283fd5b50620003b48682870162000286565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200040857607f821691505b602082108114156200042a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61342480620004566000396000f3fe6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced3873146109c6578063edec5f27146109db578063f2c4ce1e146109fb578063f2fde38b14610a1b57610397565b8063d0eb26b014610951578063d5abeb0114610971578063da3ef23f14610986578063e985e9c5146109a657610397565b8063ba7d2c76116100dc578063ba7d2c76146108f2578063c668286214610907578063c87b56dd1461091c578063cc9ff9c61461093c57610397565b8063a22cb4651461089d578063a475b5dd146108bd578063b88d4fde146108d257610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461084057806395d89b4114610860578063a0712d6814610875578063a18116f11461088857610397565b80637f00c7a6146107d6578063831e60de146107f657806383a076be1461080b5780638da5cb5b1461082b57610397565b8063715018a6116101b6578063715018a614610777578063743c7f6b1461078c5780637967a50a146107ac5780637effc032146107c157610397565b80636f9fb98a1461072d57806370a0823114610742578063714c53981461076257610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106b85780636352211e146106cd578063669736c0146106ed5780636f8b44b01461070d57610397565b806344a0d68a146106435780634f6ccce714610663578063518302271461068357806355f804b31461069857610397565b80633ccfd60b1161029b5780633ccfd60b146105ce57806342842e0e146105d657806342f0ca0d146105f6578063438b63001461061657610397565b80632e09282e146105795780632f745c591461058e5780633af32abf146105ae57610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461050f5780631985cc651461052f578063239c70ae1461054457806323b872dd1461055957610397565b80630a50716b146104985780630e54a883146104b857806313faede6146104d857806318160ddd146104fa57610397565b8063081812fc11610375578063081812fc14610416578063081c8c4414610443578063095ea7b3146104585780630a403f041461047857610397565b806301ffc9a71461039c57806302329a29146103d257806306fdde03146103f4575b600080fd5b3480156103a857600080fd5b506103bc6103b73660046128da565b610a3b565b6040516103c99190612b15565b60405180910390f35b3480156103de57600080fd5b506103f26103ed3660046128c0565b610a68565b005b34801561040057600080fd5b50610409610ac3565b6040516103c99190612b20565b34801561042257600080fd5b50610436610431366004612958565b610b56565b6040516103c99190612a80565b34801561044f57600080fd5b50610409610b99565b34801561046457600080fd5b506103f26104733660046127e9565b610c27565b34801561048457600080fd5b506103f2610493366004612958565b610cbf565b3480156104a457600080fd5b506103f26104b3366004612958565b610d03565b3480156104c457600080fd5b506103f26104d3366004612958565b610d47565b3480156104e457600080fd5b506104ed610d8b565b6040516103c9919061325f565b34801561050657600080fd5b506104ed610d91565b34801561051b57600080fd5b506104ed61052a3660046126b9565b610d97565b34801561053b57600080fd5b506104ed610da9565b34801561055057600080fd5b506104ed610daf565b34801561056557600080fd5b506103f261057436600461270c565b610db5565b34801561058557600080fd5b506104ed610ded565b34801561059a57600080fd5b506104ed6105a93660046127e9565b610df3565b3480156105ba57600080fd5b506103bc6105c93660046126b9565b610e45565b6103f2610e63565b3480156105e257600080fd5b506103f26105f136600461270c565b610f0e565b34801561060257600080fd5b506103f2610611366004612958565b610f29565b34801561062257600080fd5b506106366106313660046126b9565b610f6d565b6040516103c99190612ad1565b34801561064f57600080fd5b506103f261065e366004612958565b61102b565b34801561066f57600080fd5b506104ed61067e366004612958565b61106f565b34801561068f57600080fd5b506103bc6110ca565b3480156106a457600080fd5b506103f26106b3366004612912565b6110d8565b3480156106c457600080fd5b506103bc61112e565b3480156106d957600080fd5b506104366106e8366004612958565b611137565b3480156106f957600080fd5b506103f2610708366004612958565b61116c565b34801561071957600080fd5b506103f2610728366004612958565b6111b0565b34801561073957600080fd5b506104ed6111f4565b34801561074e57600080fd5b506104ed61075d3660046126b9565b61123a565b34801561076e57600080fd5b5061040961127e565b34801561078357600080fd5b506103f26112cc565b34801561079857600080fd5b506103f26107a7366004612958565b611317565b3480156107b857600080fd5b506104ed61135b565b3480156107cd57600080fd5b506104ed611361565b3480156107e257600080fd5b506103f26107f1366004612958565b611367565b34801561080257600080fd5b506104ed6113ab565b34801561081757600080fd5b506103f2610826366004612970565b6113c9565b34801561083757600080fd5b506104366114bf565b34801561084c57600080fd5b506103f261085b366004612958565b6114ce565b34801561086c57600080fd5b50610409611512565b6103f2610883366004612958565b611521565b34801561089457600080fd5b506104ed611645565b3480156108a957600080fd5b506103f26108b83660046127c0565b61164b565b3480156108c957600080fd5b506103f2611719565b3480156108de57600080fd5b506103f26108ed366004612747565b611769565b3480156108fe57600080fd5b506104ed6117a2565b34801561091357600080fd5b506104096117a8565b34801561092857600080fd5b50610409610937366004612958565b6117b5565b34801561094857600080fd5b506104ed6118dd565b34801561095d57600080fd5b506103f261096c366004612958565b6118e3565b34801561097d57600080fd5b506104ed611927565b34801561099257600080fd5b506103f26109a1366004612912565b61192d565b3480156109b257600080fd5b506103bc6109c13660046126da565b61197f565b3480156109d257600080fd5b506104ed6119ad565b3480156109e757600080fd5b506103f26109f6366004612812565b6119b3565b348015610a0757600080fd5b506103f2610a16366004612912565b611a68565b348015610a2757600080fd5b506103f2610a363660046126b9565b611aba565b60006001600160e01b0319821663780e9d6360e01b1480610a605750610a6082611b28565b90505b919050565b610a70611b68565b6001600160a01b0316610a816114bf565b6001600160a01b031614610ab05760405162461bcd60e51b8152600401610aa790612f6b565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610ad29061332c565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe9061332c565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090505b90565b6000610b6182611b6c565b610b7d5760405162461bcd60e51b8152600401610aa790612f1f565b506000908152600460205260409020546001600160a01b031690565b600d8054610ba69061332c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd29061332c565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b505050505081565b6000610c3282611137565b9050806001600160a01b0316836001600160a01b03161415610c665760405162461bcd60e51b8152600401610aa79061309f565b806001600160a01b0316610c78611b68565b6001600160a01b03161480610c945750610c94816109c1611b68565b610cb05760405162461bcd60e51b8152600401610aa790612dca565b610cba8383611b89565b505050565b610cc7611b68565b6001600160a01b0316610cd86114bf565b6001600160a01b031614610cfe5760405162461bcd60e51b8152600401610aa790612f6b565b601155565b610d0b611b68565b6001600160a01b0316610d1c6114bf565b6001600160a01b031614610d425760405162461bcd60e51b8152600401610aa790612f6b565b601455565b610d4f611b68565b6001600160a01b0316610d606114bf565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610aa790612f6b565b601855565b600f5481565b60085490565b601b6020526000908152604090205481565b60165481565b60135481565b610dc6610dc0611b68565b82611bf7565b610de25760405162461bcd60e51b8152600401610aa790613154565b610cba838383611c7c565b60145481565b6000610dfe8361123a565b8210610e1c5760405162461bcd60e51b8152600401610aa790612b6a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152601a602052604090205460ff1690565b610e6b611b68565b6001600160a01b0316610e7c6114bf565b6001600160a01b031614610ea25760405162461bcd60e51b8152600401610aa790612f6b565b6000336001600160a01b031647604051610ebb90610b53565b60006040518083038185875af1925050503d8060008114610ef8576040519150601f19603f3d011682016040523d82523d6000602084013e610efd565b606091505b5050905080610f0b57600080fd5b50565b610cba83838360405180602001604052806000815250611769565b610f31611b68565b6001600160a01b0316610f426114bf565b6001600160a01b031614610f685760405162461bcd60e51b8152600401610aa790612f6b565b601755565b60606000610f7a8361123a565b905060008167ffffffffffffffff811115610fa557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fce578160200160208202803683370190505b50905060005b8281101561102357610fe68582610df3565b82828151811061100657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061101b81613367565b915050610fd4565b509392505050565b611033611b68565b6001600160a01b03166110446114bf565b6001600160a01b03161461106a5760405162461bcd60e51b8152600401610aa790612f6b565b600f55565b6000611079610d91565b82106110975760405162461bcd60e51b8152600401610aa7906131a5565b600882815481106110b857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601954610100900460ff1681565b6110e0611b68565b6001600160a01b03166110f16114bf565b6001600160a01b0316146111175760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600b9060208401906125a1565b5050565b60195460ff1681565b6000818152600260205260408120546001600160a01b031680610a605760405162461bcd60e51b8152600401610aa790612e71565b611174611b68565b6001600160a01b03166111856114bf565b6001600160a01b0316146111ab5760405162461bcd60e51b8152600401610aa790612f6b565b601255565b6111b8611b68565b6001600160a01b03166111c96114bf565b6001600160a01b0316146111ef5760405162461bcd60e51b8152600401610aa790612f6b565b601055565b60006111fe611b68565b6001600160a01b031661120f6114bf565b6001600160a01b0316146112355760405162461bcd60e51b8152600401610aa790612f6b565b504790565b60006001600160a01b0382166112625760405162461bcd60e51b8152600401610aa790612e27565b506001600160a01b031660009081526003602052604090205490565b6060611288611b68565b6001600160a01b03166112996114bf565b6001600160a01b0316146112bf5760405162461bcd60e51b8152600401610aa790612f6b565b600b8054610ad29061332c565b6112d4611b68565b6001600160a01b03166112e56114bf565b6001600160a01b03161461130b5760405162461bcd60e51b8152600401610aa790612f6b565b6113156000611da9565b565b61131f611b68565b6001600160a01b03166113306114bf565b6001600160a01b0316146113565760405162461bcd60e51b8152600401610aa790612f6b565b601655565b60175481565b60125481565b61136f611b68565b6001600160a01b03166113806114bf565b6001600160a01b0316146113a65760405162461bcd60e51b8152600401610aa790612f6b565b601355565b60006017544210156113c05750600e54610b53565b50600f54610b53565b6113d1611b68565b6001600160a01b03166113e26114bf565b6001600160a01b0316146114085760405162461bcd60e51b8152600401610aa790612f6b565b600082116114285760405162461bcd60e51b8152600401610aa790613228565b6000611432610d91565b601054909150611442848361329e565b11156114605760405162461bcd60e51b8152600401610aa790612eba565b60015b8381116114b9576001600160a01b0383166000908152601b6020526040812080549161148e83613367565b909155506114a79050836114a2838561329e565b611dfb565b806114b181613367565b915050611463565b50505050565b600a546001600160a01b031690565b6114d6611b68565b6001600160a01b03166114e76114bf565b6001600160a01b03161461150d5760405162461bcd60e51b8152600401610aa790612f6b565b600e55565b606060018054610ad29061332c565b60195460ff16156115445760405162461bcd60e51b8152600401610aa790612fa0565b6016544210156115665760405162461bcd60e51b8152600401610aa790612b33565b80600081116115875760405162461bcd60e51b8152600401610aa790613228565b6000611591610d91565b336000908152601b60205260409020546018549192509042106115bd576115b88185611e15565b6115c8565b6115c8818584611e8f565b6010546115d5858461329e565b11156115f35760405162461bcd60e51b8152600401610aa790612eba565b60015b84811161163e57336000908152601b6020526040812080549161161883613367565b9091555061162c9050336114a2838661329e565b8061163681613367565b9150506115f6565b5050505050565b60115481565b611653611b68565b6001600160a01b0316826001600160a01b031614156116845760405162461bcd60e51b8152600401610aa790612cff565b8060056000611691611b68565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d5611b68565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170d9190612b15565b60405180910390a35050565b611721611b68565b6001600160a01b03166117326114bf565b6001600160a01b0316146117585760405162461bcd60e51b8152600401610aa790612f6b565b6019805461ff001916610100179055565b61177a611774611b68565b83611bf7565b6117965760405162461bcd60e51b8152600401610aa790613154565b6114b984848484611f71565b60155481565b600c8054610ba69061332c565b60606117c082611b6c565b6117dc5760405162461bcd60e51b8152600401610aa790613050565b601954610100900460ff1661187d57600d80546117f89061332c565b80601f01602080910402602001604051908101604052809291908181526020018280546118249061332c565b80156118715780601f1061184657610100808354040283529160200191611871565b820191906000526020600020905b81548152906001019060200180831161185457829003601f168201915b50505050509050610a63565b6000611887611fa4565b905060008151116118a757604051806020016040528060008152506118d5565b806118b184611fb3565b600c6040516020016118c5939291906129be565b6040516020818303038152906040525b915050610a63565b600e5481565b6118eb611b68565b6001600160a01b03166118fc6114bf565b6001600160a01b0316146119225760405162461bcd60e51b8152600401610aa790612f6b565b601555565b60105481565b611935611b68565b6001600160a01b03166119466114bf565b6001600160a01b03161461196c5760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600c9060208401906125a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60185481565b6119bb611b68565b6001600160a01b03166119cc6114bf565b6001600160a01b0316146119f25760405162461bcd60e51b8152600401610aa790612f6b565b60005b815181101561112a576001601a6000848481518110611a2457634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611a6081613367565b9150506119f5565b611a70611b68565b6001600160a01b0316611a816114bf565b6001600160a01b031614611aa75760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600d9060208401906125a1565b611ac2611b68565b6001600160a01b0316611ad36114bf565b6001600160a01b031614611af95760405162461bcd60e51b8152600401610aa790612f6b565b6001600160a01b038116611b1f5760405162461bcd60e51b8152600401610aa790612c07565b610f0b81611da9565b60006001600160e01b031982166380ac58cd60e01b1480611b5957506001600160e01b03198216635b5e139f60e01b145b80610a605750610a60826120ce565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bbe82611137565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c0282611b6c565b611c1e5760405162461bcd60e51b8152600401610aa790612d7e565b6000611c2983611137565b9050806001600160a01b0316846001600160a01b03161480611c645750836001600160a01b0316611c5984610b56565b6001600160a01b0316145b80611c745750611c74818561197f565b949350505050565b826001600160a01b0316611c8f82611137565b6001600160a01b031614611cb55760405162461bcd60e51b8152600401610aa790612fd0565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610aa790612cbb565b611ce68383836120e7565b611cf1600082611b89565b6001600160a01b0383166000908152600360205260408120805460019290611d1a9084906132e9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d4890849061329e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61112a828260405180602001604052806000815250612170565b601554611e22828461329e565b1115611e405760405162461bcd60e51b8152600401610aa790612c84565b80600f54611e4e91906132ca565b341015611e6d5760405162461bcd60e51b8152600401610aa7906130e0565b60135481111561112a5760405162461bcd60e51b8152600401610aa790612d36565b60006017544210611ea45750600f5480611eaa565b50600e54805b50611eb433610e45565b611ed05760405162461bcd60e51b8152600401610aa7906131f1565b601454611edd848661329e565b1115611efb5760405162461bcd60e51b8152600401610aa79061310c565b611f0583826132ca565b341015611f245760405162461bcd60e51b8152600401610aa7906130e0565b601254831115611f465760405162461bcd60e51b8152600401610aa790612d36565b601154611f53848461329e565b11156114b95760405162461bcd60e51b8152600401610aa790613019565b611f7c848484611c7c565b611f88848484846121a3565b6114b95760405162461bcd60e51b8152600401610aa790612bb5565b6060600b8054610ad29061332c565b606081611fd857506040805180820190915260018152600360fc1b6020820152610a63565b8160005b81156120025780611fec81613367565b9150611ffb9050600a836132b6565b9150611fdc565b60008167ffffffffffffffff81111561202b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612055576020820181803683370190505b5090505b8415611c745761206a6001836132e9565b9150612077600a86613382565b61208290603061329e565b60f81b8183815181106120a557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120c7600a866132b6565b9450612059565b6001600160e01b031981166301ffc9a760e01b14919050565b6120f2838383610cba565b6001600160a01b03831661210e57612109816122be565b612131565b816001600160a01b0316836001600160a01b031614612131576121318382612302565b6001600160a01b03821661214d576121488161239f565b610cba565b826001600160a01b0316826001600160a01b031614610cba57610cba8282612478565b61217a83836124bc565b61218760008484846121a3565b610cba5760405162461bcd60e51b8152600401610aa790612bb5565b60006121b7846001600160a01b031661259b565b156122b357836001600160a01b031663150b7a026121d3611b68565b8786866040518563ffffffff1660e01b81526004016121f59493929190612a94565b602060405180830381600087803b15801561220f57600080fd5b505af192505050801561223f575060408051601f3d908101601f1916820190925261223c918101906128f6565b60015b612299573d80801561226d576040519150601f19603f3d011682016040523d82523d6000602084013e612272565b606091505b5080516122915760405162461bcd60e51b8152600401610aa790612bb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c74565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161230f8461123a565b61231991906132e9565b60008381526007602052604090205490915080821461236c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123b1906001906132e9565b600083815260096020526040812054600880549394509092849081106123e757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061241657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061245c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124838361123a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124e25760405162461bcd60e51b8152600401610aa790612eea565b6124eb81611b6c565b156125085760405162461bcd60e51b8152600401610aa790612c4d565b612514600083836120e7565b6001600160a01b038216600090815260036020526040812080546001929061253d90849061329e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546125ad9061332c565b90600052602060002090601f0160209004810192826125cf5760008555612615565b82601f106125e857805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126155782518255916020019190600101906125fa565b50612621929150612625565b5090565b5b808211156126215760008155600101612626565b600067ffffffffffffffff831115612654576126546133c2565b612667601f8401601f1916602001613268565b905082815283838301111561267b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a6357600080fd5b80358015158114610a6357600080fd5b6000602082840312156126ca578081fd5b6126d382612692565b9392505050565b600080604083850312156126ec578081fd5b6126f583612692565b915061270360208401612692565b90509250929050565b600080600060608486031215612720578081fd5b61272984612692565b925061273760208501612692565b9150604084013590509250925092565b6000806000806080858703121561275c578081fd5b61276585612692565b935061277360208601612692565b925060408501359150606085013567ffffffffffffffff811115612795578182fd5b8501601f810187136127a5578182fd5b6127b48782356020840161263a565b91505092959194509250565b600080604083850312156127d2578182fd5b6127db83612692565b9150612703602084016126a9565b600080604083850312156127fb578182fd5b61280483612692565b946020939093013593505050565b60006020808385031215612824578182fd5b823567ffffffffffffffff8082111561283b578384fd5b818501915085601f83011261284e578384fd5b813581811115612860576128606133c2565b8381029150612870848301613268565b8181528481019084860184860187018a101561288a578788fd5b8795505b838610156128b35761289f81612692565b83526001959095019491860191860161288e565b5098975050505050505050565b6000602082840312156128d1578081fd5b6126d3826126a9565b6000602082840312156128eb578081fd5b81356126d3816133d8565b600060208284031215612907578081fd5b81516126d3816133d8565b600060208284031215612923578081fd5b813567ffffffffffffffff811115612939578182fd5b8201601f81018413612949578182fd5b611c748482356020840161263a565b600060208284031215612969578081fd5b5035919050565b60008060408385031215612982578182fd5b8235915061270360208401612692565b600081518084526129aa816020860160208601613300565b601f01601f19169290920160200192915050565b6000845160206129d18285838a01613300565b8551918401916129e48184848a01613300565b8554920191839060028104600180831680612a0057607f831692505b858310811415612a1e57634e487b7160e01b88526022600452602488fd5b808015612a325760018114612a4357612a6f565b60ff19851688528388019550612a6f565b612a4c8b613292565b895b85811015612a675781548a820152908401908801612a4e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ac790830184612992565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b0957835183529284019291840191600101612aed565b50909695505050505050565b901515815260200190565b6000602082526126d36020830184612992565b60208082526018908201527f53616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601e908201527f6d6178204e46542070726573616c65206c696d69742065786365656465640000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526028908201527f6d6178204e465420706572206164647265737320657863656564656420666f726040820152672070726573616c6560c01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561328a5761328a6133c2565b604052919050565b60009081526020902090565b600082198211156132b1576132b1613396565b500190565b6000826132c5576132c56133ac565b500490565b60008160001904831182151516156132e4576132e4613396565b500290565b6000828210156132fb576132fb613396565b500390565b60005b8381101561331b578181015183820152602001613303565b838111156114b95750506000910152565b60028104600182168061334057607f821691505b6020821081141561336157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561337b5761337b613396565b5060010190565b600082613391576133916133ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0b57600080fdfea2646970667358221220bf731c7f2765d44d2a45810dcc7686935591b66d022dde8e4b686b999bd8b8d564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008426c75576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008426c75576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53644b5231526b315a4e415a704c4a5a37576e59326850535a704c5659597a77316a38594c6f314476546d312f00000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced3873146109c6578063edec5f27146109db578063f2c4ce1e146109fb578063f2fde38b14610a1b57610397565b8063d0eb26b014610951578063d5abeb0114610971578063da3ef23f14610986578063e985e9c5146109a657610397565b8063ba7d2c76116100dc578063ba7d2c76146108f2578063c668286214610907578063c87b56dd1461091c578063cc9ff9c61461093c57610397565b8063a22cb4651461089d578063a475b5dd146108bd578063b88d4fde146108d257610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461084057806395d89b4114610860578063a0712d6814610875578063a18116f11461088857610397565b80637f00c7a6146107d6578063831e60de146107f657806383a076be1461080b5780638da5cb5b1461082b57610397565b8063715018a6116101b6578063715018a614610777578063743c7f6b1461078c5780637967a50a146107ac5780637effc032146107c157610397565b80636f9fb98a1461072d57806370a0823114610742578063714c53981461076257610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106b85780636352211e146106cd578063669736c0146106ed5780636f8b44b01461070d57610397565b806344a0d68a146106435780634f6ccce714610663578063518302271461068357806355f804b31461069857610397565b80633ccfd60b1161029b5780633ccfd60b146105ce57806342842e0e146105d657806342f0ca0d146105f6578063438b63001461061657610397565b80632e09282e146105795780632f745c591461058e5780633af32abf146105ae57610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461050f5780631985cc651461052f578063239c70ae1461054457806323b872dd1461055957610397565b80630a50716b146104985780630e54a883146104b857806313faede6146104d857806318160ddd146104fa57610397565b8063081812fc11610375578063081812fc14610416578063081c8c4414610443578063095ea7b3146104585780630a403f041461047857610397565b806301ffc9a71461039c57806302329a29146103d257806306fdde03146103f4575b600080fd5b3480156103a857600080fd5b506103bc6103b73660046128da565b610a3b565b6040516103c99190612b15565b60405180910390f35b3480156103de57600080fd5b506103f26103ed3660046128c0565b610a68565b005b34801561040057600080fd5b50610409610ac3565b6040516103c99190612b20565b34801561042257600080fd5b50610436610431366004612958565b610b56565b6040516103c99190612a80565b34801561044f57600080fd5b50610409610b99565b34801561046457600080fd5b506103f26104733660046127e9565b610c27565b34801561048457600080fd5b506103f2610493366004612958565b610cbf565b3480156104a457600080fd5b506103f26104b3366004612958565b610d03565b3480156104c457600080fd5b506103f26104d3366004612958565b610d47565b3480156104e457600080fd5b506104ed610d8b565b6040516103c9919061325f565b34801561050657600080fd5b506104ed610d91565b34801561051b57600080fd5b506104ed61052a3660046126b9565b610d97565b34801561053b57600080fd5b506104ed610da9565b34801561055057600080fd5b506104ed610daf565b34801561056557600080fd5b506103f261057436600461270c565b610db5565b34801561058557600080fd5b506104ed610ded565b34801561059a57600080fd5b506104ed6105a93660046127e9565b610df3565b3480156105ba57600080fd5b506103bc6105c93660046126b9565b610e45565b6103f2610e63565b3480156105e257600080fd5b506103f26105f136600461270c565b610f0e565b34801561060257600080fd5b506103f2610611366004612958565b610f29565b34801561062257600080fd5b506106366106313660046126b9565b610f6d565b6040516103c99190612ad1565b34801561064f57600080fd5b506103f261065e366004612958565b61102b565b34801561066f57600080fd5b506104ed61067e366004612958565b61106f565b34801561068f57600080fd5b506103bc6110ca565b3480156106a457600080fd5b506103f26106b3366004612912565b6110d8565b3480156106c457600080fd5b506103bc61112e565b3480156106d957600080fd5b506104366106e8366004612958565b611137565b3480156106f957600080fd5b506103f2610708366004612958565b61116c565b34801561071957600080fd5b506103f2610728366004612958565b6111b0565b34801561073957600080fd5b506104ed6111f4565b34801561074e57600080fd5b506104ed61075d3660046126b9565b61123a565b34801561076e57600080fd5b5061040961127e565b34801561078357600080fd5b506103f26112cc565b34801561079857600080fd5b506103f26107a7366004612958565b611317565b3480156107b857600080fd5b506104ed61135b565b3480156107cd57600080fd5b506104ed611361565b3480156107e257600080fd5b506103f26107f1366004612958565b611367565b34801561080257600080fd5b506104ed6113ab565b34801561081757600080fd5b506103f2610826366004612970565b6113c9565b34801561083757600080fd5b506104366114bf565b34801561084c57600080fd5b506103f261085b366004612958565b6114ce565b34801561086c57600080fd5b50610409611512565b6103f2610883366004612958565b611521565b34801561089457600080fd5b506104ed611645565b3480156108a957600080fd5b506103f26108b83660046127c0565b61164b565b3480156108c957600080fd5b506103f2611719565b3480156108de57600080fd5b506103f26108ed366004612747565b611769565b3480156108fe57600080fd5b506104ed6117a2565b34801561091357600080fd5b506104096117a8565b34801561092857600080fd5b50610409610937366004612958565b6117b5565b34801561094857600080fd5b506104ed6118dd565b34801561095d57600080fd5b506103f261096c366004612958565b6118e3565b34801561097d57600080fd5b506104ed611927565b34801561099257600080fd5b506103f26109a1366004612912565b61192d565b3480156109b257600080fd5b506103bc6109c13660046126da565b61197f565b3480156109d257600080fd5b506104ed6119ad565b3480156109e757600080fd5b506103f26109f6366004612812565b6119b3565b348015610a0757600080fd5b506103f2610a16366004612912565b611a68565b348015610a2757600080fd5b506103f2610a363660046126b9565b611aba565b60006001600160e01b0319821663780e9d6360e01b1480610a605750610a6082611b28565b90505b919050565b610a70611b68565b6001600160a01b0316610a816114bf565b6001600160a01b031614610ab05760405162461bcd60e51b8152600401610aa790612f6b565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610ad29061332c565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe9061332c565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090505b90565b6000610b6182611b6c565b610b7d5760405162461bcd60e51b8152600401610aa790612f1f565b506000908152600460205260409020546001600160a01b031690565b600d8054610ba69061332c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd29061332c565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b505050505081565b6000610c3282611137565b9050806001600160a01b0316836001600160a01b03161415610c665760405162461bcd60e51b8152600401610aa79061309f565b806001600160a01b0316610c78611b68565b6001600160a01b03161480610c945750610c94816109c1611b68565b610cb05760405162461bcd60e51b8152600401610aa790612dca565b610cba8383611b89565b505050565b610cc7611b68565b6001600160a01b0316610cd86114bf565b6001600160a01b031614610cfe5760405162461bcd60e51b8152600401610aa790612f6b565b601155565b610d0b611b68565b6001600160a01b0316610d1c6114bf565b6001600160a01b031614610d425760405162461bcd60e51b8152600401610aa790612f6b565b601455565b610d4f611b68565b6001600160a01b0316610d606114bf565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610aa790612f6b565b601855565b600f5481565b60085490565b601b6020526000908152604090205481565b60165481565b60135481565b610dc6610dc0611b68565b82611bf7565b610de25760405162461bcd60e51b8152600401610aa790613154565b610cba838383611c7c565b60145481565b6000610dfe8361123a565b8210610e1c5760405162461bcd60e51b8152600401610aa790612b6a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03166000908152601a602052604090205460ff1690565b610e6b611b68565b6001600160a01b0316610e7c6114bf565b6001600160a01b031614610ea25760405162461bcd60e51b8152600401610aa790612f6b565b6000336001600160a01b031647604051610ebb90610b53565b60006040518083038185875af1925050503d8060008114610ef8576040519150601f19603f3d011682016040523d82523d6000602084013e610efd565b606091505b5050905080610f0b57600080fd5b50565b610cba83838360405180602001604052806000815250611769565b610f31611b68565b6001600160a01b0316610f426114bf565b6001600160a01b031614610f685760405162461bcd60e51b8152600401610aa790612f6b565b601755565b60606000610f7a8361123a565b905060008167ffffffffffffffff811115610fa557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fce578160200160208202803683370190505b50905060005b8281101561102357610fe68582610df3565b82828151811061100657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061101b81613367565b915050610fd4565b509392505050565b611033611b68565b6001600160a01b03166110446114bf565b6001600160a01b03161461106a5760405162461bcd60e51b8152600401610aa790612f6b565b600f55565b6000611079610d91565b82106110975760405162461bcd60e51b8152600401610aa7906131a5565b600882815481106110b857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601954610100900460ff1681565b6110e0611b68565b6001600160a01b03166110f16114bf565b6001600160a01b0316146111175760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600b9060208401906125a1565b5050565b60195460ff1681565b6000818152600260205260408120546001600160a01b031680610a605760405162461bcd60e51b8152600401610aa790612e71565b611174611b68565b6001600160a01b03166111856114bf565b6001600160a01b0316146111ab5760405162461bcd60e51b8152600401610aa790612f6b565b601255565b6111b8611b68565b6001600160a01b03166111c96114bf565b6001600160a01b0316146111ef5760405162461bcd60e51b8152600401610aa790612f6b565b601055565b60006111fe611b68565b6001600160a01b031661120f6114bf565b6001600160a01b0316146112355760405162461bcd60e51b8152600401610aa790612f6b565b504790565b60006001600160a01b0382166112625760405162461bcd60e51b8152600401610aa790612e27565b506001600160a01b031660009081526003602052604090205490565b6060611288611b68565b6001600160a01b03166112996114bf565b6001600160a01b0316146112bf5760405162461bcd60e51b8152600401610aa790612f6b565b600b8054610ad29061332c565b6112d4611b68565b6001600160a01b03166112e56114bf565b6001600160a01b03161461130b5760405162461bcd60e51b8152600401610aa790612f6b565b6113156000611da9565b565b61131f611b68565b6001600160a01b03166113306114bf565b6001600160a01b0316146113565760405162461bcd60e51b8152600401610aa790612f6b565b601655565b60175481565b60125481565b61136f611b68565b6001600160a01b03166113806114bf565b6001600160a01b0316146113a65760405162461bcd60e51b8152600401610aa790612f6b565b601355565b60006017544210156113c05750600e54610b53565b50600f54610b53565b6113d1611b68565b6001600160a01b03166113e26114bf565b6001600160a01b0316146114085760405162461bcd60e51b8152600401610aa790612f6b565b600082116114285760405162461bcd60e51b8152600401610aa790613228565b6000611432610d91565b601054909150611442848361329e565b11156114605760405162461bcd60e51b8152600401610aa790612eba565b60015b8381116114b9576001600160a01b0383166000908152601b6020526040812080549161148e83613367565b909155506114a79050836114a2838561329e565b611dfb565b806114b181613367565b915050611463565b50505050565b600a546001600160a01b031690565b6114d6611b68565b6001600160a01b03166114e76114bf565b6001600160a01b03161461150d5760405162461bcd60e51b8152600401610aa790612f6b565b600e55565b606060018054610ad29061332c565b60195460ff16156115445760405162461bcd60e51b8152600401610aa790612fa0565b6016544210156115665760405162461bcd60e51b8152600401610aa790612b33565b80600081116115875760405162461bcd60e51b8152600401610aa790613228565b6000611591610d91565b336000908152601b60205260409020546018549192509042106115bd576115b88185611e15565b6115c8565b6115c8818584611e8f565b6010546115d5858461329e565b11156115f35760405162461bcd60e51b8152600401610aa790612eba565b60015b84811161163e57336000908152601b6020526040812080549161161883613367565b9091555061162c9050336114a2838661329e565b8061163681613367565b9150506115f6565b5050505050565b60115481565b611653611b68565b6001600160a01b0316826001600160a01b031614156116845760405162461bcd60e51b8152600401610aa790612cff565b8060056000611691611b68565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d5611b68565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170d9190612b15565b60405180910390a35050565b611721611b68565b6001600160a01b03166117326114bf565b6001600160a01b0316146117585760405162461bcd60e51b8152600401610aa790612f6b565b6019805461ff001916610100179055565b61177a611774611b68565b83611bf7565b6117965760405162461bcd60e51b8152600401610aa790613154565b6114b984848484611f71565b60155481565b600c8054610ba69061332c565b60606117c082611b6c565b6117dc5760405162461bcd60e51b8152600401610aa790613050565b601954610100900460ff1661187d57600d80546117f89061332c565b80601f01602080910402602001604051908101604052809291908181526020018280546118249061332c565b80156118715780601f1061184657610100808354040283529160200191611871565b820191906000526020600020905b81548152906001019060200180831161185457829003601f168201915b50505050509050610a63565b6000611887611fa4565b905060008151116118a757604051806020016040528060008152506118d5565b806118b184611fb3565b600c6040516020016118c5939291906129be565b6040516020818303038152906040525b915050610a63565b600e5481565b6118eb611b68565b6001600160a01b03166118fc6114bf565b6001600160a01b0316146119225760405162461bcd60e51b8152600401610aa790612f6b565b601555565b60105481565b611935611b68565b6001600160a01b03166119466114bf565b6001600160a01b03161461196c5760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600c9060208401906125a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60185481565b6119bb611b68565b6001600160a01b03166119cc6114bf565b6001600160a01b0316146119f25760405162461bcd60e51b8152600401610aa790612f6b565b60005b815181101561112a576001601a6000848481518110611a2457634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611a6081613367565b9150506119f5565b611a70611b68565b6001600160a01b0316611a816114bf565b6001600160a01b031614611aa75760405162461bcd60e51b8152600401610aa790612f6b565b805161112a90600d9060208401906125a1565b611ac2611b68565b6001600160a01b0316611ad36114bf565b6001600160a01b031614611af95760405162461bcd60e51b8152600401610aa790612f6b565b6001600160a01b038116611b1f5760405162461bcd60e51b8152600401610aa790612c07565b610f0b81611da9565b60006001600160e01b031982166380ac58cd60e01b1480611b5957506001600160e01b03198216635b5e139f60e01b145b80610a605750610a60826120ce565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bbe82611137565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c0282611b6c565b611c1e5760405162461bcd60e51b8152600401610aa790612d7e565b6000611c2983611137565b9050806001600160a01b0316846001600160a01b03161480611c645750836001600160a01b0316611c5984610b56565b6001600160a01b0316145b80611c745750611c74818561197f565b949350505050565b826001600160a01b0316611c8f82611137565b6001600160a01b031614611cb55760405162461bcd60e51b8152600401610aa790612fd0565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610aa790612cbb565b611ce68383836120e7565b611cf1600082611b89565b6001600160a01b0383166000908152600360205260408120805460019290611d1a9084906132e9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d4890849061329e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61112a828260405180602001604052806000815250612170565b601554611e22828461329e565b1115611e405760405162461bcd60e51b8152600401610aa790612c84565b80600f54611e4e91906132ca565b341015611e6d5760405162461bcd60e51b8152600401610aa7906130e0565b60135481111561112a5760405162461bcd60e51b8152600401610aa790612d36565b60006017544210611ea45750600f5480611eaa565b50600e54805b50611eb433610e45565b611ed05760405162461bcd60e51b8152600401610aa7906131f1565b601454611edd848661329e565b1115611efb5760405162461bcd60e51b8152600401610aa79061310c565b611f0583826132ca565b341015611f245760405162461bcd60e51b8152600401610aa7906130e0565b601254831115611f465760405162461bcd60e51b8152600401610aa790612d36565b601154611f53848461329e565b11156114b95760405162461bcd60e51b8152600401610aa790613019565b611f7c848484611c7c565b611f88848484846121a3565b6114b95760405162461bcd60e51b8152600401610aa790612bb5565b6060600b8054610ad29061332c565b606081611fd857506040805180820190915260018152600360fc1b6020820152610a63565b8160005b81156120025780611fec81613367565b9150611ffb9050600a836132b6565b9150611fdc565b60008167ffffffffffffffff81111561202b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612055576020820181803683370190505b5090505b8415611c745761206a6001836132e9565b9150612077600a86613382565b61208290603061329e565b60f81b8183815181106120a557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120c7600a866132b6565b9450612059565b6001600160e01b031981166301ffc9a760e01b14919050565b6120f2838383610cba565b6001600160a01b03831661210e57612109816122be565b612131565b816001600160a01b0316836001600160a01b031614612131576121318382612302565b6001600160a01b03821661214d576121488161239f565b610cba565b826001600160a01b0316826001600160a01b031614610cba57610cba8282612478565b61217a83836124bc565b61218760008484846121a3565b610cba5760405162461bcd60e51b8152600401610aa790612bb5565b60006121b7846001600160a01b031661259b565b156122b357836001600160a01b031663150b7a026121d3611b68565b8786866040518563ffffffff1660e01b81526004016121f59493929190612a94565b602060405180830381600087803b15801561220f57600080fd5b505af192505050801561223f575060408051601f3d908101601f1916820190925261223c918101906128f6565b60015b612299573d80801561226d576040519150601f19603f3d011682016040523d82523d6000602084013e612272565b606091505b5080516122915760405162461bcd60e51b8152600401610aa790612bb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c74565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161230f8461123a565b61231991906132e9565b60008381526007602052604090205490915080821461236c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123b1906001906132e9565b600083815260096020526040812054600880549394509092849081106123e757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061241657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061245c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124838361123a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124e25760405162461bcd60e51b8152600401610aa790612eea565b6124eb81611b6c565b156125085760405162461bcd60e51b8152600401610aa790612c4d565b612514600083836120e7565b6001600160a01b038216600090815260036020526040812080546001929061253d90849061329e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546125ad9061332c565b90600052602060002090601f0160209004810192826125cf5760008555612615565b82601f106125e857805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126155782518255916020019190600101906125fa565b50612621929150612625565b5090565b5b808211156126215760008155600101612626565b600067ffffffffffffffff831115612654576126546133c2565b612667601f8401601f1916602001613268565b905082815283838301111561267b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a6357600080fd5b80358015158114610a6357600080fd5b6000602082840312156126ca578081fd5b6126d382612692565b9392505050565b600080604083850312156126ec578081fd5b6126f583612692565b915061270360208401612692565b90509250929050565b600080600060608486031215612720578081fd5b61272984612692565b925061273760208501612692565b9150604084013590509250925092565b6000806000806080858703121561275c578081fd5b61276585612692565b935061277360208601612692565b925060408501359150606085013567ffffffffffffffff811115612795578182fd5b8501601f810187136127a5578182fd5b6127b48782356020840161263a565b91505092959194509250565b600080604083850312156127d2578182fd5b6127db83612692565b9150612703602084016126a9565b600080604083850312156127fb578182fd5b61280483612692565b946020939093013593505050565b60006020808385031215612824578182fd5b823567ffffffffffffffff8082111561283b578384fd5b818501915085601f83011261284e578384fd5b813581811115612860576128606133c2565b8381029150612870848301613268565b8181528481019084860184860187018a101561288a578788fd5b8795505b838610156128b35761289f81612692565b83526001959095019491860191860161288e565b5098975050505050505050565b6000602082840312156128d1578081fd5b6126d3826126a9565b6000602082840312156128eb578081fd5b81356126d3816133d8565b600060208284031215612907578081fd5b81516126d3816133d8565b600060208284031215612923578081fd5b813567ffffffffffffffff811115612939578182fd5b8201601f81018413612949578182fd5b611c748482356020840161263a565b600060208284031215612969578081fd5b5035919050565b60008060408385031215612982578182fd5b8235915061270360208401612692565b600081518084526129aa816020860160208601613300565b601f01601f19169290920160200192915050565b6000845160206129d18285838a01613300565b8551918401916129e48184848a01613300565b8554920191839060028104600180831680612a0057607f831692505b858310811415612a1e57634e487b7160e01b88526022600452602488fd5b808015612a325760018114612a4357612a6f565b60ff19851688528388019550612a6f565b612a4c8b613292565b895b85811015612a675781548a820152908401908801612a4e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ac790830184612992565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b0957835183529284019291840191600101612aed565b50909695505050505050565b901515815260200190565b6000602082526126d36020830184612992565b60208082526018908201527f53616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601e908201527f6d6178204e46542070726573616c65206c696d69742065786365656465640000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526028908201527f6d6178204e465420706572206164647265737320657863656564656420666f726040820152672070726573616c6560c01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561328a5761328a6133c2565b604052919050565b60009081526020902090565b600082198211156132b1576132b1613396565b500190565b6000826132c5576132c56133ac565b500490565b60008160001904831182151516156132e4576132e4613396565b500290565b6000828210156132fb576132fb613396565b500390565b60005b8381101561331b578181015183820152602001613303565b838111156114b95750506000910152565b60028104600182168061334057607f821691505b6020821081141561336157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561337b5761337b613396565b5060010190565b600082613391576133916133ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0b57600080fdfea2646970667358221220bf731c7f2765d44d2a45810dcc7686935591b66d022dde8e4b686b999bd8b8d564736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008426c75576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008426c75576f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53644b5231526b315a4e415a704c4a5a37576e59326850535a704c5659597a77316a38594c6f314476546d312f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BluWorld
Arg [1] : _symbol (string): BluWorld
Arg [2] : _initNotRevealedUri (string): ipfs://QmSdKR1Rk1ZNAZpLJZ7WnY2hPSZpLVYYzw1j8YLo1DvTm1/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 426c75576f726c64000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 426c75576f726c64000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d53644b5231526b315a4e415a704c4a5a37576e59326850
Arg [9] : 535a704c5659597a77316a38594c6f314476546d312f00000000000000000000


Deployed Bytecode Sourcemap

43220:7613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34720:224;;;;;;;;;;-1:-1:-1;34720:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48627:79;;;;;;;;;;-1:-1:-1;48627:79:0;;;;;:::i;:::-;;:::i;:::-;;21621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23180:221::-;;;;;;;;;;-1:-1:-1;23180:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43379:28::-;;;;;;;;;;;;;:::i;22703:411::-;;;;;;;;;;-1:-1:-1;22703:411:0;;;;;:::i;:::-;;:::i;49830:134::-;;;;;;;;;;-1:-1:-1;49830:134:0;;;;;:::i;:::-;;:::i;48718:124::-;;;;;;;;;;-1:-1:-1;48718:124:0;;;;;:::i;:::-;;:::i;50324:120::-;;;;;;;;;;-1:-1:-1;50324:120:0;;;;;:::i;:::-;;:::i;43461:33::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35360:113::-;;;;;;;;;;;;;:::i;44028:55::-;;;;;;;;;;-1:-1:-1;44028:55:0;;;;;:::i;:::-;;:::i;43764:39::-;;;;;;;;;;;;;:::i;43627:33::-;;;;;;;;;;;;;:::i;24070:339::-;;;;;;;;;;-1:-1:-1;24070:339:0;;;;;:::i;:::-;;:::i;43667:44::-;;;;;;;;;;;;;:::i;35028:256::-;;;;;;;;;;-1:-1:-1;35028:256:0;;;;;:::i;:::-;;:::i;47089:118::-;;;;;;;;;;-1:-1:-1;47089:118:0;;;;;:::i;:::-;;:::i;50662:168::-;;;:::i;24480:185::-;;;;;;;;;;-1:-1:-1;24480:185:0;;;;;:::i;:::-;;:::i;50196:120::-;;;;;;;;;;-1:-1:-1;50196:120:0;;;;;:::i;:::-;;:::i;47215:358::-;;;;;;;;;;-1:-1:-1;47215:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49076:86::-;;;;;;;;;;-1:-1:-1;49076:86:0;;;;;:::i;:::-;;:::i;35550:233::-;;;;;;;;;;-1:-1:-1;35550:233:0;;;;;:::i;:::-;;:::i;43941:28::-;;;;;;;;;;;;;:::i;49448:104::-;;;;;;;;;;-1:-1:-1;49448:104:0;;;;;:::i;:::-;;:::i;43908:26::-;;;;;;;;;;;;;:::i;21315:239::-;;;;;;;;;;-1:-1:-1;21315:239:0;;;;;:::i;:::-;;:::i;49174:136::-;;;;;;;;;;-1:-1:-1;49174:136:0;;;;;:::i;:::-;;:::i;49972:100::-;;;;;;;;;;-1:-1:-1;49972:100:0;;;;;:::i;:::-;;:::i;48399:117::-;;;;;;;;;;;;;:::i;21045:208::-;;;;;;;;;;-1:-1:-1;21045:208:0;;;;;:::i;:::-;;:::i;48290:101::-;;;;;;;;;;;;;:::i;42517:94::-;;;;;;;;;;;;;:::i;50080:108::-;;;;;;;;;;-1:-1:-1;50080:108:0;;;;;:::i;:::-;;:::i;43810:42::-;;;;;;;;;;;;;:::i;43581:39::-;;;;;;;;;;;;;:::i;49318:122::-;;;;;;;;;;-1:-1:-1;49318:122:0;;;;;:::i;:::-;;:::i;48057:201::-;;;;;;;;;;;;;:::i;46628:433::-;;;;;;;;;;-1:-1:-1;46628:433:0;;;;;:::i;:::-;;:::i;41866:87::-;;;;;;;;;;;;;:::i;48968:100::-;;;;;;;;;;-1:-1:-1;48968:100:0;;;;;:::i;:::-;;:::i;21790:104::-;;;;;;;;;;;;;:::i;45912:704::-;;;;;;:::i;:::-;;:::i;43539:35::-;;;;;;;;;;;;;:::i;23473:295::-;;;;;;;;;;-1:-1:-1;23473:295:0;;;;;:::i;:::-;;:::i;48550:69::-;;;;;;;;;;;;;:::i;24736:328::-;;;;;;;;;;-1:-1:-1;24736:328:0;;;;;:::i;:::-;;:::i;43718:39::-;;;;;;;;;;;;;:::i;43335:37::-;;;;;;;;;;;;;:::i;47581:468::-;;;;;;;;;;-1:-1:-1;47581:468:0;;;;;:::i;:::-;;:::i;43414:40::-;;;;;;;;;;;;;:::i;48850:110::-;;;;;;;;;;-1:-1:-1;48850:110:0;;;;;:::i;:::-;;:::i;43501:31::-;;;;;;;;;;;;;:::i;49560:128::-;;;;;;;;;;-1:-1:-1;49560:128:0;;;;;:::i;:::-;;:::i;23839:164::-;;;;;;;;;;-1:-1:-1;23839:164:0;;;;;:::i;:::-;;:::i;43859:42::-;;;;;;;;;;;;;:::i;50452:202::-;;;;;;;;;;-1:-1:-1;50452:202:0;;;;;:::i;:::-;;:::i;49696:126::-;;;;;;;;;;-1:-1:-1;49696:126:0;;;;;:::i;:::-;;:::i;42766:192::-;;;;;;;;;;-1:-1:-1;42766:192:0;;;;;:::i;:::-;;:::i;34720:224::-;34822:4;-1:-1:-1;;;;;;34846:50:0;;-1:-1:-1;;;34846:50:0;;:90;;;34900:36;34924:11;34900:23;:36::i;:::-;34839:97;;34720:224;;;;:::o;48627:79::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;;;;;;;;;48683:6:::1;:15:::0;;-1:-1:-1;;48683:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48627:79::o;21621:100::-;21675:13;21708:5;21701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21621:100;;:::o;23180:221::-;23256:7;23284:16;23292:7;23284;:16::i;:::-;23276:73;;;;-1:-1:-1;;;23276:73:0;;;;;;;:::i;:::-;-1:-1:-1;23369:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23369:24:0;;23180:221::o;43379:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22703:411::-;22784:13;22800:23;22815:7;22800:14;:23::i;:::-;22784:39;;22848:5;-1:-1:-1;;;;;22842:11:0;:2;-1:-1:-1;;;;;22842:11:0;;;22834:57;;;;-1:-1:-1;;;22834:57:0;;;;;;;:::i;:::-;22942:5;-1:-1:-1;;;;;22926:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22926:21:0;;:62;;;;22951:37;22968:5;22975:12;:10;:12::i;22951:37::-;22904:168;;;;-1:-1:-1;;;22904:168:0;;;;;;;:::i;:::-;23085:21;23094:2;23098:7;23085:8;:21::i;:::-;22703:411;;;:::o;49830:134::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49917:16:::1;:39:::0;49830:134::o;48718:124::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;48800:25:::1;:34:::0;48718:124::o;50324:120::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50404:14:::1;:32:::0;50324:120::o;43461:33::-;;;;:::o;35360:113::-;35448:10;:17;35360:113;:::o;44028:55::-;;;;;;;;;;;;;:::o;43764:39::-;;;;:::o;43627:33::-;;;;:::o;24070:339::-;24265:41;24284:12;:10;:12::i;:::-;24298:7;24265:18;:41::i;:::-;24257:103;;;;-1:-1:-1;;;24257:103:0;;;;;;;:::i;:::-;24373:28;24383:4;24389:2;24393:7;24373:9;:28::i;43667:44::-;;;;:::o;35028:256::-;35125:7;35161:23;35178:5;35161:16;:23::i;:::-;35153:5;:31;35145:87;;;;-1:-1:-1;;;35145:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35250:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35028:256::o;47089:118::-;-1:-1:-1;;;;;47172:27:0;47148:4;47172:27;;;:20;:27;;;;;;;;;47089:118::o;50662:168::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50719:12:::1;50745:10;-1:-1:-1::0;;;;;50737:24:0::1;50769:21;50737:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50718:77;;;50814:7;50806:16;;;::::0;::::1;;42157:1;50662:168::o:0;24480:185::-;24618:39;24635:4;24641:2;24645:7;24618:39;;;;;;;;;;;;:16;:39::i;50196:120::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50276:14:::1;:32:::0;50196:120::o;47215:358::-;47275:16;47304:23;47330:17;47340:6;47330:9;:17::i;:::-;47304:43;;47358:25;47400:15;47386:30;;;;;;-1:-1:-1;;;47386:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47386:30:0;;47358:58;;47432:9;47427:113;47447:15;47443:1;:19;47427:113;;;47498:30;47518:6;47526:1;47498:19;:30::i;:::-;47484:8;47493:1;47484:11;;;;;;-1:-1:-1;;;47484:11:0;;;;;;;;;;;;;;;;;;:44;47464:3;;;;:::i;:::-;;;;47427:113;;;-1:-1:-1;47557:8:0;47215:358;-1:-1:-1;;;47215:358:0:o;49076:86::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49139:4:::1;:15:::0;49076:86::o;35550:233::-;35625:7;35661:30;:28;:30::i;:::-;35653:5;:38;35645:95;;;;-1:-1:-1;;;35645:95:0;;;;;;;:::i;:::-;35758:10;35769:5;35758:17;;;;;;-1:-1:-1;;;35758:17:0;;;;;;;;;;;;;;;;;35751:24;;35550:233;;;:::o;43941:28::-;;;;;;;;;:::o;49448:104::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49523:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49448:104:::0;:::o;43908:26::-;;;;;;:::o;21315:239::-;21387:7;21423:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21423:16:0;21458:19;21450:73;;;;-1:-1:-1;;;21450:73:0;;;;;;;:::i;49174:136::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49262:20:::1;:40:::0;49174:136::o;49972:100::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50042:9:::1;:22:::0;49972:100::o;48399:117::-;48460:7;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;-1:-1:-1;48487:21:0::1;48399:117:::0;:::o;21045:208::-;21117:7;-1:-1:-1;;;;;21145:19:0;;21137:74;;;;-1:-1:-1;;;21137:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21229:16:0;;;;;:9;:16;;;;;;;21045:208::o;48290:101::-;48343:13;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;48376:7:::1;48369:14;;;;;:::i;42517:94::-:0;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;42582:21:::1;42600:1;42582:9;:21::i;:::-;42517:94::o:0;50080:108::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50154:11:::1;:26:::0;50080:108::o;43810:42::-;;;;:::o;43581:39::-;;;;:::o;49318:122::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49399:13:::1;:33:::0;49318:122::o;48057:201::-;48104:7;48146:14;;48128:15;:32;48124:127;;;-1:-1:-1;48184:11:0;;48177:18;;48124:127;-1:-1:-1;48235:4:0;;48228:11;;46628:433;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;46734:1:::1;46720:11;:15;46712:55;;;;-1:-1:-1::0;;;46712:55:0::1;;;;;;;:::i;:::-;46778:14;46795:13;:11;:13::i;:::-;46851:9;::::0;46778:30;;-1:-1:-1;46827:20:0::1;46836:11:::0;46778:30;46827:20:::1;:::i;:::-;:33;;46819:68;;;;-1:-1:-1::0;;;46819:68:0::1;;;;;;;:::i;:::-;46917:1;46900:154;46925:11;46920:1;:16;46900:154;;-1:-1:-1::0;;;;;46958:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;47008:34:0::1;::::0;-1:-1:-1;47018:11:0;47031:10:::1;47040:1:::0;47031:6;:10:::1;:::i;:::-;47008:9;:34::i;:::-;46938:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46900:154;;;;42157:1;46628:433:::0;;:::o;41866:87::-;41939:6;;-1:-1:-1;;;;;41939:6:0;41866:87;:::o;48968:100::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49038:11:::1;:22:::0;48968:100::o;21790:104::-;21846:13;21879:7;21872:14;;;;;:::i;45912:704::-;44332:6;;;;44331:7;44323:42;;;;-1:-1:-1;;;44323:42:0;;;;;;;:::i;:::-;44453:11:::1;;44434:15;:30;;44426:67;;;;-1:-1:-1::0;;;44426:67:0::1;;;;;;;:::i;:::-;46002:11:::2;44602:1;44588:11;:15;44580:55;;;;-1:-1:-1::0;;;44580:55:0::2;;;;;;;:::i;:::-;46026:14:::3;46043:13;:11;:13::i;:::-;46115:10;46067:24;46094:32:::0;;;:20:::3;:32;::::0;;;;;46234:14:::3;::::0;46026:30;;-1:-1:-1;46094:32:0;46216:15:::3;:32;:147;;46311:52;46333:16;46351:11;46311:21;:52::i;:::-;46216:147;;;46251:57;46270:16;46288:11;46301:6;46251:18;:57::i;:::-;46408:9;::::0;46384:20:::3;46393:11:::0;46384:6;:20:::3;:::i;:::-;:33;;46376:68;;;;-1:-1:-1::0;;;46376:68:0::3;;;;;;;:::i;:::-;46474:1;46457:152;46482:11;46477:1;:16;46457:152;;46536:10;46515:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;46564:33:0::3;::::0;-1:-1:-1;46574:10:0::3;46586;46595:1:::0;46586:6;:10:::3;:::i;46564:33::-;46495:3:::0;::::3;::::0;::::3;:::i;:::-;;;;46457:152;;;;44646:1;;44504::::2;45912:704:::0;:::o;43539:35::-;;;;:::o;23473:295::-;23588:12;:10;:12::i;:::-;-1:-1:-1;;;;;23576:24:0;:8;-1:-1:-1;;;;;23576:24:0;;;23568:62;;;;-1:-1:-1;;;23568:62:0;;;;;;;:::i;:::-;23688:8;23643:18;:32;23662:12;:10;:12::i;:::-;-1:-1:-1;;;;;23643:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23643:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23643:53:0;;;;;;;;;;;23727:12;:10;:12::i;:::-;-1:-1:-1;;;;;23712:48:0;;23751:8;23712:48;;;;;;:::i;:::-;;;;;;;;23473:295;;:::o;48550:69::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;48596:8:::1;:15:::0;;-1:-1:-1;;48596:15:0::1;;;::::0;;48550:69::o;24736:328::-;24911:41;24930:12;:10;:12::i;:::-;24944:7;24911:18;:41::i;:::-;24903:103;;;;-1:-1:-1;;;24903:103:0;;;;;;;:::i;:::-;25017:39;25031:4;25037:2;25041:7;25050:5;25017:13;:39::i;43718:::-;;;;:::o;43335:37::-;;;;;;;:::i;47581:468::-;47654:13;47688:16;47696:7;47688;:16::i;:::-;47680:76;;;;-1:-1:-1;;;47680:76:0;;;;;;;:::i;:::-;47774:8;;;;;;;47769:273;;47806:14;47799:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47769:273;47853:28;47884:10;:8;:10::i;:::-;47853:41;;47947:1;47922:14;47916:28;:32;:114;;;;;;;;;;;;;;;;;47975:14;47990:18;:7;:16;:18::i;:::-;48010:13;47958:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47916:114;47909:121;;;;;43414:40;;;;:::o;48850:110::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;48925:18:::1;:27:::0;48850:110::o;43501:31::-;;;;:::o;49560:128::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49647:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;23839:164::-:0;-1:-1:-1;;;;;23960:25:0;;;23936:4;23960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23839:164::o;43859:42::-;;;;:::o;50452:202::-;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;50537:9:::1;50532:115;50556:9;:16;50552:1;:20;50532:115;;;50631:4;50594:20;:34;50615:9;50625:1;50615:12;;;;;;-1:-1:-1::0;;;50615:12:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50594:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50594:34:0;:41;;-1:-1:-1;;50594:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50574:3;::::1;::::0;::::1;:::i;:::-;;;;50532:115;;49696:126:::0;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;49782:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42766:192::-:0;42097:12;:10;:12::i;:::-;-1:-1:-1;;;;;42086:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42086:23:0;;42078:68;;;;-1:-1:-1;;;42078:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42855:22:0;::::1;42847:73;;;;-1:-1:-1::0;;;42847:73:0::1;;;;;;;:::i;:::-;42931:19;42941:8;42931:9;:19::i;20676:305::-:0;20778:4;-1:-1:-1;;;;;;20815:40:0;;-1:-1:-1;;;20815:40:0;;:105;;-1:-1:-1;;;;;;;20872:48:0;;-1:-1:-1;;;20872:48:0;20815:105;:158;;;;20937:36;20961:11;20937:23;:36::i;16110:98::-;16190:10;16110:98;:::o;26574:127::-;26639:4;26663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26663:16:0;:30;;;26574:127::o;30556:174::-;30631:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30631:29:0;-1:-1:-1;;;;;30631:29:0;;;;;;;;:24;;30685:23;30631:24;30685:14;:23::i;:::-;-1:-1:-1;;;;;30676:46:0;;;;;;;;;;;30556:174;;:::o;26868:348::-;26961:4;26986:16;26994:7;26986;:16::i;:::-;26978:73;;;;-1:-1:-1;;;26978:73:0;;;;;;;:::i;:::-;27062:13;27078:23;27093:7;27078:14;:23::i;:::-;27062:39;;27131:5;-1:-1:-1;;;;;27120:16:0;:7;-1:-1:-1;;;;;27120:16:0;;:51;;;;27164:7;-1:-1:-1;;;;;27140:31:0;:20;27152:7;27140:11;:20::i;:::-;-1:-1:-1;;;;;27140:31:0;;27120:51;:87;;;;27175:32;27192:5;27199:7;27175:16;:32::i;:::-;27112:96;26868:348;-1:-1:-1;;;;26868:348:0:o;29860:578::-;30019:4;-1:-1:-1;;;;;29992:31:0;:23;30007:7;29992:14;:23::i;:::-;-1:-1:-1;;;;;29992:31:0;;29984:85;;;;-1:-1:-1;;;29984:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30088:16:0;;30080:65;;;;-1:-1:-1;;;30080:65:0;;;;;;;:::i;:::-;30158:39;30179:4;30185:2;30189:7;30158:20;:39::i;:::-;30262:29;30279:1;30283:7;30262:8;:29::i;:::-;-1:-1:-1;;;;;30304:15:0;;;;;;:9;:15;;;;;:20;;30323:1;;30304:15;:20;;30323:1;;30304:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30335:13:0;;;;;;:9;:13;;;;;:18;;30352:1;;30335:13;:18;;30352:1;;30335:18;:::i;:::-;;;;-1:-1:-1;;30364:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30364:21:0;-1:-1:-1;;;;;30364:21:0;;;;;;;;;30403:27;;30364:16;;30403:27;;;;;;;29860:578;;;:::o;42966:173::-;43041:6;;;-1:-1:-1;;;;;43058:17:0;;;-1:-1:-1;;;;;;43058:17:0;;;;;;;43091:40;;43041:6;;;43058:17;43041:6;;43091:40;;43022:16;;43091:40;42966:173;;:::o;27558:110::-;27634:26;27644:2;27648:7;27634:26;;;;;;;;;;;;:9;:26::i;45528:364::-;45670:18;;45635:31;45655:11;45635:17;:31;:::i;:::-;:53;;45627:93;;;;-1:-1:-1;;;45627:93:0;;;;;;;:::i;:::-;45759:11;45752:4;;:18;;;;:::i;:::-;45739:9;:31;;45731:62;;;;-1:-1:-1;;;45731:62:0;;;;;;;:::i;:::-;45827:13;;45812:11;:28;;45804:80;;;;-1:-1:-1;;;45804:80:0;;;;;;;:::i;44796:724::-;44913:18;44964:14;;44946:15;:32;:79;;-1:-1:-1;45021:4:0;;;44946:79;;;-1:-1:-1;44994:11:0;;;44946:79;;45048:25;45062:10;45048:13;:25::i;:::-;45040:61;;;;-1:-1:-1;;;45040:61:0;;;;;;;:::i;:::-;45159:25;;45124:31;45144:11;45124:17;:31;:::i;:::-;:60;;45116:113;;;;-1:-1:-1;;;45116:113:0;;;;;;;:::i;:::-;45265:24;45278:11;45265:10;:24;:::i;:::-;45252:9;:37;;45244:68;;;;-1:-1:-1;;;45244:68:0;;;;;;;:::i;:::-;45350:20;;45335:11;:35;;45327:87;;;;-1:-1:-1;;;45327:87:0;;;;;;;:::i;:::-;45462:16;;45437:21;45447:11;45437:7;:21;:::i;:::-;:41;;45429:83;;;;-1:-1:-1;;;45429:83:0;;;;;;;:::i;25946:315::-;26103:28;26113:4;26119:2;26123:7;26103:9;:28::i;:::-;26150:48;26173:4;26179:2;26183:7;26192:5;26150:22;:48::i;:::-;26142:111;;;;-1:-1:-1;;;26142:111:0;;;;;;;:::i;44680:108::-;44740:13;44773:7;44766:14;;;;;:::i;16635:723::-;16691:13;16912:10;16908:53;;-1:-1:-1;16939:10:0;;;;;;;;;;;;-1:-1:-1;;;16939:10:0;;;;;;16908:53;16986:5;16971:12;17027:78;17034:9;;17027:78;;17060:8;;;;:::i;:::-;;-1:-1:-1;17083:10:0;;-1:-1:-1;17091:2:0;17083:10;;:::i;:::-;;;17027:78;;;17115:19;17147:6;17137:17;;;;;;-1:-1:-1;;;17137:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17137:17:0;;17115:39;;17165:154;17172:10;;17165:154;;17199:11;17209:1;17199:11;;:::i;:::-;;-1:-1:-1;17268:10:0;17276:2;17268:5;:10;:::i;:::-;17255:24;;:2;:24;:::i;:::-;17242:39;;17225:6;17232;17225:14;;;;;;-1:-1:-1;;;17225:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17225:56:0;;;;;;;;-1:-1:-1;17296:11:0;17305:2;17296:11;;:::i;:::-;;;17165:154;;19192:157;-1:-1:-1;;;;;;19301:40:0;;-1:-1:-1;;;19301:40:0;19192:157;;;:::o;36396:589::-;36540:45;36567:4;36573:2;36577:7;36540:26;:45::i;:::-;-1:-1:-1;;;;;36602:18:0;;36598:187;;36637:40;36669:7;36637:31;:40::i;:::-;36598:187;;;36707:2;-1:-1:-1;;;;;36699:10:0;:4;-1:-1:-1;;;;;36699:10:0;;36695:90;;36726:47;36759:4;36765:7;36726:32;:47::i;:::-;-1:-1:-1;;;;;36799:16:0;;36795:183;;36832:45;36869:7;36832:36;:45::i;:::-;36795:183;;;36905:4;-1:-1:-1;;;;;36899:10:0;:2;-1:-1:-1;;;;;36899:10:0;;36895:83;;36926:40;36954:2;36958:7;36926:27;:40::i;27895:321::-;28025:18;28031:2;28035:7;28025:5;:18::i;:::-;28076:54;28107:1;28111:2;28115:7;28124:5;28076:22;:54::i;:::-;28054:154;;;;-1:-1:-1;;;28054:154:0;;;;;;;:::i;31295:799::-;31450:4;31471:15;:2;-1:-1:-1;;;;;31471:13:0;;:15::i;:::-;31467:620;;;31523:2;-1:-1:-1;;;;;31507:36:0;;31544:12;:10;:12::i;:::-;31558:4;31564:7;31573:5;31507:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31507:72:0;;;;;;;;-1:-1:-1;;31507:72:0;;;;;;;;;;;;:::i;:::-;;;31503:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31749:13:0;;31745:272;;31792:60;;-1:-1:-1;;;31792:60:0;;;;;;;:::i;31745:272::-;31967:6;31961:13;31952:6;31948:2;31944:15;31937:38;31503:529;-1:-1:-1;;;;;;31630:51:0;-1:-1:-1;;;31630:51:0;;-1:-1:-1;31623:58:0;;31467:620;-1:-1:-1;32071:4:0;31295:799;;;;;;:::o;37708:164::-;37812:10;:17;;37785:24;;;;:15;:24;;;;;:44;;;37840:24;;;;;;;;;;;;37708:164::o;38499:988::-;38765:22;38815:1;38790:22;38807:4;38790:16;:22::i;:::-;:26;;;;:::i;:::-;38827:18;38848:26;;;:17;:26;;;;;;38765:51;;-1:-1:-1;38981:28:0;;;38977:328;;-1:-1:-1;;;;;39048:18:0;;39026:19;39048:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39099:30;;;;;;:44;;;39216:30;;:17;:30;;;;;:43;;;38977:328;-1:-1:-1;39401:26:0;;;;:17;:26;;;;;;;;39394:33;;;-1:-1:-1;;;;;39445:18:0;;;;;:12;:18;;;;;:34;;;;;;;39438:41;38499:988::o;39782:1079::-;40060:10;:17;40035:22;;40060:21;;40080:1;;40060:21;:::i;:::-;40092:18;40113:24;;;:15;:24;;;;;;40486:10;:26;;40035:46;;-1:-1:-1;40113:24:0;;40035:46;;40486:26;;;;-1:-1:-1;;;40486:26:0;;;;;;;;;;;;;;;;;40464:48;;40550:11;40525:10;40536;40525:22;;;;;;-1:-1:-1;;;40525:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40630:28;;;:15;:28;;;;;;;:41;;;40802:24;;;;;40795:31;40837:10;:16;;;;;-1:-1:-1;;;40837:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39782:1079;;;;:::o;37286:221::-;37371:14;37388:20;37405:2;37388:16;:20::i;:::-;-1:-1:-1;;;;;37419:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37464:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37286:221:0:o;28552:382::-;-1:-1:-1;;;;;28632:16:0;;28624:61;;;;-1:-1:-1;;;28624:61:0;;;;;;;:::i;:::-;28705:16;28713:7;28705;:16::i;:::-;28704:17;28696:58;;;;-1:-1:-1;;;28696:58:0;;;;;;;:::i;:::-;28767:45;28796:1;28800:2;28804:7;28767:20;:45::i;:::-;-1:-1:-1;;;;;28825:13:0;;;;;;:9;:13;;;;;:18;;28842:1;;28825:13;:18;;28842:1;;28825:18;:::i;:::-;;;;-1:-1:-1;;28854:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28854:21:0;-1:-1:-1;;;;;28854:21:0;;;;;;;;28893:33;;28854:16;;;28893:33;;28854:16;;28893:33;28552:382;;:::o;8154:387::-;8477:20;8525:8;;;8154:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:162;675:20;;731:13;;724:21;714:32;;704:2;;760:1;757;750:12;775:198;;887:2;875:9;866:7;862:23;858:32;855:2;;;908:6;900;893:22;855:2;936:31;957:9;936:31;:::i;:::-;926:41;845:128;-1:-1:-1;;;845:128:1:o;978:274::-;;;1107:2;1095:9;1086:7;1082:23;1078:32;1075:2;;;1128:6;1120;1113:22;1075:2;1156:31;1177:9;1156:31;:::i;:::-;1146:41;;1206:40;1242:2;1231:9;1227:18;1206:40;:::i;:::-;1196:50;;1065:187;;;;;:::o;1257:342::-;;;;1403:2;1391:9;1382:7;1378:23;1374:32;1371:2;;;1424:6;1416;1409:22;1371:2;1452:31;1473:9;1452:31;:::i;:::-;1442:41;;1502:40;1538:2;1527:9;1523:18;1502:40;:::i;:::-;1492:50;;1589:2;1578:9;1574:18;1561:32;1551:42;;1361:238;;;;;:::o;1604:702::-;;;;;1776:3;1764:9;1755:7;1751:23;1747:33;1744:2;;;1798:6;1790;1783:22;1744:2;1826:31;1847:9;1826:31;:::i;:::-;1816:41;;1876:40;1912:2;1901:9;1897:18;1876:40;:::i;:::-;1866:50;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;2045:18;2037:6;2034:30;2031:2;;;2082:6;2074;2067:22;2031:2;2110:22;;2163:4;2155:13;;2151:27;-1:-1:-1;2141:2:1;;2197:6;2189;2182:22;2141:2;2225:75;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2225:75;:::i;:::-;2215:85;;;1734:572;;;;;;;:::o;2311:268::-;;;2437:2;2425:9;2416:7;2412:23;2408:32;2405:2;;;2458:6;2450;2443:22;2405:2;2486:31;2507:9;2486:31;:::i;:::-;2476:41;;2536:37;2569:2;2558:9;2554:18;2536:37;:::i;2584:266::-;;;2713:2;2701:9;2692:7;2688:23;2684:32;2681:2;;;2734:6;2726;2719:22;2681:2;2762:31;2783:9;2762:31;:::i;:::-;2752:41;2840:2;2825:18;;;;2812:32;;-1:-1:-1;;;2671:179:1:o;2855:1010::-;;2970:2;3013;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3079:9;3066:23;3108:18;3149:2;3141:6;3138:14;3135:2;;;3170:6;3162;3155:22;3135:2;3213:6;3202:9;3198:22;3188:32;;3258:7;3251:4;3247:2;3243:13;3239:27;3229:2;;3285:6;3277;3270:22;3229:2;3326;3313:16;3348:2;3344;3341:10;3338:2;;;3354:18;;:::i;:::-;3401:2;3397;3393:11;3383:21;;3424:27;3447:2;3443;3439:11;3424:27;:::i;:::-;3485:15;;;3516:12;;;;3548:11;;;3578;;;3574:20;;3571:33;-1:-1:-1;3568:2:1;;;3622:6;3614;3607:22;3568:2;3649:6;3640:15;;3664:171;3678:2;3675:1;3672:9;3664:171;;;3735:25;3756:3;3735:25;:::i;:::-;3723:38;;3696:1;3689:9;;;;;3781:12;;;;3813;;3664:171;;;-1:-1:-1;3854:5:1;2950:915;-1:-1:-1;;;;;;;;2950:915:1:o;3870:192::-;;3979:2;3967:9;3958:7;3954:23;3950:32;3947:2;;;4000:6;3992;3985:22;3947:2;4028:28;4046:9;4028:28;:::i;4067:257::-;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4199:6;4191;4184:22;4146:2;4243:9;4230:23;4262:32;4288:5;4262:32;:::i;4329:261::-;;4451:2;4439:9;4430:7;4426:23;4422:32;4419:2;;;4472:6;4464;4457:22;4419:2;4509:9;4503:16;4528:32;4554:5;4528:32;:::i;4595:482::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4738:6;4730;4723:22;4685:2;4783:9;4770:23;4816:18;4808:6;4805:30;4802:2;;;4853:6;4845;4838:22;4802:2;4881:22;;4934:4;4926:13;;4922:27;-1:-1:-1;4912:2:1;;4968:6;4960;4953:22;4912:2;4996:75;5063:7;5058:2;5045:16;5040:2;5036;5032:11;4996:75;:::i;5082:190::-;;5194:2;5182:9;5173:7;5169:23;5165:32;5162:2;;;5215:6;5207;5200:22;5162:2;-1:-1:-1;5243:23:1;;5152:120;-1:-1:-1;5152:120:1:o;5277:266::-;;;5406:2;5394:9;5385:7;5381:23;5377:32;5374:2;;;5427:6;5419;5412:22;5374:2;5468:9;5455:23;5445:33;;5497:40;5533:2;5522:9;5518:18;5497:40;:::i;5548:259::-;;5629:5;5623:12;5656:6;5651:3;5644:19;5672:63;5728:6;5721:4;5716:3;5712:14;5705:4;5698:5;5694:16;5672:63;:::i;:::-;5789:2;5768:15;-1:-1:-1;;5764:29:1;5755:39;;;;5796:4;5751:50;;5599:208;-1:-1:-1;;5599:208:1:o;5812:1532::-;;6074:6;6068:13;6100:4;6113:51;6157:6;6152:3;6147:2;6139:6;6135:15;6113:51;:::i;:::-;6227:13;;6186:16;;;;6249:55;6227:13;6186:16;6271:15;;;6249:55;:::i;:::-;6395:13;;6326:20;;;6366:3;;6472:1;6457:17;;6493:1;6529:18;;;;6556:2;;6634:4;6624:8;6620:19;6608:31;;6556:2;6697;6687:8;6684:16;6664:18;6661:40;6658:2;;;-1:-1:-1;;;6724:33:1;;6780:4;6777:1;6770:15;6810:4;6731:3;6798:17;6658:2;6841:18;6868:110;;;;6992:1;6987:332;;;;6834:485;;6868:110;-1:-1:-1;;6903:24:1;;6889:39;;6948:20;;;;-1:-1:-1;6868:110:1;;6987:332;7023:39;7055:6;7023:39;:::i;:::-;7084:3;7100:169;7114:8;7111:1;7108:15;7100:169;;;7196:14;;7181:13;;;7174:37;7239:16;;;;7131:10;;7100:169;;;7104:3;;7300:8;7293:5;7289:20;7282:27;;6834:485;-1:-1:-1;7335:3:1;;6044:1300;-1:-1:-1;;;;;;;;;;;6044:1300:1:o;7559:203::-;-1:-1:-1;;;;;7723:32:1;;;;7705:51;;7693:2;7678:18;;7660:102::o;7767:490::-;-1:-1:-1;;;;;8036:15:1;;;8018:34;;8088:15;;8083:2;8068:18;;8061:43;8135:2;8120:18;;8113:34;;;8183:3;8178:2;8163:18;;8156:31;;;7767:490;;8204:47;;8231:19;;8223:6;8204:47;:::i;:::-;8196:55;7970:287;-1:-1:-1;;;;;;7970:287:1:o;8262:635::-;8433:2;8485:21;;;8555:13;;8458:18;;;8577:22;;;8262:635;;8433:2;8656:15;;;;8630:2;8615:18;;;8262:635;8702:169;8716:6;8713:1;8710:13;8702:169;;;8777:13;;8765:26;;8846:15;;;;8811:12;;;;8738:1;8731:9;8702:169;;;-1:-1:-1;8888:3:1;;8413:484;-1:-1:-1;;;;;;8413:484:1:o;8902:187::-;9067:14;;9060:22;9042:41;;9030:2;9015:18;;8997:92::o;9094:221::-;;9243:2;9232:9;9225:21;9263:46;9305:2;9294:9;9290:18;9282:6;9263:46;:::i;9320:348::-;9522:2;9504:21;;;9561:2;9541:18;;;9534:30;9600:26;9595:2;9580:18;;9573:54;9659:2;9644:18;;9494:174::o;9673:407::-;9875:2;9857:21;;;9914:2;9894:18;;;9887:30;9953:34;9948:2;9933:18;;9926:62;-1:-1:-1;;;10019:2:1;10004:18;;9997:41;10070:3;10055:19;;9847:233::o;10085:414::-;10287:2;10269:21;;;10326:2;10306:18;;;10299:30;10365:34;10360:2;10345:18;;10338:62;-1:-1:-1;;;10431:2:1;10416:18;;10409:48;10489:3;10474:19;;10259:240::o;10504:402::-;10706:2;10688:21;;;10745:2;10725:18;;;10718:30;10784:34;10779:2;10764:18;;10757:62;-1:-1:-1;;;10850:2:1;10835:18;;10828:36;10896:3;10881:19;;10678:228::o;10911:352::-;11113:2;11095:21;;;11152:2;11132:18;;;11125:30;11191;11186:2;11171:18;;11164:58;11254:2;11239:18;;11085:178::o;11268:352::-;11470:2;11452:21;;;11509:2;11489:18;;;11482:30;11548;11543:2;11528:18;;11521:58;11611:2;11596:18;;11442:178::o;11625:400::-;11827:2;11809:21;;;11866:2;11846:18;;;11839:30;11905:34;11900:2;11885:18;;11878:62;-1:-1:-1;;;11971:2:1;11956:18;;11949:34;12015:3;12000:19;;11799:226::o;12030:349::-;12232:2;12214:21;;;12271:2;12251:18;;;12244:30;12310:27;12305:2;12290:18;;12283:55;12370:2;12355:18;;12204:175::o;12384:404::-;12586:2;12568:21;;;12625:2;12605:18;;;12598:30;12664:34;12659:2;12644:18;;12637:62;-1:-1:-1;;;12730:2:1;12715:18;;12708:38;12778:3;12763:19;;12558:230::o;12793:408::-;12995:2;12977:21;;;13034:2;13014:18;;;13007:30;13073:34;13068:2;13053:18;;13046:62;-1:-1:-1;;;13139:2:1;13124:18;;13117:42;13191:3;13176:19;;12967:234::o;13206:420::-;13408:2;13390:21;;;13447:2;13427:18;;;13420:30;13486:34;13481:2;13466:18;;13459:62;13557:26;13552:2;13537:18;;13530:54;13616:3;13601:19;;13380:246::o;13631:406::-;13833:2;13815:21;;;13872:2;13852:18;;;13845:30;13911:34;13906:2;13891:18;;13884:62;-1:-1:-1;;;13977:2:1;13962:18;;13955:40;14027:3;14012:19;;13805:232::o;14042:405::-;14244:2;14226:21;;;14283:2;14263:18;;;14256:30;14322:34;14317:2;14302:18;;14295:62;-1:-1:-1;;;14388:2:1;14373:18;;14366:39;14437:3;14422:19;;14216:231::o;14452:346::-;14654:2;14636:21;;;14693:2;14673:18;;;14666:30;-1:-1:-1;;;14727:2:1;14712:18;;14705:52;14789:2;14774:18;;14626:172::o;14803:356::-;15005:2;14987:21;;;15024:18;;;15017:30;15083:34;15078:2;15063:18;;15056:62;15150:2;15135:18;;14977:182::o;15164:408::-;15366:2;15348:21;;;15405:2;15385:18;;;15378:30;15444:34;15439:2;15424:18;;15417:62;-1:-1:-1;;;15510:2:1;15495:18;;15488:42;15562:3;15547:19;;15338:234::o;15577:356::-;15779:2;15761:21;;;15798:18;;;15791:30;15857:34;15852:2;15837:18;;15830:62;15924:2;15909:18;;15751:182::o;15938:346::-;16140:2;16122:21;;;16179:2;16159:18;;;16152:30;-1:-1:-1;;;16213:2:1;16198:18;;16191:52;16275:2;16260:18;;16112:172::o;16289:405::-;16491:2;16473:21;;;16530:2;16510:18;;;16503:30;16569:34;16564:2;16549:18;;16542:62;-1:-1:-1;;;16635:2:1;16620:18;;16613:39;16684:3;16669:19;;16463:231::o;16699:354::-;16901:2;16883:21;;;16940:2;16920:18;;;16913:30;16979:32;16974:2;16959:18;;16952:60;17044:2;17029:18;;16873:180::o;17058:411::-;17260:2;17242:21;;;17299:2;17279:18;;;17272:30;17338:34;17333:2;17318:18;;17311:62;-1:-1:-1;;;17404:2:1;17389:18;;17382:45;17459:3;17444:19;;17232:237::o;17474:397::-;17676:2;17658:21;;;17715:2;17695:18;;;17688:30;17754:34;17749:2;17734:18;;17727:62;-1:-1:-1;;;17820:2:1;17805:18;;17798:31;17861:3;17846:19;;17648:223::o;17876:342::-;18078:2;18060:21;;;18117:2;18097:18;;;18090:30;-1:-1:-1;;;18151:2:1;18136:18;;18129:48;18209:2;18194:18;;18050:168::o;18223:404::-;18425:2;18407:21;;;18464:2;18444:18;;;18437:30;18503:34;18498:2;18483:18;;18476:62;-1:-1:-1;;;18569:2:1;18554:18;;18547:38;18617:3;18602:19;;18397:230::o;18632:413::-;18834:2;18816:21;;;18873:2;18853:18;;;18846:30;18912:34;18907:2;18892:18;;18885:62;-1:-1:-1;;;18978:2:1;18963:18;;18956:47;19035:3;19020:19;;18806:239::o;19050:408::-;19252:2;19234:21;;;19291:2;19271:18;;;19264:30;19330:34;19325:2;19310:18;;19303:62;-1:-1:-1;;;19396:2:1;19381:18;;19374:42;19448:3;19433:19;;19224:234::o;19463:347::-;19665:2;19647:21;;;19704:2;19684:18;;;19677:30;19743:25;19738:2;19723:18;;19716:53;19801:2;19786:18;;19637:173::o;19815:351::-;20017:2;19999:21;;;20056:2;20036:18;;;20029:30;20095:29;20090:2;20075:18;;20068:57;20157:2;20142:18;;19989:177::o;20171:::-;20317:25;;;20305:2;20290:18;;20272:76::o;20353:251::-;20423:2;20417:9;20453:17;;;20500:18;20485:34;;20521:22;;;20482:62;20479:2;;;20547:18;;:::i;:::-;20583:2;20576:22;20397:207;;-1:-1:-1;20397:207:1:o;20609:129::-;;20677:17;;;20727:4;20711:21;;;20667:71::o;20743:128::-;;20814:1;20810:6;20807:1;20804:13;20801:2;;;20820:18;;:::i;:::-;-1:-1:-1;20856:9:1;;20791:80::o;20876:120::-;;20942:1;20932:2;;20947:18;;:::i;:::-;-1:-1:-1;20981:9:1;;20922:74::o;21001:168::-;;21107:1;21103;21099:6;21095:14;21092:1;21089:21;21084:1;21077:9;21070:17;21066:45;21063:2;;;21114:18;;:::i;:::-;-1:-1:-1;21154:9:1;;21053:116::o;21174:125::-;;21242:1;21239;21236:8;21233:2;;;21247:18;;:::i;:::-;-1:-1:-1;21284:9:1;;21223:76::o;21304:258::-;21376:1;21386:113;21400:6;21397:1;21394:13;21386:113;;;21476:11;;;21470:18;21457:11;;;21450:39;21422:2;21415:10;21386:113;;;21517:6;21514:1;21511:13;21508:2;;;-1:-1:-1;;21552:1:1;21534:16;;21527:27;21357:205::o;21567:380::-;21652:1;21642:12;;21699:1;21689:12;;;21710:2;;21764:4;21756:6;21752:17;21742:27;;21710:2;21817;21809:6;21806:14;21786:18;21783:38;21780:2;;;21863:10;21858:3;21854:20;21851:1;21844:31;21898:4;21895:1;21888:15;21926:4;21923:1;21916:15;21780:2;;21622:325;;;:::o;21952:135::-;;-1:-1:-1;;22012:17:1;;22009:2;;;22032:18;;:::i;:::-;-1:-1:-1;22079:1:1;22068:13;;21999:88::o;22092:112::-;;22150:1;22140:2;;22155:18;;:::i;:::-;-1:-1:-1;22189:9:1;;22130:74::o;22209:127::-;22270:10;22265:3;22261:20;22258:1;22251:31;22301:4;22298:1;22291:15;22325:4;22322:1;22315:15;22341:127;22402:10;22397:3;22393:20;22390:1;22383:31;22433:4;22430:1;22423:15;22457:4;22454:1;22447:15;22473:127;22534:10;22529:3;22525:20;22522:1;22515:31;22565:4;22562:1;22555:15;22589:4;22586:1;22579:15;22605:133;-1:-1:-1;;;;;;22681:32:1;;22671:43;;22661:2;;22728:1;22725;22718:12

Swarm Source

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