ETH Price: $2,927.94 (-9.66%)
Gas: 45 Gwei

Token

RPG Heroes (RPGH)
 

Overview

Max Total Supply

13 RPGH

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 RPGH
0xbad0511db247729305b90f4a242d8b25b8ca33ec
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:
RPGHeroes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/RPGHeroes.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;



contract RPGHeroes is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public phaseZeroCost = 0.025 ether;
    uint256 public phaseOneCost = 0.035 ether;
    uint256 public phaseTwoCost = 0.040 ether;
    uint256 public phaseThreeCost = 0.045 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 20;
    bool public paused = true;
    bool public revealed = false;
    string public unrevealedUrl;

    mapping(address => uint256) freeTakenByAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _unrevealedUrl
    ) ERC721(_name, _symbol) {
        unrevealedUrl = _unrevealedUrl;
    }

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

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();

        require(!paused, "Minting is paused.");
        require(_mintAmount > 0, "Mint amount must be greated than 0.");
        require(_mintAmount <= maxMintAmount, "Cannot mint more than 20 at once.");
        require(supply + _mintAmount <= maxSupply, "Surpassing max supply.");

        if (supply < 1000) {
            if (supply < 500) {
                require(freeTakenByAddress[msg.sender] < 2, "Cannot mint more than 2 FREE RPG Heroes");
                require(freeTakenByAddress[msg.sender] + _mintAmount <= 2, "Cannot mint more than 2 FREE RPG Heroes");
                freeTakenByAddress[msg.sender] = freeTakenByAddress[msg.sender] + _mintAmount;
            } else {
                require(msg.value >= phaseZeroCost * _mintAmount, "Not enough eth.");
            }
        }
        else if (supply >= 1000 && supply < 4000) {
            require(msg.value >= phaseOneCost * _mintAmount, "Not enough eth.");
        }
        else if (supply >= 4000 && supply < 7000) {
            require(msg.value >= phaseTwoCost * _mintAmount, "Not enough eth.");
        }
        else if (supply >= 7000 && supply < 10000) {
            require(msg.value >= phaseThreeCost * _mintAmount, "Not enough eth.");
        }


        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // Exclusively for giveaways and contests
    function devMint(address _to, uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();

        require(supply + _mintAmount <= maxSupply, "Surpassing max supply.");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    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)
    {
        if (!revealed) {
            return unrevealedUrl;
        }

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

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

    function changeRevealURI(string memory _newUri) public onlyOwner {
        unrevealedUrl = _newUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_unrevealedUrl","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"changeRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"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":"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":"phaseOneCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseThreeCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseZeroCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000238565b506658d15e17628000600d55667c585087238000600e55668e1bc9bf040000600f55669fdf42f6e4800060105561271060115560146012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000cc57600080fd5b50604051620051ec380380620051ec8339818101604052810190620000f2919062000366565b828281600090805190602001906200010c92919062000238565b5080600190805190602001906200012592919062000238565b505050620001486200013c6200016a60201b60201c565b6200017260201b60201c565b80601490805190602001906200016092919062000238565b50505050620005a3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620004b4565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b6000620002ff620002f98462000448565b6200041f565b9050828152602081018484840111156200031e576200031d62000583565b5b6200032b8482856200047e565b509392505050565b600082601f8301126200034b576200034a6200057e565b5b81516200035d848260208601620002e8565b91505092915050565b6000806000606084860312156200038257620003816200058d565b5b600084015167ffffffffffffffff811115620003a357620003a262000588565b5b620003b18682870162000333565b935050602084015167ffffffffffffffff811115620003d557620003d462000588565b5b620003e38682870162000333565b925050604084015167ffffffffffffffff81111562000407576200040662000588565b5b620004158682870162000333565b9150509250925092565b60006200042b6200043e565b9050620004398282620004ea565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046657620004656200054f565b5b620004718262000592565b9050602081019050919050565b60005b838110156200049e57808201518184015260208101905062000481565b83811115620004ae576000848401525b50505050565b60006002820490506001821680620004cd57607f821691505b60208210811415620004e457620004e362000520565b5b50919050565b620004f58262000592565b810181811067ffffffffffffffff821117156200051757620005166200054f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614c3980620005b36000396000f3fe6080604052600436106102305760003560e01c8063627804af1161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610823578063dee40b511461084c578063e985e9c514610877578063f2fde38b146108b4578063ff9e244f146108dd57610230565b8063b88d4fde1461073c578063be18101914610765578063c668286214610790578063c87b56dd146107bb578063d5abeb01146107f857610230565b8063715018a6116100f2578063715018a61461067d5780638da5cb5b14610694578063940cd05b146106bf57806395d89b41146106e8578063a22cb4651461071357610230565b8063627804af146105865780636352211e146105af57806368199a41146105ec5780636c0360eb1461061557806370a082311461064057610230565b80632f745c59116101bc578063438b630011610180578063438b63001461048d5780634f6ccce7146104ca578063518302271461050757806355f804b3146105325780635c975abb1461055b57610230565b80632f745c59146103d657806331cb3eff146104135780633ccfd60b1461043e57806340c10f191461044857806342842e0e1461046457610230565b8063095ea7b311610203578063095ea7b314610303578063121535631461032c57806318160ddd14610357578063239c70ae1461038257806323b872dd146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613606565b610908565b6040516102699190613ce4565b60405180910390f35b34801561027e57600080fd5b50610299600480360381019061029491906135d9565b610982565b005b3480156102a757600080fd5b506102b0610a1b565b6040516102bd9190613cff565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906136a9565b610aad565b6040516102fa9190613c5b565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613599565b610b32565b005b34801561033857600080fd5b50610341610c4a565b60405161034e9190613cff565b60405180910390f35b34801561036357600080fd5b5061036c610cd8565b6040516103799190614021565b60405180910390f35b34801561038e57600080fd5b50610397610ce5565b6040516103a49190614021565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613483565b610ceb565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613599565b610d4b565b60405161040a9190614021565b60405180910390f35b34801561041f57600080fd5b50610428610df0565b6040516104359190614021565b60405180910390f35b610446610df6565b005b610462600480360381019061045d9190613599565b610eeb565b005b34801561047057600080fd5b5061048b60048036038101906104869190613483565b6113ae565b005b34801561049957600080fd5b506104b460048036038101906104af9190613416565b6113ce565b6040516104c19190613cc2565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906136a9565b61147c565b6040516104fe9190614021565b60405180910390f35b34801561051357600080fd5b5061051c6114ed565b6040516105299190613ce4565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613660565b611500565b005b34801561056757600080fd5b50610570611596565b60405161057d9190613ce4565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613599565b6115a9565b005b3480156105bb57600080fd5b506105d660048036038101906105d191906136a9565b6116bd565b6040516105e39190613c5b565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613660565b61176f565b005b34801561062157600080fd5b5061062a611805565b6040516106379190613cff565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613416565b611893565b6040516106749190614021565b60405180910390f35b34801561068957600080fd5b5061069261194b565b005b3480156106a057600080fd5b506106a96119d3565b6040516106b69190613c5b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906135d9565b6119fd565b005b3480156106f457600080fd5b506106fd611a96565b60405161070a9190613cff565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613559565b611b28565b005b34801561074857600080fd5b50610763600480360381019061075e91906134d6565b611b3e565b005b34801561077157600080fd5b5061077a611ba0565b6040516107879190614021565b60405180910390f35b34801561079c57600080fd5b506107a5611ba6565b6040516107b29190613cff565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906136a9565b611c34565b6040516107ef9190613cff565b60405180910390f35b34801561080457600080fd5b5061080d611d85565b60405161081a9190614021565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613660565b611d8b565b005b34801561085857600080fd5b50610861611e21565b60405161086e9190614021565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613443565b611e27565b6040516108ab9190613ce4565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613416565b611ebb565b005b3480156108e957600080fd5b506108f2611fb3565b6040516108ff9190614021565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097b575061097a82611fb9565b5b9050919050565b61098a61209b565b73ffffffffffffffffffffffffffffffffffffffff166109a86119d3565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613f41565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610a2a9061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a569061432a565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b6000610ab8826120a3565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613f21565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3d826116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcd61209b565b73ffffffffffffffffffffffffffffffffffffffff161480610bfc5750610bfb81610bf661209b565b611e27565b5b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613e61565b60405180910390fd5b610c45838361210f565b505050565b60148054610c579061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c839061432a565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b505050505081565b6000600880549050905090565b60125481565b610cfc610cf661209b565b826121c8565b610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613fc1565b60405180910390fd5b610d468383836122a6565b505050565b6000610d5683611893565b8210610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613d41565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610dfe61209b565b73ffffffffffffffffffffffffffffffffffffffff16610e1c6119d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613f41565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e9890613c46565b60006040518083038185875af1925050503d8060008114610ed5576040519150601f19603f3d011682016040523d82523d6000602084013e610eda565b606091505b5050905080610ee857600080fd5b50565b6000610ef5610cd8565b9050601360009054906101000a900460ff1615610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d21565b60405180910390fd5b60008211610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613de1565b60405180910390fd5b601254821115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613f81565b60405180910390fd5b6011548282610fde919061415f565b111561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613f01565b60405180910390fd5b6103e881101561122c576101f48110156111d6576002601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90614001565b60405180910390fd5b600282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611102919061415f565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614001565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118e919061415f565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611227565b81600d546111e491906141e6565b341015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613ec1565b60405180910390fd5b5b611372565b6103e8811015801561123f5750610fa081105b156112995781600e5461125291906141e6565b341015611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613ec1565b60405180910390fd5b611371565b610fa081101580156112ac5750611b5881105b156113065781600f546112bf91906141e6565b341015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613ec1565b60405180910390fd5b611370565b611b588110158015611319575061271081105b1561136f578160105461132c91906141e6565b34101561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613ec1565b60405180910390fd5b5b5b5b5b6000600190505b8281116113a857611395848284611390919061415f565b61250d565b80806113a09061438d565b915050611379565b50505050565b6113c983838360405180602001604052806000815250611b3e565b505050565b606060006113db83611893565b905060008167ffffffffffffffff8111156113f9576113f86144f2565b5b6040519080825280602002602001820160405280156114275781602001602082028036833780820191505090505b50905060005b828110156114715761143f8582610d4b565b828281518110611452576114516144c3565b5b60200260200101818152505080806114699061438d565b91505061142d565b508092505050919050565b6000611486610cd8565b82106114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613fe1565b60405180910390fd5b600882815481106114db576114da6144c3565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61150861209b565b73ffffffffffffffffffffffffffffffffffffffff166115266119d3565b73ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390613f41565b60405180910390fd5b80600b908051906020019061159292919061322a565b5050565b601360009054906101000a900460ff1681565b6115b161209b565b73ffffffffffffffffffffffffffffffffffffffff166115cf6119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613f41565b60405180910390fd5b600061162f610cd8565b90506011548282611640919061415f565b1115611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890613f01565b60405180910390fd5b6000600190505b8281116116b7576116a484828461169f919061415f565b61250d565b80806116af9061438d565b915050611688565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613ea1565b60405180910390fd5b80915050919050565b61177761209b565b73ffffffffffffffffffffffffffffffffffffffff166117956119d3565b73ffffffffffffffffffffffffffffffffffffffff16146117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613f41565b60405180910390fd5b806014908051906020019061180192919061322a565b5050565b600b80546118129061432a565b80601f016020809104026020016040519081016040528092919081815260200182805461183e9061432a565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613e81565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61195361209b565b73ffffffffffffffffffffffffffffffffffffffff166119716119d3565b73ffffffffffffffffffffffffffffffffffffffff16146119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613f41565b60405180910390fd5b6119d1600061252b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a0561209b565b73ffffffffffffffffffffffffffffffffffffffff16611a236119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613f41565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060018054611aa59061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad19061432a565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b5050505050905090565b611b3a611b3361209b565b83836125f1565b5050565b611b4f611b4961209b565b836121c8565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613fc1565b60405180910390fd5b611b9a8484848461275e565b50505050565b600e5481565b600c8054611bb39061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdf9061432a565b8015611c2c5780601f10611c0157610100808354040283529160200191611c2c565b820191906000526020600020905b815481529060010190602001808311611c0f57829003601f168201915b505050505081565b6060601360019054906101000a900460ff16611cdc5760148054611c579061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c839061432a565b8015611cd05780601f10611ca557610100808354040283529160200191611cd0565b820191906000526020600020905b815481529060010190602001808311611cb357829003601f168201915b50505050509050611d80565b611ce5826120a3565b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90613f61565b60405180910390fd5b6000611d2e6127ba565b90506000815111611d4e5760405180602001604052806000815250611d7c565b80611d588461284c565b600c604051602001611d6c93929190613c15565b6040516020818303038152906040525b9150505b919050565b60115481565b611d9361209b565b73ffffffffffffffffffffffffffffffffffffffff16611db16119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613f41565b60405180910390fd5b80600c9080519060200190611e1d92919061322a565b5050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec361209b565b73ffffffffffffffffffffffffffffffffffffffff16611ee16119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613f41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613d81565b60405180910390fd5b611fb08161252b565b50565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120945750612093826129ad565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612182836116bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d3826120a3565b612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990613e41565b60405180910390fd5b600061221d836116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225f575061225e8185611e27565b5b8061229d57508373ffffffffffffffffffffffffffffffffffffffff1661228584610aad565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c6826116bd565b73ffffffffffffffffffffffffffffffffffffffff161461231c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231390613da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613e01565b60405180910390fd5b612397838383612a17565b6123a260008261210f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f29190614240565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612449919061415f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612508838383612b2b565b505050565b612527828260405180602001604052806000815250612b30565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790613e21565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127519190613ce4565b60405180910390a3505050565b6127698484846122a6565b61277584848484612b8b565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90613d61565b60405180910390fd5b50505050565b6060600b80546127c99061432a565b80601f01602080910402602001604051908101604052809291908181526020018280546127f59061432a565b80156128425780601f1061281757610100808354040283529160200191612842565b820191906000526020600020905b81548152906001019060200180831161282557829003601f168201915b5050505050905090565b60606000821415612894576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a8565b600082905060005b600082146128c65780806128af9061438d565b915050600a826128bf91906141b5565b915061289c565b60008167ffffffffffffffff8111156128e2576128e16144f2565b5b6040519080825280601f01601f1916602001820160405280156129145781602001600182028036833780820191505090505b5090505b600085146129a15760018261292d9190614240565b9150600a8561293c91906143d6565b6030612948919061415f565b60f81b81838151811061295e5761295d6144c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299a91906141b5565b9450612918565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a22838383612d22565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6557612a6081612d27565b612aa4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aa357612aa28382612d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae757612ae281612edd565b612b26565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2557612b248282612fae565b5b5b505050565b505050565b612b3a838361302d565b612b476000848484612b8b565b612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d90613d61565b60405180910390fd5b505050565b6000612bac8473ffffffffffffffffffffffffffffffffffffffff16613207565b15612d15578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd561209b565b8786866040518563ffffffff1660e01b8152600401612bf79493929190613c76565b602060405180830381600087803b158015612c1157600080fd5b505af1925050508015612c4257506040513d601f19601f82011682018060405250810190612c3f9190613633565b60015b612cc5573d8060008114612c72576040519150601f19603f3d011682016040523d82523d6000602084013e612c77565b606091505b50600081511415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613d61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7d84611893565b612d879190614240565b9050600060076000848152602001908152602001600020549050818114612e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef19190614240565b9050600060096000848152602001908152602001600020549050600060088381548110612f2157612f206144c3565b5b906000526020600020015490508060088381548110612f4357612f426144c3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9257612f91614494565b5b6001900381819060005260206000200160009055905550505050565b6000612fb983611893565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490613ee1565b60405180910390fd5b6130a6816120a3565b156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd90613dc1565b60405180910390fd5b6130f260008383612a17565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613142919061415f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461320360008383612b2b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132369061432a565b90600052602060002090601f016020900481019282613258576000855561329f565b82601f1061327157805160ff191683800117855561329f565b8280016001018555821561329f579182015b8281111561329e578251825591602001919060010190613283565b5b5090506132ac91906132b0565b5090565b5b808211156132c95760008160009055506001016132b1565b5090565b60006132e06132db84614061565b61403c565b9050828152602081018484840111156132fc576132fb614526565b5b6133078482856142e8565b509392505050565b600061332261331d84614092565b61403c565b90508281526020810184848401111561333e5761333d614526565b5b6133498482856142e8565b509392505050565b60008135905061336081614ba7565b92915050565b60008135905061337581614bbe565b92915050565b60008135905061338a81614bd5565b92915050565b60008151905061339f81614bd5565b92915050565b600082601f8301126133ba576133b9614521565b5b81356133ca8482602086016132cd565b91505092915050565b600082601f8301126133e8576133e7614521565b5b81356133f884826020860161330f565b91505092915050565b60008135905061341081614bec565b92915050565b60006020828403121561342c5761342b614530565b5b600061343a84828501613351565b91505092915050565b6000806040838503121561345a57613459614530565b5b600061346885828601613351565b925050602061347985828601613351565b9150509250929050565b60008060006060848603121561349c5761349b614530565b5b60006134aa86828701613351565b93505060206134bb86828701613351565b92505060406134cc86828701613401565b9150509250925092565b600080600080608085870312156134f0576134ef614530565b5b60006134fe87828801613351565b945050602061350f87828801613351565b935050604061352087828801613401565b925050606085013567ffffffffffffffff8111156135415761354061452b565b5b61354d878288016133a5565b91505092959194509250565b600080604083850312156135705761356f614530565b5b600061357e85828601613351565b925050602061358f85828601613366565b9150509250929050565b600080604083850312156135b0576135af614530565b5b60006135be85828601613351565b92505060206135cf85828601613401565b9150509250929050565b6000602082840312156135ef576135ee614530565b5b60006135fd84828501613366565b91505092915050565b60006020828403121561361c5761361b614530565b5b600061362a8482850161337b565b91505092915050565b60006020828403121561364957613648614530565b5b600061365784828501613390565b91505092915050565b60006020828403121561367657613675614530565b5b600082013567ffffffffffffffff8111156136945761369361452b565b5b6136a0848285016133d3565b91505092915050565b6000602082840312156136bf576136be614530565b5b60006136cd84828501613401565b91505092915050565b60006136e28383613bf7565b60208301905092915050565b6136f781614274565b82525050565b6000613708826140e8565b6137128185614116565b935061371d836140c3565b8060005b8381101561374e57815161373588826136d6565b975061374083614109565b925050600181019050613721565b5085935050505092915050565b61376481614286565b82525050565b6000613775826140f3565b61377f8185614127565b935061378f8185602086016142f7565b61379881614535565b840191505092915050565b60006137ae826140fe565b6137b88185614143565b93506137c88185602086016142f7565b6137d181614535565b840191505092915050565b60006137e7826140fe565b6137f18185614154565b93506138018185602086016142f7565b80840191505092915050565b6000815461381a8161432a565b6138248186614154565b9450600182166000811461383f576001811461385057613883565b60ff19831686528186019350613883565b613859856140d3565b60005b8381101561387b5781548189015260018201915060208101905061385c565b838801955050505b50505092915050565b6000613899601283614143565b91506138a482614546565b602082019050919050565b60006138bc602b83614143565b91506138c78261456f565b604082019050919050565b60006138df603283614143565b91506138ea826145be565b604082019050919050565b6000613902602683614143565b915061390d8261460d565b604082019050919050565b6000613925602583614143565b91506139308261465c565b604082019050919050565b6000613948601c83614143565b9150613953826146ab565b602082019050919050565b600061396b602383614143565b9150613976826146d4565b604082019050919050565b600061398e602483614143565b915061399982614723565b604082019050919050565b60006139b1601983614143565b91506139bc82614772565b602082019050919050565b60006139d4602c83614143565b91506139df8261479b565b604082019050919050565b60006139f7603883614143565b9150613a02826147ea565b604082019050919050565b6000613a1a602a83614143565b9150613a2582614839565b604082019050919050565b6000613a3d602983614143565b9150613a4882614888565b604082019050919050565b6000613a60600f83614143565b9150613a6b826148d7565b602082019050919050565b6000613a83602083614143565b9150613a8e82614900565b602082019050919050565b6000613aa6601683614143565b9150613ab182614929565b602082019050919050565b6000613ac9602c83614143565b9150613ad482614952565b604082019050919050565b6000613aec602083614143565b9150613af7826149a1565b602082019050919050565b6000613b0f602f83614143565b9150613b1a826149ca565b604082019050919050565b6000613b32602183614143565b9150613b3d82614a19565b604082019050919050565b6000613b55602183614143565b9150613b6082614a68565b604082019050919050565b6000613b78600083614138565b9150613b8382614ab7565b600082019050919050565b6000613b9b603183614143565b9150613ba682614aba565b604082019050919050565b6000613bbe602c83614143565b9150613bc982614b09565b604082019050919050565b6000613be1602783614143565b9150613bec82614b58565b604082019050919050565b613c00816142de565b82525050565b613c0f816142de565b82525050565b6000613c2182866137dc565b9150613c2d82856137dc565b9150613c39828461380d565b9150819050949350505050565b6000613c5182613b6b565b9150819050919050565b6000602082019050613c7060008301846136ee565b92915050565b6000608082019050613c8b60008301876136ee565b613c9860208301866136ee565b613ca56040830185613c06565b8181036060830152613cb7818461376a565b905095945050505050565b60006020820190508181036000830152613cdc81846136fd565b905092915050565b6000602082019050613cf9600083018461375b565b92915050565b60006020820190508181036000830152613d1981846137a3565b905092915050565b60006020820190508181036000830152613d3a8161388c565b9050919050565b60006020820190508181036000830152613d5a816138af565b9050919050565b60006020820190508181036000830152613d7a816138d2565b9050919050565b60006020820190508181036000830152613d9a816138f5565b9050919050565b60006020820190508181036000830152613dba81613918565b9050919050565b60006020820190508181036000830152613dda8161393b565b9050919050565b60006020820190508181036000830152613dfa8161395e565b9050919050565b60006020820190508181036000830152613e1a81613981565b9050919050565b60006020820190508181036000830152613e3a816139a4565b9050919050565b60006020820190508181036000830152613e5a816139c7565b9050919050565b60006020820190508181036000830152613e7a816139ea565b9050919050565b60006020820190508181036000830152613e9a81613a0d565b9050919050565b60006020820190508181036000830152613eba81613a30565b9050919050565b60006020820190508181036000830152613eda81613a53565b9050919050565b60006020820190508181036000830152613efa81613a76565b9050919050565b60006020820190508181036000830152613f1a81613a99565b9050919050565b60006020820190508181036000830152613f3a81613abc565b9050919050565b60006020820190508181036000830152613f5a81613adf565b9050919050565b60006020820190508181036000830152613f7a81613b02565b9050919050565b60006020820190508181036000830152613f9a81613b25565b9050919050565b60006020820190508181036000830152613fba81613b48565b9050919050565b60006020820190508181036000830152613fda81613b8e565b9050919050565b60006020820190508181036000830152613ffa81613bb1565b9050919050565b6000602082019050818103600083015261401a81613bd4565b9050919050565b60006020820190506140366000830184613c06565b92915050565b6000614046614057565b9050614052828261435c565b919050565b6000604051905090565b600067ffffffffffffffff82111561407c5761407b6144f2565b5b61408582614535565b9050602081019050919050565b600067ffffffffffffffff8211156140ad576140ac6144f2565b5b6140b682614535565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061416a826142de565b9150614175836142de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141aa576141a9614407565b5b828201905092915050565b60006141c0826142de565b91506141cb836142de565b9250826141db576141da614436565b5b828204905092915050565b60006141f1826142de565b91506141fc836142de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423557614234614407565b5b828202905092915050565b600061424b826142de565b9150614256836142de565b92508282101561426957614268614407565b5b828203905092915050565b600061427f826142be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143155780820151818401526020810190506142fa565b83811115614324576000848401525b50505050565b6000600282049050600182168061434257607f821691505b6020821081141561435657614355614465565b5b50919050565b61436582614535565b810181811067ffffffffffffffff82111715614384576143836144f2565b5b80604052505050565b6000614398826142de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143cb576143ca614407565b5b600182019050919050565b60006143e1826142de565b91506143ec836142de565b9250826143fc576143fb614436565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7420616d6f756e74206d7573742062652067726561746564207468616e60008201527f20302e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682e0000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53757270617373696e67206d617820737570706c792e00000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203230206174206f6e636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203220465245452052504760008201527f204865726f657300000000000000000000000000000000000000000000000000602082015250565b614bb081614274565b8114614bbb57600080fd5b50565b614bc781614286565b8114614bd257600080fd5b50565b614bde81614292565b8114614be957600080fd5b50565b614bf5816142de565b8114614c0057600080fd5b5056fea26469706673582212202c17745a7869141e01d68d710fe0f11afe4a205740b4974f9dc0b6cf73a178d364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a525047204865726f657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452504748000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d54446d554d53614e727152755372704d6e636b334b7a43326264596f535266596858793145457a5751784e4d0000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063627804af1161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610823578063dee40b511461084c578063e985e9c514610877578063f2fde38b146108b4578063ff9e244f146108dd57610230565b8063b88d4fde1461073c578063be18101914610765578063c668286214610790578063c87b56dd146107bb578063d5abeb01146107f857610230565b8063715018a6116100f2578063715018a61461067d5780638da5cb5b14610694578063940cd05b146106bf57806395d89b41146106e8578063a22cb4651461071357610230565b8063627804af146105865780636352211e146105af57806368199a41146105ec5780636c0360eb1461061557806370a082311461064057610230565b80632f745c59116101bc578063438b630011610180578063438b63001461048d5780634f6ccce7146104ca578063518302271461050757806355f804b3146105325780635c975abb1461055b57610230565b80632f745c59146103d657806331cb3eff146104135780633ccfd60b1461043e57806340c10f191461044857806342842e0e1461046457610230565b8063095ea7b311610203578063095ea7b314610303578063121535631461032c57806318160ddd14610357578063239c70ae1461038257806323b872dd146103ad57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613606565b610908565b6040516102699190613ce4565b60405180910390f35b34801561027e57600080fd5b50610299600480360381019061029491906135d9565b610982565b005b3480156102a757600080fd5b506102b0610a1b565b6040516102bd9190613cff565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e891906136a9565b610aad565b6040516102fa9190613c5b565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613599565b610b32565b005b34801561033857600080fd5b50610341610c4a565b60405161034e9190613cff565b60405180910390f35b34801561036357600080fd5b5061036c610cd8565b6040516103799190614021565b60405180910390f35b34801561038e57600080fd5b50610397610ce5565b6040516103a49190614021565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613483565b610ceb565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613599565b610d4b565b60405161040a9190614021565b60405180910390f35b34801561041f57600080fd5b50610428610df0565b6040516104359190614021565b60405180910390f35b610446610df6565b005b610462600480360381019061045d9190613599565b610eeb565b005b34801561047057600080fd5b5061048b60048036038101906104869190613483565b6113ae565b005b34801561049957600080fd5b506104b460048036038101906104af9190613416565b6113ce565b6040516104c19190613cc2565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906136a9565b61147c565b6040516104fe9190614021565b60405180910390f35b34801561051357600080fd5b5061051c6114ed565b6040516105299190613ce4565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613660565b611500565b005b34801561056757600080fd5b50610570611596565b60405161057d9190613ce4565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613599565b6115a9565b005b3480156105bb57600080fd5b506105d660048036038101906105d191906136a9565b6116bd565b6040516105e39190613c5b565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613660565b61176f565b005b34801561062157600080fd5b5061062a611805565b6040516106379190613cff565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613416565b611893565b6040516106749190614021565b60405180910390f35b34801561068957600080fd5b5061069261194b565b005b3480156106a057600080fd5b506106a96119d3565b6040516106b69190613c5b565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906135d9565b6119fd565b005b3480156106f457600080fd5b506106fd611a96565b60405161070a9190613cff565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613559565b611b28565b005b34801561074857600080fd5b50610763600480360381019061075e91906134d6565b611b3e565b005b34801561077157600080fd5b5061077a611ba0565b6040516107879190614021565b60405180910390f35b34801561079c57600080fd5b506107a5611ba6565b6040516107b29190613cff565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906136a9565b611c34565b6040516107ef9190613cff565b60405180910390f35b34801561080457600080fd5b5061080d611d85565b60405161081a9190614021565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613660565b611d8b565b005b34801561085857600080fd5b50610861611e21565b60405161086e9190614021565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613443565b611e27565b6040516108ab9190613ce4565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613416565b611ebb565b005b3480156108e957600080fd5b506108f2611fb3565b6040516108ff9190614021565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097b575061097a82611fb9565b5b9050919050565b61098a61209b565b73ffffffffffffffffffffffffffffffffffffffff166109a86119d3565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613f41565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610a2a9061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a569061432a565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b5050505050905090565b6000610ab8826120a3565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613f21565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3d826116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bcd61209b565b73ffffffffffffffffffffffffffffffffffffffff161480610bfc5750610bfb81610bf661209b565b611e27565b5b610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613e61565b60405180910390fd5b610c45838361210f565b505050565b60148054610c579061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c839061432a565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b505050505081565b6000600880549050905090565b60125481565b610cfc610cf661209b565b826121c8565b610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613fc1565b60405180910390fd5b610d468383836122a6565b505050565b6000610d5683611893565b8210610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613d41565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610dfe61209b565b73ffffffffffffffffffffffffffffffffffffffff16610e1c6119d3565b73ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613f41565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e9890613c46565b60006040518083038185875af1925050503d8060008114610ed5576040519150601f19603f3d011682016040523d82523d6000602084013e610eda565b606091505b5050905080610ee857600080fd5b50565b6000610ef5610cd8565b9050601360009054906101000a900460ff1615610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d21565b60405180910390fd5b60008211610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613de1565b60405180910390fd5b601254821115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613f81565b60405180910390fd5b6011548282610fde919061415f565b111561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690613f01565b60405180910390fd5b6103e881101561122c576101f48110156111d6576002601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90614001565b60405180910390fd5b600282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611102919061415f565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614001565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118e919061415f565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611227565b81600d546111e491906141e6565b341015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613ec1565b60405180910390fd5b5b611372565b6103e8811015801561123f5750610fa081105b156112995781600e5461125291906141e6565b341015611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613ec1565b60405180910390fd5b611371565b610fa081101580156112ac5750611b5881105b156113065781600f546112bf91906141e6565b341015611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890613ec1565b60405180910390fd5b611370565b611b588110158015611319575061271081105b1561136f578160105461132c91906141e6565b34101561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613ec1565b60405180910390fd5b5b5b5b5b6000600190505b8281116113a857611395848284611390919061415f565b61250d565b80806113a09061438d565b915050611379565b50505050565b6113c983838360405180602001604052806000815250611b3e565b505050565b606060006113db83611893565b905060008167ffffffffffffffff8111156113f9576113f86144f2565b5b6040519080825280602002602001820160405280156114275781602001602082028036833780820191505090505b50905060005b828110156114715761143f8582610d4b565b828281518110611452576114516144c3565b5b60200260200101818152505080806114699061438d565b91505061142d565b508092505050919050565b6000611486610cd8565b82106114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613fe1565b60405180910390fd5b600882815481106114db576114da6144c3565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61150861209b565b73ffffffffffffffffffffffffffffffffffffffff166115266119d3565b73ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390613f41565b60405180910390fd5b80600b908051906020019061159292919061322a565b5050565b601360009054906101000a900460ff1681565b6115b161209b565b73ffffffffffffffffffffffffffffffffffffffff166115cf6119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613f41565b60405180910390fd5b600061162f610cd8565b90506011548282611640919061415f565b1115611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890613f01565b60405180910390fd5b6000600190505b8281116116b7576116a484828461169f919061415f565b61250d565b80806116af9061438d565b915050611688565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613ea1565b60405180910390fd5b80915050919050565b61177761209b565b73ffffffffffffffffffffffffffffffffffffffff166117956119d3565b73ffffffffffffffffffffffffffffffffffffffff16146117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613f41565b60405180910390fd5b806014908051906020019061180192919061322a565b5050565b600b80546118129061432a565b80601f016020809104026020016040519081016040528092919081815260200182805461183e9061432a565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613e81565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61195361209b565b73ffffffffffffffffffffffffffffffffffffffff166119716119d3565b73ffffffffffffffffffffffffffffffffffffffff16146119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613f41565b60405180910390fd5b6119d1600061252b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a0561209b565b73ffffffffffffffffffffffffffffffffffffffff16611a236119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613f41565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606060018054611aa59061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad19061432a565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b5050505050905090565b611b3a611b3361209b565b83836125f1565b5050565b611b4f611b4961209b565b836121c8565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613fc1565b60405180910390fd5b611b9a8484848461275e565b50505050565b600e5481565b600c8054611bb39061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdf9061432a565b8015611c2c5780601f10611c0157610100808354040283529160200191611c2c565b820191906000526020600020905b815481529060010190602001808311611c0f57829003601f168201915b505050505081565b6060601360019054906101000a900460ff16611cdc5760148054611c579061432a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c839061432a565b8015611cd05780601f10611ca557610100808354040283529160200191611cd0565b820191906000526020600020905b815481529060010190602001808311611cb357829003601f168201915b50505050509050611d80565b611ce5826120a3565b611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90613f61565b60405180910390fd5b6000611d2e6127ba565b90506000815111611d4e5760405180602001604052806000815250611d7c565b80611d588461284c565b600c604051602001611d6c93929190613c15565b6040516020818303038152906040525b9150505b919050565b60115481565b611d9361209b565b73ffffffffffffffffffffffffffffffffffffffff16611db16119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613f41565b60405180910390fd5b80600c9080519060200190611e1d92919061322a565b5050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec361209b565b73ffffffffffffffffffffffffffffffffffffffff16611ee16119d3565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613f41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613d81565b60405180910390fd5b611fb08161252b565b50565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120945750612093826129ad565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612182836116bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d3826120a3565b612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990613e41565b60405180910390fd5b600061221d836116bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061225f575061225e8185611e27565b5b8061229d57508373ffffffffffffffffffffffffffffffffffffffff1661228584610aad565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c6826116bd565b73ffffffffffffffffffffffffffffffffffffffff161461231c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231390613da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390613e01565b60405180910390fd5b612397838383612a17565b6123a260008261210f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f29190614240565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612449919061415f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612508838383612b2b565b505050565b612527828260405180602001604052806000815250612b30565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790613e21565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127519190613ce4565b60405180910390a3505050565b6127698484846122a6565b61277584848484612b8b565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90613d61565b60405180910390fd5b50505050565b6060600b80546127c99061432a565b80601f01602080910402602001604051908101604052809291908181526020018280546127f59061432a565b80156128425780601f1061281757610100808354040283529160200191612842565b820191906000526020600020905b81548152906001019060200180831161282557829003601f168201915b5050505050905090565b60606000821415612894576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a8565b600082905060005b600082146128c65780806128af9061438d565b915050600a826128bf91906141b5565b915061289c565b60008167ffffffffffffffff8111156128e2576128e16144f2565b5b6040519080825280601f01601f1916602001820160405280156129145781602001600182028036833780820191505090505b5090505b600085146129a15760018261292d9190614240565b9150600a8561293c91906143d6565b6030612948919061415f565b60f81b81838151811061295e5761295d6144c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299a91906141b5565b9450612918565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a22838383612d22565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6557612a6081612d27565b612aa4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aa357612aa28382612d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae757612ae281612edd565b612b26565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2557612b248282612fae565b5b5b505050565b505050565b612b3a838361302d565b612b476000848484612b8b565b612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d90613d61565b60405180910390fd5b505050565b6000612bac8473ffffffffffffffffffffffffffffffffffffffff16613207565b15612d15578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd561209b565b8786866040518563ffffffff1660e01b8152600401612bf79493929190613c76565b602060405180830381600087803b158015612c1157600080fd5b505af1925050508015612c4257506040513d601f19601f82011682018060405250810190612c3f9190613633565b60015b612cc5573d8060008114612c72576040519150601f19603f3d011682016040523d82523d6000602084013e612c77565b606091505b50600081511415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613d61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7d84611893565b612d879190614240565b9050600060076000848152602001908152602001600020549050818114612e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef19190614240565b9050600060096000848152602001908152602001600020549050600060088381548110612f2157612f206144c3565b5b906000526020600020015490508060088381548110612f4357612f426144c3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9257612f91614494565b5b6001900381819060005260206000200160009055905550505050565b6000612fb983611893565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490613ee1565b60405180910390fd5b6130a6816120a3565b156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd90613dc1565b60405180910390fd5b6130f260008383612a17565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613142919061415f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461320360008383612b2b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132369061432a565b90600052602060002090601f016020900481019282613258576000855561329f565b82601f1061327157805160ff191683800117855561329f565b8280016001018555821561329f579182015b8281111561329e578251825591602001919060010190613283565b5b5090506132ac91906132b0565b5090565b5b808211156132c95760008160009055506001016132b1565b5090565b60006132e06132db84614061565b61403c565b9050828152602081018484840111156132fc576132fb614526565b5b6133078482856142e8565b509392505050565b600061332261331d84614092565b61403c565b90508281526020810184848401111561333e5761333d614526565b5b6133498482856142e8565b509392505050565b60008135905061336081614ba7565b92915050565b60008135905061337581614bbe565b92915050565b60008135905061338a81614bd5565b92915050565b60008151905061339f81614bd5565b92915050565b600082601f8301126133ba576133b9614521565b5b81356133ca8482602086016132cd565b91505092915050565b600082601f8301126133e8576133e7614521565b5b81356133f884826020860161330f565b91505092915050565b60008135905061341081614bec565b92915050565b60006020828403121561342c5761342b614530565b5b600061343a84828501613351565b91505092915050565b6000806040838503121561345a57613459614530565b5b600061346885828601613351565b925050602061347985828601613351565b9150509250929050565b60008060006060848603121561349c5761349b614530565b5b60006134aa86828701613351565b93505060206134bb86828701613351565b92505060406134cc86828701613401565b9150509250925092565b600080600080608085870312156134f0576134ef614530565b5b60006134fe87828801613351565b945050602061350f87828801613351565b935050604061352087828801613401565b925050606085013567ffffffffffffffff8111156135415761354061452b565b5b61354d878288016133a5565b91505092959194509250565b600080604083850312156135705761356f614530565b5b600061357e85828601613351565b925050602061358f85828601613366565b9150509250929050565b600080604083850312156135b0576135af614530565b5b60006135be85828601613351565b92505060206135cf85828601613401565b9150509250929050565b6000602082840312156135ef576135ee614530565b5b60006135fd84828501613366565b91505092915050565b60006020828403121561361c5761361b614530565b5b600061362a8482850161337b565b91505092915050565b60006020828403121561364957613648614530565b5b600061365784828501613390565b91505092915050565b60006020828403121561367657613675614530565b5b600082013567ffffffffffffffff8111156136945761369361452b565b5b6136a0848285016133d3565b91505092915050565b6000602082840312156136bf576136be614530565b5b60006136cd84828501613401565b91505092915050565b60006136e28383613bf7565b60208301905092915050565b6136f781614274565b82525050565b6000613708826140e8565b6137128185614116565b935061371d836140c3565b8060005b8381101561374e57815161373588826136d6565b975061374083614109565b925050600181019050613721565b5085935050505092915050565b61376481614286565b82525050565b6000613775826140f3565b61377f8185614127565b935061378f8185602086016142f7565b61379881614535565b840191505092915050565b60006137ae826140fe565b6137b88185614143565b93506137c88185602086016142f7565b6137d181614535565b840191505092915050565b60006137e7826140fe565b6137f18185614154565b93506138018185602086016142f7565b80840191505092915050565b6000815461381a8161432a565b6138248186614154565b9450600182166000811461383f576001811461385057613883565b60ff19831686528186019350613883565b613859856140d3565b60005b8381101561387b5781548189015260018201915060208101905061385c565b838801955050505b50505092915050565b6000613899601283614143565b91506138a482614546565b602082019050919050565b60006138bc602b83614143565b91506138c78261456f565b604082019050919050565b60006138df603283614143565b91506138ea826145be565b604082019050919050565b6000613902602683614143565b915061390d8261460d565b604082019050919050565b6000613925602583614143565b91506139308261465c565b604082019050919050565b6000613948601c83614143565b9150613953826146ab565b602082019050919050565b600061396b602383614143565b9150613976826146d4565b604082019050919050565b600061398e602483614143565b915061399982614723565b604082019050919050565b60006139b1601983614143565b91506139bc82614772565b602082019050919050565b60006139d4602c83614143565b91506139df8261479b565b604082019050919050565b60006139f7603883614143565b9150613a02826147ea565b604082019050919050565b6000613a1a602a83614143565b9150613a2582614839565b604082019050919050565b6000613a3d602983614143565b9150613a4882614888565b604082019050919050565b6000613a60600f83614143565b9150613a6b826148d7565b602082019050919050565b6000613a83602083614143565b9150613a8e82614900565b602082019050919050565b6000613aa6601683614143565b9150613ab182614929565b602082019050919050565b6000613ac9602c83614143565b9150613ad482614952565b604082019050919050565b6000613aec602083614143565b9150613af7826149a1565b602082019050919050565b6000613b0f602f83614143565b9150613b1a826149ca565b604082019050919050565b6000613b32602183614143565b9150613b3d82614a19565b604082019050919050565b6000613b55602183614143565b9150613b6082614a68565b604082019050919050565b6000613b78600083614138565b9150613b8382614ab7565b600082019050919050565b6000613b9b603183614143565b9150613ba682614aba565b604082019050919050565b6000613bbe602c83614143565b9150613bc982614b09565b604082019050919050565b6000613be1602783614143565b9150613bec82614b58565b604082019050919050565b613c00816142de565b82525050565b613c0f816142de565b82525050565b6000613c2182866137dc565b9150613c2d82856137dc565b9150613c39828461380d565b9150819050949350505050565b6000613c5182613b6b565b9150819050919050565b6000602082019050613c7060008301846136ee565b92915050565b6000608082019050613c8b60008301876136ee565b613c9860208301866136ee565b613ca56040830185613c06565b8181036060830152613cb7818461376a565b905095945050505050565b60006020820190508181036000830152613cdc81846136fd565b905092915050565b6000602082019050613cf9600083018461375b565b92915050565b60006020820190508181036000830152613d1981846137a3565b905092915050565b60006020820190508181036000830152613d3a8161388c565b9050919050565b60006020820190508181036000830152613d5a816138af565b9050919050565b60006020820190508181036000830152613d7a816138d2565b9050919050565b60006020820190508181036000830152613d9a816138f5565b9050919050565b60006020820190508181036000830152613dba81613918565b9050919050565b60006020820190508181036000830152613dda8161393b565b9050919050565b60006020820190508181036000830152613dfa8161395e565b9050919050565b60006020820190508181036000830152613e1a81613981565b9050919050565b60006020820190508181036000830152613e3a816139a4565b9050919050565b60006020820190508181036000830152613e5a816139c7565b9050919050565b60006020820190508181036000830152613e7a816139ea565b9050919050565b60006020820190508181036000830152613e9a81613a0d565b9050919050565b60006020820190508181036000830152613eba81613a30565b9050919050565b60006020820190508181036000830152613eda81613a53565b9050919050565b60006020820190508181036000830152613efa81613a76565b9050919050565b60006020820190508181036000830152613f1a81613a99565b9050919050565b60006020820190508181036000830152613f3a81613abc565b9050919050565b60006020820190508181036000830152613f5a81613adf565b9050919050565b60006020820190508181036000830152613f7a81613b02565b9050919050565b60006020820190508181036000830152613f9a81613b25565b9050919050565b60006020820190508181036000830152613fba81613b48565b9050919050565b60006020820190508181036000830152613fda81613b8e565b9050919050565b60006020820190508181036000830152613ffa81613bb1565b9050919050565b6000602082019050818103600083015261401a81613bd4565b9050919050565b60006020820190506140366000830184613c06565b92915050565b6000614046614057565b9050614052828261435c565b919050565b6000604051905090565b600067ffffffffffffffff82111561407c5761407b6144f2565b5b61408582614535565b9050602081019050919050565b600067ffffffffffffffff8211156140ad576140ac6144f2565b5b6140b682614535565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061416a826142de565b9150614175836142de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141aa576141a9614407565b5b828201905092915050565b60006141c0826142de565b91506141cb836142de565b9250826141db576141da614436565b5b828204905092915050565b60006141f1826142de565b91506141fc836142de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423557614234614407565b5b828202905092915050565b600061424b826142de565b9150614256836142de565b92508282101561426957614268614407565b5b828203905092915050565b600061427f826142be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143155780820151818401526020810190506142fa565b83811115614324576000848401525b50505050565b6000600282049050600182168061434257607f821691505b6020821081141561435657614355614465565b5b50919050565b61436582614535565b810181811067ffffffffffffffff82111715614384576143836144f2565b5b80604052505050565b6000614398826142de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143cb576143ca614407565b5b600182019050919050565b60006143e1826142de565b91506143ec836142de565b9250826143fc576143fb614436565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7420616d6f756e74206d7573742062652067726561746564207468616e60008201527f20302e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682e0000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53757270617373696e67206d617820737570706c792e00000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203230206174206f6e636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203220465245452052504760008201527f204865726f657300000000000000000000000000000000000000000000000000602082015250565b614bb081614274565b8114614bbb57600080fd5b50565b614bc781614286565b8114614bd257600080fd5b50565b614bde81614292565b8114614be957600080fd5b50565b614bf5816142de565b8114614c0057600080fd5b5056fea26469706673582212202c17745a7869141e01d68d710fe0f11afe4a205740b4974f9dc0b6cf73a178d364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a525047204865726f657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452504748000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d54446d554d53614e727152755372704d6e636b334b7a43326264596f535266596858793145457a5751784e4d0000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RPG Heroes
Arg [1] : _symbol (string): RPGH
Arg [2] : _unrevealedUrl (string): ipfs://QmTDmUMSaNrqRuSrpMnck3KzC2bdYoSRfYhXy1EEzWQxNM

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 525047204865726f657300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5250474800000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d54446d554d53614e727152755372704d6e636b334b7a43
Arg [9] : 326264596f535266596858793145457a5751784e4d0000000000000000000000


Deployed Bytecode Sourcemap

45602:4663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39353:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49778:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27255:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46104:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45997:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28482:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45908:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49955:192;;;:::i;:::-;;46543:1473;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28892:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48385:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40183:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46069:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49507:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46037:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48071:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25866:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50155:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45691:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25596:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49865:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28025:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29148:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45812:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45719:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48783:716;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45958:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49619:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45763:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28251:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45860:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39353:224;39455:4;39494:35;39479:50;;;:11;:50;;;;:90;;;;39533:36;39557:11;39533:23;:36::i;:::-;39479:90;39472:97;;39353:224;;;:::o;49778:79::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49843:6:::1;49834;;:15;;;;;;;;;;;;;;;;;;49778:79:::0;:::o;26172:100::-;26226:13;26259:5;26252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26172:100;:::o;27732:221::-;27808:7;27836:16;27844:7;27836;:16::i;:::-;27828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27921:15;:24;27937:7;27921:24;;;;;;;;;;;;;;;;;;;;;27914:31;;27732:221;;;:::o;27255:411::-;27336:13;27352:23;27367:7;27352:14;:23::i;:::-;27336:39;;27400:5;27394:11;;:2;:11;;;;27386:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:5;27478:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27503:37;27520:5;27527:12;:10;:12::i;:::-;27503:16;:37::i;:::-;27478:62;27456:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27637:21;27646:2;27650:7;27637:8;:21::i;:::-;27325:341;27255:411;;:::o;46104:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39993:113::-;40054:7;40081:10;:17;;;;40074:24;;39993:113;:::o;45997:33::-;;;;:::o;28482:339::-;28677:41;28696:12;:10;:12::i;:::-;28710:7;28677:18;:41::i;:::-;28669:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:28;28795:4;28801:2;28805:7;28785:9;:28::i;:::-;28482:339;;;:::o;39661:256::-;39758:7;39794:23;39811:5;39794:16;:23::i;:::-;39786:5;:31;39778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:12;:19;39896:5;39883:19;;;;;;;;;;;;;;;:26;39903:5;39883:26;;;;;;;;;;;;39876:33;;39661:256;;;;:::o;45908:43::-;;;;:::o;49955:192::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50012:12:::1;50038:10;50030:24;;50076:21;50030:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50011:101;;;50131:7;50123:16;;;::::0;::::1;;50000:147;49955:192::o:0;46543:1473::-;46617:14;46634:13;:11;:13::i;:::-;46617:30;;46669:6;;;;;;;;;;;46668:7;46660:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;46731:1;46717:11;:15;46709:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46806:13;;46791:11;:28;;46783:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46900:9;;46885:11;46876:6;:20;;;;:::i;:::-;:33;;46868:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46962:4;46953:6;:13;46949:950;;;46996:3;46987:6;:12;46983:464;;;47061:1;47028:18;:30;47047:10;47028:30;;;;;;;;;;;;;;;;:34;47020:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47181:1;47166:11;47133:18;:30;47152:10;47133:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:49;;47125:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;47311:11;47278:18;:30;47297:10;47278:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;47245:18;:30;47264:10;47245:30;;;;;;;;;;;;;;;:77;;;;46983:464;;;47400:11;47384:13;;:27;;;;:::i;:::-;47371:9;:40;;47363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46983:464;46949:950;;;47487:4;47477:6;:14;;:31;;;;;47504:4;47495:6;:13;47477:31;47473:426;;;47561:11;47546:12;;:26;;;;:::i;:::-;47533:9;:39;;47525:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47473:426;;;47633:4;47623:6;:14;;:31;;;;;47650:4;47641:6;:13;47623:31;47619:280;;;47707:11;47692:12;;:26;;;;:::i;:::-;47679:9;:39;;47671:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47619:280;;;47779:4;47769:6;:14;;:32;;;;;47796:5;47787:6;:14;47769:32;47765:134;;;47856:11;47839:14;;:28;;;;:::i;:::-;47826:9;:41;;47818:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47765:134;47619:280;47473:426;46949:950;47918:9;47930:1;47918:13;;47913:96;47938:11;47933:1;:16;47913:96;;47971:26;47981:3;47995:1;47986:6;:10;;;;:::i;:::-;47971:9;:26::i;:::-;47951:3;;;;;:::i;:::-;;;;47913:96;;;;46606:1410;46543:1473;;:::o;28892:185::-;29030:39;29047:4;29053:2;29057:7;29030:39;;;;;;;;;;;;:16;:39::i;:::-;28892:185;;;:::o;48385:390::-;48472:16;48506:23;48532:17;48542:6;48532:9;:17::i;:::-;48506:43;;48560:25;48602:15;48588:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48560:58;;48634:9;48629:113;48649:15;48645:1;:19;48629:113;;;48700:30;48720:6;48728:1;48700:19;:30::i;:::-;48686:8;48695:1;48686:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48666:3;;;;;:::i;:::-;;;;48629:113;;;;48759:8;48752:15;;;;48385:390;;;:::o;40183:233::-;40258:7;40294:30;:28;:30::i;:::-;40286:5;:38;40278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:10;40402:5;40391:17;;;;;;;;:::i;:::-;;;;;;;;;;40384:24;;40183:233;;;:::o;46069:28::-;;;;;;;;;;;;;:::o;49507:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49592:11:::1;49582:7;:21;;;;;;;;;;;;:::i;:::-;;49507:104:::0;:::o;46037:25::-;;;;;;;;;;;;;:::o;48071:306::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48150:14:::1;48167:13;:11;:13::i;:::-;48150:30;;48225:9;;48210:11;48201:6;:20;;;;:::i;:::-;:33;;48193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48279:9;48291:1;48279:13;;48274:96;48299:11;48294:1;:16;48274:96;;48332:26;48342:3;48356:1;48347:6;:10;;;;:::i;:::-;48332:9;:26::i;:::-;48312:3;;;;;:::i;:::-;;;;48274:96;;;;48139:238;48071:306:::0;;:::o;25866:239::-;25938:7;25958:13;25974:7;:16;25982:7;25974:16;;;;;;;;;;;;;;;;;;;;;25958:32;;26026:1;26009:19;;:5;:19;;;;26001:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26092:5;26085:12;;;25866:239;;;:::o;50155:107::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50247:7:::1;50231:13;:23;;;;;;;;;;;;:::i;:::-;;50155:107:::0;:::o;45691:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25596:208::-;25668:7;25713:1;25696:19;;:5;:19;;;;25688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25780:9;:16;25790:5;25780:16;;;;;;;;;;;;;;;;25773:23;;25596:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;49865:82::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49933:6:::1;49922:8;;:17;;;;;;;;;;;;;;;;;;49865:82:::0;:::o;26341:104::-;26397:13;26430:7;26423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26341:104;:::o;28025:155::-;28120:52;28139:12;:10;:12::i;:::-;28153:8;28163;28120:18;:52::i;:::-;28025:155;;:::o;29148:328::-;29323:41;29342:12;:10;:12::i;:::-;29356:7;29323:18;:41::i;:::-;29315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29429:39;29443:4;29449:2;29453:7;29462:5;29429:13;:39::i;:::-;29148:328;;;;:::o;45812:41::-;;;;:::o;45719:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48783:716::-;48901:13;48937:8;;;;;;;;;;;48932:62;;48969:13;48962:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48932:62;49028:16;49036:7;49028;:16::i;:::-;49006:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49132:28;49163:10;:8;:10::i;:::-;49132:41;;49235:1;49210:14;49204:28;:32;:287;;;;;;;;;;;;;;;;;49328:14;49369:18;:7;:16;:18::i;:::-;49414:13;49285:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49204:287;49184:307;;;48783:716;;;;:::o;45958:32::-;;;;:::o;49619:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49745:17:::1;49729:13;:33;;;;;;;;;;;;:::i;:::-;;49619:151:::0;:::o;45763:42::-;;;;:::o;28251:164::-;28348:4;28372:18;:25;28391:5;28372:25;;;;;;;;;;;;;;;:35;28398:8;28372:35;;;;;;;;;;;;;;;;;;;;;;;;;28365:42;;28251:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;45860:41::-;;;;:::o;25227:305::-;25329:4;25381:25;25366:40;;;:11;:40;;;;:105;;;;25438:33;25423:48;;;:11;:48;;;;25366:105;:158;;;;25488:36;25512:11;25488:23;:36::i;:::-;25366:158;25346:178;;25227:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30986:127::-;31051:4;31103:1;31075:30;;:7;:16;31083:7;31075:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31068:37;;30986:127;;;:::o;35132:174::-;35234:2;35207:15;:24;35223:7;35207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35290:7;35286:2;35252:46;;35261:23;35276:7;35261:14;:23::i;:::-;35252:46;;;;;;;;;;;;35132:174;;:::o;31280:348::-;31373:4;31398:16;31406:7;31398;:16::i;:::-;31390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:13;31490:23;31505:7;31490:14;:23::i;:::-;31474:39;;31543:5;31532:16;;:7;:16;;;:52;;;;31552:32;31569:5;31576:7;31552:16;:32::i;:::-;31532:52;:87;;;;31612:7;31588:31;;:20;31600:7;31588:11;:20::i;:::-;:31;;;31532:87;31524:96;;;31280:348;;;;:::o;34389:625::-;34548:4;34521:31;;:23;34536:7;34521:14;:23::i;:::-;:31;;;34513:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34627:1;34613:16;;:2;:16;;;;34605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34683:39;34704:4;34710:2;34714:7;34683:20;:39::i;:::-;34787:29;34804:1;34808:7;34787:8;:29::i;:::-;34848:1;34829:9;:15;34839:4;34829:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34877:1;34860:9;:13;34870:2;34860:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34908:2;34889:7;:16;34897:7;34889:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34947:7;34943:2;34928:27;;34937:4;34928:27;;;;;;;;;;;;34968:38;34988:4;34994:2;34998:7;34968:19;:38::i;:::-;34389:625;;;:::o;31970:110::-;32046:26;32056:2;32060:7;32046:26;;;;;;;;;;;;:9;:26::i;:::-;31970:110;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35448:315::-;35603:8;35594:17;;:5;:17;;;;35586:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:8;35652:18;:25;35671:5;35652:25;;;;;;;;;;;;;;;:35;35678:8;35652:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35736:8;35714:41;;35729:5;35714:41;;;35746:8;35714:41;;;;;;:::i;:::-;;;;;;;;35448:315;;;:::o;30358:::-;30515:28;30525:4;30531:2;30535:7;30515:9;:28::i;:::-;30562:48;30585:4;30591:2;30595:7;30604:5;30562:22;:48::i;:::-;30554:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:315;;;;:::o;46412:108::-;46472:13;46505:7;46498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46412:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;41029:589::-;41173:45;41200:4;41206:2;41210:7;41173:26;:45::i;:::-;41251:1;41235:18;;:4;:18;;;41231:187;;;41270:40;41302:7;41270:31;:40::i;:::-;41231:187;;;41340:2;41332:10;;:4;:10;;;41328:90;;41359:47;41392:4;41398:7;41359:32;:47::i;:::-;41328:90;41231:187;41446:1;41432:16;;:2;:16;;;41428:183;;;41465:45;41502:7;41465:36;:45::i;:::-;41428:183;;;41538:4;41532:10;;:2;:10;;;41528:83;;41559:40;41587:2;41591:7;41559:27;:40::i;:::-;41528:83;41428:183;41029:589;;;:::o;38210:125::-;;;;:::o;32307:321::-;32437:18;32443:2;32447:7;32437:5;:18::i;:::-;32488:54;32519:1;32523:2;32527:7;32536:5;32488:22;:54::i;:::-;32466:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:321;;;:::o;36328:799::-;36483:4;36504:15;:2;:13;;;:15::i;:::-;36500:620;;;36556:2;36540:36;;;36577:12;:10;:12::i;:::-;36591:4;36597:7;36606:5;36540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36799:1;36782:6;:13;:18;36778:272;;;36825:60;;;;;;;;;;:::i;:::-;;;;;;;;36778:272;37000:6;36994:13;36985:6;36981:2;36977:15;36970:38;36536:529;36673:41;;;36663:51;;;:6;:51;;;;36656:58;;;;;36500:620;37104:4;37097:11;;36328:799;;;;;;;:::o;37699:126::-;;;;:::o;42341:164::-;42445:10;:17;;;;42418:15;:24;42434:7;42418:24;;;;;;;;;;;:44;;;;42473:10;42489:7;42473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42341:164;:::o;43132:988::-;43398:22;43448:1;43423:22;43440:4;43423:16;:22::i;:::-;:26;;;;:::i;:::-;43398:51;;43460:18;43481:17;:26;43499:7;43481:26;;;;;;;;;;;;43460:47;;43628:14;43614:10;:28;43610:328;;43659:19;43681:12;:18;43694:4;43681:18;;;;;;;;;;;;;;;:34;43700:14;43681:34;;;;;;;;;;;;43659:56;;43765:11;43732:12;:18;43745:4;43732:18;;;;;;;;;;;;;;;:30;43751:10;43732:30;;;;;;;;;;;:44;;;;43882:10;43849:17;:30;43867:11;43849:30;;;;;;;;;;;:43;;;;43644:294;43610:328;44034:17;:26;44052:7;44034:26;;;;;;;;;;;44027:33;;;44078:12;:18;44091:4;44078:18;;;;;;;;;;;;;;;:34;44097:14;44078:34;;;;;;;;;;;44071:41;;;43213:907;;43132:988;;:::o;44415:1079::-;44668:22;44713:1;44693:10;:17;;;;:21;;;;:::i;:::-;44668:46;;44725:18;44746:15;:24;44762:7;44746:24;;;;;;;;;;;;44725:45;;45097:19;45119:10;45130:14;45119:26;;;;;;;;:::i;:::-;;;;;;;;;;45097:48;;45183:11;45158:10;45169;45158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45294:10;45263:15;:28;45279:11;45263:28;;;;;;;;;;;:41;;;;45435:15;:24;45451:7;45435:24;;;;;;;;;;;45428:31;;;45470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44486:1008;;;44415:1079;:::o;41919:221::-;42004:14;42021:20;42038:2;42021:16;:20::i;:::-;42004:37;;42079:7;42052:12;:16;42065:2;42052:16;;;;;;;;;;;;;;;:24;42069:6;42052:24;;;;;;;;;;;:34;;;;42126:6;42097:17;:26;42115:7;42097:26;;;;;;;;;;;:35;;;;41993:147;41919:221;;:::o;32964:439::-;33058:1;33044:16;;:2;:16;;;;33036:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:16;33125:7;33117;:16::i;:::-;33116:17;33108:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33179:45;33208:1;33212:2;33216:7;33179:20;:45::i;:::-;33254:1;33237:9;:13;33247:2;33237:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33285:2;33266:7;:16;33274:7;33266:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33330:7;33326:2;33305:33;;33322:1;33305:33;;;;;;;;;;;;33351:44;33379:1;33383:2;33387:7;33351:19;:44::i;:::-;32964:439;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:::-;18255:3;18276:67;18340:2;18335:3;18276:67;:::i;:::-;18269:74;;18352:93;18441:3;18352:93;:::i;:::-;18470:2;18465:3;18461:12;18454:19;;18113:366;;;:::o;18485:398::-;18644:3;18665:83;18746:1;18741:3;18665:83;:::i;:::-;18658:90;;18757:93;18846:3;18757:93;:::i;:::-;18875:1;18870:3;18866:11;18859:18;;18485:398;;;:::o;18889:366::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:108::-;20082:24;20100:5;20082:24;:::i;:::-;20077:3;20070:37;20005:108;;:::o;20119:118::-;20206:24;20224:5;20206:24;:::i;:::-;20201:3;20194:37;20119:118;;:::o;20243:589::-;20468:3;20490:95;20581:3;20572:6;20490:95;:::i;:::-;20483:102;;20602:95;20693:3;20684:6;20602:95;:::i;:::-;20595:102;;20714:92;20802:3;20793:6;20714:92;:::i;:::-;20707:99;;20823:3;20816:10;;20243:589;;;;;;:::o;20838:379::-;21022:3;21044:147;21187:3;21044:147;:::i;:::-;21037:154;;21208:3;21201:10;;20838:379;;;:::o;21223:222::-;21316:4;21354:2;21343:9;21339:18;21331:26;;21367:71;21435:1;21424:9;21420:17;21411:6;21367:71;:::i;:::-;21223:222;;;;:::o;21451:640::-;21646:4;21684:3;21673:9;21669:19;21661:27;;21698:71;21766:1;21755:9;21751:17;21742:6;21698:71;:::i;:::-;21779:72;21847:2;21836:9;21832:18;21823:6;21779:72;:::i;:::-;21861;21929:2;21918:9;21914:18;21905:6;21861:72;:::i;:::-;21980:9;21974:4;21970:20;21965:2;21954:9;21950:18;21943:48;22008:76;22079:4;22070:6;22008:76;:::i;:::-;22000:84;;21451:640;;;;;;;:::o;22097:373::-;22240:4;22278:2;22267:9;22263:18;22255:26;;22327:9;22321:4;22317:20;22313:1;22302:9;22298:17;22291:47;22355:108;22458:4;22449:6;22355:108;:::i;:::-;22347:116;;22097:373;;;;:::o;22476:210::-;22563:4;22601:2;22590:9;22586:18;22578:26;;22614:65;22676:1;22665:9;22661:17;22652:6;22614:65;:::i;:::-;22476:210;;;;:::o;22692:313::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:78;22993:4;22984:6;22920:78;:::i;:::-;22912:86;;22692:313;;;;:::o;23011:419::-;23177:4;23215:2;23204:9;23200:18;23192:26;;23264:9;23258:4;23254:20;23250:1;23239:9;23235:17;23228:47;23292:131;23418:4;23292:131;:::i;:::-;23284:139;;23011:419;;;:::o;23436:::-;23602:4;23640:2;23629:9;23625:18;23617:26;;23689:9;23683:4;23679:20;23675:1;23664:9;23660:17;23653:47;23717:131;23843:4;23717:131;:::i;:::-;23709:139;;23436:419;;;:::o;23861:::-;24027:4;24065:2;24054:9;24050:18;24042:26;;24114:9;24108:4;24104:20;24100:1;24089:9;24085:17;24078:47;24142:131;24268:4;24142:131;:::i;:::-;24134:139;;23861:419;;;:::o;24286:::-;24452:4;24490:2;24479:9;24475:18;24467:26;;24539:9;24533:4;24529:20;24525:1;24514:9;24510:17;24503:47;24567:131;24693:4;24567:131;:::i;:::-;24559:139;;24286:419;;;:::o;24711:::-;24877:4;24915:2;24904:9;24900:18;24892:26;;24964:9;24958:4;24954:20;24950:1;24939:9;24935:17;24928:47;24992:131;25118:4;24992:131;:::i;:::-;24984:139;;24711:419;;;:::o;25136:::-;25302:4;25340:2;25329:9;25325:18;25317:26;;25389:9;25383:4;25379:20;25375:1;25364:9;25360:17;25353:47;25417:131;25543:4;25417:131;:::i;:::-;25409:139;;25136:419;;;:::o;25561:::-;25727:4;25765:2;25754:9;25750:18;25742:26;;25814:9;25808:4;25804:20;25800:1;25789:9;25785:17;25778:47;25842:131;25968:4;25842:131;:::i;:::-;25834:139;;25561:419;;;:::o;25986:::-;26152:4;26190:2;26179:9;26175:18;26167:26;;26239:9;26233:4;26229:20;26225:1;26214:9;26210:17;26203:47;26267:131;26393:4;26267:131;:::i;:::-;26259:139;;25986:419;;;:::o;26411:::-;26577:4;26615:2;26604:9;26600:18;26592:26;;26664:9;26658:4;26654:20;26650:1;26639:9;26635:17;26628:47;26692:131;26818:4;26692:131;:::i;:::-;26684:139;;26411:419;;;:::o;26836:::-;27002:4;27040:2;27029:9;27025:18;27017:26;;27089:9;27083:4;27079:20;27075:1;27064:9;27060:17;27053:47;27117:131;27243:4;27117:131;:::i;:::-;27109:139;;26836:419;;;:::o;27261:::-;27427:4;27465:2;27454:9;27450:18;27442:26;;27514:9;27508:4;27504:20;27500:1;27489:9;27485:17;27478:47;27542:131;27668:4;27542:131;:::i;:::-;27534:139;;27261:419;;;:::o;27686:::-;27852:4;27890:2;27879:9;27875:18;27867:26;;27939:9;27933:4;27929:20;27925:1;27914:9;27910:17;27903:47;27967:131;28093:4;27967:131;:::i;:::-;27959:139;;27686:419;;;:::o;28111:::-;28277:4;28315:2;28304:9;28300:18;28292:26;;28364:9;28358:4;28354:20;28350:1;28339:9;28335:17;28328:47;28392:131;28518:4;28392:131;:::i;:::-;28384:139;;28111:419;;;:::o;28536:::-;28702:4;28740:2;28729:9;28725:18;28717:26;;28789:9;28783:4;28779:20;28775:1;28764:9;28760:17;28753:47;28817:131;28943:4;28817:131;:::i;:::-;28809:139;;28536:419;;;:::o;28961:::-;29127:4;29165:2;29154:9;29150:18;29142:26;;29214:9;29208:4;29204:20;29200:1;29189:9;29185:17;29178:47;29242:131;29368:4;29242:131;:::i;:::-;29234:139;;28961:419;;;:::o;29386:::-;29552:4;29590:2;29579:9;29575:18;29567:26;;29639:9;29633:4;29629:20;29625:1;29614:9;29610:17;29603:47;29667:131;29793:4;29667:131;:::i;:::-;29659:139;;29386:419;;;:::o;29811:::-;29977:4;30015:2;30004:9;30000:18;29992:26;;30064:9;30058:4;30054:20;30050:1;30039:9;30035:17;30028:47;30092:131;30218:4;30092:131;:::i;:::-;30084:139;;29811:419;;;:::o;30236:::-;30402:4;30440:2;30429:9;30425:18;30417:26;;30489:9;30483:4;30479:20;30475:1;30464:9;30460:17;30453:47;30517:131;30643:4;30517:131;:::i;:::-;30509:139;;30236:419;;;:::o;30661:::-;30827:4;30865:2;30854:9;30850:18;30842:26;;30914:9;30908:4;30904:20;30900:1;30889:9;30885:17;30878:47;30942:131;31068:4;30942:131;:::i;:::-;30934:139;;30661:419;;;:::o;31086:::-;31252:4;31290:2;31279:9;31275:18;31267:26;;31339:9;31333:4;31329:20;31325:1;31314:9;31310:17;31303:47;31367:131;31493:4;31367:131;:::i;:::-;31359:139;;31086:419;;;:::o;31511:::-;31677:4;31715:2;31704:9;31700:18;31692:26;;31764:9;31758:4;31754:20;31750:1;31739:9;31735:17;31728:47;31792:131;31918:4;31792:131;:::i;:::-;31784:139;;31511:419;;;:::o;31936:::-;32102:4;32140:2;32129:9;32125:18;32117:26;;32189:9;32183:4;32179:20;32175:1;32164:9;32160:17;32153:47;32217:131;32343:4;32217:131;:::i;:::-;32209:139;;31936:419;;;:::o;32361:::-;32527:4;32565:2;32554:9;32550:18;32542:26;;32614:9;32608:4;32604:20;32600:1;32589:9;32585:17;32578:47;32642:131;32768:4;32642:131;:::i;:::-;32634:139;;32361:419;;;:::o;32786:::-;32952:4;32990:2;32979:9;32975:18;32967:26;;33039:9;33033:4;33029:20;33025:1;33014:9;33010:17;33003:47;33067:131;33193:4;33067:131;:::i;:::-;33059:139;;32786:419;;;:::o;33211:222::-;33304:4;33342:2;33331:9;33327:18;33319:26;;33355:71;33423:1;33412:9;33408:17;33399:6;33355:71;:::i;:::-;33211:222;;;;:::o;33439:129::-;33473:6;33500:20;;:::i;:::-;33490:30;;33529:33;33557:4;33549:6;33529:33;:::i;:::-;33439:129;;;:::o;33574:75::-;33607:6;33640:2;33634:9;33624:19;;33574:75;:::o;33655:307::-;33716:4;33806:18;33798:6;33795:30;33792:56;;;33828:18;;:::i;:::-;33792:56;33866:29;33888:6;33866:29;:::i;:::-;33858:37;;33950:4;33944;33940:15;33932:23;;33655:307;;;:::o;33968:308::-;34030:4;34120:18;34112:6;34109:30;34106:56;;;34142:18;;:::i;:::-;34106:56;34180:29;34202:6;34180:29;:::i;:::-;34172:37;;34264:4;34258;34254:15;34246:23;;33968:308;;;:::o;34282:132::-;34349:4;34372:3;34364:11;;34402:4;34397:3;34393:14;34385:22;;34282:132;;;:::o;34420:141::-;34469:4;34492:3;34484:11;;34515:3;34512:1;34505:14;34549:4;34546:1;34536:18;34528:26;;34420:141;;;:::o;34567:114::-;34634:6;34668:5;34662:12;34652:22;;34567:114;;;:::o;34687:98::-;34738:6;34772:5;34766:12;34756:22;;34687:98;;;:::o;34791:99::-;34843:6;34877:5;34871:12;34861:22;;34791:99;;;:::o;34896:113::-;34966:4;34998;34993:3;34989:14;34981:22;;34896:113;;;:::o;35015:184::-;35114:11;35148:6;35143:3;35136:19;35188:4;35183:3;35179:14;35164:29;;35015:184;;;;:::o;35205:168::-;35288:11;35322:6;35317:3;35310:19;35362:4;35357:3;35353:14;35338:29;;35205:168;;;;:::o;35379:147::-;35480:11;35517:3;35502:18;;35379:147;;;;:::o;35532:169::-;35616:11;35650:6;35645:3;35638:19;35690:4;35685:3;35681:14;35666:29;;35532:169;;;;:::o;35707:148::-;35809:11;35846:3;35831:18;;35707:148;;;;:::o;35861:305::-;35901:3;35920:20;35938:1;35920:20;:::i;:::-;35915:25;;35954:20;35972:1;35954:20;:::i;:::-;35949:25;;36108:1;36040:66;36036:74;36033:1;36030:81;36027:107;;;36114:18;;:::i;:::-;36027:107;36158:1;36155;36151:9;36144:16;;35861:305;;;;:::o;36172:185::-;36212:1;36229:20;36247:1;36229:20;:::i;:::-;36224:25;;36263:20;36281:1;36263:20;:::i;:::-;36258:25;;36302:1;36292:35;;36307:18;;:::i;:::-;36292:35;36349:1;36346;36342:9;36337:14;;36172:185;;;;:::o;36363:348::-;36403:7;36426:20;36444:1;36426:20;:::i;:::-;36421:25;;36460:20;36478:1;36460:20;:::i;:::-;36455:25;;36648:1;36580:66;36576:74;36573:1;36570:81;36565:1;36558:9;36551:17;36547:105;36544:131;;;36655:18;;:::i;:::-;36544:131;36703:1;36700;36696:9;36685:20;;36363:348;;;;:::o;36717:191::-;36757:4;36777:20;36795:1;36777:20;:::i;:::-;36772:25;;36811:20;36829:1;36811:20;:::i;:::-;36806:25;;36850:1;36847;36844:8;36841:34;;;36855:18;;:::i;:::-;36841:34;36900:1;36897;36893:9;36885:17;;36717:191;;;;:::o;36914:96::-;36951:7;36980:24;36998:5;36980:24;:::i;:::-;36969:35;;36914:96;;;:::o;37016:90::-;37050:7;37093:5;37086:13;37079:21;37068:32;;37016:90;;;:::o;37112:149::-;37148:7;37188:66;37181:5;37177:78;37166:89;;37112:149;;;:::o;37267:126::-;37304:7;37344:42;37337:5;37333:54;37322:65;;37267:126;;;:::o;37399:77::-;37436:7;37465:5;37454:16;;37399:77;;;:::o;37482:154::-;37566:6;37561:3;37556;37543:30;37628:1;37619:6;37614:3;37610:16;37603:27;37482:154;;;:::o;37642:307::-;37710:1;37720:113;37734:6;37731:1;37728:13;37720:113;;;37819:1;37814:3;37810:11;37804:18;37800:1;37795:3;37791:11;37784:39;37756:2;37753:1;37749:10;37744:15;;37720:113;;;37851:6;37848:1;37845:13;37842:101;;;37931:1;37922:6;37917:3;37913:16;37906:27;37842:101;37691:258;37642:307;;;:::o;37955:320::-;37999:6;38036:1;38030:4;38026:12;38016:22;;38083:1;38077:4;38073:12;38104:18;38094:81;;38160:4;38152:6;38148:17;38138:27;;38094:81;38222:2;38214:6;38211:14;38191:18;38188:38;38185:84;;;38241:18;;:::i;:::-;38185:84;38006:269;37955:320;;;:::o;38281:281::-;38364:27;38386:4;38364:27;:::i;:::-;38356:6;38352:40;38494:6;38482:10;38479:22;38458:18;38446:10;38443:34;38440:62;38437:88;;;38505:18;;:::i;:::-;38437:88;38545:10;38541:2;38534:22;38324:238;38281:281;;:::o;38568:233::-;38607:3;38630:24;38648:5;38630:24;:::i;:::-;38621:33;;38676:66;38669:5;38666:77;38663:103;;;38746:18;;:::i;:::-;38663:103;38793:1;38786:5;38782:13;38775:20;;38568:233;;;:::o;38807:176::-;38839:1;38856:20;38874:1;38856:20;:::i;:::-;38851:25;;38890:20;38908:1;38890:20;:::i;:::-;38885:25;;38929:1;38919:35;;38934:18;;:::i;:::-;38919:35;38975:1;38972;38968:9;38963:14;;38807:176;;;;:::o;38989:180::-;39037:77;39034:1;39027:88;39134:4;39131:1;39124:15;39158:4;39155:1;39148:15;39175:180;39223:77;39220:1;39213:88;39320:4;39317:1;39310:15;39344:4;39341:1;39334:15;39361:180;39409:77;39406:1;39399:88;39506:4;39503:1;39496:15;39530:4;39527:1;39520:15;39547:180;39595:77;39592:1;39585:88;39692:4;39689:1;39682:15;39716:4;39713:1;39706:15;39733:180;39781:77;39778:1;39771:88;39878:4;39875:1;39868:15;39902:4;39899:1;39892:15;39919:180;39967:77;39964:1;39957:88;40064:4;40061:1;40054:15;40088:4;40085:1;40078:15;40105:117;40214:1;40211;40204:12;40228:117;40337:1;40334;40327:12;40351:117;40460:1;40457;40450:12;40474:117;40583:1;40580;40573:12;40597:102;40638:6;40689:2;40685:7;40680:2;40673:5;40669:14;40665:28;40655:38;;40597:102;;;:::o;40705:168::-;40845:20;40841:1;40833:6;40829:14;40822:44;40705:168;:::o;40879:230::-;41019:34;41015:1;41007:6;41003:14;40996:58;41088:13;41083:2;41075:6;41071:15;41064:38;40879:230;:::o;41115:237::-;41255:34;41251:1;41243:6;41239:14;41232:58;41324:20;41319:2;41311:6;41307:15;41300:45;41115:237;:::o;41358:225::-;41498:34;41494:1;41486:6;41482:14;41475:58;41567:8;41562:2;41554:6;41550:15;41543:33;41358:225;:::o;41589:224::-;41729:34;41725:1;41717:6;41713:14;41706:58;41798:7;41793:2;41785:6;41781:15;41774:32;41589:224;:::o;41819:178::-;41959:30;41955:1;41947:6;41943:14;41936:54;41819:178;:::o;42003:222::-;42143:34;42139:1;42131:6;42127:14;42120:58;42212:5;42207:2;42199:6;42195:15;42188:30;42003:222;:::o;42231:223::-;42371:34;42367:1;42359:6;42355:14;42348:58;42440:6;42435:2;42427:6;42423:15;42416:31;42231:223;:::o;42460:175::-;42600:27;42596:1;42588:6;42584:14;42577:51;42460:175;:::o;42641:231::-;42781:34;42777:1;42769:6;42765:14;42758:58;42850:14;42845:2;42837:6;42833:15;42826:39;42641:231;:::o;42878:243::-;43018:34;43014:1;43006:6;43002:14;42995:58;43087:26;43082:2;43074:6;43070:15;43063:51;42878:243;:::o;43127:229::-;43267:34;43263:1;43255:6;43251:14;43244:58;43336:12;43331:2;43323:6;43319:15;43312:37;43127:229;:::o;43362:228::-;43502:34;43498:1;43490:6;43486:14;43479:58;43571:11;43566:2;43558:6;43554:15;43547:36;43362:228;:::o;43596:165::-;43736:17;43732:1;43724:6;43720:14;43713:41;43596:165;:::o;43767:182::-;43907:34;43903:1;43895:6;43891:14;43884:58;43767:182;:::o;43955:172::-;44095:24;44091:1;44083:6;44079:14;44072:48;43955:172;:::o;44133:231::-;44273:34;44269:1;44261:6;44257:14;44250:58;44342:14;44337:2;44329:6;44325:15;44318:39;44133:231;:::o;44370:182::-;44510:34;44506:1;44498:6;44494:14;44487:58;44370:182;:::o;44558:234::-;44698:34;44694:1;44686:6;44682:14;44675:58;44767:17;44762:2;44754:6;44750:15;44743:42;44558:234;:::o;44798:220::-;44938:34;44934:1;44926:6;44922:14;44915:58;45007:3;45002:2;44994:6;44990:15;44983:28;44798:220;:::o;45024:::-;45164:34;45160:1;45152:6;45148:14;45141:58;45233:3;45228:2;45220:6;45216:15;45209:28;45024:220;:::o;45250:114::-;;:::o;45370:236::-;45510:34;45506:1;45498:6;45494:14;45487:58;45579:19;45574:2;45566:6;45562:15;45555:44;45370:236;:::o;45612:231::-;45752:34;45748:1;45740:6;45736:14;45729:58;45821:14;45816:2;45808:6;45804:15;45797:39;45612:231;:::o;45849:226::-;45989:34;45985:1;45977:6;45973:14;45966:58;46058:9;46053:2;46045:6;46041:15;46034:34;45849:226;:::o;46081:122::-;46154:24;46172:5;46154:24;:::i;:::-;46147:5;46144:35;46134:63;;46193:1;46190;46183:12;46134:63;46081:122;:::o;46209:116::-;46279:21;46294:5;46279:21;:::i;:::-;46272:5;46269:32;46259:60;;46315:1;46312;46305:12;46259:60;46209:116;:::o;46331:120::-;46403:23;46420:5;46403:23;:::i;:::-;46396:5;46393:34;46383:62;;46441:1;46438;46431:12;46383:62;46331:120;:::o;46457:122::-;46530:24;46548:5;46530:24;:::i;:::-;46523:5;46520:35;46510:63;;46569:1;46566;46559:12;46510:63;46457:122;:::o

Swarm Source

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