ETH Price: $3,330.52 (-1.33%)
Gas: 9 Gwei

Rats Ultra (RAT)
 

Overview

TokenID

15120

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Rats_Ultra

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

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: contracts/WithLimitedSupply.sol


pragma solidity ^0.8.0;


/// @author 1001.digital 
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _maxSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _maxSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return maxSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}
// File: contracts/RandomlyAssigned.sol


pragma solidity ^0.8.0;


/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _maxSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _maxSupply, uint256 _startFrom)
        WithLimitedSupply(_maxSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = maxSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Rats_Ultra.sol

// ██████   █████  ████████ ███████     ██    ██ ██      ████████ ██████   █████  
// ██   ██ ██   ██    ██    ██          ██    ██ ██         ██    ██   ██ ██   ██ 
// ██████  ███████    ██    ███████     ██    ██ ██         ██    ██████  ███████ 
// ██   ██ ██   ██    ██         ██     ██    ██ ██         ██    ██   ██ ██   ██ 
// ██   ██ ██   ██    ██    ███████      ██████  ███████    ██    ██   ██ ██   ██
// 20000 RATS ON A MISSION TO UNRAVEL.
// MINT DIRECTLY FROM CONTRACT.
// 0.08 ETH PER RAT, MAX 20 RATS PER TRANSACTION. 
// -- -.-- -- .. -. -.. - --- -- . .- -.- .. -. --. -.. --- -- .. ... ---...                                                   
// ... ..- -.-. .... .--. .-. . ... . -. - .--- --- -.-- ... - .... . .-. . .. -. .. ..-. .. -. -.. --..--                     
// - .... .- - .. - . -..- -.-. . .-.. ... .- .-.. .-.. --- - .... . .-. -... .-.. .. ... ...                                  
// - .... .- - . .- .-. - .... .- ..-. ..-. --- .-. -.. ... --- .-. --. .-. --- .-- ... -... -.-- -.- .. -. -.. ---...         
// - .... --- ..- --. .... -- ..- -.-. .... .. .-- .- -. - - .... .- - -- --- ... - .-- --- ..- .-.. -.. .... .- ...- . --..-- 
// -.-- . - ... - .. .-.. .-.. -- -.-- -- .. -. -.. ..-. --- .-. -... .. -.. ... - --- -.-. .-. .- ...- . .-.-.-               
// -. --- .--. .-. .. -. -.-. . .-.. -.-- .--. --- -- .--. --..-- -. --- .-- . .- .-.. - .... -.-- ... - --- .-. . --..--      
// -. --- ..-. --- .-. -.-. . - --- .-- .. -. - .... . ...- .. -.-. - --- .-. -.-- --..--                                      
// -. --- .-- .. .-.. -.-- .-- .. - - --- ... .- .-.. ...- . .- ... --- .-. . --..--                                           
// -. --- ... .... .- .--. . - --- ..-. . . -.. .- .-.. --- ...- .. -. --. . -.-- . ---...                                     
// - --- -. --- -. . --- ..-. - .... . ... . .. -.-- .. . .-.. -.. .- ... - .... .-. .- .-.. .-.. ---...                       
// ..-. --- .-. .-- .... -.-- ..--.. -- -.-- -- .. -. -.. -.. --- - .... ... . .-. ...- . ..-. --- .-. .- .-.. .-..            
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;




contract Rats_Ultra is ERC721Enumerable, Ownable, RandomlyAssigned {
  using Strings for uint256;
  
  string public baseExtension = ".json";
  uint256 public cost = 0.08 ether;
  uint256 public maxRats = 20000;
  uint256 public maxMintAmount = 20;
  bool public paused = false;
  
  string public baseURI = "https://ipfs.io/ipfs/QmY5czybYyGXpYz4t6Q8TscGgQfHTWUGqWsVYkBPrU5JzF/";

  constructor(
  ) ERC721("Rats Ultra", "RAT")
  RandomlyAssigned(20000, 1) {}

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(totalSupply() + _mintAmount <= maxRats);
    require(msg.value >= cost * _mintAmount);

    for (uint256 i = 1; i <= _mintAmount; i++) {
        uint256 mintIndex = nextToken();
     if (totalSupply() < maxRats) {
                _safeMint(_msgSender(), mintIndex);
    }
   }
  }

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

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

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

  //only owner

  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRats","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600f919062000173565b5067011c37937e080000601055614e2060115560146012556013805460ff19169055604080516080810190915260448082526200241f60208301398051620000799160149160209091019062000173565b503480156200008757600080fd5b50604080518082018252600a8152695261747320556c74726160b01b60208083019182528351808501909452600384526214905560ea1b908401528151614e209360019385939092620000dd9160009162000173565b508051620000f390600190602084019062000173565b505050620001106200010a6200011d60201b60201c565b62000121565b600c55600e555062000256565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000219565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b600181811c908216806200022e57607f821691505b602082108114156200025057634e487b7160e01b600052602260045260246000fd5b50919050565b6121b980620002666000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063debe561111610064578063debe5611146104fb578063e14ca35314610511578063e985e9c514610526578063f2fde38b1461056f57600080fd5b8063b88d4fde14610491578063c6682862146104b1578063c87b56dd146104c6578063d5abeb01146104e657600080fd5b806395d89b41116100d157806395d89b41146104345780639f181b5e14610449578063a0712d681461045e578063a22cb4651461047157600080fd5b80636c0360eb146103cc57806370a08231146103e1578063715018a6146104015780638da5cb5b1461041657600080fd5b806323b872dd1161017a578063438b630011610149578063438b6300146103455780634f6ccce7146103725780635c975abb146103925780636352211e146103ac57600080fd5b806323b872dd146102dd5780632f745c59146102fd5780633ccfd60b1461031d57806342842e0e1461032557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b2578063239c70ae146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611d58565b61058f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ba565b6040516102099190611f1c565b34801561024057600080fd5b5061025461024f366004611d92565b61064c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d2e565b6106e6565b005b34801561029a57600080fd5b506102a460105481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b506102a460125481565b3480156102e957600080fd5b5061028c6102f8366004611bda565b6107fc565b34801561030957600080fd5b506102a4610318366004611d2e565b61082d565b61028c6108c3565b34801561033157600080fd5b5061028c610340366004611bda565b610913565b34801561035157600080fd5b50610365610360366004611b8c565b61092e565b6040516102099190611ed8565b34801561037e57600080fd5b506102a461038d366004611d92565b6109d0565b34801561039e57600080fd5b506013546101fd9060ff1681565b3480156103b857600080fd5b506102546103c7366004611d92565b610a63565b3480156103d857600080fd5b50610227610ada565b3480156103ed57600080fd5b506102a46103fc366004611b8c565b610b68565b34801561040d57600080fd5b5061028c610bef565b34801561042257600080fd5b50600a546001600160a01b0316610254565b34801561044057600080fd5b50610227610c23565b34801561045557600080fd5b506102a4610c32565b61028c61046c366004611d92565b610c42565b34801561047d57600080fd5b5061028c61048c366004611cf2565b610cf3565b34801561049d57600080fd5b5061028c6104ac366004611c16565b610db8565b3480156104bd57600080fd5b50610227610df0565b3480156104d257600080fd5b506102276104e1366004611d92565b610dfd565b3480156104f257600080fd5b50600c546102a4565b34801561050757600080fd5b506102a460115481565b34801561051d57600080fd5b506102a4610edb565b34801561053257600080fd5b506101fd610541366004611ba7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057b57600080fd5b5061028c61058a366004611b8c565b610ef2565b60006001600160e01b0319821663780e9d6360e01b14806105b457506105b482610f8d565b92915050565b6060600080546105c990612095565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612095565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f182610a63565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b038216148061077b575061077b8133610541565b6107ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b6107f78383610fdd565b505050565b610806338261104b565b6108225760405162461bcd60e51b81526004016106c190611fb6565b6107f7838383611142565b600061083883610b68565b821061089a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ed5760405162461bcd60e51b81526004016106c190611f81565b60405133904780156108fc02916000818181858888f1935050505061091157600080fd5b565b6107f783838360405180602001604052806000815250610db8565b6060600061093b83610b68565b905060008167ffffffffffffffff81111561095857610958612157565b604051908082528060200260200182016040528015610981578160200160208202803683370190505b50905060005b828110156109c857610999858261082d565b8282815181106109ab576109ab612141565b6020908102919091010152806109c0816120d0565b915050610987565b509392505050565b60006109db60085490565b8210610a3e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c1565b60088281548110610a5157610a51612141565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60148054610ae790612095565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1390612095565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b505050505081565b60006001600160a01b038216610bd35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c195760405162461bcd60e51b81526004016106c190611f81565b61091160006112ed565b6060600180546105c990612095565b6000610c3d600b5490565b905090565b60135460ff1615610c5257600080fd5b60008111610c5f57600080fd5b601254811115610c6e57600080fd5b60115481610c7b60085490565b610c859190612007565b1115610c9057600080fd5b80601054610c9e9190612033565b341015610caa57600080fd5b60015b818111610cef576000610cbe61133f565b9050601154610ccc60085490565b1015610cdc57610cdc33826114d2565b5080610ce7816120d0565b915050610cad565b5050565b6001600160a01b038216331415610d4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc2338361104b565b610dde5760405162461bcd60e51b81526004016106c190611fb6565b610dea848484846114ec565b50505050565b600f8054610ae790612095565b6000818152600260205260409020546060906001600160a01b0316610e7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000610e8661151f565b90506000815111610ea65760405180602001604052806000815250610ed4565b80610eb08461152e565b600f604051602001610ec493929190611dd7565b6040516020818303038152906040525b9392505050565b6000610ee5610c32565b600c54610c3d9190612052565b600a546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016106c190611f81565b6001600160a01b038116610f815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610f8a816112ed565b50565b60006001600160e01b031982166380ac58cd60e01b1480610fbe57506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316146105b4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101282610a63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b60006110cf83610a63565b9050806001600160a01b0316846001600160a01b0316148061110a5750836001600160a01b03166110ff8461064c565b6001600160a01b0316145b8061113a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661115582610a63565b6001600160a01b0316146111bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b03821661121f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b61122a83838361162c565b611235600082610fdd565b6001600160a01b038316600090815260036020526040812080546001929061125e908490612052565b90915550506001600160a01b038216600090815260036020526040812080546001929061128c908490612007565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061134a610edb565b116113925760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016106c1565b600061139c610c32565b600c546113a99190612052565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c61141091906120eb565b6000818152600d60205260408120549192509061142e57508061143f565b506000818152600d60205260409020545b600d600061144e600186612052565b8152602001908152602001600020546000141561148457611470600184612052565b6000838152600d60205260409020556114b4565b600d6000611493600186612052565b81526020808201929092526040908101600090812054858252600d90935220555b6114bc6116e4565b50600e546114ca9082612007565b935050505090565b610cef828260405180602001604052806000815250611752565b6114f7848484611142565b61150384848484611785565b610dea5760405162461bcd60e51b81526004016106c190611f2f565b6060601480546105c990612095565b6060816115525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157c5780611566816120d0565b91506115759050600a8361201f565b9150611556565b60008167ffffffffffffffff81111561159757611597612157565b6040519080825280601f01601f1916602001820160405280156115c1576020820181803683370190505b5090505b841561113a576115d6600183612052565b91506115e3600a866120eb565b6115ee906030612007565b60f81b81838151811061160357611603612141565b60200101906001600160f81b031916908160001a905350611625600a8661201f565b94506115c5565b6001600160a01b0383166116875761168281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116aa565b816001600160a01b0316836001600160a01b0316146116aa576116aa8382611892565b6001600160a01b0382166116c1576107f78161192f565b826001600160a01b0316826001600160a01b0316146107f7576107f782826119de565b6000806116ef610edb565b116117375760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016106c1565b6000611742600b5490565b9050610c3d600b80546001019055565b61175c8383611a22565b6117696000848484611785565b6107f75760405162461bcd60e51b81526004016106c190611f2f565b60006001600160a01b0384163b1561188757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c9903390899088908890600401611e9b565b602060405180830381600087803b1580156117e357600080fd5b505af1925050508015611813575060408051601f3d908101601f1916820190925261181091810190611d75565b60015b61186d573d808015611841576040519150601f19603f3d011682016040523d82523d6000602084013e611846565b606091505b5080516118655760405162461bcd60e51b81526004016106c190611f2f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113a565b506001949350505050565b6000600161189f84610b68565b6118a99190612052565b6000838152600760205260409020549091508082146118fc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061194190600190612052565b6000838152600960205260408120546008805493945090928490811061196957611969612141565b90600052602060002001549050806008838154811061198a5761198a612141565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119c2576119c261212b565b6001900381819060005260206000200160009055905550505050565b60006119e983610b68565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b031615611add5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b611ae96000838361162c565b6001600160a01b0382166000908152600360205260408120805460019290611b12908490612007565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b0381168114611b8757600080fd5b919050565b600060208284031215611b9e57600080fd5b610ed482611b70565b60008060408385031215611bba57600080fd5b611bc383611b70565b9150611bd160208401611b70565b90509250929050565b600080600060608486031215611bef57600080fd5b611bf884611b70565b9250611c0660208501611b70565b9150604084013590509250925092565b60008060008060808587031215611c2c57600080fd5b611c3585611b70565b9350611c4360208601611b70565b925060408501359150606085013567ffffffffffffffff80821115611c6757600080fd5b818701915087601f830112611c7b57600080fd5b813581811115611c8d57611c8d612157565b604051601f8201601f19908116603f01168101908382118183101715611cb557611cb5612157565b816040528281528a6020848701011115611cce57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d0557600080fd5b611d0e83611b70565b915060208301358015158114611d2357600080fd5b809150509250929050565b60008060408385031215611d4157600080fd5b611d4a83611b70565b946020939093013593505050565b600060208284031215611d6a57600080fd5b8135610ed48161216d565b600060208284031215611d8757600080fd5b8151610ed48161216d565b600060208284031215611da457600080fd5b5035919050565b60008151808452611dc3816020860160208601612069565b601f01601f19169290920160200192915050565b600084516020611dea8285838a01612069565b855191840191611dfd8184848a01612069565b8554920191600090600181811c9080831680611e1a57607f831692505b858310811415611e3857634e487b7160e01b85526022600452602485fd5b808015611e4c5760018114611e5d57611e8a565b60ff19851688528388019550611e8a565b60008b81526020902060005b85811015611e825781548a820152908401908801611e69565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ece90830184611dab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1057835183529284019291840191600101611ef4565b50909695505050505050565b602081526000610ed46020830184611dab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561201a5761201a6120ff565b500190565b60008261202e5761202e612115565b500490565b600081600019048311821515161561204d5761204d6120ff565b500290565b600082821015612064576120646120ff565b500390565b60005b8381101561208457818101518382015260200161206c565b83811115610dea5750506000910152565b600181811c908216806120a957607f821691505b602082108114156120ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120e4576120e46120ff565b5060010190565b6000826120fa576120fa612115565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8a57600080fdfea26469706673582212206993fad1fc0eaeea30559de263ecc79442910477198edac91fa4df4eb3c6f38464736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5935637a79625979475870597a347436513854736347675166485457554771577356596b42507255354a7a462f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063debe561111610064578063debe5611146104fb578063e14ca35314610511578063e985e9c514610526578063f2fde38b1461056f57600080fd5b8063b88d4fde14610491578063c6682862146104b1578063c87b56dd146104c6578063d5abeb01146104e657600080fd5b806395d89b41116100d157806395d89b41146104345780639f181b5e14610449578063a0712d681461045e578063a22cb4651461047157600080fd5b80636c0360eb146103cc57806370a08231146103e1578063715018a6146104015780638da5cb5b1461041657600080fd5b806323b872dd1161017a578063438b630011610149578063438b6300146103455780634f6ccce7146103725780635c975abb146103925780636352211e146103ac57600080fd5b806323b872dd146102dd5780632f745c59146102fd5780633ccfd60b1461031d57806342842e0e1461032557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b2578063239c70ae146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611d58565b61058f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ba565b6040516102099190611f1c565b34801561024057600080fd5b5061025461024f366004611d92565b61064c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d2e565b6106e6565b005b34801561029a57600080fd5b506102a460105481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b506102a460125481565b3480156102e957600080fd5b5061028c6102f8366004611bda565b6107fc565b34801561030957600080fd5b506102a4610318366004611d2e565b61082d565b61028c6108c3565b34801561033157600080fd5b5061028c610340366004611bda565b610913565b34801561035157600080fd5b50610365610360366004611b8c565b61092e565b6040516102099190611ed8565b34801561037e57600080fd5b506102a461038d366004611d92565b6109d0565b34801561039e57600080fd5b506013546101fd9060ff1681565b3480156103b857600080fd5b506102546103c7366004611d92565b610a63565b3480156103d857600080fd5b50610227610ada565b3480156103ed57600080fd5b506102a46103fc366004611b8c565b610b68565b34801561040d57600080fd5b5061028c610bef565b34801561042257600080fd5b50600a546001600160a01b0316610254565b34801561044057600080fd5b50610227610c23565b34801561045557600080fd5b506102a4610c32565b61028c61046c366004611d92565b610c42565b34801561047d57600080fd5b5061028c61048c366004611cf2565b610cf3565b34801561049d57600080fd5b5061028c6104ac366004611c16565b610db8565b3480156104bd57600080fd5b50610227610df0565b3480156104d257600080fd5b506102276104e1366004611d92565b610dfd565b3480156104f257600080fd5b50600c546102a4565b34801561050757600080fd5b506102a460115481565b34801561051d57600080fd5b506102a4610edb565b34801561053257600080fd5b506101fd610541366004611ba7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057b57600080fd5b5061028c61058a366004611b8c565b610ef2565b60006001600160e01b0319821663780e9d6360e01b14806105b457506105b482610f8d565b92915050565b6060600080546105c990612095565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612095565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f182610a63565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b038216148061077b575061077b8133610541565b6107ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b6107f78383610fdd565b505050565b610806338261104b565b6108225760405162461bcd60e51b81526004016106c190611fb6565b6107f7838383611142565b600061083883610b68565b821061089a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ed5760405162461bcd60e51b81526004016106c190611f81565b60405133904780156108fc02916000818181858888f1935050505061091157600080fd5b565b6107f783838360405180602001604052806000815250610db8565b6060600061093b83610b68565b905060008167ffffffffffffffff81111561095857610958612157565b604051908082528060200260200182016040528015610981578160200160208202803683370190505b50905060005b828110156109c857610999858261082d565b8282815181106109ab576109ab612141565b6020908102919091010152806109c0816120d0565b915050610987565b509392505050565b60006109db60085490565b8210610a3e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c1565b60088281548110610a5157610a51612141565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60148054610ae790612095565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1390612095565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b505050505081565b60006001600160a01b038216610bd35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c195760405162461bcd60e51b81526004016106c190611f81565b61091160006112ed565b6060600180546105c990612095565b6000610c3d600b5490565b905090565b60135460ff1615610c5257600080fd5b60008111610c5f57600080fd5b601254811115610c6e57600080fd5b60115481610c7b60085490565b610c859190612007565b1115610c9057600080fd5b80601054610c9e9190612033565b341015610caa57600080fd5b60015b818111610cef576000610cbe61133f565b9050601154610ccc60085490565b1015610cdc57610cdc33826114d2565b5080610ce7816120d0565b915050610cad565b5050565b6001600160a01b038216331415610d4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc2338361104b565b610dde5760405162461bcd60e51b81526004016106c190611fb6565b610dea848484846114ec565b50505050565b600f8054610ae790612095565b6000818152600260205260409020546060906001600160a01b0316610e7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000610e8661151f565b90506000815111610ea65760405180602001604052806000815250610ed4565b80610eb08461152e565b600f604051602001610ec493929190611dd7565b6040516020818303038152906040525b9392505050565b6000610ee5610c32565b600c54610c3d9190612052565b600a546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016106c190611f81565b6001600160a01b038116610f815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610f8a816112ed565b50565b60006001600160e01b031982166380ac58cd60e01b1480610fbe57506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316146105b4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101282610a63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b60006110cf83610a63565b9050806001600160a01b0316846001600160a01b0316148061110a5750836001600160a01b03166110ff8461064c565b6001600160a01b0316145b8061113a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661115582610a63565b6001600160a01b0316146111bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b03821661121f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b61122a83838361162c565b611235600082610fdd565b6001600160a01b038316600090815260036020526040812080546001929061125e908490612052565b90915550506001600160a01b038216600090815260036020526040812080546001929061128c908490612007565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061134a610edb565b116113925760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016106c1565b600061139c610c32565b600c546113a99190612052565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c61141091906120eb565b6000818152600d60205260408120549192509061142e57508061143f565b506000818152600d60205260409020545b600d600061144e600186612052565b8152602001908152602001600020546000141561148457611470600184612052565b6000838152600d60205260409020556114b4565b600d6000611493600186612052565b81526020808201929092526040908101600090812054858252600d90935220555b6114bc6116e4565b50600e546114ca9082612007565b935050505090565b610cef828260405180602001604052806000815250611752565b6114f7848484611142565b61150384848484611785565b610dea5760405162461bcd60e51b81526004016106c190611f2f565b6060601480546105c990612095565b6060816115525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157c5780611566816120d0565b91506115759050600a8361201f565b9150611556565b60008167ffffffffffffffff81111561159757611597612157565b6040519080825280601f01601f1916602001820160405280156115c1576020820181803683370190505b5090505b841561113a576115d6600183612052565b91506115e3600a866120eb565b6115ee906030612007565b60f81b81838151811061160357611603612141565b60200101906001600160f81b031916908160001a905350611625600a8661201f565b94506115c5565b6001600160a01b0383166116875761168281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116aa565b816001600160a01b0316836001600160a01b0316146116aa576116aa8382611892565b6001600160a01b0382166116c1576107f78161192f565b826001600160a01b0316826001600160a01b0316146107f7576107f782826119de565b6000806116ef610edb565b116117375760405162461bcd60e51b81526020600482015260186024820152774e6f206d6f726520746f6b656e7320617661696c61626c6560401b60448201526064016106c1565b6000611742600b5490565b9050610c3d600b80546001019055565b61175c8383611a22565b6117696000848484611785565b6107f75760405162461bcd60e51b81526004016106c190611f2f565b60006001600160a01b0384163b1561188757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c9903390899088908890600401611e9b565b602060405180830381600087803b1580156117e357600080fd5b505af1925050508015611813575060408051601f3d908101601f1916820190925261181091810190611d75565b60015b61186d573d808015611841576040519150601f19603f3d011682016040523d82523d6000602084013e611846565b606091505b5080516118655760405162461bcd60e51b81526004016106c190611f2f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113a565b506001949350505050565b6000600161189f84610b68565b6118a99190612052565b6000838152600760205260409020549091508082146118fc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061194190600190612052565b6000838152600960205260408120546008805493945090928490811061196957611969612141565b90600052602060002001549050806008838154811061198a5761198a612141565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119c2576119c261212b565b6001900381819060005260206000200160009055905550505050565b60006119e983610b68565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b031615611add5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b611ae96000838361162c565b6001600160a01b0382166000908152600360205260408120805460019290611b12908490612007565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b0381168114611b8757600080fd5b919050565b600060208284031215611b9e57600080fd5b610ed482611b70565b60008060408385031215611bba57600080fd5b611bc383611b70565b9150611bd160208401611b70565b90509250929050565b600080600060608486031215611bef57600080fd5b611bf884611b70565b9250611c0660208501611b70565b9150604084013590509250925092565b60008060008060808587031215611c2c57600080fd5b611c3585611b70565b9350611c4360208601611b70565b925060408501359150606085013567ffffffffffffffff80821115611c6757600080fd5b818701915087601f830112611c7b57600080fd5b813581811115611c8d57611c8d612157565b604051601f8201601f19908116603f01168101908382118183101715611cb557611cb5612157565b816040528281528a6020848701011115611cce57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d0557600080fd5b611d0e83611b70565b915060208301358015158114611d2357600080fd5b809150509250929050565b60008060408385031215611d4157600080fd5b611d4a83611b70565b946020939093013593505050565b600060208284031215611d6a57600080fd5b8135610ed48161216d565b600060208284031215611d8757600080fd5b8151610ed48161216d565b600060208284031215611da457600080fd5b5035919050565b60008151808452611dc3816020860160208601612069565b601f01601f19169290920160200192915050565b600084516020611dea8285838a01612069565b855191840191611dfd8184848a01612069565b8554920191600090600181811c9080831680611e1a57607f831692505b858310811415611e3857634e487b7160e01b85526022600452602485fd5b808015611e4c5760018114611e5d57611e8a565b60ff19851688528388019550611e8a565b60008b81526020902060005b85811015611e825781548a820152908401908801611e69565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ece90830184611dab565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1057835183529284019291840191600101611ef4565b50909695505050505050565b602081526000610ed46020830184611dab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561201a5761201a6120ff565b500190565b60008261202e5761202e612115565b500490565b600081600019048311821515161561204d5761204d6120ff565b500290565b600082821015612064576120646120ff565b500390565b60005b8381101561208457818101518382015260200161206c565b83811115610dea5750506000910152565b600181811c908216806120a957607f821691505b602082108114156120ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120e4576120e46120ff565b5060010190565b6000826120fa576120fa612115565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8a57600080fdfea26469706673582212206993fad1fc0eaeea30559de263ecc79442910477198edac91fa4df4eb3c6f38464736f6c63430008070033

Deployed Bytecode Sourcemap

51292:1990:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42568:224;;;;;;;;;;-1:-1:-1;42568:224:0;;;;;:::i;:::-;;:::i;:::-;;;7272:14:1;;7265:22;7247:41;;7235:2;7220:18;42568:224:0;;;;;;;;30460:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32019:221::-;;;;;;;;;;-1:-1:-1;32019:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5933:32:1;;;5915:51;;5903:2;5888:18;32019:221:0;5769:203:1;31542:411:0;;;;;;;;;;-1:-1:-1;31542:411:0;;;;;:::i;:::-;;:::i;:::-;;51440:32;;;;;;;;;;;;;;;;;;;15229:25:1;;;15217:2;15202:18;51440:32:0;15083:177:1;43208:113:0;;;;;;;;;;-1:-1:-1;43296:10:0;:17;43208:113;;51512:33;;;;;;;;;;;;;;;;32909:339;;;;;;;;;;-1:-1:-1;32909:339:0;;;;;:::i;:::-;;:::i;42876:256::-;;;;;;;;;;-1:-1:-1;42876:256:0;;;;;:::i;:::-;;:::i;53165:114::-;;;:::i;33319:185::-;;;;;;;;;;-1:-1:-1;33319:185:0;;;;;:::i;:::-;;:::i;52364:348::-;;;;;;;;;;-1:-1:-1;52364:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43398:233::-;;;;;;;;;;-1:-1:-1;43398:233:0;;;;;:::i;:::-;;:::i;51550:26::-;;;;;;;;;;-1:-1:-1;51550:26:0;;;;;;;;30154:239;;;;;;;;;;-1:-1:-1;30154:239:0;;;;;:::i;:::-;;:::i;51585:94::-;;;;;;;;;;;;;:::i;29884:208::-;;;;;;;;;;-1:-1:-1;29884:208:0;;;;;:::i;:::-;;:::i;8087:94::-;;;;;;;;;;;;;:::i;7436:87::-;;;;;;;;;;-1:-1:-1;7509:6:0;;-1:-1:-1;;;;;7509:6:0;7436:87;;30629:104;;;;;;;;;;;;;:::i;2344:99::-;;;;;;;;;;;;;:::i;51906:452::-;;;;;;:::i;:::-;;:::i;32312:295::-;;;;;;;;;;-1:-1:-1;32312:295:0;;;;;:::i;:::-;;:::i;33575:328::-;;;;;;;;;;-1:-1:-1;33575:328:0;;;;;:::i;:::-;;:::i;51398:37::-;;;;;;;;;;;;;:::i;52718:423::-;;;;;;;;;;-1:-1:-1;52718:423:0;;;;;:::i;:::-;;:::i;2166:87::-;;;;;;;;;;-1:-1:-1;2235:10:0;;2166:87;;51477:30;;;;;;;;;;;;;;;;2549:113;;;;;;;;;;;;;:::i;32678:164::-;;;;;;;;;;-1:-1:-1;32678:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32799:25:0;;;32775:4;32799:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32678:164;8336:192;;;;;;;;;;-1:-1:-1;8336:192:0;;;;;:::i;:::-;;:::i;42568:224::-;42670:4;-1:-1:-1;;;;;;42694:50:0;;-1:-1:-1;;;42694:50:0;;:90;;;42748:36;42772:11;42748:23;:36::i;:::-;42687:97;42568:224;-1:-1:-1;;42568:224:0:o;30460:100::-;30514:13;30547:5;30540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30460:100;:::o;32019:221::-;32095:7;35502:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35502:16:0;32115:73;;;;-1:-1:-1;;;32115:73:0;;12452:2:1;32115:73:0;;;12434:21:1;12491:2;12471:18;;;12464:30;12530:34;12510:18;;;12503:62;-1:-1:-1;;;12581:18:1;;;12574:42;12633:19;;32115:73:0;;;;;;;;;-1:-1:-1;32208:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32208:24:0;;32019:221::o;31542:411::-;31623:13;31639:23;31654:7;31639:14;:23::i;:::-;31623:39;;31687:5;-1:-1:-1;;;;;31681:11:0;:2;-1:-1:-1;;;;;31681:11:0;;;31673:57;;;;-1:-1:-1;;;31673:57:0;;14052:2:1;31673:57:0;;;14034:21:1;14091:2;14071:18;;;14064:30;14130:34;14110:18;;;14103:62;-1:-1:-1;;;14181:18:1;;;14174:31;14222:19;;31673:57:0;13850:397:1;31673:57:0;6304:10;-1:-1:-1;;;;;31765:21:0;;;;:62;;-1:-1:-1;31790:37:0;31807:5;6304:10;32678:164;:::i;31790:37::-;31743:168;;;;-1:-1:-1;;;31743:168:0;;10845:2:1;31743:168:0;;;10827:21:1;10884:2;10864:18;;;10857:30;10923:34;10903:18;;;10896:62;10994:26;10974:18;;;10967:54;11038:19;;31743:168:0;10643:420:1;31743:168:0;31924:21;31933:2;31937:7;31924:8;:21::i;:::-;31612:341;31542:411;;:::o;32909:339::-;33104:41;6304:10;33137:7;33104:18;:41::i;:::-;33096:103;;;;-1:-1:-1;;;33096:103:0;;;;;;;:::i;:::-;33212:28;33222:4;33228:2;33232:7;33212:9;:28::i;42876:256::-;42973:7;43009:23;43026:5;43009:16;:23::i;:::-;43001:5;:31;42993:87;;;;-1:-1:-1;;;42993:87:0;;7725:2:1;42993:87:0;;;7707:21:1;7764:2;7744:18;;;7737:30;7803:34;7783:18;;;7776:62;-1:-1:-1;;;7854:18:1;;;7847:41;7905:19;;42993:87:0;7523:407:1;42993:87:0;-1:-1:-1;;;;;;43098:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42876:256::o;53165:114::-;7509:6;;-1:-1:-1;;;;;7509:6:0;6304:10;7656:23;7648:68;;;;-1:-1:-1;;;7648:68:0;;;;;;;:::i;:::-;53225:47:::1;::::0;53233:10:::1;::::0;53250:21:::1;53225:47:::0;::::1;;;::::0;::::1;::::0;;;53250:21;53233:10;53225:47;::::1;;;;;;53217:56;;;::::0;::::1;;53165:114::o:0;33319:185::-;33457:39;33474:4;33480:2;33484:7;33457:39;;;;;;;;;;;;:16;:39::i;52364:348::-;52439:16;52467:23;52493:17;52503:6;52493:9;:17::i;:::-;52467:43;;52517:25;52559:15;52545:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52545:30:0;;52517:58;;52587:9;52582:103;52602:15;52598:1;:19;52582:103;;;52647:30;52667:6;52675:1;52647:19;:30::i;:::-;52633:8;52642:1;52633:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52619:3;;;;:::i;:::-;;;;52582:103;;;-1:-1:-1;52698:8:0;52364:348;-1:-1:-1;;;52364:348:0:o;43398:233::-;43473:7;43509:30;43296:10;:17;;43208:113;43509:30;43501:5;:38;43493:95;;;;-1:-1:-1;;;43493:95:0;;14872:2:1;43493:95:0;;;14854:21:1;14911:2;14891:18;;;14884:30;14950:34;14930:18;;;14923:62;-1:-1:-1;;;15001:18:1;;;14994:42;15053:19;;43493:95:0;14670:408:1;43493:95:0;43606:10;43617:5;43606:17;;;;;;;;:::i;:::-;;;;;;;;;43599:24;;43398:233;;;:::o;30154:239::-;30226:7;30262:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30262:16:0;30297:19;30289:73;;;;-1:-1:-1;;;30289:73:0;;11681:2:1;30289:73:0;;;11663:21:1;11720:2;11700:18;;;11693:30;11759:34;11739:18;;;11732:62;-1:-1:-1;;;11810:18:1;;;11803:39;11859:19;;30289:73:0;11479:405:1;51585:94:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29884:208::-;29956:7;-1:-1:-1;;;;;29984:19:0;;29976:74;;;;-1:-1:-1;;;29976:74:0;;11270:2:1;29976:74:0;;;11252:21:1;11309:2;11289:18;;;11282:30;11348:34;11328:18;;;11321:62;-1:-1:-1;;;11399:18:1;;;11392:40;11449:19;;29976:74:0;11068:406:1;29976:74:0;-1:-1:-1;;;;;;30068:16:0;;;;;:9;:16;;;;;;;29884:208::o;8087:94::-;7509:6;;-1:-1:-1;;;;;7509:6:0;6304:10;7656:23;7648:68;;;;-1:-1:-1;;;7648:68:0;;;;;;;:::i;:::-;8152:21:::1;8170:1;8152:9;:21::i;30629:104::-:0;30685:13;30718:7;30711:14;;;;;:::i;2344:99::-;2387:7;2414:21;:11;909:14;;817:114;2414:21;2407:28;;2344:99;:::o;51906:452::-;51972:6;;;;51971:7;51963:16;;;;;;52008:1;51994:11;:15;51986:24;;;;;;52040:13;;52025:11;:28;;52017:37;;;;;;52100:7;;52085:11;52069:13;43296:10;:17;;43208:113;52069:13;:27;;;;:::i;:::-;:38;;52061:47;;;;;;52143:11;52136:4;;:18;;;;:::i;:::-;52123:9;:31;;52115:40;;;;;;52181:1;52164:189;52189:11;52184:1;:16;52164:189;;52218:17;52238:11;:9;:11::i;:::-;52218:31;;52277:7;;52261:13;43296:10;:17;;43208:113;52261:13;:23;52257:90;;;52305:34;6304:10;52329:9;52305;:34::i;:::-;-1:-1:-1;52202:3:0;;;;:::i;:::-;;;;52164:189;;;;51906:452;:::o;32312:295::-;-1:-1:-1;;;;;32415:24:0;;6304:10;32415:24;;32407:62;;;;-1:-1:-1;;;32407:62:0;;9725:2:1;32407:62:0;;;9707:21:1;9764:2;9744:18;;;9737:30;9803:27;9783:18;;;9776:55;9848:18;;32407:62:0;9523:349:1;32407:62:0;6304:10;32482:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32482:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32482:53:0;;;;;;;;;;32551:48;;7247:41:1;;;32482:42:0;;6304:10;32551:48;;7220:18:1;32551:48:0;;;;;;;32312:295;;:::o;33575:328::-;33750:41;6304:10;33783:7;33750:18;:41::i;:::-;33742:103;;;;-1:-1:-1;;;33742:103:0;;;;;;;:::i;:::-;33856:39;33870:4;33876:2;33880:7;33889:5;33856:13;:39::i;:::-;33575:328;;;;:::o;51398:37::-;;;;;;;:::i;52718:423::-;35478:4;35502:16;;;:7;:16;;;;;;52816:13;;-1:-1:-1;;;;;35502:16:0;52841:97;;;;-1:-1:-1;;;52841:97:0;;13636:2:1;52841:97:0;;;13618:21:1;13675:2;13655:18;;;13648:30;13714:34;13694:18;;;13687:62;-1:-1:-1;;;13765:18:1;;;13758:45;13820:19;;52841:97:0;13434:411:1;52841:97:0;52947:28;52978:10;:8;:10::i;:::-;52947:41;;53033:1;53008:14;53002:28;:32;:133;;;;;;;;;;;;;;;;;53070:14;53086:18;:7;:16;:18::i;:::-;53106:13;53053:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53002:133;52995:140;52718:423;-1:-1:-1;;;52718:423:0:o;2549:113::-;2601:7;2642:12;:10;:12::i;:::-;2235:10;;2628:26;;;;:::i;8336:192::-;7509:6;;-1:-1:-1;;;;;7509:6:0;6304:10;7656:23;7648:68;;;;-1:-1:-1;;;7648:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8425:22:0;::::1;8417:73;;;::::0;-1:-1:-1;;;8417:73:0;;8556:2:1;8417:73:0::1;::::0;::::1;8538:21:1::0;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;-1:-1:-1;;;8685:18:1;;;8678:36;8731:19;;8417:73:0::1;8354:402:1::0;8417:73:0::1;8501:19;8511:8;8501:9;:19::i;:::-;8336:192:::0;:::o;29515:305::-;29617:4;-1:-1:-1;;;;;;29654:40:0;;-1:-1:-1;;;29654:40:0;;:105;;-1:-1:-1;;;;;;;29711:48:0;;-1:-1:-1;;;29711:48:0;29654:105;:158;;;-1:-1:-1;;;;;;;;;;16266:40:0;;;29776:36;16157:157;39395:174;39470:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39470:29:0;-1:-1:-1;;;;;39470:29:0;;;;;;;;:24;;39524:23;39470:24;39524:14;:23::i;:::-;-1:-1:-1;;;;;39515:46:0;;;;;;;;;;;39395:174;;:::o;35707:348::-;35800:4;35502:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35502:16:0;35817:73;;;;-1:-1:-1;;;35817:73:0;;10432:2:1;35817:73:0;;;10414:21:1;10471:2;10451:18;;;10444:30;10510:34;10490:18;;;10483:62;-1:-1:-1;;;10561:18:1;;;10554:42;10613:19;;35817:73:0;10230:408:1;35817:73:0;35901:13;35917:23;35932:7;35917:14;:23::i;:::-;35901:39;;35970:5;-1:-1:-1;;;;;35959:16:0;:7;-1:-1:-1;;;;;35959:16:0;;:51;;;;36003:7;-1:-1:-1;;;;;35979:31:0;:20;35991:7;35979:11;:20::i;:::-;-1:-1:-1;;;;;35979:31:0;;35959:51;:87;;;-1:-1:-1;;;;;;32799:25:0;;;32775:4;32799:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36014:32;35951:96;35707:348;-1:-1:-1;;;;35707:348:0:o;38699:578::-;38858:4;-1:-1:-1;;;;;38831:31:0;:23;38846:7;38831:14;:23::i;:::-;-1:-1:-1;;;;;38831:31:0;;38823:85;;;;-1:-1:-1;;;38823:85:0;;13226:2:1;38823:85:0;;;13208:21:1;13265:2;13245:18;;;13238:30;13304:34;13284:18;;;13277:62;-1:-1:-1;;;13355:18:1;;;13348:39;13404:19;;38823:85:0;13024:405:1;38823:85:0;-1:-1:-1;;;;;38927:16:0;;38919:65;;;;-1:-1:-1;;;38919:65:0;;9320:2:1;38919:65:0;;;9302:21:1;9359:2;9339:18;;;9332:30;9398:34;9378:18;;;9371:62;-1:-1:-1;;;9449:18:1;;;9442:34;9493:19;;38919:65:0;9118:400:1;38919:65:0;38997:39;39018:4;39024:2;39028:7;38997:20;:39::i;:::-;39101:29;39118:1;39122:7;39101:8;:29::i;:::-;-1:-1:-1;;;;;39143:15:0;;;;;;:9;:15;;;;;:20;;39162:1;;39143:15;:20;;39162:1;;39143:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39174:13:0;;;;;;:9;:13;;;;;:18;;39191:1;;39174:13;:18;;39191:1;;39174:18;:::i;:::-;;;;-1:-1:-1;;39203:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39203:21:0;-1:-1:-1;;;;;39203:21:0;;;;;;;;;39242:27;;39203:16;;39242:27;;;;;;;38699:578;;;:::o;8536:173::-;8611:6;;;-1:-1:-1;;;;;8628:17:0;;;-1:-1:-1;;;;;;8628:17:0;;;;;;;8661:40;;8611:6;;;8628:17;8611:6;;8661:40;;8592:16;;8661:40;8581:128;8536:173;:::o;4330:1262::-;4397:7;3106:1;3082:21;:19;:21::i;:::-;:25;3074:62;;;;-1:-1:-1;;;3074:62:0;;10079:2:1;3074:62:0;;;10061:21:1;10118:2;10098:18;;;10091:30;-1:-1:-1;;;10137:18:1;;;10130:54;10201:18;;3074:62:0;9877:348:1;3074:62:0;4417:16:::1;4450:12;:10;:12::i;:::-;2235:10:::0;;4436:26:::1;;;;:::i;:::-;4522:195;::::0;-1:-1:-1;;4557:10:0::1;4013:2:1::0;4009:15;;;4005:24;;4522:195:0::1;::::0;::::1;3993:37:1::0;4586:14:0::1;4064:15:1::0;;4060:24;4046:12;;;4039:46;4619:16:0::1;4101:12:1::0;;;4094:28;4654:14:0::1;4138:12:1::0;;;4131:28;4687:15:0::1;4175:13:1::0;;;4168:29;4417:45:0;;-1:-1:-1;4473:14:0::1;::::0;4417:45;;4213:13:1;;4522:195:0::1;;;;;;;;;;;;4498:230;;;;;;4490:239;;:250;;;;:::i;:::-;4753:13;4785:19:::0;;;:11:::1;:19;::::0;;;;;4473:267;;-1:-1:-1;4753:13:0;4781:304:::1;;-1:-1:-1::0;4930:6:0;4781:304:::1;;;-1:-1:-1::0;5054:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;4781:304:::1;5162:11;:25;5174:12;5185:1;5174:8:::0;:12:::1;:::i;:::-;5162:25;;;;;;;;;;;;5191:1;5162:30;5158:331;;;5296:12;5307:1;5296:8:::0;:12:::1;:::i;:::-;5274:19;::::0;;;:11:::1;:19;::::0;;;;:34;5158:331:::1;;;5452:11;:25;5464:12;5475:1;5464:8:::0;:12:::1;:::i;:::-;5452:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;5452:25:0;;;;5430:19;;;:11:::1;:19:::0;;;;:47;5158:331:::1;5530:17;:15;:17::i;:::-;-1:-1:-1::0;5575:9:0::1;::::0;5567:17:::1;::::0;:5;:17:::1;:::i;:::-;5560:24;;;;;4330:1262:::0;:::o;36397:110::-;36473:26;36483:2;36487:7;36473:26;;;;;;;;;;;;:9;:26::i;34785:315::-;34942:28;34952:4;34958:2;34962:7;34942:9;:28::i;:::-;34989:48;35012:4;35018:2;35022:7;35031:5;34989:22;:48::i;:::-;34981:111;;;;-1:-1:-1;;;34981:111:0;;;;;;;:::i;51785:102::-;51845:13;51874:7;51867:14;;;;;:::i;16632:723::-;16688:13;16909:10;16905:53;;-1:-1:-1;;16936:10:0;;;;;;;;;;;;-1:-1:-1;;;16936:10:0;;;;;16632:723::o;16905:53::-;16983:5;16968:12;17024:78;17031:9;;17024:78;;17057:8;;;;:::i;:::-;;-1:-1:-1;17080:10:0;;-1:-1:-1;17088:2:0;17080:10;;:::i;:::-;;;17024:78;;;17112:19;17144:6;17134:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17134:17:0;;17112:39;;17162:154;17169:10;;17162:154;;17196:11;17206:1;17196:11;;:::i;:::-;;-1:-1:-1;17265:10:0;17273:2;17265:5;:10;:::i;:::-;17252:24;;:2;:24;:::i;:::-;17239:39;;17222:6;17229;17222:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17222:56:0;;;;;;;;-1:-1:-1;17293:11:0;17302:2;17293:11;;:::i;:::-;;;17162:154;;44244:589;-1:-1:-1;;;;;44450:18:0;;44446:187;;44485:40;44517:7;45660:10;:17;;45633:24;;;;:15;:24;;;;;:44;;;45688:24;;;;;;;;;;;;45556:164;44485:40;44446:187;;;44555:2;-1:-1:-1;;;;;44547:10:0;:4;-1:-1:-1;;;;;44547:10:0;;44543:90;;44574:47;44607:4;44613:7;44574:32;:47::i;:::-;-1:-1:-1;;;;;44647:16:0;;44643:183;;44680:45;44717:7;44680:36;:45::i;44643:183::-;44753:4;-1:-1:-1;;;;;44747:10:0;:2;-1:-1:-1;;;;;44747:10:0;;44743:83;;44774:40;44802:2;44806:7;44774:27;:40::i;2772:192::-;2838:7;3106:1;3082:21;:19;:21::i;:::-;:25;3074:62;;;;-1:-1:-1;;;3074:62:0;;10079:2:1;3074:62:0;;;10061:21:1;10118:2;10098:18;;;10091:30;-1:-1:-1;;;10137:18:1;;;10130:54;10201:18;;3074:62:0;9877:348:1;3074:62:0;2858:13:::1;2874:21;:11;909:14:::0;;817:114;2874:21:::1;2858:37;;2908:23;:11;1028:19:::0;;1046:1;1028:19;;;939:127;36734:321;36864:18;36870:2;36874:7;36864:5;:18::i;:::-;36915:54;36946:1;36950:2;36954:7;36963:5;36915:22;:54::i;:::-;36893:154;;;;-1:-1:-1;;;36893:154:0;;;;;;;:::i;40134:799::-;40289:4;-1:-1:-1;;;;;40310:13:0;;19480:20;19528:8;40306:620;;40346:72;;-1:-1:-1;;;40346:72:0;;-1:-1:-1;;;;;40346:36:0;;;;;:72;;6304:10;;40397:4;;40403:7;;40412:5;;40346:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40346:72:0;;;;;;;;-1:-1:-1;;40346:72:0;;;;;;;;;;;;:::i;:::-;;;40342:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40588:13:0;;40584:272;;40631:60;;-1:-1:-1;;;40631:60:0;;;;;;;:::i;40584:272::-;40806:6;40800:13;40791:6;40787:2;40783:15;40776:38;40342:529;-1:-1:-1;;;;;;40469:51:0;-1:-1:-1;;;40469:51:0;;-1:-1:-1;40462:58:0;;40306:620;-1:-1:-1;40910:4:0;40134:799;;;;;;:::o;46347:988::-;46613:22;46663:1;46638:22;46655:4;46638:16;:22::i;:::-;:26;;;;:::i;:::-;46675:18;46696:26;;;:17;:26;;;;;;46613:51;;-1:-1:-1;46829:28:0;;;46825:328;;-1:-1:-1;;;;;46896:18:0;;46874:19;46896:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46947:30;;;;;;:44;;;47064:30;;:17;:30;;;;;:43;;;46825:328;-1:-1:-1;47249:26:0;;;;:17;:26;;;;;;;;47242:33;;;-1:-1:-1;;;;;47293:18:0;;;;;:12;:18;;;;;:34;;;;;;;47286:41;46347:988::o;47630:1079::-;47908:10;:17;47883:22;;47908:21;;47928:1;;47908:21;:::i;:::-;47940:18;47961:24;;;:15;:24;;;;;;48334:10;:26;;47883:46;;-1:-1:-1;47961:24:0;;47883:46;;48334:26;;;;;;:::i;:::-;;;;;;;;;48312:48;;48398:11;48373:10;48384;48373:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48478:28;;;:15;:28;;;;;;;:41;;;48650:24;;;;;48643:31;48685:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47701:1008;;;47630:1079;:::o;45134:221::-;45219:14;45236:20;45253:2;45236:16;:20::i;:::-;-1:-1:-1;;;;;45267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45134:221:0:o;37391:382::-;-1:-1:-1;;;;;37471:16:0;;37463:61;;;;-1:-1:-1;;;37463:61:0;;12091:2:1;37463:61:0;;;12073:21:1;;;12110:18;;;12103:30;12169:34;12149:18;;;12142:62;12221:18;;37463:61:0;11889:356:1;37463:61:0;35478:4;35502:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35502:16:0;:30;37535:58;;;;-1:-1:-1;;;37535:58:0;;8963:2:1;37535:58:0;;;8945:21:1;9002:2;8982:18;;;8975:30;9041;9021:18;;;9014:58;9089:18;;37535:58:0;8761:352:1;37535:58:0;37606:45;37635:1;37639:2;37643:7;37606:20;:45::i;:::-;-1:-1:-1;;;;;37664:13:0;;;;;;:9;:13;;;;;:18;;37681:1;;37664:13;:18;;37681:1;;37664:18;:::i;:::-;;;;-1:-1:-1;;37693:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37693:21:0;-1:-1:-1;;;;;37693:21:0;;;;;;;;37732:33;;37693:16;;;37732:33;;37693:16;;37732:33;37391:382;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;4237:1527::-;4461:3;4499:6;4493:13;4525:4;4538:51;4582:6;4577:3;4572:2;4564:6;4560:15;4538:51;:::i;:::-;4652:13;;4611:16;;;;4674:55;4652:13;4611:16;4696:15;;;4674:55;:::i;:::-;4818:13;;4751:20;;;4791:1;;4878;4900:18;;;;4953;;;;4980:93;;5058:4;5048:8;5044:19;5032:31;;4980:93;5121:2;5111:8;5108:16;5088:18;5085:40;5082:167;;;-1:-1:-1;;;5148:33:1;;5204:4;5201:1;5194:15;5234:4;5155:3;5222:17;5082:167;5265:18;5292:110;;;;5416:1;5411:328;;;;5258:481;;5292:110;-1:-1:-1;;5327:24:1;;5313:39;;5372:20;;;;-1:-1:-1;5292:110:1;;5411:328;15338:1;15331:14;;;15375:4;15362:18;;5506:1;5520:169;5534:8;5531:1;5528:15;5520:169;;;5616:14;;5601:13;;;5594:37;5659:16;;;;5551:10;;5520:169;;;5524:3;;5720:8;5713:5;5709:20;5702:27;;5258:481;-1:-1:-1;5755:3:1;;4237:1527;-1:-1:-1;;;;;;;;;;;4237:1527:1:o;5977:488::-;-1:-1:-1;;;;;6246:15:1;;;6228:34;;6298:15;;6293:2;6278:18;;6271:43;6345:2;6330:18;;6323:34;;;6393:3;6388:2;6373:18;;6366:31;;;6171:4;;6414:45;;6439:19;;6431:6;6414:45;:::i;:::-;6406:53;5977:488;-1:-1:-1;;;;;;5977:488:1:o;6470:632::-;6641:2;6693:21;;;6763:13;;6666:18;;;6785:22;;;6612:4;;6641:2;6864:15;;;;6838:2;6823:18;;;6612:4;6907:169;6921:6;6918:1;6915:13;6907:169;;;6982:13;;6970:26;;7051:15;;;;7016:12;;;;6943:1;6936:9;6907:169;;;-1:-1:-1;7093:3:1;;6470:632;-1:-1:-1;;;;;;6470:632:1:o;7299:219::-;7448:2;7437:9;7430:21;7411:4;7468:44;7508:2;7497:9;7493:18;7485:6;7468:44;:::i;7935:414::-;8137:2;8119:21;;;8176:2;8156:18;;;8149:30;8215:34;8210:2;8195:18;;8188:62;-1:-1:-1;;;8281:2:1;8266:18;;8259:48;8339:3;8324:19;;7935:414::o;12663:356::-;12865:2;12847:21;;;12884:18;;;12877:30;12943:34;12938:2;12923:18;;12916:62;13010:2;12995:18;;12663:356::o;14252:413::-;14454:2;14436:21;;;14493:2;14473:18;;;14466:30;14532:34;14527:2;14512:18;;14505:62;-1:-1:-1;;;14598:2:1;14583:18;;14576:47;14655:3;14640:19;;14252:413::o;15391:128::-;15431:3;15462:1;15458:6;15455:1;15452:13;15449:39;;;15468:18;;:::i;:::-;-1:-1:-1;15504:9:1;;15391:128::o;15524:120::-;15564:1;15590;15580:35;;15595:18;;:::i;:::-;-1:-1:-1;15629:9:1;;15524:120::o;15649:168::-;15689:7;15755:1;15751;15747:6;15743:14;15740:1;15737:21;15732:1;15725:9;15718:17;15714:45;15711:71;;;15762:18;;:::i;:::-;-1:-1:-1;15802:9:1;;15649:168::o;15822:125::-;15862:4;15890:1;15887;15884:8;15881:34;;;15895:18;;:::i;:::-;-1:-1:-1;15932:9:1;;15822:125::o;15952:258::-;16024:1;16034:113;16048:6;16045:1;16042:13;16034:113;;;16124:11;;;16118:18;16105:11;;;16098:39;16070:2;16063:10;16034:113;;;16165:6;16162:1;16159:13;16156:48;;;-1:-1:-1;;16200:1:1;16182:16;;16175:27;15952:258::o;16215:380::-;16294:1;16290:12;;;;16337;;;16358:61;;16412:4;16404:6;16400:17;16390:27;;16358:61;16465:2;16457:6;16454:14;16434:18;16431:38;16428:161;;;16511:10;16506:3;16502:20;16499:1;16492:31;16546:4;16543:1;16536:15;16574:4;16571:1;16564:15;16428:161;;16215:380;;;:::o;16600:135::-;16639:3;-1:-1:-1;;16660:17:1;;16657:43;;;16680:18;;:::i;:::-;-1:-1:-1;16727:1:1;16716:13;;16600:135::o;16740:112::-;16772:1;16798;16788:35;;16803:18;;:::i;:::-;-1:-1:-1;16837:9:1;;16740:112::o;16857:127::-;16918:10;16913:3;16909:20;16906:1;16899:31;16949:4;16946:1;16939:15;16973:4;16970:1;16963:15;16989:127;17050:10;17045:3;17041:20;17038:1;17031:31;17081:4;17078:1;17071:15;17105:4;17102:1;17095:15;17121:127;17182:10;17177:3;17173:20;17170:1;17163:31;17213:4;17210:1;17203:15;17237:4;17234:1;17227:15;17253:127;17314:10;17309:3;17305:20;17302:1;17295:31;17345:4;17342:1;17335:15;17369:4;17366:1;17359:15;17385:127;17446:10;17441:3;17437:20;17434:1;17427:31;17477:4;17474:1;17467:15;17501:4;17498:1;17491:15;17517:131;-1:-1:-1;;;;;;17591:32:1;;17581:43;;17571:71;;17638:1;17635;17628:12

Swarm Source

ipfs://6993fad1fc0eaeea30559de263ecc79442910477198edac91fa4df4eb3c6f384
Loading...
Loading
Loading...
Loading
[ 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.