ETH Price: $3,251.36 (-0.23%)
Gas: 1 Gwei

Token

Planets With Loot (PLTL)
 

Overview

Max Total Supply

284 PLTL

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PLTL
0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30
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:
PlanetsWithLoot

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
 * https://twitter.com/LootPlanets
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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;

    string public _baseURI;

    /**
     * @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 base = baseURI();
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}

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

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

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

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

interface LootInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract PlanetsWithLoot is ERC721Enumerable, ReentrancyGuard, Ownable {
    uint256 public price = 50000000000000000; //0.05 ETH

    //Loot Contract
    address public lootAddress = 0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7;
    LootInterface public lootContract = LootInterface(lootAddress);
    mapping (uint256 => string) private _tokenURIs;


    string[] private waters = [
        "Oceans",
        "Lakes",
        "Seas",
        "Unknown"
    ];

    string[] private rings = [
        "0",
        "1",
        "2",
        "3",
        "4",
        "5",
        "6",
        "7",
        "8",
        "9",
        "10"
    ];

    string[] private organisms = [
        "Multicellular",
        "None",
        "Unknown",
        "Bacteria",
        "Biodiversity",
        "Intelligent life"
    ];

    string[] private terrains = [
        "Plateau",
        "Open",
        "Mountain",
        "Tallest mountains in the galaxy",
        "Mountain Range",
        "Hill",
        "Mesa",
        "Mima Mounds",
        "Valley",
        "Canyon",
        "Desert",
        "Forest",
        "Jungle",
        "Seasonal Tropical Forest",
        "Rainforest",
        "Glacier",
        "Marsh",
        "Swamp",
        "Oasis",
        "Ocean",
        "River",
        "Tundra"
    ];

    string[] private metals = [
        "Gold",
        "Lithium",
        "Silver",
        "Beryllium",
        "Sodium",
        "Magnesium",
        "Aluminum",
        "Potassium",
        "Calcium",
        "Scandium",
        "Titanium",
        "Vanadium",
        "Chromium",
        "Manganese",
        "Iron",
        "Cobalt",
        "Nickel",
        "Copper",
        "Zinc"
    ];

    string[] private names1 = [
        "Soorbi",
        "Orteve",
        "Enzaer",
        "Tiraor",
        "Inera",
        "Raleen",
        "Maises",
        "Raoror",
        "Geisgeza",
        "Inines",
        "Veisti",
        "Rilace",
        "Maesin",
        "Isti",
        "Ontiat",
        "Arzaso",
        "Xezaor",
        "Atrienxe",
        "Tibionis",
        "Diso",
        "Aleusqu",
        "Orso",
        "Engema",
        "Esredice",
        "Teesdi",
        "Leesti",
        "Xeeranre",
        "Riedquat",
        "Leleer",
        "Riraes"
    ];

    string[] private names2 = [
        "Beraanxe",
        "Maregeis",
        "Gerege",
        "Esesla",
        "Celabile",
        "Uszaa",
        "Rateedar",
        "Tiquat",
        "Qube",
        "Quator",
        "Atrebibi",
        "Qudira",
        "Atbevete",
        "Riinus",
        "Eredve",
        "Quorte",
        "Uscela",
        "Xeoner",
        "Orrere",
        "Onusorle",
        "Ceedra",
        "Veale",
        "Riantiat",
        "Usle",
        "Isdibi",
        "Ribiso",
        "Zadies",
        "Usanat",
        "Usrarema",
        "Sorace"
    ];

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function getWater(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "WATER", waters);
    }

    function getRings(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "RINGS", rings);
    }

    function getOrganisms(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "ORGANISMS", organisms);
    }

    function getTerrain(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "TERRAINS", terrains);
    }

    function getMetal(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "METALS", metals);
    }

    function getName(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "NAME", names1);
    }

    function pluck(
        uint256 tokenId,
        string memory keyPrefix,
        string[] memory sourceArray
    ) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
        if (keccak256(abi.encodePacked(keyPrefix)) == keccak256("NAME")) {
            string[2] memory name;
            name[0] = names1[rand % names1.length];
            name[1] = names2[rand % names2.length];
            output = string(abi.encodePacked(name[0], " ", name[1]));
        }
        return output;
    }

    function mint(uint256 tokenId) public payable nonReentrant {
        require(tokenId > 8000 && tokenId <= 12000, "Token ID invalid");
        require(price <= msg.value, "Ether value sent is not correct");
        _safeMint(_msgSender(), tokenId);
    }

    function multiMint(uint256[] memory tokenIds) public payable nonReentrant {
        require((price * tokenIds.length) <= msg.value, "Ether value sent is not correct");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(tokenIds[i] > 8000 && tokenIds[i] < 12000, "Token ID invalid");
            _safeMint(msg.sender, tokenIds[i]);
        }
    }

    function mintWithLoot(uint256 lootId) public payable nonReentrant {
        require(lootId > 0 && lootId <= 8000, "Token ID invalid");
        require(lootContract.ownerOf(lootId) == msg.sender, "Not the owner of this loot");
        require(block.timestamp <= 1633039199, "Offer Expired"); // Thu Sep 30 2021 21:59:59 GMT+0000
        _safeMint(_msgSender(), lootId);
    }

    function multiMintWithLoot(uint256[] memory lootIds) public payable nonReentrant {
        require(block.timestamp <= 1633039199, "Offer Expired"); // Thu Sep 30 2021 21:59:59 GMT+0000
        for (uint256 i = 0; i < lootIds.length; i++) {
            require(lootContract.ownerOf(lootIds[i]) == msg.sender, "Not the owner of this loot");
            _safeMint(_msgSender(), lootIds[i]);
        }
    }

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

    function withdraw() public onlyOwner {
        payable(0x6439523c56898159C134e3073440e4c1dF522077).transfer(address(this).balance);
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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);
    }

    constructor() ERC721("Planets With Loot", "PLTL") Ownable() {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMetal","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOrganisms","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTerrain","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWater","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"lootAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootContract","outputs":[{"internalType":"contract LootInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"}],"name":"mintWithLoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"multiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"lootIds","type":"uint256[]"}],"name":"multiMintWithLoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66b1a2bc2ec50000600d55600e805473ff9c1b15b16263c61d017ee9f65c50e4ae0113d76001600160a01b03199182168117909255600f805490911690911790556006610100908152654f6365616e7360d01b6101205260809081526005610140908152644c616b657360d81b6101605260a0526004610180818152635365617360e01b6101a05260c05261020060405260076101c0908152662ab735b737bbb760c91b6101e05260e052620000b891601191620010b6565b50604080516101a08101825260016101608201818152600360fc1b610180840152825282518084018452818152603160f81b6020828101919091528084019190915283518085018552828152601960f91b818301528385015283518085018552828152603360f81b81830152606084015283518085018552828152600d60fa1b81830152608084015283518085018552828152603560f81b8183015260a084015283518085018552828152601b60f91b8183015260c084015283518085018552828152603760f81b8183015260e084015283518085018552828152600760fb1b8183015261010084015283518085018552918252603960f81b8282015261012083019190915282518084019093526002835261031360f41b90830152610140810191909152620001ed90601290600b6200111a565b506040805161010081018252600d60c082019081526c26bab63a34b1b2b6363ab630b960991b60e083015281528151808301835260048152634e6f6e6560e01b602082810191909152808301919091528251808401845260078152662ab735b737bbb760c91b8183015282840152825180840184526008815267426163746572696160c01b81830152606083015282518084018452600c81526b42696f64697665727369747960a01b8183015260808301528251808401909352601083526f496e74656c6c6967656e74206c69666560801b9083015260a0810191909152620002db9060139060066200116c565b50604080516103008101825260076102c0820181815266506c617465617560c81b6102e084015282528251808401845260048082526327b832b760e11b6020838101919091528085019290925284518086018652600881526726b7bab73a30b4b760c11b818401528486015284518086018652601f81527f54616c6c657374206d6f756e7461696e7320696e207468652067616c6178790081840152606085015284518086018652600e81526d4d6f756e7461696e2052616e676560901b8184015260808501528451808601865281815263121a5b1b60e21b8184015260a085015284518086018652908152634d65736160e01b8183015260c084015283518085018552600b81526a4d696d61204d6f756e647360a81b8183015260e08401528351808501855260068082526556616c6c657960d01b82840152610100850191909152845180860186528181526521b0b73cb7b760d11b81840152610120850152845180860186528181526511195cd95c9d60d21b818401526101408501528451808601865281815265119bdc995cdd60d21b8184015261016085015284518086018652818152654a756e676c6560d01b8184015261018085015284518086018652601881527f536561736f6e616c2054726f706963616c20466f726573740000000000000000818401526101a085015284518086018652600a81526914985a5b999bdc995cdd60b21b818401526101c0850152845180860186529283526623b630b1b4b2b960c91b838301526101e08401929092528351808501855260058082526409ac2e4e6d60db1b82840152610200850191909152845180860186528181526405377616d760dc1b8184015261022085015284518086018652818152644f6173697360d81b81840152610240850152845180860186528181526427b1b2b0b760d91b8184015261026085015284518086018652908152642934bb32b960d91b8183015261028084015283518085019094529083526554756e64726160d01b908301526102a0810191909152620005d9906014906016620011be565b50604080516102a081018252600461026082018181526311dbdb1960e21b6102808401528252825180840184526007808252664c69746869756d60c81b602083810191909152808501929092528451808601865260068082526529b4b63b32b960d11b828501528587019190915285518087018752600980825268426572796c6c69756d60b81b8286015260608701919091528651808801885282815265536f6469756d60d01b81860152608087015286518088018852818152684d61676e657369756d60b81b8186015260a087015286518088018852600880825267416c756d696e756d60c01b8287015260c08801919091528751808901895282815268506f7461737369756d60b81b8187015260e0880152875180890189529384526643616c6369756d60c81b8486015261010087019390935286518088018852838152675363616e6469756d60c01b818601526101208701528651808801885283815267546974616e69756d60c01b81860152610140870152865180880188528381526756616e616469756d60c01b8186015261016087015286518088018852928352674368726f6d69756d60c01b8385015261018086019290925285518087018752918252684d616e67616e65736560b81b828401526101a0850191909152845180860186528381526324b937b760e11b818401526101c0850152845180860186528181526510dbd8985b1d60d21b818401526101e08501528451808601865281815265139a58dad95b60d21b81840152610200850152845180860186529081526521b7b83832b960d11b818301526102208401528351808501909452908352635a696e6360e01b908301526102408101919091526200085c90601590601362001210565b50604080516104008101825260066103c0820181815265536f6f72626960d01b6103e0840152825282518084018452818152654f727465766560d01b60208281019190915280840191909152835180850185528281526522b73d30b2b960d11b818301528385015283518085018552828152652a34b930b7b960d11b818301526060840152835180850185526005815264496e65726160d81b81830152608084015283518085018552828152652930b632b2b760d11b8183015260a084015283518085018552828152654d616973657360d01b8183015260c084015283518085018552828152652930b7b937b960d11b8183015260e0840152835180850185526008808252674765697367657a6160c01b828401526101008501919091528451808601865283815265496e696e657360d01b81840152610120850152845180860186528381526556656973746960d01b81840152610140850152845180860186528381526552696c61636560d01b81840152610160850152845180860186528381526526b0b2b9b4b760d11b81840152610180850152845180860186526004808252634973746960e01b828501526101a0860191909152855180870187528481526513db9d1a585d60d21b818501526101c0860152855180870187528481526541727a61736f60d01b818501526101e086015285518087018752848152652c32bd30b7b960d11b81850152610200860152855180870187528281526741747269656e786560c01b818501526102208601528551808701875282815267546962696f6e697360c01b8185015261024086015285518087018752818152634469736f60e01b81850152610260860152855180870187526007815266416c657573717560c81b8185015261028086015285518087018752908152634f72736f60e01b818401526102a08501528451808601865283815265456e67656d6160d01b818401526102c08501528451808601865281815267457372656469636560c01b818401526102e0850152845180860186528381526554656573646960d01b8184015261030085015284518086018652838152654c656573746960d01b81840152610320850152845180860186528181526758656572616e726560c01b818401526103408501528451808601865290815267149a59591c5d585d60c21b8183015261036084015283518085018552828152652632b632b2b960d11b8183015261038084015283518085019094529083526552697261657360d01b908301526103a081019190915262000c0f90601690601e62001262565b50604080516104008101825260086103c082018181526742657261616e786560c01b6103e0840152825282518084018452818152674d6172656765697360c01b602082810191909152808401919091528351808501855260068082526547657265676560d01b82840152848601919091528451808601865281815265457365736c6160d01b818401526060850152845180860186528381526743656c6162696c6560c01b8184015260808501528451808601865260058082526455737a616160d81b8285015260a086019190915285518087018752848152672930ba32b2b230b960c11b8185015260c08601528551808701875282815265151a5c5d585d60d21b8185015260e0860152855180870187526004808252635175626560e01b82860152610100870191909152865180880188528381526528bab0ba37b960d11b818601526101208701528651808801885285815267417472656269626960c01b81860152610140870152865180880188528381526551756469726160d01b818601526101608701528651808801885285815267417462657665746560c01b8186015261018087015286518088018852838152655269696e757360d01b818601526101a0870152865180880188528381526545726564766560d01b818601526101c0870152865180880188528381526551756f72746560d01b818601526101e08701528651808801885283815265557363656c6160d01b8186015261020087015286518088018852838152652c32b7b732b960d11b8186015261022087015286518088018852838152654f727265726560d01b8186015261024087015286518088018852858152674f6e75736f726c6560c01b81860152610260870152865180880188528381526543656564726160d01b8186015261028087015286518088018852918252645665616c6560d81b828501526102a08601919091528551808701875284815267149a585b9d1a585d60c21b818501526102c0860152855180870187529081526355736c6560e01b818401526102e0850152845180860186528181526549736469626960d01b81840152610300850152845180860186528181526552696269736f60d01b8184015261032085015284518086018652818152655a616469657360d01b818401526103408501528451808601865281815265155cd85b985d60d21b8184015261036085015284518086018652928352675573726172656d6160c01b83830152610380840192909252835180850190945290835265536f7261636560d01b908301526103a081019190915262000fd190601790601e62001262565b5034801562000fdf57600080fd5b506040805180820182526011815270141b185b995d1cc815da5d1a08131bdbdd607a1b6020808301918252835180850190945260048452631413151360e21b9084015281519192916200103591600091620012b4565b5080516200104b906001906020840190620012b4565b50506001600b55506200105e3362001064565b620013f6565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562001108579160200282015b82811115620011085782518051620010f7918491602090910190620012b4565b5091602001919060010190620010d7565b50620011169291506200133f565b5090565b82805482825590600052602060002090810192821562001108579160200282015b828111156200110857825180516200115b918491602090910190620012b4565b50916020019190600101906200113b565b82805482825590600052602060002090810192821562001108579160200282015b82811115620011085782518051620011ad918491602090910190620012b4565b50916020019190600101906200118d565b82805482825590600052602060002090810192821562001108579160200282015b82811115620011085782518051620011ff918491602090910190620012b4565b5091602001919060010190620011df565b82805482825590600052602060002090810192821562001108579160200282015b8281111562001108578251805162001251918491602090910190620012b4565b509160200191906001019062001231565b82805482825590600052602060002090810192821562001108579160200282015b82811115620011085782518051620012a3918491602090910190620012b4565b509160200191906001019062001283565b828054620012c290620013b9565b90600052602060002090601f016020900481019282620012e6576000855562001331565b82601f106200130157805160ff191683800117855562001331565b8280016001018555821562001331579182015b828111156200133157825182559160200191906001019062001314565b506200111692915062001360565b808211156200111657600062001356828262001377565b506001016200133f565b5b8082111562001116576000815560010162001361565b5080546200138590620013b9565b6000825580601f1062001396575050565b601f016020900490600052602060002090810190620013b6919062001360565b50565b600181811c90821680620013ce57607f821691505b60208210811415620013f057634e487b7160e01b600052602260045260246000fd5b50919050565b612f9a80620014066000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105ba578063e467804b146105da578063e985e9c5146105fa578063f2fde38b14610643578063fd12c9681461066357600080fd5b8063a0712d6814610547578063a22cb4651461055a578063b88d4fde1461057a578063b9bb84d11461059a57600080fd5b80638da5cb5b116100e75780638da5cb5b146104cb57806395d89b41146104e957806398054bd8146104fe5780639a0e4ebb1461051e578063a035b1fe1461053157600080fd5b80636c0360eb1461046c57806370a0823114610481578063715018a6146104a1578063743976a0146104b657600080fd5b806335b48afd1161019b57806355f804b31161016a57806355f804b3146103d957806362fe66f9146103f95780636352211e1461041957806367fd1a0f146104395780636b8ff5741461044c57600080fd5b806335b48afd146103645780633ccfd60b1461038457806342842e0e146103995780634f6ccce7146103b957600080fd5b80630e439326116101e25780630e439326146102c557806318160ddd146102e5578063228f64a71461030457806323b872dd146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612aca565b610676565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a1565b6040516102409190612c56565b34801561027757600080fd5b5061028b610286366004612b4d565b610733565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046129f1565b6107cd565b005b3480156102d157600080fd5b50600e5461028b906001600160a01b031681565b3480156102f157600080fd5b506009545b604051908152602001610240565b34801561031057600080fd5b5061025e61031f366004612b4d565b6108e3565b34801561033057600080fd5b506102c361033f3660046128fd565b6109e2565b34801561035057600080fd5b506102f661035f3660046129f1565b610a13565b34801561037057600080fd5b50600f5461028b906001600160a01b031681565b34801561039057600080fd5b506102c3610aa9565b3480156103a557600080fd5b506102c36103b43660046128fd565b610b16565b3480156103c557600080fd5b506102f66103d4366004612b4d565b610b31565b3480156103e557600080fd5b506102c36103f4366004612b04565b610bc4565b34801561040557600080fd5b5061025e610414366004612b4d565b610bf7565b34801561042557600080fd5b5061028b610434366004612b4d565b610ce9565b6102c3610447366004612a1d565b610d60565b34801561045857600080fd5b5061025e610467366004612b4d565b610f0b565b34801561047857600080fd5b5061025e610ffc565b34801561048d57600080fd5b506102f661049c366004612883565b61100b565b3480156104ad57600080fd5b506102c3611092565b3480156104c257600080fd5b5061025e6110c8565b3480156104d757600080fd5b50600c546001600160a01b031661028b565b3480156104f557600080fd5b5061025e611156565b34801561050a57600080fd5b5061025e610519366004612b4d565b611165565b6102c361052c366004612a1d565b61125a565b34801561053d57600080fd5b506102f6600d5481565b6102c3610555366004612b4d565b611374565b34801561056657600080fd5b506102c36105753660046129be565b61142f565b34801561058657600080fd5b506102c361059536600461293e565b6114f4565b3480156105a657600080fd5b5061025e6105b5366004612b4d565b61152c565b3480156105c657600080fd5b5061025e6105d5366004612b4d565b61161f565b3480156105e657600080fd5b5061025e6105f5366004612b4d565b6116dc565b34801561060657600080fd5b506102346106153660046128c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102c361065e366004612883565b6117ce565b6102c3610671366004612b4d565b611866565b60006001600160e01b0319821663780e9d6360e01b148061069b575061069b826119d1565b92915050565b6060600080546106b090612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90612e61565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d882610ce9565b9050806001600160a01b0316836001600160a01b031614156108465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a8565b336001600160a01b038216148061086257506108628133610615565b6108d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a8565b6108de8383611a21565b505050565b606061069b82604051806040016040528060098152602001684f5247414e49534d5360b81b8152506013805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461094c90612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461097890612e61565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b50505050508152602001906001019061092d565b50505050611a8f565b6109ec3382611d10565b610a085760405162461bcd60e51b81526004016107a890612d1a565b6108de838383611e07565b6000610a1e8361100b565b8210610a805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a8565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107a890612cbb565b604051736439523c56898159c134e3073440e4c1df522077904780156108fc02916000818181858888f19350505050158015610b13573d6000803e3d6000fd5b50565b6108de838383604051806020016040528060008152506114f4565b6000610b3c60095490565b8210610b9f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a8565b60098281548110610bb257610bb2612f0d565b90600052602060002001549050919050565b600c546001600160a01b03163314610bee5760405162461bcd60e51b81526004016107a890612cbb565b610b1381611fb2565b606061069b826040518060400160405280600581526020016452494e475360d81b8152506012805480602002602001604051908101604052809291908181526020016000905b828210156109d9578382906000526020600020018054610c5c90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8890612e61565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081526020019060010190610c3d565b6000818152600260205260408120546001600160a01b03168061069b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a8565b6002600b541415610d835760405162461bcd60e51b81526004016107a890612d6b565b6002600b55636156335f421115610dcc5760405162461bcd60e51b815260206004820152600d60248201526c13d999995c88115e1c1a5c9959609a1b60448201526064016107a8565b60005b8151811015610f0257600f54825133916001600160a01b031690636352211e90859085908110610e0157610e01612f0d565b60200260200101516040518263ffffffff1660e01b8152600401610e2791815260200190565b60206040518083038186803b158015610e3f57600080fd5b505afa158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7791906128a7565b6001600160a01b031614610ecd5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016107a8565b610ef033838381518110610ee357610ee3612f0d565b6020026020010151611fc9565b80610efa81612e9c565b915050610dcf565b50506001600b55565b606061069b82604051806040016040528060048152602001634e414d4560e01b8152506016805480602002602001604051908101604052809291908181526020016000905b828210156109d9578382906000526020600020018054610f6f90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b90612e61565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b505050505081526020019060010190610f50565b6060600680546106b090612e61565b60006001600160a01b0382166110765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a8565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107a890612cbb565b6110c66000611fe3565b565b600680546110d590612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461110190612e61565b801561114e5780601f106111235761010080835404028352916020019161114e565b820191906000526020600020905b81548152906001019060200180831161113157829003601f168201915b505050505081565b6060600180546106b090612e61565b606061069b82604051806040016040528060088152602001675445525241494e5360c01b8152506014805480602002602001604051908101604052809291908181526020016000905b828210156109d95783829060005260206000200180546111cd90612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990612e61565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050815260200190600101906111ae565b6002600b54141561127d5760405162461bcd60e51b81526004016107a890612d6b565b6002600b558051600d54349161129291612dff565b11156112e05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b60005b8151811015610f0257611f4082828151811061130157611301612f0d565b60200260200101511180156113305750612ee082828151811061132657611326612f0d565b6020026020010151105b61134c5760405162461bcd60e51b81526004016107a890612cf0565b61136233838381518110610ee357610ee3612f0d565b8061136c81612e9c565b9150506112e3565b6002600b5414156113975760405162461bcd60e51b81526004016107a890612d6b565b6002600b55611f40811180156113af5750612ee08111155b6113cb5760405162461bcd60e51b81526004016107a890612cf0565b34600d54111561141d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b6114273382611fc9565b506001600b55565b6001600160a01b0382163314156114885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114fe3383611d10565b61151a5760405162461bcd60e51b81526004016107a890612d1a565b61152684848484612035565b50505050565b606061069b82604051806040016040528060068152602001654d4554414c5360d01b8152506015805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461159290612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546115be90612e61565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b505050505081526020019060010190611573565b6000818152600260205260409020546060906001600160a01b031661169e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a8565b60006116a8610ffc565b9050806116b484612068565b6040516020016116c5929190612bae565b604051602081830303815290604052915050919050565b606061069b82604051806040016040528060058152602001642ba0aa22a960d91b8152506011805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461174190612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461176d90612e61565b80156117ba5780601f1061178f576101008083540402835291602001916117ba565b820191906000526020600020905b81548152906001019060200180831161179d57829003601f168201915b505050505081526020019060010190611722565b600c546001600160a01b031633146117f85760405162461bcd60e51b81526004016107a890612cbb565b6001600160a01b03811661185d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b610b1381611fe3565b6002600b5414156118895760405162461bcd60e51b81526004016107a890612d6b565b6002600b55801580159061189f5750611f408111155b6118bb5760405162461bcd60e51b81526004016107a890612cf0565b600f546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156118ff57600080fd5b505afa158015611913573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193791906128a7565b6001600160a01b03161461198d5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016107a8565b636156335f42111561141d5760405162461bcd60e51b815260206004820152600d60248201526c13d999995c88115e1c1a5c9959609a1b60448201526064016107a8565b60006001600160e01b031982166380ac58cd60e01b1480611a0257506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a5682610ce9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000611ac584611aa087612166565b604051602001611ab1929190612bae565b604051602081830303815290604052612264565b9050600083845183611ad79190612eb7565b81518110611ae757611ae7612f0d565b602002602001015190507f371c6bd7737d53c5a96989b29c5812746375eee35ba2656b20df9c862cf8467285604051602001611b239190612b92565b604051602081830303815290604052805190602001201415611d0757611b4761276b565b60168054611b559085612eb7565b81548110611b6557611b65612f0d565b906000526020600020018054611b7a90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba690612e61565b8015611bf35780601f10611bc857610100808354040283529160200191611bf3565b820191906000526020600020905b815481529060010190602001808311611bd657829003601f168201915b505050505081600060028110611c0b57611c0b612f0d565b602002015260178054611c1e9085612eb7565b81548110611c2e57611c2e612f0d565b906000526020600020018054611c4390612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6f90612e61565b8015611cbc5780601f10611c9157610100808354040283529160200191611cbc565b820191906000526020600020905b815481529060010190602001808311611c9f57829003601f168201915b505050505081600160028110611cd457611cd4612f0d565b60209081029190910191909152815182820151604051611cf49301612bdd565b6040516020818303038152906040529150505b95945050505050565b6000818152600260205260408120546001600160a01b0316611d895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a8565b6000611d9483610ce9565b9050806001600160a01b0316846001600160a01b03161480611dcf5750836001600160a01b0316611dc484610733565b6001600160a01b0316145b80611dff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e1a82610ce9565b6001600160a01b031614611e825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a8565b6001600160a01b038216611ee45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a8565b611eef838383612295565b611efa600082611a21565b6001600160a01b0383166000908152600360205260408120805460019290611f23908490612e1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f51908490612dd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051611fc5906006906020840190612792565b5050565b611fc582826040518060200160405280600081525061234d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612040848484611e07565b61204c84848484612380565b6115265760405162461bcd60e51b81526004016107a890612c69565b60608161208c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b657806120a081612e9c565b91506120af9050600a83612deb565b9150612090565b60008167ffffffffffffffff8111156120d1576120d1612f23565b6040519080825280601f01601f1916602001820160405280156120fb576020820181803683370190505b5090505b8415611dff57612110600183612e1e565b915061211d600a86612eb7565b612128906030612dd3565b60f81b81838151811061213d5761213d612f0d565b60200101906001600160f81b031916908160001a90535061215f600a86612deb565b94506120ff565b60608161218a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b4578061219e81612e9c565b91506121ad9050600a83612deb565b915061218e565b60008167ffffffffffffffff8111156121cf576121cf612f23565b6040519080825280601f01601f1916602001820160405280156121f9576020820181803683370190505b5090505b8415611dff5761220e600183612e1e565b915061221b600a86612eb7565b612226906030612dd3565b60f81b81838151811061223b5761223b612f0d565b60200101906001600160f81b031916908160001a90535061225d600a86612deb565b94506121fd565b6000816040516020016122779190612b92565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166122f0576122eb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612313565b816001600160a01b0316836001600160a01b03161461231357612313838261248d565b6001600160a01b03821661232a576108de8161252a565b826001600160a01b0316826001600160a01b0316146108de576108de82826125d9565b612357838361261d565b6123646000848484612380565b6108de5760405162461bcd60e51b81526004016107a890612c69565b60006001600160a01b0384163b1561248257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123c4903390899088908890600401612c19565b602060405180830381600087803b1580156123de57600080fd5b505af192505050801561240e575060408051601f3d908101601f1916820190925261240b91810190612ae7565b60015b612468573d80801561243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b5080516124605760405162461bcd60e51b81526004016107a890612c69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dff565b506001949350505050565b6000600161249a8461100b565b6124a49190612e1e565b6000838152600860205260409020549091508082146124f7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061253c90600190612e1e565b6000838152600a60205260408120546009805493945090928490811061256457612564612f0d565b90600052602060002001549050806009838154811061258557612585612f0d565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806125bd576125bd612ef7565b6001900381819060005260206000200160009055905550505050565b60006125e48361100b565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166126735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a8565b6000818152600260205260409020546001600160a01b0316156126d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a8565b6126e460008383612295565b6001600160a01b038216600090815260036020526040812080546001929061270d908490612dd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180604001604052806002905b606081526020019060019003908161277a5790505090565b82805461279e90612e61565b90600052602060002090601f0160209004810192826127c05760008555612806565b82601f106127d957805160ff1916838001178555612806565b82800160010185558215612806579182015b828111156128065782518255916020019190600101906127eb565b50612812929150612816565b5090565b5b808211156128125760008155600101612817565b600067ffffffffffffffff83111561284557612845612f23565b612858601f8401601f1916602001612da2565b905082815283838301111561286c57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561289557600080fd5b81356128a081612f39565b9392505050565b6000602082840312156128b957600080fd5b81516128a081612f39565b600080604083850312156128d757600080fd5b82356128e281612f39565b915060208301356128f281612f39565b809150509250929050565b60008060006060848603121561291257600080fd5b833561291d81612f39565b9250602084013561292d81612f39565b929592945050506040919091013590565b6000806000806080858703121561295457600080fd5b843561295f81612f39565b9350602085013561296f81612f39565b925060408501359150606085013567ffffffffffffffff81111561299257600080fd5b8501601f810187136129a357600080fd5b6129b28782356020840161282b565b91505092959194509250565b600080604083850312156129d157600080fd5b82356129dc81612f39565b9150602083013580151581146128f257600080fd5b60008060408385031215612a0457600080fd5b8235612a0f81612f39565b946020939093013593505050565b60006020808385031215612a3057600080fd5b823567ffffffffffffffff80821115612a4857600080fd5b818501915085601f830112612a5c57600080fd5b813581811115612a6e57612a6e612f23565b8060051b9150612a7f848301612da2565b8181528481019084860184860187018a1015612a9a57600080fd5b600095505b83861015612abd578035835260019590950194918601918601612a9f565b5098975050505050505050565b600060208284031215612adc57600080fd5b81356128a081612f4e565b600060208284031215612af957600080fd5b81516128a081612f4e565b600060208284031215612b1657600080fd5b813567ffffffffffffffff811115612b2d57600080fd5b8201601f81018413612b3e57600080fd5b611dff8482356020840161282b565b600060208284031215612b5f57600080fd5b5035919050565b60008151808452612b7e816020860160208601612e35565b601f01601f19169290920160200192915050565b60008251612ba4818460208701612e35565b9190910192915050565b60008351612bc0818460208801612e35565b835190830190612bd4818360208801612e35565b01949350505050565b60008351612bef818460208801612e35565b600160fd1b9083019081528351612c0d816001840160208801612e35565b01600101949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4c90830184612b66565b9695505050505050565b6020815260006128a06020830184612b66565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612dcb57612dcb612f23565b604052919050565b60008219821115612de657612de6612ecb565b500190565b600082612dfa57612dfa612ee1565b500490565b6000816000190483118215151615612e1957612e19612ecb565b500290565b600082821015612e3057612e30612ecb565b500390565b60005b83811015612e50578181015183820152602001612e38565b838111156115265750506000910152565b600181811c90821680612e7557607f821691505b60208210811415612e9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eb057612eb0612ecb565b5060010190565b600082612ec657612ec6612ee1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b1357600080fd5b6001600160e01b031981168114610b1357600080fdfea2646970667358221220754e4694fa720abacaff71219e06ccc7d0eb350936dc64aa6b464397f52c272a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105ba578063e467804b146105da578063e985e9c5146105fa578063f2fde38b14610643578063fd12c9681461066357600080fd5b8063a0712d6814610547578063a22cb4651461055a578063b88d4fde1461057a578063b9bb84d11461059a57600080fd5b80638da5cb5b116100e75780638da5cb5b146104cb57806395d89b41146104e957806398054bd8146104fe5780639a0e4ebb1461051e578063a035b1fe1461053157600080fd5b80636c0360eb1461046c57806370a0823114610481578063715018a6146104a1578063743976a0146104b657600080fd5b806335b48afd1161019b57806355f804b31161016a57806355f804b3146103d957806362fe66f9146103f95780636352211e1461041957806367fd1a0f146104395780636b8ff5741461044c57600080fd5b806335b48afd146103645780633ccfd60b1461038457806342842e0e146103995780634f6ccce7146103b957600080fd5b80630e439326116101e25780630e439326146102c557806318160ddd146102e5578063228f64a71461030457806323b872dd146103245780632f745c591461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612aca565b610676565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a1565b6040516102409190612c56565b34801561027757600080fd5b5061028b610286366004612b4d565b610733565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046129f1565b6107cd565b005b3480156102d157600080fd5b50600e5461028b906001600160a01b031681565b3480156102f157600080fd5b506009545b604051908152602001610240565b34801561031057600080fd5b5061025e61031f366004612b4d565b6108e3565b34801561033057600080fd5b506102c361033f3660046128fd565b6109e2565b34801561035057600080fd5b506102f661035f3660046129f1565b610a13565b34801561037057600080fd5b50600f5461028b906001600160a01b031681565b34801561039057600080fd5b506102c3610aa9565b3480156103a557600080fd5b506102c36103b43660046128fd565b610b16565b3480156103c557600080fd5b506102f66103d4366004612b4d565b610b31565b3480156103e557600080fd5b506102c36103f4366004612b04565b610bc4565b34801561040557600080fd5b5061025e610414366004612b4d565b610bf7565b34801561042557600080fd5b5061028b610434366004612b4d565b610ce9565b6102c3610447366004612a1d565b610d60565b34801561045857600080fd5b5061025e610467366004612b4d565b610f0b565b34801561047857600080fd5b5061025e610ffc565b34801561048d57600080fd5b506102f661049c366004612883565b61100b565b3480156104ad57600080fd5b506102c3611092565b3480156104c257600080fd5b5061025e6110c8565b3480156104d757600080fd5b50600c546001600160a01b031661028b565b3480156104f557600080fd5b5061025e611156565b34801561050a57600080fd5b5061025e610519366004612b4d565b611165565b6102c361052c366004612a1d565b61125a565b34801561053d57600080fd5b506102f6600d5481565b6102c3610555366004612b4d565b611374565b34801561056657600080fd5b506102c36105753660046129be565b61142f565b34801561058657600080fd5b506102c361059536600461293e565b6114f4565b3480156105a657600080fd5b5061025e6105b5366004612b4d565b61152c565b3480156105c657600080fd5b5061025e6105d5366004612b4d565b61161f565b3480156105e657600080fd5b5061025e6105f5366004612b4d565b6116dc565b34801561060657600080fd5b506102346106153660046128c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064f57600080fd5b506102c361065e366004612883565b6117ce565b6102c3610671366004612b4d565b611866565b60006001600160e01b0319821663780e9d6360e01b148061069b575061069b826119d1565b92915050565b6060600080546106b090612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90612e61565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d882610ce9565b9050806001600160a01b0316836001600160a01b031614156108465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a8565b336001600160a01b038216148061086257506108628133610615565b6108d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a8565b6108de8383611a21565b505050565b606061069b82604051806040016040528060098152602001684f5247414e49534d5360b81b8152506013805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461094c90612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461097890612e61565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b50505050508152602001906001019061092d565b50505050611a8f565b6109ec3382611d10565b610a085760405162461bcd60e51b81526004016107a890612d1a565b6108de838383611e07565b6000610a1e8361100b565b8210610a805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a8565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600c546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107a890612cbb565b604051736439523c56898159c134e3073440e4c1df522077904780156108fc02916000818181858888f19350505050158015610b13573d6000803e3d6000fd5b50565b6108de838383604051806020016040528060008152506114f4565b6000610b3c60095490565b8210610b9f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a8565b60098281548110610bb257610bb2612f0d565b90600052602060002001549050919050565b600c546001600160a01b03163314610bee5760405162461bcd60e51b81526004016107a890612cbb565b610b1381611fb2565b606061069b826040518060400160405280600581526020016452494e475360d81b8152506012805480602002602001604051908101604052809291908181526020016000905b828210156109d9578382906000526020600020018054610c5c90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8890612e61565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081526020019060010190610c3d565b6000818152600260205260408120546001600160a01b03168061069b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a8565b6002600b541415610d835760405162461bcd60e51b81526004016107a890612d6b565b6002600b55636156335f421115610dcc5760405162461bcd60e51b815260206004820152600d60248201526c13d999995c88115e1c1a5c9959609a1b60448201526064016107a8565b60005b8151811015610f0257600f54825133916001600160a01b031690636352211e90859085908110610e0157610e01612f0d565b60200260200101516040518263ffffffff1660e01b8152600401610e2791815260200190565b60206040518083038186803b158015610e3f57600080fd5b505afa158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7791906128a7565b6001600160a01b031614610ecd5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016107a8565b610ef033838381518110610ee357610ee3612f0d565b6020026020010151611fc9565b80610efa81612e9c565b915050610dcf565b50506001600b55565b606061069b82604051806040016040528060048152602001634e414d4560e01b8152506016805480602002602001604051908101604052809291908181526020016000905b828210156109d9578382906000526020600020018054610f6f90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b90612e61565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b505050505081526020019060010190610f50565b6060600680546106b090612e61565b60006001600160a01b0382166110765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a8565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107a890612cbb565b6110c66000611fe3565b565b600680546110d590612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461110190612e61565b801561114e5780601f106111235761010080835404028352916020019161114e565b820191906000526020600020905b81548152906001019060200180831161113157829003601f168201915b505050505081565b6060600180546106b090612e61565b606061069b82604051806040016040528060088152602001675445525241494e5360c01b8152506014805480602002602001604051908101604052809291908181526020016000905b828210156109d95783829060005260206000200180546111cd90612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990612e61565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050815260200190600101906111ae565b6002600b54141561127d5760405162461bcd60e51b81526004016107a890612d6b565b6002600b558051600d54349161129291612dff565b11156112e05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b60005b8151811015610f0257611f4082828151811061130157611301612f0d565b60200260200101511180156113305750612ee082828151811061132657611326612f0d565b6020026020010151105b61134c5760405162461bcd60e51b81526004016107a890612cf0565b61136233838381518110610ee357610ee3612f0d565b8061136c81612e9c565b9150506112e3565b6002600b5414156113975760405162461bcd60e51b81526004016107a890612d6b565b6002600b55611f40811180156113af5750612ee08111155b6113cb5760405162461bcd60e51b81526004016107a890612cf0565b34600d54111561141d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a8565b6114273382611fc9565b506001600b55565b6001600160a01b0382163314156114885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114fe3383611d10565b61151a5760405162461bcd60e51b81526004016107a890612d1a565b61152684848484612035565b50505050565b606061069b82604051806040016040528060068152602001654d4554414c5360d01b8152506015805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461159290612e61565b80601f01602080910402602001604051908101604052809291908181526020018280546115be90612e61565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b505050505081526020019060010190611573565b6000818152600260205260409020546060906001600160a01b031661169e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a8565b60006116a8610ffc565b9050806116b484612068565b6040516020016116c5929190612bae565b604051602081830303815290604052915050919050565b606061069b82604051806040016040528060058152602001642ba0aa22a960d91b8152506011805480602002602001604051908101604052809291908181526020016000905b828210156109d957838290600052602060002001805461174190612e61565b80601f016020809104026020016040519081016040528092919081815260200182805461176d90612e61565b80156117ba5780601f1061178f576101008083540402835291602001916117ba565b820191906000526020600020905b81548152906001019060200180831161179d57829003601f168201915b505050505081526020019060010190611722565b600c546001600160a01b031633146117f85760405162461bcd60e51b81526004016107a890612cbb565b6001600160a01b03811661185d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b610b1381611fe3565b6002600b5414156118895760405162461bcd60e51b81526004016107a890612d6b565b6002600b55801580159061189f5750611f408111155b6118bb5760405162461bcd60e51b81526004016107a890612cf0565b600f546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156118ff57600080fd5b505afa158015611913573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193791906128a7565b6001600160a01b03161461198d5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016107a8565b636156335f42111561141d5760405162461bcd60e51b815260206004820152600d60248201526c13d999995c88115e1c1a5c9959609a1b60448201526064016107a8565b60006001600160e01b031982166380ac58cd60e01b1480611a0257506001600160e01b03198216635b5e139f60e01b145b8061069b57506301ffc9a760e01b6001600160e01b031983161461069b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a5682610ce9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000611ac584611aa087612166565b604051602001611ab1929190612bae565b604051602081830303815290604052612264565b9050600083845183611ad79190612eb7565b81518110611ae757611ae7612f0d565b602002602001015190507f371c6bd7737d53c5a96989b29c5812746375eee35ba2656b20df9c862cf8467285604051602001611b239190612b92565b604051602081830303815290604052805190602001201415611d0757611b4761276b565b60168054611b559085612eb7565b81548110611b6557611b65612f0d565b906000526020600020018054611b7a90612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba690612e61565b8015611bf35780601f10611bc857610100808354040283529160200191611bf3565b820191906000526020600020905b815481529060010190602001808311611bd657829003601f168201915b505050505081600060028110611c0b57611c0b612f0d565b602002015260178054611c1e9085612eb7565b81548110611c2e57611c2e612f0d565b906000526020600020018054611c4390612e61565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6f90612e61565b8015611cbc5780601f10611c9157610100808354040283529160200191611cbc565b820191906000526020600020905b815481529060010190602001808311611c9f57829003601f168201915b505050505081600160028110611cd457611cd4612f0d565b60209081029190910191909152815182820151604051611cf49301612bdd565b6040516020818303038152906040529150505b95945050505050565b6000818152600260205260408120546001600160a01b0316611d895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a8565b6000611d9483610ce9565b9050806001600160a01b0316846001600160a01b03161480611dcf5750836001600160a01b0316611dc484610733565b6001600160a01b0316145b80611dff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e1a82610ce9565b6001600160a01b031614611e825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a8565b6001600160a01b038216611ee45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a8565b611eef838383612295565b611efa600082611a21565b6001600160a01b0383166000908152600360205260408120805460019290611f23908490612e1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f51908490612dd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051611fc5906006906020840190612792565b5050565b611fc582826040518060200160405280600081525061234d565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612040848484611e07565b61204c84848484612380565b6115265760405162461bcd60e51b81526004016107a890612c69565b60608161208c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b657806120a081612e9c565b91506120af9050600a83612deb565b9150612090565b60008167ffffffffffffffff8111156120d1576120d1612f23565b6040519080825280601f01601f1916602001820160405280156120fb576020820181803683370190505b5090505b8415611dff57612110600183612e1e565b915061211d600a86612eb7565b612128906030612dd3565b60f81b81838151811061213d5761213d612f0d565b60200101906001600160f81b031916908160001a90535061215f600a86612deb565b94506120ff565b60608161218a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121b4578061219e81612e9c565b91506121ad9050600a83612deb565b915061218e565b60008167ffffffffffffffff8111156121cf576121cf612f23565b6040519080825280601f01601f1916602001820160405280156121f9576020820181803683370190505b5090505b8415611dff5761220e600183612e1e565b915061221b600a86612eb7565b612226906030612dd3565b60f81b81838151811061223b5761223b612f0d565b60200101906001600160f81b031916908160001a90535061225d600a86612deb565b94506121fd565b6000816040516020016122779190612b92565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166122f0576122eb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612313565b816001600160a01b0316836001600160a01b03161461231357612313838261248d565b6001600160a01b03821661232a576108de8161252a565b826001600160a01b0316826001600160a01b0316146108de576108de82826125d9565b612357838361261d565b6123646000848484612380565b6108de5760405162461bcd60e51b81526004016107a890612c69565b60006001600160a01b0384163b1561248257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123c4903390899088908890600401612c19565b602060405180830381600087803b1580156123de57600080fd5b505af192505050801561240e575060408051601f3d908101601f1916820190925261240b91810190612ae7565b60015b612468573d80801561243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b5080516124605760405162461bcd60e51b81526004016107a890612c69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dff565b506001949350505050565b6000600161249a8461100b565b6124a49190612e1e565b6000838152600860205260409020549091508082146124f7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061253c90600190612e1e565b6000838152600a60205260408120546009805493945090928490811061256457612564612f0d565b90600052602060002001549050806009838154811061258557612585612f0d565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806125bd576125bd612ef7565b6001900381819060005260206000200160009055905550505050565b60006125e48361100b565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166126735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a8565b6000818152600260205260409020546001600160a01b0316156126d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a8565b6126e460008383612295565b6001600160a01b038216600090815260036020526040812080546001929061270d908490612dd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180604001604052806002905b606081526020019060019003908161277a5790505090565b82805461279e90612e61565b90600052602060002090601f0160209004810192826127c05760008555612806565b82601f106127d957805160ff1916838001178555612806565b82800160010185558215612806579182015b828111156128065782518255916020019190600101906127eb565b50612812929150612816565b5090565b5b808211156128125760008155600101612817565b600067ffffffffffffffff83111561284557612845612f23565b612858601f8401601f1916602001612da2565b905082815283838301111561286c57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561289557600080fd5b81356128a081612f39565b9392505050565b6000602082840312156128b957600080fd5b81516128a081612f39565b600080604083850312156128d757600080fd5b82356128e281612f39565b915060208301356128f281612f39565b809150509250929050565b60008060006060848603121561291257600080fd5b833561291d81612f39565b9250602084013561292d81612f39565b929592945050506040919091013590565b6000806000806080858703121561295457600080fd5b843561295f81612f39565b9350602085013561296f81612f39565b925060408501359150606085013567ffffffffffffffff81111561299257600080fd5b8501601f810187136129a357600080fd5b6129b28782356020840161282b565b91505092959194509250565b600080604083850312156129d157600080fd5b82356129dc81612f39565b9150602083013580151581146128f257600080fd5b60008060408385031215612a0457600080fd5b8235612a0f81612f39565b946020939093013593505050565b60006020808385031215612a3057600080fd5b823567ffffffffffffffff80821115612a4857600080fd5b818501915085601f830112612a5c57600080fd5b813581811115612a6e57612a6e612f23565b8060051b9150612a7f848301612da2565b8181528481019084860184860187018a1015612a9a57600080fd5b600095505b83861015612abd578035835260019590950194918601918601612a9f565b5098975050505050505050565b600060208284031215612adc57600080fd5b81356128a081612f4e565b600060208284031215612af957600080fd5b81516128a081612f4e565b600060208284031215612b1657600080fd5b813567ffffffffffffffff811115612b2d57600080fd5b8201601f81018413612b3e57600080fd5b611dff8482356020840161282b565b600060208284031215612b5f57600080fd5b5035919050565b60008151808452612b7e816020860160208601612e35565b601f01601f19169290920160200192915050565b60008251612ba4818460208701612e35565b9190910192915050565b60008351612bc0818460208801612e35565b835190830190612bd4818360208801612e35565b01949350505050565b60008351612bef818460208801612e35565b600160fd1b9083019081528351612c0d816001840160208801612e35565b01600101949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4c90830184612b66565b9695505050505050565b6020815260006128a06020830184612b66565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612dcb57612dcb612f23565b604052919050565b60008219821115612de657612de6612ecb565b500190565b600082612dfa57612dfa612ee1565b500490565b6000816000190483118215151615612e1957612e19612ecb565b500290565b600082821015612e3057612e30612ecb565b500390565b60005b83811015612e50578181015183820152602001612e38565b838111156115265750506000910152565b600181811c90821680612e7557607f821691505b60208210811415612e9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eb057612eb0612ecb565b5060010190565b600082612ec657612ec6612ee1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b1357600080fd5b6001600160e01b031981168114610b1357600080fdfea2646970667358221220754e4694fa720abacaff71219e06ccc7d0eb350936dc64aa6b464397f52c272a64736f6c63430008070033

Deployed Bytecode Sourcemap

43596:7176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37338:224;;;;;;;;;;-1:-1:-1;37338:224:0;;;;;:::i;:::-;;:::i;:::-;;;7936:14:1;;7929:22;7911:41;;7899:2;7884:18;37338:224:0;;;;;;;;24408:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26027:221::-;;;;;;;;;;-1:-1:-1;26027:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7234:32:1;;;7216:51;;7204:2;7189:18;26027:221:0;7070:203:1;25550:411:0;;;;;;;;;;-1:-1:-1;25550:411:0;;;;;:::i;:::-;;:::i;:::-;;43755:71;;;;;;;;;;-1:-1:-1;43755:71:0;;;;-1:-1:-1;;;;;43755:71:0;;;37978:113;;;;;;;;;;-1:-1:-1;38066:10:0;:17;37978:113;;;17532:25:1;;;17520:2;17505:18;37978:113:0;17386:177:1;47049:139:0;;;;;;;;;;-1:-1:-1;47049:139:0;;;;;:::i;:::-;;:::i;26917:339::-;;;;;;;;;;-1:-1:-1;26917:339:0;;;;;:::i;:::-;;:::i;37646:256::-;;;;;;;;;;-1:-1:-1;37646:256:0;;;;;:::i;:::-;;:::i;43833:62::-;;;;;;;;;;-1:-1:-1;43833:62:0;;;;-1:-1:-1;;;;;43833:62:0;;;49829:139;;;;;;;;;;;;;:::i;27327:185::-;;;;;;;;;;-1:-1:-1;27327:185:0;;;;;:::i;:::-;;:::i;38168:233::-;;;;;;;;;;-1:-1:-1;38168:233:0;;;;;:::i;:::-;;:::i;49722:99::-;;;;;;;;;;-1:-1:-1;49722:99:0;;;;;:::i;:::-;;:::i;46914:127::-;;;;;;;;;;-1:-1:-1;46914:127:0;;;;;:::i;:::-;;:::i;24102:239::-;;;;;;;;;;-1:-1:-1;24102:239:0;;;;;:::i;:::-;;:::i;49305:409::-;;;;;;:::i;:::-;;:::i;47476:126::-;;;;;;;;;;-1:-1:-1;47476:126:0;;;;;:::i;:::-;;:::i;25283:97::-;;;;;;;;;;;;;:::i;23832:208::-;;;;;;;;;;-1:-1:-1;23832:208:0;;;;;:::i;:::-;;:::i;8837:94::-;;;;;;;;;;;;;:::i;23128:22::-;;;;;;;;;;;;;:::i;8186:87::-;;;;;;;;;;-1:-1:-1;8259:6:0;;-1:-1:-1;;;;;8259:6:0;8186:87;;24577:104;;;;;;;;;;;;;:::i;47196:135::-;;;;;;;;;;-1:-1:-1;47196:135:0;;;;;:::i;:::-;;:::i;48533:377::-;;;;;;:::i;:::-;;:::i;43674:40::-;;;;;;;;;;;;;;;;48268:257;;;;;;:::i;:::-;;:::i;26320:295::-;;;;;;;;;;-1:-1:-1;26320:295:0;;;;;:::i;:::-;;:::i;27583:328::-;;;;;;;;;;-1:-1:-1;27583:328:0;;;;;:::i;:::-;;:::i;47339:129::-;;;;;;;;;;-1:-1:-1;47339:129:0;;;;;:::i;:::-;;:::i;24752:292::-;;;;;;;;;;-1:-1:-1;24752:292:0;;;;;:::i;:::-;;:::i;46778:128::-;;;;;;;;;;-1:-1:-1;46778:128:0;;;;;:::i;:::-;;:::i;26686:164::-;;;;;;;;;;-1:-1:-1;26686:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26807:25:0;;;26783:4;26807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26686:164;9086:192;;;;;;;;;;-1:-1:-1;9086:192:0;;;;;:::i;:::-;;:::i;48918:379::-;;;;;;:::i;:::-;;:::i;37338:224::-;37440:4;-1:-1:-1;;;;;;37464:50:0;;-1:-1:-1;;;37464:50:0;;:90;;;37518:36;37542:11;37518:23;:36::i;:::-;37457:97;37338:224;-1:-1:-1;;37338:224:0:o;24408:100::-;24462:13;24495:5;24488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24408:100;:::o;26027:221::-;26103:7;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;26123:73;;;;-1:-1:-1;;;26123:73:0;;14050:2:1;26123:73:0;;;14032:21:1;14089:2;14069:18;;;14062:30;14128:34;14108:18;;;14101:62;-1:-1:-1;;;14179:18:1;;;14172:42;14231:19;;26123:73:0;;;;;;;;;-1:-1:-1;26216:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26216:24:0;;26027:221::o;25550:411::-;25631:13;25647:23;25662:7;25647:14;:23::i;:::-;25631:39;;25695:5;-1:-1:-1;;;;;25689:11:0;:2;-1:-1:-1;;;;;25689:11:0;;;25681:57;;;;-1:-1:-1;;;25681:57:0;;15995:2:1;25681:57:0;;;15977:21:1;16034:2;16014:18;;;16007:30;16073:34;16053:18;;;16046:62;-1:-1:-1;;;16124:18:1;;;16117:31;16165:19;;25681:57:0;15793:397:1;25681:57:0;7142:10;-1:-1:-1;;;;;25773:21:0;;;;:62;;-1:-1:-1;25798:37:0;25815:5;7142:10;26686:164;:::i;25798:37::-;25751:168;;;;-1:-1:-1;;;25751:168:0;;12443:2:1;25751:168:0;;;12425:21:1;12482:2;12462:18;;;12455:30;12521:34;12501:18;;;12494:62;12592:26;12572:18;;;12565:54;12636:19;;25751:168:0;12241:420:1;25751:168:0;25932:21;25941:2;25945:7;25932:8;:21::i;:::-;25620:341;25550:411;;:::o;47049:139::-;47109:13;47142:38;47148:7;47142:38;;;;;;;;;;;;;-1:-1:-1;;;47142:38:0;;;47170:9;47142:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:38::i;26917:339::-;27112:41;7142:10;27145:7;27112:18;:41::i;:::-;27104:103;;;;-1:-1:-1;;;27104:103:0;;;;;;;:::i;:::-;27220:28;27230:4;27236:2;27240:7;27220:9;:28::i;37646:256::-;37743:7;37779:23;37796:5;37779:16;:23::i;:::-;37771:5;:31;37763:87;;;;-1:-1:-1;;;37763:87:0;;8961:2:1;37763:87:0;;;8943:21:1;9000:2;8980:18;;;8973:30;9039:34;9019:18;;;9012:62;-1:-1:-1;;;9090:18:1;;;9083:41;9141:19;;37763:87:0;8759:407:1;37763:87:0;-1:-1:-1;;;;;;37868:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37646:256::o;49829:139::-;8259:6;;-1:-1:-1;;;;;8259:6:0;7142:10;8406:23;8398:68;;;;-1:-1:-1;;;8398:68:0;;;;;;;:::i;:::-;49877:83:::1;::::0;49885:42:::1;::::0;49938:21:::1;49877:83:::0;::::1;;;::::0;::::1;::::0;;;49938:21;49885:42;49877:83;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49829:139::o:0;27327:185::-;27465:39;27482:4;27488:2;27492:7;27465:39;;;;;;;;;;;;:16;:39::i;38168:233::-;38243:7;38279:30;38066:10;:17;;37978:113;38279:30;38271:5;:38;38263:95;;;;-1:-1:-1;;;38263:95:0;;16815:2:1;38263:95:0;;;16797:21:1;16854:2;16834:18;;;16827:30;16893:34;16873:18;;;16866:62;-1:-1:-1;;;16944:18:1;;;16937:42;16996:19;;38263:95:0;16613:408:1;38263:95:0;38376:10;38387:5;38376:17;;;;;;;;:::i;:::-;;;;;;;;;38369:24;;38168:233;;;:::o;49722:99::-;8259:6;;-1:-1:-1;;;;;8259:6:0;7142:10;8406:23;8398:68;;;;-1:-1:-1;;;8398:68:0;;;;;;;:::i;:::-;49793:20:::1;49805:7;49793:11;:20::i;46914:127::-:0;46970:13;47003:30;47009:7;47003:30;;;;;;;;;;;;;-1:-1:-1;;;47003:30:0;;;47027:5;47003:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24102:239;24174:7;24210:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24210:16:0;24245:19;24237:73;;;;-1:-1:-1;;;24237:73:0;;13279:2:1;24237:73:0;;;13261:21:1;13318:2;13298:18;;;13291:30;13357:34;13337:18;;;13330:62;-1:-1:-1;;;13408:18:1;;;13401:39;13457:19;;24237:73:0;13077:405:1;49305:409:0;11117:1;11713:7;;:19;;11705:63;;;;-1:-1:-1;;;11705:63:0;;;;;;;:::i;:::-;11117:1;11846:7;:18;49424:10:::1;49405:15;:29;;49397:55;;;::::0;-1:-1:-1;;;49397:55:0;;8619:2:1;49397:55:0::1;::::0;::::1;8601:21:1::0;8658:2;8638:18;;;8631:30;-1:-1:-1;;;8677:18:1;;;8670:43;8730:18;;49397:55:0::1;8417:337:1::0;49397:55:0::1;49505:9;49500:207;49524:7;:14;49520:1;:18;49500:207;;;49568:12;::::0;49589:10;;49604::::1;::::0;-1:-1:-1;;;;;49568:12:0::1;::::0;:20:::1;::::0;49589:7;;49597:1;;49589:10;::::1;;;;;:::i;:::-;;;;;;;49568:32;;;;;;;;;;;;;17532:25:1::0;;17520:2;17505:18;;17386:177;49568:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49568:46:0::1;;49560:85;;;::::0;-1:-1:-1;;;49560:85:0;;11675:2:1;49560:85:0::1;::::0;::::1;11657:21:1::0;11714:2;11694:18;;;11687:30;11753:28;11733:18;;;11726:56;11799:18;;49560:85:0::1;11473:350:1::0;49560:85:0::1;49660:35;7142:10:::0;49684:7:::1;49692:1;49684:10;;;;;;;;:::i;:::-;;;;;;;49660:9;:35::i;:::-;49540:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49500:207;;;-1:-1:-1::0;;11073:1:0;12025:7;:22;49305:409::o;47476:126::-;47531:13;47564:30;47570:7;47564:30;;;;;;;;;;;;;-1:-1:-1;;;47564:30:0;;;47587:6;47564:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25283:97;25331:13;25364:8;25357:15;;;;;:::i;23832:208::-;23904:7;-1:-1:-1;;;;;23932:19:0;;23924:74;;;;-1:-1:-1;;;23924:74:0;;12868:2:1;23924:74:0;;;12850:21:1;12907:2;12887:18;;;12880:30;12946:34;12926:18;;;12919:62;-1:-1:-1;;;12997:18:1;;;12990:40;13047:19;;23924:74:0;12666:406:1;23924:74:0;-1:-1:-1;;;;;;24016:16:0;;;;;:9;:16;;;;;;;23832:208::o;8837:94::-;8259:6;;-1:-1:-1;;;;;8259:6:0;7142:10;8406:23;8398:68;;;;-1:-1:-1;;;8398:68:0;;;;;;;:::i;:::-;8902:21:::1;8920:1;8902:9;:21::i;:::-;8837:94::o:0;23128:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24577:104::-;24633:13;24666:7;24659:14;;;;;:::i;47196:135::-;47254:13;47287:36;47293:7;47287:36;;;;;;;;;;;;;-1:-1:-1;;;47287:36:0;;;47314:8;47287:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48533:377;11117:1;11713:7;;:19;;11705:63;;;;-1:-1:-1;;;11705:63:0;;;;;;;:::i;:::-;11117:1;11846:7;:18;48635:15;;48627:5:::1;::::0;48655:9:::1;::::0;48627:23:::1;::::0;::::1;:::i;:::-;48626:38;;48618:82;;;::::0;-1:-1:-1;;;48618:82:0;;11315:2:1;48618:82:0::1;::::0;::::1;11297:21:1::0;11354:2;11334:18;;;11327:30;11393:33;11373:18;;;11366:61;11444:18;;48618:82:0::1;11113:355:1::0;48618:82:0::1;48716:9;48711:192;48735:8;:15;48731:1;:19;48711:192;;;48794:4;48780:8;48789:1;48780:11;;;;;;;;:::i;:::-;;;;;;;:18;:41;;;;;48816:5;48802:8;48811:1;48802:11;;;;;;;;:::i;:::-;;;;;;;:19;48780:41;48772:70;;;;-1:-1:-1::0;;;48772:70:0::1;;;;;;;:::i;:::-;48857:34;48867:10;48879:8;48888:1;48879:11;;;;;;;;:::i;48857:34::-;48752:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48711:192;;48268:257:::0;11117:1;11713:7;;:19;;11705:63;;;;-1:-1:-1;;;11705:63:0;;;;;;;:::i;:::-;11117:1;11846:7;:18;48356:4:::1;48346:14:::0;::::1;:34:::0;::::1;;;;48375:5;48364:7;:16;;48346:34;48338:63;;;;-1:-1:-1::0;;;48338:63:0::1;;;;;;;:::i;:::-;48429:9;48420:5;;:18;;48412:62;;;::::0;-1:-1:-1;;;48412:62:0;;11315:2:1;48412:62:0::1;::::0;::::1;11297:21:1::0;11354:2;11334:18;;;11327:30;11393:33;11373:18;;;11366:61;11444:18;;48412:62:0::1;11113:355:1::0;48412:62:0::1;48485:32;7142:10:::0;48509:7:::1;48485:9;:32::i;:::-;-1:-1:-1::0;11073:1:0;12025:7;:22;48268:257::o;26320:295::-;-1:-1:-1;;;;;26423:24:0;;7142:10;26423:24;;26415:62;;;;-1:-1:-1;;;26415:62:0;;10961:2:1;26415:62:0;;;10943:21:1;11000:2;10980:18;;;10973:30;11039:27;11019:18;;;11012:55;11084:18;;26415:62:0;10759:349:1;26415:62:0;7142:10;26490:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26490:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26490:53:0;;;;;;;;;;26559:48;;7911:41:1;;;26490:42:0;;7142:10;26559:48;;7884:18:1;26559:48:0;;;;;;;26320:295;;:::o;27583:328::-;27758:41;7142:10;27791:7;27758:18;:41::i;:::-;27750:103;;;;-1:-1:-1;;;27750:103:0;;;;;;;:::i;:::-;27864:39;27878:4;27884:2;27888:7;27897:5;27864:13;:39::i;:::-;27583:328;;;;:::o;47339:129::-;47395:13;47428:32;47434:7;47428:32;;;;;;;;;;;;;-1:-1:-1;;;47428:32:0;;;47453:6;47428:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24752:292;29486:4;29510:16;;;:7;:16;;;;;;24825:13;;-1:-1:-1;;;;;29510:16:0;24851:76;;;;-1:-1:-1;;;24851:76:0;;15579:2:1;24851:76:0;;;15561:21:1;15618:2;15598:18;;;15591:30;15657:34;15637:18;;;15630:62;-1:-1:-1;;;15708:18:1;;;15701:45;15763:19;;24851:76:0;15377:411:1;24851:76:0;24938:18;24959:9;:7;:9::i;:::-;24938:30;;25010:4;25016:18;:7;:16;:18::i;:::-;24993:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24979:57;;;24752:292;;;:::o;46778:128::-;46834:13;46867:31;46873:7;46867:31;;;;;;;;;;;;;-1:-1:-1;;;46867:31:0;;;46891:6;46867:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9086:192;8259:6;;-1:-1:-1;;;;;8259:6:0;7142:10;8406:23;8398:68;;;;-1:-1:-1;;;8398:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9175:22:0;::::1;9167:73;;;::::0;-1:-1:-1;;;9167:73:0;;9792:2:1;9167:73:0::1;::::0;::::1;9774:21:1::0;9831:2;9811:18;;;9804:30;9870:34;9850:18;;;9843:62;-1:-1:-1;;;9921:18:1;;;9914:36;9967:19;;9167:73:0::1;9590:402:1::0;9167:73:0::1;9251:19;9261:8;9251:9;:19::i;48918:379::-:0;11117:1;11713:7;;:19;;11705:63;;;;-1:-1:-1;;;11705:63:0;;;;;;;:::i;:::-;11117:1;11846:7;:18;49003:10;;;;;:28:::1;;;49027:4;49017:6;:14;;49003:28;48995:57;;;;-1:-1:-1::0;;;48995:57:0::1;;;;;;;:::i;:::-;49071:12;::::0;:28:::1;::::0;-1:-1:-1;;;49071:28:0;;::::1;::::0;::::1;17532:25:1::0;;;49103:10:0::1;::::0;-1:-1:-1;;;;;49071:12:0::1;::::0;:20:::1;::::0;17505:18:1;;49071:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49071:42:0::1;;49063:81;;;::::0;-1:-1:-1;;;49063:81:0;;11675:2:1;49063:81:0::1;::::0;::::1;11657:21:1::0;11714:2;11694:18;;;11687:30;11753:28;11733:18;;;11726:56;11799:18;;49063:81:0::1;11473:350:1::0;49063:81:0::1;49182:10;49163:15;:29;;49155:55;;;::::0;-1:-1:-1;;;49155:55:0;;8619:2:1;49155:55:0::1;::::0;::::1;8601:21:1::0;8658:2;8638:18;;;8631:30;-1:-1:-1;;;8677:18:1;;;8670:43;8730:18;;49155:55:0::1;8417:337:1::0;23463:305:0;23565:4;-1:-1:-1;;;;;;23602:40:0;;-1:-1:-1;;;23602:40:0;;:105;;-1:-1:-1;;;;;;;23659:48:0;;-1:-1:-1;;;23659:48:0;23602:105;:158;;;-1:-1:-1;;;;;;;;;;22150:40:0;;;23724:36;22041:157;33401:174;33476:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33476:29:0;-1:-1:-1;;;;;33476:29:0;;;;;;;;:24;;33530:23;33476:24;33530:14;:23::i;:::-;-1:-1:-1;;;;;33521:46:0;;;;;;;;;;;33401:174;;:::o;47610:650::-;47753:13;47779:12;47794:62;47825:9;47836:17;47845:7;47836:8;:17::i;:::-;47808:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47794:6;:62::i;:::-;47779:77;;47867:20;47890:11;47909;:18;47902:4;:25;;;;:::i;:::-;47890:38;;;;;;;;:::i;:::-;;;;;;;47867:61;;47985:17;47970:9;47953:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;47943:38;;;;;;:59;47939:290;;;48019:21;;:::i;:::-;48065:6;48079:13;;48072:20;;:4;:20;:::i;:::-;48065:28;;;;;;;;:::i;:::-;;;;;;;;48055:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;48060:1;48055:7;;;;;;;:::i;:::-;;;;:38;48118:6;48132:13;;48125:20;;:4;:20;:::i;:::-;48118:28;;;;;;;;:::i;:::-;;;;;;;;48108:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;48113:1;48108:7;;;;;;;:::i;:::-;;;;;;;;;:38;;;;48194:7;;48208;;;;48177:39;;;;;;:::i;:::-;;;;;;;;;;;;;48161:56;;48004:225;47939:290;48246:6;47610:650;-1:-1:-1;;;;;47610:650:0:o;29715:348::-;29808:4;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;29825:73;;;;-1:-1:-1;;;29825:73:0;;12030:2:1;29825:73:0;;;12012:21:1;12069:2;12049:18;;;12042:30;12108:34;12088:18;;;12081:62;-1:-1:-1;;;12159:18:1;;;12152:42;12211:19;;29825:73:0;11828:408:1;29825:73:0;29909:13;29925:23;29940:7;29925:14;:23::i;:::-;29909:39;;29978:5;-1:-1:-1;;;;;29967:16:0;:7;-1:-1:-1;;;;;29967:16:0;;:51;;;;30011:7;-1:-1:-1;;;;;29987:31:0;:20;29999:7;29987:11;:20::i;:::-;-1:-1:-1;;;;;29987:31:0;;29967:51;:87;;;-1:-1:-1;;;;;;26807:25:0;;;26783:4;26807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30022:32;29959:96;29715:348;-1:-1:-1;;;;29715:348:0:o;32705:578::-;32864:4;-1:-1:-1;;;;;32837:31:0;:23;32852:7;32837:14;:23::i;:::-;-1:-1:-1;;;;;32837:31:0;;32829:85;;;;-1:-1:-1;;;32829:85:0;;15169:2:1;32829:85:0;;;15151:21:1;15208:2;15188:18;;;15181:30;15247:34;15227:18;;;15220:62;-1:-1:-1;;;15298:18:1;;;15291:39;15347:19;;32829:85:0;14967:405:1;32829:85:0;-1:-1:-1;;;;;32933:16:0;;32925:65;;;;-1:-1:-1;;;32925:65:0;;10556:2:1;32925:65:0;;;10538:21:1;10595:2;10575:18;;;10568:30;10634:34;10614:18;;;10607:62;-1:-1:-1;;;10685:18:1;;;10678:34;10729:19;;32925:65:0;10354:400:1;32925:65:0;33003:39;33024:4;33030:2;33034:7;33003:20;:39::i;:::-;33107:29;33124:1;33128:7;33107:8;:29::i;:::-;-1:-1:-1;;;;;33149:15:0;;;;;;:9;:15;;;;;:20;;33168:1;;33149:15;:20;;33168:1;;33149:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33180:13:0;;;;;;:9;:13;;;;;:18;;33197:1;;33180:13;:18;;33197:1;;33180:18;:::i;:::-;;;;-1:-1:-1;;33209:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33209:21:0;-1:-1:-1;;;;;33209:21:0;;;;;;;;;33248:27;;33209:16;;33248:27;;;;;;;32705:578;;;:::o;25388:100::-;25461:19;;;;:8;;:19;;;;;:::i;:::-;;25388:100;:::o;30405:110::-;30481:26;30491:2;30495:7;30481:26;;;;;;;;;;;;:9;:26::i;9286:173::-;9361:6;;;-1:-1:-1;;;;;9378:17:0;;;-1:-1:-1;;;;;;9378:17:0;;;;;;;9411:40;;9361:6;;;9378:17;9361:6;;9411:40;;9342:16;;9411:40;9331:128;9286:173;:::o;28793:315::-;28950:28;28960:4;28966:2;28970:7;28950:9;:28::i;:::-;28997:48;29020:4;29026:2;29030:7;29039:5;28997:22;:48::i;:::-;28989:111;;;;-1:-1:-1;;;28989:111:0;;;;;;;:::i;5793:723::-;5849:13;6070:10;6066:53;;-1:-1:-1;;6097:10:0;;;;;;;;;;;;-1:-1:-1;;;6097:10:0;;;;;5793:723::o;6066:53::-;6144:5;6129:12;6185:78;6192:9;;6185:78;;6218:8;;;;:::i;:::-;;-1:-1:-1;6241:10:0;;-1:-1:-1;6249:2:0;6241:10;;:::i;:::-;;;6185:78;;;6273:19;6305:6;6295:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6295:17:0;;6273:39;;6323:154;6330:10;;6323:154;;6357:11;6367:1;6357:11;;:::i;:::-;;-1:-1:-1;6426:10:0;6434:2;6426:5;:10;:::i;:::-;6413:24;;:2;:24;:::i;:::-;6400:39;;6383:6;6390;6383:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6383:56:0;;;;;;;;-1:-1:-1;6454:11:0;6463:2;6454:11;;:::i;:::-;;;6323:154;;49976:723;50032:13;50253:10;50249:53;;-1:-1:-1;;50280:10:0;;;;;;;;;;;;-1:-1:-1;;;50280:10:0;;;;;49976:723::o;50249:53::-;50327:5;50312:12;50368:78;50375:9;;50368:78;;50401:8;;;;:::i;:::-;;-1:-1:-1;50424:10:0;;-1:-1:-1;50432:2:0;50424:10;;:::i;:::-;;;50368:78;;;50456:19;50488:6;50478:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50478:17:0;;50456:39;;50506:154;50513:10;;50506:154;;50540:11;50550:1;50540:11;;:::i;:::-;;-1:-1:-1;50609:10:0;50617:2;50609:5;:10;:::i;:::-;50596:24;;:2;:24;:::i;:::-;50583:39;;50566:6;50573;50566:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;50566:56:0;;;;;;;;-1:-1:-1;50637:11:0;50646:2;50637:11;;:::i;:::-;;;50506:154;;46632:138;46692:7;46754:5;46737:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46737:23:0;;;;;;;;;46727:34;;46737:23;46727:34;;;;;46632:138;-1:-1:-1;;46632:138:0:o;39014:589::-;-1:-1:-1;;;;;39220:18:0;;39216:187;;39255:40;39287:7;40430:10;:17;;40403:24;;;;:15;:24;;;;;:44;;;40458:24;;;;;;;;;;;;40326:164;39255:40;39216:187;;;39325:2;-1:-1:-1;;;;;39317:10:0;:4;-1:-1:-1;;;;;39317:10:0;;39313:90;;39344:47;39377:4;39383:7;39344:32;:47::i;:::-;-1:-1:-1;;;;;39417:16:0;;39413:183;;39450:45;39487:7;39450:36;:45::i;39413:183::-;39523:4;-1:-1:-1;;;;;39517:10:0;:2;-1:-1:-1;;;;;39517:10:0;;39513:83;;39544:40;39572:2;39576:7;39544:27;:40::i;30742:321::-;30872:18;30878:2;30882:7;30872:5;:18::i;:::-;30923:54;30954:1;30958:2;30962:7;30971:5;30923:22;:54::i;:::-;30901:154;;;;-1:-1:-1;;;30901:154:0;;;;;;;:::i;34140:803::-;34295:4;-1:-1:-1;;;;;34316:13:0;;14548:20;14596:8;34312:624;;34352:72;;-1:-1:-1;;;34352:72:0;;-1:-1:-1;;;;;34352:36:0;;;;;:72;;7142:10;;34403:4;;34409:7;;34418:5;;34352:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34352:72:0;;;;;;;;-1:-1:-1;;34352:72:0;;;;;;;;;;;;:::i;:::-;;;34348:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34598:13:0;;34594:272;;34641:60;;-1:-1:-1;;;34641:60:0;;;;;;;:::i;34594:272::-;34816:6;34810:13;34801:6;34797:2;34793:15;34786:38;34348:533;-1:-1:-1;;;;;;34475:55:0;-1:-1:-1;;;34475:55:0;;-1:-1:-1;34468:62:0;;34312:624;-1:-1:-1;34920:4:0;34140:803;;;;;;:::o;41117:988::-;41383:22;41433:1;41408:22;41425:4;41408:16;:22::i;:::-;:26;;;;:::i;:::-;41445:18;41466:26;;;:17;:26;;;;;;41383:51;;-1:-1:-1;41599:28:0;;;41595:328;;-1:-1:-1;;;;;41666:18:0;;41644:19;41666:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41717:30;;;;;;:44;;;41834:30;;:17;:30;;;;;:43;;;41595:328;-1:-1:-1;42019:26:0;;;;:17;:26;;;;;;;;42012:33;;;-1:-1:-1;;;;;42063:18:0;;;;;:12;:18;;;;;:34;;;;;;;42056:41;41117:988::o;42400:1079::-;42678:10;:17;42653:22;;42678:21;;42698:1;;42678:21;:::i;:::-;42710:18;42731:24;;;:15;:24;;;;;;43104:10;:26;;42653:46;;-1:-1:-1;42731:24:0;;42653:46;;43104:26;;;;;;:::i;:::-;;;;;;;;;43082:48;;43168:11;43143:10;43154;43143:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43248:28;;;:15;:28;;;;;;;:41;;;43420:24;;;;;43413:31;43455:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42471:1008;;;42400:1079;:::o;39904:221::-;39989:14;40006:20;40023:2;40006:16;:20::i;:::-;-1:-1:-1;;;;;40037:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40082:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39904:221:0:o;31399:382::-;-1:-1:-1;;;;;31479:16:0;;31471:61;;;;-1:-1:-1;;;31471:61:0;;13689:2:1;31471:61:0;;;13671:21:1;;;13708:18;;;13701:30;13767:34;13747:18;;;13740:62;13819:18;;31471:61:0;13487:356:1;31471:61:0;29486:4;29510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29510:16:0;:30;31543:58;;;;-1:-1:-1;;;31543:58:0;;10199:2:1;31543:58:0;;;10181:21:1;10238:2;10218:18;;;10211:30;10277;10257:18;;;10250:58;10325:18;;31543:58:0;9997:352:1;31543:58:0;31614:45;31643:1;31647:2;31651:7;31614:20;:45::i;:::-;-1:-1:-1;;;;;31672:13:0;;;;;;:9;:13;;;;;:18;;31689:1;;31672:13;:18;;31689:1;;31672:18;:::i;:::-;;;;-1:-1:-1;;31701:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31701:21:0;-1:-1:-1;;;;;31701:21:0;;;;;;;;31740:33;;31701:16;;;31740:33;;31701:16;;31740:33;31399:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;:::-;661:5;425:247;-1:-1:-1;;;425:247:1:o;677:251::-;747:6;800:2;788:9;779:7;775:23;771:32;768:52;;;816:1;813;806:12;768:52;848:9;842:16;867:31;892:5;867:31;:::i;933:388::-;1001:6;1009;1062:2;1050:9;1041:7;1037:23;1033:32;1030:52;;;1078:1;1075;1068:12;1030:52;1117:9;1104:23;1136:31;1161:5;1136:31;:::i;:::-;1186:5;-1:-1:-1;1243:2:1;1228:18;;1215:32;1256:33;1215:32;1256:33;:::i;:::-;1308:7;1298:17;;;933:388;;;;;:::o;1326:456::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1527:9;1514:23;1546:31;1571:5;1546:31;:::i;:::-;1596:5;-1:-1:-1;1653:2:1;1638:18;;1625:32;1666:33;1625:32;1666:33;:::i;:::-;1326:456;;1718:7;;-1:-1:-1;;;1772:2:1;1757:18;;;;1744:32;;1326:456::o;1787:794::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:53;;;1976:1;1973;1966:12;1927:53;2015:9;2002:23;2034:31;2059:5;2034:31;:::i;:::-;2084:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;2154:33;2113:32;2154:33;:::i;:::-;2206:7;-1:-1:-1;2260:2:1;2245:18;;2232:32;;-1:-1:-1;2315:2:1;2300:18;;2287:32;2342:18;2331:30;;2328:50;;;2374:1;2371;2364:12;2328:50;2397:22;;2450:4;2442:13;;2438:27;-1:-1:-1;2428:55:1;;2479:1;2476;2469:12;2428:55;2502:73;2567:7;2562:2;2549:16;2544:2;2540;2536:11;2502:73;:::i;:::-;2492:83;;;1787:794;;;;;;;:::o;2586:416::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2767:9;2754:23;2786:31;2811:5;2786:31;:::i;:::-;2836:5;-1:-1:-1;2893:2:1;2878:18;;2865:32;2935:15;;2928:23;2916:36;;2906:64;;2966:1;2963;2956:12;3007:315;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3191:9;3178:23;3210:31;3235:5;3210:31;:::i;:::-;3260:5;3312:2;3297:18;;;;3284:32;;-1:-1:-1;;;3007:315:1:o;3327:957::-;3411:6;3442:2;3485;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3541:9;3528:23;3570:18;3611:2;3603:6;3600:14;3597:34;;;3627:1;3624;3617:12;3597:34;3665:6;3654:9;3650:22;3640:32;;3710:7;3703:4;3699:2;3695:13;3691:27;3681:55;;3732:1;3729;3722:12;3681:55;3768:2;3755:16;3790:2;3786;3783:10;3780:36;;;3796:18;;:::i;:::-;3842:2;3839:1;3835:10;3825:20;;3865:28;3889:2;3885;3881:11;3865:28;:::i;:::-;3927:15;;;3958:12;;;;3990:11;;;4020;;;4016:20;;4013:33;-1:-1:-1;4010:53:1;;;4059:1;4056;4049:12;4010:53;4081:1;4072:10;;4091:163;4105:2;4102:1;4099:9;4091:163;;;4162:17;;4150:30;;4123:1;4116:9;;;;;4200:12;;;;4232;;4091:163;;;-1:-1:-1;4273:5:1;3327:957;-1:-1:-1;;;;;;;;3327:957:1:o;4289:245::-;4347:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4455:9;4442:23;4474:30;4498:5;4474:30;:::i;4539:249::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4709:9;4703:16;4728:30;4752:5;4728:30;:::i;4793:450::-;4862:6;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4971:9;4958:23;5004:18;4996:6;4993:30;4990:50;;;5036:1;5033;5026:12;4990:50;5059:22;;5112:4;5104:13;;5100:27;-1:-1:-1;5090:55:1;;5141:1;5138;5131:12;5090:55;5164:73;5229:7;5224:2;5211:16;5206:2;5202;5198:11;5164:73;:::i;5248:180::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;-1:-1:-1;5399:23:1;;5248:180;-1:-1:-1;5248:180:1:o;5433:257::-;5474:3;5512:5;5506:12;5539:6;5534:3;5527:19;5555:63;5611:6;5604:4;5599:3;5595:14;5588:4;5581:5;5577:16;5555:63;:::i;:::-;5672:2;5651:15;-1:-1:-1;;5647:29:1;5638:39;;;;5679:4;5634:50;;5433:257;-1:-1:-1;;5433:257:1:o;5695:276::-;5826:3;5864:6;5858:13;5880:53;5926:6;5921:3;5914:4;5906:6;5902:17;5880:53;:::i;:::-;5949:16;;;;;5695:276;-1:-1:-1;;5695:276:1:o;5976:470::-;6155:3;6193:6;6187:13;6209:53;6255:6;6250:3;6243:4;6235:6;6231:17;6209:53;:::i;:::-;6325:13;;6284:16;;;;6347:57;6325:13;6284:16;6381:4;6369:17;;6347:57;:::i;:::-;6420:20;;5976:470;-1:-1:-1;;;;5976:470:1:o;6451:614::-;6731:3;6769:6;6763:13;6785:53;6831:6;6826:3;6819:4;6811:6;6807:17;6785:53;:::i;:::-;-1:-1:-1;;;6860:16:1;;;6885:18;;;6928:13;;6950:65;6928:13;7002:1;6991:13;;6984:4;6972:17;;6950:65;:::i;:::-;7035:20;7057:1;7031:28;;6451:614;-1:-1:-1;;;;6451:614:1:o;7278:488::-;-1:-1:-1;;;;;7547:15:1;;;7529:34;;7599:15;;7594:2;7579:18;;7572:43;7646:2;7631:18;;7624:34;;;7694:3;7689:2;7674:18;;7667:31;;;7472:4;;7715:45;;7740:19;;7732:6;7715:45;:::i;:::-;7707:53;7278:488;-1:-1:-1;;;;;;7278:488:1:o;8193:219::-;8342:2;8331:9;8324:21;8305:4;8362:44;8402:2;8391:9;8387:18;8379:6;8362:44;:::i;9171:414::-;9373:2;9355:21;;;9412:2;9392:18;;;9385:30;9451:34;9446:2;9431:18;;9424:62;-1:-1:-1;;;9517:2:1;9502:18;;9495:48;9575:3;9560:19;;9171:414::o;14261:356::-;14463:2;14445:21;;;14482:18;;;14475:30;14541:34;14536:2;14521:18;;14514:62;14608:2;14593:18;;14261:356::o;14622:340::-;14824:2;14806:21;;;14863:2;14843:18;;;14836:30;-1:-1:-1;;;14897:2:1;14882:18;;14875:46;14953:2;14938:18;;14622:340::o;16195:413::-;16397:2;16379:21;;;16436:2;16416:18;;;16409:30;16475:34;16470:2;16455:18;;16448:62;-1:-1:-1;;;16541:2:1;16526:18;;16519:47;16598:3;16583:19;;16195:413::o;17026:355::-;17228:2;17210:21;;;17267:2;17247:18;;;17240:30;17306:33;17301:2;17286:18;;17279:61;17372:2;17357:18;;17026:355::o;17568:275::-;17639:2;17633:9;17704:2;17685:13;;-1:-1:-1;;17681:27:1;17669:40;;17739:18;17724:34;;17760:22;;;17721:62;17718:88;;;17786:18;;:::i;:::-;17822:2;17815:22;17568:275;;-1:-1:-1;17568:275:1:o;17848:128::-;17888:3;17919:1;17915:6;17912:1;17909:13;17906:39;;;17925:18;;:::i;:::-;-1:-1:-1;17961:9:1;;17848:128::o;17981:120::-;18021:1;18047;18037:35;;18052:18;;:::i;:::-;-1:-1:-1;18086:9:1;;17981:120::o;18106:168::-;18146:7;18212:1;18208;18204:6;18200:14;18197:1;18194:21;18189:1;18182:9;18175:17;18171:45;18168:71;;;18219:18;;:::i;:::-;-1:-1:-1;18259:9:1;;18106:168::o;18279:125::-;18319:4;18347:1;18344;18341:8;18338:34;;;18352:18;;:::i;:::-;-1:-1:-1;18389:9:1;;18279:125::o;18409:258::-;18481:1;18491:113;18505:6;18502:1;18499:13;18491:113;;;18581:11;;;18575:18;18562:11;;;18555:39;18527:2;18520:10;18491:113;;;18622:6;18619:1;18616:13;18613:48;;;-1:-1:-1;;18657:1:1;18639:16;;18632:27;18409:258::o;18672:380::-;18751:1;18747:12;;;;18794;;;18815:61;;18869:4;18861:6;18857:17;18847:27;;18815:61;18922:2;18914:6;18911:14;18891:18;18888:38;18885:161;;;18968:10;18963:3;18959:20;18956:1;18949:31;19003:4;19000:1;18993:15;19031:4;19028:1;19021:15;18885:161;;18672:380;;;:::o;19057:135::-;19096:3;-1:-1:-1;;19117:17:1;;19114:43;;;19137:18;;:::i;:::-;-1:-1:-1;19184:1:1;19173:13;;19057:135::o;19197:112::-;19229:1;19255;19245:35;;19260:18;;:::i;:::-;-1:-1:-1;19294:9:1;;19197:112::o;19314:127::-;19375:10;19370:3;19366:20;19363:1;19356:31;19406:4;19403:1;19396:15;19430:4;19427:1;19420:15;19446:127;19507:10;19502:3;19498:20;19495:1;19488:31;19538:4;19535:1;19528:15;19562:4;19559:1;19552:15;19578:127;19639:10;19634:3;19630:20;19627:1;19620:31;19670:4;19667:1;19660:15;19694:4;19691:1;19684:15;19710:127;19771:10;19766:3;19762:20;19759:1;19752:31;19802:4;19799:1;19792:15;19826:4;19823:1;19816:15;19842:127;19903:10;19898:3;19894:20;19891:1;19884:31;19934:4;19931:1;19924:15;19958:4;19955:1;19948:15;19974:131;-1:-1:-1;;;;;20049:31:1;;20039:42;;20029:70;;20095:1;20092;20085:12;20110:131;-1:-1:-1;;;;;;20184:32:1;;20174:43;;20164:71;;20231:1;20228;20221:12

Swarm Source

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